Page MenuHomeFreeBSD

D12779.id34343.diff
No OneTemporary

D12779.id34343.diff

Index: head/sys/netinet6/ip6_fastfwd.c
===================================================================
--- head/sys/netinet6/ip6_fastfwd.c
+++ head/sys/netinet6/ip6_fastfwd.c
@@ -194,7 +194,17 @@
in6_ifstat_inc(rcvif, ifs6_in_noroute);
goto dropin;
}
+
/*
+ * Outgoing packet firewall processing.
+ */
+ if (!PFIL_HOOKED(&V_inet6_pfil_hook))
+ goto passout;
+ if (pfil_run_hooks(&V_inet6_pfil_hook, &m, nh.nh_ifp, PFIL_OUT,
+ NULL) != 0 || m == NULL)
+ goto dropout;
+
+ /*
* We used slow path processing for packets with scoped addresses.
* So, scope checks aren't needed here.
*/
@@ -205,14 +215,6 @@
goto dropout;
}
- /*
- * Outgoing packet firewall processing.
- */
- if (!PFIL_HOOKED(&V_inet6_pfil_hook))
- goto passout;
- if (pfil_run_hooks(&V_inet6_pfil_hook, &m, nh.nh_ifp, PFIL_OUT,
- NULL) != 0 || m == NULL)
- goto dropout;
/*
* If packet filter sets the M_FASTFWD_OURS flag, this means
* that new destination or next hop is our local address.

File Metadata

Mime Type
text/plain
Expires
Thu, Feb 5, 5:26 PM (3 h, 20 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
28443288
Default Alt Text
D12779.id34343.diff (1009 B)

Event Timeline