mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
uwb: uwbd() is not freezable kthread
uwbd() calls try_to_freeze(), but the thread doesn't mark itself freezable through set_freezable(), so the try_to_freeze() call is useless. Signed-off-by: Jiri Kosina <jkosina@suse.cz> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
d5ddcdf4d6
commit
ced08b020e
1 changed files with 0 additions and 1 deletions
|
@ -279,7 +279,6 @@ static int uwbd(void *param)
|
|||
HZ);
|
||||
if (should_stop)
|
||||
break;
|
||||
try_to_freeze();
|
||||
|
||||
spin_lock_irqsave(&rc->uwbd.event_list_lock, flags);
|
||||
if (!list_empty(&rc->uwbd.event_list)) {
|
||||
|
|
Loading…
Reference in a new issue