git: bf2ce3afd0e4 - stable/15 - nvme: Add quirk for Amazon EBS NVMe Controller

From: Colin Percival <cperciva_at_FreeBSD.org>
Date: Tue, 15 Sep 2026 22:50:23 UTC
The branch stable/15 has been updated by cperciva:

URL: https://cgit.FreeBSD.org/src/commit/?id=bf2ce3afd0e421235e834633068538788bab97a1

commit bf2ce3afd0e421235e834633068538788bab97a1
Author:     Colin Percival <cperciva@FreeBSD.org>
AuthorDate: 2026-07-14 17:43:59 +0000
Commit:     Colin Percival <cperciva@FreeBSD.org>
CommitDate: 2026-09-15 22:49:42 +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
    
    (cherry picked from commit 14f5fd2395e3f1c3fadeee8b95756c142f7dcb0b)
---
 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 0566b227ad7c..b6d8e317b156 100644
--- a/sys/dev/nvme/nvme_pci.c
+++ b/sys/dev/nvme/nvme_pci.c
@@ -96,6 +96,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  }
 };