Re: [PATCH] xt_tee: use skb_dst_drop()
From: David Miller <davem@davemloft.net>
Date: 2010-05-28 10:41:19
From: David Miller <davem@davemloft.net>
Date: 2010-05-28 10:41:19
From: Eric Dumazet <redacted> Date: Fri, 28 May 2010 11:24:58 +0200
After commit 7fee226a (net: add a noref bit on skb dst), its wrong to use : dst_release(skb_dst(skb)), since we could decrement a refcount while skb dst was not refcounted. We should use skb_dst_drop(skb) instead. Signed-off-by: Eric Dumazet <redacted>
Applied, thanks Eric.