Currently the qlge_change_mtu() is never called if the new_mtu is
equal current MTU, due this condition on dev_set_mtu():
if (new_mtu == dev->mtu)
return 0;
So, this block of code is never reached and is being removed.
Signed-off-by: Breno Leitao <redacted>
---
drivers/net/qlge/qlge_main.c | 3 ---
1 files changed, 0 insertions(+), 3 deletions(-)
@@ -4123,9 +4123,6 @@ static int qlge_change_mtu(struct net_device *ndev, int new_mtu)QPRINTK(qdev,IFUP,ERR,"Changing to jumbo MTU.\n");}elseif(ndev->mtu==9000&&new_mtu==1500){QPRINTK(qdev,IFUP,ERR,"Changing to normal MTU.\n");-}elseif((ndev->mtu==1500&&new_mtu==1500)||-(ndev->mtu==9000&&new_mtu==9000)){-return0;}elsereturn-EINVAL;