btrfs: add comments to barriers before waitqueue_active
[linux-2.6/btrfs-unstable.git] / fs / ceph / cache.h
blob5ac591bd012bc8cd3653cdd8f9ca731511a051d1
1 /*
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
24 #ifndef _CEPH_CACHE_H
25 #define _CEPH_CACHE_H
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_inode_init(struct ceph_inode_info *ci);
38 void ceph_fscache_register_inode_cookie(struct ceph_fs_client* fsc,
39 struct ceph_inode_info* ci);
40 void ceph_fscache_unregister_inode_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,
46 unsigned *nr_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);
49 void ceph_queue_revalidate(struct inode *inode);
51 static inline void ceph_fscache_update_objectsize(struct inode *inode)
53 struct ceph_inode_info *ci = ceph_inode(inode);
54 fscache_attr_changed(ci->fscache);
57 static inline void ceph_fscache_invalidate(struct inode *inode)
59 fscache_invalidate(ceph_inode(inode)->fscache);
62 static inline void ceph_fscache_uncache_page(struct inode *inode,
63 struct page *page)
65 struct ceph_inode_info *ci = ceph_inode(inode);
66 return fscache_uncache_page(ci->fscache, page);
69 static inline int ceph_release_fscache_page(struct page *page, gfp_t gfp)
71 struct inode* inode = page->mapping->host;
72 struct ceph_inode_info *ci = ceph_inode(inode);
73 return fscache_maybe_release_page(ci->fscache, page, gfp);
76 static inline void ceph_fscache_readpage_cancel(struct inode *inode,
77 struct page *page)
79 struct ceph_inode_info *ci = ceph_inode(inode);
80 if (fscache_cookie_valid(ci->fscache) && PageFsCache(page))
81 __fscache_uncache_page(ci->fscache, page);
84 static inline void ceph_fscache_readpages_cancel(struct inode *inode,
85 struct list_head *pages)
87 struct ceph_inode_info *ci = ceph_inode(inode);
88 return fscache_readpages_cancel(ci->fscache, pages);
91 #else
93 static inline int ceph_fscache_register(void)
95 return 0;
98 static inline void ceph_fscache_unregister(void)
102 static inline int ceph_fscache_register_fs(struct ceph_fs_client* fsc)
104 return 0;
107 static inline void ceph_fscache_unregister_fs(struct ceph_fs_client* fsc)
111 static inline void ceph_fscache_inode_init(struct ceph_inode_info *ci)
115 static inline void ceph_fscache_register_inode_cookie(struct ceph_fs_client* parent_fsc,
116 struct ceph_inode_info* ci)
120 static inline void ceph_fscache_uncache_page(struct inode *inode,
121 struct page *pages)
125 static inline int ceph_readpage_from_fscache(struct inode* inode,
126 struct page *page)
128 return -ENOBUFS;
131 static inline int ceph_readpages_from_fscache(struct inode *inode,
132 struct address_space *mapping,
133 struct list_head *pages,
134 unsigned *nr_pages)
136 return -ENOBUFS;
139 static inline void ceph_readpage_to_fscache(struct inode *inode,
140 struct page *page)
144 static inline void ceph_fscache_update_objectsize(struct inode *inode)
148 static inline void ceph_fscache_invalidate(struct inode *inode)
152 static inline void ceph_invalidate_fscache_page(struct inode *inode,
153 struct page *page)
157 static inline void ceph_fscache_unregister_inode_cookie(struct ceph_inode_info* ci)
161 static inline int ceph_release_fscache_page(struct page *page, gfp_t gfp)
163 return 1;
166 static inline void ceph_fscache_readpage_cancel(struct inode *inode,
167 struct page *page)
171 static inline void ceph_fscache_readpages_cancel(struct inode *inode,
172 struct list_head *pages)
176 static inline void ceph_queue_revalidate(struct inode *inode)
180 #endif
182 #endif