Add ethtool support for dumping the chip statistics. There aren't lots of statistics available, but this is what is available according to the RealTek documentation. Signed-off-by: Stephen Hemminger
Stephen Hemminger wrote: Add ethtool support for dumping the chip statistics. There aren't lots of statistics available, but this is what is available according to the RealTek documentation. Signed-o
I can confirm that I see no statistic errors either. I believe the faulty code in Richard's patch was: + if (RTL_R32(StatsAddrLow) & DumpStats) + return; /* no stats - took too long */ Which returned
The problem with the 8139cp is that it allocates the area to hold the statistics as part of the ring structure. The ring structure doesn't exist until device is up. I figured that there was no point
Stephen Hemminger wrote: On Wed, 9 Mar 2005 22:21:48 -0600 Jon Mason <jdmason@xxxxxxxxxx> wrote: On Wednesday 09 March 2005 03:53 pm, Stephen Hemminger wrote: On Wed, 9 Mar 2005 15:37:30 -0600 Jon Ma
Stephen Hemminger wrote: Add ethtool support for dumping the chip statistics. There aren't lots of statistics available, but this is what is available according to the RealTek documentation. [snip]
Add ethtool support for dumping the chip statistics. There aren't lots of statistics available, but this is what is available according to the RealTek documentation. Signed-off-by: Stephen Hemminger
I can confirm that I see no statistic errors either. I believe the faulty code in Richard's patch was: + if (RTL_R32(StatsAddrLow) & DumpStats) + return; /* no stats - took too long */ Which returned
The problem with the 8139cp is that it allocates the area to hold the statistics as part of the ring structure. The ring structure doesn't exist until device is up. I figured that there was no point
On Wed, 9 Mar 2005 15:37:30 -0600 Does this patch fix the problem of bogus statistics if the interface is down I see no problem when interface is down. It returns all zero's because the device is re
Hello. Stephen Hemminger wrote: Add ethtool support for dumping the chip statistics. There aren't lots of statistics available, but this is what is available according to the RealTek documentation. [