Date: Thu, 29 Jan 2026 00:03:29 +0000 From: John Baldwin <jhb@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: dfc0c1cdcfe7 - stable/14 - nvme: Add constants for the Fused Operation (FUSE) field in commands Message-ID: <697aa3d1.d79b.43ed968f@gitrepo.freebsd.org>
index | next in thread | raw e-mail
The branch stable/14 has been updated by jhb: URL: https://cgit.FreeBSD.org/src/commit/?id=dfc0c1cdcfe7fdd25acacc4295b636a1f4dc1bc8 commit dfc0c1cdcfe7fdd25acacc4295b636a1f4dc1bc8 Author: John Baldwin <jhb@FreeBSD.org> AuthorDate: 2024-05-02 23:31:02 +0000 Commit: John Baldwin <jhb@FreeBSD.org> CommitDate: 2026-01-29 00:01:15 +0000 nvme: Add constants for the Fused Operation (FUSE) field in commands Sponsored by: Chelsio Communications Differential Revision: https://reviews.freebsd.org/D44845 (cherry picked from commit 5e3e4442305d9e5af9862fac73feb0d7f37d4b56) --- sys/dev/nvme/nvme.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sys/dev/nvme/nvme.h b/sys/dev/nvme/nvme.h index 45133c7a9b91..17a59d70d9fa 100644 --- a/sys/dev/nvme/nvme.h +++ b/sys/dev/nvme/nvme.h @@ -211,6 +211,11 @@ /* Command field definitions */ +enum nvme_fuse { + NVME_FUSE_NORMAL = 0x0, + NVME_FUSE_FIRST = 0x1, + NVME_FUSE_SECOND = 0x2 +}; #define NVME_CMD_FUSE_SHIFT (0) #define NVME_CMD_FUSE_MASK (0x3)home | help
Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?697aa3d1.d79b.43ed968f>
