Message ID | 20190325142332.3917-1-suwan.kim027@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | usbip: Support error(event) detection in vhci_tx_loop() kernel thread | expand |
diff --git a/drivers/usb/usbip/vhci_tx.c b/drivers/usb/usbip/vhci_tx.c index 9aed15a358b7..004c91aa75ed 100644 --- a/drivers/usb/usbip/vhci_tx.c +++ b/drivers/usb/usbip/vhci_tx.c @@ -195,6 +195,9 @@ int vhci_tx_loop(void *data) struct vhci_device *vdev = container_of(ud, struct vhci_device, ud); while (!kthread_should_stop()) { + if (usbip_event_happened(ud)) + break; + if (vhci_send_cmd_submit(vdev) < 0) break;
In the case of stub driver and vudc driver, tx threads have error (event) detection logic that is usbip_event_happened() and checks error condition and halts the tx thread if there is an error. However, vhci_tx_loop() has no error detection logic and there is a possibility that an error(event) may occur before vhci_tx_loop() is executed. For example, assume that a driver uses multiple URBs. vhci_rx_loop() receives a URB and gives the URB to the device driver calling URB complete function. And URB complete function calls usb_submit_urb() and vhci_urb_enqueue() which wakes up the tx thread (vhci_tx_loop()). And there is possible situation that the first URB is successfully received but receiving second URB fails and the tx thread is scheduled but not yet executed. In this situation, the tx thread must detect an error in rx path and terminate itself when it is executed. Signed-off-by: Suwan Kim <suwan.kim027@gmail.com> --- drivers/usb/usbip/vhci_tx.c | 3 +++ 1 file changed, 3 insertions(+)