lkml.org 
[lkml]   [2021]   [May]   [21]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
SubjectRe: linux 5.12 - fails to boot - soft lockup - CPU#0 stuck for 23s! - RIP smp_call_function_single
From
Date
On 5/20/21 3:21 AM, Borislav Petkov wrote:
> On Wed, May 19, 2021 at 09:12:04PM -0600, James Feeney wrote:
>
>> $ diff .config .config.old
>> 4983c4983,4984
>> < # CONFIG_X86_THERMAL_VECTOR is not set
>> ---
>>> CONFIG_X86_THERMAL_VECTOR=y
>>> CONFIG_X86_PKG_TEMP_THERMAL=m
>>
>> No joy. Still have the same soft lockups and full boots - the full
>> boots interrupted by some mystery delay.
>
> Which means, even with therm_throt disabled, it still locks up. Which
> can't be caused by my patch.
>
>> I don't know about these patches, modifying and moving the location of
>> therm_throt.c, so I'm not in a position to draw any conclusion from
>> these results.
>
> They're just moving the thermal interrupt functionality from the
> MCE code where they don't belong to the thermal code where they do.
> Otherwise there should be no change.
>
>> build 5.11? There are lots of 5.11 kernels from the Arch distribution
>> that I have run. Are you looking for a dmesg log from 5.11?
>
> Take the .config you're normally using, make sure it has
>
> CONFIG_X86_THERMAL_VECTOR=y
>
> and build with it plain 5.11 kernel. No patches ontop, no nothing.
>
> Then add
>
> debug ignore_loglevel log_buf_len=16M no_console_suspend systemd.log_target=null console=ttyS0,115200 console=tty0
>
> to its kernel command line and send me full dmesg again pls.
>

Hmm - for comparison, I'm attaching the full dmesg log for the 7bb39313cd62 build, the one in the git bisect immediately prior to your patch.

dmesglog.7bb39313cd62.full


> Looking how it sometimes boots and sometimes it locks up, try that a
> couple of times.
>

There are *no* 5.11 builds that lock-up.

>> So far, something looks quirky - somewhere. Timing related failures
>> can be a pain. Is there no useful information being provided by the
>> Call Trace in the dmesg log?
>
> What I'm seeing is that *sometimes* - not always - your CPU0 is not
> responding to the TLB flush IPI. Which is really weird. Have you had
> those always or did they start appearing with 5.12?
>

This all started with the 5.12 kernels, on this machine - never before.

> That's why I'm still scratching my head over how my patch would cause
> CPU0 not responding to IPIs.
>
> Well, *maybe* there's a little difference which my patch did: it does
> that APIC_LVTTHMR only on the BSP. And *maybe* there's a problem there,
> who knows with those old CPUs.
>
> So here's two more things to try:
>
> 1. On plain 5.12, with the same kernel cmdline params add also
>
> "idle=nomwait"
>
> to the kernel command line and boot with it a couple of times to see
> whether it still locks up.
>

On the Arch 5.12.0 kernel with "CONFIG_X86_THERMAL_VECTOR is not set", on the first boot, as before, it just hangs at "Trying to unpack rootfs image as initramfs...".

On the Arch 5.12.0 kernel with "CONFIG_X86_THERMAL_VECTOR=y", I got a couple of full boots, and then repeating "soft lockup", same as before. All in all, "idle=nomwait" makes no difference.

It seems significant that, *if* the system boots normally, then, from then on, it seems to run normally. Maybe the issue is something at-play only during the early boot process. Certainly, the issue seems to be at-play even before unpacking the rootfs, or maybe just after unpacking the rootfs. This happens before whatever is able to generate the "watchdog: BUG: soft lockup - CPU#0 stuck for 23s! [systemd-udevd:242]".


> 2. On plain 5.12, with the same kernel cmdline params apply this hunk
> ontop:
>
> ---
> diff --git a/drivers/thermal/intel/therm_throt.c b/drivers/thermal/intel/therm_throt.c
> index f8e882592ba5..42db48cd4666 100644
> --- a/drivers/thermal/intel/therm_throt.c
> +++ b/drivers/thermal/intel/therm_throt.c
> @@ -630,9 +630,8 @@ void intel_init_thermal(struct cpuinfo_x86 *c)
> if (!intel_thermal_supported(c))
> return;
>
> - /* On the BSP? */
> - if (c == &boot_cpu_data)
> - lvtthmr_init = apic_read(APIC_LVTTHMR);
> + lvtthmr_init = apic_read(APIC_LVTTHMR);
> + pr_info("%s: CPU%d, lvtthmr_init: 0x%x\n", __func__, cpu, lvtthmr_init);
>
> /*
> * First check if its enabled already, in which case there might
> ---
>
> That'll tell us the thermal sensor LVT on both CPUs.
>
> Also do that a couple of times - it'll be interesting to see what those
> values are *when* the box locks up.
>
> As always, catch full dmesg each time pls.
>
> Thx.
>

$ diff .config .config.old
4983,4984c4983
< CONFIG_X86_THERMAL_VECTOR=y
< CONFIG_X86_PKG_TEMP_THERMAL=m
---
> # CONFIG_X86_THERMAL_VECTOR is not set

It seems odd, that making one small change to the .config, results in the entire kernel being recompiled. Is there a way to avoid that?

Hmm - this version may be interesting. There are inconsistencies, in the sense of various different boot results, in 10 sequential boot events. The dmesg logs are attached.


$ tail -n3 dmesglog.5.12.lvtthmr.*
==> dmesglog.5.12.lvtthmr.1 <==
[ 3.755697] pci 0000:01:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[ 3.764074] PCI: CLS 64 bytes, default 64
[ 3.768186] Trying to unpack rootfs image as initramfs...

==> dmesglog.5.12.lvtthmr.10 <==
[ 147.270555] ACPI: Preparing to enter system sleep state S5
[ 147.278663] reboot: Power down
[ 147.284389] acpi_power_off called

==> dmesglog.5.12.lvtthmr.2 <==
[ 3.758020] pci 0000:01:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[ 3.766394] PCI: CLS 64 bytes, default 64
[ 3.770507] Trying to unpack rootfs image as initramfs...

==> dmesglog.5.12.lvtthmr.3 <==
[ 1.622582] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[ 1.629249] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[ 1.645854] ACPI: 6 ACPI AML tables successfully acquired and loaded

==> dmesglog.5.12.lvtthmr.4 <==
[ 501.491752] ACPI: Preparing to enter system sleep state S5
[ 501.499967] reboot: Power down
[ 501.505786] acpi_power_off called

==> dmesglog.5.12.lvtthmr.5 <==
[ 225.055556] ACPI: Preparing to enter system sleep state S5
[ 225.063645] reboot: Power down
[ 225.069318] acpi_power_off called

==> dmesglog.5.12.lvtthmr.6 <==
[ 150.364732] ACPI: Preparing to enter system sleep state S5
[ 150.373028] reboot: Power down
[ 150.378965] acpi_power_off called

==> dmesglog.5.12.lvtthmr.7 <==
[ 140.049778] ACPI: Preparing to enter system sleep state S5
[ 140.057886] reboot: Power down
[ 140.063536] acpi_power_off called

==> dmesglog.5.12.lvtthmr.8 <==
[ 1.623091] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[ 1.629757] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[ 1.646421] ACPI: 6 ACPI AML tables successfully acquired and loaded

==> dmesglog.5.12.lvtthmr.9 <==
[ 124.813366] ACPI: Preparing to enter system sleep state S5
[ 124.821411] reboot: Power down
[ 124.827059] acpi_power_off called

6 of the 10 are full boot, ending with acpi_power_off called. 2 of 10 end at "Trying to unpack rootfs image as initramfs...", and - this is new - boot 3 and 8 do not make it that far, ending after "ACPI: 6 ACPI AML tables successfully acquired and loaded". "ACPI: Dynamic OEM Table Load:" would have been next, after "ACPI: 6 ACPI AML tables successfully acquired and loaded".

Of note, *none* of these 10 boot events generated the "soft lockup" Stack Trace events. Also of note, even though boot number 4 is a full boot, there is a 73 second mystery delay. The delay occurs right after adding swap, and just before "Bluetooth: BNEP". Boot 4 has other unique characteristics, mentioned below.


$ grep lvtth dmesglog.5.12.lvtthmr.*
dmesglog.5.12.lvtthmr.1:[ 1.246282] intel_init_thermal: CPU0, lvtthmr_init: 0x10200
dmesglog.5.12.lvtthmr.1:[ 0.933178] intel_init_thermal: CPU1, lvtthmr_init: 0x10000
dmesglog.5.12.lvtthmr.10:[ 1.245288] intel_init_thermal: CPU0, lvtthmr_init: 0x10200
dmesglog.5.12.lvtthmr.10:[ 0.933148] intel_init_thermal: CPU1, lvtthmr_init: 0x10000
dmesglog.5.12.lvtthmr.2:[ 1.245260] intel_init_thermal: CPU0, lvtthmr_init: 0x10200
dmesglog.5.12.lvtthmr.2:[ 0.933118] intel_init_thermal: CPU1, lvtthmr_init: 0x10000
dmesglog.5.12.lvtthmr.3:[ 1.245958] intel_init_thermal: CPU0, lvtthmr_init: 0x10200
dmesglog.5.12.lvtthmr.3:[ 0.933159] intel_init_thermal: CPU1, lvtthmr_init: 0x10000
dmesglog.5.12.lvtthmr.4:[ 1.247200] intel_init_thermal: CPU0, lvtthmr_init: 0x10200
dmesglog.5.12.lvtthmr.5:[ 1.246849] intel_init_thermal: CPU0, lvtthmr_init: 0x10200
dmesglog.5.12.lvtthmr.5:[ 0.933187] intel_init_thermal: CPU1, lvtthmr_init: 0x10000
dmesglog.5.12.lvtthmr.6:[ 1.246143] intel_init_thermal: CPU0, lvtthmr_init: 0x10200
dmesglog.5.12.lvtthmr.6:[ 0.933146] intel_init_thermal: CPU1, lvtthmr_init: 0x10000
dmesglog.5.12.lvtthmr.7:[ 1.246826] intel_init_thermal: CPU0, lvtthmr_init: 0x10200
dmesglog.5.12.lvtthmr.7:[ 0.932840] intel_init_thermal: CPU1, lvtthmr_init: 0x10000
dmesglog.5.12.lvtthmr.8:[ 1.246467] intel_init_thermal: CPU0, lvtthmr_init: 0x10200
dmesglog.5.12.lvtthmr.8:[ 0.933189] intel_init_thermal: CPU1, lvtthmr_init: 0x10000
dmesglog.5.12.lvtthmr.9:[ 1.246288] intel_init_thermal: CPU0, lvtthmr_init: 0x10200
dmesglog.5.12.lvtthmr.9:[ 0.933210] intel_init_thermal: CPU1, lvtthmr_init: 0x10000

Note that boot number 4 is unique, in that "intel_init_thermal: CPU1, lvtthmr_init: 0x10000" is never seen.


$ grep -i monitor dmesglog.5.12.lvtthmr.*
dmesglog.5.12.lvtthmr.1:[ 0.933178] CPU0: Thermal monitoring enabled (TM2)
dmesglog.5.12.lvtthmr.10:[ 0.933148] CPU0: Thermal monitoring enabled (TM2)
dmesglog.5.12.lvtthmr.10:[ 4.152122] Monitor-Mwait will be used to enter C-1 state
dmesglog.5.12.lvtthmr.10:[ 4.158004] Monitor-Mwait will be used to enter C-2 state
dmesglog.5.12.lvtthmr.10:[ 8.106471] drop_monitor: Initializing network drop monitor service
dmesglog.5.12.lvtthmr.2:[ 0.933118] CPU0: Thermal monitoring enabled (TM2)
dmesglog.5.12.lvtthmr.3:[ 0.933159] CPU0: Thermal monitoring enabled (TM2)
dmesglog.5.12.lvtthmr.4:[ 13.613968] Monitor-Mwait will be used to enter C-1 state
dmesglog.5.12.lvtthmr.4:[ 13.619845] Monitor-Mwait will be used to enter C-2 state
dmesglog.5.12.lvtthmr.4:[ 17.456124] drop_monitor: Initializing network drop monitor service
dmesglog.5.12.lvtthmr.5:[ 0.933187] CPU0: Thermal monitoring enabled (TM2)
dmesglog.5.12.lvtthmr.5:[ 4.157058] Monitor-Mwait will be used to enter C-1 state
dmesglog.5.12.lvtthmr.5:[ 4.162940] Monitor-Mwait will be used to enter C-2 state
dmesglog.5.12.lvtthmr.5:[ 8.170316] drop_monitor: Initializing network drop monitor service
dmesglog.5.12.lvtthmr.6:[ 0.933146] CPU0: Thermal monitoring enabled (TM2)
dmesglog.5.12.lvtthmr.6:[ 4.159566] Monitor-Mwait will be used to enter C-1 state
dmesglog.5.12.lvtthmr.6:[ 4.165450] Monitor-Mwait will be used to enter C-2 state
dmesglog.5.12.lvtthmr.6:[ 8.222319] drop_monitor: Initializing network drop monitor service
dmesglog.5.12.lvtthmr.7:[ 0.932840] CPU0: Thermal monitoring enabled (TM2)
dmesglog.5.12.lvtthmr.7:[ 4.158158] Monitor-Mwait will be used to enter C-1 state
dmesglog.5.12.lvtthmr.7:[ 4.164046] Monitor-Mwait will be used to enter C-2 state
dmesglog.5.12.lvtthmr.7:[ 8.263059] drop_monitor: Initializing network drop monitor service
dmesglog.5.12.lvtthmr.8:[ 0.933189] CPU0: Thermal monitoring enabled (TM2)
dmesglog.5.12.lvtthmr.9:[ 0.933210] CPU0: Thermal monitoring enabled (TM2)
dmesglog.5.12.lvtthmr.9:[ 4.159696] Monitor-Mwait will be used to enter C-1 state
dmesglog.5.12.lvtthmr.9:[ 4.165581] Monitor-Mwait will be used to enter C-2 state
dmesglog.5.12.lvtthmr.9:[ 8.203103] drop_monitor: Initializing network drop monitor service

Again, boot number 4 is unique, in that "CPU0: Thermal monitoring enabled (TM2)" is never seen. On the abbreviated boot 3 and 8, "CPU0: Thermal monitoring enabled (TM2)" is still seen.

These varying results may indicate that some initialization step is being missed, resulting in random variation in the initial state.

James
[ 0.000000] microcode: microcode updated early to revision 0xd1, date = 2010-10-01
[ 0.000000] Linux version 5.11.0-rc2-1 (linux@archlinux) (gcc (GCC) 10.2.0, GNU ld (GNU Binutils) 2.36.1) #38 SMP PREEMPT Wed, 19 May 2021 02:13:55 +0000
[ 0.000000] Command line: BOOT_IMAGE=/2018Dec04/boot/vmlinuz-linux root=UUID=a5376a54-1964-4312-8894-9cf3432397fe rw rootflags=subvol=2018Dec04 resume=dev/sda3 vt.color=0x70 systemd.unified_cgroup_hierarchy=1 zswap.enabled=1 zswap.zpool=z3fold acpi_enforce_resources=lax debug ignore_loglevel log_buf_len=16M no_console_suspend systemd.log_target=null console=ttyS0,115200 console=tty17
[ 0.000000] x86/fpu: x87 FPU will use FXSAVE
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000d7fcffff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000d7fd0000-0x00000000d7fe55ff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000d7fe5600-0x00000000d7ff7fff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x00000000d7ff8000-0x00000000d7ffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed20000-0x00000000fed9afff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000feda0000-0x00000000fedbffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ffb00000-0x00000000ffbfffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fff00000-0x00000000ffffffff] reserved
[ 0.000000] printk: debug: ignoring loglevel setting.
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] SMBIOS 2.4 present.
[ 0.000000] DMI: Hewlett-Packard /309F, BIOS 68YAF Ver. F.1D 07/11/2008
[ 0.000000] tsc: Fast TSC calibration using PIT
[ 0.000000] tsc: Detected 1995.162 MHz processor
[ 0.001320] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.001328] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.001337] last_pfn = 0xd7fd0 max_arch_pfn = 0x400000000
[ 0.001345] MTRR default type: uncachable
[ 0.001349] MTRR fixed ranges enabled:
[ 0.001352] 00000-9FFFF write-back
[ 0.001355] A0000-BFFFF uncachable
[ 0.001358] C0000-CFFFF write-protect
[ 0.001361] D0000-EFFFF uncachable
[ 0.001363] F0000-FFFFF write-protect
[ 0.001366] MTRR variable ranges enabled:
[ 0.001368] 0 base 000000000 mask F80000000 write-back
[ 0.001373] 1 base 080000000 mask FC0000000 write-back
[ 0.001377] 2 base 0C0000000 mask FF0000000 write-back
[ 0.001380] 3 base 0D0000000 mask FF8000000 write-back
[ 0.001384] 4 base 0FEDA0000 mask FFFFE0000 uncachable
[ 0.001387] 5 disabled
[ 0.001390] 6 disabled
[ 0.001392] 7 disabled
[ 0.002296] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.003157] total RAM covered: 3456M
[ 0.003888] Found optimal setting for mtrr clean up
[ 0.003891] gran_size: 64K chunk_size: 1G num_reg: 3 lose cover RAM: 0G
[ 0.031942] check: Scanning 1 areas for low memory corruption
[ 0.119698] printk: log_buf_len: 16777216 bytes
[ 0.119709] printk: early log buf free: 128016(97%)
[ 0.119712] RAMDISK: [mem 0x36445000-0x37219fff]
[ 0.119730] ACPI: Early table checksum verification disabled
[ 0.119745] ACPI: RSDP 0x00000000000F78E0 000024 (v02 HP )
[ 0.119753] ACPI: XSDT 0x00000000D7FE57C8 00007C (v01 HPQOEM SLIC-MPC 00000001 HP 00000001)
[ 0.119768] ACPI: FACP 0x00000000D7FE5684 0000F4 (v04 HP 309F 00000003 HP 00000001)
[ 0.119780] ACPI: DSDT 0x00000000D7FE5ACC 010A75 (v01 HP nc9700 00010000 MSFT 0100000E)
[ 0.119789] ACPI: FACS 0x00000000D7FF7E80 000040
[ 0.119795] ACPI: FACS 0x00000000D7FF7E80 000040
[ 0.119802] ACPI: SLIC 0x00000000D7FE5844 000176 (v01 HPQOEM SLIC-MPC 00000001 HP 00000001)
[ 0.119810] ACPI: HPET 0x00000000D7FE59BC 000038 (v01 HP 309F 00000001 HP 00000001)
[ 0.119818] ACPI: APIC 0x00000000D7FE59F4 000068 (v01 HP 309F 00000001 HP 00000001)
[ 0.119825] ACPI: MCFG 0x00000000D7FE5A5C 00003C (v01 HP 309F 00000001 HP 00000001)
[ 0.119834] ACPI: TCPA 0x00000000D7FE5A98 000032 (v02 HP 309F 00000001 HP 00000001)
[ 0.119842] ACPI: SSDT 0x00000000D7FF6541 000059 (v01 HP HPQNLP 00000001 MSFT 0100000E)
[ 0.119849] ACPI: SSDT 0x00000000D7FF659A 000326 (v01 HP HPQSAT 00000001 MSFT 0100000E)
[ 0.119857] ACPI: SSDT 0x00000000D7FF7115 00025F (v01 HP Cpu0Tst 00003000 INTL 20060317)
[ 0.119865] ACPI: SSDT 0x00000000D7FF7374 0000A6 (v01 HP Cpu1Tst 00003000 INTL 20060317)
[ 0.119872] ACPI: SSDT 0x00000000D7FF741A 0004D7 (v01 HP CpuPm 00003000 INTL 20060317)
[ 0.119890] ACPI: Local APIC address 0xfee00000
[ 0.119991] No NUMA configuration found
[ 0.119994] Faking a node at [mem 0x0000000000000000-0x00000000d7fcffff]
[ 0.120002] NODE_DATA(0) allocated [mem 0xd7fcc000-0xd7fcffff]
[ 0.120066] Zone ranges:
[ 0.120068] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.120073] DMA32 [mem 0x0000000001000000-0x00000000d7fcffff]
[ 0.120076] Normal empty
[ 0.120080] Device empty
[ 0.120082] Movable zone start for each node
[ 0.120085] Early memory node ranges
[ 0.120086] node 0: [mem 0x0000000000001000-0x000000000009efff]
[ 0.120090] node 0: [mem 0x0000000000100000-0x00000000d7fcffff]
[ 0.120101] Zeroed struct page in unavailable ranges: 146 pages
[ 0.120103] Initmem setup node 0 [mem 0x0000000000001000-0x00000000d7fcffff]
[ 0.120108] On node 0 totalpages: 884590
[ 0.120111] DMA zone: 64 pages used for memmap
[ 0.120113] DMA zone: 21 pages reserved
[ 0.120116] DMA zone: 3998 pages, LIFO batch:0
[ 0.120306] DMA32 zone: 13760 pages used for memmap
[ 0.120309] DMA32 zone: 880592 pages, LIFO batch:63
[ 0.171208] ACPI: PM-Timer IO Port: 0x1008
[ 0.171217] ACPI: Local APIC address 0xfee00000
[ 0.171231] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.171236] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[ 0.171254] IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-23
[ 0.171260] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.171264] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.171269] ACPI: IRQ0 used by override.
[ 0.171272] ACPI: IRQ9 used by override.
[ 0.171276] Using ACPI (MADT) for SMP configuration information
[ 0.171279] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[ 0.171291] smpboot: Allowing 2 CPUs, 0 hotplug CPUs
[ 0.171317] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.171322] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[ 0.171325] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000dffff]
[ 0.171327] PM: hibernation: Registered nosave memory: [mem 0x000e0000-0x000fffff]
[ 0.171331] [mem 0xd8000000-0xfebfffff] available for PCI devices
[ 0.171334] Booting paravirtualized kernel on bare hardware
[ 0.171341] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
[ 0.180029] setup_percpu: NR_CPUS:320 nr_cpumask_bits:320 nr_cpu_ids:2 nr_node_ids:1
[ 0.180957] percpu: Embedded 56 pages/cpu s192512 r8192 d28672 u1048576
[ 0.180970] pcpu-alloc: s192512 r8192 d28672 u1048576 alloc=1*2097152
[ 0.180976] pcpu-alloc: [0] 0 1
[ 0.181015] Built 1 zonelists, mobility grouping on. Total pages: 870745
[ 0.181021] Policy zone: DMA32
[ 0.181025] Kernel command line: BOOT_IMAGE=/2018Dec04/boot/vmlinuz-linux root=UUID=a5376a54-1964-4312-8894-9cf3432397fe rw rootflags=subvol=2018Dec04 resume=dev/sda3 vt.color=0x70 systemd.unified_cgroup_hierarchy=1 zswap.enabled=1 zswap.zpool=z3fold acpi_enforce_resources=lax debug ignore_loglevel log_buf_len=16M no_console_suspend systemd.log_target=null console=ttyS0,115200 console=tty17
[ 0.183014] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[ 0.183954] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.184033] mem auto-init: stack:byref_all(zero), heap alloc:on, heap free:off
[ 0.237168] Memory: 3349200K/3538360K available (14344K kernel code, 2026K rwdata, 8876K rodata, 1644K init, 4412K bss, 188900K reserved, 0K cma-reserved)
[ 0.237191] random: get_random_u64 called from __kmem_cache_create+0x26/0x530 with crng_init=0
[ 0.237424] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[ 0.237457] Kernel/User page tables isolation: enabled
[ 0.237498] ftrace: allocating 41665 entries in 163 pages
[ 0.260465] ftrace: allocated 163 pages with 4 groups
[ 0.260750] rcu: Preemptible hierarchical RCU implementation.
[ 0.260754] rcu: RCU dyntick-idle grace-period acceleration is enabled.
[ 0.260756] rcu: RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=2.
[ 0.260759] rcu: RCU priority boosting: priority 1 delay 500 ms.
[ 0.260762] Trampoline variant of Tasks RCU enabled.
[ 0.260764] Rude variant of Tasks RCU enabled.
[ 0.260765] Tracing variant of Tasks RCU enabled.
[ 0.260767] rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
[ 0.260770] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
[ 0.267215] NR_IRQS: 20736, nr_irqs: 440, preallocated irqs: 16
[ 0.267545] Console: colour dummy device 80x25
[ 0.267886] printk: console [tty17] enabled
[ 1.126742] printk: console [ttyS0] enabled
[ 1.130938] ACPI: Core revision 20201113
[ 1.135009] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[ 1.144134] APIC: Switch to symmetric I/O mode setup
[ 1.149572] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 1.170797] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x3984a78eb08, max_idle_ns: 881590510376 ns
[ 1.181295] Calibrating delay loop (skipped), value calculated using timer frequency.. 3991.58 BogoMIPS (lpj=6650540)
[ 1.184627] pid_max: default: 32768 minimum: 301
[ 1.187996] LSM: Security Framework initializing
[ 1.191300] Yama: becoming mindful.
[ 1.194637] LSM support for eBPF active
[ 1.198010] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[ 1.201324] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[ 1.208013] process: using mwait in idle threads
[ 1.211295] Last level iTLB entries: 4KB 128, 2MB 4, 4MB 4
[ 1.214626] Last level dTLB entries: 4KB 256, 2MB 0, 4MB 32, 1GB 0
[ 1.217961] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[ 1.221295] Spectre V2 : Mitigation: Full generic retpoline
[ 1.224625] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[ 1.227959] Speculative Store Bypass: Vulnerable
[ 1.231295] MDS: Vulnerable: Clear CPU buffers attempted, no microcode
[ 1.234869] Freeing SMP alternatives memory: 36K
[ 1.349539] smpboot: CPU0: Intel(R) Core(TM)2 CPU T7200 @ 2.00GHz (family: 0x6, model: 0xf, stepping: 0x6)
[ 1.351505] Performance Events: PEBS fmt0-, Core2 events, 4-deep LBR, Intel PMU driver.
[ 1.354631] core: PEBS disabled due to CPU errata
[ 1.357960] ... version: 2
[ 1.361292] ... bit width: 40
[ 1.364626] ... generic registers: 2
[ 1.367959] ... value mask: 000000ffffffffff
[ 1.371292] ... max period: 000000007fffffff
[ 1.374626] ... fixed-purpose events: 3
[ 1.377959] ... event mask: 0000000700000003
[ 1.381478] rcu: Hierarchical SRCU implementation.
[ 1.385504] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[ 1.388058] smp: Bringing up secondary CPUs ...
[ 1.391577] x86: Booting SMP configuration:
[ 1.394637] .... node #0, CPUs: #1
[ 1.398114] smp: Brought up 1 node, 2 CPUs
[ 1.404634] smpboot: Max logical packages: 1
[ 1.407960] smpboot: Total of 2 processors activated (7983.17 BogoMIPS)
[ 1.414670] devtmpfs: initialized
[ 1.418046] x86/mm: Memory block size: 128MB
[ 1.421979] PM: Registering ACPI NVS region [mem 0xd7fe5600-0xd7ff7fff] (76288 bytes)
[ 1.431367] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[ 1.434638] futex hash table entries: 512 (order: 3, 32768 bytes, linear)
[ 1.441295] pinctrl core: initialized pinctrl subsystem
[ 1.444785] PM: RTC time: 19:49:08, date: 2021-05-21
[ 1.448159] NET: Registered protocol family 16
[ 1.451665] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations
[ 1.454774] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 1.458110] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 1.461308] audit: initializing netlink subsys (disabled)
[ 1.464669] audit: type=2000 audit(1621626547.306:1): state=initialized audit_enabled=0 res=1
[ 1.464863] thermal_sys: Registered thermal governor 'fair_share'
[ 1.467962] thermal_sys: Registered thermal governor 'bang_bang'
[ 1.474626] thermal_sys: Registered thermal governor 'step_wise'
[ 1.481293] thermal_sys: Registered thermal governor 'user_space'
[ 1.487959] thermal_sys: Registered thermal governor 'power_allocator'
[ 1.491337] cpuidle: using governor ladder
[ 1.497973] cpuidle: using governor menu
[ 1.501450] ACPI: bus type PCI registered
[ 1.504628] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 1.508086] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[ 1.511296] PCI: not using MMCONFIG
[ 1.514626] PCI: Using configuration type 1 for base access
[ 1.520356] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[ 1.524787] fbcon: Taking over console
[ 1.527975] ACPI: Added _OSI(Module Device)
[ 1.531302] ACPI: Added _OSI(Processor Device)
[ 1.534631] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 1.541293] ACPI: Added _OSI(Processor Aggregator Device)
[ 1.544626] ACPI: Added _OSI(Linux-Dell-Video)
[ 1.551293] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[ 1.554626] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[ 1.575507] ACPI: 6 ACPI AML tables successfully acquired and loaded
[ 1.634950] ACPI: Dynamic OEM Table Load:
[ 1.637965] ACPI: SSDT 0xFFFF95D3C139F400 00023D (v01 HP Cpu0Ist 00003000 INTL 20060317)
[ 1.648513] ACPI: Dynamic OEM Table Load:
[ 1.651308] ACPI: SSDT 0xFFFF95D3C1A06800 0004CB (v01 HP Cpu0Cst 00003001 INTL 20060317)
[ 1.662356] ACPI: Dynamic OEM Table Load:
[ 1.667963] ACPI: SSDT 0xFFFF95D3C19E9A00 0000C8 (v01 HP Cpu1Ist 00003000 INTL 20060317)
[ 1.675441] ACPI: Dynamic OEM Table Load:
[ 1.681297] ACPI: SSDT 0xFFFF95D3C19976C0 000085 (v01 HP Cpu1Cst 00003000 INTL 20060317)
[ 1.689239] ACPI: EC: EC started
[ 1.691292] ACPI: EC: interrupt blocked
[ 1.704814] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[ 1.711297] ACPI: \_SB_.C003.C004.C006: Boot DSDT EC used to handle transactions
[ 1.717959] ACPI: Interpreter enabled
[ 1.721320] ACPI: (supports S0 S3 S4 S5)
[ 1.724627] ACPI: Using IOAPIC for interrupt routing
[ 1.731337] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[ 1.738961] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in ACPI motherboard resources
[ 1.747964] pmd_set_huge: Cannot satisfy [mem 0xf8000000-0xf8200000] with a huge-page mapping due to MTRR override.
[ 1.758109] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 1.768429] ACPI: Enabled 13 GPEs in block 00 to 1F
[ 1.782913] ACPI: Power Resource [C1F8] (on)
[ 1.788741] ACPI: Power Resource [C207] (on)
[ 1.792535] ACPI: Power Resource [C224] (on)
[ 1.802288] ACPI: Power Resource [C22C] (on)
[ 1.812255] ACPI: Power Resource [C334] (off)
[ 1.818061] ACPI: Power Resource [C335] (off)
[ 1.821394] ACPI: Power Resource [C336] (off)
[ 1.824732] ACPI: Power Resource [C337] (off)
[ 1.831391] ACPI: Power Resource [C338] (off)
[ 1.834726] ACPI: Power Resource [C339] (off)
[ 1.838069] ACPI: Power Resource [C33A] (off)
[ 1.844727] ACPI: Power Resource [C33B] (off)
[ 1.848056] ACPI: Power Resource [C33C] (off)
[ 1.851393] ACPI: Power Resource [C33D] (off)
[ 1.858015] ACPI: Power Resource [C33E] (off)
[ 1.869336] ACPI: PCI Root Bridge [C003] (domain 0000 [bus 00-ff])
[ 1.874634] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 1.884633] acpi PNP0A08:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
[ 1.891307] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
[ 1.908494] PCI host bridge to bus 0000:00
[ 1.911294] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 1.917960] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 1.927960] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 1.934626] pci_bus 0000:00: root bus resource [mem 0xd8000000-0xfedfffff window]
[ 1.941293] pci_bus 0000:00: root bus resource [mem 0xfee01000-0xffffffff window]
[ 1.947959] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000dffff window]
[ 1.954626] pci_bus 0000:00: root bus resource [bus 00-ff]
[ 1.961311] pci 0000:00:00.0: [8086:27a0] type 00 class 0x060000
[ 1.968137] pci 0000:00:01.0: [8086:27a1] type 01 class 0x060400
[ 1.974693] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[ 1.981507] pci 0000:00:1b.0: [8086:27d8] type 00 class 0x040300
[ 1.984650] pci 0000:00:1b.0: reg 0x10: [mem 0xf4700000-0xf4703fff 64bit]
[ 1.994758] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 1.998152] pci 0000:00:1c.0: [8086:27d0] type 01 class 0x060400
[ 2.004776] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 2.011491] pci 0000:00:1c.1: [8086:27d2] type 01 class 0x060400
[ 2.018108] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[ 2.024824] pci 0000:00:1c.3: [8086:27d6] type 01 class 0x060400
[ 2.031445] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[ 2.038161] pci 0000:00:1d.0: [8086:27c8] type 00 class 0x0c0300
[ 2.041349] pci 0000:00:1d.0: reg 0x20: [io 0x5000-0x501f]
[ 2.048165] pci 0000:00:1d.1: [8086:27c9] type 00 class 0x0c0300
[ 2.054683] pci 0000:00:1d.1: reg 0x20: [io 0x5020-0x503f]
[ 2.061484] pci 0000:00:1d.2: [8086:27ca] type 00 class 0x0c0300
[ 2.064683] pci 0000:00:1d.2: reg 0x20: [io 0x5040-0x505f]
[ 2.071484] pci 0000:00:1d.3: [8086:27cb] type 00 class 0x0c0300
[ 2.078016] pci 0000:00:1d.3: reg 0x20: [io 0x5060-0x507f]
[ 2.084836] pci 0000:00:1d.7: [8086:27cc] type 00 class 0x0c0320
[ 2.091312] pci 0000:00:1d.7: reg 0x10: [mem 0xf4704000-0xf47043ff]
[ 2.094743] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[ 2.101462] pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
[ 2.108220] pci 0000:00:1f.0: [8086:27b9] type 00 class 0x060100
[ 2.114694] pci 0000:00:1f.0: quirk: [io 0x1000-0x107f] claimed by ICH6 ACPI/GPIO/TCO
[ 2.121297] pci 0000:00:1f.0: quirk: [io 0x1100-0x113f] claimed by ICH6 GPIO
[ 2.131295] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0500 (mask 007f)
[ 2.137965] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 4 PIO at 0238 (mask 0007)
[ 2.144626] pci 0000:00:1f.0: quirk_ich7_lpc+0x0/0x60 took 29296 usecs
[ 2.151481] pci 0000:00:1f.1: [8086:27df] type 00 class 0x01018a
[ 2.157981] pci 0000:00:1f.1: reg 0x10: [io 0x0000-0x0007]
[ 2.164636] pci 0000:00:1f.1: reg 0x14: [io 0x0000-0x0003]
[ 2.167969] pci 0000:00:1f.1: reg 0x18: [io 0x0000-0x0007]
[ 2.174636] pci 0000:00:1f.1: reg 0x1c: [io 0x0000-0x0003]
[ 2.181302] pci 0000:00:1f.1: reg 0x20: [io 0x5080-0x508f]
[ 2.184649] pci 0000:00:1f.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7]
[ 2.191293] pci 0000:00:1f.1: legacy IDE quirk: reg 0x14: [io 0x03f6]
[ 2.197963] pci 0000:00:1f.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177]
[ 2.207960] pci 0000:00:1f.1: legacy IDE quirk: reg 0x1c: [io 0x0376]
[ 2.211471] pci 0000:00:1f.2: [8086:27c5] type 00 class 0x010601
[ 2.217978] pci 0000:00:1f.2: reg 0x10: [io 0x13f0-0x13f7]
[ 2.224638] pci 0000:00:1f.2: reg 0x14: [io 0x15f4-0x15f7]
[ 2.231302] pci 0000:00:1f.2: reg 0x18: [io 0x1370-0x1377]
[ 2.234635] pci 0000:00:1f.2: reg 0x1c: [io 0x1574-0x1577]
[ 2.241302] pci 0000:00:1f.2: reg 0x20: [io 0x50b0-0x50bf]
[ 2.247969] pci 0000:00:1f.2: reg 0x24: [mem 0xf4705000-0xf47053ff]
[ 2.254692] pci 0000:00:1f.2: PME# supported from D3hot
[ 2.258219] pci 0000:01:00.0: [1002:71c5] type 00 class 0x030000
[ 2.264650] pci 0000:01:00.0: reg 0x10: [mem 0xe0000000-0xefffffff pref]
[ 2.271306] pci 0000:01:00.0: reg 0x14: [io 0x4000-0x40ff]
[ 2.277972] pci 0000:01:00.0: reg 0x18: [mem 0xf4600000-0xf460ffff]
[ 2.284671] pci 0000:01:00.0: reg 0x30: [mem 0x00000000-0x0001ffff pref]
[ 2.291313] pci 0000:01:00.0: enabling Extended Tags
[ 2.294715] pci 0000:01:00.0: supports D1 D2
[ 2.298084] pci 0000:01:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
[ 2.307976] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 2.314628] pci 0000:00:01.0: bridge window [io 0x4000-0x4fff]
[ 2.321294] pci 0000:00:01.0: bridge window [mem 0xf4600000-0xf46fffff]
[ 2.327962] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xefffffff 64bit pref]
[ 2.334718] acpiphp: Slot [1] registered
[ 2.338117] pci 0000:08:00.0: [14e4:16fd] type 00 class 0x020000
[ 2.344775] pci 0000:08:00.0: reg 0x10: [mem 0xf4100000-0xf410ffff 64bit]
[ 2.351583] pci 0000:08:00.0: enabling Extended Tags
[ 2.358400] pci 0000:08:00.0: PME# supported from D3hot D3cold
[ 2.365030] pci 0000:08:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
[ 2.374692] pci 0000:00:1c.0: PCI bridge to [bus 08]
[ 2.377965] pci 0000:00:1c.0: bridge window [mem 0xf4100000-0xf41fffff]
[ 2.384834] pci 0000:10:00.0: [8086:4222] type 00 class 0x028000
[ 2.391402] pci 0000:10:00.0: reg 0x10: [mem 0xf4000000-0xf4000fff]
[ 2.398499] pci 0000:10:00.0: PME# supported from D0 D3hot D3cold
[ 2.404969] pci 0000:10:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
[ 2.414693] pci 0000:00:1c.1: PCI bridge to [bus 10]
[ 2.421301] pci 0000:00:1c.1: bridge window [mem 0xf4000000-0xf40fffff]
[ 2.428111] acpiphp: Slot [1-1] registered
[ 2.431348] pci 0000:00:1c.3: PCI bridge to [bus 20]
[ 2.434630] pci 0000:00:1c.3: bridge window [io 0x2000-0x3fff]
[ 2.441296] pci 0000:00:1c.3: bridge window [mem 0xf0000000-0xf3ffffff]
[ 2.447991] pci_bus 0000:02: extended config space not accessible
[ 2.454737] pci 0000:02:06.0: [104c:8039] type 02 class 0x060700
[ 2.461319] pci 0000:02:06.0: reg 0x10: [mem 0xf4200000-0xf4200fff]
[ 2.468023] pci 0000:02:06.0: supports D1 D2
[ 2.471293] pci 0000:02:06.0: PME# supported from D0 D1 D2 D3hot
[ 2.478079] pci 0000:02:06.1: [104c:803a] type 00 class 0x0c0010
[ 2.484654] pci 0000:02:06.1: reg 0x10: [mem 0xf4201000-0xf42017ff]
[ 2.491307] pci 0000:02:06.1: reg 0x14: [mem 0xf4204000-0xf4207fff]
[ 2.498088] pci 0000:02:06.1: supports D1 D2
[ 2.501293] pci 0000:02:06.1: PME# supported from D0 D1 D2 D3hot
[ 2.508047] pci 0000:02:06.2: [104c:803b] type 00 class 0x018000
[ 2.514651] pci 0000:02:06.2: reg 0x10: [mem 0xf4208000-0xf4208fff]
[ 2.518109] pci 0000:02:06.2: supports D1 D2
[ 2.524627] pci 0000:02:06.2: PME# supported from D0 D1 D2 D3hot
[ 2.531379] pci 0000:02:06.3: [104c:803c] type 00 class 0x080500
[ 2.534651] pci 0000:02:06.3: reg 0x10: [mem 0xf4209000-0xf42090ff]
[ 2.541433] pci 0000:02:06.3: supports D1 D2
[ 2.547963] pci 0000:02:06.3: PME# supported from D0 D1 D2 D3hot
[ 2.551382] pci 0000:02:06.4: [104c:803d] type 00 class 0x078000
[ 2.557985] pci 0000:02:06.4: reg 0x10: [mem 0xf420a000-0xf420afff]
[ 2.564639] pci 0000:02:06.4: reg 0x14: [mem 0xf420b000-0xf420bfff]
[ 2.571420] pci 0000:02:06.4: supports D1 D2
[ 2.574626] pci 0000:02:06.4: PME# supported from D0 D1 D2 D3hot
[ 2.581376] pci 0000:00:1e.0: PCI bridge to [bus 02-03] (subtractive decode)
[ 2.587966] pci 0000:00:1e.0: bridge window [mem 0xf4200000-0xf45fffff]
[ 2.594632] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7 window] (subtractive decode)
[ 2.604626] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff window] (subtractive decode)
[ 2.611295] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
[ 2.621293] pci 0000:00:1e.0: bridge window [mem 0xd8000000-0xfedfffff window] (subtractive decode)
[ 2.631293] pci 0000:00:1e.0: bridge window [mem 0xfee01000-0xffffffff window] (subtractive decode)
[ 2.641293] pci 0000:00:1e.0: bridge window [mem 0x000d0000-0x000dffff window] (subtractive decode)
[ 2.647997] pci_bus 0000:03: extended config space not accessible
[ 2.654651] pci_bus 0000:03: busn_res: [bus 03] end can not be updated to 06
[ 2.661298] pci 0000:00:1e.0: bridge has subordinate 03 but max busn 06
[ 2.670223] ACPI: PCI Interrupt Link [C10F] (IRQs *10 11)
[ 2.678174] ACPI: PCI Interrupt Link [C110] (IRQs *10 11)
[ 2.681503] ACPI: PCI Interrupt Link [C111] (IRQs 10 *11)
[ 2.688169] ACPI: PCI Interrupt Link [C112] (IRQs 10 11) *5
[ 2.694836] ACPI: PCI Interrupt Link [C125] (IRQs *10 11)
[ 2.698168] ACPI: PCI Interrupt Link [C126] (IRQs *10 11)
[ 2.704774] ACPI: PCI Interrupt Link [C127] (IRQs 10 *11)
[ 2.711484] ACPI: PCI Interrupt Link [C128] (IRQs) *0, disabled.
[ 2.719562] pci 0000:08:00.0: BAR 0: assigned [mem 0xf4100000-0xf410ffff 64bit]
[ 2.719562] ACPI: EC: interrupt unblocked
[ 2.727960] ACPI: EC: event unblocked
[ 2.731292] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[ 2.734625] ACPI: EC: GPE=0x16
[ 2.737961] ACPI: \_SB_.C003.C004.C006: Boot DSDT EC initialization complete
[ 2.744630] ACPI: \_SB_.C003.C004.C006: EC: Used to handle transactions and events
[ 2.751410] iommu: Default domain type: Translated
[ 2.757987] pci 0000:01:00.0: vgaarb: setting as boot VGA device
[ 2.761291] pci 0000:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[ 2.771297] pci 0000:01:00.0: vgaarb: bridge control possible
[ 2.777960] vgaarb: loaded
[ 2.781613] SCSI subsystem initialized
[ 2.784660] libata version 3.00 loaded.
[ 2.787967] ACPI: bus type USB registered
[ 2.791320] usbcore: registered new interface driver usbfs
[ 2.794638] usbcore: registered new interface driver hub
[ 2.797969] usbcore: registered new device driver usb
[ 2.801335] pps_core: LinuxPPS API ver. 1 registered
[ 2.804626] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 2.807963] PTP clock support registered
[ 2.811310] EDAC MC: Ver: 3.0.0
[ 2.814877] NetLabel: Initializing
[ 2.817961] NetLabel: domain hash size = 128
[ 2.821293] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 2.824652] NetLabel: unlabeled traffic allowed by default
[ 2.827966] PCI: Using ACPI for IRQ routing
[ 2.833752] PCI: pci_cache_line_size set to 64 bytes
[ 2.834717] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
[ 2.837963] e820: reserve RAM buffer [mem 0xd7fd0000-0xd7ffffff]
[ 2.842918] hpet: 3 channels of 0 reserved for per-cpu timers
[ 2.847972] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[ 2.851293] hpet0: 3 comparators, 64-bit 14.318180 MHz counter
[ 2.861291] clocksource: Switched to clocksource tsc-early
[ 2.885298] VFS: Disk quotas dquot_6.6.0
[ 2.889257] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 2.896261] pnp: PnP ACPI init
[ 2.899624] system 00:00: [mem 0x00000000-0x0009ffff] could not be reserved
[ 2.906583] system 00:00: [mem 0x000e0000-0x000fffff] could not be reserved
[ 2.913530] system 00:00: [mem 0x00100000-0xd7ffffff] could not be reserved
[ 2.920484] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
[ 2.928264] pnp 00:01: Plug and Play ACPI device, IDs PNP0501 PNP0500 (active)
[ 2.936285] pnp 00:02: [dma 1]
[ 2.939449] pnp 00:02: Plug and Play ACPI device, IDs PNP0401 (active)
[ 2.946134] pnp 00:03: Plug and Play ACPI device, IDs IFX0102 PNP0c31 (active)
[ 2.953384] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
[ 2.959970] pnp 00:05: Plug and Play ACPI device, IDs PNP0303 (active)
[ 2.966519] pnp 00:06: Plug and Play ACPI device, IDs SYN011d SYN0100 SYN0002 PNP0f13 (active)
[ 2.975410] system 00:07: [io 0x0500-0x055f] has been reserved
[ 2.981320] system 00:07: [io 0x0800-0x080f] has been reserved
[ 2.987228] system 00:07: [mem 0xffb00000-0xffbfffff] has been reserved
[ 2.993828] system 00:07: [mem 0xfff00000-0xffffffff] has been reserved
[ 3.000433] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 3.008264] system 00:08: [io 0x04d0-0x04d1] has been reserved
[ 3.014175] system 00:08: [io 0x1000-0x107f] has been reserved
[ 3.020083] system 00:08: [io 0x1100-0x113f] has been reserved
[ 3.025991] system 00:08: [io 0x1200-0x121f] has been reserved
[ 3.031898] system 00:08: [mem 0xf8000000-0xfbffffff] has been reserved
[ 3.038499] system 00:08: [mem 0xfec00000-0xfec000ff] could not be reserved
[ 3.045444] system 00:08: [mem 0xfed20000-0xfed3ffff] has been reserved
[ 3.052043] system 00:08: [mem 0xfed45000-0xfed8ffff] has been reserved
[ 3.058644] system 00:08: [mem 0xfed90000-0xfed9afff] has been reserved
[ 3.065250] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 3.072443] system 00:09: [mem 0xfeda0000-0xfedbffff] has been reserved
[ 3.079046] system 00:09: [mem 0xfee00000-0xfee00fff] has been reserved
[ 3.085651] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 3.092456] pnp: PnP ACPI: found 10 devices
[ 3.103925] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 3.112873] NET: Registered protocol family 2
[ 3.117503] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear)
[ 3.126142] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear)
[ 3.134275] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear)
[ 3.141661] TCP: Hash tables configured (established 32768 bind 32768)
[ 3.148332] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear)
[ 3.155764] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear)
[ 3.162491] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear)
[ 3.169747] NET: Registered protocol family 1
[ 3.174109] NET: Registered protocol family 44
[ 3.178565] pci 0000:00:1c.0: bridge window [io 0x1000-0x0fff] to [bus 08] add_size 1000
[ 3.186731] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 08] add_size 200000 add_align 100000
[ 3.198182] pci 0000:00:1c.1: bridge window [io 0x1000-0x0fff] to [bus 10] add_size 1000
[ 3.206339] pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 10] add_size 200000 add_align 100000
[ 3.217787] pci 0000:00:1c.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 20] add_size 200000 add_align 100000
[ 3.229246] pci 0000:00:1e.0: bridge window [io 0x1000-0x0fff] to [bus 02-03] add_size 1000
[ 3.237689] pci 0000:00:1c.0: BAR 15: assigned [mem 0xd8000000-0xd81fffff 64bit pref]
[ 3.245508] pci 0000:00:1c.1: BAR 15: assigned [mem 0xd8200000-0xd83fffff 64bit pref]
[ 3.253323] pci 0000:00:1c.3: BAR 15: assigned [mem 0xd8400000-0xd85fffff 64bit pref]
[ 3.261138] pci 0000:00:1c.0: BAR 13: assigned [io 0x6000-0x6fff]
[ 3.267308] pci 0000:00:1c.1: BAR 13: assigned [io 0x7000-0x7fff]
[ 3.273475] pci 0000:00:1e.0: BAR 13: assigned [io 0x8000-0x8fff]
[ 3.279645] pci 0000:01:00.0: BAR 6: assigned [mem 0xf4620000-0xf463ffff pref]
[ 3.286854] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 3.291809] pci 0000:00:01.0: bridge window [io 0x4000-0x4fff]
[ 3.297891] pci 0000:00:01.0: bridge window [mem 0xf4600000-0xf46fffff]
[ 3.304666] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xefffffff 64bit pref]
[ 3.312394] pci 0000:00:1c.0: PCI bridge to [bus 08]
[ 3.317348] pci 0000:00:1c.0: bridge window [io 0x6000-0x6fff]
[ 3.323433] pci 0000:00:1c.0: bridge window [mem 0xf4100000-0xf41fffff]
[ 3.330207] pci 0000:00:1c.0: bridge window [mem 0xd8000000-0xd81fffff 64bit pref]
[ 3.337938] pci 0000:00:1c.1: PCI bridge to [bus 10]
[ 3.342893] pci 0000:00:1c.1: bridge window [io 0x7000-0x7fff]
[ 3.348976] pci 0000:00:1c.1: bridge window [mem 0xf4000000-0xf40fffff]
[ 3.355752] pci 0000:00:1c.1: bridge window [mem 0xd8200000-0xd83fffff 64bit pref]
[ 3.363481] pci 0000:00:1c.3: PCI bridge to [bus 20]
[ 3.368439] pci 0000:00:1c.3: bridge window [io 0x2000-0x3fff]
[ 3.374523] pci 0000:00:1c.3: bridge window [mem 0xf0000000-0xf3ffffff]
[ 3.381298] pci 0000:00:1c.3: bridge window [mem 0xd8400000-0xd85fffff 64bit pref]
[ 3.389033] pci 0000:02:06.0: BAR 15: assigned [mem 0xdc000000-0xdfffffff pref]
[ 3.396332] pci 0000:02:06.0: BAR 16: no space for [mem size 0x04000000]
[ 3.403019] pci 0000:02:06.0: BAR 16: failed to assign [mem size 0x04000000]
[ 3.410052] pci 0000:02:06.0: BAR 13: assigned [io 0x8000-0x80ff]
[ 3.416221] pci 0000:02:06.0: BAR 14: assigned [io 0x8400-0x84ff]
[ 3.422390] pci 0000:02:06.0: BAR 16: assigned [mem 0xdc000000-0xdfffffff]
[ 3.429256] pci 0000:02:06.0: BAR 15: no space for [mem size 0x04000000 pref]
[ 3.436378] pci 0000:02:06.0: BAR 15: failed to assign [mem size 0x04000000 pref]
[ 3.443843] pci 0000:02:06.0: CardBus bridge to [bus 03]
[ 3.449143] pci 0000:02:06.0: bridge window [io 0x8000-0x80ff]
[ 3.455225] pci 0000:02:06.0: bridge window [io 0x8400-0x84ff]
[ 3.461308] pci 0000:02:06.0: bridge window [mem 0xdc000000-0xdfffffff]
[ 3.468084] pci 0000:00:1e.0: PCI bridge to [bus 02-03]
[ 3.473298] pci 0000:00:1e.0: bridge window [io 0x8000-0x8fff]
[ 3.479382] pci 0000:00:1e.0: bridge window [mem 0xf4200000-0xf45fffff]
[ 3.486163] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[ 3.492329] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
[ 3.498497] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[ 3.505368] pci_bus 0000:00: resource 7 [mem 0xd8000000-0xfedfffff window]
[ 3.512229] pci_bus 0000:00: resource 8 [mem 0xfee01000-0xffffffff window]
[ 3.519088] pci_bus 0000:00: resource 9 [mem 0x000d0000-0x000dffff window]
[ 3.525948] pci_bus 0000:01: resource 0 [io 0x4000-0x4fff]
[ 3.531507] pci_bus 0000:01: resource 1 [mem 0xf4600000-0xf46fffff]
[ 3.537760] pci_bus 0000:01: resource 2 [mem 0xe0000000-0xefffffff 64bit pref]
[ 3.544965] pci_bus 0000:08: resource 0 [io 0x6000-0x6fff]
[ 3.550525] pci_bus 0000:08: resource 1 [mem 0xf4100000-0xf41fffff]
[ 3.556776] pci_bus 0000:08: resource 2 [mem 0xd8000000-0xd81fffff 64bit pref]
[ 3.563984] pci_bus 0000:10: resource 0 [io 0x7000-0x7fff]
[ 3.569545] pci_bus 0000:10: resource 1 [mem 0xf4000000-0xf40fffff]
[ 3.575798] pci_bus 0000:10: resource 2 [mem 0xd8200000-0xd83fffff 64bit pref]
[ 3.583003] pci_bus 0000:20: resource 0 [io 0x2000-0x3fff]
[ 3.588561] pci_bus 0000:20: resource 1 [mem 0xf0000000-0xf3ffffff]
[ 3.594814] pci_bus 0000:20: resource 2 [mem 0xd8400000-0xd85fffff 64bit pref]
[ 3.602018] pci_bus 0000:02: resource 0 [io 0x8000-0x8fff]
[ 3.607578] pci_bus 0000:02: resource 1 [mem 0xf4200000-0xf45fffff]
[ 3.613831] pci_bus 0000:02: resource 4 [io 0x0000-0x0cf7 window]
[ 3.619998] pci_bus 0000:02: resource 5 [io 0x0d00-0xffff window]
[ 3.626165] pci_bus 0000:02: resource 6 [mem 0x000a0000-0x000bffff window]
[ 3.633022] pci_bus 0000:02: resource 7 [mem 0xd8000000-0xfedfffff window]
[ 3.639881] pci_bus 0000:02: resource 8 [mem 0xfee01000-0xffffffff window]
[ 3.646738] pci_bus 0000:02: resource 9 [mem 0x000d0000-0x000dffff window]
[ 3.653596] pci_bus 0000:03: resource 0 [io 0x8000-0x80ff]
[ 3.659155] pci_bus 0000:03: resource 1 [io 0x8400-0x84ff]
[ 3.664713] pci_bus 0000:03: resource 3 [mem 0xdc000000-0xdfffffff]
[ 3.672873] pci 0000:01:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[ 3.681249] PCI: CLS 64 bytes, default 64
[ 3.685366] Trying to unpack rootfs image as initramfs...
[ 3.864777] Freeing initrd memory: 14164K
[ 3.869445] check: Scanning for low memory corruption every 60 seconds
[ 3.876520] Initialise system trusted keyrings
[ 3.880986] Key type blacklist registered
[ 3.885104] workingset: timestamp_bits=41 max_order=20 bucket_order=0
[ 3.893856] zbud: loaded
[ 3.910821] Key type asymmetric registered
[ 3.914916] Asymmetric key parser 'x509' registered
[ 3.919797] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
[ 3.927246] io scheduler mq-deadline registered
[ 3.931775] io scheduler kyber registered
[ 3.935814] io scheduler bfq registered
[ 3.941251] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 3.948010] vesafb: mode is 1400x1050x32, linelength=5632, pages=0
[ 3.954183] vesafb: scrolling: redraw
[ 3.957838] vesafb: Truecolor: size=0:8:8:8, shift=0:16:8:0
[ 3.963427] vesafb: framebuffer at 0xe0000000, mapped to 0x(____ptrval____), using 5824k, total 5824k
[ 3.972778] Console: switching to colour frame buffer device 175x65
[ 4.068038] fb0: VESA VGA frame buffer device
[ 4.072802] intel_idle: MWAIT substates: 0x22220
[ 4.081729] Monitor-Mwait will be used to enter C-1 state
[ 4.087614] Monitor-Mwait will be used to enter C-2 state
[ 4.093491] ACPI: \_PR_.CPU0: Found 2 idle states
[ 4.098611] intel_idle: v0.5.1 model 0xF
[ 4.102982] intel_idle: Local APIC timer is reliable in C1
[ 4.109380] ACPI: AC Adapter [C1C3] (on-line)
[ 4.114215] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0
[ 4.123331] ACPI: Sleep Button [C24D]
[ 4.127367] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input1
[ 4.136285] ACPI: Lid Switch [C245]
[ 4.140134] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[ 4.154670] ACPI: Power Button [PWRF]
[ 4.209861] thermal LNXTHERM:00: registered as thermal_zone0
[ 4.216076] ACPI: Thermal Zone [TZ0] (58 C)
[ 4.240110] thermal LNXTHERM:01: registered as thermal_zone1
[ 4.246261] ACPI: Thermal Zone [TZ1] (58 C)
[ 4.274995] thermal LNXTHERM:02: registered as thermal_zone2
[ 4.281150] ACPI: Thermal Zone [TZ2] (57 C)
[ 4.304840] thermal LNXTHERM:03: registered as thermal_zone3
[ 4.310993] ACPI: Thermal Zone [TZ3] (44 C)
[ 4.332630] thermal LNXTHERM:04: registered as thermal_zone4
[ 4.338787] ACPI: Thermal Zone [TZ4] (16 C)
[ 4.349238] thermal LNXTHERM:05: registered as thermal_zone5
[ 4.355438] ACPI: Thermal Zone [TZ5] (66 C)
[ 4.360254] battery: ACPI: Battery Slot [C1C5] (battery absent)
[ 4.360343] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 4.366860] battery: ACPI: Battery Slot [C1C4] (battery absent)
[ 4.373798] 00:01: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[ 4.391260] Non-volatile memory driver v1.3
[ 4.395822] AMD-Vi: AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
[ 4.403106] AMD-Vi: AMD IOMMUv2 functionality not available on this system
[ 4.411249] ahci 0000:00:1f.2: version 3.0
[ 4.416009] ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
[ 4.423226] ahci 0000:00:1f.2: AHCI 0001.0100 32 slots 4 ports 1.5 Gbps 0x1 impl SATA mode
[ 4.432209] ahci 0000:00:1f.2: flags: 64bit ncq ilck stag pm led clo pmp pio slum part
[ 4.441504] scsi host0: ahci
[ 4.444895] scsi host1: ahci
[ 4.448217] scsi host2: ahci
[ 4.478053] scsi host3: ahci
[ 4.507315] ata1: SATA max UDMA/133 abar m1024@0xf4705000 port 0xf4705100 irq 28
[ 4.541391] ata2: DUMMY
[ 4.570252] ata3: DUMMY
[ 4.598824] ata4: DUMMY
[ 4.627135] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 4.659842] ehci-pci: EHCI PCI platform driver
[ 4.690461] ehci-pci 0000:00:1d.7: EHCI Host Controller
[ 4.721705] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 1
[ 4.755222] ehci-pci 0000:00:1d.7: debug port 1
[ 4.789438] ehci-pci 0000:00:1d.7: irq 20, io mem 0xf4704000
[ 4.831315] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[ 4.862967] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.11
[ 4.897300] tsc: Refined TSC clocksource calibration: 1994.999 MHz
[ 4.929455] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x398374a7fb8, max_idle_ns: 881590820223 ns
[ 4.929464] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 5.000344] clocksource: Switched to clocksource tsc
[ 5.000364] usb usb1: Product: EHCI Host Controller
[ 5.064331] usb usb1: Manufacturer: Linux 5.11.0-rc2-1 ehci_hcd
[ 5.097201] usb usb1: SerialNumber: 0000:00:1d.7
[ 5.128757] hub 1-0:1.0: USB hub found
[ 5.159191] hub 1-0:1.0: 8 ports detected
[ 5.189940] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 5.222560] ohci-pci: OHCI PCI platform driver
[ 5.222574] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[ 5.253204] uhci_hcd: USB Universal Host Controller Interface driver
[ 5.320008] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[ 5.320681] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[ 5.351571] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[ 5.386555] ata1.00: ACPI cmd b1/c1:00:00:00:00:a0 (DEVICE CONFIGURATION OVERLAY) filtered out
[ 5.421204] uhci_hcd 0000:00:1d.0: detected 2 ports
[ 5.490110] ata1.00: ACPI cmd c6/00:10:00:00:00:a0 (SET MULTIPLE MODE) succeeded
[ 5.490134] uhci_hcd 0000:00:1d.0: irq 20, io base 0x00005000
[ 5.525870] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
[ 5.559393] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.11
[ 5.630602] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 5.630607] ata1.00: ATA-7: TOSHIBA MK1234GSX, AH001H, max UDMA/100
[ 5.665479] usb usb2: Product: UHCI Host Controller
[ 5.665482] usb usb2: Manufacturer: Linux 5.11.0-rc2-1 uhci_hcd
[ 5.665484] usb usb2: SerialNumber: 0000:00:1d.0
[ 5.665663] hub 2-0:1.0: USB hub found
[ 5.699284] ata1.00: 234441648 sectors, multi 16: LBA48
[ 5.766697] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[ 5.796386] hub 2-0:1.0: 2 ports detected
[ 5.826976] ata1.00: ACPI cmd b1/c1:00:00:00:00:a0 (DEVICE CONFIGURATION OVERLAY) filtered out
[ 5.859592] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[ 5.925605] ata1.00: ACPI cmd c6/00:10:00:00:00:a0 (SET MULTIPLE MODE) succeeded
[ 5.961942] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
[ 5.994875] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
[ 6.030239] uhci_hcd 0000:00:1d.1: detected 2 ports
[ 6.101334] ata1.00: configured for UDMA/100
[ 6.134505] uhci_hcd 0000:00:1d.1: irq 22, io base 0x00005020
[ 6.167076] scsi 0:0:0:0: Direct-Access ATA TOSHIBA MK1234GS 1H PQ: 0 ANSI: 5
[ 6.200924] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.11
[ 6.237728] sd 0:0:0:0: [sda] 234441648 512-byte logical blocks: (120 GB/112 GiB)
[ 6.274263] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 6.274267] usb usb3: Product: UHCI Host Controller
[ 6.274269] usb usb3: Manufacturer: Linux 5.11.0-rc2-1 uhci_hcd
[ 6.274271] usb usb3: SerialNumber: 0000:00:1d.1
[ 6.274416] hub 3-0:1.0: USB hub found
[ 6.310474] sd 0:0:0:0: [sda] Write Protect is off
[ 6.346369] hub 3-0:1.0: 2 ports detected
[ 6.379833] usb 2-1: new full-speed USB device number 2 using uhci_hcd
[ 6.414657] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[ 6.447372] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 6.479243] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
[ 6.512216] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 6.544046] uhci_hcd 0000:00:1d.2: detected 2 ports
[ 6.756934] uhci_hcd 0000:00:1d.2: irq 18, io base 0x00005040
[ 6.792928] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.11
[ 6.831652] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 6.842261] sda: sda1 sda2 sda3 sda4
[ 6.869249] usb 2-1: New USB device found, idVendor=03f0, idProduct=171d, bcdDevice= 1.00
[ 6.903686] sd 0:0:0:0: [sda] Attached SCSI disk
[ 6.942234] usb usb4: Product: UHCI Host Controller
[ 7.013544] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 7.052133] usb usb4: Manufacturer: Linux 5.11.0-rc2-1 uhci_hcd
[ 7.052136] usb usb4: SerialNumber: 0000:00:1d.2
[ 7.052300] hub 4-0:1.0: USB hub found
[ 7.089275] random: fast init done
[ 7.089280] usb 2-1: Product: HP Integrated Module
[ 7.089283] usb 2-1: Manufacturer: Broadcom Corp
[ 7.260290] hub 4-0:1.0: 2 ports detected
[ 7.294108] uhci_hcd 0000:00:1d.3: UHCI Host Controller
[ 7.328938] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
[ 7.366125] uhci_hcd 0000:00:1d.3: detected 2 ports
[ 7.400848] uhci_hcd 0000:00:1d.3: irq 19, io base 0x00005060
[ 7.436378] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.11
[ 7.474729] usb 2-2: new full-speed USB device number 3 using uhci_hcd
[ 7.511424] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 7.549115] usb usb5: Product: UHCI Host Controller
[ 7.584139] usb usb5: Manufacturer: Linux 5.11.0-rc2-1 uhci_hcd
[ 7.620069] usb usb5: SerialNumber: 0000:00:1d.3
[ 7.654436] hub 5-0:1.0: USB hub found
[ 7.687398] hub 5-0:1.0: 2 ports detected
[ 7.720379] usbcore: registered new interface driver usbserial_generic
[ 7.751361] usb 2-2: New USB device found, idVendor=08ff, idProduct=2580, bcdDevice= 6.23
[ 7.755838] usbserial: USB Serial support registered for generic
[ 7.793104] usb 2-2: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[ 7.828261] rtc_cmos 00:04: RTC can wake from S4
[ 7.864107] usb 2-2: Product: Fingerprint Sensor
[ 7.897544] usb 4-1: new full-speed USB device number 2 using uhci_hcd
[ 7.931046] rtc_cmos 00:04: registered as rtc0
[ 7.966082] hpet: Lost 1 RTC interrupts
[ 8.031710] rtc_cmos 00:04: setting system clock to 2021-05-21T19:49:15 UTC (1621626555)
[ 8.069178] rtc_cmos 00:04: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[ 8.106311] intel_pstate: CPU model not supported
[ 8.140232] ledtrig-cpu: registered to indicate activity on CPUs
[ 8.175559] hid: raw HID events driver (C) Jiri Kosina
[ 8.209712] drop_monitor: Initializing network drop monitor service
[ 8.244841] Initializing XFRM netlink socket
[ 8.277782] NET: Registered protocol family 10
[ 8.319304] Segment Routing with IPv6
[ 8.350948] RPL Segment Routing with IPv6
[ 8.355141] usb 4-1: New USB device found, idVendor=046d, idProduct=c52b, bcdDevice=12.10
[ 8.382706] NET: Registered protocol family 17
[ 8.419250] usb 4-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 8.487669] microcode: sig=0x6f6, pf=0x20, revision=0xd1
[ 8.487701] usb 4-1: Product: USB Receiver
[ 8.553133] microcode: Microcode Update Driver: v2.2.
[ 8.553142] IPI shorthand broadcast: enabled
[ 8.553148] usb 1-7: new high-speed USB device number 5 using ehci-pci
[ 8.585949] sched_clock: Marking stable (7695408442, 890496510)->(8823874397, -237969445)
[ 8.617718] usb 4-1: Manufacturer: Logitech
[ 8.722021] registered taskstats version 1
[ 8.754412] Loading compiled-in X.509 certificates
[ 8.793149] Loaded X.509 cert 'Build time autogenerated kernel key: e3f62a7aad01602b54a1b14180ab55bb7bf715c3'
[ 8.832664] zswap: loaded using pool lz4/z3fold
[ 8.866398] usb 1-7: New USB device found, idVendor=04b4, idProduct=6560, bcdDevice= 0.0b
[ 8.904365] usb 1-7: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 8.904480] Key type ._fscrypt registered
[ 8.941350] hub 1-7:1.0: USB hub found
[ 8.974295] Key type .fscrypt registered
[ 9.006933] hub 1-7:1.0: 4 ports detected
[ 9.039335] Key type fscrypt-provisioning registered
[ 9.039987] PM: Magic number: 5:376:850
[ 9.137583] RAS: Correctable Errors collector initialized.
[ 9.174008] Freeing unused decrypted memory: 2036K
[ 9.207274] Freeing unused kernel image (initmem) memory: 1644K
[ 9.241196] Write protecting the kernel read-only data: 26624k
[ 9.276164] Freeing unused kernel image (text/rodata gap) memory: 2036K
[ 9.311339] Freeing unused kernel image (rodata/data gap) memory: 1364K
[ 9.409662] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 9.443618] rodata_test: all tests were successful
[ 9.475991] x86/mm: Checking user space page tables
[ 9.569316] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 9.603626] Run /init as init process
[ 9.635062] with arguments:
[ 9.665619] /init
[ 9.695231] with environment:
[ 9.725592] HOME=/
[ 9.755037] TERM=linux
[ 9.784373] BOOT_IMAGE=/2018Dec04/boot/vmlinuz-linux
[ 9.869376] Linux agpgart interface v0.103
[ 10.006045] [drm] radeon kernel modesetting enabled.
[ 10.037433] checking generic (e0000000 5b0000) vs hw (e0000000 10000000)
[ 10.070741] fb0: switching to radeondrmfb from VESA VGA
[ 10.102784] Console: switching to colour dummy device 80x25
[ 10.108442] radeon 0000:01:00.0: vgaarb: deactivate vga console
[ 10.114651] [drm] initializing kernel modesetting (RV530 0x1002:0x71C5 0x103C:0x309F 0x00).
[ 10.123049] resource sanity check: requesting [mem 0x000c0000-0x000dffff], which spans more than PCI Bus 0000:00 [mem 0x000d0000-0x000dffff window]
[ 10.136246] caller pci_map_rom+0x68/0x190 mapping multiple BARs
[ 10.142243] ATOM BIOS: HP
[ 10.144886] [drm] Generation 2 PCI interface, using max accessible memory
[ 10.151661] radeon 0000:01:00.0: VRAM: 256M 0x0000000000000000 - 0x000000000FFFFFFF (256M used)
[ 10.160349] radeon 0000:01:00.0: GTT: 512M 0x0000000010000000 - 0x000000002FFFFFFF
[ 10.167928] [drm] Detected VRAM RAM=256M, BAR=256M
[ 10.172721] [drm] RAM width 128bits DDR
[ 10.176650] [TTM] Zone kernel: Available graphics memory: 1685370 KiB
[ 10.183194] [drm] radeon: 256M of VRAM memory ready
[ 10.188063] [drm] radeon: 512M of GTT memory ready.
[ 10.192946] [drm] GART: num cpu pages 131072, num gpu pages 131072
[ 10.200049] [drm] radeon: power management initialized
[ 10.221205] [drm] radeon: 1 quad pipes, 2 z pipes initialized.
[ 10.228996] [drm] PCIE GART of 512M enabled (table at 0x0000000000040000).
[ 10.235876] radeon 0000:01:00.0: WB enabled
[ 10.240054] radeon 0000:01:00.0: fence driver on ring 0 use gpu addr 0x0000000010000000
[ 10.248180] radeon 0000:01:00.0: radeon: MSI limited to 32-bit
[ 10.254060] radeon 0000:01:00.0: radeon: using MSI.
[ 10.258958] [drm] radeon: irq initialized.
[ 10.263058] [drm] Loading R500 Microcode
[ 10.267503] [drm] radeon: ring at 0x0000000010001000
[ 10.272513] [drm] ring test succeeded in 11 usecs
[ 10.277681] [drm] ib test succeeded in 0 usecs
[ 10.282818] [drm] Radeon Display Connectors
[ 10.287558] [drm] Connector 0:
[ 10.290631] [drm] VGA-1
[ 10.293251] [drm] DDC: 0x7e40 0x7e40 0x7e44 0x7e44 0x7e48 0x7e48 0x7e4c 0x7e4c
[ 10.300635] [drm] Encoders:
[ 10.303598] [drm] CRT1: INTERNAL_KLDSCP_DAC1
[ 10.308231] [drm] Connector 1:
[ 10.311275] [drm] LVDS-1
[ 10.313983] [drm] DDC: 0x7e30 0x7e30 0x7e34 0x7e34 0x7e38 0x7e38 0x7e3c 0x7e3c
[ 10.321373] [drm] Encoders:
[ 10.324331] [drm] LCD1: INTERNAL_LVTM1
[ 10.328425] [drm] Connector 2:
[ 10.331478] [drm] SVIDEO-1
[ 10.334349] [drm] Encoders:
[ 10.337309] [drm] TV1: INTERNAL_KLDSCP_DAC2
[ 10.341828] [drm] Connector 3:
[ 10.344876] [drm] DVI-I-1
[ 10.347661] [drm] HPD1
[ 10.350188] [drm] DDC: 0x7e50 0x7e50 0x7e54 0x7e54 0x7e58 0x7e58 0x7e5c 0x7e5c
[ 10.357566] [drm] Encoders:
[ 10.360526] [drm] DFP2: INTERNAL_KLDSCP_DVO1
[ 10.717347] [drm] fb mappable at 0xE00C0000
[ 10.721526] [drm] vram apper at 0xE0000000
[ 10.725614] [drm] size 7258112
[ 10.728662] [drm] fb depth is 24
[ 10.731884] [drm] pitch is 6912
[ 10.735373] fbcon: radeondrmfb (fb0) is primary device
[ 10.792150] Console: switching to colour frame buffer device 210x65
[ 10.809420] radeon 0000:01:00.0: [drm] fb0: radeondrmfb frame buffer device
[ 10.848069] [drm] Initialized radeon 2.50.0 20080528 for 0000:01:00.0 on minor 0
[ 11.006927] i8042: PNP: PS/2 Controller [PNP0303:C221,PNP0f13:C222] at 0x60,0x64 irq 1,12
[ 11.045463] sdhci: Secure Digital Host Controller Interface driver
[ 11.051695] sdhci: Copyright(c) Pierre Ossman
[ 11.053470] i8042: Detected active multiplexing controller, rev 1.1
[ 11.121687] ata_piix 0000:00:1f.1: version 2.13
[ 11.129840] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:1d.2/usb4/4-1/4-1:1.0/0003:046D:C52B.0001/input/input3
[ 11.141685] sdhci-pci 0000:02:06.3: SDHCI controller found [104c:803c] (rev 0)
[ 11.149780] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 11.155316] serio: i8042 AUX0 port at 0x60,0x64 irq 12
[ 11.161387] serio: i8042 AUX1 port at 0x60,0x64 irq 12
[ 11.166847] serio: i8042 AUX2 port at 0x60,0x64 irq 12
[ 11.172197] serio: i8042 AUX3 port at 0x60,0x64 irq 12
[ 11.175764] scsi host4: ata_piix
[ 11.181542] mmc0: SDHCI controller on PCI [0000:02:06.3] using PIO
[ 11.192994] scsi host5: ata_piix
[ 11.196432] ata5: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0x5080 irq 14
[ 11.203447] ata6: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x5088 irq 15
[ 11.210625] ata6: port disabled--ignoring
[ 11.214946] hid-generic 0003:046D:C52B.0001: input,hidraw0: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:00:1d.2-1/input0
[ 11.223015] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4
[ 11.232570] input: Logitech USB Receiver Mouse as /devices/pci0000:00/0000:00:1d.2/usb4/4-1/4-1:1.1/0003:046D:C52B.0002/input/input5
[ 11.247912] input: Logitech USB Receiver Consumer Control as /devices/pci0000:00/0000:00:1d.2/usb4/4-1/4-1:1.1/0003:046D:C52B.0002/input/input6
[ 11.260884] firewire_ohci 0000:02:06.1: added OHCI v1.10 device as card 0, 4 IR + 8 IT contexts, quirks 0x2
[ 11.314844] input: Logitech USB Receiver System Control as /devices/pci0000:00/0000:00:1d.2/usb4/4-1/4-1:1.1/0003:046D:C52B.0002/input/input7
[ 11.327812] hid-generic 0003:046D:C52B.0002: input,hiddev96,hidraw1: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:00:1d.2-1/input1
[ 11.344232] hid-generic 0003:046D:C52B.0003: hiddev97,hidraw2: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:1d.2-1/input2
[ 11.356634] usbcore: registered new interface driver usbhid
[ 11.362249] usbhid: USB HID core driver
[ 11.388389] ata5.00: ATAPI: HL-DT-ST DVDRAM GSA-T10N, PC05, max MWDMA2
[ 11.424029] scsi 4:0:0:0: CD-ROM HL-DT-ST DVDRAM GSA-T10N PC05 PQ: 0 ANSI: 5
[ 11.476271] logitech-djreceiver 0003:046D:C52B.0003: hiddev96,hidraw0: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:1d.2-1/input2
[ 11.504642] sr 4:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[ 11.513343] cdrom: Uniform CD-ROM driver Revision: 3.20
[ 11.561796] sr 4:0:0:0: Attached scsi CD-ROM sr0
[ 11.607956] input: Logitech Wireless Device PID:101b Mouse as /devices/pci0000:00/0000:00:1d.2/usb4/4-1/4-1:1.2/0003:046D:C52B.0003/0003:046D:101B.0004/input/input13
[ 11.623135] hid-generic 0003:046D:101B.0004: input,hidraw1: USB HID v1.11 Mouse [Logitech Wireless Device PID:101b] on usb-0000:00:1d.2-1/input2:1
[ 11.653317] input: Logitech M705 as /devices/pci0000:00/0000:00:1d.2/usb4/4-1/4-1:1.2/0003:046D:C52B.0003/0003:046D:101B.0004/input/input17
[ 11.668720] logitech-hidpp-device 0003:046D:101B.0004: input,hidraw1: USB HID v1.11 Mouse [Logitech M705] on usb-0000:00:1d.2-1/input2:1
[ 11.771588] firewire_core 0000:02:06.1: created device fw0: GUID 00023f992905280e, S400
[ 11.914352] raid6: skip pq benchmark and using algorithm sse2x4
[ 11.922956] raid6: using ssse3x2 recovery algorithm
[ 11.932373] xor: measuring software checksum speed
[ 11.940796] prefetch64-sse : 9807 MB/sec
[ 11.948955] generic_sse : 8483 MB/sec
[ 11.956042] xor: using function: prefetch64-sse (9807 MB/sec)
[ 12.078140] Btrfs loaded, crc32c=crc32c-generic, zoned=yes
[ 12.114184] BTRFS: device fsid a5376a54-1964-4312-8894-9cf3432397fe devid 1 transid 220025 /dev/sda4 scanned by systemd-udevd (130)
[ 12.218421] BTRFS info (device sda4): disk space caching is enabled
[ 12.227691] BTRFS info (device sda4): has skinny extents
[ 14.088200] random: crng init done
[ 21.134266] fuse: init (API version 7.33)
[ 21.395206] i2c /dev entries driver
[ 22.386568] sd 0:0:0:0: Attached scsi generic sg0 type 0
[ 22.394748] sr 4:0:0:0: Attached scsi generic sg1 type 5
[ 22.451901] Asymmetric key parser 'pkcs8' registered
[ 22.670871] BTRFS info (device sda4): use zstd compression, level 3
[ 22.679958] BTRFS info (device sda4): disk space caching is enabled
[ 26.616332] wmi_bus wmi_bus-PNP0C14:00: WQBG data block query control method not found
[ 26.895150] intel_rng: FWH not detected
[ 27.091154] ACPI Warning: SystemIO range 0x0000000000001028-0x000000000000102F conflicts with OpRegion 0x0000000000001000-0x0000000000001042 (\_SB.C003.C004.C0BC) (20201113/utaddress-204)
[ 27.134540] ACPI: This conflict may cause random problems and system instability
[ 27.134583] hp_accel: laptop model unknown, using default axes configuration
[ 27.145024] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 27.172254] ACPI Warning: SystemIO range 0x0000000000001130-0x000000000000113F conflicts with OpRegion 0x0000000000001100-0x000000000000113B (\_SB.C003.C004.C0CE) (20201113/utaddress-204)
[ 27.194809] ACPI: This conflict may cause random problems and system instability
[ 27.199336] lis3lv02d: 12 bits sensor found
[ 27.212947] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 27.229974] ACPI Warning: SystemIO range 0x0000000000001100-0x000000000000112F conflicts with OpRegion 0x0000000000001100-0x000000000000113B (\_SB.C003.C004.C0CE) (20201113/utaddress-204)
[ 27.253179] psmouse serio4: synaptics: Touchpad model: 1, fw: 6.2, id: 0x25a0b1, caps: 0xa04793/0x300000/0x0/0x0, board id: 0, fw id: 35522
[ 27.274587] psmouse serio4: synaptics: serio: Synaptics pass-through port at isa0060/serio4/input0
[ 27.289218] ACPI: This conflict may cause random problems and system instability
[ 27.300081] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 27.347609] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio4/input/input21
[ 27.364832] [Firmware Bug]: _BCQ is used instead of _BQC
[ 27.376768] ACPI: Video Device [C130] (multi-head: yes rom: no post: no)
[ 27.389089] acpi device:02: registered as cooling_device13
[ 27.398479] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/LNXVIDEO:00/input/input23
[ 27.475425] input: ST LIS3LV02DL Accelerometer as /devices/platform/lis3lv02d/input/input24
[ 27.570953] parport_pc 00:02: reported by Plug and Play ACPI
[ 27.589071] parport0: PC-style at 0x378 (0x778), irq 7, dma 1 [PCSPP,TRISTATE,COMPAT,EPP,ECP,DMA]
[ 27.740648] tg3 0000:08:00.0 eth0: Tigon3 [partno(BCM95751M) rev 4201] (PCI Express) MAC address 00:16:d4:ef:0a:d1
[ 27.768020] tg3 0000:08:00.0 eth0: attached PHY is 5750 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[0])
[ 27.782144] tg3 0000:08:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
[ 27.793494] tg3 0000:08:00.0 eth0: dma_rwctrl[76180000] dma_mask[64-bit]
[ 27.837011] tpm_tis 00:03: 1.2 TPM (device-id 0xB, rev-id 16)
[ 27.869070] tpm tpm0: [Hardware Error]: Adjusting reported timeouts: A 750->750000us B 2000->2000000us C 750->750000us D 750->750000us
[ 27.911301] tpm tpm0: Operation Timed out
[ 27.929027] tpm tpm0: Operation Timed out
[ 27.941347] tpm tpm0: Adjusting TPM timeout parameters.
[ 27.963754] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[ 27.982234] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[ 28.132202] mousedev: PS/2 mouse device common for all mice
[ 28.144043] leds_ss4200: no LED devices found
[ 28.390116] input: PC Speaker as /devices/platform/pcspkr/input/input25
[ 28.402441] yenta_cardbus 0000:02:06.0: CardBus bridge found [103c:309f]
[ 28.413336] yenta_cardbus 0000:02:06.0: CardBus bridge to [bus 03]
[ 28.430896] yenta_cardbus 0000:02:06.0: bridge window [io 0x8000-0x80ff]
[ 28.442398] yenta_cardbus 0000:02:06.0: bridge window [io 0x8400-0x84ff]
[ 28.452511] yenta_cardbus 0000:02:06.0: bridge window [mem 0xd8800000-0xd8bfffff]
[ 28.463343] yenta_cardbus 0000:02:06.0: bridge window [mem 0xdc000000-0xdfffffff]
[ 28.474127] yenta_cardbus 0000:02:06.0: Enabling burst memory read transactions
[ 28.484443] yenta_cardbus 0000:02:06.0: Using INTVAL to route CSC interrupts to PCI
[ 28.495148] yenta_cardbus 0000:02:06.0: Routing CardBus interrupts to PCI
[ 28.504963] yenta_cardbus 0000:02:06.0: TI: mfunc 0x01aa1b22, devctl 0x64
[ 28.755245] yenta_cardbus 0000:02:06.0: ISA IRQ mask 0x0c68, PCI irq 18
[ 28.778839] tpm tpm0: TPM is disabled/deactivated (0x7)
[ 28.804640] yenta_cardbus 0000:02:06.0: Socket status: 30000006
[ 28.857994] yenta_cardbus 0000:02:06.0: pcmcia: parent PCI bridge window: [io 0x8000-0x8fff]
[ 28.915515] yenta_cardbus 0000:02:06.0: pcmcia: parent PCI bridge window: [mem 0xf4200000-0xf45fffff]
[ 28.962259] pcmcia_socket pcmcia_socket0: cs: memory probe 0xf4200000-0xf45fffff:
[ 29.031304] excluding 0xf4200000-0xf423ffff
[ 29.077235] Bluetooth: Core ver 2.22
[ 29.084506] NET: Registered protocol family 31
[ 29.091856] Bluetooth: HCI device and connection manager initialized
[ 29.101310] Bluetooth: HCI socket layer initialized
[ 29.109940] Bluetooth: L2CAP socket layer initialized
[ 29.128822] Bluetooth: SCO socket layer initialized
[ 29.360272] tg3 0000:08:00.0 ens1: renamed from eth0
[ 29.452308] ppdev: user-space parallel port driver
[ 29.484337] input: HP WMI hotkeys as /devices/virtual/input/input26
[ 29.496404] iwl3945: Intel(R) PRO/Wireless 3945ABG/BG Network Connection driver for Linux, in-tree:ds
[ 29.512515] iwl3945: Copyright(c) 2003-2011 Intel Corporation
[ 29.524146] iwl3945: hw_scan is disabled
[ 29.534669] iwl3945 0000:10:00.0: can't disable ASPM; OS doesn't have ASPM control
[ 29.637337] iwl3945 0000:10:00.0: Tunable channels: 11 802.11bg, 13 802.11a channels
[ 29.648647] gpio_ich gpio_ich.2.auto: GPIO from 462 to 511
[ 29.658242] iwl3945 0000:10:00.0: Detected Intel Wireless WiFi Link 3945ABG
[ 29.669840] ieee80211 phy0: Selected rate control algorithm 'iwl-3945-rs'
[ 29.979073] iTCO_vendor_support: vendor-support=0
[ 29.996860] usbcore: registered new interface driver btusb
[ 30.123882] intel_powerclamp: No package C-state available
[ 30.182791] intel_powerclamp: No package C-state available
[ 30.227031] iTCO_wdt iTCO_wdt.1.auto: Found a ICH7-M or ICH7-U TCO device (Version=2, TCOBASE=0x1060)
[ 30.227906] snd_hda_codec_analog hdaudioC0D0: autoconfig for AD1981: line_outs=1 (0x5/0x0/0x0/0x0/0x0) type:speaker
[ 30.240598] iTCO_wdt iTCO_wdt.1.auto: initialized. heartbeat=30 sec (nowayout=0)
[ 30.255009] snd_hda_codec_analog hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 30.276927] snd_hda_codec_analog hdaudioC0D0: hp_outs=1 (0x6/0x0/0x0/0x0/0x0)
[ 30.286846] snd_hda_codec_analog hdaudioC0D0: mono: mono_out=0x0
[ 30.295483] snd_hda_codec_analog hdaudioC0D0: inputs:
[ 30.303207] snd_hda_codec_analog hdaudioC0D0: Mic=0x8
[ 30.311043] snd_hda_codec_analog hdaudioC0D0: Internal Mic=0x18
[ 30.319653] snd_hda_codec_analog hdaudioC0D0: Line=0x9
[ 30.522087] input: HDA Intel Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input27
[ 30.538742] input: HDA Intel Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input28
[ 30.550091] input: HDA Intel Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input29
[ 31.737986] Adding 8388604k swap on /dev/sda3. Priority:-2 extents:1 across:8388604k FS
[ 42.291828] bond0: (slave ens1): Enslaving as a backup interface with a down link
[ 42.739654] iwl3945 0000:10:00.0: loaded firmware version 15.32.2.9
[ 42.799179] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 42.832665] Bluetooth: BNEP filters: protocol multicast
[ 42.841039] Bluetooth: BNEP socket layer initialized
[ 42.851374] bond0: (slave wlan0): Enslaving as a backup interface with a down link
[ 43.370513] NET: Registered protocol family 38
[ 44.456536] cryptd: max_cpu_qlen set to 1000
[ 45.202948] wlan0: authenticate with xx:xx:xx:xx:xx:xx
[ 45.213702] wlan0: send auth to xx:xx:xx:xx:xx:xx (try 1/3)
[ 45.224188] wlan0: authenticated
[ 45.234663] wlan0: associate with xx:xx:xx:xx:xx:xx (try 1/3)
[ 45.263972] wlan0: RX AssocResp from xx:xx:xx:xx:xx:xx (capab=0x11 status=0 aid=1)
[ 45.275925] wlan0: associated
[ 45.282789] bond0: (slave wlan0): link status definitely up, 0 Mbps full duplex
[ 45.293878] bond0: (slave wlan0): making interface the new active one
[ 45.303498] bond0: active interface up!
[ 45.310594] IPv6: ADDRCONF(NETDEV_CHANGE): bond0: link becomes ready

Arch Linux 5.11.0-rc2-1 (ttyS0)

tourmaline login: [ 78.778754] Bluetooth: RFCOMM TTY layer initialized
[ 78.783655] Bluetooth: RFCOMM socket layer initialized
[ 78.788818] Bluetooth: RFCOMM ver 1.11
[ 252.607296] logitech-hidpp-device 0003:046D:101B.0004: HID++ 1.0 device connected.
[ 255.041753] CE: hpet increased min_delta_ns to 20115 nsec
[ 255.042025] CE: hpet increased min_delta_ns to 30172 nsec
[ 255.042299] CE: hpet increased min_delta_ns to 45258 nsec
[ 261.065058] wlan0: deauthenticating from xx:xx:xx:xx:xx:xx by local choice (Reason: 3=DEAUTH_LEAVING)
[ 261.168157] bond0: (slave wlan0): link status definitely down, disabling slave
[ 261.175404] bond0: now running without any active interface!
[ 261.966594] bond0: (slave ens1): Releasing backup interface
[ 262.325594] bond0: (slave wlan0): Releasing backup interface
[ 262.613623] bond0 (unregistering): Released all slaves
[ 265.515215] BTRFS info (device sda4): disk space caching is enabled
[ 266.706560] kvm: exiting hardware virtualization
[ 267.132780] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[ 267.140605] sd 0:0:0:0: [sda] Stopping disk
[ 267.583952] ACPI: Preparing to enter system sleep state S5
[ 267.592259] reboot: Power down
[ 267.598200] acpi_power_off called
[unhandled content-type:application/x-troff-man][unhandled content-type:application/x-troff-man][unhandled content-type:application/x-troff-man][unhandled content-type:application/x-troff-man][unhandled content-type:application/x-troff-man][unhandled content-type:application/x-troff-man][unhandled content-type:application/x-troff-man][unhandled content-type:application/x-troff-man][ 0.000000] microcode: microcode updated early to revision 0xd1, date = 2010-10-01
[ 0.000000] Linux version 5.12.0-arch1-1 (linux@archlinux) (gcc (GCC) 10.2.0, GNU ld (GNU Binutils) 2.36.1) #42 SMP PREEMPT Fri, 21 May 2021 16:25:34 +0000
[ 0.000000] Command line: BOOT_IMAGE=/2018Dec04/boot/vmlinuz-linux root=UUID=a5376a54-1964-4312-8894-9cf3432397fe rw rootflags=subvol=2018Dec04 resume=dev/sda3 vt.color=0x70 systemd.unified_cgroup_hierarchy=1 zswap.enabled=1 zswap.zpool=z3fold acpi_enforce_resources=lax debug ignore_loglevel log_buf_len=16M no_console_suspend systemd.log_target=null console=ttyS0,115200 console=tty17
[ 0.000000] x86/fpu: x87 FPU will use FXSAVE
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000d7fcffff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000d7fd0000-0x00000000d7fe55ff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000d7fe5600-0x00000000d7ff7fff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x00000000d7ff8000-0x00000000d7ffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed20000-0x00000000fed9afff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000feda0000-0x00000000fedbffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ffb00000-0x00000000ffbfffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fff00000-0x00000000ffffffff] reserved
[ 0.000000] printk: debug: ignoring loglevel setting.
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] SMBIOS 2.4 present.
[ 0.000000] DMI: Hewlett-Packard /309F, BIOS 68YAF Ver. F.1D 07/11/2008
[ 0.000000] tsc: Fast TSC calibration using PIT
[ 0.000000] tsc: Detected 1995.142 MHz processor
[ 0.001341] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.001348] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.001357] last_pfn = 0xd7fd0 max_arch_pfn = 0x400000000
[ 0.002275] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.003129] total RAM covered: 3456M
[ 0.003863] Found optimal setting for mtrr clean up
[ 0.003865] gran_size: 64K chunk_size: 1G num_reg: 3 lose cover RAM: 0G
[ 0.031894] check: Scanning 1 areas for low memory corruption
[ 0.119509] printk: log_buf_len: 16777216 bytes
[ 0.119517] printk: early log buf free: 128664(98%)
[ 0.119521] RAMDISK: [mem 0x36433000-0x37210fff]
[ 0.119534] ACPI: Early table checksum verification disabled
[ 0.119548] ACPI: RSDP 0x00000000000F78E0 000024 (v02 HP )
[ 0.119557] ACPI: XSDT 0x00000000D7FE57C8 00007C (v01 HPQOEM SLIC-MPC 00000001 HP 00000001)
[ 0.119570] ACPI: FACP 0x00000000D7FE5684 0000F4 (v04 HP 309F 00000003 HP 00000001)
[ 0.119582] ACPI: DSDT 0x00000000D7FE5ACC 010A75 (v01 HP nc9700 00010000 MSFT 0100000E)
[ 0.119590] ACPI: FACS 0x00000000D7FF7E80 000040
[ 0.119596] ACPI: FACS 0x00000000D7FF7E80 000040
[ 0.119603] ACPI: SLIC 0x00000000D7FE5844 000176 (v01 HPQOEM SLIC-MPC 00000001 HP 00000001)
[ 0.119610] ACPI: HPET 0x00000000D7FE59BC 000038 (v01 HP 309F 00000001 HP 00000001)
[ 0.119617] ACPI: APIC 0x00000000D7FE59F4 000068 (v01 HP 309F 00000001 HP 00000001)
[ 0.119624] ACPI: MCFG 0x00000000D7FE5A5C 00003C (v01 HP 309F 00000001 HP 00000001)
[ 0.119632] ACPI: TCPA 0x00000000D7FE5A98 000032 (v02 HP 309F 00000001 HP 00000001)
[ 0.119639] ACPI: SSDT 0x00000000D7FF6541 000059 (v01 HP HPQNLP 00000001 MSFT 0100000E)
[ 0.119646] ACPI: SSDT 0x00000000D7FF659A 000326 (v01 HP HPQSAT 00000001 MSFT 0100000E)
[ 0.119654] ACPI: SSDT 0x00000000D7FF7115 00025F (v01 HP Cpu0Tst 00003000 INTL 20060317)
[ 0.119661] ACPI: SSDT 0x00000000D7FF7374 0000A6 (v01 HP Cpu1Tst 00003000 INTL 20060317)
[ 0.119669] ACPI: SSDT 0x00000000D7FF741A 0004D7 (v01 HP CpuPm 00003000 INTL 20060317)
[ 0.119675] ACPI: Reserving FACP table memory at [mem 0xd7fe5684-0xd7fe5777]
[ 0.119679] ACPI: Reserving DSDT table memory at [mem 0xd7fe5acc-0xd7ff6540]
[ 0.119682] ACPI: Reserving FACS table memory at [mem 0xd7ff7e80-0xd7ff7ebf]
[ 0.119685] ACPI: Reserving FACS table memory at [mem 0xd7ff7e80-0xd7ff7ebf]
[ 0.119688] ACPI: Reserving SLIC table memory at [mem 0xd7fe5844-0xd7fe59b9]
[ 0.119691] ACPI: Reserving HPET table memory at [mem 0xd7fe59bc-0xd7fe59f3]
[ 0.119693] ACPI: Reserving APIC table memory at [mem 0xd7fe59f4-0xd7fe5a5b]
[ 0.119696] ACPI: Reserving MCFG table memory at [mem 0xd7fe5a5c-0xd7fe5a97]
[ 0.119699] ACPI: Reserving TCPA table memory at [mem 0xd7fe5a98-0xd7fe5ac9]
[ 0.119701] ACPI: Reserving SSDT table memory at [mem 0xd7ff6541-0xd7ff6599]
[ 0.119704] ACPI: Reserving SSDT table memory at [mem 0xd7ff659a-0xd7ff68bf]
[ 0.119706] ACPI: Reserving SSDT table memory at [mem 0xd7ff7115-0xd7ff7373]
[ 0.119709] ACPI: Reserving SSDT table memory at [mem 0xd7ff7374-0xd7ff7419]
[ 0.119712] ACPI: Reserving SSDT table memory at [mem 0xd7ff741a-0xd7ff78f0]
[ 0.119729] ACPI: Local APIC address 0xfee00000
[ 0.119830] No NUMA configuration found
[ 0.119833] Faking a node at [mem 0x0000000000000000-0x00000000d7fcffff]
[ 0.119841] NODE_DATA(0) allocated [mem 0xd7fcc000-0xd7fcffff]
[ 0.119904] Zone ranges:
[ 0.119907] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.119911] DMA32 [mem 0x0000000001000000-0x00000000d7fcffff]
[ 0.119915] Normal empty
[ 0.119918] Device empty
[ 0.119921] Movable zone start for each node
[ 0.119923] Early memory node ranges
[ 0.119925] node 0: [mem 0x0000000000001000-0x000000000009efff]
[ 0.119928] node 0: [mem 0x0000000000100000-0x00000000d7fcffff]
[ 0.119933] Initmem setup node 0 [mem 0x0000000000001000-0x00000000d7fcffff]
[ 0.119936] On node 0 totalpages: 884590
[ 0.119939] DMA zone: 64 pages used for memmap
[ 0.119942] DMA zone: 21 pages reserved
[ 0.119944] DMA zone: 3998 pages, LIFO batch:0
[ 0.121433] DMA zone: 28770 pages in unavailable ranges
[ 0.121438] DMA32 zone: 13760 pages used for memmap
[ 0.121441] DMA32 zone: 880592 pages, LIFO batch:63
[ 0.170753] DMA32 zone: 48 pages in unavailable ranges
[ 0.171211] ACPI: PM-Timer IO Port: 0x1008
[ 0.171218] ACPI: Local APIC address 0xfee00000
[ 0.171233] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.171236] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[ 0.171254] IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-23
[ 0.171260] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.171264] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.171268] ACPI: IRQ0 used by override.
[ 0.171271] ACPI: IRQ9 used by override.
[ 0.171275] Using ACPI (MADT) for SMP configuration information
[ 0.171278] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[ 0.171289] smpboot: Allowing 2 CPUs, 0 hotplug CPUs
[ 0.171317] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.171322] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[ 0.171325] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000dffff]
[ 0.171327] PM: hibernation: Registered nosave memory: [mem 0x000e0000-0x000fffff]
[ 0.171331] [mem 0xd8000000-0xfebfffff] available for PCI devices
[ 0.171334] Booting paravirtualized kernel on bare hardware
[ 0.171341] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
[ 0.180191] setup_percpu: NR_CPUS:320 nr_cpumask_bits:320 nr_cpu_ids:2 nr_node_ids:1
[ 0.181114] percpu: Embedded 56 pages/cpu s192512 r8192 d28672 u1048576
[ 0.181127] pcpu-alloc: s192512 r8192 d28672 u1048576 alloc=1*2097152
[ 0.181133] pcpu-alloc: [0] 0 1
[ 0.181173] Built 1 zonelists, mobility grouping on. Total pages: 870745
[ 0.181180] Policy zone: DMA32
[ 0.181183] Kernel command line: BOOT_IMAGE=/2018Dec04/boot/vmlinuz-linux root=UUID=a5376a54-1964-4312-8894-9cf3432397fe rw rootflags=subvol=2018Dec04 resume=dev/sda3 vt.color=0x70 systemd.unified_cgroup_hierarchy=1 zswap.enabled=1 zswap.zpool=z3fold acpi_enforce_resources=lax debug ignore_loglevel log_buf_len=16M no_console_suspend systemd.log_target=null console=ttyS0,115200 console=tty17
[ 0.183143] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[ 0.184090] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.184170] mem auto-init: stack:byref_all(zero), heap alloc:on, heap free:off
[ 0.237447] Memory: 3349148K/3538360K available (14344K kernel code, 2038K rwdata, 8972K rodata, 1652K init, 4356K bss, 188952K reserved, 0K cma-reserved)
[ 0.237469] random: get_random_u64 called from __kmem_cache_create+0x22/0x530 with crng_init=0
[ 0.237723] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[ 0.237755] Kernel/User page tables isolation: enabled
[ 0.237797] ftrace: allocating 41867 entries in 164 pages
[ 0.259431] ftrace: allocated 164 pages with 3 groups
[ 0.259713] rcu: Preemptible hierarchical RCU implementation.
[ 0.259718] rcu: RCU dyntick-idle grace-period acceleration is enabled.
[ 0.259720] rcu: RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=2.
[ 0.259723] rcu: RCU priority boosting: priority 1 delay 500 ms.
[ 0.259726] Trampoline variant of Tasks RCU enabled.
[ 0.259728] Rude variant of Tasks RCU enabled.
[ 0.259729] Tracing variant of Tasks RCU enabled.
[ 0.259731] rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
[ 0.259733] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
[ 0.266120] NR_IRQS: 20736, nr_irqs: 440, preallocated irqs: 16
[ 0.266451] Console: colour dummy device 80x25
[ 0.266810] printk: console [tty17] enabled
[ 1.165027] printk: console [ttyS0] enabled
[ 1.169219] ACPI: Core revision 20210105
[ 1.173292] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[ 1.182416] APIC: Switch to symmetric I/O mode setup
[ 1.187853] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 1.209080] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x398482674d6, max_idle_ns: 881590773559 ns
[ 1.219580] Calibrating delay loop (skipped), value calculated using timer frequency.. 3991.54 BogoMIPS (lpj=6650473)
[ 1.222912] pid_max: default: 32768 minimum: 301
[ 1.226281] LSM: Security Framework initializing
[ 1.229585] Yama: becoming mindful.
[ 1.232922] LSM support for eBPF active
[ 1.236297] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[ 1.239606] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[ 1.246288] intel_init_thermal: CPU0, lvtthmr_init: 0x10200
[ 1.249591] process: using mwait in idle threads
[ 1.252914] Last level iTLB entries: 4KB 128, 2MB 4, 4MB 4
[ 1.256244] Last level dTLB entries: 4KB 256, 2MB 0, 4MB 32, 1GB 0
[ 1.259580] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[ 1.262913] Spectre V2 : Mitigation: Full generic retpoline
[ 1.266244] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[ 1.269577] Speculative Store Bypass: Vulnerable
[ 1.272914] MDS: Vulnerable: Clear CPU buffers attempted, no microcode
[ 1.276487] Freeing SMP alternatives memory: 36K
[ 1.390065] smpboot: CPU0: Intel(R) Core(TM)2 CPU T7200 @ 2.00GHz (family: 0x6, model: 0xf, stepping: 0x6)
[ 1.393225] Performance Events: PEBS fmt0-, Core2 events, 4-deep LBR, Intel PMU driver.
[ 1.396248] core: PEBS disabled due to CPU errata
[ 1.399578] ... version: 2
[ 1.402911] ... bit width: 40
[ 1.406244] ... generic registers: 2
[ 1.409577] ... value mask: 000000ffffffffff
[ 1.412911] ... max period: 000000007fffffff
[ 1.416244] ... fixed-purpose events: 3
[ 1.419577] ... event mask: 0000000700000003
[ 1.423091] rcu: Hierarchical SRCU implementation.
[ 1.427160] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[ 1.429660] smp: Bringing up secondary CPUs ...
[ 1.433215] x86: Booting SMP configuration:
[ 1.436257] .... node #0, CPUs: #1
[ 0.933210] intel_init_thermal: CPU1, lvtthmr_init: 0x10000
[ 0.933210] CPU0: Thermal monitoring enabled (TM2)
[ 1.455845] smp: Brought up 1 node, 2 CPUs
[ 1.456254] smpboot: Max logical packages: 1
[ 1.459578] smpboot: Total of 2 processors activated (7983.09 BogoMIPS)
[ 1.466761] devtmpfs: initialized
[ 1.469673] x86/mm: Memory block size: 128MB
[ 1.473563] PM: Registering ACPI NVS region [mem 0xd7fe5600-0xd7ff7fff] (76288 bytes)
[ 1.482981] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[ 1.492922] futex hash table entries: 512 (order: 3, 32768 bytes, linear)
[ 1.499671] pinctrl core: initialized pinctrl subsystem
[ 1.503090] PM: RTC time: 19:03:16, date: 2021-05-21
[ 1.509769] NET: Registered protocol family 16
[ 1.513245] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations
[ 1.519725] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 1.529728] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 1.536262] audit: initializing netlink subsys (disabled)
[ 1.542970] audit: type=2000 audit(1621623795.346:1): state=initialized audit_enabled=0 res=1
[ 1.543145] thermal_sys: Registered thermal governor 'fair_share'
[ 1.546246] thermal_sys: Registered thermal governor 'bang_bang'
[ 1.549579] thermal_sys: Registered thermal governor 'step_wise'
[ 1.552911] thermal_sys: Registered thermal governor 'user_space'
[ 1.556244] thermal_sys: Registered thermal governor 'power_allocator'
[ 1.559601] cpuidle: using governor ladder
[ 1.566251] cpuidle: using governor menu
[ 1.569704] ACPI: bus type PCI registered
[ 1.572912] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 1.576362] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[ 1.579581] PCI: not using MMCONFIG
[ 1.582916] PCI: Using configuration type 1 for base access
[ 1.588601] Kprobes globally optimized
[ 1.589621] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[ 1.596404] fbcon: Taking over console
[ 1.599608] ACPI: Added _OSI(Module Device)
[ 1.602944] ACPI: Added _OSI(Processor Device)
[ 1.609582] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 1.612912] ACPI: Added _OSI(Processor Aggregator Device)
[ 1.619579] ACPI: Added _OSI(Linux-Dell-Video)
[ 1.622911] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[ 1.629578] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[ 1.646164] ACPI: 6 ACPI AML tables successfully acquired and loaded
[ 1.705457] ACPI: Dynamic OEM Table Load:
[ 1.709585] ACPI: SSDT 0xFFFF8EFC013AB400 00023D (v01 HP Cpu0Ist 00003000 INTL 20060317)
[ 1.720576] ACPI: Dynamic OEM Table Load:
[ 1.722916] ACPI: SSDT 0xFFFF8EFC01327000 0004CB (v01 HP Cpu0Cst 00003001 INTL 20060317)
[ 1.734201] ACPI: Dynamic OEM Table Load:
[ 1.739582] ACPI: SSDT 0xFFFF8EFC01A03100 0000C8 (v01 HP Cpu1Ist 00003000 INTL 20060317)
[ 1.747035] ACPI: Dynamic OEM Table Load:
[ 1.752915] ACPI: SSDT 0xFFFF8EFC019AE780 000085 (v01 HP Cpu1Cst 00003000 INTL 20060317)
[ 1.760559] ACPI: EC: EC started
[ 1.762922] ACPI: EC: interrupt blocked
[ 1.774899] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[ 1.779580] ACPI: \_SB_.C003.C004.C006: Boot DSDT EC used to handle transactions
[ 1.789581] ACPI: Interpreter enabled
[ 1.792938] ACPI: (supports S0 S3 S4 S5)
[ 1.796245] ACPI: Using IOAPIC for interrupt routing
[ 1.799629] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[ 1.810221] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in ACPI motherboard resources
[ 1.819583] pmd_set_huge: Cannot satisfy [mem 0xf8000000-0xf8200000] with a huge-page mapping due to MTRR override.
[ 1.829718] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 1.840046] ACPI: Enabled 13 GPEs in block 00 to 1F
[ 1.852933] ACPI: PM: Power Resource [C1F8] (on)
[ 1.860809] ACPI: PM: Power Resource [C207] (on)
[ 1.867451] ACPI: PM: Power Resource [C224] (on)
[ 1.873170] ACPI: PM: Power Resource [C22C] (on)
[ 1.883033] ACPI: PM: Power Resource [C334] (off)
[ 1.889679] ACPI: PM: Power Resource [C335] (off)
[ 1.893008] ACPI: PM: Power Resource [C336] (off)
[ 1.899677] ACPI: PM: Power Resource [C337] (off)
[ 1.903007] ACPI: PM: Power Resource [C338] (off)
[ 1.909687] ACPI: PM: Power Resource [C339] (off)
[ 1.913008] ACPI: PM: Power Resource [C33A] (off)
[ 1.916348] ACPI: PM: Power Resource [C33B] (off)
[ 1.923007] ACPI: PM: Power Resource [C33C] (off)
[ 1.926355] ACPI: PM: Power Resource [C33D] (off)
[ 1.932969] ACPI: PM: Power Resource [C33E] (off)
[ 1.943766] ACPI: PCI Root Bridge [C003] (domain 0000 [bus 00-ff])
[ 1.949585] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 1.959584] acpi PNP0A08:00: _OSC: platform retains control of PCIe features (AE_NOT_FOUND)
[ 1.969590] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
[ 1.984626] PCI host bridge to bus 0000:00
[ 1.989579] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 1.996245] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 2.002911] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 2.009578] pci_bus 0000:00: root bus resource [mem 0xd8000000-0xfedfffff window]
[ 2.019578] pci_bus 0000:00: root bus resource [mem 0xfee01000-0xffffffff window]
[ 2.026244] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000dffff window]
[ 2.032911] pci_bus 0000:00: root bus resource [bus 00-ff]
[ 2.039596] pci 0000:00:00.0: [8086:27a0] type 00 class 0x060000
[ 2.046418] pci 0000:00:01.0: [8086:27a1] type 01 class 0x060400
[ 2.049645] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[ 2.056452] pci 0000:00:1b.0: [8086:27d8] type 00 class 0x040300
[ 2.062936] pci 0000:00:1b.0: reg 0x10: [mem 0xf4700000-0xf4703fff 64bit]
[ 2.069707] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 2.076430] pci 0000:00:1c.0: [8086:27d0] type 01 class 0x060400
[ 2.083058] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 2.089769] pci 0000:00:1c.1: [8086:27d2] type 01 class 0x060400
[ 2.096391] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[ 2.099770] pci 0000:00:1c.3: [8086:27d6] type 01 class 0x060400
[ 2.106373] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[ 2.113109] pci 0000:00:1d.0: [8086:27c8] type 00 class 0x0c0300
[ 2.119635] pci 0000:00:1d.0: reg 0x20: [io 0x5000-0x501f]
[ 2.126439] pci 0000:00:1d.1: [8086:27c9] type 00 class 0x0c0300
[ 2.132968] pci 0000:00:1d.1: reg 0x20: [io 0x5020-0x503f]
[ 2.136429] pci 0000:00:1d.2: [8086:27ca] type 00 class 0x0c0300
[ 2.142968] pci 0000:00:1d.2: reg 0x20: [io 0x5040-0x505f]
[ 2.149778] pci 0000:00:1d.3: [8086:27cb] type 00 class 0x0c0300
[ 2.156301] pci 0000:00:1d.3: reg 0x20: [io 0x5060-0x507f]
[ 2.159766] pci 0000:00:1d.7: [8086:27cc] type 00 class 0x0c0320
[ 2.166264] pci 0000:00:1d.7: reg 0x10: [mem 0xf4704000-0xf47043ff]
[ 2.173024] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[ 2.179742] pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
[ 2.186499] pci 0000:00:1f.0: [8086:27b9] type 00 class 0x060100
[ 2.193038] pci 0000:00:1f.0: quirk: [io 0x1000-0x107f] claimed by ICH6 ACPI/GPIO/TCO
[ 2.199582] pci 0000:00:1f.0: quirk: [io 0x1100-0x113f] claimed by ICH6 GPIO
[ 2.206247] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0500 (mask 007f)
[ 2.216250] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 4 PIO at 0238 (mask 0007)
[ 2.222911] pci 0000:00:1f.0: quirk_ich7_lpc+0x0/0x60 took 29296 usecs
[ 2.229758] pci 0000:00:1f.1: [8086:27df] type 00 class 0x01018a
[ 2.236267] pci 0000:00:1f.1: reg 0x10: [io 0x0000-0x0007]
[ 2.239587] pci 0000:00:1f.1: reg 0x14: [io 0x0000-0x0003]
[ 2.246257] pci 0000:00:1f.1: reg 0x18: [io 0x0000-0x0007]
[ 2.252921] pci 0000:00:1f.1: reg 0x1c: [io 0x0000-0x0003]
[ 2.256254] pci 0000:00:1f.1: reg 0x20: [io 0x5080-0x508f]
[ 2.262934] pci 0000:00:1f.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7]
[ 2.269578] pci 0000:00:1f.1: legacy IDE quirk: reg 0x14: [io 0x03f6]
[ 2.276244] pci 0000:00:1f.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177]
[ 2.282911] pci 0000:00:1f.1: legacy IDE quirk: reg 0x1c: [io 0x0376]
[ 2.289749] pci 0000:00:1f.2: [8086:27c5] type 00 class 0x010601
[ 2.296264] pci 0000:00:1f.2: reg 0x10: [io 0x13f0-0x13f7]
[ 2.302921] pci 0000:00:1f.2: reg 0x14: [io 0x15f4-0x15f7]
[ 2.306254] pci 0000:00:1f.2: reg 0x18: [io 0x1370-0x1377]
[ 2.312923] pci 0000:00:1f.2: reg 0x1c: [io 0x1574-0x1577]
[ 2.319588] pci 0000:00:1f.2: reg 0x20: [io 0x50b0-0x50bf]
[ 2.322920] pci 0000:00:1f.2: reg 0x24: [mem 0xf4705000-0xf47053ff]
[ 2.329645] pci 0000:00:1f.2: PME# supported from D3hot
[ 2.336492] pci 0000:01:00.0: [1002:71c5] type 00 class 0x030000
[ 2.342935] pci 0000:01:00.0: reg 0x10: [mem 0xe0000000-0xefffffff pref]
[ 2.349591] pci 0000:01:00.0: reg 0x14: [io 0x4000-0x40ff]
[ 2.352924] pci 0000:01:00.0: reg 0x18: [mem 0xf4600000-0xf460ffff]
[ 2.359623] pci 0000:01:00.0: reg 0x30: [mem 0x00000000-0x0001ffff pref]
[ 2.366262] pci 0000:01:00.0: enabling Extended Tags
[ 2.372999] pci 0000:01:00.0: supports D1 D2
[ 2.376376] pci 0000:01:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
[ 2.386267] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 2.392913] pci 0000:00:01.0: bridge window [io 0x4000-0x4fff]
[ 2.396245] pci 0000:00:01.0: bridge window [mem 0xf4600000-0xf46fffff]
[ 2.402914] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xefffffff 64bit pref]
[ 2.413007] acpiphp: Slot [1] registered
[ 2.416398] pci 0000:08:00.0: [14e4:16fd] type 00 class 0x020000
[ 2.423060] pci 0000:08:00.0: reg 0x10: [mem 0xf4100000-0xf410ffff 64bit]
[ 2.429872] pci 0000:08:00.0: enabling Extended Tags
[ 2.433329] pci 0000:08:00.0: PME# supported from D3hot D3cold
[ 2.439848] pci 0000:08:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
[ 2.449644] pci 0000:00:1c.0: PCI bridge to [bus 08]
[ 2.456250] pci 0000:00:1c.0: bridge window [mem 0xf4100000-0xf41fffff]
[ 2.463114] pci 0000:10:00.0: [8086:4222] type 00 class 0x028000
[ 2.469687] pci 0000:10:00.0: reg 0x10: [mem 0xf4000000-0xf4000fff]
[ 2.476778] pci 0000:10:00.0: PME# supported from D0 D3hot D3cold
[ 2.483253] pci 0000:10:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
[ 2.492979] pci 0000:00:1c.1: PCI bridge to [bus 10]
[ 2.496250] pci 0000:00:1c.1: bridge window [mem 0xf4000000-0xf40fffff]
[ 2.503048] acpiphp: Slot [1-1] registered
[ 2.509633] pci 0000:00:1c.3: PCI bridge to [bus 20]
[ 2.512914] pci 0000:00:1c.3: bridge window [io 0x2000-0x3fff]
[ 2.519581] pci 0000:00:1c.3: bridge window [mem 0xf0000000-0xf3ffffff]
[ 2.526276] pci_bus 0000:02: extended config space not accessible
[ 2.533016] pci 0000:02:06.0: [104c:8039] type 02 class 0x060700
[ 2.539606] pci 0000:02:06.0: reg 0x10: [mem 0xf4200000-0xf4200fff]
[ 2.546308] pci 0000:02:06.0: supports D1 D2
[ 2.549578] pci 0000:02:06.0: PME# supported from D0 D1 D2 D3hot
[ 2.556374] pci 0000:02:06.1: [104c:803a] type 00 class 0x0c0010
[ 2.559604] pci 0000:02:06.1: reg 0x10: [mem 0xf4201000-0xf42017ff]
[ 2.566258] pci 0000:02:06.1: reg 0x14: [mem 0xf4204000-0xf4207fff]
[ 2.573040] pci 0000:02:06.1: supports D1 D2
[ 2.579578] pci 0000:02:06.1: PME# supported from D0 D1 D2 D3hot
[ 2.582999] pci 0000:02:06.2: [104c:803b] type 00 class 0x018000
[ 2.589603] pci 0000:02:06.2: reg 0x10: [mem 0xf4208000-0xf4208fff]
[ 2.596385] pci 0000:02:06.2: supports D1 D2
[ 2.599578] pci 0000:02:06.2: PME# supported from D0 D1 D2 D3hot
[ 2.606333] pci 0000:02:06.3: [104c:803c] type 00 class 0x080500
[ 2.612936] pci 0000:02:06.3: reg 0x10: [mem 0xf4209000-0xf42090ff]
[ 2.619718] pci 0000:02:06.3: supports D1 D2
[ 2.622911] pci 0000:02:06.3: PME# supported from D0 D1 D2 D3hot
[ 2.629666] pci 0000:02:06.4: [104c:803d] type 00 class 0x078000
[ 2.636270] pci 0000:02:06.4: reg 0x10: [mem 0xf420a000-0xf420afff]
[ 2.642924] pci 0000:02:06.4: reg 0x14: [mem 0xf420b000-0xf420bfff]
[ 2.649705] pci 0000:02:06.4: supports D1 D2
[ 2.652911] pci 0000:02:06.4: PME# supported from D0 D1 D2 D3hot
[ 2.659724] pci 0000:00:1e.0: PCI bridge to [bus 02-03] (subtractive decode)
[ 2.666251] pci 0000:00:1e.0: bridge window [mem 0xf4200000-0xf45fffff]
[ 2.672920] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7 window] (subtractive decode)
[ 2.679578] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff window] (subtractive decode)
[ 2.689578] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
[ 2.699578] pci 0000:00:1e.0: bridge window [mem 0xd8000000-0xfedfffff window] (subtractive decode)
[ 2.706244] pci 0000:00:1e.0: bridge window [mem 0xfee01000-0xffffffff window] (subtractive decode)
[ 2.716245] pci 0000:00:1e.0: bridge window [mem 0x000d0000-0x000dffff window] (subtractive decode)
[ 2.726282] pci_bus 0000:03: extended config space not accessible
[ 2.732936] pci_bus 0000:03: busn_res: [bus 03] end can not be updated to 06
[ 2.739585] pci 0000:00:1e.0: bridge has subordinate 03 but max busn 06
[ 2.747763] ACPI: PCI Interrupt Link [C10F] (IRQs *10 11)
[ 2.753120] ACPI: PCI Interrupt Link [C110] (IRQs *10 11)
[ 2.759785] ACPI: PCI Interrupt Link [C111] (IRQs 10 *11)
[ 2.766451] ACPI: PCI Interrupt Link [C112] (IRQs 10 11) *5
[ 2.769784] ACPI: PCI Interrupt Link [C125] (IRQs *10 11)
[ 2.776451] ACPI: PCI Interrupt Link [C126] (IRQs *10 11)
[ 2.783118] ACPI: PCI Interrupt Link [C127] (IRQs 10 *11)
[ 2.786424] ACPI: PCI Interrupt Link [C128] (IRQs) *0, disabled.
[ 2.796274] pci 0000:08:00.0: BAR 0: assigned [mem 0xf4100000-0xf410ffff 64bit]
[ 2.796243] ACPI: EC: interrupt unblocked
[ 2.802914] ACPI: EC: event unblocked
[ 2.806244] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[ 2.812911] ACPI: EC: GPE=0x16
[ 2.816245] ACPI: \_SB_.C003.C004.C006: Boot DSDT EC initialization complete
[ 2.822912] ACPI: \_SB_.C003.C004.C006: EC: Used to handle transactions and events
[ 2.829680] iommu: Default domain type: Translated
[ 2.836272] pci 0000:01:00.0: vgaarb: setting as boot VGA device
[ 2.839576] pci 0000:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[ 2.849582] pci 0000:01:00.0: vgaarb: bridge control possible
[ 2.856245] vgaarb: loaded
[ 2.858943] SCSI subsystem initialized
[ 2.862943] libata version 3.00 loaded.
[ 2.866258] ACPI: bus type USB registered
[ 2.869602] usbcore: registered new interface driver usbfs
[ 2.872927] usbcore: registered new interface driver hub
[ 2.876254] usbcore: registered new device driver usb
[ 2.879621] pps_core: LinuxPPS API ver. 1 registered
[ 2.882911] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 2.886248] PTP clock support registered
[ 2.889593] EDAC MC: Ver: 3.0.0
[ 2.893160] NetLabel: Initializing
[ 2.896246] NetLabel: domain hash size = 128
[ 2.899578] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 2.902938] NetLabel: unlabeled traffic allowed by default
[ 2.906251] PCI: Using ACPI for IRQ routing
[ 2.914478] PCI: pci_cache_line_size set to 64 bytes
[ 2.916335] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
[ 2.919578] e820: reserve RAM buffer [mem 0xd7fd0000-0xd7ffffff]
[ 2.923881] hpet: 3 channels of 0 reserved for per-cpu timers
[ 2.929581] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[ 2.936244] hpet0: 3 comparators, 64-bit 14.318180 MHz counter
[ 2.945043] clocksource: Switched to clocksource tsc-early
[ 2.966929] VFS: Disk quotas dquot_6.6.0
[ 2.970888] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 2.977896] pnp: PnP ACPI init
[ 2.981278] system 00:00: [mem 0x00000000-0x0009ffff] could not be reserved
[ 2.988232] system 00:00: [mem 0x000e0000-0x000fffff] could not be reserved
[ 2.995178] system 00:00: [mem 0x00100000-0xd7ffffff] could not be reserved
[ 3.002132] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
[ 3.009909] pnp 00:01: Plug and Play ACPI device, IDs PNP0501 PNP0500 (active)
[ 3.017923] pnp 00:02: [dma 1]
[ 3.021092] pnp 00:02: Plug and Play ACPI device, IDs PNP0401 (active)
[ 3.027776] pnp 00:03: Plug and Play ACPI device, IDs IFX0102 PNP0c31 (active)
[ 3.035036] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
[ 3.041618] pnp 00:05: Plug and Play ACPI device, IDs PNP0303 (active)
[ 3.048170] pnp 00:06: Plug and Play ACPI device, IDs SYN011d SYN0100 SYN0002 PNP0f13 (active)
[ 3.057060] system 00:07: [io 0x0500-0x055f] has been reserved
[ 3.062972] system 00:07: [io 0x0800-0x080f] has been reserved
[ 3.068882] system 00:07: [mem 0xffb00000-0xffbfffff] has been reserved
[ 3.075482] system 00:07: [mem 0xfff00000-0xffffffff] has been reserved
[ 3.082088] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 3.089916] system 00:08: [io 0x04d0-0x04d1] has been reserved
[ 3.095828] system 00:08: [io 0x1000-0x107f] has been reserved
[ 3.101734] system 00:08: [io 0x1100-0x113f] has been reserved
[ 3.107641] system 00:08: [io 0x1200-0x121f] has been reserved
[ 3.113552] system 00:08: [mem 0xf8000000-0xfbffffff] has been reserved
[ 3.120153] system 00:08: [mem 0xfec00000-0xfec000ff] could not be reserved
[ 3.127099] system 00:08: [mem 0xfed20000-0xfed3ffff] has been reserved
[ 3.133700] system 00:08: [mem 0xfed45000-0xfed8ffff] has been reserved
[ 3.140303] system 00:08: [mem 0xfed90000-0xfed9afff] has been reserved
[ 3.146909] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 3.154101] system 00:09: [mem 0xfeda0000-0xfedbffff] has been reserved
[ 3.160706] system 00:09: [mem 0xfee00000-0xfee00fff] has been reserved
[ 3.167311] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 3.174117] pnp: PnP ACPI: found 10 devices
[ 3.185549] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 3.194500] NET: Registered protocol family 2
[ 3.199122] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear)
[ 3.207761] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear)
[ 3.215894] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear)
[ 3.223280] TCP: Hash tables configured (established 32768 bind 32768)
[ 3.229955] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear)
[ 3.237387] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear)
[ 3.244115] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear)
[ 3.252375] NET: Registered protocol family 1
[ 3.256780] NET: Registered protocol family 44
[ 3.261245] pci 0000:00:1c.0: bridge window [io 0x1000-0x0fff] to [bus 08] add_size 1000
[ 3.269408] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 08] add_size 200000 add_align 100000
[ 3.280858] pci 0000:00:1c.1: bridge window [io 0x1000-0x0fff] to [bus 10] add_size 1000
[ 3.289018] pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 10] add_size 200000 add_align 100000
[ 3.300467] pci 0000:00:1c.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 20] add_size 200000 add_align 100000
[ 3.311934] pci 0000:00:1e.0: bridge window [io 0x1000-0x0fff] to [bus 02-03] add_size 1000
[ 3.320376] pci 0000:00:1c.0: BAR 15: assigned [mem 0xd8000000-0xd81fffff 64bit pref]
[ 3.328194] pci 0000:00:1c.1: BAR 15: assigned [mem 0xd8200000-0xd83fffff 64bit pref]
[ 3.336008] pci 0000:00:1c.3: BAR 15: assigned [mem 0xd8400000-0xd85fffff 64bit pref]
[ 3.343821] pci 0000:00:1c.0: BAR 13: assigned [io 0x6000-0x6fff]
[ 3.349989] pci 0000:00:1c.1: BAR 13: assigned [io 0x7000-0x7fff]
[ 3.356155] pci 0000:00:1e.0: BAR 13: assigned [io 0x8000-0x8fff]
[ 3.362325] pci 0000:01:00.0: BAR 6: assigned [mem 0xf4620000-0xf463ffff pref]
[ 3.369531] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 3.374488] pci 0000:00:01.0: bridge window [io 0x4000-0x4fff]
[ 3.380570] pci 0000:00:01.0: bridge window [mem 0xf4600000-0xf46fffff]
[ 3.387343] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xefffffff 64bit pref]
[ 3.395069] pci 0000:00:1c.0: PCI bridge to [bus 08]
[ 3.400024] pci 0000:00:1c.0: bridge window [io 0x6000-0x6fff]
[ 3.406108] pci 0000:00:1c.0: bridge window [mem 0xf4100000-0xf41fffff]
[ 3.412882] pci 0000:00:1c.0: bridge window [mem 0xd8000000-0xd81fffff 64bit pref]
[ 3.420612] pci 0000:00:1c.1: PCI bridge to [bus 10]
[ 3.425567] pci 0000:00:1c.1: bridge window [io 0x7000-0x7fff]
[ 3.431652] pci 0000:00:1c.1: bridge window [mem 0xf4000000-0xf40fffff]
[ 3.438428] pci 0000:00:1c.1: bridge window [mem 0xd8200000-0xd83fffff 64bit pref]
[ 3.446160] pci 0000:00:1c.3: PCI bridge to [bus 20]
[ 3.451116] pci 0000:00:1c.3: bridge window [io 0x2000-0x3fff]
[ 3.457198] pci 0000:00:1c.3: bridge window [mem 0xf0000000-0xf3ffffff]
[ 3.463971] pci 0000:00:1c.3: bridge window [mem 0xd8400000-0xd85fffff 64bit pref]
[ 3.471705] pci 0000:02:06.0: BAR 15: assigned [mem 0xdc000000-0xdfffffff pref]
[ 3.479003] pci 0000:02:06.0: BAR 16: no space for [mem size 0x04000000]
[ 3.485690] pci 0000:02:06.0: BAR 16: failed to assign [mem size 0x04000000]
[ 3.492722] pci 0000:02:06.0: BAR 13: assigned [io 0x8000-0x80ff]
[ 3.498890] pci 0000:02:06.0: BAR 14: assigned [io 0x8400-0x84ff]
[ 3.505059] pci 0000:02:06.0: BAR 16: assigned [mem 0xdc000000-0xdfffffff]
[ 3.511926] pci 0000:02:06.0: BAR 15: no space for [mem size 0x04000000 pref]
[ 3.519043] pci 0000:02:06.0: BAR 15: failed to assign [mem size 0x04000000 pref]
[ 3.526509] pci 0000:02:06.0: CardBus bridge to [bus 03]
[ 3.531809] pci 0000:02:06.0: bridge window [io 0x8000-0x80ff]
[ 3.537891] pci 0000:02:06.0: bridge window [io 0x8400-0x84ff]
[ 3.543986] pci 0000:02:06.0: bridge window [mem 0xdc000000-0xdfffffff]
[ 3.550763] pci 0000:00:1e.0: PCI bridge to [bus 02-03]
[ 3.555978] pci 0000:00:1e.0: bridge window [io 0x8000-0x8fff]
[ 3.562060] pci 0000:00:1e.0: bridge window [mem 0xf4200000-0xf45fffff]
[ 3.568842] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[ 3.575010] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
[ 3.581177] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[ 3.588035] pci_bus 0000:00: resource 7 [mem 0xd8000000-0xfedfffff window]
[ 3.594895] pci_bus 0000:00: resource 8 [mem 0xfee01000-0xffffffff window]
[ 3.601754] pci_bus 0000:00: resource 9 [mem 0x000d0000-0x000dffff window]
[ 3.608612] pci_bus 0000:01: resource 0 [io 0x4000-0x4fff]
[ 3.614171] pci_bus 0000:01: resource 1 [mem 0xf4600000-0xf46fffff]
[ 3.620423] pci_bus 0000:01: resource 2 [mem 0xe0000000-0xefffffff 64bit pref]
[ 3.627630] pci_bus 0000:08: resource 0 [io 0x6000-0x6fff]
[ 3.633191] pci_bus 0000:08: resource 1 [mem 0xf4100000-0xf41fffff]
[ 3.639444] pci_bus 0000:08: resource 2 [mem 0xd8000000-0xd81fffff 64bit pref]
[ 3.646649] pci_bus 0000:10: resource 0 [io 0x7000-0x7fff]
[ 3.652208] pci_bus 0000:10: resource 1 [mem 0xf4000000-0xf40fffff]
[ 3.658459] pci_bus 0000:10: resource 2 [mem 0xd8200000-0xd83fffff 64bit pref]
[ 3.665663] pci_bus 0000:20: resource 0 [io 0x2000-0x3fff]
[ 3.671223] pci_bus 0000:20: resource 1 [mem 0xf0000000-0xf3ffffff]
[ 3.677474] pci_bus 0000:20: resource 2 [mem 0xd8400000-0xd85fffff 64bit pref]
[ 3.684678] pci_bus 0000:02: resource 0 [io 0x8000-0x8fff]
[ 3.690238] pci_bus 0000:02: resource 1 [mem 0xf4200000-0xf45fffff]
[ 3.696493] pci_bus 0000:02: resource 4 [io 0x0000-0x0cf7 window]
[ 3.702661] pci_bus 0000:02: resource 5 [io 0x0d00-0xffff window]
[ 3.708827] pci_bus 0000:02: resource 6 [mem 0x000a0000-0x000bffff window]
[ 3.715685] pci_bus 0000:02: resource 7 [mem 0xd8000000-0xfedfffff window]
[ 3.722546] pci_bus 0000:02: resource 8 [mem 0xfee01000-0xffffffff window]
[ 3.729405] pci_bus 0000:02: resource 9 [mem 0x000d0000-0x000dffff window]
[ 3.736266] pci_bus 0000:03: resource 0 [io 0x8000-0x80ff]
[ 3.741825] pci_bus 0000:03: resource 1 [io 0x8400-0x84ff]
[ 3.747387] pci_bus 0000:03: resource 3 [mem 0xdc000000-0xdfffffff]
[ 3.755585] pci 0000:01:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[ 3.763961] PCI: CLS 64 bytes, default 64
[ 3.768075] Trying to unpack rootfs image as initramfs...
[ 3.947852] Freeing initrd memory: 14200K
[ 3.952552] check: Scanning for low memory corruption every 60 seconds
[ 3.959660] Initialise system trusted keyrings
[ 3.964113] Key type blacklist registered
[ 3.968244] workingset: timestamp_bits=41 max_order=20 bucket_order=0
[ 3.977012] zbud: loaded
[ 3.993773] Key type asymmetric registered
[ 3.997869] Asymmetric key parser 'x509' registered
[ 4.002746] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
[ 4.010198] io scheduler mq-deadline registered
[ 4.014724] io scheduler kyber registered
[ 4.018763] io scheduler bfq registered
[ 4.024197] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 4.030946] vesafb: mode is 1400x1050x32, linelength=5632, pages=0
[ 4.037120] vesafb: scrolling: redraw
[ 4.040774] vesafb: Truecolor: size=0:8:8:8, shift=0:16:8:0
[ 4.046367] vesafb: framebuffer at 0xe0000000, mapped to 0x(____ptrval____), using 5824k, total 5824k
[ 4.055719] Console: switching to colour frame buffer device 175x65
[ 4.150982] fb0: VESA VGA frame buffer device
[ 4.159696] Monitor-Mwait will be used to enter C-1 state
[ 4.165581] Monitor-Mwait will be used to enter C-2 state
[ 4.171458] ACPI: \_PR_.CPU0: Found 2 idle states
[ 4.177094] ACPI: AC: AC Adapter [C1C3] (on-line)
[ 4.182310] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0
[ 4.191430] ACPI: button: Sleep Button [C24D]
[ 4.196224] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input1
[ 4.205141] ACPI: button: Lid Switch [C245]
[ 4.209751] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[ 4.226287] ACPI: button: Power Button [PWRF]
[ 4.281805] thermal LNXTHERM:00: registered as thermal_zone0
[ 4.288021] ACPI: thermal: Thermal Zone [TZ0] (58 C)
[ 4.312836] thermal LNXTHERM:01: registered as thermal_zone1
[ 4.318988] ACPI: thermal: Thermal Zone [TZ1] (59 C)
[ 4.345722] thermal LNXTHERM:02: registered as thermal_zone2
[ 4.351875] ACPI: thermal: Thermal Zone [TZ2] (50 C)
[ 4.376501] thermal LNXTHERM:03: registered as thermal_zone3
[ 4.382653] ACPI: thermal: Thermal Zone [TZ3] (42 C)
[ 4.404576] thermal LNXTHERM:04: registered as thermal_zone4
[ 4.410730] ACPI: thermal: Thermal Zone [TZ4] (16 C)
[ 4.422209] thermal LNXTHERM:05: registered as thermal_zone5
[ 4.428411] ACPI: thermal: Thermal Zone [TZ5] (66 C)
[ 4.434068] ACPI: battery: Slot [C1C5] (battery absent)
[ 4.434132] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 4.439914] ACPI: battery: Slot [C1C4] (battery absent)
[ 4.446856] 00:01: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[ 4.463563] Non-volatile memory driver v1.3
[ 4.468114] AMD-Vi: AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
[ 4.475395] AMD-Vi: AMD IOMMUv2 functionality not available on this system
[ 4.483556] ahci 0000:00:1f.2: version 3.0
[ 4.488315] ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
[ 4.495532] ahci 0000:00:1f.2: AHCI 0001.0100 32 slots 4 ports 1.5 Gbps 0x1 impl SATA mode
[ 4.504513] ahci 0000:00:1f.2: flags: 64bit ncq ilck stag pm led clo pmp pio slum part
[ 4.513795] scsi host0: ahci
[ 4.517173] scsi host1: ahci
[ 4.520536] scsi host2: ahci
[ 4.523862] scsi host3: ahci
[ 4.527072] ata1: SATA max UDMA/133 abar m1024@0xf4705000 port 0xf4705100 irq 28
[ 4.535111] ata2: DUMMY
[ 4.564323] ata3: DUMMY
[ 4.593065] ata4: DUMMY
[ 4.621373] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 4.654270] ehci-pci: EHCI PCI platform driver
[ 4.685179] ehci-pci 0000:00:1d.7: EHCI Host Controller
[ 4.716605] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 1
[ 4.750313] ehci-pci 0000:00:1d.7: debug port 1
[ 4.784718] ehci-pci 0000:00:1d.7: irq 20, io mem 0xf4704000
[ 4.829616] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[ 4.861317] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.12
[ 4.895708] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 4.895711] usb usb1: Product: EHCI Host Controller
[ 4.895714] usb usb1: Manufacturer: Linux 5.12.0-arch1-1 ehci_hcd
[ 4.895716] usb usb1: SerialNumber: 0000:00:1d.7
[ 4.895905] hub 1-0:1.0: USB hub found
[ 4.962928] tsc: Refined TSC clocksource calibration: 1994.999 MHz
[ 4.992294] hub 1-0:1.0: 8 ports detected
[ 5.022555] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x398374a7fb8, max_idle_ns: 881590820223 ns
[ 5.052180] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 5.183851] ohci-pci: OHCI PCI platform driver
[ 5.183868] uhci_hcd: USB Universal Host Controller Interface driver
[ 5.214996] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[ 5.248458] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[ 5.281374] clocksource: Switched to clocksource tsc
[ 5.313227] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[ 5.347214] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[ 5.378946] uhci_hcd 0000:00:1d.0: detected 2 ports
[ 5.413949] ata1.00: ACPI cmd b1/c1:00:00:00:00:a0 (DEVICE CONFIGURATION OVERLAY) filtered out
[ 5.446221] uhci_hcd 0000:00:1d.0: irq 20, io base 0x00005000
[ 5.482785] ata1.00: ACPI cmd c6/00:10:00:00:00:a0 (SET MULTIPLE MODE) succeeded
[ 5.516615] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.12
[ 5.552070] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
[ 5.588436] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 5.588439] usb usb2: Product: UHCI Host Controller
[ 5.588441] usb usb2: Manufacturer: Linux 5.12.0-arch1-1 uhci_hcd
[ 5.588443] usb usb2: SerialNumber: 0000:00:1d.0
[ 5.588598] hub 2-0:1.0: USB hub found
[ 5.624245] ata1.00: ATA-7: TOSHIBA MK1234GSX, AH001H, max UDMA/100
[ 5.658841] hub 2-0:1.0: 2 ports detected
[ 5.691489] ata1.00: 234441648 sectors, multi 16: LBA48
[ 5.725336] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[ 5.759348] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[ 5.787574] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
[ 5.821081] ata1.00: ACPI cmd b1/c1:00:00:00:00:a0 (DEVICE CONFIGURATION OVERLAY) filtered out
[ 5.821132] ata1.00: ACPI cmd c6/00:10:00:00:00:a0 (SET MULTIPLE MODE) succeeded
[ 5.852168] uhci_hcd 0000:00:1d.1: detected 2 ports
[ 5.884615] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
[ 5.916861] uhci_hcd 0000:00:1d.1: irq 22, io base 0x00005020
[ 5.952700] ata1.00: configured for UDMA/100
[ 5.987220] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.12
[ 6.033909] scsi 0:0:0:0: Direct-Access ATA TOSHIBA MK1234GS 1H PQ: 0 ANSI: 5
[ 6.058831] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 6.058834] usb usb3: Product: UHCI Host Controller
[ 6.058837] usb usb3: Manufacturer: Linux 5.12.0-arch1-1 uhci_hcd
[ 6.058839] usb usb3: SerialNumber: 0000:00:1d.1
[ 6.058987] hub 3-0:1.0: USB hub found
[ 6.091649] sd 0:0:0:0: [sda] 234441648 512-byte logical blocks: (120 GB/112 GiB)
[ 6.126587] hub 3-0:1.0: 2 ports detected
[ 6.160628] sd 0:0:0:0: [sda] Write Protect is off
[ 6.192918] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[ 6.229211] usb 2-1: new full-speed USB device number 2 using uhci_hcd
[ 6.265798] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
[ 6.301613] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 6.334758] uhci_hcd 0000:00:1d.2: detected 2 ports
[ 6.369280] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 6.401963] uhci_hcd 0000:00:1d.2: irq 18, io base 0x00005040
[ 6.783770] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.12
[ 6.822841] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 6.860798] usb usb4: Product: UHCI Host Controller
[ 6.878862] sda: sda1 sda2 sda3 sda4
[ 6.896360] usb usb4: Manufacturer: Linux 5.12.0-arch1-1 uhci_hcd
[ 6.930539] usb 2-1: New USB device found, idVendor=03f0, idProduct=171d, bcdDevice= 1.00
[ 6.930543] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 6.967441] usb usb4: SerialNumber: 0000:00:1d.2
[ 7.006953] usb 2-1: Product: HP Integrated Module
[ 7.006956] usb 2-1: Manufacturer: Broadcom Corp
[ 7.045785] hub 4-0:1.0: USB hub found
[ 7.187044] hub 4-0:1.0: 2 ports detected
[ 7.222014] uhci_hcd 0000:00:1d.3: UHCI Host Controller
[ 7.258007] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
[ 7.258016] uhci_hcd 0000:00:1d.3: detected 2 ports
[ 7.331749] uhci_hcd 0000:00:1d.3: irq 19, io base 0x00005060
[ 7.352923] usb 2-2: new full-speed USB device number 3 using uhci_hcd
[ 7.367673] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.12
[ 7.404103] sd 0:0:0:0: [sda] Attached SCSI disk
[ 7.442502] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 7.514888] usb usb5: Product: UHCI Host Controller
[ 7.550017] usb usb5: Manufacturer: Linux 5.12.0-arch1-1 uhci_hcd
[ 7.586620] usb usb5: SerialNumber: 0000:00:1d.3
[ 7.621419] hub 5-0:1.0: USB hub found
[ 7.654817] hub 5-0:1.0: 2 ports detected
[ 7.688056] random: fast init done
[ 7.720524] usbcore: registered new interface driver usbserial_generic
[ 7.755986] usbserial: USB Serial support registered for generic
[ 7.790928] rtc_cmos 00:04: RTC can wake from S4
[ 7.824392] rtc_cmos 00:04: registered as rtc0
[ 7.856840] hpet: Lost 1 RTC interrupts
[ 7.888421] usb 4-1: new full-speed USB device number 2 using uhci_hcd
[ 7.888420] usb 2-2: New USB device found, idVendor=08ff, idProduct=2580, bcdDevice= 6.23
[ 7.888426] usb 2-2: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[ 7.959371] rtc_cmos 00:04: setting system clock to 2021-05-21T19:03:23 UTC (1621623803)
[ 7.959400] rtc_cmos 00:04: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[ 7.994812] usb 2-2: Product: Fingerprint Sensor
[ 8.101192] intel_pstate: CPU model not supported
[ 8.134491] ledtrig-cpu: registered to indicate activity on CPUs
[ 8.169354] hid: raw HID events driver (C) Jiri Kosina
[ 8.203103] drop_monitor: Initializing network drop monitor service
[ 8.237857] Initializing XFRM netlink socket
[ 8.270317] NET: Registered protocol family 10
[ 8.311628] Segment Routing with IPv6
[ 8.342995] RPL Segment Routing with IPv6
[ 8.349246] usb 4-1: New USB device found, idVendor=046d, idProduct=c52b, bcdDevice=12.10
[ 8.374516] NET: Registered protocol family 17
[ 8.410499] usb 4-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 8.477777] usb 4-1: Product: USB Receiver
[ 8.477962] microcode: sig=0x6f6, pf=0x20, revision=0xd1
[ 8.509357] usb 4-1: Manufacturer: Logitech
[ 8.573429] microcode: Microcode Update Driver: v2.2.
[ 8.573438] IPI shorthand broadcast: enabled
[ 8.573459] sched_clock: Marking stable (7643032916, 929876906)->(8791666509, -218756687)
[ 8.674082] registered taskstats version 1
[ 8.705838] Loading compiled-in X.509 certificates
[ 8.729587] usb 1-7: new high-speed USB device number 5 using ehci-pci
[ 8.743461] Loaded X.509 cert 'Build time autogenerated kernel key: e3f62a7aad01602b54a1b14180ab55bb7bf715c3'
[ 8.811752] zswap: loaded using pool lz4/z3fold
[ 8.845130] Key type ._fscrypt registered
[ 8.877343] Key type .fscrypt registered
[ 8.909162] Key type fscrypt-provisioning registered
[ 8.942573] PM: Magic number: 5:102:92
[ 8.974148] container: hash matches
[ 9.004970] RAS: Correctable Errors collector initialized.
[ 9.004991] usb 1-7: New USB device found, idVendor=04b4, idProduct=6560, bcdDevice= 0.0b
[ 9.073152] usb 1-7: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 9.109793] hub 1-7:1.0: USB hub found
[ 9.110608] Freeing unused decrypted memory: 2036K
[ 9.173962] Freeing unused kernel image (initmem) memory: 1652K
[ 9.206857] Write protecting the kernel read-only data: 26624k
[ 9.239655] hub 1-7:1.0: 4 ports detected
[ 9.271807] Freeing unused kernel image (text/rodata gap) memory: 2036K
[ 9.306403] Freeing unused kernel image (rodata/data gap) memory: 1268K
[ 9.405732] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 9.439131] rodata_test: all tests were successful
[ 9.471015] x86/mm: Checking user space page tables
[ 9.564899] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 9.598578] Run /init as init process
[ 9.629323] with arguments:
[ 9.659309] /init
[ 9.688259] with environment:
[ 9.717684] HOME=/
[ 9.745854] TERM=linux
[ 9.773995] BOOT_IMAGE=/2018Dec04/boot/vmlinuz-linux
[ 9.857380] Linux agpgart interface v0.103
[ 9.993816] [drm] radeon kernel modesetting enabled.
[ 10.024461] checking generic (e0000000 5b0000) vs hw (e0000000 10000000)
[ 10.057108] fb0: switching to radeondrmfb from VESA VGA
[ 10.088619] Console: switching to colour dummy device 80x25
[ 10.094269] radeon 0000:01:00.0: vgaarb: deactivate vga console
[ 10.100479] [drm] initializing kernel modesetting (RV530 0x1002:0x71C5 0x103C:0x309F 0x00).
[ 10.108869] resource sanity check: requesting [mem 0x000c0000-0x000dffff], which spans more than PCI Bus 0000:00 [mem 0x000d0000-0x000dffff window]
[ 10.122055] caller pci_map_rom+0x68/0x190 mapping multiple BARs
[ 10.128063] ATOM BIOS: HP
[ 10.130700] [drm] Generation 2 PCI interface, using max accessible memory
[ 10.137474] radeon 0000:01:00.0: VRAM: 256M 0x0000000000000000 - 0x000000000FFFFFFF (256M used)
[ 10.146151] radeon 0000:01:00.0: GTT: 512M 0x0000000010000000 - 0x000000002FFFFFFF
[ 10.153725] [drm] Detected VRAM RAM=256M, BAR=256M
[ 10.158507] [drm] RAM width 128bits DDR
[ 10.162442] [TTM] Zone kernel: Available graphics memory: 1685318 KiB
[ 10.168998] [drm] radeon: 256M of VRAM memory ready
[ 10.173882] [drm] radeon: 512M of GTT memory ready.
[ 10.178768] [drm] GART: num cpu pages 131072, num gpu pages 131072
[ 10.185862] [drm] radeon: power management initialized
[ 10.208218] [drm] radeon: 1 quad pipes, 2 z pipes initialized.
[ 10.216087] [drm] PCIE GART of 512M enabled (table at 0x0000000000040000).
[ 10.222971] radeon 0000:01:00.0: WB enabled
[ 10.227148] radeon 0000:01:00.0: fence driver on ring 0 use gpu addr 0x0000000010000000
[ 10.235268] radeon 0000:01:00.0: radeon: MSI limited to 32-bit
[ 10.241153] radeon 0000:01:00.0: radeon: using MSI.
[ 10.246052] [drm] radeon: irq initialized.
[ 10.250152] [drm] Loading R500 Microcode
[ 10.254594] [drm] radeon: ring at 0x0000000010001000
[ 10.259600] [drm] ring test succeeded in 11 usecs
[ 10.264793] [drm] ib test succeeded in 0 usecs
[ 10.269963] [drm] Radeon Display Connectors
[ 10.274153] [drm] Connector 0:
[ 10.277208] [drm] VGA-1
[ 10.279824] [drm] DDC: 0x7e40 0x7e40 0x7e44 0x7e44 0x7e48 0x7e48 0x7e4c 0x7e4c
[ 10.287202] [drm] Encoders:
[ 10.290178] [drm] CRT1: INTERNAL_KLDSCP_DAC1
[ 10.294789] [drm] Connector 1:
[ 10.297839] [drm] LVDS-1
[ 10.300541] [drm] DDC: 0x7e30 0x7e30 0x7e34 0x7e34 0x7e38 0x7e38 0x7e3c 0x7e3c
[ 10.307920] [drm] Encoders:
[ 10.310880] [drm] LCD1: INTERNAL_LVTM1
[ 10.314967] [drm] Connector 2:
[ 10.318027] [drm] SVIDEO-1
[ 10.320903] [drm] Encoders:
[ 10.323864] [drm] TV1: INTERNAL_KLDSCP_DAC2
[ 10.328384] [drm] Connector 3:
[ 10.331431] [drm] DVI-I-1
[ 10.334218] [drm] HPD1
[ 10.336746] [drm] DDC: 0x7e50 0x7e50 0x7e54 0x7e54 0x7e58 0x7e58 0x7e5c 0x7e5c
[ 10.344123] [drm] Encoders:
[ 10.347084] [drm] DFP2: INTERNAL_KLDSCP_DVO1
[ 10.718967] [drm] fb mappable at 0xE00C0000
[ 10.723146] [drm] vram apper at 0xE0000000
[ 10.727233] [drm] size 7258112
[ 10.730281] [drm] fb depth is 24
[ 10.733501] [drm] pitch is 6912
[ 10.736985] fbcon: radeondrmfb (fb0) is primary device
[ 10.800448] Console: switching to colour frame buffer device 210x65
[ 10.817727] radeon 0000:01:00.0: [drm] fb0: radeondrmfb frame buffer device
[ 10.862991] [drm] Initialized radeon 2.50.0 20080528 for 0000:01:00.0 on minor 0
[ 11.027988] i8042: PNP: PS/2 Controller [PNP0303:C221,PNP0f13:C222] at 0x60,0x64 irq 1,12
[ 11.044045] i8042: Detected active multiplexing controller, rev 1.1
[ 11.051602] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 11.056675] serio: i8042 AUX0 port at 0x60,0x64 irq 12
[ 11.061899] serio: i8042 AUX1 port at 0x60,0x64 irq 12
[ 11.067160] serio: i8042 AUX2 port at 0x60,0x64 irq 12
[ 11.072388] serio: i8042 AUX3 port at 0x60,0x64 irq 12
[ 11.091206] ata_piix 0000:00:1f.1: version 2.13
[ 11.096964] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:1d.2/usb4/4-1/4-1:1.0/0003:046D:C52B.0001/input/input3
[ 11.112496] sdhci: Secure Digital Host Controller Interface driver
[ 11.118756] sdhci: Copyright(c) Pierre Ossman
[ 11.119149] scsi host4: ata_piix
[ 11.134012] sdhci-pci 0000:02:06.3: SDHCI controller found [104c:803c] (rev 0)
[ 11.143813] scsi host5: ata_piix
[ 11.147889] ata5: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0x5080 irq 14
[ 11.155541] mmc0: SDHCI controller on PCI [0000:02:06.3] using PIO
[ 11.162299] ata6: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x5088 irq 15
[ 11.169657] firewire_ohci 0000:02:06.1: added OHCI v1.10 device as card 0, 4 IR + 8 IT contexts, quirks 0x2
[ 11.179705] hid-generic 0003:046D:C52B.0001: input,hidraw0: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:00:1d.2-1/input0
[ 11.179786] ata6: port disabled--ignoring
[ 11.210256] input: Logitech USB Receiver Mouse as /devices/pci0000:00/0000:00:1d.2/usb4/4-1/4-1:1.1/0003:046D:C52B.0002/input/input5
[ 11.222436] input: Logitech USB Receiver Consumer Control as /devices/pci0000:00/0000:00:1d.2/usb4/4-1/4-1:1.1/0003:046D:C52B.0002/input/input6
[ 11.250483] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4
[ 11.293143] input: Logitech USB Receiver System Control as /devices/pci0000:00/0000:00:1d.2/usb4/4-1/4-1:1.1/0003:046D:C52B.0002/input/input7
[ 11.306265] hid-generic 0003:046D:C52B.0002: input,hiddev96,hidraw1: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:00:1d.2-1/input1
[ 11.322333] hid-generic 0003:046D:C52B.0003: hiddev97,hidraw2: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:1d.2-1/input2
[ 11.334713] usbcore: registered new interface driver usbhid
[ 11.340319] usbhid: USB HID core driver
[ 11.344618] ata5.00: ATAPI: HL-DT-ST DVDRAM GSA-T10N, PC05, max MWDMA2
[ 11.378967] scsi 4:0:0:0: CD-ROM HL-DT-ST DVDRAM GSA-T10N PC05 PQ: 0 ANSI: 5
[ 11.446969] sr 4:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[ 11.455707] cdrom: Uniform CD-ROM driver Revision: 3.20
[ 11.481036] logitech-djreceiver 0003:046D:C52B.0003: hiddev96,hidraw0: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:1d.2-1/input2
[ 11.509987] sr 4:0:0:0: Attached scsi CD-ROM sr0
[ 11.613076] input: Logitech Wireless Device PID:101b Mouse as /devices/pci0000:00/0000:00:1d.2/usb4/4-1/4-1:1.2/0003:046D:C52B.0003/0003:046D:101B.0004/input/input13
[ 11.629157] hid-generic 0003:046D:101B.0004: input,hidraw1: USB HID v1.11 Mouse [Logitech Wireless Device PID:101b] on usb-0000:00:1d.2-1/input2:1
[ 11.666418] input: Logitech M705 as /devices/pci0000:00/0000:00:1d.2/usb4/4-1/4-1:1.2/0003:046D:C52B.0003/0003:046D:101B.0004/input/input17
[ 11.681850] logitech-hidpp-device 0003:046D:101B.0004: input,hidraw1: USB HID v1.11 Mouse [Logitech M705] on usb-0000:00:1d.2-1/input2:1
[ 11.706423] firewire_core 0000:02:06.1: created device fw0: GUID 00023f992905280e, S400
[ 11.862202] raid6: skip pq benchmark and using algorithm sse2x4
[ 11.870851] raid6: using ssse3x2 recovery algorithm
[ 11.880541] xor: measuring software checksum speed
[ 11.888965] prefetch64-sse : 10557 MB/sec
[ 11.897405] generic_sse : 9057 MB/sec
[ 11.904614] xor: using function: prefetch64-sse (10557 MB/sec)
[ 12.030280] Btrfs loaded, crc32c=crc32c-generic, zoned=yes
[ 12.039550] BTRFS: device fsid a5376a54-1964-4312-8894-9cf3432397fe devid 1 transid 219974 /dev/sda4 scanned by systemd-udevd (135)
[ 12.210076] BTRFS info (device sda4): disk space caching is enabled
[ 12.219380] BTRFS info (device sda4): has skinny extents
[ 14.244857] random: crng init done
[ 20.909301] BTRFS info (device sda4): use zstd compression, level 3
[ 20.918567] BTRFS info (device sda4): disk space caching is enabled
[ 21.162236] fuse: init (API version 7.33)
[ 21.250463] i2c /dev entries driver
[ 21.594127] sd 0:0:0:0: Attached scsi generic sg0 type 0
[ 21.602459] sr 4:0:0:0: Attached scsi generic sg1 type 5
[ 21.749900] Asymmetric key parser 'pkcs8' registered
[ 24.505591] wmi_bus wmi_bus-PNP0C14:00: WQBG data block query control method not found
[ 24.816229] hp_accel: laptop model unknown, using default axes configuration
[ 24.830655] lis3lv02d: 12 bits sensor found
[ 24.941814] intel_rng: FWH not detected
[ 24.958623] ACPI: \_SB_.C003.C085.C130.C14C: _BCQ is used instead of _BQC
[ 24.995333] ACPI: video: Video Device [C130] (multi-head: yes rom: no post: no)
[ 25.007790] acpi device:02: registered as cooling_device13
[ 25.018781] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/LNXVIDEO:00/input/input22
[ 25.032998] input: ST LIS3LV02DL Accelerometer as /devices/platform/lis3lv02d/input/input23
[ 25.089967] ACPI Warning: SystemIO range 0x0000000000001028-0x000000000000102F conflicts with OpRegion 0x0000000000001000-0x0000000000001042 (\_SB.C003.C004.C0BC) (20210105/utaddress-204)
[ 25.117063] ACPI: OSL: Resource conflict; ACPI support missing from driver?
[ 25.127172] ACPI: OSL: Resource conflict: System may be unstable or behave erratically
[ 25.138372] ACPI Warning: SystemIO range 0x0000000000001130-0x000000000000113F conflicts with OpRegion 0x0000000000001100-0x000000000000113B (\_SB.C003.C004.C0CE) (20210105/utaddress-204)
[ 25.165888] ACPI: OSL: Resource conflict; ACPI support missing from driver?
[ 25.185686] ACPI: OSL: Resource conflict: System may be unstable or behave erratically
[ 25.197093] ACPI Warning: SystemIO range 0x0000000000001100-0x000000000000112F conflicts with OpRegion 0x0000000000001100-0x000000000000113B (\_SB.C003.C004.C0CE) (20210105/utaddress-204)
[ 25.222263] ACPI: OSL: Resource conflict; ACPI support missing from driver?
[ 25.234050] ACPI: OSL: Resource conflict: System may be unstable or behave erratically
[ 25.315557] tpm_tis 00:03: 1.2 TPM (device-id 0xB, rev-id 16)
[ 25.327404] leds_ss4200: no LED devices found
[ 25.346231] parport_pc 00:02: reported by Plug and Play ACPI
[ 25.356655] parport0: PC-style at 0x378 (0x778), irq 7, dma 1 [PCSPP,TRISTATE,COMPAT,EPP,ECP,DMA]
[ 25.375685] tpm tpm0: [Hardware Error]: Adjusting reported timeouts: A 750->750000us B 2000->2000000us C 750->750000us D 750->750000us
[ 25.406351] tpm tpm0: Operation Timed out
[ 25.423376] tpm tpm0: Operation Timed out
[ 25.430974] tpm tpm0: Adjusting TPM timeout parameters.
[ 25.442293] psmouse serio4: synaptics: Touchpad model: 1, fw: 6.2, id: 0x25a0b1, caps: 0xa04793/0x300000/0x0/0x0, board id: 0, fw id: 35522
[ 25.466289] psmouse serio4: synaptics: serio: Synaptics pass-through port at isa0060/serio4/input0
[ 25.522579] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio4/input/input21
[ 25.721631] mousedev: PS/2 mouse device common for all mice
[ 25.966129] yenta_cardbus 0000:02:06.0: CardBus bridge found [103c:309f]
[ 25.978798] yenta_cardbus 0000:02:06.0: CardBus bridge to [bus 03]
[ 25.990993] yenta_cardbus 0000:02:06.0: bridge window [io 0x8000-0x80ff]
[ 26.004373] yenta_cardbus 0000:02:06.0: bridge window [io 0x8400-0x84ff]
[ 26.018343] yenta_cardbus 0000:02:06.0: bridge window [mem 0xd8800000-0xd8bfffff]
[ 26.033131] yenta_cardbus 0000:02:06.0: bridge window [mem 0xdc000000-0xdfffffff]
[ 26.054189] yenta_cardbus 0000:02:06.0: Enabling burst memory read transactions
[ 26.076265] yenta_cardbus 0000:02:06.0: Using INTVAL to route CSC interrupts to PCI
[ 26.102935] yenta_cardbus 0000:02:06.0: Routing CardBus interrupts to PCI
[ 26.120291] yenta_cardbus 0000:02:06.0: TI: mfunc 0x01aa1b22, devctl 0x64
[ 26.169861] input: PC Speaker as /devices/platform/pcspkr/input/input25
[ 26.195185] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[ 26.214185] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[ 26.332829] tpm tpm0: TPM is disabled/deactivated (0x7)
[ 26.383524] yenta_cardbus 0000:02:06.0: ISA IRQ mask 0x0c68, PCI irq 18
[ 26.393371] yenta_cardbus 0000:02:06.0: Socket status: 30000006
[ 26.404195] yenta_cardbus 0000:02:06.0: pcmcia: parent PCI bridge window: [io 0x8000-0x8fff]
[ 26.416086] yenta_cardbus 0000:02:06.0: pcmcia: parent PCI bridge window: [mem 0xf4200000-0xf45fffff]
[ 26.428631] pcmcia_socket pcmcia_socket0: cs: memory probe 0xf4200000-0xf45fffff:
[ 26.439487] excluding 0xf4200000-0xf423ffff
[ 26.618163] tg3 0000:08:00.0 eth0: Tigon3 [partno(BCM95751M) rev 4201] (PCI Express) MAC address 00:16:d4:ef:0a:d1
[ 26.646257] tg3 0000:08:00.0 eth0: attached PHY is 5750 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[0])
[ 26.668280] tg3 0000:08:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
[ 26.679277] tg3 0000:08:00.0 eth0: dma_rwctrl[76180000] dma_mask[64-bit]
[ 26.728615] input: HP WMI hotkeys as /devices/virtual/input/input26
[ 26.926329] gpio_ich gpio_ich.2.auto: GPIO from 462 to 511
[ 26.939271] ppdev: user-space parallel port driver
[ 26.990338] tg3 0000:08:00.0 ens1: renamed from eth0
[ 27.011905] Bluetooth: Core ver 2.22
[ 27.020294] NET: Registered protocol family 31
[ 27.028698] Bluetooth: HCI device and connection manager initialized
[ 27.039838] Bluetooth: HCI socket layer initialized
[ 27.047610] Bluetooth: L2CAP socket layer initialized
[ 27.056580] Bluetooth: SCO socket layer initialized
[ 27.186788] iTCO_vendor_support: vendor-support=0
[ 27.543778] iTCO_wdt iTCO_wdt.1.auto: Found a ICH7-M or ICH7-U TCO device (Version=2, TCOBASE=0x1060)
[ 27.556375] iTCO_wdt iTCO_wdt.1.auto: initialized. heartbeat=30 sec (nowayout=0)
[ 27.590957] iwl3945: Intel(R) PRO/Wireless 3945ABG/BG Network Connection driver for Linux, in-tree:ds
[ 27.603372] iwl3945: Copyright(c) 2003-2011 Intel Corporation
[ 27.612278] iwl3945: hw_scan is disabled
[ 27.619053] iwl3945 0000:10:00.0: can't disable ASPM; OS doesn't have ASPM control
[ 27.683033] iwl3945 0000:10:00.0: Tunable channels: 11 802.11bg, 13 802.11a channels
[ 27.693529] iwl3945 0000:10:00.0: Detected Intel Wireless WiFi Link 3945ABG
[ 27.703540] ieee80211 phy0: Selected rate control algorithm 'iwl-3945-rs'
[ 27.854140] usbcore: registered new interface driver btusb
[ 28.247198] snd_hda_codec_analog hdaudioC0D0: autoconfig for AD1981: line_outs=1 (0x5/0x0/0x0/0x0/0x0) type:speaker
[ 28.262094] snd_hda_codec_analog hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 28.273359] snd_hda_codec_analog hdaudioC0D0: hp_outs=1 (0x6/0x0/0x0/0x0/0x0)
[ 28.283614] snd_hda_codec_analog hdaudioC0D0: mono: mono_out=0x0
[ 28.294070] snd_hda_codec_analog hdaudioC0D0: inputs:
[ 28.303458] snd_hda_codec_analog hdaudioC0D0: Mic=0x8
[ 28.312859] snd_hda_codec_analog hdaudioC0D0: Internal Mic=0x18
[ 28.325601] intel_powerclamp: No package C-state available
[ 28.327016] snd_hda_codec_analog hdaudioC0D0: Line=0x9
[ 28.378622] intel_powerclamp: No package C-state available
[ 28.542804] input: HDA Intel Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input27
[ 28.554967] input: HDA Intel Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input28
[ 28.566424] input: HDA Intel Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input29
[ 29.606315] Adding 8388604k swap on /dev/sda3. Priority:-2 extents:1 across:8388604k FS
[ 35.871947] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 35.879656] Bluetooth: BNEP filters: protocol multicast
[ 35.887170] Bluetooth: BNEP socket layer initialized
[ 36.257550] bond0: (slave ens1): Enslaving as a backup interface with a down link
[ 36.276218] NET: Registered protocol family 38
[ 36.676051] iwl3945 0000:10:00.0: loaded firmware version 15.32.2.9
[ 36.764128] bond0: (slave wlan0): Enslaving as a backup interface with a down link
[ 38.714227] cryptd: max_cpu_qlen set to 1000
[ 39.627555] wlan0: authenticate with xx:xx:xx:xx:xx:xx
[ 39.638587] wlan0: send auth to xx:xx:xx:xx:xx:xx (try 1/3)
[ 39.648696] wlan0: authenticated
[ 39.659610] wlan0: associate with xx:xx:xx:xx:xx:xx (try 1/3)
[ 39.689926] wlan0: RX AssocResp from xx:xx:xx:xx:xx:xx (capab=0x11 status=0 aid=3)
[ 39.703966] wlan0: associated
[ 39.776357] bond0: (slave wlan0): link status definitely up, 0 Mbps full duplex
[ 39.787703] bond0: (slave wlan0): making interface the new active one
[ 39.798315] bond0: active interface up!
[ 39.806104] IPv6: ADDRCONF(NETDEV_CHANGE): bond0: link becomes ready

Arch Linux 5.12.0-arch1-1 (ttyS0)

tourmaline login: [ 71.583940] CE: hpet increased min_delta_ns to 20115 nsec
[ 71.584183] CE: hpet increased min_delta_ns to 30172 nsec
[ 71.584456] CE: hpet increased min_delta_ns to 45258 nsec
[ 71.584848] CE: hpet increased min_delta_ns to 67887 nsec
[ 75.241536] Bluetooth: RFCOMM TTY layer initialized
[ 75.246523] Bluetooth: RFCOMM socket layer initialized
[ 75.251685] Bluetooth: RFCOMM ver 1.11
[ 94.202329] logitech-hidpp-device 0003:046D:101B.0004: HID++ 1.0 device connected.
[ 119.534188] wlan0: deauthenticating from xx:xx:xx:xx:xx:xx by local choice (Reason: 3=DEAUTH_LEAVING)
[ 119.570449] bond0: (slave ens1): Releasing backup interface
[ 119.918940] bond0: (slave wlan0): Releasing backup interface
[ 120.558439] bond0 (unregistering): Released all slaves
[ 122.868596] BTRFS info (device sda4): disk space caching is enabled
[ 123.952611] kvm: exiting hardware virtualization
[ 124.031526] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[ 124.039298] sd 0:0:0:0: [sda] Stopping disk
[ 124.813366] ACPI: Preparing to enter system sleep state S5
[ 124.821411] reboot: Power down
[ 124.827059] acpi_power_off called
[ 0.000000] microcode: microcode updated early to revision 0xd1, date = 2010-10-01
[ 0.000000] Linux version 5.12.0-arch1-1 (linux@archlinux) (gcc (GCC) 10.2.0, GNU ld (GNU Binutils) 2.36.1) #42 SMP PREEMPT Fri, 21 May 2021 16:25:34 +0000
[ 0.000000] Command line: BOOT_IMAGE=/2018Dec04/boot/vmlinuz-linux root=UUID=a5376a54-1964-4312-8894-9cf3432397fe rw rootflags=subvol=2018Dec04 resume=dev/sda3 vt.color=0x70 systemd.unified_cgroup_hierarchy=1 zswap.enabled=1 zswap.zpool=z3fold acpi_enforce_resources=lax debug ignore_loglevel log_buf_len=16M no_console_suspend systemd.log_target=null console=ttyS0,115200 console=tty17
[ 0.000000] x86/fpu: x87 FPU will use FXSAVE
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000d7fcffff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000d7fd0000-0x00000000d7fe55ff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000d7fe5600-0x00000000d7ff7fff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x00000000d7ff8000-0x00000000d7ffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed20000-0x00000000fed9afff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000feda0000-0x00000000fedbffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ffb00000-0x00000000ffbfffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fff00000-0x00000000ffffffff] reserved
[ 0.000000] printk: debug: ignoring loglevel setting.
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] SMBIOS 2.4 present.
[ 0.000000] DMI: Hewlett-Packard /309F, BIOS 68YAF Ver. F.1D 07/11/2008
[ 0.000000] tsc: Fast TSC calibration using PIT
[ 0.000000] tsc: Detected 1995.007 MHz processor
[ 0.001340] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.001347] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.001356] last_pfn = 0xd7fd0 max_arch_pfn = 0x400000000
[ 0.002275] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.003126] total RAM covered: 3456M
[ 0.003860] Found optimal setting for mtrr clean up
[ 0.003862] gran_size: 64K chunk_size: 1G num_reg: 3 lose cover RAM: 0G
[ 0.031897] check: Scanning 1 areas for low memory corruption
[ 0.119251] printk: log_buf_len: 16777216 bytes
[ 0.119260] printk: early log buf free: 128664(98%)
[ 0.119264] RAMDISK: [mem 0x36433000-0x37210fff]
[ 0.119277] ACPI: Early table checksum verification disabled
[ 0.119291] ACPI: RSDP 0x00000000000F78E0 000024 (v02 HP )
[ 0.119299] ACPI: XSDT 0x00000000D7FE57C8 00007C (v01 HPQOEM SLIC-MPC 00000001 HP 00000001)
[ 0.119312] ACPI: FACP 0x00000000D7FE5684 0000F4 (v04 HP 309F 00000003 HP 00000001)
[ 0.119324] ACPI: DSDT 0x00000000D7FE5ACC 010A75 (v01 HP nc9700 00010000 MSFT 0100000E)
[ 0.119332] ACPI: FACS 0x00000000D7FF7E80 000040
[ 0.119338] ACPI: FACS 0x00000000D7FF7E80 000040
[ 0.119345] ACPI: SLIC 0x00000000D7FE5844 000176 (v01 HPQOEM SLIC-MPC 00000001 HP 00000001)
[ 0.119352] ACPI: HPET 0x00000000D7FE59BC 000038 (v01 HP 309F 00000001 HP 00000001)
[ 0.119359] ACPI: APIC 0x00000000D7FE59F4 000068 (v01 HP 309F 00000001 HP 00000001)
[ 0.119367] ACPI: MCFG 0x00000000D7FE5A5C 00003C (v01 HP 309F 00000001 HP 00000001)
[ 0.119374] ACPI: TCPA 0x00000000D7FE5A98 000032 (v02 HP 309F 00000001 HP 00000001)
[ 0.119381] ACPI: SSDT 0x00000000D7FF6541 000059 (v01 HP HPQNLP 00000001 MSFT 0100000E)
[ 0.119389] ACPI: SSDT 0x00000000D7FF659A 000326 (v01 HP HPQSAT 00000001 MSFT 0100000E)
[ 0.119396] ACPI: SSDT 0x00000000D7FF7115 00025F (v01 HP Cpu0Tst 00003000 INTL 20060317)
[ 0.119403] ACPI: SSDT 0x00000000D7FF7374 0000A6 (v01 HP Cpu1Tst 00003000 INTL 20060317)
[ 0.119411] ACPI: SSDT 0x00000000D7FF741A 0004D7 (v01 HP CpuPm 00003000 INTL 20060317)
[ 0.119417] ACPI: Reserving FACP table memory at [mem 0xd7fe5684-0xd7fe5777]
[ 0.119421] ACPI: Reserving DSDT table memory at [mem 0xd7fe5acc-0xd7ff6540]
[ 0.119424] ACPI: Reserving FACS table memory at [mem 0xd7ff7e80-0xd7ff7ebf]
[ 0.119427] ACPI: Reserving FACS table memory at [mem 0xd7ff7e80-0xd7ff7ebf]
[ 0.119429] ACPI: Reserving SLIC table memory at [mem 0xd7fe5844-0xd7fe59b9]
[ 0.119432] ACPI: Reserving HPET table memory at [mem 0xd7fe59bc-0xd7fe59f3]
[ 0.119435] ACPI: Reserving APIC table memory at [mem 0xd7fe59f4-0xd7fe5a5b]
[ 0.119437] ACPI: Reserving MCFG table memory at [mem 0xd7fe5a5c-0xd7fe5a97]
[ 0.119440] ACPI: Reserving TCPA table memory at [mem 0xd7fe5a98-0xd7fe5ac9]
[ 0.119442] ACPI: Reserving SSDT table memory at [mem 0xd7ff6541-0xd7ff6599]
[ 0.119445] ACPI: Reserving SSDT table memory at [mem 0xd7ff659a-0xd7ff68bf]
[ 0.119448] ACPI: Reserving SSDT table memory at [mem 0xd7ff7115-0xd7ff7373]
[ 0.119450] ACPI: Reserving SSDT table memory at [mem 0xd7ff7374-0xd7ff7419]
[ 0.119453] ACPI: Reserving SSDT table memory at [mem 0xd7ff741a-0xd7ff78f0]
[ 0.119471] ACPI: Local APIC address 0xfee00000
[ 0.119571] No NUMA configuration found
[ 0.119574] Faking a node at [mem 0x0000000000000000-0x00000000d7fcffff]
[ 0.119582] NODE_DATA(0) allocated [mem 0xd7fcc000-0xd7fcffff]
[ 0.119646] Zone ranges:
[ 0.119649] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.119653] DMA32 [mem 0x0000000001000000-0x00000000d7fcffff]
[ 0.119657] Normal empty
[ 0.119661] Device empty
[ 0.119663] Movable zone start for each node
[ 0.119665] Early memory node ranges
[ 0.119667] node 0: [mem 0x0000000000001000-0x000000000009efff]
[ 0.119670] node 0: [mem 0x0000000000100000-0x00000000d7fcffff]
[ 0.119675] Initmem setup node 0 [mem 0x0000000000001000-0x00000000d7fcffff]
[ 0.119679] On node 0 totalpages: 884590
[ 0.119682] DMA zone: 64 pages used for memmap
[ 0.119684] DMA zone: 21 pages reserved
[ 0.119686] DMA zone: 3998 pages, LIFO batch:0
[ 0.121168] DMA zone: 28770 pages in unavailable ranges
[ 0.121173] DMA32 zone: 13760 pages used for memmap
[ 0.121175] DMA32 zone: 880592 pages, LIFO batch:63
[ 0.170204] DMA32 zone: 48 pages in unavailable ranges
[ 0.170661] ACPI: PM-Timer IO Port: 0x1008
[ 0.170667] ACPI: Local APIC address 0xfee00000
[ 0.170680] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.170685] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[ 0.170702] IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-23
[ 0.170709] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.170713] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.170717] ACPI: IRQ0 used by override.
[ 0.170721] ACPI: IRQ9 used by override.
[ 0.170725] Using ACPI (MADT) for SMP configuration information
[ 0.170728] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[ 0.170739] smpboot: Allowing 2 CPUs, 0 hotplug CPUs
[ 0.170767] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.170772] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[ 0.170775] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000dffff]
[ 0.170777] PM: hibernation: Registered nosave memory: [mem 0x000e0000-0x000fffff]
[ 0.170781] [mem 0xd8000000-0xfebfffff] available for PCI devices
[ 0.170784] Booting paravirtualized kernel on bare hardware
[ 0.170791] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
[ 0.179638] setup_percpu: NR_CPUS:320 nr_cpumask_bits:320 nr_cpu_ids:2 nr_node_ids:1
[ 0.180562] percpu: Embedded 56 pages/cpu s192512 r8192 d28672 u1048576
[ 0.180575] pcpu-alloc: s192512 r8192 d28672 u1048576 alloc=1*2097152
[ 0.180581] pcpu-alloc: [0] 0 1
[ 0.180619] Built 1 zonelists, mobility grouping on. Total pages: 870745
[ 0.180625] Policy zone: DMA32
[ 0.180629] Kernel command line: BOOT_IMAGE=/2018Dec04/boot/vmlinuz-linux root=UUID=a5376a54-1964-4312-8894-9cf3432397fe rw rootflags=subvol=2018Dec04 resume=dev/sda3 vt.color=0x70 systemd.unified_cgroup_hierarchy=1 zswap.enabled=1 zswap.zpool=z3fold acpi_enforce_resources=lax debug ignore_loglevel log_buf_len=16M no_console_suspend systemd.log_target=null console=ttyS0,115200 console=tty17
[ 0.182588] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[ 0.183538] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.183617] mem auto-init: stack:byref_all(zero), heap alloc:on, heap free:off
[ 0.236521] Memory: 3349148K/3538360K available (14344K kernel code, 2038K rwdata, 8972K rodata, 1652K init, 4356K bss, 188952K reserved, 0K cma-reserved)
[ 0.236543] random: get_random_u64 called from __kmem_cache_create+0x22/0x530 with crng_init=0
[ 0.236797] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[ 0.236829] Kernel/User page tables isolation: enabled
[ 0.236870] ftrace: allocating 41867 entries in 164 pages
[ 0.258498] ftrace: allocated 164 pages with 3 groups
[ 0.258778] rcu: Preemptible hierarchical RCU implementation.
[ 0.258783] rcu: RCU dyntick-idle grace-period acceleration is enabled.
[ 0.258785] rcu: RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=2.
[ 0.258787] rcu: RCU priority boosting: priority 1 delay 500 ms.
[ 0.258790] Trampoline variant of Tasks RCU enabled.
[ 0.258792] Rude variant of Tasks RCU enabled.
[ 0.258794] Tracing variant of Tasks RCU enabled.
[ 0.258795] rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
[ 0.258798] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
[ 0.265182] NR_IRQS: 20736, nr_irqs: 440, preallocated irqs: 16
[ 0.265512] Console: colour dummy device 80x25
[ 0.265872] printk: console [tty17] enabled
[ 1.164027] printk: console [ttyS0] enabled
[ 1.168221] ACPI: Core revision 20210105
[ 1.172293] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[ 1.181416] APIC: Switch to symmetric I/O mode setup
[ 1.186854] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 1.208081] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x39838331465, max_idle_ns: 881590450943 ns
[ 1.218581] Calibrating delay loop (skipped), value calculated using timer frequency.. 3991.26 BogoMIPS (lpj=6650023)
[ 1.221912] pid_max: default: 32768 minimum: 301
[ 1.225282] LSM: Security Framework initializing
[ 1.228585] Yama: becoming mindful.
[ 1.231923] LSM support for eBPF active
[ 1.235296] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[ 1.238607] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[ 1.245288] intel_init_thermal: CPU0, lvtthmr_init: 0x10200
[ 1.248592] process: using mwait in idle threads
[ 1.251915] Last level iTLB entries: 4KB 128, 2MB 4, 4MB 4
[ 1.255245] Last level dTLB entries: 4KB 256, 2MB 0, 4MB 32, 1GB 0
[ 1.258581] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[ 1.261913] Spectre V2 : Mitigation: Full generic retpoline
[ 1.265244] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[ 1.268578] Speculative Store Bypass: Vulnerable
[ 1.271914] MDS: Vulnerable: Clear CPU buffers attempted, no microcode
[ 1.275487] Freeing SMP alternatives memory: 36K
[ 1.389470] smpboot: CPU0: Intel(R) Core(TM)2 CPU T7200 @ 2.00GHz (family: 0x6, model: 0xf, stepping: 0x6)
[ 1.392225] Performance Events: PEBS fmt0-, Core2 events, 4-deep LBR, Intel PMU driver.
[ 1.395249] core: PEBS disabled due to CPU errata
[ 1.398579] ... version: 2
[ 1.401911] ... bit width: 40
[ 1.405244] ... generic registers: 2
[ 1.408578] ... value mask: 000000ffffffffff
[ 1.411911] ... max period: 000000007fffffff
[ 1.415244] ... fixed-purpose events: 3
[ 1.418578] ... event mask: 0000000700000003
[ 1.422092] rcu: Hierarchical SRCU implementation.
[ 1.426162] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[ 1.428661] smp: Bringing up secondary CPUs ...
[ 1.432216] x86: Booting SMP configuration:
[ 1.435257] .... node #0, CPUs: #1
[ 0.933148] intel_init_thermal: CPU1, lvtthmr_init: 0x10000
[ 0.933148] CPU0: Thermal monitoring enabled (TM2)
[ 1.454857] smp: Brought up 1 node, 2 CPUs
[ 1.455255] smpboot: Max logical packages: 1
[ 1.458579] smpboot: Total of 2 processors activated (7983.52 BogoMIPS)
[ 1.465761] devtmpfs: initialized
[ 1.468673] x86/mm: Memory block size: 128MB
[ 1.472565] PM: Registering ACPI NVS region [mem 0xd7fe5600-0xd7ff7fff] (76288 bytes)
[ 1.481981] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[ 1.491923] futex hash table entries: 512 (order: 3, 32768 bytes, linear)
[ 1.498671] pinctrl core: initialized pinctrl subsystem
[ 1.502091] PM: RTC time: 19:07:42, date: 2021-05-21
[ 1.508770] NET: Registered protocol family 16
[ 1.512245] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations
[ 1.518725] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 1.528729] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 1.535264] audit: initializing netlink subsys (disabled)
[ 1.541972] audit: type=2000 audit(1621624061.346:1): state=initialized audit_enabled=0 res=1
[ 1.542150] thermal_sys: Registered thermal governor 'fair_share'
[ 1.545247] thermal_sys: Registered thermal governor 'bang_bang'
[ 1.548580] thermal_sys: Registered thermal governor 'step_wise'
[ 1.551912] thermal_sys: Registered thermal governor 'user_space'
[ 1.555245] thermal_sys: Registered thermal governor 'power_allocator'
[ 1.558601] cpuidle: using governor ladder
[ 1.565252] cpuidle: using governor menu
[ 1.568705] ACPI: bus type PCI registered
[ 1.571913] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 1.575363] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[ 1.578581] PCI: not using MMCONFIG
[ 1.581917] PCI: Using configuration type 1 for base access
[ 1.587603] Kprobes globally optimized
[ 1.588620] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[ 1.595404] fbcon: Taking over console
[ 1.598610] ACPI: Added _OSI(Module Device)
[ 1.601925] ACPI: Added _OSI(Processor Device)
[ 1.608583] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 1.611913] ACPI: Added _OSI(Processor Aggregator Device)
[ 1.618580] ACPI: Added _OSI(Linux-Dell-Video)
[ 1.621912] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[ 1.628579] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[ 1.645177] ACPI: 6 ACPI AML tables successfully acquired and loaded
[ 1.704769] ACPI: Dynamic OEM Table Load:
[ 1.708586] ACPI: SSDT 0xFFFF8C41013A9C00 00023D (v01 HP Cpu0Ist 00003000 INTL 20060317)
[ 1.719578] ACPI: Dynamic OEM Table Load:
[ 1.721917] ACPI: SSDT 0xFFFF8C4101321000 0004CB (v01 HP Cpu0Cst 00003001 INTL 20060317)
[ 1.733017] ACPI: Dynamic OEM Table Load:
[ 1.738593] ACPI: SSDT 0xFFFF8C4101A03700 0000C8 (v01 HP Cpu1Ist 00003000 INTL 20060317)
[ 1.745857] ACPI: Dynamic OEM Table Load:
[ 1.751916] ACPI: SSDT 0xFFFF8C41019AE780 000085 (v01 HP Cpu1Cst 00003000 INTL 20060317)
[ 1.759216] ACPI: EC: EC started
[ 1.765245] ACPI: EC: interrupt blocked
[ 1.772674] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[ 1.778580] ACPI: \_SB_.C003.C004.C006: Boot DSDT EC used to handle transactions
[ 1.785248] ACPI: Interpreter enabled
[ 1.788605] ACPI: (supports S0 S3 S4 S5)
[ 1.795246] ACPI: Using IOAPIC for interrupt routing
[ 1.798628] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[ 1.809589] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in ACPI motherboard resources
[ 1.818584] pmd_set_huge: Cannot satisfy [mem 0xf8000000-0xf8200000] with a huge-page mapping due to MTRR override.
[ 1.828720] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 1.839046] ACPI: Enabled 13 GPEs in block 00 to 1F
[ 1.850721] ACPI: PM: Power Resource [C1F8] (on)
[ 1.856476] ACPI: PM: Power Resource [C207] (on)
[ 1.862652] ACPI: PM: Power Resource [C224] (on)
[ 1.870957] ACPI: PM: Power Resource [C22C] (on)
[ 1.880919] ACPI: PM: Power Resource [C334] (off)
[ 1.885346] ACPI: PM: Power Resource [C335] (off)
[ 1.892009] ACPI: PM: Power Resource [C336] (off)
[ 1.895303] ACPI: PM: Power Resource [C337] (off)
[ 1.902008] ACPI: PM: Power Resource [C338] (off)
[ 1.905354] ACPI: PM: Power Resource [C339] (off)
[ 1.912012] ACPI: PM: Power Resource [C33A] (off)
[ 1.915344] ACPI: PM: Power Resource [C33B] (off)
[ 1.922008] ACPI: PM: Power Resource [C33C] (off)
[ 1.925356] ACPI: PM: Power Resource [C33D] (off)
[ 1.928636] ACPI: PM: Power Resource [C33E] (off)
[ 1.941620] ACPI: PCI Root Bridge [C003] (domain 0000 [bus 00-ff])
[ 1.948586] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 1.958585] acpi PNP0A08:00: _OSC: platform retains control of PCIe features (AE_NOT_FOUND)
[ 1.965256] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
[ 1.982442] PCI host bridge to bus 0000:00
[ 1.988579] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 1.995246] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 2.001912] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 2.008578] pci_bus 0000:00: root bus resource [mem 0xd8000000-0xfedfffff window]
[ 2.015245] pci_bus 0000:00: root bus resource [mem 0xfee01000-0xffffffff window]
[ 2.025245] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000dffff window]
[ 2.031912] pci_bus 0000:00: root bus resource [bus 00-ff]
[ 2.035263] pci 0000:00:00.0: [8086:27a0] type 00 class 0x060000
[ 2.042085] pci 0000:00:01.0: [8086:27a1] type 01 class 0x060400
[ 2.048646] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[ 2.055451] pci 0000:00:1b.0: [8086:27d8] type 00 class 0x040300
[ 2.061936] pci 0000:00:1b.0: reg 0x10: [mem 0xf4700000-0xf4703fff 64bit]
[ 2.068707] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 2.075431] pci 0000:00:1c.0: [8086:27d0] type 01 class 0x060400
[ 2.082058] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 2.085436] pci 0000:00:1c.1: [8086:27d2] type 01 class 0x060400
[ 2.092058] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[ 2.098770] pci 0000:00:1c.3: [8086:27d6] type 01 class 0x060400
[ 2.105403] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[ 2.112107] pci 0000:00:1d.0: [8086:27c8] type 00 class 0x0c0300
[ 2.118635] pci 0000:00:1d.0: reg 0x20: [io 0x5000-0x501f]
[ 2.122106] pci 0000:00:1d.1: [8086:27c9] type 00 class 0x0c0300
[ 2.128635] pci 0000:00:1d.1: reg 0x20: [io 0x5020-0x503f]
[ 2.135431] pci 0000:00:1d.2: [8086:27ca] type 00 class 0x0c0300
[ 2.141968] pci 0000:00:1d.2: reg 0x20: [io 0x5040-0x505f]
[ 2.145445] pci 0000:00:1d.3: [8086:27cb] type 00 class 0x0c0300
[ 2.151969] pci 0000:00:1d.3: reg 0x20: [io 0x5060-0x507f]
[ 2.158776] pci 0000:00:1d.7: [8086:27cc] type 00 class 0x0c0320
[ 2.165264] pci 0000:00:1d.7: reg 0x10: [mem 0xf4704000-0xf47043ff]
[ 2.172029] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[ 2.178740] pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
[ 2.182166] pci 0000:00:1f.0: [8086:27b9] type 00 class 0x060100
[ 2.188702] pci 0000:00:1f.0: quirk: [io 0x1000-0x107f] claimed by ICH6 ACPI/GPIO/TCO
[ 2.198583] pci 0000:00:1f.0: quirk: [io 0x1100-0x113f] claimed by ICH6 GPIO
[ 2.205247] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0500 (mask 007f)
[ 2.211917] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 4 PIO at 0238 (mask 0007)
[ 2.218578] pci 0000:00:1f.0: quirk_ich7_lpc+0x0/0x60 took 29296 usecs
[ 2.225410] pci 0000:00:1f.1: [8086:27df] type 00 class 0x01018a
[ 2.231930] pci 0000:00:1f.1: reg 0x10: [io 0x0000-0x0007]
[ 2.238595] pci 0000:00:1f.1: reg 0x14: [io 0x0000-0x0003]
[ 2.245255] pci 0000:00:1f.1: reg 0x18: [io 0x0000-0x0007]
[ 2.248587] pci 0000:00:1f.1: reg 0x1c: [io 0x0000-0x0003]
[ 2.255255] pci 0000:00:1f.1: reg 0x20: [io 0x5080-0x508f]
[ 2.261935] pci 0000:00:1f.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7]
[ 2.268578] pci 0000:00:1f.1: legacy IDE quirk: reg 0x14: [io 0x03f6]
[ 2.275245] pci 0000:00:1f.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177]
[ 2.281912] pci 0000:00:1f.1: legacy IDE quirk: reg 0x1c: [io 0x0376]
[ 2.288750] pci 0000:00:1f.2: [8086:27c5] type 00 class 0x010601
[ 2.295264] pci 0000:00:1f.2: reg 0x10: [io 0x13f0-0x13f7]
[ 2.298588] pci 0000:00:1f.2: reg 0x14: [io 0x15f4-0x15f7]
[ 2.305257] pci 0000:00:1f.2: reg 0x18: [io 0x1370-0x1377]
[ 2.311922] pci 0000:00:1f.2: reg 0x1c: [io 0x1574-0x1577]
[ 2.315254] pci 0000:00:1f.2: reg 0x20: [io 0x50b0-0x50bf]
[ 2.321921] pci 0000:00:1f.2: reg 0x24: [mem 0xf4705000-0xf47053ff]
[ 2.328645] pci 0000:00:1f.2: PME# supported from D3hot
[ 2.332159] pci 0000:01:00.0: [1002:71c5] type 00 class 0x030000
[ 2.338602] pci 0000:01:00.0: reg 0x10: [mem 0xe0000000-0xefffffff pref]
[ 2.345258] pci 0000:01:00.0: reg 0x14: [io 0x4000-0x40ff]
[ 2.351924] pci 0000:01:00.0: reg 0x18: [mem 0xf4600000-0xf460ffff]
[ 2.358624] pci 0000:01:00.0: reg 0x30: [mem 0x00000000-0x0001ffff pref]
[ 2.365263] pci 0000:01:00.0: enabling Extended Tags
[ 2.368933] pci 0000:01:00.0: supports D1 D2
[ 2.375368] pci 0000:01:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
[ 2.385261] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 2.388580] pci 0000:00:01.0: bridge window [io 0x4000-0x4fff]
[ 2.395246] pci 0000:00:01.0: bridge window [mem 0xf4600000-0xf46fffff]
[ 2.401917] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xefffffff 64bit pref]
[ 2.408670] acpiphp: Slot [1] registered
[ 2.415403] pci 0000:08:00.0: [14e4:16fd] type 00 class 0x020000
[ 2.418727] pci 0000:08:00.0: reg 0x10: [mem 0xf4100000-0xf410ffff 64bit]
[ 2.428864] pci 0000:08:00.0: enabling Extended Tags
[ 2.432331] pci 0000:08:00.0: PME# supported from D3hot D3cold
[ 2.438978] pci 0000:08:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
[ 2.448645] pci 0000:00:1c.0: PCI bridge to [bus 08]
[ 2.455251] pci 0000:00:1c.0: bridge window [mem 0xf4100000-0xf41fffff]
[ 2.462116] pci 0000:10:00.0: [8086:4222] type 00 class 0x028000
[ 2.465356] pci 0000:10:00.0: reg 0x10: [mem 0xf4000000-0xf4000fff]
[ 2.472397] pci 0000:10:00.0: PME# supported from D0 D3hot D3cold
[ 2.478817] pci 0000:10:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
[ 2.488646] pci 0000:00:1c.1: PCI bridge to [bus 10]
[ 2.495251] pci 0000:00:1c.1: bridge window [mem 0xf4000000-0xf40fffff]
[ 2.502049] acpiphp: Slot [1-1] registered
[ 2.505299] pci 0000:00:1c.3: PCI bridge to [bus 20]
[ 2.511915] pci 0000:00:1c.3: bridge window [io 0x2000-0x3fff]
[ 2.518581] pci 0000:00:1c.3: bridge window [mem 0xf0000000-0xf3ffffff]
[ 2.525276] pci_bus 0000:02: extended config space not accessible
[ 2.528686] pci 0000:02:06.0: [104c:8039] type 02 class 0x060700
[ 2.535271] pci 0000:02:06.0: reg 0x10: [mem 0xf4200000-0xf4200fff]
[ 2.541976] pci 0000:02:06.0: supports D1 D2
[ 2.545245] pci 0000:02:06.0: PME# supported from D0 D1 D2 D3hot
[ 2.552031] pci 0000:02:06.1: [104c:803a] type 00 class 0x0c0010
[ 2.558613] pci 0000:02:06.1: reg 0x10: [mem 0xf4201000-0xf42017ff]
[ 2.565259] pci 0000:02:06.1: reg 0x14: [mem 0xf4204000-0xf4207fff]
[ 2.572041] pci 0000:02:06.1: supports D1 D2
[ 2.575245] pci 0000:02:06.1: PME# supported from D0 D1 D2 D3hot
[ 2.582000] pci 0000:02:06.2: [104c:803b] type 00 class 0x018000
[ 2.588604] pci 0000:02:06.2: reg 0x10: [mem 0xf4208000-0xf4208fff]
[ 2.595388] pci 0000:02:06.2: supports D1 D2
[ 2.598578] pci 0000:02:06.2: PME# supported from D0 D1 D2 D3hot
[ 2.605331] pci 0000:02:06.3: [104c:803c] type 00 class 0x080500
[ 2.611937] pci 0000:02:06.3: reg 0x10: [mem 0xf4209000-0xf42090ff]
[ 2.618718] pci 0000:02:06.3: supports D1 D2
[ 2.621912] pci 0000:02:06.3: PME# supported from D0 D1 D2 D3hot
[ 2.628667] pci 0000:02:06.4: [104c:803d] type 00 class 0x078000
[ 2.631937] pci 0000:02:06.4: reg 0x10: [mem 0xf420a000-0xf420afff]
[ 2.638592] pci 0000:02:06.4: reg 0x14: [mem 0xf420b000-0xf420bfff]
[ 2.645372] pci 0000:02:06.4: supports D1 D2
[ 2.651912] pci 0000:02:06.4: PME# supported from D0 D1 D2 D3hot
[ 2.655392] pci 0000:00:1e.0: PCI bridge to [bus 02-03] (subtractive decode)
[ 2.661921] pci 0000:00:1e.0: bridge window [mem 0xf4200000-0xf45fffff]
[ 2.671918] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7 window] (subtractive decode)
[ 2.678578] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff window] (subtractive decode)
[ 2.688579] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
[ 2.695245] pci 0000:00:1e.0: bridge window [mem 0xd8000000-0xfedfffff window] (subtractive decode)
[ 2.705245] pci 0000:00:1e.0: bridge window [mem 0xfee01000-0xffffffff window] (subtractive decode)
[ 2.715245] pci 0000:00:1e.0: bridge window [mem 0x000d0000-0x000dffff window] (subtractive decode)
[ 2.725285] pci_bus 0000:03: extended config space not accessible
[ 2.728603] pci_bus 0000:03: busn_res: [bus 03] end can not be updated to 06
[ 2.738584] pci 0000:00:1e.0: bridge has subordinate 03 but max busn 06
[ 2.747423] ACPI: PCI Interrupt Link [C10F] (IRQs *10 11)
[ 2.752121] ACPI: PCI Interrupt Link [C110] (IRQs *10 11)
[ 2.758787] ACPI: PCI Interrupt Link [C111] (IRQs 10 *11)
[ 2.762118] ACPI: PCI Interrupt Link [C112] (IRQs 10 11) *5
[ 2.768785] ACPI: PCI Interrupt Link [C125] (IRQs *10 11)
[ 2.775452] ACPI: PCI Interrupt Link [C126] (IRQs *10 11)
[ 2.778785] ACPI: PCI Interrupt Link [C127] (IRQs 10 *11)
[ 2.785434] ACPI: PCI Interrupt Link [C128] (IRQs) *0, disabled.
[ 2.793720] pci 0000:08:00.0: BAR 0: assigned [mem 0xf4100000-0xf410ffff 64bit]
[ 2.793720] ACPI: EC: interrupt unblocked
[ 2.798579] ACPI: EC: event unblocked
[ 2.801911] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[ 2.805245] ACPI: EC: GPE=0x16
[ 2.808290] ACPI: \_SB_.C003.C004.C006: Boot DSDT EC initialization complete
[ 2.815246] ACPI: \_SB_.C003.C004.C006: EC: Used to handle transactions and events
[ 2.825346] iommu: Default domain type: Translated
[ 2.828606] pci 0000:01:00.0: vgaarb: setting as boot VGA device
[ 2.831910] pci 0000:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[ 2.845249] pci 0000:01:00.0: vgaarb: bridge control possible
[ 2.848578] vgaarb: loaded
[ 2.852236] SCSI subsystem initialized
[ 2.855279] libata version 3.00 loaded.
[ 2.858594] ACPI: bus type USB registered
[ 2.861934] usbcore: registered new interface driver usbfs
[ 2.865261] usbcore: registered new interface driver hub
[ 2.868588] usbcore: registered new device driver usb
[ 2.871953] pps_core: LinuxPPS API ver. 1 registered
[ 2.875245] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 2.878582] PTP clock support registered
[ 2.881928] EDAC MC: Ver: 3.0.0
[ 2.885494] NetLabel: Initializing
[ 2.888580] NetLabel: domain hash size = 128
[ 2.891912] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 2.895272] NetLabel: unlabeled traffic allowed by default
[ 2.898585] PCI: Using ACPI for IRQ routing
[ 2.905689] PCI: pci_cache_line_size set to 64 bytes
[ 2.908669] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
[ 2.911912] e820: reserve RAM buffer [mem 0xd7fd0000-0xd7ffffff]
[ 2.916850] hpet: 3 channels of 0 reserved for per-cpu timers
[ 2.921919] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[ 2.925245] hpet0: 3 comparators, 64-bit 14.318180 MHz counter
[ 2.935245] clocksource: Switched to clocksource tsc-early
[ 2.959339] VFS: Disk quotas dquot_6.6.0
[ 2.963297] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 2.970309] pnp: PnP ACPI init
[ 2.973691] system 00:00: [mem 0x00000000-0x0009ffff] could not be reserved
[ 2.980646] system 00:00: [mem 0x000e0000-0x000fffff] could not be reserved
[ 2.987593] system 00:00: [mem 0x00100000-0xd7ffffff] could not be reserved
[ 2.994548] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
[ 3.002322] pnp 00:01: Plug and Play ACPI device, IDs PNP0501 PNP0500 (active)
[ 3.010337] pnp 00:02: [dma 1]
[ 3.013505] pnp 00:02: Plug and Play ACPI device, IDs PNP0401 (active)
[ 3.020188] pnp 00:03: Plug and Play ACPI device, IDs IFX0102 PNP0c31 (active)
[ 3.027448] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
[ 3.034031] pnp 00:05: Plug and Play ACPI device, IDs PNP0303 (active)
[ 3.040583] pnp 00:06: Plug and Play ACPI device, IDs SYN011d SYN0100 SYN0002 PNP0f13 (active)
[ 3.049477] system 00:07: [io 0x0500-0x055f] has been reserved
[ 3.055388] system 00:07: [io 0x0800-0x080f] has been reserved
[ 3.061300] system 00:07: [mem 0xffb00000-0xffbfffff] has been reserved
[ 3.067900] system 00:07: [mem 0xfff00000-0xffffffff] has been reserved
[ 3.074504] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 3.082329] system 00:08: [io 0x04d0-0x04d1] has been reserved
[ 3.088241] system 00:08: [io 0x1000-0x107f] has been reserved
[ 3.094150] system 00:08: [io 0x1100-0x113f] has been reserved
[ 3.100057] system 00:08: [io 0x1200-0x121f] has been reserved
[ 3.105968] system 00:08: [mem 0xf8000000-0xfbffffff] has been reserved
[ 3.112570] system 00:08: [mem 0xfec00000-0xfec000ff] could not be reserved
[ 3.119518] system 00:08: [mem 0xfed20000-0xfed3ffff] has been reserved
[ 3.126121] system 00:08: [mem 0xfed45000-0xfed8ffff] has been reserved
[ 3.132721] system 00:08: [mem 0xfed90000-0xfed9afff] has been reserved
[ 3.139325] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 3.146519] system 00:09: [mem 0xfeda0000-0xfedbffff] has been reserved
[ 3.153123] system 00:09: [mem 0xfee00000-0xfee00fff] has been reserved
[ 3.159730] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 3.166537] pnp: PnP ACPI: found 10 devices
[ 3.177982] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 3.186934] NET: Registered protocol family 2
[ 3.191559] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear)
[ 3.200199] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear)
[ 3.208335] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear)
[ 3.215716] TCP: Hash tables configured (established 32768 bind 32768)
[ 3.222397] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear)
[ 3.229828] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear)
[ 3.236558] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear)
[ 3.244818] NET: Registered protocol family 1
[ 3.249224] NET: Registered protocol family 44
[ 3.253691] pci 0000:00:1c.0: bridge window [io 0x1000-0x0fff] to [bus 08] add_size 1000
[ 3.261854] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 08] add_size 200000 add_align 100000
[ 3.273304] pci 0000:00:1c.1: bridge window [io 0x1000-0x0fff] to [bus 10] add_size 1000
[ 3.281464] pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 10] add_size 200000 add_align 100000
[ 3.292913] pci 0000:00:1c.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 20] add_size 200000 add_align 100000
[ 3.304380] pci 0000:00:1e.0: bridge window [io 0x1000-0x0fff] to [bus 02-03] add_size 1000
[ 3.312825] pci 0000:00:1c.0: BAR 15: assigned [mem 0xd8000000-0xd81fffff 64bit pref]
[ 3.320643] pci 0000:00:1c.1: BAR 15: assigned [mem 0xd8200000-0xd83fffff 64bit pref]
[ 3.328458] pci 0000:00:1c.3: BAR 15: assigned [mem 0xd8400000-0xd85fffff 64bit pref]
[ 3.336272] pci 0000:00:1c.0: BAR 13: assigned [io 0x6000-0x6fff]
[ 3.342439] pci 0000:00:1c.1: BAR 13: assigned [io 0x7000-0x7fff]
[ 3.348606] pci 0000:00:1e.0: BAR 13: assigned [io 0x8000-0x8fff]
[ 3.354776] pci 0000:01:00.0: BAR 6: assigned [mem 0xf4620000-0xf463ffff pref]
[ 3.361983] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 3.366941] pci 0000:00:01.0: bridge window [io 0x4000-0x4fff]
[ 3.373022] pci 0000:00:01.0: bridge window [mem 0xf4600000-0xf46fffff]
[ 3.379795] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xefffffff 64bit pref]
[ 3.387524] pci 0000:00:1c.0: PCI bridge to [bus 08]
[ 3.392481] pci 0000:00:1c.0: bridge window [io 0x6000-0x6fff]
[ 3.398567] pci 0000:00:1c.0: bridge window [mem 0xf4100000-0xf41fffff]
[ 3.405342] pci 0000:00:1c.0: bridge window [mem 0xd8000000-0xd81fffff 64bit pref]
[ 3.413071] pci 0000:00:1c.1: PCI bridge to [bus 10]
[ 3.418028] pci 0000:00:1c.1: bridge window [io 0x7000-0x7fff]
[ 3.424113] pci 0000:00:1c.1: bridge window [mem 0xf4000000-0xf40fffff]
[ 3.430892] pci 0000:00:1c.1: bridge window [mem 0xd8200000-0xd83fffff 64bit pref]
[ 3.438621] pci 0000:00:1c.3: PCI bridge to [bus 20]
[ 3.443578] pci 0000:00:1c.3: bridge window [io 0x2000-0x3fff]
[ 3.449663] pci 0000:00:1c.3: bridge window [mem 0xf0000000-0xf3ffffff]
[ 3.456437] pci 0000:00:1c.3: bridge window [mem 0xd8400000-0xd85fffff 64bit pref]
[ 3.464172] pci 0000:02:06.0: BAR 15: assigned [mem 0xdc000000-0xdfffffff pref]
[ 3.471470] pci 0000:02:06.0: BAR 16: no space for [mem size 0x04000000]
[ 3.478156] pci 0000:02:06.0: BAR 16: failed to assign [mem size 0x04000000]
[ 3.485189] pci 0000:02:06.0: BAR 13: assigned [io 0x8000-0x80ff]
[ 3.491356] pci 0000:02:06.0: BAR 14: assigned [io 0x8400-0x84ff]
[ 3.497526] pci 0000:02:06.0: BAR 16: assigned [mem 0xdc000000-0xdfffffff]
[ 3.504392] pci 0000:02:06.0: BAR 15: no space for [mem size 0x04000000 pref]
[ 3.511510] pci 0000:02:06.0: BAR 15: failed to assign [mem size 0x04000000 pref]
[ 3.518977] pci 0000:02:06.0: CardBus bridge to [bus 03]
[ 3.524278] pci 0000:02:06.0: bridge window [io 0x8000-0x80ff]
[ 3.530360] pci 0000:02:06.0: bridge window [io 0x8400-0x84ff]
[ 3.536442] pci 0000:02:06.0: bridge window [mem 0xdc000000-0xdfffffff]
[ 3.543231] pci 0000:00:1e.0: PCI bridge to [bus 02-03]
[ 3.548447] pci 0000:00:1e.0: bridge window [io 0x8000-0x8fff]
[ 3.554533] pci 0000:00:1e.0: bridge window [mem 0xf4200000-0xf45fffff]
[ 3.561316] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[ 3.567485] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
[ 3.573650] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[ 3.580509] pci_bus 0000:00: resource 7 [mem 0xd8000000-0xfedfffff window]
[ 3.587368] pci_bus 0000:00: resource 8 [mem 0xfee01000-0xffffffff window]
[ 3.594227] pci_bus 0000:00: resource 9 [mem 0x000d0000-0x000dffff window]
[ 3.601086] pci_bus 0000:01: resource 0 [io 0x4000-0x4fff]
[ 3.606645] pci_bus 0000:01: resource 1 [mem 0xf4600000-0xf46fffff]
[ 3.612897] pci_bus 0000:01: resource 2 [mem 0xe0000000-0xefffffff 64bit pref]
[ 3.620104] pci_bus 0000:08: resource 0 [io 0x6000-0x6fff]
[ 3.625665] pci_bus 0000:08: resource 1 [mem 0xf4100000-0xf41fffff]
[ 3.631919] pci_bus 0000:08: resource 2 [mem 0xd8000000-0xd81fffff 64bit pref]
[ 3.639127] pci_bus 0000:10: resource 0 [io 0x7000-0x7fff]
[ 3.644688] pci_bus 0000:10: resource 1 [mem 0xf4000000-0xf40fffff]
[ 3.650941] pci_bus 0000:10: resource 2 [mem 0xd8200000-0xd83fffff 64bit pref]
[ 3.658146] pci_bus 0000:20: resource 0 [io 0x2000-0x3fff]
[ 3.663705] pci_bus 0000:20: resource 1 [mem 0xf0000000-0xf3ffffff]
[ 3.669959] pci_bus 0000:20: resource 2 [mem 0xd8400000-0xd85fffff 64bit pref]
[ 3.677164] pci_bus 0000:02: resource 0 [io 0x8000-0x8fff]
[ 3.682725] pci_bus 0000:02: resource 1 [mem 0xf4200000-0xf45fffff]
[ 3.688980] pci_bus 0000:02: resource 4 [io 0x0000-0x0cf7 window]
[ 3.695145] pci_bus 0000:02: resource 5 [io 0x0d00-0xffff window]
[ 3.701313] pci_bus 0000:02: resource 6 [mem 0x000a0000-0x000bffff window]
[ 3.708173] pci_bus 0000:02: resource 7 [mem 0xd8000000-0xfedfffff window]
[ 3.715032] pci_bus 0000:02: resource 8 [mem 0xfee01000-0xffffffff window]
[ 3.721891] pci_bus 0000:02: resource 9 [mem 0x000d0000-0x000dffff window]
[ 3.728751] pci_bus 0000:03: resource 0 [io 0x8000-0x80ff]
[ 3.734313] pci_bus 0000:03: resource 1 [io 0x8400-0x84ff]
[ 3.739872] pci_bus 0000:03: resource 3 [mem 0xdc000000-0xdfffffff]
[ 3.748076] pci 0000:01:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[ 3.756452] PCI: CLS 64 bytes, default 64
[ 3.760564] Trying to unpack rootfs image as initramfs...
[ 3.940148] Freeing initrd memory: 14200K
[ 3.944836] check: Scanning for low memory corruption every 60 seconds
[ 3.951937] Initialise system trusted keyrings
[ 3.956390] Key type blacklist registered
[ 3.960523] workingset: timestamp_bits=41 max_order=20 bucket_order=0
[ 3.969288] zbud: loaded
[ 3.986161] Key type asymmetric registered
[ 3.990253] Asymmetric key parser 'x509' registered
[ 3.995133] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
[ 4.002578] io scheduler mq-deadline registered
[ 4.007116] io scheduler kyber registered
[ 4.011159] io scheduler bfq registered
[ 4.016602] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 4.023351] vesafb: mode is 1400x1050x32, linelength=5632, pages=0
[ 4.029526] vesafb: scrolling: redraw
[ 4.033182] vesafb: Truecolor: size=0:8:8:8, shift=0:16:8:0
[ 4.038776] vesafb: framebuffer at 0xe0000000, mapped to 0x(____ptrval____), using 5824k, total 5824k
[ 4.048131] Console: switching to colour frame buffer device 175x65
[ 4.143413] fb0: VESA VGA frame buffer device
[ 4.152122] Monitor-Mwait will be used to enter C-1 state
[ 4.158004] Monitor-Mwait will be used to enter C-2 state
[ 4.163878] ACPI: \_PR_.CPU0: Found 2 idle states
[ 4.169502] ACPI: AC: AC Adapter [C1C3] (on-line)
[ 4.174722] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0
[ 4.183842] ACPI: button: Sleep Button [C24D]
[ 4.188636] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input1
[ 4.197551] ACPI: button: Lid Switch [C245]
[ 4.202161] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[ 4.218622] ACPI: button: Power Button [PWRF]
[ 4.274242] thermal LNXTHERM:00: registered as thermal_zone0
[ 4.280462] ACPI: thermal: Thermal Zone [TZ0] (58 C)
[ 4.305289] thermal LNXTHERM:01: registered as thermal_zone1
[ 4.311443] ACPI: thermal: Thermal Zone [TZ1] (57 C)
[ 4.338208] thermal LNXTHERM:02: registered as thermal_zone2
[ 4.344362] ACPI: thermal: Thermal Zone [TZ2] (51 C)
[ 4.368921] thermal LNXTHERM:03: registered as thermal_zone3
[ 4.375076] ACPI: thermal: Thermal Zone [TZ3] (41 C)
[ 4.397034] thermal LNXTHERM:04: registered as thermal_zone4
[ 4.403192] ACPI: thermal: Thermal Zone [TZ4] (16 C)
[ 4.414653] thermal LNXTHERM:05: registered as thermal_zone5
[ 4.420861] ACPI: thermal: Thermal Zone [TZ5] (66 C)
[ 4.426525] ACPI: battery: Slot [C1C5] (battery absent)
[ 4.426580] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 4.432384] ACPI: battery: Slot [C1C4] (battery absent)
[ 4.439316] 00:01: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[ 4.456007] Non-volatile memory driver v1.3
[ 4.460561] AMD-Vi: AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
[ 4.467852] AMD-Vi: AMD IOMMUv2 functionality not available on this system
[ 4.476006] ahci 0000:00:1f.2: version 3.0
[ 4.480758] ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
[ 4.487972] ahci 0000:00:1f.2: AHCI 0001.0100 32 slots 4 ports 1.5 Gbps 0x1 impl SATA mode
[ 4.496956] ahci 0000:00:1f.2: flags: 64bit ncq ilck stag pm led clo pmp pio slum part
[ 4.506246] scsi host0: ahci
[ 4.509620] scsi host1: ahci
[ 4.512965] scsi host2: ahci
[ 4.516304] scsi host3: ahci
[ 4.519509] ata1: SATA max UDMA/133 abar m1024@0xf4705000 port 0xf4705100 irq 28
[ 4.527551] ata2: DUMMY
[ 4.556676] ata3: DUMMY
[ 4.585347] ata4: DUMMY
[ 4.613592] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 4.646407] ehci-pci: EHCI PCI platform driver
[ 4.677240] ehci-pci 0000:00:1d.7: EHCI Host Controller
[ 4.708607] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 1
[ 4.742247] ehci-pci 0000:00:1d.7: debug port 1
[ 4.776583] ehci-pci 0000:00:1d.7: irq 20, io mem 0xf4704000
[ 4.821952] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[ 4.853583] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.12
[ 4.887925] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 4.921307] usb usb1: Product: EHCI Host Controller
[ 4.952294] usb usb1: Manufacturer: Linux 5.12.0-arch1-1 ehci_hcd
[ 4.984445] tsc: Refined TSC clocksource calibration: 1994.999 MHz
[ 5.016620] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x398374a7fb8, max_idle_ns: 881590820223 ns
[ 5.016628] usb usb1: SerialNumber: 0000:00:1d.7
[ 5.084755] clocksource: Switched to clocksource tsc
[ 5.116731] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[ 5.116907] hub 1-0:1.0: USB hub found
[ 5.180607] hub 1-0:1.0: 8 ports detected
[ 5.182582] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[ 5.211592] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 5.246351] ata1.00: ACPI cmd b1/c1:00:00:00:00:a0 (DEVICE CONFIGURATION OVERLAY) filtered out
[ 5.279673] ata1.00: ACPI cmd c6/00:10:00:00:00:a0 (SET MULTIPLE MODE) succeeded
[ 5.315795] ohci-pci: OHCI PCI platform driver
[ 5.350243] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
[ 5.381725] uhci_hcd: USB Universal Host Controller Interface driver
[ 5.450553] ata1.00: ATA-7: TOSHIBA MK1234GSX, AH001H, max UDMA/100
[ 5.450812] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[ 5.484786] ata1.00: 234441648 sectors, multi 16: LBA48
[ 5.551335] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[ 5.553070] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[ 5.586599] uhci_hcd 0000:00:1d.0: detected 2 ports
[ 5.622305] ata1.00: ACPI cmd b1/c1:00:00:00:00:a0 (DEVICE CONFIGURATION OVERLAY) filtered out
[ 5.654725] uhci_hcd 0000:00:1d.0: irq 20, io base 0x00005000
[ 5.724642] ata1.00: ACPI cmd c6/00:10:00:00:00:a0 (SET MULTIPLE MODE) succeeded
[ 5.724716] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.12
[ 5.760034] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
[ 5.796566] ata1.00: configured for UDMA/100
[ 5.832139] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 5.900215] usb usb2: Product: UHCI Host Controller
[ 5.900386] scsi 0:0:0:0: Direct-Access ATA TOSHIBA MK1234GS 1H PQ: 0 ANSI: 5
[ 5.933466] usb usb2: Manufacturer: Linux 5.12.0-arch1-1 uhci_hcd
[ 5.933470] usb usb2: SerialNumber: 0000:00:1d.0
[ 5.970555] sd 0:0:0:0: [sda] 234441648 512-byte logical blocks: (120 GB/112 GiB)
[ 6.005230] hub 2-0:1.0: USB hub found
[ 6.038157] sd 0:0:0:0: [sda] Write Protect is off
[ 6.074454] hub 2-0:1.0: 2 ports detected
[ 6.106865] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 6.140580] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[ 6.172832] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 6.206367] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
[ 6.314422] uhci_hcd 0000:00:1d.1: detected 2 ports
[ 6.348063] uhci_hcd 0000:00:1d.1: irq 22, io base 0x00005020
[ 6.382591] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.12
[ 6.419871] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 6.456167] usb usb3: Product: UHCI Host Controller
[ 6.489910] usb usb3: Manufacturer: Linux 5.12.0-arch1-1 uhci_hcd
[ 6.524925] usb usb3: SerialNumber: 0000:00:1d.1
[ 6.558273] hub 3-0:1.0: USB hub found
[ 6.558473] sda: sda1 sda2 sda3 sda4
[ 6.590768] usb 2-1: new full-speed USB device number 2 using uhci_hcd
[ 6.623495] hub 3-0:1.0: 2 ports detected
[ 6.693059] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[ 6.727494] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
[ 6.764638] uhci_hcd 0000:00:1d.2: detected 2 ports
[ 6.799363] uhci_hcd 0000:00:1d.2: irq 18, io base 0x00005040
[ 6.834830] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.12
[ 6.834839] sd 0:0:0:0: [sda] Attached SCSI disk
[ 6.873150] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 6.945332] usb usb4: Product: UHCI Host Controller
[ 6.980498] usb usb4: Manufacturer: Linux 5.12.0-arch1-1 uhci_hcd
[ 7.017142] usb usb4: SerialNumber: 0000:00:1d.2
[ 7.052438] hub 4-0:1.0: USB hub found
[ 7.086354] hub 4-0:1.0: 2 ports detected
[ 7.120597] uhci_hcd 0000:00:1d.3: UHCI Host Controller
[ 7.146685] random: fast init done
[ 7.155772] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
[ 7.188870] usb 2-1: New USB device found, idVendor=03f0, idProduct=171d, bcdDevice= 1.00
[ 7.226388] uhci_hcd 0000:00:1d.3: detected 2 ports
[ 7.264523] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 7.299077] uhci_hcd 0000:00:1d.3: irq 19, io base 0x00005060
[ 7.336158] usb 2-1: Product: HP Integrated Module
[ 7.371983] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.12
[ 7.406510] usb 2-1: Manufacturer: Broadcom Corp
[ 7.445357] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 7.518041] usb usb5: Product: UHCI Host Controller
[ 7.553010] usb usb5: Manufacturer: Linux 5.12.0-arch1-1 uhci_hcd
[ 7.589575] usb usb5: SerialNumber: 0000:00:1d.3
[ 7.624178] hub 5-0:1.0: USB hub found
[ 7.657452] hub 5-0:1.0: 2 ports detected
[ 7.690889] usbcore: registered new interface driver usbserial_generic
[ 7.726814] usbserial: USB Serial support registered for generic
[ 7.762361] rtc_cmos 00:04: RTC can wake from S4
[ 7.796651] rtc_cmos 00:04: registered as rtc0
[ 7.829996] hpet: Lost 1 RTC interrupts
[ 7.862437] usb 2-2: new full-speed USB device number 3 using uhci_hcd
[ 7.897671] rtc_cmos 00:04: setting system clock to 2021-05-21T19:07:49 UTC (1621624069)
[ 7.934560] rtc_cmos 00:04: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[ 7.970826] usb 4-1: new full-speed USB device number 2 using uhci_hcd
[ 8.005899] intel_pstate: CPU model not supported
[ 8.038878] ledtrig-cpu: registered to indicate activity on CPUs
[ 8.073167] hid: raw HID events driver (C) Jiri Kosina
[ 8.106471] drop_monitor: Initializing network drop monitor service
[ 8.140873] Initializing XFRM netlink socket
[ 8.172695] usb 2-2: New USB device found, idVendor=08ff, idProduct=2580, bcdDevice= 6.23
[ 8.173193] NET: Registered protocol family 10
[ 8.209446] usb 2-2: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[ 8.250725] Segment Routing with IPv6
[ 8.278209] usb 2-2: Product: Fingerprint Sensor
[ 8.309966] RPL Segment Routing with IPv6
[ 8.310017] NET: Registered protocol family 17
[ 8.396061] usb 4-1: New USB device found, idVendor=046d, idProduct=c52b, bcdDevice=12.10
[ 8.443772] usb 4-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 8.443944] microcode: sig=0x6f6, pf=0x20, revision=0xd1
[ 8.479452] usb 4-1: Product: USB Receiver
[ 8.544968] microcode: Microcode Update Driver: v2.2.
[ 8.544977] IPI shorthand broadcast: enabled
[ 8.545004] sched_clock: Marking stable (7612095177, 929815058)->(8766637316, -224727081)
[ 8.577981] usb 4-1: Manufacturer: Logitech
[ 8.679079] registered taskstats version 1
[ 8.711284] usb 1-7: new high-speed USB device number 5 using ehci-pci
[ 8.746057] Loading compiled-in X.509 certificates
[ 8.784416] Loaded X.509 cert 'Build time autogenerated kernel key: e3f62a7aad01602b54a1b14180ab55bb7bf715c3'
[ 8.823939] zswap: loaded using pool lz4/z3fold
[ 8.857880] Key type ._fscrypt registered
[ 8.891200] Key type .fscrypt registered
[ 8.923873] Key type fscrypt-provisioning registered
[ 8.958244] PM: Magic number: 5:652:142
[ 8.991186] acpi device:13: hash matches
[ 9.023882] RAS: Correctable Errors collector initialized.
[ 9.058570] usb 1-7: New USB device found, idVendor=04b4, idProduct=6560, bcdDevice= 0.0b
[ 9.096013] usb 1-7: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 9.096241] hub 1-7:1.0: USB hub found
[ 9.164943] hub 1-7:1.0: 4 ports detected
[ 9.198302] Freeing unused decrypted memory: 2036K
[ 9.232478] Freeing unused kernel image (initmem) memory: 1652K
[ 9.266984] Write protecting the kernel read-only data: 26624k
[ 9.302855] Freeing unused kernel image (text/rodata gap) memory: 2036K
[ 9.339411] Freeing unused kernel image (rodata/data gap) memory: 1268K
[ 9.440134] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 9.475219] rodata_test: all tests were successful
[ 9.508452] x86/mm: Checking user space page tables
[ 9.603373] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 9.637875] Run /init as init process
[ 9.669273] with arguments:
[ 9.699616] /init
[ 9.728965] with environment:
[ 9.758861] HOME=/
[ 9.787487] TERM=linux
[ 9.816116] BOOT_IMAGE=/2018Dec04/boot/vmlinuz-linux
[ 9.899870] Linux agpgart interface v0.103
[ 10.036657] [drm] radeon kernel modesetting enabled.
[ 10.067826] checking generic (e0000000 5b0000) vs hw (e0000000 10000000)
[ 10.100926] fb0: switching to radeondrmfb from VESA VGA
[ 10.132906] Console: switching to colour dummy device 80x25
[ 10.138552] radeon 0000:01:00.0: vgaarb: deactivate vga console
[ 10.144769] [drm] initializing kernel modesetting (RV530 0x1002:0x71C5 0x103C:0x309F 0x00).
[ 10.153160] resource sanity check: requesting [mem 0x000c0000-0x000dffff], which spans more than PCI Bus 0000:00 [mem 0x000d0000-0x000dffff window]
[ 10.166348] caller pci_map_rom+0x68/0x190 mapping multiple BARs
[ 10.172355] ATOM BIOS: HP
[ 10.174986] [drm] Generation 2 PCI interface, using max accessible memory
[ 10.181761] radeon 0000:01:00.0: VRAM: 256M 0x0000000000000000 - 0x000000000FFFFFFF (256M used)
[ 10.190440] radeon 0000:01:00.0: GTT: 512M 0x0000000010000000 - 0x000000002FFFFFFF
[ 10.198007] [drm] Detected VRAM RAM=256M, BAR=256M
[ 10.202787] [drm] RAM width 128bits DDR
[ 10.206725] [TTM] Zone kernel: Available graphics memory: 1685318 KiB
[ 10.213291] [drm] radeon: 256M of VRAM memory ready
[ 10.218171] [drm] radeon: 512M of GTT memory ready.
[ 10.223055] [drm] GART: num cpu pages 131072, num gpu pages 131072
[ 10.230144] [drm] radeon: power management initialized
[ 10.246656] [drm] radeon: 1 quad pipes, 2 z pipes initialized.
[ 10.254507] [drm] PCIE GART of 512M enabled (table at 0x0000000000040000).
[ 10.261383] radeon 0000:01:00.0: WB enabled
[ 10.265564] radeon 0000:01:00.0: fence driver on ring 0 use gpu addr 0x0000000010000000
[ 10.273688] radeon 0000:01:00.0: radeon: MSI limited to 32-bit
[ 10.279565] radeon 0000:01:00.0: radeon: using MSI.
[ 10.284464] [drm] radeon: irq initialized.
[ 10.288562] [drm] Loading R500 Microcode
[ 10.293001] [drm] radeon: ring at 0x0000000010001000
[ 10.298004] [drm] ring test succeeded in 11 usecs
[ 10.303196] [drm] ib test succeeded in 0 usecs
[ 10.308331] [drm] Radeon Display Connectors
[ 10.312524] [drm] Connector 0:
[ 10.315601] [drm] VGA-1
[ 10.318213] [drm] DDC: 0x7e40 0x7e40 0x7e44 0x7e44 0x7e48 0x7e48 0x7e4c 0x7e4c
[ 10.325592] [drm] Encoders:
[ 10.328549] [drm] CRT1: INTERNAL_KLDSCP_DAC1
[ 10.333170] [drm] Connector 1:
[ 10.336223] [drm] LVDS-1
[ 10.338927] [drm] DDC: 0x7e30 0x7e30 0x7e34 0x7e34 0x7e38 0x7e38 0x7e3c 0x7e3c
[ 10.346308] [drm] Encoders:
[ 10.349270] [drm] LCD1: INTERNAL_LVTM1
[ 10.353356] [drm] Connector 2:
[ 10.356403] [drm] SVIDEO-1
[ 10.359277] [drm] Encoders:
[ 10.362238] [drm] TV1: INTERNAL_KLDSCP_DAC2
[ 10.366762] [drm] Connector 3:
[ 10.369809] [drm] DVI-I-1
[ 10.372597] [drm] HPD1
[ 10.375121] [drm] DDC: 0x7e50 0x7e50 0x7e54 0x7e54 0x7e58 0x7e58 0x7e5c 0x7e5c
[ 10.382501] [drm] Encoders:
[ 10.385463] [drm] DFP2: INTERNAL_KLDSCP_DVO1
[ 10.758032] [drm] fb mappable at 0xE00C0000
[ 10.762209] [drm] vram apper at 0xE0000000
[ 10.766296] [drm] size 7258112
[ 10.769344] [drm] fb depth is 24
[ 10.772566] [drm] pitch is 6912
[ 10.776051] fbcon: radeondrmfb (fb0) is primary device
[ 10.842771] Console: switching to colour frame buffer device 210x65
[ 10.860050] radeon 0000:01:00.0: [drm] fb0: radeondrmfb frame buffer device
[ 10.915332] [drm] Initialized radeon 2.50.0 20080528 for 0000:01:00.0 on minor 0
[ 11.078216] i8042: PNP: PS/2 Controller [PNP0303:C221,PNP0f13:C222] at 0x60,0x64 irq 1,12
[ 11.088192] i8042: Detected active multiplexing controller, rev 1.1
[ 11.095367] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 11.100429] serio: i8042 AUX0 port at 0x60,0x64 irq 12
[ 11.105651] serio: i8042 AUX1 port at 0x60,0x64 irq 12
[ 11.110887] serio: i8042 AUX2 port at 0x60,0x64 irq 12
[ 11.116107] serio: i8042 AUX3 port at 0x60,0x64 irq 12
[ 11.131187] ata_piix 0000:00:1f.1: version 2.13
[ 11.139724] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:1d.2/usb4/4-1/4-1:1.0/0003:046D:C52B.0001/input/input3
[ 11.157326] scsi host4: ata_piix
[ 11.160834] scsi host5: ata_piix
[ 11.164188] ata5: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0x5080 irq 14
[ 11.171188] ata6: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x5088 irq 15
[ 11.178372] ata6: port disabled--ignoring
[ 11.189540] sdhci: Secure Digital Host Controller Interface driver
[ 11.198651] sdhci: Copyright(c) Pierre Ossman
[ 11.212232] hid-generic 0003:046D:C52B.0001: input,hidraw0: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:00:1d.2-1/input0
[ 11.226098] sdhci-pci 0000:02:06.3: SDHCI controller found [104c:803c] (rev 0)
[ 11.233860] mmc0: SDHCI controller on PCI [0000:02:06.3] using PIO
[ 11.246834] input: Logitech USB Receiver Mouse as /devices/pci0000:00/0000:00:1d.2/usb4/4-1/4-1:1.1/0003:046D:C52B.0002/input/input5
[ 11.265356] firewire_ohci 0000:02:06.1: added OHCI v1.10 device as card 0, 4 IR + 8 IT contexts, quirks 0x2
[ 11.265679] input: Logitech USB Receiver Consumer Control as /devices/pci0000:00/0000:00:1d.2/usb4/4-1/4-1:1.1/0003:046D:C52B.0002/input/input6
[ 11.290523] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4
[ 11.345518] input: Logitech USB Receiver System Control as /devices/pci0000:00/0000:00:1d.2/usb4/4-1/4-1:1.1/0003:046D:C52B.0002/input/input7
[ 11.358703] ata5.00: ATAPI: HL-DT-ST DVDRAM GSA-T10N, PC05, max MWDMA2
[ 11.358850] hid-generic 0003:046D:C52B.0002: input,hiddev96,hidraw1: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:00:1d.2-1/input1
[ 11.382183] hid-generic 0003:046D:C52B.0003: hiddev97,hidraw2: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:1d.2-1/input2
[ 11.394588] usbcore: registered new interface driver usbhid
[ 11.400195] usbhid: USB HID core driver
[ 11.417040] scsi 4:0:0:0: CD-ROM HL-DT-ST DVDRAM GSA-T10N PC05 PQ: 0 ANSI: 5
[ 11.499087] sr 4:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[ 11.507801] cdrom: Uniform CD-ROM driver Revision: 3.20
[ 11.536987] logitech-djreceiver 0003:046D:C52B.0003: hiddev96,hidraw0: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:1d.2-1/input2
[ 11.559001] sr 4:0:0:0: Attached scsi CD-ROM sr0
[ 11.665891] input: Logitech Wireless Device PID:101b Mouse as /devices/pci0000:00/0000:00:1d.2/usb4/4-1/4-1:1.2/0003:046D:C52B.0003/0003:046D:101B.0004/input/input13
[ 11.680928] hid-generic 0003:046D:101B.0004: input,hidraw1: USB HID v1.11 Mouse [Logitech Wireless Device PID:101b] on usb-0000:00:1d.2-1/input2:1
[ 11.709179] input: Logitech M705 as /devices/pci0000:00/0000:00:1d.2/usb4/4-1/4-1:1.2/0003:046D:C52B.0003/0003:046D:101B.0004/input/input17
[ 11.724542] logitech-hidpp-device 0003:046D:101B.0004: input,hidraw1: USB HID v1.11 Mouse [Logitech M705] on usb-0000:00:1d.2-1/input2:1
[ 11.808799] firewire_core 0000:02:06.1: created device fw0: GUID 00023f992905280e, S400
[ 11.919185] raid6: skip pq benchmark and using algorithm sse2x4
[ 11.927820] raid6: using ssse3x2 recovery algorithm
[ 11.937377] xor: measuring software checksum speed
[ 11.945813] prefetch64-sse : 10582 MB/sec
[ 11.954246] generic_sse : 9057 MB/sec
[ 11.961262] xor: using function: prefetch64-sse (10582 MB/sec)
[ 12.086002] Btrfs loaded, crc32c=crc32c-generic, zoned=yes
[ 12.095322] BTRFS: device fsid a5376a54-1964-4312-8894-9cf3432397fe devid 1 transid 219983 /dev/sda4 scanned by systemd-udevd (129)
[ 12.267272] BTRFS info (device sda4): disk space caching is enabled
[ 12.276586] BTRFS info (device sda4): has skinny extents
[ 14.311942] random: crng init done
[ 21.055177] BTRFS info (device sda4): use zstd compression, level 3
[ 21.064412] BTRFS info (device sda4): disk space caching is enabled
[ 21.367470] fuse: init (API version 7.33)
[ 21.452520] i2c /dev entries driver
[ 21.731008] sd 0:0:0:0: Attached scsi generic sg0 type 0
[ 21.739326] sr 4:0:0:0: Attached scsi generic sg1 type 5
[ 21.896010] Asymmetric key parser 'pkcs8' registered
[ 24.696066] wmi_bus wmi_bus-PNP0C14:00: WQBG data block query control method not found
[ 24.994259] hp_accel: laptop model unknown, using default axes configuration
[ 25.033153] lis3lv02d: 12 bits sensor found
[ 25.087890] intel_rng: FWH not detected
[ 25.129742] ACPI: \_SB_.C003.C085.C130.C14C: _BCQ is used instead of _BQC
[ 25.139713] ACPI: video: Video Device [C130] (multi-head: yes rom: no post: no)
[ 25.152247] acpi device:02: registered as cooling_device13
[ 25.161325] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/LNXVIDEO:00/input/input22
[ 25.225353] input: ST LIS3LV02DL Accelerometer as /devices/platform/lis3lv02d/input/input23
[ 25.298698] ACPI Warning: SystemIO range 0x0000000000001028-0x000000000000102F conflicts with OpRegion 0x0000000000001000-0x0000000000001042 (\_SB.C003.C004.C0BC) (20210105/utaddress-204)
[ 25.319789] ACPI: OSL: Resource conflict; ACPI support missing from driver?
[ 25.333221] ACPI: OSL: Resource conflict: System may be unstable or behave erratically
[ 25.344879] ACPI Warning: SystemIO range 0x0000000000001130-0x000000000000113F conflicts with OpRegion 0x0000000000001100-0x000000000000113B (\_SB.C003.C004.C0CE) (20210105/utaddress-204)
[ 25.373842] parport_pc 00:02: reported by Plug and Play ACPI
[ 25.378602] ACPI: OSL: Resource conflict; ACPI support missing from driver?
[ 25.383143] parport0: PC-style at 0x378 (0x778), irq 7, dma 1 [PCSPP,TRISTATE,COMPAT,EPP,ECP,DMA]
[ 25.406225] ACPI: OSL: Resource conflict: System may be unstable or behave erratically
[ 25.428175] ACPI Warning: SystemIO range 0x0000000000001100-0x000000000000112F conflicts with OpRegion 0x0000000000001100-0x000000000000113B (\_SB.C003.C004.C0CE) (20210105/utaddress-204)
[ 25.458630] ACPI: OSL: Resource conflict; ACPI support missing from driver?
[ 25.469191] ACPI: OSL: Resource conflict: System may be unstable or behave erratically
[ 25.511259] psmouse serio4: synaptics: Touchpad model: 1, fw: 6.2, id: 0x25a0b1, caps: 0xa04793/0x300000/0x0/0x0, board id: 0, fw id: 35522
[ 25.538695] psmouse serio4: synaptics: serio: Synaptics pass-through port at isa0060/serio4/input0
[ 25.601164] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio4/input/input21
[ 25.621507] tpm_tis 00:03: 1.2 TPM (device-id 0xB, rev-id 16)
[ 25.634630] leds_ss4200: no LED devices found
[ 25.647178] tpm tpm0: [Hardware Error]: Adjusting reported timeouts: A 750->750000us B 2000->2000000us C 750->750000us D 750->750000us
[ 25.675998] tpm tpm0: Operation Timed out
[ 25.689070] tpm tpm0: Operation Timed out
[ 25.696733] tpm tpm0: Adjusting TPM timeout parameters.
[ 25.883735] mousedev: PS/2 mouse device common for all mice
[ 26.085021] yenta_cardbus 0000:02:06.0: CardBus bridge found [103c:309f]
[ 26.095162] yenta_cardbus 0000:02:06.0: CardBus bridge to [bus 03]
[ 26.104711] yenta_cardbus 0000:02:06.0: bridge window [io 0x8000-0x80ff]
[ 26.114970] yenta_cardbus 0000:02:06.0: bridge window [io 0x8400-0x84ff]
[ 26.125165] yenta_cardbus 0000:02:06.0: bridge window [mem 0xd8800000-0xd8bfffff]
[ 26.136009] yenta_cardbus 0000:02:06.0: bridge window [mem 0xdc000000-0xdfffffff]
[ 26.146828] yenta_cardbus 0000:02:06.0: Enabling burst memory read transactions
[ 26.157298] yenta_cardbus 0000:02:06.0: Using INTVAL to route CSC interrupts to PCI
[ 26.168069] yenta_cardbus 0000:02:06.0: Routing CardBus interrupts to PCI
[ 26.177963] yenta_cardbus 0000:02:06.0: TI: mfunc 0x01aa1b22, devctl 0x64
[ 26.273495] input: PC Speaker as /devices/platform/pcspkr/input/input25
[ 26.429185] yenta_cardbus 0000:02:06.0: ISA IRQ mask 0x0c68, PCI irq 18
[ 26.438838] yenta_cardbus 0000:02:06.0: Socket status: 30000006
[ 26.447738] yenta_cardbus 0000:02:06.0: pcmcia: parent PCI bridge window: [io 0x8000-0x8fff]
[ 26.460290] yenta_cardbus 0000:02:06.0: pcmcia: parent PCI bridge window: [mem 0xf4200000-0xf45fffff]
[ 26.472762] pcmcia_socket pcmcia_socket0: cs: memory probe 0xf4200000-0xf45fffff:
[ 26.483692] excluding 0xf4200000-0xf423ffff
[ 26.537012] tg3 0000:08:00.0 eth0: Tigon3 [partno(BCM95751M) rev 4201] (PCI Express) MAC address 00:16:d4:ef:0a:d1
[ 26.550992] tg3 0000:08:00.0 eth0: attached PHY is 5750 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[0])
[ 26.564163] tpm tpm0: TPM is disabled/deactivated (0x7)
[ 26.575179] tg3 0000:08:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
[ 26.586495] tg3 0000:08:00.0 eth0: dma_rwctrl[76180000] dma_mask[64-bit]
[ 26.809039] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[ 26.864419] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[ 27.056744] input: HP WMI hotkeys as /devices/virtual/input/input26
[ 27.209811] tg3 0000:08:00.0 ens1: renamed from eth0
[ 27.218703] ppdev: user-space parallel port driver
[ 27.354632] Bluetooth: Core ver 2.22
[ 27.361455] NET: Registered protocol family 31
[ 27.369026] Bluetooth: HCI device and connection manager initialized
[ 27.378555] Bluetooth: HCI socket layer initialized
[ 27.386291] Bluetooth: L2CAP socket layer initialized
[ 27.395388] Bluetooth: SCO socket layer initialized
[ 27.458141] gpio_ich gpio_ich.2.auto: GPIO from 462 to 511
[ 27.471082] iTCO_vendor_support: vendor-support=0
[ 27.793745] iTCO_wdt iTCO_wdt.1.auto: Found a ICH7-M or ICH7-U TCO device (Version=2, TCOBASE=0x1060)
[ 27.843933] iTCO_wdt iTCO_wdt.1.auto: initialized. heartbeat=30 sec (nowayout=0)
[ 28.126045] iwl3945: Intel(R) PRO/Wireless 3945ABG/BG Network Connection driver for Linux, in-tree:ds
[ 28.140022] iwl3945: Copyright(c) 2003-2011 Intel Corporation
[ 28.149598] iwl3945: hw_scan is disabled
[ 28.156796] iwl3945 0000:10:00.0: can't disable ASPM; OS doesn't have ASPM control
[ 28.214942] usbcore: registered new interface driver btusb
[ 28.244617] iwl3945 0000:10:00.0: Tunable channels: 11 802.11bg, 13 802.11a channels
[ 28.255194] iwl3945 0000:10:00.0: Detected Intel Wireless WiFi Link 3945ABG
[ 28.265226] ieee80211 phy0: Selected rate control algorithm 'iwl-3945-rs'
[ 28.439753] intel_powerclamp: No package C-state available
[ 28.475757] intel_powerclamp: No package C-state available
[ 28.814569] snd_hda_codec_analog hdaudioC0D0: autoconfig for AD1981: line_outs=1 (0x5/0x0/0x0/0x0/0x0) type:speaker
[ 28.829313] snd_hda_codec_analog hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 28.841419] snd_hda_codec_analog hdaudioC0D0: hp_outs=1 (0x6/0x0/0x0/0x0/0x0)
[ 28.852175] snd_hda_codec_analog hdaudioC0D0: mono: mono_out=0x0
[ 28.862625] snd_hda_codec_analog hdaudioC0D0: inputs:
[ 28.871944] snd_hda_codec_analog hdaudioC0D0: Mic=0x8
[ 28.880511] snd_hda_codec_analog hdaudioC0D0: Internal Mic=0x18
[ 28.890025] snd_hda_codec_analog hdaudioC0D0: Line=0x9
[ 29.044758] input: HDA Intel Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input27
[ 29.058393] input: HDA Intel Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input28
[ 29.070122] input: HDA Intel Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input29
[ 29.878640] Adding 8388604k swap on /dev/sda3. Priority:-2 extents:1 across:8388604k FS
[ 36.162648] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 36.170226] Bluetooth: BNEP filters: protocol multicast
[ 36.179541] Bluetooth: BNEP socket layer initialized
[ 36.488320] bond0: (slave ens1): Enslaving as a backup interface with a down link
[ 36.682882] NET: Registered protocol family 38
[ 36.955548] iwl3945 0000:10:00.0: loaded firmware version 15.32.2.9
[ 37.049332] bond0: (slave wlan0): Enslaving as a backup interface with a down link
[ 38.963944] cryptd: max_cpu_qlen set to 1000
[ 39.833729] wlan0: authenticate with xx:xx:xx:xx:xx:xx
[ 39.844812] wlan0: send auth to xx:xx:xx:xx:xx:xx (try 1/3)
[ 39.854845] wlan0: authenticated
[ 39.861962] wlan0: associate with xx:xx:xx:xx:xx:xx (try 1/3)
[ 39.891714] wlan0: RX AssocResp from xx:xx:xx:xx:xx:xx (capab=0x11 status=0 aid=3)
[ 39.904225] wlan0: associated
[ 39.911255] bond0: (slave wlan0): link status definitely up, 0 Mbps full duplex
[ 39.922593] bond0: (slave wlan0): making interface the new active one
[ 39.934586] bond0: active interface up!
[ 39.941637] IPv6: ADDRCONF(NETDEV_CHANGE): bond0: link becomes ready

Arch Linux 5.12.0-arch1-1 (ttyS0)

tourmaline login: [ 71.595732] CE: hpet increased min_delta_ns to 20115 nsec
[ 71.595966] CE: hpet increased min_delta_ns to 30172 nsec
[ 75.574954] Bluetooth: RFCOMM TTY layer initialized
[ 75.579847] Bluetooth: RFCOMM socket layer initialized
[ 75.584992] Bluetooth: RFCOMM ver 1.11
[ 131.419166] logitech-hidpp-device 0003:046D:101B.0004: HID++ 1.0 device connected.
[ 140.852291] wlan0: deauthenticating from xx:xx:xx:xx:xx:xx by local choice (Reason: 3=DEAUTH_LEAVING)
[ 140.951968] bond0: (slave wlan0): link status definitely down, disabling slave
[ 140.959216] bond0: now running without any active interface!
[ 141.729017] bond0: (slave ens1): Releasing backup interface
[ 142.079529] bond0: (slave wlan0): Releasing backup interface
[ 142.385290] bond0 (unregistering): Released all slaves
[ 145.015328] BTRFS info (device sda4): disk space caching is enabled
[ 146.402152] kvm: exiting hardware virtualization
[ 146.484836] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[ 146.492583] sd 0:0:0:0: [sda] Stopping disk
[ 147.270555] ACPI: Preparing to enter system sleep state S5
[ 147.278663] reboot: Power down
[ 147.284389] acpi_power_off called
\
 
 \ /
  Last update: 2021-05-22 00:13    [W:0.224 / U:1.672 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site