git: fc8cf0a8deb8 - main - ctl: Make ctl_private.h more self-contained
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 16 Oct 2023 22:48:03 UTC
The branch main has been updated by jhb: URL: https://cgit.FreeBSD.org/src/commit/?id=fc8cf0a8deb8908fb17acc56e96f3f700c05136d commit fc8cf0a8deb8908fb17acc56e96f3f700c05136d Author: John Baldwin <jhb@FreeBSD.org> AuthorDate: 2023-10-16 22:46:43 +0000 Commit: John Baldwin <jhb@FreeBSD.org> CommitDate: 2023-10-16 22:46:43 +0000 ctl: Make ctl_private.h more self-contained Include <sys/sysctl.h> for sysctl context types. Reviewed by: ken, imp Sponsored by: Chelsio Communications Differential Revision: https://reviews.freebsd.org/D42209 --- sys/cam/ctl/ctl_private.h | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/cam/ctl/ctl_private.h b/sys/cam/ctl/ctl_private.h index 9a87345015fa..04846f80e913 100644 --- a/sys/cam/ctl/ctl_private.h +++ b/sys/cam/ctl/ctl_private.h @@ -41,6 +41,7 @@ #ifndef _CTL_PRIVATE_H_ #define _CTL_PRIVATE_H_ +#include <sys/sysctl.h> #include <cam/scsi/scsi_all.h> #include <cam/scsi/scsi_cd.h> #include <cam/scsi/scsi_da.h>