Re: [patch] e100 statistic value "rx_bytes" error

2006-06-14 Thread Auke Kok
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 ge

[patch] e100 statistic value "rx_bytes" error

2006-06-14 Thread Wei Dong
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. Be