* Re: [PATCH][next] ACPI: align slab for improved memory performance
2024-08-08 22:21 [PATCH][next] ACPI: align slab for improved memory performance Colin Ian King
@ 2024-08-13 10:14 ` Paul Menzel
2024-08-13 10:17 ` King, Colin
0 siblings, 1 reply; 6+ messages in thread
From: Paul Menzel @ 2024-08-13 10:14 UTC (permalink / raw)
To: Colin Ian King
Cc: Rafael J . Wysocki, Len Brown, linux-acpi, linux-kernel,
Steven Rostedt
[-- Attachment #1: Type: text/plain, Size: 1771 bytes --]
Dear Colin,
Thank you for your patch and working on decreasing the boot time.
Am 09.08.24 um 00:21 schrieb Colin Ian King:
> Enabling SLAB_HWCACHE_ALIGN for the ACPI object caches improves
> boot speed in the ACPICA core for object allocation and free'ing
> especially in the AML parsing and execution phases in boot. Testing
> with 100 boots shows an average boot saving in acpi_init of ~35000
> usecs compared to the unaligned version. Most of the ACPI objects
> being allocated and free'd are of very short life times in the
> critical paths for parsing and execution, so the extra memory used
> for alignment isn't too onerous.
>
> Signed-off-by: Colin Ian King <colin.king@intel.com>
> ---
> drivers/acpi/osl.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/acpi/osl.c b/drivers/acpi/osl.c
> index 70af3fbbebe5..dab3d5089635 100644
> --- a/drivers/acpi/osl.c
> +++ b/drivers/acpi/osl.c
> @@ -1549,7 +1549,7 @@ void acpi_os_release_lock(acpi_spinlock lockp, acpi_cpu_flags not_used)
> acpi_status
> acpi_os_create_cache(char *name, u16 size, u16 depth, acpi_cache_t **cache)
> {
> - *cache = kmem_cache_create(name, size, 0, 0, NULL);
> + *cache = kmem_cache_create(name, size, 0, SLAB_HWCACHE_ALIGN, NULL);
> if (*cache == NULL)
> return AE_ERROR;
> else
Thank you for the patch. I tested it on the Intel Kaby Lake laptop Dell
XPS 13 9360, and unfortunately, my results are different from yours,
that the time for `acpi_init()` *in*creased by 20 ms.
Without your patch:
[ 0.201471] initcall acpi_init+0x0/0x590 returned 0 after 112000
usecs
With your patch:
[ 0.222321] initcall acpi_init+0x0/0x590 returned 0 after 132000
usecs
Please find the logs attached.
Kind regards,
Paul
[-- Attachment #2: 20240813--linux-6.10-rc3--before-alignment.txt --]
[-- Type: text/plain, Size: 200752 bytes --]
[ 0.000000] Linux version 6.11.0-rc3-00007-gd74da846046a (build@bohemianrhapsody.molgen.mpg.de) (gcc (Debian 13.3.0-2) 13.3.0, GNU ld (GNU Binutils for Debian) 2.42.50.20240710) #266 SMP PREEMPT_DYNAMIC Tue Aug 13 11:41:34 CEST 2024
[ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-6.11.0-rc3-00007-gd74da846046a 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=0x55778018
[ 0.000000] efi: Remove mem36: MMIO range=[0xe0000000-0xefffffff] (256MB) from e820 map
[ 0.000000] e820: remove [mem 0xe0000000-0xefffffff] reserved
[ 0.000000] efi: Not removing mem37: MMIO range=[0xfe000000-0xfe010fff] (68KB) from e820 map
[ 0.000000] efi: Not removing mem38: MMIO range=[0xfec00000-0xfec00fff] (4KB) from e820 map
[ 0.000000] efi: Not removing mem39: MMIO range=[0xfee00000-0xfee00fff] (4KB) from e820 map
[ 0.000000] efi: Remove mem40: 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.000795] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000797] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000803] last_pfn = 0x481800 max_arch_pfn = 0x400000000
[ 0.000807] MTRR map: 4 entries (3 fixed + 1 variable; max 23), built from 10 variable MTRRs
[ 0.000808] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.001103] last_pfn = 0x78600 max_arch_pfn = 0x400000000
[ 0.007306] esrt: Reserving ESRT space from 0x000000006fc86698 to 0x000000006fc866d0.
[ 0.007312] Using GB pages for direct mapping
[ 0.014026] printk: log_buf_len: 8388608 bytes
[ 0.014027] printk: early log buf free: 125304(95%)
[ 0.014028] Secure boot disabled
[ 0.014028] RAMDISK: [mem 0x511fd000-0x52613fff]
[ 0.014032] ACPI: Early table checksum verification disabled
[ 0.014035] ACPI: RSDP 0x000000006518D000 000024 (v02 DELL )
[ 0.014039] ACPI: XSDT 0x000000006518D0C8 00010C (v01 DELL CBX3 01072009 AMI 00010013)
[ 0.014044] ACPI: FACP 0x00000000651B2A48 00010C (v05 DELL CBX3 01072009 AMI 00010013)
[ 0.014048] ACPI: DSDT 0x000000006518D260 0257E7 (v02 DELL CBX3 01072009 INTL 20160422)
[ 0.014051] ACPI: FACS 0x000000006F86F180 000040
[ 0.014053] ACPI: APIC 0x00000000651B2B58 000084 (v03 DELL CBX3 01072009 AMI 00010013)
[ 0.014055] ACPI: FPDT 0x00000000651B2BE0 000044 (v01 DELL CBX3 01072009 AMI 00010013)
[ 0.014057] ACPI: FIDT 0x00000000651B2C28 0000AC (v01 DELL CBX3 01072009 AMI 00010013)
[ 0.014059] ACPI: MCFG 0x00000000651B2CD8 00003C (v01 DELL CBX3 01072009 MSFT 00000097)
[ 0.014061] ACPI: HPET 0x00000000651B2D18 000038 (v01 DELL CBX3 01072009 AMI. 0005000B)
[ 0.014064] ACPI: SSDT 0x00000000651B2D50 000359 (v01 SataRe SataTabl 00001000 INTL 20160422)
[ 0.014066] ACPI: BOOT 0x00000000651B30B0 000028 (v01 DELL CBX3 01072009 AMI 00010013)
[ 0.014068] ACPI: SSDT 0x00000000651B30D8 0012CF (v02 SaSsdt SaSsdt 00003000 INTL 20160422)
[ 0.014074] ACPI: HPET 0x00000000651B43A8 000038 (v01 INTEL KBL-ULT 00000001 MSFT 0000005F)
[ 0.014076] ACPI: SSDT 0x00000000651B43E0 000D84 (v02 INTEL xh_rvp07 00000000 INTL 20160422)
[ 0.014079] ACPI: UEFI 0x00000000651B5168 000042 (v01 00000000 00000000)
[ 0.014081] ACPI: SSDT 0x00000000651B51B0 000EDE (v02 CpuRef CpuSsdt 00003000 INTL 20160422)
[ 0.014083] ACPI: LPIT 0x00000000651B6090 000094 (v01 INTEL KBL-ULT 00000000 MSFT 0000005F)
[ 0.014085] ACPI: WSMT 0x00000000651B6128 000028 (v01 DELL CBX3 00000000 MSFT 0000005F)
[ 0.014088] ACPI: SSDT 0x00000000651B6150 000161 (v02 INTEL HdaDsp 00000000 INTL 20160422)
[ 0.014090] ACPI: SSDT 0x00000000651B62B8 00029F (v02 INTEL sensrhub 00000000 INTL 20160422)
[ 0.014092] ACPI: SSDT 0x00000000651B6558 003002 (v02 INTEL PtidDevc 00001000 INTL 20160422)
[ 0.014094] ACPI: SSDT 0x00000000651B9560 0000DB (v02 INTEL TbtTypeC 00000000 INTL 20160422)
[ 0.014097] ACPI: DBGP 0x00000000651B9640 000034 (v01 INTEL 00000002 MSFT 0000005F)
[ 0.014099] ACPI: DBG2 0x00000000651B9678 000054 (v00 INTEL 00000002 MSFT 0000005F)
[ 0.014101] ACPI: SSDT 0x00000000651B96D0 0007DD (v02 INTEL UsbCTabl 00001000 INTL 20160422)
[ 0.014103] ACPI: SSDT 0x00000000651B9EB0 0084F1 (v02 DptfTa DptfTabl 00001000 INTL 20160422)
[ 0.014106] ACPI: SLIC 0x00000000651C23A8 000176 (v03 DELL CBX3 01072009 MSFT 00010013)
[ 0.014108] ACPI: NHLT 0x00000000651C2520 00002D (v00 INTEL EDK2 00000002 01000013)
[ 0.014110] ACPI: BGRT 0x00000000651C2550 000038 (v00 01072009 AMI 00010013)
[ 0.014112] ACPI: TPM2 0x00000000651C2588 000034 (v03 Tpm2Tabl 00000001 AMI 00000000)
[ 0.014114] ACPI: ASF! 0x00000000651C25C0 0000A0 (v32 INTEL HCG 00000001 TFSM 000F4240)
[ 0.014117] ACPI: DMAR 0x00000000651C2660 0000F0 (v01 INTEL KBL 00000001 INTL 00000001)
[ 0.014119] ACPI: Reserving FACP table memory at [mem 0x651b2a48-0x651b2b53]
[ 0.014120] ACPI: Reserving DSDT table memory at [mem 0x6518d260-0x651b2a46]
[ 0.014121] ACPI: Reserving FACS table memory at [mem 0x6f86f180-0x6f86f1bf]
[ 0.014122] ACPI: Reserving APIC table memory at [mem 0x651b2b58-0x651b2bdb]
[ 0.014122] ACPI: Reserving FPDT table memory at [mem 0x651b2be0-0x651b2c23]
[ 0.014123] ACPI: Reserving FIDT table memory at [mem 0x651b2c28-0x651b2cd3]
[ 0.014124] ACPI: Reserving MCFG table memory at [mem 0x651b2cd8-0x651b2d13]
[ 0.014125] ACPI: Reserving HPET table memory at [mem 0x651b2d18-0x651b2d4f]
[ 0.014125] ACPI: Reserving SSDT table memory at [mem 0x651b2d50-0x651b30a8]
[ 0.014126] ACPI: Reserving BOOT table memory at [mem 0x651b30b0-0x651b30d7]
[ 0.014127] ACPI: Reserving SSDT table memory at [mem 0x651b30d8-0x651b43a6]
[ 0.014128] ACPI: Reserving HPET table memory at [mem 0x651b43a8-0x651b43df]
[ 0.014128] ACPI: Reserving SSDT table memory at [mem 0x651b43e0-0x651b5163]
[ 0.014129] ACPI: Reserving UEFI table memory at [mem 0x651b5168-0x651b51a9]
[ 0.014130] ACPI: Reserving SSDT table memory at [mem 0x651b51b0-0x651b608d]
[ 0.014131] ACPI: Reserving LPIT table memory at [mem 0x651b6090-0x651b6123]
[ 0.014131] ACPI: Reserving WSMT table memory at [mem 0x651b6128-0x651b614f]
[ 0.014132] ACPI: Reserving SSDT table memory at [mem 0x651b6150-0x651b62b0]
[ 0.014133] ACPI: Reserving SSDT table memory at [mem 0x651b62b8-0x651b6556]
[ 0.014134] ACPI: Reserving SSDT table memory at [mem 0x651b6558-0x651b9559]
[ 0.014134] ACPI: Reserving SSDT table memory at [mem 0x651b9560-0x651b963a]
[ 0.014135] ACPI: Reserving DBGP table memory at [mem 0x651b9640-0x651b9673]
[ 0.014136] ACPI: Reserving DBG2 table memory at [mem 0x651b9678-0x651b96cb]
[ 0.014137] ACPI: Reserving SSDT table memory at [mem 0x651b96d0-0x651b9eac]
[ 0.014137] ACPI: Reserving SSDT table memory at [mem 0x651b9eb0-0x651c23a0]
[ 0.014138] ACPI: Reserving SLIC table memory at [mem 0x651c23a8-0x651c251d]
[ 0.014139] ACPI: Reserving NHLT table memory at [mem 0x651c2520-0x651c254c]
[ 0.014140] ACPI: Reserving BGRT table memory at [mem 0x651c2550-0x651c2587]
[ 0.014141] ACPI: Reserving TPM2 table memory at [mem 0x651c2588-0x651c25bb]
[ 0.014141] ACPI: Reserving ASF! table memory at [mem 0x651c25c0-0x651c265f]
[ 0.014142] ACPI: Reserving DMAR table memory at [mem 0x651c2660-0x651c274f]
[ 0.014270] No NUMA configuration found
[ 0.014271] Faking a node at [mem 0x0000000000000000-0x00000004817fffff]
[ 0.014279] NODE_DATA(0) allocated [mem 0x47f3d5000-0x47f3fffff]
[ 0.014456] Zone ranges:
[ 0.014457] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.014459] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.014460] Normal [mem 0x0000000100000000-0x00000004817fffff]
[ 0.014461] Device empty
[ 0.014462] Movable zone start for each node
[ 0.014464] Early memory node ranges
[ 0.014465] node 0: [mem 0x0000000000001000-0x0000000000057fff]
[ 0.014466] node 0: [mem 0x0000000000059000-0x000000000009dfff]
[ 0.014467] node 0: [mem 0x0000000000100000-0x00000000556aafff]
[ 0.014468] node 0: [mem 0x00000000556ad000-0x0000000064df3fff]
[ 0.014469] node 0: [mem 0x000000006ffff000-0x000000006fffffff]
[ 0.014469] node 0: [mem 0x0000000078000000-0x00000000785fffff]
[ 0.014470] node 0: [mem 0x0000000100000000-0x00000004817fffff]
[ 0.014472] Initmem setup node 0 [mem 0x0000000000001000-0x00000004817fffff]
[ 0.014476] On node 0, zone DMA: 1 pages in unavailable ranges
[ 0.014478] On node 0, zone DMA: 1 pages in unavailable ranges
[ 0.014500] On node 0, zone DMA: 98 pages in unavailable ranges
[ 0.016863] On node 0, zone DMA32: 2 pages in unavailable ranges
[ 0.017291] On node 0, zone DMA32: 45579 pages in unavailable ranges
[ 0.017807] On node 0, zone Normal: 31232 pages in unavailable ranges
[ 0.018040] On node 0, zone Normal: 26624 pages in unavailable ranges
[ 0.018048] Reserving Intel graphics memory at [mem 0x7a800000-0x7c7fffff]
[ 0.018241] ACPI: PM-Timer IO Port: 0x1808
[ 0.018246] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.018248] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[ 0.018249] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[ 0.018250] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[ 0.018276] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[ 0.018278] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.018283] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.018290] ACPI: Using ACPI (MADT) for SMP configuration information
[ 0.018291] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[ 0.018296] e820: update [mem 0x62260000-0x623ecfff] usable ==> reserved
[ 0.018304] TSC deadline timer available
[ 0.018308] CPU topo: Max. logical packages: 1
[ 0.018309] CPU topo: Max. logical dies: 1
[ 0.018309] CPU topo: Max. dies per package: 1
[ 0.018313] CPU topo: Max. threads per core: 2
[ 0.018313] CPU topo: Num. cores per package: 2
[ 0.018314] CPU topo: Num. threads per package: 4
[ 0.018314] CPU topo: Allowing 4 present CPUs plus 0 hotplug CPUs
[ 0.018334] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.018336] PM: hibernation: Registered nosave memory: [mem 0x00058000-0x00058fff]
[ 0.018338] PM: hibernation: Registered nosave memory: [mem 0x0009e000-0x000fffff]
[ 0.018339] PM: hibernation: Registered nosave memory: [mem 0x511ec000-0x511ecfff]
[ 0.018341] PM: hibernation: Registered nosave memory: [mem 0x511fc000-0x511fcfff]
[ 0.018343] PM: hibernation: Registered nosave memory: [mem 0x556ab000-0x556abfff]
[ 0.018343] PM: hibernation: Registered nosave memory: [mem 0x556ac000-0x556acfff]
[ 0.018345] PM: hibernation: Registered nosave memory: [mem 0x62260000-0x623ecfff]
[ 0.018347] PM: hibernation: Registered nosave memory: [mem 0x64df4000-0x6517ffff]
[ 0.018347] PM: hibernation: Registered nosave memory: [mem 0x65180000-0x651c3fff]
[ 0.018348] PM: hibernation: Registered nosave memory: [mem 0x651c4000-0x6f871fff]
[ 0.018349] PM: hibernation: Registered nosave memory: [mem 0x6f872000-0x6fffefff]
[ 0.018350] PM: hibernation: Registered nosave memory: [mem 0x70000000-0x77ffffff]
[ 0.018352] PM: hibernation: Registered nosave memory: [mem 0x78600000-0x7c7fffff]
[ 0.018352] PM: hibernation: Registered nosave memory: [mem 0x7c800000-0xfdffffff]
[ 0.018353] PM: hibernation: Registered nosave memory: [mem 0xfe000000-0xfe010fff]
[ 0.018354] PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xfebfffff]
[ 0.018355] PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[ 0.018355] PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfedfffff]
[ 0.018356] PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[ 0.018357] PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xffffffff]
[ 0.018358] [mem 0x7c800000-0xfdffffff] available for PCI devices
[ 0.018359] Booting paravirtualized kernel on bare hardware
[ 0.018361] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[ 0.023017] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
[ 0.023333] percpu: Embedded 94 pages/cpu s290816 r65536 d28672 u524288
[ 0.023343] pcpu-alloc: s290816 r65536 d28672 u524288 alloc=1*2097152
[ 0.023346] pcpu-alloc: [0] 0 1 2 3
[ 0.023366] Kernel command line: BOOT_IMAGE=/vmlinuz-6.11.0-rc3-00007-gd74da846046a root=UUID=32e29882-d94d-4a92-9ee4-4d03002bfa29 ro quiet pci=noaer mem_sleep_default=deep log_buf_len=8M cryptomgr.notests initcall_debug
[ 0.023428] Unknown kernel command line parameters "BOOT_IMAGE=/vmlinuz-6.11.0-rc3-00007-gd74da846046a", will be passed to user space.
[ 0.023454] random: crng init done
[ 0.024962] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[ 0.025723] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[ 0.025773] Fallback order for Node 0: 0
[ 0.025776] Built 1 zonelists, mobility grouping on. Total pages: 4090767
[ 0.025777] Policy zone: Normal
[ 0.025783] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
[ 0.025789] software IO TLB: area num 4.
[ 0.044341] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[ 0.044344] kmemleak: Kernel memory leak detector disabled
[ 0.044372] ftrace: allocating 42531 entries in 167 pages
[ 0.051494] ftrace: allocated 167 pages with 5 groups
[ 0.052122] Dynamic Preempt: voluntary
[ 0.052162] rcu: Preemptible hierarchical RCU implementation.
[ 0.052163] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=4.
[ 0.052164] Trampoline variant of Tasks RCU enabled.
[ 0.052164] Rude variant of Tasks RCU enabled.
[ 0.052165] Tracing variant of Tasks RCU enabled.
[ 0.052165] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[ 0.052166] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[ 0.052171] RCU Tasks: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
[ 0.052173] RCU Tasks Rude: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
[ 0.052174] RCU Tasks Trace: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
[ 0.054668] NR_IRQS: 524544, nr_irqs: 1024, preallocated irqs: 16
[ 0.054880] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[ 0.055048] calling con_init+0x0/0x280 @ 0
[ 0.055069] Console: colour dummy device 80x25
[ 0.055071] printk: legacy console [tty0] enabled
[ 0.055090] initcall con_init+0x0/0x280 returned 0 after 0 usecs
[ 0.055092] calling hvc_console_init+0x0/0x20 @ 0
[ 0.055095] initcall hvc_console_init+0x0/0x20 returned 0 after 0 usecs
[ 0.055096] calling xen_cons_init+0x0/0x50 @ 0
[ 0.055099] initcall xen_cons_init+0x0/0x50 returned 0 after 0 usecs
[ 0.055101] calling univ8250_console_init+0x0/0x30 @ 0
[ 0.055104] initcall univ8250_console_init+0x0/0x30 returned 0 after 0 usecs
[ 0.055121] ACPI: Core revision 20240322
[ 0.055273] hpet: HPET dysfunctional in PC10. Force disabled.
[ 0.055274] APIC: Switch to symmetric I/O mode setup
[ 0.055277] DMAR: Host address width 39
[ 0.055278] DMAR: DRHD base: 0x000000fed90000 flags: 0x0
[ 0.055285] DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap 1c0000c40660462 ecap 19e2ff0505e
[ 0.055287] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
[ 0.055290] DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
[ 0.055292] DMAR: RMRR base: 0x00000064ec2000 end: 0x00000064ee1fff
[ 0.055294] DMAR: RMRR base: 0x0000007a000000 end: 0x0000007c7fffff
[ 0.055295] DMAR: ANDD device: 1 name: \_SB.PCI0.I2C0
[ 0.055296] DMAR: ANDD device: 2 name: \_SB.PCI0.I2C1
[ 0.055297] DMAR-IR: IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 1
[ 0.055299] DMAR-IR: HPET id 0 under DRHD base 0xfed91000
[ 0.055300] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[ 0.056928] DMAR-IR: Enabled IRQ remapping in x2apic mode
[ 0.056930] x2apic enabled
[ 0.056988] APIC: Switched APIC routing to: cluster x2apic
[ 0.060810] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x29ccd767b87, max_idle_ns: 440795223720 ns
[ 0.060815] Calibrating delay loop (skipped), value calculated using timer frequency.. 5799.77 BogoMIPS (lpj=11599544)
[ 0.060845] CPU0: Thermal monitoring enabled (TM1)
[ 0.060883] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
[ 0.060884] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[ 0.060888] process: using mwait in idle threads
[ 0.060891] Spectre V2 : User space: Vulnerable
[ 0.060892] Speculative Store Bypass: Vulnerable
[ 0.060895] SRBDS: Vulnerable
[ 0.060900] GDS: Vulnerable
[ 0.060905] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[ 0.060906] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[ 0.060907] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[ 0.060907] x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
[ 0.060908] x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
[ 0.060909] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
[ 0.060911] x86/fpu: xstate_offset[3]: 832, xstate_sizes[3]: 64
[ 0.060912] x86/fpu: xstate_offset[4]: 896, xstate_sizes[4]: 64
[ 0.060913] x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format.
[ 0.064813] Freeing SMP alternatives memory: 36K
[ 0.064813] pid_max: default: 32768 minimum: 301
[ 0.064813] LSM: initializing lsm=capability,landlock,apparmor,bpf
[ 0.064813] landlock: Up and running.
[ 0.064813] AppArmor: AppArmor initialized
[ 0.064813] LSM support for eBPF active
[ 0.064813] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[ 0.064813] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[ 0.064813] smpboot: CPU0: Intel(R) Core(TM) i7-7500U CPU @ 2.70GHz (family: 0x6, model: 0x8e, stepping: 0x9)
[ 0.064813] calling init_hw_perf_events+0x0/0x6d0 @ 1
[ 0.064813] Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
[ 0.064813] ... version: 4
[ 0.064813] ... bit width: 48
[ 0.064813] ... generic registers: 4
[ 0.064813] ... value mask: 0000ffffffffffff
[ 0.064813] ... max period: 00007fffffffffff
[ 0.064813] ... fixed-purpose events: 3
[ 0.064813] ... event mask: 000000070000000f
[ 0.064813] initcall init_hw_perf_events+0x0/0x6d0 returned 0 after 0 usecs
[ 0.064813] calling mc_debug_enable+0x0/0xc0 @ 1
[ 0.064813] initcall mc_debug_enable+0x0/0xc0 returned 0 after 0 usecs
[ 0.064813] calling do_init_real_mode+0x0/0x20 @ 1
[ 0.064813] initcall do_init_real_mode+0x0/0x20 returned 0 after 0 usecs
[ 0.064813] calling init_sigframe_size+0x0/0x40 @ 1
[ 0.064813] signal: max sigframe size: 1616
[ 0.064813] initcall init_sigframe_size+0x0/0x40 returned 0 after 0 usecs
[ 0.064813] calling trace_init_perf_perm_irq_work_exit+0x0/0x20 @ 1
[ 0.064813] initcall trace_init_perf_perm_irq_work_exit+0x0/0x20 returned 0 after 0 usecs
[ 0.064813] calling cache_ap_register+0x0/0x60 @ 1
[ 0.064813] initcall cache_ap_register+0x0/0x60 returned 0 after 0 usecs
[ 0.064813] calling bp_init_aperfmperf+0x0/0x330 @ 1
[ 0.064813] Estimated ratio of average max frequency by base frequency (times 1024): 1235
[ 0.064813] initcall bp_init_aperfmperf+0x0/0x330 returned 0 after 0 usecs
[ 0.064813] calling save_builtin_microcode+0x0/0xf0 @ 1
[ 0.064813] initcall save_builtin_microcode+0x0/0xf0 returned 0 after 0 usecs
[ 0.064813] calling save_microcode_in_initrd+0x0/0x100 @ 1
[ 0.064813] initcall save_microcode_in_initrd+0x0/0x100 returned 0 after 0 usecs
[ 0.064813] calling register_nmi_cpu_backtrace_handler+0x0/0x20 @ 1
[ 0.064813] initcall register_nmi_cpu_backtrace_handler+0x0/0x20 returned 0 after 0 usecs
[ 0.064813] calling kvm_setup_vsyscall_timeinfo+0x0/0x180 @ 1
[ 0.064813] initcall kvm_setup_vsyscall_timeinfo+0x0/0x180 returned 0 after 0 usecs
[ 0.064813] calling spawn_ksoftirqd+0x0/0x40 @ 1
[ 0.064813] initcall spawn_ksoftirqd+0x0/0x40 returned 0 after 0 usecs
[ 0.064813] calling init_signal_sysctls+0x0/0x30 @ 1
[ 0.064813] initcall init_signal_sysctls+0x0/0x30 returned 0 after 0 usecs
[ 0.064813] calling init_umh_sysctls+0x0/0x30 @ 1
[ 0.064813] initcall init_umh_sysctls+0x0/0x30 returned 0 after 0 usecs
[ 0.064813] calling migration_init+0x0/0x50 @ 1
[ 0.064813] initcall migration_init+0x0/0x50 returned 0 after 0 usecs
[ 0.064813] calling srcu_bootup_announce+0x0/0x80 @ 1
[ 0.064813] rcu: Hierarchical SRCU implementation.
[ 0.064813] rcu: Max phase no-delay instances is 1000.
[ 0.064813] initcall srcu_bootup_announce+0x0/0x80 returned 0 after 0 usecs
[ 0.064813] calling rcu_spawn_gp_kthread+0x0/0x230 @ 1
[ 0.064813] initcall rcu_spawn_gp_kthread+0x0/0x230 returned 0 after 0 usecs
[ 0.064813] calling check_cpu_stall_init+0x0/0x20 @ 1
[ 0.064813] initcall check_cpu_stall_init+0x0/0x20 returned 0 after 0 usecs
[ 0.064813] calling rcu_sysrq_init+0x0/0x30 @ 1
[ 0.064813] initcall rcu_sysrq_init+0x0/0x30 returned 0 after 0 usecs
[ 0.064813] calling trace_init_flags_sys_enter+0x0/0x20 @ 1
[ 0.064813] initcall trace_init_flags_sys_enter+0x0/0x20 returned 0 after 0 usecs
[ 0.064813] calling trace_init_flags_sys_exit+0x0/0x20 @ 1
[ 0.064813] initcall trace_init_flags_sys_exit+0x0/0x20 returned 0 after 0 usecs
[ 0.064813] calling tmigr_init+0x0/0x190 @ 1
[ 0.064813] Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level
[ 0.064813] initcall tmigr_init+0x0/0x190 returned 0 after 0 usecs
[ 0.064813] calling cpu_stop_init+0x0/0xa0 @ 1
[ 0.064813] initcall cpu_stop_init+0x0/0xa0 returned 0 after 0 usecs
[ 0.064813] calling init_kprobes+0x0/0x1b0 @ 1
[ 0.064813] initcall init_kprobes+0x0/0x1b0 returned 0 after 0 usecs
[ 0.064813] calling init_trace_printk+0x0/0x10 @ 1
[ 0.064813] initcall init_trace_printk+0x0/0x10 returned 0 after 0 usecs
[ 0.064813] calling event_trace_enable_again+0x0/0x50 @ 1
[ 0.064813] initcall event_trace_enable_again+0x0/0x50 returned 0 after 0 usecs
[ 0.064813] calling irq_work_init_threads+0x0/0x10 @ 1
[ 0.064813] initcall irq_work_init_threads+0x0/0x10 returned 0 after 0 usecs
[ 0.064813] calling static_call_init+0x0/0xa0 @ 1
[ 0.064813] initcall static_call_init+0x0/0xa0 returned 0 after 0 usecs
[ 0.064813] calling jump_label_init_module+0x0/0x20 @ 1
[ 0.064813] initcall jump_label_init_module+0x0/0x20 returned 0 after 0 usecs
[ 0.064813] calling init_zero_pfn+0x0/0x40 @ 1
[ 0.064813] initcall init_zero_pfn+0x0/0x40 returned 0 after 0 usecs
[ 0.064813] calling init_fs_inode_sysctls+0x0/0x30 @ 1
[ 0.064813] initcall init_fs_inode_sysctls+0x0/0x30 returned 0 after 0 usecs
[ 0.064813] calling init_fs_locks_sysctls+0x0/0x30 @ 1
[ 0.064813] initcall init_fs_locks_sysctls+0x0/0x30 returned 0 after 0 usecs
[ 0.064813] calling init_fs_sysctls+0x0/0x30 @ 1
[ 0.064813] initcall init_fs_sysctls+0x0/0x30 returned 0 after 0 usecs
[ 0.064813] calling init_security_keys_sysctls+0x0/0x30 @ 1
[ 0.064813] initcall init_security_keys_sysctls+0x0/0x30 returned 0 after 0 usecs
[ 0.064813] calling dynamic_debug_init+0x0/0x2f0 @ 1
[ 0.064813] initcall dynamic_debug_init+0x0/0x2f0 returned 0 after 0 usecs
[ 0.064813] calling unpopulated_init+0x0/0x50 @ 1
[ 0.064813] initcall unpopulated_init+0x0/0x50 returned -19 after 0 usecs
[ 0.064813] calling efi_memreserve_root_init+0x0/0x50 @ 1
[ 0.064813] initcall efi_memreserve_root_init+0x0/0x50 returned 0 after 0 usecs
[ 0.064813] calling efi_earlycon_remap_fb+0x0/0x70 @ 1
[ 0.064813] initcall efi_earlycon_remap_fb+0x0/0x70 returned 0 after 0 usecs
[ 0.064813] calling idle_inject_init+0x0/0x20 @ 1
[ 0.064813] initcall idle_inject_init+0x0/0x20 returned 0 after 0 usecs
[ 0.064813] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[ 0.064813] smp: Bringing up secondary CPUs ...
[ 0.064813] smpboot: x86: Booting SMP configuration:
[ 0.064813] .... node #0, CPUs: #1 #2 #3
[ 0.064813] smp: Brought up 1 node, 4 CPUs
[ 0.064813] smpboot: Total of 4 processors activated (23199.08 BogoMIPS)
[ 0.084868] node 0 deferred pages initialised in 20ms
[ 0.085708] Memory: 15896856K/16363068K available (14336K kernel code, 2506K rwdata, 9804K rodata, 2892K init, 6576K bss, 455548K reserved, 0K cma-reserved)
[ 0.085708] devtmpfs: initialized
[ 0.085708] x86/mm: Memory block size: 128MB
[ 0.085932] calling bpf_jit_charge_init+0x0/0x50 @ 1
[ 0.085942] initcall bpf_jit_charge_init+0x0/0x50 returned 0 after 0 usecs
[ 0.085944] calling ipc_ns_init+0x0/0x50 @ 1
[ 0.085948] initcall ipc_ns_init+0x0/0x50 returned 0 after 0 usecs
[ 0.085950] calling init_mmap_min_addr+0x0/0x30 @ 1
[ 0.085952] initcall init_mmap_min_addr+0x0/0x30 returned 0 after 0 usecs
[ 0.085955] calling pci_realloc_setup_params+0x0/0x70 @ 1
[ 0.085957] initcall pci_realloc_setup_params+0x0/0x70 returned 0 after 0 usecs
[ 0.085959] calling inet_frag_wq_init+0x0/0x50 @ 1
[ 0.085966] initcall inet_frag_wq_init+0x0/0x50 returned 0 after 0 usecs
[ 0.085966] calling xen_pvh_gnttab_setup+0x0/0x40 @ 1
[ 0.085966] initcall xen_pvh_gnttab_setup+0x0/0x40 returned -19 after 0 usecs
[ 0.085966] calling e820__register_nvs_regions+0x0/0x60 @ 1
[ 0.085966] ACPI: PM: Registering ACPI NVS region [mem 0x556ab000-0x556abfff] (4096 bytes)
[ 0.085966] ACPI: PM: Registering ACPI NVS region [mem 0x651c4000-0x6f871fff] (174776320 bytes)
[ 0.089299] initcall e820__register_nvs_regions+0x0/0x60 returned 0 after 4000 usecs
[ 0.089304] calling cpufreq_register_tsc_scaling+0x0/0x40 @ 1
[ 0.089307] initcall cpufreq_register_tsc_scaling+0x0/0x40 returned 0 after 0 usecs
[ 0.089309] calling reboot_init+0x0/0x50 @ 1
[ 0.089316] initcall reboot_init+0x0/0x50 returned 0 after 0 usecs
[ 0.089318] calling init_lapic_sysfs+0x0/0x30 @ 1
[ 0.089321] initcall init_lapic_sysfs+0x0/0x30 returned 0 after 0 usecs
[ 0.089323] calling alloc_frozen_cpus+0x0/0x30 @ 1
[ 0.089326] initcall alloc_frozen_cpus+0x0/0x30 returned 0 after 0 usecs
[ 0.089329] calling cpu_hotplug_pm_sync_init+0x0/0x20 @ 1
[ 0.089331] initcall cpu_hotplug_pm_sync_init+0x0/0x20 returned 0 after 0 usecs
[ 0.089334] calling wq_sysfs_init+0x0/0x20 @ 1
[ 0.089347] initcall wq_sysfs_init+0x0/0x20 returned 0 after 0 usecs
[ 0.089350] calling ksysfs_init+0x0/0xa0 @ 1
[ 0.089356] initcall ksysfs_init+0x0/0xa0 returned 0 after 0 usecs
[ 0.089358] calling schedutil_gov_init+0x0/0x20 @ 1
[ 0.089360] initcall schedutil_gov_init+0x0/0x20 returned 0 after 0 usecs
[ 0.089361] calling pm_init+0x0/0x80 @ 1
[ 0.089374] initcall pm_init+0x0/0x80 returned 0 after 0 usecs
[ 0.089375] calling pm_disk_init+0x0/0x20 @ 1
[ 0.089379] initcall pm_disk_init+0x0/0x20 returned 0 after 0 usecs
[ 0.089380] calling swsusp_header_init+0x0/0x50 @ 1
[ 0.089383] initcall swsusp_header_init+0x0/0x50 returned 0 after 0 usecs
[ 0.089385] calling rcu_set_runtime_mode+0x0/0x20 @ 1
[ 0.089387] initcall rcu_set_runtime_mode+0x0/0x20 returned 0 after 0 usecs
[ 0.089389] calling init_jiffies_clocksource+0x0/0x20 @ 1
[ 0.089391] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[ 0.089393] initcall init_jiffies_clocksource+0x0/0x20 returned 0 after 0 usecs
[ 0.089396] calling futex_init+0x0/0xe0 @ 1
[ 0.089402] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[ 0.089406] initcall futex_init+0x0/0xe0 returned 0 after 0 usecs
[ 0.089408] calling cgroup_wq_init+0x0/0x30 @ 1
[ 0.089413] initcall cgroup_wq_init+0x0/0x30 returned 0 after 0 usecs
[ 0.089415] calling cgroup1_wq_init+0x0/0x30 @ 1
[ 0.089418] initcall cgroup1_wq_init+0x0/0x30 returned 0 after 0 usecs
[ 0.089420] calling ftrace_mod_cmd_init+0x0/0x10 @ 1
[ 0.089430] initcall ftrace_mod_cmd_init+0x0/0x10 returned 0 after 0 usecs
[ 0.089432] calling init_graph_trace+0x0/0x70 @ 1
[ 0.089437] initcall init_graph_trace+0x0/0x70 returned 0 after 0 usecs
[ 0.089438] calling trace_events_eprobe_init_early+0x0/0x30 @ 1
[ 0.089440] initcall trace_events_eprobe_init_early+0x0/0x30 returned 0 after 0 usecs
[ 0.089442] calling trace_events_synth_init_early+0x0/0x30 @ 1
[ 0.089444] initcall trace_events_synth_init_early+0x0/0x30 returned 0 after 0 usecs
[ 0.089445] calling init_kprobe_trace_early+0x0/0x30 @ 1
[ 0.089447] initcall init_kprobe_trace_early+0x0/0x30 returned 0 after 0 usecs
[ 0.089449] calling init_fprobe_trace_early+0x0/0x30 @ 1
[ 0.089451] initcall init_fprobe_trace_early+0x0/0x30 returned 0 after 0 usecs
[ 0.089452] calling bpf_offload_init+0x0/0x40 @ 1
[ 0.089455] initcall bpf_offload_init+0x0/0x40 returned 0 after 0 usecs
[ 0.089457] calling memory_failure_init+0x0/0xd0 @ 1
[ 0.089462] initcall memory_failure_init+0x0/0xd0 returned 0 after 0 usecs
[ 0.089463] calling fsnotify_init+0x0/0x50 @ 1
[ 0.089476] initcall fsnotify_init+0x0/0x50 returned 0 after 0 usecs
[ 0.089478] calling filelock_init+0x0/0xd0 @ 1
[ 0.089485] initcall filelock_init+0x0/0xd0 returned 0 after 0 usecs
[ 0.089486] calling init_script_binfmt+0x0/0x20 @ 1
[ 0.089488] initcall init_script_binfmt+0x0/0x20 returned 0 after 0 usecs
[ 0.089490] calling init_elf_binfmt+0x0/0x20 @ 1
[ 0.089492] initcall init_elf_binfmt+0x0/0x20 returned 0 after 0 usecs
[ 0.089494] calling debugfs_init+0x0/0x80 @ 1
[ 0.089497] initcall debugfs_init+0x0/0x80 returned 0 after 0 usecs
[ 0.089499] calling tracefs_init+0x0/0x70 @ 1
[ 0.089503] initcall tracefs_init+0x0/0x70 returned 0 after 0 usecs
[ 0.089505] calling securityfs_init+0x0/0x80 @ 1
[ 0.089518] initcall securityfs_init+0x0/0x80 returned 0 after 0 usecs
[ 0.089521] calling pinctrl_init+0x0/0xc0 @ 1
[ 0.089523] pinctrl core: initialized pinctrl subsystem
[ 0.089530] initcall pinctrl_init+0x0/0xc0 returned 0 after 0 usecs
[ 0.089531] calling gpiolib_dev_init+0x0/0x140 @ 1
[ 0.089540] initcall gpiolib_dev_init+0x0/0x140 returned 0 after 0 usecs
[ 0.089541] calling virtio_init+0x0/0x30 @ 1
[ 0.089547] initcall virtio_init+0x0/0x30 returned 0 after 0 usecs
[ 0.089549] calling regulator_init+0x0/0x110 @ 1
[ 0.089570] initcall regulator_init+0x0/0x110 returned 0 after 0 usecs
[ 0.089572] calling iommu_init+0x0/0x30 @ 1
[ 0.089576] initcall iommu_init+0x0/0x30 returned 0 after 0 usecs
[ 0.089578] calling component_debug_init+0x0/0x30 @ 1
[ 0.089582] initcall component_debug_init+0x0/0x30 returned 0 after 0 usecs
[ 0.089585] calling opp_debug_init+0x0/0x30 @ 1
[ 0.089589] initcall opp_debug_init+0x0/0x30 returned 0 after 0 usecs
[ 0.089592] calling cpufreq_core_init+0x0/0x100 @ 1
[ 0.089600] initcall cpufreq_core_init+0x0/0x100 returned 0 after 0 usecs
[ 0.089603] calling cpufreq_gov_performance_init+0x0/0x20 @ 1
[ 0.089606] initcall cpufreq_gov_performance_init+0x0/0x20 returned 0 after 0 usecs
[ 0.089610] calling cpuidle_init+0x0/0x20 @ 1
[ 0.089616] initcall cpuidle_init+0x0/0x20 returned 0 after 0 usecs
[ 0.089619] calling unaccepted_memory_init_kdump+0x0/0x20 @ 1
[ 0.089622] initcall unaccepted_memory_init_kdump+0x0/0x20 returned 0 after 0 usecs
[ 0.089624] calling sock_init+0x0/0xa0 @ 1
[ 0.089567] probe of reg-dummy returned 0 after 0 usecs
[ 0.090033] initcall sock_init+0x0/0xa0 returned 0 after 0 usecs
[ 0.090036] calling net_inuse_init+0x0/0x30 @ 1
[ 0.090039] initcall net_inuse_init+0x0/0x30 returned 0 after 0 usecs
[ 0.090041] calling sock_struct_check+0x0/0x10 @ 1
[ 0.090042] initcall sock_struct_check+0x0/0x10 returned 0 after 0 usecs
[ 0.090044] calling net_defaults_init+0x0/0x50 @ 1
[ 0.090046] initcall net_defaults_init+0x0/0x50 returned 0 after 0 usecs
[ 0.090048] calling init_default_flow_dissectors+0x0/0x60 @ 1
[ 0.090050] initcall init_default_flow_dissectors+0x0/0x60 returned 0 after 0 usecs
[ 0.090052] calling netlink_proto_init+0x0/0x230 @ 1
[ 0.090063] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[ 0.090074] initcall netlink_proto_init+0x0/0x230 returned 0 after 0 usecs
[ 0.090076] calling genl_init+0x0/0x50 @ 1
[ 0.090080] initcall genl_init+0x0/0x50 returned 0 after 0 usecs
[ 0.090082] calling bsp_pm_check_init+0x0/0x20 @ 1
[ 0.090085] initcall bsp_pm_check_init+0x0/0x20 returned 0 after 0 usecs
[ 0.090086] calling __gnttab_init+0x0/0x30 @ 1
[ 0.090089] initcall __gnttab_init+0x0/0x30 returned -19 after 0 usecs
[ 0.090122] calling irq_sysfs_init+0x0/0xe0 @ 1
[ 0.090177] initcall irq_sysfs_init+0x0/0xe0 returned 0 after 0 usecs
[ 0.090179] calling dma_atomic_pool_init+0x0/0x150 @ 1
[ 0.090292] DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations
[ 0.090405] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 0.090533] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 0.090545] initcall dma_atomic_pool_init+0x0/0x150 returned 0 after 0 usecs
[ 0.090549] calling audit_init+0x0/0x180 @ 1
[ 0.090555] audit: initializing netlink subsys (disabled)
[ 0.090571] initcall audit_init+0x0/0x180 returned 0 after 0 usecs
[ 0.090571] audit: type=2000 audit(1723542872.028:1): state=initialized audit_enabled=0 res=1
[ 0.090571] calling release_early_probes+0x0/0x50 @ 1
[ 0.090571] initcall release_early_probes+0x0/0x50 returned 0 after 0 usecs
[ 0.090571] calling bdi_class_init+0x0/0x40 @ 1
[ 0.090571] initcall bdi_class_init+0x0/0x40 returned 0 after 0 usecs
[ 0.090571] calling mm_sysfs_init+0x0/0x30 @ 1
[ 0.090571] initcall mm_sysfs_init+0x0/0x30 returned 0 after 0 usecs
[ 0.090571] calling init_per_zone_wmark_min+0x0/0x30 @ 1
[ 0.090571] initcall init_per_zone_wmark_min+0x0/0x30 returned 0 after 0 usecs
[ 0.090571] calling mpi_init+0x0/0x80 @ 1
[ 0.090571] initcall mpi_init+0x0/0x80 returned 0 after 0 usecs
[ 0.090571] calling gpiolib_sysfs_init+0x0/0x30 @ 1
[ 0.090571] initcall gpiolib_sysfs_init+0x0/0x30 returned 0 after 0 usecs
[ 0.090571] calling acpi_gpio_setup_params+0x0/0xe0 @ 1
[ 0.090571] initcall acpi_gpio_setup_params+0x0/0xe0 returned 0 after 0 usecs
[ 0.090571] calling pcibus_class_init+0x0/0x20 @ 1
[ 0.090571] initcall pcibus_class_init+0x0/0x20 returned 0 after 0 usecs
[ 0.090571] calling pci_driver_init+0x0/0x30 @ 1
[ 0.090571] initcall pci_driver_init+0x0/0x30 returned 0 after 0 usecs
[ 0.090571] calling backlight_class_init+0x0/0x90 @ 1
[ 0.090571] initcall backlight_class_init+0x0/0x90 returned 0 after 0 usecs
[ 0.090571] calling xenbus_init+0x0/0x4b0 @ 1
[ 0.090571] initcall xenbus_init+0x0/0x4b0 returned -19 after 0 usecs
[ 0.090571] calling tty_class_init+0x0/0x20 @ 1
[ 0.090571] initcall tty_class_init+0x0/0x20 returned 0 after 0 usecs
[ 0.090571] calling vtconsole_class_init+0x0/0xc0 @ 1
[ 0.090571] initcall vtconsole_class_init+0x0/0xc0 returned 0 after 0 usecs
[ 0.090571] calling serdev_init+0x0/0x30 @ 1
[ 0.090571] initcall serdev_init+0x0/0x30 returned 0 after 0 usecs
[ 0.090571] calling iommu_dev_init+0x0/0x20 @ 1
[ 0.090571] initcall iommu_dev_init+0x0/0x20 returned 0 after 0 usecs
[ 0.090571] calling mipi_dsi_bus_init+0x0/0x20 @ 1
[ 0.090571] initcall mipi_dsi_bus_init+0x0/0x20 returned 0 after 0 usecs
[ 0.090571] calling devlink_class_init+0x0/0x50 @ 1
[ 0.090571] initcall devlink_class_init+0x0/0x50 returned 0 after 0 usecs
[ 0.090571] calling software_node_init+0x0/0x30 @ 1
[ 0.090571] initcall software_node_init+0x0/0x30 returned 0 after 0 usecs
[ 0.090571] calling wakeup_sources_debugfs_init+0x0/0x30 @ 1
[ 0.090571] initcall wakeup_sources_debugfs_init+0x0/0x30 returned 0 after 0 usecs
[ 0.090571] calling wakeup_sources_sysfs_init+0x0/0x30 @ 1
[ 0.090571] initcall wakeup_sources_sysfs_init+0x0/0x30 returned 0 after 0 usecs
[ 0.090571] calling regmap_initcall+0x0/0x20 @ 1
[ 0.090571] initcall regmap_initcall+0x0/0x20 returned 0 after 0 usecs
[ 0.090571] calling syscon_init+0x0/0x20 @ 1
[ 0.090571] initcall syscon_init+0x0/0x20 returned 0 after 0 usecs
[ 0.090571] calling spi_init+0x0/0xb0 @ 1
[ 0.090571] initcall spi_init+0x0/0xb0 returned 0 after 0 usecs
[ 0.090571] calling i2c_init+0x0/0xf0 @ 1
[ 0.090571] initcall i2c_init+0x0/0xf0 returned 0 after 0 usecs
[ 0.090571] calling thermal_init+0x0/0x180 @ 1
[ 0.090571] thermal_sys: Registered thermal governor 'fair_share'
[ 0.090571] thermal_sys: Registered thermal governor 'bang_bang'
[ 0.090571] thermal_sys: Registered thermal governor 'step_wise'
[ 0.090571] thermal_sys: Registered thermal governor 'user_space'
[ 0.090571] thermal_sys: Registered thermal governor 'power_allocator'
[ 0.090571] initcall thermal_init+0x0/0x180 returned 0 after 0 usecs
[ 0.090571] calling init_ladder+0x0/0x30 @ 1
[ 0.090571] cpuidle: using governor ladder
[ 0.090571] initcall init_ladder+0x0/0x30 returned 0 after 0 usecs
[ 0.090571] calling init_menu+0x0/0x20 @ 1
[ 0.090571] cpuidle: using governor menu
[ 0.090571] initcall init_menu+0x0/0x20 returned 0 after 0 usecs
[ 0.090571] calling init_haltpoll+0x0/0x30 @ 1
[ 0.090571] initcall init_haltpoll+0x0/0x30 returned 0 after 0 usecs
[ 0.090571] calling pcc_init+0x0/0xa0 @ 1
[ 0.090571] initcall pcc_init+0x0/0xa0 returned -19 after 0 usecs
[ 0.090571] calling amd_postcore_init+0x0/0x130 @ 1
[ 0.090571] initcall amd_postcore_init+0x0/0x130 returned 0 after 0 usecs
[ 0.090571] calling kobject_uevent_init+0x0/0x10 @ 1
[ 0.090571] initcall kobject_uevent_init+0x0/0x10 returned 0 after 0 usecs
[ 0.090571] calling report_snp_info+0x0/0xc0 @ 1
[ 0.090571] initcall report_snp_info+0x0/0xc0 returned 0 after 0 usecs
[ 0.090571] calling sev_sysfs_init+0x0/0x90 @ 1
[ 0.090571] initcall sev_sysfs_init+0x0/0x90 returned -19 after 0 usecs
[ 0.090571] calling bts_init+0x0/0xd0 @ 1
[ 0.090571] initcall bts_init+0x0/0xd0 returned 0 after 0 usecs
[ 0.090571] calling pt_init+0x0/0x3d0 @ 1
[ 0.090571] initcall pt_init+0x0/0x3d0 returned 0 after 0 usecs
[ 0.090571] calling boot_params_ksysfs_init+0x0/0x330 @ 1
[ 0.090571] initcall boot_params_ksysfs_init+0x0/0x330 returned 0 after 0 usecs
[ 0.090571] calling sbf_init+0x0/0x100 @ 1
[ 0.090571] Simple Boot Flag at 0x47 set to 0x80
[ 0.090571] initcall sbf_init+0x0/0x100 returned 0 after 0 usecs
[ 0.090571] calling arch_kdebugfs_init+0x0/0x30 @ 1
[ 0.090571] initcall arch_kdebugfs_init+0x0/0x30 returned 0 after 0 usecs
[ 0.090571] calling xfd_update_static_branch+0x0/0x30 @ 1
[ 0.090571] initcall xfd_update_static_branch+0x0/0x30 returned 0 after 0 usecs
[ 0.090571] calling mtrr_if_init+0x0/0x70 @ 1
[ 0.090571] initcall mtrr_if_init+0x0/0x70 returned 0 after 0 usecs
[ 0.090571] calling activate_jump_labels+0x0/0x40 @ 1
[ 0.090571] initcall activate_jump_labels+0x0/0x40 returned 0 after 0 usecs
[ 0.090571] calling init_s4_sigcheck+0x0/0x30 @ 1
[ 0.090571] initcall init_s4_sigcheck+0x0/0x30 returned 0 after 0 usecs
[ 0.090571] calling ffh_cstate_init+0x0/0x60 @ 1
[ 0.090571] initcall ffh_cstate_init+0x0/0x60 returned 0 after 0 usecs
[ 0.090571] calling kvm_alloc_cpumask+0x0/0xc0 @ 1
[ 0.090571] initcall kvm_alloc_cpumask+0x0/0xc0 returned 0 after 0 usecs
[ 0.090571] calling activate_jump_labels+0x0/0x40 @ 1
[ 0.090571] initcall activate_jump_labels+0x0/0x40 returned 0 after 0 usecs
[ 0.090571] calling gigantic_pages_init+0x0/0x30 @ 1
[ 0.090571] initcall gigantic_pages_init+0x0/0x30 returned 0 after 0 usecs
[ 0.090571] calling kcmp_cookies_init+0x0/0x50 @ 1
[ 0.090571] initcall kcmp_cookies_init+0x0/0x50 returned 0 after 0 usecs
[ 0.090571] calling cryptomgr_init+0x0/0x20 @ 1
[ 0.090571] initcall cryptomgr_init+0x0/0x20 returned 0 after 0 usecs
[ 0.090571] calling acpi_pci_init+0x0/0x60 @ 1
[ 0.090571] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[ 0.090571] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.090571] initcall acpi_pci_init+0x0/0x60 returned 0 after 0 usecs
[ 0.090571] calling dma_channel_table_init+0x0/0x140 @ 1
[ 0.090571] initcall dma_channel_table_init+0x0/0x140 returned 0 after 0 usecs
[ 0.090571] calling dma_bus_init+0x0/0x110 @ 1
[ 0.090571] initcall dma_bus_init+0x0/0x110 returned 0 after 0 usecs
[ 0.090571] calling register_xen_pci_notifier+0x0/0x40 @ 1
[ 0.090571] initcall register_xen_pci_notifier+0x0/0x40 returned 0 after 0 usecs
[ 0.090571] calling xen_pcpu_init+0x0/0xc0 @ 1
[ 0.090571] initcall xen_pcpu_init+0x0/0xc0 returned -19 after 0 usecs
[ 0.090571] calling serial_base_init+0x0/0x70 @ 1
[ 0.090571] initcall serial_base_init+0x0/0x70 returned 0 after 0 usecs
[ 0.090571] calling iommu_dma_init+0x0/0x30 @ 1
[ 0.090571] initcall iommu_dma_init+0x0/0x30 returned 0 after 0 usecs
[ 0.090571] calling dmi_id_init+0x0/0x3f0 @ 1
[ 0.090571] initcall dmi_id_init+0x0/0x3f0 returned 0 after 0 usecs
[ 0.090571] calling pci_arch_init+0x0/0x90 @ 1
[ 0.090571] PCI: ECAM [mem 0xe0000000-0xefffffff] (base 0xe0000000) for domain 0000 [bus 00-ff]
[ 0.090571] PCI: Using configuration type 1 for base access
[ 0.090571] initcall pci_arch_init+0x0/0x90 returned 0 after 0 usecs
[ 0.090571] calling init_vdso_image_64+0x0/0x20 @ 1
[ 0.090571] initcall init_vdso_image_64+0x0/0x20 returned 0 after 0 usecs
[ 0.090571] calling fixup_ht_bug+0x0/0x110 @ 1
[ 0.090571] initcall fixup_ht_bug+0x0/0x110 returned 0 after 0 usecs
[ 0.090571] calling mtrr_init_finalize+0x0/0x40 @ 1
[ 0.090571] initcall mtrr_init_finalize+0x0/0x40 returned 0 after 0 usecs
[ 0.090571] calling blake2s_mod_init+0x0/0x80 @ 1
[ 0.090571] initcall blake2s_mod_init+0x0/0x80 returned 0 after 0 usecs
[ 0.090571] calling uid_cache_init+0x0/0xc0 @ 1
[ 0.090571] initcall uid_cache_init+0x0/0xc0 returned 0 after 0 usecs
[ 0.090571] calling param_sysfs_init+0x0/0x50 @ 1
[ 0.090571] initcall param_sysfs_init+0x0/0x50 returned 0 after 0 usecs
[ 0.090571] calling user_namespace_sysctl_init+0x0/0xe0 @ 1
[ 0.090571] initcall user_namespace_sysctl_init+0x0/0xe0 returned 0 after 0 usecs
[ 0.090571] calling proc_schedstat_init+0x0/0x30 @ 1
[ 0.090571] initcall proc_schedstat_init+0x0/0x30 returned 0 after 0 usecs
[ 0.090571] calling pm_sysrq_init+0x0/0x20 @ 1
[ 0.090571] initcall pm_sysrq_init+0x0/0x20 returned 0 after 0 usecs
[ 0.090571] calling create_proc_profile+0x0/0x50 @ 1
[ 0.090571] initcall create_proc_profile+0x0/0x50 returned 0 after 0 usecs
[ 0.090571] calling crash_save_vmcoreinfo_init+0x0/0x710 @ 1
[ 0.090571] initcall crash_save_vmcoreinfo_init+0x0/0x710 returned 0 after 0 usecs
[ 0.090571] calling crash_notes_memory_init+0x0/0x60 @ 1
[ 0.090571] initcall crash_notes_memory_init+0x0/0x60 returned 0 after 0 usecs
[ 0.090571] calling crash_hotplug_init+0x0/0x40 @ 1
[ 0.090571] initcall crash_hotplug_init+0x0/0x40 returned 66 after 0 usecs
[ 0.090571] calling cgroup_sysfs_init+0x0/0x20 @ 1
[ 0.090571] initcall cgroup_sysfs_init+0x0/0x20 returned 0 after 0 usecs
[ 0.090571] calling user_namespaces_init+0x0/0x40 @ 1
[ 0.090571] initcall user_namespaces_init+0x0/0x40 returned 0 after 0 usecs
[ 0.090571] calling init_optprobes+0x0/0x30 @ 1
[ 0.090571] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[ 0.090571] initcall init_optprobes+0x0/0x30 returned 0 after 0 usecs
[ 0.090571] calling hung_task_init+0x0/0x80 @ 1
[ 0.090571] initcall hung_task_init+0x0/0x80 returned 0 after 0 usecs
[ 0.090571] calling ftrace_check_for_weak_functions+0x0/0x70 @ 1
[ 0.090571] initcall ftrace_check_for_weak_functions+0x0/0x70 returned 0 after 0 usecs
[ 0.090571] calling trace_eval_init+0x0/0xb0 @ 1
[ 0.090571] initcall trace_eval_init+0x0/0xb0 returned 0 after 0 usecs
[ 0.090571] calling send_signal_irq_work_init+0x0/0x70 @ 1
[ 0.090571] initcall send_signal_irq_work_init+0x0/0x70 returned 0 after 0 usecs
[ 0.090571] calling dev_map_init+0x0/0x20 @ 1
[ 0.090571] initcall dev_map_init+0x0/0x20 returned 0 after 0 usecs
[ 0.090571] calling netns_bpf_init+0x0/0x20 @ 1
[ 0.090571] initcall netns_bpf_init+0x0/0x20 returned 0 after 0 usecs
[ 0.090571] calling btf_vmlinux_init+0x0/0x60 @ 1
[ 0.090571] initcall btf_vmlinux_init+0x0/0x60 returned 0 after 0 usecs
[ 0.090571] calling oom_init+0x0/0x60 @ 1
[ 0.090571] initcall oom_init+0x0/0x60 returned 0 after 0 usecs
[ 0.090571] calling init_user_buckets+0x0/0x30 @ 1
[ 0.090571] initcall init_user_buckets+0x0/0x30 returned 0 after 0 usecs
[ 0.090571] calling default_bdi_init+0x0/0x30 @ 1
[ 0.090571] initcall default_bdi_init+0x0/0x30 returned 0 after 0 usecs
[ 0.090571] calling cgwb_init+0x0/0x30 @ 1
[ 0.090571] initcall cgwb_init+0x0/0x30 returned 0 after 0 usecs
[ 0.090571] calling percpu_enable_async+0x0/0x20 @ 1
[ 0.090571] initcall percpu_enable_async+0x0/0x20 returned 0 after 0 usecs
[ 0.090571] calling kcompactd_init+0x0/0xb0 @ 1
[ 0.090571] initcall kcompactd_init+0x0/0xb0 returned 0 after 0 usecs
[ 0.090571] calling init_user_reserve+0x0/0x40 @ 1
[ 0.090571] initcall init_user_reserve+0x0/0x40 returned 0 after 0 usecs
[ 0.090571] calling init_admin_reserve+0x0/0x40 @ 1
[ 0.090571] initcall init_admin_reserve+0x0/0x40 returned 0 after 0 usecs
[ 0.090571] calling init_reserve_notifier+0x0/0x30 @ 1
[ 0.090571] initcall init_reserve_notifier+0x0/0x30 returned 0 after 0 usecs
[ 0.090571] calling swap_init_sysfs+0x0/0x70 @ 1
[ 0.090571] initcall swap_init_sysfs+0x0/0x70 returned 0 after 0 usecs
[ 0.090571] calling swapfile_init+0x0/0xf0 @ 1
[ 0.090571] initcall swapfile_init+0x0/0xf0 returned 0 after 0 usecs
[ 0.090571] calling hugetlb_init+0x0/0x650 @ 1
[ 0.090571] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[ 0.090571] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[ 0.090571] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.090571] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[ 0.090571] initcall hugetlb_init+0x0/0x650 returned 0 after 0 usecs
[ 0.090571] calling ksm_init+0x0/0x1b0 @ 1
[ 0.090571] initcall ksm_init+0x0/0x1b0 returned 0 after 0 usecs
[ 0.090571] calling memory_tier_init+0x0/0xf0 @ 1
[ 0.090571] initcall memory_tier_init+0x0/0xf0 returned 0 after 0 usecs
[ 0.090571] calling numa_init_sysfs+0x0/0x70 @ 1
[ 0.090571] initcall numa_init_sysfs+0x0/0x70 returned 0 after 0 usecs
[ 0.090571] calling hugepage_init+0x0/0x350 @ 1
[ 0.090571] initcall hugepage_init+0x0/0x350 returned 0 after 0 usecs
[ 0.090571] calling mem_cgroup_init+0x0/0xa0 @ 1
[ 0.090571] initcall mem_cgroup_init+0x0/0xa0 returned 0 after 0 usecs
[ 0.090571] calling mem_cgroup_swap_init+0x0/0x50 @ 1
[ 0.090571] initcall mem_cgroup_swap_init+0x0/0x50 returned 0 after 0 usecs
[ 0.090571] calling init_msg_buckets+0x0/0x40 @ 1
[ 0.090571] initcall init_msg_buckets+0x0/0x40 returned 0 after 0 usecs
[ 0.090571] calling dh_init+0x0/0x50 @ 1
[ 0.090571] initcall dh_init+0x0/0x50 returned 0 after 0 usecs
[ 0.090571] calling rsa_init+0x0/0x50 @ 1
[ 0.090571] initcall rsa_init+0x0/0x50 returned 0 after 0 usecs
[ 0.090571] calling hmac_module_init+0x0/0x20 @ 1
[ 0.090571] initcall hmac_module_init+0x0/0x20 returned 0 after 0 usecs
[ 0.090571] calling md5_mod_init+0x0/0x20 @ 1
[ 0.090571] initcall md5_mod_init+0x0/0x20 returned 0 after 0 usecs
[ 0.090571] calling sha1_generic_mod_init+0x0/0x20 @ 1
[ 0.090571] initcall sha1_generic_mod_init+0x0/0x20 returned 0 after 0 usecs
[ 0.090571] calling sha256_generic_mod_init+0x0/0x20 @ 1
[ 0.090571] initcall sha256_generic_mod_init+0x0/0x20 returned 0 after 0 usecs
[ 0.090571] calling crypto_ecb_module_init+0x0/0x20 @ 1
[ 0.090571] initcall crypto_ecb_module_init+0x0/0x20 returned 0 after 0 usecs
[ 0.090571] calling crypto_cbc_module_init+0x0/0x20 @ 1
[ 0.090571] initcall crypto_cbc_module_init+0x0/0x20 returned 0 after 0 usecs
[ 0.090571] calling aes_init+0x0/0x20 @ 1
[ 0.090571] initcall aes_init+0x0/0x20 returned 0 after 0 usecs
[ 0.090571] calling crc32c_mod_init+0x0/0x20 @ 1
[ 0.090571] initcall crc32c_mod_init+0x0/0x20 returned 0 after 0 usecs
[ 0.090571] calling crct10dif_mod_init+0x0/0x20 @ 1
[ 0.090571] initcall crct10dif_mod_init+0x0/0x20 returned 0 after 0 usecs
[ 0.090571] calling lzo_mod_init+0x0/0x50 @ 1
[ 0.090571] initcall lzo_mod_init+0x0/0x50 returned 0 after 0 usecs
[ 0.090571] calling lzorle_mod_init+0x0/0x50 @ 1
[ 0.090571] initcall lzorle_mod_init+0x0/0x50 returned 0 after 0 usecs
[ 0.090571] calling init_bio+0x0/0xb0 @ 1
[ 0.090571] initcall init_bio+0x0/0xb0 returned 0 after 0 usecs
[ 0.090571] calling blk_ioc_init+0x0/0x30 @ 1
[ 0.090571] initcall blk_ioc_init+0x0/0x30 returned 0 after 0 usecs
[ 0.090571] calling blk_mq_init+0x0/0x120 @ 1
[ 0.090571] initcall blk_mq_init+0x0/0x120 returned 0 after 0 usecs
[ 0.090571] calling genhd_device_init+0x0/0x50 @ 1
[ 0.090571] initcall genhd_device_init+0x0/0x50 returned 0 after 0 usecs
[ 0.090571] calling io_wq_init+0x0/0x40 @ 1
[ 0.090571] initcall io_wq_init+0x0/0x40 returned 0 after 0 usecs
[ 0.090571] calling sg_pool_init+0x0/0xe0 @ 1
[ 0.090571] initcall sg_pool_init+0x0/0xe0 returned 0 after 0 usecs
[ 0.090571] calling irq_poll_setup+0x0/0x80 @ 1
[ 0.090571] initcall irq_poll_setup+0x0/0x80 returned 0 after 0 usecs
[ 0.090571] calling byt_gpio_init+0x0/0x20 @ 1
[ 0.090571] initcall byt_gpio_init+0x0/0x20 returned 0 after 0 usecs
[ 0.090571] calling chv_pinctrl_init+0x0/0x20 @ 1
[ 0.090571] initcall chv_pinctrl_init+0x0/0x20 returned 0 after 0 usecs
[ 0.090571] calling bxt_pinctrl_init+0x0/0x20 @ 1
[ 0.090571] initcall bxt_pinctrl_init+0x0/0x20 returned 0 after 0 usecs
[ 0.090571] calling cdf_pinctrl_init+0x0/0x20 @ 1
[ 0.090571] initcall cdf_pinctrl_init+0x0/0x20 returned 0 after 0 usecs
[ 0.090571] calling dnv_pinctrl_init+0x0/0x20 @ 1
[ 0.090571] initcall dnv_pinctrl_init+0x0/0x20 returned 0 after 0 usecs
[ 0.090571] calling glk_pinctrl_init+0x0/0x20 @ 1
[ 0.090571] initcall glk_pinctrl_init+0x0/0x20 returned 0 after 0 usecs
[ 0.090571] calling spt_pinctrl_init+0x0/0x20 @ 1
[ 0.090571] initcall spt_pinctrl_init+0x0/0x20 returned 0 after 0 usecs
[ 0.090571] calling gpiolib_debugfs_init+0x0/0x30 @ 1
[ 0.090571] initcall gpiolib_debugfs_init+0x0/0x30 returned 0 after 0 usecs
[ 0.090571] calling pwm_init+0x0/0x50 @ 1
[ 0.090571] initcall pwm_init+0x0/0x50 returned 0 after 0 usecs
[ 0.090571] calling pci_slot_init+0x0/0x50 @ 1
[ 0.090571] initcall pci_slot_init+0x0/0x50 returned 0 after 0 usecs
[ 0.090571] calling fbmem_init+0x0/0x80 @ 1
[ 0.090571] initcall fbmem_init+0x0/0x80 returned 0 after 0 usecs
[ 0.090571] calling acpi_init+0x0/0x590 @ 1
[ 0.090571] ACPI: Added _OSI(Module Device)
[ 0.090571] ACPI: Added _OSI(Processor Device)
[ 0.090571] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.090571] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.125711] ACPI: 11 ACPI AML tables successfully acquired and loaded
[ 0.129984] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[ 0.137563] ACPI: Dynamic OEM Table Load:
[ 0.137570] ACPI: SSDT 0xFFFF9D83811A7400 0003FF (v02 PmRef Cpu0Cst 00003001 INTL 20160422)
[ 0.138466] ACPI: Dynamic OEM Table Load:
[ 0.138471] ACPI: SSDT 0xFFFF9D83811BC800 0006F6 (v02 PmRef Cpu0Ist 00003000 INTL 20160422)
[ 0.138473] ACPI: Dynamic OEM Table Load:
[ 0.138473] ACPI: SSDT 0xFFFF9D83811B8000 00065C (v02 PmRef ApIst 00003000 INTL 20160422)
[ 0.139037] ACPI: Dynamic OEM Table Load:
[ 0.139041] ACPI: SSDT 0xFFFF9D8381714400 00018A (v02 PmRef ApCst 00003000 INTL 20160422)
[ 0.141619] ACPI: EC: EC started
[ 0.141620] ACPI: EC: interrupt blocked
[ 0.147337] ACPI: EC: EC_CMD/EC_SC=0x934, EC_DATA=0x930
[ 0.147339] ACPI: \_SB_.PCI0.LPCB.ECDV: Boot DSDT EC used to handle transactions
[ 0.147341] ACPI: Interpreter enabled
[ 0.147375] ACPI: PM: (supports S0 S3 S4 S5)
[ 0.147376] ACPI: Using IOAPIC for interrupt routing
[ 0.147410] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.147411] PCI: Using E820 reservations for host bridge windows
[ 0.147948] ACPI: Enabled 8 GPEs in block 00 to 7F
[ 0.152836] ACPI: \_SB_.PCI0.RP09.PXSX.WRST: New power resource
[ 0.153109] ACPI: \_SB_.PCI0.RP10.PXSX.WRST: New power resource
[ 0.153373] ACPI: \_SB_.PCI0.RP11.PXSX.WRST: New power resource
[ 0.153638] ACPI: \_SB_.PCI0.RP12.PXSX.WRST: New power resource
[ 0.153899] ACPI: \_SB_.PCI0.RP13.PXSX.WRST: New power resource
[ 0.154162] ACPI: \_SB_.PCI0.RP01.PXSX.WRST: New power resource
[ 0.154795] ACPI: \_SB_.PCI0.RP02.PXSX.WRST: New power resource
[ 0.155058] ACPI: \_SB_.PCI0.RP03.PXSX.WRST: New power resource
[ 0.155325] ACPI: \_SB_.PCI0.RP04.PXSX.WRST: New power resource
[ 0.155591] ACPI: \_SB_.PCI0.RP05.PXSX.WRST: New power resource
[ 0.155853] ACPI: \_SB_.PCI0.RP06.PXSX.WRST: New power resource
[ 0.156115] ACPI: \_SB_.PCI0.RP07.PXSX.WRST: New power resource
[ 0.156379] ACPI: \_SB_.PCI0.RP08.PXSX.WRST: New power resource
[ 0.156646] ACPI: \_SB_.PCI0.RP17.PXSX.WRST: New power resource
[ 0.156923] ACPI: \_SB_.PCI0.RP18.PXSX.WRST: New power resource
[ 0.157189] ACPI: \_SB_.PCI0.RP19.PXSX.WRST: New power resource
[ 0.157454] ACPI: \_SB_.PCI0.RP20.PXSX.WRST: New power resource
[ 0.160816] ACPI: \_SB_.PCI0.RP14.PXSX.WRST: New power resource
[ 0.160816] ACPI: \_SB_.PCI0.RP15.PXSX.WRST: New power resource
[ 0.160816] ACPI: \_SB_.PCI0.RP16.PXSX.WRST: New power resource
[ 0.178028] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
[ 0.178035] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[ 0.178195] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug SHPCHotplug PME]
[ 0.178489] acpi PNP0A08:00: _OSC: OS now controls [PCIeCapability LTR]
[ 0.178491] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[ 0.179249] PCI host bridge to bus 0000:00
[ 0.179252] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 0.179254] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.179256] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000dffff window]
[ 0.179257] pci_bus 0000:00: root bus resource [mem 0x7c800000-0xdfffffff window]
[ 0.179258] pci_bus 0000:00: root bus resource [mem 0xfd000000-0xfe7fffff window]
[ 0.179260] pci_bus 0000:00: root bus resource [bus 00-fe]
[ 0.179273] pci 0000:00:00.0: calling quirk_mmio_always_on+0x0/0x20 @ 1
[ 0.179279] pci 0000:00:00.0: quirk_mmio_always_on+0x0/0x20 took 0 usecs
[ 0.179283] pci 0000:00:00.0: [8086:5904] type 00 class 0x060000 conventional PCI endpoint
[ 0.179302] pci 0000:00:00.0: calling quirk_igfx_skip_te_disable+0x0/0xa0 @ 1
[ 0.179306] pci 0000:00:00.0: quirk_igfx_skip_te_disable+0x0/0xa0 took 0 usecs
[ 0.179355] pci 0000:00:02.0: [8086:5916] type 00 class 0x030000 PCIe Root Complex Integrated Endpoint
[ 0.179362] pci 0000:00:02.0: BAR 0 [mem 0xdb000000-0xdbffffff 64bit]
[ 0.179366] pci 0000:00:02.0: BAR 2 [mem 0x90000000-0x9fffffff 64bit pref]
[ 0.179370] pci 0000:00:02.0: BAR 4 [io 0xf000-0xf03f]
[ 0.179381] pci 0000:00:02.0: calling screen_info_fixup_lfb+0x0/0x170 @ 1
[ 0.179385] pci 0000:00:02.0: screen_info_fixup_lfb+0x0/0x170 took 0 usecs
[ 0.179388] pci 0000:00:02.0: calling quirk_igfx_skip_te_disable+0x0/0xa0 @ 1
[ 0.179390] pci 0000:00:02.0: quirk_igfx_skip_te_disable+0x0/0xa0 took 0 usecs
[ 0.179392] pci 0000:00:02.0: calling pci_fixup_video+0x0/0x120 @ 1
[ 0.179397] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[ 0.179398] pci 0000:00:02.0: pci_fixup_video+0x0/0x120 took 0 usecs
[ 0.179528] pci 0000:00:04.0: [8086:1903] type 00 class 0x118000 conventional PCI endpoint
[ 0.179536] pci 0000:00:04.0: BAR 0 [mem 0xdc320000-0xdc327fff 64bit]
[ 0.179551] pci 0000:00:04.0: calling quirk_igfx_skip_te_disable+0x0/0xa0 @ 1
[ 0.179554] pci 0000:00:04.0: quirk_igfx_skip_te_disable+0x0/0xa0 took 0 usecs
[ 0.179790] pci 0000:00:14.0: [8086:9d2f] type 00 class 0x0c0330 conventional PCI endpoint
[ 0.179807] pci 0000:00:14.0: BAR 0 [mem 0xdc310000-0xdc31ffff 64bit]
[ 0.179843] pci 0000:00:14.0: calling quirk_igfx_skip_te_disable+0x0/0xa0 @ 1
[ 0.179845] pci 0000:00:14.0: quirk_igfx_skip_te_disable+0x0/0xa0 took 0 usecs
[ 0.179870] pci 0000:00:14.0: PME# supported from D3hot D3cold
[ 0.180331] pci 0000:00:14.2: [8086:9d31] type 00 class 0x118000 conventional PCI endpoint
[ 0.180346] pci 0000:00:14.2: BAR 0 [mem 0xdc334000-0xdc334fff 64bit]
[ 0.180379] pci 0000:00:14.2: calling quirk_igfx_skip_te_disable+0x0/0xa0 @ 1
[ 0.180381] pci 0000:00:14.2: quirk_igfx_skip_te_disable+0x0/0xa0 took 0 usecs
[ 0.180488] pci 0000:00:15.0: [8086:9d60] type 00 class 0x118000 conventional PCI endpoint
[ 0.180517] pci 0000:00:15.0: BAR 0 [mem 0xdc333000-0xdc333fff 64bit]
[ 0.180564] pci 0000:00:15.0: calling quirk_igfx_skip_te_disable+0x0/0xa0 @ 1
[ 0.180567] pci 0000:00:15.0: quirk_igfx_skip_te_disable+0x0/0xa0 took 0 usecs
[ 0.180858] pci 0000:00:15.1: [8086:9d61] type 00 class 0x118000 conventional PCI endpoint
[ 0.180887] pci 0000:00:15.1: BAR 0 [mem 0xdc332000-0xdc332fff 64bit]
[ 0.180933] pci 0000:00:15.1: calling quirk_igfx_skip_te_disable+0x0/0xa0 @ 1
[ 0.180936] pci 0000:00:15.1: quirk_igfx_skip_te_disable+0x0/0xa0 took 0 usecs
[ 0.181194] pci 0000:00:16.0: [8086:9d3a] type 00 class 0x078000 conventional PCI endpoint
[ 0.181207] pci 0000:00:16.0: BAR 0 [mem 0xdc331000-0xdc331fff 64bit]
[ 0.181232] pci 0000:00:16.0: calling quirk_igfx_skip_te_disable+0x0/0xa0 @ 1
[ 0.181234] pci 0000:00:16.0: quirk_igfx_skip_te_disable+0x0/0xa0 took 0 usecs
[ 0.181255] pci 0000:00:16.0: PME# supported from D3hot
[ 0.181556] pci 0000:00:1c.0: calling quirk_cmd_compl+0x0/0x70 @ 1
[ 0.181561] pci 0000:00:1c.0: quirk_cmd_compl+0x0/0x70 took 0 usecs
[ 0.181563] pci 0000:00:1c.0: calling quirk_no_aersid+0x0/0x10 @ 1
[ 0.181565] pci 0000:00:1c.0: quirk_no_aersid+0x0/0x10 took 0 usecs
[ 0.181567] pci 0000:00:1c.0: [8086:9d10] type 01 class 0x060400 PCIe Root Port
[ 0.181585] pci 0000:00:1c.0: PCI bridge to [bus 01-39]
[ 0.181590] pci 0000:00:1c.0: bridge window [mem 0xc4000000-0xda0fffff]
[ 0.181596] pci 0000:00:1c.0: bridge window [mem 0xa0000000-0xc1ffffff 64bit pref]
[ 0.181614] pci 0000:00:1c.0: calling quirk_igfx_skip_te_disable+0x0/0xa0 @ 1
[ 0.181616] pci 0000:00:1c.0: quirk_igfx_skip_te_disable+0x0/0xa0 took 0 usecs
[ 0.181618] pci 0000:00:1c.0: calling pci_fixup_transparent_bridge+0x0/0x20 @ 1
[ 0.181620] pci 0000:00:1c.0: pci_fixup_transparent_bridge+0x0/0x20 took 0 usecs
[ 0.181648] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.182045] pci 0000:00:1c.4: calling quirk_cmd_compl+0x0/0x70 @ 1
[ 0.182050] pci 0000:00:1c.4: quirk_cmd_compl+0x0/0x70 took 0 usecs
[ 0.182052] pci 0000:00:1c.4: calling quirk_no_aersid+0x0/0x10 @ 1
[ 0.182054] pci 0000:00:1c.4: quirk_no_aersid+0x0/0x10 took 0 usecs
[ 0.182056] pci 0000:00:1c.4: [8086:9d14] type 01 class 0x060400 PCIe Root Port
[ 0.182075] pci 0000:00:1c.4: PCI bridge to [bus 3a]
[ 0.182079] pci 0000:00:1c.4: bridge window [mem 0xdc000000-0xdc1fffff]
[ 0.182106] pci 0000:00:1c.4: calling quirk_igfx_skip_te_disable+0x0/0xa0 @ 1
[ 0.182108] pci 0000:00:1c.4: quirk_igfx_skip_te_disable+0x0/0xa0 took 0 usecs
[ 0.182110] pci 0000:00:1c.4: calling pci_fixup_transparent_bridge+0x0/0x20 @ 1
[ 0.182112] pci 0000:00:1c.4: pci_fixup_transparent_bridge+0x0/0x20 took 0 usecs
[ 0.182147] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[ 0.182547] pci 0000:00:1d.0: calling quirk_cmd_compl+0x0/0x70 @ 1
[ 0.182551] pci 0000:00:1d.0: quirk_cmd_compl+0x0/0x70 took 0 usecs
[ 0.182554] pci 0000:00:1d.0: calling quirk_no_aersid+0x0/0x10 @ 1
[ 0.182556] pci 0000:00:1d.0: quirk_no_aersid+0x0/0x10 took 0 usecs
[ 0.182557] pci 0000:00:1d.0: [8086:9d18] type 01 class 0x060400 PCIe Root Port
[ 0.182574] pci 0000:00:1d.0: PCI bridge to [bus 3b]
[ 0.182578] pci 0000:00:1d.0: bridge window [mem 0xdc200000-0xdc2fffff]
[ 0.182602] pci 0000:00:1d.0: calling quirk_igfx_skip_te_disable+0x0/0xa0 @ 1
[ 0.182604] pci 0000:00:1d.0: quirk_igfx_skip_te_disable+0x0/0xa0 took 0 usecs
[ 0.182606] pci 0000:00:1d.0: calling pci_fixup_transparent_bridge+0x0/0x20 @ 1
[ 0.182608] pci 0000:00:1d.0: pci_fixup_transparent_bridge+0x0/0x20 took 0 usecs
[ 0.182635] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[ 0.183050] pci 0000:00:1f.0: [8086:9d58] type 00 class 0x060100 conventional PCI endpoint
[ 0.183143] pci 0000:00:1f.0: calling quirk_igfx_skip_te_disable+0x0/0xa0 @ 1
[ 0.183146] pci 0000:00:1f.0: quirk_igfx_skip_te_disable+0x0/0xa0 took 0 usecs
[ 0.183334] pci 0000:00:1f.2: [8086:9d21] type 00 class 0x058000 conventional PCI endpoint
[ 0.183346] pci 0000:00:1f.2: BAR 0 [mem 0xdc32c000-0xdc32ffff]
[ 0.183380] pci 0000:00:1f.2: calling quirk_igfx_skip_te_disable+0x0/0xa0 @ 1
[ 0.183383] pci 0000:00:1f.2: quirk_igfx_skip_te_disable+0x0/0xa0 took 0 usecs
[ 0.183555] pci 0000:00:1f.3: [8086:9d71] type 00 class 0x040380 conventional PCI endpoint
[ 0.183573] pci 0000:00:1f.3: BAR 0 [mem 0xdc328000-0xdc32bfff 64bit]
[ 0.183597] pci 0000:00:1f.3: BAR 4 [mem 0xdc300000-0xdc30ffff 64bit]
[ 0.183609] pci 0000:00:1f.3: calling quirk_igfx_skip_te_disable+0x0/0xa0 @ 1
[ 0.183612] pci 0000:00:1f.3: quirk_igfx_skip_te_disable+0x0/0xa0 took 0 usecs
[ 0.183642] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[ 0.184199] pci 0000:00:1f.4: [8086:9d23] type 00 class 0x0c0500 conventional PCI endpoint
[ 0.184257] pci 0000:00:1f.4: BAR 0 [mem 0xdc330000-0xdc3300ff 64bit]
[ 0.184328] pci 0000:00:1f.4: BAR 4 [io 0xf040-0xf05f]
[ 0.184386] pci 0000:00:1f.4: calling quirk_igfx_skip_te_disable+0x0/0xa0 @ 1
[ 0.184389] pci 0000:00:1f.4: quirk_igfx_skip_te_disable+0x0/0xa0 took 0 usecs
[ 0.184641] pci 0000:00:1c.0: PCI bridge to [bus 01-39]
[ 0.185033] pci 0000:3a:00.0: [168c:003e] type 00 class 0x028000 PCIe Endpoint
[ 0.185252] pci 0000:3a:00.0: BAR 0 [mem 0xdc000000-0xdc1fffff 64bit]
[ 0.185804] pci 0000:3a:00.0: calling quirk_no_bus_reset+0x0/0x20 @ 1
[ 0.185807] pci 0000:3a:00.0: quirk_no_bus_reset+0x0/0x20 took 0 usecs
[ 0.186508] pci 0000:3a:00.0: PME# supported from D0 D3hot D3cold
[ 0.188233] pci 0000:00:1c.4: PCI bridge to [bus 3a]
[ 0.188315] pci 0000:3b:00.0: [1c5c:1284] type 00 class 0x010802 PCIe Endpoint
[ 0.188333] pci 0000:3b:00.0: BAR 0 [mem 0xdc200000-0xdc203fff 64bit]
[ 0.188446] pci 0000:3b:00.0: PME# supported from D0 D1 D3hot
[ 0.188778] pci 0000:00:1d.0: PCI bridge to [bus 3b]
[ 0.192843] probe of INT344B:00 returned 0 after 0 usecs
[ 0.193432] ACPI: PCI: Interrupt link LNKA configured for IRQ 11
[ 0.193478] ACPI: PCI: Interrupt link LNKB configured for IRQ 10
[ 0.193522] ACPI: PCI: Interrupt link LNKC configured for IRQ 11
[ 0.193566] ACPI: PCI: Interrupt link LNKD configured for IRQ 11
[ 0.193609] ACPI: PCI: Interrupt link LNKE configured for IRQ 11
[ 0.193653] ACPI: PCI: Interrupt link LNKF configured for IRQ 11
[ 0.193697] ACPI: PCI: Interrupt link LNKG configured for IRQ 11
[ 0.193741] ACPI: PCI: Interrupt link LNKH configured for IRQ 11
[ 0.201423] ACPI: EC: interrupt unblocked
[ 0.201425] ACPI: EC: event unblocked
[ 0.201430] ACPI: EC: EC_CMD/EC_SC=0x934, EC_DATA=0x930
[ 0.201431] ACPI: EC: GPE=0x14
[ 0.201432] ACPI: \_SB_.PCI0.LPCB.ECDV: Boot DSDT EC initialization complete
[ 0.201434] ACPI: \_SB_.PCI0.LPCB.ECDV: EC: Used to handle transactions and events
[ 0.201438] probe of PNP0C09:00 returned 0 after 0 usecs
[ 0.201471] initcall acpi_init+0x0/0x590 returned 0 after 112000 usecs
[ 0.201476] calling hmat_init+0x0/0x410 @ 1
[ 0.201479] initcall hmat_init+0x0/0x410 returned 0 after 0 usecs
[ 0.201482] calling pnp_init+0x0/0x20 @ 1
[ 0.201493] initcall pnp_init+0x0/0x20 returned 0 after 0 usecs
[ 0.201495] calling balloon_init+0x0/0x220 @ 1
[ 0.201497] initcall balloon_init+0x0/0x220 returned -19 after 0 usecs
[ 0.201498] calling xen_setup_shutdown_event+0x0/0x40 @ 1
[ 0.201501] initcall xen_setup_shutdown_event+0x0/0x40 returned -19 after 0 usecs
[ 0.201504] calling xenbus_probe_backend_init+0x0/0x90 @ 1
[ 0.201509] initcall xenbus_probe_backend_init+0x0/0x90 returned 0 after 0 usecs
[ 0.201510] calling xenbus_probe_frontend_init+0x0/0x50 @ 1
[ 0.201515] initcall xenbus_probe_frontend_init+0x0/0x50 returned 0 after 0 usecs
[ 0.201516] calling xen_acpi_pad_init+0x0/0x50 @ 1
[ 0.201518] initcall xen_acpi_pad_init+0x0/0x50 returned -19 after 0 usecs
[ 0.201519] calling misc_init+0x0/0xb0 @ 1
[ 0.201524] initcall misc_init+0x0/0xb0 returned 0 after 0 usecs
[ 0.201526] calling tpm_init+0x0/0xd0 @ 1
[ 0.204853] initcall tpm_init+0x0/0xd0 returned 0 after 0 usecs
[ 0.204853] calling iommu_subsys_init+0x0/0x190 @ 1
[ 0.204853] iommu: Default domain type: Translated
[ 0.204853] iommu: DMA domain TLB invalidation policy: lazy mode
[ 0.204853] initcall iommu_subsys_init+0x0/0x190 returned 0 after 0 usecs
[ 0.204853] calling cn_init+0x0/0xf0 @ 1
[ 0.204853] initcall cn_init+0x0/0xf0 returned 0 after 0 usecs
[ 0.204853] calling dax_core_init+0x0/0xe0 @ 1
[ 0.204897] initcall dax_core_init+0x0/0xe0 returned 0 after 0 usecs
[ 0.204900] calling dma_buf_init+0x0/0xa0 @ 1
[ 0.204909] initcall dma_buf_init+0x0/0xa0 returned 0 after 0 usecs
[ 0.204911] calling cxl_core_init+0x0/0xa0 @ 1
[ 0.204929] initcall cxl_core_init+0x0/0xa0 returned 0 after 0 usecs
[ 0.204932] calling phy_init+0x0/0x2f0 @ 1
[ 0.204945] initcall phy_init+0x0/0x2f0 returned 0 after 0 usecs
[ 0.204948] calling serio_init+0x0/0x40 @ 1
[ 0.204953] initcall serio_init+0x0/0x40 returned 0 after 0 usecs
[ 0.204955] calling input_init+0x0/0x140 @ 1
[ 0.204960] initcall input_init+0x0/0x140 returned 0 after 0 usecs
[ 0.204963] calling rtc_init+0x0/0x30 @ 1
[ 0.204966] initcall rtc_init+0x0/0x30 returned 0 after 0 usecs
[ 0.204969] calling dw_i2c_init_driver+0x0/0x20 @ 1
[ 0.204981] initcall dw_i2c_init_driver+0x0/0x20 returned 0 after 0 usecs
[ 0.204983] calling pps_init+0x0/0xb0 @ 1
[ 0.204987] pps_core: LinuxPPS API ver. 1 registered
[ 0.204987] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 0.204988] initcall pps_init+0x0/0xb0 returned 0 after 0 usecs
[ 0.204990] calling ptp_init+0x0/0x80 @ 1
[ 0.204994] PTP clock support registered
[ 0.204994] initcall ptp_init+0x0/0x80 returned 0 after 0 usecs
[ 0.204996] calling power_supply_class_init+0x0/0x20 @ 1
[ 0.205002] initcall power_supply_class_init+0x0/0x20 returned 0 after 0 usecs
[ 0.205005] calling hwmon_init+0x0/0x110 @ 1
[ 0.205010] initcall hwmon_init+0x0/0x110 returned 0 after 0 usecs
[ 0.205012] calling intel_tcc_init+0x0/0x40 @ 1
[ 0.205015] initcall intel_tcc_init+0x0/0x40 returned 0 after 0 usecs
[ 0.205017] calling edac_init+0x0/0x80 @ 1
[ 0.205019] EDAC MC: Ver: 3.0.0
[ 0.205351] initcall edac_init+0x0/0x80 returned 0 after 0 usecs
[ 0.205351] calling leds_init+0x0/0x20 @ 1
[ 0.205351] initcall leds_init+0x0/0x20 returned 0 after 0 usecs
[ 0.205351] calling dmi_init+0x0/0x130 @ 1
[ 0.205351] initcall dmi_init+0x0/0x130 returned 0 after 0 usecs
[ 0.205351] calling efisubsys_init+0x0/0x6d0 @ 1
[ 0.205351] efivars: Registered efivars operations
[ 0.205351] initcall efisubsys_init+0x0/0x6d0 returned 0 after 0 usecs
[ 0.205351] calling intel_scu_ipc_init+0x0/0x20 @ 1
[ 0.205351] initcall intel_scu_ipc_init+0x0/0x20 returned 0 after 0 usecs
[ 0.205351] calling devfreq_init+0x0/0xd0 @ 1
[ 0.205351] initcall devfreq_init+0x0/0xd0 returned 0 after 0 usecs
[ 0.205351] calling ras_init+0x0/0x20 @ 1
[ 0.205351] initcall ras_init+0x0/0x20 returned 0 after 0 usecs
[ 0.205351] calling nvmem_init+0x0/0x20 @ 1
[ 0.205351] initcall nvmem_init+0x0/0x20 returned 0 after 0 usecs
[ 0.205351] calling proto_init+0x0/0x20 @ 1
[ 0.205351] initcall proto_init+0x0/0x20 returned 0 after 0 usecs
[ 0.205351] calling net_dev_init+0x0/0x380 @ 1
[ 0.205351] initcall net_dev_init+0x0/0x380 returned 0 after 0 usecs
[ 0.205351] calling neigh_init+0x0/0x90 @ 1
[ 0.205351] initcall neigh_init+0x0/0x90 returned 0 after 0 usecs
[ 0.205351] calling fib_notifier_init+0x0/0x20 @ 1
[ 0.205351] initcall fib_notifier_init+0x0/0x20 returned 0 after 0 usecs
[ 0.205351] calling netdev_genl_init+0x0/0x40 @ 1
[ 0.205351] initcall netdev_genl_init+0x0/0x40 returned 0 after 0 usecs
[ 0.205351] calling page_pool_user_init+0x0/0x20 @ 1
[ 0.205351] initcall page_pool_user_init+0x0/0x20 returned 0 after 0 usecs
[ 0.205351] calling fib_rules_init+0x0/0xc0 @ 1
[ 0.205351] initcall fib_rules_init+0x0/0xc0 returned 0 after 0 usecs
[ 0.205351] calling init_cgroup_netprio+0x0/0x20 @ 1
[ 0.205351] initcall init_cgroup_netprio+0x0/0x20 returned 0 after 0 usecs
[ 0.205351] calling bpf_lwt_init+0x0/0x20 @ 1
[ 0.205351] initcall bpf_lwt_init+0x0/0x20 returned 0 after 0 usecs
[ 0.205351] calling pktsched_init+0x0/0x120 @ 1
[ 0.205351] initcall pktsched_init+0x0/0x120 returned 0 after 0 usecs
[ 0.205351] calling tc_filter_init+0x0/0x110 @ 1
[ 0.205351] initcall tc_filter_init+0x0/0x110 returned 0 after 0 usecs
[ 0.205351] calling tc_action_init+0x0/0x60 @ 1
[ 0.205351] initcall tc_action_init+0x0/0x60 returned 0 after 0 usecs
[ 0.205351] calling ethnl_init+0x0/0x70 @ 1
[ 0.205351] initcall ethnl_init+0x0/0x70 returned 0 after 0 usecs
[ 0.205351] calling nexthop_init+0x0/0x100 @ 1
[ 0.205351] initcall nexthop_init+0x0/0x100 returned 0 after 0 usecs
[ 0.205351] calling cipso_v4_init+0x0/0x90 @ 1
[ 0.205351] initcall cipso_v4_init+0x0/0x90 returned 0 after 0 usecs
[ 0.205351] calling wireless_nlevent_init+0x0/0x50 @ 1
[ 0.205351] initcall wireless_nlevent_init+0x0/0x50 returned 0 after 0 usecs
[ 0.205351] calling netlbl_init+0x0/0x80 @ 1
[ 0.205351] NetLabel: Initializing
[ 0.205351] NetLabel: domain hash size = 128
[ 0.205351] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 0.205351] NetLabel: unlabeled traffic allowed by default
[ 0.205351] initcall netlbl_init+0x0/0x80 returned 0 after 0 usecs
[ 0.205351] calling pci_subsys_init+0x0/0x80 @ 1
[ 0.205351] PCI: Using ACPI for IRQ routing
[ 0.227289] PCI: pci_cache_line_size set to 64 bytes
[ 0.227669] e820: reserve RAM buffer [mem 0x00058000-0x0005ffff]
[ 0.227671] e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff]
[ 0.227672] e820: reserve RAM buffer [mem 0x511ec018-0x53ffffff]
[ 0.227673] e820: reserve RAM buffer [mem 0x556ab000-0x57ffffff]
[ 0.227674] e820: reserve RAM buffer [mem 0x62260000-0x63ffffff]
[ 0.227675] e820: reserve RAM buffer [mem 0x64df4000-0x67ffffff]
[ 0.227676] e820: reserve RAM buffer [mem 0x78600000-0x7bffffff]
[ 0.227677] e820: reserve RAM buffer [mem 0x481800000-0x483ffffff]
[ 0.227678] initcall pci_subsys_init+0x0/0x80 returned 0 after 24000 usecs
[ 0.227681] calling vsprintf_init_hashval+0x0/0x20 @ 1
[ 0.227683] initcall vsprintf_init_hashval+0x0/0x20 returned 0 after 0 usecs
[ 0.227685] calling efi_runtime_map_init+0x0/0x270 @ 1
[ 0.227706] initcall efi_runtime_map_init+0x0/0x270 returned 0 after 0 usecs
[ 0.227708] calling vga_arb_device_init+0x0/0xa0 @ 1
[ 0.228821] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[ 0.228821] pci 0000:00:02.0: vgaarb: bridge control possible
[ 0.228822] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[ 0.228825] vgaarb: loaded
[ 0.228826] initcall vga_arb_device_init+0x0/0xa0 returned 0 after 0 usecs
[ 0.228851] calling nmi_warning_debugfs+0x0/0x30 @ 1
[ 0.228856] initcall nmi_warning_debugfs+0x0/0x30 returned 0 after 0 usecs
[ 0.228858] calling hpet_late_init+0x0/0x450 @ 1
[ 0.228860] initcall hpet_late_init+0x0/0x450 returned -19 after 0 usecs
[ 0.228862] calling init_amd_nbs+0x0/0x520 @ 1
[ 0.228867] initcall init_amd_nbs+0x0/0x520 returned 0 after 0 usecs
[ 0.228869] calling iomem_init_inode+0x0/0x90 @ 1
[ 0.228879] initcall iomem_init_inode+0x0/0x90 returned 0 after 0 usecs
[ 0.228881] calling em_debug_init+0x0/0x30 @ 1
[ 0.228888] initcall em_debug_init+0x0/0x30 returned 0 after 0 usecs
[ 0.228889] calling clocksource_done_booting+0x0/0x50 @ 1
[ 0.228902] clocksource: Switched to clocksource tsc-early
[ 0.228903] initcall clocksource_done_booting+0x0/0x50 returned 0 after 3 usecs
[ 0.228906] calling tracer_init_tracefs+0x0/0xc0 @ 1
[ 0.228910] initcall tracer_init_tracefs+0x0/0xc0 returned 0 after 2 usecs
[ 0.228912] calling init_trace_printk_function_export+0x0/0x30 @ 1
[ 0.228920] initcall init_trace_printk_function_export+0x0/0x30 returned 0 after 31 usecs
[ 0.228920] calling init_graph_tracefs+0x0/0x30 @ 1
[ 0.228920] initcall init_graph_tracefs+0x0/0x30 returned 0 after 0 usecs
[ 0.228920] calling trace_events_synth_init+0x0/0x50 @ 1
[ 0.228920] initcall trace_events_synth_init+0x0/0x50 returned 0 after 0 usecs
[ 0.228920] calling bpf_event_init+0x0/0x20 @ 1
[ 0.228920] initcall bpf_event_init+0x0/0x20 returned 0 after 0 usecs
[ 0.228920] calling init_kprobe_trace+0x0/0x1d0 @ 1
[ 0.229241] initcall init_kprobe_trace+0x0/0x1d0 returned 0 after 360 usecs
[ 0.229244] calling init_dynamic_event+0x0/0x30 @ 1
[ 0.229248] initcall init_dynamic_event+0x0/0x30 returned 0 after 1 usecs
[ 0.229251] calling init_uprobe_trace+0x0/0x60 @ 1
[ 0.229255] initcall init_uprobe_trace+0x0/0x60 returned 0 after 2 usecs
[ 0.229257] calling bpf_init+0x0/0x60 @ 1
[ 0.229260] initcall bpf_init+0x0/0x60 returned 0 after 1 usecs
[ 0.229263] calling btf_module_init+0x0/0x20 @ 1
[ 0.229265] initcall btf_module_init+0x0/0x20 returned 0 after 0 usecs
[ 0.229267] calling secretmem_init+0x0/0x40 @ 1
[ 0.229276] initcall secretmem_init+0x0/0x40 returned 0 after 5 usecs
[ 0.229278] calling init_fs_stat_sysctls+0x0/0x40 @ 1
[ 0.229286] initcall init_fs_stat_sysctls+0x0/0x40 returned 0 after 5 usecs
[ 0.229288] calling init_fs_exec_sysctls+0x0/0x30 @ 1
[ 0.229292] initcall init_fs_exec_sysctls+0x0/0x30 returned 0 after 1 usecs
[ 0.229295] calling init_pipe_fs+0x0/0x70 @ 1
[ 0.229308] initcall init_pipe_fs+0x0/0x70 returned 0 after 11 usecs
[ 0.229310] calling init_fs_namei_sysctls+0x0/0x30 @ 1
[ 0.229315] initcall init_fs_namei_sysctls+0x0/0x30 returned 0 after 2 usecs
[ 0.229317] calling init_fs_dcache_sysctls+0x0/0x30 @ 1
[ 0.229320] initcall init_fs_dcache_sysctls+0x0/0x30 returned 0 after 0 usecs
[ 0.229323] calling init_fs_namespace_sysctls+0x0/0x30 @ 1
[ 0.229326] initcall init_fs_namespace_sysctls+0x0/0x30 returned 0 after 0 usecs
[ 0.229328] calling cgroup_writeback_init+0x0/0x30 @ 1
[ 0.229333] initcall cgroup_writeback_init+0x0/0x30 returned 0 after 2 usecs
[ 0.229336] calling inotify_user_setup+0x0/0x100 @ 1
[ 0.229343] initcall inotify_user_setup+0x0/0x100 returned 0 after 4 usecs
[ 0.229346] calling eventpoll_init+0x0/0x110 @ 1
[ 0.229367] initcall eventpoll_init+0x0/0x110 returned 0 after 18 usecs
[ 0.229370] calling anon_inode_init+0x0/0x60 @ 1
[ 0.229379] initcall anon_inode_init+0x0/0x60 returned 0 after 7 usecs
[ 0.229380] calling init_dax_wait_table+0x0/0x40 @ 1
[ 0.229392] initcall init_dax_wait_table+0x0/0x40 returned 0 after 9 usecs
[ 0.229394] calling proc_locks_init+0x0/0x30 @ 1
[ 0.229397] initcall proc_locks_init+0x0/0x30 returned 0 after 0 usecs
[ 0.229398] calling backing_aio_init+0x0/0x40 @ 1
[ 0.229402] initcall backing_aio_init+0x0/0x40 returned 0 after 1 usecs
[ 0.229403] calling init_fs_coredump_sysctls+0x0/0x30 @ 1
[ 0.229408] initcall init_fs_coredump_sysctls+0x0/0x30 returned 0 after 2 usecs
[ 0.229410] calling iomap_init+0x0/0x30 @ 1
[ 0.229431] initcall iomap_init+0x0/0x30 returned 0 after 19 usecs
[ 0.229433] calling dquot_init+0x0/0x170 @ 1
[ 0.229434] VFS: Disk quotas dquot_6.6.0
[ 0.229442] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.229443] initcall dquot_init+0x0/0x170 returned 0 after 8 usecs
[ 0.229445] calling quota_init+0x0/0x30 @ 1
[ 0.229451] initcall quota_init+0x0/0x30 returned 0 after 4 usecs
[ 0.229453] calling proc_cmdline_init+0x0/0x40 @ 1
[ 0.229456] initcall proc_cmdline_init+0x0/0x40 returned 0 after 0 usecs
[ 0.229458] calling proc_consoles_init+0x0/0x30 @ 1
[ 0.229460] initcall proc_consoles_init+0x0/0x30 returned 0 after 0 usecs
[ 0.229461] calling proc_cpuinfo_init+0x0/0x30 @ 1
[ 0.229464] initcall proc_cpuinfo_init+0x0/0x30 returned 0 after 0 usecs
[ 0.229466] calling proc_devices_init+0x0/0x30 @ 1
[ 0.229468] initcall proc_devices_init+0x0/0x30 returned 0 after 0 usecs
[ 0.229469] calling proc_interrupts_init+0x0/0x30 @ 1
[ 0.229473] initcall proc_interrupts_init+0x0/0x30 returned 0 after 1 usecs
[ 0.229475] calling proc_loadavg_init+0x0/0x30 @ 1
[ 0.229477] initcall proc_loadavg_init+0x0/0x30 returned 0 after 0 usecs
[ 0.229478] calling proc_meminfo_init+0x0/0x30 @ 1
[ 0.229480] initcall proc_meminfo_init+0x0/0x30 returned 0 after 0 usecs
[ 0.229482] calling proc_stat_init+0x0/0x30 @ 1
[ 0.229485] initcall proc_stat_init+0x0/0x30 returned 0 after 0 usecs
[ 0.229486] calling proc_uptime_init+0x0/0x30 @ 1
[ 0.229489] initcall proc_uptime_init+0x0/0x30 returned 0 after 0 usecs
[ 0.229491] calling proc_version_init+0x0/0x30 @ 1
[ 0.229493] initcall proc_version_init+0x0/0x30 returned 0 after 0 usecs
[ 0.229495] calling proc_softirqs_init+0x0/0x30 @ 1
[ 0.229497] initcall proc_softirqs_init+0x0/0x30 returned 0 after 0 usecs
[ 0.229499] calling proc_kcore_init+0x0/0x1f0 @ 1
[ 0.229506] initcall proc_kcore_init+0x0/0x1f0 returned 0 after 4 usecs
[ 0.229508] calling vmcore_init+0x0/0x720 @ 1
[ 0.229510] initcall vmcore_init+0x0/0x720 returned 0 after 0 usecs
[ 0.229512] calling proc_kmsg_init+0x0/0x30 @ 1
[ 0.229514] initcall proc_kmsg_init+0x0/0x30 returned 0 after 0 usecs
[ 0.229516] calling proc_page_init+0x0/0x60 @ 1
[ 0.229519] initcall proc_page_init+0x0/0x60 returned 0 after 1 usecs
[ 0.229521] calling init_ramfs_fs+0x0/0x20 @ 1
[ 0.229523] initcall init_ramfs_fs+0x0/0x20 returned 0 after 0 usecs
[ 0.229525] calling init_hugetlbfs_fs+0x0/0x160 @ 1
[ 0.229536] initcall init_hugetlbfs_fs+0x0/0x160 returned 0 after 9 usecs
[ 0.229539] calling aa_create_aafs+0x0/0x3f0 @ 1
[ 0.229591] AppArmor: AppArmor Filesystem Enabled
[ 0.229592] initcall aa_create_aafs+0x0/0x3f0 returned 0 after 50 usecs
[ 0.229595] calling dynamic_debug_init_control+0x0/0x80 @ 1
[ 0.229598] initcall dynamic_debug_init_control+0x0/0x80 returned 0 after 2 usecs
[ 0.229600] calling acpi_event_init+0x0/0x40 @ 1
[ 0.229605] initcall acpi_event_init+0x0/0x40 returned 0 after 2 usecs
[ 0.229607] calling pnp_system_init+0x0/0x20 @ 1
[ 0.229614] initcall pnp_system_init+0x0/0x20 returned 0 after 4 usecs
[ 0.229616] calling pnpacpi_init+0x0/0x70 @ 1
[ 0.229619] pnp: PnP ACPI init
[ 0.229845] system 00:00: [io 0x0680-0x069f] has been reserved
[ 0.229848] system 00:00: [io 0xffff] has been reserved
[ 0.229849] system 00:00: [io 0xffff] has been reserved
[ 0.229850] system 00:00: [io 0xffff] has been reserved
[ 0.229851] system 00:00: [io 0x1800-0x18fe] has been reserved
[ 0.229852] system 00:00: [io 0x164e-0x164f] has been reserved
[ 0.229856] probe of 00:00 returned 0 after 14 usecs
[ 0.229976] system 00:02: [io 0x1854-0x1857] has been reserved
[ 0.229979] probe of 00:02 returned 0 after 6 usecs
[ 0.230328] system 00:05: [mem 0xfed10000-0xfed17fff] has been reserved
[ 0.230330] system 00:05: [mem 0xfed18000-0xfed18fff] has been reserved
[ 0.230332] system 00:05: [mem 0xfed19000-0xfed19fff] has been reserved
[ 0.230333] system 00:05: [mem 0xe0000000-0xefffffff] has been reserved
[ 0.230334] system 00:05: [mem 0xfed20000-0xfed3ffff] has been reserved
[ 0.230336] system 00:05: [mem 0xfed90000-0xfed93fff] could not be reserved
[ 0.230337] system 00:05: [mem 0xfed45000-0xfed8ffff] has been reserved
[ 0.230339] system 00:05: [mem 0xff000000-0xffffffff] has been reserved
[ 0.230340] system 00:05: [mem 0xfee00000-0xfeefffff] could not be reserved
[ 0.230342] system 00:05: [mem 0xdffe0000-0xdfffffff] has been reserved
[ 0.230344] probe of 00:05 returned 0 after 20 usecs
[ 0.230377] system 00:06: [mem 0xfd000000-0xfdabffff] has been reserved
[ 0.230379] system 00:06: [mem 0xfdad0000-0xfdadffff] has been reserved
[ 0.230381] system 00:06: [mem 0xfdb00000-0xfdffffff] has been reserved
[ 0.230382] system 00:06: [mem 0xfe000000-0xfe01ffff] could not be reserved
[ 0.230383] system 00:06: [mem 0xfe036000-0xfe03bfff] has been reserved
[ 0.230385] system 00:06: [mem 0xfe03d000-0xfe3fffff] has been reserved
[ 0.230386] system 00:06: [mem 0xfe410000-0xfe7fffff] has been reserved
[ 0.230389] probe of 00:06 returned 0 after 13 usecs
[ 0.230642] system 00:07: [io 0xff00-0xfffe] has been reserved
[ 0.230645] probe of 00:07 returned 0 after 4 usecs
[ 0.231589] system 00:08: [mem 0xfe029000-0xfe029fff] has been reserved
[ 0.231591] system 00:08: [mem 0xfe028000-0xfe028fff] has been reserved
[ 0.231594] probe of 00:08 returned 0 after 7 usecs
[ 0.236237] pnp: PnP ACPI: found 9 devices
[ 0.236239] initcall pnpacpi_init+0x0/0x70 returned 0 after 6620 usecs
[ 0.236243] calling chr_dev_init+0x0/0xa0 @ 1
[ 0.237107] initcall chr_dev_init+0x0/0xa0 returned 0 after 861 usecs
[ 0.237110] calling hwrng_modinit+0x0/0xd0 @ 1
[ 0.237125] initcall hwrng_modinit+0x0/0xd0 returned 0 after 12 usecs
[ 0.237127] calling firmware_class_init+0x0/0x100 @ 1
[ 0.237135] initcall firmware_class_init+0x0/0x100 returned 0 after 5 usecs
[ 0.237137] calling map_properties+0x0/0x6d0 @ 1
[ 0.237139] initcall map_properties+0x0/0x6d0 returned 0 after 0 usecs
[ 0.237141] calling init_acpi_pm_clocksource+0x0/0xf0 @ 1
[ 0.241625] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.241628] initcall init_acpi_pm_clocksource+0x0/0xf0 returned 0 after 4485 usecs
[ 0.241629] calling powercap_init+0x0/0x280 @ 1
[ 0.241653] initcall powercap_init+0x0/0x280 returned 0 after 21 usecs
[ 0.241655] calling sysctl_core_init+0x0/0x40 @ 1
[ 0.241670] initcall sysctl_core_init+0x0/0x40 returned 0 after 13 usecs
[ 0.241672] calling eth_offload_init+0x0/0x20 @ 1
[ 0.241674] initcall eth_offload_init+0x0/0x20 returned 0 after 0 usecs
[ 0.241676] calling ipv4_offload_init+0x0/0xe0 @ 1
[ 0.241678] initcall ipv4_offload_init+0x0/0xe0 returned 0 after 0 usecs
[ 0.241680] calling inet_init+0x0/0x330 @ 1
[ 0.241694] NET: Registered PF_INET protocol family
[ 0.241820] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.252822] tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
[ 0.252843] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[ 0.252878] TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[ 0.253069] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[ 0.253276] TCP: Hash tables configured (established 131072 bind 65536)
[ 0.253346] MPTCP token hash table entries: 16384 (order: 6, 393216 bytes, linear)
[ 0.253397] UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
[ 0.253430] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
[ 0.253482] initcall inet_init+0x0/0x330 returned 0 after 11799 usecs
[ 0.253488] calling af_unix_init+0x0/0xf0 @ 1
[ 0.253493] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 0.253497] initcall af_unix_init+0x0/0xf0 returned 0 after 7 usecs
[ 0.253500] calling ipv6_offload_init+0x0/0xe0 @ 1
[ 0.253503] initcall ipv6_offload_init+0x0/0xe0 returned 0 after 0 usecs
[ 0.253505] calling xsk_init+0x0/0x80 @ 1
[ 0.253508] NET: Registered PF_XDP protocol family
[ 0.253509] initcall xsk_init+0x0/0x80 returned 0 after 1 usecs
[ 0.253511] calling pcibios_assign_resources+0x0/0xf0 @ 1
[ 0.253520] pci 0000:00:1c.0: bridge window [io 0x1000-0x0fff] to [bus 01-39] add_size 1000
[ 0.253529] pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff]: assigned
[ 0.253532] pci 0000:00:1c.0: PCI bridge to [bus 01-39]
[ 0.253534] pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff]
[ 0.253538] pci 0000:00:1c.0: bridge window [mem 0xc4000000-0xda0fffff]
[ 0.253540] pci 0000:00:1c.0: bridge window [mem 0xa0000000-0xc1ffffff 64bit pref]
[ 0.253544] pci 0000:00:1c.4: PCI bridge to [bus 3a]
[ 0.253548] pci 0000:00:1c.4: bridge window [mem 0xdc000000-0xdc1fffff]
[ 0.253553] pci 0000:00:1d.0: PCI bridge to [bus 3b]
[ 0.253556] pci 0000:00:1d.0: bridge window [mem 0xdc200000-0xdc2fffff]
[ 0.253563] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[ 0.253565] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
[ 0.253566] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000dffff window]
[ 0.253567] pci_bus 0000:00: resource 7 [mem 0x7c800000-0xdfffffff window]
[ 0.253568] pci_bus 0000:00: resource 8 [mem 0xfd000000-0xfe7fffff window]
[ 0.253570] pci_bus 0000:01: resource 0 [io 0x2000-0x2fff]
[ 0.253571] pci_bus 0000:01: resource 1 [mem 0xc4000000-0xda0fffff]
[ 0.253572] pci_bus 0000:01: resource 2 [mem 0xa0000000-0xc1ffffff 64bit pref]
[ 0.253573] pci_bus 0000:3a: resource 1 [mem 0xdc000000-0xdc1fffff]
[ 0.253574] pci_bus 0000:3b: resource 1 [mem 0xdc200000-0xdc2fffff]
[ 0.253712] initcall pcibios_assign_resources+0x0/0xf0 returned 0 after 197 usecs
[ 0.253716] calling pci_apply_final_quirks+0x0/0x160 @ 1
[ 0.253735] pci 0000:00:14.0: calling quirk_usb_early_handoff+0x0/0x750 @ 1
[ 0.254028] pci 0000:00:14.0: quirk_usb_early_handoff+0x0/0x750 took 281 usecs
[ 0.254224] PCI: CLS 0 bytes, default 64
[ 0.254225] initcall pci_apply_final_quirks+0x0/0x160 returned 0 after 507 usecs
[ 0.254234] calling acpi_reserve_resources+0x0/0x110 @ 1
[ 0.254237] initcall acpi_reserve_resources+0x0/0x110 returned 0 after 1 usecs
[ 0.254239] calling p2sb_fs_init+0x0/0x180 @ 1
[ 0.254282] pci 0000:00:1f.1: [8086:9d20] type 00 class 0x058000 conventional PCI endpoint
[ 0.254340] pci 0000:00:1f.1: BAR 0 [mem 0xfd000000-0xfdffffff 64bit]
[ 0.254480] pci 0000:00:1f.1: calling quirk_igfx_skip_te_disable+0x0/0xa0 @ 1
[ 0.254484] pci 0000:00:1f.1: quirk_igfx_skip_te_disable+0x0/0xa0 took 0 usecs
[ 0.254574] initcall p2sb_fs_init+0x0/0x180 returned 0 after 333 usecs
[ 0.254576] calling populate_rootfs+0x0/0x80 @ 1
[ 0.254583] initcall populate_rootfs+0x0/0x80 returned 0 after 2 usecs
[ 0.254585] calling pci_iommu_init+0x0/0x40 @ 1
[ 0.254594] DMAR: ACPI device "device:79" under DMAR at fed91000 as 00:15.0
[ 0.254597] DMAR: ACPI device "device:7a" under DMAR at fed91000 as 00:15.1
[ 0.254605] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.254606] software IO TLB: mapped [mem 0x000000005e260000-0x0000000062260000] (64MB)
[ 0.254608] initcall pci_iommu_init+0x0/0x40 returned 0 after 19 usecs
[ 0.254610] calling ir_dev_scope_init+0x0/0x40 @ 1
[ 0.254613] initcall ir_dev_scope_init+0x0/0x40 returned 0 after 0 usecs
[ 0.254621] Unpacking initramfs...
[ 0.254638] calling snp_init_platform_device+0x0/0xa0 @ 1
[ 0.254640] initcall snp_init_platform_device+0x0/0xa0 returned -19 after 0 usecs
[ 0.254641] calling amd_ibs_init+0x0/0x390 @ 1
[ 0.254643] initcall amd_ibs_init+0x0/0x390 returned -19 after 0 usecs
[ 0.254644] calling amd_uncore_init+0x0/0x1c0 @ 1
[ 0.254646] initcall amd_uncore_init+0x0/0x1c0 returned -19 after 0 usecs
[ 0.254647] calling amd_iommu_pc_init+0x0/0x2b0 @ 1
[ 0.254649] initcall amd_iommu_pc_init+0x0/0x2b0 returned -19 after 0 usecs
[ 0.254650] calling msr_init+0x0/0x60 @ 1
[ 0.254655] initcall msr_init+0x0/0x60 returned 0 after 3 usecs
[ 0.254657] calling register_kernel_offset_dumper+0x0/0x20 @ 1
[ 0.254660] initcall register_kernel_offset_dumper+0x0/0x20 returned 0 after 0 usecs
[ 0.254662] calling i8259A_init_ops+0x0/0x30 @ 1
[ 0.254665] initcall i8259A_init_ops+0x0/0x30 returned 0 after 0 usecs
[ 0.254667] calling init_tsc_clocksource+0x0/0xd0 @ 1
[ 0.254672] initcall init_tsc_clocksource+0x0/0xd0 returned 0 after 2 usecs
[ 0.254674] calling add_rtc_cmos+0x0/0xa0 @ 1
[ 0.254677] initcall add_rtc_cmos+0x0/0xa0 returned 0 after 0 usecs
[ 0.254678] calling umwait_init+0x0/0xa0 @ 1
[ 0.254679] initcall umwait_init+0x0/0xa0 returned -19 after 0 usecs
[ 0.254681] calling sgx_init+0x0/0x4d0 @ 1
[ 0.254687] sgx: EPC section 0x70200000-0x75f7ffff
[ 0.255051] initcall sgx_init+0x0/0x4d0 returned 0 after 368 usecs
[ 0.255058] calling ioapic_init_ops+0x0/0x20 @ 1
[ 0.255061] initcall ioapic_init_ops+0x0/0x20 returned 0 after 0 usecs
[ 0.255063] calling add_pcspkr+0x0/0x70 @ 1
[ 0.255090] initcall add_pcspkr+0x0/0x70 returned 0 after 25 usecs
[ 0.255093] calling audit_classes_init+0x0/0x60 @ 1
[ 0.255096] initcall audit_classes_init+0x0/0x60 returned 0 after 1 usecs
[ 0.255099] calling pt_dump_init+0x0/0x50 @ 1
[ 0.255101] initcall pt_dump_init+0x0/0x50 returned 0 after 0 usecs
[ 0.255104] calling iosf_mbi_init+0x0/0x30 @ 1
[ 0.255120] initcall iosf_mbi_init+0x0/0x30 returned 0 after 13 usecs
[ 0.255123] calling proc_execdomains_init+0x0/0x30 @ 1
[ 0.255129] initcall proc_execdomains_init+0x0/0x30 returned 0 after 2 usecs
[ 0.255132] calling register_warn_debugfs+0x0/0x30 @ 1
[ 0.255138] initcall register_warn_debugfs+0x0/0x30 returned 0 after 3 usecs
[ 0.255142] calling cpuhp_sysfs_init+0x0/0xf0 @ 1
[ 0.255156] initcall cpuhp_sysfs_init+0x0/0xf0 returned 0 after 11 usecs
[ 0.255159] calling ioresources_init+0x0/0x50 @ 1
[ 0.255164] initcall ioresources_init+0x0/0x50 returned 0 after 1 usecs
[ 0.255168] calling psi_proc_init+0x0/0x80 @ 1
[ 0.255172] initcall psi_proc_init+0x0/0x80 returned 0 after 2 usecs
[ 0.255174] calling snapshot_device_init+0x0/0x20 @ 1
[ 0.255216] initcall snapshot_device_init+0x0/0x20 returned 0 after 39 usecs
[ 0.255219] calling irq_pm_init_ops+0x0/0x20 @ 1
[ 0.255222] initcall irq_pm_init_ops+0x0/0x20 returned 0 after 0 usecs
[ 0.255225] calling klp_init+0x0/0x30 @ 1
[ 0.255230] initcall klp_init+0x0/0x30 returned 0 after 1 usecs
[ 0.255233] calling proc_modules_init+0x0/0x30 @ 1
[ 0.255244] initcall proc_modules_init+0x0/0x30 returned 0 after 8 usecs
[ 0.255247] calling timer_sysctl_init+0x0/0x30 @ 1
[ 0.255254] initcall timer_sysctl_init+0x0/0x30 returned 0 after 3 usecs
[ 0.255257] calling timekeeping_init_ops+0x0/0x20 @ 1
[ 0.255260] initcall timekeeping_init_ops+0x0/0x20 returned 0 after 0 usecs
[ 0.255263] calling init_clocksource_sysfs+0x0/0x30 @ 1
[ 0.255293] initcall init_clocksource_sysfs+0x0/0x30 returned 0 after 27 usecs
[ 0.255297] calling init_timer_list_procfs+0x0/0x40 @ 1
[ 0.255301] initcall init_timer_list_procfs+0x0/0x40 returned 0 after 1 usecs
[ 0.255304] calling alarmtimer_init+0x0/0xf0 @ 1
[ 0.255327] initcall alarmtimer_init+0x0/0xf0 returned 0 after 19 usecs
[ 0.255330] calling init_posix_timers+0x0/0x30 @ 1
[ 0.255344] initcall init_posix_timers+0x0/0x30 returned 0 after 10 usecs
[ 0.255347] calling clockevents_init_sysfs+0x0/0xd0 @ 1
[ 0.255416] initcall clockevents_init_sysfs+0x0/0xd0 returned 0 after 65 usecs
[ 0.255420] calling kallsyms_init+0x0/0x30 @ 1
[ 0.255424] initcall kallsyms_init+0x0/0x30 returned 0 after 1 usecs
[ 0.255427] calling pid_namespaces_init+0x0/0x70 @ 1
[ 0.255437] initcall pid_namespaces_init+0x0/0x70 returned 0 after 6 usecs
[ 0.255441] calling audit_watch_init+0x0/0x50 @ 1
[ 0.255445] initcall audit_watch_init+0x0/0x50 returned 0 after 0 usecs
[ 0.255448] calling audit_fsnotify_init+0x0/0x50 @ 1
[ 0.255452] initcall audit_fsnotify_init+0x0/0x50 returned 0 after 0 usecs
[ 0.255455] calling audit_tree_init+0x0/0x80 @ 1
[ 0.255460] initcall audit_tree_init+0x0/0x80 returned 0 after 1 usecs
[ 0.255463] calling seccomp_sysctl_init+0x0/0x30 @ 1
[ 0.255469] initcall seccomp_sysctl_init+0x0/0x30 returned 0 after 2 usecs
[ 0.255473] calling utsname_sysctl_init+0x0/0x30 @ 1
[ 0.255481] initcall utsname_sysctl_init+0x0/0x30 returned 0 after 4 usecs
[ 0.255484] calling init_tracepoints+0x0/0x30 @ 1
[ 0.255490] initcall init_tracepoints+0x0/0x30 returned 0 after 1 usecs
[ 0.255493] calling stack_trace_init+0x0/0xb0 @ 1
[ 0.255505] initcall stack_trace_init+0x0/0xb0 returned 0 after 9 usecs
[ 0.255508] calling init_mmio_trace+0x0/0x10 @ 1
[ 0.255512] initcall init_mmio_trace+0x0/0x10 returned 0 after 1 usecs
[ 0.255514] calling init_blk_tracer+0x0/0x60 @ 1
[ 0.255522] initcall init_blk_tracer+0x0/0x60 returned 0 after 5 usecs
[ 0.255524] calling perf_event_sysfs_init+0x0/0xa0 @ 1
[ 0.255682] initcall perf_event_sysfs_init+0x0/0xa0 returned 0 after 155 usecs
[ 0.255686] calling system_trusted_keyring_init+0x0/0x110 @ 1
[ 0.255689] Initialise system trusted keyrings
[ 0.255698] initcall system_trusted_keyring_init+0x0/0x110 returned 0 after 8 usecs
[ 0.255701] calling blacklist_init+0x0/0x100 @ 1
[ 0.255704] Key type blacklist registered
[ 0.255707] initcall blacklist_init+0x0/0x100 returned 0 after 3 usecs
[ 0.255710] calling kswapd_init+0x0/0x60 @ 1
[ 0.255789] initcall kswapd_init+0x0/0x60 returned 0 after 76 usecs
[ 0.255804] calling extfrag_debug_init+0x0/0x60 @ 1
[ 0.255824] initcall extfrag_debug_init+0x0/0x60 returned 0 after 12 usecs
[ 0.255831] calling mm_compute_batch_init+0x0/0x80 @ 1
[ 0.255841] initcall mm_compute_batch_init+0x0/0x80 returned 0 after 1 usecs
[ 0.255851] calling slab_proc_init+0x0/0x30 @ 1
[ 0.255861] initcall slab_proc_init+0x0/0x30 returned 0 after 3 usecs
[ 0.255869] calling workingset_init+0x0/0xc0 @ 1
[ 0.255878] workingset: timestamp_bits=36 max_order=22 bucket_order=0
[ 0.255885] initcall workingset_init+0x0/0xc0 returned 0 after 7 usecs
[ 0.255893] calling proc_vmalloc_init+0x0/0x60 @ 1
[ 0.255904] initcall proc_vmalloc_init+0x0/0x60 returned 0 after 2 usecs
[ 0.255913] calling slab_debugfs_init+0x0/0x70 @ 1
[ 0.255937] initcall slab_debugfs_init+0x0/0x70 returned 0 after 15 usecs
[ 0.255946] calling procswaps_init+0x0/0x30 @ 1
[ 0.255957] initcall procswaps_init+0x0/0x30 returned 0 after 3 usecs
[ 0.255967] calling init_zbud+0x0/0x30 @ 1
[ 0.255973] zbud: loaded
[ 0.255976] initcall init_zbud+0x0/0x30 returned 0 after 3 usecs
[ 0.255982] calling zs_init+0x0/0x50 @ 1
[ 0.256002] initcall zs_init+0x0/0x50 returned 0 after 14 usecs
[ 0.256008] calling ptdump_debugfs_init+0x0/0x30 @ 1
[ 0.256020] initcall ptdump_debugfs_init+0x0/0x30 returned 0 after 3 usecs
[ 0.256028] calling fcntl_init+0x0/0x30 @ 1
[ 0.256040] initcall fcntl_init+0x0/0x30 returned 0 after 6 usecs
[ 0.256047] calling proc_filesystems_init+0x0/0x30 @ 1
[ 0.256055] initcall proc_filesystems_init+0x0/0x30 returned 0 after 1 usecs
[ 0.256062] calling start_dirtytime_writeback+0x0/0x30 @ 1
[ 0.256071] initcall start_dirtytime_writeback+0x0/0x30 returned 0 after 1 usecs
[ 0.256078] calling dio_init+0x0/0x40 @ 1
[ 0.256088] initcall dio_init+0x0/0x40 returned 0 after 2 usecs
[ 0.256095] calling dnotify_init+0x0/0xb0 @ 1
[ 0.256138] initcall dnotify_init+0x0/0xb0 returned 0 after 35 usecs
[ 0.256145] calling fanotify_user_setup+0x0/0x170 @ 1
[ 0.256166] initcall fanotify_user_setup+0x0/0x170 returned 0 after 13 usecs
[ 0.256175] calling userfaultfd_init+0x0/0x70 @ 1
[ 0.256275] initcall userfaultfd_init+0x0/0x70 returned 0 after 92 usecs
[ 0.256285] calling aio_setup+0x0/0xa0 @ 1
[ 0.256336] initcall aio_setup+0x0/0xa0 returned 0 after 45 usecs
[ 0.256344] calling init_devpts_fs+0x0/0x40 @ 1
[ 0.256361] initcall init_devpts_fs+0x0/0x40 returned 0 after 10 usecs
[ 0.256370] calling fuse_init+0x0/0x1f0 @ 1
[ 0.256377] fuse: init (API version 7.40)
[ 0.256453] initcall fuse_init+0x0/0x1f0 returned 0 after 75 usecs
[ 0.256462] calling virtio_fs_init+0x0/0xa0 @ 1
[ 0.256489] initcall virtio_fs_init+0x0/0xa0 returned 0 after 20 usecs
[ 0.256497] calling ipc_init+0x0/0x30 @ 1
[ 0.256519] initcall ipc_init+0x0/0x30 returned 0 after 14 usecs
[ 0.256527] calling ipc_sysctl_init+0x0/0x30 @ 1
[ 0.256566] initcall ipc_sysctl_init+0x0/0x30 returned 0 after 30 usecs
[ 0.256574] calling init_mqueue_fs+0x0/0xc0 @ 1
[ 0.256630] initcall init_mqueue_fs+0x0/0xc0 returned 0 after 47 usecs
[ 0.256638] calling key_proc_init+0x0/0x70 @ 1
[ 0.256650] initcall key_proc_init+0x0/0x70 returned 0 after 3 usecs
[ 0.256658] calling selinux_nf_ip_init+0x0/0x50 @ 1
[ 0.256668] initcall selinux_nf_ip_init+0x0/0x50 returned 0 after 1 usecs
[ 0.256677] calling init_sel_fs+0x0/0x130 @ 1
[ 0.256684] initcall init_sel_fs+0x0/0x130 returned 0 after 0 usecs
[ 0.256692] calling selnl_init+0x0/0xa0 @ 1
[ 0.256712] initcall selnl_init+0x0/0xa0 returned 0 after 12 usecs
[ 0.256721] calling sel_netif_init+0x0/0x40 @ 1
[ 0.256729] initcall sel_netif_init+0x0/0x40 returned 0 after 0 usecs
[ 0.256737] calling sel_netnode_init+0x0/0x40 @ 1
[ 0.256745] initcall sel_netnode_init+0x0/0x40 returned 0 after 0 usecs
[ 0.256754] calling sel_netport_init+0x0/0x40 @ 1
[ 0.256762] initcall sel_netport_init+0x0/0x40 returned 0 after 0 usecs
[ 0.256772] calling aurule_init+0x0/0x30 @ 1
[ 0.256781] initcall aurule_init+0x0/0x30 returned 0 after 1 usecs
[ 0.256789] calling apparmor_nf_ip_init+0x0/0x40 @ 1
[ 0.256883] initcall apparmor_nf_ip_init+0x0/0x40 returned 0 after 85 usecs
[ 0.256893] calling bpf_crypto_skcipher_init+0x0/0x20 @ 1
[ 0.256904] initcall bpf_crypto_skcipher_init+0x0/0x20 returned 0 after 1 usecs
[ 0.256914] calling crc64_rocksoft_init+0x0/0x20 @ 1
[ 0.256932] initcall crc64_rocksoft_init+0x0/0x20 returned 0 after 8 usecs
[ 0.256940] calling asymmetric_key_init+0x0/0x20 @ 1
[ 0.256951] Key type asymmetric registered
[ 0.256954] initcall asymmetric_key_init+0x0/0x20 returned 0 after 5 usecs
[ 0.256964] calling x509_key_init+0x0/0x20 @ 1
[ 0.256973] Asymmetric key parser 'x509' registered
[ 0.256976] initcall x509_key_init+0x0/0x20 returned 0 after 3 usecs
[ 0.256990] calling crypto_kdf108_init+0x0/0x170 @ 1
[ 0.286447] Freeing initrd memory: 20572K
[ 0.289686] alg: self-tests disabled
[ 0.289727] initcall crypto_kdf108_init+0x0/0x170 returned 0 after 32727 usecs
[ 0.289735] calling blkdev_init+0x0/0x30 @ 1
[ 0.289753] initcall blkdev_init+0x0/0x30 returned 0 after 14 usecs
[ 0.289756] calling proc_genhd_init+0x0/0x50 @ 1
[ 0.289763] initcall proc_genhd_init+0x0/0x50 returned 0 after 4 usecs
[ 0.289766] calling bsg_init+0x0/0xa0 @ 1
[ 0.289777] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
[ 0.289778] initcall bsg_init+0x0/0xa0 returned 0 after 9 usecs
[ 0.289781] calling throtl_init+0x0/0x40 @ 1
[ 0.289814] initcall throtl_init+0x0/0x40 returned 0 after 29 usecs
[ 0.289819] calling ioc_init+0x0/0x20 @ 1
[ 0.289824] initcall ioc_init+0x0/0x20 returned 0 after 3 usecs
[ 0.289827] calling deadline_init+0x0/0x20 @ 1
[ 0.289830] io scheduler mq-deadline registered
[ 0.289831] initcall deadline_init+0x0/0x20 returned 0 after 1 usecs
[ 0.289834] calling io_uring_init+0x0/0xa0 @ 1
[ 0.289853] initcall io_uring_init+0x0/0xa0 returned 0 after 16 usecs
[ 0.289856] calling blake2s_mod_init+0x0/0x20 @ 1
[ 0.290236] initcall blake2s_mod_init+0x0/0x20 returned 0 after 376 usecs
[ 0.290239] calling crc_t10dif_mod_init+0x0/0x60 @ 1
[ 0.290278] initcall crc_t10dif_mod_init+0x0/0x60 returned 0 after 37 usecs
[ 0.290281] calling libcrc32c_mod_init+0x0/0x30 @ 1
[ 0.290307] initcall libcrc32c_mod_init+0x0/0x30 returned 0 after 24 usecs
[ 0.290310] calling crc64_rocksoft_mod_init+0x0/0x60 @ 1
[ 0.290341] initcall crc64_rocksoft_mod_init+0x0/0x60 returned 0 after 29 usecs
[ 0.290344] calling percpu_counter_startup+0x0/0x60 @ 1
[ 0.290362] initcall percpu_counter_startup+0x0/0x60 returned 0 after 16 usecs
[ 0.290364] calling alloc_tag_init+0x0/0xd0 @ 1
[ 0.290408] initcall alloc_tag_init+0x0/0xd0 returned 0 after 42 usecs
[ 0.290410] calling phy_core_init+0x0/0x50 @ 1
[ 0.290418] initcall phy_core_init+0x0/0x50 returned 0 after 6 usecs
[ 0.290420] calling amd_gpio_driver_init+0x0/0x20 @ 1
[ 0.290441] initcall amd_gpio_driver_init+0x0/0x20 returned 0 after 19 usecs
[ 0.290443] calling cnl_pinctrl_driver_init+0x0/0x20 @ 1
[ 0.290450] initcall cnl_pinctrl_driver_init+0x0/0x20 returned 0 after 5 usecs
[ 0.290452] calling icl_pinctrl_driver_init+0x0/0x20 @ 1
[ 0.290459] initcall icl_pinctrl_driver_init+0x0/0x20 returned 0 after 4 usecs
[ 0.290460] calling lbg_pinctrl_driver_init+0x0/0x20 @ 1
[ 0.290467] initcall lbg_pinctrl_driver_init+0x0/0x20 returned 0 after 4 usecs
[ 0.290469] calling tgl_pinctrl_driver_init+0x0/0x20 @ 1
[ 0.290475] initcall tgl_pinctrl_driver_init+0x0/0x20 returned 0 after 4 usecs
[ 0.290477] calling crystalcove_pwm_driver_init+0x0/0x20 @ 1
[ 0.290484] initcall crystalcove_pwm_driver_init+0x0/0x20 returned 0 after 5 usecs
[ 0.290486] calling pcie_portdrv_init+0x0/0x50 @ 1
[ 0.290749] probe of 0000:00:1c.0 returned 0 after 246 usecs
[ 0.290915] probe of 0000:00:1c.4 returned 0 after 163 usecs
[ 0.291056] probe of 0000:00:1d.0 returned 0 after 139 usecs
[ 0.291062] initcall pcie_portdrv_init+0x0/0x50 returned 0 after 574 usecs
[ 0.291065] calling pci_proc_init+0x0/0x80 @ 1
[ 0.291080] initcall pci_proc_init+0x0/0x80 returned 0 after 12 usecs
[ 0.291082] calling pci_hotplug_init+0x0/0x40 @ 1
[ 0.291084] initcall pci_hotplug_init+0x0/0x40 returned 0 after 0 usecs
[ 0.291086] calling shpcd_init+0x0/0x60 @ 1
[ 0.291092] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 0.291093] initcall shpcd_init+0x0/0x60 returned 0 after 5 usecs
[ 0.291095] calling xenfb_init+0x0/0x40 @ 1
[ 0.291097] initcall xenfb_init+0x0/0x40 returned -19 after 0 usecs
[ 0.291099] calling vesafb_driver_init+0x0/0x20 @ 1
[ 0.291107] initcall vesafb_driver_init+0x0/0x20 returned 0 after 6 usecs
[ 0.291109] calling efifb_driver_init+0x0/0x20 @ 1
[ 0.291115] initcall efifb_driver_init+0x0/0x20 returned 0 after 3 usecs
[ 0.291117] calling simplefb_driver_init+0x0/0x20 @ 1
[ 0.291124] initcall simplefb_driver_init+0x0/0x20 returned 0 after 4 usecs
[ 0.291126] calling intel_idle_init+0x0/0xd40 @ 1
[ 0.291317] initcall intel_idle_init+0x0/0xd40 returned 0 after 189 usecs
[ 0.291320] calling ged_driver_init+0x0/0x20 @ 1
[ 0.291330] initcall ged_driver_init+0x0/0x20 returned 0 after 7 usecs
[ 0.291345] calling acpi_processor_driver_init+0x0/0xc0 @ 1
[ 0.291364] probe of cpu0 returned 0 after 15 usecs
[ 0.291378] probe of cpu1 returned 0 after 13 usecs
[ 0.291395] probe of cpu2 returned 0 after 11 usecs
[ 0.291408] probe of cpu3 returned 0 after 11 usecs
[ 0.291611] initcall acpi_processor_driver_init+0x0/0xc0 returned 0 after 264 usecs
[ 0.291617] calling acpi_thermal_init+0x0/0x80 @ 1
[ 0.293352] thermal LNXTHERM:00: registered as thermal_zone0
[ 0.293354] ACPI: thermal: Thermal Zone [THM] (25 C)
[ 0.293360] probe of LNXTHERM:00 returned 0 after 1616 usecs
[ 0.293365] initcall acpi_thermal_init+0x0/0x80 returned 0 after 1745 usecs
[ 0.293369] calling acpi_hed_driver_init+0x0/0x20 @ 1
[ 0.293413] initcall acpi_hed_driver_init+0x0/0x20 returned 0 after 29 usecs
[ 0.293416] calling bgrt_init+0x0/0xd0 @ 1
[ 0.293426] initcall bgrt_init+0x0/0xd0 returned 0 after 8 usecs
[ 0.293429] calling erst_init+0x0/0x390 @ 1
[ 0.293432] initcall erst_init+0x0/0x390 returned 0 after 0 usecs
[ 0.293434] calling extlog_init+0x0/0x3b0 @ 1
[ 0.293437] initcall extlog_init+0x0/0x3b0 returned -19 after 0 usecs
[ 0.293439] calling intel_crc_pmic_opregion_driver_init+0x0/0x20 @ 1
[ 0.293446] initcall intel_crc_pmic_opregion_driver_init+0x0/0x20 returned 0 after 4 usecs
[ 0.293449] calling intel_chtcrc_pmic_opregion_driver_init+0x0/0x20 @ 1
[ 0.293454] initcall intel_chtcrc_pmic_opregion_driver_init+0x0/0x20 returned 0 after 3 usecs
[ 0.293457] calling intel_cht_wc_pmic_opregion_driver_init+0x0/0x20 @ 1
[ 0.293462] initcall intel_cht_wc_pmic_opregion_driver_init+0x0/0x20 returned 0 after 3 usecs
[ 0.293465] calling gpio_clk_driver_init+0x0/0x20 @ 1
[ 0.293470] initcall gpio_clk_driver_init+0x0/0x20 returned 0 after 3 usecs
[ 0.293473] calling fch_clk_driver_init+0x0/0x20 @ 1
[ 0.293478] initcall fch_clk_driver_init+0x0/0x20 returned 0 after 2 usecs
[ 0.293481] calling plt_clk_driver_init+0x0/0x20 @ 1
[ 0.293487] initcall plt_clk_driver_init+0x0/0x20 returned 0 after 3 usecs
[ 0.293489] calling virtio_mmio_init+0x0/0x20 @ 1
[ 0.293496] initcall virtio_mmio_init+0x0/0x20 returned 0 after 4 usecs
[ 0.293498] calling virtio_pci_driver_init+0x0/0x20 @ 1
[ 0.293504] initcall virtio_pci_driver_init+0x0/0x20 returned 0 after 4 usecs
[ 0.293505] calling virtio_balloon_driver_init+0x0/0x20 @ 1
[ 0.293509] initcall virtio_balloon_driver_init+0x0/0x20 returned 0 after 2 usecs
[ 0.293511] calling xenbus_probe_initcall+0x0/0xb0 @ 1
[ 0.293512] initcall xenbus_probe_initcall+0x0/0xb0 returned -19 after 0 usecs
[ 0.293514] calling xenbus_init+0x0/0x50 @ 1
[ 0.293515] initcall xenbus_init+0x0/0x50 returned -19 after 0 usecs
[ 0.293516] calling xenbus_backend_init+0x0/0x50 @ 1
[ 0.293517] initcall xenbus_backend_init+0x0/0x50 returned -19 after 0 usecs
[ 0.293519] calling hyper_sysfs_init+0x0/0x230 @ 1
[ 0.293520] initcall hyper_sysfs_init+0x0/0x230 returned -19 after 0 usecs
[ 0.293522] calling hypervisor_subsys_init+0x0/0x30 @ 1
[ 0.293523] initcall hypervisor_subsys_init+0x0/0x30 returned -19 after 0 usecs
[ 0.293524] calling platform_driver_init+0x0/0x20 @ 1
[ 0.293529] initcall platform_driver_init+0x0/0x20 returned 0 after 3 usecs
[ 0.293530] calling xen_late_init_mcelog+0x0/0x70 @ 1
[ 0.293532] initcall xen_late_init_mcelog+0x0/0x70 returned -19 after 0 usecs
[ 0.293533] calling n_null_init+0x0/0x20 @ 1
[ 0.293534] initcall n_null_init+0x0/0x20 returned 0 after 0 usecs
[ 0.293536] calling pty_init+0x0/0x230 @ 1
[ 0.293595] initcall pty_init+0x0/0x230 returned 0 after 57 usecs
[ 0.293597] calling sysrq_init+0x0/0x70 @ 1
[ 0.293600] initcall sysrq_init+0x0/0x70 returned 0 after 1 usecs
[ 0.293602] calling xen_hvc_init+0x0/0x220 @ 1
[ 0.293604] initcall xen_hvc_init+0x0/0x220 returned -19 after 0 usecs
[ 0.293606] calling serial8250_init+0x0/0x110 @ 1
[ 0.293608] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[ 0.293669] probe of serial8250:0 returned 0 after 2 usecs
[ 0.293678] probe of serial8250:0.0 returned 0 after 2 usecs
[ 0.293780] probe of serial8250:0.1 returned 0 after 2 usecs
[ 0.293934] probe of serial8250:0.2 returned 0 after 2 usecs
[ 0.294042] probe of serial8250:0.3 returned 0 after 2 usecs
[ 0.294153] probe of serial8250 returned 0 after 3 usecs
[ 0.294156] initcall serial8250_init+0x0/0x110 returned 0 after 548 usecs
[ 0.294159] calling dw8250_platform_driver_init+0x0/0x20 @ 1
[ 0.294168] initcall dw8250_platform_driver_init+0x0/0x20 returned 0 after 7 usecs
[ 0.294171] calling mid8250_pci_driver_init+0x0/0x20 @ 1
[ 0.294178] initcall mid8250_pci_driver_init+0x0/0x20 returned 0 after 5 usecs
[ 0.294180] calling serial_pci_driver_init+0x0/0x20 @ 1
[ 0.294195] initcall serial_pci_driver_init+0x0/0x20 returned 0 after 12 usecs
[ 0.294209] calling pericom8250_pci_driver_init+0x0/0x20 @ 1
[ 0.294214] initcall pericom8250_pci_driver_init+0x0/0x20 returned 0 after 3 usecs
[ 0.294216] calling random_sysctls_init+0x0/0x30 @ 1
[ 0.294222] initcall random_sysctls_init+0x0/0x30 returned 0 after 4 usecs
[ 0.294223] calling virtio_console_init+0x0/0xe0 @ 1
[ 0.294237] initcall virtio_console_init+0x0/0xe0 returned 0 after 12 usecs
[ 0.294239] calling hpet_init+0x0/0x90 @ 1
[ 0.294363] hpet_acpi_add: no address or irqs in _CRS
[ 0.294366] probe of PNP0103:00 returned 19 after 71 usecs
[ 0.294381] initcall hpet_init+0x0/0x90 returned 0 after 139 usecs
[ 0.294383] calling init_tis+0x0/0xf0 @ 1
[ 0.305704] tpm_tis MSFT0101:00: 2.0 TPM (device-id 0xFE, rev-id 4)
[ 0.340285] probe of MSFT0101:00 returned 0 after 45895 usecs
[ 0.340317] initcall init_tis+0x0/0xf0 returned 0 after 45932 usecs
[ 0.340323] calling crb_acpi_driver_init+0x0/0x20 @ 1
[ 0.340366] probe of MSFT0101:00 returned 19 after 7 usecs
[ 0.340372] initcall crb_acpi_driver_init+0x0/0x20 returned 0 after 46 usecs
[ 0.340375] calling virtio_iommu_drv_init+0x0/0x20 @ 1
[ 0.340381] initcall virtio_iommu_drv_init+0x0/0x20 returned 0 after 3 usecs
[ 0.340383] calling cn_proc_init+0x0/0x40 @ 1
[ 0.340385] initcall cn_proc_init+0x0/0x40 returned 0 after 0 usecs
[ 0.340387] calling topology_sysfs_init+0x0/0x30 @ 1
[ 0.340410] initcall topology_sysfs_init+0x0/0x30 returned 0 after 20 usecs
[ 0.340412] calling cacheinfo_sysfs_init+0x0/0x30 @ 1
[ 0.340666] initcall cacheinfo_sysfs_init+0x0/0x30 returned 0 after 251 usecs
[ 0.340672] calling devcoredump_init+0x0/0x20 @ 1
[ 0.340680] initcall devcoredump_init+0x0/0x20 returned 0 after 5 usecs
[ 0.340683] calling crystal_cove_i2c_driver_init+0x0/0x20 @ 1
[ 0.340691] initcall crystal_cove_i2c_driver_init+0x0/0x20 returned 0 after 5 usecs
[ 0.340694] calling cht_wc_driver_init+0x0/0x20 @ 1
[ 0.340698] initcall cht_wc_driver_init+0x0/0x20 returned 0 after 2 usecs
[ 0.340701] calling cxl_port_driver_init+0x0/0x20 @ 1
[ 0.340707] initcall cxl_port_driver_init+0x0/0x20 returned 0 after 3 usecs
[ 0.340721] calling spidev_init+0x0/0x90 @ 1
[ 0.340730] initcall spidev_init+0x0/0x90 returned 0 after 6 usecs
[ 0.340732] calling blackhole_netdev_init+0x0/0x80 @ 1
[ 0.340741] initcall blackhole_netdev_init+0x0/0x80 returned 0 after 5 usecs
[ 0.340743] calling fixed_mdio_bus_init+0x0/0x100 @ 1
[ 0.340808] initcall fixed_mdio_bus_init+0x0/0x100 returned 0 after 63 usecs
[ 0.340811] calling virtio_net_driver_init+0x0/0xb0 @ 1
[ 0.340816] initcall virtio_net_driver_init+0x0/0xb0 returned 0 after 3 usecs
[ 0.340819] calling net_failover_init+0x0/0x10 @ 1
[ 0.340821] initcall net_failover_init+0x0/0x10 returned 0 after 0 usecs
[ 0.340823] calling i8042_init+0x0/0x7f0 @ 1
[ 0.340844] probe of 00:03 returned 0 after 7 usecs
[ 0.340853] probe of 00:04 returned 0 after 3 usecs
[ 0.340855] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[ 0.342447] i8042: Warning: Keylock active
[ 0.344730] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 0.344735] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 0.344772] probe of i8042 returned 0 after 3889 usecs
[ 0.344774] initcall i8042_init+0x0/0x7f0 returned 0 after 3948 usecs
[ 0.344776] calling input_leds_init+0x0/0x20 @ 1
[ 0.344779] initcall input_leds_init+0x0/0x20 returned 0 after 0 usecs
[ 0.344781] calling mousedev_init+0x0/0xe0 @ 1
[ 0.344872] mousedev: PS/2 mouse device common for all mice
[ 0.344874] initcall mousedev_init+0x0/0xe0 returned 0 after 90 usecs
[ 0.344878] calling atkbd_init+0x0/0x30 @ 1
[ 0.344888] initcall atkbd_init+0x0/0x30 returned 0 after 8 usecs
[ 0.344891] calling xenkbd_init+0x0/0x40 @ 1
[ 0.344893] initcall xenkbd_init+0x0/0x40 returned -19 after 0 usecs
[ 0.344896] calling cmos_init+0x0/0x90 @ 1
[ 0.344906] rtc_cmos 00:01: RTC can wake from S4
[ 0.345615] probe of alarmtimer.0.auto returned 0 after 3 usecs
[ 0.345641] rtc_cmos 00:01: registered as rtc0
[ 0.345810] rtc_cmos 00:01: setting system clock to 2024-08-13T09:54:32 UTC (1723542872)
[ 0.345833] rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram
[ 0.345854] probe of 00:01 returned 0 after 953 usecs
[ 0.345857] initcall cmos_init+0x0/0x90 returned 0 after 959 usecs
[ 0.345877] calling spd5118_driver_init+0x0/0x20 @ 1
[ 0.345882] initcall spd5118_driver_init+0x0/0x20 returned 0 after 2 usecs
[ 0.345884] calling thermal_throttle_init_device+0x0/0x50 @ 1
[ 0.346028] initcall thermal_throttle_init_device+0x0/0x50 returned 0 after 140 usecs
[ 0.346050] calling amd_pstate_init+0x0/0x300 @ 1
[ 0.346053] initcall amd_pstate_init+0x0/0x300 returned -19 after 0 usecs
[ 0.346056] calling intel_pstate_init+0x0/0x8e0 @ 1
[ 0.346060] intel_pstate: Intel P-state driver initializing
[ 0.346205] intel_pstate: HWP enabled
[ 0.346205] initcall intel_pstate_init+0x0/0x8e0 returned 0 after 147 usecs
[ 0.346209] calling haltpoll_init+0x0/0x150 @ 1
[ 0.346212] initcall haltpoll_init+0x0/0x150 returned -19 after 0 usecs
[ 0.346214] calling ledtrig_cpu_init+0x0/0xf0 @ 1
[ 0.346236] ledtrig-cpu: registered to indicate activity on CPUs
[ 0.346237] initcall ledtrig_cpu_init+0x0/0xf0 returned 0 after 19 usecs
[ 0.346240] calling ledtrig_panic_init+0x0/0x50 @ 1
[ 0.346243] initcall ledtrig_panic_init+0x0/0x50 returned 0 after 0 usecs
[ 0.346246] calling dmi_sysfs_init+0x0/0x140 @ 1
[ 0.346446] initcall dmi_sysfs_init+0x0/0x140 returned 0 after 197 usecs
[ 0.346450] calling sysfb_init+0x0/0x1b0 @ 1
[ 0.346478] efifb: probing for efifb
[ 0.346488] efifb: framebuffer at 0x90000000, using 22500k, total 22500k
[ 0.346490] efifb: mode is 3200x1800x32, linelength=12800, pages=1
[ 0.346491] efifb: scrolling: redraw
[ 0.346491] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[ 0.346498] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
[ 0.346574] Console: switching to colour frame buffer device 200x56
[ 0.346583] probe of serio0 returned 0 after 1025 usecs
[ 0.350182] fb0: EFI VGA frame buffer device
[ 0.350186] probe of efi-framebuffer.0 returned 0 after 3711 usecs
[ 0.350188] initcall sysfb_init+0x0/0x1b0 returned 0 after 3735 usecs
[ 0.350192] calling coreboot_table_driver_init+0x0/0x50 @ 1
[ 0.350219] initcall coreboot_table_driver_init+0x0/0x50 returned 0 after 24 usecs
[ 0.350222] calling framebuffer_driver_init+0x0/0x20 @ 1
[ 0.350228] initcall framebuffer_driver_init+0x0/0x20 returned 0 after 3 usecs
[ 0.350231] calling esrt_sysfs_init+0x0/0x360 @ 1
[ 0.350241] initcall esrt_sysfs_init+0x0/0x360 returned 0 after 8 usecs
[ 0.350242] calling pmc_atom_init+0x0/0x2c0 @ 1
[ 0.350249] initcall pmc_atom_init+0x0/0x2c0 returned -19 after 5 usecs
[ 0.350250] calling vmgenid_plaform_driver_init+0x0/0x20 @ 1
[ 0.350257] initcall vmgenid_plaform_driver_init+0x0/0x20 returned 0 after 5 usecs
[ 0.350259] calling cxl_pmu_init+0x0/0x80 @ 1
[ 0.350263] initcall cxl_pmu_init+0x0/0x80 returned 0 after 2 usecs
[ 0.350265] calling sock_diag_init+0x0/0x40 @ 1
[ 0.350277] initcall sock_diag_init+0x0/0x40 returned 0 after 11 usecs
[ 0.350279] calling failover_init+0x0/0x20 @ 1
[ 0.350283] initcall failover_init+0x0/0x20 returned 0 after 1 usecs
[ 0.350285] calling blackhole_init+0x0/0x20 @ 1
[ 0.350287] initcall blackhole_init+0x0/0x20 returned 0 after 0 usecs
[ 0.350289] calling fq_codel_module_init+0x0/0x20 @ 1
[ 0.350290] initcall fq_codel_module_init+0x0/0x20 returned 0 after 0 usecs
[ 0.350292] calling gre_offload_init+0x0/0x60 @ 1
[ 0.350295] initcall gre_offload_init+0x0/0x60 returned 0 after 0 usecs
[ 0.350297] calling sysctl_ipv4_init+0x0/0x70 @ 1
[ 0.350346] initcall sysctl_ipv4_init+0x0/0x70 returned 0 after 47 usecs
[ 0.350348] calling cubictcp_register+0x0/0x90 @ 1
[ 0.350353] initcall cubictcp_register+0x0/0x90 returned 0 after 2 usecs
[ 0.350355] calling inet6_init+0x0/0x3b0 @ 1
[ 0.350380] NET: Registered PF_INET6 protocol family
[ 0.351984] probe of serio1 returned 19 after 5398 usecs
[ 0.353677] Segment Routing with IPv6
[ 0.353693] In-situ OAM (IOAM) with IPv6
[ 0.353717] initcall inet6_init+0x0/0x3b0 returned 0 after 3359 usecs
[ 0.353723] calling mip6_init+0x0/0xc0 @ 1
[ 0.353726] mip6: Mobile IPv6
[ 0.353732] initcall mip6_init+0x0/0xc0 returned 0 after 5 usecs
[ 0.353735] calling packet_init+0x0/0x90 @ 1
[ 0.353741] NET: Registered PF_PACKET protocol family
[ 0.353742] initcall packet_init+0x0/0x90 returned 0 after 4 usecs
[ 0.353744] calling strp_dev_init+0x0/0x40 @ 1
[ 0.353765] initcall strp_dev_init+0x0/0x40 returned 0 after 17 usecs
[ 0.353769] calling dcbnl_init+0x0/0x50 @ 1
[ 0.353773] initcall dcbnl_init+0x0/0x50 returned 0 after 1 usecs
[ 0.353775] calling mpls_gso_init+0x0/0x30 @ 1
[ 0.353777] mpls_gso: MPLS GSO support
[ 0.353779] initcall mpls_gso_init+0x0/0x30 returned 0 after 1 usecs
[ 0.353781] calling pm_check_save_msr+0x0/0xc0 @ 1
[ 0.353789] initcall pm_check_save_msr+0x0/0xc0 returned 0 after 4 usecs
[ 0.353792] calling mcheck_init_device+0x0/0x160 @ 1
[ 0.353935] initcall mcheck_init_device+0x0/0x160 returned 0 after 140 usecs
[ 0.353961] calling kernel_do_mounts_initrd_sysctls_init+0x0/0x30 @ 1
[ 0.353968] initcall kernel_do_mounts_initrd_sysctls_init+0x0/0x30 returned 0 after 2 usecs
[ 0.353971] calling tboot_late_init+0x0/0x390 @ 1
[ 0.353973] initcall tboot_late_init+0x0/0x390 returned 0 after 0 usecs
[ 0.353974] calling sld_mitigate_sysctl_init+0x0/0x30 @ 1
[ 0.353977] initcall sld_mitigate_sysctl_init+0x0/0x30 returned 0 after 1 usecs
[ 0.353979] calling intel_epb_init+0x0/0xa0 @ 1
[ 0.353984] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[ 0.354006] initcall intel_epb_init+0x0/0xa0 returned 0 after 24 usecs
[ 0.354008] calling mcheck_late_init+0x0/0x90 @ 1
[ 0.354015] initcall mcheck_late_init+0x0/0x90 returned 0 after 4 usecs
[ 0.354017] calling severities_debugfs_init+0x0/0x30 @ 1
[ 0.354019] initcall severities_debugfs_init+0x0/0x30 returned 0 after 0 usecs
[ 0.354021] calling microcode_init+0x0/0x1f0 @ 1
[ 0.354024] microcode: Current revision: 0x000000f4
[ 0.354025] microcode: Updated early from: 0x000000f0
[ 0.354072] initcall microcode_init+0x0/0x1f0 returned 0 after 48 usecs
[ 0.354074] calling resctrl_late_init+0x0/0x7b0 @ 1
[ 0.354077] initcall resctrl_late_init+0x0/0x7b0 returned -19 after 0 usecs
[ 0.354079] calling cpu_init_debugfs+0x0/0xf0 @ 1
[ 0.354086] initcall cpu_init_debugfs+0x0/0xf0 returned 0 after 5 usecs
[ 0.354089] calling hpet_insert_resource+0x0/0x30 @ 1
[ 0.354092] initcall hpet_insert_resource+0x0/0x30 returned 0 after 1 usecs
[ 0.354094] calling start_sync_check_timer+0x0/0x60 @ 1
[ 0.354098] initcall start_sync_check_timer+0x0/0x60 returned 0 after 0 usecs
[ 0.354100] calling update_mp_table+0x0/0x650 @ 1
[ 0.354103] initcall update_mp_table+0x0/0x650 returned 0 after 0 usecs
[ 0.354106] calling lapic_insert_resource+0x0/0x50 @ 1
[ 0.354108] initcall lapic_insert_resource+0x0/0x50 returned 0 after 0 usecs
[ 0.354111] calling print_ipi_mode+0x0/0x40 @ 1
[ 0.354113] IPI shorthand broadcast: enabled
[ 0.354114] initcall print_ipi_mode+0x0/0x40 returned 0 after 0 usecs
[ 0.354115] calling print_ICs+0x0/0x1d0 @ 1
[ 0.354116] initcall print_ICs+0x0/0x1d0 returned 0 after 0 usecs
[ 0.354118] calling setup_efi_kvm_sev_migration+0x0/0x1c0 @ 1
[ 0.354120] initcall setup_efi_kvm_sev_migration+0x0/0x1c0 returned 0 after 0 usecs
[ 0.354121] calling create_tlb_single_page_flush_ceiling+0x0/0x30 @ 1
[ 0.354125] initcall create_tlb_single_page_flush_ceiling+0x0/0x30 returned 0 after 0 usecs
[ 0.354127] calling pat_memtype_list_init+0x0/0x40 @ 1
[ 0.354130] initcall pat_memtype_list_init+0x0/0x40 returned 0 after 0 usecs
[ 0.354132] calling create_init_pkru_value+0x0/0x40 @ 1
[ 0.354134] initcall create_init_pkru_value+0x0/0x40 returned 0 after 0 usecs
[ 0.354136] calling kernel_panic_sysctls_init+0x0/0x30 @ 1
[ 0.354142] initcall kernel_panic_sysctls_init+0x0/0x30 returned 0 after 2 usecs
[ 0.354145] calling kernel_panic_sysfs_init+0x0/0x30 @ 1
[ 0.354148] initcall kernel_panic_sysfs_init+0x0/0x30 returned 0 after 1 usecs
[ 0.354151] calling kernel_exit_sysctls_init+0x0/0x30 @ 1
[ 0.354154] initcall kernel_exit_sysctls_init+0x0/0x30 returned 0 after 0 usecs
[ 0.354157] calling kernel_exit_sysfs_init+0x0/0x30 @ 1
[ 0.354160] initcall kernel_exit_sysfs_init+0x0/0x30 returned 0 after 0 usecs
[ 0.354163] calling param_sysfs_builtin_init+0x0/0x200 @ 1
[ 0.355119] initcall param_sysfs_builtin_init+0x0/0x200 returned 0 after 955 usecs
[ 0.355122] calling reboot_ksysfs_init+0x0/0x80 @ 1
[ 0.355128] initcall reboot_ksysfs_init+0x0/0x80 returned 0 after 3 usecs
[ 0.355129] calling sched_core_sysctl_init+0x0/0x30 @ 1
[ 0.355132] initcall sched_core_sysctl_init+0x0/0x30 returned 0 after 1 usecs
[ 0.355134] calling sched_fair_sysctl_init+0x0/0x30 @ 1
[ 0.355136] initcall sched_fair_sysctl_init+0x0/0x30 returned 0 after 1 usecs
[ 0.355138] calling sched_rt_sysctl_init+0x0/0x30 @ 1
[ 0.355141] initcall sched_rt_sysctl_init+0x0/0x30 returned 0 after 1 usecs
[ 0.355142] calling sched_dl_sysctl_init+0x0/0x30 @ 1
[ 0.355144] initcall sched_dl_sysctl_init+0x0/0x30 returned 0 after 0 usecs
[ 0.355146] calling sched_clock_init_late+0x0/0xb0 @ 1
[ 0.355148] sched_clock: Marking stable (348271268, 5800252)->(367506168, -13434648)
[ 0.355181] initcall sched_clock_init_late+0x0/0xb0 returned 0 after 33 usecs
[ 0.355183] calling sched_init_debug+0x0/0x220 @ 1
[ 0.355196] initcall sched_init_debug+0x0/0x220 returned 0 after 11 usecs
[ 0.355198] calling sched_energy_aware_sysctl_init+0x0/0x30 @ 1
[ 0.355200] initcall sched_energy_aware_sysctl_init+0x0/0x30 returned 0 after 0 usecs
[ 0.355202] calling cpu_latency_qos_init+0x0/0x40 @ 1
[ 0.355232] initcall cpu_latency_qos_init+0x0/0x40 returned 0 after 28 usecs
[ 0.355234] calling pm_debugfs_init+0x0/0x30 @ 1
[ 0.355241] initcall pm_debugfs_init+0x0/0x30 returned 0 after 4 usecs
[ 0.355243] calling printk_late_init+0x0/0x170 @ 1
[ 0.355251] initcall printk_late_init+0x0/0x170 returned 0 after 3 usecs
[ 0.355252] calling init_srcu_module_notifier+0x0/0x30 @ 1
[ 0.355256] initcall init_srcu_module_notifier+0x0/0x30 returned 0 after 1 usecs
[ 0.355258] calling swiotlb_create_default_debugfs+0x0/0xa0 @ 1
[ 0.355262] initcall swiotlb_create_default_debugfs+0x0/0xa0 returned 0 after 2 usecs
[ 0.355264] calling module_decompress_sysfs_init+0x0/0x40 @ 1
[ 0.355267] initcall module_decompress_sysfs_init+0x0/0x40 returned 0 after 0 usecs
[ 0.355269] calling tk_debug_sleep_time_init+0x0/0x30 @ 1
[ 0.355272] initcall tk_debug_sleep_time_init+0x0/0x30 returned 0 after 0 usecs
[ 0.355274] calling bpf_ksym_iter_register+0x0/0x30 @ 1
[ 0.355277] initcall bpf_ksym_iter_register+0x0/0x30 returned 0 after 0 usecs
[ 0.355279] calling kernel_acct_sysctls_init+0x0/0x30 @ 1
[ 0.355282] initcall kernel_acct_sysctls_init+0x0/0x30 returned 0 after 0 usecs
[ 0.355284] calling kexec_core_sysctl_init+0x0/0x30 @ 1
[ 0.355287] initcall kexec_core_sysctl_init+0x0/0x30 returned 0 after 1 usecs
[ 0.355289] calling bpf_rstat_kfunc_init+0x0/0x20 @ 1
[ 0.355294] initcall bpf_rstat_kfunc_init+0x0/0x20 returned 0 after 2 usecs
[ 0.355296] calling debugfs_kprobe_init+0x0/0x80 @ 1
[ 0.355300] initcall debugfs_kprobe_init+0x0/0x80 returned 0 after 2 usecs
[ 0.355302] calling kernel_delayacct_sysctls_init+0x0/0x30 @ 1
[ 0.355306] initcall kernel_delayacct_sysctls_init+0x0/0x30 returned 0 after 0 usecs
[ 0.355309] calling taskstats_init+0x0/0x40 @ 1
[ 0.355314] registered taskstats version 1
[ 0.355315] initcall taskstats_init+0x0/0x40 returned 0 after 3 usecs
[ 0.355317] calling ftrace_sysctl_init+0x0/0x30 @ 1
[ 0.355321] initcall ftrace_sysctl_init+0x0/0x30 returned 0 after 0 usecs
[ 0.355323] calling bpf_key_sig_kfuncs_init+0x0/0x20 @ 1
[ 0.355326] initcall bpf_key_sig_kfuncs_init+0x0/0x20 returned 0 after 1 usecs
[ 0.355328] calling bpf_fs_kfuncs_init+0x0/0x20 @ 1
[ 0.355330] initcall bpf_fs_kfuncs_init+0x0/0x20 returned 0 after 0 usecs
[ 0.355331] calling bpf_kprobe_multi_kfuncs_init+0x0/0x20 @ 1
[ 0.355334] initcall bpf_kprobe_multi_kfuncs_init+0x0/0x20 returned 0 after 0 usecs
[ 0.355335] calling bpf_global_ma_init+0x0/0x30 @ 1
[ 0.355358] initcall bpf_global_ma_init+0x0/0x30 returned 0 after 20 usecs
[ 0.355360] calling bpf_syscall_sysctl_init+0x0/0x30 @ 1
[ 0.355362] initcall bpf_syscall_sysctl_init+0x0/0x30 returned 0 after 1 usecs
[ 0.355364] calling unbound_reg_init+0x0/0x20 @ 1
[ 0.355366] initcall unbound_reg_init+0x0/0x20 returned 0 after 0 usecs
[ 0.355368] calling kfunc_init+0x0/0xe0 @ 1
[ 0.355386] initcall kfunc_init+0x0/0xe0 returned 0 after 17 usecs
[ 0.355388] calling bpf_map_iter_init+0x0/0x40 @ 1
[ 0.355390] initcall bpf_map_iter_init+0x0/0x40 returned 0 after 0 usecs
[ 0.355392] calling init_subsystem+0x0/0x20 @ 1
[ 0.355396] initcall init_subsystem+0x0/0x20 returned 0 after 2 usecs
[ 0.355398] calling task_iter_init+0x0/0xd0 @ 1
[ 0.355399] initcall task_iter_init+0x0/0xd0 returned 0 after 0 usecs
[ 0.355401] calling bpf_prog_iter_init+0x0/0x30 @ 1
[ 0.355403] initcall bpf_prog_iter_init+0x0/0x30 returned 0 after 0 usecs
[ 0.355405] calling bpf_link_iter_init+0x0/0x30 @ 1
[ 0.355412] initcall bpf_link_iter_init+0x0/0x30 returned 0 after 0 usecs
[ 0.355414] calling init_trampolines+0x0/0x20 @ 1
[ 0.355416] initcall init_trampolines+0x0/0x20 returned 0 after 0 usecs
[ 0.355418] calling kfunc_init+0x0/0x20 @ 1
[ 0.355422] initcall kfunc_init+0x0/0x20 returned 0 after 2 usecs
[ 0.355423] calling bpf_cgroup_iter_init+0x0/0x30 @ 1
[ 0.355425] initcall bpf_cgroup_iter_init+0x0/0x30 returned 0 after 0 usecs
[ 0.355427] calling cpumask_kfunc_init+0x0/0xb0 @ 1
[ 0.355439] initcall cpumask_kfunc_init+0x0/0xb0 returned 0 after 10 usecs
[ 0.355441] calling crypto_kfunc_init+0x0/0xb0 @ 1
[ 0.355449] initcall crypto_kfunc_init+0x0/0xb0 returned 0 after 5 usecs
[ 0.355450] calling load_system_certificate_list+0x0/0x40 @ 1
[ 0.355452] Loading compiled-in X.509 certificates
[ 0.355453] initcall load_system_certificate_list+0x0/0x40 returned 0 after 0 usecs
[ 0.355455] calling init_lru_gen+0x0/0x70 @ 1
[ 0.355460] initcall init_lru_gen+0x0/0x70 returned 0 after 2 usecs
[ 0.355462] calling fault_around_debugfs+0x0/0x30 @ 1
[ 0.355465] initcall fault_around_debugfs+0x0/0x30 returned 0 after 0 usecs
[ 0.355467] calling slab_sysfs_init+0x0/0x100 @ 1
[ 0.356827] initcall slab_sysfs_init+0x0/0x100 returned 0 after 1358 usecs
[ 0.356831] calling max_swapfiles_check+0x0/0x10 @ 1
[ 0.356834] initcall max_swapfiles_check+0x0/0x10 returned 0 after 0 usecs
[ 0.356836] calling zswap_init+0x0/0x20 @ 1
[ 0.356839] initcall zswap_init+0x0/0x20 returned 0 after 0 usecs
[ 0.356841] calling hugetlb_vmemmap_init+0x0/0x80 @ 1
[ 0.356847] initcall hugetlb_vmemmap_init+0x0/0x80 returned 0 after 2 usecs
[ 0.356849] calling mempolicy_sysfs_init+0x0/0x2c0 @ 1
[ 0.356853] initcall mempolicy_sysfs_init+0x0/0x2c0 returned 0 after 1 usecs
[ 0.356856] calling kfence_debugfs_init+0x0/0x20 @ 1
[ 0.356859] initcall kfence_debugfs_init+0x0/0x20 returned 0 after 0 usecs
[ 0.356861] calling memory_tier_late_init+0x0/0x90 @ 1
[ 0.356882] Demotion targets for Node 0: null
[ 0.356884] initcall memory_tier_late_init+0x0/0x90 returned 0 after 21 usecs
[ 0.356889] calling split_huge_pages_debugfs+0x0/0x30 @ 1
[ 0.356894] initcall split_huge_pages_debugfs+0x0/0x30 returned 0 after 2 usecs
[ 0.356897] calling kmemleak_late_init+0x0/0x90 @ 1
[ 0.356901] initcall kmemleak_late_init+0x0/0x90 returned -12 after 2 usecs
[ 0.356902] calling check_early_ioremap_leak+0x0/0x50 @ 1
[ 0.356904] initcall check_early_ioremap_leak+0x0/0x50 returned 0 after 0 usecs
[ 0.356906] calling set_hardened_usercopy+0x0/0x30 @ 1
[ 0.356907] initcall set_hardened_usercopy+0x0/0x30 returned 1 after 0 usecs
[ 0.356909] calling fscrypt_init+0x0/0x90 @ 1
[ 0.357071] Key type .fscrypt registered
[ 0.357073] Key type fscrypt-provisioning registered
[ 0.357074] initcall fscrypt_init+0x0/0x90 returned 0 after 163 usecs
[ 0.357077] calling fsverity_init+0x0/0x50 @ 1
[ 0.357101] initcall fsverity_init+0x0/0x50 returned 0 after 22 usecs
[ 0.357103] calling pstore_init+0x0/0x60 @ 1
[ 0.357108] initcall pstore_init+0x0/0x60 returned 0 after 3 usecs
[ 0.357110] calling init_root_keyring+0x0/0x20 @ 1
[ 0.357118] initcall init_root_keyring+0x0/0x20 returned 0 after 5 usecs
[ 0.357120] calling init_encrypted+0x0/0xd0 @ 1
[ 0.361697] calling cryptd_init+0x0/0x1000 [cryptd] @ 91
[ 0.361729] cryptd: max_cpu_qlen set to 1000
[ 0.361731] initcall cryptd_init+0x0/0x1000 [cryptd] returned 0 after 27 usecs
[ 0.362415] calling aesni_init+0x0/0x1000 [aesni_intel] @ 91
[ 0.362433] AES CTR mode by8 optimization enabled
[ 0.362461] initcall aesni_init+0x0/0x1000 [aesni_intel] returned 0 after 41 usecs
[ 0.376493] Key type encrypted registered
[ 0.376497] initcall init_encrypted+0x0/0xd0 returned 0 after 14076 usecs
[ 0.376503] calling init_profile_hash+0x0/0x80 @ 1
[ 0.376507] AppArmor: AppArmor sha256 policy hashing enabled
[ 0.376508] initcall init_profile_hash+0x0/0x80 returned 0 after 1 usecs
[ 0.376511] calling integrity_fs_init+0x0/0x60 @ 1
[ 0.376517] initcall integrity_fs_init+0x0/0x60 returned 0 after 3 usecs
[ 0.376520] calling crypto_algapi_init+0x0/0x90 @ 1
[ 0.376863] initcall crypto_algapi_init+0x0/0x90 returned 0 after 340 usecs
[ 0.376876] calling blk_timeout_init+0x0/0x20 @ 1
[ 0.376879] initcall blk_timeout_init+0x0/0x20 returned 0 after 0 usecs
[ 0.376881] calling sed_opal_init+0x0/0x110 @ 1
[ 0.376891] initcall sed_opal_init+0x0/0x110 returned 0 after 6 usecs
[ 0.376894] calling depot_debugfs_init+0x0/0x40 @ 1
[ 0.376901] initcall depot_debugfs_init+0x0/0x40 returned 0 after 4 usecs
[ 0.376903] calling pci_resource_alignment_sysfs_init+0x0/0x20 @ 1
[ 0.376909] initcall pci_resource_alignment_sysfs_init+0x0/0x20 returned 0 after 3 usecs
[ 0.376911] calling pci_sysfs_init+0x0/0x80 @ 1
[ 0.376936] initcall pci_sysfs_init+0x0/0x80 returned 0 after 23 usecs
[ 0.376939] calling bert_init+0x0/0x2e0 @ 1
[ 0.376943] initcall bert_init+0x0/0x2e0 returned 0 after 1 usecs
[ 0.376945] calling clk_debug_init+0x0/0x110 @ 1
[ 0.376952] initcall clk_debug_init+0x0/0x110 returned 0 after 3 usecs
[ 0.376954] calling setup_vcpu_hotplug_event+0x0/0x30 @ 1
[ 0.376956] initcall setup_vcpu_hotplug_event+0x0/0x30 returned -19 after 0 usecs
[ 0.376958] calling boot_wait_for_devices+0x0/0x30 @ 1
[ 0.376960] initcall boot_wait_for_devices+0x0/0x30 returned -19 after 0 usecs
[ 0.376961] calling dmar_free_unused_resources+0x0/0xe0 @ 1
[ 0.376964] initcall dmar_free_unused_resources+0x0/0xe0 returned 0 after 0 usecs
[ 0.376966] calling sync_state_resume_initcall+0x0/0x20 @ 1
[ 0.376969] initcall sync_state_resume_initcall+0x0/0x20 returned 0 after 0 usecs
[ 0.376970] calling deferred_probe_initcall+0x0/0x90 @ 1
[ 0.376982] initcall deferred_probe_initcall+0x0/0x90 returned 0 after 9 usecs
[ 0.376984] calling firmware_memmap_init+0x0/0x40 @ 1
[ 0.377017] initcall firmware_memmap_init+0x0/0x40 returned 0 after 30 usecs
[ 0.377020] calling register_update_efi_random_seed+0x0/0x30 @ 1
[ 0.377022] initcall register_update_efi_random_seed+0x0/0x30 returned 0 after 0 usecs
[ 0.377024] calling efi_shutdown_init+0x0/0x50 @ 1
[ 0.377026] initcall efi_shutdown_init+0x0/0x50 returned 0 after 0 usecs
[ 0.377027] calling efi_earlycon_unmap_fb+0x0/0x50 @ 1
[ 0.377029] initcall efi_earlycon_unmap_fb+0x0/0x50 returned 0 after 0 usecs
[ 0.377032] calling itmt_legacy_init+0x0/0x50 @ 1
[ 0.377036] initcall itmt_legacy_init+0x0/0x50 returned -19 after 2 usecs
[ 0.377037] calling cec_init+0x0/0x1e0 @ 1
[ 0.377044] RAS: Correctable Errors collector initialized.
[ 0.377045] initcall cec_init+0x0/0x1e0 returned 0 after 6 usecs
[ 0.377047] calling bpf_kfunc_init+0x0/0x130 @ 1
[ 0.377057] initcall bpf_kfunc_init+0x0/0x130 returned 0 after 8 usecs
[ 0.377059] calling init_subsystem+0x0/0x20 @ 1
[ 0.377066] initcall init_subsystem+0x0/0x20 returned 0 after 3 usecs
[ 0.377068] calling xdp_metadata_init+0x0/0x20 @ 1
[ 0.377072] initcall xdp_metadata_init+0x0/0x20 returned 0 after 1 usecs
[ 0.377074] calling bpf_sockmap_iter_init+0x0/0x30 @ 1
[ 0.377076] initcall bpf_sockmap_iter_init+0x0/0x30 returned 0 after 0 usecs
[ 0.377078] calling bpf_sk_storage_map_iter_init+0x0/0x30 @ 1
[ 0.377080] initcall bpf_sk_storage_map_iter_init+0x0/0x30 returned 0 after 0 usecs
[ 0.377082] calling sch_default_qdisc+0x0/0x20 @ 1
[ 0.377085] initcall sch_default_qdisc+0x0/0x20 returned 0 after 1 usecs
[ 0.377087] calling bpf_prog_test_run_init+0x0/0xb0 @ 1
[ 0.377098] initcall bpf_prog_test_run_init+0x0/0xb0 returned 0 after 8 usecs
[ 0.377100] calling bpf_dummy_struct_ops_init+0x0/0x20 @ 1
[ 0.378745] initcall bpf_dummy_struct_ops_init+0x0/0x20 returned 0 after 1643 usecs
[ 0.378751] calling tcp_congestion_default+0x0/0x20 @ 1
[ 0.378754] initcall tcp_congestion_default+0x0/0x20 returned 0 after 0 usecs
[ 0.378756] calling tcp_bpf_v4_build_proto+0x0/0x90 @ 1
[ 0.378759] initcall tcp_bpf_v4_build_proto+0x0/0x90 returned 0 after 0 usecs
[ 0.378761] calling udp_bpf_v4_build_proto+0x0/0x50 @ 1
[ 0.378763] initcall udp_bpf_v4_build_proto+0x0/0x50 returned 0 after 0 usecs
[ 0.378766] calling bpf_tcp_ca_kfunc_init+0x0/0x30 @ 1
[ 0.386802] initcall bpf_tcp_ca_kfunc_init+0x0/0x30 returned 0 after 8033 usecs
[ 0.386810] calling bpf_mptcp_kfunc_init+0x0/0x20 @ 1
[ 0.386814] initcall bpf_mptcp_kfunc_init+0x0/0x20 returned 0 after 1 usecs
[ 0.386817] calling pci_mmcfg_late_insert_resources+0x0/0xc0 @ 1
[ 0.386821] initcall pci_mmcfg_late_insert_resources+0x0/0xc0 returned 0 after 1 usecs
[ 0.386825] calling software_resume_initcall+0x0/0x180 @ 1
[ 0.386828] initcall software_resume_initcall+0x0/0x180 returned -2 after 0 usecs
[ 0.386830] calling lockup_detector_check+0x0/0x80 @ 1
[ 0.386842] initcall lockup_detector_check+0x0/0x80 returned 0 after 9 usecs
[ 0.386845] calling ftrace_check_sync+0x0/0x20 @ 1
[ 0.386853] initcall ftrace_check_sync+0x0/0x20 returned 0 after 5 usecs
[ 0.386855] calling latency_fsnotify_init+0x0/0x40 @ 1
[ 0.386865] initcall latency_fsnotify_init+0x0/0x40 returned 0 after 7 usecs
[ 0.386866] calling trace_eval_sync+0x0/0x20 @ 1
[ 0.386869] initcall trace_eval_sync+0x0/0x20 returned 0 after 1 usecs
[ 0.386871] calling late_trace_init+0x0/0xb0 @ 1
[ 0.386872] initcall late_trace_init+0x0/0xb0 returned 0 after 0 usecs
[ 0.386874] calling acpi_gpio_handle_deferred_request_irqs+0x0/0x90 @ 1
[ 0.386877] initcall acpi_gpio_handle_deferred_request_irqs+0x0/0x90 returned 0 after 0 usecs
[ 0.386878] calling clk_disable_unused+0x0/0x140 @ 1
[ 0.386882] clk: Disabling unused clocks
[ 0.386883] initcall clk_disable_unused+0x0/0x140 returned 0 after 1 usecs
[ 0.386886] calling balloon_wait_finish+0x0/0x100 @ 1
[ 0.386888] initcall balloon_wait_finish+0x0/0x100 returned -19 after 0 usecs
[ 0.386889] calling regulator_init_complete+0x0/0x30 @ 1
[ 0.386891] initcall regulator_init_complete+0x0/0x30 returned 0 after 0 usecs
[ 0.387673] Freeing unused decrypted memory: 2036K
[ 0.388058] Freeing unused kernel image (initmem) memory: 2892K
[ 0.388072] Write protecting the kernel read-only data: 24576k
[ 0.388425] Freeing unused kernel image (rodata/data gap) memory: 436K
[ 0.400278] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 0.400284] Run /init as init process
[ 0.400285] with arguments:
[ 0.400286] /init
[ 0.400287] with environment:
[ 0.400288] HOME=/
[ 0.400288] TERM=linux
[ 0.400289] BOOT_IMAGE=/vmlinuz-6.11.0-rc3-00007-gd74da846046a
[ 0.473541] calling idma64_platform_driver_init+0x0/0x1000 [idma64] @ 170
[ 0.473571] calling hid_init+0x0/0x50 [hid] @ 162
[ 0.473586] initcall idma64_platform_driver_init+0x0/0x1000 [idma64] returned 0 after 3 usecs
[ 0.473600] hid: raw HID events driver (C) Jiri Kosina
[ 0.473607] initcall hid_init+0x0/0x50 [hid] returned 0 after 24 usecs
[ 0.473847] calling intel_lpss_init+0x0/0x1000 [intel_lpss] @ 170
[ 0.473862] initcall intel_lpss_init+0x0/0x1000 [intel_lpss] returned 0 after 5 usecs
[ 0.474260] calling intel_lpss_pci_driver_init+0x0/0x1000 [intel_lpss_pci] @ 170
[ 0.474519] intel-lpss 0000:00:15.0: enabling device (0000 -> 0002)
[ 0.475302] idma64 idma64.0: Found Intel integrated DMA 64-bit
[ 0.475317] probe of idma64.0 returned 0 after 552 usecs
[ 0.493316] probe of i2c_designware.0 returned 0 after 17958 usecs
[ 0.493342] probe of 0000:00:15.0 returned 0 after 19060 usecs
[ 0.493453] intel-lpss 0000:00:15.1: enabling device (0000 -> 0002)
[ 0.493783] idma64 idma64.1: Found Intel integrated DMA 64-bit
[ 0.493794] probe of idma64.1 returned 0 after 96 usecs
[ 0.497190] calling drm_core_init+0x0/0x1000 [drm] @ 162
[ 0.497281] ACPI: bus type drm_connector registered
[ 0.497287] initcall drm_core_init+0x0/0x1000 [drm] returned 0 after 34 usecs
[ 0.498462] calling i2c_hid_acpi_driver_init+0x0/0x1000 [i2c_hid_acpi] @ 162
[ 0.498481] initcall i2c_hid_acpi_driver_init+0x0/0x1000 [i2c_hid_acpi] returned 0 after 14 usecs
[ 0.498880] calling nvme_core_init+0x0/0x1000 [nvme_core] @ 169
[ 0.499090] calling usb_common_init+0x0/0x30 [usb_common] @ 171
[ 0.499101] initcall usb_common_init+0x0/0x30 [usb_common] returned 0 after 5 usecs
[ 0.499121] calling smbalert_driver_init+0x0/0x1000 [i2c_smbus] @ 156
[ 0.499143] initcall smbalert_driver_init+0x0/0x1000 [i2c_smbus] returned 0 after 14 usecs
[ 0.499594] calling i801_driver_init+0x0/0x1000 [i2c_i801] @ 156
[ 0.499755] initcall nvme_core_init+0x0/0x1000 [nvme_core] returned 0 after 154 usecs
[ 0.500101] calling sha1_ssse3_mod_init+0x0/0x1000 [sha1_ssse3] @ 157
[ 0.500164] initcall i801_driver_init+0x0/0x1000 [i2c_i801] returned 0 after 56 usecs
[ 0.500239] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[ 0.500268] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[ 0.500563] initcall sha1_ssse3_mod_init+0x0/0x1000 [sha1_ssse3] returned 0 after 455 usecs
[ 0.507883] calling usb_init+0x0/0x170 [usbcore] @ 171
[ 0.507921] ACPI: bus type USB registered
[ 0.507949] usbcore: registered new interface driver usbfs
[ 0.507956] usbcore: registered new interface driver hub
[ 0.507964] usbcore: registered new device driver usb
[ 0.507966] initcall usb_init+0x0/0x170 [usbcore] returned 0 after 58 usecs
[ 0.515324] probe of i2c_designware.1 returned 0 after 21492 usecs
[ 0.515340] probe of 0000:00:15.1 returned 0 after 21992 usecs
[ 0.515359] initcall intel_lpss_pci_driver_init+0x0/0x1000 [intel_lpss_pci] returned 0 after 7451 usecs
[ 0.522941] probe of 0000:00:1f.4 returned 0 after 23309 usecs
[ 0.667979] probe of i2c-DLL075B:01 returned 0 after 154419 usecs
[ 0.668467] calling sha256_ssse3_mod_init+0x0/0x1000 [sha256_ssse3] @ 157
[ 0.669346] calling nvme_init+0x0/0x1000 [nvme] @ 169
[ 0.669394] initcall nvme_init+0x0/0x1000 [nvme] returned 0 after 36 usecs
[ 0.669709] initcall sha256_ssse3_mod_init+0x0/0x1000 [sha256_ssse3] returned 0 after 352 usecs
[ 0.669713] nvme nvme0: pci function 0000:3b:00.0
[ 0.673318] calling hid_generic_init+0x0/0x1000 [hid_generic] @ 155
[ 0.673488] calling xhci_hcd_init+0x0/0x30 [xhci_hcd] @ 171
[ 0.673517] initcall xhci_hcd_init+0x0/0x30 [xhci_hcd] returned 0 after 6 usecs
[ 0.673928] 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.674011] 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.674173] hid-generic 0018:06CB:76AF.0001: input,hidraw0: I2C HID v1.00 Mouse [DLL075B:01 06CB:76AF] on i2c-DLL075B:01
[ 0.674190] probe of 0018:06CB:76AF.0001 returned 0 after 858 usecs
[ 0.674210] initcall hid_generic_init+0x0/0x1000 [hid_generic] returned 0 after 698 usecs
[ 0.686895] nvme nvme0: 4/0/0 default/read/poll queues
[ 0.693164] nvme0n1: p1 p2 p3 p4
[ 0.693653] probe of 0000:3b:00.0 returned 0 after 24047 usecs
[ 0.694773] calling xhci_pci_init+0x0/0x1000 [xhci_pci] @ 171
[ 0.694778] calling sha512_generic_mod_init+0x0/0x1000 [sha512_generic] @ 157
[ 0.694969] initcall sha512_generic_mod_init+0x0/0x1000 [sha512_generic] returned 0 after 174 usecs
[ 0.695209] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 0.695228] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[ 0.695578] calling sha512_ssse3_mod_init+0x0/0x1000 [sha512_ssse3] @ 157
[ 0.695954] initcall sha512_ssse3_mod_init+0x0/0x1000 [sha512_ssse3] returned 0 after 360 usecs
[ 0.696374] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x0000000081109810
[ 0.697354] calling ghash_pclmulqdqni_mod_init+0x0/0x1000 [ghash_clmulni_intel] @ 164
[ 0.697734] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 0.697762] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[ 0.697778] xhci_hcd 0000:00:14.0: Host supports USB 3.0 SuperSpeed
[ 0.697934] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.11
[ 0.697948] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.697956] usb usb1: Product: xHCI Host Controller
[ 0.697961] usb usb1: Manufacturer: Linux 6.11.0-rc3-00007-gd74da846046a xhci-hcd
[ 0.697967] usb usb1: SerialNumber: 0000:00:14.0
[ 0.698321] initcall ghash_pclmulqdqni_mod_init+0x0/0x1000 [ghash_clmulni_intel] returned 0 after 946 usecs
[ 0.699060] calling crc32c_intel_mod_init+0x0/0x1000 [crc32c_intel] @ 157
[ 0.699200] initcall crc32c_intel_mod_init+0x0/0x1000 [crc32c_intel] returned 0 after 120 usecs
[ 0.699429] hub 1-0:1.0: USB hub found
[ 0.699567] hub 1-0:1.0: 12 ports detected
[ 0.699835] calling crc32_pclmul_mod_init+0x0/0x1000 [crc32_pclmul] @ 157
[ 0.699973] initcall crc32_pclmul_mod_init+0x0/0x1000 [crc32_pclmul] returned 0 after 120 usecs
[ 0.700563] calling crct10dif_intel_mod_init+0x0/0x1000 [crct10dif_pclmul] @ 157
[ 0.700691] initcall crct10dif_intel_mod_init+0x0/0x1000 [crct10dif_pclmul] returned 0 after 111 usecs
[ 0.705031] probe of 1-0:1.0 returned 0 after 5622 usecs
[ 0.705166] probe of usb1 returned 0 after 6556 usecs
[ 0.705324] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.11
[ 0.705335] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.705340] usb usb2: Product: xHCI Host Controller
[ 0.705344] usb usb2: Manufacturer: Linux 6.11.0-rc3-00007-gd74da846046a xhci-hcd
[ 0.705347] usb usb2: SerialNumber: 0000:00:14.0
[ 0.705692] hub 2-0:1.0: USB hub found
[ 0.705725] hub 2-0:1.0: 6 ports detected
[ 0.708269] probe of 2-0:1.0 returned 0 after 2591 usecs
[ 0.708358] probe of usb2 returned 0 after 2804 usecs
[ 0.708503] probe of 0000:00:14.0 returned 0 after 13697 usecs
[ 0.708549] initcall xhci_pci_init+0x0/0x1000 [xhci_pci] returned 0 after 7969 usecs
[ 0.754317] calling dm_init+0x0/0x60 [dm_mod] @ 214
[ 0.754422] device-mapper: uevent: version 1.0.3
[ 0.754607] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@lists.linux.dev
[ 0.754615] initcall dm_init+0x0/0x60 [dm_mod] returned 0 after 259 usecs
[ 0.756375] calling dm_crypt_init+0x0/0x1000 [dm_crypt] @ 214
[ 0.756388] initcall dm_crypt_init+0x0/0x1000 [dm_crypt] returned 0 after 0 usecs
[ 0.958065] usb 1-3: new full-speed USB device number 2 using xhci_hcd
[ 1.108604] usb 1-3: New USB device found, idVendor=0cf3, idProduct=e300, bcdDevice= 0.01
[ 1.108619] usb 1-3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 1.111392] probe of 1-3 returned 0 after 2230 usecs
[ 1.238037] usb 1-4: new full-speed USB device number 3 using xhci_hcd
[ 1.274005] tsc: Refined TSC clocksource calibration: 2904.008 MHz
[ 1.274025] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x29dc0d988f1, max_idle_ns: 440795328788 ns
[ 1.274101] clocksource: Switched to clocksource tsc
[ 1.389248] usb 1-4: New USB device found, idVendor=04f3, idProduct=2234, bcdDevice=11.11
[ 1.389264] usb 1-4: New USB device strings: Mfr=4, Product=14, SerialNumber=0
[ 1.389271] usb 1-4: Product: Touchscreen
[ 1.389276] usb 1-4: Manufacturer: ELAN
[ 1.391517] probe of 1-4 returned 0 after 1617 usecs
[ 1.398125] calling hid_init+0x0/0x1000 [usbhid] @ 155
[ 1.407646] 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.407833] 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.407888] 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.408108] 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.408145] probe of 0003:04F3:2234.0002 returned 0 after 2628 usecs
[ 1.408180] probe of 1-4:1.0 returned 0 after 10000 usecs
[ 1.408207] usbcore: registered new interface driver usbhid
[ 1.408211] usbhid: USB HID core driver
[ 1.408214] initcall hid_init+0x0/0x1000 [usbhid] returned 0 after 10054 usecs
[ 1.518095] usb 1-5: new high-speed USB device number 4 using xhci_hcd
[ 1.727140] usb 1-5: New USB device found, idVendor=0c45, idProduct=670c, bcdDevice=56.26
[ 1.727157] usb 1-5: New USB device strings: Mfr=2, Product=1, SerialNumber=0
[ 1.727163] usb 1-5: Product: Integrated_Webcam_HD
[ 1.727168] usb 1-5: Manufacturer: CN09GTFMLOG008C8B7FWA01
[ 1.736305] probe of 1-5 returned 0 after 8507 usecs
[ 7.192810] PM: Image not found (code -22)
[ 7.246806] calling journal_init+0x0/0xee0 [jbd2] @ 352
[ 7.247109] initcall journal_init+0x0/0xee0 [jbd2] returned 0 after 248 usecs
[ 7.248216] calling mbcache_init+0x0/0x1000 [mbcache] @ 352
[ 7.248250] initcall mbcache_init+0x0/0x1000 [mbcache] returned 0 after 17 usecs
[ 7.290513] calling ext4_init_fs+0x0/0x1f0 [ext4] @ 352
[ 7.290661] initcall ext4_init_fs+0x0/0x1f0 [ext4] returned 0 after 112 usecs
[ 7.294930] EXT4-fs (dm-0): mounted filesystem 32e29882-d94d-4a92-9ee4-4d03002bfa29 ro with ordered data mode. Quota mode: none.
[ 7.421048] calling init_autofs_fs+0x0/0x40 [autofs4] @ 1
[ 7.421186] initcall init_autofs_fs+0x0/0x40 [autofs4] returned 0 after 116 usecs
[ 7.421363] systemd[1]: Inserted module 'autofs4'
[ 7.435446] calling efivarfs_init+0x0/0x1000 [efivarfs] @ 382
[ 7.435480] initcall efivarfs_init+0x0/0x1000 [efivarfs] returned 0 after 13 usecs
[ 7.464505] systemd[1]: systemd 256.4-3 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)
[ 7.464521] systemd[1]: Detected architecture x86-64.
[ 7.466550] systemd[1]: Hostname set to <abreu>.
[ 7.685174] systemd[1]: bpf-restrict-fs: LSM BPF program attached
[ 7.828394] systemd[1]: Queued start job for default target graphical.target.
[ 7.832562] calling nfnetlink_init+0x0/0x1000 [nfnetlink] @ 401
[ 7.832585] initcall nfnetlink_init+0x0/0x1000 [nfnetlink] returned 0 after 17 usecs
[ 7.867475] systemd[1]: Created slice system-getty.slice - Slice /system/getty.
[ 7.867901] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
[ 7.868278] systemd[1]: Created slice system-systemd\x2dcryptsetup.slice - Encrypted Volume Units Service Slice.
[ 7.868662] systemd[1]: Created slice system-systemd\x2dfsck.slice - Slice /system/systemd-fsck.
[ 7.868934] systemd[1]: Created slice user.slice - User and Session Slice.
[ 7.869011] systemd[1]: Started systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch.
[ 7.869064] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
[ 7.869290] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
[ 7.869322] systemd[1]: Expecting device dev-disk-by\x2ddiskseq-1\x2dpart4.device - /dev/disk/by-diskseq/1-part4...
[ 7.869332] systemd[1]: Expecting device dev-disk-by\x2duuid-2d23fd4c\x2d5d03\x2d4e1a\x2d8a42\x2d0e859d1f00d8.device - /dev/disk/by-uuid/2d23fd4c-5d03-4e1a-8a42-0e859d1f00d8...
[ 7.869341] systemd[1]: Expecting device dev-disk-by\x2duuid-61be8f50\x2d69c5\x2d49a5\x2dbcad\x2d3f4521e9c7b5.device - /dev/disk/by-uuid/61be8f50-69c5-49a5-bcad-3f4521e9c7b5...
[ 7.869347] systemd[1]: Expecting device dev-disk-by\x2duuid-96BD\x2d5653.device - /dev/disk/by-uuid/96BD-5653...
[ 7.869375] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
[ 7.869409] systemd[1]: Reached target nss-user-lookup.target - User and Group Name Lookups.
[ 7.869425] systemd[1]: Reached target paths.target - Path Units.
[ 7.869452] systemd[1]: Reached target remote-fs.target - Remote File Systems.
[ 7.869465] systemd[1]: Reached target slices.target - Slice Units.
[ 7.869512] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
[ 7.871356] systemd[1]: Listening on systemd-coredump.socket - Process Core Dump Socket.
[ 7.872422] systemd[1]: Listening on systemd-creds.socket - Credential Encryption/Decryption.
[ 7.872518] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
[ 7.872633] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
[ 7.872748] systemd[1]: Listening on systemd-journald.socket - Journal Sockets.
[ 7.872810] systemd[1]: systemd-pcrextend.socket - TPM PCR Measurements was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 7.872835] systemd[1]: systemd-pcrlock.socket - Make TPM PCR Policy was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 7.872930] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[ 7.873001] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[ 7.874347] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
[ 7.875328] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
[ 7.876905] systemd[1]: Mounting run-lock.mount - Legacy Locks Directory /run/lock...
[ 7.881965] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
[ 7.883473] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
[ 7.890049] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
[ 7.891902] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
[ 7.900460] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
[ 7.904459] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
[ 7.908633] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
[ 7.908776] 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).
[ 7.908849] 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).
[ 7.914302] systemd[1]: Starting systemd-journald.service - Journal Service...
[ 7.915252] calling configfs_init+0x0/0x1000 [configfs] @ 409
[ 7.915382] initcall configfs_init+0x0/0x1000 [configfs] returned 0 after 120 usecs
[ 7.916386] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
[ 7.916414] systemd[1]: systemd-pcrmachine.service - TPM PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 7.916984] calling efivars_pstore_init+0x0/0xc0 [efi_pstore] @ 411
[ 7.917012] pstore: Using crash dump compression: deflate
[ 7.918009] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
[ 7.918080] systemd[1]: systemd-tpm2-setup-early.service - Early TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 7.922838] pstore: Registered efi_pstore as persistent store backend
[ 7.922842] initcall efivars_pstore_init+0x0/0xc0 [efi_pstore] returned 0 after 5850 usecs
[ 7.923365] systemd[1]: Starting systemd-udev-load-credentials.service - Load udev Rules from Credentials...
[ 7.929448] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
[ 7.934392] calling parport_default_proc_register+0x0/0x1000 [parport] @ 414
[ 7.934426] initcall parport_default_proc_register+0x0/0x1000 [parport] returned 0 after 21 usecs
[ 7.934932] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
[ 7.935078] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
[ 7.935192] systemd[1]: Mounted run-lock.mount - Legacy Locks Directory /run/lock.
[ 7.935292] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
[ 7.935389] systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
[ 7.935602] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
[ 7.936078] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[ 7.936289] systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs.
[ 7.936590] systemd[1]: modprobe@drm.service: Deactivated successfully.
[ 7.936774] systemd[1]: Finished modprobe@drm.service - Load Kernel Module drm.
[ 7.937036] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
[ 7.937229] systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
[ 7.937232] calling lp_init_module+0x0/0x1000 [lp] @ 414
[ 7.937648] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[ 7.937881] systemd[1]: Finished modprobe@fuse.service - Load Kernel Module fuse.
[ 7.939464] systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
[ 7.939614] lp: driver loaded but no devices found
[ 7.939617] initcall lp_init_module+0x0/0x1000 [lp] returned 0 after 2378 usecs
[ 7.942293] systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System...
[ 7.942559] calling ppdev_init+0x0/0x1000 [ppdev] @ 414
[ 7.943856] systemd-journald[413]: Collecting audit messages is disabled.
[ 7.946234] systemd[1]: Starting systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully...
[ 7.949625] systemd[1]: Mounted sys-fs-fuse-connections.mount - FUSE Control File System.
[ 7.951307] ppdev: user-space parallel port driver
[ 7.951320] initcall ppdev_init+0x0/0x1000 [ppdev] returned 0 after 8752 usecs
[ 7.951614] systemd[1]: Mounted sys-kernel-config.mount - Kernel Configuration File System.
[ 7.951996] systemd[1]: Finished systemd-udev-load-credentials.service - Load udev Rules from Credentials.
[ 7.954543] calling parport_pc_init+0x0/0xf20 [parport_pc] @ 414
[ 7.954692] probe of parport_pc.956 returned 0 after 31 usecs
[ 7.954729] probe of parport0 returned 19 after 12 usecs
[ 7.954736] probe of parport0 returned 19 after 3 usecs
[ 7.954867] probe of parport_pc.888 returned 0 after 9 usecs
[ 7.954887] probe of parport0 returned 19 after 3 usecs
[ 7.954892] probe of parport0 returned 19 after 2 usecs
[ 7.955039] probe of parport_pc.632 returned 0 after 8 usecs
[ 7.955057] probe of parport0 returned 19 after 3 usecs
[ 7.955068] probe of parport0 returned 19 after 9 usecs
[ 7.955252] initcall parport_pc_init+0x0/0xf20 [parport_pc] returned 0 after 699 usecs
[ 7.957547] calling msr_init+0x0/0x1000 [msr] @ 414
[ 7.959499] EXT4-fs (dm-0): re-mounted 32e29882-d94d-4a92-9ee4-4d03002bfa29 r/w. Quota mode: none.
[ 7.960682] systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.
[ 7.961036] systemd[1]: systemd-hwdb-update.service - Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
[ 7.961093] systemd[1]: systemd-pstore.service - Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).
[ 7.961982] systemd[1]: Starting systemd-random-seed.service - Load/Save OS Random Seed...
[ 7.962008] systemd[1]: systemd-tpm2-setup.service - TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 7.962152] initcall msr_init+0x0/0x1000 [msr] returned 0 after 4598 usecs
[ 7.963393] systemd[1]: Finished systemd-modules-load.service - Load Kernel Modules.
[ 7.964703] systemd[1]: Starting systemd-sysctl.service - Apply Kernel Variables...
[ 7.977818] systemd[1]: Finished systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully.
[ 7.978015] systemd[1]: systemd-sysusers.service - Create System Users was skipped because no trigger condition checks were met.
[ 7.981398] systemd[1]: Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev...
[ 7.982715] systemd[1]: Finished systemd-random-seed.service - Load/Save OS Random Seed.
[ 7.985400] systemd[1]: Finished systemd-sysctl.service - Apply Kernel Variables.
[ 7.996470] systemd[1]: Finished systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev.
[ 7.997882] systemd[1]: Starting systemd-udevd.service - Rule-based Manager for Device Events and Files...
[ 8.014075] systemd[1]: Started systemd-journald.service - Journal Service.
[ 8.030805] systemd-journald[413]: Received client request to flush runtime journal.
[ 8.116762] calling serio_raw_drv_init+0x0/0x1000 [serio_raw] @ 474
[ 8.116795] initcall serio_raw_drv_init+0x0/0x1000 [serio_raw] returned 0 after 22 usecs
[ 8.132867] calling mt_driver_init+0x0/0x1000 [hid_multitouch] @ 460
[ 8.138978] calling evdev_init+0x0/0x1000 [evdev] @ 476
[ 8.144051] calling usb_roles_init+0x0/0x1000 [roles] @ 475
[ 8.144076] initcall usb_roles_init+0x0/0x1000 [roles] returned 0 after 15 usecs
[ 8.145413] calling intel_xhci_usb_driver_init+0x0/0x1000 [intel_xhci_usb_role_switch] @ 475
[ 8.145538] probe of intel_xhci_usb_sw returned 0 after 90 usecs
[ 8.146388] calling acpi_button_driver_init+0x0/0x1000 [button] @ 470
[ 8.146434] initcall intel_xhci_usb_driver_init+0x0/0x1000 [intel_xhci_usb_role_switch] returned 0 after 37 usecs
[ 8.146451] calling pmt_class_init+0x0/0x1000 [pmt_class] @ 478
[ 8.146537] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input9
[ 8.146697] initcall pmt_class_init+0x0/0x1000 [pmt_class] returned 0 after 238 usecs
[ 8.150842] calling int3400_thermal_driver_init+0x0/0x1000 [int3400_thermal] @ 479
[ 8.154405] calling acpi_pad_init+0x0/0x1000 [acpi_pad] @ 469
[ 8.155025] calling acpi_ac_init+0x0/0xfc0 [ac] @ 467
[ 8.155177] calling pmt_telem_init+0x0/0x1000 [pmt_telemetry] @ 478
[ 8.155208] initcall pmt_telem_init+0x0/0x1000 [pmt_telemetry] returned 0 after 25 usecs
[ 8.155223] calling acpi_battery_init+0x0/0xf60 [battery] @ 477
[ 8.155236] initcall acpi_battery_init+0x0/0xf60 [battery] returned 0 after 4 usecs
[ 8.156880] probe of ACPI000C:00 returned 0 after 2442 usecs
[ 8.156919] initcall acpi_pad_init+0x0/0x1000 [acpi_pad] returned 0 after 1687 usecs
[ 8.157789] calling int3403_driver_init+0x0/0x1000 [int3403_thermal] @ 471
[ 8.165567] Consider using thermal netlink events interface
[ 8.167827] ACPI: AC: AC Adapter [AC] (off-line)
[ 8.167842] probe of INT3400:00 returned 0 after 16947 usecs
[ 8.167843] probe of ACPI0003:00 returned 0 after 12690 usecs
[ 8.167875] initcall acpi_ac_init+0x0/0xfc0 [ac] returned 0 after 10079 usecs
[ 8.167874] initcall int3400_thermal_driver_init+0x0/0x1000 [int3400_thermal] returned 0 after 10078 usecs
[ 8.168942] initcall evdev_init+0x0/0x1000 [evdev] returned 0 after 11146 usecs
[ 8.175450] calling acpi_wmi_init+0x0/0x1000 [wmi] @ 461
[ 8.180067] probe of PNP0C14:00 returned 0 after 4560 usecs
[ 8.180187] calling soc_button_driver_init+0x0/0x1000 [soc_button_array] @ 459
[ 8.180425] calling intel_vbtn_init+0x0/0x50 [intel_vbtn] @ 462
[ 8.181266] wmi_bus wmi_bus-PNP0C14:01: [Firmware Bug]: WQBC data block query control method not found
[ 8.181756] probe of PNP0C14:01 returned 0 after 1681 usecs
[ 8.181782] initcall acpi_wmi_init+0x0/0x1000 [wmi] returned 0 after 1350 usecs
[ 8.181838] probe of INT33D2:00 returned 19 after 1292 usecs
[ 8.182089] ACPI: button: Lid Switch [LID0]
[ 8.182113] probe of PNP0C0D:00 returned 0 after 35648 usecs
[ 8.182177] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input10
[ 8.182576] probe of INT3403:00 returned 0 after 21371 usecs
[ 8.183049] probe of INT33D3:00 returned 19 after 1201 usecs
[ 8.183080] initcall soc_button_driver_init+0x0/0x1000 [soc_button_array] returned 0 after 2649 usecs
[ 8.185190] input: Intel Virtual Buttons as /devices/pci0000:00/0000:00:1f.0/PNP0C09:00/INT33D6:00/input/input11
[ 8.195104] probe of INT3403:01 returned 0 after 12522 usecs
[ 8.208594] probe of INT3403:02 returned 0 after 13480 usecs
[ 8.210288] ACPI: button: Power Button [PBTN]
[ 8.210301] probe of PNP0C0C:00 returned 0 after 28184 usecs
[ 8.210327] probe of 0018:06CB:76AF.0001 returned 19 after 5 usecs
[ 8.210613] probe of INT33D6:00 returned 0 after 25730 usecs
[ 8.210640] initcall intel_vbtn_init+0x0/0x50 [intel_vbtn] returned 0 after 30209 usecs
[ 8.210872] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input13
[ 8.211093] ACPI: button: Sleep Button [SBTN]
[ 8.211106] probe of PNP0C0E:00 returned 0 after 460 usecs
[ 8.211154] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input14
[ 8.211238] ACPI: button: Power Button [PWRF]
[ 8.211246] probe of LNXPWRBN:00 returned 0 after 131 usecs
[ 8.211257] initcall acpi_button_driver_init+0x0/0x1000 [button] returned 0 after 30825 usecs
[ 8.220871] 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/input15
[ 8.221270] 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/input16
[ 8.223316] hid-multitouch 0018:06CB:76AF.0001: input,hidraw0: I2C HID v1.00 Mouse [DLL075B:01 06CB:76AF] on i2c-DLL075B:01
[ 8.223991] probe of INT3403:03 returned 0 after 15387 usecs
[ 8.224870] Adding 8387904k swap on /dev/nvme0n1p4. Priority:-2 extents:1 across:8387904k SS
[ 8.225015] initcall int3403_driver_init+0x0/0x1000 [int3403_thermal] returned 0 after 44584 usecs
[ 8.225473] ACPI: battery: Slot [BAT0] (battery present)
[ 8.225514] probe of PNP0C0A:00 returned 0 after 70208 usecs
[ 8.225539] probe of 0018:06CB:76AF.0001 returned 0 after 15208 usecs
[ 8.227360] calling intel_vsec_pci_driver_init+0x0/0x1000 [intel_vsec] @ 478
[ 8.227401] initcall intel_vsec_pci_driver_init+0x0/0x1000 [intel_vsec] returned 0 after 30 usecs
[ 8.243555] calling acpi_video_init+0x0/0x1000 [video] @ 461
[ 8.243575] initcall acpi_video_init+0x0/0x1000 [video] returned 0 after 9 usecs
[ 8.245395] calling intel_hid_init+0x0/0x50 [intel_hid] @ 458
[ 8.252450] input: Intel HID events as /devices/platform/INT33D5:00/input/input18
[ 8.259802] calling pmc_core_driver_init+0x0/0x1000 [intel_pmc_core] @ 478
[ 8.261513] intel_pmc_core INT33A1:00: initialized
[ 8.261546] probe of INT33A1:00 returned 0 after 1705 usecs
[ 8.261633] initcall pmc_core_driver_init+0x0/0x1000 [intel_pmc_core] returned 0 after 1813 usecs
[ 8.264744] calling intel_pch_thermal_driver_init+0x0/0x1000 [intel_pch_thermal] @ 478
[ 8.265123] probe of 0000:00:14.2 returned 0 after 358 usecs
[ 8.265145] initcall intel_pch_thermal_driver_init+0x0/0x1000 [intel_pch_thermal] returned 0 after 391 usecs
[ 8.276304] calling rfkill_init+0x0/0x140 [rfkill] @ 473
[ 8.279491] calling typec_init+0x0/0xa0 [typec] @ 467
[ 8.279551] initcall typec_init+0x0/0xa0 [typec] returned 0 after 41 usecs
[ 8.286515] calling rapl_init+0x0/0x1000 [intel_rapl_common] @ 468
[ 8.286597] initcall rapl_init+0x0/0x1000 [intel_rapl_common] returned 0 after 68 usecs
[ 8.288304] calling drm_display_helper_module_init+0x0/0x1000 [drm_display_helper] @ 472
[ 8.288325] initcall drm_display_helper_module_init+0x0/0x1000 [drm_display_helper] returned 0 after 0 usecs
[ 8.296782] calling init_soundcore+0x0/0x1000 [soundcore] @ 462
[ 8.296801] initcall init_soundcore+0x0/0x1000 [soundcore] returned 0 after 9 usecs
[ 8.296856] calling media_devnode_init+0x0/0x1000 [mc] @ 476
[ 8.296868] mc: Linux media interface: v0.10
[ 8.299689] initcall media_devnode_init+0x0/0x1000 [mc] returned 0 after 2821 usecs
[ 8.300646] calling ucsi_module_init+0x0/0x1000 [typec_ucsi] @ 467
[ 8.300666] initcall ucsi_module_init+0x0/0x1000 [typec_ucsi] returned 0 after 6 usecs
[ 8.302327] calling acpi_cpufreq_init+0x0/0x30 [acpi_cpufreq] @ 474
[ 8.302361] probe of acpi-cpufreq returned 19 after 11 usecs
[ 8.302489] calling ucsi_acpi_platform_driver_init+0x0/0x1000 [ucsi_acpi] @ 467
[ 8.303148] calling watchdog_init+0x0/0xb0 [watchdog] @ 457
[ 8.303265] calling drm_buddy_module_init+0x0/0x1000 [drm_buddy] @ 472
[ 8.303276] initcall drm_buddy_module_init+0x0/0x1000 [drm_buddy] returned 0 after 4 usecs
[ 8.303369] initcall watchdog_init+0x0/0xb0 [watchdog] returned 0 after 97 usecs
[ 8.304237] calling iTCO_vendor_init_module+0x0/0x1000 [iTCO_vendor_support] @ 457
[ 8.304244] iTCO_vendor_support: vendor-support=0
[ 8.304245] initcall iTCO_vendor_init_module+0x0/0x1000 [iTCO_vendor_support] returned 0 after 1 usecs
[ 8.306177] calling intel_pmc_driver_init+0x0/0x1000 [intel_pmc_bxt] @ 457
[ 8.308210] calling proc_thermal_pci_driver_init+0x0/0x1000 [processor_thermal_device_pci_legacy] @ 468
[ 8.310164] proc_thermal 0000:00:04.0: enabling device (0000 -> 0002)
[ 8.310951] calling mei_init+0x0/0x90 [mei] @ 466
[ 8.314013] initcall mei_init+0x0/0x90 [mei] returned 0 after 3043 usecs
[ 8.314492] initcall intel_pmc_driver_init+0x0/0x1000 [intel_pmc_bxt] returned 0 after 3522 usecs
[ 8.314508] calling pcspkr_platform_driver_init+0x0/0x1000 [pcspkr] @ 470
[ 8.314611] input: PC Speaker as /devices/platform/pcspkr/input/input19
[ 8.319115] calling alsa_sound_init+0x0/0x90 [snd] @ 462
[ 8.319149] initcall alsa_sound_init+0x0/0x90 [snd] returned 0 after 12 usecs
[ 8.319303] initcall acpi_cpufreq_init+0x0/0x30 [acpi_cpufreq] returned -19 after 167 usecs
[ 8.319629] calling iTCO_wdt_driver_init+0x0/0x1000 [iTCO_wdt] @ 457
[ 8.323400] iTCO_wdt iTCO_wdt: Found a Intel PCH TCO device (Version=4, TCOBASE=0x0400)
[ 8.323631] iTCO_wdt iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[ 8.323643] probe of iTCO_wdt returned 0 after 1501 usecs
[ 8.323666] initcall iTCO_wdt_driver_init+0x0/0x1000 [iTCO_wdt] returned 0 after 4030 usecs
[ 8.324211] calling alsa_timer_init+0x0/0x1000 [snd_timer] @ 462
[ 8.324263] initcall alsa_timer_init+0x0/0x1000 [snd_timer] returned 0 after 43 usecs
[ 8.327120] initcall rfkill_init+0x0/0x140 [rfkill] returned 0 after 2899 usecs
[ 8.328364] calling mei_me_driver_init+0x0/0x1000 [mei_me] @ 466
[ 8.328413] initcall mei_me_driver_init+0x0/0x1000 [mei_me] returned 0 after 32 usecs
[ 8.328596] mei_me 0000:00:16.0: enabling device (0000 -> 0002)
[ 8.345046] probe of 0000:00:16.0 returned 0 after 16530 usecs
[ 8.347296] intel-hid INT33D5:00: platform supports 5 button array
[ 8.347351] input: Intel HID 5 button array as /devices/platform/INT33D5:00/input/input20
[ 8.350264] probe of pcspkr returned 0 after 35726 usecs
[ 8.350286] initcall pcspkr_platform_driver_init+0x0/0x1000 [pcspkr] returned 0 after 21904 usecs
[ 8.350400] intel_rapl_common: Found RAPL domain package
[ 8.350403] intel_rapl_common: Found RAPL domain dram
[ 8.350733] probe of 0003:04F3:2234.0002 returned 19 after 9 usecs
[ 8.352064] probe of 0000:00:04.0 returned 0 after 43802 usecs
[ 8.352092] initcall proc_thermal_pci_driver_init+0x0/0x1000 [processor_thermal_device_pci_legacy] returned 0 after 23711 usecs
[ 8.354201] input: ELAN Touchscreen as /devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.0/0003:04F3:2234.0002/input/input21
[ 8.358433] calling ecdh_init+0x0/0x1000 [ecdh_generic] @ 473
[ 8.358468] calling alsa_pcm_init+0x0/0x1000 [snd_pcm] @ 462
[ 8.358490] initcall alsa_pcm_init+0x0/0x1000 [snd_pcm] returned 0 after 4 usecs
[ 8.364199] probe of INT33D5:00 returned 0 after 118621 usecs
[ 8.364225] initcall intel_hid_init+0x0/0x50 [intel_hid] returned 0 after 5739 usecs
[ 8.364612] 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
[ 8.364757] 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
[ 8.364825] initcall ecdh_init+0x0/0x1000 [ecdh_generic] returned 0 after 6339 usecs
[ 8.366373] calling intel_uncore_init+0x0/0xda0 [intel_uncore] @ 479
[ 8.366519] probe of 0000:00:00.0 returned 0 after 95 usecs
[ 8.368960] initcall intel_uncore_init+0x0/0xda0 [intel_uncore] returned 0 after 2566 usecs
[ 8.369625] hid-multitouch 0003:04F3:2234.0002: input,hiddev0,hidraw1: USB HID v1.10 Device [ELAN Touchscreen] on usb-0000:00:14.0-4/input0
[ 8.369649] probe of 0003:04F3:2234.0002 returned 0 after 18911 usecs
[ 8.369655] initcall mt_driver_init+0x0/0x1000 [hid_multitouch] returned 0 after 3262 usecs
[ 8.369829] calling videodev_init+0x0/0x1000 [videodev] @ 476
[ 8.369853] videodev: Linux video capture interface: v2.00
[ 8.369862] initcall videodev_init+0x0/0x1000 [videodev] returned 0 after 9 usecs
[ 8.372737] calling cstate_pmu_init+0x0/0x1000 [intel_cstate] @ 461
[ 8.383155] initcall cstate_pmu_init+0x0/0x1000 [intel_cstate] returned 0 after 10406 usecs
[ 8.385577] probe of USBC000:00 returned 0 after 83062 usecs
[ 8.397680] initcall ucsi_acpi_platform_driver_init+0x0/0x1000 [ucsi_acpi] returned 0 after 24931 usecs
[ 8.397704] calling joydev_init+0x0/0x1000 [joydev] @ 464
[ 8.397717] initcall joydev_init+0x0/0x1000 [joydev] returned 0 after 5 usecs
[ 8.409934] calling hda_bus_init+0x0/0x1000 [snd_hda_core] @ 462
[ 8.411392] initcall hda_bus_init+0x0/0x1000 [snd_hda_core] returned 0 after 1435 usecs
[ 8.420200] calling rapl_pmu_init+0x0/0x1000 [rapl] @ 461
[ 8.446689] RAPL PMU: API unit is 2^-32 Joules, 5 fixed counters, 655360 ms ovfl timer
[ 8.446695] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[ 8.446697] RAPL PMU: hw unit of domain package 2^-14 Joules
[ 8.446698] RAPL PMU: hw unit of domain dram 2^-14 Joules
[ 8.446699] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
[ 8.446701] RAPL PMU: hw unit of domain psys 2^-14 Joules
[ 8.446703] initcall rapl_pmu_init+0x0/0x1000 [rapl] returned 0 after 26492 usecs
[ 8.447563] calling cfg80211_init+0x0/0xd0 [cfg80211] @ 480
[ 8.448220] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[ 8.453628] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[ 8.453900] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[ 8.454176] initcall cfg80211_init+0x0/0xd0 [cfg80211] returned 0 after 6543 usecs
[ 8.456508] cfg80211: loaded regulatory.db is malformed or signature is missing/invalid
[ 8.457452] calling alsa_hwdep_init+0x0/0x1000 [snd_hwdep] @ 462
[ 8.457465] initcall alsa_hwdep_init+0x0/0x1000 [snd_hwdep] returned 0 after 3 usecs
[ 8.494467] calling bt_init+0x0/0xd0 [bluetooth] @ 465
[ 8.494521] Bluetooth: Core ver 2.22
[ 8.494545] NET: Registered PF_BLUETOOTH protocol family
[ 8.494547] Bluetooth: HCI device and connection manager initialized
[ 8.494552] Bluetooth: HCI socket layer initialized
[ 8.494554] Bluetooth: L2CAP socket layer initialized
[ 8.494558] Bluetooth: SCO socket layer initialized
[ 8.494562] initcall bt_init+0x0/0xd0 [bluetooth] returned 0 after 40 usecs
[ 8.495151] calling intel_wmi_thunderbolt_driver_init+0x0/0x1000 [intel_wmi_thunderbolt] @ 471
[ 8.495198] probe of 86CCFD48-205E-4A77-9C48-2021CBEDE341 returned 0 after 30 usecs
[ 8.495228] initcall intel_wmi_thunderbolt_driver_init+0x0/0x1000 [intel_wmi_thunderbolt] returned 0 after 69 usecs
[ 8.498666] calling wmi_bmof_driver_init+0x0/0x1000 [wmi_bmof] @ 458
[ 8.498728] probe of 05901221-D566-11D1-B2F0-00A0C9062910 returned 0 after 35 usecs
[ 8.498743] initcall wmi_bmof_driver_init+0x0/0x1000 [wmi_bmof] returned 0 after 67 usecs
[ 8.498845] calling dell_wmi_descriptor_driver_init+0x0/0x1000 [dell_wmi_descriptor] @ 470
[ 8.504471] calling i8k_init+0x0/0x350 [dell_smm_hwmon] @ 467
[ 8.554354] probe of dell_smm_hwmon returned 0 after 46818 usecs
[ 8.554378] initcall i8k_init+0x0/0x350 [dell_smm_hwmon] returned 0 after 49886 usecs
[ 8.559591] calling azx_driver_init+0x0/0x1000 [snd_hda_intel] @ 462
[ 8.559644] snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002)
[ 8.559804] calling dcdbas_init+0x0/0x1000 [dcdbas] @ 467
[ 8.560018] probe of dcdbas returned 19 after 32 usecs
[ 8.560022] initcall dcdbas_init+0x0/0x1000 [dcdbas] returned 0 after 212 usecs
[ 8.574306] calling uvc_init+0x0/0x1000 [uvcvideo] @ 476
[ 8.577367] usb 1-5: Found UVC 1.00 device Integrated_Webcam_HD (0c45:670c)
[ 8.578142] probe of 0000:00:1f.3 returned 517 after 18523 usecs
[ 8.578174] initcall azx_driver_init+0x0/0x1000 [snd_hda_intel] returned 0 after 3851 usecs
[ 8.578903] probe of 0000:00:1f.3 returned 517 after 732 usecs
[ 8.591780] probe of 0000:00:1f.3 returned 517 after 408 usecs
[ 8.591882] probe of 8D9DDCBC-A997-11DA-B012-B622A1EF5492 returned 0 after 92111 usecs
[ 8.591902] initcall dell_wmi_descriptor_driver_init+0x0/0x1000 [dell_wmi_descriptor] returned 0 after 17579 usecs
[ 8.640342] calling mei_wdt_driver_init+0x0/0x1000 [mei_wdt] @ 469
[ 8.645186] calling kvm_x86_init+0x0/0x50 [kvm] @ 479
[ 8.645256] initcall kvm_x86_init+0x0/0x50 [kvm] returned 0 after 0 usecs
[ 8.646355] calling dell_smbios_init+0x0/0xf00 [dell_smbios] @ 477
[ 8.646618] probe of dell-smbios.0 returned 0 after 152 usecs
[ 8.647033] probe of 0000:00:16.0-05b79a6f-4628-4d7f-899d-a91514cb32ab returned 0 after 6661 usecs
[ 8.647060] probe of A80593CE-A997-11DA-B012-B622A1EF5492 returned 0 after 404 usecs
[ 8.647104] initcall mei_wdt_driver_init+0x0/0x1000 [mei_wdt] returned 0 after 741 usecs
[ 8.648701] probe of 0000:00:1f.3 returned 517 after 2203 usecs
[ 8.648941] probe of 0000:00:1f.3 returned 517 after 222 usecs
[ 8.649276] initcall dell_smbios_init+0x0/0xf00 [dell_smbios] returned 0 after 2913 usecs
[ 8.660543] calling dell_init+0x0/0xfe0 [dell_laptop] @ 467
[ 8.661132] probe of dell-laptop returned 0 after 16 usecs
[ 8.678934] calling mei_hdcp_driver_init+0x0/0x1000 [mei_hdcp] @ 475
[ 8.679050] calling mei_pxp_driver_init+0x0/0x1000 [mei_pxp] @ 466
[ 8.679693] probe of 0000:00:1f.3 returned 517 after 18533 usecs
[ 8.681086] calling intel_rapl_msr_driver_init+0x0/0x1000 [intel_rapl_msr] @ 470
[ 8.681650] intel_rapl_common: Found RAPL domain package
[ 8.681654] intel_rapl_common: Found RAPL domain core
[ 8.681655] intel_rapl_common: Found RAPL domain uncore
[ 8.681657] intel_rapl_common: Found RAPL domain dram
[ 8.681658] intel_rapl_common: Found RAPL domain psys
[ 8.709864] initcall dell_init+0x0/0xfe0 [dell_laptop] returned 0 after 28771 usecs
[ 8.717191] probe of 1-5:1.0 returned 0 after 142838 usecs
[ 8.717217] usbcore: registered new interface driver uvcvideo
[ 8.717220] initcall uvc_init+0x0/0x1000 [uvcvideo] returned 0 after 36126 usecs
[ 8.717383] probe of 0000:00:1f.3 returned 517 after 181 usecs
[ 9.002758] probe of 0000:00:1f.3 returned 517 after 309 usecs
[ 9.002796] probe of 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04 returned 0 after 323842 usecs
[ 9.002814] initcall mei_hdcp_driver_init+0x0/0x1000 [mei_hdcp] returned 0 after 321721 usecs
[ 9.004122] probe of 0000:00:16.0-fbf6fcf1-96cf-4e2e-a6a6-1bab8cbe36b1 returned 0 after 325062 usecs
[ 9.004154] initcall mei_pxp_driver_init+0x0/0x1000 [mei_pxp] returned 0 after 323061 usecs
[ 9.004442] probe of 0000:00:1f.3 returned 517 after 331 usecs
[ 9.004472] probe of intel_rapl_msr.0 returned 0 after 323351 usecs
[ 9.004493] initcall intel_rapl_msr_driver_init+0x0/0x1000 [intel_rapl_msr] returned 0 after 323400 usecs
[ 9.011494] calling i915_init+0x0/0xb0 [i915] @ 472
[ 9.011922] stackdepot: allocating hash table of 1048576 entries via kvcalloc
[ 9.014907] i915 0000:00:02.0: [drm] Found KABYLAKE/ULT (device ID 5916) display version 9.00
[ 9.019006] calling dell_wmi_init+0x0/0xfe0 [dell_wmi] @ 477
[ 9.019442] input: Dell WMI hotkeys as /devices/platform/PNP0C14:01/wmi_bus/wmi_bus-PNP0C14:01/9DBB5994-A997-11DA-B012-B622A1EF5492/input/input25
[ 9.020148] probe of 9DBB5994-A997-11DA-B012-B622A1EF5492 returned 0 after 842 usecs
[ 9.020170] initcall dell_wmi_init+0x0/0xfe0 [dell_wmi] returned 0 after 1156 usecs
[ 9.020270] probe of 0000:00:1f.3 returned 517 after 337 usecs
[ 9.041750] Console: switching to colour dummy device 80x25
[ 9.041794] i915 0000:00:02.0: vgaarb: deactivate vga console
[ 9.051353] calling ieee80211_init+0x0/0x70 [mac80211] @ 480
[ 9.051425] initcall ieee80211_init+0x0/0x70 [mac80211] returned 0 after 10 usecs
[ 9.057026] calling btusb_driver_init+0x0/0x1000 [btusb] @ 473
[ 9.057283] calling dell_init+0x0/0x1000 [dell_pc] @ 467
[ 9.057308] calling vmx_init+0x0/0x140 [kvm_intel] @ 461
[ 9.058570] calling snd_soc_init+0x0/0xa0 [snd_soc_core] @ 462
[ 9.058732] probe of snd-soc-dummy returned 0 after 21 usecs
[ 9.058769] initcall snd_soc_init+0x0/0xa0 [snd_soc_core] returned 0 after 163 usecs
[ 9.062650] i915 0000:00:02.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=io+mem:owns=io+mem
[ 9.065016] i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/kbl_dmc_ver1_04.bin (v1.4)
[ 9.065966] EXT4-fs (nvme0n1p2): mounted filesystem 2d23fd4c-5d03-4e1a-8a42-0e859d1f00d8 r/w with ordered data mode. Quota mode: none.
[ 9.066857] initcall vmx_init+0x0/0x140 [kvm_intel] returned 0 after 8251 usecs
[ 9.067582] probe of 0000:00:1f.3 returned 517 after 8686 usecs
[ 9.068950] calling coretemp_init+0x0/0x1000 [coretemp] @ 457
[ 9.072050] initcall coretemp_init+0x0/0x1000 [coretemp] returned 0 after 3091 usecs
[ 9.074752] calling powerclamp_init+0x0/0x1000 [intel_powerclamp] @ 461
[ 9.076442] initcall powerclamp_init+0x0/0x1000 [intel_powerclamp] returned 0 after 1679 usecs
[ 9.084496] calling pkg_temp_thermal_init+0x0/0x1000 [x86_pkg_temp_thermal] @ 461
[ 9.084877] initcall pkg_temp_thermal_init+0x0/0x1000 [x86_pkg_temp_thermal] returned 0 after 370 usecs
[ 9.086993] calling pmc_core_platform_init+0x0/0x1000 [intel_pmc_core_pltdrv] @ 479
[ 9.087053] initcall pmc_core_platform_init+0x0/0x1000 [intel_pmc_core_pltdrv] returned -19 after 52 usecs
[ 9.101475] calling skl_driver_init+0x0/0x1000 [snd_soc_skl] @ 462
[ 9.101518] probe of 0000:00:1f.3 returned 19 after 12 usecs
[ 9.101544] initcall skl_driver_init+0x0/0x1000 [snd_soc_skl] returned 0 after 51 usecs
[ 9.105339] calling init_fat_fs+0x0/0xfc0 [fat] @ 549
[ 9.105403] initcall init_fat_fs+0x0/0xfc0 [fat] returned 0 after 51 usecs
[ 9.106491] initcall dell_init+0x0/0x1000 [dell_pc] returned 0 after 1139 usecs
[ 9.111017] calling init_vfat_fs+0x0/0x1000 [vfat] @ 549
[ 9.111027] initcall init_vfat_fs+0x0/0x1000 [vfat] returned 0 after 2 usecs
[ 9.116564] calling init_nls_cp437+0x0/0x1000 [nls_cp437] @ 551
[ 9.116574] initcall init_nls_cp437+0x0/0x1000 [nls_cp437] returned 0 after 0 usecs
[ 9.123967] calling init_nls_ascii+0x0/0x1000 [nls_ascii] @ 552
[ 9.123976] initcall init_nls_ascii+0x0/0x1000 [nls_ascii] returned 0 after 0 usecs
[ 9.124533] calling ath10k_pci_init+0x0/0x1000 [ath10k_pci] @ 480
[ 9.126107] ath10k_pci 0000:3a:00.0: enabling device (0000 -> 0002)
[ 9.128320] ath10k_pci 0000:3a:00.0: pci irq msi oper_irq_mode 2 irq_mode 0 reset_mode 0
[ 9.162474] calling avs_pci_driver_init+0x0/0x1000 [snd_soc_avs] @ 462
[ 9.162513] probe of 0000:00:1f.3 returned 19 after 10 usecs
[ 9.162531] initcall avs_pci_driver_init+0x0/0x1000 [snd_soc_avs] returned 0 after 41 usecs
[ 9.174257] probe of 1-3:1.0 returned 0 after 346 usecs
[ 9.174808] usbcore: registered new interface driver btusb
[ 9.174813] initcall btusb_driver_init+0x0/0x1000 [btusb] returned 0 after 12323 usecs
[ 9.175963] calling init_misc_binfmt+0x0/0x1000 [binfmt_misc] @ 567
[ 9.175974] initcall init_misc_binfmt+0x0/0x1000 [binfmt_misc] returned 0 after 3 usecs
[ 9.177833] probe of 0000:00:1f.3 returned 517 after 3683 usecs
[ 9.177868] probe of 0000:00:1f.3 returned 19 after 13 usecs
[ 9.177877] probe of 0000:00:1f.3 returned 19 after 5 usecs
[ 9.178971] Bluetooth: hci0: using rampatch file: qca/rampatch_usb_00000302.bin
[ 9.178975] Bluetooth: hci0: QCA: patch rome 0x302 build 0x3e8, firmware rome 0x302 build 0x111
[ 9.180036] probe of 0000:00:1f.3 returned 517 after 2141 usecs
[ 9.180056] probe of 0000:00:1f.3 returned 19 after 11 usecs
[ 9.180064] probe of 0000:00:1f.3 returned 19 after 4 usecs
[ 9.201403] audit: type=1400 audit(1723542881.348:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=572 comm="apparmor_parser"
[ 9.201567] audit: type=1400 audit(1723542881.348:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=573 comm="apparmor_parser"
[ 9.201571] audit: type=1400 audit(1723542881.348:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=573 comm="apparmor_parser"
[ 9.210860] audit: type=1400 audit(1723542881.360:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=579 comm="apparmor_parser"
[ 9.210866] audit: type=1400 audit(1723542881.360:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=579 comm="apparmor_parser"
[ 9.210869] audit: type=1400 audit(1723542881.360:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=579 comm="apparmor_parser"
[ 9.213836] audit: type=1400 audit(1723542881.360:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=574 comm="apparmor_parser"
[ 9.213842] audit: type=1400 audit(1723542881.364:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=574 comm="apparmor_parser"
[ 9.213844] audit: type=1400 audit(1723542881.364:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=574 comm="apparmor_parser"
[ 9.213846] audit: type=1400 audit(1723542881.364:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/{,usr/}sbin/dhclient" pid=574 comm="apparmor_parser"
[ 9.261511] probe of 0000:3a:00.0 returned 0 after 136955 usecs
[ 9.261533] initcall ath10k_pci_init+0x0/0x1000 [ath10k_pci] returned 0 after 85561 usecs
[ 9.262107] probe of 0000:00:1f.3 returned 517 after 379 usecs
[ 9.262127] probe of 0000:00:1f.3 returned 19 after 10 usecs
[ 9.262135] probe of 0000:00:1f.3 returned 19 after 4 usecs
[ 9.274673] calling snd_sof_pci_intel_skl_driver_init+0x0/0x1000 [snd_sof_pci_intel_skl] @ 462
[ 9.274713] probe of 0000:00:1f.3 returned 19 after 15 usecs
[ 9.274746] initcall snd_sof_pci_intel_skl_driver_init+0x0/0x1000 [snd_sof_pci_intel_skl] returned 0 after 62 usecs
[ 9.407797] ath10k_pci 0000:3a:00.0: qca6174 hw3.2 target 0x05030000 chip_id 0x00340aff sub 1a56:1535
[ 9.407804] ath10k_pci 0000:3a:00.0: kconfig debug 0 debugfs 0 tracing 0 dfs 0 testmode 0
[ 9.408302] ath10k_pci 0000:3a:00.0: firmware ver WLAN.RM.4.4.1-00309- api 6 features wowlan,ignore-otp,mfp crc32 0793bcf2
[ 9.493053] ath10k_pci 0000:3a:00.0: board_file api 2 bmi_id N/A crc32 d2863f91
[ 9.543689] Bluetooth: hci0: using NVM file: qca/nvm_usb_00000302.bin
[ 9.571576] Bluetooth: hci0: HCI Enhanced Setup Synchronous Connection command is advertised, but not supported.
[ 9.590560] 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
[ 9.672955] ath: EEPROM regdomain: 0x6c
[ 9.672960] ath: EEPROM indicates we should expect a direct regpair map
[ 9.672962] ath: Country alpha2 being used: 00
[ 9.672963] ath: Regpair used: 0x6c
[ 9.673223] mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_ops [i915])
[ 9.677593] ath10k_pci 0000:3a:00.0 wlp58s0: renamed from wlan0
[ 9.681761] [drm] Initialized i915 1.6.0 for 0000:00:02.0 on minor 0
[ 9.690442] ACPI: video: Video Device [GFX0] (multi-head: yes rom: no post: no)
[ 9.691315] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input26
[ 9.692290] probe of LNXVIDEO:00 returned 0 after 7526 usecs
[ 9.692563] probe of 0000:00:1f.3 returned 517 after 269 usecs
[ 9.693082] probe of 0000:00:1f.3 returned 19 after 511 usecs
[ 9.693097] probe of 0000:00:1f.3 returned 19 after 8 usecs
[ 9.693103] probe of 0000:00:1f.3 returned 19 after 4 usecs
[ 9.730313] fbcon: i915drmfb (fb0) is primary device
[ 9.744712] Console: switching to colour frame buffer device 200x56
[ 9.764948] i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
[ 9.793925] probe of 0000:00:02.0 returned 0 after 782167 usecs
[ 9.793971] initcall i915_init+0x0/0xb0 [i915] returned 0 after 519287 usecs
[ 9.827264] snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[ 9.827420] probe of 0000:00:1f.3 returned 0 after 33043 usecs
[ 9.867665] calling generic_driver_init+0x0/0x1000 [snd_hda_codec_generic] @ 477
[ 9.867713] initcall generic_driver_init+0x0/0x1000 [snd_hda_codec_generic] returned 0 after 35 usecs
[ 9.879405] calling realtek_driver_init+0x0/0x1000 [snd_hda_codec_realtek] @ 714
[ 9.908094] calling xfrm_user_init+0x0/0x1000 [xfrm_user] @ 723
[ 9.908105] Initializing XFRM netlink socket
[ 9.908118] initcall xfrm_user_init+0x0/0x1000 [xfrm_user] returned 0 after 13 usecs
[ 9.918169] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC3246: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[ 9.918177] snd_hda_codec_realtek hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 9.918179] snd_hda_codec_realtek hdaudioC0D0: hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[ 9.918180] snd_hda_codec_realtek hdaudioC0D0: mono: mono_out=0x0
[ 9.918181] snd_hda_codec_realtek hdaudioC0D0: inputs:
[ 9.918183] snd_hda_codec_realtek hdaudioC0D0: Headset Mic=0x19
[ 9.918184] snd_hda_codec_realtek hdaudioC0D0: Headphone Mic=0x1a
[ 9.918185] snd_hda_codec_realtek hdaudioC0D0: Internal Mic=0x12
[ 9.925638] calling snd_ctl_led_init+0x0/0x1000 [snd_ctl_led] @ 728
[ 9.925714] initcall snd_ctl_led_init+0x0/0x1000 [snd_ctl_led] returned 0 after 67 usecs
[ 9.938583] calling ppp_init+0x0/0x1000 [ppp_generic] @ 732
[ 9.938594] PPP generic driver version 2.4.2
[ 9.972873] probe of hdaudioC0D0 returned 0 after 93445 usecs
[ 9.972896] initcall realtek_driver_init+0x0/0x1000 [snd_hda_codec_realtek] returned 0 after 34301 usecs
[ 9.986200] calling hdmi_driver_init+0x0/0x1000 [snd_hda_codec_hdmi] @ 464
[ 9.989619] probe of hdaudioC0D2 returned 0 after 3396 usecs
[ 9.989637] initcall hdmi_driver_init+0x0/0x1000 [snd_hda_codec_hdmi] returned 0 after 3424 usecs
[ 9.990985] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1f.3/sound/card0/input27
[ 9.991659] input: HDA Intel PCH Headphone Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input28
[ 9.991741] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input29
[ 9.991814] input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input30
[ 9.991877] input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input31
[ 10.141548] initcall ppp_init+0x0/0x1000 [ppp_generic] returned 0 after 155335 usecs
[ 10.142730] calling pppox_init+0x0/0x1000 [pppox] @ 732
[ 10.142739] NET: Registered PF_PPPOX protocol family
[ 10.142741] initcall pppox_init+0x0/0x1000 [pppox] returned 0 after 2 usecs
[ 10.144820] calling tunnel6_init+0x0/0x1000 [tunnel6] @ 772
[ 10.144830] initcall tunnel6_init+0x0/0x1000 [tunnel6] returned 0 after 0 usecs
[ 10.147768] calling xfrm6_tunnel_init+0x0/0x1000 [xfrm6_tunnel] @ 772
[ 10.147794] initcall xfrm6_tunnel_init+0x0/0x1000 [xfrm6_tunnel] returned 0 after 16 usecs
[ 10.150618] calling xfrmi_init+0x0/0xfe0 [xfrm_interface] @ 772
[ 10.150628] IPsec XFRM device driver
[ 10.150639] initcall xfrmi_init+0x0/0xfe0 [xfrm_interface] returned 0 after 11 usecs
[ 10.158411] calling udp_tunnel_nic_init_module+0x0/0x1000 [udp_tunnel] @ 774
[ 10.272085] initcall udp_tunnel_nic_init_module+0x0/0x1000 [udp_tunnel] returned 0 after 113664 usecs
[ 10.278452] calling l2tp_init+0x0/0x1000 [l2tp_core] @ 774
[ 10.278809] l2tp_core: L2TP core driver, V2.0
[ 10.278811] initcall l2tp_init+0x0/0x1000 [l2tp_core] returned 0 after 347 usecs
[ 10.280796] calling l2tp_nl_init+0x0/0x1000 [l2tp_netlink] @ 774
[ 10.280802] l2tp_netlink: L2TP netlink interface
[ 10.280823] initcall l2tp_nl_init+0x0/0x1000 [l2tp_netlink] returned 0 after 21 usecs
[ 10.283786] calling pppol2tp_init+0x0/0x1000 [l2tp_ppp] @ 774
[ 10.283800] l2tp_ppp: PPPoL2TP kernel driver, V2.0
[ 10.283802] initcall pppol2tp_init+0x0/0x1000 [l2tp_ppp] returned 0 after 9 usecs
[ 11.181934] calling alsa_seq_device_init+0x0/0x1000 [snd_seq_device] @ 917
[ 11.181977] initcall alsa_seq_device_init+0x0/0x1000 [snd_seq_device] returned 0 after 33 usecs
[ 11.189852] calling alsa_seq_init+0x0/0x60 [snd_seq] @ 917
[ 11.189927] initcall alsa_seq_init+0x0/0x60 [snd_seq] returned 0 after 62 usecs
[ 11.194065] calling snd_hrtimer_init+0x0/0x1000 [snd_hrtimer] @ 920
[ 11.194072] initcall snd_hrtimer_init+0x0/0x1000 [snd_hrtimer] returned 0 after 1 usecs
[ 11.197705] calling alsa_seq_dummy_init+0x0/0xe30 [snd_seq_dummy] @ 922
[ 11.197722] initcall alsa_seq_dummy_init+0x0/0xe30 [snd_seq_dummy] returned 0 after 7 usecs
[ 12.728147] rfkill: input handler disabled
[ 35.001968] wlp58s0: authenticate with 48:2f:6b:75:b8:11 (local address=9c:b6:d0:d1:6a:b1)
[ 35.001989] wlp58s0: send auth to 48:2f:6b:75:b8:11 (try 1/3)
[ 35.003372] wlp58s0: authenticated
[ 35.005860] wlp58s0: associate with 48:2f:6b:75:b8:11 (try 1/3)
[ 35.007305] wlp58s0: RX AssocResp from 48:2f:6b:75:b8:11 (capab=0x11 status=0 aid=3)
[ 35.011172] wlp58s0: associated
[ 35.269203] calling crypto_ccm_module_init+0x0/0x1000 [ccm] @ 1342
[ 35.269234] initcall crypto_ccm_module_init+0x0/0x1000 [ccm] returned 0 after 2 usecs
[ 35.307300] calling crypto_ctr_module_init+0x0/0x1000 [ctr] @ 1350
[ 35.307323] initcall crypto_ctr_module_init+0x0/0x1000 [ctr] returned 0 after 2 usecs
[ 35.365639] calling crypto_cmac_module_init+0x0/0x1000 [cmac] @ 1356
[ 35.365652] initcall crypto_cmac_module_init+0x0/0x1000 [cmac] returned 0 after 1 usecs
[ 35.838345] rfkill: input handler enabled
[ 39.565971] rfkill: input handler disabled
[-- Attachment #3: 20240813--linux-6.10-rc3--with-alignment.txt --]
[-- Type: text/plain, Size: 200308 bytes --]
[ 0.000000] Linux version 6.11.0-rc3-00008-gefdb6ceb4ffd (build@bohemianrhapsody.molgen.mpg.de) (gcc (Debian 13.3.0-2) 13.3.0, GNU ld (GNU Binutils for Debian) 2.42.50.20240710) #265 SMP PREEMPT_DYNAMIC Tue Aug 13 07:39:21 CEST 2024
[ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-6.11.0-rc3-00008-gefdb6ceb4ffd 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 0x511e8018-0x511f8057] 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-0x00000000511e8017] usable
[ 0.000000] reserve setup_data: [mem 0x00000000511e8018-0x00000000511f8057] usable
[ 0.000000] reserve setup_data: [mem 0x00000000511f8058-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=0x55778018
[ 0.000000] efi: Remove mem36: MMIO range=[0xe0000000-0xefffffff] (256MB) from e820 map
[ 0.000000] e820: remove [mem 0xe0000000-0xefffffff] reserved
[ 0.000000] efi: Not removing mem37: MMIO range=[0xfe000000-0xfe010fff] (68KB) from e820 map
[ 0.000000] efi: Not removing mem38: MMIO range=[0xfec00000-0xfec00fff] (4KB) from e820 map
[ 0.000000] efi: Not removing mem39: MMIO range=[0xfee00000-0xfee00fff] (4KB) from e820 map
[ 0.000000] efi: Remove mem40: 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.000682] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000684] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000690] last_pfn = 0x481800 max_arch_pfn = 0x400000000
[ 0.000693] MTRR map: 4 entries (3 fixed + 1 variable; max 23), built from 10 variable MTRRs
[ 0.000695] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.000982] last_pfn = 0x78600 max_arch_pfn = 0x400000000
[ 0.006829] esrt: Reserving ESRT space from 0x000000006fc86698 to 0x000000006fc866d0.
[ 0.006835] Using GB pages for direct mapping
[ 0.013135] printk: log_buf_len: 8388608 bytes
[ 0.013136] printk: early log buf free: 125304(95%)
[ 0.013137] Secure boot disabled
[ 0.013137] RAMDISK: [mem 0x511f9000-0x5260ffff]
[ 0.013148] ACPI: Early table checksum verification disabled
[ 0.013152] ACPI: RSDP 0x000000006518D000 000024 (v02 DELL )
[ 0.013155] ACPI: XSDT 0x000000006518D0C8 00010C (v01 DELL CBX3 01072009 AMI 00010013)
[ 0.013160] ACPI: FACP 0x00000000651B2A48 00010C (v05 DELL CBX3 01072009 AMI 00010013)
[ 0.013164] ACPI: DSDT 0x000000006518D260 0257E7 (v02 DELL CBX3 01072009 INTL 20160422)
[ 0.013167] ACPI: FACS 0x000000006F86F180 000040
[ 0.013168] ACPI: APIC 0x00000000651B2B58 000084 (v03 DELL CBX3 01072009 AMI 00010013)
[ 0.013170] ACPI: FPDT 0x00000000651B2BE0 000044 (v01 DELL CBX3 01072009 AMI 00010013)
[ 0.013172] ACPI: FIDT 0x00000000651B2C28 0000AC (v01 DELL CBX3 01072009 AMI 00010013)
[ 0.013175] ACPI: MCFG 0x00000000651B2CD8 00003C (v01 DELL CBX3 01072009 MSFT 00000097)
[ 0.013177] ACPI: HPET 0x00000000651B2D18 000038 (v01 DELL CBX3 01072009 AMI. 0005000B)
[ 0.013179] ACPI: SSDT 0x00000000651B2D50 000359 (v01 SataRe SataTabl 00001000 INTL 20160422)
[ 0.013181] ACPI: BOOT 0x00000000651B30B0 000028 (v01 DELL CBX3 01072009 AMI 00010013)
[ 0.013183] ACPI: SSDT 0x00000000651B30D8 0012CF (v02 SaSsdt SaSsdt 00003000 INTL 20160422)
[ 0.013185] ACPI: HPET 0x00000000651B43A8 000038 (v01 INTEL KBL-ULT 00000001 MSFT 0000005F)
[ 0.013187] ACPI: SSDT 0x00000000651B43E0 000D84 (v02 INTEL xh_rvp07 00000000 INTL 20160422)
[ 0.013190] ACPI: UEFI 0x00000000651B5168 000042 (v01 00000000 00000000)
[ 0.013192] ACPI: SSDT 0x00000000651B51B0 000EDE (v02 CpuRef CpuSsdt 00003000 INTL 20160422)
[ 0.013194] ACPI: LPIT 0x00000000651B6090 000094 (v01 INTEL KBL-ULT 00000000 MSFT 0000005F)
[ 0.013196] ACPI: WSMT 0x00000000651B6128 000028 (v01 DELL CBX3 00000000 MSFT 0000005F)
[ 0.013198] ACPI: SSDT 0x00000000651B6150 000161 (v02 INTEL HdaDsp 00000000 INTL 20160422)
[ 0.013200] ACPI: SSDT 0x00000000651B62B8 00029F (v02 INTEL sensrhub 00000000 INTL 20160422)
[ 0.013202] ACPI: SSDT 0x00000000651B6558 003002 (v02 INTEL PtidDevc 00001000 INTL 20160422)
[ 0.013205] ACPI: SSDT 0x00000000651B9560 0000DB (v02 INTEL TbtTypeC 00000000 INTL 20160422)
[ 0.013207] ACPI: DBGP 0x00000000651B9640 000034 (v01 INTEL 00000002 MSFT 0000005F)
[ 0.013209] ACPI: DBG2 0x00000000651B9678 000054 (v00 INTEL 00000002 MSFT 0000005F)
[ 0.013211] ACPI: SSDT 0x00000000651B96D0 0007DD (v02 INTEL UsbCTabl 00001000 INTL 20160422)
[ 0.013213] ACPI: SSDT 0x00000000651B9EB0 0084F1 (v02 DptfTa DptfTabl 00001000 INTL 20160422)
[ 0.013215] ACPI: SLIC 0x00000000651C23A8 000176 (v03 DELL CBX3 01072009 MSFT 00010013)
[ 0.013217] ACPI: NHLT 0x00000000651C2520 00002D (v00 INTEL EDK2 00000002 01000013)
[ 0.013219] ACPI: BGRT 0x00000000651C2550 000038 (v00 01072009 AMI 00010013)
[ 0.013221] ACPI: TPM2 0x00000000651C2588 000034 (v03 Tpm2Tabl 00000001 AMI 00000000)
[ 0.013224] ACPI: ASF! 0x00000000651C25C0 0000A0 (v32 INTEL HCG 00000001 TFSM 000F4240)
[ 0.013226] ACPI: DMAR 0x00000000651C2660 0000F0 (v01 INTEL KBL 00000001 INTL 00000001)
[ 0.013228] ACPI: Reserving FACP table memory at [mem 0x651b2a48-0x651b2b53]
[ 0.013229] ACPI: Reserving DSDT table memory at [mem 0x6518d260-0x651b2a46]
[ 0.013230] ACPI: Reserving FACS table memory at [mem 0x6f86f180-0x6f86f1bf]
[ 0.013231] ACPI: Reserving APIC table memory at [mem 0x651b2b58-0x651b2bdb]
[ 0.013231] ACPI: Reserving FPDT table memory at [mem 0x651b2be0-0x651b2c23]
[ 0.013232] ACPI: Reserving FIDT table memory at [mem 0x651b2c28-0x651b2cd3]
[ 0.013233] ACPI: Reserving MCFG table memory at [mem 0x651b2cd8-0x651b2d13]
[ 0.013233] ACPI: Reserving HPET table memory at [mem 0x651b2d18-0x651b2d4f]
[ 0.013234] ACPI: Reserving SSDT table memory at [mem 0x651b2d50-0x651b30a8]
[ 0.013235] ACPI: Reserving BOOT table memory at [mem 0x651b30b0-0x651b30d7]
[ 0.013235] ACPI: Reserving SSDT table memory at [mem 0x651b30d8-0x651b43a6]
[ 0.013236] ACPI: Reserving HPET table memory at [mem 0x651b43a8-0x651b43df]
[ 0.013237] ACPI: Reserving SSDT table memory at [mem 0x651b43e0-0x651b5163]
[ 0.013238] ACPI: Reserving UEFI table memory at [mem 0x651b5168-0x651b51a9]
[ 0.013238] ACPI: Reserving SSDT table memory at [mem 0x651b51b0-0x651b608d]
[ 0.013239] ACPI: Reserving LPIT table memory at [mem 0x651b6090-0x651b6123]
[ 0.013240] ACPI: Reserving WSMT table memory at [mem 0x651b6128-0x651b614f]
[ 0.013240] ACPI: Reserving SSDT table memory at [mem 0x651b6150-0x651b62b0]
[ 0.013241] ACPI: Reserving SSDT table memory at [mem 0x651b62b8-0x651b6556]
[ 0.013242] ACPI: Reserving SSDT table memory at [mem 0x651b6558-0x651b9559]
[ 0.013243] ACPI: Reserving SSDT table memory at [mem 0x651b9560-0x651b963a]
[ 0.013243] ACPI: Reserving DBGP table memory at [mem 0x651b9640-0x651b9673]
[ 0.013244] ACPI: Reserving DBG2 table memory at [mem 0x651b9678-0x651b96cb]
[ 0.013245] ACPI: Reserving SSDT table memory at [mem 0x651b96d0-0x651b9eac]
[ 0.013246] ACPI: Reserving SSDT table memory at [mem 0x651b9eb0-0x651c23a0]
[ 0.013246] ACPI: Reserving SLIC table memory at [mem 0x651c23a8-0x651c251d]
[ 0.013247] ACPI: Reserving NHLT table memory at [mem 0x651c2520-0x651c254c]
[ 0.013248] ACPI: Reserving BGRT table memory at [mem 0x651c2550-0x651c2587]
[ 0.013248] ACPI: Reserving TPM2 table memory at [mem 0x651c2588-0x651c25bb]
[ 0.013249] ACPI: Reserving ASF! table memory at [mem 0x651c25c0-0x651c265f]
[ 0.013250] ACPI: Reserving DMAR table memory at [mem 0x651c2660-0x651c274f]
[ 0.013376] No NUMA configuration found
[ 0.013377] Faking a node at [mem 0x0000000000000000-0x00000004817fffff]
[ 0.013385] NODE_DATA(0) allocated [mem 0x47f3d5000-0x47f3fffff]
[ 0.013555] Zone ranges:
[ 0.013556] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.013557] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.013559] Normal [mem 0x0000000100000000-0x00000004817fffff]
[ 0.013560] Device empty
[ 0.013561] Movable zone start for each node
[ 0.013563] Early memory node ranges
[ 0.013563] node 0: [mem 0x0000000000001000-0x0000000000057fff]
[ 0.013565] node 0: [mem 0x0000000000059000-0x000000000009dfff]
[ 0.013565] node 0: [mem 0x0000000000100000-0x00000000556aafff]
[ 0.013566] node 0: [mem 0x00000000556ad000-0x0000000064df3fff]
[ 0.013567] node 0: [mem 0x000000006ffff000-0x000000006fffffff]
[ 0.013568] node 0: [mem 0x0000000078000000-0x00000000785fffff]
[ 0.013568] node 0: [mem 0x0000000100000000-0x00000004817fffff]
[ 0.013570] Initmem setup node 0 [mem 0x0000000000001000-0x00000004817fffff]
[ 0.013574] On node 0, zone DMA: 1 pages in unavailable ranges
[ 0.013576] On node 0, zone DMA: 1 pages in unavailable ranges
[ 0.013598] On node 0, zone DMA: 98 pages in unavailable ranges
[ 0.015944] On node 0, zone DMA32: 2 pages in unavailable ranges
[ 0.016368] On node 0, zone DMA32: 45579 pages in unavailable ranges
[ 0.016885] On node 0, zone Normal: 31232 pages in unavailable ranges
[ 0.017118] On node 0, zone Normal: 26624 pages in unavailable ranges
[ 0.017126] Reserving Intel graphics memory at [mem 0x7a800000-0x7c7fffff]
[ 0.017304] ACPI: PM-Timer IO Port: 0x1808
[ 0.017309] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.017311] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[ 0.017311] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[ 0.017312] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[ 0.017338] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[ 0.017340] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.017342] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.017345] ACPI: Using ACPI (MADT) for SMP configuration information
[ 0.017346] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[ 0.017351] e820: update [mem 0x62260000-0x623ecfff] usable ==> reserved
[ 0.017360] TSC deadline timer available
[ 0.017366] CPU topo: Max. logical packages: 1
[ 0.017367] CPU topo: Max. logical dies: 1
[ 0.017367] CPU topo: Max. dies per package: 1
[ 0.017371] CPU topo: Max. threads per core: 2
[ 0.017371] CPU topo: Num. cores per package: 2
[ 0.017372] CPU topo: Num. threads per package: 4
[ 0.017373] CPU topo: Allowing 4 present CPUs plus 0 hotplug CPUs
[ 0.017390] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.017392] PM: hibernation: Registered nosave memory: [mem 0x00058000-0x00058fff]
[ 0.017394] PM: hibernation: Registered nosave memory: [mem 0x0009e000-0x000fffff]
[ 0.017396] PM: hibernation: Registered nosave memory: [mem 0x511e8000-0x511e8fff]
[ 0.017397] PM: hibernation: Registered nosave memory: [mem 0x511f8000-0x511f8fff]
[ 0.017399] PM: hibernation: Registered nosave memory: [mem 0x556ab000-0x556abfff]
[ 0.017399] PM: hibernation: Registered nosave memory: [mem 0x556ac000-0x556acfff]
[ 0.017401] PM: hibernation: Registered nosave memory: [mem 0x62260000-0x623ecfff]
[ 0.017403] PM: hibernation: Registered nosave memory: [mem 0x64df4000-0x6517ffff]
[ 0.017403] PM: hibernation: Registered nosave memory: [mem 0x65180000-0x651c3fff]
[ 0.017404] PM: hibernation: Registered nosave memory: [mem 0x651c4000-0x6f871fff]
[ 0.017404] PM: hibernation: Registered nosave memory: [mem 0x6f872000-0x6fffefff]
[ 0.017406] PM: hibernation: Registered nosave memory: [mem 0x70000000-0x77ffffff]
[ 0.017407] PM: hibernation: Registered nosave memory: [mem 0x78600000-0x7c7fffff]
[ 0.017408] PM: hibernation: Registered nosave memory: [mem 0x7c800000-0xfdffffff]
[ 0.017409] PM: hibernation: Registered nosave memory: [mem 0xfe000000-0xfe010fff]
[ 0.017409] PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xfebfffff]
[ 0.017410] PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[ 0.017411] PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfedfffff]
[ 0.017411] PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[ 0.017412] PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xffffffff]
[ 0.017413] [mem 0x7c800000-0xfdffffff] available for PCI devices
[ 0.017414] Booting paravirtualized kernel on bare hardware
[ 0.017416] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[ 0.021820] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
[ 0.022143] percpu: Embedded 94 pages/cpu s290816 r65536 d28672 u524288
[ 0.022150] pcpu-alloc: s290816 r65536 d28672 u524288 alloc=1*2097152
[ 0.022152] pcpu-alloc: [0] 0 1 2 3
[ 0.022170] Kernel command line: BOOT_IMAGE=/vmlinuz-6.11.0-rc3-00008-gefdb6ceb4ffd root=UUID=32e29882-d94d-4a92-9ee4-4d03002bfa29 ro quiet pci=noaer mem_sleep_default=deep log_buf_len=8M cryptomgr.notests initcall_debug
[ 0.022232] Unknown kernel command line parameters "BOOT_IMAGE=/vmlinuz-6.11.0-rc3-00008-gefdb6ceb4ffd", will be passed to user space.
[ 0.022257] random: crng init done
[ 0.023717] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[ 0.024480] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[ 0.024527] Fallback order for Node 0: 0
[ 0.024530] Built 1 zonelists, mobility grouping on. Total pages: 4090767
[ 0.024531] Policy zone: Normal
[ 0.024536] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
[ 0.024543] software IO TLB: area num 4.
[ 0.042863] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[ 0.042865] kmemleak: Kernel memory leak detector disabled
[ 0.042891] ftrace: allocating 42531 entries in 167 pages
[ 0.049672] ftrace: allocated 167 pages with 5 groups
[ 0.050281] Dynamic Preempt: voluntary
[ 0.050311] rcu: Preemptible hierarchical RCU implementation.
[ 0.050312] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=4.
[ 0.050313] Trampoline variant of Tasks RCU enabled.
[ 0.050314] Rude variant of Tasks RCU enabled.
[ 0.050314] Tracing variant of Tasks RCU enabled.
[ 0.050315] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[ 0.050315] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[ 0.050320] RCU Tasks: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
[ 0.050322] RCU Tasks Rude: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
[ 0.050323] RCU Tasks Trace: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
[ 0.052510] NR_IRQS: 524544, nr_irqs: 1024, preallocated irqs: 16
[ 0.052724] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[ 0.052891] calling con_init+0x0/0x280 @ 0
[ 0.052903] Console: colour dummy device 80x25
[ 0.052904] printk: legacy console [tty0] enabled
[ 0.052923] initcall con_init+0x0/0x280 returned 0 after 0 usecs
[ 0.052925] calling hvc_console_init+0x0/0x20 @ 0
[ 0.052927] initcall hvc_console_init+0x0/0x20 returned 0 after 0 usecs
[ 0.052929] calling xen_cons_init+0x0/0x50 @ 0
[ 0.052931] initcall xen_cons_init+0x0/0x50 returned 0 after 0 usecs
[ 0.052933] calling univ8250_console_init+0x0/0x30 @ 0
[ 0.052936] initcall univ8250_console_init+0x0/0x30 returned 0 after 0 usecs
[ 0.052952] ACPI: Core revision 20240322
[ 0.053095] hpet: HPET dysfunctional in PC10. Force disabled.
[ 0.053096] APIC: Switch to symmetric I/O mode setup
[ 0.053098] DMAR: Host address width 39
[ 0.053099] DMAR: DRHD base: 0x000000fed90000 flags: 0x0
[ 0.053105] DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap 1c0000c40660462 ecap 19e2ff0505e
[ 0.053107] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
[ 0.053110] DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
[ 0.053112] DMAR: RMRR base: 0x00000064ec2000 end: 0x00000064ee1fff
[ 0.053113] DMAR: RMRR base: 0x0000007a000000 end: 0x0000007c7fffff
[ 0.053114] DMAR: ANDD device: 1 name: \_SB.PCI0.I2C0
[ 0.053115] DMAR: ANDD device: 2 name: \_SB.PCI0.I2C1
[ 0.053117] DMAR-IR: IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 1
[ 0.053118] DMAR-IR: HPET id 0 under DRHD base 0xfed91000
[ 0.053119] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[ 0.054915] DMAR-IR: Enabled IRQ remapping in x2apic mode
[ 0.054916] x2apic enabled
[ 0.054972] APIC: Switched APIC routing to: cluster x2apic
[ 0.058814] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x29ccd767b87, max_idle_ns: 440795223720 ns
[ 0.058819] Calibrating delay loop (skipped), value calculated using timer frequency.. 5799.77 BogoMIPS (lpj=11599544)
[ 0.058858] CPU0: Thermal monitoring enabled (TM1)
[ 0.058894] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
[ 0.058895] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[ 0.058899] process: using mwait in idle threads
[ 0.058902] Spectre V2 : User space: Vulnerable
[ 0.058903] Speculative Store Bypass: Vulnerable
[ 0.058906] SRBDS: Vulnerable
[ 0.058911] GDS: Vulnerable
[ 0.058915] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[ 0.058917] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[ 0.058917] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[ 0.058918] x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
[ 0.058919] x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
[ 0.058920] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
[ 0.058921] x86/fpu: xstate_offset[3]: 832, xstate_sizes[3]: 64
[ 0.058922] x86/fpu: xstate_offset[4]: 896, xstate_sizes[4]: 64
[ 0.058923] x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format.
[ 0.062817] Freeing SMP alternatives memory: 36K
[ 0.062817] pid_max: default: 32768 minimum: 301
[ 0.062817] LSM: initializing lsm=capability,landlock,apparmor,bpf
[ 0.062817] landlock: Up and running.
[ 0.062817] AppArmor: AppArmor initialized
[ 0.062817] LSM support for eBPF active
[ 0.062817] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[ 0.062817] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[ 0.062817] smpboot: CPU0: Intel(R) Core(TM) i7-7500U CPU @ 2.70GHz (family: 0x6, model: 0x8e, stepping: 0x9)
[ 0.062817] calling init_hw_perf_events+0x0/0x6d0 @ 1
[ 0.062817] Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
[ 0.062817] ... version: 4
[ 0.062817] ... bit width: 48
[ 0.062817] ... generic registers: 4
[ 0.062817] ... value mask: 0000ffffffffffff
[ 0.062817] ... max period: 00007fffffffffff
[ 0.062817] ... fixed-purpose events: 3
[ 0.062817] ... event mask: 000000070000000f
[ 0.062817] initcall init_hw_perf_events+0x0/0x6d0 returned 0 after 0 usecs
[ 0.062817] calling mc_debug_enable+0x0/0xc0 @ 1
[ 0.062817] initcall mc_debug_enable+0x0/0xc0 returned 0 after 0 usecs
[ 0.062817] calling do_init_real_mode+0x0/0x20 @ 1
[ 0.062817] initcall do_init_real_mode+0x0/0x20 returned 0 after 0 usecs
[ 0.062817] calling init_sigframe_size+0x0/0x40 @ 1
[ 0.062817] signal: max sigframe size: 1616
[ 0.062817] initcall init_sigframe_size+0x0/0x40 returned 0 after 0 usecs
[ 0.062817] calling trace_init_perf_perm_irq_work_exit+0x0/0x20 @ 1
[ 0.062817] initcall trace_init_perf_perm_irq_work_exit+0x0/0x20 returned 0 after 0 usecs
[ 0.062817] calling cache_ap_register+0x0/0x60 @ 1
[ 0.062817] initcall cache_ap_register+0x0/0x60 returned 0 after 0 usecs
[ 0.062817] calling bp_init_aperfmperf+0x0/0x330 @ 1
[ 0.062817] Estimated ratio of average max frequency by base frequency (times 1024): 1235
[ 0.062817] initcall bp_init_aperfmperf+0x0/0x330 returned 0 after 0 usecs
[ 0.062817] calling save_builtin_microcode+0x0/0xf0 @ 1
[ 0.062817] initcall save_builtin_microcode+0x0/0xf0 returned 0 after 0 usecs
[ 0.062817] calling save_microcode_in_initrd+0x0/0x100 @ 1
[ 0.062817] initcall save_microcode_in_initrd+0x0/0x100 returned 0 after 0 usecs
[ 0.062817] calling register_nmi_cpu_backtrace_handler+0x0/0x20 @ 1
[ 0.062817] initcall register_nmi_cpu_backtrace_handler+0x0/0x20 returned 0 after 0 usecs
[ 0.062817] calling kvm_setup_vsyscall_timeinfo+0x0/0x180 @ 1
[ 0.062817] initcall kvm_setup_vsyscall_timeinfo+0x0/0x180 returned 0 after 0 usecs
[ 0.062817] calling spawn_ksoftirqd+0x0/0x40 @ 1
[ 0.062817] initcall spawn_ksoftirqd+0x0/0x40 returned 0 after 0 usecs
[ 0.062817] calling init_signal_sysctls+0x0/0x30 @ 1
[ 0.062817] initcall init_signal_sysctls+0x0/0x30 returned 0 after 0 usecs
[ 0.062817] calling init_umh_sysctls+0x0/0x30 @ 1
[ 0.062817] initcall init_umh_sysctls+0x0/0x30 returned 0 after 0 usecs
[ 0.062817] calling migration_init+0x0/0x50 @ 1
[ 0.062817] initcall migration_init+0x0/0x50 returned 0 after 0 usecs
[ 0.062817] calling srcu_bootup_announce+0x0/0x80 @ 1
[ 0.062817] rcu: Hierarchical SRCU implementation.
[ 0.062817] rcu: Max phase no-delay instances is 1000.
[ 0.062817] initcall srcu_bootup_announce+0x0/0x80 returned 0 after 0 usecs
[ 0.062817] calling rcu_spawn_gp_kthread+0x0/0x230 @ 1
[ 0.062817] initcall rcu_spawn_gp_kthread+0x0/0x230 returned 0 after 0 usecs
[ 0.062817] calling check_cpu_stall_init+0x0/0x20 @ 1
[ 0.062817] initcall check_cpu_stall_init+0x0/0x20 returned 0 after 0 usecs
[ 0.062817] calling rcu_sysrq_init+0x0/0x30 @ 1
[ 0.062817] initcall rcu_sysrq_init+0x0/0x30 returned 0 after 0 usecs
[ 0.062817] calling trace_init_flags_sys_enter+0x0/0x20 @ 1
[ 0.062817] initcall trace_init_flags_sys_enter+0x0/0x20 returned 0 after 0 usecs
[ 0.062817] calling trace_init_flags_sys_exit+0x0/0x20 @ 1
[ 0.062817] initcall trace_init_flags_sys_exit+0x0/0x20 returned 0 after 0 usecs
[ 0.062817] calling tmigr_init+0x0/0x190 @ 1
[ 0.062817] Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level
[ 0.062817] initcall tmigr_init+0x0/0x190 returned 0 after 0 usecs
[ 0.062817] calling cpu_stop_init+0x0/0xa0 @ 1
[ 0.062817] initcall cpu_stop_init+0x0/0xa0 returned 0 after 0 usecs
[ 0.062817] calling init_kprobes+0x0/0x1b0 @ 1
[ 0.062817] initcall init_kprobes+0x0/0x1b0 returned 0 after 0 usecs
[ 0.062817] calling init_trace_printk+0x0/0x10 @ 1
[ 0.062817] initcall init_trace_printk+0x0/0x10 returned 0 after 0 usecs
[ 0.062817] calling event_trace_enable_again+0x0/0x50 @ 1
[ 0.062817] initcall event_trace_enable_again+0x0/0x50 returned 0 after 0 usecs
[ 0.062817] calling irq_work_init_threads+0x0/0x10 @ 1
[ 0.062817] initcall irq_work_init_threads+0x0/0x10 returned 0 after 0 usecs
[ 0.062817] calling static_call_init+0x0/0xa0 @ 1
[ 0.062817] initcall static_call_init+0x0/0xa0 returned 0 after 0 usecs
[ 0.062817] calling jump_label_init_module+0x0/0x20 @ 1
[ 0.062817] initcall jump_label_init_module+0x0/0x20 returned 0 after 0 usecs
[ 0.062817] calling init_zero_pfn+0x0/0x40 @ 1
[ 0.062817] initcall init_zero_pfn+0x0/0x40 returned 0 after 0 usecs
[ 0.062817] calling init_fs_inode_sysctls+0x0/0x30 @ 1
[ 0.062817] initcall init_fs_inode_sysctls+0x0/0x30 returned 0 after 0 usecs
[ 0.062817] calling init_fs_locks_sysctls+0x0/0x30 @ 1
[ 0.062817] initcall init_fs_locks_sysctls+0x0/0x30 returned 0 after 0 usecs
[ 0.062817] calling init_fs_sysctls+0x0/0x30 @ 1
[ 0.062817] initcall init_fs_sysctls+0x0/0x30 returned 0 after 0 usecs
[ 0.062817] calling init_security_keys_sysctls+0x0/0x30 @ 1
[ 0.062817] initcall init_security_keys_sysctls+0x0/0x30 returned 0 after 0 usecs
[ 0.062817] calling dynamic_debug_init+0x0/0x2f0 @ 1
[ 0.062817] initcall dynamic_debug_init+0x0/0x2f0 returned 0 after 0 usecs
[ 0.062817] calling unpopulated_init+0x0/0x50 @ 1
[ 0.062817] initcall unpopulated_init+0x0/0x50 returned -19 after 0 usecs
[ 0.062817] calling efi_memreserve_root_init+0x0/0x50 @ 1
[ 0.062817] initcall efi_memreserve_root_init+0x0/0x50 returned 0 after 0 usecs
[ 0.062817] calling efi_earlycon_remap_fb+0x0/0x70 @ 1
[ 0.062817] initcall efi_earlycon_remap_fb+0x0/0x70 returned 0 after 0 usecs
[ 0.062817] calling idle_inject_init+0x0/0x20 @ 1
[ 0.062817] initcall idle_inject_init+0x0/0x20 returned 0 after 0 usecs
[ 0.062817] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[ 0.062817] smp: Bringing up secondary CPUs ...
[ 0.062817] smpboot: x86: Booting SMP configuration:
[ 0.062817] .... node #0, CPUs: #1 #2 #3
[ 0.062817] smp: Brought up 1 node, 4 CPUs
[ 0.062817] smpboot: Total of 4 processors activated (23199.08 BogoMIPS)
[ 0.083877] node 0 deferred pages initialised in 20ms
[ 0.083879] Memory: 15896856K/16363068K available (14336K kernel code, 2506K rwdata, 9804K rodata, 2892K init, 6576K bss, 455548K reserved, 0K cma-reserved)
[ 0.083879] devtmpfs: initialized
[ 0.083879] x86/mm: Memory block size: 128MB
[ 0.083879] calling bpf_jit_charge_init+0x0/0x50 @ 1
[ 0.083879] initcall bpf_jit_charge_init+0x0/0x50 returned 0 after 0 usecs
[ 0.083879] calling ipc_ns_init+0x0/0x50 @ 1
[ 0.083883] initcall ipc_ns_init+0x0/0x50 returned 0 after 0 usecs
[ 0.083885] calling init_mmap_min_addr+0x0/0x30 @ 1
[ 0.083888] initcall init_mmap_min_addr+0x0/0x30 returned 0 after 0 usecs
[ 0.083890] calling pci_realloc_setup_params+0x0/0x70 @ 1
[ 0.083893] initcall pci_realloc_setup_params+0x0/0x70 returned 0 after 0 usecs
[ 0.083894] calling inet_frag_wq_init+0x0/0x50 @ 1
[ 0.083902] initcall inet_frag_wq_init+0x0/0x50 returned 0 after 0 usecs
[ 0.083902] calling xen_pvh_gnttab_setup+0x0/0x40 @ 1
[ 0.083902] initcall xen_pvh_gnttab_setup+0x0/0x40 returned -19 after 0 usecs
[ 0.083902] calling e820__register_nvs_regions+0x0/0x60 @ 1
[ 0.083902] ACPI: PM: Registering ACPI NVS region [mem 0x556ab000-0x556abfff] (4096 bytes)
[ 0.083902] ACPI: PM: Registering ACPI NVS region [mem 0x651c4000-0x6f871fff] (174776320 bytes)
[ 0.086937] initcall e820__register_nvs_regions+0x0/0x60 returned 0 after 4000 usecs
[ 0.086941] calling cpufreq_register_tsc_scaling+0x0/0x40 @ 1
[ 0.086944] initcall cpufreq_register_tsc_scaling+0x0/0x40 returned 0 after 0 usecs
[ 0.086947] calling reboot_init+0x0/0x50 @ 1
[ 0.086953] initcall reboot_init+0x0/0x50 returned 0 after 0 usecs
[ 0.086955] calling init_lapic_sysfs+0x0/0x30 @ 1
[ 0.086957] initcall init_lapic_sysfs+0x0/0x30 returned 0 after 0 usecs
[ 0.086960] calling alloc_frozen_cpus+0x0/0x30 @ 1
[ 0.086963] initcall alloc_frozen_cpus+0x0/0x30 returned 0 after 0 usecs
[ 0.086965] calling cpu_hotplug_pm_sync_init+0x0/0x20 @ 1
[ 0.086968] initcall cpu_hotplug_pm_sync_init+0x0/0x20 returned 0 after 0 usecs
[ 0.086970] calling wq_sysfs_init+0x0/0x20 @ 1
[ 0.086991] initcall wq_sysfs_init+0x0/0x20 returned 0 after 0 usecs
[ 0.086993] calling ksysfs_init+0x0/0xa0 @ 1
[ 0.086999] initcall ksysfs_init+0x0/0xa0 returned 0 after 0 usecs
[ 0.087001] calling schedutil_gov_init+0x0/0x20 @ 1
[ 0.087002] initcall schedutil_gov_init+0x0/0x20 returned 0 after 0 usecs
[ 0.087004] calling pm_init+0x0/0x80 @ 1
[ 0.087015] initcall pm_init+0x0/0x80 returned 0 after 0 usecs
[ 0.087017] calling pm_disk_init+0x0/0x20 @ 1
[ 0.087021] initcall pm_disk_init+0x0/0x20 returned 0 after 0 usecs
[ 0.087022] calling swsusp_header_init+0x0/0x50 @ 1
[ 0.087024] initcall swsusp_header_init+0x0/0x50 returned 0 after 0 usecs
[ 0.087026] calling rcu_set_runtime_mode+0x0/0x20 @ 1
[ 0.087028] initcall rcu_set_runtime_mode+0x0/0x20 returned 0 after 0 usecs
[ 0.087030] calling init_jiffies_clocksource+0x0/0x20 @ 1
[ 0.087032] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[ 0.087035] initcall init_jiffies_clocksource+0x0/0x20 returned 0 after 0 usecs
[ 0.087037] calling futex_init+0x0/0xe0 @ 1
[ 0.087043] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[ 0.087046] initcall futex_init+0x0/0xe0 returned 0 after 0 usecs
[ 0.087049] calling cgroup_wq_init+0x0/0x30 @ 1
[ 0.087054] initcall cgroup_wq_init+0x0/0x30 returned 0 after 0 usecs
[ 0.087056] calling cgroup1_wq_init+0x0/0x30 @ 1
[ 0.087059] initcall cgroup1_wq_init+0x0/0x30 returned 0 after 0 usecs
[ 0.087061] calling ftrace_mod_cmd_init+0x0/0x10 @ 1
[ 0.087064] initcall ftrace_mod_cmd_init+0x0/0x10 returned 0 after 0 usecs
[ 0.087066] calling init_graph_trace+0x0/0x70 @ 1
[ 0.087071] initcall init_graph_trace+0x0/0x70 returned 0 after 0 usecs
[ 0.087072] calling trace_events_eprobe_init_early+0x0/0x30 @ 1
[ 0.087075] initcall trace_events_eprobe_init_early+0x0/0x30 returned 0 after 0 usecs
[ 0.087076] calling trace_events_synth_init_early+0x0/0x30 @ 1
[ 0.087078] initcall trace_events_synth_init_early+0x0/0x30 returned 0 after 0 usecs
[ 0.087079] calling init_kprobe_trace_early+0x0/0x30 @ 1
[ 0.087081] initcall init_kprobe_trace_early+0x0/0x30 returned 0 after 0 usecs
[ 0.087083] calling init_fprobe_trace_early+0x0/0x30 @ 1
[ 0.087084] initcall init_fprobe_trace_early+0x0/0x30 returned 0 after 0 usecs
[ 0.087086] calling bpf_offload_init+0x0/0x40 @ 1
[ 0.087088] initcall bpf_offload_init+0x0/0x40 returned 0 after 0 usecs
[ 0.087089] calling memory_failure_init+0x0/0xd0 @ 1
[ 0.087095] initcall memory_failure_init+0x0/0xd0 returned 0 after 0 usecs
[ 0.087096] calling fsnotify_init+0x0/0x50 @ 1
[ 0.087108] initcall fsnotify_init+0x0/0x50 returned 0 after 0 usecs
[ 0.087109] calling filelock_init+0x0/0xd0 @ 1
[ 0.087115] initcall filelock_init+0x0/0xd0 returned 0 after 0 usecs
[ 0.087117] calling init_script_binfmt+0x0/0x20 @ 1
[ 0.087119] initcall init_script_binfmt+0x0/0x20 returned 0 after 0 usecs
[ 0.087121] calling init_elf_binfmt+0x0/0x20 @ 1
[ 0.087123] initcall init_elf_binfmt+0x0/0x20 returned 0 after 0 usecs
[ 0.087124] calling debugfs_init+0x0/0x80 @ 1
[ 0.087128] initcall debugfs_init+0x0/0x80 returned 0 after 0 usecs
[ 0.087130] calling tracefs_init+0x0/0x70 @ 1
[ 0.087133] initcall tracefs_init+0x0/0x70 returned 0 after 0 usecs
[ 0.087135] calling securityfs_init+0x0/0x80 @ 1
[ 0.087155] initcall securityfs_init+0x0/0x80 returned 0 after 0 usecs
[ 0.087158] calling pinctrl_init+0x0/0xc0 @ 1
[ 0.087159] pinctrl core: initialized pinctrl subsystem
[ 0.087166] initcall pinctrl_init+0x0/0xc0 returned 0 after 0 usecs
[ 0.087168] calling gpiolib_dev_init+0x0/0x140 @ 1
[ 0.087176] initcall gpiolib_dev_init+0x0/0x140 returned 0 after 0 usecs
[ 0.087178] calling virtio_init+0x0/0x30 @ 1
[ 0.087183] initcall virtio_init+0x0/0x30 returned 0 after 0 usecs
[ 0.087184] calling regulator_init+0x0/0x110 @ 1
[ 0.087204] initcall regulator_init+0x0/0x110 returned 0 after 0 usecs
[ 0.087205] calling iommu_init+0x0/0x30 @ 1
[ 0.087208] initcall iommu_init+0x0/0x30 returned 0 after 0 usecs
[ 0.087210] calling component_debug_init+0x0/0x30 @ 1
[ 0.087212] initcall component_debug_init+0x0/0x30 returned 0 after 0 usecs
[ 0.087214] calling opp_debug_init+0x0/0x30 @ 1
[ 0.087218] initcall opp_debug_init+0x0/0x30 returned 0 after 0 usecs
[ 0.087220] calling cpufreq_core_init+0x0/0x100 @ 1
[ 0.087223] initcall cpufreq_core_init+0x0/0x100 returned 0 after 0 usecs
[ 0.087225] calling cpufreq_gov_performance_init+0x0/0x20 @ 1
[ 0.087228] initcall cpufreq_gov_performance_init+0x0/0x20 returned 0 after 0 usecs
[ 0.087230] calling cpuidle_init+0x0/0x20 @ 1
[ 0.087235] initcall cpuidle_init+0x0/0x20 returned 0 after 0 usecs
[ 0.087237] calling unaccepted_memory_init_kdump+0x0/0x20 @ 1
[ 0.087239] initcall unaccepted_memory_init_kdump+0x0/0x20 returned 0 after 0 usecs
[ 0.087240] calling sock_init+0x0/0xa0 @ 1
[ 0.087202] probe of reg-dummy returned 0 after 0 usecs
[ 0.087626] initcall sock_init+0x0/0xa0 returned 0 after 0 usecs
[ 0.087629] calling net_inuse_init+0x0/0x30 @ 1
[ 0.087632] initcall net_inuse_init+0x0/0x30 returned 0 after 0 usecs
[ 0.087633] calling sock_struct_check+0x0/0x10 @ 1
[ 0.087635] initcall sock_struct_check+0x0/0x10 returned 0 after 0 usecs
[ 0.087636] calling net_defaults_init+0x0/0x50 @ 1
[ 0.087638] initcall net_defaults_init+0x0/0x50 returned 0 after 0 usecs
[ 0.087640] calling init_default_flow_dissectors+0x0/0x60 @ 1
[ 0.087642] initcall init_default_flow_dissectors+0x0/0x60 returned 0 after 0 usecs
[ 0.087643] calling netlink_proto_init+0x0/0x230 @ 1
[ 0.087661] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[ 0.087672] initcall netlink_proto_init+0x0/0x230 returned 0 after 0 usecs
[ 0.087674] calling genl_init+0x0/0x50 @ 1
[ 0.087678] initcall genl_init+0x0/0x50 returned 0 after 0 usecs
[ 0.087680] calling bsp_pm_check_init+0x0/0x20 @ 1
[ 0.087681] initcall bsp_pm_check_init+0x0/0x20 returned 0 after 0 usecs
[ 0.087683] calling __gnttab_init+0x0/0x30 @ 1
[ 0.087686] initcall __gnttab_init+0x0/0x30 returned -19 after 0 usecs
[ 0.087709] calling irq_sysfs_init+0x0/0xe0 @ 1
[ 0.087761] initcall irq_sysfs_init+0x0/0xe0 returned 0 after 0 usecs
[ 0.087764] calling dma_atomic_pool_init+0x0/0x150 @ 1
[ 0.087874] DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations
[ 0.087979] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 0.088106] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 0.088117] initcall dma_atomic_pool_init+0x0/0x150 returned 0 after 0 usecs
[ 0.088122] calling audit_init+0x0/0x180 @ 1
[ 0.088128] audit: initializing netlink subsys (disabled)
[ 0.088143] initcall audit_init+0x0/0x180 returned 0 after 0 usecs
[ 0.088143] audit: type=2000 audit(1723539660.028:1): state=initialized audit_enabled=0 res=1
[ 0.088143] calling release_early_probes+0x0/0x50 @ 1
[ 0.088143] initcall release_early_probes+0x0/0x50 returned 0 after 0 usecs
[ 0.088143] calling bdi_class_init+0x0/0x40 @ 1
[ 0.088143] initcall bdi_class_init+0x0/0x40 returned 0 after 0 usecs
[ 0.088143] calling mm_sysfs_init+0x0/0x30 @ 1
[ 0.088143] initcall mm_sysfs_init+0x0/0x30 returned 0 after 0 usecs
[ 0.088143] calling init_per_zone_wmark_min+0x0/0x30 @ 1
[ 0.088143] initcall init_per_zone_wmark_min+0x0/0x30 returned 0 after 0 usecs
[ 0.088143] calling mpi_init+0x0/0x80 @ 1
[ 0.088143] initcall mpi_init+0x0/0x80 returned 0 after 0 usecs
[ 0.088143] calling gpiolib_sysfs_init+0x0/0x30 @ 1
[ 0.088143] initcall gpiolib_sysfs_init+0x0/0x30 returned 0 after 0 usecs
[ 0.088143] calling acpi_gpio_setup_params+0x0/0xe0 @ 1
[ 0.088143] initcall acpi_gpio_setup_params+0x0/0xe0 returned 0 after 0 usecs
[ 0.088143] calling pcibus_class_init+0x0/0x20 @ 1
[ 0.088143] initcall pcibus_class_init+0x0/0x20 returned 0 after 0 usecs
[ 0.088143] calling pci_driver_init+0x0/0x30 @ 1
[ 0.088143] initcall pci_driver_init+0x0/0x30 returned 0 after 0 usecs
[ 0.088143] calling backlight_class_init+0x0/0x90 @ 1
[ 0.088143] initcall backlight_class_init+0x0/0x90 returned 0 after 0 usecs
[ 0.088143] calling xenbus_init+0x0/0x4b0 @ 1
[ 0.088143] initcall xenbus_init+0x0/0x4b0 returned -19 after 0 usecs
[ 0.088143] calling tty_class_init+0x0/0x20 @ 1
[ 0.088143] initcall tty_class_init+0x0/0x20 returned 0 after 0 usecs
[ 0.088143] calling vtconsole_class_init+0x0/0xc0 @ 1
[ 0.088143] initcall vtconsole_class_init+0x0/0xc0 returned 0 after 0 usecs
[ 0.088143] calling serdev_init+0x0/0x30 @ 1
[ 0.088143] initcall serdev_init+0x0/0x30 returned 0 after 0 usecs
[ 0.088143] calling iommu_dev_init+0x0/0x20 @ 1
[ 0.088143] initcall iommu_dev_init+0x0/0x20 returned 0 after 0 usecs
[ 0.088143] calling mipi_dsi_bus_init+0x0/0x20 @ 1
[ 0.088143] initcall mipi_dsi_bus_init+0x0/0x20 returned 0 after 0 usecs
[ 0.088143] calling devlink_class_init+0x0/0x50 @ 1
[ 0.088143] initcall devlink_class_init+0x0/0x50 returned 0 after 0 usecs
[ 0.088143] calling software_node_init+0x0/0x30 @ 1
[ 0.088143] initcall software_node_init+0x0/0x30 returned 0 after 0 usecs
[ 0.088143] calling wakeup_sources_debugfs_init+0x0/0x30 @ 1
[ 0.088143] initcall wakeup_sources_debugfs_init+0x0/0x30 returned 0 after 0 usecs
[ 0.088143] calling wakeup_sources_sysfs_init+0x0/0x30 @ 1
[ 0.088143] initcall wakeup_sources_sysfs_init+0x0/0x30 returned 0 after 0 usecs
[ 0.088143] calling regmap_initcall+0x0/0x20 @ 1
[ 0.088143] initcall regmap_initcall+0x0/0x20 returned 0 after 0 usecs
[ 0.088143] calling syscon_init+0x0/0x20 @ 1
[ 0.088143] initcall syscon_init+0x0/0x20 returned 0 after 0 usecs
[ 0.088143] calling spi_init+0x0/0xb0 @ 1
[ 0.088143] initcall spi_init+0x0/0xb0 returned 0 after 0 usecs
[ 0.088143] calling i2c_init+0x0/0xf0 @ 1
[ 0.088143] initcall i2c_init+0x0/0xf0 returned 0 after 0 usecs
[ 0.088143] calling thermal_init+0x0/0x180 @ 1
[ 0.088143] thermal_sys: Registered thermal governor 'fair_share'
[ 0.088143] thermal_sys: Registered thermal governor 'bang_bang'
[ 0.088143] thermal_sys: Registered thermal governor 'step_wise'
[ 0.088143] thermal_sys: Registered thermal governor 'user_space'
[ 0.088143] thermal_sys: Registered thermal governor 'power_allocator'
[ 0.088143] initcall thermal_init+0x0/0x180 returned 0 after 0 usecs
[ 0.088143] calling init_ladder+0x0/0x30 @ 1
[ 0.088143] cpuidle: using governor ladder
[ 0.088143] initcall init_ladder+0x0/0x30 returned 0 after 0 usecs
[ 0.088143] calling init_menu+0x0/0x20 @ 1
[ 0.088143] cpuidle: using governor menu
[ 0.088143] initcall init_menu+0x0/0x20 returned 0 after 0 usecs
[ 0.088143] calling init_haltpoll+0x0/0x30 @ 1
[ 0.088143] initcall init_haltpoll+0x0/0x30 returned 0 after 0 usecs
[ 0.088143] calling pcc_init+0x0/0xa0 @ 1
[ 0.088143] initcall pcc_init+0x0/0xa0 returned -19 after 0 usecs
[ 0.088143] calling amd_postcore_init+0x0/0x130 @ 1
[ 0.088143] initcall amd_postcore_init+0x0/0x130 returned 0 after 0 usecs
[ 0.088143] calling kobject_uevent_init+0x0/0x10 @ 1
[ 0.088143] initcall kobject_uevent_init+0x0/0x10 returned 0 after 0 usecs
[ 0.088143] calling report_snp_info+0x0/0xc0 @ 1
[ 0.088143] initcall report_snp_info+0x0/0xc0 returned 0 after 0 usecs
[ 0.088143] calling sev_sysfs_init+0x0/0x90 @ 1
[ 0.088143] initcall sev_sysfs_init+0x0/0x90 returned -19 after 0 usecs
[ 0.088143] calling bts_init+0x0/0xd0 @ 1
[ 0.088143] initcall bts_init+0x0/0xd0 returned 0 after 0 usecs
[ 0.088143] calling pt_init+0x0/0x3d0 @ 1
[ 0.088143] initcall pt_init+0x0/0x3d0 returned 0 after 0 usecs
[ 0.088143] calling boot_params_ksysfs_init+0x0/0x330 @ 1
[ 0.088143] initcall boot_params_ksysfs_init+0x0/0x330 returned 0 after 0 usecs
[ 0.088143] calling sbf_init+0x0/0x100 @ 1
[ 0.088143] Simple Boot Flag at 0x47 set to 0x80
[ 0.088143] initcall sbf_init+0x0/0x100 returned 0 after 0 usecs
[ 0.088143] calling arch_kdebugfs_init+0x0/0x30 @ 1
[ 0.088143] initcall arch_kdebugfs_init+0x0/0x30 returned 0 after 0 usecs
[ 0.088143] calling xfd_update_static_branch+0x0/0x30 @ 1
[ 0.088143] initcall xfd_update_static_branch+0x0/0x30 returned 0 after 0 usecs
[ 0.088143] calling mtrr_if_init+0x0/0x70 @ 1
[ 0.088143] initcall mtrr_if_init+0x0/0x70 returned 0 after 0 usecs
[ 0.088143] calling activate_jump_labels+0x0/0x40 @ 1
[ 0.088143] initcall activate_jump_labels+0x0/0x40 returned 0 after 0 usecs
[ 0.088143] calling init_s4_sigcheck+0x0/0x30 @ 1
[ 0.088143] initcall init_s4_sigcheck+0x0/0x30 returned 0 after 0 usecs
[ 0.088143] calling ffh_cstate_init+0x0/0x60 @ 1
[ 0.088143] initcall ffh_cstate_init+0x0/0x60 returned 0 after 0 usecs
[ 0.088143] calling kvm_alloc_cpumask+0x0/0xc0 @ 1
[ 0.088143] initcall kvm_alloc_cpumask+0x0/0xc0 returned 0 after 0 usecs
[ 0.088143] calling activate_jump_labels+0x0/0x40 @ 1
[ 0.088143] initcall activate_jump_labels+0x0/0x40 returned 0 after 0 usecs
[ 0.088143] calling gigantic_pages_init+0x0/0x30 @ 1
[ 0.088143] initcall gigantic_pages_init+0x0/0x30 returned 0 after 0 usecs
[ 0.088143] calling kcmp_cookies_init+0x0/0x50 @ 1
[ 0.088143] initcall kcmp_cookies_init+0x0/0x50 returned 0 after 0 usecs
[ 0.088143] calling cryptomgr_init+0x0/0x20 @ 1
[ 0.088143] initcall cryptomgr_init+0x0/0x20 returned 0 after 0 usecs
[ 0.088143] calling acpi_pci_init+0x0/0x60 @ 1
[ 0.088143] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[ 0.088143] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.088143] initcall acpi_pci_init+0x0/0x60 returned 0 after 0 usecs
[ 0.088143] calling dma_channel_table_init+0x0/0x140 @ 1
[ 0.088143] initcall dma_channel_table_init+0x0/0x140 returned 0 after 0 usecs
[ 0.088143] calling dma_bus_init+0x0/0x110 @ 1
[ 0.088143] initcall dma_bus_init+0x0/0x110 returned 0 after 0 usecs
[ 0.088143] calling register_xen_pci_notifier+0x0/0x40 @ 1
[ 0.088143] initcall register_xen_pci_notifier+0x0/0x40 returned 0 after 0 usecs
[ 0.088143] calling xen_pcpu_init+0x0/0xc0 @ 1
[ 0.088143] initcall xen_pcpu_init+0x0/0xc0 returned -19 after 0 usecs
[ 0.088143] calling serial_base_init+0x0/0x70 @ 1
[ 0.088143] initcall serial_base_init+0x0/0x70 returned 0 after 0 usecs
[ 0.088143] calling iommu_dma_init+0x0/0x30 @ 1
[ 0.088143] initcall iommu_dma_init+0x0/0x30 returned 0 after 0 usecs
[ 0.088143] calling dmi_id_init+0x0/0x3f0 @ 1
[ 0.088143] initcall dmi_id_init+0x0/0x3f0 returned 0 after 0 usecs
[ 0.088143] calling pci_arch_init+0x0/0x90 @ 1
[ 0.088143] PCI: ECAM [mem 0xe0000000-0xefffffff] (base 0xe0000000) for domain 0000 [bus 00-ff]
[ 0.088143] PCI: Using configuration type 1 for base access
[ 0.088143] initcall pci_arch_init+0x0/0x90 returned 0 after 0 usecs
[ 0.088143] calling init_vdso_image_64+0x0/0x20 @ 1
[ 0.088143] initcall init_vdso_image_64+0x0/0x20 returned 0 after 0 usecs
[ 0.088143] calling fixup_ht_bug+0x0/0x110 @ 1
[ 0.088143] initcall fixup_ht_bug+0x0/0x110 returned 0 after 0 usecs
[ 0.088143] calling mtrr_init_finalize+0x0/0x40 @ 1
[ 0.088143] initcall mtrr_init_finalize+0x0/0x40 returned 0 after 0 usecs
[ 0.088143] calling blake2s_mod_init+0x0/0x80 @ 1
[ 0.088143] initcall blake2s_mod_init+0x0/0x80 returned 0 after 0 usecs
[ 0.088143] calling uid_cache_init+0x0/0xc0 @ 1
[ 0.088143] initcall uid_cache_init+0x0/0xc0 returned 0 after 0 usecs
[ 0.088143] calling param_sysfs_init+0x0/0x50 @ 1
[ 0.088143] initcall param_sysfs_init+0x0/0x50 returned 0 after 0 usecs
[ 0.088143] calling user_namespace_sysctl_init+0x0/0xe0 @ 1
[ 0.088143] initcall user_namespace_sysctl_init+0x0/0xe0 returned 0 after 0 usecs
[ 0.088143] calling proc_schedstat_init+0x0/0x30 @ 1
[ 0.088143] initcall proc_schedstat_init+0x0/0x30 returned 0 after 0 usecs
[ 0.088143] calling pm_sysrq_init+0x0/0x20 @ 1
[ 0.088143] initcall pm_sysrq_init+0x0/0x20 returned 0 after 0 usecs
[ 0.088143] calling create_proc_profile+0x0/0x50 @ 1
[ 0.088143] initcall create_proc_profile+0x0/0x50 returned 0 after 0 usecs
[ 0.088143] calling crash_save_vmcoreinfo_init+0x0/0x710 @ 1
[ 0.088143] initcall crash_save_vmcoreinfo_init+0x0/0x710 returned 0 after 0 usecs
[ 0.088143] calling crash_notes_memory_init+0x0/0x60 @ 1
[ 0.088143] initcall crash_notes_memory_init+0x0/0x60 returned 0 after 0 usecs
[ 0.088143] calling crash_hotplug_init+0x0/0x40 @ 1
[ 0.088143] initcall crash_hotplug_init+0x0/0x40 returned 66 after 0 usecs
[ 0.088143] calling cgroup_sysfs_init+0x0/0x20 @ 1
[ 0.088143] initcall cgroup_sysfs_init+0x0/0x20 returned 0 after 0 usecs
[ 0.088143] calling user_namespaces_init+0x0/0x40 @ 1
[ 0.088143] initcall user_namespaces_init+0x0/0x40 returned 0 after 0 usecs
[ 0.088143] calling init_optprobes+0x0/0x30 @ 1
[ 0.088143] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[ 0.088143] initcall init_optprobes+0x0/0x30 returned 0 after 0 usecs
[ 0.088143] calling hung_task_init+0x0/0x80 @ 1
[ 0.088143] initcall hung_task_init+0x0/0x80 returned 0 after 0 usecs
[ 0.088143] calling ftrace_check_for_weak_functions+0x0/0x70 @ 1
[ 0.088143] initcall ftrace_check_for_weak_functions+0x0/0x70 returned 0 after 0 usecs
[ 0.088143] calling trace_eval_init+0x0/0xb0 @ 1
[ 0.088143] initcall trace_eval_init+0x0/0xb0 returned 0 after 0 usecs
[ 0.088143] calling send_signal_irq_work_init+0x0/0x70 @ 1
[ 0.088143] initcall send_signal_irq_work_init+0x0/0x70 returned 0 after 0 usecs
[ 0.088143] calling dev_map_init+0x0/0x20 @ 1
[ 0.088143] initcall dev_map_init+0x0/0x20 returned 0 after 0 usecs
[ 0.088143] calling netns_bpf_init+0x0/0x20 @ 1
[ 0.088143] initcall netns_bpf_init+0x0/0x20 returned 0 after 0 usecs
[ 0.088143] calling btf_vmlinux_init+0x0/0x60 @ 1
[ 0.088143] initcall btf_vmlinux_init+0x0/0x60 returned 0 after 0 usecs
[ 0.088143] calling oom_init+0x0/0x60 @ 1
[ 0.088143] initcall oom_init+0x0/0x60 returned 0 after 0 usecs
[ 0.088143] calling init_user_buckets+0x0/0x30 @ 1
[ 0.088143] initcall init_user_buckets+0x0/0x30 returned 0 after 0 usecs
[ 0.088143] calling default_bdi_init+0x0/0x30 @ 1
[ 0.088143] initcall default_bdi_init+0x0/0x30 returned 0 after 0 usecs
[ 0.088143] calling cgwb_init+0x0/0x30 @ 1
[ 0.088143] initcall cgwb_init+0x0/0x30 returned 0 after 0 usecs
[ 0.088143] calling percpu_enable_async+0x0/0x20 @ 1
[ 0.088143] initcall percpu_enable_async+0x0/0x20 returned 0 after 0 usecs
[ 0.088143] calling kcompactd_init+0x0/0xb0 @ 1
[ 0.088143] initcall kcompactd_init+0x0/0xb0 returned 0 after 0 usecs
[ 0.088143] calling init_user_reserve+0x0/0x40 @ 1
[ 0.088143] initcall init_user_reserve+0x0/0x40 returned 0 after 0 usecs
[ 0.088143] calling init_admin_reserve+0x0/0x40 @ 1
[ 0.088143] initcall init_admin_reserve+0x0/0x40 returned 0 after 0 usecs
[ 0.088143] calling init_reserve_notifier+0x0/0x30 @ 1
[ 0.088143] initcall init_reserve_notifier+0x0/0x30 returned 0 after 0 usecs
[ 0.088143] calling swap_init_sysfs+0x0/0x70 @ 1
[ 0.088143] initcall swap_init_sysfs+0x0/0x70 returned 0 after 0 usecs
[ 0.088143] calling swapfile_init+0x0/0xf0 @ 1
[ 0.088143] initcall swapfile_init+0x0/0xf0 returned 0 after 0 usecs
[ 0.088143] calling hugetlb_init+0x0/0x650 @ 1
[ 0.088143] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[ 0.088143] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[ 0.088143] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.088143] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[ 0.088143] initcall hugetlb_init+0x0/0x650 returned 0 after 0 usecs
[ 0.088143] calling ksm_init+0x0/0x1b0 @ 1
[ 0.088143] initcall ksm_init+0x0/0x1b0 returned 0 after 0 usecs
[ 0.088143] calling memory_tier_init+0x0/0xf0 @ 1
[ 0.088143] initcall memory_tier_init+0x0/0xf0 returned 0 after 0 usecs
[ 0.088143] calling numa_init_sysfs+0x0/0x70 @ 1
[ 0.088143] initcall numa_init_sysfs+0x0/0x70 returned 0 after 0 usecs
[ 0.088143] calling hugepage_init+0x0/0x350 @ 1
[ 0.088143] initcall hugepage_init+0x0/0x350 returned 0 after 0 usecs
[ 0.088143] calling mem_cgroup_init+0x0/0xa0 @ 1
[ 0.088143] initcall mem_cgroup_init+0x0/0xa0 returned 0 after 0 usecs
[ 0.088143] calling mem_cgroup_swap_init+0x0/0x50 @ 1
[ 0.088143] initcall mem_cgroup_swap_init+0x0/0x50 returned 0 after 0 usecs
[ 0.088143] calling init_msg_buckets+0x0/0x40 @ 1
[ 0.088143] initcall init_msg_buckets+0x0/0x40 returned 0 after 0 usecs
[ 0.088143] calling dh_init+0x0/0x50 @ 1
[ 0.088143] initcall dh_init+0x0/0x50 returned 0 after 0 usecs
[ 0.088143] calling rsa_init+0x0/0x50 @ 1
[ 0.088143] initcall rsa_init+0x0/0x50 returned 0 after 0 usecs
[ 0.088143] calling hmac_module_init+0x0/0x20 @ 1
[ 0.088143] initcall hmac_module_init+0x0/0x20 returned 0 after 0 usecs
[ 0.088143] calling md5_mod_init+0x0/0x20 @ 1
[ 0.088143] initcall md5_mod_init+0x0/0x20 returned 0 after 0 usecs
[ 0.088143] calling sha1_generic_mod_init+0x0/0x20 @ 1
[ 0.088143] initcall sha1_generic_mod_init+0x0/0x20 returned 0 after 0 usecs
[ 0.088143] calling sha256_generic_mod_init+0x0/0x20 @ 1
[ 0.088143] initcall sha256_generic_mod_init+0x0/0x20 returned 0 after 0 usecs
[ 0.088143] calling crypto_ecb_module_init+0x0/0x20 @ 1
[ 0.088143] initcall crypto_ecb_module_init+0x0/0x20 returned 0 after 0 usecs
[ 0.088143] calling crypto_cbc_module_init+0x0/0x20 @ 1
[ 0.088143] initcall crypto_cbc_module_init+0x0/0x20 returned 0 after 0 usecs
[ 0.088143] calling aes_init+0x0/0x20 @ 1
[ 0.088143] initcall aes_init+0x0/0x20 returned 0 after 0 usecs
[ 0.088143] calling crc32c_mod_init+0x0/0x20 @ 1
[ 0.088143] initcall crc32c_mod_init+0x0/0x20 returned 0 after 0 usecs
[ 0.088143] calling crct10dif_mod_init+0x0/0x20 @ 1
[ 0.088143] initcall crct10dif_mod_init+0x0/0x20 returned 0 after 0 usecs
[ 0.088143] calling lzo_mod_init+0x0/0x50 @ 1
[ 0.088143] initcall lzo_mod_init+0x0/0x50 returned 0 after 0 usecs
[ 0.088143] calling lzorle_mod_init+0x0/0x50 @ 1
[ 0.088143] initcall lzorle_mod_init+0x0/0x50 returned 0 after 0 usecs
[ 0.088143] calling init_bio+0x0/0xb0 @ 1
[ 0.088143] initcall init_bio+0x0/0xb0 returned 0 after 0 usecs
[ 0.088143] calling blk_ioc_init+0x0/0x30 @ 1
[ 0.088143] initcall blk_ioc_init+0x0/0x30 returned 0 after 0 usecs
[ 0.088143] calling blk_mq_init+0x0/0x120 @ 1
[ 0.088143] initcall blk_mq_init+0x0/0x120 returned 0 after 0 usecs
[ 0.088143] calling genhd_device_init+0x0/0x50 @ 1
[ 0.088143] initcall genhd_device_init+0x0/0x50 returned 0 after 0 usecs
[ 0.088143] calling io_wq_init+0x0/0x40 @ 1
[ 0.088143] initcall io_wq_init+0x0/0x40 returned 0 after 0 usecs
[ 0.088143] calling sg_pool_init+0x0/0xe0 @ 1
[ 0.088143] initcall sg_pool_init+0x0/0xe0 returned 0 after 0 usecs
[ 0.088143] calling irq_poll_setup+0x0/0x80 @ 1
[ 0.088143] initcall irq_poll_setup+0x0/0x80 returned 0 after 0 usecs
[ 0.088143] calling byt_gpio_init+0x0/0x20 @ 1
[ 0.088143] initcall byt_gpio_init+0x0/0x20 returned 0 after 0 usecs
[ 0.088143] calling chv_pinctrl_init+0x0/0x20 @ 1
[ 0.088143] initcall chv_pinctrl_init+0x0/0x20 returned 0 after 0 usecs
[ 0.088143] calling bxt_pinctrl_init+0x0/0x20 @ 1
[ 0.088143] initcall bxt_pinctrl_init+0x0/0x20 returned 0 after 0 usecs
[ 0.088143] calling cdf_pinctrl_init+0x0/0x20 @ 1
[ 0.088143] initcall cdf_pinctrl_init+0x0/0x20 returned 0 after 0 usecs
[ 0.088143] calling dnv_pinctrl_init+0x0/0x20 @ 1
[ 0.088143] initcall dnv_pinctrl_init+0x0/0x20 returned 0 after 0 usecs
[ 0.088143] calling glk_pinctrl_init+0x0/0x20 @ 1
[ 0.088143] initcall glk_pinctrl_init+0x0/0x20 returned 0 after 0 usecs
[ 0.088143] calling spt_pinctrl_init+0x0/0x20 @ 1
[ 0.088143] initcall spt_pinctrl_init+0x0/0x20 returned 0 after 0 usecs
[ 0.088143] calling gpiolib_debugfs_init+0x0/0x30 @ 1
[ 0.088143] initcall gpiolib_debugfs_init+0x0/0x30 returned 0 after 0 usecs
[ 0.088143] calling pwm_init+0x0/0x50 @ 1
[ 0.088143] initcall pwm_init+0x0/0x50 returned 0 after 0 usecs
[ 0.088143] calling pci_slot_init+0x0/0x50 @ 1
[ 0.088143] initcall pci_slot_init+0x0/0x50 returned 0 after 0 usecs
[ 0.088143] calling fbmem_init+0x0/0x80 @ 1
[ 0.088143] initcall fbmem_init+0x0/0x80 returned 0 after 0 usecs
[ 0.088143] calling acpi_init+0x0/0x590 @ 1
[ 0.088143] ACPI: Added _OSI(Module Device)
[ 0.088143] ACPI: Added _OSI(Processor Device)
[ 0.088143] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.088143] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.135837] ACPI: 11 ACPI AML tables successfully acquired and loaded
[ 0.143186] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[ 0.149794] ACPI: Dynamic OEM Table Load:
[ 0.149800] ACPI: SSDT 0xFFFF9C624117F800 0003FF (v02 PmRef Cpu0Cst 00003001 INTL 20160422)
[ 0.150715] ACPI: Dynamic OEM Table Load:
[ 0.150719] ACPI: SSDT 0xFFFF9C6241781000 0006F6 (v02 PmRef Cpu0Ist 00003000 INTL 20160422)
[ 0.152323] ACPI: Dynamic OEM Table Load:
[ 0.152328] ACPI: SSDT 0xFFFF9C6241780000 00065C (v02 PmRef ApIst 00003000 INTL 20160422)
[ 0.153518] ACPI: Dynamic OEM Table Load:
[ 0.153522] ACPI: SSDT 0xFFFF9C6241187A00 00018A (v02 PmRef ApCst 00003000 INTL 20160422)
[ 0.156306] ACPI: EC: EC started
[ 0.156307] ACPI: EC: interrupt blocked
[ 0.161975] ACPI: EC: EC_CMD/EC_SC=0x934, EC_DATA=0x930
[ 0.161977] ACPI: \_SB_.PCI0.LPCB.ECDV: Boot DSDT EC used to handle transactions
[ 0.161979] ACPI: Interpreter enabled
[ 0.162031] ACPI: PM: (supports S0 S3 S4 S5)
[ 0.162032] ACPI: Using IOAPIC for interrupt routing
[ 0.162077] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.162078] PCI: Using E820 reservations for host bridge windows
[ 0.162694] ACPI: Enabled 8 GPEs in block 00 to 7F
[ 0.166293] ACPI: \_SB_.PCI0.RP09.PXSX.WRST: New power resource
[ 0.166631] ACPI: \_SB_.PCI0.RP10.PXSX.WRST: New power resource
[ 0.167873] ACPI: \_SB_.PCI0.RP11.PXSX.WRST: New power resource
[ 0.168208] ACPI: \_SB_.PCI0.RP12.PXSX.WRST: New power resource
[ 0.168542] ACPI: \_SB_.PCI0.RP13.PXSX.WRST: New power resource
[ 0.168881] ACPI: \_SB_.PCI0.RP01.PXSX.WRST: New power resource
[ 0.169564] ACPI: \_SB_.PCI0.RP02.PXSX.WRST: New power resource
[ 0.169891] ACPI: \_SB_.PCI0.RP03.PXSX.WRST: New power resource
[ 0.170217] ACPI: \_SB_.PCI0.RP04.PXSX.WRST: New power resource
[ 0.170545] ACPI: \_SB_.PCI0.RP05.PXSX.WRST: New power resource
[ 0.170890] ACPI: \_SB_.PCI0.RP06.PXSX.WRST: New power resource
[ 0.171223] ACPI: \_SB_.PCI0.RP07.PXSX.WRST: New power resource
[ 0.171557] ACPI: \_SB_.PCI0.RP08.PXSX.WRST: New power resource
[ 0.171894] ACPI: \_SB_.PCI0.RP17.PXSX.WRST: New power resource
[ 0.172222] ACPI: \_SB_.PCI0.RP18.PXSX.WRST: New power resource
[ 0.172542] ACPI: \_SB_.PCI0.RP19.PXSX.WRST: New power resource
[ 0.172863] ACPI: \_SB_.PCI0.RP20.PXSX.WRST: New power resource
[ 0.174211] ACPI: \_SB_.PCI0.RP14.PXSX.WRST: New power resource
[ 0.174539] ACPI: \_SB_.PCI0.RP15.PXSX.WRST: New power resource
[ 0.174874] ACPI: \_SB_.PCI0.RP16.PXSX.WRST: New power resource
[ 0.197004] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
[ 0.197012] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[ 0.197182] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug SHPCHotplug PME]
[ 0.197494] acpi PNP0A08:00: _OSC: OS now controls [PCIeCapability LTR]
[ 0.197496] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[ 0.198270] PCI host bridge to bus 0000:00
[ 0.198273] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 0.198275] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.198277] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000dffff window]
[ 0.198278] pci_bus 0000:00: root bus resource [mem 0x7c800000-0xdfffffff window]
[ 0.198279] pci_bus 0000:00: root bus resource [mem 0xfd000000-0xfe7fffff window]
[ 0.198280] pci_bus 0000:00: root bus resource [bus 00-fe]
[ 0.198294] pci 0000:00:00.0: calling quirk_mmio_always_on+0x0/0x20 @ 1
[ 0.198299] pci 0000:00:00.0: quirk_mmio_always_on+0x0/0x20 took 0 usecs
[ 0.198303] pci 0000:00:00.0: [8086:5904] type 00 class 0x060000 conventional PCI endpoint
[ 0.198322] pci 0000:00:00.0: calling quirk_igfx_skip_te_disable+0x0/0xa0 @ 1
[ 0.198325] pci 0000:00:00.0: quirk_igfx_skip_te_disable+0x0/0xa0 took 0 usecs
[ 0.198369] pci 0000:00:02.0: [8086:5916] type 00 class 0x030000 PCIe Root Complex Integrated Endpoint
[ 0.198376] pci 0000:00:02.0: BAR 0 [mem 0xdb000000-0xdbffffff 64bit]
[ 0.198380] pci 0000:00:02.0: BAR 2 [mem 0x90000000-0x9fffffff 64bit pref]
[ 0.198383] pci 0000:00:02.0: BAR 4 [io 0xf000-0xf03f]
[ 0.198395] pci 0000:00:02.0: calling screen_info_fixup_lfb+0x0/0x170 @ 1
[ 0.198403] pci 0000:00:02.0: screen_info_fixup_lfb+0x0/0x170 took 0 usecs
[ 0.198405] pci 0000:00:02.0: calling quirk_igfx_skip_te_disable+0x0/0xa0 @ 1
[ 0.198407] pci 0000:00:02.0: quirk_igfx_skip_te_disable+0x0/0xa0 took 0 usecs
[ 0.198409] pci 0000:00:02.0: calling pci_fixup_video+0x0/0x120 @ 1
[ 0.198413] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[ 0.198414] pci 0000:00:02.0: pci_fixup_video+0x0/0x120 took 0 usecs
[ 0.198538] pci 0000:00:04.0: [8086:1903] type 00 class 0x118000 conventional PCI endpoint
[ 0.198546] pci 0000:00:04.0: BAR 0 [mem 0xdc320000-0xdc327fff 64bit]
[ 0.198561] pci 0000:00:04.0: calling quirk_igfx_skip_te_disable+0x0/0xa0 @ 1
[ 0.198563] pci 0000:00:04.0: quirk_igfx_skip_te_disable+0x0/0xa0 took 0 usecs
[ 0.198823] pci 0000:00:14.0: [8086:9d2f] type 00 class 0x0c0330 conventional PCI endpoint
[ 0.198839] pci 0000:00:14.0: BAR 0 [mem 0xdc310000-0xdc31ffff 64bit]
[ 0.198880] pci 0000:00:14.0: calling quirk_igfx_skip_te_disable+0x0/0xa0 @ 1
[ 0.198882] pci 0000:00:14.0: quirk_igfx_skip_te_disable+0x0/0xa0 took 0 usecs
[ 0.198907] pci 0000:00:14.0: PME# supported from D3hot D3cold
[ 0.199453] pci 0000:00:14.2: [8086:9d31] type 00 class 0x118000 conventional PCI endpoint
[ 0.199468] pci 0000:00:14.2: BAR 0 [mem 0xdc334000-0xdc334fff 64bit]
[ 0.199499] pci 0000:00:14.2: calling quirk_igfx_skip_te_disable+0x0/0xa0 @ 1
[ 0.199502] pci 0000:00:14.2: quirk_igfx_skip_te_disable+0x0/0xa0 took 0 usecs
[ 0.199605] pci 0000:00:15.0: [8086:9d60] type 00 class 0x118000 conventional PCI endpoint
[ 0.199633] pci 0000:00:15.0: BAR 0 [mem 0xdc333000-0xdc333fff 64bit]
[ 0.199678] pci 0000:00:15.0: calling quirk_igfx_skip_te_disable+0x0/0xa0 @ 1
[ 0.199680] pci 0000:00:15.0: quirk_igfx_skip_te_disable+0x0/0xa0 took 0 usecs
[ 0.199976] pci 0000:00:15.1: [8086:9d61] type 00 class 0x118000 conventional PCI endpoint
[ 0.200018] pci 0000:00:15.1: BAR 0 [mem 0xdc332000-0xdc332fff 64bit]
[ 0.200062] pci 0000:00:15.1: calling quirk_igfx_skip_te_disable+0x0/0xa0 @ 1
[ 0.200064] pci 0000:00:15.1: quirk_igfx_skip_te_disable+0x0/0xa0 took 0 usecs
[ 0.200341] pci 0000:00:16.0: [8086:9d3a] type 00 class 0x078000 conventional PCI endpoint
[ 0.200354] pci 0000:00:16.0: BAR 0 [mem 0xdc331000-0xdc331fff 64bit]
[ 0.200378] pci 0000:00:16.0: calling quirk_igfx_skip_te_disable+0x0/0xa0 @ 1
[ 0.200380] pci 0000:00:16.0: quirk_igfx_skip_te_disable+0x0/0xa0 took 0 usecs
[ 0.200400] pci 0000:00:16.0: PME# supported from D3hot
[ 0.200773] pci 0000:00:1c.0: calling quirk_cmd_compl+0x0/0x70 @ 1
[ 0.200777] pci 0000:00:1c.0: quirk_cmd_compl+0x0/0x70 took 0 usecs
[ 0.200780] pci 0000:00:1c.0: calling quirk_no_aersid+0x0/0x10 @ 1
[ 0.200782] pci 0000:00:1c.0: quirk_no_aersid+0x0/0x10 took 0 usecs
[ 0.200783] pci 0000:00:1c.0: [8086:9d10] type 01 class 0x060400 PCIe Root Port
[ 0.200799] pci 0000:00:1c.0: PCI bridge to [bus 01-39]
[ 0.200803] pci 0000:00:1c.0: bridge window [mem 0xc4000000-0xda0fffff]
[ 0.200810] pci 0000:00:1c.0: bridge window [mem 0xa0000000-0xc1ffffff 64bit pref]
[ 0.200827] pci 0000:00:1c.0: calling quirk_igfx_skip_te_disable+0x0/0xa0 @ 1
[ 0.200829] pci 0000:00:1c.0: quirk_igfx_skip_te_disable+0x0/0xa0 took 0 usecs
[ 0.200831] pci 0000:00:1c.0: calling pci_fixup_transparent_bridge+0x0/0x20 @ 1
[ 0.200833] pci 0000:00:1c.0: pci_fixup_transparent_bridge+0x0/0x20 took 0 usecs
[ 0.200859] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.201291] pci 0000:00:1c.4: calling quirk_cmd_compl+0x0/0x70 @ 1
[ 0.201295] pci 0000:00:1c.4: quirk_cmd_compl+0x0/0x70 took 0 usecs
[ 0.201298] pci 0000:00:1c.4: calling quirk_no_aersid+0x0/0x10 @ 1
[ 0.201299] pci 0000:00:1c.4: quirk_no_aersid+0x0/0x10 took 0 usecs
[ 0.201301] pci 0000:00:1c.4: [8086:9d14] type 01 class 0x060400 PCIe Root Port
[ 0.201322] pci 0000:00:1c.4: PCI bridge to [bus 3a]
[ 0.201326] pci 0000:00:1c.4: bridge window [mem 0xdc000000-0xdc1fffff]
[ 0.201351] pci 0000:00:1c.4: calling quirk_igfx_skip_te_disable+0x0/0xa0 @ 1
[ 0.201353] pci 0000:00:1c.4: quirk_igfx_skip_te_disable+0x0/0xa0 took 0 usecs
[ 0.201355] pci 0000:00:1c.4: calling pci_fixup_transparent_bridge+0x0/0x20 @ 1
[ 0.201357] pci 0000:00:1c.4: pci_fixup_transparent_bridge+0x0/0x20 took 0 usecs
[ 0.201388] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[ 0.201834] pci 0000:00:1d.0: calling quirk_cmd_compl+0x0/0x70 @ 1
[ 0.201838] pci 0000:00:1d.0: quirk_cmd_compl+0x0/0x70 took 0 usecs
[ 0.201841] pci 0000:00:1d.0: calling quirk_no_aersid+0x0/0x10 @ 1
[ 0.201842] pci 0000:00:1d.0: quirk_no_aersid+0x0/0x10 took 0 usecs
[ 0.201844] pci 0000:00:1d.0: [8086:9d18] type 01 class 0x060400 PCIe Root Port
[ 0.201861] pci 0000:00:1d.0: PCI bridge to [bus 3b]
[ 0.201865] pci 0000:00:1d.0: bridge window [mem 0xdc200000-0xdc2fffff]
[ 0.201887] pci 0000:00:1d.0: calling quirk_igfx_skip_te_disable+0x0/0xa0 @ 1
[ 0.201889] pci 0000:00:1d.0: quirk_igfx_skip_te_disable+0x0/0xa0 took 0 usecs
[ 0.201891] pci 0000:00:1d.0: calling pci_fixup_transparent_bridge+0x0/0x20 @ 1
[ 0.201893] pci 0000:00:1d.0: pci_fixup_transparent_bridge+0x0/0x20 took 0 usecs
[ 0.201919] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[ 0.202378] pci 0000:00:1f.0: [8086:9d58] type 00 class 0x060100 conventional PCI endpoint
[ 0.202471] pci 0000:00:1f.0: calling quirk_igfx_skip_te_disable+0x0/0xa0 @ 1
[ 0.202474] pci 0000:00:1f.0: quirk_igfx_skip_te_disable+0x0/0xa0 took 0 usecs
[ 0.202692] pci 0000:00:1f.2: [8086:9d21] type 00 class 0x058000 conventional PCI endpoint
[ 0.202703] pci 0000:00:1f.2: BAR 0 [mem 0xdc32c000-0xdc32ffff]
[ 0.202739] pci 0000:00:1f.2: calling quirk_igfx_skip_te_disable+0x0/0xa0 @ 1
[ 0.202742] pci 0000:00:1f.2: quirk_igfx_skip_te_disable+0x0/0xa0 took 0 usecs
[ 0.202950] pci 0000:00:1f.3: [8086:9d71] type 00 class 0x040380 conventional PCI endpoint
[ 0.202969] pci 0000:00:1f.3: BAR 0 [mem 0xdc328000-0xdc32bfff 64bit]
[ 0.202992] pci 0000:00:1f.3: BAR 4 [mem 0xdc300000-0xdc30ffff 64bit]
[ 0.203005] pci 0000:00:1f.3: calling quirk_igfx_skip_te_disable+0x0/0xa0 @ 1
[ 0.203007] pci 0000:00:1f.3: quirk_igfx_skip_te_disable+0x0/0xa0 took 0 usecs
[ 0.203038] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[ 0.203781] pci 0000:00:1f.4: [8086:9d23] type 00 class 0x0c0500 conventional PCI endpoint
[ 0.203840] pci 0000:00:1f.4: BAR 0 [mem 0xdc330000-0xdc3300ff 64bit]
[ 0.203911] pci 0000:00:1f.4: BAR 4 [io 0xf040-0xf05f]
[ 0.203968] pci 0000:00:1f.4: calling quirk_igfx_skip_te_disable+0x0/0xa0 @ 1
[ 0.203971] pci 0000:00:1f.4: quirk_igfx_skip_te_disable+0x0/0xa0 took 0 usecs
[ 0.204246] pci 0000:00:1c.0: PCI bridge to [bus 01-39]
[ 0.204579] pci 0000:3a:00.0: [168c:003e] type 00 class 0x028000 PCIe Endpoint
[ 0.204794] pci 0000:3a:00.0: BAR 0 [mem 0xdc000000-0xdc1fffff 64bit]
[ 0.205342] pci 0000:3a:00.0: calling quirk_no_bus_reset+0x0/0x20 @ 1
[ 0.205345] pci 0000:3a:00.0: quirk_no_bus_reset+0x0/0x20 took 0 usecs
[ 0.206048] pci 0000:3a:00.0: PME# supported from D0 D3hot D3cold
[ 0.207720] pci 0000:00:1c.4: PCI bridge to [bus 3a]
[ 0.207806] pci 0000:3b:00.0: [1c5c:1284] type 00 class 0x010802 PCIe Endpoint
[ 0.207825] pci 0000:3b:00.0: BAR 0 [mem 0xdc200000-0xdc203fff 64bit]
[ 0.207931] pci 0000:3b:00.0: PME# supported from D0 D1 D3hot
[ 0.208292] pci 0000:00:1d.0: PCI bridge to [bus 3b]
[ 0.211480] probe of INT344B:00 returned 0 after 4000 usecs
[ 0.211587] ACPI: PCI: Interrupt link LNKA configured for IRQ 11
[ 0.211637] ACPI: PCI: Interrupt link LNKB configured for IRQ 10
[ 0.211683] ACPI: PCI: Interrupt link LNKC configured for IRQ 11
[ 0.211729] ACPI: PCI: Interrupt link LNKD configured for IRQ 11
[ 0.211776] ACPI: PCI: Interrupt link LNKE configured for IRQ 11
[ 0.211823] ACPI: PCI: Interrupt link LNKF configured for IRQ 11
[ 0.211866] ACPI: PCI: Interrupt link LNKG configured for IRQ 11
[ 0.211908] ACPI: PCI: Interrupt link LNKH configured for IRQ 11
[ 0.222264] ACPI: EC: interrupt unblocked
[ 0.222266] ACPI: EC: event unblocked
[ 0.222271] ACPI: EC: EC_CMD/EC_SC=0x934, EC_DATA=0x930
[ 0.222272] ACPI: EC: GPE=0x14
[ 0.222273] ACPI: \_SB_.PCI0.LPCB.ECDV: Boot DSDT EC initialization complete
[ 0.222275] ACPI: \_SB_.PCI0.LPCB.ECDV: EC: Used to handle transactions and events
[ 0.222279] probe of PNP0C09:00 returned 0 after 0 usecs
[ 0.222321] initcall acpi_init+0x0/0x590 returned 0 after 132000 usecs
[ 0.222326] calling hmat_init+0x0/0x410 @ 1
[ 0.222329] initcall hmat_init+0x0/0x410 returned 0 after 0 usecs
[ 0.222331] calling pnp_init+0x0/0x20 @ 1
[ 0.222337] initcall pnp_init+0x0/0x20 returned 0 after 0 usecs
[ 0.222339] calling balloon_init+0x0/0x220 @ 1
[ 0.222341] initcall balloon_init+0x0/0x220 returned -19 after 0 usecs
[ 0.222342] calling xen_setup_shutdown_event+0x0/0x40 @ 1
[ 0.222345] initcall xen_setup_shutdown_event+0x0/0x40 returned -19 after 0 usecs
[ 0.222347] calling xenbus_probe_backend_init+0x0/0x90 @ 1
[ 0.222353] initcall xenbus_probe_backend_init+0x0/0x90 returned 0 after 0 usecs
[ 0.222354] calling xenbus_probe_frontend_init+0x0/0x50 @ 1
[ 0.222358] initcall xenbus_probe_frontend_init+0x0/0x50 returned 0 after 0 usecs
[ 0.222360] calling xen_acpi_pad_init+0x0/0x50 @ 1
[ 0.222361] initcall xen_acpi_pad_init+0x0/0x50 returned -19 after 0 usecs
[ 0.222370] calling misc_init+0x0/0xb0 @ 1
[ 0.222538] initcall misc_init+0x0/0xb0 returned 0 after 0 usecs
[ 0.222540] calling tpm_init+0x0/0xd0 @ 1
[ 0.222550] initcall tpm_init+0x0/0xd0 returned 0 after 0 usecs
[ 0.222550] calling iommu_subsys_init+0x0/0x190 @ 1
[ 0.222550] iommu: Default domain type: Translated
[ 0.222550] iommu: DMA domain TLB invalidation policy: lazy mode
[ 0.222550] initcall iommu_subsys_init+0x0/0x190 returned 0 after 0 usecs
[ 0.222550] calling cn_init+0x0/0xf0 @ 1
[ 0.222550] initcall cn_init+0x0/0xf0 returned 0 after 0 usecs
[ 0.222550] calling dax_core_init+0x0/0xe0 @ 1
[ 0.222550] initcall dax_core_init+0x0/0xe0 returned 0 after 0 usecs
[ 0.222550] calling dma_buf_init+0x0/0xa0 @ 1
[ 0.222550] initcall dma_buf_init+0x0/0xa0 returned 0 after 0 usecs
[ 0.222550] calling cxl_core_init+0x0/0xa0 @ 1
[ 0.222550] initcall cxl_core_init+0x0/0xa0 returned 0 after 0 usecs
[ 0.222550] calling phy_init+0x0/0x2f0 @ 1
[ 0.222550] initcall phy_init+0x0/0x2f0 returned 0 after 0 usecs
[ 0.222550] calling serio_init+0x0/0x40 @ 1
[ 0.222550] initcall serio_init+0x0/0x40 returned 0 after 0 usecs
[ 0.222550] calling input_init+0x0/0x140 @ 1
[ 0.222550] initcall input_init+0x0/0x140 returned 0 after 0 usecs
[ 0.222550] calling rtc_init+0x0/0x30 @ 1
[ 0.222550] initcall rtc_init+0x0/0x30 returned 0 after 0 usecs
[ 0.222550] calling dw_i2c_init_driver+0x0/0x20 @ 1
[ 0.222550] initcall dw_i2c_init_driver+0x0/0x20 returned 0 after 0 usecs
[ 0.222550] calling pps_init+0x0/0xb0 @ 1
[ 0.222550] pps_core: LinuxPPS API ver. 1 registered
[ 0.222550] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 0.222550] initcall pps_init+0x0/0xb0 returned 0 after 0 usecs
[ 0.222550] calling ptp_init+0x0/0x80 @ 1
[ 0.222550] PTP clock support registered
[ 0.222550] initcall ptp_init+0x0/0x80 returned 0 after 0 usecs
[ 0.222550] calling power_supply_class_init+0x0/0x20 @ 1
[ 0.222550] initcall power_supply_class_init+0x0/0x20 returned 0 after 0 usecs
[ 0.222550] calling hwmon_init+0x0/0x110 @ 1
[ 0.222550] initcall hwmon_init+0x0/0x110 returned 0 after 0 usecs
[ 0.222550] calling intel_tcc_init+0x0/0x40 @ 1
[ 0.222550] initcall intel_tcc_init+0x0/0x40 returned 0 after 0 usecs
[ 0.222550] calling edac_init+0x0/0x80 @ 1
[ 0.222550] EDAC MC: Ver: 3.0.0
[ 0.222853] initcall edac_init+0x0/0x80 returned 0 after 4000 usecs
[ 0.222858] calling leds_init+0x0/0x20 @ 1
[ 0.222872] initcall leds_init+0x0/0x20 returned 0 after 0 usecs
[ 0.222876] calling dmi_init+0x0/0x130 @ 1
[ 0.222885] initcall dmi_init+0x0/0x130 returned 0 after 0 usecs
[ 0.222888] calling efisubsys_init+0x0/0x6d0 @ 1
[ 0.222935] efivars: Registered efivars operations
[ 0.222935] initcall efisubsys_init+0x0/0x6d0 returned 0 after 0 usecs
[ 0.222935] calling intel_scu_ipc_init+0x0/0x20 @ 1
[ 0.222935] initcall intel_scu_ipc_init+0x0/0x20 returned 0 after 0 usecs
[ 0.222935] calling devfreq_init+0x0/0xd0 @ 1
[ 0.222935] initcall devfreq_init+0x0/0xd0 returned 0 after 0 usecs
[ 0.222935] calling ras_init+0x0/0x20 @ 1
[ 0.222935] initcall ras_init+0x0/0x20 returned 0 after 0 usecs
[ 0.222935] calling nvmem_init+0x0/0x20 @ 1
[ 0.222935] initcall nvmem_init+0x0/0x20 returned 0 after 0 usecs
[ 0.222935] calling proto_init+0x0/0x20 @ 1
[ 0.222935] initcall proto_init+0x0/0x20 returned 0 after 0 usecs
[ 0.222935] calling net_dev_init+0x0/0x380 @ 1
[ 0.222940] initcall net_dev_init+0x0/0x380 returned 0 after 0 usecs
[ 0.222943] calling neigh_init+0x0/0x90 @ 1
[ 0.222953] initcall neigh_init+0x0/0x90 returned 0 after 0 usecs
[ 0.222955] calling fib_notifier_init+0x0/0x20 @ 1
[ 0.222958] initcall fib_notifier_init+0x0/0x20 returned 0 after 0 usecs
[ 0.222961] calling netdev_genl_init+0x0/0x40 @ 1
[ 0.222973] initcall netdev_genl_init+0x0/0x40 returned 0 after 0 usecs
[ 0.222975] calling page_pool_user_init+0x0/0x20 @ 1
[ 0.222978] initcall page_pool_user_init+0x0/0x20 returned 0 after 0 usecs
[ 0.222981] calling fib_rules_init+0x0/0xc0 @ 1
[ 0.222984] initcall fib_rules_init+0x0/0xc0 returned 0 after 0 usecs
[ 0.222987] calling init_cgroup_netprio+0x0/0x20 @ 1
[ 0.222990] initcall init_cgroup_netprio+0x0/0x20 returned 0 after 0 usecs
[ 0.222992] calling bpf_lwt_init+0x0/0x20 @ 1
[ 0.222995] initcall bpf_lwt_init+0x0/0x20 returned 0 after 0 usecs
[ 0.222997] calling pktsched_init+0x0/0x120 @ 1
[ 0.223002] initcall pktsched_init+0x0/0x120 returned 0 after 0 usecs
[ 0.223005] calling tc_filter_init+0x0/0x110 @ 1
[ 0.223012] initcall tc_filter_init+0x0/0x110 returned 0 after 0 usecs
[ 0.223015] calling tc_action_init+0x0/0x60 @ 1
[ 0.223018] initcall tc_action_init+0x0/0x60 returned 0 after 0 usecs
[ 0.223021] calling ethnl_init+0x0/0x70 @ 1
[ 0.223071] initcall ethnl_init+0x0/0x70 returned 0 after 0 usecs
[ 0.223073] calling nexthop_init+0x0/0x100 @ 1
[ 0.223078] initcall nexthop_init+0x0/0x100 returned 0 after 0 usecs
[ 0.223081] calling cipso_v4_init+0x0/0x90 @ 1
[ 0.223084] initcall cipso_v4_init+0x0/0x90 returned 0 after 0 usecs
[ 0.223087] calling wireless_nlevent_init+0x0/0x50 @ 1
[ 0.223091] initcall wireless_nlevent_init+0x0/0x50 returned 0 after 0 usecs
[ 0.223094] calling netlbl_init+0x0/0x80 @ 1
[ 0.223097] NetLabel: Initializing
[ 0.223098] NetLabel: domain hash size = 128
[ 0.223100] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 0.223121] NetLabel: unlabeled traffic allowed by default
[ 0.223122] initcall netlbl_init+0x0/0x80 returned 0 after 0 usecs
[ 0.223125] calling pci_subsys_init+0x0/0x80 @ 1
[ 0.223127] PCI: Using ACPI for IRQ routing
[ 0.246906] PCI: pci_cache_line_size set to 64 bytes
[ 0.247288] e820: reserve RAM buffer [mem 0x00058000-0x0005ffff]
[ 0.247290] e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff]
[ 0.247291] e820: reserve RAM buffer [mem 0x511e8018-0x53ffffff]
[ 0.247292] e820: reserve RAM buffer [mem 0x556ab000-0x57ffffff]
[ 0.247293] e820: reserve RAM buffer [mem 0x62260000-0x63ffffff]
[ 0.247294] e820: reserve RAM buffer [mem 0x64df4000-0x67ffffff]
[ 0.247295] e820: reserve RAM buffer [mem 0x78600000-0x7bffffff]
[ 0.247296] e820: reserve RAM buffer [mem 0x481800000-0x483ffffff]
[ 0.247297] initcall pci_subsys_init+0x0/0x80 returned 0 after 24000 usecs
[ 0.247299] calling vsprintf_init_hashval+0x0/0x20 @ 1
[ 0.247302] initcall vsprintf_init_hashval+0x0/0x20 returned 0 after 0 usecs
[ 0.247303] calling efi_runtime_map_init+0x0/0x270 @ 1
[ 0.247323] initcall efi_runtime_map_init+0x0/0x270 returned 0 after 0 usecs
[ 0.247325] calling vga_arb_device_init+0x0/0xa0 @ 1
[ 0.247338] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[ 0.247338] pci 0000:00:02.0: vgaarb: bridge control possible
[ 0.247338] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[ 0.247338] vgaarb: loaded
[ 0.247338] initcall vga_arb_device_init+0x0/0xa0 returned 0 after 0 usecs
[ 0.247338] calling nmi_warning_debugfs+0x0/0x30 @ 1
[ 0.247338] initcall nmi_warning_debugfs+0x0/0x30 returned 0 after 0 usecs
[ 0.247338] calling hpet_late_init+0x0/0x450 @ 1
[ 0.247338] initcall hpet_late_init+0x0/0x450 returned -19 after 0 usecs
[ 0.247338] calling init_amd_nbs+0x0/0x520 @ 1
[ 0.247338] initcall init_amd_nbs+0x0/0x520 returned 0 after 0 usecs
[ 0.247338] calling iomem_init_inode+0x0/0x90 @ 1
[ 0.247338] initcall iomem_init_inode+0x0/0x90 returned 0 after 0 usecs
[ 0.247338] calling em_debug_init+0x0/0x30 @ 1
[ 0.247338] initcall em_debug_init+0x0/0x30 returned 0 after 0 usecs
[ 0.247338] calling clocksource_done_booting+0x0/0x50 @ 1
[ 0.247338] clocksource: Switched to clocksource tsc-early
[ 0.247338] initcall clocksource_done_booting+0x0/0x50 returned 0 after 3 usecs
[ 0.247338] calling tracer_init_tracefs+0x0/0xc0 @ 1
[ 0.247338] initcall tracer_init_tracefs+0x0/0xc0 returned 0 after 2 usecs
[ 0.247338] calling init_trace_printk_function_export+0x0/0x30 @ 1
[ 0.247338] initcall init_trace_printk_function_export+0x0/0x30 returned 0 after 10 usecs
[ 0.247338] calling init_graph_tracefs+0x0/0x30 @ 1
[ 0.247338] initcall init_graph_tracefs+0x0/0x30 returned 0 after 2 usecs
[ 0.247338] calling trace_events_synth_init+0x0/0x50 @ 1
[ 0.247338] initcall trace_events_synth_init+0x0/0x50 returned 0 after 2 usecs
[ 0.247338] calling bpf_event_init+0x0/0x20 @ 1
[ 0.247338] initcall bpf_event_init+0x0/0x20 returned 0 after 0 usecs
[ 0.247338] calling init_kprobe_trace+0x0/0x1d0 @ 1
[ 0.247338] initcall init_kprobe_trace+0x0/0x1d0 returned 0 after 360 usecs
[ 0.247338] calling init_dynamic_event+0x0/0x30 @ 1
[ 0.247338] initcall init_dynamic_event+0x0/0x30 returned 0 after 1 usecs
[ 0.247338] calling init_uprobe_trace+0x0/0x60 @ 1
[ 0.247338] initcall init_uprobe_trace+0x0/0x60 returned 0 after 1 usecs
[ 0.247338] calling bpf_init+0x0/0x60 @ 1
[ 0.247338] initcall bpf_init+0x0/0x60 returned 0 after 2 usecs
[ 0.247338] calling btf_module_init+0x0/0x20 @ 1
[ 0.247338] initcall btf_module_init+0x0/0x20 returned 0 after 0 usecs
[ 0.247338] calling secretmem_init+0x0/0x40 @ 1
[ 0.247338] initcall secretmem_init+0x0/0x40 returned 0 after 5 usecs
[ 0.247340] calling init_fs_stat_sysctls+0x0/0x40 @ 1
[ 0.247347] initcall init_fs_stat_sysctls+0x0/0x40 returned 0 after 5 usecs
[ 0.247350] calling init_fs_exec_sysctls+0x0/0x30 @ 1
[ 0.247360] initcall init_fs_exec_sysctls+0x0/0x30 returned 0 after 7 usecs
[ 0.247363] calling init_pipe_fs+0x0/0x70 @ 1
[ 0.247370] initcall init_pipe_fs+0x0/0x70 returned 0 after 5 usecs
[ 0.247372] calling init_fs_namei_sysctls+0x0/0x30 @ 1
[ 0.247376] initcall init_fs_namei_sysctls+0x0/0x30 returned 0 after 1 usecs
[ 0.247378] calling init_fs_dcache_sysctls+0x0/0x30 @ 1
[ 0.247381] initcall init_fs_dcache_sysctls+0x0/0x30 returned 0 after 0 usecs
[ 0.247384] calling init_fs_namespace_sysctls+0x0/0x30 @ 1
[ 0.247387] initcall init_fs_namespace_sysctls+0x0/0x30 returned 0 after 0 usecs
[ 0.247389] calling cgroup_writeback_init+0x0/0x30 @ 1
[ 0.247393] initcall cgroup_writeback_init+0x0/0x30 returned 0 after 1 usecs
[ 0.247396] calling inotify_user_setup+0x0/0x100 @ 1
[ 0.247402] initcall inotify_user_setup+0x0/0x100 returned 0 after 4 usecs
[ 0.247405] calling eventpoll_init+0x0/0x110 @ 1
[ 0.247424] initcall eventpoll_init+0x0/0x110 returned 0 after 16 usecs
[ 0.247427] calling anon_inode_init+0x0/0x60 @ 1
[ 0.247432] initcall anon_inode_init+0x0/0x60 returned 0 after 3 usecs
[ 0.247433] calling init_dax_wait_table+0x0/0x40 @ 1
[ 0.247445] initcall init_dax_wait_table+0x0/0x40 returned 0 after 9 usecs
[ 0.247446] calling proc_locks_init+0x0/0x30 @ 1
[ 0.247449] initcall proc_locks_init+0x0/0x30 returned 0 after 0 usecs
[ 0.247451] calling backing_aio_init+0x0/0x40 @ 1
[ 0.247453] initcall backing_aio_init+0x0/0x40 returned 0 after 0 usecs
[ 0.247455] calling init_fs_coredump_sysctls+0x0/0x30 @ 1
[ 0.247459] initcall init_fs_coredump_sysctls+0x0/0x30 returned 0 after 2 usecs
[ 0.247461] calling iomap_init+0x0/0x30 @ 1
[ 0.247481] initcall iomap_init+0x0/0x30 returned 0 after 18 usecs
[ 0.247483] calling dquot_init+0x0/0x170 @ 1
[ 0.247484] VFS: Disk quotas dquot_6.6.0
[ 0.247493] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.247494] initcall dquot_init+0x0/0x170 returned 0 after 9 usecs
[ 0.247496] calling quota_init+0x0/0x30 @ 1
[ 0.247501] initcall quota_init+0x0/0x30 returned 0 after 3 usecs
[ 0.247503] calling proc_cmdline_init+0x0/0x40 @ 1
[ 0.247506] initcall proc_cmdline_init+0x0/0x40 returned 0 after 0 usecs
[ 0.247507] calling proc_consoles_init+0x0/0x30 @ 1
[ 0.247509] initcall proc_consoles_init+0x0/0x30 returned 0 after 0 usecs
[ 0.247511] calling proc_cpuinfo_init+0x0/0x30 @ 1
[ 0.247513] initcall proc_cpuinfo_init+0x0/0x30 returned 0 after 0 usecs
[ 0.247515] calling proc_devices_init+0x0/0x30 @ 1
[ 0.247517] initcall proc_devices_init+0x0/0x30 returned 0 after 0 usecs
[ 0.247519] calling proc_interrupts_init+0x0/0x30 @ 1
[ 0.247521] initcall proc_interrupts_init+0x0/0x30 returned 0 after 0 usecs
[ 0.247522] calling proc_loadavg_init+0x0/0x30 @ 1
[ 0.247524] initcall proc_loadavg_init+0x0/0x30 returned 0 after 0 usecs
[ 0.247526] calling proc_meminfo_init+0x0/0x30 @ 1
[ 0.247528] initcall proc_meminfo_init+0x0/0x30 returned 0 after 0 usecs
[ 0.247530] calling proc_stat_init+0x0/0x30 @ 1
[ 0.247532] initcall proc_stat_init+0x0/0x30 returned 0 after 0 usecs
[ 0.247533] calling proc_uptime_init+0x0/0x30 @ 1
[ 0.247537] initcall proc_uptime_init+0x0/0x30 returned 0 after 1 usecs
[ 0.247539] calling proc_version_init+0x0/0x30 @ 1
[ 0.247542] initcall proc_version_init+0x0/0x30 returned 0 after 0 usecs
[ 0.247544] calling proc_softirqs_init+0x0/0x30 @ 1
[ 0.247547] initcall proc_softirqs_init+0x0/0x30 returned 0 after 0 usecs
[ 0.247549] calling proc_kcore_init+0x0/0x1f0 @ 1
[ 0.247555] initcall proc_kcore_init+0x0/0x1f0 returned 0 after 4 usecs
[ 0.247557] calling vmcore_init+0x0/0x720 @ 1
[ 0.247559] initcall vmcore_init+0x0/0x720 returned 0 after 0 usecs
[ 0.247562] calling proc_kmsg_init+0x0/0x30 @ 1
[ 0.247564] initcall proc_kmsg_init+0x0/0x30 returned 0 after 0 usecs
[ 0.247567] calling proc_page_init+0x0/0x60 @ 1
[ 0.247571] initcall proc_page_init+0x0/0x60 returned 0 after 1 usecs
[ 0.247573] calling init_ramfs_fs+0x0/0x20 @ 1
[ 0.247577] initcall init_ramfs_fs+0x0/0x20 returned 0 after 0 usecs
[ 0.247579] calling init_hugetlbfs_fs+0x0/0x160 @ 1
[ 0.247593] initcall init_hugetlbfs_fs+0x0/0x160 returned 0 after 11 usecs
[ 0.247595] calling aa_create_aafs+0x0/0x3f0 @ 1
[ 0.247646] AppArmor: AppArmor Filesystem Enabled
[ 0.247647] initcall aa_create_aafs+0x0/0x3f0 returned 0 after 49 usecs
[ 0.247650] calling dynamic_debug_init_control+0x0/0x80 @ 1
[ 0.247655] initcall dynamic_debug_init_control+0x0/0x80 returned 0 after 3 usecs
[ 0.247656] calling acpi_event_init+0x0/0x40 @ 1
[ 0.247661] initcall acpi_event_init+0x0/0x40 returned 0 after 2 usecs
[ 0.247663] calling pnp_system_init+0x0/0x20 @ 1
[ 0.247670] initcall pnp_system_init+0x0/0x20 returned 0 after 4 usecs
[ 0.247672] calling pnpacpi_init+0x0/0x70 @ 1
[ 0.247674] pnp: PnP ACPI init
[ 0.247937] system 00:00: [io 0x0680-0x069f] has been reserved
[ 0.247940] system 00:00: [io 0xffff] has been reserved
[ 0.247941] system 00:00: [io 0xffff] has been reserved
[ 0.247943] system 00:00: [io 0xffff] has been reserved
[ 0.247944] system 00:00: [io 0x1800-0x18fe] has been reserved
[ 0.247945] system 00:00: [io 0x164e-0x164f] has been reserved
[ 0.247948] probe of 00:00 returned 0 after 14 usecs
[ 0.248095] system 00:02: [io 0x1854-0x1857] has been reserved
[ 0.248098] probe of 00:02 returned 0 after 4 usecs
[ 0.248487] system 00:05: [mem 0xfed10000-0xfed17fff] has been reserved
[ 0.248489] system 00:05: [mem 0xfed18000-0xfed18fff] has been reserved
[ 0.248492] system 00:05: [mem 0xfed19000-0xfed19fff] has been reserved
[ 0.248493] system 00:05: [mem 0xe0000000-0xefffffff] has been reserved
[ 0.248495] system 00:05: [mem 0xfed20000-0xfed3ffff] has been reserved
[ 0.248496] system 00:05: [mem 0xfed90000-0xfed93fff] could not be reserved
[ 0.248497] system 00:05: [mem 0xfed45000-0xfed8ffff] has been reserved
[ 0.248499] system 00:05: [mem 0xff000000-0xffffffff] has been reserved
[ 0.248500] system 00:05: [mem 0xfee00000-0xfeefffff] could not be reserved
[ 0.248501] system 00:05: [mem 0xdffe0000-0xdfffffff] has been reserved
[ 0.248504] probe of 00:05 returned 0 after 20 usecs
[ 0.248543] system 00:06: [mem 0xfd000000-0xfdabffff] has been reserved
[ 0.248545] system 00:06: [mem 0xfdad0000-0xfdadffff] has been reserved
[ 0.248546] system 00:06: [mem 0xfdb00000-0xfdffffff] has been reserved
[ 0.248547] system 00:06: [mem 0xfe000000-0xfe01ffff] could not be reserved
[ 0.248549] system 00:06: [mem 0xfe036000-0xfe03bfff] has been reserved
[ 0.248550] system 00:06: [mem 0xfe03d000-0xfe3fffff] has been reserved
[ 0.248551] system 00:06: [mem 0xfe410000-0xfe7fffff] has been reserved
[ 0.248553] probe of 00:06 returned 0 after 12 usecs
[ 0.248898] system 00:07: [io 0xff00-0xfffe] has been reserved
[ 0.248901] probe of 00:07 returned 0 after 4 usecs
[ 0.250122] system 00:08: [mem 0xfe029000-0xfe029fff] has been reserved
[ 0.250125] system 00:08: [mem 0xfe028000-0xfe028fff] has been reserved
[ 0.250127] probe of 00:08 returned 0 after 7 usecs
[ 0.254987] pnp: PnP ACPI: found 9 devices
[ 0.254989] initcall pnpacpi_init+0x0/0x70 returned 0 after 7393 usecs
[ 0.254993] calling chr_dev_init+0x0/0xa0 @ 1
[ 0.255805] initcall chr_dev_init+0x0/0xa0 returned 0 after 810 usecs
[ 0.255808] calling hwrng_modinit+0x0/0xd0 @ 1
[ 0.255825] initcall hwrng_modinit+0x0/0xd0 returned 0 after 15 usecs
[ 0.255828] calling firmware_class_init+0x0/0x100 @ 1
[ 0.255843] initcall firmware_class_init+0x0/0x100 returned 0 after 12 usecs
[ 0.255845] calling map_properties+0x0/0x6d0 @ 1
[ 0.255846] initcall map_properties+0x0/0x6d0 returned 0 after 0 usecs
[ 0.255848] calling init_acpi_pm_clocksource+0x0/0xf0 @ 1
[ 0.260333] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.260337] initcall init_acpi_pm_clocksource+0x0/0xf0 returned 0 after 4487 usecs
[ 0.260339] calling powercap_init+0x0/0x280 @ 1
[ 0.260357] initcall powercap_init+0x0/0x280 returned 0 after 17 usecs
[ 0.260359] calling sysctl_core_init+0x0/0x40 @ 1
[ 0.260375] initcall sysctl_core_init+0x0/0x40 returned 0 after 15 usecs
[ 0.260377] calling eth_offload_init+0x0/0x20 @ 1
[ 0.260379] initcall eth_offload_init+0x0/0x20 returned 0 after 0 usecs
[ 0.260381] calling ipv4_offload_init+0x0/0xe0 @ 1
[ 0.260384] initcall ipv4_offload_init+0x0/0xe0 returned 0 after 0 usecs
[ 0.260386] calling inet_init+0x0/0x330 @ 1
[ 0.260400] NET: Registered PF_INET protocol family
[ 0.260512] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.270921] tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
[ 0.270942] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[ 0.270972] TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[ 0.271143] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[ 0.271346] TCP: Hash tables configured (established 131072 bind 65536)
[ 0.271424] MPTCP token hash table entries: 16384 (order: 6, 393216 bytes, linear)
[ 0.271465] UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
[ 0.271499] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
[ 0.271556] initcall inet_init+0x0/0x330 returned 0 after 11168 usecs
[ 0.271562] calling af_unix_init+0x0/0xf0 @ 1
[ 0.271567] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 0.271571] initcall af_unix_init+0x0/0xf0 returned 0 after 6 usecs
[ 0.271573] calling ipv6_offload_init+0x0/0xe0 @ 1
[ 0.271576] initcall ipv6_offload_init+0x0/0xe0 returned 0 after 0 usecs
[ 0.271578] calling xsk_init+0x0/0x80 @ 1
[ 0.271581] NET: Registered PF_XDP protocol family
[ 0.271582] initcall xsk_init+0x0/0x80 returned 0 after 1 usecs
[ 0.271585] calling pcibios_assign_resources+0x0/0xf0 @ 1
[ 0.271594] pci 0000:00:1c.0: bridge window [io 0x1000-0x0fff] to [bus 01-39] add_size 1000
[ 0.271603] pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff]: assigned
[ 0.271606] pci 0000:00:1c.0: PCI bridge to [bus 01-39]
[ 0.271608] pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff]
[ 0.271611] pci 0000:00:1c.0: bridge window [mem 0xc4000000-0xda0fffff]
[ 0.271614] pci 0000:00:1c.0: bridge window [mem 0xa0000000-0xc1ffffff 64bit pref]
[ 0.271618] pci 0000:00:1c.4: PCI bridge to [bus 3a]
[ 0.271621] pci 0000:00:1c.4: bridge window [mem 0xdc000000-0xdc1fffff]
[ 0.271627] pci 0000:00:1d.0: PCI bridge to [bus 3b]
[ 0.271629] pci 0000:00:1d.0: bridge window [mem 0xdc200000-0xdc2fffff]
[ 0.271635] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[ 0.271636] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
[ 0.271637] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000dffff window]
[ 0.271638] pci_bus 0000:00: resource 7 [mem 0x7c800000-0xdfffffff window]
[ 0.271639] pci_bus 0000:00: resource 8 [mem 0xfd000000-0xfe7fffff window]
[ 0.271640] pci_bus 0000:01: resource 0 [io 0x2000-0x2fff]
[ 0.271642] pci_bus 0000:01: resource 1 [mem 0xc4000000-0xda0fffff]
[ 0.271642] pci_bus 0000:01: resource 2 [mem 0xa0000000-0xc1ffffff 64bit pref]
[ 0.271644] pci_bus 0000:3a: resource 1 [mem 0xdc000000-0xdc1fffff]
[ 0.271645] pci_bus 0000:3b: resource 1 [mem 0xdc200000-0xdc2fffff]
[ 0.271826] initcall pcibios_assign_resources+0x0/0xf0 returned 0 after 238 usecs
[ 0.271830] calling pci_apply_final_quirks+0x0/0x160 @ 1
[ 0.271840] pci 0000:00:14.0: calling quirk_usb_early_handoff+0x0/0x750 @ 1
[ 0.272125] pci 0000:00:14.0: quirk_usb_early_handoff+0x0/0x750 took 275 usecs
[ 0.272321] PCI: CLS 0 bytes, default 64
[ 0.272322] initcall pci_apply_final_quirks+0x0/0x160 returned 0 after 490 usecs
[ 0.272325] calling acpi_reserve_resources+0x0/0x110 @ 1
[ 0.272328] initcall acpi_reserve_resources+0x0/0x110 returned 0 after 1 usecs
[ 0.272330] calling p2sb_fs_init+0x0/0x180 @ 1
[ 0.272380] pci 0000:00:1f.1: [8086:9d20] type 00 class 0x058000 conventional PCI endpoint
[ 0.272439] pci 0000:00:1f.1: BAR 0 [mem 0xfd000000-0xfdffffff 64bit]
[ 0.272579] pci 0000:00:1f.1: calling quirk_igfx_skip_te_disable+0x0/0xa0 @ 1
[ 0.272582] pci 0000:00:1f.1: quirk_igfx_skip_te_disable+0x0/0xa0 took 0 usecs
[ 0.272663] initcall p2sb_fs_init+0x0/0x180 returned 0 after 331 usecs
[ 0.272665] calling populate_rootfs+0x0/0x80 @ 1
[ 0.272673] initcall populate_rootfs+0x0/0x80 returned 0 after 4 usecs
[ 0.272675] calling pci_iommu_init+0x0/0x40 @ 1
[ 0.272684] DMAR: ACPI device "device:79" under DMAR at fed91000 as 00:15.0
[ 0.272687] DMAR: ACPI device "device:7a" under DMAR at fed91000 as 00:15.1
[ 0.272702] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.272704] software IO TLB: mapped [mem 0x000000005e260000-0x0000000062260000] (64MB)
[ 0.272705] initcall pci_iommu_init+0x0/0x40 returned 0 after 27 usecs
[ 0.272708] calling ir_dev_scope_init+0x0/0x40 @ 1
[ 0.272711] initcall ir_dev_scope_init+0x0/0x40 returned 0 after 0 usecs
[ 0.272728] Unpacking initramfs...
[ 0.272735] calling snp_init_platform_device+0x0/0xa0 @ 1
[ 0.272737] initcall snp_init_platform_device+0x0/0xa0 returned -19 after 0 usecs
[ 0.272738] calling amd_ibs_init+0x0/0x390 @ 1
[ 0.272740] initcall amd_ibs_init+0x0/0x390 returned -19 after 0 usecs
[ 0.272741] calling amd_uncore_init+0x0/0x1c0 @ 1
[ 0.272743] initcall amd_uncore_init+0x0/0x1c0 returned -19 after 0 usecs
[ 0.272744] calling amd_iommu_pc_init+0x0/0x2b0 @ 1
[ 0.272746] initcall amd_iommu_pc_init+0x0/0x2b0 returned -19 after 0 usecs
[ 0.272747] calling msr_init+0x0/0x60 @ 1
[ 0.272752] initcall msr_init+0x0/0x60 returned 0 after 3 usecs
[ 0.272753] calling register_kernel_offset_dumper+0x0/0x20 @ 1
[ 0.272756] initcall register_kernel_offset_dumper+0x0/0x20 returned 0 after 0 usecs
[ 0.272758] calling i8259A_init_ops+0x0/0x30 @ 1
[ 0.272761] initcall i8259A_init_ops+0x0/0x30 returned 0 after 0 usecs
[ 0.272763] calling init_tsc_clocksource+0x0/0xd0 @ 1
[ 0.272769] initcall init_tsc_clocksource+0x0/0xd0 returned 0 after 2 usecs
[ 0.272771] calling add_rtc_cmos+0x0/0xa0 @ 1
[ 0.272774] initcall add_rtc_cmos+0x0/0xa0 returned 0 after 1 usecs
[ 0.272775] calling umwait_init+0x0/0xa0 @ 1
[ 0.272776] initcall umwait_init+0x0/0xa0 returned -19 after 0 usecs
[ 0.272778] calling sgx_init+0x0/0x4d0 @ 1
[ 0.272799] sgx: EPC section 0x70200000-0x75f7ffff
[ 0.273131] initcall sgx_init+0x0/0x4d0 returned 0 after 351 usecs
[ 0.273143] calling ioapic_init_ops+0x0/0x20 @ 1
[ 0.273151] initcall ioapic_init_ops+0x0/0x20 returned 0 after 0 usecs
[ 0.273157] calling add_pcspkr+0x0/0x70 @ 1
[ 0.273214] initcall add_pcspkr+0x0/0x70 returned 0 after 51 usecs
[ 0.273221] calling audit_classes_init+0x0/0x60 @ 1
[ 0.273232] initcall audit_classes_init+0x0/0x60 returned 0 after 4 usecs
[ 0.273238] calling pt_dump_init+0x0/0x50 @ 1
[ 0.273245] initcall pt_dump_init+0x0/0x50 returned 0 after 0 usecs
[ 0.273252] calling iosf_mbi_init+0x0/0x30 @ 1
[ 0.273284] initcall iosf_mbi_init+0x0/0x30 returned 0 after 25 usecs
[ 0.273292] calling proc_execdomains_init+0x0/0x30 @ 1
[ 0.273304] initcall proc_execdomains_init+0x0/0x30 returned 0 after 4 usecs
[ 0.273312] calling register_warn_debugfs+0x0/0x30 @ 1
[ 0.273326] initcall register_warn_debugfs+0x0/0x30 returned 0 after 7 usecs
[ 0.273336] calling cpuhp_sysfs_init+0x0/0xf0 @ 1
[ 0.273370] initcall cpuhp_sysfs_init+0x0/0xf0 returned 0 after 28 usecs
[ 0.273380] calling ioresources_init+0x0/0x50 @ 1
[ 0.273391] initcall ioresources_init+0x0/0x50 returned 0 after 3 usecs
[ 0.273399] calling psi_proc_init+0x0/0x80 @ 1
[ 0.273411] initcall psi_proc_init+0x0/0x80 returned 0 after 5 usecs
[ 0.273416] calling snapshot_device_init+0x0/0x20 @ 1
[ 0.273469] initcall snapshot_device_init+0x0/0x20 returned 0 after 46 usecs
[ 0.273478] calling irq_pm_init_ops+0x0/0x20 @ 1
[ 0.273484] initcall irq_pm_init_ops+0x0/0x20 returned 0 after 0 usecs
[ 0.273490] calling klp_init+0x0/0x30 @ 1
[ 0.273500] initcall klp_init+0x0/0x30 returned 0 after 3 usecs
[ 0.273506] calling proc_modules_init+0x0/0x30 @ 1
[ 0.273514] initcall proc_modules_init+0x0/0x30 returned 0 after 2 usecs
[ 0.273520] calling timer_sysctl_init+0x0/0x30 @ 1
[ 0.273533] initcall timer_sysctl_init+0x0/0x30 returned 0 after 5 usecs
[ 0.273542] calling timekeeping_init_ops+0x0/0x20 @ 1
[ 0.273549] initcall timekeeping_init_ops+0x0/0x20 returned 0 after 1 usecs
[ 0.273556] calling init_clocksource_sysfs+0x0/0x30 @ 1
[ 0.273626] initcall init_clocksource_sysfs+0x0/0x30 returned 0 after 62 usecs
[ 0.273634] calling init_timer_list_procfs+0x0/0x40 @ 1
[ 0.273642] initcall init_timer_list_procfs+0x0/0x40 returned 0 after 1 usecs
[ 0.273649] calling alarmtimer_init+0x0/0xf0 @ 1
[ 0.273691] initcall alarmtimer_init+0x0/0xf0 returned 0 after 34 usecs
[ 0.273698] calling init_posix_timers+0x0/0x30 @ 1
[ 0.273739] initcall init_posix_timers+0x0/0x30 returned 0 after 33 usecs
[ 0.273746] calling clockevents_init_sysfs+0x0/0xd0 @ 1
[ 0.273903] initcall clockevents_init_sysfs+0x0/0xd0 returned 0 after 149 usecs
[ 0.273912] calling kallsyms_init+0x0/0x30 @ 1
[ 0.273922] initcall kallsyms_init+0x0/0x30 returned 0 after 2 usecs
[ 0.273928] calling pid_namespaces_init+0x0/0x70 @ 1
[ 0.273947] initcall pid_namespaces_init+0x0/0x70 returned 0 after 11 usecs
[ 0.273956] calling audit_watch_init+0x0/0x50 @ 1
[ 0.273964] initcall audit_watch_init+0x0/0x50 returned 0 after 0 usecs
[ 0.273975] calling audit_fsnotify_init+0x0/0x50 @ 1
[ 0.273981] initcall audit_fsnotify_init+0x0/0x50 returned 0 after 0 usecs
[ 0.273989] calling audit_tree_init+0x0/0x80 @ 1
[ 0.274000] initcall audit_tree_init+0x0/0x80 returned 0 after 4 usecs
[ 0.274007] calling seccomp_sysctl_init+0x0/0x30 @ 1
[ 0.274021] initcall seccomp_sysctl_init+0x0/0x30 returned 0 after 5 usecs
[ 0.274029] calling utsname_sysctl_init+0x0/0x30 @ 1
[ 0.274053] initcall utsname_sysctl_init+0x0/0x30 returned 0 after 17 usecs
[ 0.274061] calling init_tracepoints+0x0/0x30 @ 1
[ 0.274071] initcall init_tracepoints+0x0/0x30 returned 0 after 1 usecs
[ 0.274079] calling stack_trace_init+0x0/0xb0 @ 1
[ 0.274098] initcall stack_trace_init+0x0/0xb0 returned 0 after 12 usecs
[ 0.274104] calling init_mmio_trace+0x0/0x10 @ 1
[ 0.274113] initcall init_mmio_trace+0x0/0x10 returned 0 after 4 usecs
[ 0.274119] calling init_blk_tracer+0x0/0x60 @ 1
[ 0.274135] initcall init_blk_tracer+0x0/0x60 returned 0 after 11 usecs
[ 0.274141] calling perf_event_sysfs_init+0x0/0xa0 @ 1
[ 0.274507] initcall perf_event_sysfs_init+0x0/0xa0 returned 0 after 359 usecs
[ 0.274518] calling system_trusted_keyring_init+0x0/0x110 @ 1
[ 0.274525] Initialise system trusted keyrings
[ 0.274543] initcall system_trusted_keyring_init+0x0/0x110 returned 0 after 18 usecs
[ 0.274552] calling blacklist_init+0x0/0x100 @ 1
[ 0.274559] Key type blacklist registered
[ 0.274567] initcall blacklist_init+0x0/0x100 returned 0 after 8 usecs
[ 0.274573] calling kswapd_init+0x0/0x60 @ 1
[ 0.274626] initcall kswapd_init+0x0/0x60 returned 0 after 45 usecs
[ 0.274632] calling extfrag_debug_init+0x0/0x60 @ 1
[ 0.274642] initcall extfrag_debug_init+0x0/0x60 returned 0 after 7 usecs
[ 0.274644] calling mm_compute_batch_init+0x0/0x80 @ 1
[ 0.274648] initcall mm_compute_batch_init+0x0/0x80 returned 0 after 1 usecs
[ 0.274651] calling slab_proc_init+0x0/0x30 @ 1
[ 0.274656] initcall slab_proc_init+0x0/0x30 returned 0 after 2 usecs
[ 0.274658] calling workingset_init+0x0/0xc0 @ 1
[ 0.274661] workingset: timestamp_bits=36 max_order=22 bucket_order=0
[ 0.274664] initcall workingset_init+0x0/0xc0 returned 0 after 2 usecs
[ 0.274667] calling proc_vmalloc_init+0x0/0x60 @ 1
[ 0.274670] initcall proc_vmalloc_init+0x0/0x60 returned 0 after 1 usecs
[ 0.274673] calling slab_debugfs_init+0x0/0x70 @ 1
[ 0.274684] initcall slab_debugfs_init+0x0/0x70 returned 0 after 8 usecs
[ 0.274687] calling procswaps_init+0x0/0x30 @ 1
[ 0.274691] initcall procswaps_init+0x0/0x30 returned 0 after 0 usecs
[ 0.274693] calling init_zbud+0x0/0x30 @ 1
[ 0.274695] zbud: loaded
[ 0.274696] initcall init_zbud+0x0/0x30 returned 0 after 1 usecs
[ 0.274698] calling zs_init+0x0/0x50 @ 1
[ 0.274703] initcall zs_init+0x0/0x50 returned 0 after 3 usecs
[ 0.274704] calling ptdump_debugfs_init+0x0/0x30 @ 1
[ 0.274709] initcall ptdump_debugfs_init+0x0/0x30 returned 0 after 1 usecs
[ 0.274711] calling fcntl_init+0x0/0x30 @ 1
[ 0.274723] initcall fcntl_init+0x0/0x30 returned 0 after 8 usecs
[ 0.274725] calling proc_filesystems_init+0x0/0x30 @ 1
[ 0.274728] initcall proc_filesystems_init+0x0/0x30 returned 0 after 0 usecs
[ 0.274730] calling start_dirtytime_writeback+0x0/0x30 @ 1
[ 0.274733] initcall start_dirtytime_writeback+0x0/0x30 returned 0 after 1 usecs
[ 0.274735] calling dio_init+0x0/0x40 @ 1
[ 0.274738] initcall dio_init+0x0/0x40 returned 0 after 0 usecs
[ 0.274740] calling dnotify_init+0x0/0xb0 @ 1
[ 0.274758] initcall dnotify_init+0x0/0xb0 returned 0 after 16 usecs
[ 0.274760] calling fanotify_user_setup+0x0/0x170 @ 1
[ 0.274768] initcall fanotify_user_setup+0x0/0x170 returned 0 after 5 usecs
[ 0.274770] calling userfaultfd_init+0x0/0x70 @ 1
[ 0.274830] initcall userfaultfd_init+0x0/0x70 returned 0 after 57 usecs
[ 0.274833] calling aio_setup+0x0/0xa0 @ 1
[ 0.274860] initcall aio_setup+0x0/0xa0 returned 0 after 24 usecs
[ 0.274862] calling init_devpts_fs+0x0/0x40 @ 1
[ 0.274869] initcall init_devpts_fs+0x0/0x40 returned 0 after 4 usecs
[ 0.274872] calling fuse_init+0x0/0x1f0 @ 1
[ 0.274874] fuse: init (API version 7.40)
[ 0.274914] initcall fuse_init+0x0/0x1f0 returned 0 after 40 usecs
[ 0.274917] calling virtio_fs_init+0x0/0xa0 @ 1
[ 0.274925] initcall virtio_fs_init+0x0/0xa0 returned 0 after 5 usecs
[ 0.274928] calling ipc_init+0x0/0x30 @ 1
[ 0.274935] initcall ipc_init+0x0/0x30 returned 0 after 5 usecs
[ 0.274938] calling ipc_sysctl_init+0x0/0x30 @ 1
[ 0.274951] initcall ipc_sysctl_init+0x0/0x30 returned 0 after 10 usecs
[ 0.274954] calling init_mqueue_fs+0x0/0xc0 @ 1
[ 0.274971] initcall init_mqueue_fs+0x0/0xc0 returned 0 after 15 usecs
[ 0.274974] calling key_proc_init+0x0/0x70 @ 1
[ 0.274978] initcall key_proc_init+0x0/0x70 returned 0 after 1 usecs
[ 0.274980] calling selinux_nf_ip_init+0x0/0x50 @ 1
[ 0.274983] initcall selinux_nf_ip_init+0x0/0x50 returned 0 after 0 usecs
[ 0.274986] calling init_sel_fs+0x0/0x130 @ 1
[ 0.274989] initcall init_sel_fs+0x0/0x130 returned 0 after 0 usecs
[ 0.274991] calling selnl_init+0x0/0xa0 @ 1
[ 0.275003] initcall selnl_init+0x0/0xa0 returned 0 after 9 usecs
[ 0.275006] calling sel_netif_init+0x0/0x40 @ 1
[ 0.275009] initcall sel_netif_init+0x0/0x40 returned 0 after 0 usecs
[ 0.275011] calling sel_netnode_init+0x0/0x40 @ 1
[ 0.275014] initcall sel_netnode_init+0x0/0x40 returned 0 after 0 usecs
[ 0.275017] calling sel_netport_init+0x0/0x40 @ 1
[ 0.275019] initcall sel_netport_init+0x0/0x40 returned 0 after 0 usecs
[ 0.275022] calling aurule_init+0x0/0x30 @ 1
[ 0.275025] initcall aurule_init+0x0/0x30 returned 0 after 0 usecs
[ 0.275027] calling apparmor_nf_ip_init+0x0/0x40 @ 1
[ 0.275070] initcall apparmor_nf_ip_init+0x0/0x40 returned 0 after 40 usecs
[ 0.275073] calling bpf_crypto_skcipher_init+0x0/0x20 @ 1
[ 0.275077] initcall bpf_crypto_skcipher_init+0x0/0x20 returned 0 after 0 usecs
[ 0.275080] calling crc64_rocksoft_init+0x0/0x20 @ 1
[ 0.275086] initcall crc64_rocksoft_init+0x0/0x20 returned 0 after 4 usecs
[ 0.275089] calling asymmetric_key_init+0x0/0x20 @ 1
[ 0.275093] Key type asymmetric registered
[ 0.275094] initcall asymmetric_key_init+0x0/0x20 returned 0 after 1 usecs
[ 0.275096] calling x509_key_init+0x0/0x20 @ 1
[ 0.275099] Asymmetric key parser 'x509' registered
[ 0.275100] initcall x509_key_init+0x0/0x20 returned 0 after 1 usecs
[ 0.275103] calling crypto_kdf108_init+0x0/0x170 @ 1
[ 0.300008] Freeing initrd memory: 20572K
[ 0.302820] alg: self-tests disabled
[ 0.302853] initcall crypto_kdf108_init+0x0/0x170 returned 0 after 27746 usecs
[ 0.302861] calling blkdev_init+0x0/0x30 @ 1
[ 0.302874] initcall blkdev_init+0x0/0x30 returned 0 after 10 usecs
[ 0.302877] calling proc_genhd_init+0x0/0x50 @ 1
[ 0.302882] initcall proc_genhd_init+0x0/0x50 returned 0 after 2 usecs
[ 0.302885] calling bsg_init+0x0/0xa0 @ 1
[ 0.302895] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
[ 0.302896] initcall bsg_init+0x0/0xa0 returned 0 after 9 usecs
[ 0.302899] calling throtl_init+0x0/0x40 @ 1
[ 0.302926] initcall throtl_init+0x0/0x40 returned 0 after 25 usecs
[ 0.302929] calling ioc_init+0x0/0x20 @ 1
[ 0.302935] initcall ioc_init+0x0/0x20 returned 0 after 2 usecs
[ 0.302937] calling deadline_init+0x0/0x20 @ 1
[ 0.302940] io scheduler mq-deadline registered
[ 0.302940] initcall deadline_init+0x0/0x20 returned 0 after 1 usecs
[ 0.302943] calling io_uring_init+0x0/0xa0 @ 1
[ 0.302960] initcall io_uring_init+0x0/0xa0 returned 0 after 14 usecs
[ 0.302963] calling blake2s_mod_init+0x0/0x20 @ 1
[ 0.303277] initcall blake2s_mod_init+0x0/0x20 returned 0 after 312 usecs
[ 0.303280] calling crc_t10dif_mod_init+0x0/0x60 @ 1
[ 0.303315] initcall crc_t10dif_mod_init+0x0/0x60 returned 0 after 33 usecs
[ 0.303317] calling libcrc32c_mod_init+0x0/0x30 @ 1
[ 0.303335] initcall libcrc32c_mod_init+0x0/0x30 returned 0 after 16 usecs
[ 0.303337] calling crc64_rocksoft_mod_init+0x0/0x60 @ 1
[ 0.303362] initcall crc64_rocksoft_mod_init+0x0/0x60 returned 0 after 24 usecs
[ 0.303364] calling percpu_counter_startup+0x0/0x60 @ 1
[ 0.303381] initcall percpu_counter_startup+0x0/0x60 returned 0 after 15 usecs
[ 0.303383] calling alloc_tag_init+0x0/0xd0 @ 1
[ 0.303414] initcall alloc_tag_init+0x0/0xd0 returned 0 after 29 usecs
[ 0.303415] calling phy_core_init+0x0/0x50 @ 1
[ 0.303431] initcall phy_core_init+0x0/0x50 returned 0 after 14 usecs
[ 0.303432] calling amd_gpio_driver_init+0x0/0x20 @ 1
[ 0.303452] initcall amd_gpio_driver_init+0x0/0x20 returned 0 after 18 usecs
[ 0.303454] calling cnl_pinctrl_driver_init+0x0/0x20 @ 1
[ 0.303460] initcall cnl_pinctrl_driver_init+0x0/0x20 returned 0 after 4 usecs
[ 0.303461] calling icl_pinctrl_driver_init+0x0/0x20 @ 1
[ 0.303467] initcall icl_pinctrl_driver_init+0x0/0x20 returned 0 after 4 usecs
[ 0.303468] calling lbg_pinctrl_driver_init+0x0/0x20 @ 1
[ 0.303474] initcall lbg_pinctrl_driver_init+0x0/0x20 returned 0 after 4 usecs
[ 0.303475] calling tgl_pinctrl_driver_init+0x0/0x20 @ 1
[ 0.303482] initcall tgl_pinctrl_driver_init+0x0/0x20 returned 0 after 5 usecs
[ 0.303483] calling crystalcove_pwm_driver_init+0x0/0x20 @ 1
[ 0.303489] initcall crystalcove_pwm_driver_init+0x0/0x20 returned 0 after 4 usecs
[ 0.303491] calling pcie_portdrv_init+0x0/0x50 @ 1
[ 0.303752] probe of 0000:00:1c.0 returned 0 after 248 usecs
[ 0.303926] probe of 0000:00:1c.4 returned 0 after 171 usecs
[ 0.304069] probe of 0000:00:1d.0 returned 0 after 136 usecs
[ 0.304074] initcall pcie_portdrv_init+0x0/0x50 returned 0 after 581 usecs
[ 0.304076] calling pci_proc_init+0x0/0x80 @ 1
[ 0.304089] initcall pci_proc_init+0x0/0x80 returned 0 after 11 usecs
[ 0.304091] calling pci_hotplug_init+0x0/0x40 @ 1
[ 0.304093] initcall pci_hotplug_init+0x0/0x40 returned 0 after 0 usecs
[ 0.304095] calling shpcd_init+0x0/0x60 @ 1
[ 0.304104] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 0.304105] initcall shpcd_init+0x0/0x60 returned 0 after 8 usecs
[ 0.304107] calling xenfb_init+0x0/0x40 @ 1
[ 0.304108] initcall xenfb_init+0x0/0x40 returned -19 after 0 usecs
[ 0.304110] calling vesafb_driver_init+0x0/0x20 @ 1
[ 0.304120] initcall vesafb_driver_init+0x0/0x20 returned 0 after 8 usecs
[ 0.304122] calling efifb_driver_init+0x0/0x20 @ 1
[ 0.304127] initcall efifb_driver_init+0x0/0x20 returned 0 after 3 usecs
[ 0.304128] calling simplefb_driver_init+0x0/0x20 @ 1
[ 0.304133] initcall simplefb_driver_init+0x0/0x20 returned 0 after 3 usecs
[ 0.304135] calling intel_idle_init+0x0/0xd40 @ 1
[ 0.304305] initcall intel_idle_init+0x0/0xd40 returned 0 after 168 usecs
[ 0.304308] calling ged_driver_init+0x0/0x20 @ 1
[ 0.304319] initcall ged_driver_init+0x0/0x20 returned 0 after 8 usecs
[ 0.304321] calling acpi_processor_driver_init+0x0/0xc0 @ 1
[ 0.304340] probe of cpu0 returned 0 after 15 usecs
[ 0.304353] probe of cpu1 returned 0 after 12 usecs
[ 0.304367] probe of cpu2 returned 0 after 11 usecs
[ 0.304380] probe of cpu3 returned 0 after 11 usecs
[ 0.304534] initcall acpi_processor_driver_init+0x0/0xc0 returned 0 after 211 usecs
[ 0.304537] calling acpi_thermal_init+0x0/0x80 @ 1
[ 0.306369] thermal LNXTHERM:00: registered as thermal_zone0
[ 0.306371] ACPI: thermal: Thermal Zone [THM] (25 C)
[ 0.306376] probe of LNXTHERM:00 returned 0 after 1744 usecs
[ 0.306380] initcall acpi_thermal_init+0x0/0x80 returned 0 after 1840 usecs
[ 0.306383] calling acpi_hed_driver_init+0x0/0x20 @ 1
[ 0.306403] initcall acpi_hed_driver_init+0x0/0x20 returned 0 after 18 usecs
[ 0.306406] calling bgrt_init+0x0/0xd0 @ 1
[ 0.306417] initcall bgrt_init+0x0/0xd0 returned 0 after 8 usecs
[ 0.306419] calling erst_init+0x0/0x390 @ 1
[ 0.306422] initcall erst_init+0x0/0x390 returned 0 after 0 usecs
[ 0.306424] calling extlog_init+0x0/0x3b0 @ 1
[ 0.306426] initcall extlog_init+0x0/0x3b0 returned -19 after 0 usecs
[ 0.306429] calling intel_crc_pmic_opregion_driver_init+0x0/0x20 @ 1
[ 0.306436] initcall intel_crc_pmic_opregion_driver_init+0x0/0x20 returned 0 after 4 usecs
[ 0.306438] calling intel_chtcrc_pmic_opregion_driver_init+0x0/0x20 @ 1
[ 0.306444] initcall intel_chtcrc_pmic_opregion_driver_init+0x0/0x20 returned 0 after 3 usecs
[ 0.306446] calling intel_cht_wc_pmic_opregion_driver_init+0x0/0x20 @ 1
[ 0.306454] initcall intel_cht_wc_pmic_opregion_driver_init+0x0/0x20 returned 0 after 5 usecs
[ 0.306456] calling gpio_clk_driver_init+0x0/0x20 @ 1
[ 0.306463] initcall gpio_clk_driver_init+0x0/0x20 returned 0 after 4 usecs
[ 0.306465] calling fch_clk_driver_init+0x0/0x20 @ 1
[ 0.306470] initcall fch_clk_driver_init+0x0/0x20 returned 0 after 2 usecs
[ 0.306473] calling plt_clk_driver_init+0x0/0x20 @ 1
[ 0.306479] initcall plt_clk_driver_init+0x0/0x20 returned 0 after 3 usecs
[ 0.306481] calling virtio_mmio_init+0x0/0x20 @ 1
[ 0.306488] initcall virtio_mmio_init+0x0/0x20 returned 0 after 4 usecs
[ 0.306490] calling virtio_pci_driver_init+0x0/0x20 @ 1
[ 0.306496] initcall virtio_pci_driver_init+0x0/0x20 returned 0 after 4 usecs
[ 0.306497] calling virtio_balloon_driver_init+0x0/0x20 @ 1
[ 0.306501] initcall virtio_balloon_driver_init+0x0/0x20 returned 0 after 2 usecs
[ 0.306503] calling xenbus_probe_initcall+0x0/0xb0 @ 1
[ 0.306504] initcall xenbus_probe_initcall+0x0/0xb0 returned -19 after 0 usecs
[ 0.306505] calling xenbus_init+0x0/0x50 @ 1
[ 0.306507] initcall xenbus_init+0x0/0x50 returned -19 after 0 usecs
[ 0.306508] calling xenbus_backend_init+0x0/0x50 @ 1
[ 0.306509] initcall xenbus_backend_init+0x0/0x50 returned -19 after 0 usecs
[ 0.306510] calling hyper_sysfs_init+0x0/0x230 @ 1
[ 0.306512] initcall hyper_sysfs_init+0x0/0x230 returned -19 after 0 usecs
[ 0.306514] calling hypervisor_subsys_init+0x0/0x30 @ 1
[ 0.306515] initcall hypervisor_subsys_init+0x0/0x30 returned -19 after 0 usecs
[ 0.306516] calling platform_driver_init+0x0/0x20 @ 1
[ 0.306521] initcall platform_driver_init+0x0/0x20 returned 0 after 3 usecs
[ 0.306522] calling xen_late_init_mcelog+0x0/0x70 @ 1
[ 0.306523] initcall xen_late_init_mcelog+0x0/0x70 returned -19 after 0 usecs
[ 0.306525] calling n_null_init+0x0/0x20 @ 1
[ 0.306526] initcall n_null_init+0x0/0x20 returned 0 after 0 usecs
[ 0.306528] calling pty_init+0x0/0x230 @ 1
[ 0.306589] initcall pty_init+0x0/0x230 returned 0 after 59 usecs
[ 0.306590] calling sysrq_init+0x0/0x70 @ 1
[ 0.306593] initcall sysrq_init+0x0/0x70 returned 0 after 1 usecs
[ 0.306594] calling xen_hvc_init+0x0/0x220 @ 1
[ 0.306596] initcall xen_hvc_init+0x0/0x220 returned -19 after 0 usecs
[ 0.306597] calling serial8250_init+0x0/0x110 @ 1
[ 0.306599] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[ 0.306648] probe of serial8250:0 returned 0 after 2 usecs
[ 0.306658] probe of serial8250:0.0 returned 0 after 2 usecs
[ 0.306760] probe of serial8250:0.1 returned 0 after 2 usecs
[ 0.306848] probe of serial8250:0.2 returned 0 after 2 usecs
[ 0.306933] probe of serial8250:0.3 returned 0 after 2 usecs
[ 0.307018] probe of serial8250 returned 0 after 2 usecs
[ 0.307021] initcall serial8250_init+0x0/0x110 returned 0 after 422 usecs
[ 0.307023] calling dw8250_platform_driver_init+0x0/0x20 @ 1
[ 0.307031] initcall dw8250_platform_driver_init+0x0/0x20 returned 0 after 6 usecs
[ 0.307033] calling mid8250_pci_driver_init+0x0/0x20 @ 1
[ 0.307039] initcall mid8250_pci_driver_init+0x0/0x20 returned 0 after 4 usecs
[ 0.307041] calling serial_pci_driver_init+0x0/0x20 @ 1
[ 0.307053] initcall serial_pci_driver_init+0x0/0x20 returned 0 after 10 usecs
[ 0.307055] calling pericom8250_pci_driver_init+0x0/0x20 @ 1
[ 0.307060] initcall pericom8250_pci_driver_init+0x0/0x20 returned 0 after 3 usecs
[ 0.307061] calling random_sysctls_init+0x0/0x30 @ 1
[ 0.307066] initcall random_sysctls_init+0x0/0x30 returned 0 after 3 usecs
[ 0.307068] calling virtio_console_init+0x0/0xe0 @ 1
[ 0.307077] initcall virtio_console_init+0x0/0xe0 returned 0 after 7 usecs
[ 0.307079] calling hpet_init+0x0/0x90 @ 1
[ 0.307209] hpet_acpi_add: no address or irqs in _CRS
[ 0.307212] probe of PNP0103:00 returned 19 after 76 usecs
[ 0.307224] initcall hpet_init+0x0/0x90 returned 0 after 143 usecs
[ 0.307226] calling init_tis+0x0/0xf0 @ 1
[ 0.319482] tpm_tis MSFT0101:00: 2.0 TPM (device-id 0xFE, rev-id 4)
[ 0.354470] probe of MSFT0101:00 returned 0 after 47239 usecs
[ 0.354491] initcall init_tis+0x0/0xf0 returned 0 after 47263 usecs
[ 0.354496] calling crb_acpi_driver_init+0x0/0x20 @ 1
[ 0.354537] probe of MSFT0101:00 returned 19 after 7 usecs
[ 0.354543] initcall crb_acpi_driver_init+0x0/0x20 returned 0 after 44 usecs
[ 0.354546] calling virtio_iommu_drv_init+0x0/0x20 @ 1
[ 0.354553] initcall virtio_iommu_drv_init+0x0/0x20 returned 0 after 5 usecs
[ 0.354555] calling cn_proc_init+0x0/0x40 @ 1
[ 0.354557] initcall cn_proc_init+0x0/0x40 returned 0 after 0 usecs
[ 0.354559] calling topology_sysfs_init+0x0/0x30 @ 1
[ 0.354580] initcall topology_sysfs_init+0x0/0x30 returned 0 after 19 usecs
[ 0.354583] calling cacheinfo_sysfs_init+0x0/0x30 @ 1
[ 0.354839] initcall cacheinfo_sysfs_init+0x0/0x30 returned 0 after 254 usecs
[ 0.354845] calling devcoredump_init+0x0/0x20 @ 1
[ 0.354855] initcall devcoredump_init+0x0/0x20 returned 0 after 7 usecs
[ 0.354858] calling crystal_cove_i2c_driver_init+0x0/0x20 @ 1
[ 0.354865] initcall crystal_cove_i2c_driver_init+0x0/0x20 returned 0 after 4 usecs
[ 0.354868] calling cht_wc_driver_init+0x0/0x20 @ 1
[ 0.354873] initcall cht_wc_driver_init+0x0/0x20 returned 0 after 2 usecs
[ 0.354875] calling cxl_port_driver_init+0x0/0x20 @ 1
[ 0.354880] initcall cxl_port_driver_init+0x0/0x20 returned 0 after 3 usecs
[ 0.354883] calling spidev_init+0x0/0x90 @ 1
[ 0.354892] initcall spidev_init+0x0/0x90 returned 0 after 7 usecs
[ 0.354894] calling blackhole_netdev_init+0x0/0x80 @ 1
[ 0.354905] initcall blackhole_netdev_init+0x0/0x80 returned 0 after 8 usecs
[ 0.354908] calling fixed_mdio_bus_init+0x0/0x100 @ 1
[ 0.354987] initcall fixed_mdio_bus_init+0x0/0x100 returned 0 after 76 usecs
[ 0.354990] calling virtio_net_driver_init+0x0/0xb0 @ 1
[ 0.354996] initcall virtio_net_driver_init+0x0/0xb0 returned 0 after 3 usecs
[ 0.354998] calling net_failover_init+0x0/0x10 @ 1
[ 0.355000] initcall net_failover_init+0x0/0x10 returned 0 after 0 usecs
[ 0.355002] calling i8042_init+0x0/0x7f0 @ 1
[ 0.355033] probe of 00:03 returned 0 after 7 usecs
[ 0.355043] probe of 00:04 returned 0 after 3 usecs
[ 0.355045] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[ 0.356685] i8042: Warning: Keylock active
[ 0.358901] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 0.358906] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 0.358909] probe of i8042 returned 0 after 3833 usecs
[ 0.358911] initcall i8042_init+0x0/0x7f0 returned 0 after 3907 usecs
[ 0.358914] calling input_leds_init+0x0/0x20 @ 1
[ 0.358917] initcall input_leds_init+0x0/0x20 returned 0 after 0 usecs
[ 0.358919] calling mousedev_init+0x0/0xe0 @ 1
[ 0.359011] mousedev: PS/2 mouse device common for all mice
[ 0.359015] initcall mousedev_init+0x0/0xe0 returned 0 after 93 usecs
[ 0.359019] calling atkbd_init+0x0/0x30 @ 1
[ 0.359031] initcall atkbd_init+0x0/0x30 returned 0 after 10 usecs
[ 0.359034] calling xenkbd_init+0x0/0x40 @ 1
[ 0.359036] initcall xenkbd_init+0x0/0x40 returned -19 after 0 usecs
[ 0.359039] calling cmos_init+0x0/0x90 @ 1
[ 0.359047] rtc_cmos 00:01: RTC can wake from S4
[ 0.359742] probe of alarmtimer.0.auto returned 0 after 3 usecs
[ 0.359756] rtc_cmos 00:01: registered as rtc0
[ 0.359924] rtc_cmos 00:01: setting system clock to 2024-08-13T09:01:01 UTC (1723539661)
[ 0.359950] rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram
[ 0.359954] probe of 00:01 returned 0 after 911 usecs
[ 0.359957] initcall cmos_init+0x0/0x90 returned 0 after 916 usecs
[ 0.359960] calling spd5118_driver_init+0x0/0x20 @ 1
[ 0.359965] initcall spd5118_driver_init+0x0/0x20 returned 0 after 2 usecs
[ 0.359967] calling thermal_throttle_init_device+0x0/0x50 @ 1
[ 0.360051] initcall thermal_throttle_init_device+0x0/0x50 returned 0 after 80 usecs
[ 0.360053] calling amd_pstate_init+0x0/0x300 @ 1
[ 0.360056] initcall amd_pstate_init+0x0/0x300 returned -19 after 0 usecs
[ 0.360058] calling intel_pstate_init+0x0/0x8e0 @ 1
[ 0.360062] intel_pstate: Intel P-state driver initializing
[ 0.360254] intel_pstate: HWP enabled
[ 0.360254] initcall intel_pstate_init+0x0/0x8e0 returned 0 after 193 usecs
[ 0.360257] calling haltpoll_init+0x0/0x150 @ 1
[ 0.360260] initcall haltpoll_init+0x0/0x150 returned -19 after 0 usecs
[ 0.360262] calling ledtrig_cpu_init+0x0/0xf0 @ 1
[ 0.360318] ledtrig-cpu: registered to indicate activity on CPUs
[ 0.360319] initcall ledtrig_cpu_init+0x0/0xf0 returned 0 after 54 usecs
[ 0.360322] calling ledtrig_panic_init+0x0/0x50 @ 1
[ 0.360324] initcall ledtrig_panic_init+0x0/0x50 returned 0 after 0 usecs
[ 0.360327] calling dmi_sysfs_init+0x0/0x140 @ 1
[ 0.360530] initcall dmi_sysfs_init+0x0/0x140 returned 0 after 200 usecs
[ 0.360534] calling sysfb_init+0x0/0x1b0 @ 1
[ 0.360552] efifb: probing for efifb
[ 0.360562] efifb: framebuffer at 0x90000000, using 22500k, total 22500k
[ 0.360563] efifb: mode is 3200x1800x32, linelength=12800, pages=1
[ 0.360565] efifb: scrolling: redraw
[ 0.360565] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[ 0.360626] Console: switching to colour frame buffer device 200x56
[ 0.360668] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
[ 0.360731] probe of serio0 returned 0 after 1010 usecs
[ 0.364022] fb0: EFI VGA frame buffer device
[ 0.364028] probe of efi-framebuffer.0 returned 0 after 3478 usecs
[ 0.364030] initcall sysfb_init+0x0/0x1b0 returned 0 after 3494 usecs
[ 0.364036] calling coreboot_table_driver_init+0x0/0x50 @ 1
[ 0.364064] initcall coreboot_table_driver_init+0x0/0x50 returned 0 after 25 usecs
[ 0.364067] calling framebuffer_driver_init+0x0/0x20 @ 1
[ 0.364076] initcall framebuffer_driver_init+0x0/0x20 returned 0 after 5 usecs
[ 0.364078] calling esrt_sysfs_init+0x0/0x360 @ 1
[ 0.364093] initcall esrt_sysfs_init+0x0/0x360 returned 0 after 13 usecs
[ 0.364095] calling pmc_atom_init+0x0/0x2c0 @ 1
[ 0.364101] initcall pmc_atom_init+0x0/0x2c0 returned -19 after 4 usecs
[ 0.364103] calling vmgenid_plaform_driver_init+0x0/0x20 @ 1
[ 0.364109] initcall vmgenid_plaform_driver_init+0x0/0x20 returned 0 after 4 usecs
[ 0.364111] calling cxl_pmu_init+0x0/0x80 @ 1
[ 0.364115] initcall cxl_pmu_init+0x0/0x80 returned 0 after 2 usecs
[ 0.364117] calling sock_diag_init+0x0/0x40 @ 1
[ 0.364127] initcall sock_diag_init+0x0/0x40 returned 0 after 8 usecs
[ 0.364128] calling failover_init+0x0/0x20 @ 1
[ 0.364132] initcall failover_init+0x0/0x20 returned 0 after 2 usecs
[ 0.364134] calling blackhole_init+0x0/0x20 @ 1
[ 0.364136] initcall blackhole_init+0x0/0x20 returned 0 after 0 usecs
[ 0.364137] calling fq_codel_module_init+0x0/0x20 @ 1
[ 0.364140] initcall fq_codel_module_init+0x0/0x20 returned 0 after 1 usecs
[ 0.364142] calling gre_offload_init+0x0/0x60 @ 1
[ 0.364150] initcall gre_offload_init+0x0/0x60 returned 0 after 1 usecs
[ 0.364152] calling sysctl_ipv4_init+0x0/0x70 @ 1
[ 0.364194] initcall sysctl_ipv4_init+0x0/0x70 returned 0 after 40 usecs
[ 0.364196] calling cubictcp_register+0x0/0x90 @ 1
[ 0.364202] initcall cubictcp_register+0x0/0x90 returned 0 after 3 usecs
[ 0.364204] calling inet6_init+0x0/0x3b0 @ 1
[ 0.364225] NET: Registered PF_INET6 protocol family
[ 0.366147] probe of serio1 returned 19 after 5414 usecs
[ 0.367300] Segment Routing with IPv6
[ 0.367312] In-situ OAM (IOAM) with IPv6
[ 0.367344] initcall inet6_init+0x0/0x3b0 returned 0 after 3137 usecs
[ 0.367350] calling mip6_init+0x0/0xc0 @ 1
[ 0.367352] mip6: Mobile IPv6
[ 0.367353] initcall mip6_init+0x0/0xc0 returned 0 after 0 usecs
[ 0.367356] calling packet_init+0x0/0x90 @ 1
[ 0.367362] NET: Registered PF_PACKET protocol family
[ 0.367363] initcall packet_init+0x0/0x90 returned 0 after 4 usecs
[ 0.367365] calling strp_dev_init+0x0/0x40 @ 1
[ 0.367392] initcall strp_dev_init+0x0/0x40 returned 0 after 24 usecs
[ 0.367395] calling dcbnl_init+0x0/0x50 @ 1
[ 0.367398] initcall dcbnl_init+0x0/0x50 returned 0 after 1 usecs
[ 0.367400] calling mpls_gso_init+0x0/0x30 @ 1
[ 0.367402] mpls_gso: MPLS GSO support
[ 0.367404] initcall mpls_gso_init+0x0/0x30 returned 0 after 1 usecs
[ 0.367406] calling pm_check_save_msr+0x0/0xc0 @ 1
[ 0.367414] initcall pm_check_save_msr+0x0/0xc0 returned 0 after 5 usecs
[ 0.367416] calling mcheck_init_device+0x0/0x160 @ 1
[ 0.367616] initcall mcheck_init_device+0x0/0x160 returned 0 after 197 usecs
[ 0.367642] calling kernel_do_mounts_initrd_sysctls_init+0x0/0x30 @ 1
[ 0.367648] initcall kernel_do_mounts_initrd_sysctls_init+0x0/0x30 returned 0 after 2 usecs
[ 0.367651] calling tboot_late_init+0x0/0x390 @ 1
[ 0.367653] initcall tboot_late_init+0x0/0x390 returned 0 after 0 usecs
[ 0.367654] calling sld_mitigate_sysctl_init+0x0/0x30 @ 1
[ 0.367657] initcall sld_mitigate_sysctl_init+0x0/0x30 returned 0 after 1 usecs
[ 0.367659] calling intel_epb_init+0x0/0xa0 @ 1
[ 0.367663] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[ 0.367691] initcall intel_epb_init+0x0/0xa0 returned 0 after 30 usecs
[ 0.367693] calling mcheck_late_init+0x0/0x90 @ 1
[ 0.367699] initcall mcheck_late_init+0x0/0x90 returned 0 after 4 usecs
[ 0.367701] calling severities_debugfs_init+0x0/0x30 @ 1
[ 0.367703] initcall severities_debugfs_init+0x0/0x30 returned 0 after 0 usecs
[ 0.367705] calling microcode_init+0x0/0x1f0 @ 1
[ 0.367707] microcode: Current revision: 0x000000f4
[ 0.367708] microcode: Updated early from: 0x000000f0
[ 0.367812] initcall microcode_init+0x0/0x1f0 returned 0 after 105 usecs
[ 0.367815] calling resctrl_late_init+0x0/0x7b0 @ 1
[ 0.367818] initcall resctrl_late_init+0x0/0x7b0 returned -19 after 0 usecs
[ 0.367819] calling cpu_init_debugfs+0x0/0xf0 @ 1
[ 0.367826] initcall cpu_init_debugfs+0x0/0xf0 returned 0 after 4 usecs
[ 0.367828] calling hpet_insert_resource+0x0/0x30 @ 1
[ 0.367834] initcall hpet_insert_resource+0x0/0x30 returned 0 after 3 usecs
[ 0.367836] calling start_sync_check_timer+0x0/0x60 @ 1
[ 0.367843] initcall start_sync_check_timer+0x0/0x60 returned 0 after 0 usecs
[ 0.367845] calling update_mp_table+0x0/0x650 @ 1
[ 0.367848] initcall update_mp_table+0x0/0x650 returned 0 after 0 usecs
[ 0.367850] calling lapic_insert_resource+0x0/0x50 @ 1
[ 0.367853] initcall lapic_insert_resource+0x0/0x50 returned 0 after 0 usecs
[ 0.367855] calling print_ipi_mode+0x0/0x40 @ 1
[ 0.367857] IPI shorthand broadcast: enabled
[ 0.367857] initcall print_ipi_mode+0x0/0x40 returned 0 after 0 usecs
[ 0.367859] calling print_ICs+0x0/0x1d0 @ 1
[ 0.367860] initcall print_ICs+0x0/0x1d0 returned 0 after 0 usecs
[ 0.367861] calling setup_efi_kvm_sev_migration+0x0/0x1c0 @ 1
[ 0.367863] initcall setup_efi_kvm_sev_migration+0x0/0x1c0 returned 0 after 0 usecs
[ 0.367865] calling create_tlb_single_page_flush_ceiling+0x0/0x30 @ 1
[ 0.367868] initcall create_tlb_single_page_flush_ceiling+0x0/0x30 returned 0 after 1 usecs
[ 0.367870] calling pat_memtype_list_init+0x0/0x40 @ 1
[ 0.367873] initcall pat_memtype_list_init+0x0/0x40 returned 0 after 0 usecs
[ 0.367874] calling create_init_pkru_value+0x0/0x40 @ 1
[ 0.367877] initcall create_init_pkru_value+0x0/0x40 returned 0 after 0 usecs
[ 0.367879] calling kernel_panic_sysctls_init+0x0/0x30 @ 1
[ 0.367883] initcall kernel_panic_sysctls_init+0x0/0x30 returned 0 after 2 usecs
[ 0.367886] calling kernel_panic_sysfs_init+0x0/0x30 @ 1
[ 0.367889] initcall kernel_panic_sysfs_init+0x0/0x30 returned 0 after 0 usecs
[ 0.367891] calling kernel_exit_sysctls_init+0x0/0x30 @ 1
[ 0.367895] initcall kernel_exit_sysctls_init+0x0/0x30 returned 0 after 0 usecs
[ 0.367897] calling kernel_exit_sysfs_init+0x0/0x30 @ 1
[ 0.367900] initcall kernel_exit_sysfs_init+0x0/0x30 returned 0 after 0 usecs
[ 0.367902] calling param_sysfs_builtin_init+0x0/0x200 @ 1
[ 0.368751] initcall param_sysfs_builtin_init+0x0/0x200 returned 0 after 847 usecs
[ 0.368753] calling reboot_ksysfs_init+0x0/0x80 @ 1
[ 0.368759] initcall reboot_ksysfs_init+0x0/0x80 returned 0 after 4 usecs
[ 0.368761] calling sched_core_sysctl_init+0x0/0x30 @ 1
[ 0.368764] initcall sched_core_sysctl_init+0x0/0x30 returned 0 after 1 usecs
[ 0.368765] calling sched_fair_sysctl_init+0x0/0x30 @ 1
[ 0.368767] initcall sched_fair_sysctl_init+0x0/0x30 returned 0 after 1 usecs
[ 0.368769] calling sched_rt_sysctl_init+0x0/0x30 @ 1
[ 0.368772] initcall sched_rt_sysctl_init+0x0/0x30 returned 0 after 1 usecs
[ 0.368773] calling sched_dl_sysctl_init+0x0/0x30 @ 1
[ 0.368775] initcall sched_dl_sysctl_init+0x0/0x30 returned 0 after 0 usecs
[ 0.368777] calling sched_clock_init_late+0x0/0xb0 @ 1
[ 0.368779] sched_clock: Marking stable (361844394, 5967698)->(380891472, -13079380)
[ 0.368837] initcall sched_clock_init_late+0x0/0xb0 returned 0 after 58 usecs
[ 0.368839] calling sched_init_debug+0x0/0x220 @ 1
[ 0.368859] initcall sched_init_debug+0x0/0x220 returned 0 after 18 usecs
[ 0.368861] calling sched_energy_aware_sysctl_init+0x0/0x30 @ 1
[ 0.368863] initcall sched_energy_aware_sysctl_init+0x0/0x30 returned 0 after 0 usecs
[ 0.368864] calling cpu_latency_qos_init+0x0/0x40 @ 1
[ 0.368891] initcall cpu_latency_qos_init+0x0/0x40 returned 0 after 24 usecs
[ 0.368892] calling pm_debugfs_init+0x0/0x30 @ 1
[ 0.368895] initcall pm_debugfs_init+0x0/0x30 returned 0 after 0 usecs
[ 0.368896] calling printk_late_init+0x0/0x170 @ 1
[ 0.368902] initcall printk_late_init+0x0/0x170 returned 0 after 4 usecs
[ 0.368904] calling init_srcu_module_notifier+0x0/0x30 @ 1
[ 0.368907] initcall init_srcu_module_notifier+0x0/0x30 returned 0 after 1 usecs
[ 0.368909] calling swiotlb_create_default_debugfs+0x0/0xa0 @ 1
[ 0.368914] initcall swiotlb_create_default_debugfs+0x0/0xa0 returned 0 after 3 usecs
[ 0.368916] calling module_decompress_sysfs_init+0x0/0x40 @ 1
[ 0.368918] initcall module_decompress_sysfs_init+0x0/0x40 returned 0 after 0 usecs
[ 0.368920] calling tk_debug_sleep_time_init+0x0/0x30 @ 1
[ 0.368923] initcall tk_debug_sleep_time_init+0x0/0x30 returned 0 after 0 usecs
[ 0.368925] calling bpf_ksym_iter_register+0x0/0x30 @ 1
[ 0.368927] initcall bpf_ksym_iter_register+0x0/0x30 returned 0 after 0 usecs
[ 0.368929] calling kernel_acct_sysctls_init+0x0/0x30 @ 1
[ 0.368932] initcall kernel_acct_sysctls_init+0x0/0x30 returned 0 after 0 usecs
[ 0.368934] calling kexec_core_sysctl_init+0x0/0x30 @ 1
[ 0.368937] initcall kexec_core_sysctl_init+0x0/0x30 returned 0 after 0 usecs
[ 0.368939] calling bpf_rstat_kfunc_init+0x0/0x20 @ 1
[ 0.368943] initcall bpf_rstat_kfunc_init+0x0/0x20 returned 0 after 1 usecs
[ 0.368945] calling debugfs_kprobe_init+0x0/0x80 @ 1
[ 0.368949] initcall debugfs_kprobe_init+0x0/0x80 returned 0 after 2 usecs
[ 0.368951] calling kernel_delayacct_sysctls_init+0x0/0x30 @ 1
[ 0.368955] initcall kernel_delayacct_sysctls_init+0x0/0x30 returned 0 after 0 usecs
[ 0.368957] calling taskstats_init+0x0/0x40 @ 1
[ 0.368963] registered taskstats version 1
[ 0.368963] initcall taskstats_init+0x0/0x40 returned 0 after 4 usecs
[ 0.368966] calling ftrace_sysctl_init+0x0/0x30 @ 1
[ 0.368969] initcall ftrace_sysctl_init+0x0/0x30 returned 0 after 0 usecs
[ 0.368971] calling bpf_key_sig_kfuncs_init+0x0/0x20 @ 1
[ 0.368974] initcall bpf_key_sig_kfuncs_init+0x0/0x20 returned 0 after 0 usecs
[ 0.368975] calling bpf_fs_kfuncs_init+0x0/0x20 @ 1
[ 0.368977] initcall bpf_fs_kfuncs_init+0x0/0x20 returned 0 after 0 usecs
[ 0.368979] calling bpf_kprobe_multi_kfuncs_init+0x0/0x20 @ 1
[ 0.368981] initcall bpf_kprobe_multi_kfuncs_init+0x0/0x20 returned 0 after 0 usecs
[ 0.368982] calling bpf_global_ma_init+0x0/0x30 @ 1
[ 0.369001] initcall bpf_global_ma_init+0x0/0x30 returned 0 after 16 usecs
[ 0.369003] calling bpf_syscall_sysctl_init+0x0/0x30 @ 1
[ 0.369005] initcall bpf_syscall_sysctl_init+0x0/0x30 returned 0 after 1 usecs
[ 0.369007] calling unbound_reg_init+0x0/0x20 @ 1
[ 0.369009] initcall unbound_reg_init+0x0/0x20 returned 0 after 0 usecs
[ 0.369010] calling kfunc_init+0x0/0xe0 @ 1
[ 0.369031] initcall kfunc_init+0x0/0xe0 returned 0 after 18 usecs
[ 0.369032] calling bpf_map_iter_init+0x0/0x40 @ 1
[ 0.369034] initcall bpf_map_iter_init+0x0/0x40 returned 0 after 0 usecs
[ 0.369036] calling init_subsystem+0x0/0x20 @ 1
[ 0.369040] initcall init_subsystem+0x0/0x20 returned 0 after 1 usecs
[ 0.369041] calling task_iter_init+0x0/0xd0 @ 1
[ 0.369043] initcall task_iter_init+0x0/0xd0 returned 0 after 0 usecs
[ 0.369044] calling bpf_prog_iter_init+0x0/0x30 @ 1
[ 0.369046] initcall bpf_prog_iter_init+0x0/0x30 returned 0 after 0 usecs
[ 0.369047] calling bpf_link_iter_init+0x0/0x30 @ 1
[ 0.369049] initcall bpf_link_iter_init+0x0/0x30 returned 0 after 0 usecs
[ 0.369051] calling init_trampolines+0x0/0x20 @ 1
[ 0.369052] initcall init_trampolines+0x0/0x20 returned 0 after 0 usecs
[ 0.369054] calling kfunc_init+0x0/0x20 @ 1
[ 0.369058] initcall kfunc_init+0x0/0x20 returned 0 after 1 usecs
[ 0.369059] calling bpf_cgroup_iter_init+0x0/0x30 @ 1
[ 0.369061] initcall bpf_cgroup_iter_init+0x0/0x30 returned 0 after 0 usecs
[ 0.369062] calling cpumask_kfunc_init+0x0/0xb0 @ 1
[ 0.369075] initcall cpumask_kfunc_init+0x0/0xb0 returned 0 after 11 usecs
[ 0.369077] calling crypto_kfunc_init+0x0/0xb0 @ 1
[ 0.369084] initcall crypto_kfunc_init+0x0/0xb0 returned 0 after 5 usecs
[ 0.369086] calling load_system_certificate_list+0x0/0x40 @ 1
[ 0.369088] Loading compiled-in X.509 certificates
[ 0.369089] initcall load_system_certificate_list+0x0/0x40 returned 0 after 0 usecs
[ 0.369090] calling init_lru_gen+0x0/0x70 @ 1
[ 0.369095] initcall init_lru_gen+0x0/0x70 returned 0 after 2 usecs
[ 0.369097] calling fault_around_debugfs+0x0/0x30 @ 1
[ 0.369100] initcall fault_around_debugfs+0x0/0x30 returned 0 after 0 usecs
[ 0.369102] calling slab_sysfs_init+0x0/0x100 @ 1
[ 0.370395] initcall slab_sysfs_init+0x0/0x100 returned 0 after 1290 usecs
[ 0.370398] calling max_swapfiles_check+0x0/0x10 @ 1
[ 0.370401] initcall max_swapfiles_check+0x0/0x10 returned 0 after 0 usecs
[ 0.370403] calling zswap_init+0x0/0x20 @ 1
[ 0.370405] initcall zswap_init+0x0/0x20 returned 0 after 0 usecs
[ 0.370408] calling hugetlb_vmemmap_init+0x0/0x80 @ 1
[ 0.370413] initcall hugetlb_vmemmap_init+0x0/0x80 returned 0 after 2 usecs
[ 0.370415] calling mempolicy_sysfs_init+0x0/0x2c0 @ 1
[ 0.370419] initcall mempolicy_sysfs_init+0x0/0x2c0 returned 0 after 1 usecs
[ 0.370422] calling kfence_debugfs_init+0x0/0x20 @ 1
[ 0.370424] initcall kfence_debugfs_init+0x0/0x20 returned 0 after 0 usecs
[ 0.370426] calling memory_tier_late_init+0x0/0x90 @ 1
[ 0.370484] Demotion targets for Node 0: null
[ 0.370486] initcall memory_tier_late_init+0x0/0x90 returned 0 after 57 usecs
[ 0.370490] calling split_huge_pages_debugfs+0x0/0x30 @ 1
[ 0.370495] initcall split_huge_pages_debugfs+0x0/0x30 returned 0 after 2 usecs
[ 0.370498] calling kmemleak_late_init+0x0/0x90 @ 1
[ 0.370502] initcall kmemleak_late_init+0x0/0x90 returned -12 after 2 usecs
[ 0.370504] calling check_early_ioremap_leak+0x0/0x50 @ 1
[ 0.370505] initcall check_early_ioremap_leak+0x0/0x50 returned 0 after 0 usecs
[ 0.370507] calling set_hardened_usercopy+0x0/0x30 @ 1
[ 0.370508] initcall set_hardened_usercopy+0x0/0x30 returned 1 after 0 usecs
[ 0.370510] calling fscrypt_init+0x0/0x90 @ 1
[ 0.370648] Key type .fscrypt registered
[ 0.370649] Key type fscrypt-provisioning registered
[ 0.370650] initcall fscrypt_init+0x0/0x90 returned 0 after 138 usecs
[ 0.370652] calling fsverity_init+0x0/0x50 @ 1
[ 0.370673] initcall fsverity_init+0x0/0x50 returned 0 after 19 usecs
[ 0.370675] calling pstore_init+0x0/0x60 @ 1
[ 0.370680] initcall pstore_init+0x0/0x60 returned 0 after 3 usecs
[ 0.370682] calling init_root_keyring+0x0/0x20 @ 1
[ 0.370697] initcall init_root_keyring+0x0/0x20 returned 0 after 12 usecs
[ 0.370699] calling init_encrypted+0x0/0xd0 @ 1
[ 0.374959] calling cryptd_init+0x0/0x1000 [cryptd] @ 92
[ 0.375065] cryptd: max_cpu_qlen set to 1000
[ 0.375067] initcall cryptd_init+0x0/0x1000 [cryptd] returned 0 after 102 usecs
[ 0.375763] calling aesni_init+0x0/0x1000 [aesni_intel] @ 92
[ 0.375780] AES CTR mode by8 optimization enabled
[ 0.375805] initcall aesni_init+0x0/0x1000 [aesni_intel] returned 0 after 37 usecs
[ 0.388853] Key type encrypted registered
[ 0.388856] initcall init_encrypted+0x0/0xd0 returned 0 after 13088 usecs
[ 0.388862] calling init_profile_hash+0x0/0x80 @ 1
[ 0.388866] AppArmor: AppArmor sha256 policy hashing enabled
[ 0.388867] initcall init_profile_hash+0x0/0x80 returned 0 after 1 usecs
[ 0.388869] calling integrity_fs_init+0x0/0x60 @ 1
[ 0.388875] initcall integrity_fs_init+0x0/0x60 returned 0 after 3 usecs
[ 0.388877] calling crypto_algapi_init+0x0/0x90 @ 1
[ 0.389537] initcall crypto_algapi_init+0x0/0x90 returned 0 after 657 usecs
[ 0.389542] calling blk_timeout_init+0x0/0x20 @ 1
[ 0.389545] initcall blk_timeout_init+0x0/0x20 returned 0 after 0 usecs
[ 0.389548] calling sed_opal_init+0x0/0x110 @ 1
[ 0.389556] initcall sed_opal_init+0x0/0x110 returned 0 after 5 usecs
[ 0.389558] calling depot_debugfs_init+0x0/0x40 @ 1
[ 0.389575] initcall depot_debugfs_init+0x0/0x40 returned 0 after 13 usecs
[ 0.389577] calling pci_resource_alignment_sysfs_init+0x0/0x20 @ 1
[ 0.389582] initcall pci_resource_alignment_sysfs_init+0x0/0x20 returned 0 after 3 usecs
[ 0.389584] calling pci_sysfs_init+0x0/0x80 @ 1
[ 0.389605] initcall pci_sysfs_init+0x0/0x80 returned 0 after 20 usecs
[ 0.389607] calling bert_init+0x0/0x2e0 @ 1
[ 0.389611] initcall bert_init+0x0/0x2e0 returned 0 after 1 usecs
[ 0.389613] calling clk_debug_init+0x0/0x110 @ 1
[ 0.389619] initcall clk_debug_init+0x0/0x110 returned 0 after 3 usecs
[ 0.389622] calling setup_vcpu_hotplug_event+0x0/0x30 @ 1
[ 0.389623] initcall setup_vcpu_hotplug_event+0x0/0x30 returned -19 after 0 usecs
[ 0.389625] calling boot_wait_for_devices+0x0/0x30 @ 1
[ 0.389626] initcall boot_wait_for_devices+0x0/0x30 returned -19 after 0 usecs
[ 0.389628] calling dmar_free_unused_resources+0x0/0xe0 @ 1
[ 0.389630] initcall dmar_free_unused_resources+0x0/0xe0 returned 0 after 0 usecs
[ 0.389632] calling sync_state_resume_initcall+0x0/0x20 @ 1
[ 0.389634] initcall sync_state_resume_initcall+0x0/0x20 returned 0 after 0 usecs
[ 0.389636] calling deferred_probe_initcall+0x0/0x90 @ 1
[ 0.389648] initcall deferred_probe_initcall+0x0/0x90 returned 0 after 10 usecs
[ 0.389650] calling firmware_memmap_init+0x0/0x40 @ 1
[ 0.389682] initcall firmware_memmap_init+0x0/0x40 returned 0 after 29 usecs
[ 0.389684] calling register_update_efi_random_seed+0x0/0x30 @ 1
[ 0.389686] initcall register_update_efi_random_seed+0x0/0x30 returned 0 after 0 usecs
[ 0.389688] calling efi_shutdown_init+0x0/0x50 @ 1
[ 0.389689] initcall efi_shutdown_init+0x0/0x50 returned 0 after 0 usecs
[ 0.389691] calling efi_earlycon_unmap_fb+0x0/0x50 @ 1
[ 0.389692] initcall efi_earlycon_unmap_fb+0x0/0x50 returned 0 after 0 usecs
[ 0.389694] calling itmt_legacy_init+0x0/0x50 @ 1
[ 0.389695] initcall itmt_legacy_init+0x0/0x50 returned -19 after 0 usecs
[ 0.389697] calling cec_init+0x0/0x1e0 @ 1
[ 0.389701] RAS: Correctable Errors collector initialized.
[ 0.389702] initcall cec_init+0x0/0x1e0 returned 0 after 3 usecs
[ 0.389703] calling bpf_kfunc_init+0x0/0x130 @ 1
[ 0.389712] initcall bpf_kfunc_init+0x0/0x130 returned 0 after 7 usecs
[ 0.389714] calling init_subsystem+0x0/0x20 @ 1
[ 0.389720] initcall init_subsystem+0x0/0x20 returned 0 after 3 usecs
[ 0.389722] calling xdp_metadata_init+0x0/0x20 @ 1
[ 0.389725] initcall xdp_metadata_init+0x0/0x20 returned 0 after 1 usecs
[ 0.389727] calling bpf_sockmap_iter_init+0x0/0x30 @ 1
[ 0.389730] initcall bpf_sockmap_iter_init+0x0/0x30 returned 0 after 1 usecs
[ 0.389731] calling bpf_sk_storage_map_iter_init+0x0/0x30 @ 1
[ 0.389733] initcall bpf_sk_storage_map_iter_init+0x0/0x30 returned 0 after 0 usecs
[ 0.389735] calling sch_default_qdisc+0x0/0x20 @ 1
[ 0.389738] initcall sch_default_qdisc+0x0/0x20 returned 0 after 1 usecs
[ 0.389740] calling bpf_prog_test_run_init+0x0/0xb0 @ 1
[ 0.389750] initcall bpf_prog_test_run_init+0x0/0xb0 returned 0 after 7 usecs
[ 0.389751] calling bpf_dummy_struct_ops_init+0x0/0x20 @ 1
[ 0.391328] initcall bpf_dummy_struct_ops_init+0x0/0x20 returned 0 after 1574 usecs
[ 0.391333] calling tcp_congestion_default+0x0/0x20 @ 1
[ 0.391336] initcall tcp_congestion_default+0x0/0x20 returned 0 after 0 usecs
[ 0.391337] calling tcp_bpf_v4_build_proto+0x0/0x90 @ 1
[ 0.391340] initcall tcp_bpf_v4_build_proto+0x0/0x90 returned 0 after 0 usecs
[ 0.391342] calling udp_bpf_v4_build_proto+0x0/0x50 @ 1
[ 0.391344] initcall udp_bpf_v4_build_proto+0x0/0x50 returned 0 after 0 usecs
[ 0.391346] calling bpf_tcp_ca_kfunc_init+0x0/0x30 @ 1
[ 0.398418] initcall bpf_tcp_ca_kfunc_init+0x0/0x30 returned 0 after 7070 usecs
[ 0.398426] calling bpf_mptcp_kfunc_init+0x0/0x20 @ 1
[ 0.398429] initcall bpf_mptcp_kfunc_init+0x0/0x20 returned 0 after 1 usecs
[ 0.398432] calling pci_mmcfg_late_insert_resources+0x0/0xc0 @ 1
[ 0.398436] initcall pci_mmcfg_late_insert_resources+0x0/0xc0 returned 0 after 1 usecs
[ 0.398439] calling software_resume_initcall+0x0/0x180 @ 1
[ 0.398442] initcall software_resume_initcall+0x0/0x180 returned -2 after 0 usecs
[ 0.398444] calling lockup_detector_check+0x0/0x80 @ 1
[ 0.398522] initcall lockup_detector_check+0x0/0x80 returned 0 after 75 usecs
[ 0.398525] calling ftrace_check_sync+0x0/0x20 @ 1
[ 0.398531] initcall ftrace_check_sync+0x0/0x20 returned 0 after 4 usecs
[ 0.398534] calling latency_fsnotify_init+0x0/0x40 @ 1
[ 0.398553] initcall latency_fsnotify_init+0x0/0x40 returned 0 after 17 usecs
[ 0.398554] calling trace_eval_sync+0x0/0x20 @ 1
[ 0.398557] initcall trace_eval_sync+0x0/0x20 returned 0 after 1 usecs
[ 0.398558] calling late_trace_init+0x0/0xb0 @ 1
[ 0.398560] initcall late_trace_init+0x0/0xb0 returned 0 after 0 usecs
[ 0.398561] calling acpi_gpio_handle_deferred_request_irqs+0x0/0x90 @ 1
[ 0.398564] initcall acpi_gpio_handle_deferred_request_irqs+0x0/0x90 returned 0 after 0 usecs
[ 0.398565] calling clk_disable_unused+0x0/0x140 @ 1
[ 0.398568] clk: Disabling unused clocks
[ 0.398570] initcall clk_disable_unused+0x0/0x140 returned 0 after 1 usecs
[ 0.398572] calling balloon_wait_finish+0x0/0x100 @ 1
[ 0.398574] initcall balloon_wait_finish+0x0/0x100 returned -19 after 0 usecs
[ 0.398575] calling regulator_init_complete+0x0/0x30 @ 1
[ 0.398577] initcall regulator_init_complete+0x0/0x30 returned 0 after 0 usecs
[ 0.399299] Freeing unused decrypted memory: 2036K
[ 0.399667] Freeing unused kernel image (initmem) memory: 2892K
[ 0.399679] Write protecting the kernel read-only data: 24576k
[ 0.400027] Freeing unused kernel image (rodata/data gap) memory: 436K
[ 0.410254] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 0.410284] Run /init as init process
[ 0.410285] with arguments:
[ 0.410286] /init
[ 0.410287] with environment:
[ 0.410288] HOME=/
[ 0.410288] TERM=linux
[ 0.410289] BOOT_IMAGE=/vmlinuz-6.11.0-rc3-00008-gefdb6ceb4ffd
[ 0.472329] calling hid_init+0x0/0x50 [hid] @ 164
[ 0.472535] hid: raw HID events driver (C) Jiri Kosina
[ 0.472548] initcall hid_init+0x0/0x50 [hid] returned 0 after 207 usecs
[ 0.472989] calling usb_common_init+0x0/0x30 [usb_common] @ 165
[ 0.473000] initcall usb_common_init+0x0/0x30 [usb_common] returned 0 after 5 usecs
[ 0.473017] calling idma64_platform_driver_init+0x0/0x1000 [idma64] @ 155
[ 0.473061] initcall idma64_platform_driver_init+0x0/0x1000 [idma64] returned 0 after 38 usecs
[ 0.473259] calling intel_lpss_init+0x0/0x1000 [intel_lpss] @ 155
[ 0.473266] initcall intel_lpss_init+0x0/0x1000 [intel_lpss] returned 0 after 2 usecs
[ 0.473985] calling intel_lpss_pci_driver_init+0x0/0x1000 [intel_lpss_pci] @ 155
[ 0.474246] intel-lpss 0000:00:15.0: enabling device (0000 -> 0002)
[ 0.474531] idma64 idma64.0: Found Intel integrated DMA 64-bit
[ 0.474543] probe of idma64.0 returned 0 after 75 usecs
[ 0.476792] calling smbalert_driver_init+0x0/0x1000 [i2c_smbus] @ 166
[ 0.476815] initcall smbalert_driver_init+0x0/0x1000 [i2c_smbus] returned 0 after 16 usecs
[ 0.491445] calling i801_driver_init+0x0/0x1000 [i2c_i801] @ 166
[ 0.491479] initcall i801_driver_init+0x0/0x1000 [i2c_i801] returned 0 after 26 usecs
[ 0.493132] calling nvme_core_init+0x0/0x1000 [nvme_core] @ 154
[ 0.496467] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[ 0.496476] calling sha1_ssse3_mod_init+0x0/0x1000 [sha1_ssse3] @ 168
[ 0.496495] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[ 0.496723] calling drm_core_init+0x0/0x1000 [drm] @ 164
[ 0.496918] ACPI: bus type drm_connector registered
[ 0.496924] initcall drm_core_init+0x0/0x1000 [drm] returned 0 after 96 usecs
[ 0.496986] calling usb_init+0x0/0x170 [usbcore] @ 165
[ 0.497011] ACPI: bus type USB registered
[ 0.497045] usbcore: registered new interface driver usbfs
[ 0.497054] usbcore: registered new interface driver hub
[ 0.497397] initcall nvme_core_init+0x0/0x1000 [nvme_core] returned 0 after 387 usecs
[ 0.497419] initcall sha1_ssse3_mod_init+0x0/0x1000 [sha1_ssse3] returned 0 after 410 usecs
[ 0.497433] usbcore: registered new device driver usb
[ 0.497435] initcall usb_init+0x0/0x170 [usbcore] returned 0 after 426 usecs
[ 0.504140] probe of i2c_designware.0 returned 0 after 29563 usecs
[ 0.504162] probe of 0000:00:15.0 returned 0 after 30157 usecs
[ 0.504284] intel-lpss 0000:00:15.1: enabling device (0000 -> 0002)
[ 0.504775] idma64 idma64.1: Found Intel integrated DMA 64-bit
[ 0.504784] probe of idma64.1 returned 0 after 78 usecs
[ 0.522514] probe of i2c_designware.1 returned 0 after 17705 usecs
[ 0.522528] probe of 0000:00:15.1 returned 0 after 18362 usecs
[ 0.522549] initcall intel_lpss_pci_driver_init+0x0/0x1000 [intel_lpss_pci] returned 0 after 25540 usecs
[ 0.526027] probe of 0000:00:1f.4 returned 0 after 34553 usecs
[ 0.527100] calling nvme_init+0x0/0x1000 [nvme] @ 154
[ 0.527138] initcall nvme_init+0x0/0x1000 [nvme] returned 0 after 29 usecs
[ 0.527172] calling i2c_hid_acpi_driver_init+0x0/0x1000 [i2c_hid_acpi] @ 164
[ 0.527202] initcall i2c_hid_acpi_driver_init+0x0/0x1000 [i2c_hid_acpi] returned 0 after 23 usecs
[ 0.527563] calling sha256_ssse3_mod_init+0x0/0x1000 [sha256_ssse3] @ 168
[ 0.527857] nvme nvme0: pci function 0000:3b:00.0
[ 0.527877] initcall sha256_ssse3_mod_init+0x0/0x1000 [sha256_ssse3] returned 0 after 307 usecs
[ 0.529225] calling sha512_generic_mod_init+0x0/0x1000 [sha512_generic] @ 157
[ 0.529435] initcall sha512_generic_mod_init+0x0/0x1000 [sha512_generic] returned 0 after 205 usecs
[ 0.531835] calling xhci_hcd_init+0x0/0x30 [xhci_hcd] @ 165
[ 0.531851] initcall xhci_hcd_init+0x0/0x30 [xhci_hcd] returned 0 after 2 usecs
[ 0.547270] nvme nvme0: 4/0/0 default/read/poll queues
[ 0.552296] nvme0n1: p1 p2 p3 p4
[ 0.552763] probe of 0000:3b:00.0 returned 0 after 25611 usecs
[ 0.680280] probe of i2c-DLL075B:01 returned 0 after 153083 usecs
[ 0.680650] calling sha512_ssse3_mod_init+0x0/0x1000 [sha512_ssse3] @ 157
[ 0.680671] calling xhci_pci_init+0x0/0x1000 [xhci_pci] @ 165
[ 0.680759] calling hid_generic_init+0x0/0x1000 [hid_generic] @ 171
[ 0.680826] initcall sha512_ssse3_mod_init+0x0/0x1000 [sha512_ssse3] returned 0 after 63 usecs
[ 0.680918] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 0.680925] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[ 0.681065] calling ghash_pclmulqdqni_mod_init+0x0/0x1000 [ghash_clmulni_intel] @ 170
[ 0.681204] initcall ghash_pclmulqdqni_mod_init+0x0/0x1000 [ghash_clmulni_intel] returned 0 after 133 usecs
[ 0.681245] 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.681508] 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.681578] hid-generic 0018:06CB:76AF.0001: input,hidraw0: I2C HID v1.00 Mouse [DLL075B:01 06CB:76AF] on i2c-DLL075B:01
[ 0.681588] probe of 0018:06CB:76AF.0001 returned 0 after 821 usecs
[ 0.681605] initcall hid_generic_init+0x0/0x1000 [hid_generic] returned 0 after 535 usecs
[ 0.681814] calling crc32c_intel_mod_init+0x0/0x1000 [crc32c_intel] @ 163
[ 0.681937] initcall crc32c_intel_mod_init+0x0/0x1000 [crc32c_intel] returned 0 after 119 usecs
[ 0.682025] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x0000000081109810
[ 0.682236] calling crc32_pclmul_mod_init+0x0/0x1000 [crc32_pclmul] @ 168
[ 0.682274] initcall crc32_pclmul_mod_init+0x0/0x1000 [crc32_pclmul] returned 0 after 33 usecs
[ 0.682516] calling crct10dif_intel_mod_init+0x0/0x1000 [crct10dif_pclmul] @ 168
[ 0.682570] initcall crct10dif_intel_mod_init+0x0/0x1000 [crct10dif_pclmul] returned 0 after 49 usecs
[ 0.682628] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 0.682634] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[ 0.682639] xhci_hcd 0000:00:14.0: Host supports USB 3.0 SuperSpeed
[ 0.682679] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.11
[ 0.682682] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.682684] usb usb1: Product: xHCI Host Controller
[ 0.682686] usb usb1: Manufacturer: Linux 6.11.0-rc3-00008-gefdb6ceb4ffd xhci-hcd
[ 0.682687] usb usb1: SerialNumber: 0000:00:14.0
[ 0.682847] hub 1-0:1.0: USB hub found
[ 0.682864] hub 1-0:1.0: 12 ports detected
[ 0.684143] probe of 1-0:1.0 returned 0 after 1301 usecs
[ 0.684178] probe of usb1 returned 0 after 1368 usecs
[ 0.684218] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.11
[ 0.684222] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.684224] usb usb2: Product: xHCI Host Controller
[ 0.684225] usb usb2: Manufacturer: Linux 6.11.0-rc3-00008-gefdb6ceb4ffd xhci-hcd
[ 0.684226] usb usb2: SerialNumber: 0000:00:14.0
[ 0.684311] hub 2-0:1.0: USB hub found
[ 0.684323] hub 2-0:1.0: 6 ports detected
[ 0.684996] probe of 2-0:1.0 returned 0 after 689 usecs
[ 0.685017] probe of usb2 returned 0 after 739 usecs
[ 0.685058] probe of 0000:00:14.0 returned 0 after 4375 usecs
[ 0.685074] initcall xhci_pci_init+0x0/0x1000 [xhci_pci] returned 0 after 2553 usecs
[ 0.705738] calling dm_init+0x0/0x60 [dm_mod] @ 215
[ 0.705785] device-mapper: uevent: version 1.0.3
[ 0.705854] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@lists.linux.dev
[ 0.705856] initcall dm_init+0x0/0x60 [dm_mod] returned 0 after 104 usecs
[ 0.706584] calling dm_crypt_init+0x0/0x1000 [dm_crypt] @ 215
[ 0.706591] initcall dm_crypt_init+0x0/0x1000 [dm_crypt] returned 0 after 0 usecs
[ 0.942181] usb 1-3: new full-speed USB device number 2 using xhci_hcd
[ 1.092025] usb 1-3: New USB device found, idVendor=0cf3, idProduct=e300, bcdDevice= 0.01
[ 1.092040] usb 1-3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 1.094408] probe of 1-3 returned 0 after 1911 usecs
[ 1.222206] usb 1-4: new full-speed USB device number 3 using xhci_hcd
[ 1.274178] tsc: Refined TSC clocksource calibration: 2904.008 MHz
[ 1.274198] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x29dc0d988f1, max_idle_ns: 440795328788 ns
[ 1.274270] clocksource: Switched to clocksource tsc
[ 1.372361] usb 1-4: New USB device found, idVendor=04f3, idProduct=2234, bcdDevice=11.11
[ 1.372377] usb 1-4: New USB device strings: Mfr=4, Product=14, SerialNumber=0
[ 1.372384] usb 1-4: Product: Touchscreen
[ 1.372388] usb 1-4: Manufacturer: ELAN
[ 1.374355] probe of 1-4 returned 0 after 1453 usecs
[ 1.380227] calling hid_init+0x0/0x1000 [usbhid] @ 163
[ 1.386648] 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.386803] 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.386838] 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.387108] 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.387130] probe of 0003:04F3:2234.0002 returned 0 after 1243 usecs
[ 1.387145] probe of 1-4:1.0 returned 0 after 6901 usecs
[ 1.387161] usbcore: registered new interface driver usbhid
[ 1.387163] usbhid: USB HID core driver
[ 1.387164] initcall hid_init+0x0/0x1000 [usbhid] returned 0 after 6927 usecs
[ 1.502243] usb 1-5: new high-speed USB device number 4 using xhci_hcd
[ 1.710960] usb 1-5: New USB device found, idVendor=0c45, idProduct=670c, bcdDevice=56.26
[ 1.710970] usb 1-5: New USB device strings: Mfr=2, Product=1, SerialNumber=0
[ 1.710973] usb 1-5: Product: Integrated_Webcam_HD
[ 1.710976] usb 1-5: Manufacturer: CN09GTFMLOG008C8B7FWA01
[ 1.719922] probe of 1-5 returned 0 after 8619 usecs
[ 46.204190] PM: Image not found (code -22)
[ 46.255876] calling journal_init+0x0/0xee0 [jbd2] @ 352
[ 46.256278] initcall journal_init+0x0/0xee0 [jbd2] returned 0 after 353 usecs
[ 46.257547] calling mbcache_init+0x0/0x1000 [mbcache] @ 352
[ 46.257581] initcall mbcache_init+0x0/0x1000 [mbcache] returned 0 after 17 usecs
[ 46.294722] calling ext4_init_fs+0x0/0x1f0 [ext4] @ 352
[ 46.294870] initcall ext4_init_fs+0x0/0x1f0 [ext4] returned 0 after 113 usecs
[ 46.298423] EXT4-fs (dm-0): mounted filesystem 32e29882-d94d-4a92-9ee4-4d03002bfa29 ro with ordered data mode. Quota mode: none.
[ 46.384797] calling init_autofs_fs+0x0/0x40 [autofs4] @ 1
[ 46.384885] initcall init_autofs_fs+0x0/0x40 [autofs4] returned 0 after 78 usecs
[ 46.384944] systemd[1]: Inserted module 'autofs4'
[ 46.391570] calling efivarfs_init+0x0/0x1000 [efivarfs] @ 383
[ 46.391581] initcall efivarfs_init+0x0/0x1000 [efivarfs] returned 0 after 2 usecs
[ 46.411925] systemd[1]: systemd 256.4-3 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)
[ 46.411933] systemd[1]: Detected architecture x86-64.
[ 46.413280] systemd[1]: Hostname set to <abreu>.
[ 46.566605] systemd[1]: bpf-restrict-fs: LSM BPF program attached
[ 46.699724] systemd[1]: Queued start job for default target graphical.target.
[ 46.702952] calling nfnetlink_init+0x0/0x1000 [nfnetlink] @ 402
[ 46.702964] initcall nfnetlink_init+0x0/0x1000 [nfnetlink] returned 0 after 6 usecs
[ 46.731210] systemd[1]: Created slice system-getty.slice - Slice /system/getty.
[ 46.731571] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
[ 46.731892] systemd[1]: Created slice system-systemd\x2dcryptsetup.slice - Encrypted Volume Units Service Slice.
[ 46.732203] systemd[1]: Created slice system-systemd\x2dfsck.slice - Slice /system/systemd-fsck.
[ 46.732416] systemd[1]: Created slice user.slice - User and Session Slice.
[ 46.732474] systemd[1]: Started systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch.
[ 46.732521] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
[ 46.732690] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
[ 46.732712] systemd[1]: Expecting device dev-disk-by\x2ddiskseq-1\x2dpart4.device - /dev/disk/by-diskseq/1-part4...
[ 46.732721] systemd[1]: Expecting device dev-disk-by\x2duuid-2d23fd4c\x2d5d03\x2d4e1a\x2d8a42\x2d0e859d1f00d8.device - /dev/disk/by-uuid/2d23fd4c-5d03-4e1a-8a42-0e859d1f00d8...
[ 46.732729] systemd[1]: Expecting device dev-disk-by\x2duuid-61be8f50\x2d69c5\x2d49a5\x2dbcad\x2d3f4521e9c7b5.device - /dev/disk/by-uuid/61be8f50-69c5-49a5-bcad-3f4521e9c7b5...
[ 46.732736] systemd[1]: Expecting device dev-disk-by\x2duuid-96BD\x2d5653.device - /dev/disk/by-uuid/96BD-5653...
[ 46.732760] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
[ 46.732785] systemd[1]: Reached target nss-user-lookup.target - User and Group Name Lookups.
[ 46.732797] systemd[1]: Reached target paths.target - Path Units.
[ 46.732813] systemd[1]: Reached target remote-fs.target - Remote File Systems.
[ 46.732828] systemd[1]: Reached target slices.target - Slice Units.
[ 46.732858] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
[ 46.734319] systemd[1]: Listening on systemd-coredump.socket - Process Core Dump Socket.
[ 46.735226] systemd[1]: Listening on systemd-creds.socket - Credential Encryption/Decryption.
[ 46.735307] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
[ 46.735400] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
[ 46.735502] systemd[1]: Listening on systemd-journald.socket - Journal Sockets.
[ 46.735548] systemd[1]: systemd-pcrextend.socket - TPM PCR Measurements was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 46.735568] systemd[1]: systemd-pcrlock.socket - Make TPM PCR Policy was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 46.735649] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[ 46.735711] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[ 46.736918] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
[ 46.737619] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
[ 46.738758] systemd[1]: Mounting run-lock.mount - Legacy Locks Directory /run/lock...
[ 46.742111] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
[ 46.743204] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
[ 46.748677] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
[ 46.750229] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
[ 46.754881] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
[ 46.758198] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
[ 46.764374] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
[ 46.764490] 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).
[ 46.764549] 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).
[ 46.767106] systemd[1]: Starting systemd-journald.service - Journal Service...
[ 46.769009] calling efivars_pstore_init+0x0/0xc0 [efi_pstore] @ 412
[ 46.769044] pstore: Using crash dump compression: deflate
[ 46.770012] calling configfs_init+0x0/0x1000 [configfs] @ 410
[ 46.770064] initcall configfs_init+0x0/0x1000 [configfs] returned 0 after 44 usecs
[ 46.770563] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
[ 46.770589] systemd[1]: systemd-pcrmachine.service - TPM PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 46.771552] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
[ 46.771619] systemd[1]: systemd-tpm2-setup-early.service - Early TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 46.775379] systemd[1]: Starting systemd-udev-load-credentials.service - Load udev Rules from Credentials...
[ 46.781892] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
[ 46.783165] pstore: Registered efi_pstore as persistent store backend
[ 46.783176] initcall efivars_pstore_init+0x0/0xc0 [efi_pstore] returned 0 after 13155 usecs
[ 46.784698] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
[ 46.784799] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
[ 46.784894] systemd[1]: Mounted run-lock.mount - Legacy Locks Directory /run/lock.
[ 46.784976] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
[ 46.785061] systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
[ 46.785316] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
[ 46.785608] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[ 46.785780] systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs.
[ 46.786043] systemd[1]: modprobe@drm.service: Deactivated successfully.
[ 46.786210] systemd[1]: Finished modprobe@drm.service - Load Kernel Module drm.
[ 46.786451] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
[ 46.786608] systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
[ 46.786876] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[ 46.787039] systemd[1]: Finished modprobe@fuse.service - Load Kernel Module fuse.
[ 46.788348] calling parport_default_proc_register+0x0/0x1000 [parport] @ 415
[ 46.788394] initcall parport_default_proc_register+0x0/0x1000 [parport] returned 0 after 35 usecs
[ 46.788568] systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
[ 46.791507] calling lp_init_module+0x0/0x1000 [lp] @ 415
[ 46.791970] systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System...
[ 46.793863] systemd[1]: Starting systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully...
[ 46.794117] lp: driver loaded but no devices found
[ 46.794120] initcall lp_init_module+0x0/0x1000 [lp] returned 0 after 2604 usecs
[ 46.794347] systemd-journald[414]: Collecting audit messages is disabled.
[ 46.796006] calling ppdev_init+0x0/0x1000 [ppdev] @ 415
[ 46.800336] systemd[1]: Mounted sys-fs-fuse-connections.mount - FUSE Control File System.
[ 46.800661] systemd[1]: Finished systemd-udev-load-credentials.service - Load udev Rules from Credentials.
[ 46.800872] ppdev: user-space parallel port driver
[ 46.800875] initcall ppdev_init+0x0/0x1000 [ppdev] returned 0 after 4860 usecs
[ 46.802121] systemd[1]: Mounted sys-kernel-config.mount - Kernel Configuration File System.
[ 46.803475] calling parport_pc_init+0x0/0xf20 [parport_pc] @ 415
[ 46.803564] probe of parport_pc.956 returned 0 after 7 usecs
[ 46.803584] probe of parport0 returned 19 after 2 usecs
[ 46.803587] probe of parport0 returned 19 after 1 usecs
[ 46.803684] probe of parport_pc.888 returned 0 after 11 usecs
[ 46.803700] probe of parport0 returned 19 after 2 usecs
[ 46.803703] probe of parport0 returned 19 after 2 usecs
[ 46.803832] probe of parport_pc.632 returned 0 after 5 usecs
[ 46.803853] probe of parport0 returned 19 after 2 usecs
[ 46.803857] probe of parport0 returned 19 after 2 usecs
[ 46.803959] initcall parport_pc_init+0x0/0xf20 [parport_pc] returned 0 after 478 usecs
[ 46.806817] calling msr_init+0x0/0x1000 [msr] @ 415
[ 46.814953] initcall msr_init+0x0/0x1000 [msr] returned 0 after 8129 usecs
[ 46.815452] EXT4-fs (dm-0): re-mounted 32e29882-d94d-4a92-9ee4-4d03002bfa29 r/w. Quota mode: none.
[ 46.816022] systemd[1]: Finished systemd-modules-load.service - Load Kernel Modules.
[ 46.817537] systemd[1]: Starting systemd-sysctl.service - Apply Kernel Variables...
[ 46.817790] systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.
[ 46.818078] systemd[1]: Finished systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully.
[ 46.818482] systemd[1]: systemd-hwdb-update.service - Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
[ 46.818539] systemd[1]: systemd-pstore.service - Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).
[ 46.822145] systemd[1]: Starting systemd-random-seed.service - Load/Save OS Random Seed...
[ 46.822224] systemd[1]: systemd-sysusers.service - Create System Users was skipped because no trigger condition checks were met.
[ 46.823128] systemd[1]: Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev...
[ 46.823149] systemd[1]: systemd-tpm2-setup.service - TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 46.850552] systemd[1]: Started systemd-journald.service - Journal Service.
[ 46.870206] systemd-journald[414]: Received client request to flush runtime journal.
[ 46.969240] calling serio_raw_drv_init+0x0/0x1000 [serio_raw] @ 458
[ 46.969274] initcall serio_raw_drv_init+0x0/0x1000 [serio_raw] returned 0 after 26 usecs
[ 46.978045] calling evdev_init+0x0/0x1000 [evdev] @ 462
[ 46.979100] calling mt_driver_init+0x0/0x1000 [hid_multitouch] @ 472
[ 46.981212] initcall evdev_init+0x0/0x1000 [evdev] returned 0 after 2104 usecs
[ 46.985056] calling usb_roles_init+0x0/0x1000 [roles] @ 475
[ 46.985072] initcall usb_roles_init+0x0/0x1000 [roles] returned 0 after 8 usecs
[ 46.987065] calling acpi_button_driver_init+0x0/0x1000 [button] @ 460
[ 46.989335] calling acpi_ac_init+0x0/0xfc0 [ac] @ 458
[ 46.989508] calling intel_xhci_usb_driver_init+0x0/0x1000 [intel_xhci_usb_role_switch] @ 475
[ 46.989534] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input9
[ 46.989746] probe of intel_xhci_usb_sw returned 0 after 210 usecs
[ 46.989765] initcall intel_xhci_usb_driver_init+0x0/0x1000 [intel_xhci_usb_role_switch] returned 0 after 251 usecs
[ 46.989931] calling acpi_pad_init+0x0/0x1000 [acpi_pad] @ 465
[ 46.992716] probe of ACPI000C:00 returned 0 after 2769 usecs
[ 46.992744] initcall acpi_pad_init+0x0/0x1000 [acpi_pad] returned 0 after 2807 usecs
[ 46.993886] calling pmt_class_init+0x0/0x1000 [pmt_class] @ 461
[ 46.993901] initcall pmt_class_init+0x0/0x1000 [pmt_class] returned 0 after 8 usecs
[ 46.994576] calling int3400_thermal_driver_init+0x0/0x1000 [int3400_thermal] @ 479
[ 46.996380] calling acpi_battery_init+0x0/0xf60 [battery] @ 469
[ 46.996402] initcall acpi_battery_init+0x0/0xf60 [battery] returned 0 after 3 usecs
[ 46.997838] calling pmt_telem_init+0x0/0x1000 [pmt_telemetry] @ 461
[ 46.997863] initcall pmt_telem_init+0x0/0x1000 [pmt_telemetry] returned 0 after 18 usecs
[ 46.998727] calling int3403_driver_init+0x0/0x1000 [int3403_thermal] @ 468
[ 46.999798] ACPI: AC: AC Adapter [AC] (off-line)
[ 47.001993] probe of ACPI0003:00 returned 0 after 12323 usecs
[ 47.006329] initcall acpi_ac_init+0x0/0xfc0 [ac] returned 0 after 7595 usecs
[ 47.006416] calling intel_hid_init+0x0/0x50 [intel_hid] @ 478
[ 47.020551] Consider using thermal netlink events interface
[ 47.021583] calling acpi_wmi_init+0x0/0x1000 [wmi] @ 459
[ 47.031750] input: Intel HID events as /devices/platform/INT33D5:00/input/input10
[ 47.039373] probe of INT3400:00 returned 0 after 44766 usecs
[ 47.039409] initcall int3400_thermal_driver_init+0x0/0x1000 [int3400_thermal] returned 0 after 17789 usecs
[ 47.039717] probe of PNP0C14:00 returned 0 after 17838 usecs
[ 47.040024] wmi_bus wmi_bus-PNP0C14:01: [Firmware Bug]: WQBC data block query control method not found
[ 47.041019] probe of PNP0C14:01 returned 0 after 1293 usecs
[ 47.043756] probe of INT3403:00 returned 0 after 45000 usecs
[ 47.048824] initcall acpi_wmi_init+0x0/0x1000 [wmi] returned 0 after 27204 usecs
[ 47.051913] calling intel_vbtn_init+0x0/0x50 [intel_vbtn] @ 470
[ 47.051946] calling soc_button_driver_init+0x0/0x1000 [soc_button_array] @ 462
[ 47.056879] probe of INT3403:01 returned 0 after 13113 usecs
[ 47.066472] probe of INT33D2:00 returned 19 after 14506 usecs
[ 47.066622] probe of INT33D3:00 returned 19 after 143 usecs
[ 47.066665] initcall soc_button_driver_init+0x0/0x1000 [soc_button_array] returned 0 after 14713 usecs
[ 47.067959] input: Intel Virtual Buttons as /devices/pci0000:00/0000:00:1f.0/PNP0C09:00/INT33D6:00/input/input11
[ 47.077741] probe of INT3403:02 returned 0 after 20854 usecs
[ 47.092449] probe of 0018:06CB:76AF.0001 returned 19 after 48 usecs
[ 47.099657] ACPI: button: Lid Switch [LID0]
[ 47.099699] probe of PNP0C0D:00 returned 0 after 110915 usecs
[ 47.099872] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input13
[ 47.106831] probe of INT33D6:00 returned 0 after 54385 usecs
[ 47.106886] initcall intel_vbtn_init+0x0/0x50 [intel_vbtn] returned 0 after 54934 usecs
[ 47.107153] ACPI: button: Power Button [PBTN]
[ 47.107277] probe of PNP0C0C:00 returned 0 after 7565 usecs
[ 47.107383] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input14
[ 47.107690] ACPI: button: Sleep Button [SBTN]
[ 47.107720] probe of PNP0C0E:00 returned 0 after 434 usecs
[ 47.107812] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input15
[ 47.108378] ACPI: button: Power Button [PWRF]
[ 47.108407] probe of LNXPWRBN:00 returned 0 after 671 usecs
[ 47.108448] initcall acpi_button_driver_init+0x0/0x1000 [button] returned 0 after 56496 usecs
[ 47.112923] intel-hid INT33D5:00: platform supports 5 button array
[ 47.113231] 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
[ 47.114135] input: Intel HID 5 button array as /devices/platform/INT33D5:00/input/input16
[ 47.114648] 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
[ 47.116056] hid-multitouch 0018:06CB:76AF.0001: input,hidraw0: I2C HID v1.00 Mouse [DLL075B:01 06CB:76AF] on i2c-DLL075B:01
[ 47.117791] probe of 0018:06CB:76AF.0001 returned 0 after 25307 usecs
[ 47.121159] ACPI: battery: Slot [BAT0] (battery present)
[ 47.126298] probe of PNP0C0A:00 returned 0 after 129757 usecs
[ 47.141456] probe of INT3403:03 returned 0 after 63675 usecs
[ 47.141624] probe of INT33D5:00 returned 0 after 118132 usecs
[ 47.141644] initcall intel_hid_init+0x0/0x50 [intel_hid] returned 0 after 89692 usecs
[ 47.141817] calling typec_init+0x0/0xa0 [typec] @ 467
[ 47.141866] calling acpi_video_init+0x0/0x1000 [video] @ 459
[ 47.141881] initcall acpi_video_init+0x0/0x1000 [video] returned 0 after 8 usecs
[ 47.143288] calling intel_vsec_pci_driver_init+0x0/0x1000 [intel_vsec] @ 461
[ 47.143325] initcall intel_vsec_pci_driver_init+0x0/0x1000 [intel_vsec] returned 0 after 30 usecs
[ 47.144543] initcall int3403_driver_init+0x0/0x1000 [int3403_thermal] returned 0 after 1247 usecs
[ 47.150281] calling pmc_core_driver_init+0x0/0x1000 [intel_pmc_core] @ 461
[ 47.150402] intel_pmc_core INT33A1:00: initialized
[ 47.150419] probe of INT33A1:00 returned 0 after 107 usecs
[ 47.150449] initcall pmc_core_driver_init+0x0/0x1000 [intel_pmc_core] returned 0 after 156 usecs
[ 47.151657] initcall typec_init+0x0/0xa0 [typec] returned 0 after 1364 usecs
[ 47.162743] calling rapl_init+0x0/0x1000 [intel_rapl_common] @ 464
[ 47.162809] initcall rapl_init+0x0/0x1000 [intel_rapl_common] returned 0 after 53 usecs
[ 47.165411] calling ucsi_module_init+0x0/0x1000 [typec_ucsi] @ 467
[ 47.165427] initcall ucsi_module_init+0x0/0x1000 [typec_ucsi] returned 0 after 5 usecs
[ 47.166045] Adding 8387904k swap on /dev/nvme0n1p4. Priority:-2 extents:1 across:8387904k SS
[ 47.168449] calling ucsi_acpi_platform_driver_init+0x0/0x1000 [ucsi_acpi] @ 467
[ 47.168495] calling intel_pch_thermal_driver_init+0x0/0x1000 [intel_pch_thermal] @ 460
[ 47.168521] calling mei_init+0x0/0x90 [mei] @ 476
[ 47.168551] initcall mei_init+0x0/0x90 [mei] returned 0 after 17 usecs
[ 47.174415] probe of 0000:00:14.2 returned 0 after 5906 usecs
[ 47.174436] initcall intel_pch_thermal_driver_init+0x0/0x1000 [intel_pch_thermal] returned 0 after 5902 usecs
[ 47.175343] calling mei_me_driver_init+0x0/0x1000 [mei_me] @ 476
[ 47.175384] initcall mei_me_driver_init+0x0/0x1000 [mei_me] returned 0 after 33 usecs
[ 47.175647] mei_me 0000:00:16.0: enabling device (0000 -> 0002)
[ 47.184205] calling rfkill_init+0x0/0x140 [rfkill] @ 462
[ 47.213149] probe of 0000:00:16.0 returned 0 after 37775 usecs
[ 47.215587] calling init_soundcore+0x0/0x1000 [soundcore] @ 480
[ 47.215625] initcall init_soundcore+0x0/0x1000 [soundcore] returned 0 after 20 usecs
[ 47.227031] calling drm_display_helper_module_init+0x0/0x1000 [drm_display_helper] @ 477
[ 47.227067] initcall drm_display_helper_module_init+0x0/0x1000 [drm_display_helper] returned 0 after 0 usecs
[ 47.235365] calling watchdog_init+0x0/0xb0 [watchdog] @ 471
[ 47.235519] initcall watchdog_init+0x0/0xb0 [watchdog] returned 0 after 140 usecs
[ 47.240454] calling iTCO_vendor_init_module+0x0/0x1000 [iTCO_vendor_support] @ 471
[ 47.240463] iTCO_vendor_support: vendor-support=0
[ 47.240464] initcall iTCO_vendor_init_module+0x0/0x1000 [iTCO_vendor_support] returned 0 after 1 usecs
[ 47.240596] calling media_devnode_init+0x0/0x1000 [mc] @ 465
[ 47.240607] mc: Linux media interface: v0.10
[ 47.240625] initcall media_devnode_init+0x0/0x1000 [mc] returned 0 after 17 usecs
[ 47.241342] probe of USBC000:00 returned 0 after 72852 usecs
[ 47.242490] calling proc_thermal_pci_driver_init+0x0/0x1000 [processor_thermal_device_pci_legacy] @ 464
[ 47.242509] initcall ucsi_acpi_platform_driver_init+0x0/0x1000 [ucsi_acpi] returned 0 after 11 usecs
[ 47.242547] calling alsa_sound_init+0x0/0x90 [snd] @ 480
[ 47.242581] initcall alsa_sound_init+0x0/0x90 [snd] returned 0 after 18 usecs
[ 47.243501] proc_thermal 0000:00:04.0: enabling device (0000 -> 0002)
[ 47.249104] calling drm_buddy_module_init+0x0/0x1000 [drm_buddy] @ 477
[ 47.249121] initcall drm_buddy_module_init+0x0/0x1000 [drm_buddy] returned 0 after 6 usecs
[ 47.251722] calling alsa_timer_init+0x0/0x1000 [snd_timer] @ 480
[ 47.252276] initcall alsa_timer_init+0x0/0x1000 [snd_timer] returned 0 after 541 usecs
[ 47.253218] calling intel_pmc_driver_init+0x0/0x1000 [intel_pmc_bxt] @ 471
[ 47.253368] initcall intel_pmc_driver_init+0x0/0x1000 [intel_pmc_bxt] returned 0 after 142 usecs
[ 47.253438] calling acpi_cpufreq_init+0x0/0x30 [acpi_cpufreq] @ 476
[ 47.254654] probe of acpi-cpufreq returned 19 after 10 usecs
[ 47.261309] calling pcspkr_platform_driver_init+0x0/0x1000 [pcspkr] @ 469
[ 47.261389] input: PC Speaker as /devices/platform/pcspkr/input/input20
[ 47.261457] calling iTCO_wdt_driver_init+0x0/0x1000 [iTCO_wdt] @ 471
[ 47.262232] iTCO_wdt iTCO_wdt: Found a Intel PCH TCO device (Version=4, TCOBASE=0x0400)
[ 47.263797] iTCO_wdt iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[ 47.263870] probe of iTCO_wdt returned 0 after 1776 usecs
[ 47.266366] calling alsa_pcm_init+0x0/0x1000 [snd_pcm] @ 480
[ 47.266385] initcall alsa_pcm_init+0x0/0x1000 [snd_pcm] returned 0 after 3 usecs
[ 47.268486] initcall rfkill_init+0x0/0x140 [rfkill] returned 0 after 2103 usecs
[ 47.276831] intel_rapl_common: Found RAPL domain package
[ 47.276855] intel_rapl_common: Found RAPL domain dram
[ 47.277223] probe of pcspkr returned 0 after 15880 usecs
[ 47.277385] initcall pcspkr_platform_driver_init+0x0/0x1000 [pcspkr] returned 0 after 11002 usecs
[ 47.278182] initcall iTCO_wdt_driver_init+0x0/0x1000 [iTCO_wdt] returned 0 after 11798 usecs
[ 47.292227] probe of 0000:00:04.0 returned 0 after 49720 usecs
[ 47.292878] initcall acpi_cpufreq_init+0x0/0x30 [acpi_cpufreq] returned -19 after 26495 usecs
[ 47.300691] initcall proc_thermal_pci_driver_init+0x0/0x1000 [processor_thermal_device_pci_legacy] returned 0 after 34308 usecs
[ 47.318405] probe of 0003:04F3:2234.0002 returned 19 after 12 usecs
[ 47.319051] calling ecdh_init+0x0/0x1000 [ecdh_generic] @ 473
[ 47.319239] initcall ecdh_init+0x0/0x1000 [ecdh_generic] returned 0 after 179 usecs
[ 47.327891] calling intel_uncore_init+0x0/0xda0 [intel_uncore] @ 463
[ 47.328556] calling videodev_init+0x0/0x1000 [videodev] @ 465
[ 47.328582] videodev: Linux video capture interface: v2.00
[ 47.328591] initcall videodev_init+0x0/0x1000 [videodev] returned 0 after 9 usecs
[ 47.328984] probe of 0000:00:00.0 returned 0 after 1042 usecs
[ 47.331899] calling hda_bus_init+0x0/0x1000 [snd_hda_core] @ 480
[ 47.331932] initcall hda_bus_init+0x0/0x1000 [snd_hda_core] returned 0 after 16 usecs
[ 47.332068] input: ELAN Touchscreen as /devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.0/0003:04F3:2234.0002/input/input21
[ 47.332184] 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
[ 47.332235] 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
[ 47.332346] hid-multitouch 0003:04F3:2234.0002: input,hiddev0,hidraw1: USB HID v1.10 Device [ELAN Touchscreen] on usb-0000:00:14.0-4/input0
[ 47.332360] probe of 0003:04F3:2234.0002 returned 0 after 13947 usecs
[ 47.332365] initcall mt_driver_init+0x0/0x1000 [hid_multitouch] returned 0 after 449 usecs
[ 47.333490] initcall intel_uncore_init+0x0/0xda0 [intel_uncore] returned 0 after 1574 usecs
[ 47.335000] calling cstate_pmu_init+0x0/0x1000 [intel_cstate] @ 470
[ 47.336272] calling alsa_hwdep_init+0x0/0x1000 [snd_hwdep] @ 480
[ 47.336283] initcall alsa_hwdep_init+0x0/0x1000 [snd_hwdep] returned 0 after 4 usecs
[ 47.351944] initcall cstate_pmu_init+0x0/0x1000 [intel_cstate] returned 0 after 15664 usecs
[ 47.393630] calling joydev_init+0x0/0x1000 [joydev] @ 466
[ 47.393659] initcall joydev_init+0x0/0x1000 [joydev] returned 0 after 8 usecs
[ 47.442755] calling rapl_pmu_init+0x0/0x1000 [rapl] @ 463
[ 47.443523] RAPL PMU: API unit is 2^-32 Joules, 5 fixed counters, 655360 ms ovfl timer
[ 47.443526] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[ 47.443527] RAPL PMU: hw unit of domain package 2^-14 Joules
[ 47.443529] RAPL PMU: hw unit of domain dram 2^-14 Joules
[ 47.443530] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
[ 47.443531] RAPL PMU: hw unit of domain psys 2^-14 Joules
[ 47.443532] initcall rapl_pmu_init+0x0/0x1000 [rapl] returned 0 after 767 usecs
[ 47.504406] calling intel_wmi_thunderbolt_driver_init+0x0/0x1000 [intel_wmi_thunderbolt] @ 471
[ 47.504456] probe of 86CCFD48-205E-4A77-9C48-2021CBEDE341 returned 0 after 30 usecs
[ 47.504474] initcall intel_wmi_thunderbolt_driver_init+0x0/0x1000 [intel_wmi_thunderbolt] returned 0 after 59 usecs
[ 47.504500] calling i8k_init+0x0/0x350 [dell_smm_hwmon] @ 459
[ 47.531859] calling dell_wmi_descriptor_driver_init+0x0/0x1000 [dell_wmi_descriptor] @ 476
[ 47.532147] calling wmi_bmof_driver_init+0x0/0x1000 [wmi_bmof] @ 469
[ 47.532877] probe of 05901221-D566-11D1-B2F0-00A0C9062910 returned 0 after 719 usecs
[ 47.532895] initcall wmi_bmof_driver_init+0x0/0x1000 [wmi_bmof] returned 0 after 742 usecs
[ 47.542623] calling bt_init+0x0/0xd0 [bluetooth] @ 458
[ 47.542810] Bluetooth: Core ver 2.22
[ 47.542894] calling cfg80211_init+0x0/0xd0 [cfg80211] @ 462
[ 47.558175] NET: Registered PF_BLUETOOTH protocol family
[ 47.558179] Bluetooth: HCI device and connection manager initialized
[ 47.558187] Bluetooth: HCI socket layer initialized
[ 47.558191] Bluetooth: L2CAP socket layer initialized
[ 47.558202] Bluetooth: SCO socket layer initialized
[ 47.558207] initcall bt_init+0x0/0xd0 [bluetooth] returned 0 after 15101 usecs
[ 47.580770] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[ 47.594459] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[ 47.594675] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[ 47.594765] initcall cfg80211_init+0x0/0xd0 [cfg80211] returned 0 after 51659 usecs
[ 47.595712] probe of 8D9DDCBC-A997-11DA-B012-B622A1EF5492 returned 0 after 63836 usecs
[ 47.596390] initcall dell_wmi_descriptor_driver_init+0x0/0x1000 [dell_wmi_descriptor] returned 0 after 53284 usecs
[ 47.597668] cfg80211: loaded regulatory.db is malformed or signature is missing/invalid
[ 47.598227] calling azx_driver_init+0x0/0x1000 [snd_hda_intel] @ 480
[ 47.598285] snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002)
[ 47.598628] probe of 0000:00:1f.3 returned 517 after 369 usecs
[ 47.598649] initcall azx_driver_init+0x0/0x1000 [snd_hda_intel] returned 0 after 406 usecs
[ 47.637705] calling dcdbas_init+0x0/0x1000 [dcdbas] @ 476
[ 47.640356] calling uvc_init+0x0/0x1000 [uvcvideo] @ 465
[ 47.641427] probe of dell_smm_hwmon returned 0 after 115381 usecs
[ 47.641444] initcall i8k_init+0x0/0x350 [dell_smm_hwmon] returned 0 after 745 usecs
[ 47.642274] probe of 0000:00:1f.3 returned 517 after 832 usecs
[ 47.643294] probe of dcdbas returned 19 after 241 usecs
[ 47.643322] initcall dcdbas_init+0x0/0x1000 [dcdbas] returned 0 after 2622 usecs
[ 47.652213] usb 1-5: Found UVC 1.00 device Integrated_Webcam_HD (0c45:670c)
[ 47.660578] probe of 0000:00:1f.3 returned 517 after 8321 usecs
[ 47.665634] calling kvm_x86_init+0x0/0x50 [kvm] @ 470
[ 47.665818] initcall kvm_x86_init+0x0/0x50 [kvm] returned 0 after 1 usecs
[ 47.674874] calling intel_rapl_msr_driver_init+0x0/0x1000 [intel_rapl_msr] @ 464
[ 47.675216] intel_rapl_common: Found RAPL domain package
[ 47.675221] intel_rapl_common: Found RAPL domain core
[ 47.675224] intel_rapl_common: Found RAPL domain uncore
[ 47.675227] intel_rapl_common: Found RAPL domain dram
[ 47.675230] intel_rapl_common: Found RAPL domain psys
[ 47.676479] probe of intel_rapl_msr.0 returned 0 after 1553 usecs
[ 47.676505] initcall intel_rapl_msr_driver_init+0x0/0x1000 [intel_rapl_msr] returned 0 after 1614 usecs
[ 47.680219] calling dell_smbios_init+0x0/0xf00 [dell_smbios] @ 474
[ 47.680391] probe of dell-smbios.0 returned 0 after 16 usecs
[ 47.681720] probe of 0000:00:1f.3 returned 517 after 5310 usecs
[ 47.681947] probe of A80593CE-A997-11DA-B012-B622A1EF5492 returned 0 after 1510 usecs
[ 47.684590] calling mei_pxp_driver_init+0x0/0x1000 [mei_pxp] @ 468
[ 47.686371] probe of 0000:00:1f.3 returned 517 after 4627 usecs
[ 47.686812] probe of 0000:00:1f.3 returned 517 after 414 usecs
[ 47.689964] initcall dell_smbios_init+0x0/0xf00 [dell_smbios] returned 0 after 5362 usecs
[ 47.693112] calling dell_init+0x0/0xfe0 [dell_laptop] @ 459
[ 47.693573] probe of 0000:00:1f.3 returned 517 after 332 usecs
[ 47.695888] calling mei_hdcp_driver_init+0x0/0x1000 [mei_hdcp] @ 471
[ 47.696704] calling mei_wdt_driver_init+0x0/0x1000 [mei_wdt] @ 481
[ 47.697191] calling dell_wmi_init+0x0/0xfe0 [dell_wmi] @ 474
[ 47.697333] input: Dell WMI hotkeys as /devices/platform/PNP0C14:01/wmi_bus/wmi_bus-PNP0C14:01/9DBB5994-A997-11DA-B012-B622A1EF5492/input/input25
[ 47.699824] probe of dell-laptop returned 0 after 6614 usecs
[ 47.699915] probe of 9DBB5994-A997-11DA-B012-B622A1EF5492 returned 0 after 2706 usecs
[ 47.699929] initcall dell_wmi_init+0x0/0xfe0 [dell_wmi] returned 0 after 2729 usecs
[ 47.701161] probe of 0000:00:16.0-fbf6fcf1-96cf-4e2e-a6a6-1bab8cbe36b1 returned 0 after 16540 usecs
[ 47.701187] initcall mei_pxp_driver_init+0x0/0x1000 [mei_pxp] returned 0 after 3988 usecs
[ 47.702773] probe of 0000:00:1f.3 returned 517 after 2890 usecs
[ 47.703460] probe of 0000:00:1f.3 returned 517 after 655 usecs
[ 47.706554] probe of 0000:00:16.0-05b79a6f-4628-4d7f-899d-a91514cb32ab returned 0 after 9836 usecs
[ 47.706582] initcall mei_wdt_driver_init+0x0/0x1000 [mei_wdt] returned 0 after 9383 usecs
[ 47.706724] probe of 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04 returned 0 after 10816 usecs
[ 47.706747] initcall mei_hdcp_driver_init+0x0/0x1000 [mei_hdcp] returned 0 after 9547 usecs
[ 47.707273] probe of 0000:00:1f.3 returned 517 after 712 usecs
[ 47.716620] probe of 0000:00:1f.3 returned 517 after 9329 usecs
[ 47.724486] calling btusb_driver_init+0x0/0x1000 [btusb] @ 458
[ 47.794205] probe of 1-5:1.0 returned 0 after 152829 usecs
[ 47.794892] usbcore: registered new interface driver uvcvideo
[ 47.794914] initcall uvc_init+0x0/0x1000 [uvcvideo] returned 0 after 70351 usecs
[ 47.796202] probe of 0000:00:1f.3 returned 517 after 2032 usecs
[ 47.820797] initcall dell_init+0x0/0xfe0 [dell_laptop] returned 0 after 96234 usecs
[ 47.850245] probe of 1-3:1.0 returned 0 after 180 usecs
[ 47.850265] usbcore: registered new interface driver btusb
[ 47.850267] initcall btusb_driver_init+0x0/0x1000 [btusb] returned 0 after 125704 usecs
[ 47.850607] probe of 0000:00:1f.3 returned 517 after 409 usecs
[ 47.850844] probe of 0000:00:1f.3 returned 517 after 225 usecs
[ 47.852561] Bluetooth: hci0: using rampatch file: qca/rampatch_usb_00000302.bin
[ 47.852566] Bluetooth: hci0: QCA: patch rome 0x302 build 0x3e8, firmware rome 0x302 build 0x111
[ 48.038440] calling i915_init+0x0/0xb0 [i915] @ 477
[ 48.039240] stackdepot: allocating hash table of 1048576 entries via kvcalloc
[ 48.043499] i915 0000:00:02.0: [drm] Found KABYLAKE/ULT (device ID 5916) display version 9.00
[ 48.063512] EXT4-fs (nvme0n1p2): mounted filesystem 2d23fd4c-5d03-4e1a-8a42-0e859d1f00d8 r/w with ordered data mode. Quota mode: none.
[ 48.075656] calling vmx_init+0x0/0x140 [kvm_intel] @ 479
[ 48.077005] Console: switching to colour dummy device 80x25
[ 48.078177] i915 0000:00:02.0: vgaarb: deactivate vga console
[ 48.081111] calling snd_soc_init+0x0/0xa0 [snd_soc_core] @ 480
[ 48.081239] probe of snd-soc-dummy returned 0 after 16 usecs
[ 48.081262] initcall snd_soc_init+0x0/0xa0 [snd_soc_core] returned 0 after 122 usecs
[ 48.081584] calling ieee80211_init+0x0/0x70 [mac80211] @ 462
[ 48.081640] initcall ieee80211_init+0x0/0x70 [mac80211] returned 0 after 12 usecs
[ 48.082825] probe of 0000:00:1f.3 returned 517 after 1381 usecs
[ 48.083134] calling dell_init+0x0/0x1000 [dell_pc] @ 459
[ 48.085732] initcall vmx_init+0x0/0x140 [kvm_intel] returned 0 after 2590 usecs
[ 48.088019] calling coretemp_init+0x0/0x1000 [coretemp] @ 470
[ 48.088503] initcall coretemp_init+0x0/0x1000 [coretemp] returned 0 after 475 usecs
[ 48.090546] i915 0000:00:02.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=io+mem:owns=io+mem
[ 48.091650] calling powerclamp_init+0x0/0x1000 [intel_powerclamp] @ 460
[ 48.091791] initcall powerclamp_init+0x0/0x1000 [intel_powerclamp] returned 0 after 132 usecs
[ 48.091907] i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/kbl_dmc_ver1_04.bin (v1.4)
[ 48.093352] calling pkg_temp_thermal_init+0x0/0x1000 [x86_pkg_temp_thermal] @ 479
[ 48.094625] initcall pkg_temp_thermal_init+0x0/0x1000 [x86_pkg_temp_thermal] returned 0 after 1264 usecs
[ 48.095957] calling pmc_core_platform_init+0x0/0x1000 [intel_pmc_core_pltdrv] @ 460
[ 48.096008] initcall pmc_core_platform_init+0x0/0x1000 [intel_pmc_core_pltdrv] returned -19 after 44 usecs
[ 48.099800] calling init_fat_fs+0x0/0xfc0 [fat] @ 548
[ 48.099853] initcall init_fat_fs+0x0/0xfc0 [fat] returned 0 after 43 usecs
[ 48.101682] calling init_vfat_fs+0x0/0x1000 [vfat] @ 548
[ 48.101692] initcall init_vfat_fs+0x0/0x1000 [vfat] returned 0 after 3 usecs
[ 48.107067] calling init_nls_cp437+0x0/0x1000 [nls_cp437] @ 553
[ 48.107075] initcall init_nls_cp437+0x0/0x1000 [nls_cp437] returned 0 after 0 usecs
[ 48.114851] calling init_nls_ascii+0x0/0x1000 [nls_ascii] @ 554
[ 48.114877] initcall init_nls_ascii+0x0/0x1000 [nls_ascii] returned 0 after 1 usecs
[ 48.123626] calling skl_driver_init+0x0/0x1000 [snd_soc_skl] @ 480
[ 48.123715] probe of 0000:00:1f.3 returned 19 after 25 usecs
[ 48.123784] initcall skl_driver_init+0x0/0x1000 [snd_soc_skl] returned 0 after 116 usecs
[ 48.166227] calling avs_pci_driver_init+0x0/0x1000 [snd_soc_avs] @ 480
[ 48.166280] probe of 0000:00:1f.3 returned 19 after 14 usecs
[ 48.166297] initcall avs_pci_driver_init+0x0/0x1000 [snd_soc_avs] returned 0 after 47 usecs
[ 48.174189] calling ath10k_pci_init+0x0/0x1000 [ath10k_pci] @ 462
[ 48.174739] ath10k_pci 0000:3a:00.0: enabling device (0000 -> 0002)
[ 48.180961] ath10k_pci 0000:3a:00.0: pci irq msi oper_irq_mode 2 irq_mode 0 reset_mode 0
[ 48.191211] calling init_misc_binfmt+0x0/0x1000 [binfmt_misc] @ 570
[ 48.191274] initcall init_misc_binfmt+0x0/0x1000 [binfmt_misc] returned 0 after 10 usecs
[ 48.211905] Bluetooth: hci0: using NVM file: qca/nvm_usb_00000302.bin
[ 48.215032] initcall dell_init+0x0/0x1000 [dell_pc] returned 0 after 23768 usecs
[ 48.230633] audit: type=1400 audit(1723539709.366:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=574 comm="apparmor_parser"
[ 48.232174] audit: type=1400 audit(1723539709.366:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=575 comm="apparmor_parser"
[ 48.232182] audit: type=1400 audit(1723539709.366:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=575 comm="apparmor_parser"
[ 48.237159] audit: type=1400 audit(1723539709.370:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=578 comm="apparmor_parser"
[ 48.237169] audit: type=1400 audit(1723539709.370:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=578 comm="apparmor_parser"
[ 48.237173] audit: type=1400 audit(1723539709.370:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=578 comm="apparmor_parser"
[ 48.239828] Bluetooth: hci0: HCI Enhanced Setup Synchronous Connection command is advertised, but not supported.
[ 48.242545] audit: type=1400 audit(1723539709.378:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=576 comm="apparmor_parser"
[ 48.242554] audit: type=1400 audit(1723539709.378:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=576 comm="apparmor_parser"
[ 48.242557] audit: type=1400 audit(1723539709.378:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=576 comm="apparmor_parser"
[ 48.242560] audit: type=1400 audit(1723539709.378:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/{,usr/}sbin/dhclient" pid=576 comm="apparmor_parser"
[ 48.271331] calling snd_sof_pci_intel_skl_driver_init+0x0/0x1000 [snd_sof_pci_intel_skl] @ 480
[ 48.271366] probe of 0000:00:1f.3 returned 19 after 13 usecs
[ 48.271390] initcall snd_sof_pci_intel_skl_driver_init+0x0/0x1000 [snd_sof_pci_intel_skl] returned 0 after 50 usecs
[ 48.325705] probe of 0000:3a:00.0 returned 0 after 151473 usecs
[ 48.325816] initcall ath10k_pci_init+0x0/0x1000 [ath10k_pci] returned 0 after 54475 usecs
[ 48.326890] probe of 0000:00:1f.3 returned 517 after 511 usecs
[ 48.326912] probe of 0000:00:1f.3 returned 19 after 10 usecs
[ 48.326928] probe of 0000:00:1f.3 returned 19 after 11 usecs
[ 48.326938] probe of 0000:00:1f.3 returned 19 after 5 usecs
[ 48.478377] ath10k_pci 0000:3a:00.0: qca6174 hw3.2 target 0x05030000 chip_id 0x00340aff sub 1a56:1535
[ 48.478387] ath10k_pci 0000:3a:00.0: kconfig debug 0 debugfs 0 tracing 0 dfs 0 testmode 0
[ 48.479078] ath10k_pci 0000:3a:00.0: firmware ver WLAN.RM.4.4.1-00309- api 6 features wowlan,ignore-otp,mfp crc32 0793bcf2
[ 48.553113] ath10k_pci 0000:3a:00.0: board_file api 2 bmi_id N/A crc32 d2863f91
[ 48.690773] 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
[ 48.719153] mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_ops [i915])
[ 48.730259] [drm] Initialized i915 1.6.0 for 0000:00:02.0 on minor 0
[ 48.746322] ACPI: video: Video Device [GFX0] (multi-head: yes rom: no post: no)
[ 48.748384] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input26
[ 48.749830] probe of LNXVIDEO:00 returned 0 after 13483 usecs
[ 48.750773] probe of 0000:00:1f.3 returned 517 after 481 usecs
[ 48.750801] probe of 0000:00:1f.3 returned 19 after 18 usecs
[ 48.750813] probe of 0000:00:1f.3 returned 19 after 7 usecs
[ 48.750823] probe of 0000:00:1f.3 returned 19 after 6 usecs
[ 48.772464] fbcon: i915drmfb (fb0) is primary device
[ 48.777675] ath: EEPROM regdomain: 0x6c
[ 48.777678] ath: EEPROM indicates we should expect a direct regpair map
[ 48.777679] ath: Country alpha2 being used: 00
[ 48.777680] ath: Regpair used: 0x6c
[ 48.782731] ath10k_pci 0000:3a:00.0 wlp58s0: renamed from wlan0
[ 48.794403] Console: switching to colour frame buffer device 200x56
[ 48.822553] i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
[ 48.846606] probe of 0000:00:02.0 returned 0 after 807603 usecs
[ 48.846703] initcall i915_init+0x0/0xb0 [i915] returned 0 after 575363 usecs
[ 48.876784] snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[ 48.879527] probe of 0000:00:1f.3 returned 0 after 33163 usecs
[ 48.918338] calling generic_driver_init+0x0/0x1000 [snd_hda_codec_generic] @ 467
[ 48.918380] initcall generic_driver_init+0x0/0x1000 [snd_hda_codec_generic] returned 0 after 24 usecs
[ 48.930917] calling realtek_driver_init+0x0/0x1000 [snd_hda_codec_realtek] @ 701
[ 48.971485] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC3246: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[ 48.971493] snd_hda_codec_realtek hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 48.971495] snd_hda_codec_realtek hdaudioC0D0: hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[ 48.971498] snd_hda_codec_realtek hdaudioC0D0: mono: mono_out=0x0
[ 48.971499] snd_hda_codec_realtek hdaudioC0D0: inputs:
[ 48.971501] snd_hda_codec_realtek hdaudioC0D0: Headset Mic=0x19
[ 48.971503] snd_hda_codec_realtek hdaudioC0D0: Headphone Mic=0x1a
[ 48.971505] snd_hda_codec_realtek hdaudioC0D0: Internal Mic=0x12
[ 48.977692] calling snd_ctl_led_init+0x0/0x1000 [snd_ctl_led] @ 709
[ 48.977893] initcall snd_ctl_led_init+0x0/0x1000 [snd_ctl_led] returned 0 after 175 usecs
[ 49.030605] probe of hdaudioC0D0 returned 0 after 99663 usecs
[ 49.030628] initcall realtek_driver_init+0x0/0x1000 [snd_hda_codec_realtek] returned 0 after 52910 usecs
[ 49.041090] calling hdmi_driver_init+0x0/0x1000 [snd_hda_codec_hdmi] @ 473
[ 49.058162] probe of hdaudioC0D2 returned 0 after 17047 usecs
[ 49.058202] initcall hdmi_driver_init+0x0/0x1000 [snd_hda_codec_hdmi] returned 0 after 17099 usecs
[ 49.064059] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1f.3/sound/card0/input27
[ 49.064728] input: HDA Intel PCH Headphone Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input28
[ 49.085379] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input29
[ 49.085475] input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input30
[ 49.086506] input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input31
[ 49.120256] calling ppp_init+0x0/0x1000 [ppp_generic] @ 733
[ 49.120266] PPP generic driver version 2.4.2
[ 49.122182] calling xfrm_user_init+0x0/0x1000 [xfrm_user] @ 734
[ 49.122194] Initializing XFRM netlink socket
[ 49.122207] initcall xfrm_user_init+0x0/0x1000 [xfrm_user] returned 0 after 12 usecs
[ 49.304894] initcall ppp_init+0x0/0x1000 [ppp_generic] returned 0 after 182698 usecs
[ 49.309218] calling pppox_init+0x0/0x1000 [pppox] @ 733
[ 49.309236] NET: Registered PF_PPPOX protocol family
[ 49.309239] initcall pppox_init+0x0/0x1000 [pppox] returned 0 after 4 usecs
[ 49.320480] calling tunnel6_init+0x0/0x1000 [tunnel6] @ 769
[ 49.320496] initcall tunnel6_init+0x0/0x1000 [tunnel6] returned 0 after 0 usecs
[ 49.323580] calling xfrm6_tunnel_init+0x0/0x1000 [xfrm6_tunnel] @ 769
[ 49.323615] initcall xfrm6_tunnel_init+0x0/0x1000 [xfrm6_tunnel] returned 0 after 22 usecs
[ 49.324626] calling udp_tunnel_nic_init_module+0x0/0x1000 [udp_tunnel] @ 770
[ 49.328920] calling xfrmi_init+0x0/0xfe0 [xfrm_interface] @ 769
[ 49.328932] IPsec XFRM device driver
[ 49.696116] initcall udp_tunnel_nic_init_module+0x0/0x1000 [udp_tunnel] returned 0 after 367183 usecs
[ 49.696132] initcall xfrmi_init+0x0/0xfe0 [xfrm_interface] returned 0 after 367199 usecs
[ 49.708581] calling l2tp_init+0x0/0x1000 [l2tp_core] @ 770
[ 49.708606] l2tp_core: L2TP core driver, V2.0
[ 49.708607] initcall l2tp_init+0x0/0x1000 [l2tp_core] returned 0 after 14 usecs
[ 49.711138] calling l2tp_nl_init+0x0/0x1000 [l2tp_netlink] @ 770
[ 49.711145] l2tp_netlink: L2TP netlink interface
[ 49.711167] initcall l2tp_nl_init+0x0/0x1000 [l2tp_netlink] returned 0 after 21 usecs
[ 49.715843] calling pppol2tp_init+0x0/0x1000 [l2tp_ppp] @ 770
[ 49.715856] l2tp_ppp: PPPoL2TP kernel driver, V2.0
[ 49.715857] initcall pppol2tp_init+0x0/0x1000 [l2tp_ppp] returned 0 after 8 usecs
[ 50.341443] calling alsa_seq_device_init+0x0/0x1000 [snd_seq_device] @ 917
[ 50.341475] initcall alsa_seq_device_init+0x0/0x1000 [snd_seq_device] returned 0 after 25 usecs
[ 50.347359] calling alsa_seq_init+0x0/0x60 [snd_seq] @ 917
[ 50.347420] initcall alsa_seq_init+0x0/0x60 [snd_seq] returned 0 after 50 usecs
[ 50.350917] calling snd_hrtimer_init+0x0/0x1000 [snd_hrtimer] @ 918
[ 50.350925] initcall snd_hrtimer_init+0x0/0x1000 [snd_hrtimer] returned 0 after 2 usecs
[ 50.354108] calling alsa_seq_dummy_init+0x0/0xe30 [snd_seq_dummy] @ 919
[ 50.354120] initcall alsa_seq_dummy_init+0x0/0xe30 [snd_seq_dummy] returned 0 after 6 usecs
[ 51.930419] rfkill: input handler disabled
[ 97.122307] wlp58s0: authenticate with 48:2f:6b:73:cb:51 (local address=9c:b6:d0:d1:6a:b1)
[ 97.122326] wlp58s0: send auth to 48:2f:6b:73:cb:51 (try 1/3)
[ 97.123449] wlp58s0: authenticated
[ 97.126030] wlp58s0: associate with 48:2f:6b:73:cb:51 (try 1/3)
[ 97.127436] wlp58s0: RX AssocResp from 48:2f:6b:73:cb:51 (capab=0x11 status=0 aid=6)
[ 97.130958] wlp58s0: associated
[ 97.377348] calling crypto_ccm_module_init+0x0/0x1000 [ccm] @ 1348
[ 97.377371] initcall crypto_ccm_module_init+0x0/0x1000 [ccm] returned 0 after 2 usecs
[ 97.413384] calling crypto_ctr_module_init+0x0/0x1000 [ctr] @ 1356
[ 97.413406] initcall crypto_ctr_module_init+0x0/0x1000 [ctr] returned 0 after 2 usecs
[ 97.469295] calling crypto_cmac_module_init+0x0/0x1000 [cmac] @ 1362
[ 97.469306] initcall crypto_cmac_module_init+0x0/0x1000 [cmac] returned 0 after 1 usecs
[ 97.965316] rfkill: input handler enabled
[ 102.161617] rfkill: input handler disabled
^ permalink raw reply [flat|nested] 6+ messages in thread