]> git.baikalelectronics.ru Git - kernel.git/commit
net: dsa: qca8k: fix MTU calculation
authorRobert Marko <robert.marko@sartura.hr>
Fri, 19 Nov 2021 02:03:50 +0000 (03:03 +0100)
committerDavid S. Miller <davem@davemloft.net>
Mon, 22 Nov 2021 12:34:37 +0000 (12:34 +0000)
commit3d23c72288f8273d0eeb149dba500482d3002333
treec06310f050021cd3e420e42efcb9e7a072899b59
parente73f68d78d820433df5b9398f8dc543c1790e94a
net: dsa: qca8k: fix MTU calculation

qca8k has a global MTU, so its tracking the MTU per port to make sure
that the largest MTU gets applied.
Since it uses the frame size instead of MTU the driver MTU change function
will then add the size of Ethernet header and checksum on top of MTU.

The driver currently populates the per port MTU size as Ethernet frame
length + checksum which equals 1518.

The issue is that then MTU change function will go through all of the
ports, find the largest MTU and apply the Ethernet header + checksum on
top of it again, so for a desired MTU of 1500 you will end up with 1536.

This is obviously incorrect, so to correct it populate the per port struct
MTU with just the MTU and not include the Ethernet header + checksum size
as those will be added by the MTU change function.

Fixes: 25c7581f21d2 ("net: dsa: qca8k: implement the port MTU callbacks")
Signed-off-by: Robert Marko <robert.marko@sartura.hr>
Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
Reviewed-by: Vladimir Oltean <olteanv@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/dsa/qca8k.c