aboutsummaryrefslogtreecommitdiffstats
path: root/net/dsa/tag_edsa.c
diff options
context:
space:
mode:
authorAndrew Lunn <andrew@lunn.ch>2018-12-06 11:36:04 +0100
committerDavid S. Miller <davem@davemloft.net>2018-12-06 12:18:16 -0800
commita5dd308778a4e05e7b0b927cf18b89d1ebbff59c (patch)
tree719e191c23600a465a6281f0ee79dcc23bfa78d4 /net/dsa/tag_edsa.c
parenttun: remove unnecessary check in tun_flow_update (diff)
downloadlinux-dev-a5dd308778a4e05e7b0b927cf18b89d1ebbff59c.tar.xz
linux-dev-a5dd308778a4e05e7b0b927cf18b89d1ebbff59c.zip
net: dsa: Add overhead to tag protocol ops.
Each DSA tag protocol needs to add additional headers to the Ethernet frame in order to direct it towards a specific switch egress port. It must also remove the head from a frame received from a switch. Indicate the maximum size of these headers in the tag protocol ops structure, so the core can take these overheads into account. Signed-off-by: Andrew Lunn <andrew@lunn.ch> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dsa/tag_edsa.c')
-rw-r--r--net/dsa/tag_edsa.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/dsa/tag_edsa.c b/net/dsa/tag_edsa.c
index 4083326b806e..f5b87ee5c94e 100644
--- a/net/dsa/tag_edsa.c
+++ b/net/dsa/tag_edsa.c
@@ -168,4 +168,5 @@ static struct sk_buff *edsa_rcv(struct sk_buff *skb, struct net_device *dev,
const struct dsa_device_ops edsa_netdev_ops = {
.xmit = edsa_xmit,
.rcv = edsa_rcv,
+ .overhead = EDSA_HLEN,
};