tree 0968cf5c0695e74a0fa7357b6aa5083e10d9205d parent 7da6844cf7bc44dcda548a0a0aebf85f3a1c1485 author Andrew Morton <[EMAIL PROTECTED]> Wed, 13 Jul 2005 03:58:31 -0700 committer Linus Torvalds <[EMAIL PROTECTED]> Wed, 13 Jul 2005 06:01:02 -0700
[PATCH] tlb.h warning fix free_pages_and_swap_cache() and free_page_and_swap_cache() use release_pages() and page_cache_release() respectively, so make sure that we have the declarations in scope. Cc: Olaf Hering <[EMAIL PROTECTED]> Signed-off-by: Andrew Morton <[EMAIL PROTECTED]> Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]> include/linux/swap.h | 2 ++ 1 files changed, 2 insertions(+) diff --git a/include/linux/swap.h b/include/linux/swap.h --- a/include/linux/swap.h +++ b/include/linux/swap.h @@ -7,6 +7,8 @@ #include <linux/mmzone.h> #include <linux/list.h> #include <linux/sched.h> +#include <linux/pagemap.h> + #include <asm/atomic.h> #include <asm/page.h> - To unsubscribe from this list: send the line "unsubscribe bk-commits-head" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html
