Whamcloud - gitweb
- configurable stack size fo x86_64
[fs/lustre-release.git] / lustre / kernel_patches / patches / export-add_to_page_cache.patch
1  mm/filemap.c |    2 ++
2  1 files changed, 2 insertions(+)
3
4 --- linux-2.4.20-l19/mm/filemap.c~export-add_to_page_cache      2003-07-15 03:05:47.000000000 -0500
5 +++ linux-2.4.20-l19-zab/mm/filemap.c   2003-07-15 15:33:01.000000000 -0500
6 @@ -670,6 +670,7 @@ void add_to_page_cache(struct page * pag
7         spin_unlock(&pagecache_lock);
8         lru_cache_add(page);
9  }
10 +EXPORT_SYMBOL_GPL(add_to_page_cache);
11  
12  int add_to_page_cache_unique(struct page * page,
13         struct address_space *mapping, unsigned long offset,
14 @@ -692,6 +693,7 @@ int add_to_page_cache_unique(struct page
15                 lru_cache_add(page);
16         return err;
17  }
18 +EXPORT_SYMBOL_GPL(add_to_page_cache_unique);
19  
20  /*
21   * This adds the requested page to the page cache if it isn't already there,
22
23 _