dev_validate_mtu checks that mtu value specified by user is not less
than min mtu and not greater than max allowed mtu. It is being done
before calling the ndo_change_mtu exposed by driver, so remove these
redundant checks in ice_change_mtu.

Signed-off-by: Maciej Fijalkowski <maciej.fijalkow...@intel.com>
---
 drivers/net/ethernet/intel/ice/ice_main.c | 9 ---------
 1 file changed, 9 deletions(-)

diff --git a/drivers/net/ethernet/intel/ice/ice_main.c 
b/drivers/net/ethernet/intel/ice/ice_main.c
index 2dea4d0e9415..476e20af7309 100644
--- a/drivers/net/ethernet/intel/ice/ice_main.c
+++ b/drivers/net/ethernet/intel/ice/ice_main.c
@@ -6126,15 +6126,6 @@ static int ice_change_mtu(struct net_device *netdev, int 
new_mtu)
                }
        }
 
-       if (new_mtu < (int)netdev->min_mtu) {
-               netdev_err(netdev, "new MTU invalid. min_mtu is %d\n",
-                          netdev->min_mtu);
-               return -EINVAL;
-       } else if (new_mtu > (int)netdev->max_mtu) {
-               netdev_err(netdev, "new MTU invalid. max_mtu is %d\n",
-                          netdev->min_mtu);
-               return -EINVAL;
-       }
        /* if a reset is in progress, wait for some time for it to complete */
        do {
                if (ice_is_reset_in_progress(pf->state)) {
-- 
2.20.1

Reply via email to