Skip to content

Commit

Permalink
net: dsa: b53: fix max MTU for BCM5325/BCM5365
Browse files Browse the repository at this point in the history
BCM5325/BCM5365 do not support jumbo frames, so we should not report a
jumbo frame mtu for them. But they do support so called "oversized"
frames up to 1536 bytes long by default, so report an appropriate MTU.

Fixes: 6ae5834 ("net: dsa: b53: add MTU configuration support")
Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
Reviewed-by: Florian Fainelli <florian.fainelli@broadcom.com>
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
  • Loading branch information
Jonas Gorski authored and Paolo Abeni committed Oct 8, 2024
1 parent 680a821 commit ca8c1f7
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions drivers/net/dsa/b53/b53_common.c
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,7 @@ static const struct b53_mib_desc b53_mibs_58xx[] = {

#define B53_MIBS_58XX_SIZE ARRAY_SIZE(b53_mibs_58xx)

#define B53_MAX_MTU_25 (1536 - ETH_HLEN - VLAN_HLEN - ETH_FCS_LEN)
#define B53_MAX_MTU (9720 - ETH_HLEN - VLAN_HLEN - ETH_FCS_LEN)

static int b53_do_vlan_op(struct b53_device *dev, u8 op)
Expand Down Expand Up @@ -2270,6 +2271,11 @@ static int b53_change_mtu(struct dsa_switch *ds, int port, int mtu)

static int b53_get_max_mtu(struct dsa_switch *ds, int port)
{
struct b53_device *dev = ds->priv;

if (is5325(dev) || is5365(dev))
return B53_MAX_MTU_25;

return B53_MAX_MTU;
}

Expand Down

0 comments on commit ca8c1f7

Please sign in to comment.