[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1292836097.2800.3.camel@edumazet-laptop>
Date: Mon, 20 Dec 2010 10:08:17 +0100
From: Eric Dumazet <eric.dumazet@...il.com>
To: Changli Gao <xiaosuo@...il.com>
Cc: Paweł Staszewski <pstaszewski@...are.pl>,
"David S. Miller" <davem@...emloft.net>,
Jarek Poplawski <jarkao2@...il.com>,
Linux Network Development list <netdev@...r.kernel.org>
Subject: Re: Kernel panic eth2 mirred redirect to ifb0
Le lundi 20 décembre 2010 à 16:56 +0800, Changli Gao a écrit :
> 2010/12/20 Paweł Staszewski <pstaszewski@...are.pl>:
> >>
> > Yes reverting this patch solves the problem.
> >
> >
>
> I am not sure reverting is the right fix. Maybe you can try this patch
> attached instead.
>
> BTW: there are some others NIC drivers and net_sched actions don't
> take care of shared skbs.
>
This patch cant be right as is.
if (skb_is_gso(skb)) {
+ if (skb_shared(skb)) {
+ struct sk_buff *nskb;
+
+ nskb = skb_clone(skb, GFP_ATOMIC);
+ if (!nskb)
+ return -ENOMEM;
+ kfree_skb(skb); // HERE
+ skb = nskb;
+ }
You free original skb, while caller might dereference it later.
So you must pass cloned skb back to caller.
(line 6393 :)
count = ixgbe_tx_map(adapter, tx_ring, skb, tx_flags, first);
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists