diff options
author | Andrew Morton <akpm@osdl.org> | 2005-07-12 16:58:31 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-07-12 19:01:02 -0400 |
commit | 542d1c88bd7f73e2e59d41b12e4a9041deea89e4 (patch) | |
tree | 0968cf5c0695e74a0fa7357b6aa5083e10d9205d /include | |
parent | 7da6844cf7bc44dcda548a0a0aebf85f3a1c1485 (diff) |
[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 <olh@suse.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/swap.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/swap.h b/include/linux/swap.h index c75954f2d868..239f520cc49e 100644 --- a/include/linux/swap.h +++ b/include/linux/swap.h | |||
@@ -7,6 +7,8 @@ | |||
7 | #include <linux/mmzone.h> | 7 | #include <linux/mmzone.h> |
8 | #include <linux/list.h> | 8 | #include <linux/list.h> |
9 | #include <linux/sched.h> | 9 | #include <linux/sched.h> |
10 | #include <linux/pagemap.h> | ||
11 | |||
10 | #include <asm/atomic.h> | 12 | #include <asm/atomic.h> |
11 | #include <asm/page.h> | 13 | #include <asm/page.h> |
12 | 14 | ||