* [patch] e100 statistic value "rx_bytes" error
@ 2006-06-15 4:17 Wei Dong
2006-06-15 4:35 ` Auke Kok
0 siblings, 1 reply; 2+ messages in thread
From: Wei Dong @ 2006-06-15 4:17 UTC (permalink / raw)
To: netdev; +Cc: davem
Hi All:
When I test linux kernel(2.6.9-16), I found that maybe there is a bug
in e100 driver. See function e100_rx_indicate() at line 1847:
nic->net_stats.rx_bytes += actual_size;
Here, actual_size is the actual size of an ethernent frame sans FCS.And
the e100 driver gets it from skb. Because "rx_bytes" is a statistc value
for a NIC, I think rx_bytes should include the FCS(4 bytes).
The following is the patch for the function in e100.c
diff -ruN old/drivers/net/e100.c new/drivers/net/e100.c
--- old/drivers/net/e100.c 2006-03-20 13:53:29.000000000 +0800
+++ new/drivers/net/e100.c 2006-06-15 11:16:04.000000000 +0800
@@ -1844,7 +1844,8 @@
dev_kfree_skb_any(skb);
} else {
nic->net_stats.rx_packets++;
- nic->net_stats.rx_bytes += actual_size;
+ /* Don't forget FCS */
+ nic->net_stats.rx_bytes += actual_size + 4;
nic->netdev->last_rx = jiffies;
netif_receive_skb(skb);
if(work_done)
BR.
Weidong
Signed-off-by: Weidong <weid@nanjing-fnst.com>
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [patch] e100 statistic value "rx_bytes" error
2006-06-15 4:17 [patch] e100 statistic value "rx_bytes" error Wei Dong
@ 2006-06-15 4:35 ` Auke Kok
0 siblings, 0 replies; 2+ messages in thread
From: Auke Kok @ 2006-06-15 4:35 UTC (permalink / raw)
To: Wei Dong; +Cc: netdev, Jesse Brandeburg, Ronciak, John, Auke Kok, Kok, Auke
Wei Dong wrote:
> Hi All:
> When I test linux kernel(2.6.9-16), I found that maybe there is a bug
> in e100 driver. See function e100_rx_indicate() at line 1847:
> nic->net_stats.rx_bytes += actual_size;
> Here, actual_size is the actual size of an ethernent frame sans FCS.And
> the e100 driver gets it from skb. Because "rx_bytes" is a statistc value
> for a NIC, I think rx_bytes should include the FCS(4 bytes).
> The following is the patch for the function in e100.c
This is definately not an issue, and I'm not for changing this: It always was
like this in the first place. It's done for many drivers like this anyway,
mostly those without real hardware counters do it this way anyway (I count
half a dozen or so on first glance).
On top of that we would be changing statistics numbers after x years of e100
driver. I'm sure everyone doing real performance work will frown upon this.
Next it's unlikely that every driver (or worse, every nic in hardware)
accounts for FCS in the rx_bytes count. It really wouldn't surprise me if a
driver (or chip) got this wrong here or there.
Bottom line is that for e100, it's well known and easily seeable that e100 is
counting skb sizes. That's consistent and I think we should keep it that way.
Auke
PS please cc the driver maintainers when you post patches to a specific driver.
> diff -ruN old/drivers/net/e100.c new/drivers/net/e100.c
> --- old/drivers/net/e100.c 2006-03-20 13:53:29.000000000 +0800
> +++ new/drivers/net/e100.c 2006-06-15 11:16:04.000000000 +0800
> @@ -1844,7 +1844,8 @@
> dev_kfree_skb_any(skb);
> } else {
> nic->net_stats.rx_packets++;
> - nic->net_stats.rx_bytes += actual_size;
> + /* Don't forget FCS */
> + nic->net_stats.rx_bytes += actual_size + 4;
> nic->netdev->last_rx = jiffies;
> netif_receive_skb(skb);
> if(work_done)
>
> BR.
> Weidong
>
> Signed-off-by: Weidong <weid@nanjing-fnst.com>
>
> -
> To unsubscribe from this list: send the line "unsubscribe netdev" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2006-06-15 4:36 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-06-15 4:17 [patch] e100 statistic value "rx_bytes" error Wei Dong
2006-06-15 4:35 ` Auke Kok
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).