summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGleb Smirnoff <glebius@FreeBSD.org>2026-01-17 21:51:38 -0800
committerGleb Smirnoff <glebius@FreeBSD.org>2026-01-17 21:51:38 -0800
commit76af334737b1f388163dab6d63aab90de7a46c40 (patch)
tree3e1291f9ca3db194410321ab25eb0fc73731dfb5
parent964d91ee1d7a1405383aeb4fce72c4e3bc80af35 (diff)
ipfw: fix !VIMAGE build
NB: Rest of ipfw(4) sources get sx.h via vnet.h, which isn't perfect.
-rw-r--r--sys/netpfil/ipfw/ip_fw_bpf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netpfil/ipfw/ip_fw_bpf.c b/sys/netpfil/ipfw/ip_fw_bpf.c
index af52cbc62ed6..9b92b136beb2 100644
--- a/sys/netpfil/ipfw/ip_fw_bpf.c
+++ b/sys/netpfil/ipfw/ip_fw_bpf.c
@@ -30,7 +30,7 @@
#include <sys/mbuf.h>
#include <sys/kernel.h>
#include <sys/lock.h>
-#include <sys/rwlock.h>
+#include <sys/sx.h>
#include <sys/socket.h>
#include <sys/tree.h>
#include <net/ethernet.h>