aboutsummaryrefslogtreecommitdiffstats
path: root/fs/cifs/fscache.h
diff options
context:
space:
mode:
authorSuresh Jayaraman <sjayaraman@suse.de>2010-07-05 08:43:11 -0400
committerSteve French <sfrench@us.ibm.com>2010-08-02 08:40:37 -0400
commit9dc06558c223bbc08290917ac44c25963bc09e43 (patch)
tree7ffd7618faaa251c286637815db5f91d2d410467 /fs/cifs/fscache.h
parent85f2d6b44d7e83bdeab87df910127c6f296866cf (diff)
cifs: store pages into local cache
Store pages from an CIFS inode into the data storage object associated with that inode. Signed-off-by: Suresh Jayaraman <sjayaraman@suse.de> Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs/fscache.h')
-rw-r--r--fs/cifs/fscache.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/fs/cifs/fscache.h b/fs/cifs/fscache.h
index 5e18a21eee9d..1a00d70bca97 100644
--- a/fs/cifs/fscache.h
+++ b/fs/cifs/fscache.h
@@ -51,6 +51,8 @@ extern void cifs_fscache_reset_inode_cookie(struct inode *);
51extern void __cifs_fscache_invalidate_page(struct page *, struct inode *); 51extern void __cifs_fscache_invalidate_page(struct page *, struct inode *);
52extern int cifs_fscache_release_page(struct page *page, gfp_t gfp); 52extern int cifs_fscache_release_page(struct page *page, gfp_t gfp);
53 53
54extern void __cifs_readpage_to_fscache(struct inode *, struct page *);
55
54static inline void cifs_fscache_invalidate_page(struct page *page, 56static inline void cifs_fscache_invalidate_page(struct page *page,
55 struct inode *inode) 57 struct inode *inode)
56{ 58{
@@ -58,6 +60,13 @@ static inline void cifs_fscache_invalidate_page(struct page *page,
58 __cifs_fscache_invalidate_page(page, inode); 60 __cifs_fscache_invalidate_page(page, inode);
59} 61}
60 62
63static inline void cifs_readpage_to_fscache(struct inode *inode,
64 struct page *page)
65{
66 if (PageFsCache(page))
67 __cifs_readpage_to_fscache(inode, page);
68}
69
61#else /* CONFIG_CIFS_FSCACHE */ 70#else /* CONFIG_CIFS_FSCACHE */
62static inline int cifs_fscache_register(void) { return 0; } 71static inline int cifs_fscache_register(void) { return 0; }
63static inline void cifs_fscache_unregister(void) {} 72static inline void cifs_fscache_unregister(void) {}
@@ -81,6 +90,8 @@ static inline void cifs_fscache_release_page(struct page *page, gfp_t gfp)
81 90
82static inline int cifs_fscache_invalidate_page(struct page *page, 91static inline int cifs_fscache_invalidate_page(struct page *page,
83 struct inode *) {} 92 struct inode *) {}
93static inline void cifs_readpage_to_fscache(struct inode *inode,
94 struct page *page) {}
84 95
85#endif /* CONFIG_CIFS_FSCACHE */ 96#endif /* CONFIG_CIFS_FSCACHE */
86 97