diff options
| author | Pouria Mousavizadeh Tehrani <pouria@FreeBSD.org> | 2026-07-13 22:44:43 +0000 |
|---|---|---|
| committer | Pouria Mousavizadeh Tehrani <pouria@FreeBSD.org> | 2026-07-13 22:50:24 +0000 |
| commit | 8ed5e67e2165fb38d7a0b27e67aa7ca18c68ffac (patch) | |
| tree | 9cdbcb1f71c1bb276e69233a7a3f4fa7720e1d7b | |
| parent | 9dfaf1cb37f8ac89cf6dbfd1d6905c8d03722391 (diff) | |
routing: Include <sys/eventhandler.h> in nhop_ctl.h
Fix missing Include which is currently leaked through vnet code.
Reported by: bz
Fixes: d05d1f256082 ("routing: Subscribe nhops to ifnet link events")
Differential Revision: https://reviews.freebsd.org/D57375
| -rw-r--r-- | sys/net/route/nhop_ctl.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/net/route/nhop_ctl.c b/sys/net/route/nhop_ctl.c index d978e624e65d..628a1da41862 100644 --- a/sys/net/route/nhop_ctl.c +++ b/sys/net/route/nhop_ctl.c @@ -30,6 +30,7 @@ #include "opt_inet6.h" #include <sys/param.h> +#include <sys/eventhandler.h> #include <sys/systm.h> #include <sys/lock.h> #include <sys/rwlock.h> |
