USB: uas: honor flag to avoid CAPACITY16
Copy the support over from usb-storage to get feature parity Signed-off-by: Oliver Neukum <oneukum@suse.com> Cc: stable <stable@vger.kernel.org> Link: https://lore.kernel.org/r/20191114112758.32747-2-oneukum@suse.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
6351653feb
commit
bff000cae1
|
@ -825,6 +825,10 @@ static int uas_slave_configure(struct scsi_device *sdev)
|
||||||
sdev->wce_default_on = 1;
|
sdev->wce_default_on = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Some disks cannot handle READ_CAPACITY_16 */
|
||||||
|
if (devinfo->flags & US_FL_NO_READ_CAPACITY_16)
|
||||||
|
sdev->no_read_capacity_16 = 1;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Some disks return the total number of blocks in response
|
* Some disks return the total number of blocks in response
|
||||||
* to READ CAPACITY rather than the highest block number.
|
* to READ CAPACITY rather than the highest block number.
|
||||||
|
|
Loading…
Reference in New Issue