aboutsummaryrefslogtreecommitdiffstats
path: root/fs/9p
diff options
context:
space:
mode:
authorAneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>2011-02-28 06:33:55 -0500
committerEric Van Hensbergen <ericvh@gmail.com>2011-03-15 10:57:36 -0400
commit46848de0249470e50d87af6d7f9d41cdff3e43f5 (patch)
tree7aea04f2d3b529322d128c6a9cb50ea0a813c510 /fs/9p
parent29236f4e18dde0c772968b6ce965d0365fe3fe4e (diff)
fs/9p: set fs cache cookie in create path also
We need to call v9fs_cache_inode_set_cookie in create path also Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> Signed-off-by: Venkateswararao Jujjuri <jvrao@linux.vnet.ibm.com> Signed-off-by: Eric Van Hensbergen <ericvh@gmail.com>
Diffstat (limited to 'fs/9p')
-rw-r--r--fs/9p/vfs_file.c4
-rw-r--r--fs/9p/vfs_inode.c4
-rw-r--r--fs/9p/vfs_inode_dotl.c4
3 files changed, 9 insertions, 3 deletions
diff --git a/fs/9p/vfs_file.c b/fs/9p/vfs_file.c
index 6a671000263f..ce1eae48a127 100644
--- a/fs/9p/vfs_file.c
+++ b/fs/9p/vfs_file.c
@@ -87,10 +87,8 @@ int v9fs_file_open(struct inode *inode, struct file *file)
87 87
88 file->private_data = fid; 88 file->private_data = fid;
89#ifdef CONFIG_9P_FSCACHE 89#ifdef CONFIG_9P_FSCACHE
90 if ((fid->qid.version) && (v9ses->cache)) { 90 if (v9ses->cache)
91 P9_DPRINTK(P9_DEBUG_VFS, "cached");
92 v9fs_cache_inode_set_cookie(inode, file); 91 v9fs_cache_inode_set_cookie(inode, file);
93 }
94#endif 92#endif
95 return 0; 93 return 0;
96} 94}
diff --git a/fs/9p/vfs_inode.c b/fs/9p/vfs_inode.c
index 83af2b7e65db..95f55011aca1 100644
--- a/fs/9p/vfs_inode.c
+++ b/fs/9p/vfs_inode.c
@@ -608,6 +608,10 @@ v9fs_vfs_create(struct inode *dir, struct dentry *dentry, int mode,
608 } 608 }
609 609
610 filp->private_data = fid; 610 filp->private_data = fid;
611#ifdef CONFIG_9P_FSCACHE
612 if (v9ses->cache)
613 v9fs_cache_inode_set_cookie(dentry->d_inode, filp);
614#endif
611 } else 615 } else
612 p9_client_clunk(fid); 616 p9_client_clunk(fid);
613 617
diff --git a/fs/9p/vfs_inode_dotl.c b/fs/9p/vfs_inode_dotl.c
index fe3ffa9aace4..fbe957268f05 100644
--- a/fs/9p/vfs_inode_dotl.c
+++ b/fs/9p/vfs_inode_dotl.c
@@ -226,6 +226,10 @@ v9fs_vfs_create_dotl(struct inode *dir, struct dentry *dentry, int omode,
226 return PTR_ERR(filp); 226 return PTR_ERR(filp);
227 } 227 }
228 filp->private_data = ofid; 228 filp->private_data = ofid;
229#ifdef CONFIG_9P_FSCACHE
230 if (v9ses->cache)
231 v9fs_cache_inode_set_cookie(inode, filp);
232#endif
229 return 0; 233 return 0;
230 234
231error: 235error: