Skip to content

Commit 25e58af

Browse files
wzhen12Christoph Hellwig
authored andcommitted
nvme-pci: add the IGNORE_DEV_SUBNQN quirk for Intel P4500/P4600 SSDs
The Intel P4500/P4600 SSDs do not report a subsystem NQN despite claiming compliance to a standards version where reporting one is required. Add the IGNORE_DEV_SUBNQN quirk to not fail the initialization of a second such SSDs in a system. Signed-off-by: Zheng Wu <wu.zheng@intel.com> Signed-off-by: Ye Jinhe <jinhe.ye@intel.com> Reviewed-by: Keith Busch <kbusch@kernel.org> Signed-off-by: Christoph Hellwig <hch@lst.de>
1 parent 83114df commit 25e58af

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

drivers/nvme/host/pci.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3391,7 +3391,8 @@ static const struct pci_device_id nvme_id_table[] = {
33913391
NVME_QUIRK_DEALLOCATE_ZEROES, },
33923392
{ PCI_VDEVICE(INTEL, 0x0a54), /* Intel P4500/P4600 */
33933393
.driver_data = NVME_QUIRK_STRIPE_SIZE |
3394-
NVME_QUIRK_DEALLOCATE_ZEROES, },
3394+
NVME_QUIRK_DEALLOCATE_ZEROES |
3395+
NVME_QUIRK_IGNORE_DEV_SUBNQN, },
33953396
{ PCI_VDEVICE(INTEL, 0x0a55), /* Dell Express Flash P4600 */
33963397
.driver_data = NVME_QUIRK_STRIPE_SIZE |
33973398
NVME_QUIRK_DEALLOCATE_ZEROES, },

0 commit comments

Comments
 (0)