[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20200213090707.27937-1-per.forlin@axis.com>
Date: Thu, 13 Feb 2020 10:07:06 +0100
From: <Per@...s.com>, <"Forlin <per.forlin"@axis.com>
To: <netdev@...r.kernel.org>, <andrew@...n.ch>,
<o.rempel@...gutronix.de>, <davem@...emloft.net>
CC: Per Forlin <per.forlin@...s.com>, Per Forlin <perfn@...s.com>
Subject: [PATCH 1/2] net: dsa: tag_qca: Make sure there is headroom for tag
From: Per Forlin <per.forlin@...s.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@...s.com>
---
net/dsa/tag_qca.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net/dsa/tag_qca.c b/net/dsa/tag_qca.c
index c8a128c9e5e0..70db7c909f74 100644
--- a/net/dsa/tag_qca.c
+++ b/net/dsa/tag_qca.c
@@ -33,7 +33,7 @@ static struct sk_buff *qca_tag_xmit(struct sk_buff *skb, struct net_device *dev)
struct dsa_port *dp = dsa_slave_to_port(dev);
u16 *phdr, hdr;
- if (skb_cow_head(skb, 0) < 0)
+ if (skb_cow_head(skb, QCA_HDR_LEN) < 0)
return NULL;
skb_push(skb, QCA_HDR_LEN);
--
2.11.0
Powered by blists - more mailing lists