diff options
author | Miklos Szeredi <mszeredi@suse.cz> | 2014-12-12 03:49:04 -0500 |
---|---|---|
committer | Miklos Szeredi <mszeredi@suse.cz> | 2014-12-12 03:49:04 -0500 |
commit | 0c4dd4ba1426c599072511dcf95a15ee5e12725b (patch) | |
tree | d34164702feae7fc5937a17ee242077384e98eb6 /fs/fuse | |
parent | b2776bf7149bddd1f4161f14f79520f17fc1d71d (diff) |
fuse: don't wake up reserved req in fuse_conn_kill()
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>
Diffstat (limited to 'fs/fuse')
-rw-r--r-- | fs/fuse/inode.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/fuse/inode.c b/fs/fuse/inode.c index 03246cd9d47a..15653a073d69 100644 --- a/fs/fuse/inode.c +++ b/fs/fuse/inode.c | |||
@@ -387,7 +387,6 @@ void fuse_conn_kill(struct fuse_conn *fc) | |||
387 | kill_fasync(&fc->fasync, SIGIO, POLL_IN); | 387 | kill_fasync(&fc->fasync, SIGIO, POLL_IN); |
388 | wake_up_all(&fc->waitq); | 388 | wake_up_all(&fc->waitq); |
389 | wake_up_all(&fc->blocked_waitq); | 389 | wake_up_all(&fc->blocked_waitq); |
390 | wake_up_all(&fc->reserved_req_waitq); | ||
391 | } | 390 | } |
392 | EXPORT_SYMBOL_GPL(fuse_conn_kill); | 391 | EXPORT_SYMBOL_GPL(fuse_conn_kill); |
393 | 392 | ||