diff options
author | Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> | 2011-07-11 16:40:58 +0000 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-11-07 12:32:00 -0800 |
commit | d0db378ba6a4f6e2d863666ab5c56b5a436223d4 (patch) | |
tree | 56fc5f656488b7a9b156c70740e5ccfa4faf25cf | |
parent | fd319bb5c7fbe886389e19f8c530ee9a644f9619 (diff) | |
download | linux-stable-d0db378ba6a4f6e2d863666ab5c56b5a436223d4.tar.gz linux-stable-d0db378ba6a4f6e2d863666ab5c56b5a436223d4.tar.bz2 linux-stable-d0db378ba6a4f6e2d863666ab5c56b5a436223d4.zip |
fs/9p: Fid is not valid after a failed clunk.
commit 5034990e28efb2d232ee82443a9edd62defd17ba upstream.
free the fid even in case of failed clunk.
Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
Signed-off-by: Eric Van Hensbergen <ericvh@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r-- | net/9p/client.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/net/9p/client.c b/net/9p/client.c index 13a0682b3417..6b58ef30696c 100644 --- a/net/9p/client.c +++ b/net/9p/client.c @@ -1022,9 +1022,11 @@ int p9_client_clunk(struct p9_fid *fid) P9_DPRINTK(P9_DEBUG_9P, "<<< RCLUNK fid %d\n", fid->fid); p9_free_req(clnt, req); - p9_fid_destroy(fid); - error: + /* + * Fid is not valid even after a failed clunk + */ + p9_fid_destroy(fid); return err; } EXPORT_SYMBOL(p9_client_clunk); |