Linux

如何在啟動時刪除 acpi 警告?

  • November 9, 2013

我在dmesglinux 3.11.6-1 (2013-10-27)(debian 版本)的日誌中有此消息。

我想知道如何修復/刪除它?

    [    5.098132] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20130517/utaddress-251)
    [    5.098147] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [    5.098156] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \GPIO 1 (20130517/utaddress-251)
    [    5.098167] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [    5.098171] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \GPIO 1 (20130517/utaddress-251)
    [    5.098180] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [    5.098186] lpc_ich: Resource conflict(s) found affecting gpio_ich
    [    5.099072] ACPI Warning: 0x000000000000f040-0x000000000000f05f  SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1    (20130517/utaddress-251)
    [    5.099085] ACPI: If an ACPI driver is available for this device,     you should use it instead of the native driver

lspci:

$ lspci
00:00.0 Host bridge: Intel Corporation 3rd Gen Core processor DRAM Controller (rev 09)
00:02.0 VGA compatible controller: Intel Corporation 3rd Gen Core processor Graphics Controller (rev 09)
00:14.0 USB controller: Intel Corporation 7 Series/C210 Series Chipset Family USB xHCI Host Controller (rev 04)
00:16.0 Communication controller: Intel Corporation 7 Series/C210 Series Chipset Family MEI Controller #1 (rev 04)
00:19.0 Ethernet controller: Intel Corporation 82579LM Gigabit Network Connection (rev 04)
00:1a.0 USB controller: Intel Corporation 7 Series/C210 Series Chipset Family USB Enhanced Host Controller #2 (rev 04)
00:1b.0 Audio device: Intel Corporation 7 Series/C210 Series Chipset Family High Definition Audio Controller (rev 04)
00:1c.0 PCI bridge: Intel Corporation 7 Series/C210 Series Chipset Family PCI Express Root Port 1 (rev c4)
00:1c.1 PCI bridge: Intel Corporation 7 Series/C210 Series Chipset Family PCI Express Root Port 2 (rev c4)
00:1c.5 PCI bridge: Intel Corporation 7 Series/C210 Series Chipset Family PCI Express Root Port 6 (rev c4)
00:1d.0 USB controller: Intel Corporation 7 Series/C210 Series Chipset Family USB Enhanced Host Controller #1 (rev 04)
00:1f.0 ISA bridge: Intel Corporation QM77 Express Chipset LPC Controller (rev 04)
00:1f.2 SATA controller: Intel Corporation 7 Series Chipset Family 6-port SATA Controller [AHCI mode] (rev 04)
00:1f.3 SMBus: Intel Corporation 7 Series/C210 Series Chipset Family SMBus Controller (rev 04)
02:00.0 Network controller: Intel Corporation Centrino Ultimate-N 6300 (rev 35)
03:00.0 SD Host controller: O2 Micro, Inc. Device 8221 (rev 05)

此消息是關於某些驅動程序被拒絕訪問由ACPI控制的設備。

總的來說,我的經驗是可以放心地忽略它。但是,如果您真的堅持要刪除警告,我建議您不要嘗試使用選項 acpi=off 啟動,或者您可能只嘗試一次以查看會發生什麼。但我擔心你可能會發現你在使用 wifi、藍牙時遇到了麻煩……但是這裡他們說這大多是無害的,所以嘗試一下也無妨。

修復它的一種可能方法是使用該選項啟動

processor.nocst=1

它介紹了與一些舊 ACPI 軟體的兼容性,請參見此處。另一種方法是使用該選項

acpi_enforce_resources=lax

這顯然允許載入驅動程序。這可能會或不會干擾 ACPI 操作。

只是為了完整起見(如果您已經知道這一點,請道歉),引入這些修改,編輯 /etc/default/grub 並替換

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" 

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi=off" 

或您決定嘗試的任何選項。更新grub,重啟。

引用自:https://unix.stackexchange.com/questions/97974