diff options
| author | Andrew Morton <akpm@digeo.com> | 2003-02-18 05:24:42 -0800 |
|---|---|---|
| committer | Linus Torvalds <torvalds@home.transmeta.com> | 2003-02-18 05:24:42 -0800 |
| commit | 0d51be591f3b56b4e3c83f4ca09b61ad33c76b69 (patch) | |
| tree | 62fc41137011c399a34654530b25a27b60bf9ef2 /kernel | |
| parent | f7483240ea51663649aac797eeb194f46449fa4a (diff) | |
[PATCH] export add_to_page_cache() and __pagevec_lru_add to
CIFS is using these.
Given that the readpages() address_space op is supposed to add the pages to
pagecache, it makes sense to make these functions available to modules.
I can't say that I put a lot of though into the readpages API. It was
designed as just enough functionality to be able to stuff a bunch of
readahead pages into a single BIO. The only reason I made it an a_op at all
was because we have toi enter the fs to pick up the ->get_block callback's
address.
But a couple of filesystems seem to be making use of it now. Reiser4 will
need access at the do_page_cache_readahead() level too.
Diffstat (limited to 'kernel')
| -rw-r--r-- | kernel/ksyms.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/kernel/ksyms.c b/kernel/ksyms.c index f0503df9fe3d..f30934957b82 100644 --- a/kernel/ksyms.c +++ b/kernel/ksyms.c @@ -31,6 +31,7 @@ #include <linux/genhd.h> #include <linux/blkpg.h> #include <linux/swap.h> +#include <linux/pagevec.h> #include <linux/ctype.h> #include <linux/file.h> #include <linux/console.h> @@ -80,6 +81,7 @@ EXPORT_SYMBOL(__alloc_pages); EXPORT_SYMBOL(__get_free_pages); EXPORT_SYMBOL(get_zeroed_page); EXPORT_SYMBOL(__page_cache_release); +EXPORT_SYMBOL(__pagevec_lru_add); EXPORT_SYMBOL(__free_pages); EXPORT_SYMBOL(free_pages); EXPORT_SYMBOL(num_physpages); |
