]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
net: systemport: set dev->max_mtu to UMAC_MAX_MTU_SIZE
authorFlorian Fainelli <f.fainelli@gmail.com>
Fri, 18 Dec 2020 17:38:43 +0000 (09:38 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 12 Jan 2021 19:10:20 +0000 (20:10 +0100)
[ Upstream commit 54ddbdb024882e226055cc4c3c246592ddde2ee5 ]

The driver is already allocating receive buffers of 2KiB and the
Ethernet MAC is configured to accept frames up to UMAC_MAX_MTU_SIZE.

Fixes: bfcb813203e6 ("net: dsa: configure the MTU for switch ports")
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Reviewed-by: Vladimir Oltean <olteanv@gmail.com>
Link: https://lore.kernel.org/r/20201218173843.141046-1-f.fainelli@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/net/ethernet/broadcom/bcmsysport.c

index 9a614c5cdfa221f9dc5d700b16d0082c24d7872a..0c69becc3c1776572752f6c1bfe91c38ababf02e 100644 (file)
@@ -2507,6 +2507,7 @@ static int bcm_sysport_probe(struct platform_device *pdev)
        /* HW supported features, none enabled by default */
        dev->hw_features |= NETIF_F_RXCSUM | NETIF_F_HIGHDMA |
                                NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM;
+       dev->max_mtu = UMAC_MAX_MTU_SIZE;
 
        /* Request the WOL interrupt and advertise suspend if available */
        priv->wol_irq_disabled = 1;