git: dba59c3567da - stable/14 - ctl: Make ctl_private.h more self-contained
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 02 Jan 2024 20:52:36 UTC
The branch stable/14 has been updated by jhb: URL: https://cgit.FreeBSD.org/src/commit/?id=dba59c3567da17d3623ee48bf3b5d85de960eef6 commit dba59c3567da17d3623ee48bf3b5d85de960eef6 Author: John Baldwin <jhb@FreeBSD.org> AuthorDate: 2023-10-16 22:46:43 +0000 Commit: John Baldwin <jhb@FreeBSD.org> CommitDate: 2024-01-02 19:20:37 +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 (cherry picked from commit fc8cf0a8deb8908fb17acc56e96f3f700c05136d) --- 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>