From 16a19895335ca4c5e44e935d9e9a3c2d31b481d8 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Fri, 17 Sep 2010 17:56:27 -0700 Subject: [PATCH] network - Correct bug in last commit * Fix a crit_enter() that had to be removed. Reported-by: YONETANI Tomokazu --- sys/net/pf/pf.c | 1 - 1 file changed, 1 deletion(-) diff --git a/sys/net/pf/pf.c b/sys/net/pf/pf.c index d7e81c6c90..008e004561 100644 --- a/sys/net/pf/pf.c +++ b/sys/net/pf/pf.c @@ -5385,7 +5385,6 @@ pf_route6(struct mbuf **m, struct pf_rule *r, int dir, struct ifnet *oifp, if (r->rt == PF_FASTROUTE) { m0->m_pkthdr.pf.flags |= PF_TAG_GENERATED; ip6_output(m0, NULL, NULL, 0, NULL, NULL, NULL); - crit_enter(); return; } -- 2.11.4.GIT