projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
52c14ab
)
fs/9p: Fid is not valid after a failed clunk.
author
Aneesh Kumar K.V
<aneesh.kumar@linux.vnet.ibm.com>
Mon, 11 Jul 2011 16:40:58 +0000
(16:40 +0000)
committer
Eric Van Hensbergen
<ericvh@gmail.com>
Sat, 23 Jul 2011 14:32:48 +0000
(09:32 -0500)
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>
net/9p/client.c
patch
|
blob
|
history
diff --git
a/net/9p/client.c
b/net/9p/client.c
index 332f97e0385e86c126a92744990eb2aedbdaece6..7dd4e78878d6a32319d792c11217f9e73415f5c7 100644
(file)
--- a/
net/9p/client.c
+++ b/
net/9p/client.c
@@
-1250,9
+1250,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);