From: Aneesh Kumar K.V Date: Mon, 28 Feb 2011 11:33:55 +0000 (+0530) Subject: fs/9p: increment inode->i_count in cached mode. X-Git-Tag: v2.6.39-rc1~489^2~29 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=20656a49ef37d8f44ed1e0b47d132197f9628adc;p=~shefty%2Frdma-dev.git fs/9p: increment inode->i_count in cached mode. We need to ihold even in cached mode Signed-off-by: Aneesh Kumar K.V Signed-off-by: Venkateswararao Jujjuri Signed-off-by: Eric Van Hensbergen --- diff --git a/fs/9p/vfs_inode_dotl.c b/fs/9p/vfs_inode_dotl.c index fbe957268f0..265f5834498 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, v9fs_stat2inode_dotl(st, old_dentry->d_inode); kfree(st); - } else { - /* Caching disabled. No need to get upto date stat info. - * This dentry will be released immediately. So, just hold the - * inode - */ - ihold(old_dentry->d_inode); } + ihold(old_dentry->d_inode); d_instantiate(dentry, old_dentry->d_inode); return err;