mirror of https://gitee.com/openkylin/linux.git
[NET]: Copy mac_len in skb_clone() as well
ANK says: "It is rarely used, that's wy it was not noticed. But in the places, where it is used, it should be disaster." Signed-off-by: Alexey Dobriyan <adobriyan@sw.ru> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
d5cc4a73a5
commit
3e6b3b2e34
|
@ -463,6 +463,7 @@ struct sk_buff *skb_clone(struct sk_buff *skb, gfp_t gfp_mask)
|
|||
memcpy(n->cb, skb->cb, sizeof(skb->cb));
|
||||
C(len);
|
||||
C(data_len);
|
||||
C(mac_len);
|
||||
C(csum);
|
||||
C(local_df);
|
||||
n->cloned = 1;
|
||||
|
|
Loading…
Reference in New Issue