mirror of https://gitee.com/openkylin/linux.git
USB: storage: don't insert sane sense for SPC3+ when bad sense specified
Currently the code will set US_FL_SANE_SENSE flag unconditionally if device claims SPC3+, however we should allow US_FL_BAD_SENSE flag to prevent this behavior, because SMI SM3350 UFS-USB bridge controller, which claims SPC4, will show strange behavior with 96-byte sense (put the chip into a wrong state that cannot read/write anything). Check the presence of US_FL_BAD_SENSE when assuming US_FL_SANE_SENSE on SPC4+ devices. Signed-off-by: Icenowy Zheng <icenowy@aosc.io> Cc: stable <stable@vger.kernel.org> Acked-by: Alan Stern <stern@rowland.harvard.edu> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
34aabf9187
commit
c5603d2fdb
|
@ -235,8 +235,12 @@ static int slave_configure(struct scsi_device *sdev)
|
||||||
if (!(us->fflags & US_FL_NEEDS_CAP16))
|
if (!(us->fflags & US_FL_NEEDS_CAP16))
|
||||||
sdev->try_rc_10_first = 1;
|
sdev->try_rc_10_first = 1;
|
||||||
|
|
||||||
/* assume SPC3 or latter devices support sense size > 18 */
|
/*
|
||||||
if (sdev->scsi_level > SCSI_SPC_2)
|
* assume SPC3 or latter devices support sense size > 18
|
||||||
|
* unless US_FL_BAD_SENSE quirk is specified.
|
||||||
|
*/
|
||||||
|
if (sdev->scsi_level > SCSI_SPC_2 &&
|
||||||
|
!(us->fflags & US_FL_BAD_SENSE))
|
||||||
us->fflags |= US_FL_SANE_SENSE;
|
us->fflags |= US_FL_SANE_SENSE;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in New Issue