The branch main has been updated by glebius: URL: https://cgit.FreeBSD.org/src/commit/?id=0f12ee8ae1a81598541b703ba25b250dedff7803
commit 0f12ee8ae1a81598541b703ba25b250dedff7803 Author: Gleb Smirnoff <[email protected]> AuthorDate: 2025-12-09 17:42:19 +0000 Commit: Gleb Smirnoff <[email protected]> CommitDate: 2025-12-09 17:42:19 +0000 linux: fix build without VIMAGE Fixes: fbf05d2147b1add8b760be166c4b1fd4499ebce8 --- sys/compat/linux/linux_if.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/compat/linux/linux_if.c b/sys/compat/linux/linux_if.c index 7c55ab9fd49c..1281207c1c84 100644 --- a/sys/compat/linux/linux_if.c +++ b/sys/compat/linux/linux_if.c @@ -25,6 +25,7 @@ #include <sys/param.h> #include <sys/systm.h> +#include <sys/kernel.h> #include <sys/ctype.h> #include <sys/eventhandler.h> #include <sys/jail.h>
