On Tue, Mar 4, 2025 at 1:35 PM Naveen Kumar P <naveenkumar.parna@xxxxxxxxx> wrote: > > On Fri, Feb 28, 2025 at 9:31 PM Bjorn Helgaas <helgaas@xxxxxxxxxx> wrote: > > > > On Wed, Feb 26, 2025 at 06:28:33PM +0530, Naveen Kumar P wrote: > > > On Wed, Feb 26, 2025 at 2:08 AM Bjorn Helgaas <helgaas@xxxxxxxxxx> wrote: > > > > On Tue, Feb 25, 2025 at 06:46:02PM +0530, Naveen Kumar P wrote: > > > > > On Tue, Feb 25, 2025 at 1:24 AM Bjorn Helgaas <helgaas@xxxxxxxxxx> wrote: > > > > > > On Tue, Feb 25, 2025 at 12:29:00AM +0530, Naveen Kumar P wrote: > > > > > > > On Mon, Feb 24, 2025 at 11:03 PM Bjorn Helgaas <helgaas@xxxxxxxxxx> wrote: > > > > > > > > On Mon, Feb 24, 2025 at 05:45:35PM +0530, Naveen Kumar P wrote: > > > > > > > > > On Wed, Feb 19, 2025 at 10:36 PM Bjorn Helgaas <helgaas@xxxxxxxxxx> wrote: > > > > > > > > > > On Wed, Feb 19, 2025 at 05:52:47PM +0530, Naveen Kumar P wrote: > > > > > > > > > > > Hi all, > > > > > > > > > > > > > > > > > > > > > > I am writing to seek assistance with an issue we are > > > > > > > > > > > experiencing with a PCIe device (PLDA Device 5555) > > > > > > > > > > > connected through PCI Express Root Port 1 to the > > > > > > > > > > > host bridge. > > > > > > > > > > > > > > > > > > > > > > We have observed that after booting the system, the > > > > > > > > > > > Base Address Register (BAR0) memory of this device > > > > > > > > > > > gets reset to 0x0 after approximately one hour or > > > > > > > > > > > more (the timing is inconsistent). This was verified > > > > > > > > > > > using the lspci output and the setpci -s 01:00.0 > > > > > > > > > > > BASE_ADDRESS_0 command. > > > > > > > ... > > > > > I have downloaded the 6.13 kernel source and added additional debug > > > logs in hotplug_event(), then built the kernel. After that rebooted > > > with the new kernel using the following parameters: > > > BOOT_IMAGE=/vmlinuz-6.13.0+ root=/dev/mapper/vg00-rootvol ro quiet > > > libata.force=noncq pci=nomsi pcie_aspm=off pcie_ports=on "dyndbg=file > > > drivers/pci/* +p; file drivers/acpi/* +p" > > > > Why "pci=nomsi"? I don't think that should make a difference. Also, > > it contributes to the fact that Linux doesn't request OS control of > > several features that it ordinarily does, so you end up in a somewhat > > unusual state (which *should* still work, of course): > > > > acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig Segments HPX-Type3] > > acpi PNP0A08:00: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI] > > > > Same for "pcie_aspm=off". > I initially suspected that the PCI BAR reset was happening due to the > device entering a low-power state, so I set pcie_aspm=off to prevent > it. However, I am not sure why pci=nomsi and pcie_ports=on were used > in the test machine. In the next test run, I will remove these > parameters and try again. For this test run, I removed all three parameters (pcie_aspm=off, pci=nomsi, and pcie_ports=on) and booted with the following kernel command line arguments: cat /proc/cmdline BOOT_IMAGE=/vmlinuz-6.13.0+ root=/dev/mapper/vg00-rootvol ro quiet "dyndbg=file drivers/pci/* +p; file drivers/acpi/bus.c +p; file drivers/acpi/osl.c +p" This time, the issue occurred earlier, at 22998 seconds. Below is the relevant dmesg log during the ACPI_NOTIFY_BUS_CHECK event. The complete log is attached (dmesg_march4th_log.txt). [22998.536705] ACPI: \_SB_.PCI0.RP01: ACPI: ACPI_NOTIFY_BUS_CHECK event [22998.536753] ACPI: \_SB_.PCI0.RP01: ACPI: OSL: Scheduling hotplug event 0 for deferred handling [22998.536934] ACPI: \_SB_.PCI0.RP01: acpiphp_glue: Bridge acquired in hotplug_event() [22998.536972] ACPI: \_SB_.PCI0.RP01: acpiphp_glue: Bus check in hotplug_event() [22998.537002] ACPI: \_SB_.PCI0.RP01: acpiphp_glue: Checking bridge in hotplug_event() [22998.537024] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x00 len=4 data=0x55551556 [22998.537066] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x00 len=4 data=0x55551556 [22998.537094] ACPI: \_SB_.PCI0.RP01: acpiphp_glue: Enabling slot in acpiphp_check_bridge() [22998.537155] ACPI: Device [PXSX] status [0000000f] [22998.537206] ACPI: Device [D015] status [0000000f] [22998.537276] ACPI: \_SB_.PCI0.RP01: acpiphp_glue: Releasing bridge in hotplug_event() sudo lspci -xxx -s 01:00.0 | grep 10: 10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Looking forward to your insights. > > > > > Why "pcie_ports=on"? That's not a valid parameter: > > https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/drivers/pci/pcie/portdrv.c?id=v6.13#n619 > > > > > Complete dmesg log and the patch(to get additional debug information) > > > are attached to this email. > > > > > > Any further guidance on these observations? > > > > I'm out of ideas. I would instrument the PCI config accessors to log > > all the reads and writes to your device (01:00.0) to see what we do to > > the device. Maybe there's some hint: > > https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/drivers/pci/access.c?id=v6.13#n35 > As per your suggestion, I instrumented the PCI configuration accessors > to log all reads and writes to my device (01:00.0). The corresponding > patch (0002-instrumented-the-PCI-config-accessors-to-log-all-the.patch) > is attached to this email. After applying the patch and rebooting with > the same boot parameters, the issue reproduced after 193890 seconds. > > The complete dmesg log (dmesg_march3rd_log.txt) is also attached. > Could you check if this new log provides any useful clues? > > Additionally, do you recommend any further instrumentation or debugging steps? > > Looking forward to your insights. > > > > > Additionally, I noticed that the initial bootup logs with the > > > "0.000000" timestamp are missing in the dmesg log with this new > > > kernel. I'm unsure what might be causing this issue. > > > > Probably overflowed the message buffer. You can try increasing the > > buffer size: > I have noticed that even the kern.log file also missed those initial > bootup logs. If the message buffer is overflowed and the dmesg log > misses those entries, they should appear in kern.log, right? However, > this time when I rebooted, I got the complete log without increasing > the buffer size. > > > https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/Documentation/admin-guide/kernel-parameters.txt?id=v6.13#n3190 > > > > You can also experiment with the dyndbg parameter to be more selective > > about the ACPI messages if some aren't useful. > > > > Bjorn
[ 0.000000] Linux version 6.13.0+ (naveen@bttest) (gcc (Ubuntu 9.4.0-1ubuntu1~20.04.2) 9.4.0, GNU ld (GNU Binutils for Ubuntu) 2.34) #10 SMP PREEMPT_DYNAMIC Sat Mar 1 15:45:06 IST 2025 [ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-6.13.0+ root=/dev/mapper/vg00-rootvol ro quiet "dyndbg=file drivers/pci/* +p; file drivers/acpi/bus.c +p; file drivers/acpi/osl.c +p" [ 0.000000] KERNEL supported cpus: [ 0.000000] Intel GenuineIntel [ 0.000000] AMD AuthenticAMD [ 0.000000] Hygon HygonGenuine [ 0.000000] Centaur CentaurHauls [ 0.000000] zhaoxin Shanghai [ 0.000000] BIOS-provided physical RAM map: [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009d7ff] usable [ 0.000000] BIOS-e820: [mem 0x000000000009d800-0x000000000009ffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001effffff] usable [ 0.000000] BIOS-e820: [mem 0x000000001f000000-0x000000001f0fffff] reserved [ 0.000000] BIOS-e820: [mem 0x000000001f100000-0x000000001fffffff] usable [ 0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000200fffff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000020100000-0x0000000099614fff] usable [ 0.000000] BIOS-e820: [mem 0x0000000099615000-0x0000000099644fff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000099645000-0x0000000099654fff] ACPI data [ 0.000000] BIOS-e820: [mem 0x0000000099655000-0x00000000997dafff] ACPI NVS [ 0.000000] BIOS-e820: [mem 0x00000000997db000-0x0000000099afbfff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000099afc000-0x0000000099afcfff] usable [ 0.000000] BIOS-e820: [mem 0x0000000099afd000-0x0000000099b3efff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000099b3f000-0x0000000099cadfff] usable [ 0.000000] BIOS-e820: [mem 0x0000000099cae000-0x0000000099ff9fff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000099ffa000-0x0000000099ffffff] usable [ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fed01000-0x00000000fed01fff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fed03000-0x00000000fed03fff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fed08000-0x00000000fed08fff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fed0c000-0x00000000fed0ffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1cfff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fef00000-0x00000000feffffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000ffb00000-0x00000000ffffffff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000015fffffff] usable [ 0.000000] NX (Execute Disable) protection: active [ 0.000000] APIC: Static calls initialized [ 0.000000] SMBIOS 2.8 present. [ 0.000000] DMI: ADLINK Technology Inc. nanoX-BT/To be filled by O.E.M., BIOS QC01 09/10/2024 [ 0.000000] DMI: Memory slots populated: 1/1 [ 0.000000] tsc: Detected 1916.667 MHz processor [ 0.002619] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved [ 0.002630] e820: remove [mem 0x000a0000-0x000fffff] usable [ 0.002658] last_pfn = 0x160000 max_arch_pfn = 0x400000000 [ 0.002673] total RAM covered: 4512M [ 0.003199] Found optimal setting for mtrr clean up [ 0.003201] gran_size: 64K chunk_size: 64K num_reg: 5 lose cover RAM: 0G [ 0.003213] MTRR map: 6 entries (4 fixed + 2 variable; max 20), built from 8 variable MTRRs [ 0.003218] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT [ 0.003337] e820: update [mem 0x9a000000-0xffffffff] usable ==> reserved [ 0.003347] last_pfn = 0x9a000 max_arch_pfn = 0x400000000 [ 0.010768] found SMP MP-table at [mem 0x000fd6d0-0x000fd6df] [ 0.013503] RAMDISK: [mem 0x279c5000-0x2fcd9fff] [ 0.013513] ACPI: Early table checksum verification disabled [ 0.013520] ACPI: RSDP 0x00000000000F04A0 000024 (v02 ALASKA) [ 0.013530] ACPI: XSDT 0x000000009964A080 00007C (v01 ALASKA A M I 01072009 AMI 00010013) [ 0.013545] ACPI: FACP 0x0000000099652FC0 00010C (v05 ALASKA A M I 01072009 AMI 00010013) [ 0.013558] ACPI BIOS Warning (bug): 32/64X length mismatch in FADT/Gpe0Block: 128/32 (20240827/tbfadt-560) [ 0.013570] ACPI: DSDT 0x000000009964A188 008E32 (v02 ALASKA A M I 01072009 INTL 20120913) [ 0.013581] ACPI: FACS 0x00000000997DAF80 000040 [ 0.013589] ACPI: APIC 0x00000000996530D0 000084 (v03 ALASKA A M I 01072009 AMI 00010013) [ 0.013600] ACPI: FPDT 0x0000000099653158 000044 (v01 ALASKA A M I 01072009 AMI 00010013) [ 0.013610] ACPI: LPIT 0x00000000996531A0 000104 (v01 ALASKA A M I 00000003 VLV2 0100000D) [ 0.013621] ACPI: MCFG 0x00000000996532A8 00003C (v01 ALASKA A M I 01072009 MSFT 00000097) [ 0.013631] ACPI: HPET 0x00000000996532E8 000038 (v01 ALASKA A M I 01072009 AMI. 00000005) [ 0.013641] ACPI: SSDT 0x0000000099653320 000763 (v01 PmRef CpuPm 00003000 INTL 20061109) [ 0.013651] ACPI: SSDT 0x0000000099653A88 000290 (v01 PmRef Cpu0Tst 00003000 INTL 20061109) [ 0.013662] ACPI: SSDT 0x0000000099653D18 00017A (v01 PmRef ApTst 00003000 INTL 20061109) [ 0.013672] ACPI: UEFI 0x0000000099653E98 000042 (v01 ALASKA A M I 00000000 00000000) [ 0.013682] ACPI: CSRT 0x0000000099653EE0 00014C (v00 INTEL EDK2 00000005 INTL 20120624) [ 0.013691] ACPI: Reserving FACP table memory at [mem 0x99652fc0-0x996530cb] [ 0.013695] ACPI: Reserving DSDT table memory at [mem 0x9964a188-0x99652fb9] [ 0.013699] ACPI: Reserving FACS table memory at [mem 0x997daf80-0x997dafbf] [ 0.013702] ACPI: Reserving APIC table memory at [mem 0x996530d0-0x99653153] [ 0.013705] ACPI: Reserving FPDT table memory at [mem 0x99653158-0x9965319b] [ 0.013708] ACPI: Reserving LPIT table memory at [mem 0x996531a0-0x996532a3] [ 0.013711] ACPI: Reserving MCFG table memory at [mem 0x996532a8-0x996532e3] [ 0.013715] ACPI: Reserving HPET table memory at [mem 0x996532e8-0x9965331f] [ 0.013718] ACPI: Reserving SSDT table memory at [mem 0x99653320-0x99653a82] [ 0.013721] ACPI: Reserving SSDT table memory at [mem 0x99653a88-0x99653d17] [ 0.013724] ACPI: Reserving SSDT table memory at [mem 0x99653d18-0x99653e91] [ 0.013727] ACPI: Reserving UEFI table memory at [mem 0x99653e98-0x99653ed9] [ 0.013730] ACPI: Reserving CSRT table memory at [mem 0x99653ee0-0x9965402b] [ 0.013952] No NUMA configuration found [ 0.013955] Faking a node at [mem 0x0000000000000000-0x000000015fffffff] [ 0.013975] NODE_DATA(0) allocated [mem 0x15ffd3a00-0x15fffdfff] [ 0.014624] Zone ranges: [ 0.014626] DMA [mem 0x0000000000001000-0x0000000000ffffff] [ 0.014632] DMA32 [mem 0x0000000001000000-0x00000000ffffffff] [ 0.014637] Normal [mem 0x0000000100000000-0x000000015fffffff] [ 0.014641] Device empty [ 0.014644] Movable zone start for each node [ 0.014650] Early memory node ranges [ 0.014651] node 0: [mem 0x0000000000001000-0x000000000009cfff] [ 0.014655] node 0: [mem 0x0000000000100000-0x000000001effffff] [ 0.014659] node 0: [mem 0x000000001f100000-0x000000001fffffff] [ 0.014662] node 0: [mem 0x0000000020100000-0x0000000099614fff] [ 0.014665] node 0: [mem 0x0000000099afc000-0x0000000099afcfff] [ 0.014669] node 0: [mem 0x0000000099b3f000-0x0000000099cadfff] [ 0.014672] node 0: [mem 0x0000000099ffa000-0x0000000099ffffff] [ 0.014675] node 0: [mem 0x0000000100000000-0x000000015fffffff] [ 0.014679] Initmem setup node 0 [mem 0x0000000000001000-0x000000015fffffff] [ 0.014691] On node 0, zone DMA: 1 pages in unavailable ranges [ 0.014752] On node 0, zone DMA: 99 pages in unavailable ranges [ 0.017713] On node 0, zone DMA32: 256 pages in unavailable ranges [ 0.027887] On node 0, zone DMA32: 256 pages in unavailable ranges [ 0.027927] On node 0, zone DMA32: 1255 pages in unavailable ranges [ 0.027941] On node 0, zone DMA32: 66 pages in unavailable ranges [ 0.027965] On node 0, zone DMA32: 844 pages in unavailable ranges [ 0.037010] On node 0, zone Normal: 24576 pages in unavailable ranges [ 0.037027] x86/hpet: Will disable the HPET for this platform because it's not reliable [ 0.037035] Reserving Intel graphics memory at [mem 0x9b000000-0x9effffff] [ 0.037141] ACPI: PM-Timer IO Port: 0x408 [ 0.037166] ACPI: LAPIC_NMI (acpi_id[0x01] res edge lint[0x7b]) [ 0.037171] ACPI: NMI not connected to LINT 1! [ 0.037173] ACPI: LAPIC_NMI (acpi_id[0x02] low res lint[0x74]) [ 0.037177] ACPI: NMI not connected to LINT 1! [ 0.037178] ACPI: LAPIC_NMI (acpi_id[0x03] res edge lint[0x53]) [ 0.037181] ACPI: NMI not connected to LINT 1! [ 0.037183] ACPI: LAPIC_NMI (acpi_id[0x04] dfl res lint[0xb0]) [ 0.037186] ACPI: NMI not connected to LINT 1! [ 0.037199] IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-86 [ 0.037207] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) [ 0.037212] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) [ 0.037223] ACPI: Using ACPI (MADT) for SMP configuration information [ 0.037226] ACPI: HPET id: 0x8086a201 base: 0xfed00000 [ 0.037238] TSC deadline timer available [ 0.037252] CPU topo: Max. logical packages: 1 [ 0.037255] CPU topo: Max. logical dies: 1 [ 0.037257] CPU topo: Max. dies per package: 1 [ 0.037271] CPU topo: Max. threads per core: 1 [ 0.037274] CPU topo: Num. cores per package: 4 [ 0.037276] CPU topo: Num. threads per package: 4 [ 0.037278] CPU topo: Allowing 4 present CPUs plus 0 hotplug CPUs [ 0.037344] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff] [ 0.037351] PM: hibernation: Registered nosave memory: [mem 0x0009d000-0x0009dfff] [ 0.037354] PM: hibernation: Registered nosave memory: [mem 0x0009e000-0x0009ffff] [ 0.037357] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000dffff] [ 0.037359] PM: hibernation: Registered nosave memory: [mem 0x000e0000-0x000fffff] [ 0.037365] PM: hibernation: Registered nosave memory: [mem 0x1f000000-0x1f0fffff] [ 0.037371] PM: hibernation: Registered nosave memory: [mem 0x20000000-0x200fffff] [ 0.037377] PM: hibernation: Registered nosave memory: [mem 0x99615000-0x99644fff] [ 0.037380] PM: hibernation: Registered nosave memory: [mem 0x99645000-0x99654fff] [ 0.037382] PM: hibernation: Registered nosave memory: [mem 0x99655000-0x997dafff] [ 0.037385] PM: hibernation: Registered nosave memory: [mem 0x997db000-0x99afbfff] [ 0.037391] PM: hibernation: Registered nosave memory: [mem 0x99afd000-0x99b3efff] [ 0.037397] PM: hibernation: Registered nosave memory: [mem 0x99cae000-0x99ff9fff] [ 0.037403] PM: hibernation: Registered nosave memory: [mem 0x9a000000-0x9affffff] [ 0.037406] PM: hibernation: Registered nosave memory: [mem 0x9b000000-0x9effffff] [ 0.037409] PM: hibernation: Registered nosave memory: [mem 0x9f000000-0xdfffffff] [ 0.037411] PM: hibernation: Registered nosave memory: [mem 0xe0000000-0xefffffff] [ 0.037414] PM: hibernation: Registered nosave memory: [mem 0xf0000000-0xfebfffff] [ 0.037417] PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff] [ 0.037419] PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfed00fff] [ 0.037422] PM: hibernation: Registered nosave memory: [mem 0xfed01000-0xfed01fff] [ 0.037425] PM: hibernation: Registered nosave memory: [mem 0xfed02000-0xfed02fff] [ 0.037427] PM: hibernation: Registered nosave memory: [mem 0xfed03000-0xfed03fff] [ 0.037430] PM: hibernation: Registered nosave memory: [mem 0xfed04000-0xfed07fff] [ 0.037432] PM: hibernation: Registered nosave memory: [mem 0xfed08000-0xfed08fff] [ 0.037435] PM: hibernation: Registered nosave memory: [mem 0xfed09000-0xfed0bfff] [ 0.037438] PM: hibernation: Registered nosave memory: [mem 0xfed0c000-0xfed0ffff] [ 0.037440] PM: hibernation: Registered nosave memory: [mem 0xfed10000-0xfed1bfff] [ 0.037443] PM: hibernation: Registered nosave memory: [mem 0xfed1c000-0xfed1cfff] [ 0.037445] PM: hibernation: Registered nosave memory: [mem 0xfed1d000-0xfedfffff] [ 0.037448] PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff] [ 0.037451] PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xfeefffff] [ 0.037453] PM: hibernation: Registered nosave memory: [mem 0xfef00000-0xfeffffff] [ 0.037456] PM: hibernation: Registered nosave memory: [mem 0xff000000-0xffafffff] [ 0.037459] PM: hibernation: Registered nosave memory: [mem 0xffb00000-0xffffffff] [ 0.037463] [mem 0x9f000000-0xdfffffff] available for PCI devices [ 0.037467] Booting paravirtualized kernel on bare hardware [ 0.037472] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns [ 0.037503] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1 [ 0.038563] percpu: Embedded 66 pages/cpu s233472 r8192 d28672 u524288 [ 0.038587] pcpu-alloc: s233472 r8192 d28672 u524288 alloc=1*2097152 [ 0.038596] pcpu-alloc: [0] 0 1 2 3 [ 0.038658] Kernel command line: BOOT_IMAGE=/vmlinuz-6.13.0+ root=/dev/mapper/vg00-rootvol ro quiet "dyndbg=file drivers/pci/* +p; file drivers/acpi/bus.c +p; file drivers/acpi/osl.c +p" [ 0.038816] Unknown kernel command line parameters "BOOT_IMAGE=/vmlinuz-6.13.0+", will be passed to user space. [ 0.038844] random: crng init done [ 0.038847] printk: log buffer data + meta data: 262144 + 917504 = 1179648 bytes [ 0.040114] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) [ 0.040784] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) [ 0.040934] Fallback order for Node 0: 0 [ 0.040947] Built 1 zonelists, mobility grouping on. Total pages: 1021223 [ 0.040951] Policy zone: Normal [ 0.040973] mem auto-init: stack:off, heap alloc:on, heap free:off [ 0.040986] software IO TLB: area num 4. [ 0.120024] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 [ 0.120096] Kernel/User page tables isolation: enabled [ 0.120198] ftrace: allocating 54751 entries in 214 pages [ 0.200816] ftrace: allocated 214 pages with 5 groups [ 0.202276] Dynamic Preempt: voluntary [ 0.202412] rcu: Preemptible hierarchical RCU implementation. [ 0.202415] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=4. [ 0.202419] Trampoline variant of Tasks RCU enabled. [ 0.202421] Rude variant of Tasks RCU enabled. [ 0.202422] Tracing variant of Tasks RCU enabled. [ 0.202424] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. [ 0.202426] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4 [ 0.202444] RCU Tasks: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4. [ 0.202451] RCU Tasks Rude: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4. [ 0.202455] RCU Tasks Trace: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4. [ 0.214228] NR_IRQS: 524544, nr_irqs: 1024, preallocated irqs: 16 [ 0.214563] rcu: srcu_init: Setting srcu_struct sizes based on contention. [ 0.214699] spurious 8259A interrupt: IRQ7. [ 0.214744] Console: colour dummy device 80x25 [ 0.214752] printk: legacy console [tty0] enabled [ 0.214892] ACPI: Core revision 20240827 [ 0.215061] APIC: Switch to symmetric I/O mode setup [ 0.215643] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x3741594d34d, max_idle_ns: 881590420564 ns [ 0.215660] Calibrating delay loop (skipped), value calculated using timer frequency.. 3833.33 BogoMIPS (lpj=7666668) [ 0.215728] Last level iTLB entries: 4KB 48, 2MB 0, 4MB 0 [ 0.215735] Last level dTLB entries: 4KB 128, 2MB 16, 4MB 16, 1GB 0 [ 0.215744] process: using mwait in idle threads [ 0.215752] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization [ 0.215759] Spectre V2 : Mitigation: Retpolines [ 0.215762] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch [ 0.215765] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT [ 0.215768] Spectre V2 : Enabling Restricted Speculation for firmware calls [ 0.215774] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier [ 0.215780] MDS: Mitigation: Clear CPU buffers [ 0.215783] MMIO Stale Data: Unknown: No mitigations [ 0.215790] x86/fpu: x87 FPU will use FXSAVE [ 0.219654] Freeing SMP alternatives memory: 44K [ 0.219654] pid_max: default: 32768 minimum: 301 [ 0.219654] LSM: initializing lsm=lockdown,capability,yama,apparmor,ima,evm [ 0.219654] Yama: becoming mindful. [ 0.219654] AppArmor: AppArmor initialized [ 0.219654] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) [ 0.219654] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) [ 0.219654] smpboot: CPU0: Intel(R) Atom(TM) CPU E3845 @ 1.91GHz (family: 0x6, model: 0x37, stepping: 0x9) [ 0.219654] Performance Events: PEBS fmt2+, 8-deep LBR, Silvermont events, 8-deep LBR, full-width counters, Intel PMU driver. [ 0.219654] ... version: 3 [ 0.219654] ... bit width: 40 [ 0.219654] ... generic registers: 2 [ 0.219654] ... value mask: 000000ffffffffff [ 0.219654] ... max period: 0000007fffffffff [ 0.219654] ... fixed-purpose events: 3 [ 0.219654] ... event mask: 0000000700000003 [ 0.219654] signal: max sigframe size: 1440 [ 0.219654] Estimated ratio of average max frequency by base frequency (times 1024): 1024 [ 0.219654] rcu: Hierarchical SRCU implementation. [ 0.219654] rcu: Max phase no-delay instances is 1000. [ 0.219654] Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level [ 0.220666] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter. [ 0.220876] smp: Bringing up secondary CPUs ... [ 0.231816] smpboot: x86: Booting SMP configuration: [ 0.231824] .... node #0, CPUs: #1 #2 #3 [ 0.263809] smp: Brought up 1 node, 4 CPUs [ 0.263809] smpboot: Total of 4 processors activated (15333.33 BogoMIPS) [ 0.264328] Memory: 3755620K/4084892K available (18432K kernel code, 3290K rwdata, 13412K rodata, 4768K init, 6104K bss, 321272K reserved, 0K cma-reserved) [ 0.264397] devtmpfs: initialized [ 0.264397] x86/mm: Memory block size: 128MB [ 0.268130] ACPI: PM: Registering ACPI NVS region [mem 0x99655000-0x997dafff] (1597440 bytes) [ 0.268130] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns [ 0.268130] futex hash table entries: 1024 (order: 4, 65536 bytes, linear) [ 0.268130] pinctrl core: initialized pinctrl subsystem [ 0.268294] PM: RTC time: 09:57:21, date: 2025-03-04 [ 0.270191] NET: Registered PF_NETLINK/PF_ROUTE protocol family [ 0.270737] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations [ 0.270898] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations [ 0.271716] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations [ 0.271774] audit: initializing netlink subsys (disabled) [ 0.271828] audit: type=2000 audit(1741082241.056:1): state=initialized audit_enabled=0 res=1 [ 0.272043] thermal_sys: Registered thermal governor 'fair_share' [ 0.272050] thermal_sys: Registered thermal governor 'bang_bang' [ 0.272054] thermal_sys: Registered thermal governor 'step_wise' [ 0.272057] thermal_sys: Registered thermal governor 'user_space' [ 0.272085] EISA bus registered [ 0.272110] cpuidle: using governor ladder [ 0.272110] cpuidle: using governor menu [ 0.272110] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 [ 0.272110] PCI: ECAM [mem 0xe0000000-0xefffffff] (base 0xe0000000) for domain 0000 [bus 00-ff] [ 0.272110] PCI: Using configuration type 1 for base access [ 0.272318] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible. [ 0.275819] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages [ 0.275819] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page [ 0.276002] ACPI: Added _OSI(Module Device) [ 0.276009] ACPI: Added _OSI(Processor Device) [ 0.276013] ACPI: Added _OSI(3.0 _SCP Extensions) [ 0.276017] ACPI: Added _OSI(Processor Aggregator Device) [ 0.295836] ACPI: 4 ACPI AML tables successfully acquired and loaded [ 0.326148] ACPI: Dynamic OEM Table Load: [ 0.326148] ACPI: SSDT 0xFFFF8D5180D8D000 00037A (v01 PmRef Cpu0Ist 00003000 INTL 20061109) [ 0.329225] ACPI: Dynamic OEM Table Load: [ 0.329241] ACPI: SSDT 0xFFFF8D5180A3E800 000433 (v01 PmRef Cpu0Cst 00003001 INTL 20061109) [ 0.331472] ACPI: Dynamic OEM Table Load: [ 0.331488] ACPI: SSDT 0xFFFF8D5180B51800 00015F (v01 PmRef ApIst 00003000 INTL 20061109) [ 0.332894] ACPI: Dynamic OEM Table Load: [ 0.332909] ACPI: SSDT 0xFFFF8D5180A65CC0 00008D (v01 PmRef ApCst 00003000 INTL 20061109) [ 0.337356] ACPI: Interpreter enabled [ 0.337412] ACPI: PM: (supports S0 S3 S4 S5) [ 0.337418] ACPI: Using IOAPIC for interrupt routing [ 0.337520] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug [ 0.337526] PCI: Ignoring E820 reservations for host bridge windows [ 0.338599] ACPI: Enabled 13 GPEs in block 00 to 3F [ 0.338658] ACPI: Device [ACPI] status [0000000f] [ 0.338845] ACPI: Device [CPU0] status [0000000f] [ 0.338845] ACPI: Device [CPU1] status [0000000f] [ 0.338845] ACPI: Device [CPU2] status [0000000f] [ 0.338845] ACPI: Device [CPU3] status [0000000f] [ 0.338845] ACPI: Device [_SB] status [0000000f] [ 0.338845] ACPI: Device [RTC0] status [0000000f] [ 0.339909] ACPI: Device [HPET] status [0000000f] [ 0.341125] ACPI: Device [PCI0] status [0000000f] [ 0.341263] ACPI: Device [VLVC] status [0000000f] [ 0.341399] ACPI: Device [GFX0] status [0000000f] [ 0.341657] ACPI: Device [DD01] status [0000000f] [ 0.341887] ACPI: Device [DD02] status [0000000f] [ 0.342112] ACPI: Device [DD03] status [0000000f] [ 0.342337] ACPI: Device [DD04] status [0000000f] [ 0.342556] ACPI: Device [DD05] status [0000000f] [ 0.342759] ACPI: Device [DD06] status [0000000f] [ 0.342955] ACPI: Device [DD07] status [0000000f] [ 0.343165] ACPI: Device [DD08] status [0000000f] [ 0.343356] ACPI: Device [DD1F] status [0000000f] [ 0.343706] ACPI: Device [ISP0] status [00000000] [ 0.343828] ACPI: Device [SBRG] status [0000000f] [ 0.344013] ACPI: Device [H_EC] status [00000000] [ 0.344199] ACPI: Device [BAT0] status [00000000] [ 0.344354] ACPI: Device [BAT1] status [00000000] [ 0.344515] ACPI: Device [BAT2] status [00000000] [ 0.344658] ACPI: Device [FWHD] status [0000000f] [ 0.344833] ACPI: Device [IPIC] status [0000000f] [ 0.344997] ACPI: Device [LDRC] status [0000000f] [ 0.345133] ACPI: Device [TIMR] status [0000000f] [ 0.345323] ACPI: Device [WPCN] status [00000000] [ 0.345692] ACPI: Device [UAR5] status [00000000] [ 0.346174] ACPI: Device [UAR8] status [00000000] [ 0.347100] ACPI: Device [SIO1] status [0000000f] [ 0.349591] ACPI: Device [LPTE] status [00000000] [ 0.350084] ACPI: Device [PS2K] status [00000000] [ 0.350991] ACPI: Device [PS2M] status [00000000] [ 0.351474] ACPI: Device [SSPI] status [00000000] [ 0.351637] ACPI: Device [SGPI] status [00000000] [ 0.351824] ACPI: Device [SHWM] status [00000000] [ 0.351984] ACPI: Device [SCPI] status [00000000] [ 0.353268] ACPI: Device [UAR1] status [00000000] [ 0.354532] ACPI: Device [UAR2] status [00000000] [ 0.354671] ACPI: Device [ADP1] status [0000000f] [ 1.981834] ACPI: Device [BAT1] status [0000000f] [ 2.795539] ACPI: Device [BAT2] status [00000000] [ 2.795939] ACPI: Device [PCU1] status [0000000f] [ 2.796068] ACPI: Device [D004] status [0000000f] [ 2.796186] ACPI: Device [D005] status [0000000f] [ 2.796290] ACPI: Device [D006] status [0000000f] [ 2.999690] ACPI: Device [SATA] status [0000000f] [ 2.999869] ACPI: Device [XHC1] status [0000000f] [ 3.000133] ACPI: Device [RHUB] status [0000000f] [ 3.000244] ACPI: Device [SSP1] status [0000000f] [ 3.000408] ACPI: Device [HS01] status [0000000f] [ 3.000581] ACPI: Device [HS02] status [0000000f] [ 3.000745] ACPI: Device [HS03] status [0000000f] [ 3.000914] ACPI: Device [HS04] status [0000000f] [ 3.001078] ACPI: Device [HSC1] status [0000000f] [ 3.001257] ACPI: Device [HSC2] status [0000000f] [ 3.001420] ACPI: Device [D009] status [0000000f] [ 3.001528] ACPI: Device [XHC2] status [0000000f] [ 3.001632] ACPI: Device [D00B] status [0000000f] [ 3.001742] ACPI: Device [GLAN] status [0000000f] [ 3.001924] ACPI: Device [HDEF] status [0000000f] [ 3.002136] ACPI: Device [EHC1] status [00000000] [ 3.002372] ACPI: Device [HUBN] status [0000000f] [ 3.002478] ACPI: Device [PR01] status [0000000f] [ 3.002600] ACPI: Device [PR11] status [0000000f] [ 3.002717] ACPI: Device [PR12] status [0000000f] [ 3.002841] ACPI: Device [PR13] status [0000000f] [ 3.002963] ACPI: Device [PR14] status [0000000f] [ 3.003087] ACPI: Device [PR15] status [0000000f] [ 3.003206] ACPI: Device [PR16] status [0000000f] [ 3.003334] ACPI: Device [PR17] status [0000000f] [ 3.003465] ACPI: Device [PR18] status [0000000f] [ 3.003598] ACPI: Device [SBUS] status [0000000f] [ 3.003751] ACPI: Device [RP01] status [0000000f] [ 3.003866] ACPI: Device [PXSX] status [0000000f] [ 3.004007] ACPI: Device [D015] status [0000000f] [ 3.004112] ACPI: Device [RP02] status [0000000f] [ 3.004232] ACPI: Device [PXSX] status [0000000f] [ 3.004357] ACPI: Device [D016] status [0000000f] [ 3.004469] ACPI: Device [RP03] status [0000000f] [ 3.004583] ACPI: Device [PXSX] status [0000000f] [ 3.004713] ACPI: Device [D017] status [0000000f] [ 3.004819] ACPI: Device [RP04] status [0000000f] [ 3.004943] ACPI: Device [PXSX] status [0000000f] [ 3.005069] ACPI: Device [D018] status [0000000f] [ 3.005178] ACPI: Device [D02A] status [0000000f] [ 3.005282] ACPI: Device [D019] status [0000000f] [ 3.005402] ACPI: Device [D01A] status [0000000f] [ 3.005511] ACPI: Device [D01B] status [0000000f] [ 3.005615] ACPI: Device [D01C] status [0000000f] [ 3.005723] ACPI: Device [D01D] status [0000000f] [ 3.005827] ACPI: Device [D01E] status [0000000f] [ 3.005935] ACPI: Device [D01F] status [0000000f] [ 3.006039] ACPI: Device [D020] status [0000000f] [ 3.006147] ACPI: Device [D021] status [0000000f] [ 3.006252] ACPI: Device [D022] status [0000000f] [ 3.006361] ACPI: Device [D023] status [0000000f] [ 3.006465] ACPI: Device [D024] status [0000000f] [ 3.006574] ACPI: Device [D025] status [0000000f] [ 3.006683] ACPI: Device [D026] status [0000000f] [ 3.006792] ACPI: Device [D027] status [0000000f] [ 3.006894] ACPI: Device [D028] status [0000000f] [ 3.007114] ACPI: Device [EM41] status [00000000] [ 3.007233] ACPI: Device [CARD] status [0000000f] [ 3.007425] ACPI: Device [EM45] status [0000000f] [ 3.007544] ACPI: Device [CARD] status [0000000f] [ 3.007709] ACPI: Device [OTG1] status [00000000] [ 3.007818] ACPI: \_SB_.USBC: New power resource [ 3.008226] ACPI: Device [SEC0] status [0000000f] [ 3.008428] ACPI: Device [PDRC] status [0000000f] [ 3.008852] ACPI: Device [LNKA] status [0000000b] [ 3.009247] ACPI: Device [LNKB] status [00000009] [ 3.009660] ACPI: Device [LNKC] status [0000000b] [ 3.010062] ACPI: Device [LNKD] status [0000000b] [ 3.010459] ACPI: Device [LNKE] status [0000000b] [ 3.010866] ACPI: Device [LNKF] status [0000000b] [ 3.011262] ACPI: Device [LNKG] status [0000000b] [ 3.011665] ACPI: Device [LNKH] status [0000000b] [ 3.012277] ACPI: Device [LPEA] status [00000000] [ 3.012349] ACPI: \_SB_.LPEA.PLPE: New power resource [ 3.013315] ACPI: Device [LPA2] status [00000000] [ 3.013388] ACPI: \_SB_.LPA2.PLPE: New power resource [ 3.013880] ACPI: Device [ADMA] status [0000000f] [ 3.014053] ACPI: Device [PWRB] status [0000000f] [ 3.014209] ACPI: Device [SLPB] status [0000000f] [ 3.014624] ACPI: Device [LID0] status [0000000f] [ 3.015176] ACPI: Device [GPED] status [00000000] [ 3.015433] ACPI: Device [MBID] status [0000000f] [ 3.015646] ACPI: Device [PIND] status [00000000] [ 3.015769] ACPI: Device [_TZ] status [0000000f] [ 3.016293] ACPI: Device [ACPI] status [0000000f] [ 3.016321] ACPI: Device [CPU0] status [0000000f] [ 3.016407] ACPI: Device [CPU1] status [0000000f] [ 3.016441] ACPI: Device [CPU2] status [0000000f] [ 3.016473] ACPI: Device [CPU3] status [0000000f] [ 3.016505] ACPI: Device [_SB] status [0000000f] [ 3.016531] ACPI: Device [RTC0] status [0000000f] [ 3.016577] ACPI: Device [HPET] status [0000000f] [ 3.016732] ACPI: Device [PCI0] status [0000000f] [ 3.017260] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) [ 3.017278] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3] [ 3.017871] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug SHPCHotplug PME] [ 3.018644] acpi PNP0A08:00: _OSC: OS now controls [AER PCIeCapability LTR] [ 3.020382] PCI host bridge to bus 0000:00 [ 3.020397] pci_bus 0000:00: root bus resource [io 0x0070-0x0077] [ 3.020405] pci_bus 0000:00: root bus resource [io 0x0000-0x006f window] [ 3.020411] pci_bus 0000:00: root bus resource [io 0x0078-0x0cf7 window] [ 3.020417] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window] [ 3.020423] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000fffff window] [ 3.020429] pci_bus 0000:00: root bus resource [mem 0xa0000000-0xb0b17fff window] [ 3.020436] pci_bus 0000:00: root bus resource [bus 00-ff] [ 3.020448] pci_bus 0000:00: scanning bus [ 3.020481] pci 0000:00:00.0: [8086:0f00] type 00 class 0x060000 conventional PCI endpoint [ 3.020724] pci 0000:00:02.0: [8086:0f31] type 00 class 0x030000 conventional PCI endpoint [ 3.020741] pci 0000:00:02.0: BAR 0 [mem 0xb0000000-0xb03fffff] [ 3.020756] pci 0000:00:02.0: BAR 2 [mem 0xa0000000-0xafffffff pref] [ 3.020770] pci 0000:00:02.0: BAR 4 [io 0xe080-0xe087] [ 3.020800] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff] [ 3.021042] pci 0000:00:13.0: [8086:0f23] type 00 class 0x010601 conventional PCI endpoint [ 3.021064] pci 0000:00:13.0: BAR 0 [io 0xe070-0xe077] [ 3.021078] pci 0000:00:13.0: BAR 1 [io 0xe060-0xe063] [ 3.021090] pci 0000:00:13.0: BAR 2 [io 0xe050-0xe057] [ 3.021102] pci 0000:00:13.0: BAR 3 [io 0xe040-0xe043] [ 3.021114] pci 0000:00:13.0: BAR 4 [io 0xe020-0xe03f] [ 3.021126] pci 0000:00:13.0: BAR 5 [mem 0xb0b17000-0xb0b177ff] [ 3.021181] pci 0000:00:13.0: PME# supported from D3hot [ 3.021191] pci 0000:00:13.0: PME# disabled [ 3.021372] pci 0000:00:14.0: [8086:0f35] type 00 class 0x0c0330 conventional PCI endpoint [ 3.021396] pci 0000:00:14.0: BAR 0 [mem 0xb0b00000-0xb0b0ffff 64bit] [ 3.021466] pci 0000:00:14.0: PME# supported from D3hot D3cold [ 3.021475] pci 0000:00:14.0: PME# disabled [ 3.021868] pci 0000:00:17.0: [8086:0f50] type 00 class 0x080501 conventional PCI endpoint [ 3.021892] pci 0000:00:17.0: BAR 0 [mem 0xb0b16000-0xb0b16fff] [ 3.021906] pci 0000:00:17.0: BAR 1 [mem 0xb0b15000-0xb0b15fff] [ 3.021985] pci 0000:00:17.0: PME# supported from D0 D3hot [ 3.021994] pci 0000:00:17.0: PME# disabled [ 3.022308] pci 0000:00:1a.0: [8086:0f18] type 00 class 0x108000 conventional PCI endpoint [ 3.022338] pci 0000:00:1a.0: BAR 0 [mem 0xb0900000-0xb09fffff] [ 3.022355] pci 0000:00:1a.0: BAR 1 [mem 0xb0800000-0xb08fffff] [ 3.022463] pci 0000:00:1a.0: PME# supported from D0 D3hot [ 3.022473] pci 0000:00:1a.0: PME# disabled [ 3.022679] pci 0000:00:1b.0: [8086:0f04] type 00 class 0x040300 conventional PCI endpoint [ 3.022706] pci 0000:00:1b.0: BAR 0 [mem 0xb0b10000-0xb0b13fff 64bit] [ 3.022787] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold [ 3.022796] pci 0000:00:1b.0: PME# disabled [ 3.022987] pci 0000:00:1c.0: [8086:0f48] type 01 class 0x060400 PCIe Root Port [ 3.023016] pci 0000:00:1c.0: PCI bridge to [bus 01] [ 3.023026] pci 0000:00:1c.0: bridge window [mem 0xb0400000-0xb07fffff] [ 3.023092] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold [ 3.023101] pci 0000:00:1c.0: PME# disabled [ 3.023309] pci 0000:00:1c.2: [8086:0f4c] type 01 class 0x060400 PCIe Root Port [ 3.023338] pci 0000:00:1c.2: PCI bridge to [bus 02] [ 3.023407] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold [ 3.023416] pci 0000:00:1c.2: PME# disabled [ 3.023617] pci 0000:00:1c.3: [8086:0f4e] type 01 class 0x060400 PCIe Root Port [ 3.023646] pci 0000:00:1c.3: PCI bridge to [bus 03] [ 3.023654] pci 0000:00:1c.3: bridge window [io 0xd000-0xdfff] [ 3.023662] pci 0000:00:1c.3: bridge window [mem 0xb0a00000-0xb0afffff] [ 3.023729] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold [ 3.023737] pci 0000:00:1c.3: PME# disabled [ 3.023953] pci 0000:00:1f.0: [8086:0f1c] type 00 class 0x060100 conventional PCI endpoint [ 3.024282] pci 0000:00:1f.3: [8086:0f12] type 00 class 0x0c0500 conventional PCI endpoint [ 3.024323] pci 0000:00:1f.3: BAR 0 [mem 0xb0b14000-0xb0b1401f] [ 3.024397] pci 0000:00:1f.3: BAR 4 [io 0xe000-0xe01f] [ 3.024651] pci_bus 0000:00: fixups for bus [ 3.024660] pci 0000:00:1c.0: scanning [bus 01-01] behind bridge, pass 0 [ 3.024760] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x00 len=4 data=0x55551556 [ 3.024786] pci_bus 0000:01: scanning bus [ 3.024793] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x00 len=4 data=0x55551556 [ 3.024802] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x0e len=1 data=0x0 [ 3.024810] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x06 len=2 data=0x10 [ 3.024817] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x34 len=1 data=0x40 [ 3.024824] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x40 len=2 data=0x4801 [ 3.024831] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x48 len=2 data=0x6005 [ 3.024838] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x60 len=2 data=0x10 [ 3.024845] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x62 len=2 data=0x2 [ 3.024852] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x64 len=4 data=0x8fc2 [ 3.024859] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x6c len=4 data=0x3f421 [ 3.024872] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x08 len=4 data=0x5000000 [ 3.024879] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x100 len=4 data=0x0 [ 3.024887] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x00 len=4 data=0x55551556 [ 3.024893] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x100 len=4 data=0x0 [ 3.024901] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x8c len=4 data=0x0 [ 3.024908] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x6c len=4 data=0x3f421 [ 3.024916] pci 0000:01:00.0: [1556:5555] type 00 class 0x050000 PCIe Endpoint [ 3.024924] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x04 len=2 data=0x7 [ 3.024931] PCI WRITE: res=0, bus=01 dev=00 func=0 pos=0x04 len=2 value=0x407 [ 3.024938] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x04 len=2 data=0x407 [ 3.024945] PCI WRITE: res=0, bus=01 dev=00 func=0 pos=0x04 len=2 value=0x7 [ 3.024952] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x3d len=1 data=0x1 [ 3.024959] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x3c len=1 data=0xb [ 3.024966] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x04 len=2 data=0x7 [ 3.024973] PCI WRITE: res=0, bus=01 dev=00 func=0 pos=0x04 len=2 value=0x4 [ 3.024980] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x10 len=4 data=0xb0400000 [ 3.024987] PCI WRITE: res=0, bus=01 dev=00 func=0 pos=0x10 len=4 value=0xffffffff [ 3.024995] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x10 len=4 data=0xffc00000 [ 3.025002] PCI WRITE: res=0, bus=01 dev=00 func=0 pos=0x10 len=4 value=0xb0400000 [ 3.025009] PCI WRITE: res=0, bus=01 dev=00 func=0 pos=0x04 len=2 value=0x7 [ 3.025015] pci 0000:01:00.0: BAR 0 [mem 0xb0400000-0xb07fffff] [ 3.025022] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x04 len=2 data=0x7 [ 3.025030] PCI WRITE: res=0, bus=01 dev=00 func=0 pos=0x04 len=2 value=0x4 [ 3.025037] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x14 len=4 data=0x0 [ 3.025044] PCI WRITE: res=0, bus=01 dev=00 func=0 pos=0x14 len=4 value=0xffffffff [ 3.025051] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x14 len=4 data=0x0 [ 3.025058] PCI WRITE: res=0, bus=01 dev=00 func=0 pos=0x14 len=4 value=0x0 [ 3.025065] PCI WRITE: res=0, bus=01 dev=00 func=0 pos=0x04 len=2 value=0x7 [ 3.025072] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x04 len=2 data=0x7 [ 3.025079] PCI WRITE: res=0, bus=01 dev=00 func=0 pos=0x04 len=2 value=0x4 [ 3.025085] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x18 len=4 data=0x0 [ 3.025092] PCI WRITE: res=0, bus=01 dev=00 func=0 pos=0x18 len=4 value=0xffffffff [ 3.025099] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x18 len=4 data=0x0 [ 3.025106] PCI WRITE: res=0, bus=01 dev=00 func=0 pos=0x18 len=4 value=0x0 [ 3.025113] PCI WRITE: res=0, bus=01 dev=00 func=0 pos=0x04 len=2 value=0x7 [ 3.025120] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x04 len=2 data=0x7 [ 3.025127] PCI WRITE: res=0, bus=01 dev=00 func=0 pos=0x04 len=2 value=0x4 [ 3.025134] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x1c len=4 data=0x0 [ 3.025141] PCI WRITE: res=0, bus=01 dev=00 func=0 pos=0x1c len=4 value=0xffffffff [ 3.025148] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x1c len=4 data=0x0 [ 3.025154] PCI WRITE: res=0, bus=01 dev=00 func=0 pos=0x1c len=4 value=0x0 [ 3.025161] PCI WRITE: res=0, bus=01 dev=00 func=0 pos=0x04 len=2 value=0x7 [ 3.025168] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x04 len=2 data=0x7 [ 3.025175] PCI WRITE: res=0, bus=01 dev=00 func=0 pos=0x04 len=2 value=0x4 [ 3.025182] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x20 len=4 data=0x0 [ 3.025189] PCI WRITE: res=0, bus=01 dev=00 func=0 pos=0x20 len=4 value=0xffffffff [ 3.025196] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x20 len=4 data=0x0 [ 3.025203] PCI WRITE: res=0, bus=01 dev=00 func=0 pos=0x20 len=4 value=0x0 [ 3.025210] PCI WRITE: res=0, bus=01 dev=00 func=0 pos=0x04 len=2 value=0x7 [ 3.025217] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x04 len=2 data=0x7 [ 3.025223] PCI WRITE: res=0, bus=01 dev=00 func=0 pos=0x04 len=2 value=0x4 [ 3.025230] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x24 len=4 data=0x0 [ 3.025237] PCI WRITE: res=0, bus=01 dev=00 func=0 pos=0x24 len=4 value=0xffffffff [ 3.025244] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x24 len=4 data=0x0 [ 3.025251] PCI WRITE: res=0, bus=01 dev=00 func=0 pos=0x24 len=4 value=0x0 [ 3.025258] PCI WRITE: res=0, bus=01 dev=00 func=0 pos=0x04 len=2 value=0x7 [ 3.025265] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x04 len=2 data=0x7 [ 3.025272] PCI WRITE: res=0, bus=01 dev=00 func=0 pos=0x04 len=2 value=0x4 [ 3.025279] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x30 len=4 data=0x0 [ 3.025285] PCI WRITE: res=0, bus=01 dev=00 func=0 pos=0x30 len=4 value=0xfffff800 [ 3.025293] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x30 len=4 data=0x0 [ 3.025299] PCI WRITE: res=0, bus=01 dev=00 func=0 pos=0x30 len=4 value=0x0 [ 3.025306] PCI WRITE: res=0, bus=01 dev=00 func=0 pos=0x04 len=2 value=0x7 [ 3.025313] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x2c len=2 data=0x4000 [ 3.025320] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x2e len=2 data=0x0 [ 3.025328] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x68 len=2 data=0x2800 [ 3.025336] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x64 len=4 data=0x8fc2 [ 3.025343] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x68 len=2 data=0x2800 [ 3.025350] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x84 len=4 data=0x2 [ 3.025357] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x100 len=4 data=0x0 [ 3.025364] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x100 len=4 data=0x0 [ 3.025371] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x84 len=4 data=0x2 [ 3.025392] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x06 len=2 data=0x10 [ 3.025401] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x34 len=1 data=0x40 [ 3.025408] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x40 len=2 data=0x4801 [ 3.025416] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x48 len=2 data=0x6005 [ 3.025423] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x60 len=2 data=0x10 [ 3.025430] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x06 len=2 data=0x10 [ 3.025437] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x34 len=1 data=0x40 [ 3.025443] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x40 len=2 data=0x4801 [ 3.025450] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x48 len=2 data=0x6005 [ 3.025458] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x4a len=2 data=0x0 [ 3.025465] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x06 len=2 data=0x10 [ 3.025471] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x34 len=1 data=0x40 [ 3.025478] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x40 len=2 data=0x4801 [ 3.025485] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x48 len=2 data=0x6005 [ 3.025492] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x60 len=2 data=0x10 [ 3.025499] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x06 len=2 data=0x10 [ 3.025506] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x34 len=1 data=0x40 [ 3.025513] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x40 len=2 data=0x4801 [ 3.025520] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x48 len=2 data=0x6005 [ 3.025527] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x60 len=2 data=0x10 [ 3.025534] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x06 len=2 data=0x10 [ 3.025541] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x34 len=1 data=0x40 [ 3.025548] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x40 len=2 data=0x4801 [ 3.025555] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x48 len=2 data=0x6005 [ 3.025562] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x60 len=2 data=0x10 [ 3.025569] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x100 len=4 data=0x0 [ 3.025576] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x100 len=4 data=0x0 [ 3.025583] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x100 len=4 data=0x0 [ 3.025590] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x100 len=4 data=0x0 [ 3.025598] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x06 len=2 data=0x10 [ 3.025605] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x34 len=1 data=0x40 [ 3.025612] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x40 len=2 data=0x4801 [ 3.025619] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x42 len=2 data=0x3 [ 3.025626] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x06 len=2 data=0x10 [ 3.025633] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x06 len=2 data=0x10 [ 3.025640] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x34 len=1 data=0x40 [ 3.025647] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x40 len=2 data=0x4801 [ 3.025654] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x48 len=2 data=0x6005 [ 3.025661] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x60 len=2 data=0x10 [ 3.025669] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x100 len=4 data=0x0 [ 3.025676] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x100 len=4 data=0x0 [ 3.025683] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x100 len=4 data=0x0 [ 3.025690] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x100 len=4 data=0x0 [ 3.025697] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x100 len=4 data=0x0 [ 3.025704] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x100 len=4 data=0x0 [ 3.025711] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x100 len=4 data=0x0 [ 3.025718] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x100 len=4 data=0x0 [ 3.025725] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x6c len=4 data=0x3f421 [ 3.025733] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x72 len=2 data=0x21 [ 3.025744] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x06 len=2 data=0x10 [ 3.025752] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x34 len=1 data=0x40 [ 3.025759] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x40 len=2 data=0x4801 [ 3.025766] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x48 len=2 data=0x6005 [ 3.025773] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x60 len=2 data=0x10 [ 3.025780] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x44 len=2 data=0x8 [ 3.025900] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x100 len=4 data=0x0 [ 3.025910] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x100 len=4 data=0x0 [ 3.025918] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x100 len=4 data=0x0 [ 3.025925] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x100 len=4 data=0x0 [ 3.025932] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x100 len=4 data=0x0 [ 3.025939] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x100 len=4 data=0x0 [ 3.025984] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x64 len=4 data=0x8fc2 [ 3.025994] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x6c len=4 data=0x3f421 [ 3.026002] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x72 len=2 data=0x21 [ 3.026010] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x70 len=2 data=0x0 [ 3.026018] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x70 len=2 data=0x0 [ 3.026025] PCI WRITE: res=0, bus=01 dev=00 func=0 pos=0x70 len=2 value=0x0 [ 3.031704] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x6c len=4 data=0x3f421 [ 3.031715] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x70 len=2 data=0x0 [ 3.031723] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x6c len=4 data=0x3f421 [ 3.031731] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x6c len=4 data=0x3f421 [ 3.031745] pci_bus 0000:01: fixups for bus [ 3.031751] pci 0000:00:1c.0: PCI bridge to [bus 01] [ 3.031764] pci_bus 0000:01: bus scan returning with max=01 [ 3.031773] pci 0000:00:1c.2: scanning [bus 02-02] behind bridge, pass 0 [ 3.031878] pci_bus 0000:02: scanning bus [ 3.031886] pci_bus 0000:02: fixups for bus [ 3.031891] pci 0000:00:1c.2: PCI bridge to [bus 02] [ 3.031903] pci_bus 0000:02: bus scan returning with max=02 [ 3.031912] pci 0000:00:1c.3: scanning [bus 03-03] behind bridge, pass 0 [ 3.032041] pci_bus 0000:03: scanning bus [ 3.032093] pci 0000:03:00.0: working around ROM BAR overlap defect [ 3.032099] pci 0000:03:00.0: [8086:1533] type 00 class 0x020000 PCIe Endpoint [ 3.032130] pci 0000:03:00.0: BAR 0 [mem 0xb0a00000-0xb0a7ffff] [ 3.032161] pci 0000:03:00.0: BAR 2 [io 0xd000-0xd01f] [ 3.032179] pci 0000:03:00.0: BAR 3 [mem 0xb0a80000-0xb0a83fff] [ 3.032338] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold [ 3.032348] pci 0000:03:00.0: PME# disabled [ 3.032646] pci_bus 0000:03: fixups for bus [ 3.032653] pci 0000:00:1c.3: PCI bridge to [bus 03] [ 3.032665] pci_bus 0000:03: bus scan returning with max=03 [ 3.032675] pci 0000:00:1c.0: scanning [bus 01-01] behind bridge, pass 1 [ 3.032685] pci 0000:00:1c.2: scanning [bus 02-02] behind bridge, pass 1 [ 3.032696] pci 0000:00:1c.3: scanning [bus 03-03] behind bridge, pass 1 [ 3.032705] pci_bus 0000:00: bus scan returning with max=03 [ 3.032778] ACPI: Device [VLVC] status [0000000f] [ 3.032798] ACPI: Device [GFX0] status [0000000f] [ 3.032826] ACPI: Device [DD01] status [0000000f] [ 3.032838] ACPI: Device [DD02] status [0000000f] [ 3.032850] ACPI: Device [DD03] status [0000000f] [ 3.032862] ACPI: Device [DD04] status [0000000f] [ 3.032874] ACPI: Device [DD05] status [0000000f] [ 3.032885] ACPI: Device [DD06] status [0000000f] [ 3.032896] ACPI: Device [DD07] status [0000000f] [ 3.032908] ACPI: Device [DD08] status [0000000f] [ 3.032919] ACPI: Device [DD1F] status [0000000f] [ 3.033006] ACPI: Device [ISP0] status [00000000] [ 3.033021] ACPI: Device [SBRG] status [0000000f] [ 3.033099] ACPI: Device [H_EC] status [00000000] [ 3.033114] ACPI: Device [FWHD] status [0000000f] [ 3.033235] ACPI: Device [IPIC] status [0000000f] [ 3.033263] ACPI: Device [LDRC] status [0000000f] [ 3.033280] ACPI: Device [TIMR] status [0000000f] [ 3.033351] ACPI: Device [WPCN] status [00000000] [ 3.033367] ACPI: Device [SIO1] status [0000000f] [ 3.033679] ACPI: Device [LPTE] status [00000000] [ 3.033962] ACPI: Device [PS2K] status [00000000] [ 3.034246] ACPI: Device [PS2M] status [00000000] [ 3.034283] ACPI: Device [SSPI] status [00000000] [ 3.034319] ACPI: Device [SGPI] status [00000000] [ 3.034355] ACPI: Device [SHWM] status [00000000] [ 3.034390] ACPI: Device [SCPI] status [00000000] [ 3.034671] ACPI: Device [UAR1] status [00000000] [ 3.034953] ACPI: Device [UAR2] status [00000000] [ 3.034968] ACPI: Device [ADP1] status [0000000f] [ 4.675060] ACPI: Device [BAT1] status [0000000f] [ 5.489558] ACPI: Device [BAT2] status [00000000] [ 5.489644] ACPI: Device [PCU1] status [0000000f] [ 5.489670] ACPI: Device [D004] status [0000000f] [ 5.489684] ACPI: Device [D005] status [0000000f] [ 5.489696] ACPI: Device [D006] status [0000000f] [ 5.695690] ACPI: Device [SATA] status [0000000f] [ 5.695763] ACPI: Device [XHC1] status [0000000f] [ 5.695779] ACPI: Device [RHUB] status [0000000f] [ 5.695792] ACPI: Device [SSP1] status [0000000f] [ 5.695804] ACPI: Device [HS01] status [0000000f] [ 5.695817] ACPI: Device [HS02] status [0000000f] [ 5.695829] ACPI: Device [HS03] status [0000000f] [ 5.695841] ACPI: Device [HS04] status [0000000f] [ 5.695853] ACPI: Device [HSC1] status [0000000f] [ 5.695865] ACPI: Device [HSC2] status [0000000f] [ 5.695877] ACPI: Device [D009] status [0000000f] [ 5.695889] ACPI: Device [XHC2] status [0000000f] [ 5.695901] ACPI: Device [D00B] status [0000000f] [ 5.695913] ACPI: Device [GLAN] status [0000000f] [ 5.695981] ACPI: Device [HDEF] status [0000000f] [ 5.696048] ACPI: Device [EHC1] status [00000000] [ 5.696062] ACPI: Device [SBUS] status [0000000f] [ 5.696077] ACPI: Device [RP01] status [0000000f] [ 5.696089] ACPI: Device [PXSX] status [0000000f] [ 5.696102] ACPI: Device [D015] status [0000000f] [ 5.696115] ACPI: Device [RP02] status [0000000f] [ 5.696127] ACPI: Device [PXSX] status [0000000f] [ 5.696139] ACPI: Device [D016] status [0000000f] [ 5.696151] ACPI: Device [RP03] status [0000000f] [ 5.696163] ACPI: Device [PXSX] status [0000000f] [ 5.696175] ACPI: Device [D017] status [0000000f] [ 5.696187] ACPI: Device [RP04] status [0000000f] [ 5.696198] ACPI: Device [PXSX] status [0000000f] [ 5.696210] ACPI: Device [D018] status [0000000f] [ 5.696222] ACPI: Device [D02A] status [0000000f] [ 5.696234] ACPI: Device [D019] status [0000000f] [ 5.696246] ACPI: Device [D01A] status [0000000f] [ 5.696258] ACPI: Device [D01B] status [0000000f] [ 5.696269] ACPI: Device [D01C] status [0000000f] [ 5.696281] ACPI: Device [D01D] status [0000000f] [ 5.696292] ACPI: Device [D01E] status [0000000f] [ 5.696304] ACPI: Device [D01F] status [0000000f] [ 5.696315] ACPI: Device [D020] status [0000000f] [ 5.696327] ACPI: Device [D021] status [0000000f] [ 5.696339] ACPI: Device [D022] status [0000000f] [ 5.696350] ACPI: Device [D023] status [0000000f] [ 5.696362] ACPI: Device [D024] status [0000000f] [ 5.696374] ACPI: Device [D025] status [0000000f] [ 5.696386] ACPI: Device [D026] status [0000000f] [ 5.696398] ACPI: Device [D027] status [0000000f] [ 5.696409] ACPI: Device [D028] status [0000000f] [ 5.696508] ACPI: Device [EM41] status [00000000] [ 5.696606] ACPI: Device [EM45] status [0000000f] [ 5.696622] ACPI: Device [CARD] status [0000000f] [ 5.696695] ACPI: Device [OTG1] status [00000000] [ 5.696762] ACPI: Device [SEC0] status [0000000f] [ 5.696779] ACPI: Device [PDRC] status [0000000f] [ 5.696821] ACPI: Device [USBC] status [0000000f] [ 5.696899] ACPI: Device [LNKA] status [0000000b] [ 5.697065] ACPI: PCI: Interrupt link LNKA configured for IRQ 11 [ 5.697171] ACPI: Device [LNKB] status [00000009] [ 5.697323] ACPI: PCI: Interrupt link LNKB configured for IRQ 0 [ 5.697329] ACPI: PCI: Interrupt link LNKB disabled [ 5.697432] ACPI: Device [LNKC] status [0000000b] [ 5.697584] ACPI: PCI: Interrupt link LNKC configured for IRQ 11 [ 5.697691] ACPI: Device [LNKD] status [0000000b] [ 5.697844] ACPI: PCI: Interrupt link LNKD configured for IRQ 10 [ 5.697951] ACPI: Device [LNKE] status [0000000b] [ 5.698104] ACPI: PCI: Interrupt link LNKE configured for IRQ 11 [ 5.698210] ACPI: Device [LNKF] status [0000000b] [ 5.698362] ACPI: PCI: Interrupt link LNKF configured for IRQ 11 [ 5.698468] ACPI: Device [LNKG] status [0000000b] [ 5.698620] ACPI: PCI: Interrupt link LNKG configured for IRQ 10 [ 5.698727] ACPI: Device [LNKH] status [0000000b] [ 5.698880] ACPI: PCI: Interrupt link LNKH configured for IRQ 10 [ 5.698960] ACPI: Device [PLPE] status [00000001] [ 5.699096] ACPI: Device [LPEA] status [00000000] [ 5.699133] ACPI: Device [PLPE] status [00000001] [ 5.699268] ACPI: Device [LPA2] status [00000000] [ 5.699282] ACPI: Device [PWRB] status [0000000f] [ 5.699391] ACPI: Device [SLPB] status [0000000f] [ 5.699485] ACPI: Device [LID0] status [0000000f] [ 5.699599] ACPI: Device [GPED] status [00000000] [ 5.699613] ACPI: Device [MBID] status [0000000f] [ 5.699817] ACPI: Device [PIND] status [00000000] [ 5.699832] ACPI: Device [_TZ] status [0000000f] [ 5.700443] iommu: Default domain type: Translated [ 5.700443] iommu: DMA domain TLB invalidation policy: lazy mode [ 5.700443] SCSI subsystem initialized [ 5.700443] libata version 3.00 loaded. [ 5.700443] ACPI: bus type USB registered [ 5.700443] usbcore: registered new interface driver usbfs [ 5.700443] usbcore: registered new interface driver hub [ 5.700443] usbcore: registered new device driver usb [ 5.700443] pps_core: LinuxPPS API ver. 1 registered [ 5.700443] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@xxxxxxxx> [ 5.700443] PTP clock support registered [ 5.703706] EDAC MC: Ver: 3.0.0 [ 5.703760] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x06 len=2 data=0x10 [ 5.703771] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x0e len=1 data=0x0 [ 5.704201] NetLabel: Initializing [ 5.704208] NetLabel: domain hash size = 128 [ 5.704212] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO [ 5.704256] NetLabel: unlabeled traffic allowed by default [ 5.704312] PCI: Using ACPI for IRQ routing [ 5.707658] PCI: pci_cache_line_size set to 64 bytes [ 5.707658] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x04 len=2 data=0x7 [ 5.707658] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x04 len=2 data=0x7 [ 5.707658] e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff] [ 5.707658] e820: reserve RAM buffer [mem 0x1f000000-0x1fffffff] [ 5.707658] e820: reserve RAM buffer [mem 0x99615000-0x9bffffff] [ 5.707658] e820: reserve RAM buffer [mem 0x99afd000-0x9bffffff] [ 5.707658] e820: reserve RAM buffer [mem 0x99cae000-0x9bffffff] [ 5.707658] e820: reserve RAM buffer [mem 0x9a000000-0x9bffffff] [ 5.707703] pci 0000:00:02.0: vgaarb: setting as boot VGA device [ 5.707703] pci 0000:00:02.0: vgaarb: bridge control possible [ 5.707703] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none [ 5.707703] vgaarb: loaded [ 5.707839] clocksource: Switched to clocksource tsc-early [ 5.708247] VFS: Disk quotas dquot_6.6.0 [ 5.708280] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ 5.708613] AppArmor: AppArmor Filesystem Enabled [ 5.708671] pnp: PnP ACPI init [ 5.709176] system 00:01: [io 0x0680-0x069f] has been reserved [ 5.709186] system 00:01: [io 0x0400-0x047f] has been reserved [ 5.709193] system 00:01: [io 0x0500-0x05fe] has been reserved [ 5.709199] system 00:01: [io 0x0600-0x061f] has been reserved [ 5.709702] system 00:02: [io 0x0a00-0x0a0f] has been reserved [ 5.709712] system 00:02: [io 0x0a10-0x0a1f] has been reserved [ 8.437830] system 00:04: [mem 0xe0000000-0xefffffff] could not be reserved [ 8.437843] system 00:04: [mem 0xfed01000-0xfed01fff] has been reserved [ 8.437850] system 00:04: [mem 0xfed03000-0xfed03fff] has been reserved [ 8.437856] system 00:04: [mem 0xfed04000-0xfed04fff] has been reserved [ 8.437862] system 00:04: [mem 0xfed0c000-0xfed0ffff] has been reserved [ 8.437868] system 00:04: [mem 0xfed08000-0xfed08fff] has been reserved [ 8.437874] system 00:04: [mem 0xfed1c000-0xfed1cfff] has been reserved [ 8.437880] system 00:04: [mem 0xfee00000-0xfeefffff] could not be reserved [ 8.437886] system 00:04: [mem 0xfef00000-0xfeffffff] has been reserved [ 8.438622] pnp: PnP ACPI: found 5 devices [ 8.448968] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns [ 8.449167] NET: Registered PF_INET protocol family [ 8.449359] IP idents hash table entries: 65536 (order: 7, 524288 bytes, linear) [ 8.481626] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear) [ 8.481710] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) [ 8.481810] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear) [ 8.482169] TCP bind hash table entries: 32768 (order: 8, 1048576 bytes, linear) [ 8.482505] TCP: Hash tables configured (established 32768 bind 32768) [ 8.482655] UDP hash table entries: 2048 (order: 5, 131072 bytes, linear) [ 8.482761] UDP-Lite hash table entries: 2048 (order: 5, 131072 bytes, linear) [ 8.482929] NET: Registered PF_UNIX/PF_LOCAL protocol family [ 8.482953] NET: Registered PF_XDP protocol family [ 8.482978] pci 0000:00:1c.0: bridge window [io 0x1000-0x0fff] to [bus 01] add_size 1000 [ 8.482991] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000 add_align 100000 [ 8.483001] pci 0000:00:1c.2: bridge window [io 0x1000-0x0fff] to [bus 02] add_size 1000 [ 8.483008] pci 0000:00:1c.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000 add_align 100000 [ 8.483016] pci 0000:00:1c.2: bridge window [mem 0x00100000-0x000fffff] to [bus 02] add_size 200000 add_align 100000 [ 8.483026] pci 0000:00:1c.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000 add_align 100000 [ 8.483052] pci 0000:00:1c.0: bridge window [mem size 0x00200000 64bit pref]: can't assign; no space [ 8.483059] pci 0000:00:1c.0: bridge window [mem size 0x00200000 64bit pref]: failed to assign [ 8.483067] pci 0000:00:1c.2: bridge window [mem size 0x00200000]: can't assign; no space [ 8.483072] pci 0000:00:1c.2: bridge window [mem size 0x00200000]: failed to assign [ 8.483080] pci 0000:00:1c.2: bridge window [mem size 0x00200000 64bit pref]: can't assign; no space [ 8.483086] pci 0000:00:1c.2: bridge window [mem size 0x00200000 64bit pref]: failed to assign [ 8.483094] pci 0000:00:1c.3: bridge window [mem size 0x00200000 64bit pref]: can't assign; no space [ 8.483100] pci 0000:00:1c.3: bridge window [mem size 0x00200000 64bit pref]: failed to assign [ 8.483108] pci 0000:00:1c.0: bridge window [io 0x1000-0x1fff]: assigned [ 8.483115] pci 0000:00:1c.2: bridge window [io 0x2000-0x2fff]: assigned [ 8.483125] pci 0000:00:1c.3: bridge window [mem size 0x00200000 64bit pref]: can't assign; no space [ 8.483131] pci 0000:00:1c.3: bridge window [mem size 0x00200000 64bit pref]: failed to assign [ 8.483138] pci 0000:00:1c.2: bridge window [mem size 0x00200000]: can't assign; no space [ 8.483143] pci 0000:00:1c.2: bridge window [mem size 0x00200000]: failed to assign [ 8.483151] pci 0000:00:1c.2: bridge window [mem size 0x00200000 64bit pref]: can't assign; no space [ 8.483157] pci 0000:00:1c.2: bridge window [mem size 0x00200000 64bit pref]: failed to assign [ 8.483164] pci 0000:00:1c.0: bridge window [mem size 0x00200000 64bit pref]: can't assign; no space [ 8.483170] pci 0000:00:1c.0: bridge window [mem size 0x00200000 64bit pref]: failed to assign [ 8.483179] pci 0000:00:1c.0: PCI bridge to [bus 01] [ 8.483187] pci 0000:00:1c.0: bridge window [io 0x1000-0x1fff] [ 8.483195] pci 0000:00:1c.0: bridge window [mem 0xb0400000-0xb07fffff] [ 8.483206] pci 0000:00:1c.2: PCI bridge to [bus 02] [ 8.483212] pci 0000:00:1c.2: bridge window [io 0x2000-0x2fff] [ 8.483225] pci 0000:00:1c.3: PCI bridge to [bus 03] [ 8.483231] pci 0000:00:1c.3: bridge window [io 0xd000-0xdfff] [ 8.483238] pci 0000:00:1c.3: bridge window [mem 0xb0a00000-0xb0afffff] [ 8.483249] pci_bus 0000:00: resource 4 [io 0x0070-0x0077] [ 8.483255] pci_bus 0000:00: resource 5 [io 0x0000-0x006f window] [ 8.483261] pci_bus 0000:00: resource 6 [io 0x0078-0x0cf7 window] [ 8.483266] pci_bus 0000:00: resource 7 [io 0x0d00-0xffff window] [ 8.483272] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000fffff window] [ 8.483278] pci_bus 0000:00: resource 9 [mem 0xa0000000-0xb0b17fff window] [ 8.483284] pci_bus 0000:01: resource 0 [io 0x1000-0x1fff] [ 8.483289] pci_bus 0000:01: resource 1 [mem 0xb0400000-0xb07fffff] [ 8.483295] pci_bus 0000:02: resource 0 [io 0x2000-0x2fff] [ 8.483301] pci_bus 0000:03: resource 0 [io 0xd000-0xdfff] [ 8.483306] pci_bus 0000:03: resource 1 [mem 0xb0a00000-0xb0afffff] [ 8.483978] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x0c len=1 data=0x10 [ 8.483993] PCI: CLS 64 bytes, default 64 [ 8.484019] PCI-DMA: Using software bounce buffering for IO (SWIOTLB) [ 8.484024] software IO TLB: mapped [mem 0x0000000095615000-0x0000000099615000] (64MB) [ 8.484169] Trying to unpack rootfs image as initramfs... [ 8.484988] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x3741594d34d, max_idle_ns: 881590420564 ns [ 8.485157] clocksource: Switched to clocksource tsc [ 8.485456] iosf_mbi_pci 0000:00:00.0: vgaarb: pci_notify [ 8.485493] iosf_mbi_pci 0000:00:00.0: runtime IRQ mapping not provided by arch [ 8.485548] iosf_mbi_pci 0000:00:00.0: vgaarb: pci_notify [ 8.487115] Initialise system trusted keyrings [ 8.487166] Key type blacklist registered [ 8.487406] workingset: timestamp_bits=36 max_order=20 bucket_order=0 [ 8.487490] zbud: loaded [ 8.488372] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 8.488746] fuse: init (API version 7.41) [ 8.489156] integrity: Platform Keyring initialized [ 8.526671] Key type asymmetric registered [ 8.526690] Asymmetric key parser 'x509' registered [ 8.526789] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) [ 8.526922] io scheduler mq-deadline registered [ 8.529545] ledtrig-cpu: registered to indicate activity on CPUs [ 8.529612] pciehp: pcie_port_service_register = 0 [ 8.529645] pcieport 0000:00:1c.0: vgaarb: pci_notify [ 8.529658] pcieport 0000:00:1c.0: runtime IRQ mapping not provided by arch [ 8.530095] pcieport 0000:00:1c.0: bwctrl: enabled with IRQ 87 [ 8.530122] pcieport 0000:00:1c.0: save config 0x00: 0x0f488086 [ 8.530131] pcieport 0000:00:1c.0: save config 0x04: 0x00100407 [ 8.530137] pcieport 0000:00:1c.0: save config 0x08: 0x06040011 [ 8.530143] pcieport 0000:00:1c.0: save config 0x0c: 0x00810010 [ 8.530149] pcieport 0000:00:1c.0: save config 0x10: 0x00000000 [ 8.530155] pcieport 0000:00:1c.0: save config 0x14: 0x00000000 [ 8.530161] pcieport 0000:00:1c.0: save config 0x18: 0x00010100 [ 8.530167] pcieport 0000:00:1c.0: save config 0x1c: 0x00001010 [ 8.530173] pcieport 0000:00:1c.0: save config 0x20: 0xb070b040 [ 8.530178] pcieport 0000:00:1c.0: save config 0x24: 0x0001fff1 [ 8.530184] pcieport 0000:00:1c.0: save config 0x28: 0x00000000 [ 8.530190] pcieport 0000:00:1c.0: save config 0x2c: 0x00000000 [ 8.530196] pcieport 0000:00:1c.0: save config 0x30: 0x00000000 [ 8.530201] pcieport 0000:00:1c.0: save config 0x34: 0x00000040 [ 8.530207] pcieport 0000:00:1c.0: save config 0x38: 0x00000000 [ 8.530213] pcieport 0000:00:1c.0: save config 0x3c: 0x0012010b [ 8.530245] pcieport 0000:00:1c.0: vgaarb: pci_notify [ 8.530267] pcieport 0000:00:1c.2: vgaarb: pci_notify [ 8.530279] pcieport 0000:00:1c.2: runtime IRQ mapping not provided by arch [ 8.530551] pcieport 0000:00:1c.2: bwctrl: enabled with IRQ 88 [ 8.530573] pcieport 0000:00:1c.2: save config 0x00: 0x0f4c8086 [ 8.530581] pcieport 0000:00:1c.2: save config 0x04: 0x00100407 [ 8.530587] pcieport 0000:00:1c.2: save config 0x08: 0x06040011 [ 8.530593] pcieport 0000:00:1c.2: save config 0x0c: 0x00810010 [ 8.530599] pcieport 0000:00:1c.2: save config 0x10: 0x00000000 [ 8.530605] pcieport 0000:00:1c.2: save config 0x14: 0x00000000 [ 8.530611] pcieport 0000:00:1c.2: save config 0x18: 0x00020200 [ 8.530617] pcieport 0000:00:1c.2: save config 0x1c: 0x00002020 [ 8.530623] pcieport 0000:00:1c.2: save config 0x20: 0x0000fff0 [ 8.530628] pcieport 0000:00:1c.2: save config 0x24: 0x0001fff1 [ 8.530634] pcieport 0000:00:1c.2: save config 0x28: 0x00000000 [ 8.530640] pcieport 0000:00:1c.2: save config 0x2c: 0x00000000 [ 8.530645] pcieport 0000:00:1c.2: save config 0x30: 0x00000000 [ 8.530651] pcieport 0000:00:1c.2: save config 0x34: 0x00000040 [ 8.530657] pcieport 0000:00:1c.2: save config 0x38: 0x00000000 [ 8.530662] pcieport 0000:00:1c.2: save config 0x3c: 0x0012030b [ 8.530689] pcieport 0000:00:1c.2: vgaarb: pci_notify [ 8.530710] pcieport 0000:00:1c.3: vgaarb: pci_notify [ 8.530721] pcieport 0000:00:1c.3: runtime IRQ mapping not provided by arch [ 8.530987] pcieport 0000:00:1c.3: bwctrl: enabled with IRQ 89 [ 8.531010] pcieport 0000:00:1c.3: save config 0x00: 0x0f4e8086 [ 8.531019] pcieport 0000:00:1c.3: save config 0x04: 0x00100407 [ 8.531025] pcieport 0000:00:1c.3: save config 0x08: 0x06040011 [ 8.531031] pcieport 0000:00:1c.3: save config 0x0c: 0x00810010 [ 8.531036] pcieport 0000:00:1c.3: save config 0x10: 0x00000000 [ 8.531042] pcieport 0000:00:1c.3: save config 0x14: 0x00000000 [ 8.531048] pcieport 0000:00:1c.3: save config 0x18: 0x00030300 [ 8.531054] pcieport 0000:00:1c.3: save config 0x1c: 0x0000d0d0 [ 8.531060] pcieport 0000:00:1c.3: save config 0x20: 0xb0a0b0a0 [ 8.531065] pcieport 0000:00:1c.3: save config 0x24: 0x0001fff1 [ 8.531071] pcieport 0000:00:1c.3: save config 0x28: 0x00000000 [ 8.531077] pcieport 0000:00:1c.3: save config 0x2c: 0x00000000 [ 8.531082] pcieport 0000:00:1c.3: save config 0x30: 0x00000000 [ 8.531088] pcieport 0000:00:1c.3: save config 0x34: 0x00000040 [ 8.531094] pcieport 0000:00:1c.3: save config 0x38: 0x00000000 [ 8.531100] pcieport 0000:00:1c.3: save config 0x3c: 0x0012040a [ 8.531128] pcieport 0000:00:1c.3: vgaarb: pci_notify [ 8.531219] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 [ 9.445197] Freeing initrd memory: 134228K [ 10.174733] ACPI: AC: AC Adapter [ADP1] (on-line) [ 10.174901] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0 [ 10.175123] ACPI: button: Power Button [PWRB] [ 10.175129] ACPI: Driver [button] successfully bound to device [PWRB] [ 10.175135] ACPI: Found driver [button] for device [PWRB] [ 10.175220] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1 [ 10.175426] ACPI: button: Sleep Button [SLPB] [ 10.175432] ACPI: Driver [button] successfully bound to device [SLPB] [ 10.175436] ACPI: Found driver [button] for device [SLPB] [ 10.175523] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input2 [ 10.175727] ACPI: button: Lid Switch [LID0] [ 10.175733] ACPI: Driver [button] successfully bound to device [LID0] [ 10.175737] ACPI: Found driver [button] for device [LID0] [ 10.175822] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3 [ 10.176039] ACPI: button: Power Button [PWRF] [ 10.176044] ACPI: Driver [button] successfully bound to device [PWRF] [ 10.176048] ACPI: Found driver [button] for device [PWRF] [ 10.184415] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled [ 10.184720] 00:03: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A [ 10.209915] ACPI: Device [ISP0] status [00000000] [ 10.209996] ACPI: Device [H_EC] status [00000000] [ 10.210033] ACPI: Device [BAT0] status [00000000] [ 10.210069] ACPI: Device [BAT1] status [00000000] [ 10.210104] ACPI: Device [BAT2] status [00000000] [ 10.210163] ACPI: Device [WPCN] status [00000000] [ 10.210218] ACPI: Device [UAR5] status [00000000] [ 10.210274] ACPI: Device [UAR8] status [00000000] [ 10.210568] ACPI: Device [LPTE] status [00000000] [ 10.210850] ACPI: Device [PS2K] status [00000000] [ 10.211133] ACPI: Device [PS2M] status [00000000] [ 10.211170] ACPI: Device [SSPI] status [00000000] [ 10.211205] ACPI: Device [SGPI] status [00000000] [ 10.211240] ACPI: Device [SHWM] status [00000000] [ 10.211274] ACPI: Device [SCPI] status [00000000] [ 10.211554] ACPI: Device [UAR1] status [00000000] [ 10.211836] ACPI: Device [UAR2] status [00000000] [ 13.460544] ACPI: Device [BAT2] status [00000000] [ 13.460646] ACPI: Device [EHC1] status [00000000] [ 13.460660] ACPI: Device [HUBN] status [0000000f] [ 13.460674] ACPI: Device [PR01] status [0000000f] [ 13.460685] ACPI: Device [PR11] status [0000000f] [ 13.460696] ACPI: Device [PR12] status [0000000f] [ 13.460707] ACPI: Device [PR13] status [0000000f] [ 13.460718] ACPI: Device [PR14] status [0000000f] [ 13.460729] ACPI: Device [PR15] status [0000000f] [ 13.460740] ACPI: Device [PR16] status [0000000f] [ 13.460751] ACPI: Device [PR17] status [0000000f] [ 13.460761] ACPI: Device [PR18] status [0000000f] [ 13.461909] ACPI: Device [EM41] status [00000000] [ 13.461940] ACPI: Device [CARD] status [0000000f] [ 13.489476] ACPI: Device [OTG1] status [00000000] [ 13.517644] ACPI: Device [LPEA] status [00000000] [ 13.546381] ACPI: Device [LPA2] status [00000000] [ 13.546460] ACPI: Device [ADMA] status [0000000f] [ 13.576770] ACPI: Device [GPED] status [00000000] [ 13.603255] ACPI: Device [PIND] status [00000000] [ 13.630063] hpet: number irqs doesn't agree with number of timers [ 13.630160] Linux agpgart interface v0.103 [ 13.638896] loop: module loaded [ 13.639601] tun: Universal TUN/TAP device driver, 1.6 [ 13.639879] PPP generic driver version 2.4.2 [ 13.640715] VFIO - User Level meta-driver version: 0.3 [ 13.640944] xhci_hcd 0000:00:14.0: vgaarb: pci_notify [ 13.640958] xhci_hcd 0000:00:14.0: runtime IRQ mapping not provided by arch [ 13.658485] xhci_hcd 0000:00:14.0: enabling bus mastering [ 13.658501] xhci_hcd 0000:00:14.0: xHCI Host Controller [ 13.658528] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1 [ 13.659608] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x0000000000009810 [ 13.659621] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported [ 13.659931] xhci_hcd 0000:00:14.0: xHCI Host Controller [ 13.659942] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2 [ 13.659952] xhci_hcd 0000:00:14.0: Host supports USB 3.0 SuperSpeed [ 13.660100] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.13 [ 13.660109] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 13.660114] usb usb1: Product: xHCI Host Controller [ 13.660119] usb usb1: Manufacturer: Linux 6.13.0+ xhci-hcd [ 13.660123] usb usb1: SerialNumber: 0000:00:14.0 [ 13.685722] hub 1-0:1.0: USB hub found [ 13.685760] hub 1-0:1.0: 6 ports detected [ 14.086273] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.13 [ 14.086287] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 14.086293] usb usb2: Product: xHCI Host Controller [ 14.086297] usb usb2: Manufacturer: Linux 6.13.0+ xhci-hcd [ 14.086302] usb usb2: SerialNumber: 0000:00:14.0 [ 14.113122] hub 2-0:1.0: USB hub found [ 14.113162] hub 2-0:1.0: 1 port detected [ 14.197230] xhci_hcd 0000:00:14.0: vgaarb: pci_notify [ 14.197368] i8042: PNP: No PS/2 controller found. [ 14.197779] mousedev: PS/2 mouse device common for all mice [ 14.198986] rtc_cmos 00:00: RTC can wake from S4 [ 14.199419] rtc_cmos 00:00: registered as rtc0 [ 14.199456] rtc_cmos 00:00: setting system clock to 2025-03-04T09:57:35 UTC (1741082255) [ 14.199549] rtc_cmos 00:00: alarms up to one month, y3k, 242 bytes nvram [ 14.199577] i2c_dev: i2c /dev entries driver [ 14.199628] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log. [ 14.199661] device-mapper: uevent: version 1.0.3 [ 14.199793] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@xxxxxxxxxxxxxxx [ 14.199855] platform eisa.0: Probing EISA bus 0 [ 14.199863] platform eisa.0: EISA: Cannot allocate resource for mainboard [ 14.199869] platform eisa.0: Cannot allocate resource for EISA slot 1 [ 14.199874] platform eisa.0: Cannot allocate resource for EISA slot 2 [ 14.199878] platform eisa.0: Cannot allocate resource for EISA slot 3 [ 14.199883] platform eisa.0: Cannot allocate resource for EISA slot 4 [ 14.199888] platform eisa.0: Cannot allocate resource for EISA slot 5 [ 14.199892] platform eisa.0: Cannot allocate resource for EISA slot 6 [ 14.199897] platform eisa.0: Cannot allocate resource for EISA slot 7 [ 14.199901] platform eisa.0: Cannot allocate resource for EISA slot 8 [ 14.199906] platform eisa.0: EISA: Detected 0 cards [ 14.199916] intel_pstate: Intel P-state driver initializing [ 14.200858] efifb: probing for efifb [ 14.200881] efifb: No BGRT, not showing boot graphics [ 14.200885] efifb: framebuffer at 0xa0000, using 64k, total 64k [ 14.200890] efifb: mode is 640x480x1, linelength=80, pages=1 [ 14.200895] efifb: scrolling: redraw [ 14.200897] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0 [ 14.201028] fbcon: Deferring console take-over [ 14.201034] fb0: EFI VGA frame buffer device [ 14.201312] drop_monitor: Initializing network drop monitor service [ 14.201533] NET: Registered PF_INET6 protocol family [ 14.226855] Segment Routing with IPv6 [ 14.226897] In-situ OAM (IOAM) with IPv6 [ 14.226958] NET: Registered PF_PACKET protocol family [ 14.227369] Key type dns_resolver registered [ 14.228259] ENERGY_PERF_BIAS: Set to 'normal', was 'performance' [ 14.228640] microcode: Current revision: 0x0000090d [ 14.228954] IPI shorthand broadcast: enabled [ 14.234284] sched_clock: Marking stable (14232006097, 1063224)->(14301664386, -68595065) [ 14.235149] registered taskstats version 1 [ 14.235792] Loading compiled-in X.509 certificates [ 14.237915] Loaded X.509 cert 'Build time autogenerated kernel key: 0148860fbf465f5930d0bb935fc27af3d1b29564' [ 14.243287] Demotion targets for Node 0: null [ 14.244589] Key type .fscrypt registered [ 14.244596] Key type fscrypt-provisioning registered [ 14.266668] cryptd: max_cpu_qlen set to 1000 [ 14.337466] usb 1-3: new high-speed USB device number 2 using xhci_hcd [ 14.475768] usb 1-3: New USB device found, idVendor=04d8, idProduct=000a, bcdDevice= 1.00 [ 14.475784] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 14.475789] usb 1-3: Product: Simple CDC Device Demo [ 14.475794] usb 1-3: Manufacturer: Microchip Technology Inc. [ 15.176963] ACPI: Device [BAT1] status [0000000f] [ 15.176978] ACPI: battery: Slot [BAT1] (battery absent) [ 15.202449] ACPI: Driver [battery] successfully bound to device [BAT1] [ 15.202456] ACPI: Found driver [battery] for device [BAT1] [ 15.266533] Key type encrypted registered [ 15.266548] AppArmor: AppArmor sha256 policy hashing enabled [ 15.266578] ima: No TPM chip found, activating TPM-bypass! [ 15.266590] Loading compiled-in module X.509 certificates [ 15.268437] Loaded X.509 cert 'Build time autogenerated kernel key: 0148860fbf465f5930d0bb935fc27af3d1b29564' [ 15.268445] ima: Allocated hash algorithm: sha1 [ 15.268462] ima: No architecture policies found [ 15.268511] evm: Initialising EVM extended attributes: [ 15.268515] evm: security.selinux [ 15.268519] evm: security.SMACK64 [ 15.268522] evm: security.SMACK64EXEC [ 15.268524] evm: security.SMACK64TRANSMUTE [ 15.268527] evm: security.SMACK64MMAP [ 15.268530] evm: security.apparmor [ 15.268532] evm: security.ima [ 15.268535] evm: security.capability [ 15.268538] evm: HMAC attrs: 0x1 [ 15.269462] PM: Magic number: 1:676:979 [ 15.270298] RAS: Correctable Errors collector initialized. [ 15.307047] clk: Disabling unused clocks [ 15.307083] PM: genpd: Disabling unused power domains [ 15.322928] Freeing unused decrypted memory: 2028K [ 15.325880] Freeing unused kernel image (initmem) memory: 4768K [ 15.326216] Write protecting the kernel read-only data: 32768k [ 15.327992] Freeing unused kernel image (rodata/data gap) memory: 924K [ 15.412774] x86/mm: Checked W+X mappings: passed, no W+X pages found. [ 15.412806] x86/mm: Checking user space page tables [ 15.494153] x86/mm: Checked W+X mappings: passed, no W+X pages found. [ 15.494169] Run /init as init process [ 15.494173] with arguments: [ 15.494177] /init [ 15.494181] with environment: [ 15.494184] HOME=/ [ 15.494187] TERM=linux [ 15.494190] BOOT_IMAGE=/vmlinuz-6.13.0+ [ 17.768845] dca service started, version 1.12.1 [ 17.780714] sdhci: Secure Digital Host Controller Interface driver [ 17.780725] sdhci: Copyright(c) Pierre Ossman [ 17.841671] ACPI: bus type drm_connector registered [ 17.847849] igb: Intel(R) Gigabit Ethernet Network Driver [ 17.847861] igb: Copyright (c) 2007-2014 Intel Corporation. [ 17.847905] igb 0000:03:00.0: vgaarb: pci_notify [ 17.847918] igb 0000:03:00.0: runtime IRQ mapping not provided by arch [ 17.852560] ahci 0000:00:13.0: vgaarb: pci_notify [ 17.852579] ahci 0000:00:13.0: runtime IRQ mapping not provided by arch [ 17.852588] ahci 0000:00:13.0: version 3.0 [ 17.855456] sdhci-pci 0000:00:17.0: vgaarb: pci_notify [ 17.855475] sdhci-pci 0000:00:17.0: runtime IRQ mapping not provided by arch [ 17.855482] sdhci-pci 0000:00:17.0: SDHCI controller found [8086:0f50] (rev 11) [ 17.858975] igb 0000:03:00.0: save config 0x00: 0x15338086 [ 17.858990] igb 0000:03:00.0: save config 0x04: 0x00100007 [ 17.858998] igb 0000:03:00.0: save config 0x08: 0x02000003 [ 17.859005] igb 0000:03:00.0: save config 0x0c: 0x00000010 [ 17.859012] igb 0000:03:00.0: save config 0x10: 0xb0a00000 [ 17.859019] igb 0000:03:00.0: save config 0x14: 0x00000000 [ 17.859026] igb 0000:03:00.0: save config 0x18: 0x0000d001 [ 17.859033] igb 0000:03:00.0: save config 0x1c: 0xb0a80000 [ 17.859039] igb 0000:03:00.0: save config 0x20: 0x00000000 [ 17.859055] igb 0000:03:00.0: save config 0x24: 0x00000000 [ 17.859062] igb 0000:03:00.0: save config 0x28: 0x00000000 [ 17.859070] igb 0000:03:00.0: save config 0x2c: 0x0000ffff [ 17.859077] igb 0000:03:00.0: save config 0x30: 0x00000000 [ 17.859083] igb 0000:03:00.0: save config 0x34: 0x00000040 [ 17.859090] igb 0000:03:00.0: save config 0x38: 0x00000000 [ 17.859097] igb 0000:03:00.0: save config 0x3c: 0x0000010a [ 17.859100] ahci 0000:00:13.0: controller can't do DEVSLP, turning off [ 17.859329] ahci 0000:00:13.0: AHCI vers 0001.0300, 32 command slots, 3 Gbps, SATA mode [ 17.859340] ahci 0000:00:13.0: 1/2 ports implemented (port mask 0x2) [ 17.859346] ahci 0000:00:13.0: flags: 64bit ncq pm led clo pio slum part deso [ 17.859857] mmc0: SDHCI controller on PCI [0000:00:17.0] using ADMA [ 17.859920] sdhci-pci 0000:00:17.0: vgaarb: pci_notify [ 17.860309] scsi host0: ahci [ 17.861778] scsi host1: ahci [ 17.862168] ata1: DUMMY [ 17.862177] ata2: SATA max UDMA/133 abar m2048@0xb0b17000 port 0xb0b17180 irq 91 lpm-pol 3 [ 17.862214] ahci 0000:00:13.0: vgaarb: pci_notify [ 17.890295] pps pps0: new PPS source ptp0 [ 17.890417] igb 0000:03:00.0: added PHC on eth0 [ 17.890440] igb 0000:03:00.0: Intel(R) Gigabit Ethernet Network Connection [ 17.890445] igb 0000:03:00.0: eth0: (PCIe:2.5Gb/s:Width x1) 00:30:64:a2:59:b0 [ 17.890495] igb 0000:03:00.0: eth0: PBA No: 000300-000 [ 17.890499] igb 0000:03:00.0: Using MSI-X interrupts. 4 rx queue(s), 4 tx queue(s) [ 17.890556] igb 0000:03:00.0: vgaarb: pci_notify [ 18.054379] mmc0: Failed to initialize a non-removable card [ 18.106580] sdhci-pci 0000:00:17.0: save config 0x00: 0x0f508086 [ 18.106592] sdhci-pci 0000:00:17.0: save config 0x04: 0x00100006 [ 18.106599] sdhci-pci 0000:00:17.0: save config 0x08: 0x08050111 [ 18.106605] sdhci-pci 0000:00:17.0: save config 0x0c: 0x00000010 [ 18.106611] sdhci-pci 0000:00:17.0: save config 0x10: 0xb0b16000 [ 18.106618] sdhci-pci 0000:00:17.0: save config 0x14: 0xb0b15000 [ 18.106624] sdhci-pci 0000:00:17.0: save config 0x18: 0x00000000 [ 18.106630] sdhci-pci 0000:00:17.0: save config 0x1c: 0x00000000 [ 18.106636] sdhci-pci 0000:00:17.0: save config 0x20: 0x00000000 [ 18.106642] sdhci-pci 0000:00:17.0: save config 0x24: 0x00000000 [ 18.106648] sdhci-pci 0000:00:17.0: save config 0x28: 0x00000000 [ 18.106654] sdhci-pci 0000:00:17.0: save config 0x2c: 0x00000000 [ 18.106660] sdhci-pci 0000:00:17.0: save config 0x30: 0x00000000 [ 18.106666] sdhci-pci 0000:00:17.0: save config 0x34: 0x00000080 [ 18.106672] sdhci-pci 0000:00:17.0: save config 0x38: 0x00000000 [ 18.106678] sdhci-pci 0000:00:17.0: save config 0x3c: 0x0000010a [ 18.106697] sdhci-pci 0000:00:17.0: PME# enabled [ 18.174137] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300) [ 18.174357] ata2.00: ATA-11: SATA SSD, SBFMB1.1, max UDMA/133 [ 18.174398] ata2.00: 234441648 sectors, multi 16: LBA48 NCQ (depth 32), AA [ 18.175217] ata2.00: configured for UDMA/133 [ 18.185767] scsi 1:0:0:0: Direct-Access ATA SATA SSD B1.1 PQ: 0 ANSI: 5 [ 18.186627] sd 1:0:0:0: [sda] 234441648 512-byte logical blocks: (120 GB/112 GiB) [ 18.186667] sd 1:0:0:0: [sda] Write Protect is off [ 18.186675] sd 1:0:0:0: [sda] Mode Sense: 00 3a 00 00 [ 18.186742] sd 1:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA [ 18.186857] sd 1:0:0:0: [sda] Preferred minimum I/O size 512 bytes [ 18.187590] sd 1:0:0:0: Attached scsi generic sg0 type 0 [ 18.207680] sda: sda1 sda2 sda3 [ 18.208230] sd 1:0:0:0: [sda] Attached SCSI disk [ 18.215983] igb 0000:03:00.0 enp3s0: renamed from eth0 [ 19.573284] i915 0000:00:02.0: vgaarb: pci_notify [ 19.573308] i915 0000:00:02.0: runtime IRQ mapping not provided by arch [ 19.584963] i915 0000:00:02.0: [drm] Found valleyview (device ID 0f31) display version 7.00 stepping N/A [ 19.586617] i915 0000:00:02.0: vgaarb: deactivate vga console [ 19.691957] ACPI: \_SB_.PCI0.GFX0: ACPI: Error attaching device data [ 19.717809] ACPI: \_SB_.PCI0.GFX0: ACPI: Error attaching device data [ 19.743550] ACPI: \_SB_.PCI0.GFX0: ACPI: Error attaching device data [ 19.769316] ACPI: \_SB_.PCI0.GFX0: ACPI: Error attaching device data [ 19.795252] ACPI: \_SB_.PCI0.GFX0: ACPI: Error attaching device data [ 19.795845] i915 0000:00:02.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=io+mem:owns=io+mem [ 19.795859] i915 0000:00:02.0: vgaarb: decoding count now is: 1 [ 19.795865] i915 0000:00:02.0: vgaarb: __vga_tryget: 1 [ 19.795870] i915 0000:00:02.0: vgaarb: __vga_tryget: owns: 3 [ 19.795876] i915 0000:00:02.0: vgaarb: __vga_put [ 19.833973] EDID has corrupt header [ 19.833982] [00] BAD df 48 0f 09 0a 37 ee e0 4f b1 65 ca 30 39 e9 3e [ 19.833987] [00] BAD 40 52 8d 0d 81 ba 43 94 f0 dd fa 9e be 9d 7c 2b [ 19.833991] [00] BAD 4d 3c 4a fc 6b 59 df f2 a8 d8 49 2e e9 68 f2 9c [ 19.833994] [00] BAD a6 81 c4 50 4d e3 5b 5a ad b7 ff d3 91 a3 1b 5f [ 19.833997] [00] BAD 10 da d7 38 ea 3f b2 0a 89 3a f1 e8 a4 dc d6 35 [ 19.834001] [00] BAD c0 43 3e c0 05 f6 93 8f 07 ca e2 cc 1c 0c 47 5f [ 19.834004] [00] BAD 88 93 22 4b 94 64 6c 19 a9 13 8c d3 61 c6 ad 91 [ 19.834007] [00] BAD ca ad 52 7e 86 aa 5f 00 57 05 7a 61 9f 2b af 48 [ 20.478235] [drm] Initialized i915 1.6.0 for 0000:00:02.0 on minor 0 [ 20.812237] ACPI: video: Video Device [GFX0] (multi-head: yes rom: no post: no) [ 20.869140] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input4 [ 20.949160] ACPI: Driver [video] successfully bound to device [GFX0] [ 20.949173] ACPI: Found driver [video] for device [GFX0] [ 20.967535] fbcon: i915drmfb (fb0) is primary device [ 20.967543] fbcon: Deferring console take-over [ 20.967551] i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device [ 21.001640] i915 0000:00:02.0: vgaarb: pci_notify [ 21.111485] lpc_ich 0000:00:1f.0: vgaarb: pci_notify [ 21.111504] lpc_ich 0000:00:1f.0: runtime IRQ mapping not provided by arch [ 21.132046] lpc_ich 0000:00:1f.0: vgaarb: pci_notify [ 21.150733] i801_smbus 0000:00:1f.3: vgaarb: pci_notify [ 21.150752] i801_smbus 0000:00:1f.3: runtime IRQ mapping not provided by arch [ 21.181217] i801_smbus 0000:00:1f.3: SPD Write Disable is set [ 21.181274] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt [ 21.184123] ACPI: Device [ISP0] status [00000000] [ 21.185851] ACPI: Device [H_EC] status [00000000] [ 21.185906] ACPI: Device [BAT0] status [00000000] [ 21.185944] ACPI: Device [BAT1] status [00000000] [ 21.185981] ACPI: Device [BAT2] status [00000000] [ 21.186512] ACPI: Device [WPCN] status [00000000] [ 21.187084] ACPI: Device [UAR5] status [00000000] [ 21.231755] ACPI: Device [UAR8] status [00000000] [ 21.231770] i801_smbus 0000:00:1f.3: BIOS is accessing SMBus registers [ 21.231783] i801_smbus 0000:00:1f.3: Driver SMBus register access inhibited [ 21.232889] ACPI: Device [LPTE] status [00000000] [ 21.234271] ACPI: Device [PS2K] status [00000000] [ 21.235543] ACPI: Device [PS2M] status [00000000] [ 21.236179] ACPI: Device [SSPI] status [00000000] [ 21.245330] ACPI: Device [SGPI] status [00000000] [ 21.245978] ACPI: Device [SHWM] status [00000000] [ 21.252553] ACPI: Device [SCPI] status [00000000] [ 21.254766] ACPI: Device [UAR1] status [00000000] [ 21.256061] ACPI: Device [UAR2] status [00000000] [ 22.951915] ACPI: Device [BAT2] status [00000000] [ 22.952017] ACPI: Device [EHC1] status [00000000] [ 22.952032] ACPI: Device [HUBN] status [0000000f] [ 22.952045] ACPI: Device [PR01] status [0000000f] [ 22.952056] ACPI: Device [PR11] status [0000000f] [ 22.952068] ACPI: Device [PR12] status [0000000f] [ 22.952079] ACPI: Device [PR13] status [0000000f] [ 22.952091] ACPI: Device [PR14] status [0000000f] [ 22.952102] ACPI: Device [PR15] status [0000000f] [ 22.952113] ACPI: Device [PR16] status [0000000f] [ 22.952124] ACPI: Device [PR17] status [0000000f] [ 22.952134] ACPI: Device [PR18] status [0000000f] [ 22.976399] ACPI: Device [EM41] status [00000000] [ 22.976421] ACPI: Device [CARD] status [0000000f] [ 22.977393] ACPI: Device [OTG1] status [00000000] [ 22.984800] ACPI: Device [LPEA] status [00000000] [ 22.985746] ACPI: Device [LPA2] status [00000000] [ 22.985929] ACPI: Device [ADMA] status [0000000f] [ 22.988978] ACPI: Device [GPED] status [00000000] [ 22.989946] ACPI: Device [PIND] status [00000000] [ 22.990452] i801_smbus 0000:00:1f.3: vgaarb: pci_notify [ 24.181553] raid6: sse2x4 gen() 4758 MB/s [ 24.249551] raid6: sse2x2 gen() 4561 MB/s [ 24.317552] raid6: sse2x1 gen() 3436 MB/s [ 24.317558] raid6: using algorithm sse2x4 gen() 4758 MB/s [ 24.385551] raid6: .... xor() 1399 MB/s, rmw enabled [ 24.385556] raid6: using ssse3x2 recovery algorithm [ 24.390576] xor: measuring software checksum speed [ 24.391015] prefetch64-sse : 7654 MB/sec [ 24.391503] generic_sse : 6798 MB/sec [ 24.391507] xor: using function: prefetch64-sse (7654 MB/sec) [ 24.395931] async_tx: api initialized (async) [ 25.201597] Btrfs loaded, zoned=yes, fsverity=yes [ 25.523038] fbcon: Taking over console [ 25.531601] Console: switching to colour frame buffer device 128x48 [ 25.544503] EXT4-fs (dm-0): mounted filesystem d74a2de1-3ab3-4289-9816-68fc4179a015 ro with ordered data mode. Quota mode: none. [ 26.204921] systemd[1]: Inserted module 'autofs4' [ 26.282380] systemd[1]: systemd 245.4-4ubuntu3.24 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=hybrid) [ 26.282781] systemd[1]: Detected architecture x86-64. [ 26.308035] systemd[1]: Set hostname to <bttest>. [ 27.082519] systemd[1]: Configuration file /run/systemd/system/netplan-ovs-cleanup.service is marked world-inaccessible. This has no effect as configuration data is accessible via APIs without restrictions. Proceeding anyway. [ 27.319751] systemd[1]: Created slice system-modprobe.slice. [ 27.321018] systemd[1]: Created slice system-systemd\x2dfsck.slice. [ 27.322055] systemd[1]: Created slice User and Session Slice. [ 27.322208] systemd[1]: Started ntp-systemd-netif.path. [ 27.322405] systemd[1]: Started Forward Password Requests to Wall Directory Watch. [ 27.323032] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. [ 27.323244] systemd[1]: Reached target User and Group Name Lookups. [ 27.323312] systemd[1]: Reached target Slices. [ 27.323365] systemd[1]: Reached target Mounting snaps. [ 27.323432] systemd[1]: Reached target System Time Set. [ 27.323694] systemd[1]: Listening on Device-mapper event daemon FIFOs. [ 27.324041] systemd[1]: Listening on LVM2 poll daemon socket. [ 27.324257] systemd[1]: Listening on multipathd control socket. [ 27.324582] systemd[1]: Listening on Syslog Socket. [ 27.324900] systemd[1]: Listening on fsck to fsckd communication Socket. [ 27.325116] systemd[1]: Listening on initctl Compatibility Named Pipe. [ 27.325776] systemd[1]: Listening on Journal Audit Socket. [ 27.326122] systemd[1]: Listening on Journal Socket (/dev/log). [ 27.326545] systemd[1]: Listening on Journal Socket. [ 27.327071] systemd[1]: Listening on Network Service Netlink Socket. [ 27.327422] systemd[1]: Listening on udev Control Socket. [ 27.327657] systemd[1]: Listening on udev Kernel Socket. [ 27.366014] systemd[1]: Mounting Huge Pages File System... [ 27.369734] systemd[1]: Mounting POSIX Message Queue File System... [ 27.374148] systemd[1]: Mounting Kernel Debug File System... [ 27.378430] systemd[1]: Mounting Kernel Trace File System... [ 27.384263] systemd[1]: Starting Journal Service... [ 27.388334] systemd[1]: Starting Set the console keyboard layout... [ 27.392498] systemd[1]: Starting Create list of static device nodes for the current kernel... [ 27.397933] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling... [ 27.403168] systemd[1]: Starting Load Kernel Module chromeos_pstore... [ 27.403336] systemd[1]: Condition check resulted in Load Kernel Module drm being skipped. [ 27.410956] systemd[1]: Starting Load Kernel Module efi_pstore... [ 27.414591] systemd[1]: Starting Load Kernel Module pstore_blk... [ 27.421761] systemd[1]: Starting Load Kernel Module pstore_zone... [ 27.428411] systemd[1]: Starting Load Kernel Module ramoops... [ 27.428671] systemd[1]: Condition check resulted in OpenVSwitch configuration for cleanup being skipped. [ 27.430232] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. [ 27.430392] systemd[1]: Condition check resulted in File System Check on Root Device being skipped. [ 27.441706] systemd[1]: Starting Load Kernel Modules... [ 27.445475] systemd[1]: Starting Remount Root and Kernel File Systems... [ 27.449379] systemd[1]: Starting udev Coldplug all Devices... [ 27.453364] systemd[1]: Starting Uncomplicated firewall... [ 27.459261] systemd[1]: Mounted Huge Pages File System. [ 27.459728] systemd[1]: Mounted POSIX Message Queue File System. [ 27.460133] systemd[1]: Mounted Kernel Debug File System. [ 27.460493] systemd[1]: Mounted Kernel Trace File System. [ 27.466008] systemd[1]: Finished Create list of static device nodes for the current kernel. [ 27.467255] systemd[1]: modprobe@efi_pstore.service: Succeeded. [ 27.468067] systemd[1]: Finished Load Kernel Module efi_pstore. [ 27.473183] systemd[1]: modprobe@pstore_blk.service: Succeeded. [ 27.474052] systemd[1]: Finished Load Kernel Module pstore_blk. [ 27.475057] systemd[1]: modprobe@pstore_zone.service: Succeeded. [ 27.475937] systemd[1]: Finished Load Kernel Module pstore_zone. [ 27.478164] systemd[1]: modprobe@ramoops.service: Succeeded. [ 27.479026] systemd[1]: Finished Load Kernel Module ramoops. [ 27.506489] systemd[1]: Finished Uncomplicated firewall. [ 27.508967] EXT4-fs (dm-0): re-mounted d74a2de1-3ab3-4289-9816-68fc4179a015 r/w. Quota mode: none. [ 27.515039] systemd[1]: modprobe@chromeos_pstore.service: Succeeded. [ 27.515899] systemd[1]: Finished Load Kernel Module chromeos_pstore. [ 27.518343] systemd[1]: Finished Remount Root and Kernel File Systems. [ 27.529272] systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped. [ 27.545806] systemd[1]: Starting Create System Users... [ 27.549420] systemd[1]: Finished Load Kernel Modules. [ 27.559982] systemd[1]: Mounting FUSE Control File System... [ 27.565591] systemd[1]: Mounting Kernel Configuration File System... [ 27.573494] systemd[1]: Starting Apply Kernel Variables... [ 27.580907] systemd[1]: Mounted FUSE Control File System. [ 27.582487] systemd[1]: Mounted Kernel Configuration File System. [ 27.587665] systemd[1]: Finished Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling. [ 27.594446] systemd[1]: Finished Create System Users. [ 27.621933] systemd[1]: Starting Create Static Device Nodes in /dev... [ 27.648909] systemd[1]: Finished Apply Kernel Variables. [ 27.687742] systemd[1]: Finished Create Static Device Nodes in /dev. [ 27.706172] systemd[1]: Starting udev Kernel Device Manager... [ 27.739126] systemd[1]: Finished Set the console keyboard layout. [ 27.795999] systemd[1]: Started Journal Service. [ 29.810773] mei_txe 0000:00:1a.0: vgaarb: pci_notify [ 29.810794] mei_txe 0000:00:1a.0: runtime IRQ mapping not provided by arch [ 29.815917] cdc_acm 1-3:1.0: ttyACM0: USB ACM device [ 29.815995] usbcore: registered new interface driver cdc_acm [ 29.816001] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters [ 29.852694] mei_txe 0000:00:1a.0: vgaarb: pci_notify [ 30.211437] snd_hda_intel 0000:00:1b.0: vgaarb: pci_notify [ 30.211456] snd_hda_intel 0000:00:1b.0: runtime IRQ mapping not provided by arch [ 30.213325] snd_hda_intel 0000:00:1b.0: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915]) [ 30.213782] snd_hda_intel 0000:00:1b.0: vgaarb: pci_notify [ 30.318117] snd_hda_intel 0000:00:1b.0: CORB reset timeout#1, CORBRP = 0 [ 31.321166] snd_hda_intel 0000:00:1b.0: azx_get_response timeout, switching to polling mode: last cmd=0x000f0000 [ 31.817363] intel_rapl_common: Found RAPL domain package [ 31.817379] intel_rapl_common: Found RAPL domain core [ 32.001351] Adding 5242876k swap on /dev/mapper/vg00-swapvol. Priority:-2 extents:1 across:5242876k SS [ 32.329460] snd_hda_intel 0000:00:1b.0: No response from codec, disabling MSI: last cmd=0x000f0000 [ 33.337445] snd_hda_intel 0000:00:1b.0: Codec #0 probe error; disabling it... [ 33.442213] snd_hda_intel 0000:00:1b.0: CORB reset timeout#1, CORBRP = 0 [ 34.449465] snd_hda_intel 0000:00:1b.0: Codec #1 probe error; disabling it... [ 34.449481] snd_hda_intel 0000:00:1b.0: no codecs initialized [ 36.575077] alua: device handler registered [ 36.580791] emc: device handler registered [ 36.592308] rdac: device handler registered [ 37.055995] EXT4-fs (sda2): mounted filesystem 2cda00bd-3cfc-4500-9b44-e2dd8bf4c345 r/w with ordered data mode. Quota mode: none. [ 37.059132] EXT4-fs (dm-1): mounted filesystem 36e8c5fd-18e5-43a1-a1d0-448e6212ef66 r/w with ordered data mode. Quota mode: none. [ 37.103334] loop0: detected capacity change from 0 to 130448 [ 37.126011] loop1: detected capacity change from 0 to 130552 [ 37.126435] loop2: detected capacity change from 0 to 188072 [ 37.126724] loop3: detected capacity change from 0 to 188176 [ 37.145768] loop4: detected capacity change from 0 to 102072 [ 37.156886] systemd-journald[386]: Received client request to flush runtime journal. [ 37.166072] loop5: detected capacity change from 0 to 91008 [ 37.369398] audit: type=1400 audit(1741082278.667:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=680 comm="apparmor_parser" [ 37.369425] audit: type=1400 audit(1741082278.667:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=680 comm="apparmor_parser" [ 37.371865] audit: type=1400 audit(1741082278.667:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=683 comm="apparmor_parser" [ 37.372107] audit: type=1400 audit(1741082278.667:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=683 comm="apparmor_parser" [ 37.372121] audit: type=1400 audit(1741082278.667:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=683 comm="apparmor_parser" [ 37.375800] audit: type=1400 audit(1741082278.671:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/snapd/snap-confine" pid=679 comm="apparmor_parser" [ 37.375823] audit: type=1400 audit(1741082278.671:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=679 comm="apparmor_parser" [ 37.380254] audit: type=1400 audit(1741082278.675:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=684 comm="apparmor_parser" [ 37.384033] audit: type=1400 audit(1741082278.679:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/ntpd" pid=682 comm="apparmor_parser" [ 37.388969] audit: type=1400 audit(1741082278.683:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/tcpdump" pid=686 comm="apparmor_parser" [ 44.326017] igb 0000:03:00.0 enp3s0: igb: enp3s0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX [ 51.044027] kauditd_printk_skb: 21 callbacks suppressed [ 51.044038] audit: type=1400 audit(1741082292.339:33): apparmor="DENIED" operation="open" class="file" profile="/usr/sbin/ntpd" name="/snap/bin/" pid=778 comm="ntpd" requested_mask="r" denied_mask="r" fsuid=0 ouid=0 [ 54.784580] loop6: detected capacity change from 0 to 8 [10645.989545] perf: interrupt took too long (2521 > 2500), lowering kernel.perf_event_max_sample_rate to 79250 [14724.107469] perf: interrupt took too long (3167 > 3151), lowering kernel.perf_event_max_sample_rate to 63000 [19274.509479] perf: interrupt took too long (5161 > 3958), lowering kernel.perf_event_max_sample_rate to 38750 [22998.536705] ACPI: \_SB_.PCI0.RP01: ACPI: ACPI_NOTIFY_BUS_CHECK event [22998.536753] ACPI: \_SB_.PCI0.RP01: ACPI: OSL: Scheduling hotplug event 0 for deferred handling [22998.536934] ACPI: \_SB_.PCI0.RP01: acpiphp_glue: Bridge acquired in hotplug_event() [22998.536972] ACPI: \_SB_.PCI0.RP01: acpiphp_glue: Bus check in hotplug_event() [22998.537002] ACPI: \_SB_.PCI0.RP01: acpiphp_glue: Checking bridge in hotplug_event() [22998.537024] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x00 len=4 data=0x55551556 [22998.537066] PCI READ: res=0, bus=01 dev=00 func=0 pos=0x00 len=4 data=0x55551556 [22998.537094] ACPI: \_SB_.PCI0.RP01: acpiphp_glue: Enabling slot in acpiphp_check_bridge() [22998.537155] ACPI: Device [PXSX] status [0000000f] [22998.537206] ACPI: Device [D015] status [0000000f] [22998.537276] ACPI: \_SB_.PCI0.RP01: acpiphp_glue: Releasing bridge in hotplug_event()