git: 70e5a9ea78f3 - main - nvmf: Install nvmf.h and nvmf_proto.h in /usr/include/dev/nvmf

From: John Baldwin <jhb_at_FreeBSD.org>
Date: Fri, 03 May 2024 00:15:41 UTC
The branch main has been updated by jhb:

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

commit 70e5a9ea78f34c9ce4e17518de905ef18a2c42ba
Author:     John Baldwin <jhb@FreeBSD.org>
AuthorDate: 2024-05-02 23:27:30 +0000
Commit:     John Baldwin <jhb@FreeBSD.org>
CommitDate: 2024-05-02 23:27:30 +0000

    nvmf: Install nvmf.h and nvmf_proto.h in /usr/include/dev/nvmf
    
    Reviewed by:    imp
    Sponsored by:   Chelsio Communications
    Differential Revision:  https://reviews.freebsd.org/D44707
---
 etc/mtree/BSD.include.dist | 2 ++
 include/Makefile           | 6 ++++++
 2 files changed, 8 insertions(+)

diff --git a/etc/mtree/BSD.include.dist b/etc/mtree/BSD.include.dist
index 8b4bf66c65bd..a6bd5880bf61 100644
--- a/etc/mtree/BSD.include.dist
+++ b/etc/mtree/BSD.include.dist
@@ -153,6 +153,8 @@
         ..
         nvme
         ..
+        nvmf
+        ..
         ofw
         ..
         pbio
diff --git a/include/Makefile b/include/Makefile
index d44c982d950c..19e6beb95203 100644
--- a/include/Makefile
+++ b/include/Makefile
@@ -182,6 +182,11 @@ OPENCRYPTODIR=	${INCLUDEDIR}/crypto
 NVME=		nvme.h
 NVMEDIR=	${INCLUDEDIR}/dev/nvme
 
+.PATH: ${SRCTOP}/sys/dev/nvmf
+NVMF=		nvmf.h \
+		nvmf_proto.h
+NVMFDIR=	${INCLUDEDIR}/dev/nvmf
+
 .PATH: ${SRCTOP}/sys/dev/pci
 PCI=		pcireg.h
 PCIDIR=		${INCLUDEDIR}/dev/pci
@@ -255,6 +260,7 @@ INCSGROUPS=	INCS \
 		HYPERV \
 		OPENCRYPTO \
 		NVME \
+		NVMF \
 		PCI \
 		RPC \
 		SECAUDIT \