git: 208fcb55e33b - main - Fix MINIMAL build on amd64
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 14 Jul 2023 07:46:59 UTC
The branch main has been updated by kp: URL: https://cgit.FreeBSD.org/src/commit/?id=208fcb55e33ba423a90b0a6f72e730b0ab97d853 commit 208fcb55e33ba423a90b0a6f72e730b0ab97d853 Author: Kristof Provost <kp@FreeBSD.org> AuthorDate: 2023-07-13 12:44:26 +0000 Commit: Kristof Provost <kp@FreeBSD.org> CommitDate: 2023-07-14 07:18:43 +0000 Fix MINIMAL build on amd64 amd64/include/counter.h uses KASSERT, but failed to include the kassert.h header. --- sys/amd64/include/counter.h | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/amd64/include/counter.h b/sys/amd64/include/counter.h index bde78ccacd7a..38c5a3d12056 100644 --- a/sys/amd64/include/counter.h +++ b/sys/amd64/include/counter.h @@ -36,6 +36,7 @@ #define __MACHINE_COUNTER_H__ #include <sys/pcpu.h> +#include <sys/kassert.h> #define EARLY_COUNTER (void *)__offsetof(struct pcpu, pc_early_dummy_counter)