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 <[email protected]> Signed-off-by: Ye Jinhe <[email protected]> Reviewed-by: Keith Busch <[email protected]> Signed-off-by: Christoph Hellwig <[email protected]>
1 parent 83114df commit 25e58af

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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)