projects
/
platform
/
kernel
/
linux-exynos.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
94374e7
)
[PATCH] v9fs: fix fid check in v9fs_create
author
Latchesar Ionkov
<lucho@ionkov.net>
Wed, 28 Jun 2006 11:26:51 +0000
(
04:26
-0700)
committer
Linus Torvalds
<torvalds@g5.osdl.org>
Wed, 28 Jun 2006 21:59:05 +0000
(14:59 -0700)
Fix an incorrect check whether a fid was allocated in v9fs_create and if it
should be freed on error.
Signed-off-by: Latchesar Ionkov <lucho@ionkov.net>
Cc: Eric Van Hensbergen <ericvh@ericvh.myip.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
fs/9p/vfs_inode.c
patch
|
blob
|
history
diff --git
a/fs/9p/vfs_inode.c
b/fs/9p/vfs_inode.c
index
5c6bdf8
..
2f580a1
100644
(file)
--- a/
fs/9p/vfs_inode.c
+++ b/
fs/9p/vfs_inode.c
@@
-300,7
+300,7
@@
clunk_fid:
fid = V9FS_NOFID;
put_fid:
- if (fid
>= 0
)
+ if (fid
!= V9FS_NOFID
)
v9fs_put_idpool(fid, &v9ses->fidpool);
kfree(fcall);