Add a quirk for Samsung PM9B1 256G and 512G that reports duplicate ids for disk.
Signed-off-by: Nils Kruse nilskruse97@gmail.com --- drivers/nvme/host/pci.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/nvme/host/pci.c b/drivers/nvme/host/pci.c index 60f51155a6d2..de5e4c7e4bc9 100644 --- a/drivers/nvme/host/pci.c +++ b/drivers/nvme/host/pci.c @@ -3395,7 +3395,8 @@ static const struct pci_device_id nvme_id_table[] = { { PCI_DEVICE(0x1d97, 0x2263), /* SPCC */ .driver_data = NVME_QUIRK_DISABLE_WRITE_ZEROES, }, { PCI_DEVICE(0x144d, 0xa80b), /* Samsung PM9B1 256G and 512G */ - .driver_data = NVME_QUIRK_DISABLE_WRITE_ZEROES, }, + .driver_data = NVME_QUIRK_DISABLE_WRITE_ZEROES | + NVME_QUIRK_BOGUS_NID, }, { PCI_DEVICE(0x144d, 0xa809), /* Samsung MZALQ256HBJD 256G */ .driver_data = NVME_QUIRK_DISABLE_WRITE_ZEROES, }, { PCI_DEVICE(0x1cc4, 0x6303), /* UMIS RPJTJ512MGE1QDY 512G */
Hi,
Thanks for your patch.
FYI: kernel test robot notices the stable kernel rule is not satisfied.
Rule: 'Cc: stable@vger.kernel.org' or 'commit <sha1> upstream.' Subject: [PATCH] nvme-pci: Add quirk for Samsung PM9B1 256G and 512G SSD Link: https://lore.kernel.org/stable/b99a5149-c3d6-2a9b-1298-576a1b4b22c1%40gmail....
The check is based on https://www.kernel.org/doc/html/latest/process/stable-kernel-rules.html
On 2023-06-11 13:41, Nils Kruse wrote:
Add a quirk for Samsung PM9B1 256G and 512G that reports duplicate ids for disk.
Is this the same issue with suspend as [1], [2] and [3] or is it a different case?
[1] https://lore.kernel.org/all/20221116171727.4083-1-git@augustwikerfors.se/t/ [2] https://github.com/tomsom/yoga-linux/issues/9 [3] https://lore.kernel.org/all/d0ce0f3b-9407-9207-73a4-3536f0948653@augustwiker...
On Sun, Jul 16, 2023 at 9:30 PM August Wikerfors git@augustwikerfors.se wrote:
On 2023-06-11 13:41, Nils Kruse wrote:
Add a quirk for Samsung PM9B1 256G and 512G that reports duplicate ids for disk.
Is this the same issue with suspend as [1], [2] and [3] or is it a different case?
[1] https://lore.kernel.org/all/20221116171727.4083-1-git@augustwikerfors.se/t/ [2] https://github.com/tomsom/yoga-linux/issues/9 [3] https://lore.kernel.org/all/d0ce0f3b-9407-9207-73a4-3536f0948653@augustwiker...
Yes, this is the same issue.
linux-stable-mirror@lists.linaro.org