Message ID | 20200213090707.27937-2-per.forlin@axis.com |
---|---|
State | Changes Requested |
Delegated to: | David Miller |
Headers | show |
Series | [1/2] net: dsa: tag_qca: Make sure there is headroom for tag | expand |
On Thu, Feb 13, 2020 at 10:07:07AM +0100, Per@axis.com wrote: > From: Per Forlin <per.forlin@axis.com> > > Passing tag size to skb_cow_head will make sure > there is enough headroom for the tag data. > This change does not introduce any overhead in case there > is already available headroom for tag. > > Signed-off-by: Per Forlin <perfn@axis.com> Reviewed-by: Andrew Lunn <andrew@lunn.ch> Andrew
diff --git a/net/dsa/tag_ar9331.c b/net/dsa/tag_ar9331.c index 466ffa92a474..55b00694cdba 100644 --- a/net/dsa/tag_ar9331.c +++ b/net/dsa/tag_ar9331.c @@ -31,7 +31,7 @@ static struct sk_buff *ar9331_tag_xmit(struct sk_buff *skb, __le16 *phdr; u16 hdr; - if (skb_cow_head(skb, 0) < 0) + if (skb_cow_head(skb, AR9331_HDR_LEN) < 0) return NULL; phdr = skb_push(skb, AR9331_HDR_LEN);