blob: 103ca5e1267beb2229999e0711e50ba83f4c0abb [file] [log] [blame]
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -05001/*
2 * V9FS cache definitions.
3 *
4 * Copyright (C) 2009 by Abhishek Kulkarni <adkulkar@umail.iu.edu>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2
8 * as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to:
17 * Free Software Foundation
18 * 51 Franklin Street, Fifth Floor
19 * Boston, MA 02111-1301 USA
20 *
21 */
22
23#include <linux/jiffies.h>
24#include <linux/file.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/slab.h>
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -050026#include <linux/stat.h>
27#include <linux/sched.h>
28#include <linux/fs.h>
29#include <net/9p/9p.h>
30
31#include "v9fs.h"
32#include "cache.h"
33
34#define CACHETAG_LEN 11
35
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -050036struct fscache_netfs v9fs_cache_netfs = {
37 .name = "9p",
38 .version = 0,
39};
40
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -050041/**
42 * v9fs_random_cachetag - Generate a random tag to be associated
43 * with a new cache session.
44 *
45 * The value of jiffies is used for a fairly randomly cache tag.
46 */
47
48static
49int v9fs_random_cachetag(struct v9fs_session_info *v9ses)
50{
51 v9ses->cachetag = kmalloc(CACHETAG_LEN, GFP_KERNEL);
52 if (!v9ses->cachetag)
53 return -ENOMEM;
54
55 return scnprintf(v9ses->cachetag, CACHETAG_LEN, "%lu", jiffies);
56}
57
58static uint16_t v9fs_cache_session_get_key(const void *cookie_netfs_data,
59 void *buffer, uint16_t bufmax)
60{
61 struct v9fs_session_info *v9ses;
62 uint16_t klen = 0;
63
64 v9ses = (struct v9fs_session_info *)cookie_netfs_data;
Joe Perches5d385152011-11-28 10:40:46 -080065 p9_debug(P9_DEBUG_FSC, "session %p buf %p size %u\n",
66 v9ses, buffer, bufmax);
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -050067
68 if (v9ses->cachetag)
69 klen = strlen(v9ses->cachetag);
70
71 if (klen > bufmax)
72 return 0;
73
74 memcpy(buffer, v9ses->cachetag, klen);
Joe Perches5d385152011-11-28 10:40:46 -080075 p9_debug(P9_DEBUG_FSC, "cache session tag %s\n", v9ses->cachetag);
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -050076 return klen;
77}
78
79const struct fscache_cookie_def v9fs_cache_session_index_def = {
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +053080 .name = "9P.session",
81 .type = FSCACHE_COOKIE_TYPE_INDEX,
82 .get_key = v9fs_cache_session_get_key,
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -050083};
84
85void v9fs_cache_session_get_cookie(struct v9fs_session_info *v9ses)
86{
87 /* If no cache session tag was specified, we generate a random one. */
88 if (!v9ses->cachetag)
89 v9fs_random_cachetag(v9ses);
90
91 v9ses->fscache = fscache_acquire_cookie(v9fs_cache_netfs.primary_index,
92 &v9fs_cache_session_index_def,
David Howells94d30ae2013-09-21 00:09:31 +010093 v9ses, true);
Joe Perches5d385152011-11-28 10:40:46 -080094 p9_debug(P9_DEBUG_FSC, "session %p get cookie %p\n",
95 v9ses, v9ses->fscache);
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -050096}
97
98void v9fs_cache_session_put_cookie(struct v9fs_session_info *v9ses)
99{
Joe Perches5d385152011-11-28 10:40:46 -0800100 p9_debug(P9_DEBUG_FSC, "session %p put cookie %p\n",
101 v9ses, v9ses->fscache);
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500102 fscache_relinquish_cookie(v9ses->fscache, 0);
103 v9ses->fscache = NULL;
104}
105
106
107static uint16_t v9fs_cache_inode_get_key(const void *cookie_netfs_data,
108 void *buffer, uint16_t bufmax)
109{
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530110 const struct v9fs_inode *v9inode = cookie_netfs_data;
Aneesh Kumar K.Vfd2421f2011-07-11 16:40:59 +0000111 memcpy(buffer, &v9inode->qid.path, sizeof(v9inode->qid.path));
Joe Perches5d385152011-11-28 10:40:46 -0800112 p9_debug(P9_DEBUG_FSC, "inode %p get key %llu\n",
113 &v9inode->vfs_inode, v9inode->qid.path);
Aneesh Kumar K.Vfd2421f2011-07-11 16:40:59 +0000114 return sizeof(v9inode->qid.path);
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500115}
116
117static void v9fs_cache_inode_get_attr(const void *cookie_netfs_data,
118 uint64_t *size)
119{
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530120 const struct v9fs_inode *v9inode = cookie_netfs_data;
121 *size = i_size_read(&v9inode->vfs_inode);
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500122
Joe Perches5d385152011-11-28 10:40:46 -0800123 p9_debug(P9_DEBUG_FSC, "inode %p get attr %llu\n",
124 &v9inode->vfs_inode, *size);
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500125}
126
127static uint16_t v9fs_cache_inode_get_aux(const void *cookie_netfs_data,
128 void *buffer, uint16_t buflen)
129{
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530130 const struct v9fs_inode *v9inode = cookie_netfs_data;
Aneesh Kumar K.Vfd2421f2011-07-11 16:40:59 +0000131 memcpy(buffer, &v9inode->qid.version, sizeof(v9inode->qid.version));
Joe Perches5d385152011-11-28 10:40:46 -0800132 p9_debug(P9_DEBUG_FSC, "inode %p get aux %u\n",
133 &v9inode->vfs_inode, v9inode->qid.version);
Aneesh Kumar K.Vfd2421f2011-07-11 16:40:59 +0000134 return sizeof(v9inode->qid.version);
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500135}
136
137static enum
138fscache_checkaux v9fs_cache_inode_check_aux(void *cookie_netfs_data,
139 const void *buffer,
140 uint16_t buflen)
141{
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530142 const struct v9fs_inode *v9inode = cookie_netfs_data;
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500143
Aneesh Kumar K.Vfd2421f2011-07-11 16:40:59 +0000144 if (buflen != sizeof(v9inode->qid.version))
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500145 return FSCACHE_CHECKAUX_OBSOLETE;
146
Aneesh Kumar K.Vfd2421f2011-07-11 16:40:59 +0000147 if (memcmp(buffer, &v9inode->qid.version,
148 sizeof(v9inode->qid.version)))
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500149 return FSCACHE_CHECKAUX_OBSOLETE;
150
151 return FSCACHE_CHECKAUX_OKAY;
152}
153
154static void v9fs_cache_inode_now_uncached(void *cookie_netfs_data)
155{
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530156 struct v9fs_inode *v9inode = cookie_netfs_data;
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500157 struct pagevec pvec;
158 pgoff_t first;
159 int loop, nr_pages;
160
161 pagevec_init(&pvec, 0);
162 first = 0;
163
164 for (;;) {
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530165 nr_pages = pagevec_lookup(&pvec, v9inode->vfs_inode.i_mapping,
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500166 first,
167 PAGEVEC_SIZE - pagevec_count(&pvec));
168 if (!nr_pages)
169 break;
170
171 for (loop = 0; loop < nr_pages; loop++)
172 ClearPageFsCache(pvec.pages[loop]);
173
174 first = pvec.pages[nr_pages - 1]->index + 1;
175
176 pvec.nr = nr_pages;
177 pagevec_release(&pvec);
178 cond_resched();
179 }
180}
181
182const struct fscache_cookie_def v9fs_cache_inode_index_def = {
183 .name = "9p.inode",
184 .type = FSCACHE_COOKIE_TYPE_DATAFILE,
185 .get_key = v9fs_cache_inode_get_key,
186 .get_attr = v9fs_cache_inode_get_attr,
187 .get_aux = v9fs_cache_inode_get_aux,
188 .check_aux = v9fs_cache_inode_check_aux,
189 .now_uncached = v9fs_cache_inode_now_uncached,
190};
191
192void v9fs_cache_inode_get_cookie(struct inode *inode)
193{
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530194 struct v9fs_inode *v9inode;
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500195 struct v9fs_session_info *v9ses;
196
197 if (!S_ISREG(inode->i_mode))
198 return;
199
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530200 v9inode = V9FS_I(inode);
201 if (v9inode->fscache)
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500202 return;
203
204 v9ses = v9fs_inode2v9ses(inode);
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530205 v9inode->fscache = fscache_acquire_cookie(v9ses->fscache,
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500206 &v9fs_cache_inode_index_def,
David Howells94d30ae2013-09-21 00:09:31 +0100207 v9inode, true);
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500208
Joe Perches5d385152011-11-28 10:40:46 -0800209 p9_debug(P9_DEBUG_FSC, "inode %p get cookie %p\n",
210 inode, v9inode->fscache);
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500211}
212
213void v9fs_cache_inode_put_cookie(struct inode *inode)
214{
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530215 struct v9fs_inode *v9inode = V9FS_I(inode);
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500216
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530217 if (!v9inode->fscache)
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500218 return;
Joe Perches5d385152011-11-28 10:40:46 -0800219 p9_debug(P9_DEBUG_FSC, "inode %p put cookie %p\n",
220 inode, v9inode->fscache);
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500221
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530222 fscache_relinquish_cookie(v9inode->fscache, 0);
223 v9inode->fscache = NULL;
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500224}
225
226void v9fs_cache_inode_flush_cookie(struct inode *inode)
227{
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530228 struct v9fs_inode *v9inode = V9FS_I(inode);
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500229
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530230 if (!v9inode->fscache)
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500231 return;
Joe Perches5d385152011-11-28 10:40:46 -0800232 p9_debug(P9_DEBUG_FSC, "inode %p flush cookie %p\n",
233 inode, v9inode->fscache);
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500234
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530235 fscache_relinquish_cookie(v9inode->fscache, 1);
236 v9inode->fscache = NULL;
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500237}
238
239void v9fs_cache_inode_set_cookie(struct inode *inode, struct file *filp)
240{
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530241 struct v9fs_inode *v9inode = V9FS_I(inode);
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500242
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530243 if (!v9inode->fscache)
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500244 return;
245
Sasha Levin8f5fed12016-01-07 17:49:51 -0500246 mutex_lock(&v9inode->fscache_lock);
Geyslan G. Bembd126e52013-09-28 20:32:13 -0300247
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500248 if ((filp->f_flags & O_ACCMODE) != O_RDONLY)
249 v9fs_cache_inode_flush_cookie(inode);
250 else
251 v9fs_cache_inode_get_cookie(inode);
252
Sasha Levin8f5fed12016-01-07 17:49:51 -0500253 mutex_unlock(&v9inode->fscache_lock);
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500254}
255
256void v9fs_cache_inode_reset_cookie(struct inode *inode)
257{
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530258 struct v9fs_inode *v9inode = V9FS_I(inode);
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500259 struct v9fs_session_info *v9ses;
260 struct fscache_cookie *old;
261
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530262 if (!v9inode->fscache)
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500263 return;
264
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530265 old = v9inode->fscache;
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500266
Sasha Levin8f5fed12016-01-07 17:49:51 -0500267 mutex_lock(&v9inode->fscache_lock);
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530268 fscache_relinquish_cookie(v9inode->fscache, 1);
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500269
270 v9ses = v9fs_inode2v9ses(inode);
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530271 v9inode->fscache = fscache_acquire_cookie(v9ses->fscache,
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500272 &v9fs_cache_inode_index_def,
David Howells94d30ae2013-09-21 00:09:31 +0100273 v9inode, true);
Joe Perches5d385152011-11-28 10:40:46 -0800274 p9_debug(P9_DEBUG_FSC, "inode %p revalidating cookie old %p new %p\n",
275 inode, old, v9inode->fscache);
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500276
Sasha Levin8f5fed12016-01-07 17:49:51 -0500277 mutex_unlock(&v9inode->fscache_lock);
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500278}
279
280int __v9fs_fscache_release_page(struct page *page, gfp_t gfp)
281{
282 struct inode *inode = page->mapping->host;
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530283 struct v9fs_inode *v9inode = V9FS_I(inode);
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500284
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530285 BUG_ON(!v9inode->fscache);
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500286
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530287 return fscache_maybe_release_page(v9inode->fscache, page, gfp);
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500288}
289
290void __v9fs_fscache_invalidate_page(struct page *page)
291{
292 struct inode *inode = page->mapping->host;
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530293 struct v9fs_inode *v9inode = V9FS_I(inode);
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500294
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530295 BUG_ON(!v9inode->fscache);
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500296
297 if (PageFsCache(page)) {
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530298 fscache_wait_on_page_write(v9inode->fscache, page);
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500299 BUG_ON(!PageLocked(page));
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530300 fscache_uncache_page(v9inode->fscache, page);
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500301 }
302}
303
304static void v9fs_vfs_readpage_complete(struct page *page, void *data,
305 int error)
306{
307 if (!error)
308 SetPageUptodate(page);
309
310 unlock_page(page);
311}
312
313/**
314 * __v9fs_readpage_from_fscache - read a page from cache
315 *
316 * Returns 0 if the pages are in cache and a BIO is submitted,
317 * 1 if the pages are not in cache and -error otherwise.
318 */
319
320int __v9fs_readpage_from_fscache(struct inode *inode, struct page *page)
321{
322 int ret;
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530323 const struct v9fs_inode *v9inode = V9FS_I(inode);
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500324
Joe Perches5d385152011-11-28 10:40:46 -0800325 p9_debug(P9_DEBUG_FSC, "inode %p page %p\n", inode, page);
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530326 if (!v9inode->fscache)
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500327 return -ENOBUFS;
328
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530329 ret = fscache_read_or_alloc_page(v9inode->fscache,
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500330 page,
331 v9fs_vfs_readpage_complete,
332 NULL,
333 GFP_KERNEL);
334 switch (ret) {
335 case -ENOBUFS:
336 case -ENODATA:
Joe Perches5d385152011-11-28 10:40:46 -0800337 p9_debug(P9_DEBUG_FSC, "page/inode not in cache %d\n", ret);
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500338 return 1;
339 case 0:
Joe Perches5d385152011-11-28 10:40:46 -0800340 p9_debug(P9_DEBUG_FSC, "BIO submitted\n");
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500341 return ret;
342 default:
Joe Perches5d385152011-11-28 10:40:46 -0800343 p9_debug(P9_DEBUG_FSC, "ret %d\n", ret);
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500344 return ret;
345 }
346}
347
348/**
349 * __v9fs_readpages_from_fscache - read multiple pages from cache
350 *
351 * Returns 0 if the pages are in cache and a BIO is submitted,
352 * 1 if the pages are not in cache and -error otherwise.
353 */
354
355int __v9fs_readpages_from_fscache(struct inode *inode,
356 struct address_space *mapping,
357 struct list_head *pages,
358 unsigned *nr_pages)
359{
360 int ret;
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530361 const struct v9fs_inode *v9inode = V9FS_I(inode);
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500362
Joe Perches5d385152011-11-28 10:40:46 -0800363 p9_debug(P9_DEBUG_FSC, "inode %p pages %u\n", inode, *nr_pages);
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530364 if (!v9inode->fscache)
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500365 return -ENOBUFS;
366
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530367 ret = fscache_read_or_alloc_pages(v9inode->fscache,
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500368 mapping, pages, nr_pages,
369 v9fs_vfs_readpage_complete,
370 NULL,
371 mapping_gfp_mask(mapping));
372 switch (ret) {
373 case -ENOBUFS:
374 case -ENODATA:
Joe Perches5d385152011-11-28 10:40:46 -0800375 p9_debug(P9_DEBUG_FSC, "pages/inodes not in cache %d\n", ret);
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500376 return 1;
377 case 0:
378 BUG_ON(!list_empty(pages));
379 BUG_ON(*nr_pages != 0);
Joe Perches5d385152011-11-28 10:40:46 -0800380 p9_debug(P9_DEBUG_FSC, "BIO submitted\n");
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500381 return ret;
382 default:
Joe Perches5d385152011-11-28 10:40:46 -0800383 p9_debug(P9_DEBUG_FSC, "ret %d\n", ret);
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500384 return ret;
385 }
386}
387
388/**
389 * __v9fs_readpage_to_fscache - write a page to the cache
390 *
391 */
392
393void __v9fs_readpage_to_fscache(struct inode *inode, struct page *page)
394{
395 int ret;
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530396 const struct v9fs_inode *v9inode = V9FS_I(inode);
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500397
Joe Perches5d385152011-11-28 10:40:46 -0800398 p9_debug(P9_DEBUG_FSC, "inode %p page %p\n", inode, page);
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530399 ret = fscache_write_page(v9inode->fscache, page, GFP_KERNEL);
Joe Perches5d385152011-11-28 10:40:46 -0800400 p9_debug(P9_DEBUG_FSC, "ret = %d\n", ret);
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500401 if (ret != 0)
402 v9fs_uncache_page(inode, page);
403}
Aneesh Kumar K.V2efda792011-02-28 17:03:56 +0530404
405/*
406 * wait for a page to complete writing to the cache
407 */
408void __v9fs_fscache_wait_on_page_write(struct inode *inode, struct page *page)
409{
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530410 const struct v9fs_inode *v9inode = V9FS_I(inode);
Joe Perches5d385152011-11-28 10:40:46 -0800411 p9_debug(P9_DEBUG_FSC, "inode %p page %p\n", inode, page);
Aneesh Kumar K.V2efda792011-02-28 17:03:56 +0530412 if (PageFsCache(page))
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530413 fscache_wait_on_page_write(v9inode->fscache, page);
Aneesh Kumar K.V2efda792011-02-28 17:03:56 +0530414}