Add missing PF_UNLOCK in pf_test

Reviewed by:	bz
This commit is contained in:
Kevin Lo 2011-10-30 14:55:00 +00:00
parent 0dfcc6619b
commit 8d5eb1c4c8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=226938

View File

@ -7176,11 +7176,15 @@ pf_test6(int dir, struct ifnet *ifp, struct mbuf **m0,
}
#ifdef __FreeBSD__
if (pd.pf_mtag->flags & PF_TAG_GENERATED)
if (pd.pf_mtag->flags & PF_TAG_GENERATED) {
PF_UNLOCK();
#else
if (m->m_pkthdr.pf.flags & PF_TAG_GENERATED)
#endif
return (PF_PASS);
#ifdef __FreeBSD__
}
#endif
/* We do IP header normalization and packet reassembly here */
if (pf_normalize_ip6(m0, dir, kif, &reason, &pd) != PF_PASS) {