mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-15 09:55:36 +00:00
USB: serial: suppress driver bind attributes
USB-serial drivers must not be unbound from their ports before the corresponding USB driver is unbound from the parent interface so suppress the bind and unbind attributes. Unbinding a serial driver while it's port is open is a sure way to trigger a crash as any driver state is released on unbind while port hangup is handled on the parent USB interface level. Drivers for multiport devices where ports share a resource such as an interrupt endpoint also generally cannot handle individual ports going away. Fixes: 1da177e4c3f4 ("Linux-2.6.12-rc2") Cc: stable <stable@vger.kernel.org> Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Johan Hovold <johan@kernel.org>
This commit is contained in:
parent
f3eaabbfd0
commit
fdb838efa3
@ -1317,6 +1317,9 @@ static int usb_serial_register(struct usb_serial_driver *driver)
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
/* Prevent individual ports from being unbound. */
|
||||
driver->driver.suppress_bind_attrs = true;
|
||||
|
||||
usb_serial_operations_init(driver);
|
||||
|
||||
/* Add this device to our list of devices */
|
||||
|
Loading…
x
Reference in New Issue
Block a user