Skip to content

Commit 0302ae6

Browse files
Micah ParrishKeith Busch
authored andcommitted
NVMe: Add Quirk Delay before CHK RDY for Seagate Nytro Flash Storage
Add Seagate Nytro Flash Storage nvme drive to quirk list for NVME_QUIRK_DELAY_BEFORE_CHK_RDY, which solves a bug where the drive is probed on hot-add before the firmare is ready, I/O errors are generated while reading sector 0, and linux is "unable to read partition table". Signed-off-by: Micah Parrish <[email protected]> Reviewed-by: Martin K. Petersen <[email protected]> Signed-off-by: Keith Busch <[email protected]>
1 parent cde6bf4 commit 0302ae6

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

drivers/nvme/host/pci.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2704,6 +2704,8 @@ static const struct pci_device_id nvme_id_table[] = {
27042704
.driver_data = NVME_QUIRK_NO_DEEPEST_PS },
27052705
{ PCI_VDEVICE(INTEL, 0x5845), /* Qemu emulated controller */
27062706
.driver_data = NVME_QUIRK_IDENTIFY_CNS, },
2707+
{ PCI_DEVICE(0x1bb1, 0x0100), /* Seagate Nytro Flash Storage */
2708+
.driver_data = NVME_QUIRK_DELAY_BEFORE_CHK_RDY, },
27072709
{ PCI_DEVICE(0x1c58, 0x0003), /* HGST adapter */
27082710
.driver_data = NVME_QUIRK_DELAY_BEFORE_CHK_RDY, },
27092711
{ PCI_DEVICE(0x1c58, 0x0023), /* WDC SN200 adapter */

0 commit comments

Comments
 (0)