linux/debian/patches/features/x86/hyperv/0038-net-hyperv-rx_bytes-sh...

33 lines
1.0 KiB
Diff

From: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Date: Sun, 29 Jan 2012 22:14:02 +0000
Subject: [PATCH 38/77] net/hyperv: rx_bytes should account the ether header
size
commit 48c3883999cb06246911e29356d194f96f1c75ef upstream.
skb->len after call eth_type_trans() does not include the ether
header size, but rx_bytes should account it.
Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: David S. Miller <davem@davemloft.net>
---
drivers/net/hyperv/netvsc_drv.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/hyperv/netvsc_drv.c b/drivers/net/hyperv/netvsc_drv.c
index 1a1ca6c..9dccc7a 100644
--- a/drivers/net/hyperv/netvsc_drv.c
+++ b/drivers/net/hyperv/netvsc_drv.c
@@ -298,7 +298,7 @@ int netvsc_recv_callback(struct hv_device *device_obj,
skb->ip_summed = CHECKSUM_NONE;
net->stats.rx_packets++;
- net->stats.rx_bytes += skb->len;
+ net->stats.rx_bytes += packet->total_data_buflen;
/*
* Pass the skb back up. Network stack will deallocate the skb when it
--
1.7.9.5