diff options
| author | Kristof Provost <kp@FreeBSD.org> | 2026-06-29 14:05:52 +0000 |
|---|---|---|
| committer | Kristof Provost <kp@FreeBSD.org> | 2026-06-30 13:57:41 +0000 |
| commit | b8c6f5811b2a948a265a4bd90d33a18efb2a6f1e (patch) | |
| tree | c591959bf006497a320bab96807fac0161f8957e | |
| parent | 32cf24b725fdf899fb642c47004b69fcfae9b9db (diff) | |
pflog: run VNET_SYSUNINIT in SI_SUB_PROTO_FIREWALL
Suggested by: pouria, glebius
Sponsored by: Rubicon Communications, LLC ("Netgate")
| -rw-r--r-- | sys/netpfil/pf/if_pflog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netpfil/pf/if_pflog.c b/sys/netpfil/pf/if_pflog.c index a69be46587c0..7a55ff7461f0 100644 --- a/sys/netpfil/pf/if_pflog.c +++ b/sys/netpfil/pf/if_pflog.c @@ -285,7 +285,7 @@ vnet_pflog_uninit(const void *unused __unused) * Detach after pf is gone; otherwise we might touch pflog memory * from within pf after freeing pflog. */ -VNET_SYSUNINIT(vnet_pflog_uninit, SI_SUB_INIT_IF, SI_ORDER_SECOND, +VNET_SYSUNINIT(vnet_pflog_uninit, SI_SUB_PROTO_FIREWALL, SI_ORDER_SECOND, vnet_pflog_uninit, NULL); static int |
