git: 117306dc606b - main - in6_ifattach: include sys/eventhandler.h to unbreak NOVIMAGE builds
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 20 Dec 2025 22:49:38 UTC
The branch main has been updated by bz:
URL: https://cgit.FreeBSD.org/src/commit/?id=117306dc606bf331795636b165b25be66e40d6a0
commit 117306dc606bf331795636b165b25be66e40d6a0
Author: Bjoern A. Zeeb <bz@FreeBSD.org>
AuthorDate: 2025-12-20 22:47:40 +0000
Commit: Bjoern A. Zeeb <bz@FreeBSD.org>
CommitDate: 2025-12-20 22:47:40 +0000
in6_ifattach: include sys/eventhandler.h to unbreak NOVIMAGE builds
LINT-NOVIMAGE fails to build due to a missing eventhandler.h include
which in hte VIMAGE case is likely leaked through some other header.
Add the #include to unbreak the build.
Fixes: 0d469d23715d6 (net: attach IPv4 and IPv6 stacks to an ...)
---
sys/netinet6/in6_ifattach.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/sys/netinet6/in6_ifattach.c b/sys/netinet6/in6_ifattach.c
index a2d236cccc41..c3d256a8d51f 100644
--- a/sys/netinet6/in6_ifattach.c
+++ b/sys/netinet6/in6_ifattach.c
@@ -32,6 +32,7 @@
*/
#include <sys/param.h>
+#include <sys/eventhandler.h>
#include <sys/systm.h>
#include <sys/counter.h>
#include <sys/malloc.h>