|
From: Chris M. <cm...@as...> - 2009-03-06 04:22:26
|
Adding to this: > I compiled and tried the e1000e driver on my hardware with two PCI-E > NICs. The e1000e driver appears to be working but I noticed on bootup > that the following message was logged for one of the NICs: > > e1000e 0000:03:00.0: Warning: detected ASPM enabled in EEPROM > > I see that ASPM is Active Power State Management but it's not clear > form this message if it gets disabled, or if it stays enabled, and > what the consequences are one way or another. The system is a > rack-mounted server not any kind of mobile device. I read in the e1000e README about issues with the EEPROM having APRM enabled in some older 82573x NICs. These are the NICs I had so I ran the script mentioned in the README (and also confirmed by hand with ethtool -e ethx) and see that the APRM is not enabled at least in the 0x1e location the README refers to: [root@dd43 ~]# lspci [...] 03:00.0 Ethernet controller: Intel Corporation 82573V Gigabit Ethernet Controller (Copper) (rev 03) 04:00.0 Ethernet controller: Intel Corporation 82573L Gigabit Ethernet Controller [...] [root@dd43 ~]# ./fixeep-82573-dspd.sh eth1 eth1: is a "82573V Gigabit Ethernet Controller" This fixup is applicable to your hardware Your eeprom is up to date, no changes were made [root@dd43 ~]# ./fixeep-82573-dspd.sh eth0 eth0: is a "82573L Gigabit Ethernet Controller" This fixup is applicable to your hardware Your eeprom is up to date, no changes were made Chris M. |