OSDN Git Service

ice: Demote MTU change print to debug
authorTony Nguyen <anthony.l.nguyen@intel.com>
Thu, 12 Dec 2019 11:13:03 +0000 (03:13 -0800)
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>
Sat, 4 Jan 2020 00:08:33 +0000 (16:08 -0800)
Following the changes of commit 12299132b3d3 ("net: ethernet: intel: Demote
MTU change prints to debug"), change the MTU change message to netdev_dbg()

Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
Tested-by: Andrew Bowers <andrewx.bowers@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
drivers/net/ethernet/intel/ice/ice_main.c

index 3adeb70..2c9350f 100644 (file)
@@ -4836,7 +4836,7 @@ static int ice_change_mtu(struct net_device *netdev, int new_mtu)
                }
        }
 
-       netdev_info(netdev, "changed MTU to %d\n", new_mtu);
+       netdev_dbg(netdev, "changed MTU to %d\n", new_mtu);
        return 0;
 }