mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
ieee1394: fix another deadlock in nodemgr
A "modprobe ohci1394; sleep 1.5; modprobe -r ohci1394" could get stuck in uninterruptible state, especially if an external node was connected. http://bugzilla.kernel.org/show_bug.cgi?id=7792 Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
This commit is contained in:
parent
3dc5ea9b31
commit
a65421ea3f
1 changed files with 2 additions and 1 deletions
|
@ -1681,7 +1681,8 @@ static int nodemgr_host_thread(void *__hi)
|
|||
for (;;) {
|
||||
/* Sleep until next bus reset */
|
||||
set_current_state(TASK_INTERRUPTIBLE);
|
||||
if (get_hpsb_generation(host) == generation)
|
||||
if (get_hpsb_generation(host) == generation &&
|
||||
!kthread_should_stop())
|
||||
schedule();
|
||||
__set_current_state(TASK_RUNNING);
|
||||
|
||||
|
|
Loading…
Reference in a new issue