summaryrefslogtreecommitdiffstats
path: root/drivers/net/hyperv/rndis_filter.c
diff options
context:
space:
mode:
authorVitaly Kuznetsov2016-11-28 18:25:44 +0100
committerDavid S. Miller2016-11-30 02:50:07 +0100
commit93ba2222550415e61f773a8e2ecd1f2a665f5ef5 (patch)
treecab99e1c4901fba64cb26b3334d294865169a267 /drivers/net/hyperv/rndis_filter.c
parentMerge branch 'mlxsw-enhancements' (diff)
downloadkernel-qcow2-linux-93ba2222550415e61f773a8e2ecd1f2a665f5ef5.tar.gz
kernel-qcow2-linux-93ba2222550415e61f773a8e2ecd1f2a665f5ef5.tar.xz
kernel-qcow2-linux-93ba2222550415e61f773a8e2ecd1f2a665f5ef5.zip
hv_netvsc: remove excessive logging on MTU change
When we change MTU or the number of channels on a netvsc device we get the following logged: hv_netvsc bf5edba8...: net device safe to remove hv_netvsc: hv_netvsc channel opened successfully hv_netvsc bf5edba8...: Send section size: 6144, Section count:2560 hv_netvsc bf5edba8...: Device MAC 00:15:5d:1e:91:12 link state up This information is useful as debug at most. Signed-off-by: Vitaly Kuznetsov <vkuznets@redhat.com> Reviewed-by: Haiyang Zhang <haiyangz@microsoft.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/hyperv/rndis_filter.c')
-rw-r--r--drivers/net/hyperv/rndis_filter.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/hyperv/rndis_filter.c b/drivers/net/hyperv/rndis_filter.c
index 9195d5da8485..8d90904e0e49 100644
--- a/drivers/net/hyperv/rndis_filter.c
+++ b/drivers/net/hyperv/rndis_filter.c
@@ -1059,9 +1059,9 @@ int rndis_filter_device_add(struct hv_device *dev,
device_info->link_state = rndis_device->link_state;
- dev_info(&dev->device, "Device MAC %pM link state %s\n",
- rndis_device->hw_mac_adr,
- device_info->link_state ? "down" : "up");
+ netdev_dbg(net, "Device MAC %pM link state %s\n",
+ rndis_device->hw_mac_adr,
+ device_info->link_state ? "down" : "up");
if (net_device->nvsp_version < NVSP_PROTOCOL_VERSION_5)
return 0;