]> git.karo-electronics.de Git - karo-tx-linux.git/commit
staging: usbip: Fix deadlock
authorEric Lescouet <lescouet@virtuallogix.com>
Sat, 24 Apr 2010 00:55:24 +0000 (02:55 +0200)
committerGreg Kroah-Hartman <gregkh@suse.de>
Wed, 12 May 2010 22:02:35 +0000 (15:02 -0700)
commitdf21fe75bef3db5bc2276eef92792718398f5889
treecf47e6ad32137dcef87a8898beb9cbc01381735f
parent680e3fe449b3a78a95871bbc02398b2bb1a40174
staging: usbip: Fix deadlock

commit d01f42a22ef381ba973958e977209ac9a8667d57 upstream.

When detaching a port from the client side (usbip --detach 0),
the event thread, on the server side, is going to deadlock.
The "eh" server thread is getting USBIP_EH_RESET event and calls:
  -> stub_device_reset() -> usb_reset_device()
the USB framework is then calling back _in the same "eh" thread_ :
  -> stub_disconnect() -> usbip_stop_eh() -> wait_for_completion()
the "eh" thread is being asleep forever, waiting for its own completion.
This patch checks if "eh" is the current thread, in usbip_stop_eh().

Signed-off-by: Eric Lescouet <eric@lescouet.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/usbip/usbip_event.c