net: hns3: fix for changing MTU
authorFuyun Liang <[email protected]>
Fri, 5 Jan 2018 10:18:20 +0000 (18:18 +0800)
committerDavid S. Miller <[email protected]>
Mon, 8 Jan 2018 19:06:19 +0000 (14:06 -0500)
when changing MTU, The new MTU must need to be set to netdevice.

Fixes: a8e8b7ff3517 ("net: hns3: Add support to change MTU in HNS3 hardware")
Signed-off-by: Fuyun Liang <[email protected]>
Signed-off-by: Peng Li <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
drivers/net/ethernet/hisilicon/hns3/hns3_enet.c

index eb9ac53902c83450a2aadfb5566fd6e1a05bd874..b23107d7821f800d19b4536ccc07289398581116 100644 (file)
@@ -1413,6 +1413,8 @@ static int hns3_nic_change_mtu(struct net_device *netdev, int new_mtu)
                return ret;
        }
 
+       netdev->mtu = new_mtu;
+
        /* if the netdev was running earlier, bring it up again */
        if (if_running && hns3_nic_net_open(netdev))
                ret = -EINVAL;