Commit b8a3d52b authored by Hank Janssen's avatar Hank Janssen Committed by Greg Kroah-Hartman

staging: hv: Remove all unneeded DPRINT from hv_netvsc

Remove all un-needed DPRINT calls from hv_netvsc.

This patch deals with hv_netvsc only.
Signed-off-by: default avatarHank Janssen <hjanssen@microsoft.com>
Signed-off-by: default avatarHaiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: default avatarK. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 98e08702
This diff is collapsed.
...@@ -136,9 +136,6 @@ static int netvsc_start_xmit(struct sk_buff *skb, struct net_device *net) ...@@ -136,9 +136,6 @@ static int netvsc_start_xmit(struct sk_buff *skb, struct net_device *net)
int ret; int ret;
unsigned int i, num_pages; unsigned int i, num_pages;
DPRINT_DBG(NETVSC_DRV, "xmit packet - len %d data_len %d",
skb->len, skb->data_len);
/* Add 1 for skb->data and additional one for RNDIS */ /* Add 1 for skb->data and additional one for RNDIS */
num_pages = skb_shinfo(skb)->nr_frags + 1 + 1; num_pages = skb_shinfo(skb)->nr_frags + 1 + 1;
if (num_pages > net_device_ctx->avail) if (num_pages > net_device_ctx->avail)
...@@ -196,10 +193,6 @@ static int netvsc_start_xmit(struct sk_buff *skb, struct net_device *net) ...@@ -196,10 +193,6 @@ static int netvsc_start_xmit(struct sk_buff *skb, struct net_device *net)
net->stats.tx_bytes += skb->len; net->stats.tx_bytes += skb->len;
net->stats.tx_packets++; net->stats.tx_packets++;
DPRINT_DBG(NETVSC_DRV, "# of xmits %lu total size %lu",
net->stats.tx_packets,
net->stats.tx_bytes);
net_device_ctx->avail -= num_pages; net_device_ctx->avail -= num_pages;
if (net_device_ctx->avail < PACKET_PAGES_LOWATER) if (net_device_ctx->avail < PACKET_PAGES_LOWATER)
netif_stop_queue(net); netif_stop_queue(net);
...@@ -297,9 +290,6 @@ static int netvsc_recv_callback(struct hv_device *device_obj, ...@@ -297,9 +290,6 @@ static int netvsc_recv_callback(struct hv_device *device_obj,
*/ */
netif_rx(skb); netif_rx(skb);
DPRINT_DBG(NETVSC_DRV, "# of recvs %lu total size %lu",
net->stats.rx_packets, net->stats.rx_bytes);
return 0; return 0;
} }
......
...@@ -283,14 +283,6 @@ static void rndis_filter_receive_response(struct rndis_device *dev, ...@@ -283,14 +283,6 @@ static void rndis_filter_receive_response(struct rndis_device *dev,
*/ */
if (request->request_msg.msg.init_req.req_id if (request->request_msg.msg.init_req.req_id
== resp->msg.init_complete.req_id) { == resp->msg.init_complete.req_id) {
DPRINT_DBG(NETVSC, "found rndis request for "
"this response (id 0x%x req type 0x%x res "
"type 0x%x)",
request->request_msg.msg.
init_req.req_id,
request->request_msg.ndis_msg_type,
resp->ndis_msg_type);
found = true; found = true;
break; break;
} }
...@@ -605,9 +597,6 @@ static int rndis_filter_set_packet_filter(struct rndis_device *dev, ...@@ -605,9 +597,6 @@ static int rndis_filter_set_packet_filter(struct rndis_device *dev,
int rndis_filter_init(struct netvsc_driver *drv) int rndis_filter_init(struct netvsc_driver *drv)
{ {
DPRINT_DBG(NETVSC, "sizeof(struct rndis_filter_packet) == %zd",
sizeof(struct rndis_filter_packet));
drv->req_ext_size = sizeof(struct rndis_filter_packet); drv->req_ext_size = sizeof(struct rndis_filter_packet);
/* Driver->Context = rndisDriver; */ /* Driver->Context = rndisDriver; */
...@@ -765,8 +754,6 @@ static int rndis_filte_device_add(struct hv_device *dev, ...@@ -765,8 +754,6 @@ static int rndis_filte_device_add(struct hv_device *dev,
if (!rndisDevice) if (!rndisDevice)
return -1; return -1;
DPRINT_DBG(NETVSC, "rndis device object allocated - %p", rndisDevice);
/* /*
* Let the inner driver handle this first to create the netvsc channel * Let the inner driver handle this first to create the netvsc channel
* NOTE! Once the channel is created, we may get a receive callback * NOTE! Once the channel is created, we may get a receive callback
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment