2 * Ceph cache definitions.
4 * Copyright (C) 2013 by Adfin Solutions, Inc. All Rights Reserved.
5 * Written by Milosz Tanski (milosz@adfin.com)
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2
9 * as published by the Free Software Foundation.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to:
18 * Free Software Foundation
19 * 51 Franklin Street, Fifth Floor
20 * Boston, MA 02111-1301 USA
27 #ifdef CONFIG_CEPH_FSCACHE
29 extern struct fscache_netfs ceph_cache_netfs
;
31 int ceph_fscache_register(void);
32 void ceph_fscache_unregister(void);
34 int ceph_fscache_register_fs(struct ceph_fs_client
* fsc
);
35 void ceph_fscache_unregister_fs(struct ceph_fs_client
* fsc
);
37 void ceph_fscache_register_inode_cookie(struct inode
*inode
);
38 void ceph_fscache_unregister_inode_cookie(struct ceph_inode_info
* ci
);
39 void ceph_fscache_file_set_cookie(struct inode
*inode
, struct file
*filp
);
40 void ceph_fscache_revalidate_cookie(struct ceph_inode_info
*ci
);
42 int ceph_readpage_from_fscache(struct inode
*inode
, struct page
*page
);
43 int ceph_readpages_from_fscache(struct inode
*inode
,
44 struct address_space
*mapping
,
45 struct list_head
*pages
,
47 void ceph_readpage_to_fscache(struct inode
*inode
, struct page
*page
);
48 void ceph_invalidate_fscache_page(struct inode
* inode
, struct page
*page
);
50 static inline void ceph_fscache_inode_init(struct ceph_inode_info
*ci
)
53 ci
->i_fscache_gen
= 0;
56 static inline void ceph_fscache_invalidate(struct inode
*inode
)
58 fscache_invalidate(ceph_inode(inode
)->fscache
);
61 static inline void ceph_fscache_uncache_page(struct inode
*inode
,
64 struct ceph_inode_info
*ci
= ceph_inode(inode
);
65 return fscache_uncache_page(ci
->fscache
, page
);
68 static inline int ceph_release_fscache_page(struct page
*page
, gfp_t gfp
)
70 struct inode
* inode
= page
->mapping
->host
;
71 struct ceph_inode_info
*ci
= ceph_inode(inode
);
72 return fscache_maybe_release_page(ci
->fscache
, page
, gfp
);
75 static inline void ceph_fscache_readpage_cancel(struct inode
*inode
,
78 struct ceph_inode_info
*ci
= ceph_inode(inode
);
79 if (fscache_cookie_valid(ci
->fscache
) && PageFsCache(page
))
80 __fscache_uncache_page(ci
->fscache
, page
);
83 static inline void ceph_fscache_readpages_cancel(struct inode
*inode
,
84 struct list_head
*pages
)
86 struct ceph_inode_info
*ci
= ceph_inode(inode
);
87 return fscache_readpages_cancel(ci
->fscache
, pages
);
90 static inline void ceph_disable_fscache_readpage(struct ceph_inode_info
*ci
)
92 ci
->i_fscache_gen
= ci
->i_rdcache_gen
- 1;
97 static inline int ceph_fscache_register(void)
102 static inline void ceph_fscache_unregister(void)
106 static inline int ceph_fscache_register_fs(struct ceph_fs_client
* fsc
)
111 static inline void ceph_fscache_unregister_fs(struct ceph_fs_client
* fsc
)
115 static inline void ceph_fscache_inode_init(struct ceph_inode_info
*ci
)
119 static inline void ceph_fscache_register_inode_cookie(struct inode
*inode
)
123 static inline void ceph_fscache_unregister_inode_cookie(struct ceph_inode_info
* ci
)
127 static inline void ceph_fscache_file_set_cookie(struct inode
*inode
,
132 static inline void ceph_fscache_revalidate_cookie(struct ceph_inode_info
*ci
)
136 static inline void ceph_fscache_uncache_page(struct inode
*inode
,
141 static inline int ceph_readpage_from_fscache(struct inode
* inode
,
147 static inline int ceph_readpages_from_fscache(struct inode
*inode
,
148 struct address_space
*mapping
,
149 struct list_head
*pages
,
155 static inline void ceph_readpage_to_fscache(struct inode
*inode
,
160 static inline void ceph_fscache_invalidate(struct inode
*inode
)
164 static inline void ceph_invalidate_fscache_page(struct inode
*inode
,
169 static inline int ceph_release_fscache_page(struct page
*page
, gfp_t gfp
)
174 static inline void ceph_fscache_readpage_cancel(struct inode
*inode
,
179 static inline void ceph_fscache_readpages_cancel(struct inode
*inode
,
180 struct list_head
*pages
)
184 static inline void ceph_disable_fscache_readpage(struct ceph_inode_info
*ci
)