diff --git a/sys/modules/tcp/fastpath/Makefile b/sys/modules/tcp/fastpath/Makefile index d9a6587a04af..c6469fea7ace 100644 --- a/sys/modules/tcp/fastpath/Makefile +++ b/sys/modules/tcp/fastpath/Makefile @@ -7,7 +7,7 @@ KMOD= fastpath SRCS= fastpath.c -SRCS+= opt_ipfw.h opt_inet.h opt_inet6.h opt_ipsec.h +SRCS+= opt_inet.h opt_inet6.h opt_ipsec.h SRCS+= opt_tcpdebug.h # diff --git a/sys/netinet/ip_fastfwd.c b/sys/netinet/ip_fastfwd.c index 3fc7c74ba61f..ea59c10a97ca 100644 --- a/sys/netinet/ip_fastfwd.c +++ b/sys/netinet/ip_fastfwd.c @@ -76,7 +76,6 @@ #include __FBSDID("$FreeBSD$"); -#include "opt_ipfw.h" #include "opt_ipstealth.h" #include diff --git a/sys/netinet/ip_input.c b/sys/netinet/ip_input.c index f30913e49ab8..d728eafd15e5 100644 --- a/sys/netinet/ip_input.c +++ b/sys/netinet/ip_input.c @@ -33,7 +33,6 @@ __FBSDID("$FreeBSD$"); #include "opt_bootp.h" -#include "opt_ipfw.h" #include "opt_ipstealth.h" #include "opt_ipsec.h" #include "opt_route.h" diff --git a/sys/netinet/ip_output.c b/sys/netinet/ip_output.c index 27363a096eb3..e5f1c1ab9143 100644 --- a/sys/netinet/ip_output.c +++ b/sys/netinet/ip_output.c @@ -33,7 +33,6 @@ __FBSDID("$FreeBSD$"); #include "opt_inet.h" -#include "opt_ipfw.h" #include "opt_ipsec.h" #include "opt_mbuf_stress_test.h" #include "opt_mpath.h" diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c index c10699664b75..c72f01fa45f0 100644 --- a/sys/netinet/tcp_input.c +++ b/sys/netinet/tcp_input.c @@ -50,7 +50,6 @@ #include __FBSDID("$FreeBSD$"); -#include "opt_ipfw.h" /* for ipfw_fwd */ #include "opt_inet.h" #include "opt_inet6.h" #include "opt_ipsec.h" diff --git a/sys/netinet/tcp_stacks/fastpath.c b/sys/netinet/tcp_stacks/fastpath.c index 7d573c563945..7be9f9681efa 100644 --- a/sys/netinet/tcp_stacks/fastpath.c +++ b/sys/netinet/tcp_stacks/fastpath.c @@ -54,7 +54,6 @@ #include __FBSDID("$FreeBSD$"); -#include "opt_ipfw.h" /* for ipfw_fwd */ #include "opt_inet.h" #include "opt_inet6.h" #include "opt_ipsec.h" diff --git a/sys/netinet/udp_usrreq.c b/sys/netinet/udp_usrreq.c index a1d9a433e8ee..173c44ce2a06 100644 --- a/sys/netinet/udp_usrreq.c +++ b/sys/netinet/udp_usrreq.c @@ -39,7 +39,6 @@ #include __FBSDID("$FreeBSD$"); -#include "opt_ipfw.h" #include "opt_inet.h" #include "opt_inet6.h" #include "opt_ipsec.h" diff --git a/sys/netinet6/ip6_forward.c b/sys/netinet6/ip6_forward.c index 3b3058b38669..002c761af684 100644 --- a/sys/netinet6/ip6_forward.c +++ b/sys/netinet6/ip6_forward.c @@ -34,7 +34,6 @@ __FBSDID("$FreeBSD$"); #include "opt_inet.h" #include "opt_inet6.h" -#include "opt_ipfw.h" #include "opt_ipsec.h" #include "opt_ipstealth.h" diff --git a/sys/netinet6/ip6_input.c b/sys/netinet6/ip6_input.c index a897d6c3e1d3..754de6a5e9d2 100644 --- a/sys/netinet6/ip6_input.c +++ b/sys/netinet6/ip6_input.c @@ -65,7 +65,6 @@ __FBSDID("$FreeBSD$"); #include "opt_inet.h" #include "opt_inet6.h" -#include "opt_ipfw.h" #include "opt_ipsec.h" #include "opt_route.h" #include "opt_rss.h" diff --git a/sys/netinet6/ip6_output.c b/sys/netinet6/ip6_output.c index fde6710e225f..c03bf5e75f1a 100644 --- a/sys/netinet6/ip6_output.c +++ b/sys/netinet6/ip6_output.c @@ -65,7 +65,6 @@ __FBSDID("$FreeBSD$"); #include "opt_inet.h" #include "opt_inet6.h" -#include "opt_ipfw.h" #include "opt_ipsec.h" #include "opt_sctp.h" #include "opt_route.h" diff --git a/sys/netinet6/udp6_usrreq.c b/sys/netinet6/udp6_usrreq.c index 347eb56a1f85..b44fb9ecb5f1 100644 --- a/sys/netinet6/udp6_usrreq.c +++ b/sys/netinet6/udp6_usrreq.c @@ -72,7 +72,6 @@ __FBSDID("$FreeBSD$"); #include "opt_inet.h" #include "opt_inet6.h" -#include "opt_ipfw.h" #include "opt_ipsec.h" #include "opt_rss.h"