diff options
author | Alan Stern <stern@rowland.harvard.edu> | 2017-09-21 15:59:30 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-10-12 09:18:01 +0200 |
commit | c57e55706abeffafbc52d28155297650dae6e2c0 (patch) | |
tree | 6779dcb41a77f27831de44bef11eb9a9c1d72ba5 | |
parent | 59bf5c20792e4842e063890dc08ad38960d87eca (diff) | |
download | linux-stable-c57e55706abeffafbc52d28155297650dae6e2c0.tar.gz linux-stable-c57e55706abeffafbc52d28155297650dae6e2c0.tar.bz2 linux-stable-c57e55706abeffafbc52d28155297650dae6e2c0.zip |
usb-storage: unusual_devs entry to fix write-access regression for Seagate external drives
commit 113f6eb6d50cfa5e2a1cdcf1678b12661fa272ab upstream.
Kris Lindgren reports that without the NO_WP_DETECT flag, his Seagate
external disk drive fails all write accesses. This regresssion dates
back approximately to the start of the 4.x kernel releases.
Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
Reported-by: Kris Lindgren <kris.lindgren@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/usb/storage/unusual_devs.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/usb/storage/unusual_devs.h b/drivers/usb/storage/unusual_devs.h index 36584e1f15c5..4fefd76d2320 100644 --- a/drivers/usb/storage/unusual_devs.h +++ b/drivers/usb/storage/unusual_devs.h @@ -1379,6 +1379,13 @@ UNUSUAL_DEV( 0x0bc2, 0x3010, 0x0000, 0x0000, USB_SC_DEVICE, USB_PR_DEVICE, NULL, US_FL_SANE_SENSE ), +/* Reported by Kris Lindgren <kris.lindgren@gmail.com> */ +UNUSUAL_DEV( 0x0bc2, 0x3332, 0x0000, 0x9999, + "Seagate", + "External", + USB_SC_DEVICE, USB_PR_DEVICE, NULL, + US_FL_NO_WP_DETECT ), + UNUSUAL_DEV( 0x0d49, 0x7310, 0x0000, 0x9999, "Maxtor", "USB to SATA", |