Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 20 Dec 2025 22:49:38 +0000
From:      Bjoern A. Zeeb <bz@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 117306dc606b - main - in6_ifattach: include sys/eventhandler.h to unbreak NOVIMAGE builds
Message-ID:  <69472802.d1cf.15a0bf93@gitrepo.freebsd.org>

index | next in thread | raw e-mail

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>


help

Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?69472802.d1cf.15a0bf93>