netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] net: dsa: tag_mtk: add padding for tx packets
@ 2022-05-10  9:40 Felix Fietkau
  2022-05-10 12:37 ` Vladimir Oltean
  2022-05-10 21:26 ` Jakub Kicinski
  0 siblings, 2 replies; 17+ messages in thread
From: Felix Fietkau @ 2022-05-10  9:40 UTC (permalink / raw)
  To: Sean Wang, Landen Chao, DENG Qingfang, Andrew Lunn,
	Vivien Didelot, Florian Fainelli, Vladimir Oltean,
	David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
	Matthias Brugger
  Cc: netdev, linux-arm-kernel, linux-mediatek, linux-kernel

Padding for transmitted packets needs to account for the special tag.
With not enough padding, garbage bytes are inserted by the switch at the
end of small packets.

Fixes: 5cd8985a1909 ("net-next: dsa: add Mediatek tag RX/TX handler")
Signed-off-by: Felix Fietkau <nbd@nbd.name>
---
 net/dsa/tag_mtk.c | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/net/dsa/tag_mtk.c b/net/dsa/tag_mtk.c
index 415d8ece242a..1d1f9dbd9e93 100644
--- a/net/dsa/tag_mtk.c
+++ b/net/dsa/tag_mtk.c
@@ -25,6 +25,14 @@ static struct sk_buff *mtk_tag_xmit(struct sk_buff *skb,
 	u8 xmit_tpid;
 	u8 *mtk_tag;
 
+	/* The Ethernet switch we are interfaced with needs packets to be at
+	 * least 64 bytes (including FCS) otherwise their padding might be
+	 * corrupted. With tags enabled, we need to make sure that packets are
+	 * at least 68 bytes (including FCS and tag).
+	 */
+	if (__skb_put_padto(skb, ETH_ZLEN + MTK_HDR_LEN, false))
+		return NULL;
+
 	/* Build the special tag after the MAC Source Address. If VLAN header
 	 * is present, it's required that VLAN header and special tag is
 	 * being combined. Only in this way we can allow the switch can parse
-- 
2.36.1


^ permalink raw reply related	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2022-05-12 15:32 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-05-10  9:40 [PATCH v2] net: dsa: tag_mtk: add padding for tx packets Felix Fietkau
2022-05-10 12:37 ` Vladimir Oltean
2022-05-10 14:52   ` Felix Fietkau
2022-05-10 16:52     ` Vladimir Oltean
2022-05-10 22:06       ` Felix Fietkau
2022-05-10 22:21         ` Vladimir Oltean
2022-05-11  8:50           ` Felix Fietkau
2022-05-11  9:32             ` Vladimir Oltean
2022-05-11 12:24               ` Felix Fietkau
2022-05-11 13:22                 ` Vladimir Oltean
2022-05-11 14:32               ` Andrew Lunn
2022-05-12  8:51                 ` Felix Fietkau
2022-05-12 12:39                   ` Andrew Lunn
2022-05-12 13:08                     ` Felix Fietkau
2022-05-12 15:32                       ` Andrew Lunn
2022-05-11 14:39             ` Andrew Lunn
2022-05-10 21:26 ` Jakub Kicinski

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).