diff options
author | Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> | 2011-07-11 12:40:58 -0400 |
---|---|---|
committer | Eric Van Hensbergen <ericvh@gmail.com> | 2011-07-23 10:32:48 -0400 |
commit | 5034990e28efb2d232ee82443a9edd62defd17ba (patch) | |
tree | 3d4ec559fb07e4da068fe623475b343896b66087 /net/9p | |
parent | 52c14ab3b51d000ca534e58f7f34e2dd53408b0a (diff) |
fs/9p: Fid is not valid after a failed clunk.
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>
Diffstat (limited to 'net/9p')
-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 332f97e0385e..7dd4e78878d6 100644 --- a/net/9p/client.c +++ b/net/9p/client.c | |||
@@ -1250,9 +1250,11 @@ int p9_client_clunk(struct p9_fid *fid) | |||
1250 | P9_DPRINTK(P9_DEBUG_9P, "<<< RCLUNK fid %d\n", fid->fid); | 1250 | P9_DPRINTK(P9_DEBUG_9P, "<<< RCLUNK fid %d\n", fid->fid); |
1251 | 1251 | ||
1252 | p9_free_req(clnt, req); | 1252 | p9_free_req(clnt, req); |
1253 | p9_fid_destroy(fid); | ||
1254 | |||
1255 | error: | 1253 | error: |
1254 | /* | ||
1255 | * Fid is not valid even after a failed clunk | ||
1256 | */ | ||
1257 | p9_fid_destroy(fid); | ||
1256 | return err; | 1258 | return err; |
1257 | } | 1259 | } |
1258 | EXPORT_SYMBOL(p9_client_clunk); | 1260 | EXPORT_SYMBOL(p9_client_clunk); |