mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-04-23 23:03:59 +00:00
fuse: optimize wake_up
Normally blocked_waitq will be inactive, so optimize this case. Signed-off-by: Miklos Szeredi <mszeredi@suse.cz>
This commit is contained in:
parent
722d2bea8c
commit
3c18ef8117
1 changed files with 1 additions and 1 deletions
|
@ -379,7 +379,7 @@ __releases(fc->lock)
|
|||
fc->blocked = 0;
|
||||
|
||||
/* Wake up next waiter, if any */
|
||||
if (!fc->blocked)
|
||||
if (!fc->blocked && waitqueue_active(&fc->blocked_waitq))
|
||||
wake_up(&fc->blocked_waitq);
|
||||
|
||||
if (fc->num_background == fc->congestion_threshold &&
|
||||
|
|
Loading…
Add table
Reference in a new issue