提交 17db4bce 编写于 作者: S Stephen Hemminger 提交者: David S. Miller

hv_netvsc: use consume_skb

Packets that are transmitted in normal path should use consume_skb
instead of kfree_skb. This allows for better tracing of packet drops.
Signed-off-by: NStephen Hemminger <sthemmin@microsoft.com>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 dd5a3005
...@@ -635,7 +635,7 @@ static void netvsc_send_tx_complete(struct netvsc_device *net_device, ...@@ -635,7 +635,7 @@ static void netvsc_send_tx_complete(struct netvsc_device *net_device,
q_idx = nvsc_packet->q_idx; q_idx = nvsc_packet->q_idx;
channel = incoming_channel; channel = incoming_channel;
dev_kfree_skb_any(skb); dev_consume_skb_any(skb);
} }
num_outstanding_sends = num_outstanding_sends =
...@@ -944,7 +944,7 @@ int netvsc_send(struct hv_device *device, ...@@ -944,7 +944,7 @@ int netvsc_send(struct hv_device *device,
} }
if (msdp->skb) if (msdp->skb)
dev_kfree_skb_any(msdp->skb); dev_consume_skb_any(msdp->skb);
if (xmit_more && !packet->cp_partial) { if (xmit_more && !packet->cp_partial) {
msdp->skb = skb; msdp->skb = skb;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册