__kfree_skb() -> skb_release_all() -> skb_release_data():
static void skb_release_data(struct sk_buff *skb)
{
if (!skb->cloned ||
<snip>
kfree(skb->head);
Since we clone the skb in skb_splice_bits() the skb's data will only be freed
when the last clone is deleted.
tavi
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html