From mboxrd@z Thu Jan 1 00:00:00 1970 From: Patrick McHardy Subject: [PATCH 2.6.11 PKT_SCHED]: ipt action: add back pskb_expand_head call Date: Fri, 04 Feb 2005 04:10:54 +0100 Message-ID: <4202E7BE.6050606@trash.net> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="------------090003050808000303010605" Cc: Maillist netdev To: "David S. Miller" Sender: netdev-bounce@oss.sgi.com Errors-to: netdev-bounce@oss.sgi.com List-Id: netdev.vger.kernel.org This is a multi-part message in MIME format. --------------090003050808000303010605 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Hi Dave, Jamal asked me to add back the call to pskb_expand_head before 2.6.11. This fixes a regression caused by my tc action cleanup patches, the tc actions most not replace packets, so it must prevent netfilter from doing so. Regards Patrick --------------090003050808000303010605 Content-Type: text/plain; name="x" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="x" ===== net/sched/ipt.c 1.13 vs edited ===== --- 1.13/net/sched/ipt.c 2005-01-14 05:41:07 +01:00 +++ edited/net/sched/ipt.c 2005-02-04 04:06:45 +01:00 @@ -207,6 +207,11 @@ struct tcf_ipt *p = PRIV(a, ipt); struct sk_buff *skb = *pskb; + if (skb_cloned(skb)) { + if (pskb_expand_head(skb, 0, 0, GFP_ATOMIC)) + return TC_ACT_UNSPEC; + } + spin_lock(&p->lock); p->tm.lastuse = jiffies; --------------090003050808000303010605--