diff options
Diffstat (limited to 'fs/ceph/cache.h')
| -rw-r--r-- | fs/ceph/cache.h | 133 |
1 files changed, 37 insertions, 96 deletions
diff --git a/fs/ceph/cache.h b/fs/ceph/cache.h index 89dbdd1eb14a..20efac020394 100644 --- a/fs/ceph/cache.h +++ b/fs/ceph/cache.h @@ -9,85 +9,54 @@ #ifndef _CEPH_CACHE_H #define _CEPH_CACHE_H -#ifdef CONFIG_CEPH_FSCACHE - -extern struct fscache_netfs ceph_cache_netfs; +#include <linux/netfs.h> -int ceph_fscache_register(void); -void ceph_fscache_unregister(void); +#ifdef CONFIG_CEPH_FSCACHE +#include <linux/fscache.h> int ceph_fscache_register_fs(struct ceph_fs_client* fsc, struct fs_context *fc); void ceph_fscache_unregister_fs(struct ceph_fs_client* fsc); void ceph_fscache_register_inode_cookie(struct inode *inode); void ceph_fscache_unregister_inode_cookie(struct ceph_inode_info* ci); -void ceph_fscache_file_set_cookie(struct inode *inode, struct file *filp); -void ceph_fscache_revalidate_cookie(struct ceph_inode_info *ci); -int ceph_readpage_from_fscache(struct inode *inode, struct page *page); -int ceph_readpages_from_fscache(struct inode *inode, - struct address_space *mapping, - struct list_head *pages, - unsigned *nr_pages); -void ceph_readpage_to_fscache(struct inode *inode, struct page *page); -void ceph_invalidate_fscache_page(struct inode* inode, struct page *page); +void ceph_fscache_use_cookie(struct inode *inode, bool will_modify); +void ceph_fscache_unuse_cookie(struct inode *inode, bool update); -static inline void ceph_fscache_inode_init(struct ceph_inode_info *ci) -{ - ci->fscache = NULL; - ci->i_fscache_gen = 0; -} +void ceph_fscache_update(struct inode *inode); +void ceph_fscache_invalidate(struct inode *inode, bool dio_write); -static inline void ceph_fscache_invalidate(struct inode *inode) +static inline struct fscache_cookie *ceph_fscache_cookie(struct ceph_inode_info *ci) { - fscache_invalidate(ceph_inode(inode)->fscache); + return netfs_i_cookie(&ci->netfs); } -static inline void ceph_fscache_uncache_page(struct inode *inode, - struct page *page) +static inline void ceph_fscache_resize(struct inode *inode, loff_t to) { struct ceph_inode_info *ci = ceph_inode(inode); - return fscache_uncache_page(ci->fscache, page); -} + struct fscache_cookie *cookie = ceph_fscache_cookie(ci); -static inline int ceph_release_fscache_page(struct page *page, gfp_t gfp) -{ - struct inode* inode = page->mapping->host; - struct ceph_inode_info *ci = ceph_inode(inode); - return fscache_maybe_release_page(ci->fscache, page, gfp); + if (cookie) { + ceph_fscache_use_cookie(inode, true); + fscache_resize_cookie(cookie, to); + ceph_fscache_unuse_cookie(inode, true); + } } -static inline void ceph_fscache_readpage_cancel(struct inode *inode, - struct page *page) +static inline int ceph_fscache_unpin_writeback(struct inode *inode, + struct writeback_control *wbc) { - struct ceph_inode_info *ci = ceph_inode(inode); - if (fscache_cookie_valid(ci->fscache) && PageFsCache(page)) - __fscache_uncache_page(ci->fscache, page); + return netfs_unpin_writeback(inode, wbc); } -static inline void ceph_fscache_readpages_cancel(struct inode *inode, - struct list_head *pages) -{ - struct ceph_inode_info *ci = ceph_inode(inode); - return fscache_readpages_cancel(ci->fscache, pages); -} +#define ceph_fscache_dirty_folio netfs_dirty_folio -static inline void ceph_disable_fscache_readpage(struct ceph_inode_info *ci) -{ - ci->i_fscache_gen = ci->i_rdcache_gen - 1; -} - -#else - -static inline int ceph_fscache_register(void) -{ - return 0; -} - -static inline void ceph_fscache_unregister(void) +static inline bool ceph_is_cache_enabled(struct inode *inode) { + return fscache_cookie_enabled(ceph_fscache_cookie(ceph_inode(inode))); } +#else /* CONFIG_CEPH_FSCACHE */ static inline int ceph_fscache_register_fs(struct ceph_fs_client* fsc, struct fs_context *fc) { @@ -98,10 +67,6 @@ static inline void ceph_fscache_unregister_fs(struct ceph_fs_client* fsc) { } -static inline void ceph_fscache_inode_init(struct ceph_inode_info *ci) -{ -} - static inline void ceph_fscache_register_inode_cookie(struct inode *inode) { } @@ -110,67 +75,43 @@ static inline void ceph_fscache_unregister_inode_cookie(struct ceph_inode_info* { } -static inline void ceph_fscache_file_set_cookie(struct inode *inode, - struct file *filp) -{ -} - -static inline void ceph_fscache_revalidate_cookie(struct ceph_inode_info *ci) -{ -} - -static inline void ceph_fscache_uncache_page(struct inode *inode, - struct page *pages) +static inline void ceph_fscache_use_cookie(struct inode *inode, bool will_modify) { } -static inline int ceph_readpage_from_fscache(struct inode* inode, - struct page *page) +static inline void ceph_fscache_unuse_cookie(struct inode *inode, bool update) { - return -ENOBUFS; } -static inline int ceph_readpages_from_fscache(struct inode *inode, - struct address_space *mapping, - struct list_head *pages, - unsigned *nr_pages) +static inline void ceph_fscache_update(struct inode *inode) { - return -ENOBUFS; } -static inline void ceph_readpage_to_fscache(struct inode *inode, - struct page *page) +static inline void ceph_fscache_invalidate(struct inode *inode, bool dio_write) { } -static inline void ceph_fscache_invalidate(struct inode *inode) +static inline struct fscache_cookie *ceph_fscache_cookie(struct ceph_inode_info *ci) { + return NULL; } -static inline void ceph_invalidate_fscache_page(struct inode *inode, - struct page *page) +static inline void ceph_fscache_resize(struct inode *inode, loff_t to) { } -static inline int ceph_release_fscache_page(struct page *page, gfp_t gfp) +static inline int ceph_fscache_unpin_writeback(struct inode *inode, + struct writeback_control *wbc) { - return 1; + return 0; } -static inline void ceph_fscache_readpage_cancel(struct inode *inode, - struct page *page) -{ -} +#define ceph_fscache_dirty_folio filemap_dirty_folio -static inline void ceph_fscache_readpages_cancel(struct inode *inode, - struct list_head *pages) +static inline bool ceph_is_cache_enabled(struct inode *inode) { + return false; } - -static inline void ceph_disable_fscache_readpage(struct ceph_inode_info *ci) -{ -} - -#endif +#endif /* CONFIG_CEPH_FSCACHE */ #endif |
