From 598fa046756c427be6654a00cafc6336f76c3504 Mon Sep 17 00:00:00 2001 From: Brian Feldman Date: Wed, 29 Aug 2007 19:34:28 +0000 Subject: [PATCH] Repair ALTQ-tagging rules in IPFW which got broken in the last PF import. The PF mbuf-tagging support routines changed to link the allocated tags into the provided mbuf themselves, so the left-over m_tag_prepend() was trying to add a bogus (usually NULL) tag. Reviewed by: mlaier Approved by: re --- sys/netinet/ip_fw2.c | 1 - 1 file changed, 1 deletion(-) diff --git a/sys/netinet/ip_fw2.c b/sys/netinet/ip_fw2.c index b4cb78ce17e6..9b013eb56a01 100644 --- a/sys/netinet/ip_fw2.c +++ b/sys/netinet/ip_fw2.c @@ -3077,7 +3077,6 @@ do { \ else at->af = AF_LINK; at->hdr = ip; - m_tag_prepend(m, mtag); break; }