]> git.karo-electronics.de Git - karo-tx-linux.git/blobdiff - drivers/net/veth.c
mlxsw: item: Make char *buf arg constant for getters
[karo-tx-linux.git] / drivers / net / veth.c
index fbc853e645318537e41eee115e17961607e394ff..0520952aa096efd4131526ae53cde4bf94786d42 100644 (file)
@@ -23,9 +23,6 @@
 #define DRV_NAME       "veth"
 #define DRV_VERSION    "1.0"
 
-#define MIN_MTU 68             /* Min L3 MTU */
-#define MAX_MTU 65535          /* Max L3 MTU (arbitrary) */
-
 struct pcpu_vstats {
        u64                     packets;
        u64                     bytes;
@@ -216,17 +213,9 @@ static int veth_close(struct net_device *dev)
        return 0;
 }
 
-static int is_valid_veth_mtu(int new_mtu)
+static int is_valid_veth_mtu(int mtu)
 {
-       return new_mtu >= MIN_MTU && new_mtu <= MAX_MTU;
-}
-
-static int veth_change_mtu(struct net_device *dev, int new_mtu)
-{
-       if (!is_valid_veth_mtu(new_mtu))
-               return -EINVAL;
-       dev->mtu = new_mtu;
-       return 0;
+       return mtu >= ETH_MIN_MTU && mtu <= ETH_MAX_MTU;
 }
 
 static int veth_dev_init(struct net_device *dev)
@@ -300,7 +289,6 @@ static const struct net_device_ops veth_netdev_ops = {
        .ndo_open            = veth_open,
        .ndo_stop            = veth_close,
        .ndo_start_xmit      = veth_xmit,
-       .ndo_change_mtu      = veth_change_mtu,
        .ndo_get_stats64     = veth_get_stats64,
        .ndo_set_rx_mode     = veth_set_multicast_list,
        .ndo_set_mac_address = eth_mac_addr,
@@ -337,6 +325,7 @@ static void veth_setup(struct net_device *dev)
                               NETIF_F_HW_VLAN_CTAG_RX |
                               NETIF_F_HW_VLAN_STAG_RX);
        dev->destructor = veth_dev_free;
+       dev->max_mtu = ETH_MAX_MTU;
 
        dev->hw_features = VETH_FEATURES;
        dev->hw_enc_features = VETH_FEATURES;