Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9856af8b authored by Aneesh Kumar K.V's avatar Aneesh Kumar K.V Committed by Eric Van Hensbergen
Browse files

fs/9p: Add missing iput in v9fs_vfs_lookup



Make sure we drop inode reference in the error path

Signed-off-by: default avatarAneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
Signed-off-by: default avatarVenkateswararao Jujjuri <jvrao@linux.vnet.ibm.com>
Signed-off-by: default avatarEric Van Hensbergen <ericvh@gmail.com>
parent f5fc6145
Loading
Loading
Loading
Loading
+3 −1
Original line number Original line Diff line number Diff line
@@ -1037,7 +1037,7 @@ static struct dentry *v9fs_vfs_lookup(struct inode *dir, struct dentry *dentry,


	result = v9fs_fid_add(dentry, fid);
	result = v9fs_fid_add(dentry, fid);
	if (result < 0)
	if (result < 0)
		goto error;
		goto error_iput;


inst_out:
inst_out:
	if (v9ses->cache)
	if (v9ses->cache)
@@ -1048,6 +1048,8 @@ static struct dentry *v9fs_vfs_lookup(struct inode *dir, struct dentry *dentry,
	d_add(dentry, inode);
	d_add(dentry, inode);
	return NULL;
	return NULL;


error_iput:
	iput(inode);
error:
error:
	p9_client_clunk(fid);
	p9_client_clunk(fid);