]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
USB: yurex: fix control-URB timeout handling
authorJohan Hovold <johan@kernel.org>
Mon, 14 Dec 2020 10:30:53 +0000 (11:30 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 12 Jan 2021 19:09:11 +0000 (20:09 +0100)
commit2d701f6fc8d638d00179eb903b00548b42949536
tree6541aa9e8402c380aec05ba36ee9134072a97f66
parent07c29ca5523edd97e4c2343cb678a51511627d43
USB: yurex: fix control-URB timeout handling

commit 372c93131998c0622304bed118322d2a04489e63 upstream.

Make sure to always cancel the control URB in write() so that it can be
reused after a timeout or spurious CMD_ACK.

Currently any further write requests after a timeout would fail after
triggering a WARN() in usb_submit_urb() when attempting to submit the
already active URB.

Reported-by: syzbot+e87ebe0f7913f71f2ea5@syzkaller.appspotmail.com
Fixes: 6bc235a2e24a ("USB: add driver for Meywa-Denki & Kayac YUREX")
Cc: stable <stable@vger.kernel.org> # 2.6.37
Signed-off-by: Johan Hovold <johan@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/misc/yurex.c