* Re: Dell XPS 13 9360 (Kaby Lake): Power button LED stays sporadically trying to S0ix suspend
2024-05-29 15:21 ` Zhang, Rui
@ 2024-05-30 8:37 ` Paul Menzel
2024-05-30 15:20 ` Zhang, Rui
0 siblings, 1 reply; 4+ messages in thread
From: Paul Menzel @ 2024-05-30 8:37 UTC (permalink / raw)
To: Rui Zhang
Cc: linux-pm, Hans de Goede, Len Brown, Rafael J Wysocki, Mike Jones
[-- Attachment #1: Type: text/plain, Size: 3525 bytes --]
Dear Rui,
Thank you for your instant reply, and even suggesting a patch.
Am 29.05.24 um 17:21 schrieb Zhang, Rui:
> The problem is that, the system may fail to enter S0ix if it is
> suspended with high temperature.
Thank you. Can the temperature threshold be checked? I guess it’s
somewhere in the system firmware.
> So a delay loop in the driver suspend code is introduced to allow the
> system to cool down, ef63b043ac86 ("thermal: intel: pch: fix S0ix
> failure due to PCH temperature above threshold"). And then enhanced by
> this commit 92923028e979 ("thermal: intel: pch: enhance overheat
> handling")
>
>> The difference is:
>>
>> 1. LED stays on:
>>
>> intel_pch_thermal 0000:00:14.2: Wakeup event detected, abort cooling
>
> [ 2918.091771] ACPI: EC: interrupt blocked
> [ 2956.317686] intel_pch_thermal 0000:00:14.2: Wakeup event detected, abort cooling
>
> so the system doesn't go to a safe temperature after 40+ seconds, and a
> wakeup event is fired and s2idle is aborted.
>
>> 2. LED turns off:
>>
>> intel_pch_thermal 0000:00:14.2: CPU-PCH is cool [44C]
>>
> [ 7977.637987] ACPI: EC: interrupt blocked
> [ 7977.641470] intel_pch_thermal 0000:00:14.2: CPU-PCH is cool [44C]
>
> In this case, system is not overheat and we suspend immediately.
>
>> Does intel_pch_thermal prevent the system from S0ix suspending, so the
>> LED stays on until the device is cooled down?
>
> yes, because we are still in driver .suspend_noirq() callbacks at this
> time. And we have to block suspend, or else the system can only reach
> PCx after suspended.
>
>> If so, could this be better logged, so users know, what is going on.
>
> hmmm, any suggestions?
> or how about the change below?
> ---
> drivers/thermal/intel/intel_pch_thermal.c | 5 +++++
> 1 file changed, 5 insertions(+)
>
> diff --git a/drivers/thermal/intel/intel_pch_thermal.c
> b/drivers/thermal/intel/intel_pch_thermal.c
> index f5be2c389351..91a6149df350 100644
> --- a/drivers/thermal/intel/intel_pch_thermal.c
> +++ b/drivers/thermal/intel/intel_pch_thermal.c
> @@ -298,6 +298,11 @@ static int intel_pch_thermal_suspend_noirq(struct
> device *device)
> /* Get the PCH current temperature value */
> pch_cur_temp = GET_PCH_TEMP(WPT_TEMP_TSR & readw(ptd->hw_base + WPT_TEMP));
>
> + if (pch_cur_temp >= pch_thr_temp)
> + dev_info(&ptd->pdev->dev,
> + "CPU-PCH overheats [%dC], S0ix might fail. Start cooling...\n",
> + pch_cur_temp);
> +
> /*
> * If current PCH temperature is higher than configured PCH threshold
> * value, run some delay loop with sleep to let the current temperature
Yes, that sounds good. I tested your patch on top of commit 4a4be1ad3a6e
(Revert "vfs: Delete the associated dentry when deleting a file"), and
after several S0ix suspend/resume cycles I got:
[ 41.313922] intel_pch_thermal 0000:00:14.2: CPU-PCH overheats
[66C], S0ix might fail. Start cooling...
[ 93.210526] nvme nvme0: I/O tag 736 (82e0) QID 1 timeout,
completion polled
[ 106.110309] intel_pch_thermal 0000:00:14.2: CPU-PCH is hot [50C]
after 60000 ms delay. S0ix might fail
[ 106.122190] intel_pch_thermal 0000:00:14.2: PM:
pci_pm_suspend_noirq returned 0 after 64808266 usecs
I would also add the temperature threshold to the log messages, and use
log level warning as it prevents S0ix from working.
Please find the output of `dmesg` with `initcall_debug` of all
suspend/resume cycles attached.
Kind regards,
Paul
[-- Attachment #2: 20240530--linux-6.10-rc1--intel_pch_thermal.txt --]
[-- Type: text/plain, Size: 279216 bytes --]
[ 0.000000] Linux version 6.10.0-rc1-00028-g4b3eb131492d (build@bohemianrhapsody.molgen.mpg.de) (gcc (Debian 13.2.0-25) 13.2.0, GNU ld (GNU Binutils for Debian) 2.42) #169 SMP PREEMPT_DYNAMIC Wed May 29 22:08:52 CEST 2024
[ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-6.10.0-rc1-00028-g4b3eb131492d root=UUID=32e29882-d94d-4a92-9ee4-4d03002bfa29 ro quiet pci=noaer mem_sleep_default=deep log_buf_len=8M cryptomgr.notests initcall_debug
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000057fff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000059000-0x000000000009dfff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009e000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000556aafff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000556ab000-0x00000000556abfff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x00000000556ac000-0x00000000556acfff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000556ad000-0x0000000064df3fff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000064df4000-0x000000006517ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000065180000-0x00000000651c3fff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x00000000651c4000-0x000000006f871fff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x000000006f872000-0x000000006fffefff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000006ffff000-0x000000006fffffff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000070000000-0x0000000077ffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000078000000-0x00000000785fffff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000078600000-0x000000007c7fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x00000004817fffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] APIC: Static calls initialized
[ 0.000000] e820: update [mem 0x511ec018-0x511fc057] usable ==> usable
[ 0.000000] extended physical RAM map:
[ 0.000000] reserve setup_data: [mem 0x0000000000000000-0x0000000000057fff] usable
[ 0.000000] reserve setup_data: [mem 0x0000000000058000-0x0000000000058fff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000000059000-0x000000000009dfff] usable
[ 0.000000] reserve setup_data: [mem 0x000000000009e000-0x00000000000fffff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000000100000-0x00000000511ec017] usable
[ 0.000000] reserve setup_data: [mem 0x00000000511ec018-0x00000000511fc057] usable
[ 0.000000] reserve setup_data: [mem 0x00000000511fc058-0x00000000556aafff] usable
[ 0.000000] reserve setup_data: [mem 0x00000000556ab000-0x00000000556abfff] ACPI NVS
[ 0.000000] reserve setup_data: [mem 0x00000000556ac000-0x00000000556acfff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000556ad000-0x0000000064df3fff] usable
[ 0.000000] reserve setup_data: [mem 0x0000000064df4000-0x000000006517ffff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000065180000-0x00000000651c3fff] ACPI data
[ 0.000000] reserve setup_data: [mem 0x00000000651c4000-0x000000006f871fff] ACPI NVS
[ 0.000000] reserve setup_data: [mem 0x000000006f872000-0x000000006fffefff] reserved
[ 0.000000] reserve setup_data: [mem 0x000000006ffff000-0x000000006fffffff] usable
[ 0.000000] reserve setup_data: [mem 0x0000000070000000-0x0000000077ffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000078000000-0x00000000785fffff] usable
[ 0.000000] reserve setup_data: [mem 0x0000000078600000-0x000000007c7fffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000100000000-0x00000004817fffff] usable
[ 0.000000] efi: EFI v2.4 by American Megatrends
[ 0.000000] efi: ACPI=0x6518d000 ACPI 2.0=0x6518d000 SMBIOS=0xf0000 SMBIOS 3.0=0xf0020 TPMFinalLog=0x6f812000 ESRT=0x6fc86698 MEMATTR=0x62679298 INITRD=0x5577da98 TPMEventLog=0x5577e018
[ 0.000000] efi: Remove mem34: MMIO range=[0xe0000000-0xefffffff] (256MB) from e820 map
[ 0.000000] e820: remove [mem 0xe0000000-0xefffffff] reserved
[ 0.000000] efi: Not removing mem35: MMIO range=[0xfe000000-0xfe010fff] (68KB) from e820 map
[ 0.000000] efi: Not removing mem36: MMIO range=[0xfec00000-0xfec00fff] (4KB) from e820 map
[ 0.000000] efi: Not removing mem37: MMIO range=[0xfee00000-0xfee00fff] (4KB) from e820 map
[ 0.000000] efi: Remove mem38: MMIO range=[0xff000000-0xffffffff] (16MB) from e820 map
[ 0.000000] e820: remove [mem 0xff000000-0xffffffff] reserved
[ 0.000000] SMBIOS 3.0.0 present.
[ 0.000000] DMI: Dell Inc. XPS 13 9360/0596KF, BIOS 2.21.0 06/02/2022
[ 0.000000] DMI: Memory slots populated: 2/2
[ 0.000000] tsc: Detected 2900.000 MHz processor
[ 0.000000] tsc: Detected 2899.886 MHz TSC
[ 0.000823] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000825] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000830] last_pfn = 0x481800 max_arch_pfn = 0x400000000
[ 0.000834] MTRR map: 4 entries (3 fixed + 1 variable; max 23), built from 10 variable MTRRs
[ 0.000835] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.001112] last_pfn = 0x78600 max_arch_pfn = 0x400000000
[ 0.006981] esrt: Reserving ESRT space from 0x000000006fc86698 to 0x000000006fc866d0.
[ 0.006986] Using GB pages for direct mapping
[ 0.013283] printk: log_buf_len: 8388608 bytes
[ 0.013284] printk: early log buf free: 125312(95%)
[ 0.013285] Secure boot disabled
[ 0.013286] RAMDISK: [mem 0x511fd000-0x52612fff]
[ 0.013290] ACPI: Early table checksum verification disabled
[ 0.013292] ACPI: RSDP 0x000000006518D000 000024 (v02 DELL )
[ 0.013296] ACPI: XSDT 0x000000006518D0C8 00010C (v01 DELL CBX3 01072009 AMI 00010013)
[ 0.013300] ACPI: FACP 0x00000000651B2A48 00010C (v05 DELL CBX3 01072009 AMI 00010013)
[ 0.013304] ACPI: DSDT 0x000000006518D260 0257E7 (v02 DELL CBX3 01072009 INTL 20160422)
[ 0.013307] ACPI: FACS 0x000000006F86F180 000040
[ 0.013309] ACPI: APIC 0x00000000651B2B58 000084 (v03 DELL CBX3 01072009 AMI 00010013)
[ 0.013311] ACPI: FPDT 0x00000000651B2BE0 000044 (v01 DELL CBX3 01072009 AMI 00010013)
[ 0.013313] ACPI: FIDT 0x00000000651B2C28 0000AC (v01 DELL CBX3 01072009 AMI 00010013)
[ 0.013316] ACPI: MCFG 0x00000000651B2CD8 00003C (v01 DELL CBX3 01072009 MSFT 00000097)
[ 0.013318] ACPI: HPET 0x00000000651B2D18 000038 (v01 DELL CBX3 01072009 AMI. 0005000B)
[ 0.013320] ACPI: SSDT 0x00000000651B2D50 000359 (v01 SataRe SataTabl 00001000 INTL 20160422)
[ 0.013323] ACPI: BOOT 0x00000000651B30B0 000028 (v01 DELL CBX3 01072009 AMI 00010013)
[ 0.013325] ACPI: SSDT 0x00000000651B30D8 0012CF (v02 SaSsdt SaSsdt 00003000 INTL 20160422)
[ 0.013327] ACPI: HPET 0x00000000651B43A8 000038 (v01 INTEL KBL-ULT 00000001 MSFT 0000005F)
[ 0.013329] ACPI: SSDT 0x00000000651B43E0 000D84 (v02 INTEL xh_rvp07 00000000 INTL 20160422)
[ 0.013331] ACPI: UEFI 0x00000000651B5168 000042 (v01 00000000 00000000)
[ 0.013334] ACPI: SSDT 0x00000000651B51B0 000EDE (v02 CpuRef CpuSsdt 00003000 INTL 20160422)
[ 0.013336] ACPI: LPIT 0x00000000651B6090 000094 (v01 INTEL KBL-ULT 00000000 MSFT 0000005F)
[ 0.013338] ACPI: WSMT 0x00000000651B6128 000028 (v01 DELL CBX3 00000000 MSFT 0000005F)
[ 0.013340] ACPI: SSDT 0x00000000651B6150 000161 (v02 INTEL HdaDsp 00000000 INTL 20160422)
[ 0.013342] ACPI: SSDT 0x00000000651B62B8 00029F (v02 INTEL sensrhub 00000000 INTL 20160422)
[ 0.013344] ACPI: SSDT 0x00000000651B6558 003002 (v02 INTEL PtidDevc 00001000 INTL 20160422)
[ 0.013347] ACPI: SSDT 0x00000000651B9560 0000DB (v02 INTEL TbtTypeC 00000000 INTL 20160422)
[ 0.013349] ACPI: DBGP 0x00000000651B9640 000034 (v01 INTEL 00000002 MSFT 0000005F)
[ 0.013351] ACPI: DBG2 0x00000000651B9678 000054 (v00 INTEL 00000002 MSFT 0000005F)
[ 0.013353] ACPI: SSDT 0x00000000651B96D0 0007DD (v02 INTEL UsbCTabl 00001000 INTL 20160422)
[ 0.013355] ACPI: SSDT 0x00000000651B9EB0 0084F1 (v02 DptfTa DptfTabl 00001000 INTL 20160422)
[ 0.013357] ACPI: SLIC 0x00000000651C23A8 000176 (v03 DELL CBX3 01072009 MSFT 00010013)
[ 0.013359] ACPI: NHLT 0x00000000651C2520 00002D (v00 INTEL EDK2 00000002 01000013)
[ 0.013362] ACPI: BGRT 0x00000000651C2550 000038 (v00 01072009 AMI 00010013)
[ 0.013364] ACPI: TPM2 0x00000000651C2588 000034 (v03 Tpm2Tabl 00000001 AMI 00000000)
[ 0.013366] ACPI: ASF! 0x00000000651C25C0 0000A0 (v32 INTEL HCG 00000001 TFSM 000F4240)
[ 0.013368] ACPI: DMAR 0x00000000651C2660 0000F0 (v01 INTEL KBL 00000001 INTL 00000001)
[ 0.013370] ACPI: Reserving FACP table memory at [mem 0x651b2a48-0x651b2b53]
[ 0.013371] ACPI: Reserving DSDT table memory at [mem 0x6518d260-0x651b2a46]
[ 0.013372] ACPI: Reserving FACS table memory at [mem 0x6f86f180-0x6f86f1bf]
[ 0.013373] ACPI: Reserving APIC table memory at [mem 0x651b2b58-0x651b2bdb]
[ 0.013373] ACPI: Reserving FPDT table memory at [mem 0x651b2be0-0x651b2c23]
[ 0.013374] ACPI: Reserving FIDT table memory at [mem 0x651b2c28-0x651b2cd3]
[ 0.013375] ACPI: Reserving MCFG table memory at [mem 0x651b2cd8-0x651b2d13]
[ 0.013375] ACPI: Reserving HPET table memory at [mem 0x651b2d18-0x651b2d4f]
[ 0.013376] ACPI: Reserving SSDT table memory at [mem 0x651b2d50-0x651b30a8]
[ 0.013377] ACPI: Reserving BOOT table memory at [mem 0x651b30b0-0x651b30d7]
[ 0.013377] ACPI: Reserving SSDT table memory at [mem 0x651b30d8-0x651b43a6]
[ 0.013378] ACPI: Reserving HPET table memory at [mem 0x651b43a8-0x651b43df]
[ 0.013378] ACPI: Reserving SSDT table memory at [mem 0x651b43e0-0x651b5163]
[ 0.013379] ACPI: Reserving UEFI table memory at [mem 0x651b5168-0x651b51a9]
[ 0.013380] ACPI: Reserving SSDT table memory at [mem 0x651b51b0-0x651b608d]
[ 0.013380] ACPI: Reserving LPIT table memory at [mem 0x651b6090-0x651b6123]
[ 0.013381] ACPI: Reserving WSMT table memory at [mem 0x651b6128-0x651b614f]
[ 0.013382] ACPI: Reserving SSDT table memory at [mem 0x651b6150-0x651b62b0]
[ 0.013382] ACPI: Reserving SSDT table memory at [mem 0x651b62b8-0x651b6556]
[ 0.013383] ACPI: Reserving SSDT table memory at [mem 0x651b6558-0x651b9559]
[ 0.013384] ACPI: Reserving SSDT table memory at [mem 0x651b9560-0x651b963a]
[ 0.013384] ACPI: Reserving DBGP table memory at [mem 0x651b9640-0x651b9673]
[ 0.013385] ACPI: Reserving DBG2 table memory at [mem 0x651b9678-0x651b96cb]
[ 0.013386] ACPI: Reserving SSDT table memory at [mem 0x651b96d0-0x651b9eac]
[ 0.013386] ACPI: Reserving SSDT table memory at [mem 0x651b9eb0-0x651c23a0]
[ 0.013387] ACPI: Reserving SLIC table memory at [mem 0x651c23a8-0x651c251d]
[ 0.013388] ACPI: Reserving NHLT table memory at [mem 0x651c2520-0x651c254c]
[ 0.013388] ACPI: Reserving BGRT table memory at [mem 0x651c2550-0x651c2587]
[ 0.013389] ACPI: Reserving TPM2 table memory at [mem 0x651c2588-0x651c25bb]
[ 0.013390] ACPI: Reserving ASF! table memory at [mem 0x651c25c0-0x651c265f]
[ 0.013390] ACPI: Reserving DMAR table memory at [mem 0x651c2660-0x651c274f]
[ 0.013517] No NUMA configuration found
[ 0.013517] Faking a node at [mem 0x0000000000000000-0x00000004817fffff]
[ 0.013525] NODE_DATA(0) allocated [mem 0x47f3d5000-0x47f3fffff]
[ 0.013695] Zone ranges:
[ 0.013696] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.013697] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.013699] Normal [mem 0x0000000100000000-0x00000004817fffff]
[ 0.013700] Device empty
[ 0.013700] Movable zone start for each node
[ 0.013703] Early memory node ranges
[ 0.013703] node 0: [mem 0x0000000000001000-0x0000000000057fff]
[ 0.013704] node 0: [mem 0x0000000000059000-0x000000000009dfff]
[ 0.013705] node 0: [mem 0x0000000000100000-0x00000000556aafff]
[ 0.013706] node 0: [mem 0x00000000556ad000-0x0000000064df3fff]
[ 0.013707] node 0: [mem 0x000000006ffff000-0x000000006fffffff]
[ 0.013707] node 0: [mem 0x0000000078000000-0x00000000785fffff]
[ 0.013708] node 0: [mem 0x0000000100000000-0x00000004817fffff]
[ 0.013709] Initmem setup node 0 [mem 0x0000000000001000-0x00000004817fffff]
[ 0.013714] On node 0, zone DMA: 1 pages in unavailable ranges
[ 0.013715] On node 0, zone DMA: 1 pages in unavailable ranges
[ 0.013738] On node 0, zone DMA: 98 pages in unavailable ranges
[ 0.016091] On node 0, zone DMA32: 2 pages in unavailable ranges
[ 0.016514] On node 0, zone DMA32: 45579 pages in unavailable ranges
[ 0.017040] On node 0, zone Normal: 31232 pages in unavailable ranges
[ 0.017280] On node 0, zone Normal: 26624 pages in unavailable ranges
[ 0.017287] Reserving Intel graphics memory at [mem 0x7a800000-0x7c7fffff]
[ 0.017465] ACPI: PM-Timer IO Port: 0x1808
[ 0.017470] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.017472] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[ 0.017472] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[ 0.017473] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[ 0.017499] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[ 0.017501] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.017503] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.017506] ACPI: Using ACPI (MADT) for SMP configuration information
[ 0.017507] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[ 0.017512] e820: update [mem 0x62260000-0x623ecfff] usable ==> reserved
[ 0.017519] TSC deadline timer available
[ 0.017523] CPU topo: Max. logical packages: 1
[ 0.017524] CPU topo: Max. logical dies: 1
[ 0.017524] CPU topo: Max. dies per package: 1
[ 0.017528] CPU topo: Max. threads per core: 2
[ 0.017528] CPU topo: Num. cores per package: 2
[ 0.017529] CPU topo: Num. threads per package: 4
[ 0.017529] CPU topo: Allowing 4 present CPUs plus 0 hotplug CPUs
[ 0.017552] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.017553] PM: hibernation: Registered nosave memory: [mem 0x00058000-0x00058fff]
[ 0.017555] PM: hibernation: Registered nosave memory: [mem 0x0009e000-0x000fffff]
[ 0.017556] PM: hibernation: Registered nosave memory: [mem 0x511ec000-0x511ecfff]
[ 0.017558] PM: hibernation: Registered nosave memory: [mem 0x511fc000-0x511fcfff]
[ 0.017559] PM: hibernation: Registered nosave memory: [mem 0x556ab000-0x556abfff]
[ 0.017560] PM: hibernation: Registered nosave memory: [mem 0x556ac000-0x556acfff]
[ 0.017561] PM: hibernation: Registered nosave memory: [mem 0x62260000-0x623ecfff]
[ 0.017562] PM: hibernation: Registered nosave memory: [mem 0x64df4000-0x6517ffff]
[ 0.017563] PM: hibernation: Registered nosave memory: [mem 0x65180000-0x651c3fff]
[ 0.017563] PM: hibernation: Registered nosave memory: [mem 0x651c4000-0x6f871fff]
[ 0.017564] PM: hibernation: Registered nosave memory: [mem 0x6f872000-0x6fffefff]
[ 0.017565] PM: hibernation: Registered nosave memory: [mem 0x70000000-0x77ffffff]
[ 0.017567] PM: hibernation: Registered nosave memory: [mem 0x78600000-0x7c7fffff]
[ 0.017567] PM: hibernation: Registered nosave memory: [mem 0x7c800000-0xfdffffff]
[ 0.017568] PM: hibernation: Registered nosave memory: [mem 0xfe000000-0xfe010fff]
[ 0.017568] PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xfebfffff]
[ 0.017569] PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[ 0.017570] PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfedfffff]
[ 0.017570] PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[ 0.017571] PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xffffffff]
[ 0.017572] [mem 0x7c800000-0xfdffffff] available for PCI devices
[ 0.017573] Booting paravirtualized kernel on bare hardware
[ 0.017575] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[ 0.021789] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
[ 0.022111] percpu: Embedded 94 pages/cpu s290816 r65536 d28672 u524288
[ 0.022117] pcpu-alloc: s290816 r65536 d28672 u524288 alloc=1*2097152
[ 0.022118] pcpu-alloc: [0] 0 1 2 3
[ 0.022136] Kernel command line: BOOT_IMAGE=/vmlinuz-6.10.0-rc1-00028-g4b3eb131492d root=UUID=32e29882-d94d-4a92-9ee4-4d03002bfa29 ro quiet pci=noaer mem_sleep_default=deep log_buf_len=8M cryptomgr.notests initcall_debug
[ 0.022200] Unknown kernel command line parameters "BOOT_IMAGE=/vmlinuz-6.10.0-rc1-00028-g4b3eb131492d", will be passed to user space.
[ 0.022225] random: crng init done
[ 0.023726] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[ 0.024485] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[ 0.024532] Fallback order for Node 0: 0
[ 0.024534] Built 1 zonelists, mobility grouping on. Total pages: 4090767
[ 0.024535] Policy zone: Normal
[ 0.024541] mem auto-init: stack:all(zero), heap alloc:on, heap free:off, mlocked free:off
[ 0.024547] software IO TLB: area num 4.
[ 0.042647] Memory: 1656172K/16363068K available (14336K kernel code, 2508K rwdata, 9792K rodata, 2896K init, 6580K bss, 500236K reserved, 0K cma-reserved)
[ 0.042847] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[ 0.042848] kmemleak: Kernel memory leak detector disabled
[ 0.042875] ftrace: allocating 42385 entries in 166 pages
[ 0.049591] ftrace: allocated 166 pages with 4 groups
[ 0.050206] Dynamic Preempt: voluntary
[ 0.050246] rcu: Preemptible hierarchical RCU implementation.
[ 0.050247] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=4.
[ 0.050248] Trampoline variant of Tasks RCU enabled.
[ 0.050248] Rude variant of Tasks RCU enabled.
[ 0.050249] Tracing variant of Tasks RCU enabled.
[ 0.050250] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[ 0.050250] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[ 0.050255] RCU Tasks: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
[ 0.050257] RCU Tasks Rude: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
[ 0.050258] RCU Tasks Trace: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
[ 0.052409] NR_IRQS: 524544, nr_irqs: 1024, preallocated irqs: 16
[ 0.052614] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[ 0.052791] spurious 8259A interrupt: IRQ7.
[ 0.052808] calling con_init+0x0/0x280 @ 0
[ 0.052820] Console: colour dummy device 80x25
[ 0.052823] printk: legacy console [tty0] enabled
[ 0.052842] initcall con_init+0x0/0x280 returned 0 after 0 usecs
[ 0.052844] calling hvc_console_init+0x0/0x20 @ 0
[ 0.052847] initcall hvc_console_init+0x0/0x20 returned 0 after 0 usecs
[ 0.052848] calling xen_cons_init+0x0/0x50 @ 0
[ 0.052850] initcall xen_cons_init+0x0/0x50 returned 0 after 0 usecs
[ 0.052852] calling univ8250_console_init+0x0/0x30 @ 0
[ 0.052857] initcall univ8250_console_init+0x0/0x30 returned 0 after 0 usecs
[ 0.052872] ACPI: Core revision 20240322
[ 0.053016] hpet: HPET dysfunctional in PC10. Force disabled.
[ 0.053017] APIC: Switch to symmetric I/O mode setup
[ 0.053019] DMAR: Host address width 39
[ 0.053019] DMAR: DRHD base: 0x000000fed90000 flags: 0x0
[ 0.053026] DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap 1c0000c40660462 ecap 19e2ff0505e
[ 0.053028] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
[ 0.053031] DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
[ 0.053033] DMAR: RMRR base: 0x00000064ec2000 end: 0x00000064ee1fff
[ 0.053034] DMAR: RMRR base: 0x0000007a000000 end: 0x0000007c7fffff
[ 0.053035] DMAR: ANDD device: 1 name: \_SB.PCI0.I2C0
[ 0.053036] DMAR: ANDD device: 2 name: \_SB.PCI0.I2C1
[ 0.053038] DMAR-IR: IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 1
[ 0.053039] DMAR-IR: HPET id 0 under DRHD base 0xfed91000
[ 0.053040] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[ 0.054847] DMAR-IR: Enabled IRQ remapping in x2apic mode
[ 0.054849] x2apic enabled
[ 0.054903] APIC: Switched APIC routing to: cluster x2apic
[ 0.058722] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x29ccd767b87, max_idle_ns: 440795223720 ns
[ 0.058726] Calibrating delay loop (skipped), value calculated using timer frequency.. 5799.77 BogoMIPS (lpj=11599544)
[ 0.058755] CPU0: Thermal monitoring enabled (TM1)
[ 0.058792] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
[ 0.058794] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[ 0.058797] process: using mwait in idle threads
[ 0.058800] Spectre V2 : User space: Vulnerable
[ 0.058801] Speculative Store Bypass: Vulnerable
[ 0.058803] SRBDS: Vulnerable
[ 0.058808] GDS: Vulnerable
[ 0.058812] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[ 0.058813] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[ 0.058814] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[ 0.058814] x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
[ 0.058815] x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
[ 0.058816] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
[ 0.058817] x86/fpu: xstate_offset[3]: 832, xstate_sizes[3]: 64
[ 0.058818] x86/fpu: xstate_offset[4]: 896, xstate_sizes[4]: 64
[ 0.058819] x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format.
[ 0.062725] Freeing SMP alternatives memory: 36K
[ 0.062725] pid_max: default: 32768 minimum: 301
[ 0.062725] LSM: initializing lsm=capability,landlock,apparmor,bpf,ima,evm
[ 0.062725] landlock: Up and running.
[ 0.062725] AppArmor: AppArmor initialized
[ 0.062725] LSM support for eBPF active
[ 0.062725] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[ 0.062725] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[ 0.062725] smpboot: CPU0: Intel(R) Core(TM) i7-7500U CPU @ 2.70GHz (family: 0x6, model: 0x8e, stepping: 0x9)
[ 0.062725] calling init_hw_perf_events+0x0/0x6e0 @ 1
[ 0.062725] Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
[ 0.062725] ... version: 4
[ 0.062725] ... bit width: 48
[ 0.062725] ... generic registers: 4
[ 0.062725] ... value mask: 0000ffffffffffff
[ 0.062725] ... max period: 00007fffffffffff
[ 0.062725] ... fixed-purpose events: 3
[ 0.062725] ... event mask: 000000070000000f
[ 0.062725] initcall init_hw_perf_events+0x0/0x6e0 returned 0 after 0 usecs
[ 0.062725] calling do_init_real_mode+0x0/0x20 @ 1
[ 0.062725] initcall do_init_real_mode+0x0/0x20 returned 0 after 0 usecs
[ 0.062725] calling init_sigframe_size+0x0/0x40 @ 1
[ 0.062725] signal: max sigframe size: 1616
[ 0.062725] initcall init_sigframe_size+0x0/0x40 returned 0 after 0 usecs
[ 0.062725] calling trace_init_perf_perm_irq_work_exit+0x0/0x20 @ 1
[ 0.062725] initcall trace_init_perf_perm_irq_work_exit+0x0/0x20 returned 0 after 0 usecs
[ 0.062725] calling cache_ap_register+0x0/0x60 @ 1
[ 0.062725] initcall cache_ap_register+0x0/0x60 returned 0 after 0 usecs
[ 0.062725] calling bp_init_aperfmperf+0x0/0x310 @ 1
[ 0.062725] Estimated ratio of average max frequency by base frequency (times 1024): 1235
[ 0.062725] initcall bp_init_aperfmperf+0x0/0x310 returned 0 after 0 usecs
[ 0.062725] calling save_builtin_microcode+0x0/0xf0 @ 1
[ 0.062725] initcall save_builtin_microcode+0x0/0xf0 returned 0 after 0 usecs
[ 0.062725] calling save_microcode_in_initrd+0x0/0x100 @ 1
[ 0.062725] initcall save_microcode_in_initrd+0x0/0x100 returned 0 after 0 usecs
[ 0.062725] calling register_nmi_cpu_backtrace_handler+0x0/0x20 @ 1
[ 0.062725] initcall register_nmi_cpu_backtrace_handler+0x0/0x20 returned 0 after 0 usecs
[ 0.062725] calling kvm_setup_vsyscall_timeinfo+0x0/0x180 @ 1
[ 0.062725] initcall kvm_setup_vsyscall_timeinfo+0x0/0x180 returned 0 after 0 usecs
[ 0.062725] calling spawn_ksoftirqd+0x0/0x40 @ 1
[ 0.062725] initcall spawn_ksoftirqd+0x0/0x40 returned 0 after 0 usecs
[ 0.062725] calling init_signal_sysctls+0x0/0x30 @ 1
[ 0.062725] initcall init_signal_sysctls+0x0/0x30 returned 0 after 0 usecs
[ 0.062725] calling init_umh_sysctls+0x0/0x30 @ 1
[ 0.062725] initcall init_umh_sysctls+0x0/0x30 returned 0 after 0 usecs
[ 0.062725] calling migration_init+0x0/0x50 @ 1
[ 0.062725] initcall migration_init+0x0/0x50 returned 0 after 0 usecs
[ 0.062725] calling srcu_bootup_announce+0x0/0x80 @ 1
[ 0.062725] rcu: Hierarchical SRCU implementation.
[ 0.062725] rcu: Max phase no-delay instances is 1000.
[ 0.062725] initcall srcu_bootup_announce+0x0/0x80 returned 0 after 0 usecs
[ 0.062725] calling rcu_spawn_gp_kthread+0x0/0x230 @ 1
[ 0.062725] initcall rcu_spawn_gp_kthread+0x0/0x230 returned 0 after 0 usecs
[ 0.062725] calling check_cpu_stall_init+0x0/0x20 @ 1
[ 0.062725] initcall check_cpu_stall_init+0x0/0x20 returned 0 after 0 usecs
[ 0.062725] calling rcu_sysrq_init+0x0/0x30 @ 1
[ 0.062725] initcall rcu_sysrq_init+0x0/0x30 returned 0 after 0 usecs
[ 0.062725] calling trace_init_flags_sys_enter+0x0/0x20 @ 1
[ 0.062725] initcall trace_init_flags_sys_enter+0x0/0x20 returned 0 after 0 usecs
[ 0.062725] calling trace_init_flags_sys_exit+0x0/0x20 @ 1
[ 0.062725] initcall trace_init_flags_sys_exit+0x0/0x20 returned 0 after 0 usecs
[ 0.062725] calling cpu_stop_init+0x0/0xa0 @ 1
[ 0.062725] initcall cpu_stop_init+0x0/0xa0 returned 0 after 0 usecs
[ 0.062725] calling init_kprobes+0x0/0x1b0 @ 1
[ 0.062725] initcall init_kprobes+0x0/0x1b0 returned 0 after 0 usecs
[ 0.062725] calling init_trace_printk+0x0/0x10 @ 1
[ 0.062725] initcall init_trace_printk+0x0/0x10 returned 0 after 0 usecs
[ 0.062725] calling event_trace_enable_again+0x0/0x50 @ 1
[ 0.062725] initcall event_trace_enable_again+0x0/0x50 returned 0 after 0 usecs
[ 0.062725] calling irq_work_init_threads+0x0/0x10 @ 1
[ 0.062725] initcall irq_work_init_threads+0x0/0x10 returned 0 after 0 usecs
[ 0.062725] calling static_call_init+0x0/0xa0 @ 1
[ 0.062725] initcall static_call_init+0x0/0xa0 returned 0 after 0 usecs
[ 0.062725] calling jump_label_init_module+0x0/0x20 @ 1
[ 0.062725] initcall jump_label_init_module+0x0/0x20 returned 0 after 0 usecs
[ 0.062725] calling init_zero_pfn+0x0/0x40 @ 1
[ 0.062725] initcall init_zero_pfn+0x0/0x40 returned 0 after 0 usecs
[ 0.062725] calling init_fs_inode_sysctls+0x0/0x30 @ 1
[ 0.062725] initcall init_fs_inode_sysctls+0x0/0x30 returned 0 after 0 usecs
[ 0.062725] calling init_fs_locks_sysctls+0x0/0x30 @ 1
[ 0.062725] initcall init_fs_locks_sysctls+0x0/0x30 returned 0 after 0 usecs
[ 0.062725] calling init_fs_sysctls+0x0/0x30 @ 1
[ 0.062725] initcall init_fs_sysctls+0x0/0x30 returned 0 after 0 usecs
[ 0.062725] calling init_security_keys_sysctls+0x0/0x30 @ 1
[ 0.062725] initcall init_security_keys_sysctls+0x0/0x30 returned 0 after 0 usecs
[ 0.062725] calling dynamic_debug_init+0x0/0x2f0 @ 1
[ 0.062725] initcall dynamic_debug_init+0x0/0x2f0 returned 0 after 0 usecs
[ 0.062725] calling unpopulated_init+0x0/0x50 @ 1
[ 0.062725] initcall unpopulated_init+0x0/0x50 returned -19 after 0 usecs
[ 0.062725] calling efi_memreserve_root_init+0x0/0x50 @ 1
[ 0.062725] initcall efi_memreserve_root_init+0x0/0x50 returned 0 after 0 usecs
[ 0.062725] calling efi_earlycon_remap_fb+0x0/0x70 @ 1
[ 0.062725] initcall efi_earlycon_remap_fb+0x0/0x70 returned 0 after 0 usecs
[ 0.062725] calling idle_inject_init+0x0/0x20 @ 1
[ 0.062725] initcall idle_inject_init+0x0/0x20 returned 0 after 0 usecs
[ 0.062725] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[ 0.062725] smp: Bringing up secondary CPUs ...
[ 0.062725] smpboot: x86: Booting SMP configuration:
[ 0.062725] .... node #0, CPUs: #1 #2 #3
[ 0.062725] smp: Brought up 1 node, 4 CPUs
[ 0.062725] smpboot: Total of 4 processors activated (23199.08 BogoMIPS)
[ 0.082748] node 0 deferred pages initialised in 20ms
[ 0.083679] devtmpfs: initialized
[ 0.083679] x86/mm: Memory block size: 128MB
[ 0.083781] calling bpf_jit_charge_init+0x0/0x50 @ 1
[ 0.083786] initcall bpf_jit_charge_init+0x0/0x50 returned 0 after 0 usecs
[ 0.083788] calling ipc_ns_init+0x0/0x50 @ 1
[ 0.083792] initcall ipc_ns_init+0x0/0x50 returned 0 after 0 usecs
[ 0.083794] calling init_mmap_min_addr+0x0/0x30 @ 1
[ 0.083797] initcall init_mmap_min_addr+0x0/0x30 returned 0 after 0 usecs
[ 0.083799] calling pci_realloc_setup_params+0x0/0x50 @ 1
[ 0.083801] initcall pci_realloc_setup_params+0x0/0x50 returned 0 after 0 usecs
[ 0.083803] calling inet_frag_wq_init+0x0/0x50 @ 1
[ 0.083811] initcall inet_frag_wq_init+0x0/0x50 returned 0 after 0 usecs
[ 0.083811] calling xen_pvh_gnttab_setup+0x0/0x40 @ 1
[ 0.083811] initcall xen_pvh_gnttab_setup+0x0/0x40 returned -19 after 0 usecs
[ 0.083811] calling e820__register_nvs_regions+0x0/0x60 @ 1
[ 0.083811] ACPI: PM: Registering ACPI NVS region [mem 0x556ab000-0x556abfff] (4096 bytes)
[ 0.083811] ACPI: PM: Registering ACPI NVS region [mem 0x651c4000-0x6f871fff] (174776320 bytes)
[ 0.087887] initcall e820__register_nvs_regions+0x0/0x60 returned 0 after 4000 usecs
[ 0.087893] calling cpufreq_register_tsc_scaling+0x0/0x40 @ 1
[ 0.087894] initcall cpufreq_register_tsc_scaling+0x0/0x40 returned 0 after 0 usecs
[ 0.087896] calling reboot_init+0x0/0x50 @ 1
[ 0.087902] initcall reboot_init+0x0/0x50 returned 0 after 0 usecs
[ 0.087904] calling init_lapic_sysfs+0x0/0x30 @ 1
[ 0.087906] initcall init_lapic_sysfs+0x0/0x30 returned 0 after 0 usecs
[ 0.087907] calling alloc_frozen_cpus+0x0/0x30 @ 1
[ 0.087914] initcall alloc_frozen_cpus+0x0/0x30 returned 0 after 0 usecs
[ 0.087916] calling cpu_hotplug_pm_sync_init+0x0/0x20 @ 1
[ 0.087919] initcall cpu_hotplug_pm_sync_init+0x0/0x20 returned 0 after 0 usecs
[ 0.087922] calling wq_sysfs_init+0x0/0x20 @ 1
[ 0.087936] initcall wq_sysfs_init+0x0/0x20 returned 0 after 0 usecs
[ 0.087937] calling ksysfs_init+0x0/0xa0 @ 1
[ 0.087944] initcall ksysfs_init+0x0/0xa0 returned 0 after 0 usecs
[ 0.087945] calling schedutil_gov_init+0x0/0x20 @ 1
[ 0.087947] initcall schedutil_gov_init+0x0/0x20 returned 0 after 0 usecs
[ 0.087948] calling pm_init+0x0/0x80 @ 1
[ 0.087960] initcall pm_init+0x0/0x80 returned 0 after 0 usecs
[ 0.087962] calling pm_disk_init+0x0/0x20 @ 1
[ 0.087965] initcall pm_disk_init+0x0/0x20 returned 0 after 0 usecs
[ 0.087967] calling swsusp_header_init+0x0/0x50 @ 1
[ 0.087969] initcall swsusp_header_init+0x0/0x50 returned 0 after 0 usecs
[ 0.087971] calling rcu_set_runtime_mode+0x0/0x20 @ 1
[ 0.087973] initcall rcu_set_runtime_mode+0x0/0x20 returned 0 after 0 usecs
[ 0.087975] calling init_jiffies_clocksource+0x0/0x20 @ 1
[ 0.087977] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[ 0.087980] initcall init_jiffies_clocksource+0x0/0x20 returned 0 after 0 usecs
[ 0.087982] calling futex_init+0x0/0xe0 @ 1
[ 0.087988] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[ 0.087992] initcall futex_init+0x0/0xe0 returned 0 after 0 usecs
[ 0.087994] calling cgroup_wq_init+0x0/0x30 @ 1
[ 0.087998] initcall cgroup_wq_init+0x0/0x30 returned 0 after 0 usecs
[ 0.088000] calling cgroup1_wq_init+0x0/0x30 @ 1
[ 0.088003] initcall cgroup1_wq_init+0x0/0x30 returned 0 after 0 usecs
[ 0.088006] calling ftrace_mod_cmd_init+0x0/0x10 @ 1
[ 0.088008] initcall ftrace_mod_cmd_init+0x0/0x10 returned 0 after 0 usecs
[ 0.088010] calling init_graph_trace+0x0/0x70 @ 1
[ 0.088015] initcall init_graph_trace+0x0/0x70 returned 0 after 0 usecs
[ 0.088016] calling trace_events_eprobe_init_early+0x0/0x30 @ 1
[ 0.088018] initcall trace_events_eprobe_init_early+0x0/0x30 returned 0 after 0 usecs
[ 0.088020] calling trace_events_synth_init_early+0x0/0x30 @ 1
[ 0.088022] initcall trace_events_synth_init_early+0x0/0x30 returned 0 after 0 usecs
[ 0.088024] calling init_kprobe_trace_early+0x0/0x30 @ 1
[ 0.088025] initcall init_kprobe_trace_early+0x0/0x30 returned 0 after 0 usecs
[ 0.088027] calling init_fprobe_trace_early+0x0/0x30 @ 1
[ 0.088029] initcall init_fprobe_trace_early+0x0/0x30 returned 0 after 0 usecs
[ 0.088030] calling bpf_offload_init+0x0/0x40 @ 1
[ 0.088033] initcall bpf_offload_init+0x0/0x40 returned 0 after 0 usecs
[ 0.088034] calling memory_failure_init+0x0/0xd0 @ 1
[ 0.088039] initcall memory_failure_init+0x0/0xd0 returned 0 after 0 usecs
[ 0.088041] calling fsnotify_init+0x0/0x50 @ 1
[ 0.088052] initcall fsnotify_init+0x0/0x50 returned 0 after 0 usecs
[ 0.088054] calling filelock_init+0x0/0xd0 @ 1
[ 0.088061] initcall filelock_init+0x0/0xd0 returned 0 after 0 usecs
[ 0.088063] calling init_script_binfmt+0x0/0x20 @ 1
[ 0.088065] initcall init_script_binfmt+0x0/0x20 returned 0 after 0 usecs
[ 0.088067] calling init_elf_binfmt+0x0/0x20 @ 1
[ 0.088068] initcall init_elf_binfmt+0x0/0x20 returned 0 after 0 usecs
[ 0.088070] calling debugfs_init+0x0/0x80 @ 1
[ 0.088076] initcall debugfs_init+0x0/0x80 returned 0 after 0 usecs
[ 0.088078] calling tracefs_init+0x0/0x70 @ 1
[ 0.088083] initcall tracefs_init+0x0/0x70 returned 0 after 0 usecs
[ 0.088085] calling securityfs_init+0x0/0x80 @ 1
[ 0.088102] initcall securityfs_init+0x0/0x80 returned 0 after 0 usecs
[ 0.088104] calling pinctrl_init+0x0/0xc0 @ 1
[ 0.088106] pinctrl core: initialized pinctrl subsystem
[ 0.088114] initcall pinctrl_init+0x0/0xc0 returned 0 after 0 usecs
[ 0.088115] calling gpiolib_dev_init+0x0/0x140 @ 1
[ 0.088126] initcall gpiolib_dev_init+0x0/0x140 returned 0 after 0 usecs
[ 0.088127] calling virtio_init+0x0/0x30 @ 1
[ 0.088132] initcall virtio_init+0x0/0x30 returned 0 after 0 usecs
[ 0.088134] calling regulator_init+0x0/0x110 @ 1
[ 0.088153] initcall regulator_init+0x0/0x110 returned 0 after 0 usecs
[ 0.088156] calling iommu_init+0x0/0x30 @ 1
[ 0.088159] initcall iommu_init+0x0/0x30 returned 0 after 0 usecs
[ 0.088162] calling component_debug_init+0x0/0x30 @ 1
[ 0.088166] initcall component_debug_init+0x0/0x30 returned 0 after 0 usecs
[ 0.088170] calling opp_debug_init+0x0/0x30 @ 1
[ 0.088172] initcall opp_debug_init+0x0/0x30 returned 0 after 0 usecs
[ 0.088175] calling cpufreq_core_init+0x0/0x100 @ 1
[ 0.088178] initcall cpufreq_core_init+0x0/0x100 returned 0 after 0 usecs
[ 0.088180] calling cpufreq_gov_performance_init+0x0/0x20 @ 1
[ 0.088183] initcall cpufreq_gov_performance_init+0x0/0x20 returned 0 after 0 usecs
[ 0.088185] calling cpuidle_init+0x0/0x20 @ 1
[ 0.088189] initcall cpuidle_init+0x0/0x20 returned 0 after 0 usecs
[ 0.088192] calling unaccepted_memory_init_kdump+0x0/0x20 @ 1
[ 0.088195] initcall unaccepted_memory_init_kdump+0x0/0x20 returned 0 after 0 usecs
[ 0.088197] calling sock_init+0x0/0xa0 @ 1
[ 0.088151] probe of reg-dummy returned 0 after 0 usecs
[ 0.088576] initcall sock_init+0x0/0xa0 returned 0 after 0 usecs
[ 0.088583] calling net_inuse_init+0x0/0x30 @ 1
[ 0.088588] initcall net_inuse_init+0x0/0x30 returned 0 after 0 usecs
[ 0.088590] calling sock_struct_check+0x0/0x10 @ 1
[ 0.088592] initcall sock_struct_check+0x0/0x10 returned 0 after 0 usecs
[ 0.088594] calling net_defaults_init+0x0/0x50 @ 1
[ 0.088596] initcall net_defaults_init+0x0/0x50 returned 0 after 0 usecs
[ 0.088598] calling init_default_flow_dissectors+0x0/0x60 @ 1
[ 0.088600] initcall init_default_flow_dissectors+0x0/0x60 returned 0 after 0 usecs
[ 0.088602] calling netlink_proto_init+0x0/0x230 @ 1
[ 0.088614] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[ 0.088625] initcall netlink_proto_init+0x0/0x230 returned 0 after 0 usecs
[ 0.088627] calling genl_init+0x0/0x50 @ 1
[ 0.088632] initcall genl_init+0x0/0x50 returned 0 after 0 usecs
[ 0.088634] calling bsp_pm_check_init+0x0/0x20 @ 1
[ 0.088636] initcall bsp_pm_check_init+0x0/0x20 returned 0 after 0 usecs
[ 0.088638] calling __gnttab_init+0x0/0x30 @ 1
[ 0.088640] initcall __gnttab_init+0x0/0x30 returned -19 after 0 usecs
[ 0.088665] calling irq_sysfs_init+0x0/0xe0 @ 1
[ 0.088717] initcall irq_sysfs_init+0x0/0xe0 returned 0 after 0 usecs
[ 0.088719] calling dma_atomic_pool_init+0x0/0x150 @ 1
[ 0.088831] DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations
[ 0.088949] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 0.089064] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 0.089075] initcall dma_atomic_pool_init+0x0/0x150 returned 0 after 0 usecs
[ 0.089081] calling audit_init+0x0/0x180 @ 1
[ 0.089090] audit: initializing netlink subsys (disabled)
[ 0.089112] initcall audit_init+0x0/0x180 returned 0 after 0 usecs
[ 0.089112] audit: type=2000 audit(1717056324.028:1): state=initialized audit_enabled=0 res=1
[ 0.089112] calling release_early_probes+0x0/0x50 @ 1
[ 0.089112] initcall release_early_probes+0x0/0x50 returned 0 after 0 usecs
[ 0.089112] calling bdi_class_init+0x0/0x40 @ 1
[ 0.089112] initcall bdi_class_init+0x0/0x40 returned 0 after 0 usecs
[ 0.089112] calling mm_sysfs_init+0x0/0x30 @ 1
[ 0.089112] initcall mm_sysfs_init+0x0/0x30 returned 0 after 0 usecs
[ 0.089112] calling init_per_zone_wmark_min+0x0/0x30 @ 1
[ 0.089112] initcall init_per_zone_wmark_min+0x0/0x30 returned 0 after 0 usecs
[ 0.089112] calling mpi_init+0x0/0x80 @ 1
[ 0.089112] initcall mpi_init+0x0/0x80 returned 0 after 0 usecs
[ 0.089112] calling gpiolib_sysfs_init+0x0/0x30 @ 1
[ 0.089112] initcall gpiolib_sysfs_init+0x0/0x30 returned 0 after 0 usecs
[ 0.089112] calling acpi_gpio_setup_params+0x0/0xe0 @ 1
[ 0.089112] initcall acpi_gpio_setup_params+0x0/0xe0 returned 0 after 0 usecs
[ 0.089112] calling pcibus_class_init+0x0/0x20 @ 1
[ 0.089112] initcall pcibus_class_init+0x0/0x20 returned 0 after 0 usecs
[ 0.089112] calling pci_driver_init+0x0/0x30 @ 1
[ 0.089112] initcall pci_driver_init+0x0/0x30 returned 0 after 0 usecs
[ 0.089112] calling backlight_class_init+0x0/0x90 @ 1
[ 0.089112] initcall backlight_class_init+0x0/0x90 returned 0 after 0 usecs
[ 0.089112] calling xenbus_init+0x0/0x4b0 @ 1
[ 0.089112] initcall xenbus_init+0x0/0x4b0 returned -19 after 0 usecs
[ 0.089112] calling tty_class_init+0x0/0x20 @ 1
[ 0.089112] initcall tty_class_init+0x0/0x20 returned 0 after 0 usecs
[ 0.089112] calling vtconsole_class_init+0x0/0xc0 @ 1
[ 0.089112] initcall vtconsole_class_init+0x0/0xc0 returned 0 after 0 usecs
[ 0.089112] calling serdev_init+0x0/0x30 @ 1
[ 0.089112] initcall serdev_init+0x0/0x30 returned 0 after 0 usecs
[ 0.089112] calling iommu_dev_init+0x0/0x20 @ 1
[ 0.089112] initcall iommu_dev_init+0x0/0x20 returned 0 after 0 usecs
[ 0.089112] calling mipi_dsi_bus_init+0x0/0x20 @ 1
[ 0.089112] initcall mipi_dsi_bus_init+0x0/0x20 returned 0 after 0 usecs
[ 0.089112] calling devlink_class_init+0x0/0x50 @ 1
[ 0.089112] initcall devlink_class_init+0x0/0x50 returned 0 after 0 usecs
[ 0.089112] calling software_node_init+0x0/0x30 @ 1
[ 0.089112] initcall software_node_init+0x0/0x30 returned 0 after 0 usecs
[ 0.089112] calling wakeup_sources_debugfs_init+0x0/0x30 @ 1
[ 0.089112] initcall wakeup_sources_debugfs_init+0x0/0x30 returned 0 after 0 usecs
[ 0.089112] calling wakeup_sources_sysfs_init+0x0/0x30 @ 1
[ 0.089112] initcall wakeup_sources_sysfs_init+0x0/0x30 returned 0 after 0 usecs
[ 0.089112] calling regmap_initcall+0x0/0x20 @ 1
[ 0.089112] initcall regmap_initcall+0x0/0x20 returned 0 after 0 usecs
[ 0.089112] calling syscon_init+0x0/0x20 @ 1
[ 0.089112] initcall syscon_init+0x0/0x20 returned 0 after 0 usecs
[ 0.089112] calling spi_init+0x0/0xb0 @ 1
[ 0.089112] initcall spi_init+0x0/0xb0 returned 0 after 0 usecs
[ 0.089112] calling i2c_init+0x0/0xf0 @ 1
[ 0.089112] initcall i2c_init+0x0/0xf0 returned 0 after 0 usecs
[ 0.089112] calling thermal_init+0x0/0x180 @ 1
[ 0.089112] thermal_sys: Registered thermal governor 'fair_share'
[ 0.089112] thermal_sys: Registered thermal governor 'bang_bang'
[ 0.089112] thermal_sys: Registered thermal governor 'step_wise'
[ 0.089112] thermal_sys: Registered thermal governor 'user_space'
[ 0.089112] thermal_sys: Registered thermal governor 'power_allocator'
[ 0.089112] initcall thermal_init+0x0/0x180 returned 0 after 0 usecs
[ 0.089112] calling init_ladder+0x0/0x30 @ 1
[ 0.089112] cpuidle: using governor ladder
[ 0.089112] initcall init_ladder+0x0/0x30 returned 0 after 0 usecs
[ 0.089112] calling init_menu+0x0/0x20 @ 1
[ 0.089112] cpuidle: using governor menu
[ 0.089112] initcall init_menu+0x0/0x20 returned 0 after 0 usecs
[ 0.089112] calling init_haltpoll+0x0/0x30 @ 1
[ 0.089112] initcall init_haltpoll+0x0/0x30 returned 0 after 0 usecs
[ 0.089112] calling pcc_init+0x0/0xa0 @ 1
[ 0.089112] initcall pcc_init+0x0/0xa0 returned -19 after 0 usecs
[ 0.089112] calling amd_postcore_init+0x0/0x130 @ 1
[ 0.089112] initcall amd_postcore_init+0x0/0x130 returned 0 after 0 usecs
[ 0.089112] calling kobject_uevent_init+0x0/0x10 @ 1
[ 0.089112] initcall kobject_uevent_init+0x0/0x10 returned 0 after 0 usecs
[ 0.089112] calling bts_init+0x0/0xd0 @ 1
[ 0.089112] initcall bts_init+0x0/0xd0 returned 0 after 0 usecs
[ 0.089112] calling pt_init+0x0/0x3d0 @ 1
[ 0.089112] initcall pt_init+0x0/0x3d0 returned 0 after 0 usecs
[ 0.089112] calling boot_params_ksysfs_init+0x0/0x330 @ 1
[ 0.089112] initcall boot_params_ksysfs_init+0x0/0x330 returned 0 after 0 usecs
[ 0.089112] calling sbf_init+0x0/0x100 @ 1
[ 0.089112] Simple Boot Flag at 0x47 set to 0x80
[ 0.089112] initcall sbf_init+0x0/0x100 returned 0 after 0 usecs
[ 0.089112] calling arch_kdebugfs_init+0x0/0x30 @ 1
[ 0.089112] initcall arch_kdebugfs_init+0x0/0x30 returned 0 after 0 usecs
[ 0.089112] calling xfd_update_static_branch+0x0/0x30 @ 1
[ 0.089112] initcall xfd_update_static_branch+0x0/0x30 returned 0 after 0 usecs
[ 0.089112] calling intel_pconfig_init+0x0/0x110 @ 1
[ 0.089112] initcall intel_pconfig_init+0x0/0x110 returned 0 after 0 usecs
[ 0.089112] calling mtrr_if_init+0x0/0x70 @ 1
[ 0.089112] initcall mtrr_if_init+0x0/0x70 returned 0 after 0 usecs
[ 0.089112] calling activate_jump_labels+0x0/0x40 @ 1
[ 0.089112] initcall activate_jump_labels+0x0/0x40 returned 0 after 0 usecs
[ 0.089112] calling init_s4_sigcheck+0x0/0x30 @ 1
[ 0.089112] initcall init_s4_sigcheck+0x0/0x30 returned 0 after 0 usecs
[ 0.089112] calling ffh_cstate_init+0x0/0x60 @ 1
[ 0.089112] initcall ffh_cstate_init+0x0/0x60 returned 0 after 0 usecs
[ 0.089112] calling kvm_alloc_cpumask+0x0/0xc0 @ 1
[ 0.089112] initcall kvm_alloc_cpumask+0x0/0xc0 returned 0 after 0 usecs
[ 0.089112] calling activate_jump_labels+0x0/0x40 @ 1
[ 0.089112] initcall activate_jump_labels+0x0/0x40 returned 0 after 0 usecs
[ 0.089112] calling report_cpuid_table+0x0/0x90 @ 1
[ 0.089112] initcall report_cpuid_table+0x0/0x90 returned 0 after 0 usecs
[ 0.089112] calling gigantic_pages_init+0x0/0x30 @ 1
[ 0.089112] initcall gigantic_pages_init+0x0/0x30 returned 0 after 0 usecs
[ 0.089112] calling kcmp_cookies_init+0x0/0x50 @ 1
[ 0.089112] initcall kcmp_cookies_init+0x0/0x50 returned 0 after 0 usecs
[ 0.089112] calling cryptomgr_init+0x0/0x20 @ 1
[ 0.089112] initcall cryptomgr_init+0x0/0x20 returned 0 after 0 usecs
[ 0.089112] calling acpi_pci_init+0x0/0x60 @ 1
[ 0.089112] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[ 0.089112] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.089112] initcall acpi_pci_init+0x0/0x60 returned 0 after 0 usecs
[ 0.089112] calling dma_channel_table_init+0x0/0x140 @ 1
[ 0.089112] initcall dma_channel_table_init+0x0/0x140 returned 0 after 0 usecs
[ 0.089112] calling dma_bus_init+0x0/0x110 @ 1
[ 0.089112] initcall dma_bus_init+0x0/0x110 returned 0 after 0 usecs
[ 0.089112] calling register_xen_pci_notifier+0x0/0x40 @ 1
[ 0.089112] initcall register_xen_pci_notifier+0x0/0x40 returned 0 after 0 usecs
[ 0.089112] calling xen_pcpu_init+0x0/0xc0 @ 1
[ 0.089112] initcall xen_pcpu_init+0x0/0xc0 returned -19 after 0 usecs
[ 0.089112] calling serial_base_init+0x0/0x70 @ 1
[ 0.089112] initcall serial_base_init+0x0/0x70 returned 0 after 0 usecs
[ 0.089112] calling iommu_dma_init+0x0/0x30 @ 1
[ 0.089112] initcall iommu_dma_init+0x0/0x30 returned 0 after 0 usecs
[ 0.089112] calling dmi_id_init+0x0/0x3f0 @ 1
[ 0.089112] initcall dmi_id_init+0x0/0x3f0 returned 0 after 0 usecs
[ 0.089112] calling pci_arch_init+0x0/0x90 @ 1
[ 0.089112] PCI: ECAM [mem 0xe0000000-0xefffffff] (base 0xe0000000) for domain 0000 [bus 00-ff]
[ 0.089112] PCI: Using configuration type 1 for base access
[ 0.089112] initcall pci_arch_init+0x0/0x90 returned 0 after 0 usecs
[ 0.089112] calling init_vdso_image_64+0x0/0x20 @ 1
[ 0.089112] initcall init_vdso_image_64+0x0/0x20 returned 0 after 0 usecs
[ 0.089112] calling fixup_ht_bug+0x0/0x110 @ 1
[ 0.089112] initcall fixup_ht_bug+0x0/0x110 returned 0 after 0 usecs
[ 0.089112] calling mtrr_init_finalize+0x0/0x40 @ 1
[ 0.089112] initcall mtrr_init_finalize+0x0/0x40 returned 0 after 0 usecs
[ 0.089112] calling blake2s_mod_init+0x0/0x80 @ 1
[ 0.089112] initcall blake2s_mod_init+0x0/0x80 returned 0 after 0 usecs
[ 0.089112] calling uid_cache_init+0x0/0xc0 @ 1
[ 0.089112] initcall uid_cache_init+0x0/0xc0 returned 0 after 0 usecs
[ 0.089112] calling param_sysfs_init+0x0/0x50 @ 1
[ 0.089112] initcall param_sysfs_init+0x0/0x50 returned 0 after 0 usecs
[ 0.089112] calling user_namespace_sysctl_init+0x0/0xe0 @ 1
[ 0.089112] initcall user_namespace_sysctl_init+0x0/0xe0 returned 0 after 0 usecs
[ 0.089112] calling proc_schedstat_init+0x0/0x30 @ 1
[ 0.089112] initcall proc_schedstat_init+0x0/0x30 returned 0 after 0 usecs
[ 0.089112] calling pm_sysrq_init+0x0/0x20 @ 1
[ 0.089112] initcall pm_sysrq_init+0x0/0x20 returned 0 after 0 usecs
[ 0.089112] calling create_proc_profile+0x0/0xd0 @ 1
[ 0.089112] initcall create_proc_profile+0x0/0xd0 returned 0 after 0 usecs
[ 0.089112] calling crash_save_vmcoreinfo_init+0x0/0x710 @ 1
[ 0.089112] initcall crash_save_vmcoreinfo_init+0x0/0x710 returned 0 after 0 usecs
[ 0.089112] calling crash_notes_memory_init+0x0/0x60 @ 1
[ 0.089112] initcall crash_notes_memory_init+0x0/0x60 returned 0 after 0 usecs
[ 0.089112] calling crash_hotplug_init+0x0/0x40 @ 1
[ 0.089112] initcall crash_hotplug_init+0x0/0x40 returned 66 after 0 usecs
[ 0.089112] calling cgroup_sysfs_init+0x0/0x20 @ 1
[ 0.089112] initcall cgroup_sysfs_init+0x0/0x20 returned 0 after 0 usecs
[ 0.089112] calling user_namespaces_init+0x0/0x40 @ 1
[ 0.089112] initcall user_namespaces_init+0x0/0x40 returned 0 after 0 usecs
[ 0.089112] calling init_optprobes+0x0/0x30 @ 1
[ 0.089112] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[ 0.089112] initcall init_optprobes+0x0/0x30 returned 0 after 0 usecs
[ 0.089112] calling hung_task_init+0x0/0x80 @ 1
[ 0.089112] initcall hung_task_init+0x0/0x80 returned 0 after 0 usecs
[ 0.089112] calling ftrace_check_for_weak_functions+0x0/0x70 @ 1
[ 0.089112] initcall ftrace_check_for_weak_functions+0x0/0x70 returned 0 after 0 usecs
[ 0.089112] calling trace_eval_init+0x0/0xb0 @ 1
[ 0.089112] initcall trace_eval_init+0x0/0xb0 returned 0 after 0 usecs
[ 0.089112] calling send_signal_irq_work_init+0x0/0x70 @ 1
[ 0.089112] initcall send_signal_irq_work_init+0x0/0x70 returned 0 after 0 usecs
[ 0.089112] calling dev_map_init+0x0/0x60 @ 1
[ 0.089112] initcall dev_map_init+0x0/0x60 returned 0 after 0 usecs
[ 0.089112] calling cpu_map_init+0x0/0x50 @ 1
[ 0.089112] initcall cpu_map_init+0x0/0x50 returned 0 after 0 usecs
[ 0.089112] calling netns_bpf_init+0x0/0x20 @ 1
[ 0.089112] initcall netns_bpf_init+0x0/0x20 returned 0 after 0 usecs
[ 0.089112] calling btf_vmlinux_init+0x0/0x60 @ 1
[ 0.089112] initcall btf_vmlinux_init+0x0/0x60 returned 0 after 0 usecs
[ 0.089112] calling oom_init+0x0/0x60 @ 1
[ 0.089112] initcall oom_init+0x0/0x60 returned 0 after 0 usecs
[ 0.089112] calling default_bdi_init+0x0/0x30 @ 1
[ 0.089112] initcall default_bdi_init+0x0/0x30 returned 0 after 0 usecs
[ 0.089112] calling cgwb_init+0x0/0x30 @ 1
[ 0.089112] initcall cgwb_init+0x0/0x30 returned 0 after 0 usecs
[ 0.089112] calling percpu_enable_async+0x0/0x20 @ 1
[ 0.089112] initcall percpu_enable_async+0x0/0x20 returned 0 after 0 usecs
[ 0.089112] calling kcompactd_init+0x0/0xb0 @ 1
[ 0.089112] initcall kcompactd_init+0x0/0xb0 returned 0 after 0 usecs
[ 0.089112] calling init_user_reserve+0x0/0x40 @ 1
[ 0.089112] initcall init_user_reserve+0x0/0x40 returned 0 after 0 usecs
[ 0.089112] calling init_admin_reserve+0x0/0x40 @ 1
[ 0.089112] initcall init_admin_reserve+0x0/0x40 returned 0 after 0 usecs
[ 0.089112] calling init_reserve_notifier+0x0/0x30 @ 1
[ 0.089112] initcall init_reserve_notifier+0x0/0x30 returned 0 after 0 usecs
[ 0.089112] calling swap_init_sysfs+0x0/0x70 @ 1
[ 0.089112] initcall swap_init_sysfs+0x0/0x70 returned 0 after 0 usecs
[ 0.089112] calling swapfile_init+0x0/0xf0 @ 1
[ 0.089112] initcall swapfile_init+0x0/0xf0 returned 0 after 0 usecs
[ 0.089112] calling hugetlb_init+0x0/0x650 @ 1
[ 0.089112] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[ 0.089112] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[ 0.089112] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.089112] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[ 0.089112] initcall hugetlb_init+0x0/0x650 returned 0 after 0 usecs
[ 0.089112] calling ksm_init+0x0/0x1b0 @ 1
[ 0.089112] initcall ksm_init+0x0/0x1b0 returned 0 after 0 usecs
[ 0.089112] calling memory_tier_init+0x0/0x140 @ 1
[ 0.089112] Demotion targets for Node 0: null
[ 0.089112] initcall memory_tier_init+0x0/0x140 returned 0 after 0 usecs
[ 0.089112] calling numa_init_sysfs+0x0/0x70 @ 1
[ 0.089112] initcall numa_init_sysfs+0x0/0x70 returned 0 after 0 usecs
[ 0.089112] calling hugepage_init+0x0/0x350 @ 1
[ 0.089112] initcall hugepage_init+0x0/0x350 returned 0 after 0 usecs
[ 0.089112] calling mem_cgroup_init+0x0/0x140 @ 1
[ 0.089112] initcall mem_cgroup_init+0x0/0x140 returned 0 after 0 usecs
[ 0.089112] calling mem_cgroup_swap_init+0x0/0x60 @ 1
[ 0.089112] initcall mem_cgroup_swap_init+0x0/0x60 returned 0 after 0 usecs
[ 0.089112] calling dh_init+0x0/0x50 @ 1
[ 0.089112] initcall dh_init+0x0/0x50 returned 0 after 0 usecs
[ 0.089112] calling rsa_init+0x0/0x50 @ 1
[ 0.089112] initcall rsa_init+0x0/0x50 returned 0 after 0 usecs
[ 0.089112] calling hmac_module_init+0x0/0x20 @ 1
[ 0.089112] initcall hmac_module_init+0x0/0x20 returned 0 after 0 usecs
[ 0.089112] calling md5_mod_init+0x0/0x20 @ 1
[ 0.089112] initcall md5_mod_init+0x0/0x20 returned 0 after 0 usecs
[ 0.089112] calling sha1_generic_mod_init+0x0/0x20 @ 1
[ 0.089112] initcall sha1_generic_mod_init+0x0/0x20 returned 0 after 0 usecs
[ 0.089112] calling sha256_generic_mod_init+0x0/0x20 @ 1
[ 0.089112] initcall sha256_generic_mod_init+0x0/0x20 returned 0 after 0 usecs
[ 0.089112] calling crypto_ecb_module_init+0x0/0x20 @ 1
[ 0.089112] initcall crypto_ecb_module_init+0x0/0x20 returned 0 after 0 usecs
[ 0.089112] calling crypto_cbc_module_init+0x0/0x20 @ 1
[ 0.089112] initcall crypto_cbc_module_init+0x0/0x20 returned 0 after 0 usecs
[ 0.089112] calling aes_init+0x0/0x20 @ 1
[ 0.089112] initcall aes_init+0x0/0x20 returned 0 after 0 usecs
[ 0.089112] calling crc32c_mod_init+0x0/0x20 @ 1
[ 0.089112] initcall crc32c_mod_init+0x0/0x20 returned 0 after 0 usecs
[ 0.089112] calling lzo_mod_init+0x0/0x50 @ 1
[ 0.089112] initcall lzo_mod_init+0x0/0x50 returned 0 after 0 usecs
[ 0.089112] calling lzorle_mod_init+0x0/0x50 @ 1
[ 0.089112] initcall lzorle_mod_init+0x0/0x50 returned 0 after 0 usecs
[ 0.089112] calling init_bio+0x0/0xb0 @ 1
[ 0.089112] initcall init_bio+0x0/0xb0 returned 0 after 0 usecs
[ 0.089112] calling blk_ioc_init+0x0/0x30 @ 1
[ 0.089112] initcall blk_ioc_init+0x0/0x30 returned 0 after 0 usecs
[ 0.089112] calling blk_mq_init+0x0/0x120 @ 1
[ 0.089112] initcall blk_mq_init+0x0/0x120 returned 0 after 0 usecs
[ 0.089112] calling genhd_device_init+0x0/0x50 @ 1
[ 0.089112] initcall genhd_device_init+0x0/0x50 returned 0 after 0 usecs
[ 0.089112] calling io_wq_init+0x0/0x40 @ 1
[ 0.089112] initcall io_wq_init+0x0/0x40 returned 0 after 0 usecs
[ 0.089112] calling sg_pool_init+0x0/0xe0 @ 1
[ 0.089112] initcall sg_pool_init+0x0/0xe0 returned 0 after 0 usecs
[ 0.089112] calling irq_poll_setup+0x0/0x80 @ 1
[ 0.089112] initcall irq_poll_setup+0x0/0x80 returned 0 after 0 usecs
[ 0.089112] calling byt_gpio_init+0x0/0x20 @ 1
[ 0.089112] initcall byt_gpio_init+0x0/0x20 returned 0 after 0 usecs
[ 0.089112] calling chv_pinctrl_init+0x0/0x20 @ 1
[ 0.089112] initcall chv_pinctrl_init+0x0/0x20 returned 0 after 0 usecs
[ 0.089112] calling bxt_pinctrl_init+0x0/0x20 @ 1
[ 0.089112] initcall bxt_pinctrl_init+0x0/0x20 returned 0 after 0 usecs
[ 0.089112] calling cdf_pinctrl_init+0x0/0x20 @ 1
[ 0.089112] initcall cdf_pinctrl_init+0x0/0x20 returned 0 after 0 usecs
[ 0.089112] calling dnv_pinctrl_init+0x0/0x20 @ 1
[ 0.089112] initcall dnv_pinctrl_init+0x0/0x20 returned 0 after 0 usecs
[ 0.089112] calling glk_pinctrl_init+0x0/0x20 @ 1
[ 0.089112] initcall glk_pinctrl_init+0x0/0x20 returned 0 after 0 usecs
[ 0.089112] calling spt_pinctrl_init+0x0/0x20 @ 1
[ 0.089112] initcall spt_pinctrl_init+0x0/0x20 returned 0 after 0 usecs
[ 0.089112] calling gpiolib_debugfs_init+0x0/0x30 @ 1
[ 0.089112] initcall gpiolib_debugfs_init+0x0/0x30 returned 0 after 0 usecs
[ 0.089112] calling pwm_init+0x0/0x40 @ 1
[ 0.089112] initcall pwm_init+0x0/0x40 returned 0 after 0 usecs
[ 0.089112] calling pci_slot_init+0x0/0x50 @ 1
[ 0.089112] initcall pci_slot_init+0x0/0x50 returned 0 after 0 usecs
[ 0.089112] calling fbmem_init+0x0/0x80 @ 1
[ 0.089112] initcall fbmem_init+0x0/0x80 returned 0 after 0 usecs
[ 0.089112] calling acpi_init+0x0/0x590 @ 1
[ 0.089112] ACPI: Added _OSI(Module Device)
[ 0.089112] ACPI: Added _OSI(Processor Device)
[ 0.089112] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.089112] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.122726] ACPI: 11 ACPI AML tables successfully acquired and loaded
[ 0.126848] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[ 0.131461] ACPI: Dynamic OEM Table Load:
[ 0.131467] ACPI: SSDT 0xFFFF92D041BF3000 0003FF (v02 PmRef Cpu0Cst 00003001 INTL 20160422)
[ 0.132284] ACPI: Dynamic OEM Table Load:
[ 0.132288] ACPI: SSDT 0xFFFF92D040E16800 0006F6 (v02 PmRef Cpu0Ist 00003000 INTL 20160422)
[ 0.133718] ACPI: Dynamic OEM Table Load:
[ 0.133722] ACPI: SSDT 0xFFFF92D040E11000 00065C (v02 PmRef ApIst 00003000 INTL 20160422)
[ 0.135541] ACPI: Dynamic OEM Table Load:
[ 0.135545] ACPI: SSDT 0xFFFF92D3AF05E600 00018A (v02 PmRef ApCst 00003000 INTL 20160422)
[ 0.137838] ACPI: _OSC evaluated successfully for all CPUs
[ 0.137972] ACPI: EC: EC started
[ 0.137973] ACPI: EC: interrupt blocked
[ 0.143239] ACPI: EC: EC_CMD/EC_SC=0x934, EC_DATA=0x930
[ 0.143241] ACPI: \_SB_.PCI0.LPCB.ECDV: Boot DSDT EC used to handle transactions
[ 0.143243] ACPI: Interpreter enabled
[ 0.143276] ACPI: PM: (supports S0 S3 S4 S5)
[ 0.143277] ACPI: Using IOAPIC for interrupt routing
[ 0.143313] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.143314] PCI: Using E820 reservations for host bridge windows
[ 0.143822] ACPI: Enabled 8 GPEs in block 00 to 7F
[ 0.148495] ACPI: \_SB_.PCI0.RP09.PXSX.WRST: New power resource
[ 0.148745] ACPI: \_SB_.PCI0.RP10.PXSX.WRST: New power resource
[ 0.148995] ACPI: \_SB_.PCI0.RP11.PXSX.WRST: New power resource
[ 0.149243] ACPI: \_SB_.PCI0.RP12.PXSX.WRST: New power resource
[ 0.149491] ACPI: \_SB_.PCI0.RP13.PXSX.WRST: New power resource
[ 0.149738] ACPI: \_SB_.PCI0.RP01.PXSX.WRST: New power resource
[ 0.150728] ACPI: \_SB_.PCI0.RP02.PXSX.WRST: New power resource
[ 0.150728] ACPI: \_SB_.PCI0.RP03.PXSX.WRST: New power resource
[ 0.150859] ACPI: \_SB_.PCI0.RP04.PXSX.WRST: New power resource
[ 0.151111] ACPI: \_SB_.PCI0.RP05.PXSX.WRST: New power resource
[ 0.151360] ACPI: \_SB_.PCI0.RP06.PXSX.WRST: New power resource
[ 0.151614] ACPI: \_SB_.PCI0.RP07.PXSX.WRST: New power resource
[ 0.151864] ACPI: \_SB_.PCI0.RP08.PXSX.WRST: New power resource
[ 0.152117] ACPI: \_SB_.PCI0.RP17.PXSX.WRST: New power resource
[ 0.152367] ACPI: \_SB_.PCI0.RP18.PXSX.WRST: New power resource
[ 0.152614] ACPI: \_SB_.PCI0.RP19.PXSX.WRST: New power resource
[ 0.152865] ACPI: \_SB_.PCI0.RP20.PXSX.WRST: New power resource
[ 0.153890] ACPI: \_SB_.PCI0.RP14.PXSX.WRST: New power resource
[ 0.154137] ACPI: \_SB_.PCI0.RP15.PXSX.WRST: New power resource
[ 0.154386] ACPI: \_SB_.PCI0.RP16.PXSX.WRST: New power resource
[ 0.172514] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
[ 0.172520] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[ 0.172673] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug SHPCHotplug PME]
[ 0.172955] acpi PNP0A08:00: _OSC: OS now controls [PCIeCapability LTR]
[ 0.172956] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[ 0.173664] PCI host bridge to bus 0000:00
[ 0.173666] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 0.173668] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.173670] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000dffff window]
[ 0.173671] pci_bus 0000:00: root bus resource [mem 0x7c800000-0xdfffffff window]
[ 0.173672] pci_bus 0000:00: root bus resource [mem 0xfd000000-0xfe7fffff window]
[ 0.173673] pci_bus 0000:00: root bus resource [bus 00-fe]
[ 0.173688] pci 0000:00:00.0: calling quirk_mmio_always_on+0x0/0x20 @ 1
[ 0.173693] pci 0000:00:00.0: quirk_mmio_always_on+0x0/0x20 took 0 usecs
[ 0.173697] pci 0000:00:00.0: [8086:5904] type 00 class 0x060000 conventional PCI endpoint
[ 0.173715] pci 0000:00:00.0: calling quirk_igfx_skip_te_disable+0x0/0xa0 @ 1
[ 0.173718] pci 0000:00:00.0: quirk_igfx_skip_te_disable+0x0/0xa0 took 0 usecs
[ 0.173762] pci 0000:00:02.0: [8086:5916] type 00 class 0x030000 PCIe Root Complex Integrated Endpoint
[ 0.173769] pci 0000:00:02.0: BAR 0 [mem 0xdb000000-0xdbffffff 64bit]
[ 0.173774] pci 0000:00:02.0: BAR 2 [mem 0x90000000-0x9fffffff 64bit pref]
[ 0.173777] pci 0000:00:02.0: BAR 4 [io 0xf000-0xf03f]
[ 0.173788] pci 0000:00:02.0: calling screen_info_fixup_lfb+0x0/0x170 @ 1
[ 0.173792] pci 0000:00:02.0: screen_info_fixup_lfb+0x0/0x170 took 0 usecs
[ 0.173794] pci 0000:00:02.0: calling quirk_igfx_skip_te_disable+0x0/0xa0 @ 1
[ 0.173796] pci 0000:00:02.0: quirk_igfx_skip_te_disable+0x0/0xa0 took 0 usecs
[ 0.173798] pci 0000:00:02.0: calling pci_fixup_video+0x0/0x120 @ 1
[ 0.173802] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[ 0.173803] pci 0000:00:02.0: pci_fixup_video+0x0/0x120 took 0 usecs
[ 0.173928] pci 0000:00:04.0: [8086:1903] type 00 class 0x118000 conventional PCI endpoint
[ 0.173935] pci 0000:00:04.0: BAR 0 [mem 0xdc320000-0xdc327fff 64bit]
[ 0.173950] pci 0000:00:04.0: calling quirk_igfx_skip_te_disable+0x0/0xa0 @ 1
[ 0.173952] pci 0000:00:04.0: quirk_igfx_skip_te_disable+0x0/0xa0 took 0 usecs
[ 0.174176] pci 0000:00:14.0: [8086:9d2f] type 00 class 0x0c0330 conventional PCI endpoint
[ 0.174190] pci 0000:00:14.0: BAR 0 [mem 0xdc310000-0xdc31ffff 64bit]
[ 0.174224] pci 0000:00:14.0: calling quirk_igfx_skip_te_disable+0x0/0xa0 @ 1
[ 0.174226] pci 0000:00:14.0: quirk_igfx_skip_te_disable+0x0/0xa0 took 0 usecs
[ 0.174250] pci 0000:00:14.0: PME# supported from D3hot D3cold
[ 0.174687] pci 0000:00:14.2: [8086:9d31] type 00 class 0x118000 conventional PCI endpoint
[ 0.174701] pci 0000:00:14.2: BAR 0 [mem 0xdc334000-0xdc334fff 64bit]
[ 0.174733] pci 0000:00:14.2: calling quirk_igfx_skip_te_disable+0x0/0xa0 @ 1
[ 0.174736] pci 0000:00:14.2: quirk_igfx_skip_te_disable+0x0/0xa0 took 0 usecs
[ 0.174852] pci 0000:00:15.0: [8086:9d60] type 00 class 0x118000 conventional PCI endpoint
[ 0.174881] pci 0000:00:15.0: BAR 0 [mem 0xdc333000-0xdc333fff 64bit]
[ 0.174938] pci 0000:00:15.0: calling quirk_igfx_skip_te_disable+0x0/0xa0 @ 1
[ 0.174940] pci 0000:00:15.0: quirk_igfx_skip_te_disable+0x0/0xa0 took 0 usecs
[ 0.175201] pci 0000:00:15.1: [8086:9d61] type 00 class 0x118000 conventional PCI endpoint
[ 0.175228] pci 0000:00:15.1: BAR 0 [mem 0xdc332000-0xdc332fff 64bit]
[ 0.175272] pci 0000:00:15.1: calling quirk_igfx_skip_te_disable+0x0/0xa0 @ 1
[ 0.175275] pci 0000:00:15.1: quirk_igfx_skip_te_disable+0x0/0xa0 took 0 usecs
[ 0.175518] pci 0000:00:16.0: [8086:9d3a] type 00 class 0x078000 conventional PCI endpoint
[ 0.175531] pci 0000:00:16.0: BAR 0 [mem 0xdc331000-0xdc331fff 64bit]
[ 0.175555] pci 0000:00:16.0: calling quirk_igfx_skip_te_disable+0x0/0xa0 @ 1
[ 0.175557] pci 0000:00:16.0: quirk_igfx_skip_te_disable+0x0/0xa0 took 0 usecs
[ 0.175577] pci 0000:00:16.0: PME# supported from D3hot
[ 0.175868] pci 0000:00:1c.0: calling quirk_cmd_compl+0x0/0x70 @ 1
[ 0.175872] pci 0000:00:1c.0: quirk_cmd_compl+0x0/0x70 took 0 usecs
[ 0.175874] pci 0000:00:1c.0: calling quirk_no_aersid+0x0/0x10 @ 1
[ 0.175877] pci 0000:00:1c.0: quirk_no_aersid+0x0/0x10 took 0 usecs
[ 0.175878] pci 0000:00:1c.0: [8086:9d10] type 01 class 0x060400 PCIe Root Port
[ 0.175896] pci 0000:00:1c.0: PCI bridge to [bus 01-39]
[ 0.175900] pci 0000:00:1c.0: bridge window [mem 0xc4000000-0xda0fffff]
[ 0.175906] pci 0000:00:1c.0: bridge window [mem 0xa0000000-0xc1ffffff 64bit pref]
[ 0.175924] pci 0000:00:1c.0: calling quirk_igfx_skip_te_disable+0x0/0xa0 @ 1
[ 0.175926] pci 0000:00:1c.0: quirk_igfx_skip_te_disable+0x0/0xa0 took 0 usecs
[ 0.175927] pci 0000:00:1c.0: calling pci_fixup_transparent_bridge+0x0/0x20 @ 1
[ 0.175930] pci 0000:00:1c.0: pci_fixup_transparent_bridge+0x0/0x20 took 0 usecs
[ 0.175957] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.176333] pci 0000:00:1c.4: calling quirk_cmd_compl+0x0/0x70 @ 1
[ 0.176337] pci 0000:00:1c.4: quirk_cmd_compl+0x0/0x70 took 0 usecs
[ 0.176339] pci 0000:00:1c.4: calling quirk_no_aersid+0x0/0x10 @ 1
[ 0.176341] pci 0000:00:1c.4: quirk_no_aersid+0x0/0x10 took 0 usecs
[ 0.176343] pci 0000:00:1c.4: [8086:9d14] type 01 class 0x060400 PCIe Root Port
[ 0.176361] pci 0000:00:1c.4: PCI bridge to [bus 3a]
[ 0.176366] pci 0000:00:1c.4: bridge window [mem 0xdc000000-0xdc1fffff]
[ 0.176392] pci 0000:00:1c.4: calling quirk_igfx_skip_te_disable+0x0/0xa0 @ 1
[ 0.176394] pci 0000:00:1c.4: quirk_igfx_skip_te_disable+0x0/0xa0 took 0 usecs
[ 0.176395] pci 0000:00:1c.4: calling pci_fixup_transparent_bridge+0x0/0x20 @ 1
[ 0.176397] pci 0000:00:1c.4: pci_fixup_transparent_bridge+0x0/0x20 took 0 usecs
[ 0.176429] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[ 0.176812] pci 0000:00:1d.0: calling quirk_cmd_compl+0x0/0x70 @ 1
[ 0.176816] pci 0000:00:1d.0: quirk_cmd_compl+0x0/0x70 took 0 usecs
[ 0.176818] pci 0000:00:1d.0: calling quirk_no_aersid+0x0/0x10 @ 1
[ 0.176820] pci 0000:00:1d.0: quirk_no_aersid+0x0/0x10 took 0 usecs
[ 0.176822] pci 0000:00:1d.0: [8086:9d18] type 01 class 0x060400 PCIe Root Port
[ 0.176839] pci 0000:00:1d.0: PCI bridge to [bus 3b]
[ 0.176843] pci 0000:00:1d.0: bridge window [mem 0xdc200000-0xdc2fffff]
[ 0.176866] pci 0000:00:1d.0: calling quirk_igfx_skip_te_disable+0x0/0xa0 @ 1
[ 0.176868] pci 0000:00:1d.0: quirk_igfx_skip_te_disable+0x0/0xa0 took 0 usecs
[ 0.176870] pci 0000:00:1d.0: calling pci_fixup_transparent_bridge+0x0/0x20 @ 1
[ 0.176872] pci 0000:00:1d.0: pci_fixup_transparent_bridge+0x0/0x20 took 0 usecs
[ 0.176899] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[ 0.177294] pci 0000:00:1f.0: [8086:9d58] type 00 class 0x060100 conventional PCI endpoint
[ 0.177387] pci 0000:00:1f.0: calling quirk_igfx_skip_te_disable+0x0/0xa0 @ 1
[ 0.177389] pci 0000:00:1f.0: quirk_igfx_skip_te_disable+0x0/0xa0 took 0 usecs
[ 0.177568] pci 0000:00:1f.2: [8086:9d21] type 00 class 0x058000 conventional PCI endpoint
[ 0.177579] pci 0000:00:1f.2: BAR 0 [mem 0xdc32c000-0xdc32ffff]
[ 0.177613] pci 0000:00:1f.2: calling quirk_igfx_skip_te_disable+0x0/0xa0 @ 1
[ 0.177615] pci 0000:00:1f.2: quirk_igfx_skip_te_disable+0x0/0xa0 took 0 usecs
[ 0.177779] pci 0000:00:1f.3: [8086:9d71] type 00 class 0x040380 conventional PCI endpoint
[ 0.177797] pci 0000:00:1f.3: BAR 0 [mem 0xdc328000-0xdc32bfff 64bit]
[ 0.177821] pci 0000:00:1f.3: BAR 4 [mem 0xdc300000-0xdc30ffff 64bit]
[ 0.177833] pci 0000:00:1f.3: calling quirk_igfx_skip_te_disable+0x0/0xa0 @ 1
[ 0.177835] pci 0000:00:1f.3: quirk_igfx_skip_te_disable+0x0/0xa0 took 0 usecs
[ 0.177865] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[ 0.178389] pci 0000:00:1f.4: [8086:9d23] type 00 class 0x0c0500 conventional PCI endpoint
[ 0.178447] pci 0000:00:1f.4: BAR 0 [mem 0xdc330000-0xdc3300ff 64bit]
[ 0.178518] pci 0000:00:1f.4: BAR 4 [io 0xf040-0xf05f]
[ 0.178576] pci 0000:00:1f.4: calling quirk_igfx_skip_te_disable+0x0/0xa0 @ 1
[ 0.178578] pci 0000:00:1f.4: quirk_igfx_skip_te_disable+0x0/0xa0 took 0 usecs
[ 0.178823] pci 0000:00:1c.0: PCI bridge to [bus 01-39]
[ 0.179148] pci 0000:3a:00.0: [168c:003e] type 00 class 0x028000 PCIe Endpoint
[ 0.179364] pci 0000:3a:00.0: BAR 0 [mem 0xdc000000-0xdc1fffff 64bit]
[ 0.179914] pci 0000:3a:00.0: calling quirk_no_bus_reset+0x0/0x20 @ 1
[ 0.179917] pci 0000:3a:00.0: quirk_no_bus_reset+0x0/0x20 took 0 usecs
[ 0.180617] pci 0000:3a:00.0: PME# supported from D0 D3hot D3cold
[ 0.182118] pci 0000:00:1c.4: PCI bridge to [bus 3a]
[ 0.182198] pci 0000:3b:00.0: [1c5c:1284] type 00 class 0x010802 PCIe Endpoint
[ 0.182217] pci 0000:3b:00.0: BAR 0 [mem 0xdc200000-0xdc203fff 64bit]
[ 0.182326] pci 0000:3b:00.0: PME# supported from D0 D1 D3hot
[ 0.182643] pci 0000:00:1d.0: PCI bridge to [bus 3b]
[ 0.185266] probe of INT344B:00 returned 0 after 0 usecs
[ 0.185266] ACPI: PCI: Interrupt link LNKA configured for IRQ 11
[ 0.185266] ACPI: PCI: Interrupt link LNKB configured for IRQ 10
[ 0.185266] ACPI: PCI: Interrupt link LNKC configured for IRQ 11
[ 0.185266] ACPI: PCI: Interrupt link LNKD configured for IRQ 11
[ 0.185266] ACPI: PCI: Interrupt link LNKE configured for IRQ 11
[ 0.185266] ACPI: PCI: Interrupt link LNKF configured for IRQ 11
[ 0.185266] ACPI: PCI: Interrupt link LNKG configured for IRQ 11
[ 0.185266] ACPI: PCI: Interrupt link LNKH configured for IRQ 11
[ 0.207794] ACPI: EC: interrupt unblocked
[ 0.207795] ACPI: EC: event unblocked
[ 0.207800] ACPI: EC: EC_CMD/EC_SC=0x934, EC_DATA=0x930
[ 0.207802] ACPI: EC: GPE=0x14
[ 0.207803] ACPI: \_SB_.PCI0.LPCB.ECDV: Boot DSDT EC initialization complete
[ 0.207804] ACPI: \_SB_.PCI0.LPCB.ECDV: EC: Used to handle transactions and events
[ 0.207808] probe of PNP0C09:00 returned 0 after 0 usecs
[ 0.207841] initcall acpi_init+0x0/0x590 returned 0 after 120000 usecs
[ 0.207846] calling hmat_init+0x0/0x420 @ 1
[ 0.207848] initcall hmat_init+0x0/0x420 returned 0 after 0 usecs
[ 0.207850] calling pnp_init+0x0/0x20 @ 1
[ 0.207855] initcall pnp_init+0x0/0x20 returned 0 after 0 usecs
[ 0.207857] calling balloon_init+0x0/0x220 @ 1
[ 0.207859] initcall balloon_init+0x0/0x220 returned -19 after 0 usecs
[ 0.207860] calling xen_setup_shutdown_event+0x0/0x40 @ 1
[ 0.207863] initcall xen_setup_shutdown_event+0x0/0x40 returned -19 after 0 usecs
[ 0.207864] calling xenbus_probe_backend_init+0x0/0x90 @ 1
[ 0.207874] initcall xenbus_probe_backend_init+0x0/0x90 returned 0 after 0 usecs
[ 0.207876] calling xenbus_probe_frontend_init+0x0/0x50 @ 1
[ 0.207880] initcall xenbus_probe_frontend_init+0x0/0x50 returned 0 after 0 usecs
[ 0.207882] calling xen_acpi_pad_init+0x0/0x50 @ 1
[ 0.207883] initcall xen_acpi_pad_init+0x0/0x50 returned -19 after 0 usecs
[ 0.207885] calling misc_init+0x0/0xb0 @ 1
[ 0.207890] initcall misc_init+0x0/0xb0 returned 0 after 0 usecs
[ 0.207892] calling tpm_init+0x0/0xd0 @ 1
[ 0.207901] initcall tpm_init+0x0/0xd0 returned 0 after 0 usecs
[ 0.207901] calling iommu_subsys_init+0x0/0x190 @ 1
[ 0.207901] iommu: Default domain type: Translated
[ 0.207901] iommu: DMA domain TLB invalidation policy: lazy mode
[ 0.207901] initcall iommu_subsys_init+0x0/0x190 returned 0 after 0 usecs
[ 0.207901] calling cn_init+0x0/0x100 @ 1
[ 0.207901] initcall cn_init+0x0/0x100 returned 0 after 0 usecs
[ 0.207901] calling dax_core_init+0x0/0xe0 @ 1
[ 0.207901] initcall dax_core_init+0x0/0xe0 returned 0 after 0 usecs
[ 0.207901] calling dma_buf_init+0x0/0xa0 @ 1
[ 0.207901] initcall dma_buf_init+0x0/0xa0 returned 0 after 0 usecs
[ 0.207901] calling cxl_core_init+0x0/0xa0 @ 1
[ 0.207901] initcall cxl_core_init+0x0/0xa0 returned 0 after 0 usecs
[ 0.207901] calling phy_init+0x0/0x2f0 @ 1
[ 0.207901] initcall phy_init+0x0/0x2f0 returned 0 after 0 usecs
[ 0.207901] calling serio_init+0x0/0x40 @ 1
[ 0.207901] initcall serio_init+0x0/0x40 returned 0 after 0 usecs
[ 0.207901] calling input_init+0x0/0x140 @ 1
[ 0.207901] initcall input_init+0x0/0x140 returned 0 after 0 usecs
[ 0.207901] calling rtc_init+0x0/0x30 @ 1
[ 0.207901] initcall rtc_init+0x0/0x30 returned 0 after 0 usecs
[ 0.207901] calling dw_i2c_init_driver+0x0/0x20 @ 1
[ 0.207901] initcall dw_i2c_init_driver+0x0/0x20 returned 0 after 0 usecs
[ 0.207901] calling pps_init+0x0/0xb0 @ 1
[ 0.207901] pps_core: LinuxPPS API ver. 1 registered
[ 0.207901] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 0.207901] initcall pps_init+0x0/0xb0 returned 0 after 0 usecs
[ 0.207901] calling ptp_init+0x0/0x80 @ 1
[ 0.207901] PTP clock support registered
[ 0.207901] initcall ptp_init+0x0/0x80 returned 0 after 0 usecs
[ 0.207901] calling power_supply_class_init+0x0/0x20 @ 1
[ 0.207901] initcall power_supply_class_init+0x0/0x20 returned 0 after 0 usecs
[ 0.207901] calling hwmon_init+0x0/0x110 @ 1
[ 0.207901] initcall hwmon_init+0x0/0x110 returned 0 after 0 usecs
[ 0.207901] calling edac_init+0x0/0x80 @ 1
[ 0.207901] EDAC MC: Ver: 3.0.0
[ 0.207901] initcall edac_init+0x0/0x80 returned 0 after 0 usecs
[ 0.207901] calling leds_init+0x0/0x20 @ 1
[ 0.207901] initcall leds_init+0x0/0x20 returned 0 after 0 usecs
[ 0.207901] calling dmi_init+0x0/0x130 @ 1
[ 0.207901] initcall dmi_init+0x0/0x130 returned 0 after 0 usecs
[ 0.207901] calling efisubsys_init+0x0/0x6d0 @ 1
[ 0.207901] efivars: Registered efivars operations
[ 0.207901] initcall efisubsys_init+0x0/0x6d0 returned 0 after 0 usecs
[ 0.207901] calling intel_scu_ipc_init+0x0/0x20 @ 1
[ 0.207901] initcall intel_scu_ipc_init+0x0/0x20 returned 0 after 0 usecs
[ 0.207901] calling devfreq_init+0x0/0xd0 @ 1
[ 0.207901] initcall devfreq_init+0x0/0xd0 returned 0 after 0 usecs
[ 0.207901] calling ras_init+0x0/0x20 @ 1
[ 0.207901] initcall ras_init+0x0/0x20 returned 0 after 0 usecs
[ 0.207901] calling nvmem_init+0x0/0x20 @ 1
[ 0.207901] initcall nvmem_init+0x0/0x20 returned 0 after 0 usecs
[ 0.207901] calling proto_init+0x0/0x20 @ 1
[ 0.207901] initcall proto_init+0x0/0x20 returned 0 after 0 usecs
[ 0.207901] calling net_dev_init+0x0/0x380 @ 1
[ 0.207901] initcall net_dev_init+0x0/0x380 returned 0 after 0 usecs
[ 0.207901] calling neigh_init+0x0/0x90 @ 1
[ 0.207901] initcall neigh_init+0x0/0x90 returned 0 after 0 usecs
[ 0.207901] calling fib_notifier_init+0x0/0x20 @ 1
[ 0.207901] initcall fib_notifier_init+0x0/0x20 returned 0 after 0 usecs
[ 0.207901] calling netdev_genl_init+0x0/0x40 @ 1
[ 0.207901] initcall netdev_genl_init+0x0/0x40 returned 0 after 0 usecs
[ 0.207901] calling page_pool_user_init+0x0/0x20 @ 1
[ 0.207901] initcall page_pool_user_init+0x0/0x20 returned 0 after 0 usecs
[ 0.207901] calling fib_rules_init+0x0/0xc0 @ 1
[ 0.207901] initcall fib_rules_init+0x0/0xc0 returned 0 after 0 usecs
[ 0.207901] calling init_cgroup_netprio+0x0/0x20 @ 1
[ 0.207901] initcall init_cgroup_netprio+0x0/0x20 returned 0 after 0 usecs
[ 0.207901] calling bpf_lwt_init+0x0/0x20 @ 1
[ 0.207901] initcall bpf_lwt_init+0x0/0x20 returned 0 after 0 usecs
[ 0.207901] calling pktsched_init+0x0/0x120 @ 1
[ 0.207901] initcall pktsched_init+0x0/0x120 returned 0 after 0 usecs
[ 0.207901] calling tc_filter_init+0x0/0x110 @ 1
[ 0.207901] initcall tc_filter_init+0x0/0x110 returned 0 after 0 usecs
[ 0.207901] calling tc_action_init+0x0/0x60 @ 1
[ 0.207901] initcall tc_action_init+0x0/0x60 returned 0 after 0 usecs
[ 0.207901] calling ethnl_init+0x0/0x70 @ 1
[ 0.207901] initcall ethnl_init+0x0/0x70 returned 0 after 0 usecs
[ 0.207901] calling nexthop_init+0x0/0x100 @ 1
[ 0.207901] initcall nexthop_init+0x0/0x100 returned 0 after 0 usecs
[ 0.207901] calling cipso_v4_init+0x0/0x90 @ 1
[ 0.207901] initcall cipso_v4_init+0x0/0x90 returned 0 after 0 usecs
[ 0.207901] calling wireless_nlevent_init+0x0/0x50 @ 1
[ 0.207901] initcall wireless_nlevent_init+0x0/0x50 returned 0 after 0 usecs
[ 0.207901] calling netlbl_init+0x0/0x80 @ 1
[ 0.207901] NetLabel: Initializing
[ 0.207901] NetLabel: domain hash size = 128
[ 0.207901] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 0.207901] NetLabel: unlabeled traffic allowed by default
[ 0.207901] initcall netlbl_init+0x0/0x80 returned 0 after 0 usecs
[ 0.207901] calling pci_subsys_init+0x0/0x80 @ 1
[ 0.207901] PCI: Using ACPI for IRQ routing
[ 0.233554] PCI: pci_cache_line_size set to 64 bytes
[ 0.233929] e820: reserve RAM buffer [mem 0x00058000-0x0005ffff]
[ 0.233931] e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff]
[ 0.233931] e820: reserve RAM buffer [mem 0x511ec018-0x53ffffff]
[ 0.233932] e820: reserve RAM buffer [mem 0x556ab000-0x57ffffff]
[ 0.233933] e820: reserve RAM buffer [mem 0x62260000-0x63ffffff]
[ 0.233934] e820: reserve RAM buffer [mem 0x64df4000-0x67ffffff]
[ 0.233935] e820: reserve RAM buffer [mem 0x78600000-0x7bffffff]
[ 0.233936] e820: reserve RAM buffer [mem 0x481800000-0x483ffffff]
[ 0.233937] initcall pci_subsys_init+0x0/0x80 returned 0 after 28000 usecs
[ 0.233939] calling vsprintf_init_hashval+0x0/0x20 @ 1
[ 0.233942] initcall vsprintf_init_hashval+0x0/0x20 returned 0 after 0 usecs
[ 0.233944] calling efi_runtime_map_init+0x0/0x270 @ 1
[ 0.233963] initcall efi_runtime_map_init+0x0/0x270 returned 0 after 0 usecs
[ 0.233965] calling vga_arb_device_init+0x0/0xa0 @ 1
[ 0.234736] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[ 0.234736] pci 0000:00:02.0: vgaarb: bridge control possible
[ 0.234736] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[ 0.234736] vgaarb: loaded
[ 0.234736] initcall vga_arb_device_init+0x0/0xa0 returned 0 after 0 usecs
[ 0.234761] calling nmi_warning_debugfs+0x0/0x30 @ 1
[ 0.234775] initcall nmi_warning_debugfs+0x0/0x30 returned 0 after 0 usecs
[ 0.234777] calling hpet_late_init+0x0/0x450 @ 1
[ 0.234779] initcall hpet_late_init+0x0/0x450 returned -19 after 0 usecs
[ 0.234781] calling init_amd_nbs+0x0/0x520 @ 1
[ 0.234785] initcall init_amd_nbs+0x0/0x520 returned 0 after 0 usecs
[ 0.234787] calling iomem_init_inode+0x0/0x90 @ 1
[ 0.234794] initcall iomem_init_inode+0x0/0x90 returned 0 after 0 usecs
[ 0.234795] calling em_debug_init+0x0/0x30 @ 1
[ 0.234798] initcall em_debug_init+0x0/0x30 returned 0 after 0 usecs
[ 0.234799] calling clocksource_done_booting+0x0/0x50 @ 1
[ 0.234810] clocksource: Switched to clocksource tsc-early
[ 0.234811] initcall clocksource_done_booting+0x0/0x50 returned 0 after 3 usecs
[ 0.234814] calling tracer_init_tracefs+0x0/0xc0 @ 1
[ 0.234818] initcall tracer_init_tracefs+0x0/0xc0 returned 0 after 2 usecs
[ 0.234820] calling init_trace_printk_function_export+0x0/0x30 @ 1
[ 0.234831] initcall init_trace_printk_function_export+0x0/0x30 returned 0 after 9 usecs
[ 0.234833] calling init_graph_tracefs+0x0/0x30 @ 1
[ 0.234835] initcall init_graph_tracefs+0x0/0x30 returned 0 after 0 usecs
[ 0.234836] calling trace_events_synth_init+0x0/0x50 @ 1
[ 0.234839] initcall trace_events_synth_init+0x0/0x50 returned 0 after 0 usecs
[ 0.234841] calling bpf_event_init+0x0/0x20 @ 1
[ 0.234843] initcall bpf_event_init+0x0/0x20 returned 0 after 1 usecs
[ 0.234845] calling init_kprobe_trace+0x0/0x1d0 @ 1
[ 0.235154] initcall init_kprobe_trace+0x0/0x1d0 returned 0 after 306 usecs
[ 0.235156] calling init_dynamic_event+0x0/0x30 @ 1
[ 0.235160] initcall init_dynamic_event+0x0/0x30 returned 0 after 2 usecs
[ 0.235162] calling init_uprobe_trace+0x0/0x60 @ 1
[ 0.235164] initcall init_uprobe_trace+0x0/0x60 returned 0 after 1 usecs
[ 0.235166] calling bpf_init+0x0/0x60 @ 1
[ 0.235169] initcall bpf_init+0x0/0x60 returned 0 after 1 usecs
[ 0.235171] calling btf_module_init+0x0/0x20 @ 1
[ 0.235173] initcall btf_module_init+0x0/0x20 returned 0 after 0 usecs
[ 0.235175] calling secretmem_init+0x0/0x40 @ 1
[ 0.235180] initcall secretmem_init+0x0/0x40 returned 0 after 3 usecs
[ 0.235181] calling init_fs_stat_sysctls+0x0/0x40 @ 1
[ 0.235187] initcall init_fs_stat_sysctls+0x0/0x40 returned 0 after 4 usecs
[ 0.235189] calling init_fs_exec_sysctls+0x0/0x30 @ 1
[ 0.235192] initcall init_fs_exec_sysctls+0x0/0x30 returned 0 after 1 usecs
[ 0.235193] calling init_pipe_fs+0x0/0x70 @ 1
[ 0.235198] initcall init_pipe_fs+0x0/0x70 returned 0 after 3 usecs
[ 0.235200] calling init_fs_namei_sysctls+0x0/0x30 @ 1
[ 0.235203] initcall init_fs_namei_sysctls+0x0/0x30 returned 0 after 1 usecs
[ 0.235205] calling init_fs_dcache_sysctls+0x0/0x30 @ 1
[ 0.235207] initcall init_fs_dcache_sysctls+0x0/0x30 returned 0 after 0 usecs
[ 0.235208] calling init_fs_namespace_sysctls+0x0/0x30 @ 1
[ 0.235210] initcall init_fs_namespace_sysctls+0x0/0x30 returned 0 after 0 usecs
[ 0.235212] calling cgroup_writeback_init+0x0/0x30 @ 1
[ 0.235215] initcall cgroup_writeback_init+0x0/0x30 returned 0 after 1 usecs
[ 0.235216] calling inotify_user_setup+0x0/0x100 @ 1
[ 0.235222] initcall inotify_user_setup+0x0/0x100 returned 0 after 3 usecs
[ 0.235224] calling eventpoll_init+0x0/0x110 @ 1
[ 0.235236] initcall eventpoll_init+0x0/0x110 returned 0 after 10 usecs
[ 0.235238] calling anon_inode_init+0x0/0x60 @ 1
[ 0.235243] initcall anon_inode_init+0x0/0x60 returned 0 after 2 usecs
[ 0.235244] calling init_dax_wait_table+0x0/0x40 @ 1
[ 0.235256] initcall init_dax_wait_table+0x0/0x40 returned 0 after 9 usecs
[ 0.235258] calling proc_locks_init+0x0/0x30 @ 1
[ 0.235260] initcall proc_locks_init+0x0/0x30 returned 0 after 1 usecs
[ 0.235262] calling backing_aio_init+0x0/0x40 @ 1
[ 0.235266] initcall backing_aio_init+0x0/0x40 returned 0 after 2 usecs
[ 0.235268] calling init_fs_coredump_sysctls+0x0/0x30 @ 1
[ 0.235277] initcall init_fs_coredump_sysctls+0x0/0x30 returned 0 after 6 usecs
[ 0.235278] calling iomap_init+0x0/0x30 @ 1
[ 0.235297] initcall iomap_init+0x0/0x30 returned 0 after 17 usecs
[ 0.235300] calling dquot_init+0x0/0x170 @ 1
[ 0.235301] VFS: Disk quotas dquot_6.6.0
[ 0.235308] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.235309] initcall dquot_init+0x0/0x170 returned 0 after 8 usecs
[ 0.235311] calling quota_init+0x0/0x30 @ 1
[ 0.235317] initcall quota_init+0x0/0x30 returned 0 after 3 usecs
[ 0.235319] calling proc_cmdline_init+0x0/0x40 @ 1
[ 0.235321] initcall proc_cmdline_init+0x0/0x40 returned 0 after 0 usecs
[ 0.235323] calling proc_consoles_init+0x0/0x30 @ 1
[ 0.235325] initcall proc_consoles_init+0x0/0x30 returned 0 after 0 usecs
[ 0.235327] calling proc_cpuinfo_init+0x0/0x30 @ 1
[ 0.235329] initcall proc_cpuinfo_init+0x0/0x30 returned 0 after 0 usecs
[ 0.235331] calling proc_devices_init+0x0/0x30 @ 1
[ 0.235333] initcall proc_devices_init+0x0/0x30 returned 0 after 0 usecs
[ 0.235335] calling proc_interrupts_init+0x0/0x30 @ 1
[ 0.235337] initcall proc_interrupts_init+0x0/0x30 returned 0 after 0 usecs
[ 0.235339] calling proc_loadavg_init+0x0/0x30 @ 1
[ 0.235341] initcall proc_loadavg_init+0x0/0x30 returned 0 after 0 usecs
[ 0.235343] calling proc_meminfo_init+0x0/0x30 @ 1
[ 0.235345] initcall proc_meminfo_init+0x0/0x30 returned 0 after 0 usecs
[ 0.235347] calling proc_stat_init+0x0/0x30 @ 1
[ 0.235349] initcall proc_stat_init+0x0/0x30 returned 0 after 0 usecs
[ 0.235351] calling proc_uptime_init+0x0/0x30 @ 1
[ 0.235353] initcall proc_uptime_init+0x0/0x30 returned 0 after 1 usecs
[ 0.235355] calling proc_version_init+0x0/0x30 @ 1
[ 0.235357] initcall proc_version_init+0x0/0x30 returned 0 after 0 usecs
[ 0.235359] calling proc_softirqs_init+0x0/0x30 @ 1
[ 0.235361] initcall proc_softirqs_init+0x0/0x30 returned 0 after 0 usecs
[ 0.235363] calling proc_kcore_init+0x0/0x1f0 @ 1
[ 0.235370] initcall proc_kcore_init+0x0/0x1f0 returned 0 after 4 usecs
[ 0.235372] calling vmcore_init+0x0/0x720 @ 1
[ 0.235374] initcall vmcore_init+0x0/0x720 returned 0 after 0 usecs
[ 0.235376] calling proc_kmsg_init+0x0/0x30 @ 1
[ 0.235378] initcall proc_kmsg_init+0x0/0x30 returned 0 after 0 usecs
[ 0.235380] calling proc_page_init+0x0/0x60 @ 1
[ 0.235383] initcall proc_page_init+0x0/0x60 returned 0 after 1 usecs
[ 0.235385] calling init_ramfs_fs+0x0/0x20 @ 1
[ 0.235387] initcall init_ramfs_fs+0x0/0x20 returned 0 after 0 usecs
[ 0.235389] calling init_hugetlbfs_fs+0x0/0x160 @ 1
[ 0.235400] initcall init_hugetlbfs_fs+0x0/0x160 returned 0 after 8 usecs
[ 0.235402] calling aa_create_aafs+0x0/0x3f0 @ 1
[ 0.235463] AppArmor: AppArmor Filesystem Enabled
[ 0.235463] initcall aa_create_aafs+0x0/0x3f0 returned 0 after 69 usecs
[ 0.235463] calling dynamic_debug_init_control+0x0/0x80 @ 1
[ 0.235463] initcall dynamic_debug_init_control+0x0/0x80 returned 0 after 2 usecs
[ 0.235463] calling acpi_event_init+0x0/0x40 @ 1
[ 0.235463] initcall acpi_event_init+0x0/0x40 returned 0 after 2 usecs
[ 0.235463] calling pnp_system_init+0x0/0x20 @ 1
[ 0.235463] initcall pnp_system_init+0x0/0x20 returned 0 after 4 usecs
[ 0.235463] calling pnpacpi_init+0x0/0x70 @ 1
[ 0.235463] pnp: PnP ACPI init
[ 0.235609] system 00:00: [io 0x0680-0x069f] has been reserved
[ 0.235612] system 00:00: [io 0xffff] has been reserved
[ 0.235613] system 00:00: [io 0xffff] has been reserved
[ 0.235615] system 00:00: [io 0xffff] has been reserved
[ 0.235616] system 00:00: [io 0x1800-0x18fe] has been reserved
[ 0.235617] system 00:00: [io 0x164e-0x164f] has been reserved
[ 0.235620] probe of 00:00 returned 0 after 14 usecs
[ 0.235738] system 00:02: [io 0x1854-0x1857] has been reserved
[ 0.235741] probe of 00:02 returned 0 after 4 usecs
[ 0.236065] system 00:05: [mem 0xfed10000-0xfed17fff] has been reserved
[ 0.236067] system 00:05: [mem 0xfed18000-0xfed18fff] has been reserved
[ 0.236069] system 00:05: [mem 0xfed19000-0xfed19fff] has been reserved
[ 0.236070] system 00:05: [mem 0xe0000000-0xefffffff] has been reserved
[ 0.236071] system 00:05: [mem 0xfed20000-0xfed3ffff] has been reserved
[ 0.236073] system 00:05: [mem 0xfed90000-0xfed93fff] could not be reserved
[ 0.236074] system 00:05: [mem 0xfed45000-0xfed8ffff] has been reserved
[ 0.236076] system 00:05: [mem 0xff000000-0xffffffff] has been reserved
[ 0.236077] system 00:05: [mem 0xfee00000-0xfeefffff] could not be reserved
[ 0.236078] system 00:05: [mem 0xdffe0000-0xdfffffff] has been reserved
[ 0.236081] probe of 00:05 returned 0 after 19 usecs
[ 0.236112] system 00:06: [mem 0xfd000000-0xfdabffff] has been reserved
[ 0.236114] system 00:06: [mem 0xfdad0000-0xfdadffff] has been reserved
[ 0.236116] system 00:06: [mem 0xfdb00000-0xfdffffff] has been reserved
[ 0.236117] system 00:06: [mem 0xfe000000-0xfe01ffff] could not be reserved
[ 0.236118] system 00:06: [mem 0xfe036000-0xfe03bfff] has been reserved
[ 0.236120] system 00:06: [mem 0xfe03d000-0xfe3fffff] has been reserved
[ 0.236121] system 00:06: [mem 0xfe410000-0xfe7fffff] has been reserved
[ 0.236123] probe of 00:06 returned 0 after 12 usecs
[ 0.236366] system 00:07: [io 0xff00-0xfffe] has been reserved
[ 0.236368] probe of 00:07 returned 0 after 5 usecs
[ 0.237259] system 00:08: [mem 0xfe029000-0xfe029fff] has been reserved
[ 0.237261] system 00:08: [mem 0xfe028000-0xfe028fff] has been reserved
[ 0.237263] probe of 00:08 returned 0 after 6 usecs
[ 0.244692] pnp: PnP ACPI: found 9 devices
[ 0.244694] initcall pnpacpi_init+0x0/0x70 returned 0 after 9278 usecs
[ 0.244697] calling chr_dev_init+0x0/0xa0 @ 1
[ 0.245528] initcall chr_dev_init+0x0/0xa0 returned 0 after 828 usecs
[ 0.245531] calling hwrng_modinit+0x0/0xd0 @ 1
[ 0.245549] initcall hwrng_modinit+0x0/0xd0 returned 0 after 16 usecs
[ 0.245553] calling firmware_class_init+0x0/0x100 @ 1
[ 0.245562] initcall firmware_class_init+0x0/0x100 returned 0 after 6 usecs
[ 0.245565] calling map_properties+0x0/0x6d0 @ 1
[ 0.245567] initcall map_properties+0x0/0x6d0 returned 0 after 0 usecs
[ 0.245569] calling efi_mokvar_sysfs_init+0x0/0x1d0 @ 1
[ 0.245570] initcall efi_mokvar_sysfs_init+0x0/0x1d0 returned -2 after 0 usecs
[ 0.245572] calling init_acpi_pm_clocksource+0x0/0xf0 @ 1
[ 0.250057] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.250058] initcall init_acpi_pm_clocksource+0x0/0xf0 returned 0 after 4484 usecs
[ 0.250061] calling powercap_init+0x0/0x280 @ 1
[ 0.250079] initcall powercap_init+0x0/0x280 returned 0 after 17 usecs
[ 0.250081] calling sysctl_core_init+0x0/0x40 @ 1
[ 0.250096] initcall sysctl_core_init+0x0/0x40 returned 0 after 13 usecs
[ 0.250098] calling eth_offload_init+0x0/0x20 @ 1
[ 0.250100] initcall eth_offload_init+0x0/0x20 returned 0 after 0 usecs
[ 0.250102] calling ipv4_offload_init+0x0/0xe0 @ 1
[ 0.250105] initcall ipv4_offload_init+0x0/0xe0 returned 0 after 0 usecs
[ 0.250107] calling inet_init+0x0/0x330 @ 1
[ 0.250120] NET: Registered PF_INET protocol family
[ 0.250238] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.261547] tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
[ 0.261568] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[ 0.261600] TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[ 0.261780] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[ 0.261994] TCP: Hash tables configured (established 131072 bind 65536)
[ 0.262074] MPTCP token hash table entries: 16384 (order: 6, 393216 bytes, linear)
[ 0.262113] UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
[ 0.262146] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
[ 0.262202] initcall inet_init+0x0/0x330 returned 0 after 12092 usecs
[ 0.262209] calling af_unix_init+0x0/0xf0 @ 1
[ 0.262214] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 0.262218] initcall af_unix_init+0x0/0xf0 returned 0 after 7 usecs
[ 0.262221] calling ipv6_offload_init+0x0/0xe0 @ 1
[ 0.262223] initcall ipv6_offload_init+0x0/0xe0 returned 0 after 0 usecs
[ 0.262225] calling xsk_init+0x0/0xd0 @ 1
[ 0.262226] NET: Registered PF_XDP protocol family
[ 0.262228] initcall xsk_init+0x0/0xd0 returned 0 after 1 usecs
[ 0.262229] calling pcibios_assign_resources+0x0/0xf0 @ 1
[ 0.262237] pci 0000:00:1c.0: bridge window [io 0x1000-0x0fff] to [bus 01-39] add_size 1000
[ 0.262245] pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff]: assigned
[ 0.262248] pci 0000:00:1c.0: PCI bridge to [bus 01-39]
[ 0.262250] pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff]
[ 0.262253] pci 0000:00:1c.0: bridge window [mem 0xc4000000-0xda0fffff]
[ 0.262255] pci 0000:00:1c.0: bridge window [mem 0xa0000000-0xc1ffffff 64bit pref]
[ 0.262259] pci 0000:00:1c.4: PCI bridge to [bus 3a]
[ 0.262262] pci 0000:00:1c.4: bridge window [mem 0xdc000000-0xdc1fffff]
[ 0.262268] pci 0000:00:1d.0: PCI bridge to [bus 3b]
[ 0.262271] pci 0000:00:1d.0: bridge window [mem 0xdc200000-0xdc2fffff]
[ 0.262276] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[ 0.262277] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
[ 0.262278] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000dffff window]
[ 0.262280] pci_bus 0000:00: resource 7 [mem 0x7c800000-0xdfffffff window]
[ 0.262281] pci_bus 0000:00: resource 8 [mem 0xfd000000-0xfe7fffff window]
[ 0.262282] pci_bus 0000:01: resource 0 [io 0x2000-0x2fff]
[ 0.262283] pci_bus 0000:01: resource 1 [mem 0xc4000000-0xda0fffff]
[ 0.262284] pci_bus 0000:01: resource 2 [mem 0xa0000000-0xc1ffffff 64bit pref]
[ 0.262285] pci_bus 0000:3a: resource 1 [mem 0xdc000000-0xdc1fffff]
[ 0.262287] pci_bus 0000:3b: resource 1 [mem 0xdc200000-0xdc2fffff]
[ 0.262430] initcall pcibios_assign_resources+0x0/0xf0 returned 0 after 199 usecs
[ 0.262433] calling pci_apply_final_quirks+0x0/0x160 @ 1
[ 0.262444] pci 0000:00:14.0: calling quirk_usb_early_handoff+0x0/0x750 @ 1
[ 0.262671] pci 0000:00:14.0: quirk_usb_early_handoff+0x0/0x750 took 217 usecs
[ 0.262871] PCI: CLS 0 bytes, default 64
[ 0.262872] initcall pci_apply_final_quirks+0x0/0x160 returned 0 after 436 usecs
[ 0.262874] calling acpi_reserve_resources+0x0/0x110 @ 1
[ 0.262878] initcall acpi_reserve_resources+0x0/0x110 returned 0 after 1 usecs
[ 0.262880] calling p2sb_fs_init+0x0/0x180 @ 1
[ 0.262920] pci 0000:00:1f.1: [8086:9d20] type 00 class 0x058000 conventional PCI endpoint
[ 0.262978] pci 0000:00:1f.1: BAR 0 [mem 0xfd000000-0xfdffffff 64bit]
[ 0.263117] pci 0000:00:1f.1: calling quirk_igfx_skip_te_disable+0x0/0xa0 @ 1
[ 0.263120] pci 0000:00:1f.1: quirk_igfx_skip_te_disable+0x0/0xa0 took 0 usecs
[ 0.263210] initcall p2sb_fs_init+0x0/0x180 returned 0 after 327 usecs
[ 0.263212] calling populate_rootfs+0x0/0x80 @ 1
[ 0.263217] initcall populate_rootfs+0x0/0x80 returned 0 after 3 usecs
[ 0.263219] calling pci_iommu_init+0x0/0x40 @ 1
[ 0.263227] DMAR: ACPI device "device:79" under DMAR at fed91000 as 00:15.0
[ 0.263230] DMAR: ACPI device "device:7a" under DMAR at fed91000 as 00:15.1
[ 0.263239] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.263240] software IO TLB: mapped [mem 0x000000005e260000-0x0000000062260000] (64MB)
[ 0.263241] initcall pci_iommu_init+0x0/0x40 returned 0 after 19 usecs
[ 0.263244] calling ir_dev_scope_init+0x0/0x40 @ 1
[ 0.263247] initcall ir_dev_scope_init+0x0/0x40 returned 0 after 0 usecs
[ 0.263260] Unpacking initramfs...
[ 0.263274] calling amd_ibs_init+0x0/0x390 @ 1
[ 0.263276] initcall amd_ibs_init+0x0/0x390 returned -19 after 0 usecs
[ 0.263278] calling amd_uncore_init+0x0/0x1c0 @ 1
[ 0.263279] initcall amd_uncore_init+0x0/0x1c0 returned -19 after 0 usecs
[ 0.263281] calling amd_iommu_pc_init+0x0/0x2b0 @ 1
[ 0.263282] initcall amd_iommu_pc_init+0x0/0x2b0 returned -19 after 0 usecs
[ 0.263284] calling msr_init+0x0/0x60 @ 1
[ 0.263288] initcall msr_init+0x0/0x60 returned 0 after 2 usecs
[ 0.263289] calling register_kernel_offset_dumper+0x0/0x20 @ 1
[ 0.263292] initcall register_kernel_offset_dumper+0x0/0x20 returned 0 after 0 usecs
[ 0.263295] calling i8259A_init_ops+0x0/0x30 @ 1
[ 0.263297] initcall i8259A_init_ops+0x0/0x30 returned 0 after 0 usecs
[ 0.263299] calling init_tsc_clocksource+0x0/0xc0 @ 1
[ 0.263304] initcall init_tsc_clocksource+0x0/0xc0 returned 0 after 3 usecs
[ 0.263305] calling add_rtc_cmos+0x0/0xa0 @ 1
[ 0.263307] initcall add_rtc_cmos+0x0/0xa0 returned 0 after 0 usecs
[ 0.263309] calling umwait_init+0x0/0xa0 @ 1
[ 0.263310] initcall umwait_init+0x0/0xa0 returned -19 after 0 usecs
[ 0.263312] calling sgx_init+0x0/0x4d0 @ 1
[ 0.263318] sgx: EPC section 0x70200000-0x75f7ffff
[ 0.263621] initcall sgx_init+0x0/0x4d0 returned 0 after 307 usecs
[ 0.263627] calling ioapic_init_ops+0x0/0x20 @ 1
[ 0.263629] initcall ioapic_init_ops+0x0/0x20 returned 0 after 0 usecs
[ 0.263631] calling add_pcspkr+0x0/0x70 @ 1
[ 0.263650] initcall add_pcspkr+0x0/0x70 returned 0 after 17 usecs
[ 0.263653] calling snp_init_platform_device+0x0/0xa0 @ 1
[ 0.263655] initcall snp_init_platform_device+0x0/0xa0 returned -19 after 0 usecs
[ 0.263658] calling audit_classes_init+0x0/0x60 @ 1
[ 0.263661] initcall audit_classes_init+0x0/0x60 returned 0 after 1 usecs
[ 0.263664] calling pt_dump_init+0x0/0x50 @ 1
[ 0.263667] initcall pt_dump_init+0x0/0x50 returned 0 after 0 usecs
[ 0.263670] calling iosf_mbi_init+0x0/0x30 @ 1
[ 0.263684] initcall iosf_mbi_init+0x0/0x30 returned 0 after 11 usecs
[ 0.263687] calling proc_execdomains_init+0x0/0x30 @ 1
[ 0.263693] initcall proc_execdomains_init+0x0/0x30 returned 0 after 2 usecs
[ 0.263696] calling register_warn_debugfs+0x0/0x30 @ 1
[ 0.263707] initcall register_warn_debugfs+0x0/0x30 returned 0 after 8 usecs
[ 0.263710] calling cpuhp_sysfs_init+0x0/0xf0 @ 1
[ 0.263724] initcall cpuhp_sysfs_init+0x0/0xf0 returned 0 after 10 usecs
[ 0.263727] calling ioresources_init+0x0/0x50 @ 1
[ 0.263730] initcall ioresources_init+0x0/0x50 returned 0 after 1 usecs
[ 0.263732] calling psi_proc_init+0x0/0x80 @ 1
[ 0.263736] initcall psi_proc_init+0x0/0x80 returned 0 after 2 usecs
[ 0.263738] calling snapshot_device_init+0x0/0x20 @ 1
[ 0.263777] initcall snapshot_device_init+0x0/0x20 returned 0 after 36 usecs
[ 0.263780] calling irq_pm_init_ops+0x0/0x20 @ 1
[ 0.263783] initcall irq_pm_init_ops+0x0/0x20 returned 0 after 0 usecs
[ 0.263785] calling klp_init+0x0/0x30 @ 1
[ 0.263789] initcall klp_init+0x0/0x30 returned 0 after 1 usecs
[ 0.263791] calling proc_modules_init+0x0/0x30 @ 1
[ 0.263795] initcall proc_modules_init+0x0/0x30 returned 0 after 1 usecs
[ 0.263797] calling timer_sysctl_init+0x0/0x30 @ 1
[ 0.263802] initcall timer_sysctl_init+0x0/0x30 returned 0 after 2 usecs
[ 0.263805] calling timekeeping_init_ops+0x0/0x20 @ 1
[ 0.263808] initcall timekeeping_init_ops+0x0/0x20 returned 0 after 0 usecs
[ 0.263810] calling init_clocksource_sysfs+0x0/0x30 @ 1
[ 0.263835] initcall init_clocksource_sysfs+0x0/0x30 returned 0 after 22 usecs
[ 0.263838] calling init_timer_list_procfs+0x0/0x40 @ 1
[ 0.263842] initcall init_timer_list_procfs+0x0/0x40 returned 0 after 0 usecs
[ 0.263844] calling alarmtimer_init+0x0/0xf0 @ 1
[ 0.263873] initcall alarmtimer_init+0x0/0xf0 returned 0 after 26 usecs
[ 0.263877] calling init_posix_timers+0x0/0x30 @ 1
[ 0.263888] initcall init_posix_timers+0x0/0x30 returned 0 after 9 usecs
[ 0.263891] calling clockevents_init_sysfs+0x0/0xd0 @ 1
[ 0.263945] initcall clockevents_init_sysfs+0x0/0xd0 returned 0 after 50 usecs
[ 0.263948] calling kallsyms_init+0x0/0x30 @ 1
[ 0.263951] initcall kallsyms_init+0x0/0x30 returned 0 after 0 usecs
[ 0.263954] calling pid_namespaces_init+0x0/0x70 @ 1
[ 0.263963] initcall pid_namespaces_init+0x0/0x70 returned 0 after 6 usecs
[ 0.263967] calling audit_watch_init+0x0/0x50 @ 1
[ 0.263970] initcall audit_watch_init+0x0/0x50 returned 0 after 0 usecs
[ 0.263973] calling audit_fsnotify_init+0x0/0x50 @ 1
[ 0.263975] initcall audit_fsnotify_init+0x0/0x50 returned 0 after 0 usecs
[ 0.263978] calling audit_tree_init+0x0/0x80 @ 1
[ 0.263982] initcall audit_tree_init+0x0/0x80 returned 0 after 1 usecs
[ 0.263985] calling seccomp_sysctl_init+0x0/0x30 @ 1
[ 0.263990] initcall seccomp_sysctl_init+0x0/0x30 returned 0 after 2 usecs
[ 0.263994] calling utsname_sysctl_init+0x0/0x30 @ 1
[ 0.264001] initcall utsname_sysctl_init+0x0/0x30 returned 0 after 4 usecs
[ 0.264003] calling init_tracepoints+0x0/0x30 @ 1
[ 0.264007] initcall init_tracepoints+0x0/0x30 returned 0 after 1 usecs
[ 0.264008] calling stack_trace_init+0x0/0xb0 @ 1
[ 0.264019] initcall stack_trace_init+0x0/0xb0 returned 0 after 8 usecs
[ 0.264021] calling init_mmio_trace+0x0/0x10 @ 1
[ 0.264025] initcall init_mmio_trace+0x0/0x10 returned 0 after 1 usecs
[ 0.264027] calling init_blk_tracer+0x0/0x60 @ 1
[ 0.264041] initcall init_blk_tracer+0x0/0x60 returned 0 after 12 usecs
[ 0.264043] calling perf_event_sysfs_init+0x0/0xa0 @ 1
[ 0.264167] initcall perf_event_sysfs_init+0x0/0xa0 returned 0 after 121 usecs
[ 0.264171] calling system_trusted_keyring_init+0x0/0x110 @ 1
[ 0.264173] Initialise system trusted keyrings
[ 0.264181] initcall system_trusted_keyring_init+0x0/0x110 returned 0 after 7 usecs
[ 0.264183] calling blacklist_init+0x0/0x100 @ 1
[ 0.264187] Key type blacklist registered
[ 0.264188] initcall blacklist_init+0x0/0x100 returned 0 after 2 usecs
[ 0.264191] calling kswapd_init+0x0/0x60 @ 1
[ 0.264269] initcall kswapd_init+0x0/0x60 returned 0 after 75 usecs
[ 0.264281] calling extfrag_debug_init+0x0/0x60 @ 1
[ 0.264300] initcall extfrag_debug_init+0x0/0x60 returned 0 after 12 usecs
[ 0.264306] calling mm_compute_batch_init+0x0/0x80 @ 1
[ 0.264315] initcall mm_compute_batch_init+0x0/0x80 returned 0 after 1 usecs
[ 0.264323] calling slab_proc_init+0x0/0x30 @ 1
[ 0.264333] initcall slab_proc_init+0x0/0x30 returned 0 after 2 usecs
[ 0.264340] calling workingset_init+0x0/0xc0 @ 1
[ 0.264347] workingset: timestamp_bits=36 max_order=22 bucket_order=0
[ 0.264354] initcall workingset_init+0x0/0xc0 returned 0 after 7 usecs
[ 0.264361] calling proc_vmalloc_init+0x0/0x60 @ 1
[ 0.264375] initcall proc_vmalloc_init+0x0/0x60 returned 0 after 6 usecs
[ 0.264382] calling slab_debugfs_init+0x0/0x70 @ 1
[ 0.264402] initcall slab_debugfs_init+0x0/0x70 returned 0 after 12 usecs
[ 0.264411] calling procswaps_init+0x0/0x30 @ 1
[ 0.264420] initcall procswaps_init+0x0/0x30 returned 0 after 2 usecs
[ 0.264428] calling init_zbud+0x0/0x30 @ 1
[ 0.264433] zbud: loaded
[ 0.264435] initcall init_zbud+0x0/0x30 returned 0 after 2 usecs
[ 0.264441] calling zs_init+0x0/0x50 @ 1
[ 0.264453] initcall zs_init+0x0/0x50 returned 0 after 6 usecs
[ 0.264458] calling ptdump_debugfs_init+0x0/0x30 @ 1
[ 0.264469] initcall ptdump_debugfs_init+0x0/0x30 returned 0 after 2 usecs
[ 0.264476] calling fcntl_init+0x0/0x30 @ 1
[ 0.264487] initcall fcntl_init+0x0/0x30 returned 0 after 5 usecs
[ 0.264493] calling proc_filesystems_init+0x0/0x30 @ 1
[ 0.264500] initcall proc_filesystems_init+0x0/0x30 returned 0 after 1 usecs
[ 0.264507] calling start_dirtytime_writeback+0x0/0x30 @ 1
[ 0.264515] initcall start_dirtytime_writeback+0x0/0x30 returned 0 after 1 usecs
[ 0.264522] calling dio_init+0x0/0x40 @ 1
[ 0.264529] initcall dio_init+0x0/0x40 returned 0 after 2 usecs
[ 0.264536] calling dnotify_init+0x0/0xb0 @ 1
[ 0.264580] initcall dnotify_init+0x0/0xb0 returned 0 after 34 usecs
[ 0.264587] calling fanotify_user_setup+0x0/0x170 @ 1
[ 0.264606] initcall fanotify_user_setup+0x0/0x170 returned 0 after 13 usecs
[ 0.264613] calling userfaultfd_init+0x0/0x70 @ 1
[ 0.264692] initcall userfaultfd_init+0x0/0x70 returned 0 after 71 usecs
[ 0.264699] calling aio_setup+0x0/0xa0 @ 1
[ 0.264751] initcall aio_setup+0x0/0xa0 returned 0 after 40 usecs
[ 0.264759] calling init_devpts_fs+0x0/0x40 @ 1
[ 0.264780] initcall init_devpts_fs+0x0/0x40 returned 0 after 13 usecs
[ 0.264787] calling fuse_init+0x0/0x1f0 @ 1
[ 0.264794] fuse: init (API version 7.40)
[ 0.264860] initcall fuse_init+0x0/0x1f0 returned 0 after 66 usecs
[ 0.264868] calling virtio_fs_init+0x0/0xa0 @ 1
[ 0.264895] initcall virtio_fs_init+0x0/0xa0 returned 0 after 17 usecs
[ 0.264902] calling ipc_init+0x0/0x30 @ 1
[ 0.264920] initcall ipc_init+0x0/0x30 returned 0 after 11 usecs
[ 0.264928] calling ipc_sysctl_init+0x0/0x30 @ 1
[ 0.264967] initcall ipc_sysctl_init+0x0/0x30 returned 0 after 32 usecs
[ 0.264975] calling init_mqueue_fs+0x0/0xc0 @ 1
[ 0.265021] initcall init_mqueue_fs+0x0/0xc0 returned 0 after 39 usecs
[ 0.265029] calling key_proc_init+0x0/0x70 @ 1
[ 0.265040] initcall key_proc_init+0x0/0x70 returned 0 after 3 usecs
[ 0.265048] calling selinux_nf_ip_init+0x0/0x50 @ 1
[ 0.265058] initcall selinux_nf_ip_init+0x0/0x50 returned 0 after 0 usecs
[ 0.265065] calling init_sel_fs+0x0/0x130 @ 1
[ 0.265072] initcall init_sel_fs+0x0/0x130 returned 0 after 0 usecs
[ 0.265079] calling selnl_init+0x0/0xb0 @ 1
[ 0.265106] initcall selnl_init+0x0/0xb0 returned 0 after 19 usecs
[ 0.265113] calling sel_netif_init+0x0/0x40 @ 1
[ 0.265120] initcall sel_netif_init+0x0/0x40 returned 0 after 0 usecs
[ 0.265128] calling sel_netnode_init+0x0/0x40 @ 1
[ 0.265135] initcall sel_netnode_init+0x0/0x40 returned 0 after 0 usecs
[ 0.265143] calling sel_netport_init+0x0/0x40 @ 1
[ 0.265151] initcall sel_netport_init+0x0/0x40 returned 0 after 0 usecs
[ 0.265159] calling aurule_init+0x0/0x30 @ 1
[ 0.265167] initcall aurule_init+0x0/0x30 returned 0 after 0 usecs
[ 0.265174] calling apparmor_nf_ip_init+0x0/0x40 @ 1
[ 0.265257] initcall apparmor_nf_ip_init+0x0/0x40 returned 0 after 75 usecs
[ 0.265268] calling platform_keyring_init+0x0/0x30 @ 1
[ 0.265283] integrity: Platform Keyring initialized
[ 0.265285] initcall platform_keyring_init+0x0/0x30 returned 0 after 10 usecs
[ 0.265294] calling machine_keyring_init+0x0/0x30 @ 1
[ 0.265304] integrity: Machine keyring initialized
[ 0.265306] initcall machine_keyring_init+0x0/0x30 returned 0 after 4 usecs
[ 0.265314] calling bpf_crypto_skcipher_init+0x0/0x20 @ 1
[ 0.265321] initcall bpf_crypto_skcipher_init+0x0/0x20 returned 0 after 0 usecs
[ 0.265327] calling asymmetric_key_init+0x0/0x20 @ 1
[ 0.265333] Key type asymmetric registered
[ 0.265336] initcall asymmetric_key_init+0x0/0x20 returned 0 after 3 usecs
[ 0.265342] calling x509_key_init+0x0/0x20 @ 1
[ 0.265347] Asymmetric key parser 'x509' registered
[ 0.265350] initcall x509_key_init+0x0/0x20 returned 0 after 2 usecs
[ 0.265355] calling crypto_kdf108_init+0x0/0x170 @ 1
[ 0.291028] Freeing initrd memory: 20568K
[ 0.293839] alg: self-tests disabled
[ 0.293876] initcall crypto_kdf108_init+0x0/0x170 returned 0 after 28514 usecs
[ 0.293882] calling blkdev_init+0x0/0x30 @ 1
[ 0.293894] initcall blkdev_init+0x0/0x30 returned 0 after 9 usecs
[ 0.293896] calling proc_genhd_init+0x0/0x50 @ 1
[ 0.293900] initcall proc_genhd_init+0x0/0x50 returned 0 after 2 usecs
[ 0.293902] calling bsg_init+0x0/0xa0 @ 1
[ 0.293910] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
[ 0.293911] initcall bsg_init+0x0/0xa0 returned 0 after 8 usecs
[ 0.293913] calling throtl_init+0x0/0x40 @ 1
[ 0.293931] initcall throtl_init+0x0/0x40 returned 0 after 17 usecs
[ 0.293933] calling ioc_init+0x0/0x20 @ 1
[ 0.293939] initcall ioc_init+0x0/0x20 returned 0 after 4 usecs
[ 0.293941] calling deadline_init+0x0/0x20 @ 1
[ 0.293942] io scheduler mq-deadline registered
[ 0.293943] initcall deadline_init+0x0/0x20 returned 0 after 0 usecs
[ 0.293944] calling io_uring_init+0x0/0xa0 @ 1
[ 0.293959] initcall io_uring_init+0x0/0xa0 returned 0 after 13 usecs
[ 0.293961] calling blake2s_mod_init+0x0/0x20 @ 1
[ 0.294281] initcall blake2s_mod_init+0x0/0x20 returned 0 after 318 usecs
[ 0.294283] calling libcrc32c_mod_init+0x0/0x30 @ 1
[ 0.294301] initcall libcrc32c_mod_init+0x0/0x30 returned 0 after 16 usecs
[ 0.294303] calling percpu_counter_startup+0x0/0x60 @ 1
[ 0.294320] initcall percpu_counter_startup+0x0/0x60 returned 0 after 14 usecs
[ 0.294321] calling alloc_tag_init+0x0/0xd0 @ 1
[ 0.294347] initcall alloc_tag_init+0x0/0xd0 returned 0 after 23 usecs
[ 0.294348] calling digsig_init+0x0/0x40 @ 1
[ 0.294367] initcall digsig_init+0x0/0x40 returned 0 after 17 usecs
[ 0.294369] calling phy_core_init+0x0/0x50 @ 1
[ 0.294377] initcall phy_core_init+0x0/0x50 returned 0 after 6 usecs
[ 0.294379] calling amd_gpio_driver_init+0x0/0x20 @ 1
[ 0.294408] initcall amd_gpio_driver_init+0x0/0x20 returned 0 after 27 usecs
[ 0.294410] calling cnl_pinctrl_driver_init+0x0/0x20 @ 1
[ 0.294416] initcall cnl_pinctrl_driver_init+0x0/0x20 returned 0 after 4 usecs
[ 0.294418] calling icl_pinctrl_driver_init+0x0/0x20 @ 1
[ 0.294424] initcall icl_pinctrl_driver_init+0x0/0x20 returned 0 after 4 usecs
[ 0.294425] calling lbg_pinctrl_driver_init+0x0/0x20 @ 1
[ 0.294431] initcall lbg_pinctrl_driver_init+0x0/0x20 returned 0 after 3 usecs
[ 0.294433] calling tgl_pinctrl_driver_init+0x0/0x20 @ 1
[ 0.294439] initcall tgl_pinctrl_driver_init+0x0/0x20 returned 0 after 4 usecs
[ 0.294441] calling crystalcove_pwm_driver_init+0x0/0x20 @ 1
[ 0.294447] initcall crystalcove_pwm_driver_init+0x0/0x20 returned 0 after 4 usecs
[ 0.294449] calling pcie_portdrv_init+0x0/0x50 @ 1
[ 0.294686] probe of 0000:00:1c.0 returned 0 after 223 usecs
[ 0.294832] probe of 0000:00:1c.4 returned 0 after 143 usecs
[ 0.294956] probe of 0000:00:1d.0 returned 0 after 121 usecs
[ 0.294961] initcall pcie_portdrv_init+0x0/0x50 returned 0 after 510 usecs
[ 0.294964] calling pci_proc_init+0x0/0x80 @ 1
[ 0.294977] initcall pci_proc_init+0x0/0x80 returned 0 after 11 usecs
[ 0.294979] calling pci_hotplug_init+0x0/0x40 @ 1
[ 0.294981] initcall pci_hotplug_init+0x0/0x40 returned 0 after 0 usecs
[ 0.294983] calling shpcd_init+0x0/0x60 @ 1
[ 0.294988] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 0.294989] initcall shpcd_init+0x0/0x60 returned 0 after 4 usecs
[ 0.294991] calling xenfb_init+0x0/0x40 @ 1
[ 0.294993] initcall xenfb_init+0x0/0x40 returned -19 after 0 usecs
[ 0.294995] calling vesafb_driver_init+0x0/0x20 @ 1
[ 0.295004] initcall vesafb_driver_init+0x0/0x20 returned 0 after 6 usecs
[ 0.295006] calling efifb_driver_init+0x0/0x20 @ 1
[ 0.295011] initcall efifb_driver_init+0x0/0x20 returned 0 after 3 usecs
[ 0.295013] calling simplefb_driver_init+0x0/0x20 @ 1
[ 0.295018] initcall simplefb_driver_init+0x0/0x20 returned 0 after 3 usecs
[ 0.295020] calling intel_idle_init+0x0/0xd20 @ 1
[ 0.295188] initcall intel_idle_init+0x0/0xd20 returned 0 after 166 usecs
[ 0.295191] calling ged_driver_init+0x0/0x20 @ 1
[ 0.295201] initcall ged_driver_init+0x0/0x20 returned 0 after 7 usecs
[ 0.295203] calling acpi_processor_driver_init+0x0/0xc0 @ 1
[ 0.295242] probe of cpu0 returned 0 after 34 usecs
[ 0.295266] probe of cpu1 returned 0 after 22 usecs
[ 0.295289] probe of cpu2 returned 0 after 21 usecs
[ 0.295311] probe of cpu3 returned 0 after 20 usecs
[ 0.295314] initcall acpi_processor_driver_init+0x0/0xc0 returned 0 after 107 usecs
[ 0.295317] calling acpi_thermal_init+0x0/0x80 @ 1
[ 0.296964] thermal LNXTHERM:00: registered as thermal_zone0
[ 0.296967] ACPI: thermal: Thermal Zone [THM] (25 C)
[ 0.296973] probe of LNXTHERM:00 returned 0 after 1531 usecs
[ 0.296977] initcall acpi_thermal_init+0x0/0x80 returned 0 after 1658 usecs
[ 0.296981] calling acpi_hed_driver_init+0x0/0x20 @ 1
[ 0.297004] initcall acpi_hed_driver_init+0x0/0x20 returned 0 after 21 usecs
[ 0.297006] calling bgrt_init+0x0/0xd0 @ 1
[ 0.297015] initcall bgrt_init+0x0/0xd0 returned 0 after 7 usecs
[ 0.297016] calling erst_init+0x0/0x390 @ 1
[ 0.297018] initcall erst_init+0x0/0x390 returned 0 after 0 usecs
[ 0.297020] calling extlog_init+0x0/0x3b0 @ 1
[ 0.297021] initcall extlog_init+0x0/0x3b0 returned -19 after 0 usecs
[ 0.297023] calling intel_crc_pmic_opregion_driver_init+0x0/0x20 @ 1
[ 0.297029] initcall intel_crc_pmic_opregion_driver_init+0x0/0x20 returned 0 after 5 usecs
[ 0.297031] calling intel_chtcrc_pmic_opregion_driver_init+0x0/0x20 @ 1
[ 0.297036] initcall intel_chtcrc_pmic_opregion_driver_init+0x0/0x20 returned 0 after 3 usecs
[ 0.297037] calling intel_cht_wc_pmic_opregion_driver_init+0x0/0x20 @ 1
[ 0.297043] initcall intel_cht_wc_pmic_opregion_driver_init+0x0/0x20 returned 0 after 4 usecs
[ 0.297044] calling gpio_clk_driver_init+0x0/0x20 @ 1
[ 0.297049] initcall gpio_clk_driver_init+0x0/0x20 returned 0 after 3 usecs
[ 0.297051] calling fch_clk_driver_init+0x0/0x20 @ 1
[ 0.297055] initcall fch_clk_driver_init+0x0/0x20 returned 0 after 2 usecs
[ 0.297057] calling plt_clk_driver_init+0x0/0x20 @ 1
[ 0.297062] initcall plt_clk_driver_init+0x0/0x20 returned 0 after 3 usecs
[ 0.297063] calling virtio_mmio_init+0x0/0x20 @ 1
[ 0.297069] initcall virtio_mmio_init+0x0/0x20 returned 0 after 4 usecs
[ 0.297071] calling virtio_pci_driver_init+0x0/0x20 @ 1
[ 0.297077] initcall virtio_pci_driver_init+0x0/0x20 returned 0 after 4 usecs
[ 0.297079] calling virtio_balloon_driver_init+0x0/0x20 @ 1
[ 0.297083] initcall virtio_balloon_driver_init+0x0/0x20 returned 0 after 3 usecs
[ 0.297085] calling xenbus_probe_initcall+0x0/0xb0 @ 1
[ 0.297088] initcall xenbus_probe_initcall+0x0/0xb0 returned -19 after 1 usecs
[ 0.297090] calling xenbus_init+0x0/0x50 @ 1
[ 0.297092] initcall xenbus_init+0x0/0x50 returned -19 after 0 usecs
[ 0.297094] calling xenbus_backend_init+0x0/0x50 @ 1
[ 0.297095] initcall xenbus_backend_init+0x0/0x50 returned -19 after 0 usecs
[ 0.297097] calling hyper_sysfs_init+0x0/0x230 @ 1
[ 0.297099] initcall hyper_sysfs_init+0x0/0x230 returned -19 after 0 usecs
[ 0.297100] calling hypervisor_subsys_init+0x0/0x30 @ 1
[ 0.297102] initcall hypervisor_subsys_init+0x0/0x30 returned -19 after 0 usecs
[ 0.297104] calling platform_driver_init+0x0/0x20 @ 1
[ 0.297109] initcall platform_driver_init+0x0/0x20 returned 0 after 3 usecs
[ 0.297111] calling xen_late_init_mcelog+0x0/0x70 @ 1
[ 0.297113] initcall xen_late_init_mcelog+0x0/0x70 returned -19 after 0 usecs
[ 0.297114] calling n_null_init+0x0/0x20 @ 1
[ 0.297116] initcall n_null_init+0x0/0x20 returned 0 after 0 usecs
[ 0.297118] calling pty_init+0x0/0x230 @ 1
[ 0.297181] initcall pty_init+0x0/0x230 returned 0 after 61 usecs
[ 0.297183] calling sysrq_init+0x0/0x70 @ 1
[ 0.297187] initcall sysrq_init+0x0/0x70 returned 0 after 1 usecs
[ 0.297188] calling xen_hvc_init+0x0/0x220 @ 1
[ 0.297190] initcall xen_hvc_init+0x0/0x220 returned -19 after 0 usecs
[ 0.297192] calling serial8250_init+0x0/0x1d0 @ 1
[ 0.297194] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[ 0.297241] probe of serial8250:0 returned 0 after 2 usecs
[ 0.297251] probe of serial8250:0.0 returned 0 after 2 usecs
[ 0.297364] probe of serial8250:0.1 returned 0 after 2 usecs
[ 0.297453] probe of serial8250:0.2 returned 0 after 2 usecs
[ 0.297540] probe of serial8250:0.3 returned 0 after 2 usecs
[ 0.297626] probe of serial8250 returned 0 after 2 usecs
[ 0.297629] initcall serial8250_init+0x0/0x1d0 returned 0 after 434 usecs
[ 0.297631] calling dw8250_platform_driver_init+0x0/0x20 @ 1
[ 0.297640] initcall dw8250_platform_driver_init+0x0/0x20 returned 0 after 7 usecs
[ 0.297642] calling mid8250_pci_driver_init+0x0/0x20 @ 1
[ 0.297648] initcall mid8250_pci_driver_init+0x0/0x20 returned 0 after 3 usecs
[ 0.297650] calling serial_pci_driver_init+0x0/0x20 @ 1
[ 0.297662] initcall serial_pci_driver_init+0x0/0x20 returned 0 after 10 usecs
[ 0.297664] calling pericom8250_pci_driver_init+0x0/0x20 @ 1
[ 0.297670] initcall pericom8250_pci_driver_init+0x0/0x20 returned 0 after 3 usecs
[ 0.297672] calling random_sysctls_init+0x0/0x30 @ 1
[ 0.297677] initcall random_sysctls_init+0x0/0x30 returned 0 after 3 usecs
[ 0.297679] calling virtio_console_init+0x0/0xe0 @ 1
[ 0.297689] initcall virtio_console_init+0x0/0xe0 returned 0 after 8 usecs
[ 0.297692] calling hpet_init+0x0/0x90 @ 1
[ 0.297814] hpet_acpi_add: no address or irqs in _CRS
[ 0.297817] probe of PNP0103:00 returned 19 after 69 usecs
[ 0.297829] initcall hpet_init+0x0/0x90 returned 0 after 135 usecs
[ 0.297832] calling init_tis+0x0/0xf0 @ 1
[ 0.309969] tpm_tis MSFT0101:00: 2.0 TPM (device-id 0xFE, rev-id 4)
[ 0.346251] probe of MSFT0101:00 returned 0 after 48414 usecs
[ 0.346273] initcall init_tis+0x0/0xf0 returned 0 after 48439 usecs
[ 0.346279] calling crb_acpi_driver_init+0x0/0x20 @ 1
[ 0.346320] probe of MSFT0101:00 returned 19 after 7 usecs
[ 0.346326] initcall crb_acpi_driver_init+0x0/0x20 returned 0 after 44 usecs
[ 0.346329] calling virtio_iommu_drv_init+0x0/0x20 @ 1
[ 0.346336] initcall virtio_iommu_drv_init+0x0/0x20 returned 0 after 3 usecs
[ 0.346338] calling cn_proc_init+0x0/0x40 @ 1
[ 0.346341] initcall cn_proc_init+0x0/0x40 returned 0 after 0 usecs
[ 0.346343] calling topology_sysfs_init+0x0/0x30 @ 1
[ 0.346368] initcall topology_sysfs_init+0x0/0x30 returned 0 after 22 usecs
[ 0.346371] calling cacheinfo_sysfs_init+0x0/0x30 @ 1
[ 0.346613] initcall cacheinfo_sysfs_init+0x0/0x30 returned 0 after 239 usecs
[ 0.346620] calling devcoredump_init+0x0/0x20 @ 1
[ 0.346629] initcall devcoredump_init+0x0/0x20 returned 0 after 5 usecs
[ 0.346631] calling crystal_cove_i2c_driver_init+0x0/0x20 @ 1
[ 0.346639] initcall crystal_cove_i2c_driver_init+0x0/0x20 returned 0 after 5 usecs
[ 0.346643] calling cht_wc_driver_init+0x0/0x20 @ 1
[ 0.346648] initcall cht_wc_driver_init+0x0/0x20 returned 0 after 2 usecs
[ 0.346651] calling cxl_port_driver_init+0x0/0x20 @ 1
[ 0.346656] initcall cxl_port_driver_init+0x0/0x20 returned 0 after 3 usecs
[ 0.346659] calling spidev_init+0x0/0x90 @ 1
[ 0.346669] initcall spidev_init+0x0/0x90 returned 0 after 7 usecs
[ 0.346671] calling blackhole_netdev_init+0x0/0x80 @ 1
[ 0.346683] initcall blackhole_netdev_init+0x0/0x80 returned 0 after 9 usecs
[ 0.346687] calling fixed_mdio_bus_init+0x0/0x100 @ 1
[ 0.346754] initcall fixed_mdio_bus_init+0x0/0x100 returned 0 after 64 usecs
[ 0.346757] calling virtio_net_driver_init+0x0/0xb0 @ 1
[ 0.346763] initcall virtio_net_driver_init+0x0/0xb0 returned 0 after 3 usecs
[ 0.346766] calling net_failover_init+0x0/0x10 @ 1
[ 0.346768] initcall net_failover_init+0x0/0x10 returned 0 after 0 usecs
[ 0.346771] calling i8042_init+0x0/0x7f0 @ 1
[ 0.346800] probe of 00:03 returned 0 after 7 usecs
[ 0.346809] probe of 00:04 returned 0 after 3 usecs
[ 0.346812] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[ 0.348334] i8042: Warning: Keylock active
[ 0.350554] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 0.350558] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 0.350561] probe of i8042 returned 0 after 3722 usecs
[ 0.350563] initcall i8042_init+0x0/0x7f0 returned 0 after 3789 usecs
[ 0.350566] calling input_leds_init+0x0/0x20 @ 1
[ 0.350569] initcall input_leds_init+0x0/0x20 returned 0 after 0 usecs
[ 0.350572] calling mousedev_init+0x0/0xe0 @ 1
[ 0.350653] mousedev: PS/2 mouse device common for all mice
[ 0.350653] initcall mousedev_init+0x0/0xe0 returned 0 after 79 usecs
[ 0.350656] calling atkbd_init+0x0/0x30 @ 1
[ 0.350664] initcall atkbd_init+0x0/0x30 returned 0 after 6 usecs
[ 0.350666] calling xenkbd_init+0x0/0x40 @ 1
[ 0.350667] initcall xenkbd_init+0x0/0x40 returned -19 after 0 usecs
[ 0.350668] calling cmos_init+0x0/0x90 @ 1
[ 0.350675] rtc_cmos 00:01: RTC can wake from S4
[ 0.351431] probe of alarmtimer.0.auto returned 0 after 2 usecs
[ 0.351443] rtc_cmos 00:01: registered as rtc0
[ 0.351582] rtc_cmos 00:01: setting system clock to 2024-05-30T08:05:25 UTC (1717056325)
[ 0.351603] rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram
[ 0.351606] probe of 00:01 returned 0 after 935 usecs
[ 0.351610] initcall cmos_init+0x0/0x90 returned 0 after 940 usecs
[ 0.351612] calling thermal_throttle_init_device+0x0/0x50 @ 1
[ 0.351693] initcall thermal_throttle_init_device+0x0/0x50 returned 0 after 79 usecs
[ 0.351695] calling amd_pstate_init+0x0/0x270 @ 1
[ 0.351696] initcall amd_pstate_init+0x0/0x270 returned -19 after 0 usecs
[ 0.351698] calling intel_pstate_init+0x0/0x8e0 @ 1
[ 0.351701] intel_pstate: Intel P-state driver initializing
[ 0.351862] intel_pstate: HWP enabled
[ 0.351862] initcall intel_pstate_init+0x0/0x8e0 returned 0 after 163 usecs
[ 0.351864] calling haltpoll_init+0x0/0x150 @ 1
[ 0.351866] initcall haltpoll_init+0x0/0x150 returned -19 after 0 usecs
[ 0.351868] calling ledtrig_cpu_init+0x0/0xf0 @ 1
[ 0.351894] ledtrig-cpu: registered to indicate activity on CPUs
[ 0.351896] initcall ledtrig_cpu_init+0x0/0xf0 returned 0 after 26 usecs
[ 0.351899] calling ledtrig_panic_init+0x0/0x50 @ 1
[ 0.351902] initcall ledtrig_panic_init+0x0/0x50 returned 0 after 1 usecs
[ 0.351904] calling dmi_sysfs_init+0x0/0x140 @ 1
[ 0.352109] initcall dmi_sysfs_init+0x0/0x140 returned 0 after 202 usecs
[ 0.352111] calling sysfb_init+0x0/0x1a0 @ 1
[ 0.352136] efifb: probing for efifb
[ 0.352146] efifb: framebuffer at 0x90000000, using 22500k, total 22500k
[ 0.352147] efifb: mode is 3200x1800x32, linelength=12800, pages=1
[ 0.352148] efifb: scrolling: redraw
[ 0.352149] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[ 0.352229] Console: switching to colour frame buffer device 200x56
[ 0.352520] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
[ 0.352553] probe of serio0 returned 0 after 1180 usecs
[ 0.355641] fb0: EFI VGA frame buffer device
[ 0.355645] probe of efi-framebuffer.0 returned 0 after 3510 usecs
[ 0.355647] initcall sysfb_init+0x0/0x1a0 returned 0 after 3534 usecs
[ 0.355649] calling coreboot_table_driver_init+0x0/0x50 @ 1
[ 0.355674] initcall coreboot_table_driver_init+0x0/0x50 returned 0 after 22 usecs
[ 0.355676] calling framebuffer_driver_init+0x0/0x20 @ 1
[ 0.355680] initcall framebuffer_driver_init+0x0/0x20 returned 0 after 2 usecs
[ 0.355681] calling esrt_sysfs_init+0x0/0x360 @ 1
[ 0.355691] initcall esrt_sysfs_init+0x0/0x360 returned 0 after 8 usecs
[ 0.355693] calling pmc_atom_init+0x0/0x2c0 @ 1
[ 0.355700] initcall pmc_atom_init+0x0/0x2c0 returned -19 after 5 usecs
[ 0.355702] calling vmgenid_plaform_driver_init+0x0/0x20 @ 1
[ 0.355708] initcall vmgenid_plaform_driver_init+0x0/0x20 returned 0 after 4 usecs
[ 0.355710] calling cxl_pmu_init+0x0/0x80 @ 1
[ 0.355715] initcall cxl_pmu_init+0x0/0x80 returned 0 after 2 usecs
[ 0.355716] calling sock_diag_init+0x0/0x40 @ 1
[ 0.355727] initcall sock_diag_init+0x0/0x40 returned 0 after 8 usecs
[ 0.355729] calling failover_init+0x0/0x20 @ 1
[ 0.355733] initcall failover_init+0x0/0x20 returned 0 after 1 usecs
[ 0.355734] calling blackhole_init+0x0/0x20 @ 1
[ 0.355737] initcall blackhole_init+0x0/0x20 returned 0 after 0 usecs
[ 0.355739] calling fq_codel_module_init+0x0/0x20 @ 1
[ 0.355741] initcall fq_codel_module_init+0x0/0x20 returned 0 after 0 usecs
[ 0.355743] calling gre_offload_init+0x0/0x60 @ 1
[ 0.355746] initcall gre_offload_init+0x0/0x60 returned 0 after 0 usecs
[ 0.355748] calling sysctl_ipv4_init+0x0/0x60 @ 1
[ 0.355791] initcall sysctl_ipv4_init+0x0/0x60 returned 0 after 40 usecs
[ 0.355793] calling cubictcp_register+0x0/0x90 @ 1
[ 0.355798] initcall cubictcp_register+0x0/0x90 returned 0 after 2 usecs
[ 0.355800] calling inet6_init+0x0/0x3b0 @ 1
[ 0.355820] NET: Registered PF_INET6 protocol family
[ 0.358044] probe of serio1 returned 19 after 5489 usecs
[ 0.359089] Segment Routing with IPv6
[ 0.359102] In-situ OAM (IOAM) with IPv6
[ 0.359122] initcall inet6_init+0x0/0x3b0 returned 0 after 3318 usecs
[ 0.359128] calling mip6_init+0x0/0xc0 @ 1
[ 0.359130] mip6: Mobile IPv6
[ 0.359131] initcall mip6_init+0x0/0xc0 returned 0 after 0 usecs
[ 0.359133] calling packet_init+0x0/0x90 @ 1
[ 0.359137] NET: Registered PF_PACKET protocol family
[ 0.359138] initcall packet_init+0x0/0x90 returned 0 after 3 usecs
[ 0.359139] calling strp_dev_init+0x0/0x40 @ 1
[ 0.359160] initcall strp_dev_init+0x0/0x40 returned 0 after 19 usecs
[ 0.359162] calling dcbnl_init+0x0/0x50 @ 1
[ 0.359165] initcall dcbnl_init+0x0/0x50 returned 0 after 0 usecs
[ 0.359166] calling mpls_gso_init+0x0/0x30 @ 1
[ 0.359167] mpls_gso: MPLS GSO support
[ 0.359168] initcall mpls_gso_init+0x0/0x30 returned 0 after 0 usecs
[ 0.359170] calling pm_check_save_msr+0x0/0xc0 @ 1
[ 0.359178] initcall pm_check_save_msr+0x0/0xc0 returned 0 after 5 usecs
[ 0.359180] calling mcheck_init_device+0x0/0x160 @ 1
[ 0.359356] initcall mcheck_init_device+0x0/0x160 returned 0 after 167 usecs
[ 0.359385] calling kernel_do_mounts_initrd_sysctls_init+0x0/0x30 @ 1
[ 0.359390] initcall kernel_do_mounts_initrd_sysctls_init+0x0/0x30 returned 0 after 2 usecs
[ 0.359392] calling tboot_late_init+0x0/0x390 @ 1
[ 0.359394] initcall tboot_late_init+0x0/0x390 returned 0 after 0 usecs
[ 0.359395] calling sld_mitigate_sysctl_init+0x0/0x30 @ 1
[ 0.359398] initcall sld_mitigate_sysctl_init+0x0/0x30 returned 0 after 1 usecs
[ 0.359400] calling intel_epb_init+0x0/0xa0 @ 1
[ 0.359405] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[ 0.359466] initcall intel_epb_init+0x0/0xa0 returned 0 after 64 usecs
[ 0.359468] calling mcheck_late_init+0x0/0x90 @ 1
[ 0.359475] initcall mcheck_late_init+0x0/0x90 returned 0 after 4 usecs
[ 0.359476] calling severities_debugfs_init+0x0/0x30 @ 1
[ 0.359479] initcall severities_debugfs_init+0x0/0x30 returned 0 after 0 usecs
[ 0.359480] calling microcode_init+0x0/0x1f0 @ 1
[ 0.359482] microcode: Current revision: 0x000000f4
[ 0.359483] microcode: Updated early from: 0x000000f0
[ 0.359561] initcall microcode_init+0x0/0x1f0 returned 0 after 78 usecs
[ 0.359563] calling resctrl_late_init+0x0/0x7b0 @ 1
[ 0.359565] initcall resctrl_late_init+0x0/0x7b0 returned -19 after 0 usecs
[ 0.359568] calling cpu_init_debugfs+0x0/0xf0 @ 1
[ 0.359574] initcall cpu_init_debugfs+0x0/0xf0 returned 0 after 5 usecs
[ 0.359576] calling hpet_insert_resource+0x0/0x30 @ 1
[ 0.359580] initcall hpet_insert_resource+0x0/0x30 returned 0 after 1 usecs
[ 0.359582] calling start_sync_check_timer+0x0/0x60 @ 1
[ 0.359585] initcall start_sync_check_timer+0x0/0x60 returned 0 after 0 usecs
[ 0.359587] calling update_mp_table+0x0/0x650 @ 1
[ 0.359590] initcall update_mp_table+0x0/0x650 returned 0 after 0 usecs
[ 0.359592] calling lapic_insert_resource+0x0/0x50 @ 1
[ 0.359593] initcall lapic_insert_resource+0x0/0x50 returned 0 after 0 usecs
[ 0.359595] calling print_ipi_mode+0x0/0x40 @ 1
[ 0.359596] IPI shorthand broadcast: enabled
[ 0.359597] initcall print_ipi_mode+0x0/0x40 returned 0 after 1 usecs
[ 0.359598] calling print_ICs+0x0/0x1d0 @ 1
[ 0.359600] initcall print_ICs+0x0/0x1d0 returned 0 after 0 usecs
[ 0.359601] calling setup_efi_kvm_sev_migration+0x0/0x1c0 @ 1
[ 0.359603] initcall setup_efi_kvm_sev_migration+0x0/0x1c0 returned 0 after 0 usecs
[ 0.359605] calling create_tlb_single_page_flush_ceiling+0x0/0x30 @ 1
[ 0.359609] initcall create_tlb_single_page_flush_ceiling+0x0/0x30 returned 0 after 1 usecs
[ 0.359611] calling pat_memtype_list_init+0x0/0x40 @ 1
[ 0.359613] initcall pat_memtype_list_init+0x0/0x40 returned 0 after 0 usecs
[ 0.359615] calling create_init_pkru_value+0x0/0x40 @ 1
[ 0.359617] initcall create_init_pkru_value+0x0/0x40 returned 0 after 0 usecs
[ 0.359620] calling kernel_panic_sysctls_init+0x0/0x30 @ 1
[ 0.359625] initcall kernel_panic_sysctls_init+0x0/0x30 returned 0 after 2 usecs
[ 0.359627] calling kernel_panic_sysfs_init+0x0/0x30 @ 1
[ 0.359631] initcall kernel_panic_sysfs_init+0x0/0x30 returned 0 after 1 usecs
[ 0.359633] calling kernel_exit_sysctls_init+0x0/0x30 @ 1
[ 0.359636] initcall kernel_exit_sysctls_init+0x0/0x30 returned 0 after 0 usecs
[ 0.359639] calling kernel_exit_sysfs_init+0x0/0x30 @ 1
[ 0.359640] initcall kernel_exit_sysfs_init+0x0/0x30 returned 0 after 0 usecs
[ 0.359642] calling param_sysfs_builtin_init+0x0/0x200 @ 1
[ 0.360482] initcall param_sysfs_builtin_init+0x0/0x200 returned 0 after 838 usecs
[ 0.360485] calling reboot_ksysfs_init+0x0/0x80 @ 1
[ 0.360491] initcall reboot_ksysfs_init+0x0/0x80 returned 0 after 4 usecs
[ 0.360492] calling sched_core_sysctl_init+0x0/0x30 @ 1
[ 0.360495] initcall sched_core_sysctl_init+0x0/0x30 returned 0 after 1 usecs
[ 0.360497] calling sched_fair_sysctl_init+0x0/0x30 @ 1
[ 0.360499] initcall sched_fair_sysctl_init+0x0/0x30 returned 0 after 1 usecs
[ 0.360501] calling sched_rt_sysctl_init+0x0/0x30 @ 1
[ 0.360503] initcall sched_rt_sysctl_init+0x0/0x30 returned 0 after 1 usecs
[ 0.360505] calling sched_dl_sysctl_init+0x0/0x30 @ 1
[ 0.360507] initcall sched_dl_sysctl_init+0x0/0x30 returned 0 after 0 usecs
[ 0.360508] calling sched_clock_init_late+0x0/0xb0 @ 1
[ 0.360510] sched_clock: Marking stable (353575554, 5985045)->(370567449, -11006850)
[ 0.360565] initcall sched_clock_init_late+0x0/0xb0 returned 0 after 55 usecs
[ 0.360567] calling sched_init_debug+0x0/0x220 @ 1
[ 0.360584] initcall sched_init_debug+0x0/0x220 returned 0 after 14 usecs
[ 0.360585] calling sched_energy_aware_sysctl_init+0x0/0x30 @ 1
[ 0.360588] initcall sched_energy_aware_sysctl_init+0x0/0x30 returned 0 after 0 usecs
[ 0.360590] calling cpu_latency_qos_init+0x0/0x40 @ 1
[ 0.360619] initcall cpu_latency_qos_init+0x0/0x40 returned 0 after 27 usecs
[ 0.360621] calling pm_debugfs_init+0x0/0x30 @ 1
[ 0.360624] initcall pm_debugfs_init+0x0/0x30 returned 0 after 1 usecs
[ 0.360625] calling printk_late_init+0x0/0x170 @ 1
[ 0.360631] initcall printk_late_init+0x0/0x170 returned 0 after 3 usecs
[ 0.360632] calling init_srcu_module_notifier+0x0/0x30 @ 1
[ 0.360635] initcall init_srcu_module_notifier+0x0/0x30 returned 0 after 1 usecs
[ 0.360637] calling swiotlb_create_default_debugfs+0x0/0xa0 @ 1
[ 0.360642] initcall swiotlb_create_default_debugfs+0x0/0xa0 returned 0 after 2 usecs
[ 0.360644] calling module_decompress_sysfs_init+0x0/0x40 @ 1
[ 0.360647] initcall module_decompress_sysfs_init+0x0/0x40 returned 0 after 0 usecs
[ 0.360649] calling tmigr_init+0x0/0x160 @ 1
[ 0.360651] Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level
[ 0.360692] initcall tmigr_init+0x0/0x160 returned 0 after 41 usecs
[ 0.360694] calling tk_debug_sleep_time_init+0x0/0x30 @ 1
[ 0.360697] initcall tk_debug_sleep_time_init+0x0/0x30 returned 0 after 0 usecs
[ 0.360699] calling bpf_ksym_iter_register+0x0/0x30 @ 1
[ 0.360702] initcall bpf_ksym_iter_register+0x0/0x30 returned 0 after 0 usecs
[ 0.360704] calling kernel_acct_sysctls_init+0x0/0x30 @ 1
[ 0.360707] initcall kernel_acct_sysctls_init+0x0/0x30 returned 0 after 0 usecs
[ 0.360709] calling kexec_core_sysctl_init+0x0/0x30 @ 1
[ 0.360712] initcall kexec_core_sysctl_init+0x0/0x30 returned 0 after 1 usecs
[ 0.360714] calling bpf_rstat_kfunc_init+0x0/0x20 @ 1
[ 0.360718] initcall bpf_rstat_kfunc_init+0x0/0x20 returned 0 after 1 usecs
[ 0.360720] calling debugfs_kprobe_init+0x0/0x80 @ 1
[ 0.360725] initcall debugfs_kprobe_init+0x0/0x80 returned 0 after 2 usecs
[ 0.360727] calling kernel_delayacct_sysctls_init+0x0/0x30 @ 1
[ 0.360731] initcall kernel_delayacct_sysctls_init+0x0/0x30 returned 0 after 0 usecs
[ 0.360733] calling taskstats_init+0x0/0x40 @ 1
[ 0.360739] registered taskstats version 1
[ 0.360740] initcall taskstats_init+0x0/0x40 returned 0 after 4 usecs
[ 0.360742] calling ftrace_sysctl_init+0x0/0x30 @ 1
[ 0.360744] initcall ftrace_sysctl_init+0x0/0x30 returned 0 after 0 usecs
[ 0.360746] calling bpf_key_sig_kfuncs_init+0x0/0x20 @ 1
[ 0.360748] initcall bpf_key_sig_kfuncs_init+0x0/0x20 returned 0 after 1 usecs
[ 0.360750] calling bpf_fs_kfuncs_init+0x0/0x20 @ 1
[ 0.360752] initcall bpf_fs_kfuncs_init+0x0/0x20 returned 0 after 0 usecs
[ 0.360753] calling bpf_kprobe_multi_kfuncs_init+0x0/0x20 @ 1
[ 0.360756] initcall bpf_kprobe_multi_kfuncs_init+0x0/0x20 returned 0 after 0 usecs
[ 0.360757] calling bpf_global_ma_init+0x0/0x30 @ 1
[ 0.360778] initcall bpf_global_ma_init+0x0/0x30 returned 0 after 19 usecs
[ 0.360780] calling bpf_syscall_sysctl_init+0x0/0x30 @ 1
[ 0.360783] initcall bpf_syscall_sysctl_init+0x0/0x30 returned 0 after 1 usecs
[ 0.360785] calling unbound_reg_init+0x0/0x20 @ 1
[ 0.360786] initcall unbound_reg_init+0x0/0x20 returned 0 after 0 usecs
[ 0.360788] calling kfunc_init+0x0/0xe0 @ 1
[ 0.360804] initcall kfunc_init+0x0/0xe0 returned 0 after 14 usecs
[ 0.360806] calling bpf_map_iter_init+0x0/0x40 @ 1
[ 0.360808] initcall bpf_map_iter_init+0x0/0x40 returned 0 after 0 usecs
[ 0.360810] calling init_subsystem+0x0/0x20 @ 1
[ 0.360814] initcall init_subsystem+0x0/0x20 returned 0 after 1 usecs
[ 0.360817] calling task_iter_init+0x0/0xd0 @ 1
[ 0.360819] initcall task_iter_init+0x0/0xd0 returned 0 after 0 usecs
[ 0.360820] calling bpf_prog_iter_init+0x0/0x30 @ 1
[ 0.360822] initcall bpf_prog_iter_init+0x0/0x30 returned 0 after 0 usecs
[ 0.360824] calling bpf_link_iter_init+0x0/0x30 @ 1
[ 0.360825] initcall bpf_link_iter_init+0x0/0x30 returned 0 after 0 usecs
[ 0.360827] calling init_trampolines+0x0/0x20 @ 1
[ 0.360829] initcall init_trampolines+0x0/0x20 returned 0 after 0 usecs
[ 0.360831] calling kfunc_init+0x0/0x20 @ 1
[ 0.360834] initcall kfunc_init+0x0/0x20 returned 0 after 1 usecs
[ 0.360836] calling bpf_cgroup_iter_init+0x0/0x30 @ 1
[ 0.360837] initcall bpf_cgroup_iter_init+0x0/0x30 returned 0 after 0 usecs
[ 0.360839] calling cpumask_kfunc_init+0x0/0xb0 @ 1
[ 0.360858] initcall cpumask_kfunc_init+0x0/0xb0 returned 0 after 17 usecs
[ 0.360860] calling crypto_kfunc_init+0x0/0xb0 @ 1
[ 0.360867] initcall crypto_kfunc_init+0x0/0xb0 returned 0 after 4 usecs
[ 0.360869] calling load_system_certificate_list+0x0/0x40 @ 1
[ 0.360871] Loading compiled-in X.509 certificates
[ 0.360872] initcall load_system_certificate_list+0x0/0x40 returned 0 after 0 usecs
[ 0.360874] calling init_lru_gen+0x0/0x70 @ 1
[ 0.360878] initcall init_lru_gen+0x0/0x70 returned 0 after 2 usecs
[ 0.360880] calling fault_around_debugfs+0x0/0x30 @ 1
[ 0.360883] initcall fault_around_debugfs+0x0/0x30 returned 0 after 0 usecs
[ 0.360885] calling slab_sysfs_init+0x0/0x100 @ 1
[ 0.361970] initcall slab_sysfs_init+0x0/0x100 returned 0 after 1082 usecs
[ 0.361973] calling max_swapfiles_check+0x0/0x10 @ 1
[ 0.361976] initcall max_swapfiles_check+0x0/0x10 returned 0 after 0 usecs
[ 0.361978] calling zswap_init+0x0/0x20 @ 1
[ 0.361980] initcall zswap_init+0x0/0x20 returned 0 after 0 usecs
[ 0.361983] calling hugetlb_vmemmap_init+0x0/0x80 @ 1
[ 0.361993] initcall hugetlb_vmemmap_init+0x0/0x80 returned 0 after 8 usecs
[ 0.361995] calling mempolicy_sysfs_init+0x0/0x2c0 @ 1
[ 0.361999] initcall mempolicy_sysfs_init+0x0/0x2c0 returned 0 after 2 usecs
[ 0.362001] calling kfence_debugfs_init+0x0/0x20 @ 1
[ 0.362004] initcall kfence_debugfs_init+0x0/0x20 returned 0 after 0 usecs
[ 0.362006] calling memory_tier_late_init+0x0/0x80 @ 1
[ 0.362100] Demotion targets for Node 0: null
[ 0.362103] initcall memory_tier_late_init+0x0/0x80 returned 0 after 95 usecs
[ 0.362106] calling split_huge_pages_debugfs+0x0/0x30 @ 1
[ 0.362110] initcall split_huge_pages_debugfs+0x0/0x30 returned 0 after 2 usecs
[ 0.362112] calling kmemleak_late_init+0x0/0x90 @ 1
[ 0.362116] initcall kmemleak_late_init+0x0/0x90 returned -12 after 2 usecs
[ 0.362118] calling check_early_ioremap_leak+0x0/0x50 @ 1
[ 0.362120] initcall check_early_ioremap_leak+0x0/0x50 returned 0 after 0 usecs
[ 0.362121] calling set_hardened_usercopy+0x0/0x30 @ 1
[ 0.362123] initcall set_hardened_usercopy+0x0/0x30 returned 1 after 0 usecs
[ 0.362125] calling fscrypt_init+0x0/0x90 @ 1
[ 0.362217] Key type .fscrypt registered
[ 0.362219] Key type fscrypt-provisioning registered
[ 0.362220] initcall fscrypt_init+0x0/0x90 returned 0 after 92 usecs
[ 0.362222] calling fsverity_init+0x0/0x50 @ 1
[ 0.362243] initcall fsverity_init+0x0/0x50 returned 0 after 18 usecs
[ 0.362245] calling pstore_init+0x0/0x60 @ 1
[ 0.362250] initcall pstore_init+0x0/0x60 returned 0 after 3 usecs
[ 0.362252] calling init_root_keyring+0x0/0x20 @ 1
[ 0.362260] initcall init_root_keyring+0x0/0x20 returned 0 after 5 usecs
[ 0.362262] calling init_encrypted+0x0/0xd0 @ 1
[ 0.366526] calling cryptd_init+0x0/0x1000 [cryptd] @ 88
[ 0.366561] cryptd: max_cpu_qlen set to 1000
[ 0.366563] initcall cryptd_init+0x0/0x1000 [cryptd] returned 0 after 31 usecs
[ 0.367347] calling aesni_init+0x0/0x1000 [aesni_intel] @ 88
[ 0.367352] AVX2 version of gcm_enc/dec engaged.
[ 0.367377] AES CTR mode by8 optimization enabled
[ 0.367404] initcall aesni_init+0x0/0x1000 [aesni_intel] returned 0 after 52 usecs
[ 0.376536] Key type encrypted registered
[ 0.376539] initcall init_encrypted+0x0/0xd0 returned 0 after 9187 usecs
[ 0.376545] calling init_profile_hash+0x0/0x80 @ 1
[ 0.376549] AppArmor: AppArmor sha256 policy hashing enabled
[ 0.376550] initcall init_profile_hash+0x0/0x80 returned 0 after 2 usecs
[ 0.376552] calling integrity_fs_init+0x0/0x60 @ 1
[ 0.376558] initcall integrity_fs_init+0x0/0x60 returned 0 after 3 usecs
[ 0.376561] calling load_uefi_certs+0x0/0x450 @ 1
[ 0.376784] integrity: Loading X.509 certificate: UEFI:db
[ 0.376811] integrity: Loaded X.509 cert 'Dell Inc. UEFI DB: 5ddb772dc880660055ba0bc131886bb630a639e7'
[ 0.376812] integrity: Loading X.509 certificate: UEFI:db
[ 0.376828] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[ 0.376828] integrity: Loading X.509 certificate: UEFI:db
[ 0.376842] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[ 0.377107] initcall load_uefi_certs+0x0/0x450 returned 0 after 543 usecs
[ 0.377111] calling init_ima+0x0/0xc0 @ 1
[ 0.377115] ima: Allocated hash algorithm: sha1
[ 0.408624] ima: No architecture policies found
[ 0.408656] initcall init_ima+0x0/0xc0 returned 0 after 31543 usecs
[ 0.408663] calling init_evm+0x0/0x170 @ 1
[ 0.408665] evm: Initialising EVM extended attributes:
[ 0.408666] evm: security.selinux
[ 0.408667] evm: security.SMACK64 (disabled)
[ 0.408668] evm: security.SMACK64EXEC (disabled)
[ 0.408669] evm: security.SMACK64TRANSMUTE (disabled)
[ 0.408670] evm: security.SMACK64MMAP (disabled)
[ 0.408670] evm: security.apparmor
[ 0.408671] evm: security.ima
[ 0.408672] evm: security.capability
[ 0.408673] evm: HMAC attrs: 0x1
[ 0.408677] initcall init_evm+0x0/0x170 returned 0 after 11 usecs
[ 0.408679] calling crypto_algapi_init+0x0/0x90 @ 1
[ 0.409275] initcall crypto_algapi_init+0x0/0x90 returned 0 after 593 usecs
[ 0.409283] calling blk_timeout_init+0x0/0x20 @ 1
[ 0.409286] initcall blk_timeout_init+0x0/0x20 returned 0 after 0 usecs
[ 0.409289] calling sed_opal_init+0x0/0x110 @ 1
[ 0.409310] initcall sed_opal_init+0x0/0x110 returned 0 after 19 usecs
[ 0.409313] calling depot_debugfs_init+0x0/0x40 @ 1
[ 0.409323] initcall depot_debugfs_init+0x0/0x40 returned 0 after 6 usecs
[ 0.409326] calling pci_resource_alignment_sysfs_init+0x0/0x20 @ 1
[ 0.409333] initcall pci_resource_alignment_sysfs_init+0x0/0x20 returned 0 after 4 usecs
[ 0.409336] calling pci_sysfs_init+0x0/0x80 @ 1
[ 0.409365] initcall pci_sysfs_init+0x0/0x80 returned 0 after 26 usecs
[ 0.409369] calling bert_init+0x0/0x2e0 @ 1
[ 0.409372] initcall bert_init+0x0/0x2e0 returned 0 after 1 usecs
[ 0.409374] calling clk_debug_init+0x0/0x110 @ 1
[ 0.409381] initcall clk_debug_init+0x0/0x110 returned 0 after 4 usecs
[ 0.409383] calling setup_vcpu_hotplug_event+0x0/0x30 @ 1
[ 0.409386] initcall setup_vcpu_hotplug_event+0x0/0x30 returned -19 after 0 usecs
[ 0.409388] calling boot_wait_for_devices+0x0/0x30 @ 1
[ 0.409391] initcall boot_wait_for_devices+0x0/0x30 returned -19 after 0 usecs
[ 0.409393] calling dmar_free_unused_resources+0x0/0xe0 @ 1
[ 0.409397] initcall dmar_free_unused_resources+0x0/0xe0 returned 0 after 0 usecs
[ 0.409399] calling sync_state_resume_initcall+0x0/0x20 @ 1
[ 0.409404] initcall sync_state_resume_initcall+0x0/0x20 returned 0 after 0 usecs
[ 0.409407] calling deferred_probe_initcall+0x0/0x90 @ 1
[ 0.409430] initcall deferred_probe_initcall+0x0/0x90 returned 0 after 20 usecs
[ 0.409434] calling firmware_memmap_init+0x0/0x40 @ 1
[ 0.409479] initcall firmware_memmap_init+0x0/0x40 returned 0 after 42 usecs
[ 0.409481] calling register_update_efi_random_seed+0x0/0x30 @ 1
[ 0.409484] initcall register_update_efi_random_seed+0x0/0x30 returned 0 after 0 usecs
[ 0.409486] calling efi_shutdown_init+0x0/0x50 @ 1
[ 0.409488] initcall efi_shutdown_init+0x0/0x50 returned 0 after 0 usecs
[ 0.409491] calling efi_earlycon_unmap_fb+0x0/0x50 @ 1
[ 0.409493] initcall efi_earlycon_unmap_fb+0x0/0x50 returned 0 after 0 usecs
[ 0.409496] calling itmt_legacy_init+0x0/0x50 @ 1
[ 0.409498] initcall itmt_legacy_init+0x0/0x50 returned -19 after 0 usecs
[ 0.409501] calling cec_init+0x0/0x1e0 @ 1
[ 0.409507] RAS: Correctable Errors collector initialized.
[ 0.409509] initcall cec_init+0x0/0x1e0 returned 0 after 5 usecs
[ 0.409511] calling bpf_kfunc_init+0x0/0x130 @ 1
[ 0.409524] initcall bpf_kfunc_init+0x0/0x130 returned 0 after 10 usecs
[ 0.409527] calling init_subsystem+0x0/0x20 @ 1
[ 0.409533] initcall init_subsystem+0x0/0x20 returned 0 after 3 usecs
[ 0.409535] calling xdp_metadata_init+0x0/0x20 @ 1
[ 0.409540] initcall xdp_metadata_init+0x0/0x20 returned 0 after 2 usecs
[ 0.409543] calling bpf_sockmap_iter_init+0x0/0x30 @ 1
[ 0.409546] initcall bpf_sockmap_iter_init+0x0/0x30 returned 0 after 0 usecs
[ 0.409549] calling bpf_sk_storage_map_iter_init+0x0/0x30 @ 1
[ 0.409551] initcall bpf_sk_storage_map_iter_init+0x0/0x30 returned 0 after 0 usecs
[ 0.409554] calling sch_default_qdisc+0x0/0x20 @ 1
[ 0.409559] initcall sch_default_qdisc+0x0/0x20 returned 0 after 1 usecs
[ 0.409561] calling bpf_prog_test_run_init+0x0/0xb0 @ 1
[ 0.409573] initcall bpf_prog_test_run_init+0x0/0xb0 returned 0 after 8 usecs
[ 0.409576] calling bpf_dummy_struct_ops_init+0x0/0x20 @ 1
[ 0.412410] initcall bpf_dummy_struct_ops_init+0x0/0x20 returned 0 after 2831 usecs
[ 0.412419] calling tcp_congestion_default+0x0/0x20 @ 1
[ 0.412423] initcall tcp_congestion_default+0x0/0x20 returned 0 after 0 usecs
[ 0.412426] calling tcp_bpf_v4_build_proto+0x0/0x90 @ 1
[ 0.412430] initcall tcp_bpf_v4_build_proto+0x0/0x90 returned 0 after 0 usecs
[ 0.412433] calling udp_bpf_v4_build_proto+0x0/0x50 @ 1
[ 0.412437] initcall udp_bpf_v4_build_proto+0x0/0x50 returned 0 after 0 usecs
[ 0.412440] calling bpf_tcp_ca_kfunc_init+0x0/0x30 @ 1
[ 0.423641] initcall bpf_tcp_ca_kfunc_init+0x0/0x30 returned 0 after 11196 usecs
[ 0.423649] calling bpf_mptcp_kfunc_init+0x0/0x20 @ 1
[ 0.423653] initcall bpf_mptcp_kfunc_init+0x0/0x20 returned 0 after 1 usecs
[ 0.423656] calling pci_mmcfg_late_insert_resources+0x0/0xc0 @ 1
[ 0.423660] initcall pci_mmcfg_late_insert_resources+0x0/0xc0 returned 0 after 1 usecs
[ 0.423663] calling software_resume_initcall+0x0/0x180 @ 1
[ 0.423667] initcall software_resume_initcall+0x0/0x180 returned -2 after 0 usecs
[ 0.423670] calling lockup_detector_check+0x0/0x80 @ 1
[ 0.423694] initcall lockup_detector_check+0x0/0x80 returned 0 after 20 usecs
[ 0.423698] calling ftrace_check_sync+0x0/0x20 @ 1
[ 0.423704] initcall ftrace_check_sync+0x0/0x20 returned 0 after 4 usecs
[ 0.423706] calling latency_fsnotify_init+0x0/0x40 @ 1
[ 0.423718] initcall latency_fsnotify_init+0x0/0x40 returned 0 after 9 usecs
[ 0.423720] calling trace_eval_sync+0x0/0x20 @ 1
[ 0.423724] initcall trace_eval_sync+0x0/0x20 returned 0 after 1 usecs
[ 0.423726] calling late_trace_init+0x0/0xb0 @ 1
[ 0.423728] initcall late_trace_init+0x0/0xb0 returned 0 after 0 usecs
[ 0.423730] calling acpi_gpio_handle_deferred_request_irqs+0x0/0x90 @ 1
[ 0.423734] initcall acpi_gpio_handle_deferred_request_irqs+0x0/0x90 returned 0 after 0 usecs
[ 0.423737] calling clk_disable_unused+0x0/0x140 @ 1
[ 0.423740] clk: Disabling unused clocks
[ 0.423742] initcall clk_disable_unused+0x0/0x140 returned 0 after 1 usecs
[ 0.423744] calling balloon_wait_finish+0x0/0x100 @ 1
[ 0.423747] initcall balloon_wait_finish+0x0/0x100 returned -19 after 0 usecs
[ 0.423749] calling regulator_init_complete+0x0/0x30 @ 1
[ 0.423753] initcall regulator_init_complete+0x0/0x30 returned 0 after 0 usecs
[ 0.424750] Freeing unused decrypted memory: 2036K
[ 0.425231] Freeing unused kernel image (initmem) memory: 2896K
[ 0.425251] Write protecting the kernel read-only data: 24576k
[ 0.425624] Freeing unused kernel image (rodata/data gap) memory: 448K
[ 0.441787] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 0.441792] Run /init as init process
[ 0.441794] with arguments:
[ 0.441795] /init
[ 0.441796] with environment:
[ 0.441796] HOME=/
[ 0.441797] TERM=linux
[ 0.441798] BOOT_IMAGE=/vmlinuz-6.10.0-rc1-00028-g4b3eb131492d
[ 0.508043] calling hid_init+0x0/0x50 [hid] @ 157
[ 0.508074] hid: raw HID events driver (C) Jiri Kosina
[ 0.508078] initcall hid_init+0x0/0x50 [hid] returned 0 after 23 usecs
[ 0.508368] calling idma64_platform_driver_init+0x0/0x1000 [idma64] @ 164
[ 0.508402] initcall idma64_platform_driver_init+0x0/0x1000 [idma64] returned 0 after 28 usecs
[ 0.508593] calling intel_lpss_init+0x0/0x1000 [intel_lpss] @ 164
[ 0.508600] initcall intel_lpss_init+0x0/0x1000 [intel_lpss] returned 0 after 2 usecs
[ 0.508920] calling intel_lpss_pci_driver_init+0x0/0x1000 [intel_lpss_pci] @ 164
[ 0.509135] intel-lpss 0000:00:15.0: enabling device (0000 -> 0002)
[ 0.509418] idma64 idma64.0: Found Intel integrated DMA 64-bit
[ 0.509430] probe of idma64.0 returned 0 after 93 usecs
[ 0.521705] probe of i2c_designware.0 returned 0 after 12240 usecs
[ 0.521728] probe of 0000:00:15.0 returned 0 after 12789 usecs
[ 0.521821] intel-lpss 0000:00:15.1: enabling device (0000 -> 0002)
[ 0.522096] idma64 idma64.1: Found Intel integrated DMA 64-bit
[ 0.522106] probe of idma64.1 returned 0 after 70 usecs
[ 0.528161] calling sha1_ssse3_mod_init+0x0/0x1000 [sha1_ssse3] @ 160
[ 0.528257] calling crct10dif_intel_mod_init+0x0/0x1000 [crct10dif_pclmul] @ 163
[ 0.528514] calling smbalert_driver_init+0x0/0x1000 [i2c_smbus] @ 149
[ 0.528536] initcall smbalert_driver_init+0x0/0x1000 [i2c_smbus] returned 0 after 17 usecs
[ 0.528836] calling drm_core_init+0x0/0x1000 [drm] @ 157
[ 0.528900] ACPI: bus type drm_connector registered
[ 0.528906] initcall drm_core_init+0x0/0x1000 [drm] returned 0 after 29 usecs
[ 0.528957] calling i801_driver_init+0x0/0x1000 [i2c_i801] @ 149
[ 0.529003] initcall i801_driver_init+0x0/0x1000 [i2c_i801] returned 0 after 40 usecs
[ 0.529079] calling usb_common_init+0x0/0x30 [usb_common] @ 148
[ 0.529088] initcall usb_common_init+0x0/0x30 [usb_common] returned 0 after 4 usecs
[ 0.529335] initcall sha1_ssse3_mod_init+0x0/0x1000 [sha1_ssse3] returned 0 after 251 usecs
[ 0.529430] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[ 0.529457] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[ 0.529535] initcall crct10dif_intel_mod_init+0x0/0x1000 [crct10dif_pclmul] returned 0 after 451 usecs
[ 0.542931] probe of i2c_designware.1 returned 0 after 17744 usecs
[ 0.542949] probe of 0000:00:15.1 returned 0 after 21216 usecs
[ 0.542971] initcall intel_lpss_pci_driver_init+0x0/0x1000 [intel_lpss_pci] returned 0 after 13887 usecs
[ 0.547926] probe of 0000:00:1f.4 returned 0 after 18899 usecs
[ 0.548248] calling sha256_ssse3_mod_init+0x0/0x1000 [sha256_ssse3] @ 160
[ 0.548430] calling i2c_hid_acpi_driver_init+0x0/0x1000 [i2c_hid_acpi] @ 157
[ 0.548442] calling crct10dif_mod_init+0x0/0x1000 [crct10dif_generic] @ 163
[ 0.548457] initcall i2c_hid_acpi_driver_init+0x0/0x1000 [i2c_hid_acpi] returned 0 after 12 usecs
[ 0.548722] initcall crct10dif_mod_init+0x0/0x1000 [crct10dif_generic] returned 0 after 277 usecs
[ 0.549358] initcall sha256_ssse3_mod_init+0x0/0x1000 [sha256_ssse3] returned 0 after 913 usecs
[ 0.554510] calling usb_init+0x0/0x170 [usbcore] @ 148
[ 0.554531] ACPI: bus type USB registered
[ 0.554555] usbcore: registered new interface driver usbfs
[ 0.554561] usbcore: registered new interface driver hub
[ 0.554569] usbcore: registered new device driver usb
[ 0.554571] initcall usb_init+0x0/0x170 [usbcore] returned 0 after 42 usecs
[ 0.704193] probe of i2c-DLL075B:01 returned 0 after 155724 usecs
[ 0.704488] calling sha512_generic_mod_init+0x0/0x1000 [sha512_generic] @ 150
[ 0.704543] calling crc_t10dif_mod_init+0x0/0x1000 [crc_t10dif] @ 163
[ 0.704571] initcall sha512_generic_mod_init+0x0/0x1000 [sha512_generic] returned 0 after 21 usecs
[ 0.704583] initcall crc_t10dif_mod_init+0x0/0x1000 [crc_t10dif] returned 0 after 33 usecs
[ 0.704634] calling hid_generic_init+0x0/0x1000 [hid_generic] @ 166
[ 0.704800] calling sha512_ssse3_mod_init+0x0/0x1000 [sha512_ssse3] @ 150
[ 0.704807] calling crc64_rocksoft_mod_init+0x0/0x1000 [crc64_rocksoft] @ 163
[ 0.704942] initcall sha512_ssse3_mod_init+0x0/0x1000 [sha512_ssse3] returned 0 after 131 usecs
[ 0.705171] calling ghash_pclmulqdqni_mod_init+0x0/0x1000 [ghash_clmulni_intel] @ 161
[ 0.705182] input: DLL075B:01 06CB:76AF Mouse as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-2/i2c-DLL075B:01/0018:06CB:76AF.0001/input/input2
[ 0.705263] initcall ghash_pclmulqdqni_mod_init+0x0/0x1000 [ghash_clmulni_intel] returned 0 after 83 usecs
[ 0.705274] input: DLL075B:01 06CB:76AF Touchpad as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-2/i2c-DLL075B:01/0018:06CB:76AF.0001/input/input3
[ 0.705442] hid-generic 0018:06CB:76AF.0001: input,hidraw0: I2C HID v1.00 Mouse [DLL075B:01 06CB:76AF] on i2c-DLL075B:01
[ 0.705442] calling crc32c_intel_mod_init+0x0/0x1000 [crc32c_intel] @ 150
[ 0.705457] probe of 0018:06CB:76AF.0001 returned 0 after 814 usecs
[ 0.705472] initcall hid_generic_init+0x0/0x1000 [hid_generic] returned 0 after 25 usecs
[ 0.705475] initcall crc32c_intel_mod_init+0x0/0x1000 [crc32c_intel] returned 0 after 28 usecs
[ 0.705631] calling crc32_pclmul_mod_init+0x0/0x1000 [crc32_pclmul] @ 150
[ 0.705664] initcall crc32_pclmul_mod_init+0x0/0x1000 [crc32_pclmul] returned 0 after 28 usecs
[ 0.706888] calling crc64_rocksoft_init+0x0/0x1000 [crc64_rocksoft_generic] @ 191
[ 0.706956] initcall crc64_rocksoft_init+0x0/0x1000 [crc64_rocksoft_generic] returned 0 after 63 usecs
[ 0.708568] initcall crc64_rocksoft_mod_init+0x0/0x1000 [crc64_rocksoft] returned 0 after 1675 usecs
[ 0.710872] calling nvme_core_init+0x0/0x1000 [nvme_core] @ 163
[ 0.711080] initcall nvme_core_init+0x0/0x1000 [nvme_core] returned 0 after 196 usecs
[ 0.711724] calling nvme_init+0x0/0x1000 [nvme] @ 163
[ 0.711750] initcall nvme_init+0x0/0x1000 [nvme] returned 0 after 20 usecs
[ 0.711844] nvme nvme0: pci function 0000:3b:00.0
[ 0.727103] calling xhci_hcd_init+0x0/0x30 [xhci_hcd] @ 148
[ 0.727130] initcall xhci_hcd_init+0x0/0x30 [xhci_hcd] returned 0 after 5 usecs
[ 0.728439] nvme nvme0: 4/0/0 default/read/poll queues
[ 0.733946] nvme0n1: p1 p2 p3 p4
[ 0.734481] probe of 0000:3b:00.0 returned 0 after 22736 usecs
[ 0.735145] calling xhci_pci_init+0x0/0x1000 [xhci_pci] @ 148
[ 0.735378] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 0.735387] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[ 0.736467] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x0000000081109810
[ 0.737038] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 0.737043] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[ 0.737047] xhci_hcd 0000:00:14.0: Host supports USB 3.0 SuperSpeed
[ 0.737098] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.10
[ 0.737102] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.737104] usb usb1: Product: xHCI Host Controller
[ 0.737106] usb usb1: Manufacturer: Linux 6.10.0-rc1-00028-g4b3eb131492d xhci-hcd
[ 0.737108] usb usb1: SerialNumber: 0000:00:14.0
[ 0.737278] hub 1-0:1.0: USB hub found
[ 0.737295] hub 1-0:1.0: 12 ports detected
[ 0.739431] probe of 1-0:1.0 returned 0 after 2157 usecs
[ 0.739476] probe of usb1 returned 0 after 2239 usecs
[ 0.739525] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.10
[ 0.739528] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.739531] usb usb2: Product: xHCI Host Controller
[ 0.739533] usb usb2: Manufacturer: Linux 6.10.0-rc1-00028-g4b3eb131492d xhci-hcd
[ 0.739534] usb usb2: SerialNumber: 0000:00:14.0
[ 0.739718] hub 2-0:1.0: USB hub found
[ 0.739732] hub 2-0:1.0: 6 ports detected
[ 0.740914] probe of 2-0:1.0 returned 0 after 1200 usecs
[ 0.740949] probe of usb2 returned 0 after 1278 usecs
[ 0.740996] probe of 0000:00:14.0 returned 0 after 5836 usecs
[ 0.741013] initcall xhci_pci_init+0x0/0x1000 [xhci_pci] returned 0 after 5860 usecs
[ 0.765680] calling dm_init+0x0/0x70 [dm_mod] @ 212
[ 0.765701] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[ 0.765733] device-mapper: uevent: version 1.0.3
[ 0.765835] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@lists.linux.dev
[ 0.765838] initcall dm_init+0x0/0x70 [dm_mod] returned 0 after 136 usecs
[ 0.766834] calling dm_crypt_init+0x0/0x1000 [dm_crypt] @ 212
[ 0.766844] initcall dm_crypt_init+0x0/0x1000 [dm_crypt] returned 0 after 0 usecs
[ 0.994178] usb 1-3: new full-speed USB device number 2 using xhci_hcd
[ 1.144927] usb 1-3: New USB device found, idVendor=0cf3, idProduct=e300, bcdDevice= 0.01
[ 1.144944] usb 1-3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 1.147988] probe of 1-3 returned 0 after 2422 usecs
[ 1.274198] usb 1-4: new full-speed USB device number 3 using xhci_hcd
[ 1.274245] tsc: Refined TSC clocksource calibration: 2904.008 MHz
[ 1.274259] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x29dc0d988f1, max_idle_ns: 440795328788 ns
[ 1.274335] clocksource: Switched to clocksource tsc
[ 1.425443] usb 1-4: New USB device found, idVendor=04f3, idProduct=2234, bcdDevice=11.11
[ 1.425458] usb 1-4: New USB device strings: Mfr=4, Product=14, SerialNumber=0
[ 1.425464] usb 1-4: Product: Touchscreen
[ 1.425469] usb 1-4: Manufacturer: ELAN
[ 1.427634] probe of 1-4 returned 0 after 1582 usecs
[ 1.433481] calling hid_init+0x0/0x1000 [usbhid] @ 166
[ 1.439870] input: ELAN Touchscreen as /devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.0/0003:04F3:2234.0002/input/input5
[ 1.439997] input: ELAN Touchscreen as /devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.0/0003:04F3:2234.0002/input/input6
[ 1.440018] input: ELAN Touchscreen as /devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.0/0003:04F3:2234.0002/input/input7
[ 1.440205] hid-generic 0003:04F3:2234.0002: input,hiddev0,hidraw1: USB HID v1.10 Device [ELAN Touchscreen] on usb-0000:00:14.0-4/input0
[ 1.440219] probe of 0003:04F3:2234.0002 returned 0 after 1050 usecs
[ 1.440234] probe of 1-4:1.0 returned 0 after 6734 usecs
[ 1.440244] usbcore: registered new interface driver usbhid
[ 1.440245] usbhid: USB HID core driver
[ 1.440246] initcall hid_init+0x0/0x1000 [usbhid] returned 0 after 6758 usecs
[ 1.554285] usb 1-5: new high-speed USB device number 4 using xhci_hcd
[ 1.762973] usb 1-5: New USB device found, idVendor=0c45, idProduct=670c, bcdDevice=56.26
[ 1.762989] usb 1-5: New USB device strings: Mfr=2, Product=1, SerialNumber=0
[ 1.762996] usb 1-5: Product: Integrated_Webcam_HD
[ 1.763001] usb 1-5: Manufacturer: CN09GTFMLOG008C8B7FWA01
[ 1.772363] probe of 1-5 returned 0 after 8859 usecs
[ 8.593719] PM: Image not found (code -22)
[ 8.636295] calling journal_init+0x0/0xee0 [jbd2] @ 348
[ 8.636652] initcall journal_init+0x0/0xee0 [jbd2] returned 0 after 315 usecs
[ 8.637603] calling mbcache_init+0x0/0x1000 [mbcache] @ 348
[ 8.637628] initcall mbcache_init+0x0/0x1000 [mbcache] returned 0 after 11 usecs
[ 8.670923] calling ext4_init_fs+0x0/0x1f0 [ext4] @ 348
[ 8.671070] initcall ext4_init_fs+0x0/0x1f0 [ext4] returned 0 after 109 usecs
[ 8.674701] EXT4-fs (dm-0): mounted filesystem 32e29882-d94d-4a92-9ee4-4d03002bfa29 ro with ordered data mode. Quota mode: none.
[ 8.771239] calling init_autofs_fs+0x0/0x40 [autofs4] @ 1
[ 8.771413] initcall init_autofs_fs+0x0/0x40 [autofs4] returned 0 after 151 usecs
[ 8.771572] systemd[1]: Inserted module 'autofs4'
[ 8.786207] calling efivarfs_init+0x0/0x1000 [efivarfs] @ 369
[ 8.786234] initcall efivarfs_init+0x0/0x1000 [efivarfs] returned 0 after 4 usecs
[ 8.824334] systemd[1]: systemd 256~rc3-5 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBCRYPTSETUP_PLUGINS +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT +LIBARCHIVE)
[ 8.824351] systemd[1]: Detected architecture x86-64.
[ 8.826584] systemd[1]: Hostname set to <abreu>.
[ 9.015020] systemd[1]: bpf-restrict-fs: LSM BPF program attached
[ 9.164842] systemd[1]: Queued start job for default target graphical.target.
[ 9.168819] calling nfnetlink_init+0x0/0x1000 [nfnetlink] @ 388
[ 9.168840] initcall nfnetlink_init+0x0/0x1000 [nfnetlink] returned 0 after 8 usecs
[ 9.203319] systemd[1]: Created slice system-getty.slice - Slice /system/getty.
[ 9.203716] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
[ 9.204047] systemd[1]: Created slice system-systemd\x2dcryptsetup.slice - Encrypted Volume Units Service Slice.
[ 9.204361] systemd[1]: Created slice system-systemd\x2dfsck.slice - Slice /system/systemd-fsck.
[ 9.204592] systemd[1]: Created slice user.slice - User and Session Slice.
[ 9.204659] systemd[1]: Started systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch.
[ 9.204704] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
[ 9.204876] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
[ 9.204901] systemd[1]: Expecting device dev-disk-by\x2ddiskseq-1\x2dpart4.device - /dev/disk/by-diskseq/1-part4...
[ 9.204910] systemd[1]: Expecting device dev-disk-by\x2duuid-2d23fd4c\x2d5d03\x2d4e1a\x2d8a42\x2d0e859d1f00d8.device - /dev/disk/by-uuid/2d23fd4c-5d03-4e1a-8a42-0e859d1f00d8...
[ 9.204915] systemd[1]: Expecting device dev-disk-by\x2duuid-61be8f50\x2d69c5\x2d49a5\x2dbcad\x2d3f4521e9c7b5.device - /dev/disk/by-uuid/61be8f50-69c5-49a5-bcad-3f4521e9c7b5...
[ 9.204921] systemd[1]: Expecting device dev-disk-by\x2duuid-96BD\x2d5653.device - /dev/disk/by-uuid/96BD-5653...
[ 9.204942] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
[ 9.204967] systemd[1]: Reached target nss-user-lookup.target - User and Group Name Lookups.
[ 9.204980] systemd[1]: Reached target paths.target - Path Units.
[ 9.204996] systemd[1]: Reached target remote-fs.target - Remote File Systems.
[ 9.205007] systemd[1]: Reached target slices.target - Slice Units.
[ 9.205042] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
[ 9.206495] systemd[1]: Listening on systemd-coredump.socket - Process Core Dump Socket.
[ 9.207434] systemd[1]: Listening on systemd-creds.socket - Credential Encryption/Decryption.
[ 9.207525] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
[ 9.207632] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
[ 9.207739] systemd[1]: Listening on systemd-journald.socket - Journal Sockets.
[ 9.207788] systemd[1]: systemd-pcrextend.socket - TPM PCR Measurements was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 9.207805] systemd[1]: systemd-pcrlock.socket - Make TPM PCR Policy was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 9.207895] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[ 9.207963] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[ 9.209084] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
[ 9.210020] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
[ 9.211242] systemd[1]: Mounting run-lock.mount - Legacy Locks Directory /run/lock...
[ 9.218418] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
[ 9.221621] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
[ 9.224501] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
[ 9.228980] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
[ 9.234309] systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod...
[ 9.236032] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
[ 9.242449] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
[ 9.246275] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
[ 9.248693] calling configfs_init+0x0/0x1000 [configfs] @ 396
[ 9.248744] initcall configfs_init+0x0/0x1000 [configfs] returned 0 after 39 usecs
[ 9.250306] systemd[1]: Starting modprobe@loop.service - Load Kernel Module loop...
[ 9.250430] systemd[1]: systemd-fsck-root.service - File System Check on Root Device was skipped because of an unmet condition check (ConditionPathExists=!/run/initramfs/fsck-root).
[ 9.250489] systemd[1]: systemd-hibernate-clear.service - Clear Stale Hibernate Storage Info was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67).
[ 9.251915] systemd[1]: Starting systemd-journald.service - Journal Service...
[ 9.252929] calling efivars_pstore_init+0x0/0xc0 [efi_pstore] @ 399
[ 9.252955] pstore: Using crash dump compression: deflate
[ 9.258130] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
[ 9.258156] systemd[1]: systemd-pcrmachine.service - TPM PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 9.260350] calling loop_init+0x0/0x1000 [loop] @ 401
[ 9.260781] pstore: Registered efi_pstore as persistent store backend
[ 9.260784] initcall efivars_pstore_init+0x0/0xc0 [efi_pstore] returned 0 after 425 usecs
[ 9.260844] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
[ 9.260909] systemd[1]: systemd-tpm2-setup-early.service - Early TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 9.262178] systemd[1]: Starting systemd-udev-load-credentials.service - Load udev Rules from Credentials...
[ 9.266611] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
[ 9.269579] loop: module loaded
[ 9.269583] initcall loop_init+0x0/0x1000 [loop] returned 0 after 9224 usecs
[ 9.270744] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
[ 9.270864] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
[ 9.270971] systemd[1]: Mounted run-lock.mount - Legacy Locks Directory /run/lock.
[ 9.271064] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
[ 9.271151] systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
[ 9.271411] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
[ 9.271796] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[ 9.271967] systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs.
[ 9.272180] systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
[ 9.272344] systemd[1]: Finished modprobe@dm_mod.service - Load Kernel Module dm_mod.
[ 9.272593] systemd[1]: modprobe@drm.service: Deactivated successfully.
[ 9.272752] systemd[1]: Finished modprobe@drm.service - Load Kernel Module drm.
[ 9.272998] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
[ 9.273162] systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
[ 9.273941] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[ 9.275814] systemd[1]: Finished modprobe@fuse.service - Load Kernel Module fuse.
[ 9.276603] systemd[1]: modprobe@loop.service: Deactivated successfully.
[ 9.276782] systemd[1]: Finished modprobe@loop.service - Load Kernel Module loop.
[ 9.277638] systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
[ 9.278330] systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System...
[ 9.278383] systemd[1]: systemd-repart.service - Repartition Root Disk was skipped because no trigger condition checks were met.
[ 9.279253] systemd-journald[402]: Collecting audit messages is disabled.
[ 9.281058] systemd[1]: Starting systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully...
[ 9.284129] systemd[1]: Finished systemd-udev-load-credentials.service - Load udev Rules from Credentials.
[ 9.286211] calling parport_default_proc_register+0x0/0x1000 [parport] @ 403
[ 9.286254] initcall parport_default_proc_register+0x0/0x1000 [parport] returned 0 after 23 usecs
[ 9.288016] systemd[1]: Mounted sys-kernel-config.mount - Kernel Configuration File System.
[ 9.288031] calling lp_init_module+0x0/0x1000 [lp] @ 403
[ 9.288164] systemd[1]: Mounted sys-fs-fuse-connections.mount - FUSE Control File System.
[ 9.290367] lp: driver loaded but no devices found
[ 9.290371] initcall lp_init_module+0x0/0x1000 [lp] returned 0 after 2335 usecs
[ 9.290591] EXT4-fs (dm-0): re-mounted 32e29882-d94d-4a92-9ee4-4d03002bfa29 r/w. Quota mode: none.
[ 9.291626] systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.
[ 9.291987] systemd[1]: systemd-hwdb-update.service - Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
[ 9.292025] calling ppdev_init+0x0/0x1000 [ppdev] @ 403
[ 9.292035] systemd[1]: systemd-pstore.service - Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).
[ 9.294157] systemd[1]: Starting systemd-random-seed.service - Load/Save OS Random Seed...
[ 9.294188] systemd[1]: systemd-tpm2-setup.service - TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 9.298014] ppdev: user-space parallel port driver
[ 9.298019] initcall ppdev_init+0x0/0x1000 [ppdev] returned 0 after 5987 usecs
[ 9.300764] calling parport_pc_init+0x0/0xf20 [parport_pc] @ 403
[ 9.300892] probe of parport_pc.956 returned 0 after 17 usecs
[ 9.300927] probe of parport0 returned 19 after 4 usecs
[ 9.300932] probe of parport0 returned 19 after 2 usecs
[ 9.301132] probe of parport_pc.888 returned 0 after 7 usecs
[ 9.301160] probe of parport0 returned 19 after 11 usecs
[ 9.301164] probe of parport0 returned 19 after 2 usecs
[ 9.301359] probe of parport_pc.632 returned 0 after 6 usecs
[ 9.301390] probe of parport0 returned 19 after 3 usecs
[ 9.301394] probe of parport0 returned 19 after 2 usecs
[ 9.301571] initcall parport_pc_init+0x0/0xf20 [parport_pc] returned 0 after 799 usecs
[ 9.303311] calling msr_init+0x0/0x1000 [msr] @ 403
[ 9.306607] initcall msr_init+0x0/0x1000 [msr] returned 0 after 3288 usecs
[ 9.307672] systemd[1]: Finished systemd-modules-load.service - Load Kernel Modules.
[ 9.308850] systemd[1]: Starting systemd-sysctl.service - Apply Kernel Variables...
[ 9.312510] systemd[1]: Finished systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully.
[ 9.312876] systemd[1]: Finished systemd-random-seed.service - Load/Save OS Random Seed.
[ 9.313033] systemd[1]: systemd-sysusers.service - Create System Users was skipped because no trigger condition checks were met.
[ 9.314129] systemd[1]: Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev...
[ 9.322773] systemd[1]: Finished systemd-sysctl.service - Apply Kernel Variables.
[ 9.329823] systemd[1]: Finished systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev.
[ 9.331024] systemd[1]: Starting systemd-udevd.service - Rule-based Manager for Device Events and Files...
[ 9.337058] systemd[1]: Started systemd-journald.service - Journal Service.
[ 9.350464] systemd-journald[402]: Received client request to flush runtime journal.
[ 9.446565] calling serio_raw_drv_init+0x0/0x1000 [serio_raw] @ 465
[ 9.446592] initcall serio_raw_drv_init+0x0/0x1000 [serio_raw] returned 0 after 19 usecs
[ 9.452819] calling evdev_init+0x0/0x1000 [evdev] @ 465
[ 9.456922] initcall evdev_init+0x0/0x1000 [evdev] returned 0 after 4094 usecs
[ 9.460022] calling mt_driver_init+0x0/0x1000 [hid_multitouch] @ 467
[ 9.462048] calling usb_roles_init+0x0/0x1000 [roles] @ 450
[ 9.462066] initcall usb_roles_init+0x0/0x1000 [roles] returned 0 after 9 usecs
[ 9.464184] calling intel_xhci_usb_driver_init+0x0/0x1000 [intel_xhci_usb_role_switch] @ 450
[ 9.468741] probe of intel_xhci_usb_sw returned 0 after 2894 usecs
[ 9.468750] calling acpi_button_driver_init+0x0/0x1000 [button] @ 448
[ 9.468773] initcall intel_xhci_usb_driver_init+0x0/0x1000 [intel_xhci_usb_role_switch] returned 0 after 17 usecs
[ 9.468879] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input9
[ 9.475880] calling acpi_battery_init+0x0/0xf60 [battery] @ 461
[ 9.475892] initcall acpi_battery_init+0x0/0xf60 [battery] returned 0 after 3 usecs
[ 9.476104] calling acpi_pad_init+0x0/0x1000 [acpi_pad] @ 463
[ 9.476217] calling int3400_thermal_driver_init+0x0/0x1000 [int3400_thermal] @ 451
[ 9.476349] calling intel_hid_init+0x0/0x50 [intel_hid] @ 470
[ 9.478323] calling intel_pch_thermal_driver_init+0x0/0x1000 [intel_pch_thermal] @ 464
[ 9.478430] calling acpi_ac_init+0x0/0xfc0 [ac] @ 454
[ 9.478982] probe of ACPI000C:00 returned 0 after 2857 usecs
[ 9.479004] initcall acpi_pad_init+0x0/0x1000 [acpi_pad] returned 0 after 568 usecs
[ 9.479166] probe of 0000:00:14.2 returned 0 after 813 usecs
[ 9.479926] calling pmt_class_init+0x0/0x1000 [pmt_class] @ 453
[ 9.479937] initcall pmt_class_init+0x0/0x1000 [pmt_class] returned 0 after 5 usecs
[ 9.484214] input: Intel HID events as /devices/platform/INT33D5:00/input/input10
[ 9.484233] calling mei_init+0x0/0x90 [mei] @ 460
[ 9.484275] initcall mei_init+0x0/0x90 [mei] returned 0 after 26 usecs
[ 9.485404] calling acpi_wmi_init+0x0/0x1000 [wmi] @ 458
[ 9.485586] probe of PNP0C14:00 returned 0 after 132 usecs
[ 9.486679] wmi_bus wmi_bus-PNP0C14:01: [Firmware Bug]: WQBC data block query control method not found
[ 9.486737] probe of PNP0C14:01 returned 0 after 1141 usecs
[ 9.487053] initcall intel_pch_thermal_driver_init+0x0/0x1000 [intel_pch_thermal] returned 0 after 1642 usecs
[ 9.488922] initcall acpi_wmi_init+0x0/0x1000 [wmi] returned 0 after 3510 usecs
[ 9.490507] Consider using thermal netlink events interface
[ 9.491387] ACPI: AC: AC Adapter [AC] (on-line)
[ 9.491611] probe of ACPI0003:00 returned 0 after 13109 usecs
[ 9.491632] initcall acpi_ac_init+0x0/0xfc0 [ac] returned 0 after 6220 usecs
[ 9.492589] calling int3403_driver_init+0x0/0x1000 [int3403_thermal] @ 465
[ 9.492829] probe of INT3400:00 returned 0 after 16592 usecs
[ 9.492853] initcall int3400_thermal_driver_init+0x0/0x1000 [int3400_thermal] returned 0 after 258 usecs
[ 9.492971] calling typec_init+0x0/0xa0 [typec] @ 449
[ 9.493020] initcall typec_init+0x0/0xa0 [typec] returned 0 after 30 usecs
[ 9.501503] intel-hid INT33D5:00: platform supports 5 button array
[ 9.501557] input: Intel HID 5 button array as /devices/platform/INT33D5:00/input/input11
[ 9.503480] calling acpi_video_init+0x0/0x1000 [video] @ 468
[ 9.503500] initcall acpi_video_init+0x0/0x1000 [video] returned 0 after 11 usecs
[ 9.508359] probe of INT3403:00 returned 0 after 15749 usecs
[ 9.512682] calling soc_button_driver_init+0x0/0x1000 [soc_button_array] @ 469
[ 9.512828] ACPI: button: Lid Switch [LID0]
[ 9.512846] probe of INT33D2:00 returned 19 after 142 usecs
[ 9.512852] probe of PNP0C0D:00 returned 0 after 44027 usecs
[ 9.512898] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input12
[ 9.513044] probe of INT33D3:00 returned 19 after 193 usecs
[ 9.513071] initcall soc_button_driver_init+0x0/0x1000 [soc_button_array] returned 0 after 380 usecs
[ 9.513395] calling intel_vbtn_init+0x0/0x50 [intel_vbtn] @ 455
[ 9.514033] input: Intel Virtual Buttons as /devices/pci0000:00/0000:00:1f.0/PNP0C09:00/INT33D6:00/input/input13
[ 9.522182] probe of INT3403:01 returned 0 after 13817 usecs
[ 9.530883] probe of INT3403:02 returned 0 after 8691 usecs
[ 9.537060] ACPI: battery: Slot [BAT0] (battery present)
[ 9.537188] probe of PNP0C0A:00 returned 0 after 61076 usecs
[ 9.539245] probe of INT3403:03 returned 0 after 8354 usecs
[ 9.539375] initcall int3403_driver_init+0x0/0x1000 [int3403_thermal] returned 0 after 25975 usecs
[ 9.542022] calling pmt_telem_init+0x0/0x1000 [pmt_telemetry] @ 453
[ 9.542047] initcall pmt_telem_init+0x0/0x1000 [pmt_telemetry] returned 0 after 16 usecs
[ 9.546893] calling intel_vsec_pci_driver_init+0x0/0x1000 [intel_vsec] @ 453
[ 9.546928] initcall intel_vsec_pci_driver_init+0x0/0x1000 [intel_vsec] returned 0 after 25 usecs
[ 9.549005] calling mei_me_driver_init+0x0/0x1000 [mei_me] @ 460
[ 9.549044] initcall mei_me_driver_init+0x0/0x1000 [mei_me] returned 0 after 28 usecs
[ 9.549179] mei_me 0000:00:16.0: enabling device (0000 -> 0002)
[ 9.557749] calling pmc_core_driver_init+0x0/0x1000 [intel_pmc_core] @ 453
[ 9.557948] intel_pmc_core INT33A1:00: initialized
[ 9.558030] probe of INT33A1:00 returned 0 after 162 usecs
[ 9.559994] calling ucsi_module_init+0x0/0x1000 [typec_ucsi] @ 449
[ 9.560018] initcall ucsi_module_init+0x0/0x1000 [typec_ucsi] returned 0 after 4 usecs
[ 9.560372] initcall pmc_core_driver_init+0x0/0x1000 [intel_pmc_core] returned 0 after 359 usecs
[ 9.565065] probe of INT33D5:00 returned 0 after 86683 usecs
[ 9.565094] initcall intel_hid_init+0x0/0x50 [intel_hid] returned 0 after 5080 usecs
[ 9.565307] probe of 0018:06CB:76AF.0001 returned 19 after 192 usecs
[ 9.566051] probe of INT33D6:00 returned 0 after 52141 usecs
[ 9.566078] initcall intel_vbtn_init+0x0/0x50 [intel_vbtn] returned 0 after 6065 usecs
[ 9.567973] ACPI: button: Power Button [PBTN]
[ 9.567992] probe of 0000:00:16.0 returned 0 after 18870 usecs
[ 9.567999] probe of PNP0C0C:00 returned 0 after 55143 usecs
[ 9.568048] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input15
[ 9.572037] ACPI: button: Sleep Button [SBTN]
[ 9.572050] probe of PNP0C0E:00 returned 0 after 4047 usecs
[ 9.574580] calling ucsi_acpi_platform_driver_init+0x0/0x1000 [ucsi_acpi] @ 449
[ 9.574583] calling rapl_init+0x0/0x1000 [intel_rapl_common] @ 456
[ 9.574623] initcall rapl_init+0x0/0x1000 [intel_rapl_common] returned 0 after 34 usecs
[ 9.578882] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input16
[ 9.583365] input: DLL075B:01 06CB:76AF Mouse as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-2/i2c-DLL075B:01/0018:06CB:76AF.0001/input/input17
[ 9.584764] Adding 8387904k swap on /dev/nvme0n1p4. Priority:-2 extents:1 across:8387904k SS
[ 9.587573] input: DLL075B:01 06CB:76AF Touchpad as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-2/i2c-DLL075B:01/0018:06CB:76AF.0001/input/input18
[ 9.589597] calling drm_display_helper_module_init+0x0/0x1000 [drm_display_helper] @ 457
[ 9.589617] initcall drm_display_helper_module_init+0x0/0x1000 [drm_display_helper] returned 0 after 0 usecs
[ 9.590467] ACPI: button: Power Button [PWRF]
[ 9.593056] calling drm_buddy_module_init+0x0/0x1000 [drm_buddy] @ 457
[ 9.593141] probe of LNXPWRBN:00 returned 0 after 21082 usecs
[ 9.593781] initcall drm_buddy_module_init+0x0/0x1000 [drm_buddy] returned 0 after 719 usecs
[ 9.594842] initcall acpi_button_driver_init+0x0/0x1000 [button] returned 0 after 1780 usecs
[ 9.597797] hid-multitouch 0018:06CB:76AF.0001: input,hidraw0: I2C HID v1.00 Mouse [DLL075B:01 06CB:76AF] on i2c-DLL075B:01
[ 9.599014] probe of 0018:06CB:76AF.0001 returned 0 after 33702 usecs
[ 9.604473] probe of USBC000:00 returned 0 after 29861 usecs
[ 9.610850] initcall ucsi_acpi_platform_driver_init+0x0/0x1000 [ucsi_acpi] returned 0 after 17788 usecs
[ 9.628619] calling rfkill_init+0x0/0x140 [rfkill] @ 451
[ 9.631652] calling proc_thermal_pci_driver_init+0x0/0x1000 [processor_thermal_device_pci_legacy] @ 456
[ 9.631697] proc_thermal 0000:00:04.0: enabling device (0000 -> 0002)
[ 9.636427] calling acpi_cpufreq_init+0x0/0x30 [acpi_cpufreq] @ 468
[ 9.636453] probe of acpi-cpufreq returned 19 after 8 usecs
[ 9.636497] initcall acpi_cpufreq_init+0x0/0x30 [acpi_cpufreq] returned -19 after 63 usecs
[ 9.640634] calling init_soundcore+0x0/0x1000 [soundcore] @ 452
[ 9.640650] initcall init_soundcore+0x0/0x1000 [soundcore] returned 0 after 7 usecs
[ 9.641248] calling media_devnode_init+0x0/0x1000 [mc] @ 453
[ 9.641261] mc: Linux media interface: v0.10
[ 9.641275] initcall media_devnode_init+0x0/0x1000 [mc] returned 0 after 14 usecs
[ 9.641400] calling pcspkr_platform_driver_init+0x0/0x1000 [pcspkr] @ 454
[ 9.641486] input: PC Speaker as /devices/platform/pcspkr/input/input20
[ 9.644261] calling watchdog_init+0x0/0xb0 [watchdog] @ 460
[ 9.646231] initcall watchdog_init+0x0/0xb0 [watchdog] returned 0 after 1957 usecs
[ 9.650138] calling iTCO_vendor_init_module+0x0/0x1000 [iTCO_vendor_support] @ 460
[ 9.650147] iTCO_vendor_support: vendor-support=0
[ 9.650148] initcall iTCO_vendor_init_module+0x0/0x1000 [iTCO_vendor_support] returned 0 after 1 usecs
[ 9.652392] calling alsa_sound_init+0x0/0x90 [snd] @ 452
[ 9.652416] initcall alsa_sound_init+0x0/0x90 [snd] returned 0 after 9 usecs
[ 9.655259] calling intel_pmc_driver_init+0x0/0x1000 [intel_pmc_bxt] @ 460
[ 9.655306] initcall intel_pmc_driver_init+0x0/0x1000 [intel_pmc_bxt] returned 0 after 38 usecs
[ 9.658330] calling alsa_timer_init+0x0/0x1000 [snd_timer] @ 452
[ 9.658384] intel_rapl_common: Found RAPL domain package
[ 9.658386] intel_rapl_common: Found RAPL domain dram
[ 9.659965] calling iTCO_wdt_driver_init+0x0/0x1000 [iTCO_wdt] @ 460
[ 9.659999] initcall alsa_timer_init+0x0/0x1000 [snd_timer] returned 0 after 26 usecs
[ 9.661318] iTCO_wdt iTCO_wdt: Found a Intel PCH TCO device (Version=4, TCOBASE=0x0400)
[ 9.663156] initcall rfkill_init+0x0/0x140 [rfkill] returned 0 after 3183 usecs
[ 9.666461] iTCO_wdt iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[ 9.666483] probe of iTCO_wdt returned 0 after 6172 usecs
[ 9.666504] initcall iTCO_wdt_driver_init+0x0/0x1000 [iTCO_wdt] returned 0 after 6532 usecs
[ 9.667068] probe of 0000:00:04.0 returned 0 after 35400 usecs
[ 9.667087] initcall proc_thermal_pci_driver_init+0x0/0x1000 [processor_thermal_device_pci_legacy] returned 0 after 7115 usecs
[ 9.669403] calling intel_uncore_init+0x0/0xda0 [intel_uncore] @ 461
[ 9.669544] probe of 0000:00:00.0 returned 0 after 101 usecs
[ 9.671295] initcall intel_uncore_init+0x0/0xda0 [intel_uncore] returned 0 after 1874 usecs
[ 9.681852] calling ecdh_init+0x0/0x1000 [ecdh_generic] @ 451
[ 9.682589] calling alsa_pcm_init+0x0/0x1000 [snd_pcm] @ 452
[ 9.682606] initcall alsa_pcm_init+0x0/0x1000 [snd_pcm] returned 0 after 3 usecs
[ 9.690150] initcall ecdh_init+0x0/0x1000 [ecdh_generic] returned 0 after 7547 usecs
[ 9.694220] probe of pcspkr returned 0 after 52792 usecs
[ 9.694241] initcall pcspkr_platform_driver_init+0x0/0x1000 [pcspkr] returned 0 after 11638 usecs
[ 9.694622] probe of 0003:04F3:2234.0002 returned 19 after 9 usecs
[ 9.696418] calling videodev_init+0x0/0x1000 [videodev] @ 453
[ 9.696441] videodev: Linux video capture interface: v2.00
[ 9.696450] initcall videodev_init+0x0/0x1000 [videodev] returned 0 after 9 usecs
[ 9.699404] calling cstate_pmu_init+0x0/0x1000 [intel_cstate] @ 461
[ 9.702242] initcall cstate_pmu_init+0x0/0x1000 [intel_cstate] returned 0 after 2829 usecs
[ 9.702360] input: ELAN Touchscreen as /devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.0/0003:04F3:2234.0002/input/input21
[ 9.702453] input: ELAN Touchscreen UNKNOWN as /devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.0/0003:04F3:2234.0002/input/input22
[ 9.702509] input: ELAN Touchscreen UNKNOWN as /devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.0/0003:04F3:2234.0002/input/input23
[ 9.704577] hid-multitouch 0003:04F3:2234.0002: input,hiddev0,hidraw1: USB HID v1.10 Device [ELAN Touchscreen] on usb-0000:00:14.0-4/input0
[ 9.704964] probe of 0003:04F3:2234.0002 returned 0 after 10338 usecs
[ 9.704970] initcall mt_driver_init+0x0/0x1000 [hid_multitouch] returned 0 after 5557 usecs
[ 9.732022] calling rapl_pmu_init+0x0/0x1000 [rapl] @ 449
[ 9.735149] RAPL PMU: API unit is 2^-32 Joules, 5 fixed counters, 655360 ms ovfl timer
[ 9.735152] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[ 9.735154] RAPL PMU: hw unit of domain package 2^-14 Joules
[ 9.735155] RAPL PMU: hw unit of domain dram 2^-14 Joules
[ 9.735156] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
[ 9.735157] RAPL PMU: hw unit of domain psys 2^-14 Joules
[ 9.735159] initcall rapl_pmu_init+0x0/0x1000 [rapl] returned 0 after 3128 usecs
[ 9.740674] calling hda_bus_init+0x0/0x1000 [snd_hda_core] @ 452
[ 9.740710] initcall hda_bus_init+0x0/0x1000 [snd_hda_core] returned 0 after 20 usecs
[ 9.778807] calling dell_wmi_descriptor_driver_init+0x0/0x1000 [dell_wmi_descriptor] @ 450
[ 9.778875] calling intel_wmi_thunderbolt_driver_init+0x0/0x1000 [intel_wmi_thunderbolt] @ 464
[ 9.778933] calling i8k_init+0x0/0x350 [dell_smm_hwmon] @ 470
[ 9.779011] calling wmi_bmof_driver_init+0x0/0x1000 [wmi_bmof] @ 456
[ 9.779017] calling alsa_hwdep_init+0x0/0x1000 [snd_hwdep] @ 452
[ 9.779025] initcall alsa_hwdep_init+0x0/0x1000 [snd_hwdep] returned 0 after 4 usecs
[ 9.779825] calling joydev_init+0x0/0x1000 [joydev] @ 460
[ 9.779836] initcall joydev_init+0x0/0x1000 [joydev] returned 0 after 5 usecs
[ 9.781281] probe of 86CCFD48-205E-4A77-9C48-2021CBEDE341 returned 0 after 2396 usecs
[ 9.781297] initcall intel_wmi_thunderbolt_driver_init+0x0/0x1000 [intel_wmi_thunderbolt] returned 0 after 1466 usecs
[ 9.781436] calling cfg80211_init+0x0/0xd0 [cfg80211] @ 462
[ 9.816113] probe of 05901221-D566-11D1-B2F0-00A0C9062910 returned 0 after 37092 usecs
[ 9.816134] initcall wmi_bmof_driver_init+0x0/0x1000 [wmi_bmof] returned 0 after 34645 usecs
[ 9.824707] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[ 9.830287] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[ 9.832405] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[ 9.832491] initcall cfg80211_init+0x0/0xd0 [cfg80211] returned 0 after 51002 usecs
[ 9.834002] probe of dell_smm_hwmon returned 0 after 54202 usecs
[ 9.834030] initcall i8k_init+0x0/0x350 [dell_smm_hwmon] returned 0 after 52541 usecs
[ 9.835448] cfg80211: loaded regulatory.db is malformed or signature is missing/invalid
[ 9.838329] probe of 8D9DDCBC-A997-11DA-B012-B622A1EF5492 returned 0 after 59505 usecs
[ 9.838434] initcall dell_wmi_descriptor_driver_init+0x0/0x1000 [dell_wmi_descriptor] returned 0 after 56945 usecs
[ 9.842153] calling bt_init+0x0/0xd0 [bluetooth] @ 451
[ 9.842198] Bluetooth: Core ver 2.22
[ 9.842216] NET: Registered PF_BLUETOOTH protocol family
[ 9.842218] Bluetooth: HCI device and connection manager initialized
[ 9.842222] Bluetooth: HCI socket layer initialized
[ 9.842224] Bluetooth: L2CAP socket layer initialized
[ 9.842227] Bluetooth: SCO socket layer initialized
[ 9.842230] initcall bt_init+0x0/0xd0 [bluetooth] returned 0 after 31 usecs
[ 10.124207] calling i915_init+0x0/0xb0 [i915] @ 457
[ 10.124529] stackdepot: allocating hash table of 1048576 entries via kvcalloc
[ 10.126362] calling dcdbas_init+0x0/0x1000 [dcdbas] @ 470
[ 10.126523] probe of dcdbas returned 19 after 40 usecs
[ 10.126530] initcall dcdbas_init+0x0/0x1000 [dcdbas] returned 0 after 157 usecs
[ 10.127971] calling mei_hdcp_driver_init+0x0/0x1000 [mei_hdcp] @ 469
[ 10.129666] probe of 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04 returned 0 after 1659 usecs
[ 10.129697] initcall mei_hdcp_driver_init+0x0/0x1000 [mei_hdcp] returned 0 after 1711 usecs
[ 10.129948] calling dell_smbios_init+0x0/0xf00 [dell_smbios] @ 470
[ 10.130084] probe of dell-smbios.0 returned 0 after 17 usecs
[ 10.130162] Console: switching to colour dummy device 80x25
[ 10.130218] i915 0000:00:02.0: vgaarb: deactivate vga console
[ 10.130802] calling mei_wdt_driver_init+0x0/0x1000 [mei_wdt] @ 456
[ 10.131687] calling kvm_x86_init+0x0/0x50 [kvm] @ 465
[ 10.131745] initcall kvm_x86_init+0x0/0x50 [kvm] returned 0 after 0 usecs
[ 10.132051] probe of A80593CE-A997-11DA-B012-B622A1EF5492 returned 0 after 1944 usecs
[ 10.133696] initcall dell_smbios_init+0x0/0xf00 [dell_smbios] returned 0 after 1951 usecs
[ 10.134658] probe of 0000:00:16.0-05b79a6f-4628-4d7f-899d-a91514cb32ab returned 0 after 3841 usecs
[ 10.134692] initcall mei_wdt_driver_init+0x0/0x1000 [mei_wdt] returned 0 after 2947 usecs
[ 10.136901] calling dell_wmi_init+0x0/0xfe0 [dell_wmi] @ 454
[ 10.138604] calling mei_pxp_driver_init+0x0/0x1000 [mei_pxp] @ 471
[ 10.143192] calling dell_init+0x0/0xfe0 [dell_laptop] @ 470
[ 10.144926] probe of dell-laptop returned 0 after 1648 usecs
[ 10.145353] probe of 0000:00:16.0-fbf6fcf1-96cf-4e2e-a6a6-1bab8cbe36b1 returned 0 after 6734 usecs
[ 10.145439] initcall mei_pxp_driver_init+0x0/0x1000 [mei_pxp] returned 0 after 2237 usecs
[ 10.147236] calling uvc_init+0x0/0x1000 [uvcvideo] @ 453
[ 10.148290] calling azx_driver_init+0x0/0x1000 [snd_hda_intel] @ 452
[ 10.148328] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
[ 10.148347] snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002)
[ 10.148352] input: Dell WMI hotkeys as /devices/platform/PNP0C14:01/wmi_bus/wmi_bus-PNP0C14:01/9DBB5994-A997-11DA-B012-B622A1EF5492/input/input25
[ 10.148427] probe of 9DBB5994-A997-11DA-B012-B622A1EF5492 returned 0 after 11508 usecs
[ 10.148450] initcall dell_wmi_init+0x0/0xfe0 [dell_wmi] returned 0 after 149 usecs
[ 10.149622] calling intel_rapl_msr_driver_init+0x0/0x1000 [intel_rapl_msr] @ 458
[ 10.149690] intel_rapl_common: Found RAPL domain package
[ 10.149693] intel_rapl_common: Found RAPL domain core
[ 10.149694] intel_rapl_common: Found RAPL domain uncore
[ 10.149695] intel_rapl_common: Found RAPL domain dram
[ 10.149697] intel_rapl_common: Found RAPL domain psys
[ 10.150096] i915 0000:00:02.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=io+mem:owns=io+mem
[ 10.150767] usb 1-5: Found UVC 1.00 device Integrated_Webcam_HD (0c45:670c)
[ 10.152247] i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/kbl_dmc_ver1_04.bin (v1.4)
[ 10.152934] probe of 0000:00:1f.3 returned 517 after 4615 usecs
[ 10.152961] initcall azx_driver_init+0x0/0x1000 [snd_hda_intel] returned 0 after 3332 usecs
[ 10.152981] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
[ 10.156688] calling vmx_init+0x0/0x140 [kvm_intel] @ 465
[ 10.156777] probe of intel_rapl_msr.0 returned 0 after 7123 usecs
[ 10.156794] initcall intel_rapl_msr_driver_init+0x0/0x1000 [intel_rapl_msr] returned 0 after 90 usecs
[ 10.158101] probe of 0000:00:1f.3 returned 517 after 5139 usecs
[ 10.159293] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
[ 10.162550] probe of 0000:00:1f.3 returned 517 after 4424 usecs
[ 10.168068] calling btusb_driver_init+0x0/0x1000 [btusb] @ 455
[ 10.169617] initcall vmx_init+0x0/0x140 [kvm_intel] returned 0 after 1539 usecs
[ 10.186131] calling coretemp_init+0x0/0x1000 [coretemp] @ 461
[ 10.190362] initcall coretemp_init+0x0/0x1000 [coretemp] returned 0 after 4210 usecs
[ 10.197544] calling snd_soc_init+0x0/0xa0 [snd_soc_core] @ 452
[ 10.201645] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
[ 10.201687] probe of snd-soc-dummy returned 0 after 301 usecs
[ 10.206008] probe of 0000:00:1f.3 returned 517 after 4379 usecs
[ 10.207652] initcall snd_soc_init+0x0/0xa0 [snd_soc_core] returned 0 after 10078 usecs
[ 10.211934] calling powerclamp_init+0x0/0x1000 [intel_powerclamp] @ 461
[ 10.211990] initcall powerclamp_init+0x0/0x1000 [intel_powerclamp] returned 0 after 46 usecs
[ 10.213373] calling pkg_temp_thermal_init+0x0/0x1000 [x86_pkg_temp_thermal] @ 465
[ 10.214623] initcall pkg_temp_thermal_init+0x0/0x1000 [x86_pkg_temp_thermal] returned 0 after 1242 usecs
[ 10.218861] calling pmc_core_platform_init+0x0/0x1000 [intel_pmc_core_pltdrv] @ 459
[ 10.218917] initcall pmc_core_platform_init+0x0/0x1000 [intel_pmc_core_pltdrv] returned -19 after 49 usecs
[ 10.221819] probe of 1-5:1.0 returned 0 after 74551 usecs
[ 10.221854] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
[ 10.221911] usbcore: registered new interface driver uvcvideo
[ 10.221914] initcall uvc_init+0x0/0x1000 [uvcvideo] returned 0 after 3045 usecs
[ 10.222847] probe of 0000:00:1f.3 returned 517 after 1004 usecs
[ 10.245531] initcall dell_init+0x0/0xfe0 [dell_laptop] returned 0 after 26662 usecs
[ 10.264496] calling ieee80211_init+0x0/0x70 [mac80211] @ 462
[ 10.264553] initcall ieee80211_init+0x0/0x70 [mac80211] returned 0 after 7 usecs
[ 10.278859] calling skl_driver_init+0x0/0x1000 [snd_soc_skl] @ 452
[ 10.278908] snd_soc_skl 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
[ 10.278915] probe of 0000:00:1f.3 returned 19 after 17 usecs
[ 10.278938] initcall skl_driver_init+0x0/0x1000 [snd_soc_skl] returned 0 after 61 usecs
[ 10.282179] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
[ 10.282317] probe of 1-3:1.0 returned 0 after 222 usecs
[ 10.282335] usbcore: registered new interface driver btusb
[ 10.282337] initcall btusb_driver_init+0x0/0x1000 [btusb] returned 0 after 3460 usecs
[ 10.283126] probe of 0000:00:1f.3 returned 517 after 953 usecs
[ 10.283135] snd_soc_skl 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
[ 10.283140] probe of 0000:00:1f.3 returned 19 after 9 usecs
[ 10.283179] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
[ 10.283380] probe of 0000:00:1f.3 returned 517 after 203 usecs
[ 10.283388] snd_soc_skl 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
[ 10.283392] probe of 0000:00:1f.3 returned 19 after 7 usecs
[ 10.284314] Bluetooth: hci0: using rampatch file: qca/rampatch_usb_00000302.bin
[ 10.284316] Bluetooth: hci0: QCA: patch rome 0x302 build 0x3e8, firmware rome 0x302 build 0x111
[ 10.304288] EXT4-fs (nvme0n1p2): mounted filesystem 2d23fd4c-5d03-4e1a-8a42-0e859d1f00d8 r/w with ordered data mode. Quota mode: none.
[ 10.323052] calling avs_pci_driver_init+0x0/0x1000 [snd_soc_avs] @ 452
[ 10.323092] snd_soc_avs 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
[ 10.323099] probe of 0000:00:1f.3 returned 19 after 17 usecs
[ 10.323098] calling ath10k_pci_init+0x0/0x1000 [ath10k_pci] @ 462
[ 10.323121] initcall avs_pci_driver_init+0x0/0x1000 [snd_soc_avs] returned 0 after 17 usecs
[ 10.323864] ath10k_pci 0000:3a:00.0: enabling device (0000 -> 0002)
[ 10.325205] calling init_fat_fs+0x0/0xfc0 [fat] @ 539
[ 10.325266] initcall init_fat_fs+0x0/0xfc0 [fat] returned 0 after 46 usecs
[ 10.327567] ath10k_pci 0000:3a:00.0: pci irq msi oper_irq_mode 2 irq_mode 0 reset_mode 0
[ 10.328260] calling init_vfat_fs+0x0/0x1000 [vfat] @ 539
[ 10.328268] initcall init_vfat_fs+0x0/0x1000 [vfat] returned 0 after 2 usecs
[ 10.332349] calling init_nls_cp437+0x0/0x1000 [nls_cp437] @ 543
[ 10.332357] initcall init_nls_cp437+0x0/0x1000 [nls_cp437] returned 0 after 0 usecs
[ 10.336619] calling init_nls_ascii+0x0/0x1000 [nls_ascii] @ 544
[ 10.336626] initcall init_nls_ascii+0x0/0x1000 [nls_ascii] returned 0 after 0 usecs
[ 10.372989] calling init_misc_binfmt+0x0/0x1000 [binfmt_misc] @ 558
[ 10.373000] initcall init_misc_binfmt+0x0/0x1000 [binfmt_misc] returned 0 after 3 usecs
[ 10.383542] audit: type=1400 audit(1717056335.526:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=561 comm="apparmor_parser"
[ 10.383549] audit: type=1400 audit(1717056335.526:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=561 comm="apparmor_parser"
[ 10.384387] audit: type=1400 audit(1717056335.526:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=560 comm="apparmor_parser"
[ 10.384441] calling snd_sof_pci_intel_skl_driver_init+0x0/0x1000 [snd_sof_pci_intel_skl] @ 452
[ 10.384472] sof-audio-pci-intel-skl 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
[ 10.384479] probe of 0000:00:1f.3 returned 19 after 16 usecs
[ 10.384502] initcall snd_sof_pci_intel_skl_driver_init+0x0/0x1000 [snd_sof_pci_intel_skl] returned 0 after 53 usecs
[ 10.388841] audit: type=1400 audit(1717056335.530:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=565 comm="apparmor_parser"
[ 10.388849] audit: type=1400 audit(1717056335.530:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=565 comm="apparmor_parser"
[ 10.388851] audit: type=1400 audit(1717056335.530:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=565 comm="apparmor_parser"
[ 10.391571] audit: type=1400 audit(1717056335.534:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=562 comm="apparmor_parser"
[ 10.391581] audit: type=1400 audit(1717056335.534:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=562 comm="apparmor_parser"
[ 10.391583] audit: type=1400 audit(1717056335.534:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=562 comm="apparmor_parser"
[ 10.391584] audit: type=1400 audit(1717056335.534:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/{,usr/}sbin/dhclient" pid=562 comm="apparmor_parser"
[ 10.466378] probe of 0000:3a:00.0 returned 0 after 143269 usecs
[ 10.466399] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
[ 10.466403] initcall ath10k_pci_init+0x0/0x1000 [ath10k_pci] returned 0 after 81954 usecs
[ 10.466642] probe of 0000:00:1f.3 returned 517 after 254 usecs
[ 10.466651] snd_soc_skl 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
[ 10.466656] probe of 0000:00:1f.3 returned 19 after 9 usecs
[ 10.466661] snd_soc_avs 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
[ 10.466664] probe of 0000:00:1f.3 returned 19 after 5 usecs
[ 10.466669] sof-audio-pci-intel-skl 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
[ 10.466671] probe of 0000:00:1f.3 returned 19 after 5 usecs
[ 10.613315] ath10k_pci 0000:3a:00.0: qca6174 hw3.2 target 0x05030000 chip_id 0x00340aff sub 1a56:1535
[ 10.613322] ath10k_pci 0000:3a:00.0: kconfig debug 0 debugfs 0 tracing 0 dfs 0 testmode 0
[ 10.613746] ath10k_pci 0000:3a:00.0: firmware ver WLAN.RM.4.4.1-00288- api 6 features wowlan,ignore-otp,mfp crc32 bf907c7c
[ 10.652026] Bluetooth: hci0: using NVM file: qca/nvm_usb_00000302.bin
[ 10.683752] Bluetooth: hci0: HCI Enhanced Setup Synchronous Connection command is advertised, but not supported.
[ 10.688738] ath10k_pci 0000:3a:00.0: board_file api 2 bmi_id N/A crc32 d2863f91
[ 10.750864] i915 0000:00:02.0: [drm] [ENCODER:106:DDI B/PHY B] is disabled/in DSI mode with an ungated DDI clock, gate it
[ 10.754021] i915 0000:00:02.0: [drm] [ENCODER:117:DDI C/PHY C] is disabled/in DSI mode with an ungated DDI clock, gate it
[ 10.766990] mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_ops [i915])
[ 10.782574] [drm] Initialized i915 1.6.0 20230929 for 0000:00:02.0 on minor 0
[ 10.787184] ACPI: video: Video Device [GFX0] (multi-head: yes rom: no post: no)
[ 10.787831] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input26
[ 10.788113] probe of LNXVIDEO:00 returned 0 after 3815 usecs
[ 10.788225] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
[ 10.788893] probe of 0000:00:1f.3 returned 517 after 689 usecs
[ 10.788904] snd_soc_skl 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
[ 10.788910] probe of 0000:00:1f.3 returned 19 after 11 usecs
[ 10.789118] snd_soc_avs 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
[ 10.789288] probe of 0000:00:1f.3 returned 19 after 375 usecs
[ 10.789297] sof-audio-pci-intel-skl 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
[ 10.789300] probe of 0000:00:1f.3 returned 19 after 7 usecs
[ 10.826332] fbcon: i915drmfb (fb0) is primary device
[ 10.831845] Console: switching to colour frame buffer device 200x56
[ 10.852197] i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
[ 10.871735] probe of 0000:00:02.0 returned 0 after 747347 usecs
[ 10.871766] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
[ 10.871774] initcall i915_init+0x0/0xb0 [i915] returned 0 after 487325 usecs
[ 10.873125] ath10k_pci 0000:3a:00.0: htt-ver 3.87 wmi-op 4 htt-op 3 cal otp max-sta 32 raw 0 hwcrypto 1
[ 10.898152] snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[ 10.898329] probe of 0000:00:1f.3 returned 0 after 26574 usecs
[ 10.938993] calling generic_driver_init+0x0/0x1000 [snd_hda_codec_generic] @ 697
[ 10.939038] initcall generic_driver_init+0x0/0x1000 [snd_hda_codec_generic] returned 0 after 33 usecs
[ 10.954110] ath: EEPROM regdomain: 0x6c
[ 10.954115] ath: EEPROM indicates we should expect a direct regpair map
[ 10.954125] ath: Country alpha2 being used: 00
[ 10.954126] ath: Regpair used: 0x6c
[ 10.957441] calling realtek_driver_init+0x0/0x1000 [snd_hda_codec_realtek] @ 465
[ 10.958838] ath10k_pci 0000:3a:00.0 wlp58s0: renamed from wlan0
[ 10.964032] calling ppp_init+0x0/0x1000 [ppp_generic] @ 709
[ 10.964042] PPP generic driver version 2.4.2
[ 10.964283] initcall ppp_init+0x0/0x1000 [ppp_generic] returned 0 after 240 usecs
[ 10.965410] calling pppox_init+0x0/0x1000 [pppox] @ 709
[ 10.965418] NET: Registered PF_PPPOX protocol family
[ 10.965419] initcall pppox_init+0x0/0x1000 [pppox] returned 0 after 1 usecs
[ 10.970405] calling udp_tunnel_nic_init_module+0x0/0x1000 [udp_tunnel] @ 712
[ 10.983530] calling xfrm_user_init+0x0/0x1000 [xfrm_user] @ 715
[ 10.983539] Initializing XFRM netlink socket
[ 10.983554] initcall xfrm_user_init+0x0/0x1000 [xfrm_user] returned 0 after 14 usecs
[ 11.000258] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC3246: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[ 11.000265] snd_hda_codec_realtek hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 11.000268] snd_hda_codec_realtek hdaudioC0D0: hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[ 11.000271] snd_hda_codec_realtek hdaudioC0D0: mono: mono_out=0x0
[ 11.000273] snd_hda_codec_realtek hdaudioC0D0: inputs:
[ 11.000275] snd_hda_codec_realtek hdaudioC0D0: Headset Mic=0x19
[ 11.000277] snd_hda_codec_realtek hdaudioC0D0: Headphone Mic=0x1a
[ 11.000279] snd_hda_codec_realtek hdaudioC0D0: Internal Mic=0x12
[ 11.004449] calling snd_ctl_led_init+0x0/0x1000 [snd_ctl_led] @ 719
[ 11.004503] initcall snd_ctl_led_init+0x0/0x1000 [snd_ctl_led] returned 0 after 47 usecs
[ 11.055041] probe of hdaudioC0D0 returned 0 after 97568 usecs
[ 11.055063] initcall realtek_driver_init+0x0/0x1000 [snd_hda_codec_realtek] returned 0 after 50606 usecs
[ 11.063383] calling hdmi_driver_init+0x0/0x1000 [snd_hda_codec_hdmi] @ 459
[ 11.070550] probe of hdaudioC0D2 returned 0 after 7144 usecs
[ 11.070573] initcall hdmi_driver_init+0x0/0x1000 [snd_hda_codec_hdmi] returned 0 after 7178 usecs
[ 11.072109] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1f.3/sound/card0/input27
[ 11.072171] input: HDA Intel PCH Headphone Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input28
[ 11.072221] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input29
[ 11.072265] input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input30
[ 11.072308] input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input31
[ 11.255151] initcall udp_tunnel_nic_init_module+0x0/0x1000 [udp_tunnel] returned 0 after 191755 usecs
[ 11.260043] calling tunnel6_init+0x0/0x1000 [tunnel6] @ 778
[ 11.260051] initcall tunnel6_init+0x0/0x1000 [tunnel6] returned 0 after 0 usecs
[ 11.261245] calling xfrm6_tunnel_init+0x0/0x1000 [xfrm6_tunnel] @ 777
[ 11.261270] initcall xfrm6_tunnel_init+0x0/0x1000 [xfrm6_tunnel] returned 0 after 15 usecs
[ 11.263754] calling xfrmi_init+0x0/0xfe0 [xfrm_interface] @ 778
[ 11.263762] IPsec XFRM device driver
[ 11.265115] calling l2tp_init+0x0/0x1000 [l2tp_core] @ 712
[ 11.265144] l2tp_core: L2TP core driver, V2.0
[ 11.265145] initcall l2tp_init+0x0/0x1000 [l2tp_core] returned 0 after 20 usecs
[ 11.267178] calling l2tp_nl_init+0x0/0x1000 [l2tp_netlink] @ 712
[ 11.267185] l2tp_netlink: L2TP netlink interface
[ 11.267205] initcall l2tp_nl_init+0x0/0x1000 [l2tp_netlink] returned 0 after 20 usecs
[ 11.269717] calling pppol2tp_init+0x0/0x1000 [l2tp_ppp] @ 712
[ 11.269733] l2tp_ppp: PPPoL2TP kernel driver, V2.0
[ 11.269735] initcall pppol2tp_init+0x0/0x1000 [l2tp_ppp] returned 0 after 9 usecs
[ 11.359403] initcall xfrmi_init+0x0/0xfe0 [xfrm_interface] returned 0 after 89677 usecs
[ 11.507507] calling alsa_seq_device_init+0x0/0x1000 [snd_seq_device] @ 823
[ 11.507538] initcall alsa_seq_device_init+0x0/0x1000 [snd_seq_device] returned 0 after 25 usecs
[ 11.513587] calling alsa_seq_init+0x0/0x60 [snd_seq] @ 823
[ 11.513658] initcall alsa_seq_init+0x0/0x60 [snd_seq] returned 0 after 61 usecs
[ 11.517081] calling snd_hrtimer_init+0x0/0x1000 [snd_hrtimer] @ 824
[ 11.517089] initcall snd_hrtimer_init+0x0/0x1000 [snd_hrtimer] returned 0 after 1 usecs
[ 11.519822] calling alsa_seq_dummy_init+0x0/0xe30 [snd_seq_dummy] @ 825
[ 11.519836] initcall alsa_seq_dummy_init+0x0/0xe30 [snd_seq_dummy] returned 0 after 6 usecs
[ 13.120342] rfkill: input handler disabled
[ 16.690467] rfkill: input handler enabled
[ 17.123705] wlp58s0: VHT information is missing, disabling VHT
[ 17.158439] wlp58s0: authenticate with 6c:f3:7f:ac:d3:30 (local address=9c:b6:d0:d1:6a:b1)
[ 17.158444] wlp58s0: send auth to 6c:f3:7f:ac:d3:30 (try 1/3)
[ 17.173006] wlp58s0: authenticated
[ 17.174001] wlp58s0: associate with 6c:f3:7f:ac:d3:30 (try 1/3)
[ 17.196323] wlp58s0: RX AssocResp from 6c:f3:7f:ac:d3:30 (capab=0x411 status=0 aid=1)
[ 17.198682] wlp58s0: associated
[ 17.284362] calling crypto_ccm_module_init+0x0/0x1000 [ccm] @ 1509
[ 17.284379] initcall crypto_ccm_module_init+0x0/0x1000 [ccm] returned 0 after 1 usecs
[ 17.304987] calling crypto_ctr_module_init+0x0/0x1000 [ctr] @ 1517
[ 17.305003] initcall crypto_ctr_module_init+0x0/0x1000 [ctr] returned 0 after 1 usecs
[ 19.275629] rfkill: input handler disabled
[ 34.959242] wlp58s0: deauthenticating from 6c:f3:7f:ac:d3:30 by local choice (Reason: 3=DEAUTH_LEAVING)
[ 41.085940] PM: suspend entry (s2idle)
[ 41.106645] Filesystems sync: 0.020 seconds
[ 41.115019] Freezing user space processes
[ 41.116853] Freezing user space processes completed (elapsed 0.001 seconds)
[ 41.116863] OOM killer disabled.
[ 41.116865] Freezing remaining freezable tasks
[ 41.118129] Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
[ 41.118138] printk: Suspending console(s) (use no_console_suspend to debug)
[ 41.157485] input input31: PM: calling input_dev_suspend @ 2957, parent: card0
[ 41.157506] input input31: PM: input_dev_suspend returned 0 after 0 usecs
[ 41.157517] input input30: PM: calling input_dev_suspend @ 2957, parent: card0
[ 41.157526] input input30: PM: input_dev_suspend returned 0 after 0 usecs
[ 41.157535] input input29: PM: calling input_dev_suspend @ 2957, parent: card0
[ 41.157542] input input29: PM: input_dev_suspend returned 0 after 0 usecs
[ 41.157550] input input28: PM: calling input_dev_suspend @ 2957, parent: card0
[ 41.157557] input input28: PM: input_dev_suspend returned 0 after 0 usecs
[ 41.157566] input input27: PM: calling input_dev_suspend @ 2957, parent: card0
[ 41.157573] input input27: PM: input_dev_suspend returned 0 after 0 usecs
[ 41.157583] sound pcmC0D8p: PM: calling do_pcm_suspend [snd_pcm] @ 2957, parent: card0
[ 41.157615] sound pcmC0D8p: PM: do_pcm_suspend [snd_pcm] returned 0 after 1 usecs
[ 41.157637] sound pcmC0D7p: PM: calling do_pcm_suspend [snd_pcm] @ 2957, parent: card0
[ 41.157659] sound pcmC0D7p: PM: do_pcm_suspend [snd_pcm] returned 0 after 0 usecs
[ 41.157680] sound pcmC0D3p: PM: calling do_pcm_suspend [snd_pcm] @ 2957, parent: card0
[ 41.157701] sound pcmC0D3p: PM: do_pcm_suspend [snd_pcm] returned 0 after 0 usecs
[ 41.157723] sound pcmC0D0c: PM: calling do_pcm_suspend [snd_pcm] @ 2957, parent: card0
[ 41.157746] sound pcmC0D0c: PM: do_pcm_suspend [snd_pcm] returned 0 after 0 usecs
[ 41.157768] sound pcmC0D0p: PM: calling do_pcm_suspend [snd_pcm] @ 2957, parent: card0
[ 41.157790] sound pcmC0D0p: PM: do_pcm_suspend [snd_pcm] returned 0 after 0 usecs
[ 41.157827] rfkill rfkill1: PM: calling rfkill_suspend [rfkill] @ 2957, parent: phy0
[ 41.157840] rfkill rfkill1: PM: rfkill_suspend [rfkill] returned 0 after 0 usecs
[ 41.157860] input input26: PM: calling input_dev_suspend @ 2957, parent: LNXVIDEO:00
[ 41.157869] input input26: PM: input_dev_suspend returned 0 after 0 usecs
[ 41.157901] snd_hda_intel 0000:00:1f.3: PM: calling pci_pm_suspend @ 370, parent: pci0000:00
[ 41.157952] backlight intel_backlight: PM: calling backlight_suspend @ 2957, parent: card0-eDP-1
[ 41.157972] backlight intel_backlight: PM: backlight_suspend returned 0 after 1 usecs
[ 41.157886] ieee80211 phy0: PM: calling wiphy_suspend [cfg80211] @ 635, parent: 0000:3a:00.0
[ 41.158034] rfkill rfkill0: PM: calling rfkill_suspend [rfkill] @ 2957, parent: hci0
[ 41.158049] rfkill rfkill0: PM: rfkill_suspend [rfkill] returned 0 after 0 usecs
[ 41.158063] leds dell::kbd_backlight: PM: calling led_suspend @ 2957, parent: dell-laptop
[ 41.158075] leds dell::kbd_backlight: PM: led_suspend returned 0 after 0 usecs
[ 41.158091] snd-soc-dummy snd-soc-dummy: PM: calling platform_pm_suspend @ 2957, parent: platform
[ 41.158109] snd-soc-dummy snd-soc-dummy: PM: platform_pm_suspend returned 0 after 0 usecs
[ 41.158126] platform coretemp.0: PM: calling platform_pm_suspend @ 2957, parent: platform
[ 41.158140] platform coretemp.0: PM: platform_pm_suspend returned 0 after 0 usecs
[ 41.158177] input input25: PM: calling input_dev_suspend @ 2957, parent: 9DBB5994-A997-11DA-B012-B622A1EF5492
[ 41.158190] input input25: PM: input_dev_suspend returned 0 after 0 usecs
[ 41.158202] dell-laptop dell-laptop: PM: calling platform_pm_suspend @ 2957, parent: platform
[ 41.158214] dell-laptop dell-laptop: PM: platform_pm_suspend returned 0 after 0 usecs
[ 41.158224] dell-smbios dell-smbios.0: PM: calling platform_pm_suspend @ 2957, parent: platform
[ 41.158232] dell-smbios dell-smbios.0: PM: platform_pm_suspend returned 0 after 0 usecs
[ 41.158241] platform dcdbas: PM: calling platform_pm_suspend @ 2957, parent: platform
[ 41.158250] platform dcdbas: PM: platform_pm_suspend returned 0 after 0 usecs
[ 41.158260] platform regulatory.0: PM: calling platform_pm_suspend @ 2957, parent: platform
[ 41.158268] platform regulatory.0: PM: platform_pm_suspend returned 0 after 0 usecs
[ 41.158277] dell_smm_hwmon dell_smm_hwmon: PM: calling platform_pm_suspend @ 2957, parent: platform
[ 41.158286] dell_smm_hwmon dell_smm_hwmon: PM: platform_pm_suspend returned 0 after 0 usecs
[ 41.158298] input input23: PM: calling input_dev_suspend @ 2957, parent: 0003:04F3:2234.0002
[ 41.158307] input input23: PM: input_dev_suspend returned 0 after 0 usecs
[ 41.158316] input input22: PM: calling input_dev_suspend @ 2957, parent: 0003:04F3:2234.0002
[ 41.158323] input input22: PM: input_dev_suspend returned 0 after 0 usecs
[ 41.158333] input input21: PM: calling input_dev_suspend @ 2957, parent: 0003:04F3:2234.0002
[ 41.158341] input input21: PM: input_dev_suspend returned 0 after 0 usecs
[ 41.158361] input input20: PM: calling input_dev_suspend @ 2957, parent: pcspkr
[ 41.158368] input input20: PM: input_dev_suspend returned 0 after 0 usecs
[ 41.158380] input input18: PM: calling input_dev_suspend @ 2957, parent: 0018:06CB:76AF.0001
[ 41.158388] input input18: PM: input_dev_suspend returned 0 after 0 usecs
[ 41.158398] input input17: PM: calling input_dev_suspend @ 2957, parent: 0018:06CB:76AF.0001
[ 41.158405] input input17: PM: input_dev_suspend returned 0 after 0 usecs
[ 41.158414] input input16: PM: calling input_dev_suspend @ 2957, parent: LNXPWRBN:00
[ 41.158421] input input16: PM: input_dev_suspend returned 0 after 0 usecs
[ 41.158433] intel_rapl_msr intel_rapl_msr.0: PM: calling platform_pm_suspend @ 2957, parent: platform
[ 41.158445] intel_rapl_msr intel_rapl_msr.0: PM: platform_pm_suspend returned 0 after 0 usecs
[ 41.158475] input input15: PM: calling input_dev_suspend @ 2957, parent: PNP0C0E:00
[ 41.158487] input input15: PM: input_dev_suspend returned 0 after 0 usecs
[ 41.158509] input input13: PM: calling input_dev_suspend @ 2957, parent: INT33D6:00
[ 41.158520] input input13: PM: input_dev_suspend returned 0 after 0 usecs
[ 41.158531] input input12: PM: calling input_dev_suspend @ 2957, parent: PNP0C0C:00
[ 41.158541] input input12: PM: input_dev_suspend returned 0 after 0 usecs
[ 41.158551] input input11: PM: calling input_dev_suspend @ 2957, parent: INT33D5:00
[ 41.158559] input input11: PM: input_dev_suspend returned 0 after 0 usecs
[ 41.158582] input input10: PM: calling input_dev_suspend @ 2957, parent: INT33D5:00
[ 41.158589] input input10: PM: input_dev_suspend returned 0 after 0 usecs
[ 41.158599] input input9: PM: calling input_dev_suspend @ 2957, parent: PNP0C0D:00
[ 41.158607] input input9: PM: input_dev_suspend returned 0 after 0 usecs
[ 41.158664] usb 1-5: PM: calling usb_dev_suspend [usbcore] @ 11, parent: usb1
[ 41.158706] intel_xhci_usb_sw intel_xhci_usb_sw: PM: calling platform_pm_suspend @ 2957, parent: 0000:00:14.0
[ 41.158719] intel_xhci_usb_sw intel_xhci_usb_sw: PM: platform_pm_suspend returned 0 after 0 usecs
[ 41.158751] iTCO_wdt iTCO_wdt: PM: calling platform_pm_suspend @ 2957, parent: 0000:00:1f.4
[ 41.158763] iTCO_wdt iTCO_wdt: PM: platform_pm_suspend returned 0 after 0 usecs
[ 41.158742] usb 1-5: PM: usb_dev_suspend [usbcore] returned 0 after 1 usecs
[ 41.158780] idma64 idma64.1: PM: calling platform_pm_suspend @ 2957, parent: 0000:00:15.1
[ 41.158693] usb 1-4: PM: calling usb_dev_suspend [usbcore] @ 44, parent: usb1
[ 41.158916] usb 1-3: PM: calling usb_dev_suspend [usbcore] @ 11, parent: usb1
[ 41.159080] usb usb2: PM: calling usb_dev_suspend [usbcore] @ 43, parent: 0000:00:14.0
[ 41.159228] usb 1-3: PM: usb_dev_suspend [usbcore] returned 0 after 13 usecs
[ 41.159518] i2c_hid_acpi i2c-DLL075B:01: PM: calling acpi_subsys_suspend @ 11, parent: i2c-2
[ 41.159509] usb 1-4: PM: usb_dev_suspend [usbcore] returned 0 after 577 usecs
[ 41.159660] usb usb1: PM: calling usb_dev_suspend [usbcore] @ 716, parent: 0000:00:14.0
[ 41.159848] idma64 idma64.1: PM: platform_pm_suspend returned 0 after 1056 usecs
[ 41.159868] idma64 idma64.0: PM: calling platform_pm_suspend @ 2957, parent: 0000:00:15.0
[ 41.160117] i2c_designware i2c_designware.0: PM: calling platform_pm_suspend @ 710, parent: 0000:00:15.0
[ 41.160131] i2c_designware i2c_designware.0: PM: platform_pm_suspend returned 0 after 0 usecs
[ 41.160883] idma64 idma64.0: PM: platform_pm_suspend returned 0 after 1004 usecs
[ 41.160899] platform microcode: PM: calling platform_pm_suspend @ 2957, parent: platform
[ 41.160908] platform microcode: PM: platform_pm_suspend returned 0 after 0 usecs
[ 41.160925] leds input0::scrolllock: PM: calling led_suspend @ 2957, parent: input0
[ 41.160935] leds input0::scrolllock: PM: led_suspend returned 0 after 0 usecs
[ 41.160945] leds input0::capslock: PM: calling led_suspend @ 2957, parent: input0
[ 41.160953] leds input0::capslock: PM: led_suspend returned 0 after 0 usecs
[ 41.160960] leds input0::numlock: PM: calling led_suspend @ 2957, parent: input0
[ 41.160966] leds input0::numlock: PM: led_suspend returned 0 after 0 usecs
[ 41.160974] input input0: PM: calling input_dev_suspend @ 2957, parent: serio0
[ 41.160983] input input0: PM: input_dev_suspend returned 0 after 0 usecs
[ 41.160993] alarmtimer alarmtimer.0.auto: PM: calling platform_pm_suspend @ 2957, parent: rtc0
[ 41.161003] alarmtimer alarmtimer.0.auto: PM: platform_pm_suspend returned 0 after 1 usecs
[ 41.161014] rtc rtc0: PM: calling rtc_suspend @ 2957, parent: 00:01
[ 41.161020] rtc rtc0: PM: rtc_suspend returned 0 after 0 usecs
[ 41.161027] serio serio1: PM: calling serio_suspend @ 2957, parent: i8042
[ 41.161033] serio serio1: PM: serio_suspend returned 0 after 0 usecs
[ 41.161039] atkbd serio0: PM: calling serio_suspend @ 2957, parent: i8042
[ 41.161207] atkbd serio0: PM: serio_suspend returned 0 after 163 usecs
[ 41.161215] i8042 i8042: PM: calling platform_pm_suspend @ 2957, parent: platform
[ 41.161224] i8042 i8042: PM: platform_pm_suspend returned 0 after 0 usecs
[ 41.161233] platform Fixed MDIO bus.0: PM: calling platform_pm_suspend @ 2957, parent: platform
[ 41.161242] platform Fixed MDIO bus.0: PM: platform_pm_suspend returned 0 after 0 usecs
[ 41.161255] port serial8250:0.3: PM: calling pm_runtime_force_suspend @ 2957, parent: serial8250:0
[ 41.161264] port serial8250:0.3: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[ 41.161272] port serial8250:0.2: PM: calling pm_runtime_force_suspend @ 2957, parent: serial8250:0
[ 41.161278] port serial8250:0.2: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[ 41.161286] port serial8250:0.1: PM: calling pm_runtime_force_suspend @ 2957, parent: serial8250:0
[ 41.161292] port serial8250:0.1: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[ 41.161302] port serial8250:0.0: PM: calling pm_runtime_force_suspend @ 2957, parent: serial8250:0
[ 41.161311] port serial8250:0.0: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[ 41.161321] serial8250 serial8250: PM: calling platform_pm_suspend @ 2957, parent: platform
[ 41.161334] serial8250 serial8250: PM: platform_pm_suspend returned 0 after 1 usecs
[ 41.161374] pcspkr pcspkr: PM: calling platform_pm_suspend @ 2957, parent: platform
[ 41.161711] pcspkr pcspkr: PM: platform_pm_suspend returned 0 after 328 usecs
[ 41.161791] system 00:08: PM: calling pnp_bus_suspend @ 2957, parent: pnp0
[ 41.161804] system 00:08: PM: pnp_bus_suspend returned 0 after 1 usecs
[ 41.161814] system 00:07: PM: calling pnp_bus_suspend @ 2957, parent: pnp0
[ 41.161823] system 00:07: PM: pnp_bus_suspend returned 0 after 0 usecs
[ 41.161833] system 00:06: PM: calling pnp_bus_suspend @ 2957, parent: pnp0
[ 41.161842] system 00:06: PM: pnp_bus_suspend returned 0 after 0 usecs
[ 41.161852] system 00:05: PM: calling pnp_bus_suspend @ 2957, parent: pnp0
[ 41.161861] system 00:05: PM: pnp_bus_suspend returned 0 after 0 usecs
[ 41.161870] i8042 aux 00:04: PM: calling pnp_bus_suspend @ 2957, parent: pnp0
[ 41.161880] i8042 aux 00:04: PM: pnp_bus_suspend returned 0 after 0 usecs
[ 41.161889] i8042 kbd 00:03: PM: calling pnp_bus_suspend @ 2957, parent: pnp0
[ 41.161898] i8042 kbd 00:03: PM: pnp_bus_suspend returned 0 after 0 usecs
[ 41.161908] system 00:02: PM: calling pnp_bus_suspend @ 2957, parent: pnp0
[ 41.161917] system 00:02: PM: pnp_bus_suspend returned 0 after 0 usecs
[ 41.161927] rtc_cmos 00:01: PM: calling pnp_bus_suspend @ 2957, parent: pnp0
[ 41.162072] rtc_cmos 00:01: PM: pnp_bus_suspend returned 0 after 134 usecs
[ 41.162087] system 00:00: PM: calling pnp_bus_suspend @ 2957, parent: pnp0
[ 41.162096] system 00:00: PM: pnp_bus_suspend returned 0 after 0 usecs
[ 41.162110] platform efivars.0: PM: calling platform_pm_suspend @ 2957, parent: platform
[ 41.162119] platform efivars.0: PM: platform_pm_suspend returned 0 after 0 usecs
[ 41.162128] platform rtc-efi.0: PM: calling platform_pm_suspend @ 2957, parent: platform
[ 41.162135] platform rtc-efi.0: PM: platform_pm_suspend returned 0 after 0 usecs
[ 41.162147] button LNXPWRBN:00: PM: calling acpi_button_suspend [button] @ 2957, parent: LNXSYSTM:00
[ 41.162157] button LNXPWRBN:00: PM: acpi_button_suspend [button] returned 0 after 0 usecs
[ 41.162164] int3400 thermal INT3400:00: PM: calling acpi_subsys_suspend @ 2957, parent: platform
[ 41.162174] int3400 thermal INT3400:00: PM: acpi_subsys_suspend returned 0 after 0 usecs
[ 41.162183] ucsi_acpi USBC000:00: PM: calling acpi_subsys_suspend @ 2957, parent: platform
[ 41.162191] ucsi_acpi USBC000:00: PM: acpi_subsys_suspend returned 0 after 0 usecs
[ 41.162200] intel-hid INT33D5:00: PM: calling acpi_subsys_suspend @ 2957, parent: platform
[ 41.162289] i2c_hid_acpi i2c-DLL075B:01: PM: acpi_subsys_suspend returned 0 after 2755 usecs
[ 41.162380] i2c_designware i2c_designware.1: PM: calling platform_pm_suspend @ 42, parent: 0000:00:15.1
[ 41.162399] i2c_designware i2c_designware.1: PM: platform_pm_suspend returned 0 after 0 usecs
[ 41.162729] intel-hid INT33D5:00: PM: acpi_subsys_suspend returned 0 after 520 usecs
[ 41.162742] platform PNP0C0A:00: PM: calling platform_pm_suspend @ 2957, parent: platform
[ 41.162751] platform PNP0C0A:00: PM: platform_pm_suspend returned 0 after 0 usecs
[ 41.162760] ac ACPI0003:00: PM: calling acpi_subsys_suspend @ 2957, parent: platform
[ 41.162768] ac ACPI0003:00: PM: acpi_subsys_suspend returned 0 after 0 usecs
[ 41.162776] platform PNP0C0E:00: PM: calling platform_pm_suspend @ 2957, parent: platform
[ 41.162784] platform PNP0C0E:00: PM: platform_pm_suspend returned 0 after 0 usecs
[ 41.162793] platform PNP0C0C:00: PM: calling platform_pm_suspend @ 2957, parent: platform
[ 41.162800] platform PNP0C0C:00: PM: platform_pm_suspend returned 0 after 0 usecs
[ 41.162809] platform PNP0C0D:00: PM: calling platform_pm_suspend @ 2957, parent: platform
[ 41.162816] platform PNP0C0D:00: PM: platform_pm_suspend returned 0 after 0 usecs
[ 41.162826] acpi-wmi PNP0C14:01: PM: calling acpi_subsys_suspend @ 2957, parent: platform
[ 41.162834] acpi-wmi PNP0C14:01: PM: acpi_subsys_suspend returned 0 after 0 usecs
[ 41.162842] tpm_tis MSFT0101:00: PM: calling acpi_subsys_suspend @ 2957, parent: platform
[ 41.170088] usb usb1: PM: usb_dev_suspend [usbcore] returned 0 after 10368 usecs
[ 41.184433] snd_hda_intel 0000:00:1f.3: PM: pci_pm_suspend returned 0 after 26505 usecs
[ 41.186208] usb usb2: PM: usb_dev_suspend [usbcore] returned 0 after 26981 usecs
[ 41.240479] ieee80211 phy0: PM: wiphy_suspend [cfg80211] returned 0 after 82377 usecs
[ 41.251398] tpm_tis MSFT0101:00: PM: acpi_subsys_suspend returned 0 after 88544 usecs
[ 41.251423] intel_pmc_core INT33A1:00: PM: calling acpi_subsys_suspend @ 2957, parent: platform
[ 41.251435] intel_pmc_core INT33A1:00: PM: acpi_subsys_suspend returned 0 after 1 usecs
[ 41.251447] acpi-wmi PNP0C14:00: PM: calling acpi_subsys_suspend @ 2957, parent: platform
[ 41.251455] acpi-wmi PNP0C14:00: PM: acpi_subsys_suspend returned 0 after 0 usecs
[ 41.251464] platform INT0E0C:00: PM: calling platform_pm_suspend @ 2957, parent: platform
[ 41.251474] platform INT0E0C:00: PM: platform_pm_suspend returned 0 after 0 usecs
[ 41.251483] processor_aggregator ACPI000C:00: PM: calling acpi_subsys_suspend @ 2957, parent: platform
[ 41.251492] processor_aggregator ACPI000C:00: PM: acpi_subsys_suspend returned 0 after 0 usecs
[ 41.251501] int3403 thermal INT3403:03: PM: calling acpi_subsys_suspend @ 2957, parent: pci0000:00
[ 41.251509] int3403 thermal INT3403:03: PM: acpi_subsys_suspend returned 0 after 0 usecs
[ 41.251519] sunrisepoint-pinctrl INT344B:00: PM: calling acpi_subsys_suspend @ 2957, parent: pci0000:00
[ 41.251527] sunrisepoint-pinctrl INT344B:00: PM: acpi_subsys_suspend returned 0 after 0 usecs
[ 41.251535] int3403 thermal INT3403:02: PM: calling acpi_subsys_suspend @ 2957, parent: PNP0C09:00
[ 41.251543] int3403 thermal INT3403:02: PM: acpi_subsys_suspend returned 0 after 0 usecs
[ 41.251551] int3403 thermal INT3403:01: PM: calling acpi_subsys_suspend @ 2957, parent: PNP0C09:00
[ 41.251558] int3403 thermal INT3403:01: PM: acpi_subsys_suspend returned 0 after 0 usecs
[ 41.251566] int3403 thermal INT3403:00: PM: calling acpi_subsys_suspend @ 2957, parent: PNP0C09:00
[ 41.251573] int3403 thermal INT3403:00: PM: acpi_subsys_suspend returned 0 after 0 usecs
[ 41.251583] intel-vbtn INT33D6:00: PM: calling acpi_subsys_suspend @ 2957, parent: PNP0C09:00
[ 41.251590] intel-vbtn INT33D6:00: PM: acpi_subsys_suspend returned 0 after 0 usecs
[ 41.251599] platform INT33D4:00: PM: calling platform_pm_suspend @ 2957, parent: PNP0C09:00
[ 41.251607] platform INT33D4:00: PM: platform_pm_suspend returned 0 after 0 usecs
[ 41.251616] platform INT33D3:00: PM: calling platform_pm_suspend @ 2957, parent: PNP0C09:00
[ 41.251624] platform INT33D3:00: PM: platform_pm_suspend returned 0 after 0 usecs
[ 41.251632] platform INT33D2:00: PM: calling platform_pm_suspend @ 2957, parent: PNP0C09:00
[ 41.251639] platform INT33D2:00: PM: platform_pm_suspend returned 0 after 0 usecs
[ 41.251649] platform PNP0C09:00: PM: calling platform_pm_suspend @ 2957, parent: 0000:00:1f.0
[ 41.251657] platform PNP0C09:00: PM: platform_pm_suspend returned 0 after 0 usecs
[ 41.251665] platform PNP0103:00: PM: calling platform_pm_suspend @ 2957, parent: 0000:00:1f.0
[ 41.251673] platform PNP0103:00: PM: platform_pm_suspend returned 0 after 0 usecs
[ 41.251681] platform INT0800:00: PM: calling platform_pm_suspend @ 2957, parent: 0000:00:1f.0
[ 41.251689] platform INT0800:00: PM: platform_pm_suspend returned 0 after 0 usecs
[ 41.251720] platform acpi-cpufreq: PM: calling platform_pm_suspend @ 2957, parent: platform
[ 41.251728] platform acpi-cpufreq: PM: platform_pm_suspend returned 0 after 0 usecs
[ 41.251741] thermal LNXTHERM:00: PM: calling acpi_thermal_suspend @ 2957, parent: LNXSYBUS:01
[ 41.251756] thermal LNXTHERM:00: PM: acpi_thermal_suspend returned 0 after 2 usecs
[ 41.251766] nvme 0000:3b:00.0: PM: calling pci_pm_suspend @ 635, parent: 0000:00:1d.0
[ 41.251785] ath10k_pci 0000:3a:00.0: PM: calling pci_pm_suspend @ 43, parent: 0000:00:1c.4
[ 41.251782] button PNP0C0E:00: PM: calling acpi_button_suspend [button] @ 2957, parent: LNXSYBUS:00
[ 41.251800] button PNP0C0E:00: PM: acpi_button_suspend [button] returned 0 after 0 usecs
[ 41.251805] ath10k_pci 0000:3a:00.0: PM: pci_pm_suspend returned 0 after 3 usecs
[ 41.251813] button PNP0C0C:00: PM: calling acpi_button_suspend [button] @ 2957, parent: LNXSYBUS:00
[ 41.251813] i801_smbus 0000:00:1f.4: PM: calling pci_pm_suspend @ 370, parent: pci0000:00
[ 41.251824] button PNP0C0C:00: PM: acpi_button_suspend [button] returned 0 after 0 usecs
[ 41.251824] pci 0000:00:1f.2: PM: calling pci_pm_suspend @ 43, parent: pci0000:00
[ 41.251835] pci 0000:00:1f.2: PM: pci_pm_suspend returned 0 after 0 usecs
[ 41.251835] button PNP0C0D:00: PM: calling acpi_button_suspend [button] @ 2957, parent: LNXSYBUS:00
[ 41.251846] button PNP0C0D:00: PM: acpi_button_suspend [button] returned 0 after 0 usecs
[ 41.251848] pci 0000:00:1f.0: PM: calling pci_pm_suspend @ 43, parent: pci0000:00
[ 41.251857] pci 0000:00:1f.0: PM: pci_pm_suspend returned 0 after 0 usecs
[ 41.251877] pcieport 0000:00:1c.4: PM: calling pci_pm_suspend @ 716, parent: pci0000:00
[ 41.251894] pcieport 0000:00:1c.0: PM: calling pci_pm_suspend @ 42, parent: pci0000:00
[ 41.251895] pcieport 0000:00:1c.4: PM: pci_pm_suspend returned 0 after 2 usecs
[ 41.251907] pcieport 0000:00:1c.0: PM: pci_pm_suspend returned 0 after 1 usecs
[ 41.251921] mei_me 0000:00:16.0: PM: calling pci_pm_suspend @ 716, parent: pci0000:00
[ 41.251927] intel-lpss 0000:00:15.1: PM: calling pci_pm_suspend @ 42, parent: pci0000:00
[ 41.251930] i801_smbus 0000:00:1f.4: PM: pci_pm_suspend returned 0 after 100 usecs
[ 41.251940] intel-lpss 0000:00:15.1: PM: pci_pm_suspend returned 0 after 0 usecs
[ 41.251952] intel-lpss 0000:00:15.0: PM: calling pci_pm_suspend @ 370, parent: pci0000:00
[ 41.251959] intel_pch_thermal 0000:00:14.2: PM: calling pci_pm_suspend @ 42, parent: pci0000:00
[ 41.251969] intel-lpss 0000:00:15.0: PM: pci_pm_suspend returned 0 after 3 usecs
[ 41.251975] intel_pch_thermal 0000:00:14.2: PM: pci_pm_suspend returned 0 after 0 usecs
[ 41.251988] xhci_hcd 0000:00:14.0: PM: calling pci_pm_suspend @ 370, parent: pci0000:00
[ 41.251991] proc_thermal 0000:00:04.0: PM: calling pci_pm_suspend @ 42, parent: pci0000:00
[ 41.252007] proc_thermal 0000:00:04.0: PM: pci_pm_suspend returned 0 after 2 usecs
[ 41.252029] i915 0000:00:02.0: PM: calling pci_pm_suspend @ 42, parent: pci0000:00
[ 41.252392] ec PNP0C09:00: PM: calling acpi_ec_suspend @ 2957, parent: device:11
[ 41.252407] ec PNP0C09:00: PM: acpi_ec_suspend returned 0 after 0 usecs
[ 41.252471] xhci_hcd 0000:00:14.0: PM: pci_pm_suspend returned 0 after 467 usecs
[ 41.252492] skl_uncore 0000:00:00.0: PM: calling pci_pm_suspend @ 370, parent: pci0000:00
[ 41.252507] skl_uncore 0000:00:00.0: PM: pci_pm_suspend returned 0 after 0 usecs
[ 41.252512] regulator regulator.0: PM: calling regulator_suspend @ 2957, parent: reg-dummy
[ 41.252527] regulator regulator.0: PM: regulator_suspend returned 0 after 0 usecs
[ 41.252539] reg-dummy reg-dummy: PM: calling platform_pm_suspend @ 2957, parent: platform
[ 41.252555] reg-dummy reg-dummy: PM: platform_pm_suspend returned 0 after 0 usecs
[ 41.253529] mei_me 0000:00:16.0: PM: pci_pm_suspend returned 0 after 1594 usecs
[ 41.254531] i915 0000:00:02.0: PM: pci_pm_suspend returned 0 after 2487 usecs
[ 41.272790] nvme 0000:3b:00.0: PM: pci_pm_suspend returned 0 after 20997 usecs
[ 41.272834] pcieport 0000:00:1d.0: PM: calling pci_pm_suspend @ 43, parent: pci0000:00
[ 41.272851] pcieport 0000:00:1d.0: PM: pci_pm_suspend returned 0 after 3 usecs
[ 41.272973] snd_hda_intel 0000:00:1f.3: PM: calling pci_pm_suspend_late @ 370, parent: pci0000:00
[ 41.272998] snd_hda_intel 0000:00:1f.3: PM: pci_pm_suspend_late returned 0 after 1 usecs
[ 41.273330] i2c_hid_acpi i2c-DLL075B:01: PM: calling acpi_subsys_suspend_late @ 370, parent: i2c-2
[ 41.273349] i2c_hid_acpi i2c-DLL075B:01: PM: acpi_subsys_suspend_late returned 0 after 1 usecs
[ 41.273386] i2c_designware i2c_designware.1: PM: calling dw_i2c_plat_suspend @ 43, parent: 0000:00:15.1
[ 41.273412] i2c_designware i2c_designware.1: PM: dw_i2c_plat_suspend returned 0 after 12 usecs
[ 41.273494] int3400 thermal INT3400:00: PM: calling acpi_subsys_suspend_late @ 2957, parent: platform
[ 41.273508] int3400 thermal INT3400:00: PM: acpi_subsys_suspend_late returned 0 after 0 usecs
[ 41.273518] ucsi_acpi USBC000:00: PM: calling acpi_subsys_suspend_late @ 2957, parent: platform
[ 41.273527] ucsi_acpi USBC000:00: PM: acpi_subsys_suspend_late returned 0 after 0 usecs
[ 41.273537] intel-hid INT33D5:00: PM: calling acpi_subsys_suspend_late @ 2957, parent: platform
[ 41.273545] intel-hid INT33D5:00: PM: acpi_subsys_suspend_late returned 0 after 0 usecs
[ 41.273555] ac ACPI0003:00: PM: calling acpi_subsys_suspend_late @ 2957, parent: platform
[ 41.273563] ac ACPI0003:00: PM: acpi_subsys_suspend_late returned 0 after 0 usecs
[ 41.273575] acpi-wmi PNP0C14:01: PM: calling acpi_subsys_suspend_late @ 2957, parent: platform
[ 41.273584] acpi-wmi PNP0C14:01: PM: acpi_subsys_suspend_late returned 0 after 0 usecs
[ 41.273593] tpm_tis MSFT0101:00: PM: calling acpi_subsys_suspend_late @ 2957, parent: platform
[ 41.273601] tpm_tis MSFT0101:00: PM: acpi_subsys_suspend_late returned 0 after 0 usecs
[ 41.273609] intel_pmc_core INT33A1:00: PM: calling acpi_subsys_suspend_late @ 2957, parent: platform
[ 41.273627] intel_pmc_core INT33A1:00: PM: acpi_subsys_suspend_late returned 0 after 9 usecs
[ 41.273636] acpi-wmi PNP0C14:00: PM: calling acpi_subsys_suspend_late @ 2957, parent: platform
[ 41.273644] acpi-wmi PNP0C14:00: PM: acpi_subsys_suspend_late returned 0 after 0 usecs
[ 41.273653] processor_aggregator ACPI000C:00: PM: calling acpi_subsys_suspend_late @ 2957, parent: platform
[ 41.273662] processor_aggregator ACPI000C:00: PM: acpi_subsys_suspend_late returned 0 after 0 usecs
[ 41.273670] int3403 thermal INT3403:03: PM: calling acpi_subsys_suspend_late @ 2957, parent: pci0000:00
[ 41.273678] int3403 thermal INT3403:03: PM: acpi_subsys_suspend_late returned 0 after 0 usecs
[ 41.273688] sunrisepoint-pinctrl INT344B:00: PM: calling acpi_subsys_suspend_late @ 2957, parent: pci0000:00
[ 41.273697] sunrisepoint-pinctrl INT344B:00: PM: acpi_subsys_suspend_late returned 0 after 0 usecs
[ 41.273705] int3403 thermal INT3403:02: PM: calling acpi_subsys_suspend_late @ 2957, parent: PNP0C09:00
[ 41.273713] int3403 thermal INT3403:02: PM: acpi_subsys_suspend_late returned 0 after 0 usecs
[ 41.273721] int3403 thermal INT3403:01: PM: calling acpi_subsys_suspend_late @ 2957, parent: PNP0C09:00
[ 41.273729] int3403 thermal INT3403:01: PM: acpi_subsys_suspend_late returned 0 after 0 usecs
[ 41.273737] int3403 thermal INT3403:00: PM: calling acpi_subsys_suspend_late @ 2957, parent: PNP0C09:00
[ 41.273745] int3403 thermal INT3403:00: PM: acpi_subsys_suspend_late returned 0 after 0 usecs
[ 41.273754] intel-vbtn INT33D6:00: PM: calling acpi_subsys_suspend_late @ 2957, parent: PNP0C09:00
[ 41.273762] intel-vbtn INT33D6:00: PM: acpi_subsys_suspend_late returned 0 after 0 usecs
[ 41.273788] nvme 0000:3b:00.0: PM: calling pci_pm_suspend_late @ 43, parent: 0000:00:1d.0
[ 41.273802] nvme 0000:3b:00.0: PM: pci_pm_suspend_late returned 0 after 0 usecs
[ 41.273798] ath10k_pci 0000:3a:00.0: PM: calling pci_pm_suspend_late @ 716, parent: 0000:00:1c.4
[ 41.273806] i801_smbus 0000:00:1f.4: PM: calling pci_pm_suspend_late @ 370, parent: pci0000:00
[ 41.273816] pci 0000:00:1f.2: PM: calling pci_pm_suspend_late @ 43, parent: pci0000:00
[ 41.273821] ath10k_pci 0000:3a:00.0: PM: pci_pm_suspend_late returned 0 after 1 usecs
[ 41.273822] i801_smbus 0000:00:1f.4: PM: pci_pm_suspend_late returned 0 after 0 usecs
[ 41.273828] pci 0000:00:1f.2: PM: pci_pm_suspend_late returned 0 after 0 usecs
[ 41.273840] pci 0000:00:1f.0: PM: calling pci_pm_suspend_late @ 370, parent: pci0000:00
[ 41.273841] pcieport 0000:00:1d.0: PM: calling pci_pm_suspend_late @ 716, parent: pci0000:00
[ 41.273844] pcieport 0000:00:1c.4: PM: calling pci_pm_suspend_late @ 43, parent: pci0000:00
[ 41.273854] pci 0000:00:1f.0: PM: pci_pm_suspend_late returned 0 after 0 usecs
[ 41.273854] pcieport 0000:00:1d.0: PM: pci_pm_suspend_late returned 0 after 0 usecs
[ 41.273856] pcieport 0000:00:1c.4: PM: pci_pm_suspend_late returned 0 after 0 usecs
[ 41.273870] pcieport 0000:00:1c.0: PM: calling pci_pm_suspend_late @ 716, parent: pci0000:00
[ 41.273872] mei_me 0000:00:16.0: PM: calling pci_pm_suspend_late @ 370, parent: pci0000:00
[ 41.273873] intel-lpss 0000:00:15.1: PM: calling pci_pm_suspend_late @ 43, parent: pci0000:00
[ 41.273882] pcieport 0000:00:1c.0: PM: pci_pm_suspend_late returned 0 after 0 usecs
[ 41.273884] mei_me 0000:00:16.0: PM: pci_pm_suspend_late returned 0 after 0 usecs
[ 41.273897] intel_pch_thermal 0000:00:14.2: PM: calling pci_pm_suspend_late @ 370, parent: pci0000:00
[ 41.273898] intel-lpss 0000:00:15.0: PM: calling pci_pm_suspend_late @ 716, parent: pci0000:00
[ 41.273910] intel_pch_thermal 0000:00:14.2: PM: pci_pm_suspend_late returned 0 after 0 usecs
[ 41.273910] intel-lpss 0000:00:15.0: PM: pci_pm_suspend_late returned 0 after 0 usecs
[ 41.273924] proc_thermal 0000:00:04.0: PM: calling pci_pm_suspend_late @ 716, parent: pci0000:00
[ 41.273925] xhci_hcd 0000:00:14.0: PM: calling pci_pm_suspend_late @ 370, parent: pci0000:00
[ 41.273936] proc_thermal 0000:00:04.0: PM: pci_pm_suspend_late returned 0 after 0 usecs
[ 41.273937] xhci_hcd 0000:00:14.0: PM: pci_pm_suspend_late returned 0 after 0 usecs
[ 41.273951] skl_uncore 0000:00:00.0: PM: calling pci_pm_suspend_late @ 370, parent: pci0000:00
[ 41.273952] i915 0000:00:02.0: PM: calling pci_pm_suspend_late @ 716, parent: pci0000:00
[ 41.273962] skl_uncore 0000:00:00.0: PM: pci_pm_suspend_late returned 0 after 0 usecs
[ 41.273970] intel-lpss 0000:00:15.1: PM: pci_pm_suspend_late returned 0 after 84 usecs
[ 41.302214] i915 0000:00:02.0: PM: pci_pm_suspend_late returned 0 after 28247 usecs
[ 41.306788] snd_hda_intel 0000:00:1f.3: PM: calling pci_pm_suspend_noirq @ 370, parent: pci0000:00
[ 41.307089] iTCO_wdt iTCO_wdt: PM: calling iTCO_wdt_suspend_noirq [iTCO_wdt] @ 2957, parent: 0000:00:1f.4
[ 41.307110] iTCO_wdt iTCO_wdt: PM: iTCO_wdt_suspend_noirq [iTCO_wdt] returned 0 after 0 usecs
[ 41.307118] i2c_hid_acpi i2c-DLL075B:01: PM: calling acpi_subsys_suspend_noirq @ 42, parent: i2c-2
[ 41.307141] i2c_hid_acpi i2c-DLL075B:01: PM: acpi_subsys_suspend_noirq returned 0 after 1 usecs
[ 41.307255] int3400 thermal INT3400:00: PM: calling acpi_subsys_suspend_noirq @ 2957, parent: platform
[ 41.307269] int3400 thermal INT3400:00: PM: acpi_subsys_suspend_noirq returned 0 after 0 usecs
[ 41.307279] ucsi_acpi USBC000:00: PM: calling acpi_subsys_suspend_noirq @ 2957, parent: platform
[ 41.307288] ucsi_acpi USBC000:00: PM: acpi_subsys_suspend_noirq returned 0 after 0 usecs
[ 41.307296] intel-hid INT33D5:00: PM: calling acpi_subsys_suspend_noirq @ 2957, parent: platform
[ 41.307304] intel-hid INT33D5:00: PM: acpi_subsys_suspend_noirq returned 0 after 0 usecs
[ 41.307313] ac ACPI0003:00: PM: calling acpi_subsys_suspend_noirq @ 2957, parent: platform
[ 41.307321] ac ACPI0003:00: PM: acpi_subsys_suspend_noirq returned 0 after 0 usecs
[ 41.307331] acpi-wmi PNP0C14:01: PM: calling acpi_subsys_suspend_noirq @ 2957, parent: platform
[ 41.307339] acpi-wmi PNP0C14:01: PM: acpi_subsys_suspend_noirq returned 0 after 0 usecs
[ 41.307348] tpm_tis MSFT0101:00: PM: calling acpi_subsys_suspend_noirq @ 2957, parent: platform
[ 41.307356] tpm_tis MSFT0101:00: PM: acpi_subsys_suspend_noirq returned 0 after 0 usecs
[ 41.307364] intel_pmc_core INT33A1:00: PM: calling acpi_subsys_suspend_noirq @ 2957, parent: platform
[ 41.307371] intel_pmc_core INT33A1:00: PM: acpi_subsys_suspend_noirq returned 0 after 0 usecs
[ 41.307380] acpi-wmi PNP0C14:00: PM: calling acpi_subsys_suspend_noirq @ 2957, parent: platform
[ 41.307387] acpi-wmi PNP0C14:00: PM: acpi_subsys_suspend_noirq returned 0 after 0 usecs
[ 41.307395] processor_aggregator ACPI000C:00: PM: calling acpi_subsys_suspend_noirq @ 2957, parent: platform
[ 41.307403] processor_aggregator ACPI000C:00: PM: acpi_subsys_suspend_noirq returned 0 after 0 usecs
[ 41.307411] int3403 thermal INT3403:03: PM: calling acpi_subsys_suspend_noirq @ 2957, parent: pci0000:00
[ 41.307419] int3403 thermal INT3403:03: PM: acpi_subsys_suspend_noirq returned 0 after 0 usecs
[ 41.307428] sunrisepoint-pinctrl INT344B:00: PM: calling acpi_subsys_suspend_noirq @ 2957, parent: pci0000:00
[ 41.310766] sunrisepoint-pinctrl INT344B:00: PM: acpi_subsys_suspend_noirq returned 0 after 3329 usecs
[ 41.310776] int3403 thermal INT3403:02: PM: calling acpi_subsys_suspend_noirq @ 2957, parent: PNP0C09:00
[ 41.310784] int3403 thermal INT3403:02: PM: acpi_subsys_suspend_noirq returned 0 after 0 usecs
[ 41.310792] int3403 thermal INT3403:01: PM: calling acpi_subsys_suspend_noirq @ 2957, parent: PNP0C09:00
[ 41.310799] int3403 thermal INT3403:01: PM: acpi_subsys_suspend_noirq returned 0 after 0 usecs
[ 41.310806] int3403 thermal INT3403:00: PM: calling acpi_subsys_suspend_noirq @ 2957, parent: PNP0C09:00
[ 41.310814] int3403 thermal INT3403:00: PM: acpi_subsys_suspend_noirq returned 0 after 0 usecs
[ 41.310822] intel-vbtn INT33D6:00: PM: calling acpi_subsys_suspend_noirq @ 2957, parent: PNP0C09:00
[ 41.310830] intel-vbtn INT33D6:00: PM: acpi_subsys_suspend_noirq returned 0 after 0 usecs
[ 41.310853] nvme 0000:3b:00.0: PM: calling pci_pm_suspend_noirq @ 635, parent: 0000:00:1d.0
[ 41.310865] ath10k_pci 0000:3a:00.0: PM: calling pci_pm_suspend_noirq @ 43, parent: 0000:00:1c.4
[ 41.310871] nvme 0000:3b:00.0: PM: pci_pm_suspend_noirq returned 0 after 1 usecs
[ 41.310879] i801_smbus 0000:00:1f.4: PM: calling pci_pm_suspend_noirq @ 42, parent: pci0000:00
[ 41.310888] pci 0000:00:1f.2: PM: calling pci_pm_suspend_noirq @ 635, parent: pci0000:00
[ 41.311679] ec PNP0C09:00: PM: calling acpi_ec_suspend_noirq @ 2957, parent: device:11
[ 41.311690] ACPI: EC: interrupt blocked
[ 41.311693] ec PNP0C09:00: PM: acpi_ec_suspend_noirq returned 0 after 2 usecs
[ 41.312283] i801_smbus 0000:00:1f.4: PM: pci_pm_suspend_noirq returned 0 after 1390 usecs
[ 41.312284] pci 0000:00:1f.2: PM: pci_pm_suspend_noirq returned 0 after 1385 usecs
[ 41.312299] pci 0000:00:1f.0: PM: calling pci_pm_suspend_noirq @ 42, parent: pci0000:00
[ 41.312300] pcieport 0000:00:1d.0: PM: calling pci_pm_suspend_noirq @ 635, parent: pci0000:00
[ 41.312997] pcieport 0000:00:1c.0: PM: calling pci_pm_suspend_noirq @ 11, parent: pci0000:00
[ 41.313654] pci 0000:00:1f.0: PM: pci_pm_suspend_noirq returned 0 after 1343 usecs
[ 41.313804] mei_me 0000:00:16.0: PM: calling pci_pm_suspend_noirq @ 42, parent: pci0000:00
[ 41.313815] intel-lpss 0000:00:15.1: PM: calling pci_pm_suspend_noirq @ 716, parent: pci0000:00
[ 41.313874] pcieport 0000:00:1d.0: PM: pci_pm_suspend_noirq returned 0 after 1562 usecs
[ 41.313888] intel-lpss 0000:00:15.0: PM: calling pci_pm_suspend_noirq @ 635, parent: pci0000:00
[ 41.313897] intel-lpss 0000:00:15.0: PM: pci_pm_suspend_noirq returned 0 after 0 usecs
[ 41.313908] intel_pch_thermal 0000:00:14.2: PM: calling pci_pm_suspend_noirq @ 635, parent: pci0000:00
[ 41.313915] pcieport 0000:00:1c.0: PM: pci_pm_suspend_noirq returned 0 after 906 usecs
[ 41.313922] intel_pch_thermal 0000:00:14.2: CPU-PCH overheats [66C], S0ix might fail. Start cooling...
[ 41.313931] xhci_hcd 0000:00:14.0: PM: calling pci_pm_suspend_noirq @ 11, parent: pci0000:00
[ 41.313955] proc_thermal 0000:00:04.0: PM: calling pci_pm_suspend_noirq @ 710, parent: pci0000:00
[ 41.314232] skl_uncore 0000:00:00.0: PM: calling pci_pm_suspend_noirq @ 2965, parent: pci0000:00
[ 41.314274] skl_uncore 0000:00:00.0: PM: pci_pm_suspend_noirq returned 0 after 22 usecs
[ 41.318382] snd_hda_intel 0000:00:1f.3: PM: pci_pm_suspend_noirq returned 0 after 11568 usecs
[ 41.318426] i915 0000:00:02.0: PM: calling pci_pm_suspend_noirq @ 349, parent: pci0000:00
[ 41.318444] i915 0000:00:02.0: PM: pci_pm_suspend_noirq returned 0 after 1 usecs
[ 41.326322] mei_me 0000:00:16.0: PM: pci_pm_suspend_noirq returned 0 after 12502 usecs
[ 41.326350] ath10k_pci 0000:3a:00.0: PM: pci_pm_suspend_noirq returned 0 after 15467 usecs
[ 41.326402] pcieport 0000:00:1c.4: PM: calling pci_pm_suspend_noirq @ 44, parent: pci0000:00
[ 41.326429] proc_thermal 0000:00:04.0: PM: pci_pm_suspend_noirq returned 0 after 12459 usecs
[ 41.328232] intel-lpss 0000:00:15.1: PM: pci_pm_suspend_noirq returned 0 after 14402 usecs
[ 41.338195] pcieport 0000:00:1c.4: PM: pci_pm_suspend_noirq returned 0 after 11771 usecs
[ 41.346398] xhci_hcd 0000:00:14.0: PM: pci_pm_suspend_noirq returned 0 after 32452 usecs
[ 93.210526] nvme nvme0: I/O tag 736 (82e0) QID 1 timeout, completion polled
[ 106.110309] intel_pch_thermal 0000:00:14.2: CPU-PCH is hot [50C] after 60000 ms delay. S0ix might fail
[ 106.122190] intel_pch_thermal 0000:00:14.2: PM: pci_pm_suspend_noirq returned 0 after 64808266 usecs
[ 108.787864] xhci_hcd 0000:00:14.0: PM: calling pci_pm_resume_noirq @ 2965, parent: pci0000:00
[ 108.787863] i915 0000:00:02.0: PM: calling pci_pm_resume_noirq @ 11, parent: pci0000:00
[ 108.787863] proc_thermal 0000:00:04.0: PM: calling pci_pm_resume_noirq @ 44, parent: pci0000:00
[ 108.787881] skl_uncore 0000:00:00.0: PM: calling pci_pm_resume_noirq @ 635, parent: pci0000:00
[ 108.787887] intel_pch_thermal 0000:00:14.2: PM: calling pci_pm_resume_noirq @ 710, parent: pci0000:00
[ 108.787890] intel-lpss 0000:00:15.0: PM: calling pci_pm_resume_noirq @ 716, parent: pci0000:00
[ 108.787889] ec PNP0C09:00: PM: calling acpi_ec_resume_noirq @ 2957, parent: device:11
[ 108.787895] ACPI: EC: interrupt unblocked
[ 108.787896] ec PNP0C09:00: PM: acpi_ec_resume_noirq returned 0 after 1 usecs
[ 108.787898] intel-lpss 0000:00:15.1: PM: calling pci_pm_resume_noirq @ 43, parent: pci0000:00
[ 108.787905] skl_uncore 0000:00:00.0: PM: pci_pm_resume_noirq returned 0 after 19 usecs
[ 108.787907] mei_me 0000:00:16.0: PM: calling pci_pm_resume_noirq @ 42, parent: pci0000:00
[ 108.787937] pcieport 0000:00:1c.0: PM: calling pci_pm_resume_noirq @ 635, parent: pci0000:00
[ 108.787937] pcieport 0000:00:1c.4: PM: calling pci_pm_resume_noirq @ 349, parent: pci0000:00
[ 108.787937] pcieport 0000:00:1d.0: PM: calling pci_pm_resume_noirq @ 370, parent: pci0000:00
[ 108.787947] pci 0000:00:1f.0: PM: calling pci_pm_resume_noirq @ 2967, parent: pci0000:00
[ 108.787956] pcieport 0000:00:1c.0: PM: pci_pm_resume_noirq returned 0 after 15 usecs
[ 108.787958] pcieport 0000:00:1d.0: PM: pci_pm_resume_noirq returned 0 after 15 usecs
[ 108.787961] pci 0000:00:1f.2: PM: calling pci_pm_resume_noirq @ 635, parent: pci0000:00
[ 108.787963] i801_smbus 0000:00:1f.4: PM: calling pci_pm_resume_noirq @ 370, parent: pci0000:00
[ 108.787967] i801_smbus 0000:00:1f.4: PM: pci_pm_resume_noirq returned 0 after 0 usecs
[ 108.788005] nvme 0000:3b:00.0: PM: calling pci_pm_resume_noirq @ 2966, parent: 0000:00:1d.0
[ 108.788010] nvme 0000:3b:00.0: PM: pci_pm_resume_noirq returned 0 after 0 usecs
[ 108.788050] pci 0000:00:1f.0: PM: pci_pm_resume_noirq returned 0 after 99 usecs
[ 108.788076] intel-vbtn INT33D6:00: PM: calling acpi_subsys_resume_noirq @ 2957, parent: PNP0C09:00
[ 108.788081] intel-vbtn INT33D6:00: PM: acpi_subsys_resume_noirq returned 0 after 0 usecs
[ 108.788084] int3403 thermal INT3403:00: PM: calling acpi_subsys_resume_noirq @ 2957, parent: PNP0C09:00
[ 108.788088] int3403 thermal INT3403:00: PM: acpi_subsys_resume_noirq returned 0 after 0 usecs
[ 108.788091] int3403 thermal INT3403:01: PM: calling acpi_subsys_resume_noirq @ 2957, parent: PNP0C09:00
[ 108.788094] int3403 thermal INT3403:01: PM: acpi_subsys_resume_noirq returned 0 after 0 usecs
[ 108.788095] pci 0000:00:1f.2: PM: pci_pm_resume_noirq returned 0 after 129 usecs
[ 108.788098] int3403 thermal INT3403:02: PM: calling acpi_subsys_resume_noirq @ 2957, parent: PNP0C09:00
[ 108.788101] int3403 thermal INT3403:02: PM: acpi_subsys_resume_noirq returned 0 after 0 usecs
[ 108.788105] sunrisepoint-pinctrl INT344B:00: PM: calling acpi_subsys_resume_noirq @ 2957, parent: pci0000:00
[ 108.788849] intel-lpss 0000:00:15.0: PM: pci_pm_resume_noirq returned 0 after 953 usecs
[ 108.788914] intel-lpss 0000:00:15.1: PM: pci_pm_resume_noirq returned 0 after 1010 usecs
[ 108.788926] i2c_hid_acpi i2c-DLL075B:01: PM: calling acpi_subsys_resume_noirq @ 635, parent: i2c-2
[ 108.788930] i2c_hid_acpi i2c-DLL075B:01: PM: acpi_subsys_resume_noirq returned 0 after 0 usecs
[ 108.791484] sunrisepoint-pinctrl INT344B:00: PM: acpi_subsys_resume_noirq returned 0 after 3376 usecs
[ 108.791488] int3403 thermal INT3403:03: PM: calling acpi_subsys_resume_noirq @ 2957, parent: pci0000:00
[ 108.791490] int3403 thermal INT3403:03: PM: acpi_subsys_resume_noirq returned 0 after 0 usecs
[ 108.791492] processor_aggregator ACPI000C:00: PM: calling acpi_subsys_resume_noirq @ 2957, parent: platform
[ 108.791495] processor_aggregator ACPI000C:00: PM: acpi_subsys_resume_noirq returned 0 after 0 usecs
[ 108.791497] acpi-wmi PNP0C14:00: PM: calling acpi_subsys_resume_noirq @ 2957, parent: platform
[ 108.791499] acpi-wmi PNP0C14:00: PM: acpi_subsys_resume_noirq returned 0 after 0 usecs
[ 108.791501] intel_pmc_core INT33A1:00: PM: calling acpi_subsys_resume_noirq @ 2957, parent: platform
[ 108.791504] intel_pmc_core INT33A1:00: PM: acpi_subsys_resume_noirq returned 0 after 0 usecs
[ 108.791506] tpm_tis MSFT0101:00: PM: calling acpi_subsys_resume_noirq @ 2957, parent: platform
[ 108.791508] tpm_tis MSFT0101:00: PM: acpi_subsys_resume_noirq returned 0 after 0 usecs
[ 108.791510] acpi-wmi PNP0C14:01: PM: calling acpi_subsys_resume_noirq @ 2957, parent: platform
[ 108.791512] acpi-wmi PNP0C14:01: PM: acpi_subsys_resume_noirq returned 0 after 0 usecs
[ 108.791514] ac ACPI0003:00: PM: calling acpi_subsys_resume_noirq @ 2957, parent: platform
[ 108.791517] ac ACPI0003:00: PM: acpi_subsys_resume_noirq returned 0 after 0 usecs
[ 108.791519] intel-hid INT33D5:00: PM: calling acpi_subsys_resume_noirq @ 2957, parent: platform
[ 108.791521] intel-hid INT33D5:00: PM: acpi_subsys_resume_noirq returned 0 after 0 usecs
[ 108.791523] ucsi_acpi USBC000:00: PM: calling acpi_subsys_resume_noirq @ 2957, parent: platform
[ 108.791525] ucsi_acpi USBC000:00: PM: acpi_subsys_resume_noirq returned 0 after 0 usecs
[ 108.791527] int3400 thermal INT3400:00: PM: calling acpi_subsys_resume_noirq @ 2957, parent: platform
[ 108.791529] int3400 thermal INT3400:00: PM: acpi_subsys_resume_noirq returned 0 after 0 usecs
[ 108.791552] i8042 i8042: PM: calling i8042_pm_resume_noirq @ 2957, parent: platform
[ 108.791564] i8042 i8042: PM: i8042_pm_resume_noirq returned 0 after 9 usecs
[ 108.791570] iTCO_wdt iTCO_wdt: PM: calling iTCO_wdt_resume_noirq [iTCO_wdt] @ 2957, parent: 0000:00:1f.4
[ 108.791575] iTCO_wdt iTCO_wdt: PM: iTCO_wdt_resume_noirq [iTCO_wdt] returned 0 after 0 usecs
[ 108.798803] intel_pch_thermal 0000:00:14.2: PM: pci_pm_resume_noirq returned 0 after 10912 usecs
[ 108.798805] proc_thermal 0000:00:04.0: PM: pci_pm_resume_noirq returned 0 after 10932 usecs
[ 108.798835] i915 0000:00:02.0: PM: pci_pm_resume_noirq returned 0 after 10962 usecs
[ 108.798842] snd_hda_intel 0000:00:1f.3: PM: calling pci_pm_resume_noirq @ 2991, parent: pci0000:00
[ 108.798861] mei_me 0000:00:16.0: PM: pci_pm_resume_noirq returned 0 after 10949 usecs
[ 108.798868] pcieport 0000:00:1c.4: PM: pci_pm_resume_noirq returned 0 after 10926 usecs
[ 108.798876] ath10k_pci 0000:3a:00.0: PM: calling pci_pm_resume_noirq @ 370, parent: 0000:00:1c.4
[ 108.806818] xhci_hcd 0000:00:14.0: PM: pci_pm_resume_noirq returned 0 after 18944 usecs
[ 108.810783] snd_hda_intel 0000:00:1f.3: PM: pci_pm_resume_noirq returned 0 after 11936 usecs
[ 108.810904] ath10k_pci 0000:3a:00.0: PM: pci_pm_resume_noirq returned 0 after 12024 usecs
[ 108.823034] i915 0000:00:02.0: PM: calling pci_pm_resume_early @ 2991, parent: pci0000:00
[ 108.823034] proc_thermal 0000:00:04.0: PM: calling pci_pm_resume_early @ 2992, parent: pci0000:00
[ 108.823034] skl_uncore 0000:00:00.0: PM: calling pci_pm_resume_early @ 370, parent: pci0000:00
[ 108.823039] proc_thermal 0000:00:04.0: PM: pci_pm_resume_early returned 0 after 0 usecs
[ 108.823039] skl_uncore 0000:00:00.0: PM: pci_pm_resume_early returned 0 after 0 usecs
[ 108.823043] xhci_hcd 0000:00:14.0: PM: calling pci_pm_resume_early @ 2992, parent: pci0000:00
[ 108.823044] intel_pch_thermal 0000:00:14.2: PM: calling pci_pm_resume_early @ 370, parent: pci0000:00
[ 108.823047] intel_pch_thermal 0000:00:14.2: PM: pci_pm_resume_early returned 0 after 0 usecs
[ 108.823051] intel-lpss 0000:00:15.0: PM: calling pci_pm_resume_early @ 370, parent: pci0000:00
[ 108.823058] intel-lpss 0000:00:15.0: PM: pci_pm_resume_early returned 0 after 2 usecs
[ 108.823061] intel-lpss 0000:00:15.1: PM: calling pci_pm_resume_early @ 370, parent: pci0000:00
[ 108.823068] intel-lpss 0000:00:15.1: PM: pci_pm_resume_early returned 0 after 2 usecs
[ 108.823071] mei_me 0000:00:16.0: PM: calling pci_pm_resume_early @ 370, parent: pci0000:00
[ 108.823074] mei_me 0000:00:16.0: PM: pci_pm_resume_early returned 0 after 0 usecs
[ 108.823077] pcieport 0000:00:1c.0: PM: calling pci_pm_resume_early @ 370, parent: pci0000:00
[ 108.823080] pcieport 0000:00:1c.0: PM: pci_pm_resume_early returned 0 after 0 usecs
[ 108.823082] pcieport 0000:00:1c.4: PM: calling pci_pm_resume_early @ 2982, parent: pci0000:00
[ 108.823083] pcieport 0000:00:1d.0: PM: calling pci_pm_resume_early @ 370, parent: pci0000:00
[ 108.823086] pcieport 0000:00:1c.4: PM: pci_pm_resume_early returned 0 after 0 usecs
[ 108.823086] pcieport 0000:00:1d.0: PM: pci_pm_resume_early returned 0 after 0 usecs
[ 108.823090] pci 0000:00:1f.2: PM: calling pci_pm_resume_early @ 370, parent: pci0000:00
[ 108.823090] pci 0000:00:1f.0: PM: calling pci_pm_resume_early @ 2982, parent: pci0000:00
[ 108.823093] pci 0000:00:1f.2: PM: pci_pm_resume_early returned 0 after 0 usecs
[ 108.823093] pci 0000:00:1f.0: PM: pci_pm_resume_early returned 0 after 0 usecs
[ 108.823096] i801_smbus 0000:00:1f.4: PM: calling pci_pm_resume_early @ 370, parent: pci0000:00
[ 108.823098] ath10k_pci 0000:3a:00.0: PM: calling pci_pm_resume_early @ 2982, parent: 0000:00:1c.4
[ 108.823099] i801_smbus 0000:00:1f.4: PM: pci_pm_resume_early returned 0 after 0 usecs
[ 108.823101] ath10k_pci 0000:3a:00.0: PM: pci_pm_resume_early returned 0 after 0 usecs
[ 108.823102] nvme 0000:3b:00.0: PM: calling pci_pm_resume_early @ 370, parent: 0000:00:1d.0
[ 108.823105] nvme 0000:3b:00.0: PM: pci_pm_resume_early returned 0 after 0 usecs
[ 108.823105] i2c_designware i2c_designware.0: PM: calling dw_i2c_plat_resume @ 2982, parent: 0000:00:15.0
[ 108.823109] i2c_designware i2c_designware.1: PM: calling dw_i2c_plat_resume @ 370, parent: 0000:00:15.1
[ 108.823347] xhci_hcd 0000:00:14.0: PM: pci_pm_resume_early returned 0 after 302 usecs
[ 108.823353] i2c_designware i2c_designware.1: PM: dw_i2c_plat_resume returned 0 after 242 usecs
[ 108.823354] i2c_designware i2c_designware.0: PM: dw_i2c_plat_resume returned 0 after 245 usecs
[ 108.823379] intel-vbtn INT33D6:00: PM: calling acpi_subsys_resume_early @ 2957, parent: PNP0C09:00
[ 108.823380] i2c_hid_acpi i2c-DLL075B:01: PM: calling acpi_subsys_resume_early @ 716, parent: i2c-2
[ 108.823382] intel-vbtn INT33D6:00: PM: acpi_subsys_resume_early returned 0 after 0 usecs
[ 108.823383] i2c_hid_acpi i2c-DLL075B:01: PM: acpi_subsys_resume_early returned 0 after 0 usecs
[ 108.823385] int3403 thermal INT3403:00: PM: calling acpi_subsys_resume_early @ 2957, parent: PNP0C09:00
[ 108.823388] int3403 thermal INT3403:00: PM: acpi_subsys_resume_early returned 0 after 0 usecs
[ 108.823391] int3403 thermal INT3403:01: PM: calling acpi_subsys_resume_early @ 2957, parent: PNP0C09:00
[ 108.823393] int3403 thermal INT3403:01: PM: acpi_subsys_resume_early returned 0 after 0 usecs
[ 108.823395] int3403 thermal INT3403:02: PM: calling acpi_subsys_resume_early @ 2957, parent: PNP0C09:00
[ 108.823397] int3403 thermal INT3403:02: PM: acpi_subsys_resume_early returned 0 after 0 usecs
[ 108.823399] sunrisepoint-pinctrl INT344B:00: PM: calling acpi_subsys_resume_early @ 2957, parent: pci0000:00
[ 108.823402] sunrisepoint-pinctrl INT344B:00: PM: acpi_subsys_resume_early returned 0 after 0 usecs
[ 108.823404] int3403 thermal INT3403:03: PM: calling acpi_subsys_resume_early @ 2957, parent: pci0000:00
[ 108.823406] int3403 thermal INT3403:03: PM: acpi_subsys_resume_early returned 0 after 0 usecs
[ 108.823408] processor_aggregator ACPI000C:00: PM: calling acpi_subsys_resume_early @ 2957, parent: platform
[ 108.823410] processor_aggregator ACPI000C:00: PM: acpi_subsys_resume_early returned 0 after 0 usecs
[ 108.823412] acpi-wmi PNP0C14:00: PM: calling acpi_subsys_resume_early @ 2957, parent: platform
[ 108.823415] acpi-wmi PNP0C14:00: PM: acpi_subsys_resume_early returned 0 after 0 usecs
[ 108.823417] intel_pmc_core INT33A1:00: PM: calling acpi_subsys_resume_early @ 2957, parent: platform
[ 108.823420] intel_pmc_core INT33A1:00: PM: acpi_subsys_resume_early returned 0 after 1 usecs
[ 108.823422] tpm_tis MSFT0101:00: PM: calling acpi_subsys_resume_early @ 2957, parent: platform
[ 108.823424] tpm_tis MSFT0101:00: PM: acpi_subsys_resume_early returned 0 after 0 usecs
[ 108.823426] acpi-wmi PNP0C14:01: PM: calling acpi_subsys_resume_early @ 2957, parent: platform
[ 108.823428] acpi-wmi PNP0C14:01: PM: acpi_subsys_resume_early returned 0 after 0 usecs
[ 108.823431] ac ACPI0003:00: PM: calling acpi_subsys_resume_early @ 2957, parent: platform
[ 108.823433] ac ACPI0003:00: PM: acpi_subsys_resume_early returned 0 after 0 usecs
[ 108.823435] intel-hid INT33D5:00: PM: calling acpi_subsys_resume_early @ 2957, parent: platform
[ 108.823437] intel-hid INT33D5:00: PM: acpi_subsys_resume_early returned 0 after 0 usecs
[ 108.823439] ucsi_acpi USBC000:00: PM: calling acpi_subsys_resume_early @ 2957, parent: platform
[ 108.823441] ucsi_acpi USBC000:00: PM: acpi_subsys_resume_early returned 0 after 0 usecs
[ 108.823443] int3400 thermal INT3400:00: PM: calling acpi_subsys_resume_early @ 2957, parent: platform
[ 108.823445] int3400 thermal INT3400:00: PM: acpi_subsys_resume_early returned 0 after 0 usecs
[ 108.823952] i915 0000:00:02.0: PM: pci_pm_resume_early returned 0 after 913 usecs
[ 108.823957] snd_hda_intel 0000:00:1f.3: PM: calling pci_pm_resume_early @ 2976, parent: pci0000:00
[ 108.823960] snd_hda_intel 0000:00:1f.3: PM: pci_pm_resume_early returned 0 after 0 usecs
[ 108.824041] reg-dummy reg-dummy: PM: calling platform_pm_resume @ 2957, parent: platform
[ 108.824045] reg-dummy reg-dummy: PM: platform_pm_resume returned 0 after 0 usecs
[ 108.824047] skl_uncore 0000:00:00.0: PM: calling pci_pm_resume @ 2976, parent: pci0000:00
[ 108.824048] regulator regulator.0: PM: calling regulator_resume @ 2957, parent: reg-dummy
[ 108.824049] i915 0000:00:02.0: PM: calling pci_pm_resume @ 2991, parent: pci0000:00
[ 108.824052] regulator regulator.0: PM: regulator_resume returned 0 after 0 usecs
[ 108.824053] skl_uncore 0000:00:00.0: PM: pci_pm_resume returned 0 after 0 usecs
[ 108.824054] proc_thermal 0000:00:04.0: PM: calling pci_pm_resume @ 2980, parent: pci0000:00
[ 108.824057] xhci_hcd 0000:00:14.0: PM: calling pci_pm_resume @ 2976, parent: pci0000:00
[ 108.824060] ec PNP0C09:00: PM: calling acpi_ec_resume @ 2957, parent: device:11
[ 108.824067] ec PNP0C09:00: PM: acpi_ec_resume returned 0 after 3 usecs
[ 108.824070] intel_pch_thermal 0000:00:14.2: PM: calling pci_pm_resume @ 2992, parent: pci0000:00
[ 108.824074] intel_pch_thermal 0000:00:14.2: PM: pci_pm_resume returned 0 after 0 usecs
[ 108.824077] intel-lpss 0000:00:15.0: PM: calling pci_pm_resume @ 2992, parent: pci0000:00
[ 108.824079] intel-lpss 0000:00:15.0: PM: pci_pm_resume returned 0 after 0 usecs
[ 108.824082] intel-lpss 0000:00:15.1: PM: calling pci_pm_resume @ 2992, parent: pci0000:00
[ 108.824084] mei_me 0000:00:16.0: PM: calling pci_pm_resume @ 716, parent: pci0000:00
[ 108.824085] intel-lpss 0000:00:15.1: PM: pci_pm_resume returned 0 after 0 usecs
[ 108.824088] pcieport 0000:00:1c.0: PM: calling pci_pm_resume @ 2992, parent: pci0000:00
[ 108.824087] button PNP0C0D:00: PM: calling acpi_button_resume [button] @ 2957, parent: LNXSYBUS:00
[ 108.824103] pcieport 0000:00:1c.4: PM: calling pci_pm_resume @ 2979, parent: pci0000:00
[ 108.824156] pcieport 0000:00:1c.0: PM: pci_pm_resume returned 0 after 65 usecs
[ 108.824159] pcieport 0000:00:1d.0: PM: calling pci_pm_resume @ 2992, parent: pci0000:00
[ 108.824691] pcieport 0000:00:1d.0: PM: pci_pm_resume returned 0 after 528 usecs
[ 108.824702] pci 0000:00:1f.0: PM: calling pci_pm_resume @ 2992, parent: pci0000:00
[ 108.824705] pci 0000:00:1f.0: PM: pci_pm_resume returned 0 after 0 usecs
[ 108.824713] pci 0000:00:1f.2: PM: calling pci_pm_resume @ 2992, parent: pci0000:00
[ 108.824715] pci 0000:00:1f.2: PM: pci_pm_resume returned 0 after 0 usecs
[ 108.824725] i801_smbus 0000:00:1f.4: PM: calling pci_pm_resume @ 2992, parent: pci0000:00
[ 108.824742] nvme 0000:3b:00.0: PM: calling pci_pm_resume @ 370, parent: 0000:00:1d.0
[ 108.824845] proc_thermal 0000:00:04.0: PM: pci_pm_resume returned 0 after 785 usecs
[ 108.825162] i2c_designware i2c_designware.0: PM: calling platform_pm_resume @ 2982, parent: 0000:00:15.0
[ 108.825168] i2c_designware i2c_designware.0: PM: platform_pm_resume returned 0 after 0 usecs
[ 108.825172] i2c_designware i2c_designware.1: PM: calling platform_pm_resume @ 2982, parent: 0000:00:15.1
[ 108.825176] i2c_designware i2c_designware.1: PM: platform_pm_resume returned 0 after 0 usecs
[ 108.825180] i2c_hid_acpi i2c-DLL075B:01: PM: calling acpi_subsys_resume @ 2982, parent: i2c-2
[ 108.825210] xhci_hcd 0000:00:14.0: PM: pci_pm_resume returned 0 after 1150 usecs
[ 108.825215] usb usb1: PM: calling usb_dev_resume [usbcore] @ 2976, parent: 0000:00:14.0
[ 108.825230] i801_smbus 0000:00:1f.4: PM: pci_pm_resume returned 0 after 502 usecs
[ 108.825260] pcieport 0000:00:1c.4: PM: pci_pm_resume returned 0 after 1153 usecs
[ 108.825273] ath10k_pci 0000:3a:00.0: PM: calling pci_pm_resume @ 2981, parent: 0000:00:1c.4
[ 108.825620] ath10k_pci 0000:3a:00.0: PM: pci_pm_resume returned 0 after 343 usecs
[ 108.825629] nvme 0000:3b:00.0: PM: pci_pm_resume returned 0 after 882 usecs
[ 108.825667] usb usb2: PM: calling usb_dev_resume [usbcore] @ 2984, parent: 0000:00:14.0
[ 108.825847] ieee80211 phy0: PM: calling wiphy_resume [cfg80211] @ 11, parent: 0000:3a:00.0
[ 108.827400] button PNP0C0D:00: PM: acpi_button_resume [button] returned 0 after 3307 usecs
[ 108.827407] button PNP0C0C:00: PM: calling acpi_button_resume [button] @ 2957, parent: LNXSYBUS:00
[ 108.827419] button PNP0C0C:00: PM: acpi_button_resume [button] returned 0 after 9 usecs
[ 108.827427] button PNP0C0E:00: PM: calling acpi_button_resume [button] @ 2957, parent: LNXSYBUS:00
[ 108.827429] button PNP0C0E:00: PM: acpi_button_resume [button] returned 0 after 0 usecs
[ 108.827431] battery PNP0C0A:00: PM: calling acpi_battery_resume [battery] @ 2957, parent: LNXSYBUS:00
[ 108.828350] battery PNP0C0A:00: PM: acpi_battery_resume [battery] returned 0 after 915 usecs
[ 108.828356] thermal LNXTHERM:00: PM: calling acpi_thermal_resume @ 2957, parent: LNXSYBUS:01
[ 108.828362] thermal LNXTHERM:00: PM: acpi_thermal_resume returned 0 after 1 usecs
[ 108.828366] platform acpi-cpufreq: PM: calling platform_pm_resume @ 2957, parent: platform
[ 108.828369] platform acpi-cpufreq: PM: platform_pm_resume returned 0 after 0 usecs
[ 108.828372] platform INT0800:00: PM: calling platform_pm_resume @ 2957, parent: 0000:00:1f.0
[ 108.828374] platform INT0800:00: PM: platform_pm_resume returned 0 after 0 usecs
[ 108.828376] platform PNP0103:00: PM: calling platform_pm_resume @ 2957, parent: 0000:00:1f.0
[ 108.828378] platform PNP0103:00: PM: platform_pm_resume returned 0 after 0 usecs
[ 108.828380] platform PNP0C09:00: PM: calling platform_pm_resume @ 2957, parent: 0000:00:1f.0
[ 108.828382] platform PNP0C09:00: PM: platform_pm_resume returned 0 after 0 usecs
[ 108.828384] platform INT33D2:00: PM: calling platform_pm_resume @ 2957, parent: PNP0C09:00
[ 108.828386] platform INT33D2:00: PM: platform_pm_resume returned 0 after 0 usecs
[ 108.828388] platform INT33D3:00: PM: calling platform_pm_resume @ 2957, parent: PNP0C09:00
[ 108.828389] platform INT33D3:00: PM: platform_pm_resume returned 0 after 0 usecs
[ 108.828392] platform INT33D4:00: PM: calling platform_pm_resume @ 2957, parent: PNP0C09:00
[ 108.828393] platform INT33D4:00: PM: platform_pm_resume returned 0 after 0 usecs
[ 108.828395] intel-vbtn INT33D6:00: PM: calling acpi_subsys_resume @ 2957, parent: PNP0C09:00
[ 108.828398] intel-vbtn INT33D6:00: PM: acpi_subsys_resume returned 0 after 0 usecs
[ 108.828401] int3403 thermal INT3403:00: PM: calling acpi_subsys_resume @ 2957, parent: PNP0C09:00
[ 108.828403] int3403 thermal INT3403:00: PM: acpi_subsys_resume returned 0 after 0 usecs
[ 108.828405] int3403 thermal INT3403:01: PM: calling acpi_subsys_resume @ 2957, parent: PNP0C09:00
[ 108.828407] int3403 thermal INT3403:01: PM: acpi_subsys_resume returned 0 after 0 usecs
[ 108.828409] int3403 thermal INT3403:02: PM: calling acpi_subsys_resume @ 2957, parent: PNP0C09:00
[ 108.828411] int3403 thermal INT3403:02: PM: acpi_subsys_resume returned 0 after 0 usecs
[ 108.828413] sunrisepoint-pinctrl INT344B:00: PM: calling acpi_subsys_resume @ 2957, parent: pci0000:00
[ 108.828416] sunrisepoint-pinctrl INT344B:00: PM: acpi_subsys_resume returned 0 after 0 usecs
[ 108.828418] int3403 thermal INT3403:03: PM: calling acpi_subsys_resume @ 2957, parent: pci0000:00
[ 108.828420] int3403 thermal INT3403:03: PM: acpi_subsys_resume returned 0 after 0 usecs
[ 108.828423] processor_aggregator ACPI000C:00: PM: calling acpi_subsys_resume @ 2957, parent: platform
[ 108.828425] processor_aggregator ACPI000C:00: PM: acpi_subsys_resume returned 0 after 0 usecs
[ 108.828427] platform INT0E0C:00: PM: calling platform_pm_resume @ 2957, parent: platform
[ 108.828429] platform INT0E0C:00: PM: platform_pm_resume returned 0 after 0 usecs
[ 108.828431] acpi-wmi PNP0C14:00: PM: calling acpi_subsys_resume @ 2957, parent: platform
[ 108.828433] acpi-wmi PNP0C14:00: PM: acpi_subsys_resume returned 0 after 0 usecs
[ 108.828435] intel_pmc_core INT33A1:00: PM: calling acpi_subsys_resume @ 2957, parent: platform
[ 108.828438] intel_pmc_core INT33A1:00: PM: acpi_subsys_resume returned 0 after 0 usecs
[ 108.828440] tpm_tis MSFT0101:00: PM: calling acpi_subsys_resume @ 2957, parent: platform
[ 108.828453] tpm_tis MSFT0101:00: PM: acpi_subsys_resume returned 0 after 11 usecs
[ 108.828455] acpi-wmi PNP0C14:01: PM: calling acpi_subsys_resume @ 2957, parent: platform
[ 108.828457] acpi-wmi PNP0C14:01: PM: acpi_subsys_resume returned 0 after 0 usecs
[ 108.828459] platform PNP0C0D:00: PM: calling platform_pm_resume @ 2957, parent: platform
[ 108.828461] platform PNP0C0D:00: PM: platform_pm_resume returned 0 after 0 usecs
[ 108.828463] platform PNP0C0C:00: PM: calling platform_pm_resume @ 2957, parent: platform
[ 108.828465] platform PNP0C0C:00: PM: platform_pm_resume returned 0 after 0 usecs
[ 108.828467] platform PNP0C0E:00: PM: calling platform_pm_resume @ 2957, parent: platform
[ 108.828469] platform PNP0C0E:00: PM: platform_pm_resume returned 0 after 0 usecs
[ 108.828471] ac ACPI0003:00: PM: calling acpi_subsys_resume @ 2957, parent: platform
[ 108.829286] ac ACPI0003:00: PM: acpi_subsys_resume returned 0 after 812 usecs
[ 108.829291] platform PNP0C0A:00: PM: calling platform_pm_resume @ 2957, parent: platform
[ 108.829294] platform PNP0C0A:00: PM: platform_pm_resume returned 0 after 0 usecs
[ 108.829296] intel-hid INT33D5:00: PM: calling acpi_subsys_resume @ 2957, parent: platform
[ 108.829439] intel-hid INT33D5:00: PM: acpi_subsys_resume returned 0 after 140 usecs
[ 108.829442] ucsi_acpi USBC000:00: PM: calling acpi_subsys_resume @ 2957, parent: platform
[ 108.829446] ucsi_acpi USBC000:00: PM: acpi_subsys_resume returned 0 after 1 usecs
[ 108.829651] int3400 thermal INT3400:00: PM: calling acpi_subsys_resume @ 2957, parent: platform
[ 108.829654] int3400 thermal INT3400:00: PM: acpi_subsys_resume returned 0 after 0 usecs
[ 108.829657] button LNXPWRBN:00: PM: calling acpi_button_resume [button] @ 2957, parent: LNXSYSTM:00
[ 108.829666] button LNXPWRBN:00: PM: acpi_button_resume [button] returned 0 after 6 usecs
[ 108.829672] platform rtc-efi.0: PM: calling platform_pm_resume @ 2957, parent: platform
[ 108.829674] platform rtc-efi.0: PM: platform_pm_resume returned 0 after 0 usecs
[ 108.829677] platform efivars.0: PM: calling platform_pm_resume @ 2957, parent: platform
[ 108.829678] platform efivars.0: PM: platform_pm_resume returned 0 after 0 usecs
[ 108.829681] system 00:00: PM: calling pnp_bus_resume @ 2957, parent: pnp0
[ 108.829685] system 00:00: PM: pnp_bus_resume returned 0 after 0 usecs
[ 108.829688] rtc_cmos 00:01: PM: calling pnp_bus_resume @ 2957, parent: pnp0
[ 108.829691] rtc_cmos 00:01: PM: pnp_bus_resume returned 0 after 0 usecs
[ 108.829693] system 00:02: PM: calling pnp_bus_resume @ 2957, parent: pnp0
[ 108.829696] system 00:02: PM: pnp_bus_resume returned 0 after 0 usecs
[ 108.829698] i8042 kbd 00:03: PM: calling pnp_bus_resume @ 2957, parent: pnp0
[ 108.829701] i8042 kbd 00:03: PM: pnp_bus_resume returned 0 after 0 usecs
[ 108.829703] i8042 aux 00:04: PM: calling pnp_bus_resume @ 2957, parent: pnp0
[ 108.829705] i8042 aux 00:04: PM: pnp_bus_resume returned 0 after 0 usecs
[ 108.829708] system 00:05: PM: calling pnp_bus_resume @ 2957, parent: pnp0
[ 108.829710] system 00:05: PM: pnp_bus_resume returned 0 after 0 usecs
[ 108.829713] system 00:06: PM: calling pnp_bus_resume @ 2957, parent: pnp0
[ 108.829715] system 00:06: PM: pnp_bus_resume returned 0 after 0 usecs
[ 108.829718] system 00:07: PM: calling pnp_bus_resume @ 2957, parent: pnp0
[ 108.829720] system 00:07: PM: pnp_bus_resume returned 0 after 0 usecs
[ 108.829722] system 00:08: PM: calling pnp_bus_resume @ 2957, parent: pnp0
[ 108.829725] system 00:08: PM: pnp_bus_resume returned 0 after 0 usecs
[ 108.829741] pcspkr pcspkr: PM: calling platform_pm_resume @ 2957, parent: platform
[ 108.829744] pcspkr pcspkr: PM: platform_pm_resume returned 0 after 0 usecs
[ 108.829751] serial8250 serial8250: PM: calling platform_pm_resume @ 2957, parent: platform
[ 108.829754] serial8250 serial8250: PM: platform_pm_resume returned 0 after 0 usecs
[ 108.829757] port serial8250:0.0: PM: calling pm_runtime_force_resume @ 2957, parent: serial8250:0
[ 108.829759] port serial8250:0.0: PM: pm_runtime_force_resume returned 0 after 0 usecs
[ 108.829761] port serial8250:0.1: PM: calling pm_runtime_force_resume @ 2957, parent: serial8250:0
[ 108.829763] port serial8250:0.1: PM: pm_runtime_force_resume returned 0 after 0 usecs
[ 108.829765] port serial8250:0.2: PM: calling pm_runtime_force_resume @ 2957, parent: serial8250:0
[ 108.829766] port serial8250:0.2: PM: pm_runtime_force_resume returned 0 after 0 usecs
[ 108.829768] port serial8250:0.3: PM: calling pm_runtime_force_resume @ 2957, parent: serial8250:0
[ 108.829770] port serial8250:0.3: PM: pm_runtime_force_resume returned 0 after 0 usecs
[ 108.829772] platform Fixed MDIO bus.0: PM: calling platform_pm_resume @ 2957, parent: platform
[ 108.829774] platform Fixed MDIO bus.0: PM: platform_pm_resume returned 0 after 0 usecs
[ 108.829777] i8042 i8042: PM: calling platform_pm_resume @ 2957, parent: platform
[ 108.829779] i8042 i8042: PM: platform_pm_resume returned 0 after 0 usecs
[ 108.829781] atkbd serio0: PM: calling serio_resume @ 2957, parent: i8042
[ 108.829786] atkbd serio0: PM: serio_resume returned 0 after 1 usecs
[ 108.829805] serio serio1: PM: calling serio_resume @ 2957, parent: i8042
[ 108.829808] serio serio1: PM: serio_resume returned 0 after 0 usecs
[ 108.829811] rtc rtc0: PM: calling rtc_resume @ 2957, parent: 00:01
[ 108.829814] rtc rtc0: PM: rtc_resume returned 0 after 0 usecs
[ 108.829815] alarmtimer alarmtimer.0.auto: PM: calling platform_pm_resume @ 2957, parent: rtc0
[ 108.829818] alarmtimer alarmtimer.0.auto: PM: platform_pm_resume returned 0 after 0 usecs
[ 108.829820] input input0: PM: calling input_dev_resume @ 2957, parent: serio0
[ 108.829823] input input0: PM: input_dev_resume returned 0 after 0 usecs
[ 108.829825] leds input0::numlock: PM: calling led_resume @ 2957, parent: input0
[ 108.829828] leds input0::numlock: PM: led_resume returned 0 after 0 usecs
[ 108.829830] leds input0::capslock: PM: calling led_resume @ 2957, parent: input0
[ 108.829832] leds input0::capslock: PM: led_resume returned 0 after 0 usecs
[ 108.829833] leds input0::scrolllock: PM: calling led_resume @ 2957, parent: input0
[ 108.829835] leds input0::scrolllock: PM: led_resume returned 0 after 0 usecs
[ 108.829838] platform microcode: PM: calling platform_pm_resume @ 2957, parent: platform
[ 108.829840] platform microcode: PM: platform_pm_resume returned 0 after 0 usecs
[ 108.829843] idma64 idma64.0: PM: calling platform_pm_resume @ 2957, parent: 0000:00:15.0
[ 108.829845] idma64 idma64.0: PM: platform_pm_resume returned 0 after 0 usecs
[ 108.829848] idma64 idma64.1: PM: calling platform_pm_resume @ 2957, parent: 0000:00:15.1
[ 108.829850] idma64 idma64.1: PM: platform_pm_resume returned 0 after 0 usecs
[ 108.829852] iTCO_wdt iTCO_wdt: PM: calling platform_pm_resume @ 2957, parent: 0000:00:1f.4
[ 108.829854] iTCO_wdt iTCO_wdt: PM: platform_pm_resume returned 0 after 0 usecs
[ 108.829859] intel_xhci_usb_sw intel_xhci_usb_sw: PM: calling platform_pm_resume @ 2957, parent: 0000:00:14.0
[ 108.829861] intel_xhci_usb_sw intel_xhci_usb_sw: PM: platform_pm_resume returned 0 after 0 usecs
[ 108.829929] input input9: PM: calling input_dev_resume @ 2957, parent: PNP0C0D:00
[ 108.829931] input input9: PM: input_dev_resume returned 0 after 0 usecs
[ 108.829934] input input10: PM: calling input_dev_resume @ 2957, parent: INT33D5:00
[ 108.829936] input input10: PM: input_dev_resume returned 0 after 0 usecs
[ 108.829941] input input11: PM: calling input_dev_resume @ 2957, parent: INT33D5:00
[ 108.829943] input input11: PM: input_dev_resume returned 0 after 0 usecs
[ 108.829945] input input12: PM: calling input_dev_resume @ 2957, parent: PNP0C0C:00
[ 108.829947] input input12: PM: input_dev_resume returned 0 after 0 usecs
[ 108.829949] input input13: PM: calling input_dev_resume @ 2957, parent: INT33D6:00
[ 108.829948] mei_me 0000:00:16.0: PM: pci_pm_resume returned 0 after 5859 usecs
[ 108.829951] input input13: PM: input_dev_resume returned 0 after 0 usecs
[ 108.829955] input input15: PM: calling input_dev_resume @ 2957, parent: PNP0C0E:00
[ 108.829957] input input15: PM: input_dev_resume returned 0 after 0 usecs
[ 108.829960] intel_rapl_msr intel_rapl_msr.0: PM: calling platform_pm_resume @ 2957, parent: platform
[ 108.829962] intel_rapl_msr intel_rapl_msr.0: PM: platform_pm_resume returned 0 after 0 usecs
[ 108.829964] input input16: PM: calling input_dev_resume @ 2957, parent: LNXPWRBN:00
[ 108.829966] input input16: PM: input_dev_resume returned 0 after 0 usecs
[ 108.830744] probe of serio1 returned -517 after 0 usecs
[ 108.843602] probe of 0000:00:16.0-05b79a6f-4628-4d7f-899d-a91514cb32ab returned -517 after 0 usecs
[ 108.843627] probe of 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04 returned -517 after 0 usecs
[ 108.843638] probe of 0000:00:16.0-fbf6fcf1-96cf-4e2e-a6a6-1bab8cbe36b1 returned -517 after 0 usecs
[ 108.844044] i915 0000:00:02.0: PM: pci_pm_resume returned 0 after 19990 usecs
[ 108.844054] snd_hda_intel 0000:00:1f.3: PM: calling pci_pm_resume @ 42, parent: pci0000:00
[ 108.850817] usb usb2: PM: usb_dev_resume [usbcore] returned 0 after 25131 usecs
[ 108.856079] snd_hda_intel 0000:00:1f.3: PM: pci_pm_resume returned 0 after 12019 usecs
[ 108.881990] usb usb1: PM: usb_dev_resume [usbcore] returned 0 after 56750 usecs
[ 108.882089] usb 1-4: PM: calling usb_dev_resume [usbcore] @ 2970, parent: usb1
[ 108.882109] usb 1-3: PM: calling usb_dev_resume [usbcore] @ 2992, parent: usb1
[ 108.882195] usb 1-5: PM: calling usb_dev_resume [usbcore] @ 349, parent: usb1
[ 108.891799] i2c_hid_acpi i2c-DLL075B:01: PM: acpi_subsys_resume returned 0 after 66613 usecs
[ 108.891898] input input17: PM: calling input_dev_resume @ 2957, parent: 0018:06CB:76AF.0001
[ 108.891911] input input17: PM: input_dev_resume returned 0 after 0 usecs
[ 108.891921] input input18: PM: calling input_dev_resume @ 2957, parent: 0018:06CB:76AF.0001
[ 108.891927] input input18: PM: input_dev_resume returned 0 after 0 usecs
[ 108.891935] input input20: PM: calling input_dev_resume @ 2957, parent: pcspkr
[ 108.891977] input input20: PM: input_dev_resume returned 0 after 36 usecs
[ 108.899003] usb 1-4: PM: usb_dev_resume [usbcore] returned 0 after 16855 usecs
[ 108.899138] input input21: PM: calling input_dev_resume @ 2957, parent: 0003:04F3:2234.0002
[ 108.899151] input input21: PM: input_dev_resume returned 0 after 0 usecs
[ 108.899163] input input22: PM: calling input_dev_resume @ 2957, parent: 0003:04F3:2234.0002
[ 108.899172] input input22: PM: input_dev_resume returned 0 after 0 usecs
[ 108.899181] input input23: PM: calling input_dev_resume @ 2957, parent: 0003:04F3:2234.0002
[ 108.899189] input input23: PM: input_dev_resume returned 0 after 0 usecs
[ 108.899201] dell_smm_hwmon dell_smm_hwmon: PM: calling platform_pm_resume @ 2957, parent: platform
[ 108.899212] dell_smm_hwmon dell_smm_hwmon: PM: platform_pm_resume returned 0 after 0 usecs
[ 108.899221] platform regulatory.0: PM: calling platform_pm_resume @ 2957, parent: platform
[ 108.899230] platform regulatory.0: PM: platform_pm_resume returned 0 after 0 usecs
[ 108.899239] platform dcdbas: PM: calling platform_pm_resume @ 2957, parent: platform
[ 108.899247] platform dcdbas: PM: platform_pm_resume returned 0 after 0 usecs
[ 108.899257] dell-smbios dell-smbios.0: PM: calling platform_pm_resume @ 2957, parent: platform
[ 108.899265] dell-smbios dell-smbios.0: PM: platform_pm_resume returned 0 after 0 usecs
[ 108.899275] dell-laptop dell-laptop: PM: calling platform_pm_resume @ 2957, parent: platform
[ 108.899284] dell-laptop dell-laptop: PM: platform_pm_resume returned 0 after 0 usecs
[ 108.899292] input input25: PM: calling input_dev_resume @ 2957, parent: 9DBB5994-A997-11DA-B012-B622A1EF5492
[ 108.899301] input input25: PM: input_dev_resume returned 0 after 0 usecs
[ 108.899314] platform coretemp.0: PM: calling platform_pm_resume @ 2957, parent: platform
[ 108.899322] platform coretemp.0: PM: platform_pm_resume returned 0 after 0 usecs
[ 108.899332] snd-soc-dummy snd-soc-dummy: PM: calling platform_pm_resume @ 2957, parent: platform
[ 108.899341] snd-soc-dummy snd-soc-dummy: PM: platform_pm_resume returned 0 after 0 usecs
[ 108.899353] leds dell::kbd_backlight: PM: calling led_resume @ 2957, parent: dell-laptop
[ 108.899362] leds dell::kbd_backlight: PM: led_resume returned 0 after 0 usecs
[ 108.995893] usb 1-5: PM: usb_dev_resume [usbcore] returned 0 after 113642 usecs
[ 109.031161] usb 1-3: reset full-speed USB device number 2 using xhci_hcd
[ 109.144416] ieee80211 phy0: PM: wiphy_resume [cfg80211] returned 0 after 318513 usecs
[ 109.181571] usb 1-3: PM: usb_dev_resume [usbcore] returned 0 after 299402 usecs
[ 109.181876] backlight intel_backlight: PM: calling backlight_resume @ 2957, parent: card0-eDP-1
[ 109.181893] backlight intel_backlight: PM: backlight_resume returned 0 after 0 usecs
[ 109.181905] input input26: PM: calling input_dev_resume @ 2957, parent: LNXVIDEO:00
[ 109.181915] input input26: PM: input_dev_resume returned 0 after 0 usecs
[ 109.181927] rfkill rfkill1: PM: calling rfkill_resume [rfkill] @ 2957, parent: phy0
[ 109.181948] rfkill rfkill1: PM: rfkill_resume [rfkill] returned 0 after 7 usecs
[ 109.181966] input input27: PM: calling input_dev_resume @ 2957, parent: card0
[ 109.181974] input input27: PM: input_dev_resume returned 0 after 1 usecs
[ 109.181981] input input28: PM: calling input_dev_resume @ 2957, parent: card0
[ 109.181986] input input28: PM: input_dev_resume returned 0 after 0 usecs
[ 109.181993] input input29: PM: calling input_dev_resume @ 2957, parent: card0
[ 109.181998] input input29: PM: input_dev_resume returned 0 after 0 usecs
[ 109.182005] input input30: PM: calling input_dev_resume @ 2957, parent: card0
[ 109.182010] input input30: PM: input_dev_resume returned 0 after 0 usecs
[ 109.182017] input input31: PM: calling input_dev_resume @ 2957, parent: card0
[ 109.182022] input input31: PM: input_dev_resume returned 0 after 0 usecs
[ 109.182317] probe of 1-3:1.0 returned -517 after 0 usecs
[ 109.182327] probe of 1-3:1.1 returned -517 after 0 usecs
[ 109.183326] OOM killer enabled.
[ 109.183330] Restarting tasks ... done.
[ 109.189343] random: crng reseeded on system resumption
[ 109.590848] probe of serio1 returned 19 after 408111 usecs
[ 109.593089] probe of 0000:00:16.0-05b79a6f-4628-4d7f-899d-a91514cb32ab returned 0 after 2228 usecs
[ 109.594110] mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_ops [i915])
[ 109.594226] probe of 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04 returned 0 after 1123 usecs
[ 109.598058] probe of 0000:00:16.0-fbf6fcf1-96cf-4e2e-a6a6-1bab8cbe36b1 returned 0 after 3818 usecs
[ 109.662158] PM: suspend exit
[ 109.662211] probe of 1-3:1.0 returned 0 after 64133 usecs
[ 109.662554] Bluetooth: hci0: HCI Enhanced Setup Synchronous Connection command is advertised, but not supported.
[ 109.726508] Process accounting resumed
^ permalink raw reply [flat|nested] 4+ messages in thread