Commit d0db378b authored by Aneesh Kumar K.V's avatar Aneesh Kumar K.V Committed by Greg Kroah-Hartman

fs/9p: Fid is not valid after a failed clunk.

commit 5034990e upstream.

free the fid even in case of failed clunk.
Signed-off-by: default avatarAneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
Signed-off-by: default avatarEric Van Hensbergen <ericvh@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent fd319bb5
...@@ -1022,9 +1022,11 @@ int p9_client_clunk(struct p9_fid *fid) ...@@ -1022,9 +1022,11 @@ int p9_client_clunk(struct p9_fid *fid)
P9_DPRINTK(P9_DEBUG_9P, "<<< RCLUNK fid %d\n", fid->fid); P9_DPRINTK(P9_DEBUG_9P, "<<< RCLUNK fid %d\n", fid->fid);
p9_free_req(clnt, req); p9_free_req(clnt, req);
p9_fid_destroy(fid);
error: error:
/*
* Fid is not valid even after a failed clunk
*/
p9_fid_destroy(fid);
return err; return err;
} }
EXPORT_SYMBOL(p9_client_clunk); EXPORT_SYMBOL(p9_client_clunk);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment