summaryrefslogtreecommitdiffstats
path: root/drivers/net/hyperv/rndis_filter.c
diff options
context:
space:
mode:
authorVitaly Kuznetsov2017-11-02 11:35:31 +0100
committerDavid S. Miller2017-11-08 02:28:54 +0100
commitb5eb819dcbcbeca7a047573a5218cb8f703709c9 (patch)
tree89db6df2d7529ecb89de31959ecf4f260bf0eba6 /drivers/net/hyperv/rndis_filter.c
parenthv_netvsc: netvsc_teardown_gpadl() split (diff)
downloadkernel-qcow2-linux-b5eb819dcbcbeca7a047573a5218cb8f703709c9.tar.gz
kernel-qcow2-linux-b5eb819dcbcbeca7a047573a5218cb8f703709c9.tar.xz
kernel-qcow2-linux-b5eb819dcbcbeca7a047573a5218cb8f703709c9.zip
hv_netvsc: hide warnings about uninitialized/missing rndis device
Hyper-V hosts are known to send RNDIS messages even after we halt the device in rndis_filter_halt_device(). Remove user visible messages as they are not really useful. Signed-off-by: Vitaly Kuznetsov <vkuznets@redhat.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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/hyperv/rndis_filter.c b/drivers/net/hyperv/rndis_filter.c
index 0648eebda829..8b1242b8d8ef 100644
--- a/drivers/net/hyperv/rndis_filter.c
+++ b/drivers/net/hyperv/rndis_filter.c
@@ -407,13 +407,13 @@ int rndis_filter_receive(struct net_device *ndev,
/* Make sure the rndis device state is initialized */
if (unlikely(!rndis_dev)) {
- netif_err(net_device_ctx, rx_err, ndev,
+ netif_dbg(net_device_ctx, rx_err, ndev,
"got rndis message but no rndis device!\n");
return NVSP_STAT_FAIL;
}
if (unlikely(rndis_dev->state == RNDIS_DEV_UNINITIALIZED)) {
- netif_err(net_device_ctx, rx_err, ndev,
+ netif_dbg(net_device_ctx, rx_err, ndev,
"got rndis message uninitialized\n");
return NVSP_STAT_FAIL;
}