USB: CDC-ACM: fix poison/unpoison imbalance
authorOliver Neukum <oneukum@suse.com>
Wed, 21 Apr 2021 07:45:13 +0000 (09:45 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 28 Apr 2021 11:19:16 +0000 (13:19 +0200)
commitaf7099bad49591675a9b14bb48437bc6b53b4435
tree49b98859f8f623b6e81777f6aab9e8c215ae88a1
parentd7fad2ce15bdbbd0fec3ebe999fd7cab2267f53e
USB: CDC-ACM: fix poison/unpoison imbalance

commit a8b3b519618f30a87a304c4e120267ce6f8dc68a upstream.

suspend() does its poisoning conditionally, resume() does it
unconditionally. On a device with combined interfaces this
will balance, on a device with two interfaces the counter will
go negative and resubmission will fail.

Both actions need to be done conditionally.

Fixes: 6069e3e927c8f ("USB: cdc-acm: untangle a circular dependency between callback and softint")
Signed-off-by: Oliver Neukum <oneukum@suse.com>
Cc: stable <stable@vger.kernel.org>
Link: https://lore.kernel.org/r/20210421074513.4327-1-oneukum@suse.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/class/cdc-acm.c