git: 14f5fd2395e3 - main - nvme: Add quirk for Amazon EBS NVMe Controller
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 28 Jul 2026 23:28:52 UTC
The branch main has been updated by cperciva:
URL: https://cgit.FreeBSD.org/src/commit/?id=14f5fd2395e3f1c3fadeee8b95756c142f7dcb0b
commit 14f5fd2395e3f1c3fadeee8b95756c142f7dcb0b
Author: Colin Percival <cperciva@FreeBSD.org>
AuthorDate: 2026-07-14 17:43:59 +0000
Commit: Colin Percival <cperciva@FreeBSD.org>
CommitDate: 2026-07-28 23:28:36 +0000
nvme: Add quirk for Amazon EBS NVMe Controller
This controller exhibits QUIRK_EMPTY_NAMESPACE_CHANGED_LOG behaviour.
A bug report has been filed with the vendor.
Reviewed by: imp
MFC after: 1 week
Sponsored by: Amazon
Differential Revision: https://reviews.freebsd.org/D58232
---
sys/dev/nvme/nvme_pci.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/sys/dev/nvme/nvme_pci.c b/sys/dev/nvme/nvme_pci.c
index 8389c7535c3d..d81b7ccfcb15 100644
--- a/sys/dev/nvme/nvme_pci.c
+++ b/sys/dev/nvme/nvme_pci.c
@@ -101,6 +101,8 @@ static struct _pcsid
{ 0x2005106b, 0, 0, "Apple ANS2 NVMe Controller (T2)",
QUIRK_APPLE_IDENTIFY_CNS_BROKEN | QUIRK_APPLE_SHARED_CID_SPACE |
QUIRK_APPLE_NO_ASYNC_EVENT | QUIRK_APPLE_SINGLE_VECTOR },
+ { 0x80611d0f, 0, 0, "Amazon EBS NVMe Controller",
+ QUIRK_EMPTY_NAMESPACE_CHANGED_LOG },
{ 0x00000000, 0, 0, NULL }
};