aboutsummaryrefslogtreecommitdiffstats
path: root/fs/9p
diff options
context:
space:
mode:
authorAneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>2010-03-29 19:14:50 -0400
committerEric Van Hensbergen <ericvh@gmail.com>2010-04-05 11:37:36 -0400
commitd994f4058d9f9be7e44529b55fc6be6552901ead (patch)
tree065d86bde3fbb8328642c0f5817d3bdcca358ad8 /fs/9p
parent5b0fa207d1a6f27c9a2f2d707147dce01af21db7 (diff)
9p: drop nlink remove
We need to drop the link count on the inode of a sucessfull remove Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@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.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/fs/9p/vfs_inode.c b/fs/9p/vfs_inode.c
index 5fe45d692c9..ae839670770 100644
--- a/fs/9p/vfs_inode.c
+++ b/fs/9p/vfs_inode.c
@@ -431,6 +431,7 @@ error:
431 431
432static int v9fs_remove(struct inode *dir, struct dentry *file, int rmdir) 432static int v9fs_remove(struct inode *dir, struct dentry *file, int rmdir)
433{ 433{
434 int retval;
434 struct inode *file_inode; 435 struct inode *file_inode;
435 struct v9fs_session_info *v9ses; 436 struct v9fs_session_info *v9ses;
436 struct p9_fid *v9fid; 437 struct p9_fid *v9fid;
@@ -444,7 +445,10 @@ static int v9fs_remove(struct inode *dir, struct dentry *file, int rmdir)
444 if (IS_ERR(v9fid)) 445 if (IS_ERR(v9fid))
445 return PTR_ERR(v9fid); 446 return PTR_ERR(v9fid);
446 447
447 return p9_client_remove(v9fid); 448 retval = p9_client_remove(v9fid);
449 if (!retval)
450 drop_nlink(file_inode);
451 return retval;
448} 452}
449 453
450static int 454static int