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
commit20656a49ef37d8f44ed1e0b47d132197f9628adc (patch)
treead6ed2f5713b16030bb351e8f0883ae7963e1d9d /fs/9p
parent46848de0249470e50d87af6d7f9d41cdff3e43f5 (diff)
fs/9p: increment inode->i_count in cached mode.
We need to ihold even in cached mode 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_inode_dotl.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/fs/9p/vfs_inode_dotl.c b/fs/9p/vfs_inode_dotl.c
index fbe957268f05..265f5834498a 100644
--- a/fs/9p/vfs_inode_dotl.c
+++ b/fs/9p/vfs_inode_dotl.c
@@ -636,13 +636,8 @@ v9fs_vfs_link_dotl(struct dentry *old_dentry, struct inode *dir,
636 v9fs_stat2inode_dotl(st, old_dentry->d_inode); 636 v9fs_stat2inode_dotl(st, old_dentry->d_inode);
637 637
638 kfree(st); 638 kfree(st);
639 } else {
640 /* Caching disabled. No need to get upto date stat info.
641 * This dentry will be released immediately. So, just hold the
642 * inode
643 */
644 ihold(old_dentry->d_inode);
645 } 639 }
640 ihold(old_dentry->d_inode);
646 d_instantiate(dentry, old_dentry->d_inode); 641 d_instantiate(dentry, old_dentry->d_inode);
647 642
648 return err; 643 return err;