diff options
author | Keith Busch <kbusch@kernel.org> | 2022-06-13 16:45:48 +0200 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2022-06-13 19:56:56 +0200 |
commit | c98a879312caf775c9768faed25ce1c013b4df04 (patch) | |
tree | 1397f7b9737e23aa80609f8d13fd39cd3a98ac73 /drivers | |
parent | nvme-pci: phison e12 has bogus namespace ids (diff) | |
download | linux-c98a879312caf775c9768faed25ce1c013b4df04.tar.xz linux-c98a879312caf775c9768faed25ce1c013b4df04.zip |
nvme-pci: smi has bogus namespace ids
Add the quirk.
Link: https://bugzilla.kernel.org/show_bug.cgi?id=216096
Signed-off-by: Keith Busch <kbusch@kernel.org>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/nvme/host/pci.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/nvme/host/pci.c b/drivers/nvme/host/pci.c index 156723d3af83..0d2113468523 100644 --- a/drivers/nvme/host/pci.c +++ b/drivers/nvme/host/pci.c @@ -3445,7 +3445,8 @@ static const struct pci_device_id nvme_id_table[] = { { PCI_VDEVICE(REDHAT, 0x0010), /* Qemu emulated controller */ .driver_data = NVME_QUIRK_BOGUS_NID, }, { PCI_DEVICE(0x126f, 0x2263), /* Silicon Motion unidentified */ - .driver_data = NVME_QUIRK_NO_NS_DESC_LIST, }, + .driver_data = NVME_QUIRK_NO_NS_DESC_LIST | + NVME_QUIRK_BOGUS_NID, }, { PCI_DEVICE(0x1bb1, 0x0100), /* Seagate Nytro Flash Storage */ .driver_data = NVME_QUIRK_DELAY_BEFORE_CHK_RDY | NVME_QUIRK_NO_NS_DESC_LIST, }, |