5.4.0-77-일반 모듈 e1000e가 하드웨어 오류에 대해 불평합니다.

5.4.0-77-일반 모듈 e1000e가 하드웨어 오류에 대해 불평합니다.

어제 새로운 커널을 제공하는 lubuntu 20.04를 업데이트했습니다. 오늘 부팅해서 가져왔어

dmesg | grep -i hard
[    0.040601] Booting paravirtualized kernel on bare hardware
[    7.514435] e1000e 0000:00:19.0 0000:00:19.0 (uninitialized): Hardware Error
[   10.261171] systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
[   14.944977] e1000e 0000:00:19.0 eth0: Hardware Error

그래서 linux-image-5.4.0-74-generic을 사용한 이전 부팅을 dmesg에서 검색합니다.

grep -i hard /var/log/dmesg.0
[    0.039776] kernel: Booting paravirtualized kernel on bare hardware
[    4.091866] systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.

관련 하드웨어 세부정보

sudo lshw -c network
  *-network                 
       description: Ethernet interface
       product: 82579LM Gigabit Network Connection (Lewisville)
       vendor: Intel Corporation
       physical id: 19
       bus info: pci@0000:00:19.0
       logical name: eth0
       version: 04
       serial: 00:21:cc:ce:85:21
       capacity: 1Gbit/s
       width: 32 bits
       clock: 33MHz
       capabilities: pm msi bus_master cap_list ethernet physical tp 10bt 10bt-fd 100bt 100bt-fd 1000bt-fd autonegotiation
       configuration: autonegotiation=on broadcast=yes driver=e1000e driverversion=3.2.6-k firmware=0.13-3 latency=0 link=no multicast=yes port=twisted pair
       resources: irq:29 memory:f2500000-f251ffff memory:f253b000-f253bfff ioport:5080(size=32)

부팅 옵션을 찾았습니다

pcie_aspm=off

그러나 이로 인해 모든 pci 장치에 대한 활성 상태 전원 관리가 비활성화되지 않습니까? 아니면 내가 틀렸나요? 나는 들여다 본다

modinfo e1000e | fgrep parm
parm:           debug:Debug level (0=none,...,16=all) (int)
parm:           copybreak:Maximum size of packet that is copied to a new buffer on receive (uint)
parm:           TxIntDelay:Transmit Interrupt Delay (array of int)
parm:           TxAbsIntDelay:Transmit Absolute Interrupt Delay (array of int)
parm:           RxIntDelay:Receive Interrupt Delay (array of int)
parm:           RxAbsIntDelay:Receive Absolute Interrupt Delay (array of int)
parm:           InterruptThrottleRate:Interrupt Throttling Rate (array of int)
parm:           IntMode:Interrupt Mode (array of int)
parm:           SmartPowerDownEnable:Enable PHY smart power down (array of int)
parm:           KumeranLockLoss:Enable Kumeran lock loss workaround (array of int)
parm:           WriteProtectNVM:Write-protect NVM [WARNING: disabling this can lead to corrupted NVM] (array of int)
parm:           CrcStripping:Enable CRC Stripping, disable if your BMC needs the CRC (array of int)

내 이더넷 카드에 대한 전원 관리를 비활성화할 수 있습니까?

참고 이 상태의 카드가 작동하는지 알 수 없습니다(여기에는 라우터가 없음). .

답변1

pcie_aspm=off 커널 매개변수를 사용하여 커널을 부팅해 보십시오.

관련 정보