The branch stable/14 has been updated by jhb: URL: https://cgit.FreeBSD.org/src/commit/?id=dfc0c1cdcfe7fdd25acacc4295b636a1f4dc1bc8
commit dfc0c1cdcfe7fdd25acacc4295b636a1f4dc1bc8 Author: John Baldwin <[email protected]> AuthorDate: 2024-05-02 23:31:02 +0000 Commit: John Baldwin <[email protected]> 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)
