]> git.ipfire.org Git - thirdparty/kernel/linux.git/commit
nvme-pci: add quirk for Memblaze Pblaze5 (0x1c5f:0x0555)
authorTao Jiang <tanroame.kyle@gmail.com>
Wed, 15 Apr 2026 17:27:15 +0000 (01:27 +0800)
committerKeith Busch <kbusch@kernel.org>
Thu, 16 Apr 2026 22:11:14 +0000 (15:11 -0700)
commitcf92d78a4aa2adbc2b1e687776aabe63c5b97f3f
tree2350f6ead0ed0340160166121ad124a8d13d8f21
parent3f150f0f010f234f34a67897344f18e68fe803f7
nvme-pci: add quirk for Memblaze Pblaze5 (0x1c5f:0x0555)

The Memblaze Pblaze5 NVMe device (PCI ID 0x1c5f:0x0555)
is detected as a controller on recent kernels (tested on 5.15.85
and 6.8.4), but no namespace is exposed.

Tools like lsblk and fdisk do not report any block device.

dmesg shows:
  nvme nvme0: missing or invalid SUBNQN field.

The device works correctly on older kernels (e.g. 4.19), suggesting
a compatibility issue with newer namespace handling.

This indicates the device does not properly support the
Namespace Descriptor List feature.

Applying NVME_QUIRK_NO_NS_DESC_LIST allows the namespace to be
discovered correctly.

Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Chaitanya Kulkarni <kch@nvidia.com>
Signed-off-by: Tao Jiang <tanroame.kyle@gmail.com>
Signed-off-by: Keith Busch <kbusch@kernel.org>
drivers/nvme/host/pci.c