In case we have a reliable PhysMemAddressWidth use that to dynamically
size the 64bit address window. Allocate 1/8 of the physical address
space and place the window at the upper end of the address space.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
---
OvmfPkg/Library/PlatformInitLib/MemDetect.c | 28 +++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/OvmfPkg/Library/PlatformInitLib/MemDetect.c b/OvmfPkg/Library/PlatformInitLib/MemDetect.c
index 16ecbfadc30c..ae217d0242ed 100644
--- a/OvmfPkg/Library/PlatformInitLib/MemDetect.c
+++ b/OvmfPkg/Library/PlatformInitLib/MemDetect.c
@@ -604,6 +604,33 @@ PlatformAddressWidthFromCpuid (
}
}
+VOID
+EFIAPI
+PlatformDynamicMmioWindow (
+ IN OUT EFI_HOB_PLATFORM_INFO *PlatformInfoHob
+ )
+{
+ UINT64 AddrSpace, MmioSpace;
+
+ AddrSpace = LShiftU64 (1, PlatformInfoHob->PhysMemAddressWidth);
+ MmioSpace = LShiftU64 (1, PlatformInfoHob->PhysMemAddressWidth - 3);
+
+ if ((PlatformInfoHob->PcdPciMmio64Size < MmioSpace) &&
+ (PlatformInfoHob->PcdPciMmio64Base + MmioSpace < AddrSpace))
+ {
+ DEBUG ((DEBUG_INFO, "%a: using dynamic mmio window\n", __func__));
+ DEBUG ((DEBUG_INFO, "%a: Addr Space 0x%Lx (%Ld GB)\n", __func__, AddrSpace, RShiftU64 (AddrSpace, 30)));
+ DEBUG ((DEBUG_INFO, "%a: MMIO Space 0x%Lx (%Ld GB)\n", __func__, MmioSpace, RShiftU64 (MmioSpace, 30)));
+ PlatformInfoHob->PcdPciMmio64Size = MmioSpace;
+ PlatformInfoHob->PcdPciMmio64Base = AddrSpace - MmioSpace;
+ } else {
+ DEBUG ((DEBUG_INFO, "%a: using classic mmio window\n", __func__));
+ }
+
+ DEBUG ((DEBUG_INFO, "%a: Pci64 Base 0x%Lx\n", __func__, PlatformInfoHob->PcdPciMmio64Base));
+ DEBUG ((DEBUG_INFO, "%a: Pci64 Size 0x%Lx\n", __func__, PlatformInfoHob->PcdPciMmio64Size));
+}
+
/**
Iterate over the PCI host bridges resources information optionally provided
in fw-cfg and find the highest address contained in the PCI MMIO windows. If
@@ -765,6 +792,7 @@ PlatformAddressWidthInitialization (
if (PlatformInfoHob->PhysMemAddressWidth != 0) {
// physical address width is known
PlatformInfoHob->FirstNonAddress = FirstNonAddress;
+ PlatformDynamicMmioWindow (PlatformInfoHob);
return;
}
--
2.37.3
-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#94700): https://edk2.groups.io/g/devel/message/94700
Mute This Topic: https://groups.io/mt/94113626/1787277
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org]
-=-=-=-=-=-=-=-=-=-=-=-
Am 04.10.22 um 15:47 schrieb Gerd Hoffmann: > In case we have a reliable PhysMemAddressWidth use that to dynamically > size the 64bit address window. Allocate 1/8 of the physical address > space and place the window at the upper end of the address space. > > Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Hi, a user recently reported that their Ubuntu 18.04 VM failed to boot after upgrading to our package based on edk2-stable202302 [0]. While the guest does reach GRUB, the disk attached via virtio-scsi-pci could not be found anymore. The user also reported that after changing the bus to pvscsi, the VM booted again, but the virtual NIC attached via virtio-net-pci did not work. Changing to e1000 made that work too. I was able to reproduce the issue (QEMU command line below[1]) and tracked it down to this patch. I verified that it is still an issue with current QEMU master and edk2 master, i.e. cafb4f3f36 ("UefiPayloadPkg: Fix boot shell issue for universal UEFI payload"). The issue happens with -cpu host, but not with -cpu kvm64. My host CPU is a AMD Ryzen Threadripper 2920X. "Reverting" with (this was the quickest way) > diff --git a/OvmfPkg/Library/PlatformInitLib/MemDetect.c b/OvmfPkg/Library/PlatformInitLib/MemDetect.c > index acf90b4e93..8563d7aedb 100644 > --- a/OvmfPkg/Library/PlatformInitLib/MemDetect.c > +++ b/OvmfPkg/Library/PlatformInitLib/MemDetect.c > @@ -855,7 +855,7 @@ PlatformAddressWidthInitialization ( > PlatformAddressWidthFromCpuid (PlatformInfoHob, TRUE); > if (PlatformInfoHob->PhysMemAddressWidth != 0) { > // physical address width is known > - PlatformDynamicMmioWindow (PlatformInfoHob); > + //PlatformDynamicMmioWindow (PlatformInfoHob);^M > return; > } allows the disk to be detected again. The kernel within the VM is for the user: 4.15.0-210-generic #221-Ubuntu for me: 4.15.0-211-generic #222-Ubuntu Happy to provide more information and relevant parts of debug logs. Best Regards, Fiona [0]: https://forum.proxmox.com/threads/127410/#post-557209 [1]: > ./qemu-system-x86_64 \ > -accel 'kvm' \ > -chardev 'socket,id=qmp,path=/var/run/qemu-server/113.qmp,server=on,wait=off' \ > -mon 'chardev=qmp,mode=control' \ > -pidfile /var/run/qemu-server/113.pid \ > -drive 'if=pflash,unit=0,format=raw,readonly=on,file=/root/OVMF_CODE.fd' \ > -drive 'if=pflash,unit=1,id=drive-efidisk0,format=raw,file=/dev/pve/vm-113-disk-2,size=540672' \ > -nodefaults \ > -vnc 'unix:/var/run/qemu-server/113.vnc,password=on' \ > -cpu host \ > -m 10240 \ > -device 'pci-bridge,id=pci.3,chassis_nr=3,bus=pci.0,addr=0x5' \ > -device 'vmware-svga,id=vga,bus=pci.0,addr=0x2' \ > -device 'virtio-scsi-pci,id=virtioscsi0,bus=pci.3,addr=0x1' \ > -drive 'file=/dev/pve/vm-113-disk-1,if=none,id=drive-scsi0,format=raw,cache=none,aio=io_uring,detect-zeroes=on' \ > -device 'scsi-hd,bus=virtioscsi0.0,channel=0,scsi-id=0,lun=0,drive=drive-scsi0,id=scsi0,bootindex=100' \ > -serial pty \ > -S \ > -machine 'type=pc' -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#104943): https://edk2.groups.io/g/devel/message/104943 Mute This Topic: https://groups.io/mt/94113626/1787277 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org] -=-=-=-=-=-=-=-=-=-=-=-
On Tue, May 16, 2023 at 04:00:55PM +0200, Fiona Ebner wrote: > > Am 04.10.22 um 15:47 schrieb Gerd Hoffmann: > > In case we have a reliable PhysMemAddressWidth use that to dynamically > > size the 64bit address window. Allocate 1/8 of the physical address > > space and place the window at the upper end of the address space. > > > > Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> > > Hi, > a user recently reported that their Ubuntu 18.04 VM failed to boot after > upgrading to our package based on edk2-stable202302 [0]. While the guest > does reach GRUB, the disk attached via virtio-scsi-pci could not be > found anymore. The user also reported that after changing the bus to > pvscsi, the VM booted again, but the virtual NIC attached via > virtio-net-pci did not work. Changing to e1000 made that work too. So the system makes it successfully though the firmware boot phase, but then the kernel fails to initialize the virtio devices, correct? > Happy to provide more information and relevant parts of debug logs. Kernel logs should give a clue what is going on. take care, Gerd -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#104963): https://edk2.groups.io/g/devel/message/104963 Mute This Topic: https://groups.io/mt/94113626/1787277 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org] -=-=-=-=-=-=-=-=-=-=-=-
Am 17.05.23 um 07:59 schrieb Gerd Hoffmann: > > On Tue, May 16, 2023 at 04:00:55PM +0200, Fiona Ebner wrote: >> >> Am 04.10.22 um 15:47 schrieb Gerd Hoffmann: >>> In case we have a reliable PhysMemAddressWidth use that to dynamically >>> size the 64bit address window. Allocate 1/8 of the physical address >>> space and place the window at the upper end of the address space. >>> >>> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> >> >> Hi, >> a user recently reported that their Ubuntu 18.04 VM failed to boot after >> upgrading to our package based on edk2-stable202302 [0]. While the guest >> does reach GRUB, the disk attached via virtio-scsi-pci could not be >> found anymore. The user also reported that after changing the bus to >> pvscsi, the VM booted again, but the virtual NIC attached via >> virtio-net-pci did not work. Changing to e1000 made that work too. > > So the system makes it successfully though the firmware boot phase, > but then the kernel fails to initialize the virtio devices, correct? Yes. >> Happy to provide more information and relevant parts of debug logs. > > Kernel logs should give a clue what is going on. Should've thought of that :) I changed the configuration now and attached the boot drive differently, so that I can get the log, while adding a second dummy disk via virtio-scsi-pci. The errors for the virtio devices are: > virtio_scsi virtio1: virtio: device uses modern interface but does not have VIRTIO_F_VERSION_1 > virtio_scsi: probe of virtio1 failed with error -22 > virtio_net virtio2: virtio: device uses modern interface but does not have VIRTIO_F_VERSION_1 > virtio_net: probe of virtio2 failed with error -22 Attached are kern.log and lspci -vvv output for a boot with stable202302 with (files with "bad") and without (files with "good") the call to PlatformDynamicMmioWindow. In the kern.log, I didn't really see any interesting differences, except for the errors above. The addresses are different and there is now a 64-bit bridge window, but I guess that's expected. > *************** > *** 418,423 **** > --- 418,424 ---- > pci 0000:00:1e.0: PCI bridge to [bus 01] > pci 0000:00:1e.0: bridge window [io 0xd000-0xdfff] > pci 0000:00:1e.0: bridge window [mem 0xc1200000-0xc13fffff] > + pci 0000:00:1e.0: bridge window [mem 0x700000000000-0x700fffffffff 64bit pref] > acpiphp: Slot [0-2] registered > acpiphp: Slot [1-2] registered > acpiphp: Slot [2-2] registered > *************** Not sure if this is interesting either, but part of the diff between the lspci outputs (first with the call, second without the call): > *************** > *** 75,88 **** > 00:05.0 SCSI storage controller: Red Hat, Inc Virtio SCSI > Subsystem: Red Hat, Inc Virtio SCSI > Physical Slot: 5 > ! Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+ > Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- > Latency: 0 > Interrupt: pin A routed to IRQ 10 > Region 0: I/O ports at 1040 [size=64] > Region 1: Memory at c1472000 (32-bit, non-prefetchable) [size=4K] > ! Region 4: Memory at 800004000 (64-bit, prefetchable) [size=16K] > ! Capabilities: [98] MSI-X: Enable+ Count=7 Masked- > Vector table: BAR=1 offset=00000000 > PBA: BAR=1 offset=00000800 > Capabilities: [84] Vendor Specific Information: VirtIO: <unknown> > --- 75,88 ---- > 00:05.0 SCSI storage controller: Red Hat, Inc Virtio SCSI > Subsystem: Red Hat, Inc Virtio SCSI > Physical Slot: 5 > ! Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- > Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- > Latency: 0 > Interrupt: pin A routed to IRQ 10 > Region 0: I/O ports at 1040 [size=64] > Region 1: Memory at c1472000 (32-bit, non-prefetchable) [size=4K] > ! Region 4: Memory at 702000004000 (64-bit, prefetchable) [size=16K] > ! Capabilities: [98] MSI-X: Enable- Count=7 Masked- > Vector table: BAR=1 offset=00000000 > PBA: BAR=1 offset=00000800 > Capabilities: [84] Vendor Specific Information: VirtIO: <unknown> > *************** Best Regards, Fiona -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#104975): https://edk2.groups.io/g/devel/message/104975 Mute This Topic: https://groups.io/mt/94113626/1787277 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org] -=-=-=-=-=-=-=-=-=-=-=- 00:00.0 Host bridge: Intel Corporation 440FX - 82441FX PMC [Natoma] (rev 02) Subsystem: Red Hat, Inc Qemu virtual machine Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0 00:01.0 ISA bridge: Intel Corporation 82371SB PIIX3 ISA [Natoma/Triton II] Subsystem: Red Hat, Inc Qemu virtual machine Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0 00:01.1 IDE interface: Intel Corporation 82371SB PIIX3 IDE [Natoma/Triton II] (prog-if 80 [Master]) Subsystem: Red Hat, Inc Qemu virtual machine Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0 Region 0: [virtual] Memory at 000001f0 (32-bit, non-prefetchable) [size=8] Region 1: [virtual] Memory at 000003f0 (type 3, non-prefetchable) Region 2: [virtual] Memory at 00000170 (32-bit, non-prefetchable) [size=8] Region 3: [virtual] Memory at 00000370 (type 3, non-prefetchable) Region 4: I/O ports at 1420 [size=16] Kernel driver in use: ata_piix Kernel modules: pata_acpi 00:01.2 USB controller: Intel Corporation 82371SB PIIX3 USB [Natoma/Triton II] (rev 01) (prog-if 00 [UHCI]) Subsystem: Red Hat, Inc QEMU Virtual Machine Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0 Interrupt: pin D routed to IRQ 11 Region 4: I/O ports at 10c0 [size=32] Kernel driver in use: uhci_hcd 00:01.3 Bridge: Intel Corporation 82371AB/EB/MB PIIX4 ACPI (rev 03) Subsystem: Red Hat, Inc Qemu virtual machine Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0 Interrupt: pin A routed to IRQ 9 Kernel driver in use: piix4_smbus Kernel modules: i2c_piix4 00:02.0 VGA compatible controller: VMware SVGA II Adapter (prog-if 00 [VGA controller]) Subsystem: VMware SVGA II Adapter Control: I/O+ Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Region 0: I/O ports at 1430 [size=16] Region 1: Memory at c0000000 (32-bit, prefetchable) [size=16M] Region 2: Memory at c1460000 (32-bit, prefetchable) [size=64K] Expansion ROM at 000c0000 [disabled] [size=128K] Kernel modules: vmwgfx 00:03.0 Unclassified device [00ff]: Red Hat, Inc Virtio memory balloon Subsystem: Red Hat, Inc Virtio memory balloon Physical Slot: 3 Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0 Interrupt: pin A routed to IRQ 10 Region 0: I/O ports at 1000 [size=64] Region 4: Memory at 702000000000 (64-bit, prefetchable) [size=16K] Capabilities: [84] Vendor Specific Information: VirtIO: <unknown> BAR=0 offset=00000000 size=00000000 Capabilities: [70] Vendor Specific Information: VirtIO: Notify BAR=4 offset=00003000 size=00001000 multiplier=00000004 Capabilities: [60] Vendor Specific Information: VirtIO: DeviceCfg BAR=4 offset=00002000 size=00001000 Capabilities: [50] Vendor Specific Information: VirtIO: ISR BAR=4 offset=00001000 size=00001000 Capabilities: [40] Vendor Specific Information: VirtIO: CommonCfg BAR=4 offset=00000000 size=00001000 Kernel driver in use: virtio-pci 00:05.0 SCSI storage controller: Red Hat, Inc Virtio SCSI Subsystem: Red Hat, Inc Virtio SCSI Physical Slot: 5 Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0 Interrupt: pin A routed to IRQ 10 Region 0: I/O ports at 1040 [size=64] Region 1: Memory at c1472000 (32-bit, non-prefetchable) [size=4K] Region 4: Memory at 702000004000 (64-bit, prefetchable) [size=16K] Capabilities: [98] MSI-X: Enable- Count=7 Masked- Vector table: BAR=1 offset=00000000 PBA: BAR=1 offset=00000800 Capabilities: [84] Vendor Specific Information: VirtIO: <unknown> BAR=0 offset=00000000 size=00000000 Capabilities: [70] Vendor Specific Information: VirtIO: Notify BAR=4 offset=00003000 size=00001000 multiplier=00000004 Capabilities: [60] Vendor Specific Information: VirtIO: DeviceCfg BAR=4 offset=00002000 size=00001000 Capabilities: [50] Vendor Specific Information: VirtIO: ISR BAR=4 offset=00001000 size=00001000 Capabilities: [40] Vendor Specific Information: VirtIO: CommonCfg BAR=4 offset=00000000 size=00001000 Kernel driver in use: virtio-pci 00:07.0 SATA controller: Intel Corporation 82801IR/IO/IH (ICH9R/DO/DH) 6 port SATA Controller [AHCI mode] (rev 02) (prog-if 01 [AHCI 1.0]) Subsystem: Red Hat, Inc QEMU Virtual Machine Physical Slot: 7 Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+ Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0 Interrupt: pin A routed to IRQ 24 Region 4: I/O ports at 10e0 [size=32] Region 5: Memory at c1471000 (32-bit, non-prefetchable) [size=4K] Capabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit+ Address: 00000000fee01000 Data: 4023 Capabilities: [a8] SATA HBA v1.0 BAR4 Offset=00000004 Kernel driver in use: ahci Kernel modules: ahci 00:12.0 Ethernet controller: Intel Corporation 82540EM Gigabit Ethernet Controller (rev 03) Subsystem: Red Hat, Inc QEMU Virtual Machine Physical Slot: 18 Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0 Interrupt: pin A routed to IRQ 11 Region 0: Memory at c1440000 (32-bit, non-prefetchable) [size=128K] Region 1: I/O ports at 1080 [size=64] Expansion ROM at c1400000 [disabled] [size=256K] Kernel driver in use: e1000 Kernel modules: e1000 00:13.0 Ethernet controller: Red Hat, Inc Virtio network device Subsystem: Red Hat, Inc Virtio network device Physical Slot: 19 Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0 Interrupt: pin A routed to IRQ 10 Region 0: I/O ports at 1400 [size=32] Region 1: Memory at c1470000 (32-bit, non-prefetchable) [size=4K] Region 4: Memory at 702000008000 (64-bit, prefetchable) [size=16K] Expansion ROM at c1480000 [disabled] [size=256K] Capabilities: [98] MSI-X: Enable- Count=4 Masked- Vector table: BAR=1 offset=00000000 PBA: BAR=1 offset=00000800 Capabilities: [84] Vendor Specific Information: VirtIO: <unknown> BAR=0 offset=00000000 size=00000000 Capabilities: [70] Vendor Specific Information: VirtIO: Notify BAR=4 offset=00003000 size=00001000 multiplier=00000004 Capabilities: [60] Vendor Specific Information: VirtIO: DeviceCfg BAR=4 offset=00002000 size=00001000 Capabilities: [50] Vendor Specific Information: VirtIO: ISR BAR=4 offset=00001000 size=00001000 Capabilities: [40] Vendor Specific Information: VirtIO: CommonCfg BAR=4 offset=00000000 size=00001000 Kernel driver in use: virtio-pci 00:1e.0 PCI bridge: Red Hat, Inc. QEMU PCI-PCI bridge (prog-if 00 [Normal decode]) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0 Interrupt: pin A routed to IRQ 10 Region 0: Memory at 70200000d000 (64-bit, non-prefetchable) [size=256] Bus: primary=00, secondary=01, subordinate=01, sec-latency=0 I/O behind bridge: 0000d000-0000dfff Memory behind bridge: c1200000-c13fffff Prefetchable memory behind bridge: 0000700000000000-0000700fffffffff Secondary status: 66MHz+ FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR- BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B- PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn- Capabilities: [4c] MSI: Enable- Count=1/1 Maskable+ 64bit+ Address: 0000000000000000 Data: 0000 Masking: 00000000 Pending: 00000000 Capabilities: [48] Slot ID: 0 slots, First+, chassis 01 Capabilities: [40] Hot-plug capable Kernel modules: shpchp 00:1f.0 PCI bridge: Red Hat, Inc. QEMU PCI-PCI bridge (prog-if 00 [Normal decode]) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0 Interrupt: pin A routed to IRQ 11 Region 0: Memory at 70200000c000 (64-bit, non-prefetchable) [size=256] Bus: primary=00, secondary=02, subordinate=02, sec-latency=0 I/O behind bridge: 0000c000-0000cfff Memory behind bridge: c1000000-c11fffff Prefetchable memory behind bridge: 0000701000000000-0000701fffffffff Secondary status: 66MHz+ FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR- BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B- PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn- Capabilities: [4c] MSI: Enable- Count=1/1 Maskable+ 64bit+ Address: 0000000000000000 Data: 0000 Masking: 00000000 Pending: 00000000 Capabilities: [48] Slot ID: 0 slots, First+, chassis 02 Capabilities: [40] Hot-plug capable Kernel modules: shpchp 00:00.0 Host bridge: Intel Corporation 440FX - 82441FX PMC [Natoma] (rev 02) Subsystem: Red Hat, Inc Qemu virtual machine Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0 00:01.0 ISA bridge: Intel Corporation 82371SB PIIX3 ISA [Natoma/Triton II] Subsystem: Red Hat, Inc Qemu virtual machine Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0 00:01.1 IDE interface: Intel Corporation 82371SB PIIX3 IDE [Natoma/Triton II] (prog-if 80 [Master]) Subsystem: Red Hat, Inc Qemu virtual machine Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0 Region 0: [virtual] Memory at 000001f0 (32-bit, non-prefetchable) [size=8] Region 1: [virtual] Memory at 000003f0 (type 3, non-prefetchable) Region 2: [virtual] Memory at 00000170 (32-bit, non-prefetchable) [size=8] Region 3: [virtual] Memory at 00000370 (type 3, non-prefetchable) Region 4: I/O ports at 1420 [size=16] Kernel driver in use: ata_piix Kernel modules: pata_acpi 00:01.2 USB controller: Intel Corporation 82371SB PIIX3 USB [Natoma/Triton II] (rev 01) (prog-if 00 [UHCI]) Subsystem: Red Hat, Inc QEMU Virtual Machine Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0 Interrupt: pin D routed to IRQ 11 Region 4: I/O ports at 10c0 [size=32] Kernel driver in use: uhci_hcd 00:01.3 Bridge: Intel Corporation 82371AB/EB/MB PIIX4 ACPI (rev 03) Subsystem: Red Hat, Inc Qemu virtual machine Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0 Interrupt: pin A routed to IRQ 9 Kernel driver in use: piix4_smbus Kernel modules: i2c_piix4 00:02.0 VGA compatible controller: VMware SVGA II Adapter (prog-if 00 [VGA controller]) Subsystem: VMware SVGA II Adapter Control: I/O+ Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Region 0: I/O ports at 1430 [size=16] Region 1: Memory at c0000000 (32-bit, prefetchable) [size=16M] Region 2: Memory at c1460000 (32-bit, prefetchable) [size=64K] Expansion ROM at 000c0000 [disabled] [size=128K] Kernel modules: vmwgfx 00:03.0 Unclassified device [00ff]: Red Hat, Inc Virtio memory balloon Subsystem: Red Hat, Inc Virtio memory balloon Physical Slot: 3 Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0 Interrupt: pin A routed to IRQ 10 Region 0: I/O ports at 1000 [size=64] Region 4: Memory at 800000000 (64-bit, prefetchable) [size=16K] Capabilities: [84] Vendor Specific Information: VirtIO: <unknown> BAR=0 offset=00000000 size=00000000 Capabilities: [70] Vendor Specific Information: VirtIO: Notify BAR=4 offset=00003000 size=00001000 multiplier=00000004 Capabilities: [60] Vendor Specific Information: VirtIO: DeviceCfg BAR=4 offset=00002000 size=00001000 Capabilities: [50] Vendor Specific Information: VirtIO: ISR BAR=4 offset=00001000 size=00001000 Capabilities: [40] Vendor Specific Information: VirtIO: CommonCfg BAR=4 offset=00000000 size=00001000 Kernel driver in use: virtio-pci 00:05.0 SCSI storage controller: Red Hat, Inc Virtio SCSI Subsystem: Red Hat, Inc Virtio SCSI Physical Slot: 5 Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+ Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0 Interrupt: pin A routed to IRQ 10 Region 0: I/O ports at 1040 [size=64] Region 1: Memory at c1472000 (32-bit, non-prefetchable) [size=4K] Region 4: Memory at 800004000 (64-bit, prefetchable) [size=16K] Capabilities: [98] MSI-X: Enable+ Count=7 Masked- Vector table: BAR=1 offset=00000000 PBA: BAR=1 offset=00000800 Capabilities: [84] Vendor Specific Information: VirtIO: <unknown> BAR=0 offset=00000000 size=00000000 Capabilities: [70] Vendor Specific Information: VirtIO: Notify BAR=4 offset=00003000 size=00001000 multiplier=00000004 Capabilities: [60] Vendor Specific Information: VirtIO: DeviceCfg BAR=4 offset=00002000 size=00001000 Capabilities: [50] Vendor Specific Information: VirtIO: ISR BAR=4 offset=00001000 size=00001000 Capabilities: [40] Vendor Specific Information: VirtIO: CommonCfg BAR=4 offset=00000000 size=00001000 Kernel driver in use: virtio-pci 00:07.0 SATA controller: Intel Corporation 82801IR/IO/IH (ICH9R/DO/DH) 6 port SATA Controller [AHCI mode] (rev 02) (prog-if 01 [AHCI 1.0]) Subsystem: Red Hat, Inc QEMU Virtual Machine Physical Slot: 7 Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+ Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0 Interrupt: pin A routed to IRQ 34 Region 4: I/O ports at 10e0 [size=32] Region 5: Memory at c1471000 (32-bit, non-prefetchable) [size=4K] Capabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit+ Address: 00000000fee01000 Data: 4029 Capabilities: [a8] SATA HBA v1.0 BAR4 Offset=00000004 Kernel driver in use: ahci Kernel modules: ahci 00:12.0 Ethernet controller: Intel Corporation 82540EM Gigabit Ethernet Controller (rev 03) Subsystem: Red Hat, Inc QEMU Virtual Machine Physical Slot: 18 Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0 Interrupt: pin A routed to IRQ 11 Region 0: Memory at c1440000 (32-bit, non-prefetchable) [size=128K] Region 1: I/O ports at 1080 [size=64] Expansion ROM at c1400000 [disabled] [size=256K] Kernel driver in use: e1000 Kernel modules: e1000 00:13.0 Ethernet controller: Red Hat, Inc Virtio network device Subsystem: Red Hat, Inc Virtio network device Physical Slot: 19 Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+ Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0 Interrupt: pin A routed to IRQ 10 Region 0: I/O ports at 1400 [size=32] Region 1: Memory at c1470000 (32-bit, non-prefetchable) [size=4K] Region 4: Memory at 800008000 (64-bit, prefetchable) [size=16K] Expansion ROM at c1480000 [disabled] [size=256K] Capabilities: [98] MSI-X: Enable+ Count=4 Masked- Vector table: BAR=1 offset=00000000 PBA: BAR=1 offset=00000800 Capabilities: [84] Vendor Specific Information: VirtIO: <unknown> BAR=0 offset=00000000 size=00000000 Capabilities: [70] Vendor Specific Information: VirtIO: Notify BAR=4 offset=00003000 size=00001000 multiplier=00000004 Capabilities: [60] Vendor Specific Information: VirtIO: DeviceCfg BAR=4 offset=00002000 size=00001000 Capabilities: [50] Vendor Specific Information: VirtIO: ISR BAR=4 offset=00001000 size=00001000 Capabilities: [40] Vendor Specific Information: VirtIO: CommonCfg BAR=4 offset=00000000 size=00001000 Kernel driver in use: virtio-pci 00:1e.0 PCI bridge: Red Hat, Inc. QEMU PCI-PCI bridge (prog-if 00 [Normal decode]) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0 Interrupt: pin A routed to IRQ 10 Region 0: Memory at 80000d000 (64-bit, non-prefetchable) [size=256] Bus: primary=00, secondary=01, subordinate=01, sec-latency=0 I/O behind bridge: 0000d000-0000dfff Memory behind bridge: c1200000-c13fffff Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff Secondary status: 66MHz+ FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR- BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B- PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn- Capabilities: [4c] MSI: Enable- Count=1/1 Maskable+ 64bit+ Address: 0000000000000000 Data: 0000 Masking: 00000000 Pending: 00000000 Capabilities: [48] Slot ID: 0 slots, First+, chassis 01 Capabilities: [40] Hot-plug capable Kernel modules: shpchp 00:1f.0 PCI bridge: Red Hat, Inc. QEMU PCI-PCI bridge (prog-if 00 [Normal decode]) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0 Interrupt: pin A routed to IRQ 11 Region 0: Memory at 80000c000 (64-bit, non-prefetchable) [size=256] Bus: primary=00, secondary=02, subordinate=02, sec-latency=0 I/O behind bridge: 0000c000-0000cfff Memory behind bridge: c1000000-c11fffff Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff Secondary status: 66MHz+ FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR- BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B- PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn- Capabilities: [4c] MSI: Enable- Count=1/1 Maskable+ 64bit+ Address: 0000000000000000 Data: 0000 Masking: 00000000 Pending: 00000000 Capabilities: [48] Slot ID: 0 slots, First+, chassis 02 Capabilities: [40] Hot-plug capable Kernel modules: shpchp May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] Linux version 4.15.0-211-generic (buildd@lcy02-amd64-047) (gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04)) #222-Ubuntu SMP Tue Apr 18 18:55:06 UTC 2023 (Ubuntu 4.15.0-211.222-generic 4.15.18) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.15.0-211-generic root=/dev/mapper/ubuntu--vg-root ro quiet splash vt.handoff=1 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] KERNEL supported cpus: May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] Intel GenuineIntel May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] AMD AuthenticAMD May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] Centaur CentaurHauls May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers' May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers' May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers' May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format. May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] e820: BIOS-provided physical RAM map: May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000000805fff] usable May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] BIOS-e820: [mem 0x0000000000806000-0x0000000000807fff] ACPI NVS May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] BIOS-e820: [mem 0x0000000000808000-0x000000000080ffff] usable May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] BIOS-e820: [mem 0x0000000000810000-0x00000000008fffff] ACPI NVS May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] BIOS-e820: [mem 0x0000000000900000-0x000000009ee68fff] usable May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] BIOS-e820: [mem 0x000000009ee69000-0x000000009ef6afff] reserved May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] BIOS-e820: [mem 0x000000009ef6b000-0x000000009f8ebfff] usable May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] BIOS-e820: [mem 0x000000009f8ec000-0x000000009fb6bfff] reserved May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] BIOS-e820: [mem 0x000000009fb6c000-0x000000009fb7dfff] ACPI data May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] BIOS-e820: [mem 0x000000009fb7e000-0x000000009fbfdfff] ACPI NVS May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] BIOS-e820: [mem 0x000000009fbfe000-0x00000000bfedbfff] usable May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] BIOS-e820: [mem 0x00000000bfedc000-0x00000000bff5ffff] reserved May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] BIOS-e820: [mem 0x00000000bff60000-0x00000000bfffffff] ACPI NVS May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] BIOS-e820: [mem 0x00000000ffc00000-0x00000000ffffffff] reserved May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x00000002bfffffff] usable May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] BIOS-e820: [mem 0x000000fd00000000-0x000000ffffffffff] reserved May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] NX (Execute Disable) protection: active May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] e820: update [mem 0x9e705018-0x9e70ec57] usable ==> usable May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] e820: update [mem 0x9e705018-0x9e70ec57] usable ==> usable May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] e820: update [mem 0x9e03a018-0x9e060e57] usable ==> usable May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] e820: update [mem 0x9e03a018-0x9e060e57] usable ==> usable May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] e820: update [mem 0x9e012018-0x9e039457] usable ==> usable May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] e820: update [mem 0x9e012018-0x9e039457] usable ==> usable May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] extended physical RAM map: May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000009ffff] usable May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] reserve setup_data: [mem 0x0000000000100000-0x0000000000805fff] usable May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] reserve setup_data: [mem 0x0000000000806000-0x0000000000807fff] ACPI NVS May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] reserve setup_data: [mem 0x0000000000808000-0x000000000080ffff] usable May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] reserve setup_data: [mem 0x0000000000810000-0x00000000008fffff] ACPI NVS May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] reserve setup_data: [mem 0x0000000000900000-0x000000009e012017] usable May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] reserve setup_data: [mem 0x000000009e012018-0x000000009e039457] usable May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] reserve setup_data: [mem 0x000000009e039458-0x000000009e03a017] usable May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] reserve setup_data: [mem 0x000000009e03a018-0x000000009e060e57] usable May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] reserve setup_data: [mem 0x000000009e060e58-0x000000009e705017] usable May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] reserve setup_data: [mem 0x000000009e705018-0x000000009e70ec57] usable May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] reserve setup_data: [mem 0x000000009e70ec58-0x000000009ee68fff] usable May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] reserve setup_data: [mem 0x000000009ee69000-0x000000009ef6afff] reserved May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] reserve setup_data: [mem 0x000000009ef6b000-0x000000009f8ebfff] usable May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] reserve setup_data: [mem 0x000000009f8ec000-0x000000009fb6bfff] reserved May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] reserve setup_data: [mem 0x000000009fb6c000-0x000000009fb7dfff] ACPI data May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] reserve setup_data: [mem 0x000000009fb7e000-0x000000009fbfdfff] ACPI NVS May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] reserve setup_data: [mem 0x000000009fbfe000-0x00000000bfedbfff] usable May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] reserve setup_data: [mem 0x00000000bfedc000-0x00000000bff5ffff] reserved May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] reserve setup_data: [mem 0x00000000bff60000-0x00000000bfffffff] ACPI NVS May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] reserve setup_data: [mem 0x00000000feffc000-0x00000000feffffff] reserved May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] reserve setup_data: [mem 0x00000000ffc00000-0x00000000ffffffff] reserved May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] reserve setup_data: [mem 0x0000000100000000-0x00000002bfffffff] usable May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] reserve setup_data: [mem 0x000000fd00000000-0x000000ffffffffff] reserved May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] efi: EFI v2.70 by EFI Development Kit II / OVMF May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] efi: SMBIOS=0x9f920000 ACPI=0x9fb7d000 ACPI 2.0=0x9fb7d014 MEMATTR=0x9e89c018 MOKvar=0x9e71a000 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] secureboot: Secure boot disabled May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] SMBIOS 2.8 present. May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] DMI: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 3.20230228-2 04/04/2023 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] Hypervisor detected: KVM May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] e820: last_pfn = 0x2c0000 max_arch_pfn = 0x400000000 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] MTRR default type: write-back May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] MTRR fixed ranges enabled: May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] 00000-9FFFF write-back May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] A0000-FFFFF uncachable May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] MTRR variable ranges enabled: May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] 0 base 0000C0000000 mask FFFFC0000000 uncachable May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] 1 base 700000000000 mask F00000000000 uncachable May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] 2 disabled May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] 3 disabled May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] 4 disabled May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] 5 disabled May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] 6 disabled May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] 7 disabled May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] e820: last_pfn = 0xbfedc max_arch_pfn = 0x400000000 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] e820: update [mem 0x9e71a000-0x9e71afff] usable ==> reserved May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] Scanning 1 areas for low memory corruption May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] Using GB pages for direct mapping May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] RAMDISK: [mem 0x98177000-0x9be5efff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: Early table checksum verification disabled May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: RSDP 0x000000009FB7D014 000024 (v02 BOCHS ) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: XSDT 0x000000009FB7C0E8 000054 (v01 BOCHS BXPC 00000001 01000013) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: FACP 0x000000009FB77000 000074 (v01 BOCHS BXPC 00000001 BXPC 00000001) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: DSDT 0x000000009FB78000 003180 (v01 BOCHS BXPC 00000001 BXPC 00000001) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: FACS 0x000000009FBDB000 000040 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: APIC 0x000000009FB76000 000090 (v01 BOCHS BXPC 00000001 BXPC 00000001) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: SSDT 0x000000009FB75000 0000CA (v01 BOCHS VMGENID 00000001 BXPC 00000001) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: HPET 0x000000009FB74000 000038 (v01 BOCHS BXPC 00000001 BXPC 00000001) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: WAET 0x000000009FB73000 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: BGRT 0x000000009FB72000 000038 (v01 INTEL EDK2 00000002 01000013) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: Reserving FACP table memory at [mem 0x9fb77000-0x9fb77073] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: Reserving DSDT table memory at [mem 0x9fb78000-0x9fb7b17f] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: Reserving FACS table memory at [mem 0x9fbdb000-0x9fbdb03f] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: Reserving APIC table memory at [mem 0x9fb76000-0x9fb7608f] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: Reserving SSDT table memory at [mem 0x9fb75000-0x9fb750c9] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: Reserving HPET table memory at [mem 0x9fb74000-0x9fb74037] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: Reserving WAET table memory at [mem 0x9fb73000-0x9fb73027] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: Reserving BGRT table memory at [mem 0x9fb72000-0x9fb72037] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: Local APIC address 0xfee00000 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] No NUMA configuration found May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] Faking a node at [mem 0x0000000000000000-0x00000002bfffffff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] NODE_DATA(0) allocated [mem 0x2bffd5000-0x2bfffffff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] kvm-clock: cpu 0, msr 2:bff54001, primary cpu clock May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] kvm-clock: using sched offset of 46952447636 cycles May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] Zone ranges: May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] DMA [mem 0x0000000000001000-0x0000000000ffffff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] DMA32 [mem 0x0000000001000000-0x00000000ffffffff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] Normal [mem 0x0000000100000000-0x00000002bfffffff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] Device empty May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] Movable zone start for each node May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] Early memory node ranges May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] node 0: [mem 0x0000000000001000-0x000000000009ffff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] node 0: [mem 0x0000000000100000-0x0000000000805fff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] node 0: [mem 0x0000000000808000-0x000000000080ffff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] node 0: [mem 0x0000000000900000-0x000000009ee68fff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] node 0: [mem 0x000000009ef6b000-0x000000009f8ebfff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] node 0: [mem 0x000000009fbfe000-0x00000000bfedbfff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] node 0: [mem 0x0000000100000000-0x00000002bfffffff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] Reserved but unavailable: 108 pages May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x00000002bfffffff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] On node 0 totalpages: 2619765 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] DMA zone: 59 pages used for memmap May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] DMA zone: 1817 pages reserved May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] DMA zone: 3757 pages, LIFO batch:0 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] DMA32 zone: 12204 pages used for memmap May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] DMA32 zone: 781000 pages, LIFO batch:31 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] Normal zone: 28672 pages used for memmap May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] Normal zone: 1835008 pages, LIFO batch:31 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: PM-Timer IO Port: 0xb008 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: Local APIC address 0xfee00000 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1]) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: IRQ0 used by override. May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: IRQ5 used by override. May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: IRQ9 used by override. May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: IRQ10 used by override. May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: IRQ11 used by override. May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] Using ACPI (MADT) for SMP configuration information May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] e820: update [mem 0x9e061000-0x9e084fff] usable ==> reserved May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] TSC deadline timer available May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000fffff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x00806000-0x00807fff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x00810000-0x008fffff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x9e012000-0x9e012fff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x9e039000-0x9e039fff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x9e03a000-0x9e03afff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x9e060000-0x9e060fff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x9e061000-0x9e084fff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x9e705000-0x9e705fff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x9e70e000-0x9e70efff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x9e71a000-0x9e71afff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x9ee69000-0x9ef6afff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x9f8ec000-0x9fb6bfff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x9fb6c000-0x9fb7dfff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x9fb7e000-0x9fbfdfff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0xbfedc000-0xbff5ffff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0xbff60000-0xbfffffff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0xc0000000-0xfeffbfff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0xfeffc000-0xfeffffff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0xff000000-0xffbfffff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0xffc00000-0xffffffff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] e820: [mem 0xc0000000-0xfeffbfff] available for PCI devices May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] Booting paravirtualized kernel on KVM May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] percpu: Embedded 50 pages/cpu s167936 r8192 d28672 u524288 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] pcpu-alloc: s167936 r8192 d28672 u524288 alloc=1*2097152 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] pcpu-alloc: [0] 0 1 2 3 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] KVM setup async PF for cpu 0 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] kvm-stealtime: cpu 0, msr 2bfc28040 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] PV qspinlock hash table entries: 256 (order: 0, 4096 bytes) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 2577013 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] Policy zone: Normal May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.15.0-211-generic root=/dev/mapper/ubuntu--vg-root ro quiet splash vt.handoff=1 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing! May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] Memory: 9592596K/10479060K available (12300K kernel code, 2477K rwdata, 4324K rodata, 2480K init, 2720K bss, 886464K reserved, 0K cma-reserved) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ftrace: allocating 39508 entries in 155 pages May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.004000] Hierarchical RCU implementation. May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.004000] RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=4. May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.004000] Tasks RCU enabled. May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.004000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.004000] NR_IRQS: 524544, nr_irqs: 456, preallocated irqs: 16 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.004000] random: crng init done May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.004000] vt handoff: transparent VT on vt#1 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.004000] Console: colour dummy device 80x25 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.004000] console [tty0] enabled May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.004000] ACPI: Core revision 20170831 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.004000] ACPI: 2 ACPI AML tables successfully acquired and loaded May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.004000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604467 ns May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.004000] hpet clockevent registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.004011] APIC: Switch to symmetric I/O mode setup May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.004758] x2apic enabled May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.005484] Switched APIC routing to physical x2apic. May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.008000] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.008000] tsc: Detected 3493.436 MHz processor May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.008000] tsc: Marking TSC unstable due to TSCs unsynchronized May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.008000] Calibrating delay loop (skipped) preset value.. 6986.87 BogoMIPS (lpj=13973744) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.008000] pid_max: default: 32768 minimum: 301 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.008736] Security Framework initialized May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.008737] Yama: becoming mindful. May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.008755] AppArmor: AppArmor initialized May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.013175] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.015140] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.015172] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.015572] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.016520] Last level iTLB entries: 4KB 512, 2MB 255, 4MB 127 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.016521] Last level dTLB entries: 4KB 512, 2MB 255, 4MB 127, 1GB 0 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.016527] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.016528] Spectre V2 : Mitigation: Retpolines May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.016529] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.016529] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.016529] RETBleed: Vulnerable May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.016537] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.016538] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.023074] Freeing SMP alternatives memory: 36K May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.031396] smpboot: CPU0: AMD Ryzen Threadripper 2920X 12-Core Processor (family: 0x17, model: 0x8, stepping: 0x2) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.031464] Performance Events: Fam17h core perfctr, AMD PMU driver. May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.031526] ... version: 0 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.031527] ... bit width: 48 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.031527] ... generic registers: 6 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.031528] ... value mask: 0000ffffffffffff May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.031528] ... max period: 00007fffffffffff May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.031529] ... fixed-purpose events: 0 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.031529] ... event mask: 000000000000003f May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.031854] Hierarchical SRCU implementation. May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.032000] smp: Bringing up secondary CPUs ... May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.032000] x86: Booting SMP configuration: May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.032000] .... node #0, CPUs: #1 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.004000] kvm-clock: cpu 1, msr 2:bff54041, secondary cpu clock May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.032000] KVM setup async PF for cpu 1 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.032000] kvm-stealtime: cpu 1, msr 2bfca8040 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.032000] #2 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.004000] kvm-clock: cpu 2, msr 2:bff54081, secondary cpu clock May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.032221] KVM setup async PF for cpu 2 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.032221] kvm-stealtime: cpu 2, msr 2bfd28040 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.032221] #3 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.004000] kvm-clock: cpu 3, msr 2:bff540c1, secondary cpu clock May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.033281] KVM setup async PF for cpu 3 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.033281] kvm-stealtime: cpu 3, msr 2bfda8040 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.033281] smp: Brought up 1 node, 4 CPUs May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.033281] smpboot: Max logical packages: 2 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.033281] smpboot: Total of 4 processors activated (27947.48 BogoMIPS) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.036010] devtmpfs: initialized May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.036056] x86/mm: Memory block size: 128MB May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.037080] evm: security.selinux May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.037081] evm: security.SMACK64 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.037082] evm: security.SMACK64EXEC May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.037082] evm: security.SMACK64TRANSMUTE May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.037083] evm: security.SMACK64MMAP May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.037083] evm: security.apparmor May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.037083] evm: security.ima May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.037084] evm: security.capability May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.037111] PM: Registering ACPI NVS region [mem 0x00806000-0x00807fff] (8192 bytes) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.037111] PM: Registering ACPI NVS region [mem 0x00810000-0x008fffff] (983040 bytes) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.037111] PM: Registering ACPI NVS region [mem 0x9fb7e000-0x9fbfdfff] (524288 bytes) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.037111] PM: Registering ACPI NVS region [mem 0xbff60000-0xbfffffff] (655360 bytes) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.037111] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.037111] futex hash table entries: 1024 (order: 4, 65536 bytes) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.037111] pinctrl core: initialized pinctrl subsystem May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.037111] RTC time: 12:02:43, date: 05/17/23 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.037454] NET: Registered protocol family 16 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.037508] audit: initializing netlink subsys (disabled) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.037523] audit: type=2000 audit(1684324964.580:1): state=initialized audit_enabled=0 res=1 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.037523] cpuidle: using governor ladder May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.037523] cpuidle: using governor menu May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.041087] ACPI: bus type PCI registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.041087] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.041087] PCI: Using configuration type 1 for base access May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.041087] PCI: Using configuration type 1 for extended access May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.041087] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.041087] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.041087] ACPI: Added _OSI(Module Device) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.041087] ACPI: Added _OSI(Processor Device) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.041087] ACPI: Added _OSI(3.0 _SCP Extensions) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.041087] ACPI: Added _OSI(Processor Aggregator Device) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.041087] ACPI: Added _OSI(Linux-Dell-Video) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.041087] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.041087] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.041338] ACPI: Interpreter enabled May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.041350] ACPI: (supports S0 S3 S4 S5) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.041351] ACPI: Using IOAPIC for interrupt routing May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.041360] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.041665] ACPI: Enabled 3 GPEs in block 00 to 0F May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.046547] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.046551] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.046554] acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.046861] acpiphp: Slot [3] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.046940] acpiphp: Slot [4] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.047019] acpiphp: Slot [5] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.047096] acpiphp: Slot [6] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.047177] acpiphp: Slot [7] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.047255] acpiphp: Slot [8] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.047335] acpiphp: Slot [9] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.047414] acpiphp: Slot [10] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.047491] acpiphp: Slot [11] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.047568] acpiphp: Slot [12] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.047645] acpiphp: Slot [13] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.047722] acpiphp: Slot [14] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.047800] acpiphp: Slot [15] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.047878] acpiphp: Slot [16] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.047957] acpiphp: Slot [17] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.048038] acpiphp: Slot [18] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.048118] acpiphp: Slot [19] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.048196] acpiphp: Slot [20] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.048275] acpiphp: Slot [21] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.048354] acpiphp: Slot [22] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.048432] acpiphp: Slot [23] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.048511] acpiphp: Slot [24] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.048589] acpiphp: Slot [25] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.048666] acpiphp: Slot [26] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.048745] acpiphp: Slot [27] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.048823] acpiphp: Slot [28] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.048901] acpiphp: Slot [29] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.048985] PCI host bridge to bus 0000:00 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.048987] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.048988] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.048989] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.048990] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff window] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.048990] pci_bus 0000:00: root bus resource [mem 0x700000000000-0x70200000d0ff window] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.048991] pci_bus 0000:00: root bus resource [bus 00-ff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.049088] pci 0000:00:00.0: [8086:1237] type 00 class 0x060000 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.050676] pci 0000:00:01.0: [8086:7000] type 00 class 0x060100 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.052303] pci 0000:00:01.1: [8086:7010] type 00 class 0x010180 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.055549] pci 0000:00:01.1: reg 0x20: [io 0xd330-0xd33f] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.056650] pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.056651] pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io 0x03f6] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.056652] pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.056653] pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io 0x0376] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.056996] pci 0000:00:01.2: [8086:7020] type 00 class 0x0c0300 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.060012] pci 0000:00:01.2: reg 0x20: [io 0xd300-0xd31f] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.061574] pci 0000:00:01.3: [8086:7113] type 00 class 0x068000 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.063502] pci 0000:00:01.3: quirk: [io 0xb000-0xb03f] claimed by PIIX4 ACPI May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.063527] pci 0000:00:01.3: quirk: [io 0xb100-0xb10f] claimed by PIIX4 SMB May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.064060] pci 0000:00:02.0: [15ad:0405] type 00 class 0x030000 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.066302] pci 0000:00:02.0: reg 0x10: [io 0xd320-0xd32f] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.067738] pci 0000:00:02.0: reg 0x14: [mem 0xc0000000-0xc0ffffff pref] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.068610] pci 0000:00:02.0: reg 0x18: [mem 0xc1460000-0xc146ffff pref] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.074206] pci 0000:00:02.0: reg 0x30: [mem 0xffff0000-0xffffffff pref] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.074336] pci 0000:00:02.0: BAR 1: assigned to efifb May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.074932] pci 0000:00:03.0: [1af4:1002] type 00 class 0x00ff00 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.075863] pci 0000:00:03.0: reg 0x10: [io 0xd280-0xd2bf] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.078230] pci 0000:00:03.0: reg 0x20: [mem 0x702000000000-0x702000003fff 64bit pref] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.080473] pci 0000:00:05.0: [1af4:1004] type 00 class 0x010000 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.082124] pci 0000:00:05.0: reg 0x10: [io 0xd240-0xd27f] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.083969] pci 0000:00:05.0: reg 0x14: [mem 0xc1472000-0xc1472fff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.085888] pci 0000:00:05.0: reg 0x20: [mem 0x702000004000-0x702000007fff 64bit pref] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.088257] pci 0000:00:07.0: [8086:2922] type 00 class 0x010601 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.096555] pci 0000:00:07.0: reg 0x20: [io 0xd2e0-0xd2ff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.098386] pci 0000:00:07.0: reg 0x24: [mem 0xc1471000-0xc1471fff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.100653] pci 0000:00:12.0: [8086:100e] type 00 class 0x020000 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.101976] pci 0000:00:12.0: reg 0x10: [mem 0xc1440000-0xc145ffff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.102874] pci 0000:00:12.0: reg 0x14: [io 0xd200-0xd23f] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.108459] pci 0000:00:12.0: reg 0x30: [mem 0xfffc0000-0xffffffff pref] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.109027] pci 0000:00:13.0: [1af4:1000] type 00 class 0x020000 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.110010] pci 0000:00:13.0: reg 0x10: [io 0xd2c0-0xd2df] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.110774] pci 0000:00:13.0: reg 0x14: [mem 0xc1470000-0xc1470fff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.112771] pci 0000:00:13.0: reg 0x20: [mem 0x702000008000-0x70200000bfff 64bit pref] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.113457] pci 0000:00:13.0: reg 0x30: [mem 0xfffc0000-0xffffffff pref] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.115061] pci 0000:00:1e.0: [1b36:0001] type 01 class 0x060400 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.116292] pci 0000:00:1e.0: reg 0x10: [mem 0x70200000d000-0x70200000d0ff 64bit] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.119240] pci 0000:00:1f.0: [1b36:0001] type 01 class 0x060400 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.120391] pci 0000:00:1f.0: reg 0x10: [mem 0x70200000c000-0x70200000c0ff 64bit] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.122964] acpiphp: Slot [0] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.123030] acpiphp: Slot [1] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.123095] acpiphp: Slot [2] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.123162] acpiphp: Slot [3-2] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.123232] acpiphp: Slot [4-2] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.123300] acpiphp: Slot [5-2] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.123368] acpiphp: Slot [6-2] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.123435] acpiphp: Slot [7-2] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.123502] acpiphp: Slot [8-2] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.123569] acpiphp: Slot [9-2] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.123638] acpiphp: Slot [10-2] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.123706] acpiphp: Slot [11-2] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.123773] acpiphp: Slot [12-2] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.123841] acpiphp: Slot [13-2] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.123908] acpiphp: Slot [14-2] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.123975] acpiphp: Slot [15-2] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.124062] acpiphp: Slot [16-2] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.124130] acpiphp: Slot [17-2] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.124197] acpiphp: Slot [18-2] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.124266] acpiphp: Slot [19-2] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.124333] acpiphp: Slot [20-2] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.124399] acpiphp: Slot [21-2] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.124466] acpiphp: Slot [22-2] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.124534] acpiphp: Slot [23-2] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.124600] acpiphp: Slot [24-2] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.124666] acpiphp: Slot [25-2] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.124759] acpiphp: Slot [26-2] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.124828] acpiphp: Slot [27-2] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.124895] acpiphp: Slot [28-2] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.124962] acpiphp: Slot [29-2] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.125026] acpiphp: Slot [30] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.125090] acpiphp: Slot [31] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.125691] pci 0000:00:1e.0: PCI bridge to [bus 01] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.125729] pci 0000:00:1e.0: bridge window [io 0xd000-0xdfff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.125766] pci 0000:00:1e.0: bridge window [mem 0xc1200000-0xc13fffff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.125839] pci 0000:00:1e.0: bridge window [mem 0x700000000000-0x700fffffffff 64bit pref] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.126725] acpiphp: Slot [0-2] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.126797] acpiphp: Slot [1-2] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.126870] acpiphp: Slot [2-2] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.126942] acpiphp: Slot [3-3] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.127015] acpiphp: Slot [4-3] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.127087] acpiphp: Slot [5-3] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.127158] acpiphp: Slot [6-3] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.127229] acpiphp: Slot [7-3] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.127303] acpiphp: Slot [8-3] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.127375] acpiphp: Slot [9-3] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.127447] acpiphp: Slot [10-3] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.127518] acpiphp: Slot [11-3] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.127604] acpiphp: Slot [12-3] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.127679] acpiphp: Slot [13-3] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.127752] acpiphp: Slot [14-3] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.127826] acpiphp: Slot [15-3] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.127896] acpiphp: Slot [16-3] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.127967] acpiphp: Slot [17-3] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.128037] acpiphp: Slot [18-3] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.128109] acpiphp: Slot [19-3] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.128200] acpiphp: Slot [20-3] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.128274] acpiphp: Slot [21-3] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.128345] acpiphp: Slot [22-3] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.128417] acpiphp: Slot [23-3] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.128490] acpiphp: Slot [24-3] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.128561] acpiphp: Slot [25-3] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.128633] acpiphp: Slot [26-3] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.128707] acpiphp: Slot [27-3] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.129020] acpiphp: Slot [28-3] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.129094] acpiphp: Slot [29-3] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.129165] acpiphp: Slot [30-2] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.129236] acpiphp: Slot [31-2] registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.129861] pci 0000:00:1f.0: PCI bridge to [bus 02] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.129901] pci 0000:00:1f.0: bridge window [io 0xc000-0xcfff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.129940] pci 0000:00:1f.0: bridge window [mem 0xc1000000-0xc11fffff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.130046] pci 0000:00:1f.0: bridge window [mem 0x701000000000-0x701fffffffff 64bit pref] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.131145] ACPI: PCI Interrupt Link [LNKA] (IRQs 5 *10 11) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.131322] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *10 11) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.131488] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 10 *11) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.131670] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 10 *11) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.131759] ACPI: PCI Interrupt Link [LNKS] (IRQs *9) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.134149] SCSI subsystem initialized May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.134175] libata version 3.00 loaded. May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.134175] pci 0000:00:02.0: vgaarb: setting as boot VGA device May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.134175] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.134175] pci 0000:00:02.0: vgaarb: bridge control possible May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.134175] vgaarb: loaded May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.134175] ACPI: bus type USB registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.134175] usbcore: registered new interface driver usbfs May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.134175] usbcore: registered new interface driver hub May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.134175] usbcore: registered new device driver usb May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.134175] EDAC MC: Ver: 3.0.0 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.136393] Registered efivars operations May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.136393] PCI: Using ACPI for IRQ routing May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.136393] PCI: pci_cache_line_size set to 64 bytes May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.136393] pci 0000:00:01.1: can't claim BAR 4 [io 0xd330-0xd33f]: address conflict with PCI Bus 0000:01 [io 0xd000-0xdfff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.136393] pci 0000:00:01.2: can't claim BAR 4 [io 0xd300-0xd31f]: address conflict with PCI Bus 0000:01 [io 0xd000-0xdfff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.136393] pci 0000:00:02.0: can't claim BAR 0 [io 0xd320-0xd32f]: address conflict with PCI Bus 0000:01 [io 0xd000-0xdfff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.136393] pci 0000:00:03.0: can't claim BAR 0 [io 0xd280-0xd2bf]: address conflict with PCI Bus 0000:01 [io 0xd000-0xdfff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.136393] pci 0000:00:05.0: can't claim BAR 0 [io 0xd240-0xd27f]: address conflict with PCI Bus 0000:01 [io 0xd000-0xdfff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.136393] pci 0000:00:07.0: can't claim BAR 4 [io 0xd2e0-0xd2ff]: address conflict with PCI Bus 0000:01 [io 0xd000-0xdfff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.136393] pci 0000:00:12.0: can't claim BAR 1 [io 0xd200-0xd23f]: address conflict with PCI Bus 0000:01 [io 0xd000-0xdfff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.136393] pci 0000:00:13.0: can't claim BAR 0 [io 0xd2c0-0xd2df]: address conflict with PCI Bus 0000:01 [io 0xd000-0xdfff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.136393] e820: reserve RAM buffer [mem 0x00806000-0x008fffff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.136393] e820: reserve RAM buffer [mem 0x00810000-0x008fffff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.136393] e820: reserve RAM buffer [mem 0x9e012018-0x9fffffff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.136393] e820: reserve RAM buffer [mem 0x9e03a018-0x9fffffff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.136393] e820: reserve RAM buffer [mem 0x9e061000-0x9fffffff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.136393] e820: reserve RAM buffer [mem 0x9e705018-0x9fffffff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.136393] e820: reserve RAM buffer [mem 0x9e71a000-0x9fffffff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.136393] e820: reserve RAM buffer [mem 0x9ee69000-0x9fffffff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.136393] e820: reserve RAM buffer [mem 0x9f8ec000-0x9fffffff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.136393] e820: reserve RAM buffer [mem 0xbfedc000-0xbfffffff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.136448] NetLabel: Initializing May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.136448] NetLabel: domain hash size = 128 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.136448] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.136460] NetLabel: unlabeled traffic allowed by default May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.136486] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.136486] hpet0: 3 comparators, 64-bit 100.000000 MHz counter May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.140100] clocksource: Switched to clocksource kvm-clock May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.148526] VFS: Disk quotas dquot_6.6.0 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.148539] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.149010] AppArmor: AppArmor Filesystem Enabled May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.149038] pnp: PnP ACPI init May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.149107] pnp 00:00: Plug and Play ACPI device, IDs PNP0303 (active) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.149122] pnp 00:01: Plug and Play ACPI device, IDs PNP0f13 (active) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.149129] pnp 00:02: [dma 2] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.149137] pnp 00:02: Plug and Play ACPI device, IDs PNP0700 (active) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.149148] pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.149551] pnp: PnP ACPI: found 4 devices May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.162165] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.162171] pci 0000:00:02.0: can't claim BAR 6 [mem 0xffff0000-0xffffffff pref]: no compatible bridge window May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.162173] pci 0000:00:12.0: can't claim BAR 6 [mem 0xfffc0000-0xffffffff pref]: no compatible bridge window May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.162174] pci 0000:00:13.0: can't claim BAR 6 [mem 0xfffc0000-0xffffffff pref]: no compatible bridge window May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.162184] pci 0000:00:12.0: BAR 6: assigned [mem 0xc1400000-0xc143ffff pref] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.162185] pci 0000:00:13.0: BAR 6: assigned [mem 0xc1480000-0xc14bffff pref] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.162187] pci 0000:00:02.0: BAR 6: assigned [mem 0xc14c0000-0xc14cffff pref] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.162188] pci 0000:00:03.0: BAR 0: assigned [io 0x1000-0x103f] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.162725] pci 0000:00:05.0: BAR 0: assigned [io 0x1040-0x107f] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.163057] pci 0000:00:12.0: BAR 1: assigned [io 0x1080-0x10bf] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.163404] pci 0000:00:01.2: BAR 4: assigned [io 0x10c0-0x10df] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.163702] pci 0000:00:07.0: BAR 4: assigned [io 0x10e0-0x10ff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.164078] pci 0000:00:13.0: BAR 0: assigned [io 0x1400-0x141f] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.164397] pci 0000:00:01.1: BAR 4: assigned [io 0x1420-0x142f] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.166412] pci 0000:00:02.0: BAR 0: assigned [io 0x1430-0x143f] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.166848] pci 0000:00:1e.0: PCI bridge to [bus 01] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.166873] pci 0000:00:1e.0: bridge window [io 0xd000-0xdfff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.167455] pci 0000:00:1e.0: bridge window [mem 0xc1200000-0xc13fffff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.167819] pci 0000:00:1e.0: bridge window [mem 0x700000000000-0x700fffffffff 64bit pref] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.168689] pci 0000:00:1f.0: PCI bridge to [bus 02] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.168731] pci 0000:00:1f.0: bridge window [io 0xc000-0xcfff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.169975] pci 0000:00:1f.0: bridge window [mem 0xc1000000-0xc11fffff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.170233] pci 0000:00:1f.0: bridge window [mem 0x701000000000-0x701fffffffff 64bit pref] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.170807] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.170808] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.170809] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.170810] pci_bus 0000:00: resource 7 [mem 0xc0000000-0xfebfffff window] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.170811] pci_bus 0000:00: resource 8 [mem 0x700000000000-0x70200000d0ff window] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.170813] pci_bus 0000:01: resource 0 [io 0xd000-0xdfff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.170813] pci_bus 0000:01: resource 1 [mem 0xc1200000-0xc13fffff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.170814] pci_bus 0000:01: resource 2 [mem 0x700000000000-0x700fffffffff 64bit pref] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.170815] pci_bus 0000:02: resource 0 [io 0xc000-0xcfff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.170816] pci_bus 0000:02: resource 1 [mem 0xc1000000-0xc11fffff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.170816] pci_bus 0000:02: resource 2 [mem 0x701000000000-0x701fffffffff 64bit pref] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.170913] NET: Registered protocol family 2 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.171684] IP idents hash table entries: 262144 (order: 9, 2097152 bytes) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.172982] TCP established hash table entries: 131072 (order: 8, 1048576 bytes) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.173506] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.173554] TCP: Hash tables configured (established 131072 bind 65536) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.173578] UDP hash table entries: 8192 (order: 6, 262144 bytes) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.173599] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.173638] NET: Registered protocol family 1 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.173648] pci 0000:00:00.0: Limiting direct PCI/PCI transfers May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.173712] pci 0000:00:01.0: PIIX3: Enabling Passive Release May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.173763] pci 0000:00:01.0: Activating ISA DMA hang workarounds May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.190273] ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 11 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.206019] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.206206] PCI: CLS 0 bytes, default 64 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.206247] Unpacking initramfs... May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.792659] Freeing initrd memory: 62368K May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.792691] PCI-DMA: Using software bounce buffering for IO (SWIOTLB) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.792693] software IO TLB: mapped [mem 0x94177000-0x98177000] (64MB) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.792735] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x325b186289d, max_idle_ns: 440795326624 ns May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.792785] Scanning for low memory corruption every 60 seconds May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.793924] Initialise system trusted keyrings May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.793941] Key type blacklist registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.794025] workingset: timestamp_bits=36 max_order=22 bucket_order=0 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.794639] zbud: loaded May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.795036] squashfs: version 4.0 (2009/01/31) Phillip Lougher May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.795278] fuse init (API version 7.26) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.801325] Key type asymmetric registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.801327] Asymmetric key parser 'x509' registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.801358] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.801459] io scheduler noop registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.801460] io scheduler deadline registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.801477] io scheduler cfq registered (default) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.801746] efifb: probing for efifb May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.801756] efifb: framebuffer at 0xc0000000, using 4000k, total 4000k May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.801757] efifb: mode is 1280x800x32, linelength=5120, pages=1 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.801757] efifb: scrolling: redraw May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.801758] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.801900] Console: switching to colour frame buffer device 160x50 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.801913] fb0: EFI VGA frame buffer device May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.801996] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.802064] ACPI: Power Button [PWRF] May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.819003] ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 10 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.836276] ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 10 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.855486] virtio_balloon virtio0: virtio: device uses modern interface but does not have VIRTIO_F_VERSION_1 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.855515] virtio_balloon: probe of virtio0 failed with error -22 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.855815] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.858659] Linux agpgart interface v0.103 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.860552] loop: module loaded May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.860624] ata_piix 0000:00:01.1: version 2.13 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.862145] scsi host0: ata_piix May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.862386] scsi host1: ata_piix May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.862404] ata1: PATA max MWDMA2 cmd 0x1f0 ctl 0x3f6 bmdma 0x1420 irq 14 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.862405] ata2: PATA max MWDMA2 cmd 0x170 ctl 0x376 bmdma 0x1428 irq 15 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.862473] tun: Universal TUN/TAP device driver, 1.6 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.862562] PPP generic driver version 2.4.2 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.862653] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.862656] ehci-pci: EHCI PCI platform driver May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.862664] ehci-platform: EHCI generic platform driver May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.862669] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.862672] ohci-pci: OHCI PCI platform driver May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.862678] ata1: port disabled--ignoring May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.862680] ohci-platform: OHCI generic platform driver May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.862684] uhci_hcd: USB Universal Host Controller Interface driver May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.862931] ata2: port disabled--ignoring May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.879419] uhci_hcd 0000:00:01.2: UHCI Host Controller May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.879425] uhci_hcd 0000:00:01.2: new USB bus registered, assigned bus number 1 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.879462] uhci_hcd 0000:00:01.2: detected 2 ports May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.879696] uhci_hcd 0000:00:01.2: irq 11, io base 0x000010c0 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.879844] usb usb1: New USB device found, idVendor=1d6b, idProduct=0001 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.879845] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.879846] usb usb1: Product: UHCI Host Controller May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.879847] usb usb1: Manufacturer: Linux 4.15.0-211-generic uhci_hcd May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.879847] usb usb1: SerialNumber: 0000:00:01.2 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.879956] hub 1-0:1.0: USB hub found May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.879960] hub 1-0:1.0: 2 ports detected May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.880175] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.881830] serio: i8042 KBD port at 0x60,0x64 irq 1 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.881834] serio: i8042 AUX port at 0x60,0x64 irq 12 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.882002] mousedev: PS/2 mouse device common for all mice May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.882352] rtc_cmos 00:03: RTC can wake from S4 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.883271] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.883518] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.883723] rtc_cmos 00:03: alarms up to one day, y3k, 242 bytes nvram, hpet irqs May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.883727] i2c /dev entries driver May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.883765] device-mapper: uevent: version 1.0.3 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.883823] device-mapper: ioctl: 4.37.0-ioctl (2017-09-20) initialised: dm-devel@redhat.com May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.884209] ledtrig-cpu: registered to indicate activity on CPUs May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.884215] EFI Variables Facility v0.08 2004-May-17 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.886255] NET: Registered protocol family 10 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.890351] Segment Routing with IPv6 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.890374] NET: Registered protocol family 17 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.890507] Key type dns_resolver registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.891101] mce: Using 10 MCE banks May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.891112] RAS: Correctable Errors collector initialized. May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.891377] registered taskstats version 1 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.891394] Loading compiled-in X.509 certificates May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.893414] Loaded X.509 cert 'Build time autogenerated kernel key: 6893c09f03d31bc6e9f3dd5a3a18faae0d596a39' May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.893841] Loaded X.509 cert 'Canonical Ltd. Live Patch Signing: 14df34d1a87cf37625abec039ef2bf521249b969' May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.894241] Loaded X.509 cert 'Canonical Ltd. Kernel Module Signing: 88f752e560a1e0737e31163a466ad7b70a850c19' May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.894242] blacklist: Loading compiled-in revocation X.509 certificates May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.894256] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing: 61482aa2830d0ab2ad5af10b7250da9033ddcef0' May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.894266] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2017): 242ade75ac4a15e50d50c84b0d45ff3eae707a03' May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.894276] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (ESM 2018): 365188c1d374d6b07c3c8f240f8ef722433d6a8b' May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.894287] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2019): c0746fd6c5da3ae827864651ad66ae47fe24b3e8' May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.894297] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v1): a8d54bbb3825cfb94fa13c9f8a594a195c107b8d' May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.894306] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v2): 4cf046892d6fd3c9a5b03f98d845f90851dc6a8c' May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.894316] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v3): 100437bb6de6e469b581e61cd66bce3ef4ed53af' May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.894326] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (Ubuntu Core 2019): c1d57b8f6b743f23ee41f4f7ee292f06eecadfb9' May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.894424] Couldn't get size: 0x800000000000000e May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.894426] MODSIGN: Couldn't get UEFI db list May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.894462] Couldn't get size: 0x800000000000000e May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.894463] MODSIGN: Couldn't get UEFI dbx list May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.896160] Loaded UEFI:MokListRT (MOKvar table) cert 'Canonical Ltd. Master Certificate Authority: ad91990bc22ab1f517048c23b6655a268e345a63' linked to secondary sys keyring May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.896178] zswap: loaded using pool lzo/zbud May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.899852] Key type big_key registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.899855] Key type trusted registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.902059] Key type encrypted registered May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.902062] AppArmor: AppArmor sha1 policy hashing enabled May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.902064] ima: No TPM chip found, activating TPM-bypass! (rc=-19) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.902068] ima: Allocated hash algorithm: sha1 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.902081] evm: HMAC attrs: 0x1 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.904718] Magic number: 7:504:26 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.904782] memory memory66: hash matches May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.905043] rtc_cmos 00:03: setting system clock to 2023-05-17 12:02:44 UTC (1684324964) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.905219] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.905220] EDD information not available. May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.120053] usb 1-1: new full-speed USB device number 2 using uhci_hcd May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.314569] usb 1-1: New USB device found, idVendor=0627, idProduct=0001 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.314571] usb 1-1: New USB device strings: Mfr=1, Product=3, SerialNumber=10 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.314573] usb 1-1: Product: QEMU USB Tablet May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.314573] usb 1-1: Manufacturer: QEMU May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.314574] usb 1-1: SerialNumber: 28754-0000:00:01.2-1 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.348049] Freeing unused kernel image memory: 2480K May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.372053] Write protecting the kernel read-only data: 20480k May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.373828] Freeing unused kernel image memory: 2008K May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.374161] Freeing unused kernel image memory: 1820K May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.380180] x86/mm: Checked W+X mappings: passed, no W+X pages found. May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.433512] piix4_smbus 0000:00:01.3: SMBus Host Controller at 0xb100, revision 0 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.434446] virtio_scsi virtio1: virtio: device uses modern interface but does not have VIRTIO_F_VERSION_1 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.434494] virtio_scsi: probe of virtio1 failed with error -22 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.437972] virtio_net virtio2: virtio: device uses modern interface but does not have VIRTIO_F_VERSION_1 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.438010] virtio_net: probe of virtio2 failed with error -22 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.439543] e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.439544] e1000: Copyright (c) 1999-2006 Intel Corporation. May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.439554] ahci 0000:00:07.0: version 3.0 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.440134] hidraw: raw HID events driver (C) Jiri Kosina May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.444365] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input4 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.445070] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input3 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.445700] usbcore: registered new interface driver usbhid May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.445700] usbhid: USB HID core driver May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.453342] FDC 0 is a S82078B May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.460513] input: QEMU QEMU USB Tablet as /devices/pci0000:00/0000:00:01.2/usb1/1-1/1-1:1.0/0003:0627:0001.0001/input/input5 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.460771] hid-generic 0003:0627:0001.0001: input,hidraw0: USB HID v0.01 Mouse [QEMU QEMU USB Tablet] on usb-0000:00:01.2-1/input0 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.466570] ahci 0000:00:07.0: AHCI 0001.0000 32 slots 6 ports 1.5 Gbps 0x3f impl SATA mode May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.466573] ahci 0000:00:07.0: flags: 64bit ncq only May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.468739] scsi host2: ahci May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.471776] scsi host3: ahci May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.471956] scsi host4: ahci May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.472208] scsi host5: ahci May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.472363] scsi host6: ahci May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.472576] scsi host7: ahci May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.472636] ata3: SATA max UDMA/133 abar m4096@0xc1471000 port 0xc1471100 irq 24 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.472651] ata4: SATA max UDMA/133 abar m4096@0xc1471000 port 0xc1471180 irq 24 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.472666] ata5: SATA max UDMA/133 abar m4096@0xc1471000 port 0xc1471200 irq 24 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.472681] ata6: SATA max UDMA/133 abar m4096@0xc1471000 port 0xc1471280 irq 24 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.472696] ata7: SATA max UDMA/133 abar m4096@0xc1471000 port 0xc1471300 irq 24 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.472711] ata8: SATA max UDMA/133 abar m4096@0xc1471000 port 0xc1471380 irq 24 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.489703] ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 11 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.787801] ata4: SATA link down (SStatus 0 SControl 300) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.788277] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.788450] ata3.00: ATA-7: QEMU HARDDISK, 2.5+, max UDMA/100 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.788451] ata3.00: 20971520 sectors, multi 16: LBA48 NCQ (depth 31/32) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.788453] ata3.00: applying bridge limits May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.788727] ata3.00: configured for UDMA/100 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.788867] scsi 2:0:0:0: Direct-Access ATA QEMU HARDDISK 2.5+ PQ: 0 ANSI: 5 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.789233] sd 2:0:0:0: Attached scsi generic sg0 type 0 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.789350] sd 2:0:0:0: [sda] 20971520 512-byte logical blocks: (10.7 GB/10.0 GiB) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.789356] sd 2:0:0:0: [sda] Write Protect is off May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.789357] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.789365] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.791966] ata7: SATA link down (SStatus 0 SControl 300) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.792431] ata5: SATA link down (SStatus 0 SControl 300) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.792839] ata8: SATA link down (SStatus 0 SControl 300) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.793356] ata6: SATA link down (SStatus 0 SControl 300) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.794739] sda: sda1 sda2 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.795029] sd 2:0:0:0: [sda] Attached SCSI disk May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.924773] e1000 0000:00:12.0 eth0: (PCI:33MHz:32-bit) 52:fb:8e:e2:b6:15 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.924778] e1000 0000:00:12.0 eth0: Intel(R) PRO/1000 Network Connection May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.925409] [drm] DMA map mode: Using physical TTM page addresses. May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.925563] [drm] Capabilities: May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.925563] [drm] Rect copy. May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.925563] [drm] Cursor. May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.925564] [drm] Cursor bypass. May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.925564] [drm] Cursor bypass 2. May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.925565] [drm] Maximum display memory size is 16384 kiB May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.925566] [drm] VRAM at 0xc0000000 size is 16384 kiB May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.925566] [drm] MMIO at 0xc1460000 size is 64 kiB May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.925567] [drm] global init. May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.925668] [TTM] Zone kernel: Available graphics memory: 5112554 kiB May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.925669] [TTM] Zone dma32: Available graphics memory: 2097152 kiB May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.925669] [TTM] Initializing pool allocator May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.925673] [TTM] Initializing DMA pool allocator May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.925698] [drm:vmw_driver_load [vmwgfx]] *ERROR* Hardware has no pitchlock May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.925703] [TTM] Finalizing pool allocator May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.925705] [TTM] Finalizing DMA pool allocator May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.925804] [TTM] Zone kernel: Used memory at exit: 0 kiB May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.925805] [TTM] Zone dma32: Used memory at exit: 0 kiB May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.926398] vmwgfx: probe of 0000:00:02.0 failed with error -38 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.927457] e1000 0000:00:12.0 ens18: renamed from eth0 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 33.208754] EXT4-fs (dm-0): mounted filesystem with ordered data mode. Opts: (null) May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 33.464276] ip_tables: (C) 2000-2006 Netfilter Core Team May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 33.835445] EXT4-fs (dm-0): re-mounted. Opts: errors=remount-ro May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 33.864783] lp: driver loaded but no devices found May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 33.919099] ppdev: user-space parallel port driver May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 34.323639] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 34.378984] AVX2 version of gcm_enc/dec engaged. May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 34.378985] AES CTR mode by8 optimization enabled May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 34.674301] kvm: Nested Virtualization enabled May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 34.674321] kvm: Nested Paging enabled May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 34.674322] SVM: Virtual VMLOAD VMSAVE supported May 17 14:03:20 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 34.679275] Decoding supported only on Scalable MCA processors. May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] Linux version 4.15.0-211-generic (buildd@lcy02-amd64-047) (gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04)) #222-Ubuntu SMP Tue Apr 18 18:55:06 UTC 2023 (Ubuntu 4.15.0-211.222-generic 4.15.18) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.15.0-211-generic root=/dev/mapper/ubuntu--vg-root ro quiet splash vt.handoff=1 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] KERNEL supported cpus: May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] Intel GenuineIntel May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] AMD AuthenticAMD May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] Centaur CentaurHauls May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers' May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers' May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers' May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format. May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] e820: BIOS-provided physical RAM map: May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000000805fff] usable May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] BIOS-e820: [mem 0x0000000000806000-0x0000000000807fff] ACPI NVS May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] BIOS-e820: [mem 0x0000000000808000-0x000000000080ffff] usable May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] BIOS-e820: [mem 0x0000000000810000-0x00000000008fffff] ACPI NVS May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] BIOS-e820: [mem 0x0000000000900000-0x000000009ee67fff] usable May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] BIOS-e820: [mem 0x000000009ee68000-0x000000009ef69fff] reserved May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] BIOS-e820: [mem 0x000000009ef6a000-0x000000009f8ebfff] usable May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] BIOS-e820: [mem 0x000000009f8ec000-0x000000009fb6bfff] reserved May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] BIOS-e820: [mem 0x000000009fb6c000-0x000000009fb7dfff] ACPI data May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] BIOS-e820: [mem 0x000000009fb7e000-0x000000009fbfdfff] ACPI NVS May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] BIOS-e820: [mem 0x000000009fbfe000-0x00000000bfedbfff] usable May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] BIOS-e820: [mem 0x00000000bfedc000-0x00000000bff5ffff] reserved May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] BIOS-e820: [mem 0x00000000bff60000-0x00000000bfffffff] ACPI NVS May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] BIOS-e820: [mem 0x00000000ffc00000-0x00000000ffffffff] reserved May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x00000002bfffffff] usable May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] BIOS-e820: [mem 0x000000fd00000000-0x000000ffffffffff] reserved May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] NX (Execute Disable) protection: active May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] e820: update [mem 0x9e705018-0x9e70ec57] usable ==> usable May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] e820: update [mem 0x9e705018-0x9e70ec57] usable ==> usable May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] e820: update [mem 0x9e03d018-0x9e063e57] usable ==> usable May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] e820: update [mem 0x9e03d018-0x9e063e57] usable ==> usable May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] e820: update [mem 0x9e015018-0x9e03c457] usable ==> usable May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] e820: update [mem 0x9e015018-0x9e03c457] usable ==> usable May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] extended physical RAM map: May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000009ffff] usable May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] reserve setup_data: [mem 0x0000000000100000-0x0000000000805fff] usable May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] reserve setup_data: [mem 0x0000000000806000-0x0000000000807fff] ACPI NVS May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] reserve setup_data: [mem 0x0000000000808000-0x000000000080ffff] usable May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] reserve setup_data: [mem 0x0000000000810000-0x00000000008fffff] ACPI NVS May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] reserve setup_data: [mem 0x0000000000900000-0x000000009e015017] usable May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] reserve setup_data: [mem 0x000000009e015018-0x000000009e03c457] usable May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] reserve setup_data: [mem 0x000000009e03c458-0x000000009e03d017] usable May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] reserve setup_data: [mem 0x000000009e03d018-0x000000009e063e57] usable May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] reserve setup_data: [mem 0x000000009e063e58-0x000000009e705017] usable May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] reserve setup_data: [mem 0x000000009e705018-0x000000009e70ec57] usable May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] reserve setup_data: [mem 0x000000009e70ec58-0x000000009ee67fff] usable May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] reserve setup_data: [mem 0x000000009ee68000-0x000000009ef69fff] reserved May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] reserve setup_data: [mem 0x000000009ef6a000-0x000000009f8ebfff] usable May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] reserve setup_data: [mem 0x000000009f8ec000-0x000000009fb6bfff] reserved May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] reserve setup_data: [mem 0x000000009fb6c000-0x000000009fb7dfff] ACPI data May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] reserve setup_data: [mem 0x000000009fb7e000-0x000000009fbfdfff] ACPI NVS May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] reserve setup_data: [mem 0x000000009fbfe000-0x00000000bfedbfff] usable May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] reserve setup_data: [mem 0x00000000bfedc000-0x00000000bff5ffff] reserved May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] reserve setup_data: [mem 0x00000000bff60000-0x00000000bfffffff] ACPI NVS May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] reserve setup_data: [mem 0x00000000feffc000-0x00000000feffffff] reserved May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] reserve setup_data: [mem 0x00000000ffc00000-0x00000000ffffffff] reserved May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] reserve setup_data: [mem 0x0000000100000000-0x00000002bfffffff] usable May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] reserve setup_data: [mem 0x000000fd00000000-0x000000ffffffffff] reserved May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] efi: EFI v2.70 by EFI Development Kit II / OVMF May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] efi: SMBIOS=0x9f920000 ACPI=0x9fb7d000 ACPI 2.0=0x9fb7d014 MEMATTR=0x9e71f298 MOKvar=0x9e71a000 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] secureboot: Secure boot disabled May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] SMBIOS 2.8 present. May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] DMI: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 3.20230228-2 04/04/2023 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] Hypervisor detected: KVM May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] e820: last_pfn = 0x2c0000 max_arch_pfn = 0x400000000 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] MTRR default type: write-back May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] MTRR fixed ranges enabled: May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] 00000-9FFFF write-back May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] A0000-FFFFF uncachable May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] MTRR variable ranges enabled: May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] 0 base 0000C0000000 mask FFFFC0000000 uncachable May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] 1 base 000800000000 mask FFF800000000 uncachable May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] 2 disabled May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] 3 disabled May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] 4 disabled May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] 5 disabled May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] 6 disabled May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] 7 disabled May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] e820: last_pfn = 0xbfedc max_arch_pfn = 0x400000000 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] e820: update [mem 0x9e71a000-0x9e71afff] usable ==> reserved May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] Scanning 1 areas for low memory corruption May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] Using GB pages for direct mapping May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] RAMDISK: [mem 0x98177000-0x9be5efff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: Early table checksum verification disabled May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: RSDP 0x000000009FB7D014 000024 (v02 BOCHS ) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: XSDT 0x000000009FB7C0E8 000054 (v01 BOCHS BXPC 00000001 01000013) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: FACP 0x000000009FB77000 000074 (v01 BOCHS BXPC 00000001 BXPC 00000001) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: DSDT 0x000000009FB78000 003180 (v01 BOCHS BXPC 00000001 BXPC 00000001) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: FACS 0x000000009FBDB000 000040 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: APIC 0x000000009FB76000 000090 (v01 BOCHS BXPC 00000001 BXPC 00000001) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: SSDT 0x000000009FB75000 0000CA (v01 BOCHS VMGENID 00000001 BXPC 00000001) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: HPET 0x000000009FB74000 000038 (v01 BOCHS BXPC 00000001 BXPC 00000001) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: WAET 0x000000009FB73000 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: BGRT 0x000000009FB72000 000038 (v01 INTEL EDK2 00000002 01000013) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: Reserving FACP table memory at [mem 0x9fb77000-0x9fb77073] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: Reserving DSDT table memory at [mem 0x9fb78000-0x9fb7b17f] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: Reserving FACS table memory at [mem 0x9fbdb000-0x9fbdb03f] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: Reserving APIC table memory at [mem 0x9fb76000-0x9fb7608f] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: Reserving SSDT table memory at [mem 0x9fb75000-0x9fb750c9] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: Reserving HPET table memory at [mem 0x9fb74000-0x9fb74037] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: Reserving WAET table memory at [mem 0x9fb73000-0x9fb73027] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: Reserving BGRT table memory at [mem 0x9fb72000-0x9fb72037] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: Local APIC address 0xfee00000 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] No NUMA configuration found May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] Faking a node at [mem 0x0000000000000000-0x00000002bfffffff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] NODE_DATA(0) allocated [mem 0x2bffd5000-0x2bfffffff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] kvm-clock: cpu 0, msr 2:bff54001, primary cpu clock May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] kvm-clock: using sched offset of 18497359233 cycles May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] Zone ranges: May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] DMA [mem 0x0000000000001000-0x0000000000ffffff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] DMA32 [mem 0x0000000001000000-0x00000000ffffffff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] Normal [mem 0x0000000100000000-0x00000002bfffffff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] Device empty May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] Movable zone start for each node May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] Early memory node ranges May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] node 0: [mem 0x0000000000001000-0x000000000009ffff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] node 0: [mem 0x0000000000100000-0x0000000000805fff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] node 0: [mem 0x0000000000808000-0x000000000080ffff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] node 0: [mem 0x0000000000900000-0x000000009ee67fff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] node 0: [mem 0x000000009ef6a000-0x000000009f8ebfff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] node 0: [mem 0x000000009fbfe000-0x00000000bfedbfff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] node 0: [mem 0x0000000100000000-0x00000002bfffffff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] Reserved but unavailable: 108 pages May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x00000002bfffffff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] On node 0 totalpages: 2619765 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] DMA zone: 59 pages used for memmap May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] DMA zone: 1817 pages reserved May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] DMA zone: 3757 pages, LIFO batch:0 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] DMA32 zone: 12204 pages used for memmap May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] DMA32 zone: 781000 pages, LIFO batch:31 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] Normal zone: 28672 pages used for memmap May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] Normal zone: 1835008 pages, LIFO batch:31 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: PM-Timer IO Port: 0xb008 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: Local APIC address 0xfee00000 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1]) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: IRQ0 used by override. May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: IRQ5 used by override. May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: IRQ9 used by override. May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: IRQ10 used by override. May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: IRQ11 used by override. May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] Using ACPI (MADT) for SMP configuration information May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] e820: update [mem 0x9e064000-0x9e087fff] usable ==> reserved May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] TSC deadline timer available May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000fffff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x00806000-0x00807fff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x00810000-0x008fffff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x9e015000-0x9e015fff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x9e03c000-0x9e03cfff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x9e03d000-0x9e03dfff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x9e063000-0x9e063fff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x9e064000-0x9e087fff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x9e705000-0x9e705fff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x9e70e000-0x9e70efff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x9e71a000-0x9e71afff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x9ee68000-0x9ef69fff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x9f8ec000-0x9fb6bfff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x9fb6c000-0x9fb7dfff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x9fb7e000-0x9fbfdfff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0xbfedc000-0xbff5ffff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0xbff60000-0xbfffffff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0xc0000000-0xfeffbfff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0xfeffc000-0xfeffffff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0xff000000-0xffbfffff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0xffc00000-0xffffffff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] e820: [mem 0xc0000000-0xfeffbfff] available for PCI devices May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] Booting paravirtualized kernel on KVM May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] percpu: Embedded 50 pages/cpu s167936 r8192 d28672 u524288 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] pcpu-alloc: s167936 r8192 d28672 u524288 alloc=1*2097152 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] pcpu-alloc: [0] 0 1 2 3 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] KVM setup async PF for cpu 0 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] kvm-stealtime: cpu 0, msr 2bfc28040 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] PV qspinlock hash table entries: 256 (order: 0, 4096 bytes) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 2577013 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] Policy zone: Normal May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.15.0-211-generic root=/dev/mapper/ubuntu--vg-root ro quiet splash vt.handoff=1 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing! May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] Memory: 9592476K/10479060K available (12300K kernel code, 2477K rwdata, 4324K rodata, 2480K init, 2720K bss, 886584K reserved, 0K cma-reserved) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.000000] ftrace: allocating 39508 entries in 155 pages May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.004000] Hierarchical RCU implementation. May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.004000] RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=4. May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.004000] Tasks RCU enabled. May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.004000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.004000] NR_IRQS: 524544, nr_irqs: 456, preallocated irqs: 16 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.004000] random: crng init done May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.004000] vt handoff: transparent VT on vt#1 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.004000] Console: colour dummy device 80x25 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.004000] console [tty0] enabled May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.004000] ACPI: Core revision 20170831 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.004000] ACPI: 2 ACPI AML tables successfully acquired and loaded May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.004000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604467 ns May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.004000] hpet clockevent registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.004012] APIC: Switch to symmetric I/O mode setup May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.004746] x2apic enabled May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.005475] Switched APIC routing to physical x2apic. May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.008000] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.008000] tsc: Detected 3493.436 MHz processor May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.008000] tsc: Marking TSC unstable due to TSCs unsynchronized May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.008000] Calibrating delay loop (skipped) preset value.. 6986.87 BogoMIPS (lpj=13973744) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.008000] pid_max: default: 32768 minimum: 301 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.010229] Security Framework initialized May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.010230] Yama: becoming mindful. May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.010247] AppArmor: AppArmor initialized May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.014372] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.016765] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.016797] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.017204] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.017912] Last level iTLB entries: 4KB 512, 2MB 255, 4MB 127 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.017913] Last level dTLB entries: 4KB 512, 2MB 255, 4MB 127, 1GB 0 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.017921] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.017922] Spectre V2 : Mitigation: Retpolines May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.017922] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.017923] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.017923] RETBleed: Vulnerable May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.017931] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.017932] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.026625] Freeing SMP alternatives memory: 36K May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.033786] smpboot: CPU0: AMD Ryzen Threadripper 2920X 12-Core Processor (family: 0x17, model: 0x8, stepping: 0x2) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.033851] Performance Events: Fam17h core perfctr, AMD PMU driver. May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.033911] ... version: 0 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.033911] ... bit width: 48 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.033912] ... generic registers: 6 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.033912] ... value mask: 0000ffffffffffff May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.033912] ... max period: 00007fffffffffff May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.033913] ... fixed-purpose events: 0 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.033913] ... event mask: 000000000000003f May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.034229] Hierarchical SRCU implementation. May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.034714] smp: Bringing up secondary CPUs ... May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.034849] x86: Booting SMP configuration: May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.034850] .... node #0, CPUs: #1 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.004000] kvm-clock: cpu 1, msr 2:bff54041, secondary cpu clock May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.036000] KVM setup async PF for cpu 1 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.036000] kvm-stealtime: cpu 1, msr 2bfca8040 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.036000] #2 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.004000] kvm-clock: cpu 2, msr 2:bff54081, secondary cpu clock May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.036218] KVM setup async PF for cpu 2 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.036218] kvm-stealtime: cpu 2, msr 2bfd28040 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.036218] #3 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.004000] kvm-clock: cpu 3, msr 2:bff540c1, secondary cpu clock May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.037193] KVM setup async PF for cpu 3 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.037193] kvm-stealtime: cpu 3, msr 2bfda8040 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.037193] smp: Brought up 1 node, 4 CPUs May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.037193] smpboot: Max logical packages: 2 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.037193] smpboot: Total of 4 processors activated (27947.48 BogoMIPS) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.037193] devtmpfs: initialized May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.037193] x86/mm: Memory block size: 128MB May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.041754] evm: security.selinux May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.041754] evm: security.SMACK64 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.041755] evm: security.SMACK64EXEC May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.041755] evm: security.SMACK64TRANSMUTE May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.041756] evm: security.SMACK64MMAP May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.041756] evm: security.apparmor May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.041757] evm: security.ima May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.041757] evm: security.capability May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.041789] PM: Registering ACPI NVS region [mem 0x00806000-0x00807fff] (8192 bytes) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.041789] PM: Registering ACPI NVS region [mem 0x00810000-0x008fffff] (983040 bytes) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.041789] PM: Registering ACPI NVS region [mem 0x9fb7e000-0x9fbfdfff] (524288 bytes) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.041789] PM: Registering ACPI NVS region [mem 0xbff60000-0xbfffffff] (655360 bytes) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.041789] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.041789] futex hash table entries: 1024 (order: 4, 65536 bytes) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.041789] pinctrl core: initialized pinctrl subsystem May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.041789] RTC time: 11:55:46, date: 05/17/23 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.041789] NET: Registered protocol family 16 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.041789] audit: initializing netlink subsys (disabled) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.041789] audit: type=2000 audit(1684324546.752:1): state=initialized audit_enabled=0 res=1 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.044021] cpuidle: using governor ladder May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.044038] cpuidle: using governor menu May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.045711] ACPI: bus type PCI registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.045711] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.045711] PCI: Using configuration type 1 for base access May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.045711] PCI: Using configuration type 1 for extended access May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.048072] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.048072] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.048108] ACPI: Added _OSI(Module Device) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.048108] ACPI: Added _OSI(Processor Device) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.048109] ACPI: Added _OSI(3.0 _SCP Extensions) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.048109] ACPI: Added _OSI(Processor Aggregator Device) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.048110] ACPI: Added _OSI(Linux-Dell-Video) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.048111] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.048111] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.049302] ACPI: Interpreter enabled May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.049313] ACPI: (supports S0 S3 S4 S5) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.049314] ACPI: Using IOAPIC for interrupt routing May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.049326] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.049671] ACPI: Enabled 3 GPEs in block 00 to 0F May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.052200] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.052204] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.052207] acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.052520] acpiphp: Slot [3] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.052596] acpiphp: Slot [4] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.052673] acpiphp: Slot [5] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.052749] acpiphp: Slot [6] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.052832] acpiphp: Slot [7] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.052909] acpiphp: Slot [8] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.052989] acpiphp: Slot [9] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.053065] acpiphp: Slot [10] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.053139] acpiphp: Slot [11] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.053215] acpiphp: Slot [12] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.053289] acpiphp: Slot [13] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.053364] acpiphp: Slot [14] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.053441] acpiphp: Slot [15] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.053517] acpiphp: Slot [16] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.053591] acpiphp: Slot [17] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.053669] acpiphp: Slot [18] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.053744] acpiphp: Slot [19] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.053818] acpiphp: Slot [20] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.053893] acpiphp: Slot [21] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.053967] acpiphp: Slot [22] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.054044] acpiphp: Slot [23] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.054118] acpiphp: Slot [24] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.054193] acpiphp: Slot [25] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.054268] acpiphp: Slot [26] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.054344] acpiphp: Slot [27] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.054419] acpiphp: Slot [28] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.054494] acpiphp: Slot [29] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.054575] PCI host bridge to bus 0000:00 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.054576] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.054577] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.054578] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.054578] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff window] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.054579] pci_bus 0000:00: root bus resource [mem 0x800000000-0x87fffffff window] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.054580] pci_bus 0000:00: root bus resource [bus 00-ff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.054674] pci 0000:00:00.0: [8086:1237] type 00 class 0x060000 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.056239] pci 0000:00:01.0: [8086:7000] type 00 class 0x060100 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.057836] pci 0000:00:01.1: [8086:7010] type 00 class 0x010180 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.060502] pci 0000:00:01.1: reg 0x20: [io 0xd330-0xd33f] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.061522] pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.061523] pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io 0x03f6] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.061523] pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.061524] pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io 0x0376] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.061832] pci 0000:00:01.2: [8086:7020] type 00 class 0x0c0300 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.064735] pci 0000:00:01.2: reg 0x20: [io 0xd300-0xd31f] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.066065] pci 0000:00:01.3: [8086:7113] type 00 class 0x068000 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.067365] pci 0000:00:01.3: quirk: [io 0xb000-0xb03f] claimed by PIIX4 ACPI May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.067388] pci 0000:00:01.3: quirk: [io 0xb100-0xb10f] claimed by PIIX4 SMB May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.067906] pci 0000:00:02.0: [15ad:0405] type 00 class 0x030000 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.071709] pci 0000:00:02.0: reg 0x10: [io 0xd320-0xd32f] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.072610] pci 0000:00:02.0: reg 0x14: [mem 0xc0000000-0xc0ffffff pref] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.074420] pci 0000:00:02.0: reg 0x18: [mem 0xc1460000-0xc146ffff pref] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.085347] pci 0000:00:02.0: reg 0x30: [mem 0xffff0000-0xffffffff pref] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.085512] pci 0000:00:02.0: BAR 1: assigned to efifb May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.086092] pci 0000:00:03.0: [1af4:1002] type 00 class 0x00ff00 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.087005] pci 0000:00:03.0: reg 0x10: [io 0xd280-0xd2bf] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.089346] pci 0000:00:03.0: reg 0x20: [mem 0x800000000-0x800003fff 64bit pref] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.091457] pci 0000:00:05.0: [1af4:1004] type 00 class 0x010000 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.092442] pci 0000:00:05.0: reg 0x10: [io 0xd240-0xd27f] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.093466] pci 0000:00:05.0: reg 0x14: [mem 0xc1472000-0xc1472fff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.097187] pci 0000:00:05.0: reg 0x20: [mem 0x800004000-0x800007fff 64bit pref] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.099546] pci 0000:00:07.0: [8086:2922] type 00 class 0x010601 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.102560] pci 0000:00:07.0: reg 0x20: [io 0xd2e0-0xd2ff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.103119] pci 0000:00:07.0: reg 0x24: [mem 0xc1471000-0xc1471fff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.105065] pci 0000:00:12.0: [8086:100e] type 00 class 0x020000 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.107744] pci 0000:00:12.0: reg 0x10: [mem 0xc1440000-0xc145ffff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.108606] pci 0000:00:12.0: reg 0x14: [io 0xd200-0xd23f] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.114238] pci 0000:00:12.0: reg 0x30: [mem 0xfffc0000-0xffffffff pref] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.114821] pci 0000:00:13.0: [1af4:1000] type 00 class 0x020000 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.115930] pci 0000:00:13.0: reg 0x10: [io 0xd2c0-0xd2df] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.116456] pci 0000:00:13.0: reg 0x14: [mem 0xc1470000-0xc1470fff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.119653] pci 0000:00:13.0: reg 0x20: [mem 0x800008000-0x80000bfff 64bit pref] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.120416] pci 0000:00:13.0: reg 0x30: [mem 0xfffc0000-0xffffffff pref] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.122174] pci 0000:00:1e.0: [1b36:0001] type 01 class 0x060400 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.123462] pci 0000:00:1e.0: reg 0x10: [mem 0x80000d000-0x80000d0ff 64bit] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.125732] pci 0000:00:1f.0: [1b36:0001] type 01 class 0x060400 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.127179] pci 0000:00:1f.0: reg 0x10: [mem 0x80000c000-0x80000c0ff 64bit] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.130222] acpiphp: Slot [0] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.130299] acpiphp: Slot [1] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.130375] acpiphp: Slot [2] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.130454] acpiphp: Slot [3-2] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.130540] acpiphp: Slot [4-2] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.130623] acpiphp: Slot [5-2] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.130702] acpiphp: Slot [6-2] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.130782] acpiphp: Slot [7-2] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.130861] acpiphp: Slot [8-2] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.130940] acpiphp: Slot [9-2] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.131020] acpiphp: Slot [10-2] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.131100] acpiphp: Slot [11-2] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.131179] acpiphp: Slot [12-2] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.131257] acpiphp: Slot [13-2] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.131368] acpiphp: Slot [14-2] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.131450] acpiphp: Slot [15-2] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.131533] acpiphp: Slot [16-2] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.131612] acpiphp: Slot [17-2] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.131691] acpiphp: Slot [18-2] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.131769] acpiphp: Slot [19-2] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.131849] acpiphp: Slot [20-2] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.131928] acpiphp: Slot [21-2] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.132019] acpiphp: Slot [22-2] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.132102] acpiphp: Slot [23-2] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.132181] acpiphp: Slot [24-2] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.132261] acpiphp: Slot [25-2] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.132340] acpiphp: Slot [26-2] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.132419] acpiphp: Slot [27-2] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.132500] acpiphp: Slot [28-2] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.132583] acpiphp: Slot [29-2] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.132660] acpiphp: Slot [30] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.132735] acpiphp: Slot [31] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.133461] pci 0000:00:1e.0: PCI bridge to [bus 01] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.133507] pci 0000:00:1e.0: bridge window [io 0xd000-0xdfff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.133554] pci 0000:00:1e.0: bridge window [mem 0xc1200000-0xc13fffff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.134574] acpiphp: Slot [0-2] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.134653] acpiphp: Slot [1-2] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.134733] acpiphp: Slot [2-2] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.134813] acpiphp: Slot [3-3] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.134897] acpiphp: Slot [4-3] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.134977] acpiphp: Slot [5-3] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.135055] acpiphp: Slot [6-3] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.135133] acpiphp: Slot [7-3] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.135213] acpiphp: Slot [8-3] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.135292] acpiphp: Slot [9-3] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.135395] acpiphp: Slot [10-3] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.135474] acpiphp: Slot [11-3] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.135553] acpiphp: Slot [12-3] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.135632] acpiphp: Slot [13-3] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.135712] acpiphp: Slot [14-3] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.135791] acpiphp: Slot [15-3] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.135871] acpiphp: Slot [16-3] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.135950] acpiphp: Slot [17-3] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.136040] acpiphp: Slot [18-3] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.136121] acpiphp: Slot [19-3] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.136201] acpiphp: Slot [20-3] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.136281] acpiphp: Slot [21-3] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.136360] acpiphp: Slot [22-3] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.136439] acpiphp: Slot [23-3] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.136520] acpiphp: Slot [24-3] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.136598] acpiphp: Slot [25-3] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.136678] acpiphp: Slot [26-3] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.136758] acpiphp: Slot [27-3] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.136838] acpiphp: Slot [28-3] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.136917] acpiphp: Slot [29-3] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.136997] acpiphp: Slot [30-2] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.137077] acpiphp: Slot [31-2] registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.137803] pci 0000:00:1f.0: PCI bridge to [bus 02] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.137848] pci 0000:00:1f.0: bridge window [io 0xc000-0xcfff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.137893] pci 0000:00:1f.0: bridge window [mem 0xc1000000-0xc11fffff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.139052] ACPI: PCI Interrupt Link [LNKA] (IRQs 5 *10 11) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.139235] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *10 11) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.139439] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 10 *11) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.139608] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 10 *11) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.139698] ACPI: PCI Interrupt Link [LNKS] (IRQs *9) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.140790] SCSI subsystem initialized May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.140821] libata version 3.00 loaded. May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.140821] pci 0000:00:02.0: vgaarb: setting as boot VGA device May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.140821] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.140821] pci 0000:00:02.0: vgaarb: bridge control possible May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.140821] vgaarb: loaded May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.140821] ACPI: bus type USB registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.140821] usbcore: registered new interface driver usbfs May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.140821] usbcore: registered new interface driver hub May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.140821] usbcore: registered new device driver usb May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.140821] EDAC MC: Ver: 3.0.0 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.140821] Registered efivars operations May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.140821] PCI: Using ACPI for IRQ routing May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.140821] PCI: pci_cache_line_size set to 64 bytes May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.140821] pci 0000:00:01.1: can't claim BAR 4 [io 0xd330-0xd33f]: address conflict with PCI Bus 0000:01 [io 0xd000-0xdfff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.140821] pci 0000:00:01.2: can't claim BAR 4 [io 0xd300-0xd31f]: address conflict with PCI Bus 0000:01 [io 0xd000-0xdfff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.140821] pci 0000:00:02.0: can't claim BAR 0 [io 0xd320-0xd32f]: address conflict with PCI Bus 0000:01 [io 0xd000-0xdfff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.140821] pci 0000:00:03.0: can't claim BAR 0 [io 0xd280-0xd2bf]: address conflict with PCI Bus 0000:01 [io 0xd000-0xdfff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.140821] pci 0000:00:05.0: can't claim BAR 0 [io 0xd240-0xd27f]: address conflict with PCI Bus 0000:01 [io 0xd000-0xdfff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.140821] pci 0000:00:07.0: can't claim BAR 4 [io 0xd2e0-0xd2ff]: address conflict with PCI Bus 0000:01 [io 0xd000-0xdfff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.140821] pci 0000:00:12.0: can't claim BAR 1 [io 0xd200-0xd23f]: address conflict with PCI Bus 0000:01 [io 0xd000-0xdfff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.140821] pci 0000:00:13.0: can't claim BAR 0 [io 0xd2c0-0xd2df]: address conflict with PCI Bus 0000:01 [io 0xd000-0xdfff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.140821] e820: reserve RAM buffer [mem 0x00806000-0x008fffff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.140821] e820: reserve RAM buffer [mem 0x00810000-0x008fffff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.140821] e820: reserve RAM buffer [mem 0x9e015018-0x9fffffff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.140821] e820: reserve RAM buffer [mem 0x9e03d018-0x9fffffff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.140821] e820: reserve RAM buffer [mem 0x9e064000-0x9fffffff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.140821] e820: reserve RAM buffer [mem 0x9e705018-0x9fffffff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.140821] e820: reserve RAM buffer [mem 0x9e71a000-0x9fffffff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.140821] e820: reserve RAM buffer [mem 0x9ee68000-0x9fffffff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.140821] e820: reserve RAM buffer [mem 0x9f8ec000-0x9fffffff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.140821] e820: reserve RAM buffer [mem 0xbfedc000-0xbfffffff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.140821] NetLabel: Initializing May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.140821] NetLabel: domain hash size = 128 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.140821] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.140821] NetLabel: unlabeled traffic allowed by default May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.144179] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.144183] hpet0: 3 comparators, 64-bit 100.000000 MHz counter May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.148129] clocksource: Switched to clocksource kvm-clock May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.158078] VFS: Disk quotas dquot_6.6.0 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.158091] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.158679] AppArmor: AppArmor Filesystem Enabled May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.158718] pnp: PnP ACPI init May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.158809] pnp 00:00: Plug and Play ACPI device, IDs PNP0303 (active) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.158829] pnp 00:01: Plug and Play ACPI device, IDs PNP0f13 (active) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.158838] pnp 00:02: [dma 2] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.158848] pnp 00:02: Plug and Play ACPI device, IDs PNP0700 (active) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.158863] pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.159343] pnp: PnP ACPI: found 4 devices May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.173852] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.173862] pci 0000:00:02.0: can't claim BAR 6 [mem 0xffff0000-0xffffffff pref]: no compatible bridge window May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.173864] pci 0000:00:12.0: can't claim BAR 6 [mem 0xfffc0000-0xffffffff pref]: no compatible bridge window May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.173866] pci 0000:00:13.0: can't claim BAR 6 [mem 0xfffc0000-0xffffffff pref]: no compatible bridge window May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.173879] pci 0000:00:12.0: BAR 6: assigned [mem 0xc1400000-0xc143ffff pref] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.173881] pci 0000:00:13.0: BAR 6: assigned [mem 0xc1480000-0xc14bffff pref] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.173882] pci 0000:00:02.0: BAR 6: assigned [mem 0xc14c0000-0xc14cffff pref] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.173885] pci 0000:00:03.0: BAR 0: assigned [io 0x1000-0x103f] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.174484] pci 0000:00:05.0: BAR 0: assigned [io 0x1040-0x107f] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.174871] pci 0000:00:12.0: BAR 1: assigned [io 0x1080-0x10bf] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.175257] pci 0000:00:01.2: BAR 4: assigned [io 0x10c0-0x10df] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.175610] pci 0000:00:07.0: BAR 4: assigned [io 0x10e0-0x10ff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.175952] pci 0000:00:13.0: BAR 0: assigned [io 0x1400-0x141f] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.176378] pci 0000:00:01.1: BAR 4: assigned [io 0x1420-0x142f] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.176734] pci 0000:00:02.0: BAR 0: assigned [io 0x1430-0x143f] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.177074] pci 0000:00:1e.0: PCI bridge to [bus 01] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.177101] pci 0000:00:1e.0: bridge window [io 0xd000-0xdfff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.177715] pci 0000:00:1e.0: bridge window [mem 0xc1200000-0xc13fffff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.178862] pci 0000:00:1f.0: PCI bridge to [bus 02] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.178889] pci 0000:00:1f.0: bridge window [io 0xc000-0xcfff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.180702] pci 0000:00:1f.0: bridge window [mem 0xc1000000-0xc11fffff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.181687] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.181688] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.181689] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.181690] pci_bus 0000:00: resource 7 [mem 0xc0000000-0xfebfffff window] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.181690] pci_bus 0000:00: resource 8 [mem 0x800000000-0x87fffffff window] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.181691] pci_bus 0000:01: resource 0 [io 0xd000-0xdfff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.181692] pci_bus 0000:01: resource 1 [mem 0xc1200000-0xc13fffff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.181693] pci_bus 0000:02: resource 0 [io 0xc000-0xcfff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.181694] pci_bus 0000:02: resource 1 [mem 0xc1000000-0xc11fffff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.181792] NET: Registered protocol family 2 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.182408] IP idents hash table entries: 262144 (order: 9, 2097152 bytes) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.183691] TCP established hash table entries: 131072 (order: 8, 1048576 bytes) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.185474] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.185601] TCP: Hash tables configured (established 131072 bind 65536) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.185642] UDP hash table entries: 8192 (order: 6, 262144 bytes) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.185681] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.185745] NET: Registered protocol family 1 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.185755] pci 0000:00:00.0: Limiting direct PCI/PCI transfers May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.185822] pci 0000:00:01.0: PIIX3: Enabling Passive Release May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.185875] pci 0000:00:01.0: Activating ISA DMA hang workarounds May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.201265] ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 11 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.218514] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.218705] PCI: CLS 0 bytes, default 64 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.218747] Unpacking initramfs... May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.824562] Freeing initrd memory: 62368K May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.824590] PCI-DMA: Using software bounce buffering for IO (SWIOTLB) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.824591] software IO TLB: mapped [mem 0x94177000-0x98177000] (64MB) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.824636] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x325b186289d, max_idle_ns: 440795326624 ns May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.824690] Scanning for low memory corruption every 60 seconds May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.825861] Initialise system trusted keyrings May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.825870] Key type blacklist registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.826045] workingset: timestamp_bits=36 max_order=22 bucket_order=0 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.826725] zbud: loaded May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.827217] squashfs: version 4.0 (2009/01/31) Phillip Lougher May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.827521] fuse init (API version 7.26) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.835437] Key type asymmetric registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.835438] Asymmetric key parser 'x509' registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.835461] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.835616] io scheduler noop registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.835618] io scheduler deadline registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.835636] io scheduler cfq registered (default) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.835956] efifb: probing for efifb May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.835967] efifb: framebuffer at 0xc0000000, using 4000k, total 4000k May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.835967] efifb: mode is 1280x800x32, linelength=5120, pages=1 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.835968] efifb: scrolling: redraw May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.835968] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.836167] Console: switching to colour frame buffer device 160x50 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.836180] fb0: EFI VGA frame buffer device May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.836302] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.836393] ACPI: Power Button [PWRF] May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.852708] ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 10 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.870885] ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 10 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.891718] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.894667] Linux agpgart interface v0.103 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.896590] loop: module loaded May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.896663] ata_piix 0000:00:01.1: version 2.13 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.897616] scsi host0: ata_piix May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.898334] scsi host1: ata_piix May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.898376] ata1: PATA max MWDMA2 cmd 0x1f0 ctl 0x3f6 bmdma 0x1420 irq 14 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.898377] ata2: PATA max MWDMA2 cmd 0x170 ctl 0x376 bmdma 0x1428 irq 15 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.898469] tun: Universal TUN/TAP device driver, 1.6 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.898594] PPP generic driver version 2.4.2 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.898662] ata1: port disabled--ignoring May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.898729] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.898744] ehci-pci: EHCI PCI platform driver May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.898755] ehci-platform: EHCI generic platform driver May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.898760] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.898761] ohci-pci: OHCI PCI platform driver May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.898766] ohci-platform: OHCI generic platform driver May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.898770] uhci_hcd: USB Universal Host Controller Interface driver May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.898915] ata2: port disabled--ignoring May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.914669] uhci_hcd 0000:00:01.2: UHCI Host Controller May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.914675] uhci_hcd 0000:00:01.2: new USB bus registered, assigned bus number 1 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.914714] uhci_hcd 0000:00:01.2: detected 2 ports May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.914972] uhci_hcd 0000:00:01.2: irq 11, io base 0x000010c0 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.915135] usb usb1: New USB device found, idVendor=1d6b, idProduct=0001 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.915136] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.915137] usb usb1: Product: UHCI Host Controller May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.915138] usb usb1: Manufacturer: Linux 4.15.0-211-generic uhci_hcd May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.915138] usb usb1: SerialNumber: 0000:00:01.2 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.915353] hub 1-0:1.0: USB hub found May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.915357] hub 1-0:1.0: 2 ports detected May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.915531] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.917345] serio: i8042 KBD port at 0x60,0x64 irq 1 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.917350] serio: i8042 AUX port at 0x60,0x64 irq 12 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.917585] mousedev: PS/2 mouse device common for all mice May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.918038] rtc_cmos 00:03: RTC can wake from S4 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.918999] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.919391] rtc_cmos 00:03: alarms up to one day, y3k, 242 bytes nvram, hpet irqs May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.919401] i2c /dev entries driver May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.919457] device-mapper: uevent: version 1.0.3 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.919549] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.919568] device-mapper: ioctl: 4.37.0-ioctl (2017-09-20) initialised: dm-devel@redhat.com May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.919745] ledtrig-cpu: registered to indicate activity on CPUs May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.919748] EFI Variables Facility v0.08 2004-May-17 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.921631] NET: Registered protocol family 10 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.925441] Segment Routing with IPv6 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.925457] NET: Registered protocol family 17 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.925554] Key type dns_resolver registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.926112] mce: Using 10 MCE banks May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.926126] RAS: Correctable Errors collector initialized. May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.926432] registered taskstats version 1 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.926442] Loading compiled-in X.509 certificates May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.928547] Loaded X.509 cert 'Build time autogenerated kernel key: 6893c09f03d31bc6e9f3dd5a3a18faae0d596a39' May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.928936] Loaded X.509 cert 'Canonical Ltd. Live Patch Signing: 14df34d1a87cf37625abec039ef2bf521249b969' May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.929318] Loaded X.509 cert 'Canonical Ltd. Kernel Module Signing: 88f752e560a1e0737e31163a466ad7b70a850c19' May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.929319] blacklist: Loading compiled-in revocation X.509 certificates May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.929331] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing: 61482aa2830d0ab2ad5af10b7250da9033ddcef0' May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.929340] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2017): 242ade75ac4a15e50d50c84b0d45ff3eae707a03' May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.929350] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (ESM 2018): 365188c1d374d6b07c3c8f240f8ef722433d6a8b' May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.929360] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2019): c0746fd6c5da3ae827864651ad66ae47fe24b3e8' May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.929369] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v1): a8d54bbb3825cfb94fa13c9f8a594a195c107b8d' May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.929378] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v2): 4cf046892d6fd3c9a5b03f98d845f90851dc6a8c' May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.929386] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v3): 100437bb6de6e469b581e61cd66bce3ef4ed53af' May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.929396] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (Ubuntu Core 2019): c1d57b8f6b743f23ee41f4f7ee292f06eecadfb9' May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.929490] Couldn't get size: 0x800000000000000e May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.929492] MODSIGN: Couldn't get UEFI db list May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.929527] Couldn't get size: 0x800000000000000e May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.929528] MODSIGN: Couldn't get UEFI dbx list May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.931314] Loaded UEFI:MokListRT (MOKvar table) cert 'Canonical Ltd. Master Certificate Authority: ad91990bc22ab1f517048c23b6655a268e345a63' linked to secondary sys keyring May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.931333] zswap: loaded using pool lzo/zbud May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.935302] Key type big_key registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.935306] Key type trusted registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.937017] Key type encrypted registered May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.937020] AppArmor: AppArmor sha1 policy hashing enabled May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.937023] ima: No TPM chip found, activating TPM-bypass! (rc=-19) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.937027] ima: Allocated hash algorithm: sha1 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.937043] evm: HMAC attrs: 0x1 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.939420] Magic number: 7:328:934 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.939730] rtc_cmos 00:03: setting system clock to 2023-05-17 11:55:46 UTC (1684324546) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.939891] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 0.939891] EDD information not available. May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.160052] usb 1-1: new full-speed USB device number 2 using uhci_hcd May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.354116] usb 1-1: New USB device found, idVendor=0627, idProduct=0001 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.354118] usb 1-1: New USB device strings: Mfr=1, Product=3, SerialNumber=10 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.354120] usb 1-1: Product: QEMU USB Tablet May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.354121] usb 1-1: Manufacturer: QEMU May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.354122] usb 1-1: SerialNumber: 28754-0000:00:01.2-1 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.386244] Freeing unused kernel image memory: 2480K May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.420281] Write protecting the kernel read-only data: 20480k May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.422053] Freeing unused kernel image memory: 2008K May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.422381] Freeing unused kernel image memory: 1820K May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.428630] x86/mm: Checked W+X mappings: passed, no W+X pages found. May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.492754] piix4_smbus 0000:00:01.3: SMBus Host Controller at 0xb100, revision 0 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.497305] ahci 0000:00:07.0: version 3.0 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.498213] hidraw: raw HID events driver (C) Jiri Kosina May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.499079] e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.499080] e1000: Copyright (c) 1999-2006 Intel Corporation. May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.504444] usbcore: registered new interface driver usbhid May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.504445] usbhid: USB HID core driver May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.504938] scsi host2: Virtio SCSI HBA May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.510948] scsi 2:0:0:0: Direct-Access QEMU QEMU HARDDISK 2.5+ PQ: 0 ANSI: 5 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.511591] FDC 0 is a S82078B May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.513883] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input4 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.514722] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input3 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.523179] ahci 0000:00:07.0: AHCI 0001.0000 32 slots 6 ports 1.5 Gbps 0x3f impl SATA mode May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.523181] ahci 0000:00:07.0: flags: 64bit ncq only May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.525844] scsi host3: ahci May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.529995] virtio_net virtio2 ens19: renamed from eth0 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.530187] scsi host4: ahci May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.530459] input: QEMU QEMU USB Tablet as /devices/pci0000:00/0000:00:01.2/usb1/1-1/1-1:1.0/0003:0627:0001.0001/input/input5 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.530571] scsi host5: ahci May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.530590] hid-generic 0003:0627:0001.0001: input,hidraw0: USB HID v0.01 Mouse [QEMU QEMU USB Tablet] on usb-0000:00:01.2-1/input0 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.530904] scsi host6: ahci May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.531166] scsi host7: ahci May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.531429] scsi host8: ahci May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.531529] ata3: SATA max UDMA/133 abar m4096@0xc1471000 port 0xc1471100 irq 34 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.531547] ata4: SATA max UDMA/133 abar m4096@0xc1471000 port 0xc1471180 irq 34 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.531563] ata5: SATA max UDMA/133 abar m4096@0xc1471000 port 0xc1471200 irq 34 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.531578] ata6: SATA max UDMA/133 abar m4096@0xc1471000 port 0xc1471280 irq 34 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.531594] ata7: SATA max UDMA/133 abar m4096@0xc1471000 port 0xc1471300 irq 34 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.531609] ata8: SATA max UDMA/133 abar m4096@0xc1471000 port 0xc1471380 irq 34 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.548968] ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 11 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.847898] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.848103] ata3.00: ATA-7: QEMU HARDDISK, 2.5+, max UDMA/100 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.848104] ata3.00: 20971520 sectors, multi 16: LBA48 NCQ (depth 31/32) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.848106] ata3.00: applying bridge limits May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.848396] ata3.00: configured for UDMA/100 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.848674] ata6: SATA link down (SStatus 0 SControl 300) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.849038] ata8: SATA link down (SStatus 0 SControl 300) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.852273] ata7: SATA link down (SStatus 0 SControl 300) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.852645] ata4: SATA link down (SStatus 0 SControl 300) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.853046] ata5: SATA link down (SStatus 0 SControl 300) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.967871] e1000 0000:00:12.0 eth0: (PCI:33MHz:32-bit) 52:fb:8e:e2:b6:15 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 1.967874] e1000 0000:00:12.0 eth0: Intel(R) PRO/1000 Network Connection May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 5.964611] sd 2:0:0:0: Attached scsi generic sg0 type 0 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 5.964861] sd 2:0:0:0: Power-on or device reset occurred May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 5.964941] scsi 3:0:0:0: Direct-Access ATA QEMU HARDDISK 2.5+ PQ: 0 ANSI: 5 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 5.965112] sd 3:0:0:0: Attached scsi generic sg1 type 0 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 5.965232] sd 3:0:0:0: [sdb] 20971520 512-byte logical blocks: (10.7 GB/10.0 GiB) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 5.965238] sd 3:0:0:0: [sdb] Write Protect is off May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 5.965239] sd 3:0:0:0: [sdb] Mode Sense: 00 3a 00 00 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 5.965246] sd 3:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 5.965811] sd 2:0:0:0: [sda] 2097152 512-byte logical blocks: (1.07 GB/1.00 GiB) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 5.965892] sd 2:0:0:0: [sda] Write Protect is off May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 5.965893] sd 2:0:0:0: [sda] Mode Sense: 63 00 00 08 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 5.966055] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 5.969493] sd 2:0:0:0: [sda] Attached SCSI disk May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 5.971459] sdb: sdb1 sdb2 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 5.971822] sd 3:0:0:0: [sdb] Attached SCSI disk May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 5.976631] e1000 0000:00:12.0 ens18: renamed from eth0 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 5.980843] [drm] DMA map mode: Using physical TTM page addresses. May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 5.980966] [drm] Capabilities: May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 5.980967] [drm] Rect copy. May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 5.980967] [drm] Cursor. May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 5.980968] [drm] Cursor bypass. May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 5.980968] [drm] Cursor bypass 2. May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 5.980970] [drm] Maximum display memory size is 16384 kiB May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 5.980970] [drm] VRAM at 0xc0000000 size is 16384 kiB May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 5.980971] [drm] MMIO at 0xc1460000 size is 64 kiB May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 5.980972] [drm] global init. May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 5.981116] [TTM] Zone kernel: Available graphics memory: 5112556 kiB May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 5.981118] [TTM] Zone dma32: Available graphics memory: 2097152 kiB May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 5.981118] [TTM] Initializing pool allocator May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 5.981124] [TTM] Initializing DMA pool allocator May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 5.981168] [drm:vmw_driver_load [vmwgfx]] *ERROR* Hardware has no pitchlock May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 5.981176] [TTM] Finalizing pool allocator May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 5.981178] [TTM] Finalizing DMA pool allocator May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 5.981311] [TTM] Zone kernel: Used memory at exit: 0 kiB May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 5.981313] [TTM] Zone dma32: Used memory at exit: 0 kiB May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 5.981986] vmwgfx: probe of 0000:00:02.0 failed with error -38 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 37.368556] EXT4-fs (dm-0): mounted filesystem with ordered data mode. Opts: (null) May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 37.598366] ip_tables: (C) 2000-2006 Netfilter Core Team May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 38.010511] EXT4-fs (dm-0): re-mounted. Opts: errors=remount-ro May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 38.011847] lp: driver loaded but no devices found May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 38.028377] ppdev: user-space parallel port driver May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 38.561171] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 38.804943] AVX2 version of gcm_enc/dec engaged. May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 38.804945] AES CTR mode by8 optimization enabled May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 38.929259] kvm: Nested Virtualization enabled May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 38.929278] kvm: Nested Paging enabled May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 38.929278] SVM: Virtual VMLOAD VMSAVE supported May 17 13:56:26 phi-Standard-PC-i440FX-PIIX-1996 kernel: [ 38.944649] Decoding supported only on Scalable MCA processors.
> The errors for the virtio devices are: > > virtio_scsi virtio1: virtio: device uses modern interface but does not have VIRTIO_F_VERSION_1 > > virtio_scsi: probe of virtio1 failed with error -22 > > virtio_net virtio2: virtio: device uses modern interface but does not have VIRTIO_F_VERSION_1 > > virtio_net: probe of virtio2 failed with error -22 I guess something goes wrong with accessing the mmio pci bars. Seems to be a linux kernel bug in 4.15, when installing the hwe kernel (5.4) it works fine for me. > In the kern.log, I didn't really see any interesting differences, except > for the errors above. The addresses are different and there is now a > 64-bit bridge window, but I guess that's expected. > > > + pci 0000:00:1e.0: bridge window [mem 0x700000000000-0x700fffffffff 64bit pref] Yes. > Not sure if this is interesting either, but part of the diff between the > lspci outputs (first with the call, second without the call): > > > *************** > > *** 75,88 **** > > 00:05.0 SCSI storage controller: Red Hat, Inc Virtio SCSI > > Subsystem: Red Hat, Inc Virtio SCSI > > Physical Slot: 5 > > ! Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+ INTx enabled. > > ! Capabilities: [98] MSI-X: Enable+ Count=7 Masked- MSI-X enabled. That probably comes from the driver exiting early (and not configuring interrupts). The patch below fixes it for me. Can you confirm this? take care, Gerd From 05fdf93b17decc42dde2ba89e935616eceb705c4 Mon Sep 17 00:00:00 2001 From: Gerd Hoffmann <kraxel@redhat.com> Date: Mon, 22 May 2023 13:04:35 +0200 Subject: [PATCH 1/1] [testing] older linux kernels seem to have problems with phys-bits > 46 --- OvmfPkg/Library/PlatformInitLib/MemDetect.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/OvmfPkg/Library/PlatformInitLib/MemDetect.c b/OvmfPkg/Library/PlatformInitLib/MemDetect.c index acf90b4e93fd..0482d8906d5c 100644 --- a/OvmfPkg/Library/PlatformInitLib/MemDetect.c +++ b/OvmfPkg/Library/PlatformInitLib/MemDetect.c @@ -646,16 +646,19 @@ PlatformAddressWidthFromCpuid ( )); if (Valid) { - if (PhysBits > 47) { + if (PhysBits > 46) { /* * Avoid 5-level paging altogether for now, which limits * PhysBits to 48. Also avoid using address bit 48, due to sign * extension we can't identity-map these addresses (and lots of * places in edk2 assume we have everything identity-mapped). * So the actual limit is 47. + * + * Also some older linux kernels apparently have problems handling + * phys-bits > 46 correctly, so use that as limit. */ - DEBUG ((DEBUG_INFO, "%a: limit PhysBits to 47 (avoid 5-level paging)\n", __func__)); - PhysBits = 47; + DEBUG ((DEBUG_INFO, "%a: limit PhysBits to 46 (avoid 5-level paging)\n", __func__)); + PhysBits = 46; } if (!Page1GSupport && (PhysBits > 40)) { -- 2.40.1 -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#105112): https://edk2.groups.io/g/devel/message/105112 Mute This Topic: https://groups.io/mt/94113626/1787277 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org] -=-=-=-=-=-=-=-=-=-=-=-
Am 22.05.23 um 13:12 schrieb Gerd Hoffmann:> The patch below fixes it for me. Can you confirm this? Yes, it fixes the issue for me too :) Best Regards, Fiona -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#105125): https://edk2.groups.io/g/devel/message/105125 Mute This Topic: https://groups.io/mt/94113626/1787277 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org] -=-=-=-=-=-=-=-=-=-=-=-
Hi Gerd, I got a page-fault in CpuIo2Dxe.dll when using edk2-stable202211 ovmf with qemu-kvm: !!!! X64 Exception Type - 0E(#PF - Page-Fault) CPU Apic ID - 00000000 !!!! ExceptionData - 000000000000000B I:0 R:1 U:0 W:1 P:1 PK:0 SS:0 SGX:0 RIP - 000000007F2CB5E8, CS - 0000000000000038, RFLAGS - 0000000000010246 RAX - 0000000000000000, RCX - 0000000000000001, RDX - 000000007F2CC5D0 RBX - 0000038280000014, RSP - 000000007FF04710, RBP - 000000007FF04790 RSI - 0000000000000000, RDI - 0000000000000000 R8 - 000000007FF04938, R9 - 0000000000000001, R10 - 0000000000000001 R11 - 0000000000000000, R12 - 000000007FF04938, R13 - 0000000000000001 R14 - 0000000000000001, R15 - 000000007F2CC3EC DS - 0000000000000030, ES - 0000000000000030, FS - 0000000000000030 GS - 0000000000000030, SS - 0000000000000030 CR0 - 0000000080010033, CR2 - 0000038280000014, CR3 - 000000007FC01000 CR4 - 0000000000000668, CR8 - 0000000000000000 DR0 - 0000000000000000, DR1 - 0000000000000000, DR2 - 0000000000000000 DR3 - 0000000000000000, DR6 - 00000000FFFF0FF0, DR7 - 0000000000000400 GDTR - 000000007F9DC000 0000000000000047, LDTR - 0000000000000000 IDTR - 000000007F2CD018 0000000000000FFF, TR - 0000000000000000 FXSAVE_STATE - 000000007FF04370 !!!! Find image based on IP(0x7F2CB5E8) /home/joeyli/source_code-git/edk2/Build/OvmfX64/DEBUG_GCC5/X64/UefiCpuPkg/CpuIo2Dxe/CpuIo2Dxe/DEBUG/CpuIo2Dxe.dll (ImageBase=000000007F2CA000, EntryPoint=000000007F2CBDE8) !!!! After reverted this ecb778d0ac62 patch, the page-fault is gone. And edk2-stable202311 can also reproduce this CpuIo2Dxe.dll page-fault. I have filed a edk2 bug against this situation: Bug 4373 - Got Page-Fault in CpuIo2Dxe.dll when using edk2-stable202211 ovmf with qemi-kvm https://bugzilla.tianocore.org/show_bug.cgi?id=4373 Do you have any idea? Thanks a lot! Joey Lee On Tue, Oct 04, 2022 at 03:47:27PM +0200, Gerd Hoffmann via groups.io wrote: > In case we have a reliable PhysMemAddressWidth use that to dynamically > size the 64bit address window. Allocate 1/8 of the physical address > space and place the window at the upper end of the address space. > > Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> > --- > OvmfPkg/Library/PlatformInitLib/MemDetect.c | 28 +++++++++++++++++++++ > 1 file changed, 28 insertions(+) > > diff --git a/OvmfPkg/Library/PlatformInitLib/MemDetect.c b/OvmfPkg/Library/PlatformInitLib/MemDetect.c > index 16ecbfadc30c..ae217d0242ed 100644 > --- a/OvmfPkg/Library/PlatformInitLib/MemDetect.c > +++ b/OvmfPkg/Library/PlatformInitLib/MemDetect.c > @@ -604,6 +604,33 @@ PlatformAddressWidthFromCpuid ( > } > } > > +VOID > +EFIAPI > +PlatformDynamicMmioWindow ( > + IN OUT EFI_HOB_PLATFORM_INFO *PlatformInfoHob > + ) > +{ > + UINT64 AddrSpace, MmioSpace; > + > + AddrSpace = LShiftU64 (1, PlatformInfoHob->PhysMemAddressWidth); > + MmioSpace = LShiftU64 (1, PlatformInfoHob->PhysMemAddressWidth - 3); > + > + if ((PlatformInfoHob->PcdPciMmio64Size < MmioSpace) && > + (PlatformInfoHob->PcdPciMmio64Base + MmioSpace < AddrSpace)) > + { > + DEBUG ((DEBUG_INFO, "%a: using dynamic mmio window\n", __func__)); > + DEBUG ((DEBUG_INFO, "%a: Addr Space 0x%Lx (%Ld GB)\n", __func__, AddrSpace, RShiftU64 (AddrSpace, 30))); > + DEBUG ((DEBUG_INFO, "%a: MMIO Space 0x%Lx (%Ld GB)\n", __func__, MmioSpace, RShiftU64 (MmioSpace, 30))); > + PlatformInfoHob->PcdPciMmio64Size = MmioSpace; > + PlatformInfoHob->PcdPciMmio64Base = AddrSpace - MmioSpace; > + } else { > + DEBUG ((DEBUG_INFO, "%a: using classic mmio window\n", __func__)); > + } > + > + DEBUG ((DEBUG_INFO, "%a: Pci64 Base 0x%Lx\n", __func__, PlatformInfoHob->PcdPciMmio64Base)); > + DEBUG ((DEBUG_INFO, "%a: Pci64 Size 0x%Lx\n", __func__, PlatformInfoHob->PcdPciMmio64Size)); > +} > + > /** > Iterate over the PCI host bridges resources information optionally provided > in fw-cfg and find the highest address contained in the PCI MMIO windows. If > @@ -765,6 +792,7 @@ PlatformAddressWidthInitialization ( > if (PlatformInfoHob->PhysMemAddressWidth != 0) { > // physical address width is known > PlatformInfoHob->FirstNonAddress = FirstNonAddress; > + PlatformDynamicMmioWindow (PlatformInfoHob); > return; > } > > -- > 2.37.3 > > > > > -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#101212): https://edk2.groups.io/g/devel/message/101212 Mute This Topic: https://groups.io/mt/94113626/1787277 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org] -=-=-=-=-=-=-=-=-=-=-=-
Hi, > Bug 4373 - Got Page-Fault in CpuIo2Dxe.dll when using edk2-stable202211 ovmf with qemi-kvm > https://bugzilla.tianocore.org/show_bug.cgi?id=4373 > > Do you have any idea? Replied in bugzilla. take care, Gerd -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#101218): https://edk2.groups.io/g/devel/message/101218 Mute This Topic: https://groups.io/mt/94113626/1787277 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org] -=-=-=-=-=-=-=-=-=-=-=-
© 2016 - 2024 Red Hat, Inc.