net: dsa: Add overhead to tag protocol ops.
authorAndrew Lunn <andrew@lunn.ch>
Thu, 6 Dec 2018 10:36:04 +0000 (11:36 +0100)
committerDavid S. Miller <davem@davemloft.net>
Thu, 6 Dec 2018 20:18:16 +0000 (12:18 -0800)
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>
include/net/dsa.h
net/dsa/tag_brcm.c
net/dsa/tag_dsa.c
net/dsa/tag_edsa.c
net/dsa/tag_gswip.c
net/dsa/tag_ksz.c
net/dsa/tag_lan9303.c
net/dsa/tag_mtk.c
net/dsa/tag_qca.c
net/dsa/tag_trailer.c

index 23690c44e167c689a34b6fbda2cd98a18247dc04..6ee2e24e0a6e2f1ca7ebce1ad6529f14056aba5e 100644 (file)
@@ -113,6 +113,7 @@ struct dsa_device_ops {
                               struct packet_type *pt);
        int (*flow_dissect)(const struct sk_buff *skb, __be16 *proto,
                            int *offset);
+       unsigned int overhead;
 };
 
 struct dsa_switch_tree {
index 2b06bb91318b7135a93c7cae4ddef0e5ebcbba56..4aa1d368a5ae6b983889e608f97d10a54063c301 100644 (file)
@@ -174,6 +174,7 @@ static struct sk_buff *brcm_tag_rcv(struct sk_buff *skb, struct net_device *dev,
 const struct dsa_device_ops brcm_netdev_ops = {
        .xmit   = brcm_tag_xmit,
        .rcv    = brcm_tag_rcv,
+       .overhead = BRCM_TAG_LEN,
 };
 #endif
 
@@ -196,5 +197,6 @@ static struct sk_buff *brcm_tag_rcv_prepend(struct sk_buff *skb,
 const struct dsa_device_ops brcm_prepend_netdev_ops = {
        .xmit   = brcm_tag_xmit_prepend,
        .rcv    = brcm_tag_rcv_prepend,
+       .overhead = BRCM_TAG_LEN,
 };
 #endif
index cd13cfc542ceff0ad969723050330ec853341a52..8b2f92e3f3a2085a1e5f5a3ce0314dd3d7196872 100644 (file)
@@ -149,4 +149,5 @@ static struct sk_buff *dsa_rcv(struct sk_buff *skb, struct net_device *dev,
 const struct dsa_device_ops dsa_netdev_ops = {
        .xmit   = dsa_xmit,
        .rcv    = dsa_rcv,
+       .overhead = DSA_HLEN,
 };
index 4083326b806e848eef3dec04d3e04dede2f4a957..f5b87ee5c94e9068839c6fe53303010b5cc81be4 100644 (file)
@@ -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,
 };
index 49e9b73f1be38740d4773fe5737797b4e9647dd6..cb6f82ffe5eb5d54c5697d27a59e849bfc2b753a 100644 (file)
@@ -106,4 +106,5 @@ static struct sk_buff *gswip_tag_rcv(struct sk_buff *skb,
 const struct dsa_device_ops gswip_netdev_ops = {
        .xmit = gswip_tag_xmit,
        .rcv = gswip_tag_rcv,
+       .overhead = GSWIP_RX_HEADER_LEN,
 };
index 0f62effad88f5e4bdbf79abd215cba8ba405bcb1..96411f70ab9f494d4692d1b29b4810b210f54129 100644 (file)
@@ -99,4 +99,5 @@ static struct sk_buff *ksz_rcv(struct sk_buff *skb, struct net_device *dev,
 const struct dsa_device_ops ksz_netdev_ops = {
        .xmit   = ksz_xmit,
        .rcv    = ksz_rcv,
+       .overhead = KSZ_INGRESS_TAG_LEN,
 };
index 548c00254c0728412f159b0857d58ab61b370106..f48889e46ff7e8922962f0a3c2ed19d5086a763c 100644 (file)
@@ -140,4 +140,5 @@ static struct sk_buff *lan9303_rcv(struct sk_buff *skb, struct net_device *dev,
 const struct dsa_device_ops lan9303_netdev_ops = {
        .xmit = lan9303_xmit,
        .rcv = lan9303_rcv,
+       .overhead = LAN9303_TAG_LEN,
 };
index 11535bc707435d9552ffe4f7c5c2e1c7cbfc9ab4..f39f4dfeda34c17a9741dd371a9d35b062b38cab 100644 (file)
@@ -109,4 +109,5 @@ const struct dsa_device_ops mtk_netdev_ops = {
        .xmit           = mtk_tag_xmit,
        .rcv            = mtk_tag_rcv,
        .flow_dissect   = mtk_tag_flow_dissect,
+       .overhead       = MTK_HDR_LEN,
 };
index 613f4ee97771629c5bd46951e9fe2ab6b1297fe5..ed4f6dc26365baa3e9988b2f11ac26d8ffeb55b7 100644 (file)
@@ -101,4 +101,5 @@ static struct sk_buff *qca_tag_rcv(struct sk_buff *skb, struct net_device *dev,
 const struct dsa_device_ops qca_netdev_ops = {
        .xmit   = qca_tag_xmit,
        .rcv    = qca_tag_rcv,
+       .overhead = QCA_HDR_LEN,
 };
index 56197f0d9608de25b857ad2f902c554002a2929b..b40756ed6e574c4afe85e4000321e4d86c4269f3 100644 (file)
@@ -84,4 +84,5 @@ static struct sk_buff *trailer_rcv(struct sk_buff *skb, struct net_device *dev,
 const struct dsa_device_ops trailer_netdev_ops = {
        .xmit   = trailer_xmit,
        .rcv    = trailer_rcv,
+       .overhead = 4,
 };