git.openpandora.org
/
pandora-kernel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b2776bf
)
fuse: don't wake up reserved req in fuse_conn_kill()
author
Miklos Szeredi
<mszeredi@suse.cz>
Fri, 12 Dec 2014 08:49:04 +0000
(09:49 +0100)
committer
Miklos Szeredi
<mszeredi@suse.cz>
Fri, 12 Dec 2014 08:49:04 +0000
(09:49 +0100)
Waking up reserved_req_waitq from fuse_conn_kill() doesn't make sense since
we aren't chaging ff->reserved_req here, which is what this waitqueue
signals.
Signed-off-by: Miklos Szeredi <mszeredi@suse.cz>
fs/fuse/inode.c
patch
|
blob
|
history
diff --git
a/fs/fuse/inode.c
b/fs/fuse/inode.c
index
03246cd
..
15653a0
100644
(file)
--- a/
fs/fuse/inode.c
+++ b/
fs/fuse/inode.c
@@
-387,7
+387,6
@@
void fuse_conn_kill(struct fuse_conn *fc)
kill_fasync(&fc->fasync, SIGIO, POLL_IN);
wake_up_all(&fc->waitq);
wake_up_all(&fc->blocked_waitq);
- wake_up_all(&fc->reserved_req_waitq);
}
EXPORT_SYMBOL_GPL(fuse_conn_kill);