On Thu, Mar 30, 2006 at 06:05:45PM -0700, Jeff V. Merkey wrote: > > Linas Vepstas wrote:
Well, these comments have nothing to do with my patch, but ... anyway ... > The driver also needs to be fixed to allow clearing of the stats (like > all the other adapter drivers). At present, when I run performance > and packet drop counts on the cards, I cannot reset the stats with this > code because the driver stores them in the e100_adapter > structure. This is busted. > > This function: > > int clear_network_device_stats(BYTE *name) I couldn't find such a function in the kernel. > does not work on e1000 due to this section of code: > > void > e1000_update_stats(struct e1000_adapter *adapter) > { > > adapter->stats.xofftxc += E1000_READ_REG(hw, XOFFTXC); > adapter->stats.fcruc += E1000_READ_REG(hw, FCRUC); These are hardware stats ... presumably useless without a detailed understanding of the guts of the e1000. > //NOTE These stats need to be stored in the stats structure so they can > be cleared by > statistics monitoring programs. I can't imagine what generic interface would allow these to be viewed. > /* Fill out the OS statistics structure */ > > adapter->net_stats.rx_packets = adapter->stats.gprc; > adapter->net_stats.tx_packets = adapter->stats.gptc; > adapter->net_stats.rx_bytes = adapter->stats.gorcl; > adapter->net_stats.tx_bytes = adapter->stats.gotcl; Now *these* are generic ... and fixing this so that the stats increment instead of over-riding would take maybe half-an-hour or so; this is not hard to do ... !? Do you want me to write a patch to do this? --linas - To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html