[NET]: Set truesize in pskb_copy

Since pskb_copy tacks on the non-linear bits from the original
skb, it needs to count them in the truesize field of the new skb.

Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by Herbert Xu and committed by David S. Miller 25f484a6 8e365eec

+1
+1
net/core/skbuff.c
··· 639 639 n->csum = skb->csum; 640 640 n->ip_summed = skb->ip_summed; 641 641 642 + n->truesize += skb->data_len; 642 643 n->data_len = skb->data_len; 643 644 n->len = skb->len; 644 645