You are not logged in.

#1 2024-09-07 10:54:58

testware
Member
Registered: 2024-01-25
Posts: 39

Input/output error after suspend, hibernate ...

Hello,
my PC:
HUAWEI  MateBook D 16
model: RLEF-X
CPU: intel i7012700H
GPU: Intel Iis Xe Graphics



my PC have problem with:
$echo freeze > /sys/power/state
$echo mem> /sys/power/state
$echo disk > /sys/power/state
$systemctl suspend
$systemctl hibernate
$systemctl hybrid-sleep
$systemctl suspend-then-hibernate

$echo deep > /sys/power/mem_sleep
"nothing happening."



# Info
$cat /sys/power/mem_sleep
[s2idle] deep

$cat /proc/cmdline
BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=2ec9a78e-0c5a-40b3-a1fb-cf4be8a42b06 rw printk.time=1 initcall_debug quiet loglevel=7 rd.udev.log_level=3 systemd.debug_shell no_console_suspend ignore_loglevel

$cat /etc/default/grub | grep GRUB_CMDLINE_LINUX=
GRUB_CMDLINE_LINUX="printk.time=1 initcall_debug nvme_core.default_ps_max_latency_us=0"



# what happining:
When I had not yet entered systemd.debug_shell no_console_suspend.
As soon as I typed something my screen turned on and if i tried to execute it, I got:
Input/Output Error

# when shutting down by long pressing the power button:
[FAILED] Failed to start Plymouth Power off Screen.
[ number] EXT4-f2 warning: 6390 callbacks suppressed
[ random number] EXT4-fs warning (device nvme0n1p3): dx_probe:B23: inode # 2753293 Iblock 0: comm systemd-journal: error -5 reading directory block
[ 1263.870895] systemd-jounrnal-journald(454): Failed to write entry to /var/journal/number/system.jornal (27 items, 642 bytes)  dispite v....(can't reed this paart), ignoring: Input/output error ()dropped 13 simlar message(s))


#I looked here:
https://web.archive.org/web/20230502010 … ate-issues
I add systemd.debug_shell no_console_suspend in /etc/default/grub to GRUB_CMDLINE_LINUX_DEFAULT and run $grub-mkconfig -o /boot/grub/grub.cfg
The console log was/ is to fast to read. In the journalctl i only find about start logs not suspend logs or wake up logs...

#what happining now when I had entered systemd.debug_shell no_console_suspend:
My screen hangs up.



# I tried:
https://unix.stackexchange.com/question … ibernation

$sudo pacman -Rs acpi
not found
$sudo pacman -S acpi
done
$sudo pacman -S linux-lts linux-lts-headers
:: Retrieving packages...
linux-lts-6.6.47-1-x86_64.pkg.tar.zst failed to download
Total (1/2)                                                   153.0 MiB  4.88 MiB/s 00:31 [####################################################] 100%
error: failed retrieving file 'linux-lts-6.6.47-1-x86_64.pkg.tar.zst' from mirror.us.leaseweb.net : The requested URL returned error: 404
error: failed retrieving file 'linux-lts-6.6.47-1-x86_64.pkg.tar.zst' from lug.mtu.edu : The requested URL returned error: 404
error: failed retrieving file 'linux-lts-6.6.47-1-x86_64.pkg.tar.zst' from mirror.nl.leaseweb.net : The requested URL returned error: 404
error: failed retrieving file 'linux-lts-6.6.47-1-x86_64.pkg.tar.zst' from mirror.bytemark.co.uk : The requested URL returned error: 404
error: failed retrieving file 'linux-lts-6.6.47-1-x86_64.pkg.tar.zst' from mirrors.manchester.m247.com : The requested URL returned error: 404
error: failed retrieving file 'linux-lts-6.6.47-1-x86_64.pkg.tar.zst' from archlinux.dcc.fc.up.pt : Failed to connect to archlinux.dcc.fc.up.pt port 80 after 10001 ms: Timeout was reached
error: failed retrieving file 'linux-lts-6.6.47-1-x86_64.pkg.tar.zst' from mirror.cs.pitt.edu : Failed to connect to mirror.cs.pitt.edu port 80 after
10002 ms: Timeout was reached
error: failed retrieving file 'linux-lts-6.6.47-1-x86_64.pkg.tar.zst' from mirrors.acm.wpi.edu : The requested URL returned error: 404
error: failed retrieving file 'linux-lts-6.6.47-1-x86_64.pkg.tar.zst' from ftp.osuosl.org : The requested URL returned error: 404
error: failed retrieving file 'linux-lts-6.6.47-1-x86_64.pkg.tar.zst' from mirror.cse.iitk.ac.in : The requested URL returned error: 404
error: failed retrieving file 'linux-lts-6.6.47-1-x86_64.pkg.tar.zst' from mirrors.xmission.com : The requested URL returned error: 404
warning: failed to retrieve some files
error: failed to commit transaction (failed to retrieve some files)
Errors occurred, no packages were upgraded.
$grub-mkconfig -o /boot/grub/grub.cfg
done
$mkinitcpio -p linux-lts
/usr/bin/mkinitcpio: line 681: /etc/mkinitcpio.d/linux-lts.preset: No such file or directory
==> ERROR: Failed to load preset: '/etc/mkinitcpio.d/linux-lts.preset'


Feel free to help and ask.

Last edited by testware (2024-09-08 19:11:46)

Offline

#2 2024-09-07 12:42:07

seth
Member
Registered: 2012-09-03
Posts: 59,718

Re: Input/output error after suspend, hibernate ...

"nothing happening."

Sure you're not getting an access error? "$" generally indicates an unprivileged user.

The requested URL returned error: 404

Don't run partial updates
Edit, not a partial update, just unsynced database.

sudo pacman -Syu linux-lts linux-lts-headers

Please use [code][/code] tags, not "quote" tags. Edit your post in this regard.

And then please formulate a question - this looks like a "things I typed into my console today" blog…

Last edited by seth (2024-09-07 12:43:56)

Offline

#3 2024-09-08 18:25:10

testware
Member
Registered: 2024-01-25
Posts: 39

Re: Input/output error after suspend, hibernate ...

Sure you're not getting an access error? "$" generally indicates an unprivileged user.

I was root.
When i try this as normal user i get:
$echo deep > /sys/power/mem_sleep
bash: /sys/power/mem_sleep: Permission denied



only following works after I did that:
$echo freeze > /sys/power/state
$echo mem> /sys/power/state

Last edited by testware (2024-09-08 19:06:35)

Offline

#4 2024-09-08 19:48:42

seth
Member
Registered: 2012-09-03
Posts: 59,718

Re: Input/output error after suspend, hibernate ...

1. code tags
2. https://deepl.com/ - I get that you've probably some suspend or hibernation related issues, but not what specifically or what you're trying to currently achieve. The 7 year old stackexchange thread is probably not yours.

Offline

#5 2024-09-09 14:35:02

testware
Member
Registered: 2024-01-25
Posts: 39

Re: Input/output error after suspend, hibernate ...

I don't understand what you don't understand about my post.

Yes, I have a problem, or rather my pc with:

$echo disk > /sys/power/state
$systemctl suspend
$systemctl hibernate
$systemctl hybrid-sleep
$systemctl suspend-then-hibernate

what happened is shown in

#what happining:

what happens now when I wake up in one of the modes is explained here:

#I looked here

I think it's obvious that I don't like my screen to hang when I wake up my computer from one of the mentioned modes or to get input/output error when I execute a command.

If you are missing some information then you can tell me how to get this information. provided you know what you are doing


The 7 year old stackexchange thread is probably not yours.

yes

Last edited by testware (2024-09-09 14:38:24)

Offline

#6 2024-09-09 15:28:02

seth
Member
Registered: 2012-09-03
Posts: 59,718

Re: Input/output error after suspend, hibernate ...

what happened is shown in

# what happining:
When I had not yet entered systemd.debug_shell no_console_suspend.
As soon as I typed something my screen turned on and if i tried to execute it, I got:
Input/Output Error

So you're explaining that you've not ("yet") entered whatever and then I guess the input will break dpms and you type something somewhere (not the debug shell) and get an unspecified IO error

provided you know what you are doing

Probably not, good luck.
Whoever is going to help you will likely benefit from a complete system journal covering whatever you're doing, in doubt a link to a photo of the screen - because whatever I don't know about what I'm doing, you don't know how to explain what you're doing.

Offline

#7 2024-09-10 04:37:23

testware
Member
Registered: 2024-01-25
Posts: 39

Re: Input/output error after suspend, hibernate ...

because whatever I don't know about what I'm doing, you don't know how to explain what you're doing.

ye, that's the reason why i'm here, because i can't really help myself yet.


# when shutting down by long pressing the power button: the error as Img: https://ibb.co/1XFJZfW

this is the only error message i get except what i said in  #I looked here:

The console log was/ is to fast to read. In the journalctl i only find about start logs not suspend logs or wake up logs...

Whoever is going to help you will likely benefit from a complete system journal covering whatever you're doing, in doubt a link to a photo of the screen

Should I post my journal here or are there better sites?
I would repeat the whole procedure from a certain time to a certain time and then post this excerpt because I don't think you need my whole journal until 2022.

Last edited by testware (2024-09-10 04:56:13)

Offline

#8 2024-09-10 12:42:06

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 23,430

Re: Input/output error after suspend, hibernate ...

journalctl -b for the current boot, journalctl -b-1 for the boot prior to your current boot, upload them with e.g.

sudo journalctl -b | curl -F 'file=@-' 0x0.st

post the link you're getting.

Offline

#9 2024-09-11 23:19:13

testware
Member
Registered: 2024-01-25
Posts: 39

Re: Input/output error after suspend, hibernate ...

sudo journalctl -b
Sep 16 21:48:11  kernel: microcode: updated early: 0x41e -> 0x433, date = 2023-12-05
Sep 16 21:48:11  kernel: Linux version 6.6.49-1-lts (linux-lts@archlinux) (gcc (GCC) 14.2.1 20240805, GNU ld (GNU Binutils) 2.43.0) #1 SMP PREEMPT_DYNAMIC Wed, 04 Sep 2024 13:18:51 +0000
Sep 16 21:48:11  kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-linux-lts root=UUID=2ec9a78e-0c5a-40b3-a1fb-cf4be8a42b06 rw printk.time=1 initcall_debug nvme_core.default_ps_max_latency_us=0 quiet loglevel=7 rd.udev.log_level=3 systemd.debug_shell no_console_suspend ignore_loglevel
Sep 16 21:48:11  kernel: x86/split lock detection: #AC: crashing the kernel on kernel split_locks and warning on user-space split_locks
Sep 16 21:48:11  kernel: BIOS-provided physical RAM map:
Sep 16 21:48:11  kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
Sep 16 21:48:11  kernel: BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
Sep 16 21:48:11  kernel: BIOS-e820: [mem 0x0000000000100000-0x000000006d4dcfff] usable
Sep 16 21:48:11  kernel: BIOS-e820: [mem 0x000000006d4dd000-0x000000006dddcfff] reserved
Sep 16 21:48:11  kernel: BIOS-e820: [mem 0x000000006dddd000-0x000000006fbfefff] usable
Sep 16 21:48:11  kernel: BIOS-e820: [mem 0x000000006fbff000-0x0000000071a4efff] reserved
Sep 16 21:48:11  kernel: BIOS-e820: [mem 0x0000000071a4f000-0x00000000749fefff] ACPI NVS
Sep 16 21:48:11  kernel: BIOS-e820: [mem 0x00000000749ff000-0x0000000074bfefff] ACPI data
Sep 16 21:48:11  kernel: BIOS-e820: [mem 0x0000000074bff000-0x0000000074bfffff] usable
Sep 16 21:48:11  kernel: BIOS-e820: [mem 0x0000000074c00000-0x0000000078ffffff] reserved
Sep 16 21:48:11  kernel: BIOS-e820: [mem 0x0000000079a00000-0x0000000079bfffff] reserved
Sep 16 21:48:11  kernel: BIOS-e820: [mem 0x000000007a000000-0x00000000803fffff] reserved
Sep 16 21:48:11  kernel: BIOS-e820: [mem 0x00000000c0000000-0x00000000cfffffff] reserved
Sep 16 21:48:11  kernel: BIOS-e820: [mem 0x00000000f9d00000-0x00000000f9efffff] reserved
Sep 16 21:48:11  kernel: BIOS-e820: [mem 0x00000000fe010000-0x00000000fe010fff] reserved
Sep 16 21:48:11  kernel: BIOS-e820: [mem 0x00000000fed20000-0x00000000fed7ffff] reserved
Sep 16 21:48:11  kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
Sep 16 21:48:11  kernel: BIOS-e820: [mem 0x0000000100000000-0x000000047fbfffff] usable
Sep 16 21:48:11  kernel: printk: debug: ignoring loglevel setting.
Sep 16 21:48:11  kernel: NX (Execute Disable) protection: active
Sep 16 21:48:11  kernel: APIC: Static calls initialized
Sep 16 21:48:11  kernel: efi: EFI v2.8 by HUAWEI
Sep 16 21:48:11  kernel: efi: ACPI=0x74bfe000 ACPI 2.0=0x74bfe014 TPMFinalLog=0x74936000 SMBIOS=0x70056000 MEMATTR=0x69dfd018 ESRT=0x667b0a98 INITRD=0x69e37b18 RNG=0x74b12018 TPMEventLog=0x69e32018 
Sep 16 21:48:11  kernel: random: crng init done
Sep 16 21:48:11  kernel: efi: Remove mem110: MMIO range=[0xc0000000-0xcfffffff] (256MB) from e820 map
Sep 16 21:48:11  kernel: e820: remove [mem 0xc0000000-0xcfffffff] reserved
Sep 16 21:48:11  kernel: efi: Remove mem111: MMIO range=[0xf9d00000-0xf9efffff] (2MB) from e820 map
Sep 16 21:48:11  kernel: e820: remove [mem 0xf9d00000-0xf9efffff] reserved
Sep 16 21:48:11  kernel: efi: Not removing mem112: MMIO range=[0xfe010000-0xfe010fff] (4KB) from e820 map
Sep 16 21:48:11  kernel: efi: Remove mem114: MMIO range=[0xff000000-0xffffffff] (16MB) from e820 map
Sep 16 21:48:11  kernel: e820: remove [mem 0xff000000-0xffffffff] reserved
Sep 16 21:48:11  kernel: SMBIOS 3.4 present.
Sep 16 21:48:11  kernel: DMI: HUAWEI RLEF-XX/RLEF-XX-PCB, BIOS 1.26 01/30/2023
Sep 16 21:48:11  kernel: tsc: Detected 2700.000 MHz processor
Sep 16 21:48:11  kernel: tsc: Detected 2688.000 MHz TSC
Sep 16 21:48:11  kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Sep 16 21:48:11  kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
Sep 16 21:48:11  kernel: last_pfn = 0x47fc00 max_arch_pfn = 0x400000000
Sep 16 21:48:11  kernel: MTRR map: 5 entries (3 fixed + 2 variable; max 23), built from 10 variable MTRRs
Sep 16 21:48:11  kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Sep 16 21:48:11  kernel: last_pfn = 0x74c00 max_arch_pfn = 0x400000000
Sep 16 21:48:11  kernel: esrt: Reserving ESRT space from 0x00000000667b0a98 to 0x00000000667b0b20.
Sep 16 21:48:11  kernel: e820: update [mem 0x667b0000-0x667b0fff] usable ==> reserved
Sep 16 21:48:11  kernel: Using GB pages for direct mapping
Sep 16 21:48:11  kernel: Secure boot disabled
Sep 16 21:48:11  kernel: RAMDISK: [mem 0x630fb000-0x6466bfff]
Sep 16 21:48:11  kernel: ACPI: Early table checksum verification disabled
Sep 16 21:48:11  kernel: ACPI: RSDP 0x0000000074BFE014 000024 (v02 HUAWEI)
Sep 16 21:48:11  kernel: ACPI: XSDT 0x0000000074BA6188 00014C (v01 HUAWEI ADL-P-M  00000002      01000013)
Sep 16 21:48:11  kernel: ACPI: FACP 0x0000000074BA2000 000114 (v06 HUAWEI ADL-P-M  00000002 ACPI 00040000)
Sep 16 21:48:11  kernel: ACPI: DSDT 0x0000000074B2A000 07491F (v02 HUAWEI ADL-P-M  00000002 ACPI 00040000)
Sep 16 21:48:11  kernel: ACPI: FACS 0x00000000748F0000 000040
Sep 16 21:48:11  kernel: ACPI: UEFI 0x00000000749FE000 000236 (v01 HUAWEI ADL-P-M  00000001 ACPI 00040000)
Sep 16 21:48:11  kernel: ACPI: SSDT 0x0000000074BF6000 006B43 (v02 HUAWEI DptfTabl 00001000 INTL 20200717)
Sep 16 21:48:11  kernel: ACPI: SSDT 0x0000000074BF5000 00038C (v02 HUAWEI Pmax_Dev 00000001 INTL 20200717)
Sep 16 21:48:11  kernel: ACPI: DLUT 0x0000000074BD4000 020034 (v01 HUAWEI ADL-P-M  00000001 ACPI 00040000)
Sep 16 21:48:11  kernel: ACPI: SSDT 0x0000000074BCE000 005D2C (v02 HUAWEI CpuSsdt  00003000 INTL 20200717)
Sep 16 21:48:11  kernel: ACPI: SSDT 0x0000000074BCB000 002B22 (v02 HUAWEI SaSsdt   00003000 INTL 20200717)
Sep 16 21:48:11  kernel: ACPI: SSDT 0x0000000074BC7000 0033D3 (v02 HUAWEI IgfxSsdt 00003000 INTL 20200717)
Sep 16 21:48:11  kernel: ACPI: SSDT 0x0000000074BB9000 00D39F (v02 HUAWEI TcssSsdt 00001000 INTL 20200717)
Sep 16 21:48:11  kernel: ACPI: SSDT 0x0000000074BB8000 000047 (v01 HUAWEI MlgTable 00001000 INTL 20200717)
Sep 16 21:48:11  kernel: ACPI: SSDT 0x0000000074BB7000 00077B (v02 HUAWEI Tpm2Tabl 00001000 INTL 20200717)
Sep 16 21:48:11  kernel: ACPI: TPM2 0x0000000074BB6000 00004C (v04 HUAWEI ADL-P-M  00000002 ACPI 00040000)
Sep 16 21:48:11  kernel: ACPI: MSDM 0x0000000074BB5000 000055 (v03 HUAWEI ADL-P-M  00000001 ACPI 00040000)
Sep 16 21:48:11  kernel: ACPI: SSDT 0x0000000074BAF000 005C22 (v01 HUAWEI WmiTable 00001000 INTL 20200717)
Sep 16 21:48:11  kernel: ACPI: SSDT 0x0000000074BAE000 000B5C (v02 HUAWEI UsbCTabl 00001000 INTL 20200717)
Sep 16 21:48:11  kernel: ACPI: LPIT 0x0000000074BAD000 0000CC (v01 HUAWEI ADL-P-M  00000002 ACPI 00040000)
Sep 16 21:48:11  kernel: ACPI: WSMT 0x0000000074BAC000 000028 (v01 HUAWEI ADL-P-M  00000002 ACPI 00040000)
Sep 16 21:48:11  kernel: ACPI: SSDT 0x0000000074BAB000 000AD9 (v02 HUAWEI PtidDevc 00001000 INTL 20200717)
Sep 16 21:48:11  kernel: ACPI: SSDT 0x0000000074BA8000 002357 (v02 HUAWEI TbtTypeC 00000000 INTL 20200717)
Sep 16 21:48:11  kernel: ACPI: DBGP 0x0000000074BA7000 000034 (v01 HUAWEI ADL-P-M  00000002 ACPI 00040000)
Sep 16 21:48:11  kernel: ACPI: DBG2 0x0000000074BFD000 000054 (v00 HUAWEI ADL-P-M  00000002 ACPI 00040000)
Sep 16 21:48:11  kernel: ACPI: NHLT 0x0000000074BA4000 001B35 (v00 HUAWEI ADL-P-M  00000002 ACPI 00040000)
Sep 16 21:48:11  kernel: ACPI: ECDT 0x0000000074BA3000 000069 (v01 HUAWEI ADL-P-M  00000002 ACPI 00040000)
Sep 16 21:48:11  kernel: ACPI: HPET 0x0000000074BA1000 000038 (v01 HUAWEI ADL-P-M  00000002 ACPI 00040000)
Sep 16 21:48:11  kernel: ACPI: APIC 0x0000000074BA0000 0001DC (v04 HUAWEI ADL-P-M  00000002 ACPI 00040000)
Sep 16 21:48:11  kernel: ACPI: MCFG 0x0000000074B9F000 00003C (v01 HUAWEI ADL-P-M  00000002 ACPI 00040000)
Sep 16 21:48:11  kernel: ACPI: SSDT 0x0000000074B24000 005F77 (v02 HUAWEI ADL-P-M  00000002      01000013)
Sep 16 21:48:11  kernel: ACPI: SSDT 0x0000000074B22000 001D0E (v02 HUAWEI ADL-P-M  00000002      01000013)
Sep 16 21:48:11  kernel: ACPI: $H2O 0x0000000074B21000 00002C (v01 HUAWEI ADL-P-M  00000001 ACPI 00040000)
Sep 16 21:48:11  kernel: ACPI: DMAR 0x0000000074B20000 000088 (v02 HUAWEI ADL-P-M  00000002 ACPI 00040000)
Sep 16 21:48:11  kernel: ACPI: SSDT 0x0000000074B1F000 000B21 (v02 HUAWEI xh_adlLP 00000000 INTL 20200717)
Sep 16 21:48:11  kernel: ACPI: SSDT 0x0000000074B1B000 003AEA (v02 HUAWEI SocGpe   00003000 INTL 20200717)
Sep 16 21:48:11  kernel: ACPI: SSDT 0x0000000074B17000 0039DA (v02 HUAWEI SocCmn   00003000 INTL 20200717)
Sep 16 21:48:11  kernel: ACPI: SSDT 0x0000000074B16000 0000F8 (v01 HUAWEI PcdTabl  00001000 INTL 20200717)
Sep 16 21:48:11  kernel: ACPI: FPDT 0x0000000074B15000 000044 (v01 HUAWEI ADL-P-M  00000002 ACPI 00040000)
Sep 16 21:48:11  kernel: ACPI: PHAT 0x0000000074B13000 00081C (v01 HUAWEI ADL-P-M  00000005 ACPI 00040000)
Sep 16 21:48:11  kernel: ACPI: BGRT 0x0000000074B14000 000038 (v01 HUAWEI ADL-P-M  00000001 ACPI 00040000)
Sep 16 21:48:11  kernel: ACPI: Reserving FACP table memory at [mem 0x74ba2000-0x74ba2113]
Sep 16 21:48:11  kernel: ACPI: Reserving DSDT table memory at [mem 0x74b2a000-0x74b9e91e]
Sep 16 21:48:11  kernel: ACPI: Reserving FACS table memory at [mem 0x748f0000-0x748f003f]
Sep 16 21:48:11  kernel: ACPI: Reserving UEFI table memory at [mem 0x749fe000-0x749fe235]
Sep 16 21:48:11  kernel: ACPI: Reserving SSDT table memory at [mem 0x74bf6000-0x74bfcb42]
Sep 16 21:48:11  kernel: ACPI: Reserving SSDT table memory at [mem 0x74bf5000-0x74bf538b]
Sep 16 21:48:11  kernel: ACPI: Reserving DLUT table memory at [mem 0x74bd4000-0x74bf4033]
Sep 16 21:48:11  kernel: ACPI: Reserving SSDT table memory at [mem 0x74bce000-0x74bd3d2b]
Sep 16 21:48:11  kernel: ACPI: Reserving SSDT table memory at [mem 0x74bcb000-0x74bcdb21]
Sep 16 21:48:11  kernel: ACPI: Reserving SSDT table memory at [mem 0x74bc7000-0x74bca3d2]
Sep 16 21:48:11  kernel: ACPI: Reserving SSDT table memory at [mem 0x74bb9000-0x74bc639e]
Sep 16 21:48:11  kernel: ACPI: Reserving SSDT table memory at [mem 0x74bb8000-0x74bb8046]
Sep 16 21:48:11  kernel: ACPI: Reserving SSDT table memory at [mem 0x74bb7000-0x74bb777a]
Sep 16 21:48:11  kernel: ACPI: Reserving TPM2 table memory at [mem 0x74bb6000-0x74bb604b]
Sep 16 21:48:11  kernel: ACPI: Reserving MSDM table memory at [mem 0x74bb5000-0x74bb5054]
Sep 16 21:48:11  kernel: ACPI: Reserving SSDT table memory at [mem 0x74baf000-0x74bb4c21]
Sep 16 21:48:11  kernel: ACPI: Reserving SSDT table memory at [mem 0x74bae000-0x74baeb5b]
Sep 16 21:48:11  kernel: ACPI: Reserving LPIT table memory at [mem 0x74bad000-0x74bad0cb]
Sep 16 21:48:11  kernel: ACPI: Reserving WSMT table memory at [mem 0x74bac000-0x74bac027]
Sep 16 21:48:11  kernel: ACPI: Reserving SSDT table memory at [mem 0x74bab000-0x74babad8]
Sep 16 21:48:11  kernel: ACPI: Reserving SSDT table memory at [mem 0x74ba8000-0x74baa356]
Sep 16 21:48:11  kernel: ACPI: Reserving DBGP table memory at [mem 0x74ba7000-0x74ba7033]
Sep 16 21:48:11  kernel: ACPI: Reserving DBG2 table memory at [mem 0x74bfd000-0x74bfd053]
Sep 16 21:48:11  kernel: ACPI: Reserving NHLT table memory at [mem 0x74ba4000-0x74ba5b34]
Sep 16 21:48:11  kernel: ACPI: Reserving ECDT table memory at [mem 0x74ba3000-0x74ba3068]
Sep 16 21:48:11  kernel: ACPI: Reserving HPET table memory at [mem 0x74ba1000-0x74ba1037]
Sep 16 21:48:11  kernel: ACPI: Reserving APIC table memory at [mem 0x74ba0000-0x74ba01db]
Sep 16 21:48:11  kernel: ACPI: Reserving MCFG table memory at [mem 0x74b9f000-0x74b9f03b]
Sep 16 21:48:11  kernel: ACPI: Reserving SSDT table memory at [mem 0x74b24000-0x74b29f76]
Sep 16 21:48:11  kernel: ACPI: Reserving SSDT table memory at [mem 0x74b22000-0x74b23d0d]
Sep 16 21:48:11  kernel: ACPI: Reserving $H2O table memory at [mem 0x74b21000-0x74b2102b]
Sep 16 21:48:11  kernel: ACPI: Reserving DMAR table memory at [mem 0x74b20000-0x74b20087]
Sep 16 21:48:11  kernel: ACPI: Reserving SSDT table memory at [mem 0x74b1f000-0x74b1fb20]
Sep 16 21:48:11  kernel: ACPI: Reserving SSDT table memory at [mem 0x74b1b000-0x74b1eae9]
Sep 16 21:48:11  kernel: ACPI: Reserving SSDT table memory at [mem 0x74b17000-0x74b1a9d9]
Sep 16 21:48:11  kernel: ACPI: Reserving SSDT table memory at [mem 0x74b16000-0x74b160f7]
Sep 16 21:48:11  kernel: ACPI: Reserving FPDT table memory at [mem 0x74b15000-0x74b15043]
Sep 16 21:48:11  kernel: ACPI: Reserving PHAT table memory at [mem 0x74b13000-0x74b1381b]
Sep 16 21:48:11  kernel: ACPI: Reserving BGRT table memory at [mem 0x74b14000-0x74b14037]
Sep 16 21:48:11  kernel: No NUMA configuration found
Sep 16 21:48:11  kernel: Faking a node at [mem 0x0000000000000000-0x000000047fbfffff]
Sep 16 21:48:11  kernel: NODE_DATA(0) allocated [mem 0x47fbfb000-0x47fbfffff]
Sep 16 21:48:11  kernel: Zone ranges:
Sep 16 21:48:11  kernel:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
Sep 16 21:48:11  kernel:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
Sep 16 21:48:11  kernel:   Normal   [mem 0x0000000100000000-0x000000047fbfffff]
Sep 16 21:48:11  kernel:   Device   empty
Sep 16 21:48:11  kernel: Movable zone start for each node
Sep 16 21:48:11  kernel: Early memory node ranges
Sep 16 21:48:11  kernel:   node   0: [mem 0x0000000000001000-0x000000000009efff]
Sep 16 21:48:11  kernel:   node   0: [mem 0x0000000000100000-0x000000006d4dcfff]
Sep 16 21:48:11  kernel:   node   0: [mem 0x000000006dddd000-0x000000006fbfefff]
Sep 16 21:48:11  kernel:   node   0: [mem 0x0000000074bff000-0x0000000074bfffff]
Sep 16 21:48:11  kernel:   node   0: [mem 0x0000000100000000-0x000000047fbfffff]
Sep 16 21:48:11  kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000047fbfffff]
Sep 16 21:48:11  kernel: On node 0, zone DMA: 1 pages in unavailable ranges
Sep 16 21:48:11  kernel: On node 0, zone DMA: 97 pages in unavailable ranges
Sep 16 21:48:11  kernel: On node 0, zone DMA32: 2304 pages in unavailable ranges
Sep 16 21:48:11  kernel: On node 0, zone DMA32: 20480 pages in unavailable ranges
Sep 16 21:48:11  kernel: On node 0, zone Normal: 13312 pages in unavailable ranges
Sep 16 21:48:11  kernel: On node 0, zone Normal: 1024 pages in unavailable ranges
Sep 16 21:48:11  kernel: Reserving Intel graphics memory at [mem 0x7c800000-0x803fffff]
Sep 16 21:48:11  kernel: ACPI: PM-Timer IO Port: 0x1808
Sep 16 21:48:11  kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
Sep 16 21:48:11  kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
Sep 16 21:48:11  kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
Sep 16 21:48:11  kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
Sep 16 21:48:11  kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
Sep 16 21:48:11  kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
Sep 16 21:48:11  kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
Sep 16 21:48:11  kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
Sep 16 21:48:11  kernel: ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
Sep 16 21:48:11  kernel: ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
Sep 16 21:48:11  kernel: ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
Sep 16 21:48:11  kernel: ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
Sep 16 21:48:11  kernel: ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
Sep 16 21:48:11  kernel: ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
Sep 16 21:48:11  kernel: ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
Sep 16 21:48:11  kernel: ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
Sep 16 21:48:11  kernel: ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
Sep 16 21:48:11  kernel: ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
Sep 16 21:48:11  kernel: ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
Sep 16 21:48:11  kernel: ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
Sep 16 21:48:11  kernel: ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
Sep 16 21:48:11  kernel: ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
Sep 16 21:48:11  kernel: ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
Sep 16 21:48:11  kernel: ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
Sep 16 21:48:11  kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
Sep 16 21:48:11  kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Sep 16 21:48:11  kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Sep 16 21:48:11  kernel: ACPI: Using ACPI (MADT) for SMP configuration information
Sep 16 21:48:11  kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
Sep 16 21:48:11  kernel: e820: update [mem 0x6636f000-0x66476fff] usable ==> reserved
Sep 16 21:48:11  kernel: TSC deadline timer available
Sep 16 21:48:11  kernel: smpboot: Allowing 20 CPUs, 0 hotplug CPUs
Sep 16 21:48:11  kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
Sep 16 21:48:11  kernel: PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
Sep 16 21:48:11  kernel: PM: hibernation: Registered nosave memory: [mem 0x6636f000-0x66476fff]
Sep 16 21:48:11  kernel: PM: hibernation: Registered nosave memory: [mem 0x667b0000-0x667b0fff]
Sep 16 21:48:11  kernel: PM: hibernation: Registered nosave memory: [mem 0x6d4dd000-0x6dddcfff]
Sep 16 21:48:11  kernel: PM: hibernation: Registered nosave memory: [mem 0x6fbff000-0x71a4efff]
Sep 16 21:48:11  kernel: PM: hibernation: Registered nosave memory: [mem 0x71a4f000-0x749fefff]
Sep 16 21:48:11  kernel: PM: hibernation: Registered nosave memory: [mem 0x749ff000-0x74bfefff]
Sep 16 21:48:11  kernel: PM: hibernation: Registered nosave memory: [mem 0x74c00000-0x78ffffff]
Sep 16 21:48:11  kernel: PM: hibernation: Registered nosave memory: [mem 0x79000000-0x799fffff]
Sep 16 21:48:11  kernel: PM: hibernation: Registered nosave memory: [mem 0x79a00000-0x79bfffff]
Sep 16 21:48:11  kernel: PM: hibernation: Registered nosave memory: [mem 0x79c00000-0x79ffffff]
Sep 16 21:48:11  kernel: PM: hibernation: Registered nosave memory: [mem 0x7a000000-0x803fffff]
Sep 16 21:48:11  kernel: PM: hibernation: Registered nosave memory: [mem 0x80400000-0xfe00ffff]
Sep 16 21:48:11  kernel: PM: hibernation: Registered nosave memory: [mem 0xfe010000-0xfe010fff]
Sep 16 21:48:11  kernel: PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xfed1ffff]
Sep 16 21:48:11  kernel: PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xfed7ffff]
Sep 16 21:48:11  kernel: PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xffffffff]
Sep 16 21:48:11  kernel: [mem 0x80400000-0xfe00ffff] available for PCI devices
Sep 16 21:48:11  kernel: Booting paravirtualized kernel on bare hardware
Sep 16 21:48:11  kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
Sep 16 21:48:11  kernel: setup_percpu: NR_CPUS:320 nr_cpumask_bits:20 nr_cpu_ids:20 nr_node_ids:1
Sep 16 21:48:11  kernel: percpu: Embedded 64 pages/cpu s225280 r8192 d28672 u262144
Sep 16 21:48:11  kernel: pcpu-alloc: s225280 r8192 d28672 u262144 alloc=1*2097152
Sep 16 21:48:11  kernel: pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 
Sep 16 21:48:11  kernel: pcpu-alloc: [0] 16 17 18 19 -- -- -- -- 
Sep 16 21:48:11  kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux-lts root=UUID=2ec9a78e-0c5a-40b3-a1fb-cf4be8a42b06 rw printk.time=1 initcall_debug nvme_core.default_ps_max_latency_us=0 quiet loglevel=7 rd.udev.log_level=3 systemd.debug_shell no_console_suspend ignore_loglevel
Sep 16 21:48:11  kernel: Unknown kernel command line parameters "BOOT_IMAGE=/boot/vmlinuz-linux-lts", will be passed to user space.
Sep 16 21:48:11  kernel: printk: log_buf_len individual max cpu contribution: 4096 bytes
Sep 16 21:48:11  kernel: printk: log_buf_len total cpu_extra contributions: 77824 bytes
Sep 16 21:48:11  kernel: printk: log_buf_len min size: 131072 bytes
Sep 16 21:48:11  kernel: printk: log_buf_len: 262144 bytes
Sep 16 21:48:11  kernel: printk: early log buf free: 114536(87%)
Sep 16 21:48:11  kernel: Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
Sep 16 21:48:11  kernel: Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
Sep 16 21:48:11  kernel: Fallback order for Node 0: 0 
Sep 16 21:48:11  kernel: Built 1 zonelists, mobility grouping on.  Total pages: 4059716
Sep 16 21:48:11  kernel: Policy zone: Normal
Sep 16 21:48:11  kernel: mem auto-init: stack:all(zero), heap alloc:on, heap free:off
Sep 16 21:48:11  kernel: software IO TLB: area num 32.
Sep 16 21:48:11  kernel: Memory: 15940572K/16497272K available (16384K kernel code, 2137K rwdata, 13024K rodata, 3432K init, 3712K bss, 556444K reserved, 0K cma-reserved)
Sep 16 21:48:11  kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=20, Nodes=1
Sep 16 21:48:11  kernel: ftrace: allocating 48927 entries in 192 pages
Sep 16 21:48:11  kernel: ftrace: allocated 192 pages with 2 groups
Sep 16 21:48:11  kernel: Dynamic Preempt: voluntary
Sep 16 21:48:11  kernel: rcu: Preemptible hierarchical RCU implementation.
Sep 16 21:48:11  kernel: rcu:         RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=20.
Sep 16 21:48:11  kernel: rcu:         RCU priority boosting: priority 1 delay 500 ms.
Sep 16 21:48:11  kernel:         Trampoline variant of Tasks RCU enabled.
Sep 16 21:48:11  kernel:         Rude variant of Tasks RCU enabled.
Sep 16 21:48:11  kernel:         Tracing variant of Tasks RCU enabled.
Sep 16 21:48:11  kernel: rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
Sep 16 21:48:11  kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=20
Sep 16 21:48:11  kernel: NR_IRQS: 20736, nr_irqs: 2216, preallocated irqs: 16
Sep 16 21:48:11  kernel: rcu: srcu_init: Setting srcu_struct sizes based on contention.
Sep 16 21:48:11  kernel: kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
Sep 16 21:48:11  kernel: calling  con_init+0x0/0x290 @ 0
Sep 16 21:48:11  kernel: Console: colour dummy device 80x25
Sep 16 21:48:11  kernel: printk: console [tty0] enabled
Sep 16 21:48:11  kernel: initcall con_init+0x0/0x290 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  hvc_console_init+0x0/0x20 @ 0
Sep 16 21:48:11  kernel: initcall hvc_console_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  xen_cons_init+0x0/0x60 @ 0
Sep 16 21:48:11  kernel: initcall xen_cons_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  univ8250_console_init+0x0/0x40 @ 0
Sep 16 21:48:11  kernel: initcall univ8250_console_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: ACPI: Core revision 20230628
Sep 16 21:48:11  kernel: hpet: HPET dysfunctional in PC10. Force disabled.
Sep 16 21:48:11  kernel: APIC: Switch to symmetric I/O mode setup
Sep 16 21:48:11  kernel: DMAR: Host address width 39
Sep 16 21:48:11  kernel: DMAR: DRHD base: 0x000000fed90000 flags: 0x0
Sep 16 21:48:11  kernel: DMAR: dmar0: reg_base_addr fed90000 ver 4:0 cap 1c0000c40660462 ecap 29a00f0505e
Sep 16 21:48:11  kernel: DMAR: DRHD base: 0x000000fed91000 flags: 0x1
Sep 16 21:48:11  kernel: DMAR: dmar1: reg_base_addr fed91000 ver 5:0 cap d2008c40660462 ecap f050da
Sep 16 21:48:11  kernel: DMAR: RMRR base: 0x0000007c000000 end: 0x000000803fffff
Sep 16 21:48:11  kernel: DMAR-IR: IOAPIC id 2 under DRHD base  0xfed91000 IOMMU 1
Sep 16 21:48:11  kernel: DMAR-IR: HPET id 0 under DRHD base 0xfed91000
Sep 16 21:48:11  kernel: DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
Sep 16 21:48:11  kernel: DMAR-IR: Enabled IRQ remapping in x2apic mode
Sep 16 21:48:11  kernel: x2apic enabled
Sep 16 21:48:11  kernel: APIC: Switched APIC routing to: cluster x2apic
Sep 16 21:48:11  kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x26bef67878b, max_idle_ns: 440795293631 ns
Sep 16 21:48:11  kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 5378.00 BogoMIPS (lpj=8960000)
Sep 16 21:48:11  kernel: CPU0: Thermal monitoring enabled (TM1)
Sep 16 21:48:11  kernel: x86/cpu: User Mode Instruction Prevention (UMIP) activated
Sep 16 21:48:11  kernel: process: using mwait in idle threads
Sep 16 21:48:11  kernel: CET detected: Indirect Branch Tracking enabled
Sep 16 21:48:11  kernel: Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
Sep 16 21:48:11  kernel: Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
Sep 16 21:48:11  kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
Sep 16 21:48:11  kernel: Spectre V2 : Mitigation: Enhanced / Automatic IBRS
Sep 16 21:48:11  kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
Sep 16 21:48:11  kernel: Spectre V2 : Spectre v2 / PBRSB-eIBRS: Retire a single CALL on VMEXIT
Sep 16 21:48:11  kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
Sep 16 21:48:11  kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
Sep 16 21:48:11  kernel: Register File Data Sampling: Mitigation: Clear Register File
Sep 16 21:48:11  kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Sep 16 21:48:11  kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Sep 16 21:48:11  kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Sep 16 21:48:11  kernel: x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
Sep 16 21:48:11  kernel: x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
Sep 16 21:48:11  kernel: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
Sep 16 21:48:11  kernel: x86/fpu: xstate_offset[9]:  832, xstate_sizes[9]:    8
Sep 16 21:48:11  kernel: x86/fpu: xstate_offset[11]:  840, xstate_sizes[11]:   16
Sep 16 21:48:11  kernel: x86/fpu: Enabled xstate features 0xa07, context size is 856 bytes, using 'compacted' format.
Sep 16 21:48:11  kernel: Freeing SMP alternatives memory: 40K
Sep 16 21:48:11  kernel: pid_max: default: 32768 minimum: 301
Sep 16 21:48:11  kernel: LSM: initializing lsm=capability,landlock,lockdown,yama,bpf,integrity
Sep 16 21:48:11  kernel: landlock: Up and running.
Sep 16 21:48:11  kernel: Yama: becoming mindful.
Sep 16 21:48:11  kernel: LSM support for eBPF active
Sep 16 21:48:11  kernel: Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
Sep 16 21:48:11  kernel: Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
Sep 16 21:48:11  kernel: smpboot: CPU0: 12th Gen Intel(R) Core(TM) i7-12700H (family: 0x6, model: 0x9a, stepping: 0x3)
Sep 16 21:48:11  kernel: RCU Tasks: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1.
Sep 16 21:48:11  kernel: RCU Tasks Rude: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1.
Sep 16 21:48:11  kernel: RCU Tasks Trace: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1.
Sep 16 21:48:11  kernel: calling  init_hw_perf_events+0x0/0x6e0 @ 1
Sep 16 21:48:11  kernel: Performance Events: XSAVE Architectural LBR, PEBS fmt4+-baseline,  AnyThread deprecated, Alderlake Hybrid events, 32-deep LBR, full-width counters, Intel PMU driver.
Sep 16 21:48:11  kernel: core: cpu_core PMU driver: 
Sep 16 21:48:11  kernel: ... version:                5
Sep 16 21:48:11  kernel: ... bit width:              48
Sep 16 21:48:11  kernel: ... generic registers:      8
Sep 16 21:48:11  kernel: ... value mask:             0000ffffffffffff
Sep 16 21:48:11  kernel: ... max period:             00007fffffffffff
Sep 16 21:48:11  kernel: ... fixed-purpose events:   4
Sep 16 21:48:11  kernel: ... event mask:             0001000f000000ff
Sep 16 21:48:11  kernel: initcall init_hw_perf_events+0x0/0x6e0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  do_init_real_mode+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall do_init_real_mode+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  init_sigframe_size+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: signal: max sigframe size: 3632
Sep 16 21:48:11  kernel: initcall init_sigframe_size+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  trace_init_perf_perm_irq_work_exit+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall trace_init_perf_perm_irq_work_exit+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  cache_ap_register+0x0/0x80 @ 1
Sep 16 21:48:11  kernel: initcall cache_ap_register+0x0/0x80 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  bp_init_aperfmperf+0x0/0x310 @ 1
Sep 16 21:48:11  kernel: Estimated ratio of average max frequency by base frequency (times 1024): 1668
Sep 16 21:48:11  kernel: initcall bp_init_aperfmperf+0x0/0x310 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  smp_init_primary_thread_mask+0x0/0xe0 @ 1
Sep 16 21:48:11  kernel: initcall smp_init_primary_thread_mask+0x0/0xe0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  register_nmi_cpu_backtrace_handler+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall register_nmi_cpu_backtrace_handler+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  kvm_setup_vsyscall_timeinfo+0x0/0x160 @ 1
Sep 16 21:48:11  kernel: initcall kvm_setup_vsyscall_timeinfo+0x0/0x160 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  spawn_ksoftirqd+0x0/0x50 @ 1
Sep 16 21:48:11  kernel: initcall spawn_ksoftirqd+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  init_signal_sysctls+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall init_signal_sysctls+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  init_umh_sysctls+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall init_umh_sysctls+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  migration_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall migration_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  srcu_bootup_announce+0x0/0x80 @ 1
Sep 16 21:48:11  kernel: rcu: Hierarchical SRCU implementation.
Sep 16 21:48:11  kernel: rcu:         Max phase no-delay instances is 1000.
Sep 16 21:48:11  kernel: initcall srcu_bootup_announce+0x0/0x80 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  rcu_spawn_gp_kthread+0x0/0x1e0 @ 1
Sep 16 21:48:11  kernel: initcall rcu_spawn_gp_kthread+0x0/0x1e0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  check_cpu_stall_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall check_cpu_stall_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  rcu_sysrq_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall rcu_sysrq_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  trace_init_flags_sys_enter+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall trace_init_flags_sys_enter+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  trace_init_flags_sys_exit+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall trace_init_flags_sys_exit+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  cpu_stop_init+0x0/0xb0 @ 1
Sep 16 21:48:11  kernel: initcall cpu_stop_init+0x0/0xb0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  init_kprobes+0x0/0x1c0 @ 1
Sep 16 21:48:11  kernel: initcall init_kprobes+0x0/0x1c0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  init_trace_printk+0x0/0x10 @ 1
Sep 16 21:48:11  kernel: initcall init_trace_printk+0x0/0x10 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  event_trace_enable_again+0x0/0x50 @ 1
Sep 16 21:48:11  kernel: initcall event_trace_enable_again+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  irq_work_init_threads+0x0/0x10 @ 1
Sep 16 21:48:11  kernel: initcall irq_work_init_threads+0x0/0x10 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  static_call_init+0x0/0xb0 @ 1
Sep 16 21:48:11  kernel: initcall static_call_init+0x0/0xb0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  jump_label_init_module+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall jump_label_init_module+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  init_zero_pfn+0x0/0x50 @ 1
Sep 16 21:48:11  kernel: initcall init_zero_pfn+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  init_fs_inode_sysctls+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall init_fs_inode_sysctls+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  init_fs_locks_sysctls+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall init_fs_locks_sysctls+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  init_fs_sysctls+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall init_fs_sysctls+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  init_security_keys_sysctls+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall init_security_keys_sysctls+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  dynamic_debug_init+0x0/0x300 @ 1
Sep 16 21:48:11  kernel: initcall dynamic_debug_init+0x0/0x300 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  unpopulated_init+0x0/0x60 @ 1
Sep 16 21:48:11  kernel: initcall unpopulated_init+0x0/0x60 returned -19 after 0 usecs
Sep 16 21:48:11  kernel: calling  efi_memreserve_root_init+0x0/0x60 @ 1
Sep 16 21:48:11  kernel: initcall efi_memreserve_root_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  efi_earlycon_remap_fb+0x0/0x70 @ 1
Sep 16 21:48:11  kernel: initcall efi_earlycon_remap_fb+0x0/0x70 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  idle_inject_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall idle_inject_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
Sep 16 21:48:11  kernel: smp: Bringing up secondary CPUs ...
Sep 16 21:48:11  kernel: smpboot: x86: Booting SMP configuration:
Sep 16 21:48:11  kernel: .... node  #0, CPUs:        #2  #4  #6  #8 #10 #12 #13 #14 #15 #16 #17 #18 #19
Sep 16 21:48:11  kernel: core: cpu_atom PMU driver: PEBS-via-PT 
Sep 16 21:48:11  kernel: ... version:                5
Sep 16 21:48:11  kernel: ... bit width:              48
Sep 16 21:48:11  kernel: ... generic registers:      6
Sep 16 21:48:11  kernel: ... value mask:             0000ffffffffffff
Sep 16 21:48:11  kernel: ... max period:             00007fffffffffff
Sep 16 21:48:11  kernel: ... fixed-purpose events:   3
Sep 16 21:48:11  kernel: ... event mask:             000000070000003f
Sep 16 21:48:11  kernel:   #1  #3  #5  #7  #9 #11
Sep 16 21:48:11  kernel: smp: Brought up 1 node, 20 CPUs
Sep 16 21:48:11  kernel: smpboot: Max logical packages: 1
Sep 16 21:48:11  kernel: smpboot: Total of 20 processors activated (107563.00 BogoMIPS)
Sep 16 21:48:11  kernel: devtmpfs: initialized
Sep 16 21:48:11  kernel: x86/mm: Memory block size: 128MB
Sep 16 21:48:11  kernel: calling  bpf_jit_charge_init+0x0/0x50 @ 1
Sep 16 21:48:11  kernel: initcall bpf_jit_charge_init+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  ipc_ns_init+0x0/0x50 @ 1
Sep 16 21:48:11  kernel: initcall ipc_ns_init+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  init_mmap_min_addr+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall init_mmap_min_addr+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  pci_realloc_setup_params+0x0/0x70 @ 1
Sep 16 21:48:11  kernel: initcall pci_realloc_setup_params+0x0/0x70 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  inet_frag_wq_init+0x0/0x50 @ 1
Sep 16 21:48:11  kernel: initcall inet_frag_wq_init+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  xen_pvh_gnttab_setup+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall xen_pvh_gnttab_setup+0x0/0x40 returned -19 after 0 usecs
Sep 16 21:48:11  kernel: calling  e820__register_nvs_regions+0x0/0x70 @ 1
Sep 16 21:48:11  kernel: ACPI: PM: Registering ACPI NVS region [mem 0x71a4f000-0x749fefff] (50003968 bytes)
Sep 16 21:48:11  kernel: initcall e820__register_nvs_regions+0x0/0x70 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  cpufreq_register_tsc_scaling+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall cpufreq_register_tsc_scaling+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  reboot_init+0x0/0x50 @ 1
Sep 16 21:48:11  kernel: initcall reboot_init+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  init_lapic_sysfs+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall init_lapic_sysfs+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  alloc_frozen_cpus+0x0/0x10 @ 1
Sep 16 21:48:11  kernel: initcall alloc_frozen_cpus+0x0/0x10 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  cpu_hotplug_pm_sync_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall cpu_hotplug_pm_sync_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  wq_sysfs_init+0x0/0x60 @ 1
Sep 16 21:48:11  kernel: initcall wq_sysfs_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  ksysfs_init+0x0/0xb0 @ 1
Sep 16 21:48:11  kernel: initcall ksysfs_init+0x0/0xb0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  schedutil_gov_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall schedutil_gov_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  pm_init+0x0/0x80 @ 1
Sep 16 21:48:11  kernel: initcall pm_init+0x0/0x80 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  pm_disk_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall pm_disk_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  swsusp_header_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall swsusp_header_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  rcu_set_runtime_mode+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall rcu_set_runtime_mode+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  init_jiffies_clocksource+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
Sep 16 21:48:11  kernel: initcall init_jiffies_clocksource+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  futex_init+0x0/0x100 @ 1
Sep 16 21:48:11  kernel: futex hash table entries: 8192 (order: 7, 524288 bytes, linear)
Sep 16 21:48:11  kernel: initcall futex_init+0x0/0x100 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  cgroup_wq_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall cgroup_wq_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  cgroup1_wq_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall cgroup1_wq_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  ftrace_mod_cmd_init+0x0/0x10 @ 1
Sep 16 21:48:11  kernel: initcall ftrace_mod_cmd_init+0x0/0x10 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  init_wakeup_tracer+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall init_wakeup_tracer+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  init_graph_trace+0x0/0x70 @ 1
Sep 16 21:48:11  kernel: initcall init_graph_trace+0x0/0x70 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  trace_events_eprobe_init_early+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall trace_events_eprobe_init_early+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  trace_events_synth_init_early+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall trace_events_synth_init_early+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  init_kprobe_trace_early+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall init_kprobe_trace_early+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  init_fprobe_trace_early+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall init_fprobe_trace_early+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  bpf_offload_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall bpf_offload_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  memory_failure_init+0x0/0xd0 @ 1
Sep 16 21:48:11  kernel: initcall memory_failure_init+0x0/0xd0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  cma_init_reserved_areas+0x0/0x3d0 @ 1
Sep 16 21:48:11  kernel: initcall cma_init_reserved_areas+0x0/0x3d0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  fsnotify_init+0x0/0x60 @ 1
Sep 16 21:48:11  kernel: initcall fsnotify_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  filelock_init+0x0/0xb0 @ 1
Sep 16 21:48:11  kernel: initcall filelock_init+0x0/0xb0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  init_misc_binfmt+0x0/0x50 @ 1
Sep 16 21:48:11  kernel: initcall init_misc_binfmt+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  init_script_binfmt+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall init_script_binfmt+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  init_elf_binfmt+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall init_elf_binfmt+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  init_compat_elf_binfmt+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall init_compat_elf_binfmt+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  configfs_init+0x0/0xa0 @ 1
Sep 16 21:48:11  kernel: initcall configfs_init+0x0/0xa0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  debugfs_init+0x0/0x90 @ 1
Sep 16 21:48:11  kernel: initcall debugfs_init+0x0/0x90 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  tracefs_init+0x0/0x80 @ 1
Sep 16 21:48:11  kernel: initcall tracefs_init+0x0/0x80 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  securityfs_init+0x0/0x80 @ 1
Sep 16 21:48:11  kernel: initcall securityfs_init+0x0/0x80 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  lockdown_secfs_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall lockdown_secfs_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  pinctrl_init+0x0/0xc0 @ 1
Sep 16 21:48:11  kernel: pinctrl core: initialized pinctrl subsystem
Sep 16 21:48:11  kernel: initcall pinctrl_init+0x0/0xc0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  gpiolib_dev_init+0x0/0x110 @ 1
Sep 16 21:48:11  kernel: initcall gpiolib_dev_init+0x0/0x110 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  virtio_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall virtio_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  regulator_init+0x0/0x130 @ 1
Sep 16 21:48:11  kernel: initcall regulator_init+0x0/0x130 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  iommu_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall iommu_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  component_debug_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall component_debug_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  early_resume_init+0x0/0x120 @ 1
Sep 16 21:48:11  kernel: PM: RTC time: 19:48:07, date: 2024-09-16
Sep 16 21:48:11  kernel: initcall early_resume_init+0x0/0x120 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  soc_bus_register+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall soc_bus_register+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  opp_debug_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall opp_debug_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  cpufreq_core_init+0x0/0xd0 @ 1
Sep 16 21:48:11  kernel: initcall cpufreq_core_init+0x0/0xd0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  cpufreq_gov_performance_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall cpufreq_gov_performance_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  cpufreq_gov_powersave_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall cpufreq_gov_powersave_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  cpufreq_gov_userspace_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall cpufreq_gov_userspace_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  CPU_FREQ_GOV_ONDEMAND_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall CPU_FREQ_GOV_ONDEMAND_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  CPU_FREQ_GOV_CONSERVATIVE_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall CPU_FREQ_GOV_CONSERVATIVE_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  cpuidle_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall cpuidle_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  capsule_reboot_register+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall capsule_reboot_register+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  sock_init+0x0/0xb0 @ 1
Sep 16 21:48:11  kernel: initcall sock_init+0x0/0xb0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  net_inuse_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall net_inuse_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  net_defaults_init+0x0/0x50 @ 1
Sep 16 21:48:11  kernel: initcall net_defaults_init+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  init_default_flow_dissectors+0x0/0x60 @ 1
Sep 16 21:48:11  kernel: initcall init_default_flow_dissectors+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  netpoll_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall netpoll_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  netlink_proto_init+0x0/0x200 @ 1
Sep 16 21:48:11  kernel: NET: Registered PF_NETLINK/PF_ROUTE protocol family
Sep 16 21:48:11  kernel: initcall netlink_proto_init+0x0/0x200 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  genl_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall genl_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  bsp_pm_check_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall bsp_pm_check_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  trace_boot_init+0x0/0xf0 @ 1
Sep 16 21:48:11  kernel: initcall trace_boot_init+0x0/0xf0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  __gnttab_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall __gnttab_init+0x0/0x40 returned -19 after 0 usecs
Sep 16 21:48:11  kernel: calling  pi_init+0x0/0x70 @ 1
Sep 16 21:48:11  kernel: initcall pi_init+0x0/0x70 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  irq_sysfs_init+0x0/0xe0 @ 1
Sep 16 21:48:11  kernel: initcall irq_sysfs_init+0x0/0xe0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  dma_atomic_pool_init+0x0/0x160 @ 1
Sep 16 21:48:11  kernel: DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations
Sep 16 21:48:11  kernel: probe of reg-dummy returned 0 after 0 usecs
Sep 16 21:48:11  kernel: DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
Sep 16 21:48:11  kernel: DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
Sep 16 21:48:11  kernel: initcall dma_atomic_pool_init+0x0/0x160 returned 0 after 3333 usecs
Sep 16 21:48:11  kernel: calling  audit_init+0x0/0x190 @ 1
Sep 16 21:48:11  kernel: audit: initializing netlink subsys (disabled)
Sep 16 21:48:11  kernel: initcall audit_init+0x0/0x190 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  release_early_probes+0x0/0x50 @ 1
Sep 16 21:48:11  kernel: initcall release_early_probes+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  bdi_class_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall bdi_class_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  mm_sysfs_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall mm_sysfs_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: audit: type=2000 audit(1726516087.026:1): state=initialized audit_enabled=0 res=1
Sep 16 21:48:11  kernel: calling  init_per_zone_wmark_min+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall init_per_zone_wmark_min+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  mpi_init+0x0/0x80 @ 1
Sep 16 21:48:11  kernel: initcall mpi_init+0x0/0x80 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  acpi_gpio_setup_params+0x0/0xf0 @ 1
Sep 16 21:48:11  kernel: initcall acpi_gpio_setup_params+0x0/0xf0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  pcibus_class_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall pcibus_class_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  pci_driver_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall pci_driver_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  backlight_class_init+0x0/0xb0 @ 1
Sep 16 21:48:11  kernel: initcall backlight_class_init+0x0/0xb0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  xenbus_init+0x0/0x4a0 @ 1
Sep 16 21:48:11  kernel: initcall xenbus_init+0x0/0x4a0 returned -19 after 0 usecs
Sep 16 21:48:11  kernel: calling  tty_class_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall tty_class_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  vtconsole_class_init+0x0/0xf0 @ 1
Sep 16 21:48:11  kernel: initcall vtconsole_class_init+0x0/0xf0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  serdev_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall serdev_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  iommu_dev_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall iommu_dev_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  mipi_dsi_bus_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall mipi_dsi_bus_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  devlink_class_init+0x0/0x60 @ 1
Sep 16 21:48:11  kernel: initcall devlink_class_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  software_node_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall software_node_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  wakeup_sources_debugfs_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall wakeup_sources_debugfs_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  wakeup_sources_sysfs_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall wakeup_sources_sysfs_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  isa_bus_init+0x0/0x60 @ 1
Sep 16 21:48:11  kernel: initcall isa_bus_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  regmap_initcall+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall regmap_initcall+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  syscon_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall syscon_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  spi_init+0x0/0xc0 @ 1
Sep 16 21:48:11  kernel: initcall spi_init+0x0/0xc0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  i2c_init+0x0/0xe0 @ 1
Sep 16 21:48:11  kernel: initcall i2c_init+0x0/0xe0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  thermal_init+0x0/0x170 @ 1
Sep 16 21:48:11  kernel: thermal_sys: Registered thermal governor 'fair_share'
Sep 16 21:48:11  kernel: thermal_sys: Registered thermal governor 'bang_bang'
Sep 16 21:48:11  kernel: thermal_sys: Registered thermal governor 'step_wise'
Sep 16 21:48:11  kernel: thermal_sys: Registered thermal governor 'user_space'
Sep 16 21:48:11  kernel: thermal_sys: Registered thermal governor 'power_allocator'
Sep 16 21:48:11  kernel: initcall thermal_init+0x0/0x170 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  init_ladder+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: cpuidle: using governor ladder
Sep 16 21:48:11  kernel: initcall init_ladder+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  init_menu+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: cpuidle: using governor menu
Sep 16 21:48:11  kernel: initcall init_menu+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  teo_governor_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall teo_governor_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  init_haltpoll+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall init_haltpoll+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  pcc_init+0x0/0xb0 @ 1
Sep 16 21:48:11  kernel: initcall pcc_init+0x0/0xb0 returned -19 after 0 usecs
Sep 16 21:48:11  kernel: calling  amd_postcore_init+0x0/0x130 @ 1
Sep 16 21:48:11  kernel: initcall amd_postcore_init+0x0/0x130 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  kobject_uevent_init+0x0/0x10 @ 1
Sep 16 21:48:11  kernel: initcall kobject_uevent_init+0x0/0x10 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  bts_init+0x0/0xd0 @ 1
Sep 16 21:48:11  kernel: initcall bts_init+0x0/0xd0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  pt_init+0x0/0x3f0 @ 1
Sep 16 21:48:11  kernel: initcall pt_init+0x0/0x3f0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  boot_params_ksysfs_init+0x0/0x310 @ 1
Sep 16 21:48:11  kernel: initcall boot_params_ksysfs_init+0x0/0x310 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  sbf_init+0x0/0x130 @ 1
Sep 16 21:48:11  kernel: initcall sbf_init+0x0/0x130 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  arch_kdebugfs_init+0x0/0x230 @ 1
Sep 16 21:48:11  kernel: initcall arch_kdebugfs_init+0x0/0x230 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  xfd_update_static_branch+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall xfd_update_static_branch+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  intel_pconfig_init+0x0/0xf0 @ 1
Sep 16 21:48:11  kernel: initcall intel_pconfig_init+0x0/0xf0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  mtrr_if_init+0x0/0x70 @ 1
Sep 16 21:48:11  kernel: initcall mtrr_if_init+0x0/0x70 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  activate_jump_labels+0x0/0x50 @ 1
Sep 16 21:48:11  kernel: initcall activate_jump_labels+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  init_s4_sigcheck+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall init_s4_sigcheck+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  ffh_cstate_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall ffh_cstate_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  kvm_alloc_cpumask+0x0/0xc0 @ 1
Sep 16 21:48:11  kernel: initcall kvm_alloc_cpumask+0x0/0xc0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  activate_jump_labels+0x0/0x50 @ 1
Sep 16 21:48:11  kernel: initcall activate_jump_labels+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  report_cpuid_table+0x0/0xa0 @ 1
Sep 16 21:48:11  kernel: initcall report_cpuid_table+0x0/0xa0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  gigantic_pages_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall gigantic_pages_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  kcmp_cookies_init+0x0/0x50 @ 1
Sep 16 21:48:11  kernel: initcall kcmp_cookies_init+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  cryptomgr_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall cryptomgr_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  acpi_pci_init+0x0/0x60 @ 1
Sep 16 21:48:11  kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Sep 16 21:48:11  kernel: initcall acpi_pci_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  dma_channel_table_init+0x0/0xf0 @ 1
Sep 16 21:48:11  kernel: initcall dma_channel_table_init+0x0/0xf0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  dma_bus_init+0x0/0x110 @ 1
Sep 16 21:48:11  kernel: initcall dma_bus_init+0x0/0x110 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  register_xen_pci_notifier+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall register_xen_pci_notifier+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  xen_pcpu_init+0x0/0xd0 @ 1
Sep 16 21:48:11  kernel: initcall xen_pcpu_init+0x0/0xd0 returned -19 after 0 usecs
Sep 16 21:48:11  kernel: calling  serial_base_init+0x0/0x80 @ 1
Sep 16 21:48:11  kernel: initcall serial_base_init+0x0/0x80 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  iommu_dma_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall iommu_dma_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  dmi_id_init+0x0/0x3e0 @ 1
Sep 16 21:48:11  kernel: initcall dmi_id_init+0x0/0x3e0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  ts_dmi_init+0x0/0x80 @ 1
Sep 16 21:48:11  kernel: initcall ts_dmi_init+0x0/0x80 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  pci_arch_init+0x0/0x90 @ 1
Sep 16 21:48:11  kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xc0000000-0xcfffffff] (base 0xc0000000)
Sep 16 21:48:11  kernel: PCI: Using configuration type 1 for base access
Sep 16 21:48:11  kernel: initcall pci_arch_init+0x0/0x90 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  init_vdso_image_64+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall init_vdso_image_64+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  init_vdso_image_32+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall init_vdso_image_32+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  fixup_ht_bug+0x0/0x120 @ 1
Sep 16 21:48:11  kernel: initcall fixup_ht_bug+0x0/0x120 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  topology_init+0x0/0x70 @ 1
Sep 16 21:48:11  kernel: initcall topology_init+0x0/0x70 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  intel_epb_init+0x0/0xa0 @ 1
Sep 16 21:48:11  kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
Sep 16 21:48:11  kernel: initcall intel_epb_init+0x0/0xa0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  mtrr_init_finalize+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall mtrr_init_finalize+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  blake2s_mod_init+0x0/0x80 @ 1
Sep 16 21:48:11  kernel: initcall blake2s_mod_init+0x0/0x80 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  uid_cache_init+0x0/0xc0 @ 1
Sep 16 21:48:11  kernel: initcall uid_cache_init+0x0/0xc0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  param_sysfs_init+0x0/0x60 @ 1
Sep 16 21:48:11  kernel: initcall param_sysfs_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  user_namespace_sysctl_init+0x0/0xd0 @ 1
Sep 16 21:48:11  kernel: initcall user_namespace_sysctl_init+0x0/0xd0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  proc_schedstat_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall proc_schedstat_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  pm_sysrq_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall pm_sysrq_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  create_proc_profile+0x0/0xe0 @ 1
Sep 16 21:48:11  kernel: initcall create_proc_profile+0x0/0xe0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  crash_save_vmcoreinfo_init+0x0/0x710 @ 1
Sep 16 21:48:11  kernel: initcall crash_save_vmcoreinfo_init+0x0/0x710 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  crash_notes_memory_init+0x0/0x50 @ 1
Sep 16 21:48:11  kernel: initcall crash_notes_memory_init+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  crash_hotplug_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall crash_hotplug_init+0x0/0x40 returned 72 after 0 usecs
Sep 16 21:48:11  kernel: calling  cgroup_sysfs_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall cgroup_sysfs_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  user_namespaces_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall user_namespaces_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  init_optprobes+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
Sep 16 21:48:11  kernel: initcall init_optprobes+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  hung_task_init+0x0/0x90 @ 1
Sep 16 21:48:11  kernel: initcall hung_task_init+0x0/0x90 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  ftrace_check_for_weak_functions+0x0/0x70 @ 1
Sep 16 21:48:11  kernel: initcall ftrace_check_for_weak_functions+0x0/0x70 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  trace_eval_init+0x0/0xb0 @ 1
Sep 16 21:48:11  kernel: initcall trace_eval_init+0x0/0xb0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  send_signal_irq_work_init+0x0/0x80 @ 1
Sep 16 21:48:11  kernel: initcall send_signal_irq_work_init+0x0/0x80 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  dev_map_init+0x0/0x60 @ 1
Sep 16 21:48:11  kernel: initcall dev_map_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  cpu_map_init+0x0/0x60 @ 1
Sep 16 21:48:11  kernel: initcall cpu_map_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  netns_bpf_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall netns_bpf_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  btf_vmlinux_init+0x0/0x70 @ 1
Sep 16 21:48:11  kernel: initcall btf_vmlinux_init+0x0/0x70 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  oom_init+0x0/0x60 @ 1
Sep 16 21:48:11  kernel: initcall oom_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  default_bdi_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall default_bdi_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  cgwb_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall cgwb_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  percpu_enable_async+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall percpu_enable_async+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  kcompactd_init+0x0/0xd0 @ 1
Sep 16 21:48:11  kernel: initcall kcompactd_init+0x0/0xd0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  init_user_reserve+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall init_user_reserve+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  init_admin_reserve+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall init_admin_reserve+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  init_reserve_notifier+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall init_reserve_notifier+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  swap_init_sysfs+0x0/0x80 @ 1
Sep 16 21:48:11  kernel: initcall swap_init_sysfs+0x0/0x80 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  swapfile_init+0x0/0xf0 @ 1
Sep 16 21:48:11  kernel: initcall swapfile_init+0x0/0xf0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  hugetlb_init+0x0/0x760 @ 1
Sep 16 21:48:11  kernel: HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
Sep 16 21:48:11  kernel: HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
Sep 16 21:48:11  kernel: HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
Sep 16 21:48:11  kernel: HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
Sep 16 21:48:11  kernel: initcall hugetlb_init+0x0/0x760 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  ksm_init+0x0/0x1c0 @ 1
Sep 16 21:48:11  kernel: initcall ksm_init+0x0/0x1c0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  memory_tier_init+0x0/0x170 @ 1
Sep 16 21:48:11  kernel: initcall memory_tier_init+0x0/0x170 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  numa_init_sysfs+0x0/0x80 @ 1
Sep 16 21:48:11  kernel: initcall numa_init_sysfs+0x0/0x80 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  hugepage_init+0x0/0x180 @ 1
Sep 16 21:48:11  kernel: initcall hugepage_init+0x0/0x180 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  mem_cgroup_init+0x0/0x140 @ 1
Sep 16 21:48:11  kernel: initcall mem_cgroup_init+0x0/0x140 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  mem_cgroup_swap_init+0x0/0x90 @ 1
Sep 16 21:48:11  kernel: initcall mem_cgroup_swap_init+0x0/0x90 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  cma_sysfs_init+0x0/0x140 @ 1
Sep 16 21:48:11  kernel: initcall cma_sysfs_init+0x0/0x140 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  page_idle_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall page_idle_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  damon_init+0x0/0x60 @ 1
Sep 16 21:48:11  kernel: initcall damon_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  damon_va_initcall+0x0/0x130 @ 1
Sep 16 21:48:11  kernel: initcall damon_va_initcall+0x0/0x130 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  damon_pa_initcall+0x0/0xa0 @ 1
Sep 16 21:48:11  kernel: initcall damon_pa_initcall+0x0/0xa0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  damon_sysfs_init+0x0/0x100 @ 1
Sep 16 21:48:11  kernel: initcall damon_sysfs_init+0x0/0x100 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  sel_ib_pkey_init+0x0/0x60 @ 1
Sep 16 21:48:11  kernel: initcall sel_ib_pkey_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  dh_init+0x0/0x60 @ 1
Sep 16 21:48:11  kernel: initcall dh_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  rsa_init+0x0/0x50 @ 1
Sep 16 21:48:11  kernel: initcall rsa_init+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  ecdsa_init+0x0/0x90 @ 1
Sep 16 21:48:11  kernel: initcall ecdsa_init+0x0/0x90 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  hmac_module_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall hmac_module_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  md5_mod_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall md5_mod_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  sha1_generic_mod_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall sha1_generic_mod_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  sha256_generic_mod_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall sha256_generic_mod_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  sha512_generic_mod_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall sha512_generic_mod_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  sha3_generic_mod_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall sha3_generic_mod_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  crypto_ctr_module_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall crypto_ctr_module_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  aes_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall aes_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  crct10dif_mod_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall crct10dif_mod_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  drbg_init+0x0/0x90 @ 1
Sep 16 21:48:11  kernel: initcall drbg_init+0x0/0x90 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  zstd_mod_init+0x0/0x60 @ 1
Sep 16 21:48:11  kernel: initcall zstd_mod_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  init_bio+0x0/0xc0 @ 1
Sep 16 21:48:11  kernel: initcall init_bio+0x0/0xc0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  blk_ioc_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall blk_ioc_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  blk_mq_init+0x0/0x120 @ 1
Sep 16 21:48:11  kernel: initcall blk_mq_init+0x0/0x120 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  genhd_device_init+0x0/0x60 @ 1
Sep 16 21:48:11  kernel: initcall genhd_device_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  blkcg_punt_bio_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall blkcg_punt_bio_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  bio_crypt_ctx_init+0x0/0x90 @ 1
Sep 16 21:48:11  kernel: initcall bio_crypt_ctx_init+0x0/0x90 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  blk_crypto_sysfs_init+0x0/0x60 @ 1
Sep 16 21:48:11  kernel: initcall blk_crypto_sysfs_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  io_wq_init+0x0/0x50 @ 1
Sep 16 21:48:11  kernel: initcall io_wq_init+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  sg_pool_init+0x0/0xc0 @ 1
Sep 16 21:48:11  kernel: initcall sg_pool_init+0x0/0xc0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  irq_poll_setup+0x0/0x80 @ 1
Sep 16 21:48:11  kernel: initcall irq_poll_setup+0x0/0x80 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  sx150x_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall sx150x_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  byt_gpio_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall byt_gpio_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  chv_pinctrl_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall chv_pinctrl_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  lp_gpio_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall lp_gpio_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  bxt_pinctrl_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall bxt_pinctrl_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  cdf_pinctrl_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall cdf_pinctrl_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  dnv_pinctrl_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall dnv_pinctrl_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  glk_pinctrl_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall glk_pinctrl_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  spt_pinctrl_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall spt_pinctrl_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  gpiolib_debugfs_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall gpiolib_debugfs_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  palmas_gpio_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall palmas_gpio_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  rc5t583_gpio_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall rc5t583_gpio_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  tps6586x_gpio_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall tps6586x_gpio_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  tps65910_gpio_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall tps65910_gpio_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  pwm_debugfs_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall pwm_debugfs_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  pwm_sysfs_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall pwm_sysfs_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  pci_slot_init+0x0/0x50 @ 1
Sep 16 21:48:11  kernel: initcall pci_slot_init+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  fbmem_init+0x0/0x90 @ 1
Sep 16 21:48:11  kernel: fbcon: Taking over console
Sep 16 21:48:11  kernel: initcall fbmem_init+0x0/0x90 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  scan_for_dmi_ipmi+0x0/0x340 @ 1
Sep 16 21:48:11  kernel: initcall scan_for_dmi_ipmi+0x0/0x340 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  acpi_init+0x0/0x560 @ 1
Sep 16 21:48:11  kernel: ACPI: Added _OSI(Module Device)
Sep 16 21:48:11  kernel: ACPI: Added _OSI(Processor Device)
Sep 16 21:48:11  kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Sep 16 21:48:11  kernel: ACPI: Added _OSI(Processor Aggregator Device)
Sep 16 21:48:11  kernel: ACPI: 19 ACPI AML tables successfully acquired and loaded
Sep 16 21:48:11  kernel: ACPI: EC: EC started
Sep 16 21:48:11  kernel: ACPI: EC: interrupt blocked
Sep 16 21:48:11  kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
Sep 16 21:48:11  kernel: ACPI: EC: Boot ECDT EC used to handle transactions
Sep 16 21:48:11  kernel: ACPI: Dynamic OEM Table Load:
Sep 16 21:48:11  kernel: ACPI: SSDT 0xFFFF888101413800 000394 (v02 PmRef  Cpu0Cst  00003001 INTL 20200717)
Sep 16 21:48:11  kernel: ACPI: Dynamic OEM Table Load:
Sep 16 21:48:11  kernel: ACPI: SSDT 0xFFFF888102D3F000 000626 (v02 PmRef  Cpu0Ist  00003000 INTL 20200717)
Sep 16 21:48:11  kernel: ACPI: Dynamic OEM Table Load:
Sep 16 21:48:11  kernel: ACPI: SSDT 0xFFFF888102CDF200 0001AB (v02 PmRef  Cpu0Psd  00003000 INTL 20200717)
Sep 16 21:48:11  kernel: ACPI: Dynamic OEM Table Load:
Sep 16 21:48:11  kernel: ACPI: SSDT 0xFFFF888102D3C000 0004BA (v02 PmRef  Cpu0Hwp  00003000 INTL 20200717)
Sep 16 21:48:11  kernel: ACPI: Dynamic OEM Table Load:
Sep 16 21:48:11  kernel: ACPI: SSDT 0xFFFF8881013F4000 001BAF (v02 PmRef  ApIst    00003000 INTL 20200717)
Sep 16 21:48:11  kernel: ACPI: Dynamic OEM Table Load:
Sep 16 21:48:11  kernel: ACPI: SSDT 0xFFFF8881013F0000 001038 (v02 PmRef  ApHwp    00003000 INTL 20200717)
Sep 16 21:48:11  kernel: ACPI: Dynamic OEM Table Load:
Sep 16 21:48:11  kernel: ACPI: SSDT 0xFFFF888102D46000 001349 (v02 PmRef  ApPsd    00003000 INTL 20200717)
Sep 16 21:48:11  kernel: ACPI: Dynamic OEM Table Load:
Sep 16 21:48:11  kernel: ACPI: SSDT 0xFFFF88810141D000 000FBB (v02 PmRef  ApCst    00003000 INTL 20200717)
Sep 16 21:48:11  kernel: ACPI: _OSC evaluated successfully for all CPUs
Sep 16 21:48:11  kernel: ACPI: Interpreter enabled
Sep 16 21:48:11  kernel: ACPI: PM: (supports S0 S3 S4 S5)
Sep 16 21:48:11  kernel: ACPI: Using IOAPIC for interrupt routing
Sep 16 21:48:11  kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Sep 16 21:48:11  kernel: PCI: Ignoring E820 reservations for host bridge windows
Sep 16 21:48:11  kernel: ACPI: Enabled 8 GPEs in block 00 to 7F
Sep 16 21:48:11  kernel: ACPI: \_SB_.PC00.PEG0.PXP_: New power resource
Sep 16 21:48:11  kernel: ACPI: \_SB_.PC00.PEG1.PXP_: New power resource
Sep 16 21:48:11  kernel: ACPI: \_SB_.PC00.PEG2.PXP_: New power resource
Sep 16 21:48:11  kernel: ACPI: \_SB_.PC00.XHCI.RHUB.HS10.BTRT: New power resource
Sep 16 21:48:11  kernel: ACPI: \_SB_.PC00.PAUD: New power resource
Sep 16 21:48:11  kernel: ACPI: \_SB_.PC00.I2C0.PXTC: New power resource
Sep 16 21:48:11  kernel: ACPI: \_SB_.PC00.CNVW.WRST: New power resource
Sep 16 21:48:11  kernel: ACPI: \_SB_.PC00.RP06.PXP_: New power resource
Sep 16 21:48:11  kernel: ACPI: \_SB_.PC00.RP08.PXP_: New power resource
Sep 16 21:48:11  kernel: ACPI: \_SB_.PC00.RP09.PXP_: New power resource
Sep 16 21:48:11  kernel: ACPI: \_SB_.PC00.TBT0: New power resource
Sep 16 21:48:11  kernel: ACPI: \_SB_.PC00.TBT1: New power resource
Sep 16 21:48:11  kernel: ACPI: \_SB_.PC00.D3C_: New power resource
Sep 16 21:48:11  kernel: ACPI: \_TZ_.FN00: New power resource
Sep 16 21:48:11  kernel: ACPI: \_TZ_.FN01: New power resource
Sep 16 21:48:11  kernel: ACPI: \_TZ_.FN02: New power resource
Sep 16 21:48:11  kernel: ACPI: \_TZ_.FN03: New power resource
Sep 16 21:48:11  kernel: ACPI: \_TZ_.FN04: New power resource
Sep 16 21:48:11  kernel: ACPI: \PIN_: New power resource
Sep 16 21:48:11  kernel: ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-fe])
Sep 16 21:48:11  kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
Sep 16 21:48:11  kernel: acpi PNP0A08:00: _OSC: platform does not support [AER]
Sep 16 21:48:11  kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability LTR DPC]
Sep 16 21:48:11  kernel: PCI host bridge to bus 0000:00
Sep 16 21:48:11  kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
Sep 16 21:48:11  kernel: pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
Sep 16 21:48:11  kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Sep 16 21:48:11  kernel: pci_bus 0000:00: root bus resource [mem 0x80400000-0xbfffffff window]
Sep 16 21:48:11  kernel: pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
Sep 16 21:48:11  kernel: pci_bus 0000:00: root bus resource [bus 00-fe]
Sep 16 21:48:11  kernel: pci 0000:00:00.0: calling  quirk_mmio_always_on+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: pci 0000:00:00.0: quirk_mmio_always_on+0x0/0x20 took 0 usecs
Sep 16 21:48:11  kernel: pci 0000:00:00.0: [8086:4641] type 00 class 0x060000
Sep 16 21:48:11  kernel: pci 0000:00:00.0: calling  quirk_igfx_skip_te_disable+0x0/0xc0 @ 1
Sep 16 21:48:11  kernel: pci 0000:00:00.0: quirk_igfx_skip_te_disable+0x0/0xc0 took 0 usecs
Sep 16 21:48:11  kernel: pci 0000:00:02.0: [8086:46a6] type 00 class 0x030000
Sep 16 21:48:11  kernel: pci 0000:00:02.0: reg 0x10: [mem 0x6000000000-0x6000ffffff 64bit]
Sep 16 21:48:11  kernel: pci 0000:00:02.0: reg 0x18: [mem 0x4000000000-0x400fffffff 64bit pref]
Sep 16 21:48:11  kernel: pci 0000:00:02.0: reg 0x20: [io  0x3000-0x303f]
Sep 16 21:48:11  kernel: pci 0000:00:02.0: calling  screen_info_fixup_lfb+0x0/0x180 @ 1
Sep 16 21:48:11  kernel: pci 0000:00:02.0: screen_info_fixup_lfb+0x0/0x180 took 0 usecs
Sep 16 21:48:11  kernel: pci 0000:00:02.0: calling  efifb_fixup_resources+0x0/0x140 @ 1
Sep 16 21:48:11  kernel: pci 0000:00:02.0: BAR 2: assigned to efifb
Sep 16 21:48:11  kernel: pci 0000:00:02.0: efifb_fixup_resources+0x0/0x140 took 0 usecs
Sep 16 21:48:11  kernel: pci 0000:00:02.0: calling  quirk_igfx_skip_te_disable+0x0/0xc0 @ 1
Sep 16 21:48:11  kernel: pci 0000:00:02.0: DMAR: Skip IOMMU disabling for graphics
Sep 16 21:48:11  kernel: pci 0000:00:02.0: quirk_igfx_skip_te_disable+0x0/0xc0 took 0 usecs
Sep 16 21:48:11  kernel: pci 0000:00:02.0: calling  pci_fixup_video+0x0/0x140 @ 1
Sep 16 21:48:11  kernel: pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
Sep 16 21:48:11  kernel: pci 0000:00:02.0: pci_fixup_video+0x0/0x140 took 0 usecs
Sep 16 21:48:11  kernel: pci 0000:00:02.0: reg 0x344: [mem 0x00000000-0x00ffffff 64bit]
Sep 16 21:48:11  kernel: pci 0000:00:02.0: VF(n) BAR0 space: [mem 0x00000000-0x06ffffff 64bit] (contains BAR0 for 7 VFs)
Sep 16 21:48:11  kernel: pci 0000:00:02.0: reg 0x34c: [mem 0x00000000-0x1fffffff 64bit pref]
Sep 16 21:48:11  kernel: pci 0000:00:02.0: VF(n) BAR2 space: [mem 0x00000000-0xdfffffff 64bit pref] (contains BAR2 for 7 VFs)
Sep 16 21:48:11  kernel: pci 0000:00:04.0: [8086:461d] type 00 class 0x118000
Sep 16 21:48:11  kernel: pci 0000:00:04.0: reg 0x10: [mem 0x6001100000-0x600111ffff 64bit]
Sep 16 21:48:11  kernel: pci 0000:00:04.0: calling  quirk_igfx_skip_te_disable+0x0/0xc0 @ 1
Sep 16 21:48:11  kernel: pci 0000:00:04.0: quirk_igfx_skip_te_disable+0x0/0xc0 took 0 usecs
Sep 16 21:48:11  kernel: pci 0000:00:06.0: calling  quirk_cmd_compl+0x0/0x80 @ 1
Sep 16 21:48:11  kernel: pci 0000:00:06.0: quirk_cmd_compl+0x0/0x80 took 0 usecs
Sep 16 21:48:11  kernel: pci 0000:00:06.0: calling  quirk_no_aersid+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: pci 0000:00:06.0: quirk_no_aersid+0x0/0x40 took 0 usecs
Sep 16 21:48:11  kernel: pci 0000:00:06.0: [8086:464d] type 01 class 0x060400
Sep 16 21:48:11  kernel: pci 0000:00:06.0: calling  quirk_igfx_skip_te_disable+0x0/0xc0 @ 1
Sep 16 21:48:11  kernel: pci 0000:00:06.0: quirk_igfx_skip_te_disable+0x0/0xc0 took 0 usecs
Sep 16 21:48:11  kernel: pci 0000:00:06.0: calling  pci_fixup_transparent_bridge+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: pci 0000:00:06.0: pci_fixup_transparent_bridge+0x0/0x30 took 0 usecs
Sep 16 21:48:11  kernel: pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
Sep 16 21:48:11  kernel: pci 0000:00:06.0: PTM enabled (root), 4ns granularity
Sep 16 21:48:11  kernel: pci 0000:00:08.0: [8086:464f] type 00 class 0x088000
Sep 16 21:48:11  kernel: pci 0000:00:08.0: reg 0x10: [mem 0x600114d000-0x600114dfff 64bit]
Sep 16 21:48:11  kernel: pci 0000:00:08.0: calling  quirk_igfx_skip_te_disable+0x0/0xc0 @ 1
Sep 16 21:48:11  kernel: pci 0000:00:08.0: quirk_igfx_skip_te_disable+0x0/0xc0 took 0 usecs
Sep 16 21:48:11  kernel: pci 0000:00:0a.0: [8086:467d] type 00 class 0x118000
Sep 16 21:48:11  kernel: pci 0000:00:0a.0: reg 0x10: [mem 0x6001130000-0x6001137fff 64bit]
Sep 16 21:48:11  kernel: pci 0000:00:0a.0: enabling Extended Tags
Sep 16 21:48:11  kernel: pci 0000:00:0a.0: calling  quirk_igfx_skip_te_disable+0x0/0xc0 @ 1
Sep 16 21:48:11  kernel: pci 0000:00:0a.0: quirk_igfx_skip_te_disable+0x0/0xc0 took 0 usecs
Sep 16 21:48:11  kernel: pci 0000:00:0d.0: [8086:461e] type 00 class 0x0c0330
Sep 16 21:48:11  kernel: pci 0000:00:0d.0: reg 0x10: [mem 0x6001120000-0x600112ffff 64bit]
Sep 16 21:48:11  kernel: pci 0000:00:0d.0: calling  quirk_igfx_skip_te_disable+0x0/0xc0 @ 1
Sep 16 21:48:11  kernel: pci 0000:00:0d.0: quirk_igfx_skip_te_disable+0x0/0xc0 took 0 usecs
Sep 16 21:48:11  kernel: pci 0000:00:0d.0: PME# supported from D3hot D3cold
Sep 16 21:48:11  kernel: pci 0000:00:14.0: [8086:51ed] type 00 class 0x0c0330
Sep 16 21:48:11  kernel: pci 0000:00:14.0: reg 0x10: [mem 0x80500000-0x8050ffff 64bit]
Sep 16 21:48:11  kernel: pci 0000:00:14.0: calling  quirk_igfx_skip_te_disable+0x0/0xc0 @ 1
Sep 16 21:48:11  kernel: pci 0000:00:14.0: quirk_igfx_skip_te_disable+0x0/0xc0 took 0 usecs
Sep 16 21:48:11  kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
Sep 16 21:48:11  kernel: pci 0000:00:14.2: [8086:51ef] type 00 class 0x050000
Sep 16 21:48:11  kernel: pci 0000:00:14.2: reg 0x10: [mem 0x6001140000-0x6001143fff 64bit]
Sep 16 21:48:11  kernel: pci 0000:00:14.2: reg 0x18: [mem 0x600114c000-0x600114cfff 64bit]
Sep 16 21:48:11  kernel: pci 0000:00:14.2: calling  quirk_igfx_skip_te_disable+0x0/0xc0 @ 1
Sep 16 21:48:11  kernel: pci 0000:00:14.2: quirk_igfx_skip_te_disable+0x0/0xc0 took 0 usecs
Sep 16 21:48:11  kernel: pci 0000:00:14.3: [8086:51f0] type 00 class 0x028000
Sep 16 21:48:11  kernel: pci 0000:00:14.3: reg 0x10: [mem 0x600113c000-0x600113ffff 64bit]
Sep 16 21:48:11  kernel: pci 0000:00:14.3: calling  quirk_igfx_skip_te_disable+0x0/0xc0 @ 1
Sep 16 21:48:11  kernel: pci 0000:00:14.3: quirk_igfx_skip_te_disable+0x0/0xc0 took 0 usecs
Sep 16 21:48:11  kernel: pci 0000:00:14.3: PME# supported from D0 D3hot D3cold
Sep 16 21:48:11  kernel: pci 0000:00:15.0: [8086:51e8] type 00 class 0x0c8000
Sep 16 21:48:11  kernel: pci 0000:00:15.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
Sep 16 21:48:11  kernel: pci 0000:00:15.0: calling  quirk_igfx_skip_te_disable+0x0/0xc0 @ 1
Sep 16 21:48:11  kernel: pci 0000:00:15.0: quirk_igfx_skip_te_disable+0x0/0xc0 took 0 usecs
Sep 16 21:48:11  kernel: pci 0000:00:15.1: [8086:51e9] type 00 class 0x0c8000
Sep 16 21:48:11  kernel: pci 0000:00:15.1: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
Sep 16 21:48:11  kernel: pci 0000:00:15.1: calling  quirk_igfx_skip_te_disable+0x0/0xc0 @ 1
Sep 16 21:48:11  kernel: pci 0000:00:15.1: quirk_igfx_skip_te_disable+0x0/0xc0 took 0 usecs
Sep 16 21:48:11  kernel: pci 0000:00:16.0: [8086:51e0] type 00 class 0x078000
Sep 16 21:48:11  kernel: pci 0000:00:16.0: reg 0x10: [mem 0x6001149000-0x6001149fff 64bit]
Sep 16 21:48:11  kernel: pci 0000:00:16.0: calling  quirk_igfx_skip_te_disable+0x0/0xc0 @ 1
Sep 16 21:48:11  kernel: pci 0000:00:16.0: quirk_igfx_skip_te_disable+0x0/0xc0 took 0 usecs
Sep 16 21:48:11  kernel: pci 0000:00:16.0: PME# supported from D3hot
Sep 16 21:48:11  kernel: pci 0000:00:19.0: [8086:51c5] type 00 class 0x0c8000
Sep 16 21:48:11  kernel: pci 0000:00:19.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
Sep 16 21:48:11  kernel: pci 0000:00:19.0: calling  quirk_igfx_skip_te_disable+0x0/0xc0 @ 1
Sep 16 21:48:11  kernel: pci 0000:00:19.0: quirk_igfx_skip_te_disable+0x0/0xc0 took 0 usecs
Sep 16 21:48:11  kernel: pci 0000:00:19.1: [8086:51c6] type 00 class 0x0c8000
Sep 16 21:48:11  kernel: pci 0000:00:19.1: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
Sep 16 21:48:11  kernel: pci 0000:00:19.1: calling  quirk_igfx_skip_te_disable+0x0/0xc0 @ 1
Sep 16 21:48:11  kernel: pci 0000:00:19.1: quirk_igfx_skip_te_disable+0x0/0xc0 took 0 usecs
Sep 16 21:48:11  kernel: pci 0000:00:1e.0: [8086:51a8] type 00 class 0x078000
Sep 16 21:48:11  kernel: pci 0000:00:1e.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
Sep 16 21:48:11  kernel: pci 0000:00:1e.0: calling  quirk_igfx_skip_te_disable+0x0/0xc0 @ 1
Sep 16 21:48:11  kernel: pci 0000:00:1e.0: quirk_igfx_skip_te_disable+0x0/0xc0 took 0 usecs
Sep 16 21:48:11  kernel: pci 0000:00:1e.2: [8086:51aa] type 00 class 0x0c8000
Sep 16 21:48:11  kernel: pci 0000:00:1e.2: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
Sep 16 21:48:11  kernel: pci 0000:00:1e.2: calling  quirk_igfx_skip_te_disable+0x0/0xc0 @ 1
Sep 16 21:48:11  kernel: pci 0000:00:1e.2: quirk_igfx_skip_te_disable+0x0/0xc0 took 0 usecs
Sep 16 21:48:11  kernel: pci 0000:00:1f.0: [8086:5182] type 00 class 0x060100
Sep 16 21:48:11  kernel: pci 0000:00:1f.0: calling  quirk_igfx_skip_te_disable+0x0/0xc0 @ 1
Sep 16 21:48:11  kernel: pci 0000:00:1f.0: quirk_igfx_skip_te_disable+0x0/0xc0 took 0 usecs
Sep 16 21:48:11  kernel: pci 0000:00:1f.3: [8086:51c8] type 00 class 0x040100
Sep 16 21:48:11  kernel: pci 0000:00:1f.3: reg 0x10: [mem 0x6001138000-0x600113bfff 64bit]
Sep 16 21:48:11  kernel: pci 0000:00:1f.3: reg 0x20: [mem 0x6001000000-0x60010fffff 64bit]
Sep 16 21:48:11  kernel: pci 0000:00:1f.3: calling  quirk_igfx_skip_te_disable+0x0/0xc0 @ 1
Sep 16 21:48:11  kernel: pci 0000:00:1f.3: quirk_igfx_skip_te_disable+0x0/0xc0 took 0 usecs
Sep 16 21:48:11  kernel: pci 0000:00:1f.3: PME# supported from D3hot D3cold
Sep 16 21:48:11  kernel: pci 0000:00:1f.4: [8086:51a3] type 00 class 0x0c0500
Sep 16 21:48:11  kernel: pci 0000:00:1f.4: reg 0x10: [mem 0x6001144000-0x60011440ff 64bit]
Sep 16 21:48:11  kernel: pci 0000:00:1f.4: reg 0x20: [io  0xefa0-0xefbf]
Sep 16 21:48:11  kernel: pci 0000:00:1f.4: calling  quirk_igfx_skip_te_disable+0x0/0xc0 @ 1
Sep 16 21:48:11  kernel: pci 0000:00:1f.4: quirk_igfx_skip_te_disable+0x0/0xc0 took 0 usecs
Sep 16 21:48:11  kernel: pci 0000:00:1f.5: [8086:51a4] type 00 class 0x0c8000
Sep 16 21:48:11  kernel: pci 0000:00:1f.5: reg 0x10: [mem 0xfe010000-0xfe010fff]
Sep 16 21:48:11  kernel: pci 0000:00:1f.5: calling  quirk_igfx_skip_te_disable+0x0/0xc0 @ 1
Sep 16 21:48:11  kernel: pci 0000:00:1f.5: quirk_igfx_skip_te_disable+0x0/0xc0 took 0 usecs
Sep 16 21:48:11  kernel: pci 0000:01:00.0: [1e49:1001] type 00 class 0x010802
Sep 16 21:48:11  kernel: pci 0000:01:00.0: reg 0x10: [mem 0x80400000-0x80403fff 64bit]
Sep 16 21:48:11  kernel: pci 0000:00:06.0: PCI bridge to [bus 01]
Sep 16 21:48:11  kernel: pci 0000:00:06.0:   bridge window [mem 0x80400000-0x804fffff]
Sep 16 21:48:11  kernel: Low-power S0 idle used by default for system suspend
Sep 16 21:48:11  kernel: ACPI: EC: interrupt unblocked
Sep 16 21:48:11  kernel: ACPI: EC: event unblocked
Sep 16 21:48:11  kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
Sep 16 21:48:11  kernel: ACPI: EC: GPE=0x6e
Sep 16 21:48:11  kernel: ACPI: \_SB_.PC00.LPCB.HWEC: Boot ECDT EC initialization complete
Sep 16 21:48:11  kernel: ACPI: \_SB_.PC00.LPCB.HWEC: EC: Used to handle transactions and events
Sep 16 21:48:11  kernel: probe of PNP0C09:00 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: initcall acpi_init+0x0/0x560 returned 0 after 803333 usecs
Sep 16 21:48:11  kernel: calling  adxl_init+0x0/0x1a0 @ 1
Sep 16 21:48:11  kernel: initcall adxl_init+0x0/0x1a0 returned -19 after 0 usecs
Sep 16 21:48:11  kernel: calling  hmat_init+0x0/0x390 @ 1
Sep 16 21:48:11  kernel: initcall hmat_init+0x0/0x390 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  pnp_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall pnp_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  balloon_init+0x0/0x260 @ 1
Sep 16 21:48:11  kernel: initcall balloon_init+0x0/0x260 returned -19 after 0 usecs
Sep 16 21:48:11  kernel: calling  xen_setup_shutdown_event+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall xen_setup_shutdown_event+0x0/0x40 returned -19 after 0 usecs
Sep 16 21:48:11  kernel: calling  xenbus_probe_backend_init+0x0/0x80 @ 1
Sep 16 21:48:11  kernel: initcall xenbus_probe_backend_init+0x0/0x80 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  xenbus_probe_frontend_init+0x0/0x60 @ 1
Sep 16 21:48:11  kernel: initcall xenbus_probe_frontend_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  xen_acpi_pad_init+0x0/0x60 @ 1
Sep 16 21:48:11  kernel: initcall xen_acpi_pad_init+0x0/0x60 returned -19 after 0 usecs
Sep 16 21:48:11  kernel: calling  misc_init+0x0/0xb0 @ 1
Sep 16 21:48:11  kernel: initcall misc_init+0x0/0xb0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  tpm_init+0x0/0xd0 @ 1
Sep 16 21:48:11  kernel: initcall tpm_init+0x0/0xd0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  iommu_subsys_init+0x0/0x180 @ 1
Sep 16 21:48:11  kernel: iommu: Default domain type: Translated
Sep 16 21:48:11  kernel: iommu: DMA domain TLB invalidation policy: lazy mode
Sep 16 21:48:11  kernel: initcall iommu_subsys_init+0x0/0x180 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  cn_init+0x0/0x100 @ 1
Sep 16 21:48:11  kernel: initcall cn_init+0x0/0x100 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  pm860x_i2c_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall pm860x_i2c_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  wm8400_driver_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall wm8400_driver_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  wm831x_i2c_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall wm831x_i2c_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  wm831x_spi_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall wm831x_spi_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  wm8350_i2c_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall wm8350_i2c_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  tps65910_i2c_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall tps65910_i2c_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  ezx_pcap_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall ezx_pcap_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  da903x_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall da903x_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  da9052_spi_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall da9052_spi_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  da9052_i2c_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall da9052_i2c_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  lp8788_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall lp8788_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  da9055_i2c_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall da9055_i2c_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  max77843_i2c_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall max77843_i2c_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  max8925_i2c_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall max8925_i2c_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  max8997_i2c_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall max8997_i2c_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  max8998_i2c_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall max8998_i2c_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  tps6586x_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall tps6586x_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  tps65090_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall tps65090_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  aat2870_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall aat2870_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  palmas_i2c_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall palmas_i2c_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  rc5t583_i2c_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall rc5t583_i2c_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  as3711_i2c_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall as3711_i2c_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  libnvdimm_init+0x0/0x60 @ 1
Sep 16 21:48:11  kernel: initcall libnvdimm_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  dax_core_init+0x0/0xe0 @ 1
Sep 16 21:48:11  kernel: initcall dax_core_init+0x0/0xe0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  dma_buf_init+0x0/0xf0 @ 1
Sep 16 21:48:11  kernel: initcall dma_buf_init+0x0/0xf0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  dma_heap_init+0x0/0x80 @ 1
Sep 16 21:48:11  kernel: initcall dma_heap_init+0x0/0x80 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  init_scsi+0x0/0x90 @ 1
Sep 16 21:48:11  kernel: SCSI subsystem initialized
Sep 16 21:48:11  kernel: initcall init_scsi+0x0/0x90 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  ata_init+0x0/0x440 @ 1
Sep 16 21:48:11  kernel: libata version 3.00 loaded.
Sep 16 21:48:11  kernel: initcall ata_init+0x0/0x440 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  usb_common_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall usb_common_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  usb_init+0x0/0x170 @ 1
Sep 16 21:48:11  kernel: ACPI: bus type USB registered
Sep 16 21:48:11  kernel: usbcore: registered new interface driver usbfs
Sep 16 21:48:11  kernel: usbcore: registered new interface driver hub
Sep 16 21:48:11  kernel: usbcore: registered new device driver usb
Sep 16 21:48:11  kernel: initcall usb_init+0x0/0x170 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  xdbc_init+0x0/0x1d0 @ 1
Sep 16 21:48:11  kernel: initcall xdbc_init+0x0/0x1d0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  input_init+0x0/0x140 @ 1
Sep 16 21:48:11  kernel: initcall input_init+0x0/0x140 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  rtc_init+0x0/0x50 @ 1
Sep 16 21:48:11  kernel: initcall rtc_init+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  dw_i2c_init_driver+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall dw_i2c_init_driver+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  rc_core_init+0x0/0x90 @ 1
Sep 16 21:48:11  kernel: initcall rc_core_init+0x0/0x90 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  pps_init+0x0/0xc0 @ 1
Sep 16 21:48:11  kernel: pps_core: LinuxPPS API ver. 1 registered
Sep 16 21:48:11  kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Sep 16 21:48:11  kernel: initcall pps_init+0x0/0xc0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  ptp_init+0x0/0xb0 @ 1
Sep 16 21:48:11  kernel: PTP clock support registered
Sep 16 21:48:11  kernel: initcall ptp_init+0x0/0xb0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  power_supply_class_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall power_supply_class_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  hwmon_init+0x0/0x110 @ 1
Sep 16 21:48:11  kernel: initcall hwmon_init+0x0/0x110 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  edac_init+0x0/0x80 @ 1
Sep 16 21:48:11  kernel: EDAC MC: Ver: 3.0.0
Sep 16 21:48:11  kernel: initcall edac_init+0x0/0x80 returned 0 after 3333 usecs
Sep 16 21:48:11  kernel: calling  leds_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall leds_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  dmi_init+0x0/0x130 @ 1
Sep 16 21:48:11  kernel: initcall dmi_init+0x0/0x130 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  efisubsys_init+0x0/0x710 @ 1
Sep 16 21:48:11  kernel: efivars: Registered efivars operations
Sep 16 21:48:11  kernel: initcall efisubsys_init+0x0/0x710 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  intel_scu_ipc_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall intel_scu_ipc_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  remoteproc_init+0x0/0x80 @ 1
Sep 16 21:48:11  kernel: initcall remoteproc_init+0x0/0x80 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  devfreq_init+0x0/0xd0 @ 1
Sep 16 21:48:11  kernel: initcall devfreq_init+0x0/0xd0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  devfreq_event_init+0x0/0x60 @ 1
Sep 16 21:48:11  kernel: initcall devfreq_event_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  ras_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall ras_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  nvmem_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall nvmem_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  hte_subsys_dbgfs_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall hte_subsys_dbgfs_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  proto_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall proto_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  net_dev_init+0x0/0x280 @ 1
Sep 16 21:48:11  kernel: initcall net_dev_init+0x0/0x280 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  neigh_init+0x0/0x90 @ 1
Sep 16 21:48:11  kernel: initcall neigh_init+0x0/0x90 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  fib_notifier_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall fib_notifier_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  netdev_genl_init+0x0/0x50 @ 1
Sep 16 21:48:11  kernel: initcall netdev_genl_init+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  fib_rules_init+0x0/0xc0 @ 1
Sep 16 21:48:11  kernel: initcall fib_rules_init+0x0/0xc0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  init_cgroup_netprio+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall init_cgroup_netprio+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  bpf_lwt_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall bpf_lwt_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  pktsched_init+0x0/0x140 @ 1
Sep 16 21:48:11  kernel: initcall pktsched_init+0x0/0x140 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  tc_filter_init+0x0/0x130 @ 1
Sep 16 21:48:11  kernel: initcall tc_filter_init+0x0/0x130 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  tc_action_init+0x0/0x60 @ 1
Sep 16 21:48:11  kernel: initcall tc_action_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  ethnl_init+0x0/0x80 @ 1
Sep 16 21:48:11  kernel: initcall ethnl_init+0x0/0x80 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  nexthop_init+0x0/0x100 @ 1
Sep 16 21:48:11  kernel: initcall nexthop_init+0x0/0x100 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  cipso_v4_init+0x0/0xb0 @ 1
Sep 16 21:48:11  kernel: initcall cipso_v4_init+0x0/0xb0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  devlink_init+0x0/0x70 @ 1
Sep 16 21:48:11  kernel: initcall devlink_init+0x0/0x70 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  wireless_nlevent_init+0x0/0x60 @ 1
Sep 16 21:48:11  kernel: initcall wireless_nlevent_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  netlbl_init+0x0/0x90 @ 1
Sep 16 21:48:11  kernel: NetLabel: Initializing
Sep 16 21:48:11  kernel: NetLabel:  domain hash size = 128
Sep 16 21:48:11  kernel: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
Sep 16 21:48:11  kernel: NetLabel:  unlabeled traffic allowed by default
Sep 16 21:48:11  kernel: initcall netlbl_init+0x0/0x90 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  ncsi_init_netlink+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall ncsi_init_netlink+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  mctp_init+0x0/0x90 @ 1
Sep 16 21:48:11  kernel: mctp: management component transport protocol core
Sep 16 21:48:11  kernel: NET: Registered PF_MCTP protocol family
Sep 16 21:48:11  kernel: initcall mctp_init+0x0/0x90 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  pci_subsys_init+0x0/0x90 @ 1
Sep 16 21:48:11  kernel: PCI: Using ACPI for IRQ routing
Sep 16 21:48:11  kernel: PCI: pci_cache_line_size set to 64 bytes
Sep 16 21:48:11  kernel: pci 0000:00:1f.5: can't claim BAR 0 [mem 0xfe010000-0xfe010fff]: no compatible bridge window
Sep 16 21:48:11  kernel: e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
Sep 16 21:48:11  kernel: e820: reserve RAM buffer [mem 0x6636f000-0x67ffffff]
Sep 16 21:48:11  kernel: e820: reserve RAM buffer [mem 0x667b0000-0x67ffffff]
Sep 16 21:48:11  kernel: e820: reserve RAM buffer [mem 0x6d4dd000-0x6fffffff]
Sep 16 21:48:11  kernel: e820: reserve RAM buffer [mem 0x6fbff000-0x6fffffff]
Sep 16 21:48:11  kernel: e820: reserve RAM buffer [mem 0x74c00000-0x77ffffff]
Sep 16 21:48:11  kernel: e820: reserve RAM buffer [mem 0x47fc00000-0x47fffffff]
Sep 16 21:48:11  kernel: initcall pci_subsys_init+0x0/0x90 returned 0 after 123333 usecs
Sep 16 21:48:11  kernel: calling  vsprintf_init_hashval+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall vsprintf_init_hashval+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  efi_runtime_map_init+0x0/0x230 @ 1
Sep 16 21:48:11  kernel: initcall efi_runtime_map_init+0x0/0x230 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  vga_arb_device_init+0x0/0x90 @ 1
Sep 16 21:48:11  kernel: pci 0000:00:02.0: vgaarb: setting as boot VGA device
Sep 16 21:48:11  kernel: pci 0000:00:02.0: vgaarb: bridge control possible
Sep 16 21:48:11  kernel: pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
Sep 16 21:48:11  kernel: vgaarb: loaded
Sep 16 21:48:11  kernel: initcall vga_arb_device_init+0x0/0x90 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  watchdog_init+0x0/0xc0 @ 1
Sep 16 21:48:11  kernel: initcall watchdog_init+0x0/0xc0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  nmi_warning_debugfs+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall nmi_warning_debugfs+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  save_microcode_in_initrd+0x0/0xc0 @ 1
Sep 16 21:48:11  kernel: initcall save_microcode_in_initrd+0x0/0xc0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  hpet_late_init+0x0/0x440 @ 1
Sep 16 21:48:11  kernel: initcall hpet_late_init+0x0/0x440 returned -19 after 0 usecs
Sep 16 21:48:11  kernel: calling  init_amd_nbs+0x0/0x4f0 @ 1
Sep 16 21:48:11  kernel: initcall init_amd_nbs+0x0/0x4f0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  iomem_init_inode+0x0/0x90 @ 1
Sep 16 21:48:11  kernel: initcall iomem_init_inode+0x0/0x90 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  init_lockevent_counts+0x0/0xf0 @ 1
Sep 16 21:48:11  kernel: initcall init_lockevent_counts+0x0/0xf0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  em_debug_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall em_debug_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  clocksource_done_booting+0x0/0x50 @ 1
Sep 16 21:48:11  kernel: clocksource: Switched to clocksource tsc-early
Sep 16 21:48:11  kernel: initcall clocksource_done_booting+0x0/0x50 returned 0 after 22 usecs
Sep 16 21:48:11  kernel: calling  tracer_init_tracefs+0x0/0xd0 @ 1
Sep 16 21:48:11  kernel: initcall tracer_init_tracefs+0x0/0xd0 returned 0 after 5 usecs
Sep 16 21:48:11  kernel: calling  init_trace_printk_function_export+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall init_trace_printk_function_export+0x0/0x30 returned 0 after 26 usecs
Sep 16 21:48:11  kernel: calling  init_graph_tracefs+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall init_graph_tracefs+0x0/0x30 returned 0 after 11 usecs
Sep 16 21:48:11  kernel: calling  trace_events_synth_init+0x0/0x50 @ 1
Sep 16 21:48:11  kernel: initcall trace_events_synth_init+0x0/0x50 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  trace_events_user_init+0x0/0x1f0 @ 1
Sep 16 21:48:11  kernel: initcall trace_events_user_init+0x0/0x1f0 returned 0 after 5 usecs
Sep 16 21:48:11  kernel: calling  bpf_event_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall bpf_event_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  init_kprobe_trace+0x0/0x200 @ 1
Sep 16 21:48:11  kernel: initcall init_kprobe_trace+0x0/0x200 returned 0 after 312 usecs
Sep 16 21:48:11  kernel: calling  init_dynamic_event+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall init_dynamic_event+0x0/0x30 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  init_uprobe_trace+0x0/0x70 @ 1
Sep 16 21:48:11  kernel: initcall init_uprobe_trace+0x0/0x70 returned 0 after 3 usecs
Sep 16 21:48:11  kernel: calling  bpf_init+0x0/0x70 @ 1
Sep 16 21:48:11  kernel: initcall bpf_init+0x0/0x70 returned 0 after 2 usecs
Sep 16 21:48:11  kernel: calling  btf_module_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall btf_module_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  secretmem_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall secretmem_init+0x0/0x40 returned 0 after 7 usecs
Sep 16 21:48:11  kernel: calling  init_fs_stat_sysctls+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall init_fs_stat_sysctls+0x0/0x40 returned 0 after 3 usecs
Sep 16 21:48:11  kernel: calling  init_fs_exec_sysctls+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall init_fs_exec_sysctls+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  init_pipe_fs+0x0/0x70 @ 1
Sep 16 21:48:11  kernel: initcall init_pipe_fs+0x0/0x70 returned 0 after 5 usecs
Sep 16 21:48:11  kernel: calling  init_fs_namei_sysctls+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall init_fs_namei_sysctls+0x0/0x30 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  init_fs_dcache_sysctls+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall init_fs_dcache_sysctls+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  init_fs_namespace_sysctls+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall init_fs_namespace_sysctls+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  cgroup_writeback_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall cgroup_writeback_init+0x0/0x40 returned 0 after 5 usecs
Sep 16 21:48:11  kernel: calling  inotify_user_setup+0x0/0x100 @ 1
Sep 16 21:48:11  kernel: initcall inotify_user_setup+0x0/0x100 returned 0 after 2 usecs
Sep 16 21:48:11  kernel: calling  eventpoll_init+0x0/0x120 @ 1
Sep 16 21:48:11  kernel: initcall eventpoll_init+0x0/0x120 returned 0 after 10 usecs
Sep 16 21:48:11  kernel: calling  anon_inode_init+0x0/0x70 @ 1
Sep 16 21:48:11  kernel: initcall anon_inode_init+0x0/0x70 returned 0 after 4 usecs
Sep 16 21:48:11  kernel: calling  init_dax_wait_table+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall init_dax_wait_table+0x0/0x40 returned 0 after 8 usecs
Sep 16 21:48:11  kernel: calling  proc_locks_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall proc_locks_init+0x0/0x30 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  init_fs_coredump_sysctls+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall init_fs_coredump_sysctls+0x0/0x30 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  iomap_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall iomap_init+0x0/0x30 returned 0 after 22 usecs
Sep 16 21:48:11  kernel: calling  dquot_init+0x0/0x160 @ 1
Sep 16 21:48:11  kernel: VFS: Disk quotas dquot_6.6.0
Sep 16 21:48:11  kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Sep 16 21:48:11  kernel: initcall dquot_init+0x0/0x160 returned 0 after 12 usecs
Sep 16 21:48:11  kernel: calling  quota_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall quota_init+0x0/0x40 returned 0 after 4 usecs
Sep 16 21:48:11  kernel: calling  proc_cmdline_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall proc_cmdline_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  proc_consoles_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall proc_consoles_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  proc_cpuinfo_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall proc_cpuinfo_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  proc_devices_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall proc_devices_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  proc_interrupts_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall proc_interrupts_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  proc_loadavg_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall proc_loadavg_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  proc_meminfo_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall proc_meminfo_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  proc_stat_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall proc_stat_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  proc_uptime_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall proc_uptime_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  proc_version_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall proc_version_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  proc_softirqs_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall proc_softirqs_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  proc_kcore_init+0x0/0x230 @ 1
Sep 16 21:48:11  kernel: initcall proc_kcore_init+0x0/0x230 returned 0 after 3 usecs
Sep 16 21:48:11  kernel: calling  vmcore_init+0x0/0x730 @ 1
Sep 16 21:48:11  kernel: initcall vmcore_init+0x0/0x730 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  proc_kmsg_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall proc_kmsg_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  proc_page_init+0x0/0x60 @ 1
Sep 16 21:48:11  kernel: initcall proc_page_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  proc_boot_config_init+0x0/0x90 @ 1
Sep 16 21:48:11  kernel: initcall proc_boot_config_init+0x0/0x90 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  init_ramfs_fs+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall init_ramfs_fs+0x0/0x20 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  init_hugetlbfs_fs+0x0/0x170 @ 1
Sep 16 21:48:11  kernel: initcall init_hugetlbfs_fs+0x0/0x170 returned 0 after 16 usecs
Sep 16 21:48:11  kernel: calling  tomoyo_initerface_init+0x0/0x190 @ 1
Sep 16 21:48:11  kernel: initcall tomoyo_initerface_init+0x0/0x190 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  aa_create_aafs+0x0/0x410 @ 1
Sep 16 21:48:11  kernel: initcall aa_create_aafs+0x0/0x410 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  safesetid_init_securityfs+0x0/0xb0 @ 1
Sep 16 21:48:11  kernel: initcall safesetid_init_securityfs+0x0/0xb0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  dynamic_debug_init_control+0x0/0x90 @ 1
Sep 16 21:48:11  kernel: initcall dynamic_debug_init_control+0x0/0x90 returned 0 after 3 usecs
Sep 16 21:48:11  kernel: calling  acpi_event_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall acpi_event_init+0x0/0x40 returned 0 after 2 usecs
Sep 16 21:48:11  kernel: calling  acpi_init_fpdt+0x0/0x3b0 @ 1
Sep 16 21:48:11  kernel: initcall acpi_init_fpdt+0x0/0x3b0 returned 0 after 20 usecs
Sep 16 21:48:11  kernel: calling  pnp_system_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall pnp_system_init+0x0/0x20 returned 0 after 4 usecs
Sep 16 21:48:11  kernel: calling  pnpacpi_init+0x0/0x80 @ 1
Sep 16 21:48:11  kernel: pnp: PnP ACPI init
Sep 16 21:48:11  kernel: system 00:00: [io  0x0680-0x069f] has been reserved
Sep 16 21:48:11  kernel: system 00:00: [io  0x164e-0x164f] has been reserved
Sep 16 21:48:11  kernel: probe of 00:00 returned 0 after 12 usecs
Sep 16 21:48:11  kernel: system 00:02: [io  0x1854-0x1857] has been reserved
Sep 16 21:48:11  kernel: probe of 00:02 returned 0 after 6 usecs
Sep 16 21:48:11  kernel: pnp 00:04: disabling [mem 0xc0000000-0xcfffffff] because it overlaps 0000:00:02.0 BAR 9 [mem 0x00000000-0xdfffffff 64bit pref]
Sep 16 21:48:11  kernel: system 00:04: [mem 0xfedc0000-0xfedc7fff] has been reserved
Sep 16 21:48:11  kernel: system 00:04: [mem 0xfeda0000-0xfeda0fff] has been reserved
Sep 16 21:48:11  kernel: system 00:04: [mem 0xfeda1000-0xfeda1fff] has been reserved
Sep 16 21:48:11  kernel: system 00:04: [mem 0xfed20000-0xfed7ffff] could not be reserved
Sep 16 21:48:11  kernel: system 00:04: [mem 0xfed90000-0xfed93fff] could not be reserved
Sep 16 21:48:11  kernel: system 00:04: [mem 0xfed45000-0xfed8ffff] could not be reserved
Sep 16 21:48:11  kernel: system 00:04: [mem 0xfee00000-0xfeefffff] has been reserved
Sep 16 21:48:11  kernel: probe of 00:04 returned 0 after 21 usecs
Sep 16 21:48:11  kernel: system 00:05: [io  0x2000-0x20fe] has been reserved
Sep 16 21:48:11  kernel: probe of 00:05 returned 0 after 5 usecs
Sep 16 21:48:11  kernel: probe of 00:06 returned 0 after 2 usecs
Sep 16 21:48:11  kernel: pnp: PnP ACPI: found 7 devices
Sep 16 21:48:11  kernel: initcall pnpacpi_init+0x0/0x80 returned 0 after 28513 usecs
Sep 16 21:48:11  kernel: calling  chr_dev_init+0x0/0xa0 @ 1
Sep 16 21:48:11  kernel: initcall chr_dev_init+0x0/0xa0 returned 0 after 897 usecs
Sep 16 21:48:11  kernel: calling  hwrng_modinit+0x0/0xb0 @ 1
Sep 16 21:48:11  kernel: initcall hwrng_modinit+0x0/0xb0 returned 0 after 20 usecs
Sep 16 21:48:11  kernel: calling  firmware_class_init+0x0/0x110 @ 1
Sep 16 21:48:11  kernel: initcall firmware_class_init+0x0/0x110 returned 0 after 7 usecs
Sep 16 21:48:11  kernel: calling  map_properties+0x0/0x600 @ 1
Sep 16 21:48:11  kernel: initcall map_properties+0x0/0x600 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  efi_mokvar_sysfs_init+0x0/0x1b0 @ 1
Sep 16 21:48:11  kernel: initcall efi_mokvar_sysfs_init+0x0/0x1b0 returned -2 after 0 usecs
Sep 16 21:48:11  kernel: calling  init_acpi_pm_clocksource+0x0/0x100 @ 1
Sep 16 21:48:11  kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Sep 16 21:48:11  kernel: initcall init_acpi_pm_clocksource+0x0/0x100 returned 0 after 4507 usecs
Sep 16 21:48:11  kernel: calling  powercap_init+0x0/0x290 @ 1
Sep 16 21:48:11  kernel: initcall powercap_init+0x0/0x290 returned 0 after 15 usecs
Sep 16 21:48:11  kernel: calling  sysctl_core_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall sysctl_core_init+0x0/0x40 returned 0 after 16 usecs
Sep 16 21:48:11  kernel: calling  eth_offload_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall eth_offload_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  ipv4_offload_init+0x0/0xa0 @ 1
Sep 16 21:48:11  kernel: initcall ipv4_offload_init+0x0/0xa0 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  inet_init+0x0/0x2f0 @ 1
Sep 16 21:48:11  kernel: NET: Registered PF_INET protocol family
Sep 16 21:48:11  kernel: IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
Sep 16 21:48:11  kernel: tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
Sep 16 21:48:11  kernel: Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
Sep 16 21:48:11  kernel: TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
Sep 16 21:48:11  kernel: TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
Sep 16 21:48:11  kernel: TCP: Hash tables configured (established 131072 bind 65536)
Sep 16 21:48:11  kernel: MPTCP token hash table entries: 16384 (order: 6, 393216 bytes, linear)
Sep 16 21:48:11  kernel: UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
Sep 16 21:48:11  kernel: UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
Sep 16 21:48:11  kernel: initcall inet_init+0x0/0x2f0 returned 0 after 3436 usecs
Sep 16 21:48:11  kernel: calling  af_unix_init+0x0/0x100 @ 1
Sep 16 21:48:11  kernel: NET: Registered PF_UNIX/PF_LOCAL protocol family
Sep 16 21:48:11  kernel: initcall af_unix_init+0x0/0x100 returned 0 after 9 usecs
Sep 16 21:48:11  kernel: calling  ipv6_offload_init+0x0/0xa0 @ 1
Sep 16 21:48:11  kernel: initcall ipv6_offload_init+0x0/0xa0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  vlan_offload_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall vlan_offload_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  xsk_init+0x0/0xe0 @ 1
Sep 16 21:48:11  kernel: NET: Registered PF_XDP protocol family
Sep 16 21:48:11  kernel: initcall xsk_init+0x0/0xe0 returned 0 after 2 usecs
Sep 16 21:48:11  kernel: calling  pcibios_assign_resources+0x0/0xf0 @ 1
Sep 16 21:48:11  kernel: pci 0000:00:02.0: BAR 9: assigned [mem 0x4020000000-0x40ffffffff 64bit pref]
Sep 16 21:48:11  kernel: pci 0000:00:02.0: BAR 7: assigned [mem 0x4010000000-0x4016ffffff 64bit]
Sep 16 21:48:11  kernel: pci 0000:00:15.0: BAR 0: assigned [mem 0x4017000000-0x4017000fff 64bit]
Sep 16 21:48:11  kernel: pci 0000:00:15.1: BAR 0: assigned [mem 0x4017001000-0x4017001fff 64bit]
Sep 16 21:48:11  kernel: pci 0000:00:19.0: BAR 0: assigned [mem 0x4017002000-0x4017002fff 64bit]
Sep 16 21:48:11  kernel: pci 0000:00:19.1: BAR 0: assigned [mem 0x4017003000-0x4017003fff 64bit]
Sep 16 21:48:11  kernel: pci 0000:00:1e.0: BAR 0: assigned [mem 0x4017004000-0x4017004fff 64bit]
Sep 16 21:48:11  kernel: pci 0000:00:1e.2: BAR 0: assigned [mem 0x4017005000-0x4017005fff 64bit]
Sep 16 21:48:11  kernel: pci 0000:00:1f.5: BAR 0: assigned [mem 0x80510000-0x80510fff]
Sep 16 21:48:11  kernel: pci 0000:00:06.0: PCI bridge to [bus 01]
Sep 16 21:48:11  kernel: pci 0000:00:06.0:   bridge window [mem 0x80400000-0x804fffff]
Sep 16 21:48:11  kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
Sep 16 21:48:11  kernel: pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
Sep 16 21:48:11  kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
Sep 16 21:48:11  kernel: pci_bus 0000:00: resource 7 [mem 0x80400000-0xbfffffff window]
Sep 16 21:48:11  kernel: pci_bus 0000:00: resource 8 [mem 0x4000000000-0x7fffffffff window]
Sep 16 21:48:11  kernel: pci_bus 0000:01: resource 1 [mem 0x80400000-0x804fffff]
Sep 16 21:48:11  kernel: initcall pcibios_assign_resources+0x0/0xf0 returned 0 after 2533 usecs
Sep 16 21:48:11  kernel: calling  pci_apply_final_quirks+0x0/0x170 @ 1
Sep 16 21:48:11  kernel: pci 0000:00:0d.0: calling  quirk_usb_early_handoff+0x0/0x7d0 @ 1
Sep 16 21:48:11  kernel: pci 0000:00:0d.0: quirk_usb_early_handoff+0x0/0x7d0 took 21 usecs
Sep 16 21:48:11  kernel: pci 0000:00:14.0: calling  quirk_usb_early_handoff+0x0/0x7d0 @ 1
Sep 16 21:48:11  kernel: pci 0000:00:14.0: quirk_usb_early_handoff+0x0/0x7d0 took 1553 usecs
Sep 16 21:48:11  kernel: PCI: CLS 64 bytes, default 64
Sep 16 21:48:11  kernel: initcall pci_apply_final_quirks+0x0/0x170 returned 0 after 2786 usecs
Sep 16 21:48:11  kernel: calling  acpi_reserve_resources+0x0/0x110 @ 1
Sep 16 21:48:11  kernel: initcall acpi_reserve_resources+0x0/0x110 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  p2sb_fs_init+0x0/0x190 @ 1
Sep 16 21:48:11  kernel: initcall p2sb_fs_init+0x0/0x190 returned -2 after 101 usecs
Sep 16 21:48:11  kernel: calling  populate_rootfs+0x0/0x90 @ 1
Sep 16 21:48:11  kernel: initcall populate_rootfs+0x0/0x90 returned 0 after 2 usecs
Sep 16 21:48:11  kernel: calling  pci_iommu_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Sep 16 21:48:11  kernel: software IO TLB: mapped [mem 0x000000005f0fb000-0x00000000630fb000] (64MB)
Sep 16 21:48:11  kernel: initcall pci_iommu_init+0x0/0x40 returned 0 after 15 usecs
Sep 16 21:48:11  kernel: calling  ir_dev_scope_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall ir_dev_scope_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: Trying to unpack rootfs image as initramfs...
Sep 16 21:48:11  kernel: calling  ia32_binfmt_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall ia32_binfmt_init+0x0/0x30 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  amd_ibs_init+0x0/0x420 @ 1
Sep 16 21:48:11  kernel: initcall amd_ibs_init+0x0/0x420 returned -19 after 0 usecs
Sep 16 21:48:11  kernel: calling  amd_iommu_pc_init+0x0/0x290 @ 1
Sep 16 21:48:11  kernel: initcall amd_iommu_pc_init+0x0/0x290 returned -19 after 0 usecs
Sep 16 21:48:11  kernel: calling  msr_init+0x0/0x70 @ 1
Sep 16 21:48:11  kernel: initcall msr_init+0x0/0x70 returned 0 after 6 usecs
Sep 16 21:48:11  kernel: calling  register_kernel_offset_dumper+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall register_kernel_offset_dumper+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  i8259A_init_ops+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall i8259A_init_ops+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  init_tsc_clocksource+0x0/0xd0 @ 1
Sep 16 21:48:11  kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x26bef67878b, max_idle_ns: 440795293631 ns
Sep 16 21:48:11  kernel: clocksource: Switched to clocksource tsc
Sep 16 21:48:11  kernel: initcall init_tsc_clocksource+0x0/0xd0 returned 0 after 191 usecs
Sep 16 21:48:11  kernel: calling  add_rtc_cmos+0x0/0xa0 @ 1
Sep 16 21:48:11  kernel: initcall add_rtc_cmos+0x0/0xa0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  i8237A_init_ops+0x0/0x50 @ 1
Sep 16 21:48:11  kernel: initcall i8237A_init_ops+0x0/0x50 returned -19 after 35 usecs
Sep 16 21:48:11  kernel: calling  umwait_init+0x0/0xb0 @ 1
Sep 16 21:48:11  kernel: initcall umwait_init+0x0/0xb0 returned 0 after 6252 usecs
Sep 16 21:48:11  kernel: calling  sgx_init+0x0/0x480 @ 1
Sep 16 21:48:11  kernel: initcall sgx_init+0x0/0x480 returned -19 after 0 usecs
Sep 16 21:48:11  kernel: calling  msr_init+0x0/0xe0 @ 1
Sep 16 21:48:11  kernel: initcall msr_init+0x0/0xe0 returned 0 after 1571 usecs
Sep 16 21:48:11  kernel: calling  cpuid_init+0x0/0xe0 @ 1
Sep 16 21:48:11  kernel: initcall cpuid_init+0x0/0xe0 returned 0 after 769 usecs
Sep 16 21:48:11  kernel: calling  ioapic_init_ops+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall ioapic_init_ops+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  register_e820_pmem+0x0/0x80 @ 1
Sep 16 21:48:11  kernel: initcall register_e820_pmem+0x0/0x80 returned 0 after 6 usecs
Sep 16 21:48:11  kernel: calling  add_pcspkr+0x0/0x80 @ 1
Sep 16 21:48:11  kernel: initcall add_pcspkr+0x0/0x80 returned 0 after 15 usecs
Sep 16 21:48:11  kernel: calling  start_periodic_check_for_corruption+0x0/0x60 @ 1
Sep 16 21:48:11  kernel: initcall start_periodic_check_for_corruption+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  snp_init_platform_device+0x0/0xa0 @ 1
Sep 16 21:48:11  kernel: initcall snp_init_platform_device+0x0/0xa0 returned -19 after 0 usecs
Sep 16 21:48:11  kernel: calling  audit_classes_init+0x0/0xc0 @ 1
Sep 16 21:48:11  kernel: initcall audit_classes_init+0x0/0xc0 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  pt_dump_init+0x0/0x90 @ 1
Sep 16 21:48:11  kernel: initcall pt_dump_init+0x0/0x90 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  iosf_mbi_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall iosf_mbi_init+0x0/0x30 returned 0 after 8 usecs
Sep 16 21:48:11  kernel: calling  proc_execdomains_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall proc_execdomains_init+0x0/0x30 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  register_warn_debugfs+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall register_warn_debugfs+0x0/0x30 returned 0 after 7 usecs
Sep 16 21:48:11  kernel: calling  cpuhp_sysfs_init+0x0/0xf0 @ 1
Sep 16 21:48:11  kernel: initcall cpuhp_sysfs_init+0x0/0xf0 returned 0 after 28 usecs
Sep 16 21:48:11  kernel: calling  ioresources_init+0x0/0x60 @ 1
Sep 16 21:48:11  kernel: initcall ioresources_init+0x0/0x60 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  psi_proc_init+0x0/0xa0 @ 1
Sep 16 21:48:11  kernel: initcall psi_proc_init+0x0/0xa0 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  snapshot_device_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall snapshot_device_init+0x0/0x20 returned 0 after 12 usecs
Sep 16 21:48:11  kernel: calling  irq_gc_init_ops+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall irq_gc_init_ops+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  irq_pm_init_ops+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall irq_pm_init_ops+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  module_debugfs_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall module_debugfs_init+0x0/0x30 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  proc_modules_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall proc_modules_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  unloaded_tainted_modules_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall unloaded_tainted_modules_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  timer_sysctl_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall timer_sysctl_init+0x0/0x30 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  timekeeping_init_ops+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall timekeeping_init_ops+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  init_clocksource_sysfs+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall init_clocksource_sysfs+0x0/0x30 returned 0 after 15 usecs
Sep 16 21:48:11  kernel: calling  init_timer_list_procfs+0x0/0x50 @ 1
Sep 16 21:48:11  kernel: initcall init_timer_list_procfs+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  alarmtimer_init+0x0/0xf0 @ 1
Sep 16 21:48:11  kernel: initcall alarmtimer_init+0x0/0xf0 returned 0 after 17 usecs
Sep 16 21:48:11  kernel: calling  init_posix_timers+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall init_posix_timers+0x0/0x40 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  clockevents_init_sysfs+0x0/0xd0 @ 1
Sep 16 21:48:11  kernel: initcall clockevents_init_sysfs+0x0/0xd0 returned 0 after 101 usecs
Sep 16 21:48:11  kernel: calling  proc_dma_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall proc_dma_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  kallsyms_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall kallsyms_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  pid_namespaces_init+0x0/0x70 @ 1
Sep 16 21:48:11  kernel: initcall pid_namespaces_init+0x0/0x70 returned 0 after 4 usecs
Sep 16 21:48:11  kernel: calling  ikconfig_init+0x0/0x50 @ 1
Sep 16 21:48:11  kernel: initcall ikconfig_init+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  audit_watch_init+0x0/0x50 @ 1
Sep 16 21:48:11  kernel: initcall audit_watch_init+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  audit_fsnotify_init+0x0/0x50 @ 1
Sep 16 21:48:11  kernel: initcall audit_fsnotify_init+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  audit_tree_init+0x0/0xa0 @ 1
Sep 16 21:48:11  kernel: initcall audit_tree_init+0x0/0xa0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  seccomp_sysctl_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall seccomp_sysctl_init+0x0/0x30 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  utsname_sysctl_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall utsname_sysctl_init+0x0/0x30 returned 0 after 2 usecs
Sep 16 21:48:11  kernel: calling  init_tracepoints+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall init_tracepoints+0x0/0x40 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  stack_trace_init+0x0/0xc0 @ 1
Sep 16 21:48:11  kernel: initcall stack_trace_init+0x0/0xc0 returned 0 after 6 usecs
Sep 16 21:48:11  kernel: calling  init_mmio_trace+0x0/0x10 @ 1
Sep 16 21:48:11  kernel: initcall init_mmio_trace+0x0/0x10 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  init_blk_tracer+0x0/0x60 @ 1
Sep 16 21:48:11  kernel: initcall init_blk_tracer+0x0/0x60 returned 0 after 4 usecs
Sep 16 21:48:11  kernel: calling  perf_event_sysfs_init+0x0/0xb0 @ 1
Sep 16 21:48:11  kernel: initcall perf_event_sysfs_init+0x0/0xb0 returned 0 after 88 usecs
Sep 16 21:48:11  kernel: calling  system_trusted_keyring_init+0x0/0x100 @ 1
Sep 16 21:48:11  kernel: Initialise system trusted keyrings
Sep 16 21:48:11  kernel: initcall system_trusted_keyring_init+0x0/0x100 returned 0 after 6 usecs
Sep 16 21:48:11  kernel: calling  blacklist_init+0x0/0x100 @ 1
Sep 16 21:48:11  kernel: Key type blacklist registered
Sep 16 21:48:11  kernel: initcall blacklist_init+0x0/0x100 returned 0 after 2 usecs
Sep 16 21:48:11  kernel: calling  kswapd_init+0x0/0x80 @ 1
Sep 16 21:48:11  kernel: initcall kswapd_init+0x0/0x80 returned 0 after 37 usecs
Sep 16 21:48:11  kernel: calling  extfrag_debug_init+0x0/0x60 @ 1
Sep 16 21:48:11  kernel: initcall extfrag_debug_init+0x0/0x60 returned 0 after 2 usecs
Sep 16 21:48:11  kernel: calling  mm_compute_batch_init+0x0/0x80 @ 1
Sep 16 21:48:11  kernel: initcall mm_compute_batch_init+0x0/0x80 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  slab_proc_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall slab_proc_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  workingset_init+0x0/0xc0 @ 1
Sep 16 21:48:11  kernel: workingset: timestamp_bits=41 max_order=22 bucket_order=0
Sep 16 21:48:11  kernel: initcall workingset_init+0x0/0xc0 returned 0 after 3 usecs
Sep 16 21:48:11  kernel: calling  proc_vmalloc_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall proc_vmalloc_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  procswaps_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall procswaps_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  slab_debugfs_init+0x0/0x90 @ 1
Sep 16 21:48:11  kernel: initcall slab_debugfs_init+0x0/0x90 returned 0 after 5 usecs
Sep 16 21:48:11  kernel: calling  init_zbud+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: zbud: loaded
Sep 16 21:48:11  kernel: initcall init_zbud+0x0/0x30 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  zs_init+0x0/0x90 @ 1
Sep 16 21:48:11  kernel: initcall zs_init+0x0/0x90 returned 0 after 13 usecs
Sep 16 21:48:11  kernel: calling  init_z3fold+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall init_z3fold+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  damon_dbgfs_init+0x0/0x1a0 @ 1
Sep 16 21:48:11  kernel: initcall damon_dbgfs_init+0x0/0x1a0 returned 0 after 5 usecs
Sep 16 21:48:11  kernel: calling  damon_reclaim_init+0x0/0x60 @ 1
Sep 16 21:48:11  kernel: initcall damon_reclaim_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  damon_lru_sort_init+0x0/0x60 @ 1
Sep 16 21:48:11  kernel: initcall damon_lru_sort_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  fcntl_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall fcntl_init+0x0/0x40 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  proc_filesystems_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall proc_filesystems_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  start_dirtytime_writeback+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall start_dirtytime_writeback+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  dio_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall dio_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  dnotify_init+0x0/0xb0 @ 1
Sep 16 21:48:11  kernel: initcall dnotify_init+0x0/0xb0 returned 0 after 9 usecs
Sep 16 21:48:11  kernel: calling  fanotify_user_setup+0x0/0x170 @ 1
Sep 16 21:48:11  kernel: initcall fanotify_user_setup+0x0/0x170 returned 0 after 3 usecs
Sep 16 21:48:11  kernel: calling  userfaultfd_init+0x0/0x70 @ 1
Sep 16 21:48:11  kernel: initcall userfaultfd_init+0x0/0x70 returned 0 after 20 usecs
Sep 16 21:48:11  kernel: calling  aio_setup+0x0/0xa0 @ 1
Sep 16 21:48:11  kernel: initcall aio_setup+0x0/0xa0 returned 0 after 13 usecs
Sep 16 21:48:11  kernel: calling  init_devpts_fs+0x0/0x50 @ 1
Sep 16 21:48:11  kernel: initcall init_devpts_fs+0x0/0x50 returned 0 after 2 usecs
Sep 16 21:48:11  kernel: calling  init_nls_cp437+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall init_nls_cp437+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  init_nls_ascii+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall init_nls_ascii+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  init_autofs_fs+0x0/0x50 @ 1
Sep 16 21:48:11  kernel: initcall init_autofs_fs+0x0/0x50 returned 0 after 11 usecs
Sep 16 21:48:11  kernel: calling  efivarfs_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall efivarfs_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  ipc_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall ipc_init+0x0/0x30 returned 0 after 4 usecs
Sep 16 21:48:11  kernel: calling  ipc_sysctl_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall ipc_sysctl_init+0x0/0x40 returned 0 after 7 usecs
Sep 16 21:48:11  kernel: calling  init_mqueue_fs+0x0/0xc0 @ 1
Sep 16 21:48:11  kernel: initcall init_mqueue_fs+0x0/0xc0 returned 0 after 13 usecs
Sep 16 21:48:11  kernel: calling  key_proc_init+0x0/0x70 @ 1
Sep 16 21:48:11  kernel: initcall key_proc_init+0x0/0x70 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  selinux_nf_ip_init+0x0/0x50 @ 1
Sep 16 21:48:11  kernel: initcall selinux_nf_ip_init+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  init_sel_fs+0x0/0x130 @ 1
Sep 16 21:48:11  kernel: initcall init_sel_fs+0x0/0x130 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  selnl_init+0x0/0xc0 @ 1
Sep 16 21:48:11  kernel: initcall selnl_init+0x0/0xc0 returned 0 after 2 usecs
Sep 16 21:48:11  kernel: calling  sel_netif_init+0x0/0x70 @ 1
Sep 16 21:48:11  kernel: initcall sel_netif_init+0x0/0x70 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  sel_netnode_init+0x0/0x70 @ 1
Sep 16 21:48:11  kernel: initcall sel_netnode_init+0x0/0x70 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  sel_netport_init+0x0/0x60 @ 1
Sep 16 21:48:11  kernel: initcall sel_netport_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  aurule_init+0x0/0x50 @ 1
Sep 16 21:48:11  kernel: initcall aurule_init+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  init_smk_fs+0x0/0x1e0 @ 1
Sep 16 21:48:11  kernel: initcall init_smk_fs+0x0/0x1e0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  smack_nf_ip_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall smack_nf_ip_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  apparmor_nf_ip_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall apparmor_nf_ip_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  platform_keyring_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: integrity: Platform Keyring initialized
Sep 16 21:48:11  kernel: initcall platform_keyring_init+0x0/0x30 returned 0 after 2 usecs
Sep 16 21:48:11  kernel: calling  machine_keyring_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: integrity: Machine keyring initialized
Sep 16 21:48:11  kernel: initcall machine_keyring_init+0x0/0x30 returned 0 after 2 usecs
Sep 16 21:48:11  kernel: calling  crc64_rocksoft_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall crc64_rocksoft_init+0x0/0x20 returned 0 after 3 usecs
Sep 16 21:48:11  kernel: calling  jent_mod_init+0x0/0xf0 @ 1
Sep 16 21:48:11  kernel: initcall jent_mod_init+0x0/0xf0 returned 0 after 6731 usecs
Sep 16 21:48:11  kernel: calling  asymmetric_key_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: Key type asymmetric registered
Sep 16 21:48:11  kernel: initcall asymmetric_key_init+0x0/0x20 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  x509_key_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: Asymmetric key parser 'x509' registered
Sep 16 21:48:11  kernel: initcall x509_key_init+0x0/0x20 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  crypto_kdf108_init+0x0/0x10 @ 1
Sep 16 21:48:11  kernel: initcall crypto_kdf108_init+0x0/0x10 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  blkdev_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall blkdev_init+0x0/0x30 returned 0 after 7 usecs
Sep 16 21:48:11  kernel: calling  proc_genhd_init+0x0/0x50 @ 1
Sep 16 21:48:11  kernel: initcall proc_genhd_init+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  bsg_init+0x0/0xa0 @ 1
Sep 16 21:48:11  kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 242)
Sep 16 21:48:11  kernel: initcall bsg_init+0x0/0xa0 returned 0 after 4 usecs
Sep 16 21:48:11  kernel: calling  throtl_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall throtl_init+0x0/0x40 returned 0 after 41 usecs
Sep 16 21:48:11  kernel: calling  ioprio_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall ioprio_init+0x0/0x20 returned 0 after 2 usecs
Sep 16 21:48:11  kernel: calling  iolatency_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall iolatency_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  ioc_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall ioc_init+0x0/0x20 returned 0 after 2 usecs
Sep 16 21:48:11  kernel: calling  deadline_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: io scheduler mq-deadline registered
Sep 16 21:48:11  kernel: initcall deadline_init+0x0/0x20 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  kyber_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: io scheduler kyber registered
Sep 16 21:48:11  kernel: initcall kyber_init+0x0/0x20 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  bfq_init+0x0/0xb0 @ 1
Sep 16 21:48:11  kernel: io scheduler bfq registered
Sep 16 21:48:11  kernel: initcall bfq_init+0x0/0xb0 returned 0 after 6 usecs
Sep 16 21:48:11  kernel: calling  io_uring_init+0x0/0x80 @ 1
Sep 16 21:48:11  kernel: initcall io_uring_init+0x0/0x80 returned 0 after 11 usecs
Sep 16 21:48:11  kernel: calling  blake2s_mod_init+0x0/0x10 @ 1
Sep 16 21:48:11  kernel: initcall blake2s_mod_init+0x0/0x10 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  btree_module_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall btree_module_init+0x0/0x30 returned 0 after 3 usecs
Sep 16 21:48:11  kernel: calling  crc_t10dif_mod_init+0x0/0x60 @ 1
Sep 16 21:48:11  kernel: initcall crc_t10dif_mod_init+0x0/0x60 returned 0 after 40 usecs
Sep 16 21:48:11  kernel: calling  crc64_rocksoft_mod_init+0x0/0x60 @ 1
Sep 16 21:48:11  kernel: initcall crc64_rocksoft_mod_init+0x0/0x60 returned 0 after 32 usecs
Sep 16 21:48:11  kernel: calling  percpu_counter_startup+0x0/0x70 @ 1
Sep 16 21:48:11  kernel: initcall percpu_counter_startup+0x0/0x70 returned 0 after 112 usecs
Sep 16 21:48:11  kernel: calling  digsig_init+0x0/0x50 @ 1
Sep 16 21:48:11  kernel: initcall digsig_init+0x0/0x50 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  phy_core_init+0x0/0x70 @ 1
Sep 16 21:48:11  kernel: initcall phy_core_init+0x0/0x70 returned 0 after 3 usecs
Sep 16 21:48:11  kernel: calling  amd_gpio_driver_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall amd_gpio_driver_init+0x0/0x20 returned 0 after 24 usecs
Sep 16 21:48:11  kernel: calling  adl_pinctrl_driver_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall adl_pinctrl_driver_init+0x0/0x20 returned 0 after 10 usecs
Sep 16 21:48:11  kernel: calling  cnl_pinctrl_driver_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall cnl_pinctrl_driver_init+0x0/0x20 returned 0 after 9 usecs
Sep 16 21:48:11  kernel: calling  ehl_pinctrl_driver_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall ehl_pinctrl_driver_init+0x0/0x20 returned 0 after 9 usecs
Sep 16 21:48:11  kernel: calling  ebg_pinctrl_driver_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall ebg_pinctrl_driver_init+0x0/0x20 returned 0 after 8 usecs
Sep 16 21:48:11  kernel: calling  icl_pinctrl_driver_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall icl_pinctrl_driver_init+0x0/0x20 returned 0 after 9 usecs
Sep 16 21:48:11  kernel: calling  jsl_pinctrl_driver_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall jsl_pinctrl_driver_init+0x0/0x20 returned 0 after 8 usecs
Sep 16 21:48:11  kernel: calling  lkf_pinctrl_driver_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall lkf_pinctrl_driver_init+0x0/0x20 returned 0 after 9 usecs
Sep 16 21:48:11  kernel: calling  lbg_pinctrl_driver_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall lbg_pinctrl_driver_init+0x0/0x20 returned 0 after 9 usecs
Sep 16 21:48:11  kernel: calling  mtl_pinctrl_driver_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall mtl_pinctrl_driver_init+0x0/0x20 returned 0 after 9 usecs
Sep 16 21:48:11  kernel: calling  tgl_pinctrl_driver_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: probe of INTC1055:00 returned 0 after 6732 usecs
Sep 16 21:48:11  kernel: initcall tgl_pinctrl_driver_init+0x0/0x20 returned 0 after 6746 usecs
Sep 16 21:48:11  kernel: calling  crystalcove_pwm_driver_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall crystalcove_pwm_driver_init+0x0/0x20 returned 0 after 6 usecs
Sep 16 21:48:11  kernel: calling  pcie_portdrv_init+0x0/0x60 @ 1
Sep 16 21:48:11  kernel: pcieport 0000:00:06.0: PME: Signaling with IRQ 122
Sep 16 21:48:11  kernel: probe of 0000:00:06.0:pcie001 returned 0 after 61 usecs
Sep 16 21:48:11  kernel: probe of 0000:00:06.0 returned 0 after 476 usecs
Sep 16 21:48:11  kernel: initcall pcie_portdrv_init+0x0/0x60 returned 0 after 494 usecs
Sep 16 21:48:11  kernel: calling  pci_proc_init+0x0/0x80 @ 1
Sep 16 21:48:11  kernel: initcall pci_proc_init+0x0/0x80 returned 0 after 9 usecs
Sep 16 21:48:11  kernel: calling  pci_hotplug_init+0x0/0x50 @ 1
Sep 16 21:48:11  kernel: initcall pci_hotplug_init+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  shpcd_init+0x0/0x70 @ 1
Sep 16 21:48:11  kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Sep 16 21:48:11  kernel: initcall shpcd_init+0x0/0x70 returned 0 after 6 usecs
Sep 16 21:48:11  kernel: calling  pci_stub_init+0x0/0x1a0 @ 1
Sep 16 21:48:11  kernel: initcall pci_stub_init+0x0/0x1a0 returned 0 after 3 usecs
Sep 16 21:48:11  kernel: calling  dw_plat_pcie_driver_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall dw_plat_pcie_driver_init+0x0/0x20 returned 0 after 6 usecs
Sep 16 21:48:11  kernel: calling  meson_pcie_driver_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall meson_pcie_driver_init+0x0/0x20 returned 0 after 7 usecs
Sep 16 21:48:11  kernel: calling  vesafb_driver_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall vesafb_driver_init+0x0/0x20 returned 0 after 6 usecs
Sep 16 21:48:11  kernel: calling  efifb_driver_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall efifb_driver_init+0x0/0x20 returned 0 after 5 usecs
Sep 16 21:48:11  kernel: calling  intel_idle_init+0x0/0xcb0 @ 1
Sep 16 21:48:11  kernel: initcall intel_idle_init+0x0/0xcb0 returned 0 after 746 usecs
Sep 16 21:48:11  kernel: calling  ged_driver_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall ged_driver_init+0x0/0x20 returned 0 after 9 usecs
Sep 16 21:48:11  kernel: calling  acpi_ac_init+0x0/0x50 @ 1
Sep 16 21:48:11  kernel: Freeing initrd memory: 21956K
Sep 16 21:48:11  kernel: ACPI: AC: AC Adapter [AC0] (off-line)
Sep 16 21:48:11  kernel: probe of ACPI0003:00 returned 0 after 4596 usecs
Sep 16 21:48:11  kernel: initcall acpi_ac_init+0x0/0x50 returned 0 after 4703 usecs
Sep 16 21:48:11  kernel: calling  acpi_button_driver_init+0x0/0x60 @ 1
Sep 16 21:48:11  kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:1d/PNP0C09:00/PNP0C0D:00/input/input0
Sep 16 21:48:11  kernel: ACPI: button: Lid Switch [LID]
Sep 16 21:48:11  kernel: probe of PNP0C0D:00 returned 0 after 40 usecs
Sep 16 21:48:11  kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:1d/PNP0C09:00/PNP0C0C:00/input/input1
Sep 16 21:48:11  kernel: ACPI: button: Power Button [PWRB]
Sep 16 21:48:11  kernel: probe of PNP0C0C:00 returned 0 after 33 usecs
Sep 16 21:48:11  kernel: initcall acpi_button_driver_init+0x0/0x60 returned 0 after 97 usecs
Sep 16 21:48:11  kernel: calling  acpi_fan_driver_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: probe of INTC1048:00 returned 0 after 89 usecs
Sep 16 21:48:11  kernel: probe of PNP0C0B:00 returned 0 after 11 usecs
Sep 16 21:48:11  kernel: probe of PNP0C0B:01 returned 0 after 9 usecs
Sep 16 21:48:11  kernel: probe of PNP0C0B:02 returned 0 after 9 usecs
Sep 16 21:48:11  kernel: probe of PNP0C0B:03 returned 0 after 8 usecs
Sep 16 21:48:11  kernel: probe of PNP0C0B:04 returned 0 after 9 usecs
Sep 16 21:48:11  kernel: initcall acpi_fan_driver_init+0x0/0x20 returned 0 after 158 usecs
Sep 16 21:48:11  kernel: calling  acpi_processor_driver_init+0x0/0xc0 @ 1
Sep 16 21:48:11  kernel: probe of cpu0 returned 0 after 201 usecs
Sep 16 21:48:11  kernel: probe of cpu1 returned 0 after 173 usecs
Sep 16 21:48:11  kernel: probe of cpu2 returned 0 after 170 usecs
Sep 16 21:48:11  kernel: probe of cpu3 returned 0 after 169 usecs
Sep 16 21:48:11  kernel: probe of cpu4 returned 0 after 167 usecs
Sep 16 21:48:11  kernel: probe of cpu5 returned 0 after 168 usecs
Sep 16 21:48:11  kernel: probe of cpu6 returned 0 after 168 usecs
Sep 16 21:48:11  kernel: probe of cpu7 returned 0 after 167 usecs
Sep 16 21:48:11  kernel: probe of cpu8 returned 0 after 165 usecs
Sep 16 21:48:11  kernel: probe of cpu9 returned 0 after 166 usecs
Sep 16 21:48:11  kernel: probe of cpu10 returned 0 after 166 usecs
Sep 16 21:48:11  kernel: probe of cpu11 returned 0 after 170 usecs
Sep 16 21:48:11  kernel: probe of cpu12 returned 0 after 166 usecs
Sep 16 21:48:11  kernel: probe of cpu13 returned 0 after 166 usecs
Sep 16 21:48:11  kernel: probe of cpu14 returned 0 after 165 usecs
Sep 16 21:48:11  kernel: probe of cpu15 returned 0 after 173 usecs
Sep 16 21:48:11  kernel: probe of cpu16 returned 0 after 1583 usecs
Sep 16 21:48:11  kernel: probe of cpu17 returned 0 after 178 usecs
Sep 16 21:48:11  kernel: probe of cpu18 returned 0 after 169 usecs
Sep 16 21:48:11  kernel: probe of cpu19 returned 0 after 168 usecs
Sep 16 21:48:11  kernel: initcall acpi_processor_driver_init+0x0/0xc0 returned 0 after 4893 usecs
Sep 16 21:48:11  kernel: calling  acpi_thermal_init+0x0/0x90 @ 1
Sep 16 21:48:11  kernel: thermal LNXTHERM:00: registered as thermal_zone0
Sep 16 21:48:11  kernel: ACPI: thermal: Thermal Zone [TZ00] (28 C)
Sep 16 21:48:11  kernel: probe of LNXTHERM:00 returned 0 after 258 usecs
Sep 16 21:48:11  kernel: initcall acpi_thermal_init+0x0/0x90 returned 0 after 576 usecs
Sep 16 21:48:11  kernel: calling  acpi_battery_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall acpi_battery_init+0x0/0x40 returned 0 after 2 usecs
Sep 16 21:48:11  kernel: calling  acpi_hed_driver_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall acpi_hed_driver_init+0x0/0x20 returned 0 after 17 usecs
Sep 16 21:48:11  kernel: calling  bgrt_init+0x0/0xd0 @ 1
Sep 16 21:48:11  kernel: initcall bgrt_init+0x0/0xd0 returned 0 after 10 usecs
Sep 16 21:48:11  kernel: calling  erst_init+0x0/0x360 @ 1
Sep 16 21:48:11  kernel: initcall erst_init+0x0/0x360 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  intel_crc_pmic_opregion_driver_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall intel_crc_pmic_opregion_driver_init+0x0/0x20 returned 0 after 22 usecs
Sep 16 21:48:11  kernel: calling  intel_chtcrc_pmic_opregion_driver_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall intel_chtcrc_pmic_opregion_driver_init+0x0/0x20 returned 0 after 6 usecs
Sep 16 21:48:11  kernel: calling  intel_xpower_pmic_opregion_driver_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall intel_xpower_pmic_opregion_driver_init+0x0/0x20 returned 0 after 5 usecs
Sep 16 21:48:11  kernel: calling  intel_bxtwc_pmic_opregion_driver_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall intel_bxtwc_pmic_opregion_driver_init+0x0/0x20 returned 0 after 5 usecs
Sep 16 21:48:11  kernel: calling  intel_cht_wc_pmic_opregion_driver_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall intel_cht_wc_pmic_opregion_driver_init+0x0/0x20 returned 0 after 5 usecs
Sep 16 21:48:11  kernel: calling  chtdc_ti_pmic_opregion_driver_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall chtdc_ti_pmic_opregion_driver_init+0x0/0x20 returned 0 after 5 usecs
Sep 16 21:48:11  kernel: calling  tps68470_pmic_opregion_driver_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall tps68470_pmic_opregion_driver_init+0x0/0x20 returned 0 after 6 usecs
Sep 16 21:48:11  kernel: calling  gpio_clk_driver_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall gpio_clk_driver_init+0x0/0x20 returned 0 after 5 usecs
Sep 16 21:48:11  kernel: calling  fch_clk_driver_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall fch_clk_driver_init+0x0/0x20 returned 0 after 5 usecs
Sep 16 21:48:11  kernel: calling  plt_clk_driver_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall plt_clk_driver_init+0x0/0x20 returned 0 after 5 usecs
Sep 16 21:48:11  kernel: calling  dw_pci_driver_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall dw_pci_driver_init+0x0/0x20 returned 0 after 5 usecs
Sep 16 21:48:11  kernel: calling  intel_ldma_driver_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall intel_ldma_driver_init+0x0/0x20 returned 0 after 5 usecs
Sep 16 21:48:11  kernel: calling  xenbus_probe_initcall+0x0/0xc0 @ 1
Sep 16 21:48:11  kernel: initcall xenbus_probe_initcall+0x0/0xc0 returned -19 after 0 usecs
Sep 16 21:48:11  kernel: calling  xenbus_init+0x0/0x50 @ 1
Sep 16 21:48:11  kernel: initcall xenbus_init+0x0/0x50 returned -19 after 0 usecs
Sep 16 21:48:11  kernel: calling  xenbus_backend_init+0x0/0x60 @ 1
Sep 16 21:48:11  kernel: initcall xenbus_backend_init+0x0/0x60 returned -19 after 0 usecs
Sep 16 21:48:11  kernel: calling  hyper_sysfs_init+0x0/0x240 @ 1
Sep 16 21:48:11  kernel: initcall hyper_sysfs_init+0x0/0x240 returned -19 after 0 usecs
Sep 16 21:48:11  kernel: calling  hypervisor_subsys_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall hypervisor_subsys_init+0x0/0x40 returned -19 after 0 usecs
Sep 16 21:48:11  kernel: calling  platform_driver_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall platform_driver_init+0x0/0x20 returned 0 after 3 usecs
Sep 16 21:48:11  kernel: calling  xen_late_init_mcelog+0x0/0x80 @ 1
Sep 16 21:48:11  kernel: initcall xen_late_init_mcelog+0x0/0x80 returned -19 after 0 usecs
Sep 16 21:48:11  kernel: calling  pvcalls_back_init+0x0/0xb0 @ 1
Sep 16 21:48:11  kernel: initcall pvcalls_back_init+0x0/0xb0 returned -19 after 0 usecs
Sep 16 21:48:11  kernel: calling  n_null_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall n_null_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  pty_init+0x0/0x230 @ 1
Sep 16 21:48:11  kernel: initcall pty_init+0x0/0x230 returned 0 after 52 usecs
Sep 16 21:48:11  kernel: calling  sysrq_init+0x0/0x80 @ 1
Sep 16 21:48:11  kernel: initcall sysrq_init+0x0/0x80 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  xen_hvc_init+0x0/0x240 @ 1
Sep 16 21:48:11  kernel: initcall xen_hvc_init+0x0/0x240 returned -19 after 0 usecs
Sep 16 21:48:11  kernel: calling  serial8250_init+0x0/0x1f0 @ 1
Sep 16 21:48:11  kernel: Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Sep 16 21:48:11  kernel: probe of serial8250:0 returned 0 after 2 usecs
Sep 16 21:48:11  kernel: probe of serial8250:0.0 returned 0 after 2 usecs
Sep 16 21:48:11  kernel: probe of serial8250:0.1 returned 0 after 2 usecs
Sep 16 21:48:11  kernel: probe of serial8250:0.2 returned 0 after 2 usecs
Sep 16 21:48:11  kernel: probe of serial8250:0.3 returned 0 after 2 usecs
Sep 16 21:48:11  kernel: probe of serial8250:0.4 returned 0 after 2 usecs
Sep 16 21:48:11  kernel: probe of serial8250:0.5 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: probe of serial8250:0.6 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: probe of serial8250:0.7 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: probe of serial8250:0.8 returned 0 after 2 usecs
Sep 16 21:48:11  kernel: probe of serial8250:0.9 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: probe of serial8250:0.10 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: probe of serial8250:0.11 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: probe of serial8250:0.12 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: probe of serial8250:0.13 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: probe of serial8250:0.14 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: probe of serial8250:0.15 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: probe of serial8250:0.16 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: probe of serial8250:0.17 returned 0 after 2 usecs
Sep 16 21:48:11  kernel: probe of serial8250:0.18 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: probe of serial8250:0.19 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: probe of serial8250:0.20 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: probe of serial8250:0.21 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: probe of serial8250:0.22 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: probe of serial8250:0.23 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: probe of serial8250:0.24 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: probe of serial8250:0.25 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: probe of serial8250:0.26 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: probe of serial8250:0.27 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: probe of serial8250:0.28 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: probe of serial8250:0.29 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: probe of serial8250:0.30 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: probe of serial8250:0.31 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: probe of serial8250 returned 0 after 3 usecs
Sep 16 21:48:11  kernel: initcall serial8250_init+0x0/0x1f0 returned 0 after 1864 usecs
Sep 16 21:48:11  kernel: calling  serial_pci_driver_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall serial_pci_driver_init+0x0/0x20 returned 0 after 14 usecs
Sep 16 21:48:11  kernel: calling  lpss8250_pci_driver_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall lpss8250_pci_driver_init+0x0/0x20 returned 0 after 3 usecs
Sep 16 21:48:11  kernel: calling  mid8250_pci_driver_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall mid8250_pci_driver_init+0x0/0x20 returned 0 after 3 usecs
Sep 16 21:48:11  kernel: calling  pericom8250_pci_driver_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall pericom8250_pci_driver_init+0x0/0x20 returned 0 after 7 usecs
Sep 16 21:48:11  kernel: calling  random_sysctls_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall random_sysctls_init+0x0/0x30 returned 0 after 2 usecs
Sep 16 21:48:11  kernel: calling  hpet_init+0x0/0xa0 @ 1
Sep 16 21:48:11  kernel: hpet_acpi_add: no address or irqs in _CRS
Sep 16 21:48:11  kernel: probe of PNP0103:00 returned 19 after 1736 usecs
Sep 16 21:48:11  kernel: initcall hpet_init+0x0/0xa0 returned 0 after 1771 usecs
Sep 16 21:48:11  kernel: calling  nvram_module_init+0x0/0xa0 @ 1
Sep 16 21:48:11  kernel: Non-volatile memory driver v1.3
Sep 16 21:48:11  kernel: initcall nvram_module_init+0x0/0xa0 returned 0 after 16 usecs
Sep 16 21:48:11  kernel: calling  agp_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: Linux agpgart interface v0.103
Sep 16 21:48:11  kernel: initcall agp_init+0x0/0x40 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  init_tis+0x0/0x100 @ 1
Sep 16 21:48:11  kernel: probe of INTC6001:00 returned 19 after 115 usecs
Sep 16 21:48:11  kernel: initcall init_tis+0x0/0x100 returned 0 after 137 usecs
Sep 16 21:48:11  kernel: calling  crb_acpi_driver_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: probe of INTC6001:00 returned 0 after 7196 usecs
Sep 16 21:48:11  kernel: initcall crb_acpi_driver_init+0x0/0x30 returned 0 after 7218 usecs
Sep 16 21:48:11  kernel: calling  amd_iommu_v2_init+0x0/0x80 @ 1
Sep 16 21:48:11  kernel: AMD-Vi: AMD IOMMUv2 functionality not available on this system - This is not a bug.
Sep 16 21:48:11  kernel: initcall amd_iommu_v2_init+0x0/0x80 returned 0 after 2 usecs
Sep 16 21:48:11  kernel: calling  drm_core_init+0x0/0x110 @ 1
Sep 16 21:48:11  kernel: ACPI: bus type drm_connector registered
Sep 16 21:48:11  kernel: initcall drm_core_init+0x0/0x110 returned 0 after 555 usecs
Sep 16 21:48:11  kernel: calling  simpledrm_platform_driver_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall simpledrm_platform_driver_init+0x0/0x20 returned 0 after 7 usecs
Sep 16 21:48:11  kernel: calling  cn_proc_init+0x0/0x50 @ 1
Sep 16 21:48:11  kernel: initcall cn_proc_init+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  topology_sysfs_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall topology_sysfs_init+0x0/0x30 returned 0 after 80 usecs
Sep 16 21:48:11  kernel: calling  cacheinfo_sysfs_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall cacheinfo_sysfs_init+0x0/0x30 returned 0 after 1294 usecs
Sep 16 21:48:11  kernel: calling  devcoredump_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall devcoredump_init+0x0/0x20 returned 0 after 2 usecs
Sep 16 21:48:11  kernel: calling  twl_driver_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall twl_driver_init+0x0/0x20 returned 0 after 4 usecs
Sep 16 21:48:11  kernel: calling  twl4030_audio_driver_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall twl4030_audio_driver_init+0x0/0x20 returned 0 after 7 usecs
Sep 16 21:48:11  kernel: calling  twl6040_driver_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall twl6040_driver_init+0x0/0x20 returned 0 after 2 usecs
Sep 16 21:48:11  kernel: calling  adp5520_driver_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall adp5520_driver_init+0x0/0x20 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  crystal_cove_i2c_driver_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall crystal_cove_i2c_driver_init+0x0/0x20 returned 0 after 2 usecs
Sep 16 21:48:11  kernel: calling  cht_wc_driver_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall cht_wc_driver_init+0x0/0x20 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  hmem_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall hmem_init+0x0/0x40 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  system_heap_create+0x0/0x70 @ 1
Sep 16 21:48:11  kernel: initcall system_heap_create+0x0/0x70 returned 0 after 48 usecs
Sep 16 21:48:11  kernel: calling  add_default_cma_heap+0x0/0xe0 @ 1
Sep 16 21:48:11  kernel: initcall add_default_cma_heap+0x0/0xe0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  udmabuf_dev_init+0x0/0xa0 @ 1
Sep 16 21:48:11  kernel: initcall udmabuf_dev_init+0x0/0xa0 returned 0 after 12 usecs
Sep 16 21:48:11  kernel: calling  init_sd+0x0/0x150 @ 1
Sep 16 21:48:11  kernel: initcall init_sd+0x0/0x150 returned 0 after 7 usecs
Sep 16 21:48:11  kernel: calling  ahci_pci_driver_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall ahci_pci_driver_init+0x0/0x20 returned 0 after 15 usecs
Sep 16 21:48:11  kernel: calling  blackhole_netdev_init+0x0/0x90 @ 1
Sep 16 21:48:11  kernel: initcall blackhole_netdev_init+0x0/0x90 returned 0 after 6 usecs
Sep 16 21:48:11  kernel: calling  wwan_init+0x0/0xb0 @ 1
Sep 16 21:48:11  kernel: initcall wwan_init+0x0/0xb0 returned 0 after 2 usecs
Sep 16 21:48:11  kernel: calling  ehci_hcd_init+0x0/0x100 @ 1
Sep 16 21:48:11  kernel: initcall ehci_hcd_init+0x0/0x100 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  ehci_pci_init+0x0/0x60 @ 1
Sep 16 21:48:11  kernel: initcall ehci_pci_init+0x0/0x60 returned 0 after 4 usecs
Sep 16 21:48:11  kernel: calling  ohci_hcd_mod_init+0x0/0x70 @ 1
Sep 16 21:48:11  kernel: initcall ohci_hcd_mod_init+0x0/0x70 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  ohci_pci_init+0x0/0x60 @ 1
Sep 16 21:48:11  kernel: initcall ohci_pci_init+0x0/0x60 returned 0 after 3 usecs
Sep 16 21:48:11  kernel: calling  uhci_hcd_init+0x0/0x100 @ 1
Sep 16 21:48:11  kernel: initcall uhci_hcd_init+0x0/0x100 returned 0 after 7 usecs
Sep 16 21:48:11  kernel: calling  xhci_hcd_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall xhci_hcd_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  usb_serial_init+0x0/0x160 @ 1
Sep 16 21:48:11  kernel: usbcore: registered new interface driver usbserial_generic
Sep 16 21:48:11  kernel: usbserial: USB Serial support registered for generic
Sep 16 21:48:11  kernel: initcall usb_serial_init+0x0/0x160 returned 0 after 13 usecs
Sep 16 21:48:11  kernel: calling  input_leds_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall input_leds_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  evdev_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall evdev_init+0x0/0x20 returned 0 after 30 usecs
Sep 16 21:48:11  kernel: calling  cmos_init+0x0/0xa0 @ 1
Sep 16 21:48:11  kernel: rtc_cmos 00:01: RTC can wake from S4
Sep 16 21:48:11  kernel: probe of alarmtimer.0.auto returned 0 after 3 usecs
Sep 16 21:48:11  kernel: rtc_cmos 00:01: registered as rtc0
Sep 16 21:48:11  kernel: rtc_cmos 00:01: setting system clock to 2024-09-16T19:48:08 UTC (1726516088)
Sep 16 21:48:11  kernel: rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram
Sep 16 21:48:11  kernel: probe of 00:01 returned 0 after 2991 usecs
Sep 16 21:48:11  kernel: initcall cmos_init+0x0/0xa0 returned 0 after 2997 usecs
Sep 16 21:48:11  kernel: calling  dw_i2c_driver_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall dw_i2c_driver_init+0x0/0x20 returned 0 after 4 usecs
Sep 16 21:48:11  kernel: calling  mt6323_pwrc_driver_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall mt6323_pwrc_driver_init+0x0/0x20 returned 0 after 6 usecs
Sep 16 21:48:11  kernel: calling  restart_poweroff_driver_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall restart_poweroff_driver_init+0x0/0x20 returned 0 after 5 usecs
Sep 16 21:48:11  kernel: calling  tps65086_restart_driver_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall tps65086_restart_driver_init+0x0/0x20 returned 0 after 5 usecs
Sep 16 21:48:11  kernel: calling  thermal_throttle_init_device+0x0/0x50 @ 1
Sep 16 21:48:11  kernel: initcall thermal_throttle_init_device+0x0/0x50 returned 0 after 1381 usecs
Sep 16 21:48:11  kernel: calling  watchdog_gov_panic_register+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall watchdog_gov_panic_register+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  ghes_edac_init+0x0/0x480 @ 1
Sep 16 21:48:11  kernel: initcall ghes_edac_init+0x0/0x480 returned -19 after 0 usecs
Sep 16 21:48:11  kernel: calling  amd_pstate_init+0x0/0x260 @ 1
Sep 16 21:48:11  kernel: initcall amd_pstate_init+0x0/0x260 returned -19 after 0 usecs
Sep 16 21:48:11  kernel: calling  intel_pstate_init+0x0/0x850 @ 1
Sep 16 21:48:11  kernel: intel_pstate: Intel P-state driver initializing
Sep 16 21:48:11  kernel: intel_pstate: HWP enabled
Sep 16 21:48:11  kernel: initcall intel_pstate_init+0x0/0x850 returned 0 after 2563 usecs
Sep 16 21:48:11  kernel: calling  ledtrig_disk_init+0x0/0x50 @ 1
Sep 16 21:48:11  kernel: initcall ledtrig_disk_init+0x0/0x50 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  ledtrig_mtd_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall ledtrig_mtd_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  ledtrig_cpu_init+0x0/0xf0 @ 1
Sep 16 21:48:11  kernel: ledtrig-cpu: registered to indicate activity on CPUs
Sep 16 21:48:11  kernel: initcall ledtrig_cpu_init+0x0/0xf0 returned 0 after 1219 usecs
Sep 16 21:48:11  kernel: calling  ledtrig_panic_init+0x0/0x60 @ 1
Sep 16 21:48:11  kernel: initcall ledtrig_panic_init+0x0/0x60 returned 0 after 3 usecs
Sep 16 21:48:11  kernel: calling  dmi_sysfs_init+0x0/0x140 @ 1
Sep 16 21:48:11  kernel: initcall dmi_sysfs_init+0x0/0x140 returned 0 after 103 usecs
Sep 16 21:48:11  kernel: calling  sysfb_init+0x0/0x1a0 @ 1
Sep 16 21:48:11  kernel: [drm] Initialized simpledrm 1.0.0 20200625 for simple-framebuffer.0 on minor 0
Sep 16 21:48:11  kernel: Console: switching to colour frame buffer device 240x75
Sep 16 21:48:11  kernel: simple-framebuffer simple-framebuffer.0: [drm] fb0: simpledrmdrmfb frame buffer device
Sep 16 21:48:11  kernel: probe of simple-framebuffer.0 returned 0 after 9196 usecs
Sep 16 21:48:11  kernel: initcall sysfb_init+0x0/0x1a0 returned 0 after 9236 usecs
Sep 16 21:48:11  kernel: calling  esrt_sysfs_init+0x0/0x360 @ 1
Sep 16 21:48:11  kernel: initcall esrt_sysfs_init+0x0/0x360 returned 0 after 35 usecs
Sep 16 21:48:11  kernel: calling  efivars_pstore_init+0x0/0xb0 @ 1
Sep 16 21:48:11  kernel: initcall efivars_pstore_init+0x0/0xb0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  hid_init+0x0/0x70 @ 1
Sep 16 21:48:11  kernel: hid: raw HID events driver (C) Jiri Kosina
Sep 16 21:48:11  kernel: initcall hid_init+0x0/0x70 returned 0 after 67 usecs
Sep 16 21:48:11  kernel: calling  hid_generic_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall hid_generic_init+0x0/0x20 returned 0 after 26 usecs
Sep 16 21:48:11  kernel: calling  pmc_core_driver_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: intel_pmc_core INT33A1:00:  initialized
Sep 16 21:48:11  kernel: probe of INT33A1:00 returned 0 after 16185 usecs
Sep 16 21:48:11  kernel: initcall pmc_core_driver_init+0x0/0x20 returned 0 after 16293 usecs
Sep 16 21:48:11  kernel: calling  pmc_core_platform_init+0x0/0xd0 @ 1
Sep 16 21:48:11  kernel: initcall pmc_core_platform_init+0x0/0xd0 returned -19 after 59 usecs
Sep 16 21:48:11  kernel: calling  intel_scu_pci_driver_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall intel_scu_pci_driver_init+0x0/0x20 returned 0 after 107 usecs
Sep 16 21:48:11  kernel: calling  pmc_atom_init+0x0/0x2a0 @ 1
Sep 16 21:48:11  kernel: initcall pmc_atom_init+0x0/0x2a0 returned -19 after 5 usecs
Sep 16 21:48:11  kernel: calling  rproc_virtio_driver_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall rproc_virtio_driver_init+0x0/0x20 returned 0 after 127 usecs
Sep 16 21:48:11  kernel: calling  vmgenid_driver_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall vmgenid_driver_init+0x0/0x20 returned 0 after 47 usecs
Sep 16 21:48:11  kernel: calling  extcon_class_init+0x0/0x50 @ 1
Sep 16 21:48:11  kernel: initcall extcon_class_init+0x0/0x50 returned 0 after 5 usecs
Sep 16 21:48:11  kernel: calling  icc_init+0x0/0x80 @ 1
Sep 16 21:48:11  kernel: initcall icc_init+0x0/0x80 returned 0 after 4 usecs
Sep 16 21:48:11  kernel: calling  sock_diag_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall sock_diag_init+0x0/0x40 returned 0 after 31 usecs
Sep 16 21:48:11  kernel: calling  init_net_drop_monitor+0x0/0x130 @ 1
Sep 16 21:48:11  kernel: drop_monitor: Initializing network drop monitor service
Sep 16 21:48:11  kernel: initcall init_net_drop_monitor+0x0/0x130 returned 0 after 31 usecs
Sep 16 21:48:11  kernel: calling  blackhole_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall blackhole_init+0x0/0x20 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  fq_codel_module_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall fq_codel_module_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  gre_offload_init+0x0/0x60 @ 1
Sep 16 21:48:11  kernel: initcall gre_offload_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  sysctl_ipv4_init+0x0/0x60 @ 1
Sep 16 21:48:11  kernel: initcall sysctl_ipv4_init+0x0/0x60 returned 0 after 86 usecs
Sep 16 21:48:11  kernel: calling  cubictcp_register+0x0/0x90 @ 1
Sep 16 21:48:11  kernel: initcall cubictcp_register+0x0/0x90 returned 0 after 12983 usecs
Sep 16 21:48:11  kernel: calling  xfrm_user_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: Initializing XFRM netlink socket
Sep 16 21:48:11  kernel: initcall xfrm_user_init+0x0/0x40 returned 0 after 52 usecs
Sep 16 21:48:11  kernel: calling  inet6_init+0x0/0x3f0 @ 1
Sep 16 21:48:11  kernel: NET: Registered PF_INET6 protocol family
Sep 16 21:48:11  kernel: Segment Routing with IPv6
Sep 16 21:48:11  kernel: RPL Segment Routing with IPv6
Sep 16 21:48:11  kernel: In-situ OAM (IOAM) with IPv6
Sep 16 21:48:11  kernel: initcall inet6_init+0x0/0x3f0 returned 0 after 8569 usecs
Sep 16 21:48:11  kernel: calling  packet_init+0x0/0x90 @ 1
Sep 16 21:48:11  kernel: NET: Registered PF_PACKET protocol family
Sep 16 21:48:11  kernel: initcall packet_init+0x0/0x90 returned 0 after 171 usecs
Sep 16 21:48:11  kernel: calling  strp_dev_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall strp_dev_init+0x0/0x40 returned 0 after 327 usecs
Sep 16 21:48:11  kernel: calling  dcbnl_init+0x0/0x60 @ 1
Sep 16 21:48:11  kernel: initcall dcbnl_init+0x0/0x60 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  handshake_init+0x0/0xa0 @ 1
Sep 16 21:48:11  kernel: initcall handshake_init+0x0/0xa0 returned 0 after 8 usecs
Sep 16 21:48:11  kernel: calling  pm_check_save_msr+0x0/0xd0 @ 1
Sep 16 21:48:11  kernel: initcall pm_check_save_msr+0x0/0xd0 returned 0 after 4 usecs
Sep 16 21:48:11  kernel: calling  mcheck_init_device+0x0/0x170 @ 1
Sep 16 21:48:11  kernel: initcall mcheck_init_device+0x0/0x170 returned 0 after 4427 usecs
Sep 16 21:48:11  kernel: calling  kernel_do_mounts_initrd_sysctls_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall kernel_do_mounts_initrd_sysctls_init+0x0/0x30 returned 0 after 5 usecs
Sep 16 21:48:11  kernel: calling  sld_mitigate_sysctl_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall sld_mitigate_sysctl_init+0x0/0x30 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  mcheck_late_init+0x0/0xa0 @ 1
Sep 16 21:48:11  kernel: initcall mcheck_late_init+0x0/0xa0 returned 0 after 7 usecs
Sep 16 21:48:11  kernel: calling  severities_debugfs_init+0x0/0x50 @ 1
Sep 16 21:48:11  kernel: initcall severities_debugfs_init+0x0/0x50 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  microcode_init+0x0/0x1c0 @ 1
Sep 16 21:48:11  kernel: microcode: Microcode Update Driver: v2.2.
Sep 16 21:48:11  kernel: initcall microcode_init+0x0/0x1c0 returned 0 after 1884 usecs
Sep 16 21:48:11  kernel: calling  resctrl_late_init+0x0/0x810 @ 1
Sep 16 21:48:11  kernel: initcall resctrl_late_init+0x0/0x810 returned -19 after 0 usecs
Sep 16 21:48:11  kernel: calling  hpet_insert_resource+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall hpet_insert_resource+0x0/0x30 returned 0 after 2 usecs
Sep 16 21:48:11  kernel: calling  start_sync_check_timer+0x0/0x60 @ 1
Sep 16 21:48:11  kernel: initcall start_sync_check_timer+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  update_mp_table+0x0/0x670 @ 1
Sep 16 21:48:11  kernel: initcall update_mp_table+0x0/0x670 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  lapic_insert_resource+0x0/0x50 @ 1
Sep 16 21:48:11  kernel: initcall lapic_insert_resource+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  print_ipi_mode+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: IPI shorthand broadcast: enabled
Sep 16 21:48:11  kernel: initcall print_ipi_mode+0x0/0x40 returned 0 after 296 usecs
Sep 16 21:48:11  kernel: calling  print_ICs+0x0/0x1d0 @ 1
Sep 16 21:48:11  kernel: initcall print_ICs+0x0/0x1d0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  setup_efi_kvm_sev_migration+0x0/0x1c0 @ 1
Sep 16 21:48:11  kernel: initcall setup_efi_kvm_sev_migration+0x0/0x1c0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  create_tlb_single_page_flush_ceiling+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall create_tlb_single_page_flush_ceiling+0x0/0x40 returned 0 after 130 usecs
Sep 16 21:48:11  kernel: calling  cpa_stats_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall cpa_stats_init+0x0/0x40 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  pat_memtype_list_init+0x0/0x50 @ 1
Sep 16 21:48:11  kernel: initcall pat_memtype_list_init+0x0/0x50 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  create_init_pkru_value+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall create_init_pkru_value+0x0/0x40 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  kernel_panic_sysctls_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall kernel_panic_sysctls_init+0x0/0x30 returned 0 after 4 usecs
Sep 16 21:48:11  kernel: calling  kernel_panic_sysfs_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall kernel_panic_sysfs_init+0x0/0x30 returned 0 after 2 usecs
Sep 16 21:48:11  kernel: calling  kernel_exit_sysctls_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall kernel_exit_sysctls_init+0x0/0x30 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  kernel_exit_sysfs_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall kernel_exit_sysfs_init+0x0/0x30 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  param_sysfs_builtin_init+0x0/0x200 @ 1
Sep 16 21:48:11  kernel: initcall param_sysfs_builtin_init+0x0/0x200 returned 0 after 811 usecs
Sep 16 21:48:11  kernel: calling  reboot_ksysfs_init+0x0/0x80 @ 1
Sep 16 21:48:11  kernel: initcall reboot_ksysfs_init+0x0/0x80 returned 0 after 5 usecs
Sep 16 21:48:11  kernel: calling  sched_core_sysctl_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall sched_core_sysctl_init+0x0/0x30 returned 0 after 3 usecs
Sep 16 21:48:11  kernel: calling  sched_fair_sysctl_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall sched_fair_sysctl_init+0x0/0x30 returned 0 after 2 usecs
Sep 16 21:48:11  kernel: calling  sched_rt_sysctl_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall sched_rt_sysctl_init+0x0/0x30 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  sched_dl_sysctl_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall sched_dl_sysctl_init+0x0/0x30 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  sched_clock_init_late+0x0/0xb0 @ 1
Sep 16 21:48:11  kernel: sched_clock: Marking stable (1203335148, 20179877)->(1255179529, -31664504)
Sep 16 21:48:11  kernel: initcall sched_clock_init_late+0x0/0xb0 returned 0 after 622 usecs
Sep 16 21:48:11  kernel: calling  sched_init_debug+0x0/0x230 @ 1
Sep 16 21:48:11  kernel: initcall sched_init_debug+0x0/0x230 returned 0 after 13 usecs
Sep 16 21:48:11  kernel: calling  sched_energy_aware_sysctl_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall sched_energy_aware_sysctl_init+0x0/0x30 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  cpu_latency_qos_init+0x0/0x50 @ 1
Sep 16 21:48:11  kernel: initcall cpu_latency_qos_init+0x0/0x50 returned 0 after 167 usecs
Sep 16 21:48:11  kernel: calling  pm_debugfs_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall pm_debugfs_init+0x0/0x30 returned 0 after 2 usecs
Sep 16 21:48:11  kernel: calling  printk_late_init+0x0/0x180 @ 1
Sep 16 21:48:11  kernel: initcall printk_late_init+0x0/0x180 returned 0 after 7 usecs
Sep 16 21:48:11  kernel: calling  init_srcu_module_notifier+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall init_srcu_module_notifier+0x0/0x40 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  swiotlb_create_default_debugfs+0x0/0xc0 @ 1
Sep 16 21:48:11  kernel: initcall swiotlb_create_default_debugfs+0x0/0xc0 returned 0 after 3 usecs
Sep 16 21:48:11  kernel: calling  module_decompress_sysfs_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall module_decompress_sysfs_init+0x0/0x40 returned 0 after 2 usecs
Sep 16 21:48:11  kernel: calling  tk_debug_sleep_time_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall tk_debug_sleep_time_init+0x0/0x40 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  bpf_ksym_iter_register+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall bpf_ksym_iter_register+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  kernel_acct_sysctls_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall kernel_acct_sysctls_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  kexec_core_sysctl_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall kexec_core_sysctl_init+0x0/0x40 returned 0 after 2 usecs
Sep 16 21:48:11  kernel: calling  bpf_rstat_kfunc_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall bpf_rstat_kfunc_init+0x0/0x20 returned 0 after 2 usecs
Sep 16 21:48:11  kernel: calling  debugfs_kprobe_init+0x0/0x80 @ 1
Sep 16 21:48:11  kernel: initcall debugfs_kprobe_init+0x0/0x80 returned 0 after 5 usecs
Sep 16 21:48:11  kernel: calling  kernel_delayacct_sysctls_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall kernel_delayacct_sysctls_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  taskstats_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: registered taskstats version 1
Sep 16 21:48:11  kernel: initcall taskstats_init+0x0/0x40 returned 0 after 168 usecs
Sep 16 21:48:11  kernel: calling  ftrace_sysctl_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall ftrace_sysctl_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  init_hwlat_tracer+0x0/0x120 @ 1
Sep 16 21:48:11  kernel: initcall init_hwlat_tracer+0x0/0x120 returned 0 after 3730 usecs
Sep 16 21:48:11  kernel: calling  init_osnoise_tracer+0x0/0x390 @ 1
Sep 16 21:48:11  kernel: initcall init_osnoise_tracer+0x0/0x390 returned 0 after 2387 usecs
Sep 16 21:48:11  kernel: calling  bpf_key_sig_kfuncs_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall bpf_key_sig_kfuncs_init+0x0/0x20 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  bpf_global_ma_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall bpf_global_ma_init+0x0/0x30 returned 0 after 48 usecs
Sep 16 21:48:11  kernel: calling  bpf_syscall_sysctl_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall bpf_syscall_sysctl_init+0x0/0x30 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  kfunc_init+0x0/0xc0 @ 1
Sep 16 21:48:11  kernel: initcall kfunc_init+0x0/0xc0 returned 0 after 7 usecs
Sep 16 21:48:11  kernel: calling  bpf_map_iter_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall bpf_map_iter_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  init_subsystem+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall init_subsystem+0x0/0x20 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  task_iter_init+0x0/0xe0 @ 1
Sep 16 21:48:11  kernel: initcall task_iter_init+0x0/0xe0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  bpf_prog_iter_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall bpf_prog_iter_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  bpf_link_iter_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall bpf_link_iter_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  init_trampolines+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall init_trampolines+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  bpf_cgroup_iter_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall bpf_cgroup_iter_init+0x0/0x30 returned 0 after 3 usecs
Sep 16 21:48:11  kernel: calling  cpumask_kfunc_init+0x0/0xa0 @ 1
Sep 16 21:48:11  kernel: initcall cpumask_kfunc_init+0x0/0xa0 returned 0 after 12 usecs
Sep 16 21:48:11  kernel: calling  load_system_certificate_list+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: Loading compiled-in X.509 certificates
Sep 16 21:48:11  kernel: Loaded X.509 cert 'Build time autogenerated kernel key: 7ee8b7760c70f76d0a10ccce96ca009a0732dcb1'
Sep 16 21:48:11  kernel: initcall load_system_certificate_list+0x0/0x30 returned 0 after 2169 usecs
Sep 16 21:48:11  kernel: calling  load_revocation_certificate_list+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall load_revocation_certificate_list+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  init_lru_gen+0x0/0x70 @ 1
Sep 16 21:48:11  kernel: initcall init_lru_gen+0x0/0x70 returned 0 after 115 usecs
Sep 16 21:48:11  kernel: calling  fault_around_debugfs+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall fault_around_debugfs+0x0/0x30 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  max_swapfiles_check+0x0/0x10 @ 1
Sep 16 21:48:11  kernel: initcall max_swapfiles_check+0x0/0x10 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  zswap_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: zswap: loaded using pool zstd/zsmalloc
Sep 16 21:48:11  kernel: initcall zswap_init+0x0/0x20 returned 0 after 5212 usecs
Sep 16 21:48:11  kernel: calling  hugetlb_vmemmap_init+0x0/0x80 @ 1
Sep 16 21:48:11  kernel: initcall hugetlb_vmemmap_init+0x0/0x80 returned 0 after 6 usecs
Sep 16 21:48:11  kernel: calling  slab_sysfs_init+0x0/0x100 @ 1
Sep 16 21:48:11  kernel: initcall slab_sysfs_init+0x0/0x100 returned 0 after 695 usecs
Sep 16 21:48:11  kernel: calling  kfence_debugfs_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall kfence_debugfs_init+0x0/0x20 returned 0 after 64 usecs
Sep 16 21:48:11  kernel: calling  split_huge_pages_debugfs+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall split_huge_pages_debugfs+0x0/0x30 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  check_early_ioremap_leak+0x0/0x60 @ 1
Sep 16 21:48:11  kernel: initcall check_early_ioremap_leak+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  cma_debugfs_init+0x0/0x180 @ 1
Sep 16 21:48:11  kernel: initcall cma_debugfs_init+0x0/0x180 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  set_hardened_usercopy+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall set_hardened_usercopy+0x0/0x40 returned 1 after 0 usecs
Sep 16 21:48:11  kernel: calling  shrinker_debugfs_init+0x0/0x90 @ 1
Sep 16 21:48:11  kernel: initcall shrinker_debugfs_init+0x0/0x90 returned 0 after 98 usecs
Sep 16 21:48:11  kernel: calling  fscrypt_init+0x0/0xa0 @ 1
Sep 16 21:48:11  kernel: Key type .fscrypt registered
Sep 16 21:48:11  kernel: Key type fscrypt-provisioning registered
Sep 16 21:48:11  kernel: initcall fscrypt_init+0x0/0xa0 returned 0 after 622 usecs
Sep 16 21:48:11  kernel: calling  fsverity_init+0x0/0x50 @ 1
Sep 16 21:48:11  kernel: initcall fsverity_init+0x0/0x50 returned 0 after 19 usecs
Sep 16 21:48:11  kernel: calling  pstore_init+0x0/0x70 @ 1
Sep 16 21:48:11  kernel: initcall pstore_init+0x0/0x70 returned 0 after 4 usecs
Sep 16 21:48:11  kernel: calling  init_root_keyring+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall init_root_keyring+0x0/0x20 returned 0 after 6 usecs
Sep 16 21:48:11  kernel: calling  init_profile_hash+0x0/0x90 @ 1
Sep 16 21:48:11  kernel: initcall init_profile_hash+0x0/0x90 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  integrity_fs_init+0x0/0x60 @ 1
Sep 16 21:48:11  kernel: initcall integrity_fs_init+0x0/0x60 returned 0 after 3 usecs
Sep 16 21:48:11  kernel: calling  load_uefi_certs+0x0/0x270 @ 1
Sep 16 21:48:11  kernel: initcall load_uefi_certs+0x0/0x270 returned 0 after 1949 usecs
Sep 16 21:48:11  kernel: calling  crypto_algapi_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall crypto_algapi_init+0x0/0x20 returned 0 after 5 usecs
Sep 16 21:48:11  kernel: calling  blk_timeout_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall blk_timeout_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  sed_opal_init+0x0/0x60 @ 1
Sep 16 21:48:11  kernel: initcall sed_opal_init+0x0/0x60 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  init_error_injection+0x0/0x70 @ 1
Sep 16 21:48:11  kernel: initcall init_error_injection+0x0/0x70 returned 0 after 98 usecs
Sep 16 21:48:11  kernel: calling  pci_resource_alignment_sysfs_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall pci_resource_alignment_sysfs_init+0x0/0x20 returned 0 after 3 usecs
Sep 16 21:48:11  kernel: calling  pci_sysfs_init+0x0/0x90 @ 1
Sep 16 21:48:11  kernel: initcall pci_sysfs_init+0x0/0x90 returned 0 after 32 usecs
Sep 16 21:48:11  kernel: calling  bert_init+0x0/0x2e0 @ 1
Sep 16 21:48:11  kernel: initcall bert_init+0x0/0x2e0 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  clk_debug_init+0x0/0x120 @ 1
Sep 16 21:48:11  kernel: initcall clk_debug_init+0x0/0x120 returned 0 after 4 usecs
Sep 16 21:48:11  kernel: calling  setup_vcpu_hotplug_event+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall setup_vcpu_hotplug_event+0x0/0x40 returned -19 after 0 usecs
Sep 16 21:48:11  kernel: calling  boot_wait_for_devices+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall boot_wait_for_devices+0x0/0x40 returned -19 after 0 usecs
Sep 16 21:48:11  kernel: calling  dmar_free_unused_resources+0x0/0xf0 @ 1
Sep 16 21:48:11  kernel: initcall dmar_free_unused_resources+0x0/0xf0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  sync_state_resume_initcall+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall sync_state_resume_initcall+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  deferred_probe_initcall+0x0/0x90 @ 1
Sep 16 21:48:11  kernel: initcall deferred_probe_initcall+0x0/0x90 returned 0 after 232 usecs
Sep 16 21:48:11  kernel: calling  late_resume_init+0x0/0x1c0 @ 1
Sep 16 21:48:11  kernel: PM:   Magic number: 8:26:850
Sep 16 21:48:11  kernel: cpuid cpu14: hash matches
Sep 16 21:48:11  kernel: processor cpu14: hash matches
Sep 16 21:48:11  kernel: initcall late_resume_init+0x0/0x1c0 returned 0 after 626 usecs
Sep 16 21:48:11  kernel: calling  genpd_debug_init+0x0/0x80 @ 1
Sep 16 21:48:11  kernel: initcall genpd_debug_init+0x0/0x80 returned 0 after 2 usecs
Sep 16 21:48:11  kernel: calling  charger_manager_init+0x0/0xa0 @ 1
Sep 16 21:48:11  kernel: initcall charger_manager_init+0x0/0xa0 returned 0 after 341 usecs
Sep 16 21:48:11  kernel: calling  firmware_memmap_init+0x0/0x50 @ 1
Sep 16 21:48:11  kernel: initcall firmware_memmap_init+0x0/0x50 returned 0 after 14 usecs
Sep 16 21:48:11  kernel: calling  register_update_efi_random_seed+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall register_update_efi_random_seed+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  efi_shutdown_init+0x0/0x60 @ 1
Sep 16 21:48:11  kernel: initcall efi_shutdown_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  efi_rci2_sysfs_init+0x0/0x2a0 @ 1
Sep 16 21:48:11  kernel: initcall efi_rci2_sysfs_init+0x0/0x2a0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  efi_earlycon_unmap_fb+0x0/0x50 @ 1
Sep 16 21:48:11  kernel: initcall efi_earlycon_unmap_fb+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  hid_bpf_init+0x0/0xb0 @ 1
Sep 16 21:48:11  kernel: initcall hid_bpf_init+0x0/0xb0 returned 0 after 3352 usecs
Sep 16 21:48:11  kernel: calling  itmt_legacy_init+0x0/0x60 @ 1
Sep 16 21:48:11  kernel: initcall itmt_legacy_init+0x0/0x60 returned -19 after 0 usecs
Sep 16 21:48:11  kernel: calling  cec_init+0x0/0x1b0 @ 1
Sep 16 21:48:11  kernel: RAS: Correctable Errors collector initialized.
Sep 16 21:48:11  kernel: initcall cec_init+0x0/0x1b0 returned 0 after 179 usecs
Sep 16 21:48:11  kernel: calling  bpf_kfunc_init+0x0/0x120 @ 1
Sep 16 21:48:11  kernel: initcall bpf_kfunc_init+0x0/0x120 returned 0 after 125 usecs
Sep 16 21:48:11  kernel: calling  init_subsystem+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall init_subsystem+0x0/0x20 returned 0 after 2 usecs
Sep 16 21:48:11  kernel: calling  xdp_metadata_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall xdp_metadata_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  bpf_sockmap_iter_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall bpf_sockmap_iter_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  bpf_sk_storage_map_iter_init+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall bpf_sk_storage_map_iter_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  sch_default_qdisc+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall sch_default_qdisc+0x0/0x20 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  bpf_prog_test_run_init+0x0/0xb0 @ 1
Sep 16 21:48:11  kernel: initcall bpf_prog_test_run_init+0x0/0xb0 returned 0 after 4 usecs
Sep 16 21:48:11  kernel: calling  tcp_congestion_default+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall tcp_congestion_default+0x0/0x20 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  tcp_bpf_v4_build_proto+0x0/0xa0 @ 1
Sep 16 21:48:11  kernel: initcall tcp_bpf_v4_build_proto+0x0/0xa0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  udp_bpf_v4_build_proto+0x0/0x80 @ 1
Sep 16 21:48:11  kernel: initcall udp_bpf_v4_build_proto+0x0/0x80 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  bpf_tcp_ca_kfunc_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall bpf_tcp_ca_kfunc_init+0x0/0x20 returned 0 after 2 usecs
Sep 16 21:48:11  kernel: calling  bpf_mptcp_kfunc_init+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall bpf_mptcp_kfunc_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  pci_mmcfg_late_insert_resources+0x0/0x80 @ 1
Sep 16 21:48:11  kernel: initcall pci_mmcfg_late_insert_resources+0x0/0x80 returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  software_resume_initcall+0x0/0x180 @ 1
Sep 16 21:48:11  kernel: initcall software_resume_initcall+0x0/0x180 returned -2 after 1 usecs
Sep 16 21:48:11  kernel: calling  lockup_detector_check+0x0/0x80 @ 1
Sep 16 21:48:11  kernel: initcall lockup_detector_check+0x0/0x80 returned 0 after 13 usecs
Sep 16 21:48:11  kernel: calling  ftrace_check_sync+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall ftrace_check_sync+0x0/0x20 returned 0 after 9 usecs
Sep 16 21:48:11  kernel: calling  latency_fsnotify_init+0x0/0x40 @ 1
Sep 16 21:48:11  kernel: initcall latency_fsnotify_init+0x0/0x40 returned 0 after 9 usecs
Sep 16 21:48:11  kernel: calling  trace_eval_sync+0x0/0x20 @ 1
Sep 16 21:48:11  kernel: initcall trace_eval_sync+0x0/0x20 returned 0 after 8 usecs
Sep 16 21:48:11  kernel: calling  late_trace_init+0x0/0xc0 @ 1
Sep 16 21:48:11  kernel: initcall late_trace_init+0x0/0xc0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  acpi_gpio_handle_deferred_request_irqs+0x0/0xa0 @ 1
Sep 16 21:48:11  kernel: initcall acpi_gpio_handle_deferred_request_irqs+0x0/0xa0 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  clk_disable_unused+0x0/0x150 @ 1
Sep 16 21:48:11  kernel: clk: Disabling unused clocks
Sep 16 21:48:11  kernel: initcall clk_disable_unused+0x0/0x150 returned 0 after 173 usecs
Sep 16 21:48:11  kernel: calling  balloon_wait_finish+0x0/0x110 @ 1
Sep 16 21:48:11  kernel: initcall balloon_wait_finish+0x0/0x110 returned -19 after 0 usecs
Sep 16 21:48:11  kernel: calling  regulator_init_complete+0x0/0x30 @ 1
Sep 16 21:48:11  kernel: initcall regulator_init_complete+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: calling  genpd_power_off_unused+0x0/0x90 @ 1
Sep 16 21:48:11  kernel: initcall genpd_power_off_unused+0x0/0x90 returned 0 after 0 usecs
Sep 16 21:48:11  kernel: ACPI: battery: Slot [BAT0] (battery present)
Sep 16 21:48:11  kernel: probe of PNP0C0A:00 returned 0 after 271306 usecs
Sep 16 21:48:11  kernel: Freeing unused decrypted memory: 2028K
Sep 16 21:48:11  kernel: Freeing unused kernel image (initmem) memory: 3432K
Sep 16 21:48:11  kernel: Write protecting the kernel read-only data: 30720k
Sep 16 21:48:11  kernel: Freeing unused kernel image (rodata/data gap) memory: 1312K
Sep 16 21:48:11  kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Sep 16 21:48:11  kernel: rodata_test: all tests were successful
Sep 16 21:48:11  kernel: Run /init as init process
Sep 16 21:48:11  kernel:   with arguments:
Sep 16 21:48:11  kernel:     /init
Sep 16 21:48:11  kernel:   with environment:
Sep 16 21:48:11  kernel:     HOME=/
Sep 16 21:48:11  kernel:     TERM=linux
Sep 16 21:48:11  kernel:     BOOT_IMAGE=/boot/vmlinuz-linux-lts
Sep 16 21:48:11  kernel: calling  serio_init+0x0/0xff0 [serio] @ 242
Sep 16 21:48:11  kernel: initcall serio_init+0x0/0xff0 [serio] returned 0 after 18 usecs
Sep 16 21:48:11  kernel: calling  acpi_wmi_init+0x0/0xff0 [wmi] @ 241
Sep 16 21:48:11  kernel: probe of PNP0C14:00 returned 0 after 172 usecs
Sep 16 21:48:11  kernel: probe of PNP0C14:01 returned 0 after 142 usecs
Sep 16 21:48:11  kernel: probe of PNP0C14:02 returned 0 after 108 usecs
Sep 16 21:48:11  kernel: initcall acpi_wmi_init+0x0/0xff0 [wmi] returned 0 after 2034 usecs
Sep 16 21:48:11  kernel: calling  i8042_init+0x0/0xff0 [i8042] @ 242
Sep 16 21:48:11  kernel: probe of 00:03 returned 0 after 29 usecs
Sep 16 21:48:11  kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
Sep 16 21:48:11  kernel: i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
Sep 16 21:48:11  kernel: calling  acpi_video_init+0x0/0xff0 [video] @ 241
Sep 16 21:48:11  kernel: i8042: Warning: Keylock active
Sep 16 21:48:11  kernel: initcall acpi_video_init+0x0/0xff0 [video] returned 0 after 9 usecs
Sep 16 21:48:11  kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Sep 16 21:48:11  kernel: probe of i8042 returned 0 after 1531 usecs
Sep 16 21:48:11  kernel: initcall i8042_init+0x0/0xff0 [i8042] returned 0 after 1456 usecs
Sep 16 21:48:11  kernel: calling  cec_devnode_init+0x0/0xff0 [cec] @ 258
Sep 16 21:48:11  kernel: initcall cec_devnode_init+0x0/0xff0 [cec] returned 0 after 26 usecs
Sep 16 21:48:11  kernel: calling  crc32c_intel_mod_init+0x0/0xff0 [crc32c_intel] @ 263
Sep 16 21:48:11  kernel: initcall crc32c_intel_mod_init+0x0/0xff0 [crc32c_intel] returned 0 after 3 usecs
Sep 16 21:48:11  kernel: calling  intel_spi_pci_driver_init+0x0/0xff0 [spi_intel_pci] @ 256
Sep 16 21:48:11  kernel: calling  xhci_pci_init+0x0/0xff0 [xhci_pci] @ 254
Sep 16 21:48:11  kernel: probe of 0000:00:1f.5 returned 0 after 249 usecs
Sep 16 21:48:11  kernel: xhci_hcd 0000:00:0d.0: xHCI Host Controller
Sep 16 21:48:11  kernel: initcall intel_spi_pci_driver_init+0x0/0xff0 [spi_intel_pci] returned 0 after 372 usecs
Sep 16 21:48:11  kernel: xhci_hcd 0000:00:0d.0: new USB bus registered, assigned bus number 1
Sep 16 21:48:11  kernel: xhci_hcd 0000:00:0d.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000200009810
Sep 16 21:48:11  kernel: xhci_hcd 0000:00:0d.0: xHCI Host Controller
Sep 16 21:48:11  kernel: xhci_hcd 0000:00:0d.0: new USB bus registered, assigned bus number 2
Sep 16 21:48:11  kernel: xhci_hcd 0000:00:0d.0: Host supports USB 3.2 Enhanced SuperSpeed
Sep 16 21:48:11  kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.06
Sep 16 21:48:11  kernel: calling  drm_display_helper_module_init+0x0/0xff0 [drm_display_helper] @ 258
Sep 16 21:48:11  kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Sep 16 21:48:11  kernel: initcall drm_display_helper_module_init+0x0/0xff0 [drm_display_helper] returned 0 after 11 usecs
Sep 16 21:48:11  kernel: usb usb1: Product: xHCI Host Controller
Sep 16 21:48:11  kernel: usb usb1: Manufacturer: Linux 6.6.49-1-lts xhci-hcd
Sep 16 21:48:11  kernel: usb usb1: SerialNumber: 0000:00:0d.0
Sep 16 21:48:11  kernel: hub 1-0:1.0: USB hub found
Sep 16 21:48:11  kernel: hub 1-0:1.0: 1 port detected
Sep 16 21:48:11  kernel: probe of 1-0:1.0 returned 0 after 652 usecs
Sep 16 21:48:11  kernel: probe of usb1 returned 0 after 904 usecs
Sep 16 21:48:11  kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.06
Sep 16 21:48:11  kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Sep 16 21:48:11  kernel: usb usb2: Product: xHCI Host Controller
Sep 16 21:48:11  kernel: usb usb2: Manufacturer: Linux 6.6.49-1-lts xhci-hcd
Sep 16 21:48:11  kernel: usb usb2: SerialNumber: 0000:00:0d.0
Sep 16 21:48:11  kernel: hub 2-0:1.0: USB hub found
Sep 16 21:48:11  kernel: hub 2-0:1.0: 3 ports detected
Sep 16 21:48:11  kernel: calling  nvme_core_init+0x0/0x1b0 [nvme_core] @ 246
Sep 16 21:48:11  kernel: probe of 2-0:1.0 returned 0 after 1436 usecs
Sep 16 21:48:11  kernel: initcall nvme_core_init+0x0/0x1b0 [nvme_core] returned 0 after 310 usecs
Sep 16 21:48:11  kernel: probe of usb2 returned 0 after 1903 usecs
Sep 16 21:48:11  kernel: probe of 0000:00:0d.0 returned 0 after 12505 usecs
Sep 16 21:48:11  kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Sep 16 21:48:11  kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
Sep 16 21:48:11  kernel: xhci_hcd 0000:00:14.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000100200009810
Sep 16 21:48:11  kernel: calling  nvme_init+0x0/0xff0 [nvme] @ 246
Sep 16 21:48:11  kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Sep 16 21:48:11  kernel: initcall nvme_init+0x0/0xff0 [nvme] returned 0 after 22 usecs
Sep 16 21:48:11  kernel: nvme 0000:01:00.0: platform quirk: setting simple suspend
Sep 16 21:48:11  kernel: nvme nvme0: pci function 0000:01:00.0
Sep 16 21:48:11  kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
Sep 16 21:48:11  kernel: xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
Sep 16 21:48:11  kernel: usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.06
Sep 16 21:48:11  kernel: usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Sep 16 21:48:11  kernel: usb usb3: Product: xHCI Host Controller
Sep 16 21:48:11  kernel: calling  drm_buddy_module_init+0x0/0xff0 [drm_buddy] @ 258
Sep 16 21:48:11  kernel: usb usb3: Manufacturer: Linux 6.6.49-1-lts xhci-hcd
Sep 16 21:48:11  kernel: initcall drm_buddy_module_init+0x0/0xff0 [drm_buddy] returned 0 after 5 usecs
Sep 16 21:48:11  kernel: usb usb3: SerialNumber: 0000:00:14.0
Sep 16 21:48:11  kernel: hub 3-0:1.0: USB hub found
Sep 16 21:48:11  kernel: calling  atkbd_init+0x0/0xf40 [atkbd] @ 244
Sep 16 21:48:11  kernel: hub 3-0:1.0: 12 ports detected
Sep 16 21:48:11  kernel: initcall atkbd_init+0x0/0xf40 [atkbd] returned 0 after 24 usecs
Sep 16 21:48:11  kernel: probe of 3-0:1.0 returned 0 after 4244 usecs
Sep 16 21:48:11  kernel: nvme nvme0: missing or invalid SUBNQN field.
Sep 16 21:48:11  kernel: probe of usb3 returned 0 after 4592 usecs
Sep 16 21:48:11  kernel: usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.06
Sep 16 21:48:11  kernel: usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Sep 16 21:48:11  kernel: usb usb4: Product: xHCI Host Controller
Sep 16 21:48:11  kernel: usb usb4: Manufacturer: Linux 6.6.49-1-lts xhci-hcd
Sep 16 21:48:11  kernel: usb usb4: SerialNumber: 0000:00:14.0
Sep 16 21:48:11  kernel: hub 4-0:1.0: USB hub found
Sep 16 21:48:11  kernel: hub 4-0:1.0: 4 ports detected
Sep 16 21:48:11  kernel: probe of 4-0:1.0 returned 0 after 1011 usecs
Sep 16 21:48:11  kernel: probe of usb4 returned 0 after 1251 usecs
Sep 16 21:48:11  kernel: probe of 0000:00:14.0 returned 0 after 15831 usecs
Sep 16 21:48:11  kernel: initcall xhci_pci_init+0x0/0xff0 [xhci_pci] returned 0 after 7198 usecs
Sep 16 21:48:11  kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
Sep 16 21:48:11  kernel: nvme nvme0: 15/0/0 default/read/poll queues
Sep 16 21:48:11  kernel:  nvme0n1: p1 p2 p3 p4
Sep 16 21:48:11  kernel: probe of 0000:01:00.0 returned 0 after 21492 usecs
Sep 16 21:48:11  kernel: calling  serio_raw_drv_init+0x0/0xff0 [serio_raw] @ 244
Sep 16 21:48:11  kernel: initcall serio_raw_drv_init+0x0/0xff0 [serio_raw] returned 0 after 56 usecs
Sep 16 21:48:11  kernel: calling  i915_init+0x0/0xc0 [i915] @ 258
Sep 16 21:48:11  kernel: Console: switching to colour dummy device 80x25
Sep 16 21:48:11  kernel: probe of serio0 returned 0 after 211389 usecs
Sep 16 21:48:11  kernel: i915 0000:00:02.0: vgaarb: deactivate vga console
Sep 16 21:48:11  kernel: i915 0000:00:02.0: [drm] Using Transparent Hugepages
Sep 16 21:48:11  kernel: i915 0000:00:02.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=io+mem:owns=io+mem
Sep 16 21:48:11  kernel: usb 3-10: new full-speed USB device number 2 using xhci_hcd
Sep 16 21:48:11  kernel: i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/adlp_dmc.bin (v2.20)
Sep 16 21:48:11  kernel: i915 0000:00:02.0: [drm] GT0: GuC firmware i915/adlp_guc_70.bin version 70.29.2
Sep 16 21:48:11  kernel: i915 0000:00:02.0: [drm] GT0: HuC firmware i915/tgl_huc.bin version 7.9.3
Sep 16 21:48:11  kernel: i915 0000:00:02.0: [drm] GT0: HuC: authenticated for all workloads
Sep 16 21:48:11  kernel: i915 0000:00:02.0: [drm] GT0: GUC: submission enabled
Sep 16 21:48:11  kernel: i915 0000:00:02.0: [drm] GT0: GUC: SLPC enabled
Sep 16 21:48:11  kernel: i915 0000:00:02.0: [drm] GT0: GUC: RC enabled
Sep 16 21:48:11  kernel: i915 0000:00:02.0: [drm] Protected Xe Path (PXP) protected content support initialized
Sep 16 21:48:11  kernel: usb 3-10: New USB device found, idVendor=8087, idProduct=0026, bcdDevice= 0.02
Sep 16 21:48:11  kernel: usb 3-10: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Sep 16 21:48:11  kernel: probe of 3-10 returned 0 after 2678 usecs
Sep 16 21:48:11  kernel: [drm] Initialized i915 1.6.0 20201103 for 0000:00:02.0 on minor 1
Sep 16 21:48:11  kernel: ACPI: video: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
Sep 16 21:48:11  kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input3
Sep 16 21:48:11  kernel: probe of LNXVIDEO:00 returned 0 after 2848 usecs
Sep 16 21:48:11  kernel: probe of 0000:00:02.0 returned 0 after 1285548 usecs
Sep 16 21:48:11  kernel: initcall i915_init+0x0/0xc0 [i915] returned 0 after 1288136 usecs
Sep 16 21:48:11  kernel: fbcon: i915drmfb (fb0) is primary device
Sep 16 21:48:11  kernel: Console: switching to colour frame buffer device 240x75
Sep 16 21:48:11  kernel: i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
Sep 16 21:48:11  kernel: calling  journal_init+0x0/0xea0 [jbd2] @ 349
Sep 16 21:48:11  kernel: initcall journal_init+0x0/0xea0 [jbd2] returned 0 after 114 usecs
Sep 16 21:48:11  kernel: calling  mbcache_init+0x0/0xff0 [mbcache] @ 349
Sep 16 21:48:11  kernel: initcall mbcache_init+0x0/0xff0 [mbcache] returned 0 after 9 usecs
Sep 16 21:48:11  kernel: calling  crc32c_mod_init+0x0/0xff0 [crc32c_generic] @ 349
Sep 16 21:48:11  kernel: initcall crc32c_mod_init+0x0/0xff0 [crc32c_generic] returned 0 after 3 usecs
Sep 16 21:48:11  kernel: calling  ext4_init_fs+0x0/0x1f0 [ext4] @ 349
Sep 16 21:48:11  kernel: initcall ext4_init_fs+0x0/0x1f0 [ext4] returned 0 after 114 usecs
Sep 16 21:48:11  kernel: EXT4-fs (nvme0n1p3): mounted filesystem 2ec9a78e-0c5a-40b3-a1fb-cf4be8a42b06 r/w with ordered data mode. Quota mode: none.
Sep 16 21:48:11  kernel: calling  xt_init+0x0/0xff0 [x_tables] @ 1
Sep 16 21:48:11  kernel: initcall xt_init+0x0/0xff0 [x_tables] returned 0 after 1 usecs
Sep 16 21:48:11  kernel: calling  ip_tables_init+0x0/0xff0 [ip_tables] @ 1
Sep 16 21:48:11  kernel: initcall ip_tables_init+0x0/0xff0 [ip_tables] returned 0 after 4 usecs
Sep 16 21:48:11  kernel: calling  load+0x0/0xff0 [bpf_preload] @ 363
Sep 16 21:48:11  kernel: initcall load+0x0/0xff0 [bpf_preload] returned 0 after 4197 usecs
Sep 16 21:48:11  systemd[1]: systemd 256.5-1-arch 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)
Sep 16 21:48:11  systemd[1]: Detected architecture x86-64.
Sep 16 21:48:11  systemd[1]: Hostname set to <X-Ware>.
Sep 16 21:48:11  kernel: systemd[1]: memfd_create() called without MFD_EXEC or MFD_NOEXEC_SEAL set
Sep 16 21:48:11  systemd[1]: bpf-restrict-fs: LSM BPF program attached
Sep 16 21:48:11  systemd[1]: Queued start job for default target Graphical Interface.
Sep 16 21:48:11  kernel: calling  nfnetlink_init+0x0/0xff0 [nfnetlink] @ 385
Sep 16 21:48:11  kernel: initcall nfnetlink_init+0x0/0xff0 [nfnetlink] returned 0 after 9 usecs
Sep 16 21:48:11  systemd[1]: Created slice Slice /system/dirmngr.
Sep 16 21:48:11  systemd[1]: Created slice Slice /system/getty.
Sep 16 21:48:11  systemd[1]: Created slice Slice /system/gpg-agent.
Sep 16 21:48:11  systemd[1]: Created slice Slice /system/gpg-agent-browser.
Sep 16 21:48:11  systemd[1]: Created slice Slice /system/gpg-agent-extra.
Sep 16 21:48:11  systemd[1]: Created slice Slice /system/gpg-agent-ssh.
Sep 16 21:48:11  systemd[1]: Created slice Slice /system/keyboxd.
Sep 16 21:48:11  systemd[1]: Created slice Slice /system/modprobe.
Sep 16 21:48:11  systemd[1]: Created slice Slice /system/systemd-fsck.
Sep 16 21:48:11  systemd[1]: Created slice User and Session Slice.
Sep 16 21:48:11  systemd[1]: Started Forward Password Requests to Wall Directory Watch.
Sep 16 21:48:11  systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
Sep 16 21:48:11  systemd[1]: Expecting device /dev/disk/by-uuid/7DF8-380C...
Sep 16 21:48:11  systemd[1]: Expecting device /dev/disk/by-uuid/7d4dd35b-5de8-4c46-be9d-bd2c87a13f17...
Sep 16 21:48:11  systemd[1]: Expecting device /dev/disk/by-uuid/E68B-375F...
Sep 16 21:48:11  systemd[1]: Reached target Local Integrity Protected Volumes.
Sep 16 21:48:11  systemd[1]: Reached target Remote File Systems.
Sep 16 21:48:11  systemd[1]: Reached target Slice Units.
Sep 16 21:48:11  systemd[1]: Reached target Local Verity Protected Volumes.
Sep 16 21:48:11  systemd[1]: Listening on Device-mapper event daemon FIFOs.
Sep 16 21:48:11  systemd[1]: Listening on LVM2 poll daemon socket.
Sep 16 21:48:11  systemd[1]: Listening on Process Core Dump Socket.
Sep 16 21:48:11  systemd[1]: Listening on Credential Encryption/Decryption.
Sep 16 21:48:11  systemd[1]: Listening on Journal Socket (/dev/log).
Sep 16 21:48:11  systemd[1]: Listening on Journal Sockets.
Sep 16 21:48:11  systemd[1]: Listening on Network Service Netlink Socket.
Sep 16 21:48:11  systemd[1]: TPM PCR Measurements was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Sep 16 21:48:11  systemd[1]: Make TPM PCR Policy was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Sep 16 21:48:11  systemd[1]: Listening on udev Control Socket.
Sep 16 21:48:11  systemd[1]: Listening on udev Kernel Socket.
Sep 16 21:48:11  systemd[1]: Mounting Huge Pages File System...
Sep 16 21:48:11  systemd[1]: Mounting POSIX Message Queue File System...
Sep 16 21:48:11  systemd[1]: Mounting Kernel Debug File System...
Sep 16 21:48:11  systemd[1]: Mounting Kernel Trace File System...
Sep 16 21:48:11  systemd[1]: Starting Create List of Static Device Nodes...
Sep 16 21:48:11  systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
Sep 16 21:48:11  systemd[1]: Starting Load Kernel Module configfs...
Sep 16 21:48:11  systemd[1]: Starting Load Kernel Module dm_mod...
Sep 16 21:48:11  systemd[1]: Starting Load Kernel Module drm...
Sep 16 21:48:11  systemd[1]: Starting Load Kernel Module fuse...
Sep 16 21:48:11  systemd[1]: Starting Load Kernel Module loop...
Sep 16 21:48:11  systemd[1]: File System Check on Root Device was skipped because of an unmet condition check (ConditionPathIsReadWrite=!/).
Sep 16 21:48:11  systemd[1]: Clear Stale Hibernate Storage Info was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67).
Sep 16 21:48:11  systemd[1]: Starting Journal Service...
Sep 16 21:48:11  systemd[1]: Starting Load Kernel Modules...
Sep 16 21:48:11  systemd[1]: Starting Generate network units from Kernel command line...
Sep 16 21:48:11  systemd[1]: TPM PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Sep 16 21:48:11  systemd[1]: Starting Remount Root and Kernel File Systems...
Sep 16 21:48:11  systemd[1]: Early TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Sep 16 21:48:11  kernel: calling  loop_init+0x0/0xff0 [loop] @ 397
Sep 16 21:48:11  kernel: calling  dm_init+0x0/0x80 [dm_mod] @ 394
Sep 16 21:48:11  systemd[1]: Starting Load udev Rules from Credentials...
Sep 16 21:48:11  kernel: loop: module loaded
Sep 16 21:48:11  kernel: device-mapper: uevent: version 1.0.3
Sep 16 21:48:11  systemd[1]: Starting Coldplug All udev Devices...
Sep 16 21:48:11  kernel: initcall loop_init+0x0/0xff0 [loop] returned 0 after 785 usecs
Sep 16 21:48:11  systemd[1]: Starting Virtual Console Setup...
Sep 16 21:48:11  kernel: device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@redhat.com
Sep 16 21:48:11  systemd[1]: Mounted Huge Pages File System.
Sep 16 21:48:11  kernel: initcall dm_init+0x0/0x80 [dm_mod] returned 0 after 4849 usecs
Sep 16 21:48:11  systemd[1]: Mounted POSIX Message Queue File System.
Sep 16 21:48:11  systemd[1]: Mounted Kernel Debug File System.
Sep 16 21:48:11  systemd[1]: Mounted Kernel Trace File System.
Sep 16 21:48:11  kernel: calling  crypto_user_init+0x0/0xff0 [crypto_user] @ 399
Sep 16 21:48:11  systemd-journald[398]: Collecting audit messages is disabled.
Sep 16 21:48:11  kernel: initcall crypto_user_init+0x0/0xff0 [crypto_user] returned 0 after 8 usecs
Sep 16 21:48:11  kernel: calling  fuse_init+0x0/0x200 [fuse] @ 396
Sep 16 21:48:11  kernel: fuse: init (API version 7.39)
Sep 16 21:48:11  kernel: initcall fuse_init+0x0/0x200 [fuse] returned 0 after 743 usecs
Sep 16 21:48:11  kernel: calling  i2c_dev_init+0x0/0xc0 [i2c_dev] @ 399
Sep 16 21:48:11  kernel: i2c_dev: i2c /dev entries driver
Sep 16 21:48:11  kernel: initcall i2c_dev_init+0x0/0xc0 [i2c_dev] returned 0 after 823 usecs
Sep 16 21:48:11  kernel: calling  pkcs8_key_init+0x0/0xff0 [pkcs8_key_parser] @ 399
Sep 16 21:48:11  kernel: Asymmetric key parser 'pkcs8' registered
Sep 16 21:48:11  kernel: initcall pkcs8_key_init+0x0/0xff0 [pkcs8_key_parser] returned 0 after 769 usecs
Sep 16 21:48:11  systemd-journald[398]: Journal started
Sep 16 21:48:11  systemd-journald[398]: Runtime Journal (/run/log/journal/d2f6e77df46d4a1e8240e7ccd89ad000) is 8M, max 786M, 778M free.
Sep 16 21:48:11  systemd-modules-load[399]: Inserted module 'crypto_user'
Sep 16 21:48:11  systemd-modules-load[399]: Inserted module 'i2c_dev'
Sep 16 21:48:11  systemd-modules-load[399]: Inserted module 'pkcs8_key_parser'
Sep 16 21:48:11  systemd-modules-load[399]: Failed to find module 'vboxdrv'
Sep 16 21:48:11  systemd-modules-load[399]: Failed to find module 'vboxnetadp'
Sep 16 21:48:11  systemd-modules-load[399]: Failed to find module 'vboxnetflt'
Sep 16 21:48:11  systemd-remount-fs[408]: mount: /etc/fstab: parse error at line 21 -- ignored
Sep 16 21:48:11  systemd[1]: modprobe@configfs.service: Deactivated successfully.
Sep 16 21:48:11  systemd[1]: Finished Create List of Static Device Nodes.
Sep 16 21:48:11  systemd[1]: Started Journal Service.
Sep 16 21:48:11  kernel: EXT4-fs (nvme0n1p3): re-mounted 2ec9a78e-0c5a-40b3-a1fb-cf4be8a42b06 r/w. Quota mode: none.
Sep 16 21:48:11  systemd[1]: Finished Load Kernel Module configfs.
Sep 16 21:48:11  systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
Sep 16 21:48:11  systemd[1]: Finished Load Kernel Module dm_mod.
Sep 16 21:48:11  systemd[1]: Finished Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
Sep 16 21:48:11  systemd[1]: modprobe@drm.service: Deactivated successfully.
Sep 16 21:48:11  systemd[1]: Finished Load Kernel Module drm.
Sep 16 21:48:11  systemd[1]: modprobe@fuse.service: Deactivated successfully.
Sep 16 21:48:11  systemd[1]: Finished Load Kernel Module fuse.
Sep 16 21:48:11  systemd[1]: modprobe@loop.service: Deactivated successfully.
Sep 16 21:48:11  systemd[1]: Finished Load Kernel Module loop.
Sep 16 21:48:11  systemd[1]: Finished Load Kernel Modules.
Sep 16 21:48:11  systemd[1]: Finished Generate network units from Kernel command line.
Sep 16 21:48:11  systemd[1]: Finished Remount Root and Kernel File Systems.
Sep 16 21:48:11  systemd[1]: Finished Load udev Rules from Credentials.
Sep 16 21:48:11  systemd[1]: Finished Coldplug All udev Devices.
Sep 16 21:48:11  systemd[1]: Finished Virtual Console Setup.
Sep 16 21:48:11  systemd[1]: Reached target Preparation for Network.
Sep 16 21:48:11  systemd[1]: Mounting FUSE Control File System...
Sep 16 21:48:11  systemd[1]: Mounting Kernel Configuration File System...
Sep 16 21:48:11  systemd[1]: Started Early root shell on /dev/tty9 FOR DEBUGGING ONLY.
Sep 16 21:48:11  systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
Sep 16 21:48:11  systemd[1]: Starting Flush Journal to Persistent Storage...
Sep 16 21:48:11  systemd[1]: Starting Load/Save OS Random Seed...
Sep 16 21:48:11  systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
Sep 16 21:48:11  systemd[1]: Starting Apply Kernel Variables...
Sep 16 21:48:11  systemd[1]: Starting Create Static Device Nodes in /dev gracefully...
Sep 16 21:48:11  systemd[1]: TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Sep 16 21:48:11  systemd[1]: Mounted FUSE Control File System.
Sep 16 21:48:11  systemd[1]: Mounted Kernel Configuration File System.
Sep 16 21:48:11  systemd-journald[398]: Time spent on flushing to /var/log/journal/d2f6e77df46d4a1e8240e7ccd89ad000 is 37.637ms for 2711 entries.
Sep 16 21:48:11  systemd-journald[398]: System Journal (/var/log/journal/d2f6e77df46d4a1e8240e7ccd89ad000) is 95.1M, max 95.1M, 0B free.
Sep 16 21:48:11  systemd-journald[398]: Received client request to flush runtime journal.
Sep 16 21:48:11  systemd[1]: Finished Load/Save OS Random Seed.
Sep 16 21:48:11  systemd[1]: Finished Apply Kernel Variables.
Sep 16 21:48:11  systemd[1]: Finished Flush Journal to Persistent Storage.
Sep 16 21:48:11  systemd-tmpfiles[442]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:48:11  systemd-tmpfiles[442]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:48:11  systemd-tmpfiles[442]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:48:11  systemd-tmpfiles[442]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:48:11  systemd-tmpfiles[442]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:48:11  systemd-tmpfiles[442]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev/net.
Sep 16 21:48:11  systemd-tmpfiles[442]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:48:11  systemd-tmpfiles[442]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:48:11  systemd-tmpfiles[442]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:48:11  systemd-tmpfiles[442]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev/mapper.
Sep 16 21:48:11  systemd-tmpfiles[442]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:48:11  systemd-tmpfiles[442]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:48:11  systemd-tmpfiles[442]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev/vfio.
Sep 16 21:48:11  systemd-tmpfiles[442]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:48:11  systemd-tmpfiles[442]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:48:11  systemd-tmpfiles[442]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:48:11  systemd-tmpfiles[442]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:48:11  systemd-tmpfiles[442]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:48:11  systemd-tmpfiles[442]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:48:11  systemd-tmpfiles[442]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev/snd.
Sep 16 21:48:11  systemd-tmpfiles[442]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev/snd.
Sep 16 21:48:11  systemd-tmpfiles[442]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:48:11  systemd-tmpfiles[442]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev/loop-control.
Sep 16 21:48:11  systemd-tmpfiles[442]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev/fuse.
Sep 16 21:48:12  systemd[1]: Finished Create Static Device Nodes in /dev gracefully.
Sep 16 21:48:12  systemd[1]: Create System Users was skipped because no trigger condition checks were met.
Sep 16 21:48:12  systemd[1]: Starting Create Static Device Nodes in /dev...
Sep 16 21:48:12  systemd-tmpfiles[454]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:48:12  systemd-tmpfiles[454]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:48:12  systemd-tmpfiles[454]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:48:12  systemd-tmpfiles[454]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:48:12  systemd-tmpfiles[454]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:48:12  systemd-tmpfiles[454]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev/net.
Sep 16 21:48:12  systemd-tmpfiles[454]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:48:12  systemd-tmpfiles[454]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:48:12  systemd-tmpfiles[454]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:48:12  systemd-tmpfiles[454]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev/mapper.
Sep 16 21:48:12  systemd-tmpfiles[454]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:48:12  systemd-tmpfiles[454]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:48:12  systemd-tmpfiles[454]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev/vfio.
Sep 16 21:48:12  systemd-tmpfiles[454]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:48:12  systemd-tmpfiles[454]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:48:12  systemd-tmpfiles[454]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:48:12  systemd-tmpfiles[454]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:48:12  systemd-tmpfiles[454]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:48:12  systemd-tmpfiles[454]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:48:12  systemd-tmpfiles[454]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev/snd.
Sep 16 21:48:12  systemd-tmpfiles[454]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev/snd.
Sep 16 21:48:12  systemd-tmpfiles[454]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:48:12  systemd-tmpfiles[454]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev/loop-control.
Sep 16 21:48:12  systemd-tmpfiles[454]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev/fuse.
Sep 16 21:48:12  systemd[1]: Finished Create Static Device Nodes in /dev.
Sep 16 21:48:12  systemd[1]: Reached target Preparation for Local File Systems.
Sep 16 21:48:12  systemd[1]: Starting Rule-based Manager for Device Events and Files...
Sep 16 21:48:12  systemd-udevd[458]: Using default interface naming scheme 'v255'.
Sep 16 21:48:12  systemd[1]: Started Rule-based Manager for Device Events and Files.
Sep 16 21:48:12  systemd[1]: Starting Show Plymouth Boot Screen...
Sep 16 21:48:12  systemd[1]: Starting Network Configuration...
Sep 16 21:48:12  systemd[1]: Condition check resulted in /dev/tpmrm0 being skipped.
Sep 16 21:48:12  systemd[1]: Reached target Trusted Platform Module.
Sep 16 21:48:12  kernel: calling  mac_hid_init+0x0/0xff0 [mac_hid] @ 466
Sep 16 21:48:12  kernel: initcall mac_hid_init+0x0/0xff0 [mac_hid] returned 0 after 31 usecs
Sep 16 21:48:12  kernel: calling  acpi_pad_init+0x0/0xff0 [acpi_pad] @ 460
Sep 16 21:48:12  kernel: calling  int3403_driver_init+0x0/0xff0 [int3403_thermal] @ 505
Sep 16 21:48:12  kernel: probe of ACPI000C:00 returned 0 after 468 usecs
Sep 16 21:48:12  systemd[1]: Received SIGRTMIN+20 from PID 522 (plymouthd).
Sep 16 21:48:12  kernel: initcall acpi_pad_init+0x0/0xff0 [acpi_pad] returned 0 after 1544 usecs
Sep 16 21:48:12  kernel: calling  fjes_init_module+0x0/0xff0 [fjes] @ 481
Sep 16 21:48:12  kernel: calling  int3400_thermal_driver_init+0x0/0xff0 [int3400_thermal] @ 471
Sep 16 21:48:12  kernel: initcall fjes_init_module+0x0/0xff0 [fjes] returned -19 after 290 usecs
Sep 16 21:48:12  kernel: Consider using thermal netlink events interface
Sep 16 21:48:12  systemd[1]: Found device YMTC PC005 512GB 2.
Sep 16 21:48:12  kernel: calling  i2c_hid_acpi_driver_init+0x0/0xff0 [i2c_hid_acpi] @ 490
Sep 16 21:48:12  kernel: calling  parport_default_proc_register+0x0/0xff0 [parport] @ 464
Sep 16 21:48:12  kernel: initcall i2c_hid_acpi_driver_init+0x0/0xff0 [i2c_hid_acpi] returned 0 after 46 usecs
Sep 16 21:48:12  kernel: initcall parport_default_proc_register+0x0/0xff0 [parport] returned 0 after 36 usecs
Sep 16 21:48:12  kernel: calling  igen6_init+0x0/0xff0 [igen6_edac] @ 467
Sep 16 21:48:12  kernel: probe of INTC1041:00 returned 0 after 13110 usecs
Sep 16 21:48:12  kernel: resource: resource sanity check: requesting [mem 0x00000000fedc0000-0x00000000fedcffff], which spans more than pnp 00:04 [mem 0xfedc0000-0xfedc7fff]
Sep 16 21:48:12  kernel: initcall int3400_thermal_driver_init+0x0/0xff0 [int3400_thermal] returned 0 after 1048 usecs
Sep 16 21:48:12  systemd[1]: Found device YMTC PC005 512GB 4.
Sep 16 21:48:12  systemd[1]: Received SIGRTMIN+20 from PID 522 (plymouthd).
Sep 16 21:48:12  kernel: caller igen6_probe+0x197/0x8e0 [igen6_edac] mapping multiple BARs
Sep 16 21:48:12  kernel: calling  idma64_platform_driver_init+0x0/0xff0 [idma64] @ 514
Sep 16 21:48:12  kernel: initcall idma64_platform_driver_init+0x0/0xff0 [idma64] returned 0 after 70 usecs
Sep 16 21:48:12  kernel: EDAC MC0: Giving out device to module igen6_edac controller Intel_client_SoC MC#0: DEV 0000:00:00.0 (INTERRUPT)
Sep 16 21:48:12  kernel: EDAC MC1: Giving out device to module igen6_edac controller Intel_client_SoC MC#1: DEV 0000:00:00.0 (INTERRUPT)
Sep 16 21:48:12  kernel: EDAC igen6 MC1: HANDLING IBECC MEMORY ERROR
Sep 16 21:48:12  kernel: EDAC igen6 MC1: ADDR 0x7fffffffe0 
Sep 16 21:48:12  kernel: EDAC igen6 MC0: HANDLING IBECC MEMORY ERROR
Sep 16 21:48:12  kernel: EDAC igen6 MC0: ADDR 0x7fffffffe0 
Sep 16 21:48:12  kernel: probe of 0000:00:00.0 returned 0 after 4528 usecs
Sep 16 21:48:12  kernel: EDAC igen6: v2.5.1
Sep 16 21:48:12  kernel: initcall igen6_init+0x0/0xff0 [igen6_edac] returned 0 after 266 usecs
Sep 16 21:48:12  kernel: calling  init_soundcore+0x0/0xff0 [soundcore] @ 501
Sep 16 21:48:12  kernel: initcall init_soundcore+0x0/0xff0 [soundcore] returned 0 after 6 usecs
Sep 16 21:48:12  kernel: calling  intel_vsec_pci_driver_init+0x0/0xff0 [intel_vsec] @ 480
Sep 16 21:48:12  kernel: calling  rapl_init+0x0/0xff0 [intel_rapl_common] @ 460
Sep 16 21:48:12  kernel: initcall rapl_init+0x0/0xff0 [intel_rapl_common] returned 0 after 61 usecs
Sep 16 21:48:12  kernel: probe of 0000:00:0a.0 returned 0 after 98 usecs
Sep 16 21:48:12  kernel: initcall intel_vsec_pci_driver_init+0x0/0xff0 [intel_vsec] returned 0 after 124 usecs
Sep 16 21:48:12  kernel: calling  rfkill_init+0x0/0x150 [rfkill] @ 479
Sep 16 21:48:12  kernel: initcall rfkill_init+0x0/0x150 [rfkill] returned 0 after 65 usecs
Sep 16 21:48:12  kernel: calling  parport_pc_init+0x0/0xef0 [parport_pc] @ 464
Sep 16 21:48:12  systemd[1]: Found device YMTC PC005 512GB 1.
Sep 16 21:48:12  kernel: calling  smbalert_driver_init+0x0/0xff0 [i2c_smbus] @ 485
Sep 16 21:48:12  kernel: calling  mei_init+0x0/0xa0 [mei] @ 510
Sep 16 21:48:12  kernel: initcall smbalert_driver_init+0x0/0xff0 [i2c_smbus] returned 0 after 1 usecs
Sep 16 21:48:12  kernel: initcall mei_init+0x0/0xa0 [mei] returned 0 after 19 usecs
Sep 16 21:48:12  kernel: probe of parport_pc.956 returned 0 after 17 usecs
Sep 16 21:48:12  kernel: calling  intel_lpss_init+0x0/0xff0 [intel_lpss] @ 489
Sep 16 21:48:12  kernel: initcall intel_lpss_init+0x0/0xff0 [intel_lpss] returned 0 after 2 usecs
Sep 16 21:48:12  kernel: calling  init_mtd+0x0/0x160 [mtd] @ 463
Sep 16 21:48:12  kernel: initcall init_mtd+0x0/0x160 [mtd] returned 0 after 36 usecs
Sep 16 21:48:12  kernel: probe of parport_pc.888 returned 0 after 5 usecs
Sep 16 21:48:12  kernel: probe of parport_pc.632 returned 0 after 2 usecs
Sep 16 21:48:12  kernel: initcall parport_pc_init+0x0/0xef0 [parport_pc] returned 0 after 1534 usecs
Sep 16 21:48:12  kernel: calling  alsa_sound_init+0x0/0xb0 [snd] @ 501
Sep 16 21:48:12  kernel: initcall alsa_sound_init+0x0/0xb0 [snd] returned 0 after 10 usecs
Sep 16 21:48:12  kernel: calling  i2c_i801_init+0x0/0xff0 [i2c_i801] @ 485
Sep 16 21:48:12  kernel: initcall i2c_i801_init+0x0/0xff0 [i2c_i801] returned 0 after 16 usecs
Sep 16 21:48:12  kernel: i801_smbus 0000:00:1f.4: SPD Write Disable is set
Sep 16 21:48:12  kernel: i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
Sep 16 21:48:12  kernel: calling  alsa_timer_init+0x0/0xff0 [snd_timer] @ 501
Sep 16 21:48:12  kernel: initcall alsa_timer_init+0x0/0xff0 [snd_timer] returned 0 after 28 usecs
Sep 16 21:48:12  kernel: calling  intel_lpss_pci_driver_init+0x0/0xff0 [intel_lpss_pci] @ 519
Sep 16 21:48:12  kernel: probe of INTC1046:00 returned 0 after 35119 usecs
Sep 16 21:48:12  kernel: calling  mei_me_driver_init+0x0/0xff0 [mei_me] @ 510
Sep 16 21:48:12  kernel: initcall mei_me_driver_init+0x0/0xff0 [mei_me] returned 0 after 22 usecs
Sep 16 21:48:12  kernel: mei_me 0000:00:16.0: enabling device (0000 -> 0002)
Sep 16 21:48:12  kernel: calling  spi_nor_module_init+0x0/0xff0 [spi_nor] @ 463
Sep 16 21:48:12  kernel: spi-nor spi0.0: mx25l25635e (32768 Kbytes)
Sep 16 21:48:12  kernel: Creating 1 MTD partitions on "0000:00:1f.5":
Sep 16 21:48:12  kernel: 0x000000000000-0x000002000000 : "BIOS"
Sep 16 21:48:12  kernel: probe of spi0.0 returned 0 after 4197 usecs
Sep 16 21:48:12  kernel: initcall spi_nor_module_init+0x0/0xff0 [spi_nor] returned 0 after 4215 usecs
Sep 16 21:48:12  kernel: i2c i2c-11: 8/8 memory slots populated (from DMI)
Sep 16 21:48:12  kernel: i2c i2c-11: Systems with more than 4 memory slots not supported yet, not instantiating SPD
Sep 16 21:48:12  kernel: probe of 0000:00:1f.4 returned 0 after 10742 usecs
Sep 16 21:48:12  kernel: intel-lpss 0000:00:15.0: enabling device (0004 -> 0006)
Sep 16 21:48:12  kernel: idma64 idma64.0: Found Intel integrated DMA 64-bit
Sep 16 21:48:12  kernel: probe of idma64.0 returned 0 after 58 usecs
Sep 16 21:48:12  kernel: probe of 0000:00:16.0 returned 0 after 21547 usecs
Sep 16 21:48:12  kernel: calling  cfg80211_init+0x0/0xe0 [cfg80211] @ 479
Sep 16 21:48:12  kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
Sep 16 21:48:12  kernel: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
Sep 16 21:48:12  kernel: Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
Sep 16 21:48:12  kernel: initcall cfg80211_init+0x0/0xe0 [cfg80211] returned 0 after 640 usecs
Sep 16 21:48:12  kernel: platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
Sep 16 21:48:12  kernel: cfg80211: failed to load regulatory.db
Sep 16 21:48:12  systemd-networkd[468]: lo: Link UP
Sep 16 21:48:12  systemd-networkd[468]: lo: Gained carrier
Sep 16 21:48:12  systemd-networkd[468]: Enumeration completed
Sep 16 21:48:12  kernel: probe of i2c_designware.0 returned 0 after 28486 usecs
Sep 16 21:48:12  kernel: probe of INTC1046:01 returned 0 after 52718 usecs
Sep 16 21:48:12  kernel: probe of 0000:00:15.0 returned 0 after 55087 usecs
Sep 16 21:48:12  kernel: calling  alsa_pcm_init+0x0/0xff0 [snd_pcm] @ 501
Sep 16 21:48:12  kernel: intel-lpss 0000:00:15.1: enabling device (0004 -> 0006)
Sep 16 21:48:12  kernel: initcall alsa_pcm_init+0x0/0xff0 [snd_pcm] returned 0 after 12 usecs
Sep 16 21:48:12  kernel: idma64 idma64.1: Found Intel integrated DMA 64-bit
Sep 16 21:48:12  systemd[1]: Started Network Configuration.
Sep 16 21:48:12  kernel: probe of idma64.1 returned 0 after 7902 usecs
Sep 16 21:48:12  kernel: calling  proc_thermal_pci_driver_init+0x0/0xff0 [processor_thermal_device_pci] @ 460
Sep 16 21:48:12  kernel: calling  iwl_drv_init+0x0/0xff0 [iwlwifi] @ 479
Sep 16 21:48:12  kernel: Intel(R) Wireless WiFi driver for Linux
Sep 16 21:48:12  kernel: intel_rapl_common: Found RAPL domain package
Sep 16 21:48:12  kernel: probe of 0000:00:04.0 returned 0 after 3735 usecs
Sep 16 21:48:12  kernel: initcall proc_thermal_pci_driver_init+0x0/0xff0 [processor_thermal_device_pci] returned 0 after 3444 usecs
Sep 16 21:48:12  kernel: iwlwifi 0000:00:14.3: Detected crf-id 0x1300504, cnv-id 0x80400 wfpm id 0x80000030
Sep 16 21:48:12  kernel: iwlwifi 0000:00:14.3: PCI dev 51f0/0074, rev=0x370, rfid=0x10a100
Sep 16 21:48:12  kernel: probe of 0000:00:14.3 returned 0 after 5129 usecs
Sep 16 21:48:12  kernel: initcall iwl_drv_init+0x0/0xff0 [iwlwifi] returned 0 after 5162 usecs
Sep 16 21:48:12  kernel: iwlwifi 0000:00:14.3: api flags index 2 larger than supported by driver
Sep 16 21:48:12  kernel: iwlwifi 0000:00:14.3: TLV_FW_FSEQ_VERSION: FSEQ Version: 0.0.2.41
Sep 16 21:48:12  kernel: iwlwifi 0000:00:14.3: loaded firmware version 83.e8f84e98.0 so-a0-hr-b0-83.ucode op_mode iwlmvm
Sep 16 21:48:12  systemd[1]: Created slice Slice /system/systemd-backlight.
Sep 16 21:48:12  systemd[1]: Activating swap /dev/disk/by-uuid/7d4dd35b-5de8-4c46-be9d-bd2c87a13f17...
Sep 16 21:48:12  systemd[1]: Starting Load/Save Screen Backlight Brightness of backlight:intel_backlight...
Sep 16 21:48:12  systemd[1]: Starting File System Check on /dev/disk/by-uuid/7DF8-380C...
Sep 16 21:48:12  systemd[1]: Starting File System Check on /dev/disk/by-uuid/E68B-375F...
Sep 16 21:48:12  kernel: probe of INTC1046:02 returned 0 after 48529 usecs
Sep 16 21:48:12  kernel: probe of i2c_designware.1 returned 0 after 25440 usecs
Sep 16 21:48:12  kernel: probe of 0000:00:15.1 returned 0 after 46307 usecs
Sep 16 21:48:12  kernel: intel-lpss 0000:00:19.0: enabling device (0004 -> 0006)
Sep 16 21:48:12  kernel: idma64 idma64.2: Found Intel integrated DMA 64-bit
Sep 16 21:48:12  kernel: probe of idma64.2 returned 0 after 870 usecs
Sep 16 21:48:12  kernel: input: ELAN260B:00 04F3:31DC Mouse as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-12/i2c-ELAN260B:00/0018:04F3:31DC.0001/input/input4
Sep 16 21:48:12  kernel: input: ELAN260B:00 04F3:31DC Touchpad as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-12/i2c-ELAN260B:00/0018:04F3:31DC.0001/input/input6
Sep 16 21:48:12  kernel: hid-generic 0018:04F3:31DC.0001: input,hidraw0: I2C HID v1.00 Mouse [ELAN260B:00 04F3:31DC] on i2c-ELAN260B:00
Sep 16 21:48:12  kernel: probe of 0018:04F3:31DC.0001 returned 0 after 430 usecs
Sep 16 21:48:12  kernel: probe of i2c-ELAN260B:00 returned 0 after 87251 usecs
Sep 16 21:48:12  kernel: calling  alsa_hwdep_init+0x0/0xff0 [snd_hwdep] @ 501
Sep 16 21:48:12  kernel: initcall alsa_hwdep_init+0x0/0xff0 [snd_hwdep] returned 0 after 2 usecs
Sep 16 21:48:12  kernel: calling  wmi_bmof_driver_init+0x0/0xff0 [wmi_bmof] @ 460
Sep 16 21:48:12  kernel: probe of 05901221-D566-11D1-B2F0-00A0C9062910 returned 0 after 30 usecs
Sep 16 21:48:12  kernel: probe of 05901221-D566-11D1-B2F0-00A0C9062910-1 returned 0 after 56 usecs
Sep 16 21:48:12  kernel: probe of 05901221-D566-11D1-B2F0-00A0C9062910-2 returned 0 after 61 usecs
Sep 16 21:48:12  kernel: initcall wmi_bmof_driver_init+0x0/0xff0 [wmi_bmof] returned 0 after 170 usecs
Sep 16 21:48:12  kernel: calling  hda_bus_init+0x0/0xff0 [snd_hda_core] @ 501
Sep 16 21:48:12  kernel: initcall hda_bus_init+0x0/0xff0 [snd_hda_core] returned 0 after 12 usecs
Sep 16 21:48:12  kernel: calling  ledtrig_audio_init+0x0/0xff0 [ledtrig_audio] @ 460
Sep 16 21:48:12  kernel: initcall ledtrig_audio_init+0x0/0xff0 [ledtrig_audio] returned 0 after 5 usecs
Sep 16 21:48:12  systemd[1]: Starting Enable Persistent Storage in systemd-networkd...
Sep 16 21:48:12  kernel: calling  huawei_wmi_init+0x0/0xfb0 [huawei_wmi] @ 479
Sep 16 21:48:12  kernel: input: Huawei WMI hotkeys as /devices/platform/huawei-wmi/input/input7
Sep 16 21:48:12  systemd-fsck[598]: fsck: /etc/fstab: parse error at line 21 -- ignored
Sep 16 21:48:12  systemd-fsck[597]: fsck: /etc/fstab: parse error at line 21 -- ignored
Sep 16 21:48:12  kernel: Adding 6918140k swap on /dev/nvme0n1p2.  Priority:-2 extents:1 across:6918140k SS
Sep 16 21:48:12  kernel: probe of i2c_designware.2 returned 0 after 27178 usecs
Sep 16 21:48:12  kernel: probe of 0000:00:19.0 returned 0 after 41077 usecs
Sep 16 21:48:12  kernel: probe of INTC1046:03 returned 0 after 50210 usecs
Sep 16 21:48:12  kernel: intel-lpss 0000:00:19.1: enabling device (0004 -> 0006)
Sep 16 21:48:12  systemd-fsck[601]: fsck.fat 4.2 (2021-01-31)
Sep 16 21:48:12  systemd-fsck[601]: /dev/nvme0n1p1: 372 files, 46566/130812 clusters
Sep 16 21:48:12  kernel: idma64 idma64.3: Found Intel integrated DMA 64-bit
Sep 16 21:48:12  kernel: probe of idma64.3 returned 0 after 72 usecs
Sep 16 21:48:12  kernel: calling  ieee80211_init+0x0/0x70 [mac80211] @ 589
Sep 16 21:48:12  kernel: initcall ieee80211_init+0x0/0x70 [mac80211] returned 0 after 9 usecs
Sep 16 21:48:12  kernel: calling  azx_driver_init+0x0/0xff0 [snd_hda_intel] @ 501
Sep 16 21:48:12  kernel: snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040100
Sep 16 21:48:12  kernel: snd_hda_intel 0000:00:1f.3: Digital mics found on Skylake+ platform, using SOF driver
Sep 16 21:48:12  kernel: probe of 0000:00:1f.3 returned 19 after 111 usecs
Sep 16 21:48:12  kernel: initcall azx_driver_init+0x0/0xff0 [snd_hda_intel] returned 0 after 138 usecs
Sep 16 21:48:12  kernel: calling  ac97_bus_init+0x0/0xff0 [ac97_bus] @ 501
Sep 16 21:48:12  kernel: initcall ac97_bus_init+0x0/0xff0 [ac97_bus] returned 0 after 14 usecs
Sep 16 21:48:12  kernel: probe of i2c_designware.3 returned 0 after 28566 usecs
Sep 16 21:48:12  kernel: probe of 0000:00:19.1 returned 0 after 39647 usecs
Sep 16 21:48:12  kernel: probe of INTC1046:04 returned 0 after 33316 usecs
Sep 16 21:48:12  kernel: calling  iwl_mvm_init+0x0/0xff0 [iwlmvm] @ 589
Sep 16 21:48:12  systemd[1]: Finished Load/Save Screen Backlight Brightness of backlight:intel_backlight.
Sep 16 21:48:12  systemd[1]: Activated swap /dev/disk/by-uuid/7d4dd35b-5de8-4c46-be9d-bd2c87a13f17.
Sep 16 21:48:12  kernel: intel-lpss 0000:00:1e.0: enabling device (0004 -> 0006)
Sep 16 21:48:12  kernel: idma64 idma64.4: Found Intel integrated DMA 64-bit
Sep 16 21:48:12  kernel: probe of idma64.4 returned 0 after 91 usecs
Sep 16 21:48:12  kernel: probe of 0000:00:1e.0 returned 0 after 13802 usecs
Sep 16 21:48:12  kernel: iwlwifi 0000:00:14.3: Detected Intel(R) Wi-Fi 6 AX201 160MHz, REV=0x370
Sep 16 21:48:12  kernel: thermal thermal_zone9: failed to read out thermal zone (-61)
Sep 16 21:48:12  kernel: calling  snd_soc_init+0x0/0xa0 [snd_soc_core] @ 501
Sep 16 21:48:12  kernel: probe of snd-soc-dummy returned 0 after 17 usecs
Sep 16 21:48:12  kernel: initcall snd_soc_init+0x0/0xa0 [snd_soc_core] returned 0 after 129 usecs
Sep 16 21:48:12  kernel: calling  sdw_bus_init+0x0/0xff0 [soundwire_bus] @ 501
Sep 16 21:48:12  kernel: initcall sdw_bus_init+0x0/0xff0 [soundwire_bus] returned 0 after 19 usecs
Sep 16 21:48:12  kernel: intel-lpss 0000:00:1e.2: enabling device (0004 -> 0006)
Sep 16 21:48:12  kernel: idma64 idma64.5: Found Intel integrated DMA 64-bit
Sep 16 21:48:12  kernel: probe of idma64.5 returned 0 after 93 usecs
Sep 16 21:48:12  kernel: probe of 0000:00:1e.2 returned 0 after 11234 usecs
Sep 16 21:48:12  kernel: initcall intel_lpss_pci_driver_init+0x0/0xff0 [intel_lpss_pci] returned 0 after 2884 usecs
Sep 16 21:48:12  kernel: iwlwifi 0000:00:14.3: WRT: Invalid buffer destination
Sep 16 21:48:12  kernel: calling  pcspkr_platform_driver_init+0x0/0xff0 [pcspkr] @ 518
Sep 16 21:48:12  kernel: input: PC Speaker as /devices/platform/pcspkr/input/input8
Sep 16 21:48:12  kernel: probe of pcspkr returned 0 after 133 usecs
Sep 16 21:48:12  kernel: initcall pcspkr_platform_driver_init+0x0/0xff0 [pcspkr] returned 0 after 193 usecs
Sep 16 21:48:12  kernel: calling  acpi_cpufreq_init+0x0/0x30 [acpi_cpufreq] @ 519
Sep 16 21:48:12  kernel: probe of acpi-cpufreq returned 19 after 4 usecs
Sep 16 21:48:12  systemd[1]: Finished File System Check on /dev/disk/by-uuid/E68B-375F.
Sep 16 21:48:12  systemd[1]: Reached target Swaps.
Sep 16 21:48:12  kernel: calling  intel_uncore_init+0x0/0xda0 [intel_uncore] @ 507
Sep 16 21:48:12  kernel: initcall intel_uncore_init+0x0/0xda0 [intel_uncore] returned 0 after 1292 usecs
Sep 16 21:48:12  kernel: calling  cstate_pmu_init+0x0/0xff0 [intel_cstate] @ 507
Sep 16 21:48:12  kernel: initcall cstate_pmu_init+0x0/0xff0 [intel_cstate] returned 0 after 5908 usecs
Sep 16 21:48:12  kernel: calling  rapl_pmu_init+0x0/0xff0 [rapl] @ 482
Sep 16 21:48:12  kernel: RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
Sep 16 21:48:12  kernel: RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
Sep 16 21:48:12  kernel: RAPL PMU: hw unit of domain package 2^-14 Joules
Sep 16 21:48:12  kernel: RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
Sep 16 21:48:12  kernel: RAPL PMU: hw unit of domain psys 2^-14 Joules
Sep 16 21:48:12  kernel: initcall rapl_pmu_init+0x0/0xff0 [rapl] returned 0 after 2205 usecs
Sep 16 21:48:12  kernel: probe of INTC1046:05 returned 0 after 53512 usecs
Sep 16 21:48:12  kernel: calling  cryptd_init+0x0/0xff0 [cryptd] @ 514
Sep 16 21:48:12  kernel: cryptd: max_cpu_qlen set to 1000
Sep 16 21:48:12  kernel: initcall cryptd_init+0x0/0xff0 [cryptd] returned 0 after 63 usecs
Sep 16 21:48:12  kernel: calling  aesni_init+0x0/0xff0 [aesni_intel] @ 518
Sep 16 21:48:12  kernel: AVX2 version of gcm_enc/dec engaged.
Sep 16 21:48:12  kernel: AES CTR mode by8 optimization enabled
Sep 16 21:48:12  kernel: initcall aesni_init+0x0/0xff0 [aesni_intel] returned 0 after 66 usecs
Sep 16 21:48:12  kernel: calling  sha1_ssse3_mod_init+0x0/0xff0 [sha1_ssse3] @ 489
Sep 16 21:48:12  kernel: initcall sha1_ssse3_mod_init+0x0/0xff0 [sha1_ssse3] returned 0 after 5 usecs
Sep 16 21:48:12  kernel: calling  sha256_ssse3_mod_init+0x0/0xff0 [sha256_ssse3] @ 482
Sep 16 21:48:12  kernel: initcall sha256_ssse3_mod_init+0x0/0xff0 [sha256_ssse3] returned 0 after 9 usecs
Sep 16 21:48:12  kernel: initcall acpi_cpufreq_init+0x0/0x30 [acpi_cpufreq] returned -19 after 633 usecs
Sep 16 21:48:12  kernel: calling  sha512_ssse3_mod_init+0x0/0xff0 [sha512_ssse3] @ 518
Sep 16 21:48:12  kernel: initcall sha512_ssse3_mod_init+0x0/0xff0 [sha512_ssse3] returned 0 after 10 usecs
Sep 16 21:48:12  kernel: calling  sdw_intel_drv_init+0x0/0xff0 [soundwire_intel] @ 501
Sep 16 21:48:12  kernel: initcall sdw_intel_drv_init+0x0/0xff0 [soundwire_intel] returned 0 after 18 usecs
Sep 16 21:48:12  kernel: calling  ghash_pclmulqdqni_mod_init+0x0/0xff0 [ghash_clmulni_intel] @ 482
Sep 16 21:48:12  kernel: initcall ghash_pclmulqdqni_mod_init+0x0/0xff0 [ghash_clmulni_intel] returned 0 after 3 usecs
Sep 16 21:48:12  kernel: calling  polyval_mod_init+0x0/0xff0 [polyval_generic] @ 518
Sep 16 21:48:12  kernel: initcall polyval_mod_init+0x0/0xff0 [polyval_generic] returned 0 after 1 usecs
Sep 16 21:48:12  kernel: calling  snd_sof_pci_intel_tgl_driver_init+0x0/0xff0 [snd_sof_pci_intel_tgl] @ 501
Sep 16 21:48:12  kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040100
Sep 16 21:48:12  kernel: calling  polyval_clmulni_mod_init+0x0/0xff0 [polyval_clmulni] @ 514
Sep 16 21:48:12  kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: Digital mics found on Skylake+ platform, using SOF driver
Sep 16 21:48:12  kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: enabling device (0000 -> 0002)
Sep 16 21:48:12  kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if 0x040100
Sep 16 21:48:12  kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
Sep 16 21:48:12  kernel: probe of 0000:00:1f.3 returned 0 after 507 usecs
Sep 16 21:48:12  kernel: initcall snd_sof_pci_intel_tgl_driver_init+0x0/0xff0 [snd_sof_pci_intel_tgl] returned 0 after 540 usecs
Sep 16 21:48:12  kernel: initcall polyval_clmulni_mod_init+0x0/0xff0 [polyval_clmulni] returned 0 after 6 usecs
Sep 16 21:48:12  kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: use msi interrupt mode
Sep 16 21:48:12  kernel: calling  crc32_pclmul_mod_init+0x0/0xff0 [crc32_pclmul] @ 518
Sep 16 21:48:12  kernel: initcall crc32_pclmul_mod_init+0x0/0xff0 [crc32_pclmul] returned 0 after 4 usecs
Sep 16 21:48:12  kernel: calling  crct10dif_intel_mod_init+0x0/0xff0 [crct10dif_pclmul] @ 514
Sep 16 21:48:12  kernel: initcall crct10dif_intel_mod_init+0x0/0xff0 [crct10dif_pclmul] returned 0 after 3 usecs
Sep 16 21:48:12  systemd[1]: Mounting /efi...
Sep 16 21:48:12  systemd[1]: tmp.mount: Directory /tmp to mount over is not empty, mounting anyway.
Sep 16 21:48:12  systemd[1]: Mounting Temporary Directory /tmp...
Sep 16 21:48:12  systemd[1]: Virtual Machine and Container Storage (Compatibility) was skipped because of an unmet condition check (ConditionPathExists=/var/lib/machines.raw).
Sep 16 21:48:12  kernel: ACPI: battery: new extension: Huawei Battery Extension
Sep 16 21:48:12  kernel: probe of huawei-wmi returned 0 after 150180 usecs
Sep 16 21:48:12  kernel: initcall huawei_wmi_init+0x0/0xfb0 [huawei_wmi] returned 0 after 5867 usecs
Sep 16 21:48:12  kernel: calling  init_fat_fs+0x0/0xf90 [fat] @ 613
Sep 16 21:48:12  kernel: initcall init_fat_fs+0x0/0xf90 [fat] returned 0 after 32 usecs
Sep 16 21:48:12  kernel: probe of INTC1046:06 returned 0 after 62509 usecs
Sep 16 21:48:12  kernel: iwlwifi 0000:00:14.3: WFPM_UMAC_PD_NOTIFICATION: 0x20
Sep 16 21:48:12  kernel: iwlwifi 0000:00:14.3: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
Sep 16 21:48:12  kernel: iwlwifi 0000:00:14.3: WFPM_AUTH_KEY_0: 0x90
Sep 16 21:48:12  kernel: iwlwifi 0000:00:14.3: CNVI_SCU_SEQ_DATA_DW9: 0x10
Sep 16 21:48:12  kernel: iwlwifi 0000:00:14.3: Detected RF HR B5, rfid=0x10a100
Sep 16 21:48:12  kernel: iwlwifi 0000:00:14.3: RFIm is deactivated, reason = 5
Sep 16 21:48:12  kernel: calling  init_vfat_fs+0x0/0xff0 [vfat] @ 613
Sep 16 21:48:12  kernel: initcall init_vfat_fs+0x0/0xff0 [vfat] returned 0 after 2 usecs
Sep 16 21:48:12  kernel: calling  generic_driver_init+0x0/0xff0 [snd_hda_codec_generic] @ 614
Sep 16 21:48:12  kernel: initcall generic_driver_init+0x0/0xff0 [snd_hda_codec_generic] returned 0 after 15 usecs
Sep 16 21:48:12  kernel: calling  kvm_x86_init+0x0/0x50 [kvm] @ 482
Sep 16 21:48:12  kernel: initcall kvm_x86_init+0x0/0x50 [kvm] returned 0 after 0 usecs
Sep 16 21:48:12  kernel: calling  conexant_driver_init+0x0/0xff0 [snd_hda_codec_conexant] @ 614
Sep 16 21:48:12  kernel: probe of ehdaudio0D0 returned 0 after 20 usecs
Sep 16 21:48:12  kernel: initcall conexant_driver_init+0x0/0xff0 [snd_hda_codec_conexant] returned 0 after 32 usecs
Sep 16 21:48:12  kernel: calling  hdmi_driver_init+0x0/0xff0 [snd_hda_codec_hdmi] @ 615
Sep 16 21:48:12  kernel: probe of ehdaudio0D2 returned 0 after 16 usecs
Sep 16 21:48:12  kernel: initcall hdmi_driver_init+0x0/0xff0 [snd_hda_codec_hdmi] returned 0 after 30 usecs
Sep 16 21:48:12  kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: hda codecs found, mask 5
Sep 16 21:48:12  kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: using HDA machine driver skl_hda_dsp_generic now
Sep 16 21:48:12  kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: DMICs detected in NHLT tables: 4
Sep 16 21:48:12  systemd[1]: Finished Enable Persistent Storage in systemd-networkd.
Sep 16 21:48:12  kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: Firmware info: version 2:2:0-57864
Sep 16 21:48:12  kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: Firmware: ABI 3:22:1 Kernel ABI 3:23:0
Sep 16 21:48:12  kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: unknown sof_ext_man header type 3 size 0x30
Sep 16 21:48:12  systemd[1]: Mounted /efi.
Sep 16 21:48:12  systemd[1]: Mounted Temporary Directory /tmp.
Sep 16 21:48:12  kernel: calling  vmx_init+0x0/0x210 [kvm_intel] @ 489
Sep 16 21:48:12  kernel: initcall vmx_init+0x0/0x210 [kvm_intel] returned 0 after 6305 usecs
Sep 16 21:48:12  kernel: calling  ecdh_init+0x0/0xff0 [ecdh_generic] @ 490
Sep 16 21:48:12  kernel: initcall ecdh_init+0x0/0xff0 [ecdh_generic] returned 0 after 11 usecs
Sep 16 21:48:12  kernel: calling  coretemp_init+0x0/0xff0 [coretemp] @ 518
Sep 16 21:48:12  kernel: initcall coretemp_init+0x0/0xff0 [coretemp] returned 0 after 2673 usecs
Sep 16 21:48:12  kernel: iwlwifi 0000:00:14.3: base HW address: bc:f1:71:11:e2:bb
Sep 16 21:48:12  kernel: probe of INTC1046:07 returned 0 after 82784 usecs
Sep 16 21:48:12  kernel: calling  powerclamp_init+0x0/0xff0 [intel_powerclamp] @ 489
Sep 16 21:48:12  kernel: initcall powerclamp_init+0x0/0xff0 [intel_powerclamp] returned 0 after 23 usecs
Sep 16 21:48:12  kernel: calling  pkg_temp_thermal_init+0x0/0xff0 [x86_pkg_temp_thermal] @ 489
Sep 16 21:48:12  kernel: initcall pkg_temp_thermal_init+0x0/0xff0 [x86_pkg_temp_thermal] returned 0 after 12000 usecs
Sep 16 21:48:12  kernel: calling  bt_init+0x0/0xd0 [bluetooth] @ 490
Sep 16 21:48:12  kernel: Bluetooth: Core ver 2.22
Sep 16 21:48:12  kernel: NET: Registered PF_BLUETOOTH protocol family
Sep 16 21:48:12  kernel: initcall iwl_mvm_init+0x0/0xff0 [iwlmvm] returned 0 after 1408 usecs
Sep 16 21:48:12  kernel: Bluetooth: HCI device and connection manager initialized
Sep 16 21:48:12  kernel: Bluetooth: HCI socket layer initialized
Sep 16 21:48:12  kernel: Bluetooth: L2CAP socket layer initialized
Sep 16 21:48:12  kernel: Bluetooth: SCO socket layer initialized
Sep 16 21:48:12  kernel: initcall bt_init+0x0/0xd0 [bluetooth] returned 0 after 4107 usecs
Sep 16 21:48:12  kernel: calling  tcc_cooling_init+0x0/0xff0 [intel_tcc_cooling] @ 518
Sep 16 21:48:12  kernel: intel_tcc_cooling: Programmable TCC Offset detected
Sep 16 21:48:12  kernel: initcall tcc_cooling_init+0x0/0xff0 [intel_tcc_cooling] returned 0 after 32 usecs
Sep 16 21:48:12  kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: Firmware info: version 2:2:0-57864
Sep 16 21:48:12  kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: Firmware: ABI 3:22:1 Kernel ABI 3:23:0
Sep 16 21:48:12  kernel: probe of INTC1046:08 returned 0 after 54236 usecs
Sep 16 21:48:12  kernel: calling  intel_uncore_init+0x0/0xff0 [intel_uncore_frequency] @ 507
Sep 16 21:48:12  kernel: initcall intel_uncore_init+0x0/0xff0 [intel_uncore_frequency] returned 0 after 399 usecs
Sep 16 21:48:12  kernel: calling  btusb_driver_init+0x0/0xff0 [btusb] @ 490
Sep 16 21:48:12  kernel: calling  intel_rapl_msr_driver_init+0x0/0xff0 [intel_rapl_msr] @ 489
Sep 16 21:48:12  kernel: intel_rapl_msr: PL4 support detected.
Sep 16 21:48:12  systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
Sep 16 21:48:12  kernel: intel_rapl_common: Found RAPL domain package
Sep 16 21:48:12  kernel: intel_rapl_common: Found RAPL domain core
Sep 16 21:48:12  kernel: intel_rapl_common: Found RAPL domain uncore
Sep 16 21:48:12  kernel: intel_rapl_common: Found RAPL domain psys
Sep 16 21:48:12  systemd[1]: Starting Load/Save RF Kill Switch Status...
Sep 16 21:48:12  kernel: calling  pmt_class_init+0x0/0xff0 [pmt_class] @ 501
Sep 16 21:48:12  kernel: initcall pmt_class_init+0x0/0xff0 [pmt_class] returned 0 after 13 usecs
Sep 16 21:48:12  kernel: calling  ppdev_init+0x0/0xff0 [ppdev] @ 479
Sep 16 21:48:12  kernel: ppdev: user-space parallel port driver
Sep 16 21:48:12  kernel: probe of intel_rapl_msr.0 returned 0 after 6720 usecs
Sep 16 21:48:12  kernel: initcall ppdev_init+0x0/0xff0 [ppdev] returned 0 after 2793 usecs
Sep 16 21:48:12  kernel: calling  iTCO_vendor_init_module+0x0/0xff0 [iTCO_vendor_support] @ 507
Sep 16 21:48:12  kernel: iTCO_vendor_support: vendor-support=0
Sep 16 21:48:12  kernel: initcall iTCO_vendor_init_module+0x0/0xff0 [iTCO_vendor_support] returned 0 after 0 usecs
Sep 16 21:48:12  kernel: initcall intel_rapl_msr_driver_init+0x0/0xff0 [intel_rapl_msr] returned 0 after 605 usecs
Sep 16 21:48:12  systemd[1]: systemd-vconsole-setup.service: Deactivated successfully.
Sep 16 21:48:12  kernel: calling  pmt_telem_init+0x0/0xff0 [pmt_telemetry] @ 501
Sep 16 21:48:12  kernel: probe of intel_vsec.telemetry.0 returned 0 after 84 usecs
Sep 16 21:48:12  kernel: initcall pmt_telem_init+0x0/0xff0 [pmt_telemetry] returned 0 after 94 usecs
Sep 16 21:48:12  systemd[1]: Stopped Virtual Console Setup.
Sep 16 21:48:12  kernel: calling  intel_pmc_driver_init+0x0/0xff0 [intel_pmc_bxt] @ 507
Sep 16 21:48:12  kernel: initcall intel_pmc_driver_init+0x0/0xff0 [intel_pmc_bxt] returned 0 after 63 usecs
Sep 16 21:48:12  systemd[1]: Stopping Virtual Console Setup...
Sep 16 21:48:12  kernel: calling  iTCO_wdt_driver_init+0x0/0xff0 [iTCO_wdt] @ 507
Sep 16 21:48:12  kernel: calling  mei_hdcp_driver_init+0x0/0xff0 [mei_hdcp] @ 489
Sep 16 21:48:12  kernel: probe of INTC1046:09 returned 0 after 36289 usecs
Sep 16 21:48:12  kernel: iTCO_wdt iTCO_wdt: Found a Intel PCH TCO device (Version=6, TCOBASE=0x0400)
Sep 16 21:48:12  kernel: mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_ops [i915])
Sep 16 21:48:12  kernel: probe of 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04 returned 0 after 414 usecs
Sep 16 21:48:12  kernel: initcall mei_hdcp_driver_init+0x0/0xff0 [mei_hdcp] returned 0 after 432 usecs
Sep 16 21:48:12  kernel: iTCO_wdt iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
Sep 16 21:48:12  kernel: probe of iTCO_wdt returned 0 after 286 usecs
Sep 16 21:48:12  kernel: initcall iTCO_wdt_driver_init+0x0/0xff0 [iTCO_wdt] returned 0 after 564 usecs
Sep 16 21:48:12  kernel: calling  mei_pxp_driver_init+0x0/0xff0 [mei_pxp] @ 479
Sep 16 21:48:12  kernel: calling  mt_driver_init+0x0/0xff0 [hid_multitouch] @ 482
Sep 16 21:48:12  kernel: mei_pxp 0000:00:16.0-fbf6fcf1-96cf-4e2e-a6a6-1bab8cbe36b1: bound 0000:00:02.0 (ops i915_pxp_tee_component_ops [i915])
Sep 16 21:48:12  kernel: probe of 0000:00:16.0-fbf6fcf1-96cf-4e2e-a6a6-1bab8cbe36b1 returned 0 after 613 usecs
Sep 16 21:48:12  kernel: initcall mei_pxp_driver_init+0x0/0xff0 [mei_pxp] returned 0 after 700 usecs
Sep 16 21:48:12  kernel: calling  dw8250_platform_driver_init+0x0/0xff0 [8250_dw] @ 501
Sep 16 21:48:12  kernel: calling  dw_init+0x0/0xff0 [dw_dmac] @ 479
Sep 16 21:48:12  kernel: initcall dw_init+0x0/0xff0 [dw_dmac] returned 0 after 38 usecs
Sep 16 21:48:12  kernel: calling  pxa2xx_spi_init+0x0/0xff0 [spi_pxa2xx_platform] @ 479
Sep 16 21:48:12  kernel: probe of dw-apb-uart.4:0 returned 0 after 8 usecs
Sep 16 21:48:12  kernel: probe of dw-apb-uart.4:0.0 returned 0 after 3 usecs
Sep 16 21:48:12  kernel: dw-apb-uart.4: ttyS4 at MMIO 0x4017004000 (irq = 16, base_baud = 6250000) is a 16550A
Sep 16 21:48:12  systemd[1]: Starting Virtual Console Setup...
Sep 16 21:48:12  systemd[1]: run-credentials-systemd\x2dvconsole\x2dsetup.service.mount: Deactivated successfully.
Sep 16 21:48:12  kernel: calling  dmic_driver_init+0x0/0xff0 [snd_soc_dmic] @ 460
Sep 16 21:48:12  kernel: probe of dmic-codec returned 0 after 16 usecs
Sep 16 21:48:12  kernel: initcall dmic_driver_init+0x0/0xff0 [snd_soc_dmic] returned 0 after 70 usecs
Sep 16 21:48:12  systemd[1]: Started Load/Save RF Kill Switch Status.
Sep 16 21:48:12  kernel: calling  hdmi_init+0x0/0xff0 [snd_soc_hdac_hdmi] @ 514
Sep 16 21:48:12  kernel: initcall hdmi_init+0x0/0xff0 [snd_soc_hdac_hdmi] returned 0 after 24 usecs
Sep 16 21:48:12  kernel: calling  sof_probes_client_drv_init+0x0/0xff0 [snd_sof_probes] @ 460
Sep 16 21:48:12  kernel: probe of snd_sof.hda-probes.0 returned 6 after 9 usecs
Sep 16 21:48:12  kernel: initcall sof_probes_client_drv_init+0x0/0xff0 [snd_sof_probes] returned 0 after 27 usecs
Sep 16 21:48:12  kernel: calling  skl_hda_audio_init+0x0/0xff0 [snd_soc_skl_hda_dsp] @ 514
Sep 16 21:48:12  kernel: probe of 0018:04F3:31DC.0001 returned 19 after 6 usecs
Sep 16 21:48:12  kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: Topology: ABI 3:22:1 Kernel ABI 3:23:0
Sep 16 21:48:12  kernel: skl_hda_dsp_generic skl_hda_dsp_generic: ASoC: Parent card not yet available, widget card binding deferred
Sep 16 21:48:12  kernel: calling  snd_ctl_led_init+0x0/0xff0 [snd_ctl_led] @ 630
Sep 16 21:48:12  kernel: initcall snd_ctl_led_init+0x0/0xff0 [snd_ctl_led] returned 0 after 40 usecs
Sep 16 21:48:12  kernel: input: ELAN260B:00 04F3:31DC Mouse as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-12/i2c-ELAN260B:00/0018:04F3:31DC.0001/input/input9
Sep 16 21:48:12  kernel: input: ELAN260B:00 04F3:31DC Touchpad as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-12/i2c-ELAN260B:00/0018:04F3:31DC.0001/input/input11
Sep 16 21:48:12  kernel: hid-multitouch 0018:04F3:31DC.0001: input,hidraw0: I2C HID v1.00 Mouse [ELAN260B:00 04F3:31DC] on i2c-ELAN260B:00
Sep 16 21:48:12  kernel: probe of 0018:04F3:31DC.0001 returned 0 after 13866 usecs
Sep 16 21:48:12  kernel: initcall mt_driver_init+0x0/0xff0 [hid_multitouch] returned 0 after 8618 usecs
Sep 16 21:48:12  kernel: calling  mousedev_init+0x0/0xff0 [mousedev] @ 482
Sep 16 21:48:12  kernel: mousedev: PS/2 mouse device common for all mice
Sep 16 21:48:12  kernel: initcall mousedev_init+0x0/0xff0 [mousedev] returned 0 after 1478 usecs
Sep 16 21:48:12  kernel: calling  joydev_init+0x0/0xff0 [joydev] @ 460
Sep 16 21:48:12  kernel: initcall joydev_init+0x0/0xff0 [joydev] returned 0 after 2 usecs
Sep 16 21:48:12  kernel: probe of INTC1046:0a returned 0 after 99605 usecs
Sep 16 21:48:12  kernel: snd_hda_codec_conexant ehdaudio0D0: SN6140: BIOS auto-probing.
Sep 16 21:48:12  kernel: snd_hda_codec_conexant ehdaudio0D0: autoconfig for SN6140: line_outs=1 (0x17/0x0/0x0/0x0/0x0) type:speaker
Sep 16 21:48:12  kernel: snd_hda_codec_conexant ehdaudio0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
Sep 16 21:48:12  kernel: snd_hda_codec_conexant ehdaudio0D0:    hp_outs=1 (0x16/0x0/0x0/0x0/0x0)
Sep 16 21:48:12  kernel: snd_hda_codec_conexant ehdaudio0D0:    mono: mono_out=0x0
Sep 16 21:48:12  kernel: snd_hda_codec_conexant ehdaudio0D0:    inputs:
Sep 16 21:48:12  kernel: snd_hda_codec_conexant ehdaudio0D0:      Mic=0x19
Sep 16 21:48:12  kernel: skl_hda_dsp_generic skl_hda_dsp_generic: hda_dsp_hdmi_build_controls: no PCM in topology for HDMI converter 3
Sep 16 21:48:12  systemd[1]: Reached target Bluetooth Support.
Sep 16 21:48:12  kernel: probe of 3-10:1.0 returned 0 after 109 usecs
Sep 16 21:48:12  kernel: usbcore: registered new interface driver btusb
Sep 16 21:48:12  kernel: initcall btusb_driver_init+0x0/0xff0 [btusb] returned 0 after 24482 usecs
Sep 16 21:48:12  kernel: Bluetooth: hci0: Device revision is 2
Sep 16 21:48:12  kernel: Bluetooth: hci0: Secure boot is enabled
Sep 16 21:48:12  kernel: Bluetooth: hci0: OTP lock is enabled
Sep 16 21:48:12  kernel: Bluetooth: hci0: API lock is enabled
Sep 16 21:48:12  kernel: Bluetooth: hci0: Debug lock is disabled
Sep 16 21:48:12  kernel: Bluetooth: hci0: Minimum firmware build 1 week 10 2014
Sep 16 21:48:12  kernel: Bluetooth: hci0: Bootloader timestamp 2019.40 buildtype 1 build 38
Sep 16 21:48:12  kernel: ACPI Warning: \_SB.PC00.XHCI.RHUB.HS10._DSM: Argument #4 type mismatch - Found [Integer], ACPI requires [Package] (20230628/nsarguments-61)
Sep 16 21:48:12  kernel: Bluetooth: hci0: DSM reset method type: 0x00
Sep 16 21:48:12  kernel: Bluetooth: hci0: Found device firmware: intel/ibt-0040-4150.sfi
Sep 16 21:48:12  kernel: Bluetooth: hci0: Boot Address: 0x100800
Sep 16 21:48:12  kernel: Bluetooth: hci0: Firmware Version: 120-18.24
Sep 16 21:48:12  kernel: input: sof-hda-dsp Mic as /devices/pci0000:00/0000:00:1f.3/skl_hda_dsp_generic/sound/card0/input12
Sep 16 21:48:12  kernel: input: sof-hda-dsp Headphone as /devices/pci0000:00/0000:00:1f.3/skl_hda_dsp_generic/sound/card0/input13
Sep 16 21:48:12  kernel: input: sof-hda-dsp HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/skl_hda_dsp_generic/sound/card0/input14
Sep 16 21:48:12  kernel: input: sof-hda-dsp HDMI/DP,pcm=4 as /devices/pci0000:00/0000:00:1f.3/skl_hda_dsp_generic/sound/card0/input15
Sep 16 21:48:12  kernel: input: sof-hda-dsp HDMI/DP,pcm=5 as /devices/pci0000:00/0000:00:1f.3/skl_hda_dsp_generic/sound/card0/input16
Sep 16 21:48:12  kernel: probe of skl_hda_dsp_generic returned 0 after 66622 usecs
Sep 16 21:48:12  kernel: initcall skl_hda_audio_init+0x0/0xff0 [snd_soc_skl_hda_dsp] returned 0 after 40653 usecs
Sep 16 21:48:12  kernel: probe of dw-apb-uart.4 returned 0 after 119833 usecs
Sep 16 21:48:12  kernel: initcall dw8250_platform_driver_init+0x0/0xff0 [8250_dw] returned 0 after 47417 usecs
Sep 16 21:48:12  kernel: probe of pxa2xx-spi.5 returned 0 after 111150 usecs
Sep 16 21:48:12  kernel: initcall pxa2xx_spi_init+0x0/0xff0 [spi_pxa2xx_platform] returned 0 after 48027 usecs
Sep 16 21:48:12  systemd[1]: Starting Load Kernel Module dm_mod...
Sep 16 21:48:12  systemd[1]: Starting Load Kernel Module loop...
Sep 16 21:48:12  systemd[1]: File System Check on Root Device was skipped because of an unmet condition check (ConditionPathIsReadWrite=!/).
Sep 16 21:48:12  systemd[1]: Clear Stale Hibernate Storage Info was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67).
Sep 16 21:48:12  systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
Sep 16 21:48:12  systemd[1]: TPM PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Sep 16 21:48:12  systemd[1]: Create System Users was skipped because no trigger condition checks were met.
Sep 16 21:48:12  systemd[1]: Early TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Sep 16 21:48:12  systemd[1]: TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Sep 16 21:48:12  kernel: probe of INTC1046:0b returned 0 after 95352 usecs
Sep 16 21:48:12  systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
Sep 16 21:48:12  systemd[1]: Finished Load Kernel Module dm_mod.
Sep 16 21:48:12  systemd[1]: modprobe@loop.service: Deactivated successfully.
Sep 16 21:48:13  kernel: probe of INTC1046:0c returned 0 after 83197 usecs
Sep 16 21:48:13  systemd[1]: Finished Load Kernel Module loop.
Sep 16 21:48:13  systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
Sep 16 21:48:13  kernel: probe of INTC1046:0d returned 0 after 80188 usecs
Sep 16 21:48:13  kernel: probe of INTC1046:0e returned 0 after 89675 usecs
Sep 16 21:48:13  kernel: probe of INTC1046:0f returned 0 after 50474 usecs
Sep 16 21:48:13  kernel: probe of INTC1046:10 returned 0 after 43409 usecs
Sep 16 21:48:13  kernel: probe of INTC1046:11 returned 0 after 43020 usecs
Sep 16 21:48:13  kernel: probe of INTC1046:12 returned 0 after 46554 usecs
Sep 16 21:48:13  kernel: probe of INTC1046:13 returned 0 after 36841 usecs
Sep 16 21:48:13  kernel: probe of INTC1046:14 returned 0 after 33503 usecs
Sep 16 21:48:13  kernel: probe of INTC1046:15 returned 0 after 53153 usecs
Sep 16 21:48:13  kernel: probe of INTC1046:16 returned 0 after 46987 usecs
Sep 16 21:48:13  kernel: initcall int3403_driver_init+0x0/0xff0 [int3403_thermal] returned 0 after 704939 usecs
Sep 16 21:48:13  systemd-fsck[600]: exfatfsck 1.4.0
Sep 16 21:48:13  systemd-fsck[600]: Checking file system on /dev/nvme0n1p4.
Sep 16 21:48:13  systemd-fsck[600]: File system version           1.0
Sep 16 21:48:13  systemd-fsck[600]: Sector size                 512 bytes
Sep 16 21:48:13  systemd-fsck[600]: Cluster size                128 KB
Sep 16 21:48:13  systemd-fsck[600]: Volume size                 210 GB
Sep 16 21:48:13  systemd-fsck[600]: Used space                   82 GB
Sep 16 21:48:13  systemd-fsck[600]: Available space             128 GB
Sep 16 21:48:13  systemd-fsck[600]: Totally 1043 directories and 19837 files.
Sep 16 21:48:13  systemd-fsck[600]: File system checking finished. No errors found.
Sep 16 21:48:13  systemd[1]: Finished File System Check on /dev/disk/by-uuid/7DF8-380C.
Sep 16 21:48:13  systemd[1]: Mounting /mnt/storage...
Sep 16 21:48:13  systemd[1]: Mounted /mnt/storage.
Sep 16 21:48:13  systemd[1]: Reached target Local File Systems.
Sep 16 21:48:13  systemd[1]: Listening on Boot Entries Service Socket.
Sep 16 21:48:13  systemd[1]: Listening on System Extension Image Management.
Sep 16 21:48:13  systemd[1]: Rebuild Dynamic Linker Cache was skipped because no trigger condition checks were met.
Sep 16 21:48:13  systemd[1]: Starting Tell Plymouth To Write Out Runtime Data...
Sep 16 21:48:13  systemd[1]: Set Up Additional Binary Formats was skipped because no trigger condition checks were met.
Sep 16 21:48:13  systemd[1]: Update Boot Loader Random Seed was skipped because no trigger condition checks were met.
Sep 16 21:48:13  systemd[1]: Starting Create System Files and Directories...
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc/ssh.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc/ssh/ssh_config.d.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc/ssh.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc/ssh/sshd_config.d.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/lib.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc/profile.d.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/log.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/lib.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/lib.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/lib.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/lib/colord.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/lib.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/lib/dbus.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run/dbus.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/lib.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/lib.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/lib.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run/lock.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/cache.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/lib.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc/pam.d.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc/ssh.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc/ssh.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc/ssh.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc/ssh/sshd_config.d.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc/polkit-1.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/lib.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/lib.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run/sudo.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run/systemd.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run/systemd/netif.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run/systemd/netif.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/lib.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/lib/systemd.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/lib.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/lib/systemd.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run/systemd.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run/systemd.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run/systemd.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run/systemd.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run/systemd.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run/systemd.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/lib/systemd.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/lib/systemd.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/lib.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/log.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/cache.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/lib.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/lib/tpm2-tss/system.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run/tpm2-tss.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/lib.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/log.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/log.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/log.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /tmp (owned by root) during canonicalization of tmp.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /tmp (owned by root) during canonicalization of tmp.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /tmp (owned by root) during canonicalization of tmp.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /tmp (owned by root) during canonicalization of tmp.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc/audisp.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc/audit.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc/audit/audisp-remote.conf.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc/audit/plugins.d.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc/audit/plugins.d/au-remote.conf.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc/audit/plugins.d/syslog.conf.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc/audit/plugins.d/audispd-zos-remote.conf.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc/audit/plugins.d/af_unix.conf.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc/audit/plugins.d/filter.conf.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc/libaudit.conf.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/log/audit.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc/brlapi.key.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/log/journal.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/log/journal.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/log/journal.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/log/journal/d2f6e77df46d4a1e8240e7ccd89ad000.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/log/journal/d2f6e77df46d4a1e8240e7ccd89ad000.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/log/journal/d2f6e77df46d4a1e8240e7ccd89ad000.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/log/journal/remote.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /usr (owned by root) during canonicalization of usr/lib/utempter/utempter.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /usr (owned by root) during canonicalization of usr/bin/groupmems.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run/log/journal.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run/log/journal.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/log/journal/d2f6e77df46d4a1e8240e7ccd89ad000/system.journal.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/log/journal/d2f6e77df46d4a1e8240e7ccd89ad000/system.journal.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/lib/tpm2-tss/system/keystore.
Sep 16 21:48:13  systemd-tmpfiles[684]: Detected unsafe path transition / (owned by public) → /sys (owned by root) during canonicalization of sys/kernel/security/tpm0/binary_bios_measurements.
Sep 16 21:48:13  systemd[1]: Finished Create System Files and Directories.
Sep 16 21:48:13  systemd[1]: Rebuild Journal Catalog was skipped because of an unmet condition check (ConditionNeedsUpdate=/var).
Sep 16 21:48:13  systemd[1]: Starting Network Name Resolution...
Sep 16 21:48:13  systemd[1]: Starting Network Time Synchronization...
Sep 16 21:48:13  systemd[1]: Update is Completed was skipped because no trigger condition checks were met.
Sep 16 21:48:13  systemd[1]: Starting Record System Boot/Shutdown in UTMP...
Sep 16 21:48:14  systemd-resolved[687]: Positive Trust Anchors:
Sep 16 21:48:14  systemd-resolved[687]: . IN DS 20326 8 2 e06d44b80b8f1d39a95c0b0d7c65d08458e880409bbc683457104237c7f8ec8d
Sep 16 21:48:14  systemd-resolved[687]: Negative trust anchors: home.arpa 10.in-addr.arpa 16.172.in-addr.arpa 17.172.in-addr.arpa 18.172.in-addr.arpa 19.172.in-addr.arpa 20.172.in-addr.arpa 21.172.in-addr.arpa 22.172.in-addr.arpa 23.172.in-addr.arpa 24.172.in-addr.arpa 25.172.in-addr.arpa 26.172.in-addr.arpa 27.172.in-addr.arpa 28.172.in-addr.arpa 29.172.in-addr.arpa 30.172.in-addr.arpa 31.172.in-addr.arpa 170.0.0.192.in-addr.arpa 171.0.0.192.in-addr.arpa 168.192.in-addr.arpa d.f.ip6.arpa ipv4only.arpa resolver.arpa corp home internal intranet lan local private test
Sep 16 21:48:14  systemd-resolved[687]: Using system hostname 'X-Ware'.
Sep 16 21:48:14  systemd[1]: Finished Record System Boot/Shutdown in UTMP.
Sep 16 21:48:14  systemd[1]: Started Network Time Synchronization.
Sep 16 21:48:14  systemd[1]: Started Network Name Resolution.
Sep 16 21:48:14  systemd[1]: Reached target Host and Network Name Lookups.
Sep 16 21:48:14  systemd[1]: Reached target System Time Set.
Sep 16 21:48:14  systemd[1]: Started Show Plymouth Boot Screen.
Sep 16 21:48:14  systemd[1]: Dispatch Password Requests to Console Directory Watch was skipped because of an unmet condition check (ConditionPathExists=!/run/plymouth/pid).
Sep 16 21:48:14  systemd[1]: Started Forward Password Requests to Plymouth Directory Watch.
Sep 16 21:48:14  kernel: Bluetooth: hci0: Waiting for firmware download to complete
Sep 16 21:48:14  kernel: Bluetooth: hci0: Firmware loaded in 1542577 usecs
Sep 16 21:48:14  kernel: Bluetooth: hci0: Waiting for device to boot
Sep 16 21:48:14  systemd[1]: Reached target Local Encrypted Volumes.
Sep 16 21:48:14  kernel: Bluetooth: hci0: Device booted in 14803 usecs
Sep 16 21:48:14  kernel: Bluetooth: hci0: Malformed MSFT vendor event: 0x02
Sep 16 21:48:14  kernel: Bluetooth: hci0: Found Intel DDC parameters: intel/ibt-0040-4150.ddc
Sep 16 21:48:14  kernel: Bluetooth: hci0: Applying Intel DDC parameters completed
Sep 16 21:48:14  kernel: Bluetooth: hci0: Firmware timestamp 2024.18 buildtype 1 build 81528
Sep 16 21:48:14  systemd[1]: Finished Virtual Console Setup.
Sep 16 21:48:14  systemd[1]: Finished Tell Plymouth To Write Out Runtime Data.
Sep 16 21:48:14  systemd[1]: Received SIGRTMIN+20 from PID 522 (plymouthd).
Sep 16 21:48:14  systemd[1]: First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
Sep 16 21:48:14  systemd[1]: First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes).
Sep 16 21:48:14  systemd[1]: Reached target System Initialization.
Sep 16 21:48:14  systemd[1]: Started CUPS Scheduler.
Sep 16 21:48:14  systemd[1]: VirtualBox Guest VMSVGA resize client was skipped because of an unmet condition check (ConditionVirtualization=oracle).
Sep 16 21:48:14  systemd[1]: Started Refresh existing PGP keys of archlinux-keyring regularly.
Sep 16 21:48:14  systemd[1]: Started Daily man-db regeneration.
Sep 16 21:48:14  systemd[1]: Started Daily verification of password and group files.
Sep 16 21:48:14  systemd[1]: Started Daily Cleanup of Temporary Directories.
Sep 16 21:48:14  systemd[1]: Reached target Path Units.
Sep 16 21:48:14  systemd[1]: Reached target Timer Units.
Sep 16 21:48:14  systemd[1]: Listening on CUPS Scheduler.
Sep 16 21:48:14  systemd[1]: Listening on D-Bus System Message Bus Socket.
Sep 16 21:48:14  systemd[1]: Listening on GnuPG network certificate management daemon for /etc/pacman.d/gnupg.
Sep 16 21:48:14  systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers) for /etc/pacman.d/gnupg.
Sep 16 21:48:14  systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache (restricted) for /etc/pacman.d/gnupg.
Sep 16 21:48:14  systemd[1]: Listening on GnuPG cryptographic agent (ssh-agent emulation) for /etc/pacman.d/gnupg.
Sep 16 21:48:14  systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache for /etc/pacman.d/gnupg.
Sep 16 21:48:14  systemd[1]: Listening on GnuPG public key management service for /etc/pacman.d/gnupg.
Sep 16 21:48:14  systemd[1]: Listening on OpenSSH Server Socket (systemd-ssh-generator, AF_UNIX Local).
Sep 16 21:48:14  systemd[1]: Listening on Hostname Service Socket.
Sep 16 21:48:14  systemd[1]: Reached target Socket Units.
Sep 16 21:48:14  systemd[1]: Starting D-Bus System Message Bus...
Sep 16 21:48:14  systemd[1]: Save Transient machine-id to Disk was skipped because of an unmet condition check (ConditionPathIsMountPoint=/etc/machine-id).
Sep 16 21:48:14  systemd[1]: TPM PCR Barrier (Initialization) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Sep 16 21:48:14  systemd[1]: Started D-Bus System Message Bus.
Sep 16 21:48:14  systemd[1]: Reached target Basic System.
Sep 16 21:48:14  systemd[1]: Starting Network Manager...
Sep 16 21:48:14  systemd[1]: Starting Save/Restore Sound Card State...
Sep 16 21:48:14  systemd[1]: Manage Sound Card State (restore and store) was skipped because of an unmet condition check (ConditionPathExists=/etc/alsa/state-daemon.conf).
Sep 16 21:48:14  systemd[1]: Starting Initialize hardware monitoring sensors...
Sep 16 21:48:14  systemd[1]: Started Seat management daemon.
Sep 16 21:48:14  (modprobe)[703]: lm_sensors.service: Referenced but unset environment variable evaluates to an empty string: BUS_MODULES
Sep 16 21:48:14  systemd[1]: Starting User Login Management...
Sep 16 21:48:14  systemd[1]: TPM PCR Barrier (User) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Sep 16 21:48:14  systemd[1]: VirtualBox Guest Service was skipped because of an unmet condition check (ConditionVirtualization=oracle).
Sep 16 21:48:14  seatd[705]: 00:00:00.000 [INFO] [seatd/seat.c:39] Created VT-bound seat seat0
Sep 16 21:48:14  seatd[705]: 00:00:00.000 [INFO] [seatd/seatd.c:194] seatd started
Sep 16 21:48:14  dbus-broker-launch[698]: Ready
Sep 16 21:48:14  NetworkManager[701]: <info>  [1726516094.6583] NetworkManager (version 1.48.10-1) is starting... (boot:8118e748-129c-4900-8953-1f058c1c8f72)
Sep 16 21:48:14  NetworkManager[701]: <info>  [1726516094.6583] Read config: /etc/NetworkManager/NetworkManager.conf (lib: 20-connectivity.conf)
Sep 16 21:48:14  NetworkManager[701]: <info>  [1726516094.6629] manager[0x63243761e070]: monitoring kernel firmware directory '/lib/firmware'.
Sep 16 21:48:14  NetworkManager[701]: <error> [1726516094.6634] session-monitor: failed to create systemd-logind monitor: -2
Sep 16 21:48:14  systemd-logind[707]: New seat seat0.
Sep 16 21:48:14  systemd-logind[707]: Watching system buttons on /dev/input/event1 (Power Button)
Sep 16 21:48:14  systemd-logind[707]: Watching system buttons on /dev/input/event0 (Lid Switch)
Sep 16 21:48:14  systemd-logind[707]: Watching system buttons on /dev/input/event2 (AT Translated Set 2 keyboard)
Sep 16 21:48:14  systemd[1]: Finished Save/Restore Sound Card State.
Sep 16 21:48:14  systemd[1]: Started User Login Management.
Sep 16 21:48:14  systemd[1]: Finished Initialize hardware monitoring sensors.
Sep 16 21:48:14  systemd[1]: Reached target Sound Card.
Sep 16 21:48:14  systemd[1]: Starting Hostname Service...
Sep 16 21:48:14  systemd[1]: Started Hostname Service.
Sep 16 21:48:14  NetworkManager[701]: <info>  [1726516094.8048] hostname: hostname: using hostnamed
Sep 16 21:48:14  NetworkManager[701]: <info>  [1726516094.8048] hostname: static hostname changed from (none) to "X-Ware"
Sep 16 21:48:14  NetworkManager[701]: <info>  [1726516094.8051] dns-mgr: init: dns=default,systemd-resolved rc-manager=symlink
Sep 16 21:48:14  NetworkManager[701]: <info>  [1726516094.8055] rfkill0: found Wi-Fi radio killswitch (at /sys/devices/pci0000:00/0000:00:14.3/ieee80211/phy0/rfkill0) (driver iwlwifi)
Sep 16 21:48:14  NetworkManager[701]: <info>  [1726516094.8056] manager[0x63243761e070]: rfkill: Wi-Fi hardware radio set enabled
Sep 16 21:48:14  NetworkManager[701]: <info>  [1726516094.8056] manager[0x63243761e070]: rfkill: WWAN hardware radio set enabled
Sep 16 21:48:14  NetworkManager[701]: <info>  [1726516094.8074] Loaded device plugin: NMOvsFactory (/usr/lib/NetworkManager/1.48.10-1/libnm-device-plugin-ovs.so)
Sep 16 21:48:14  NetworkManager[701]: <info>  [1726516094.8094] Loaded device plugin: NMBluezManager (/usr/lib/NetworkManager/1.48.10-1/libnm-device-plugin-bluetooth.so)
Sep 16 21:48:14  NetworkManager[701]: <info>  [1726516094.8097] Loaded device plugin: NMAtmManager (/usr/lib/NetworkManager/1.48.10-1/libnm-device-plugin-adsl.so)
Sep 16 21:48:14  NetworkManager[701]: <info>  [1726516094.8104] Loaded device plugin: NMWifiFactory (/usr/lib/NetworkManager/1.48.10-1/libnm-device-plugin-wifi.so)
Sep 16 21:48:14  NetworkManager[701]: <info>  [1726516094.8107] Loaded device plugin: NMWwanFactory (/usr/lib/NetworkManager/1.48.10-1/libnm-device-plugin-wwan.so)
Sep 16 21:48:14  NetworkManager[701]: <info>  [1726516094.8198] Loaded device plugin: NMTeamFactory (/usr/lib/NetworkManager/1.48.10-1/libnm-device-plugin-team.so)
Sep 16 21:48:14  NetworkManager[701]: <info>  [1726516094.8199] manager: rfkill: Wi-Fi enabled by radio killswitch; enabled by state file
Sep 16 21:48:14  NetworkManager[701]: <info>  [1726516094.8200] manager: rfkill: WWAN enabled by radio killswitch; enabled by state file
Sep 16 21:48:14  NetworkManager[701]: <info>  [1726516094.8200] manager: Networking is enabled by state file
Sep 16 21:48:14  NetworkManager[701]: <info>  [1726516094.8203] settings: Loaded settings plugin: keyfile (internal)
Sep 16 21:48:14  NetworkManager[701]: <info>  [1726516094.8218] dhcp: init: Using DHCP client 'internal'
Sep 16 21:48:14  NetworkManager[701]: <info>  [1726516094.8219] manager: (lo): new Loopback device (/org/freedesktop/NetworkManager/Devices/1)
Sep 16 21:48:14  NetworkManager[701]: <info>  [1726516094.8223] device (lo): state change: unmanaged -> unavailable (reason 'connection-assumed', sys-iface-state: 'external')
Sep 16 21:48:14  NetworkManager[701]: <info>  [1726516094.8225] device (lo): state change: unavailable -> disconnected (reason 'connection-assumed', sys-iface-state: 'external')
Sep 16 21:48:14  systemd[1]: Starting Network Manager Script Dispatcher Service...
Sep 16 21:48:14  NetworkManager[701]: <info>  [1726516094.8228] device (lo): Activation: starting connection 'lo' (14c1fb15-7542-4c5b-8cab-21cc27d25613)
Sep 16 21:48:14  NetworkManager[701]: <info>  [1726516094.8229] device (wlan0): driver supports Access Point (AP) mode
Sep 16 21:48:14  NetworkManager[701]: <info>  [1726516094.8231] manager: (wlan0): new 802.11 Wi-Fi device (/org/freedesktop/NetworkManager/Devices/2)
Sep 16 21:48:14  NetworkManager[701]: <info>  [1726516094.8234] device (wlan0): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
Sep 16 21:48:14  kernel: iwlwifi 0000:00:14.3: WRT: Invalid buffer destination
Sep 16 21:48:14  systemd[1]: Started Network Manager Script Dispatcher Service.
Sep 16 21:48:14  kernel: iwlwifi 0000:00:14.3: WFPM_UMAC_PD_NOTIFICATION: 0x20
Sep 16 21:48:14  kernel: iwlwifi 0000:00:14.3: RFIm is deactivated, reason = 5
Sep 16 21:48:14  kernel: iwlwifi 0000:00:14.3: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
Sep 16 21:48:14  kernel: iwlwifi 0000:00:14.3: WFPM_AUTH_KEY_0: 0x90
Sep 16 21:48:14  kernel: iwlwifi 0000:00:14.3: CNVI_SCU_SEQ_DATA_DW9: 0x10
Sep 16 21:48:15  kernel: iwlwifi 0000:00:14.3: Registered PHC clock: iwlwifi-PTP, with index: 0
Sep 16 21:48:15  systemd-networkd[468]: wlan0: Link UP
Sep 16 21:48:15  systemd-networkd[468]: wlan0: Link DOWN
Sep 16 21:48:15  NetworkManager[701]: <info>  [1726516095.0931] device (wlan0): set-hw-addr: set MAC address to 82:EB:34:2C:AB:70 (scanning)
Sep 16 21:48:15  kernel: iwlwifi 0000:00:14.3: WRT: Invalid buffer destination
Sep 16 21:48:15  kernel: iwlwifi 0000:00:14.3: WFPM_UMAC_PD_NOTIFICATION: 0x20
Sep 16 21:48:15  kernel: iwlwifi 0000:00:14.3: RFIm is deactivated, reason = 5
Sep 16 21:48:15  kernel: iwlwifi 0000:00:14.3: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
Sep 16 21:48:15  kernel: iwlwifi 0000:00:14.3: WFPM_AUTH_KEY_0: 0x90
Sep 16 21:48:15  kernel: iwlwifi 0000:00:14.3: CNVI_SCU_SEQ_DATA_DW9: 0x10
Sep 16 21:48:15  systemd-networkd[468]: wlan0: Link UP
Sep 16 21:48:15  NetworkManager[701]: <info>  [1726516095.3068] bus-manager: acquired D-Bus service "org.freedesktop.NetworkManager"
Sep 16 21:48:15  systemd[1]: Started Network Manager.
Sep 16 21:48:15  NetworkManager[701]: <info>  [1726516095.3090] ovsdb: disconnected from ovsdb
Sep 16 21:48:15  NetworkManager[701]: <info>  [1726516095.3092] device (lo): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'external')
Sep 16 21:48:15  NetworkManager[701]: <info>  [1726516095.3095] device (lo): state change: prepare -> config (reason 'none', sys-iface-state: 'external')
Sep 16 21:48:15  NetworkManager[701]: <info>  [1726516095.3098] device (lo): state change: config -> ip-config (reason 'none', sys-iface-state: 'external')
Sep 16 21:48:15  NetworkManager[701]: <info>  [1726516095.3104] device (lo): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'external')
Sep 16 21:48:15  NetworkManager[701]: <info>  [1726516095.3122] device (lo): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'external')
Sep 16 21:48:15  NetworkManager[701]: <info>  [1726516095.3125] device (lo): state change: secondaries -> activated (reason 'none', sys-iface-state: 'external')
Sep 16 21:48:15  systemd[1]: Starting WPA supplicant...
Sep 16 21:48:15  NetworkManager[701]: <info>  [1726516095.3130] device (lo): Activation: successful, device activated.
Sep 16 21:48:15  systemd[1]: Started WPA supplicant.
Sep 16 21:48:15  wpa_supplicant[738]: Successfully initialized wpa_supplicant
Sep 16 21:48:15  systemd[1]: Reached target Network.
Sep 16 21:48:15  systemd[1]: Starting CUPS Scheduler...
Sep 16 21:48:15  systemd[1]: Starting Permit User Sessions...
Sep 16 21:48:15  systemd[1]: Finished Permit User Sessions.
Sep 16 21:48:15  systemd[1]: Starting Hold until boot process finishes up...
Sep 16 21:48:15  NetworkManager[701]: <info>  [1726516095.4130] device (wlan0): supplicant interface state: internal-starting -> disconnected
Sep 16 21:48:15  NetworkManager[701]: <info>  [1726516095.4131] Wi-Fi P2P device controlled by interface wlan0 created
Sep 16 21:48:15  NetworkManager[701]: <info>  [1726516095.4134] manager: (p2p-dev-wlan0): new 802.11 Wi-Fi P2P device (/org/freedesktop/NetworkManager/Devices/3)
Sep 16 21:48:15  NetworkManager[701]: <info>  [1726516095.4137] device (p2p-dev-wlan0): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
Sep 16 21:48:15  systemd[1]: Starting Terminate Plymouth Boot Screen...
Sep 16 21:48:15  NetworkManager[701]: <info>  [1726516095.4144] device (wlan0): state change: unavailable -> disconnected (reason 'supplicant-available', sys-iface-state: 'managed')
Sep 16 21:48:15  NetworkManager[701]: <info>  [1726516095.4150] device (p2p-dev-wlan0): state change: unavailable -> disconnected (reason 'none', sys-iface-state: 'managed')
Sep 16 21:48:15  systemd[1]: Starting Manage, Install and Generate Color Profiles...
Sep 16 21:48:15  systemd[1]: Received SIGRTMIN+21 from PID 522 (plymouthd).
Sep 16 21:48:15  systemd[1]: Finished Hold until boot process finishes up.
Sep 16 21:48:15  systemd[1]: Finished Terminate Plymouth Boot Screen.
Sep 16 21:48:15  systemd[1]: Started Getty on tty1.
Sep 16 21:48:15  systemd[1]: Reached target Login Prompts.
Sep 16 21:48:15  systemd[1]: Started Manage, Install and Generate Color Profiles.
Sep 16 21:48:15  systemd[1]: Started CUPS Scheduler.
Sep 16 21:48:15  systemd[1]: Reached target Multi-User System.
Sep 16 21:48:15  systemd[1]: Started Battery Monitor Service.
Sep 16 21:48:15  systemd[1]: Reached target Graphical Interface.
Sep 16 21:48:15  systemd[1]: Startup finished in 3.538s (firmware) + 2.050s (loader) + 3.268s (kernel) + 5.011s (userspace) = 13.868s.
Sep 16 21:48:15  battery.sh[760]: start
Sep 16 21:48:15  dbus-broker-launch[698]: Activation request for 'org.freedesktop.Avahi' failed: The systemd unit 'dbus-org.freedesktop.Avahi.service' could not be found.
Sep 16 21:48:17  login[749]: pam_systemd_home(login:auth): New sd-bus connection (system-bus-pam-systemd-home-749) opened.
Sep 16 21:48:17  dbus-broker-launch[698]: Activation request for 'org.freedesktop.home1' failed: The systemd unit 'dbus-org.freedesktop.home1.service' could not be found.
Sep 16 21:48:17  systemd[1]: systemd-rfkill.service: Deactivated successfully.
Sep 16 21:48:18  wpa_supplicant[738]: wlan0: CTRL-EVENT-REGDOM-CHANGE init=DRIVER type=COUNTRY alpha2=DE
Sep 16 21:48:18  wpa_supplicant[738]: wlan0: CTRL-EVENT-REGDOM-CHANGE init=DRIVER type=COUNTRY alpha2=DE
Sep 16 21:48:18  NetworkManager[701]: <info>  [1726516098.7185] policy: auto-activating connection 'FRITZ!Box 7530 JU' (23c24095-26ea-49c5-b769-2d19eda295b8)
Sep 16 21:48:18  NetworkManager[701]: <info>  [1726516098.7191] device (wlan0): Activation: starting connection 'FRITZ!Box 7530 JU' (23c24095-26ea-49c5-b769-2d19eda295b8)
Sep 16 21:48:18  NetworkManager[701]: <info>  [1726516098.7192] device (wlan0): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Sep 16 21:48:18  NetworkManager[701]: <info>  [1726516098.7195] manager: NetworkManager state is now CONNECTING
Sep 16 21:48:18  systemd-networkd[468]: wlan0: Link DOWN
Sep 16 21:48:18  NetworkManager[701]: <info>  [1726516098.7482] device (wlan0): set-hw-addr: reset MAC address to BC:F1:71:11:E2:BB (preserve)
Sep 16 21:48:18  systemd-networkd[468]: wlan0: Link UP
Sep 16 21:48:18  NetworkManager[701]: <info>  [1726516098.7534] device (wlan0): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Sep 16 21:48:18  NetworkManager[701]: <info>  [1726516098.7540] device (wlan0): Activation: (wifi) access point 'FRITZ!Box 7530 JU' has security, but secrets are required.
Sep 16 21:48:18  NetworkManager[701]: <info>  [1726516098.7540] device (wlan0): state change: config -> need-auth (reason 'none', sys-iface-state: 'managed')
Sep 16 21:48:18  NetworkManager[701]: <info>  [1726516098.7543] sup-iface[c409b33e594a7d41,0,wlan0]: wps: type pbc start...
Sep 16 21:48:18  NetworkManager[701]: <info>  [1726516098.7547] device (wlan0): supplicant interface state: disconnected -> interface_disabled
Sep 16 21:48:18  NetworkManager[701]: <info>  [1726516098.7547] device (p2p-dev-wlan0): supplicant management interface state: disconnected -> interface_disabled
Sep 16 21:48:18  NetworkManager[701]: <info>  [1726516098.7563] device (wlan0): state change: need-auth -> prepare (reason 'none', sys-iface-state: 'managed')
Sep 16 21:48:18  NetworkManager[701]: <info>  [1726516098.7566] device (wlan0): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Sep 16 21:48:18  NetworkManager[701]: <info>  [1726516098.7569] device (wlan0): Activation: (wifi) connection 'FRITZ!Box 7530 JU' has security, and secrets exist.  No new secrets needed.
Sep 16 21:48:18  NetworkManager[701]: <info>  [1726516098.7570] Config: added 'ssid' value 'FRITZ!Box 7530 JU'
Sep 16 21:48:18  NetworkManager[701]: <info>  [1726516098.7570] Config: added 'scan_ssid' value '1'
Sep 16 21:48:18  NetworkManager[701]: <info>  [1726516098.7570] Config: added 'bgscan' value 'simple:30:-65:300'
Sep 16 21:48:18  NetworkManager[701]: <info>  [1726516098.7570] Config: added 'key_mgmt' value 'WPA-PSK WPA-PSK-SHA256 FT-PSK SAE FT-SAE'
Sep 16 21:48:18  NetworkManager[701]: <info>  [1726516098.7570] Config: added 'auth_alg' value 'OPEN'
Sep 16 21:48:18  NetworkManager[701]: <info>  [1726516098.7570] Config: added 'psk' value '<hidden>'
Sep 16 21:48:18  wpa_supplicant[738]: wlan0: WPS-CANCEL
Sep 16 21:48:18  NetworkManager[701]: <info>  [1726516098.7890] device (wlan0): supplicant interface state: interface_disabled -> inactive
Sep 16 21:48:18  NetworkManager[701]: <info>  [1726516098.7891] device (p2p-dev-wlan0): supplicant management interface state: interface_disabled -> inactive
Sep 16 21:48:18  wpa_supplicant[738]: wlan0: SME: Trying to authenticate with 3c:37:12:04:db:b3 (SSID='FRITZ!Box 7530 JU' freq=5500 MHz)
Sep 16 21:48:18  kernel: wlan0: authenticate with 3c:37:12:04:db:b3
Sep 16 21:48:18  NetworkManager[701]: <info>  [1726516098.8043] device (wlan0): supplicant interface state: inactive -> authenticating
Sep 16 21:48:18  NetworkManager[701]: <info>  [1726516098.8043] device (p2p-dev-wlan0): supplicant management interface state: inactive -> authenticating
Sep 16 21:48:18  kernel: wlan0: send auth to 3c:37:12:04:db:b3 (try 1/3)
Sep 16 21:48:18  wpa_supplicant[738]: wlan0: Trying to associate with 3c:37:12:04:db:b3 (SSID='FRITZ!Box 7530 JU' freq=5500 MHz)
Sep 16 21:48:18  NetworkManager[701]: <info>  [1726516098.8326] device (wlan0): supplicant interface state: authenticating -> associating
Sep 16 21:48:18  NetworkManager[701]: <info>  [1726516098.8326] device (p2p-dev-wlan0): supplicant management interface state: authenticating -> associating
Sep 16 21:48:18  kernel: wlan0: authenticated
Sep 16 21:48:18  kernel: wlan0: associate with 3c:37:12:04:db:b3 (try 1/3)
Sep 16 21:48:18  kernel: wlan0: RX AssocResp from 3c:37:12:04:db:b3 (capab=0x1511 status=0 aid=2)
Sep 16 21:48:18  systemd-networkd[468]: wlan0: Connected WiFi access point: FRITZ!Box 7530 JU (3c:37:12:04:db:b3)
Sep 16 21:48:18  wpa_supplicant[738]: wlan0: Associated with 3c:37:12:04:db:b3
Sep 16 21:48:18  wpa_supplicant[738]: wlan0: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
Sep 16 21:48:18  kernel: wlan0: associated
Sep 16 21:48:18  NetworkManager[701]: <info>  [1726516098.8574] device (wlan0): supplicant interface state: associating -> 4way_handshake
Sep 16 21:48:18  NetworkManager[701]: <info>  [1726516098.8574] device (p2p-dev-wlan0): supplicant management interface state: associating -> 4way_handshake
Sep 16 21:48:18  kernel: calling  crypto_ccm_module_init+0x0/0xff0 [ccm] @ 772
Sep 16 21:48:18  kernel: initcall crypto_ccm_module_init+0x0/0xff0 [ccm] returned 0 after 1 usecs
Sep 16 21:48:18  kernel: wlan0: Limiting TX power to 27 (30 - 3) dBm as advertised by 3c:37:12:04:db:b3
Sep 16 21:48:18  wpa_supplicant[738]: wlan0: WPA: Key negotiation completed with 3c:37:12:04:db:b3 [PTK=CCMP GTK=CCMP]
Sep 16 21:48:18  wpa_supplicant[738]: wlan0: CTRL-EVENT-CONNECTED - Connection to 3c:37:12:04:db:b3 completed [id=0 id_str=]
Sep 16 21:48:18  systemd-networkd[468]: wlan0: Gained carrier
Sep 16 21:48:18  NetworkManager[701]: <info>  [1726516098.9963] device (wlan0): supplicant interface state: 4way_handshake -> completed
Sep 16 21:48:18  NetworkManager[701]: <info>  [1726516098.9965] device (wlan0): Activation: (wifi) Stage 2 of 5 (Device Configure) successful. Connected to wireless network "FRITZ!Box 7530 JU"
Sep 16 21:48:18  wpa_supplicant[738]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-52 noise=9999 txrate=234000
Sep 16 21:48:18  NetworkManager[701]: <info>  [1726516098.9966] device (p2p-dev-wlan0): supplicant management interface state: 4way_handshake -> completed
Sep 16 21:48:18  NetworkManager[701]: <info>  [1726516098.9973] device (wlan0): state change: config -> ip-config (reason 'none', sys-iface-state: 'managed')
Sep 16 21:48:18  NetworkManager[701]: <info>  [1726516098.9986] dhcp4 (wlan0): activation: beginning transaction (timeout in 45 seconds)
Sep 16 21:48:19  NetworkManager[701]: <info>  [1726516099.0072] dhcp4 (wlan0): state changed new lease, address=192.168.178.146, acd pending
Sep 16 21:48:19  NetworkManager[701]: <info>  [1726516099.1443] dhcp4 (wlan0): state changed new lease, address=192.168.178.146
Sep 16 21:48:19  NetworkManager[701]: <info>  [1726516099.1451] policy: set 'FRITZ!Box 7530 JU' (wlan0) as default for IPv4 routing and DNS
Sep 16 21:48:19  systemd-resolved[687]: wlan0: Bus client set search domain list to: fritz.box
Sep 16 21:48:19  systemd-resolved[687]: wlan0: Bus client set default route setting: yes
Sep 16 21:48:19  systemd-resolved[687]: wlan0: Bus client set DNS server list to: 192.168.178.1
Sep 16 21:48:19  systemd-timesyncd[688]: Network configuration changed, trying to establish connection.
Sep 16 21:48:19  systemd-resolved[687]: Failed to open /etc/hosts: Permission denied
Sep 16 21:48:19  NetworkManager[701]: <info>  [1726516099.1567] device (wlan0): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'managed')
Sep 16 21:48:19  NetworkManager[701]: <info>  [1726516099.1599] device (wlan0): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'managed')
Sep 16 21:48:19  NetworkManager[701]: <info>  [1726516099.1602] device (wlan0): state change: secondaries -> activated (reason 'none', sys-iface-state: 'managed')
Sep 16 21:48:19  NetworkManager[701]: <info>  [1726516099.1606] manager: NetworkManager state is now CONNECTED_SITE
Sep 16 21:48:19  NetworkManager[701]: <info>  [1726516099.1624] device (wlan0): Activation: successful, device activated.
Sep 16 21:48:19  NetworkManager[701]: <info>  [1726516099.1634] manager: startup complete
Sep 16 21:48:19  systemd-timesyncd[688]: Contacted time server 185.244.195.159:123 (0.arch.pool.ntp.org).
Sep 16 21:48:19  systemd-timesyncd[688]: Initial clock synchronization to Mon 2024-09-16 21:48:18.951068 CEST.
Sep 16 21:48:19  NetworkManager[701]: <info>  [1726516099.2659] manager: NetworkManager state is now CONNECTED_GLOBAL
Sep 16 21:48:20  systemd-networkd[468]: wlan0: Gained IPv6LL
Sep 16 21:48:20  NetworkManager[701]: <info>  [1726516100.4045] dhcp6 (wlan0): activation: beginning transaction (timeout in 45 seconds)
Sep 16 21:48:20  NetworkManager[701]: <info>  [1726516100.4058] policy: set 'FRITZ!Box 7530 JU' (wlan0) as default for IPv6 routing and DNS
Sep 16 21:48:20  systemd-resolved[687]: wlan0: Bus client set DNS server list to: 192.168.178.1, fd00::3e37:12ff:fe04:dbb0, 2003:ca:5f16:c600:3e37:12ff:fe04:dbb0
Sep 16 21:48:20  NetworkManager[701]: <info>  [1726516100.4103] dhcp6 (wlan0): state changed new lease
Sep 16 21:48:20  login[749]: pam_systemd(login:session): New sd-bus connection (system-bus-pam-systemd-749) opened.
Sep 16 21:48:20  systemd[1]: Created slice User Slice of UID 972.
Sep 16 21:48:20  systemd[1]: Starting User Runtime Directory /run/user/972...
Sep 16 21:48:20  systemd[1]: Finished User Runtime Directory /run/user/972.
Sep 16 21:48:20  systemd[1]: Starting User Manager for UID 972...
Sep 16 21:48:20  systemd[785]: Queued start job for default target Main User Target.
Sep 16 21:48:20  systemd[785]: Created slice User Application Slice.
Sep 16 21:48:20  systemd[785]: Started Submitting pending crash events (file monitor).
Sep 16 21:48:20  systemd[785]: Reached target Paths.
Sep 16 21:48:20  systemd[785]: Reached target Timers.
Sep 16 21:48:20  systemd[785]: Starting D-Bus User Message Bus Socket...
Sep 16 21:48:20  systemd[785]: Listening on GnuPG network certificate management daemon.
Sep 16 21:48:20  systemd[785]: Listening on Socket to launch DrKonqi for a systemd-coredump crash.
Sep 16 21:48:20  systemd[785]: Listening on GNOME Keyring daemon.
Sep 16 21:48:20  systemd[785]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
Sep 16 21:48:20  systemd[785]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
Sep 16 21:48:20  systemd[785]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
Sep 16 21:48:20  systemd[785]: Listening on GnuPG cryptographic agent and passphrase cache.
Sep 16 21:48:20  systemd[785]: Listening on GnuPG public key management service.
Sep 16 21:48:20  systemd[785]: Listening on p11-kit server.
Sep 16 21:48:20  systemd[785]: Listening on PipeWire PulseAudio.
Sep 16 21:48:20  systemd[785]: Listening on PipeWire Multimedia System Sockets.
Sep 16 21:48:20  systemd[785]: Listening on D-Bus User Message Bus Socket.
Sep 16 21:48:20  systemd[785]: Reached target Sockets.
Sep 16 21:48:20  systemd[785]: Reached target Basic System.
Sep 16 21:48:20  systemd[1]: Started User Manager for UID 972.
Sep 16 21:48:20  systemd[785]: Starting Update XDG user dir configuration...
Sep 16 21:48:20  systemd[785]: Finished Update XDG user dir configuration.
Sep 16 21:48:20  systemd[785]: Reached target Main User Target.
Sep 16 21:48:20  systemd[785]: Startup finished in 159ms.
Sep 16 21:48:21  systemd-resolved[687]: Failed to open /etc/hosts: Permission denied
Sep 16 21:48:23  systemd[785]: Created slice User Core Session Slice.
Sep 16 21:48:23  systemd[785]: Starting D-Bus User Message Bus...
Sep 16 21:48:23  dbus-broker-launch[837]: Service file '/usr/share//dbus-1/services/org.kde.dolphin.FileManager1.service' is not named after the D-Bus name 'org.freedesktop.FileManager1'.
Sep 16 21:48:23  dbus-broker-launch[837]: Ignoring duplicate name 'org.freedesktop.FileManager1' in service file '/usr/share//dbus-1/services/org.kde.dolphin.FileManager1.service'
Sep 16 21:48:23  dbus-broker-launch[837]: Service file '/usr/share//dbus-1/services/org.kde.kscreen.service' is not named after the D-Bus name 'org.kde.KScreen'.
Sep 16 21:48:23  dbus-broker-launch[837]: Service file '/usr/share//dbus-1/services/org.kde.plasma.Notifications.service' is not named after the D-Bus name 'org.freedesktop.Notifications'.
Sep 16 21:48:23  dbus-broker-launch[837]: Service file '/usr/share//dbus-1/services/org.xfce.Thunar.FileManager1.service' is not named after the D-Bus name 'org.freedesktop.FileManager1'.
Sep 16 21:48:23  dbus-broker-launch[837]: Ignoring duplicate name 'org.freedesktop.FileManager1' in service file '/usr/share//dbus-1/services/org.xfce.Thunar.FileManager1.service'
Sep 16 21:48:23  dbus-broker-launch[837]: Service file '/usr/share//dbus-1/services/org.xfce.Tumbler.Cache1.service' is not named after the D-Bus name 'org.freedesktop.thumbnails.Cache1'.
Sep 16 21:48:23  dbus-broker-launch[837]: Service file '/usr/share//dbus-1/services/org.xfce.Tumbler.Manager1.service' is not named after the D-Bus name 'org.freedesktop.thumbnails.Manager1'.
Sep 16 21:48:23  dbus-broker-launch[837]: Service file '/usr/share//dbus-1/services/org.xfce.Tumbler.Thumbnailer1.service' is not named after the D-Bus name 'org.freedesktop.thumbnails.Thumbnailer1'.
Sep 16 21:48:23  dbus-broker-launch[837]: Service file '/usr/share//dbus-1/services/org.xfce.xfce4-notifyd.Notifications.service' is not named after the D-Bus name 'org.freedesktop.Notifications'.
Sep 16 21:48:23  dbus-broker-launch[837]: Ignoring duplicate name 'org.freedesktop.Notifications' in service file '/usr/share//dbus-1/services/org.xfce.xfce4-notifyd.Notifications.service'
Sep 16 21:48:23  dbus-broker-launch[837]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +31: Eavesdropping is deprecated and ignored
Sep 16 21:48:23  dbus-broker-launch[837]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +33: Eavesdropping is deprecated and ignored
Sep 16 21:48:23  dbus-broker-launch[837]: Service file '/usr/share//dbus-1/services/org.xfce.xfce4-notifyd.Notifyd.service' is not named after the D-Bus name 'org.xfce.Notifyd'.
Sep 16 21:48:23  systemd[785]: Started D-Bus User Message Bus.
Sep 16 21:48:23  dbus-broker-launch[837]: Ready
Sep 16 21:48:24  systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
Sep 16 21:48:25  systemd-resolved[687]: Failed to open /etc/hosts: Permission denied
Sep 16 21:48:26  systemd[785]: Starting Virtual filesystem service...
Sep 16 21:48:26  systemd[785]: Started Virtual filesystem service.
Sep 16 21:48:26  systemd[785]: Starting Accessibility services bus...
Sep 16 21:48:26  systemd[785]: Starting Portal service...
Sep 16 21:48:26  systemd[1]: Starting Time & Date Service...
Sep 16 21:48:26  systemd[785]: Started Accessibility services bus.
Sep 16 21:48:26  systemd[785]: Starting flatpak document portal service...
Sep 16 21:48:26  systemd[785]: Starting sandboxed app permission store...
Sep 16 21:48:26  systemd[1]: Started Time & Date Service.
Sep 16 21:48:26  systemd[785]: Started sandboxed app permission store.
Sep 16 21:48:26  systemd[785]: Started flatpak document portal service.
Sep 16 21:48:26  xdg-desktop-por[998]: Choosing gtk.portal for org.freedesktop.impl.portal.Lockdown as a last-resort fallback
Sep 16 21:48:26  xdg-desktop-por[998]: The preferred method to match portal implementations to desktop environments is to use the portals.conf(5) configuration file
Sep 16 21:48:26  systemd[785]: Starting Portal service (GTK/GNOME implementation)...
Sep 16 21:48:26  at-spi-bus-launcher[1032]: Policy to allow eavesdropping in /usr/share/defaults/at-spi2/accessibility.conf +15: Eavesdropping is deprecated and ignored
Sep 16 21:48:26  at-spi-bus-launcher[1032]: Policy to allow eavesdropping in /usr/share/defaults/at-spi2/accessibility.conf +17: Eavesdropping is deprecated and ignored
Sep 16 21:48:26  dbus-broker-launch[1032]: Ready
Sep 16 21:48:26  systemd[785]: Created slice Slice /app/dbus-:1.12-org.a11y.atspi.Registry.
Sep 16 21:48:26  systemd[785]: Started dbus-:1.12-org.a11y.atspi.Registry@0.service.
Sep 16 21:48:27  at-spi2-registryd[1038]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
Sep 16 21:48:27  systemd[785]: Started Portal service (GTK/GNOME implementation).
Sep 16 21:48:27  systemd[1]: Starting RealtimeKit Scheduling Policy Service...
Sep 16 21:48:27  systemd[1]: Started RealtimeKit Scheduling Policy Service.
Sep 16 21:48:27  rtkit-daemon[1046]: Successfully called chroot.
Sep 16 21:48:27  rtkit-daemon[1046]: Successfully dropped privileges.
Sep 16 21:48:27  rtkit-daemon[1046]: Successfully limited resources.
Sep 16 21:48:27  rtkit-daemon[1046]: Running.
Sep 16 21:48:27  rtkit-daemon[1046]: Watchdog thread running.
Sep 16 21:48:27  rtkit-daemon[1046]: Canary thread running.
Sep 16 21:48:27  rtkit-daemon[1046]: Supervising 0 threads of 0 processes of 0 users.
Sep 16 21:48:27  rtkit-daemon[1046]: Supervising 0 threads of 0 processes of 0 users.
Sep 16 21:48:27  rtkit-daemon[1046]: Supervising 0 threads of 0 processes of 0 users.
Sep 16 21:48:27  xdg-desktop-por[998]: No skeleton to export
Sep 16 21:48:27  xdg-desktop-por[998]: Choosing gtk.portal for org.freedesktop.impl.portal.FileChooser as a last-resort fallback
Sep 16 21:48:27  xdg-desktop-por[998]: Choosing gtk.portal for org.freedesktop.impl.portal.AppChooser as a last-resort fallback
Sep 16 21:48:27  xdg-desktop-por[998]: Choosing gtk.portal for org.freedesktop.impl.portal.Print as a last-resort fallback
Sep 16 21:48:27  xdg-desktop-por[998]: Choosing gtk.portal for org.freedesktop.impl.portal.Notification as a last-resort fallback
Sep 16 21:48:27  xdg-desktop-por[998]: Choosing gtk.portal for org.freedesktop.impl.portal.Inhibit as a last-resort fallback
Sep 16 21:48:27  xdg-desktop-por[998]: Choosing gtk.portal for org.freedesktop.impl.portal.Access as a last-resort fallback
Sep 16 21:48:27  systemd[785]: Started PipeWire Multimedia Service.
Sep 16 21:48:27  systemd[785]: Started Multimedia Service Session Manager.
Sep 16 21:48:27  rtkit-daemon[1046]: Supervising 0 threads of 0 processes of 0 users.
Sep 16 21:48:27  rtkit-daemon[1046]: Supervising 0 threads of 0 processes of 0 users.
Sep 16 21:48:27  rtkit-daemon[1046]: Supervising 0 threads of 0 processes of 0 users.
Sep 16 21:48:27  xdg-desktop-por[998]: Choosing gtk.portal for org.freedesktop.impl.portal.Account as a last-resort fallback
Sep 16 21:48:27  wireplumber[1053]: wp-internal-comp-loader: Loading profile 'main'
Sep 16 21:48:27  systemd[1]: Starting Authorization Manager...
Sep 16 21:48:27  xdg-desktop-por[998]: Choosing gtk.portal for org.freedesktop.impl.portal.Email as a last-resort fallback
Sep 16 21:48:27  xdg-desktop-por[998]: Choosing gtk.portal for org.freedesktop.impl.portal.DynamicLauncher as a last-resort fallback
Sep 16 21:48:27  systemd[785]: Started Portal service.
Sep 16 21:48:27  polkitd[1059]: Started polkitd version 125
Sep 16 21:48:27  systemd[1]: Started Authorization Manager.
Sep 16 21:48:27  rtkit-daemon[1046]: Successfully made thread 1052 of process 1052 owned by '972' high priority at nice level -11.
Sep 16 21:48:27  rtkit-daemon[1046]: Supervising 1 threads of 1 processes of 1 users.
Sep 16 21:48:27  rtkit-daemon[1046]: Successfully made thread 1055 of process 1052 owned by '972' RT at priority 20.
Sep 16 21:48:27  rtkit-daemon[1046]: Supervising 2 threads of 1 processes of 1 users.
Sep 16 21:48:27  rtkit-daemon[1046]: Supervising 2 threads of 1 processes of 1 users.
Sep 16 21:48:27  rtkit-daemon[1046]: Supervising 2 threads of 1 processes of 1 users.
Sep 16 21:48:27  rtkit-daemon[1046]: Supervising 2 threads of 1 processes of 1 users.
Sep 16 21:48:27  rtkit-daemon[1046]: Supervising 2 threads of 1 processes of 1 users.
Sep 16 21:48:27  rtkit-daemon[1046]: Supervising 2 threads of 1 processes of 1 users.
Sep 16 21:48:27  rtkit-daemon[1046]: Successfully made thread 1053 of process 1053 owned by '972' high priority at nice level -11.
Sep 16 21:48:27  rtkit-daemon[1046]: Supervising 3 threads of 2 processes of 1 users.
Sep 16 21:48:27  rtkit-daemon[1046]: Successfully made thread 1064 of process 1053 owned by '972' RT at priority 20.
Sep 16 21:48:27  rtkit-daemon[1046]: Supervising 4 threads of 2 processes of 1 users.
Sep 16 21:48:27  rtkit-daemon[1046]: Supervising 4 threads of 2 processes of 1 users.
Sep 16 21:48:27  rtkit-daemon[1046]: Supervising 4 threads of 2 processes of 1 users.
Sep 16 21:48:27  rtkit-daemon[1046]: Successfully made thread 1109 of process 902 owned by '972' RT at priority 10.
Sep 16 21:48:27  rtkit-daemon[1046]: Supervising 5 threads of 3 processes of 1 users.
Sep 16 21:48:27  systemd[785]: Started PipeWire PulseAudio.
Sep 16 21:48:27  rtkit-daemon[1046]: Successfully made thread 1118 of process 1118 owned by '972' high priority at nice level -11.
Sep 16 21:48:27  rtkit-daemon[1046]: Supervising 6 threads of 4 processes of 1 users.
Sep 16 21:48:27  rtkit-daemon[1046]: Successfully made thread 1120 of process 1118 owned by '972' RT at priority 20.
Sep 16 21:48:27  rtkit-daemon[1046]: Supervising 7 threads of 4 processes of 1 users.
Sep 16 21:48:27  wireplumber[1053]: default: Failed to get percentage from UPower: org.freedesktop.DBus.Error.NameHasNoOwner
Sep 16 21:48:27  wireplumber[1053]: spa.bluez5: BlueZ system service is not available
Sep 16 21:48:27  wireplumber[1053]: wp-device: SPA handle 'api.libcamera.enum.manager' could not be loaded; is it installed?
Sep 16 21:48:27  wireplumber[1053]: s-monitors-libcamera: PipeWire's libcamera SPA plugin is missing or broken. Some camera types may not be supported.
Sep 16 21:48:27  rtkit-daemon[1046]: Supervising 7 threads of 4 processes of 1 users.
Sep 16 21:48:27  rtkit-daemon[1046]: Supervising 7 threads of 4 processes of 1 users.
Sep 16 21:48:27  rtkit-daemon[1046]: Supervising 7 threads of 4 processes of 1 users.
Sep 16 21:48:27  rtkit-daemon[1046]: Supervising 7 threads of 4 processes of 1 users.
Sep 16 21:48:27  systemd-resolved[687]: Failed to open /etc/hosts: Permission denied
Sep 16 21:48:27  systemd-resolved[687]: Using degraded feature set UDP instead of UDP+EDNS0 for DNS server 192.168.178.1.
Sep 16 21:48:27  systemd-resolved[687]: Using degraded feature set UDP instead of UDP+EDNS0 for DNS server 192.168.178.1.
Sep 16 21:48:28  rtkit-daemon[1046]: Supervising 7 threads of 4 processes of 1 users.
Sep 16 21:48:28  rtkit-daemon[1046]: Supervising 7 threads of 4 processes of 1 users.
Sep 16 21:48:28  rtkit-daemon[1046]: Supervising 7 threads of 4 processes of 1 users.
Sep 16 21:48:28  rtkit-daemon[1046]: Supervising 7 threads of 4 processes of 1 users.
Sep 16 21:48:28  rtkit-daemon[1046]: Supervising 7 threads of 4 processes of 1 users.
Sep 16 21:48:28  rtkit-daemon[1046]: Supervising 7 threads of 4 processes of 1 users.
Sep 16 21:48:33  systemd-resolved[687]: Failed to open /etc/hosts: Permission denied
Sep 16 21:48:34  rtkit-daemon[1046]: Supervising 7 threads of 4 processes of 1 users.
Sep 16 21:48:34  rtkit-daemon[1046]: Supervising 7 threads of 4 processes of 1 users.
Sep 16 21:48:36  systemd[785]: Starting Virtual filesystem service - disk device monitor...
Sep 16 21:48:36  systemd[1]: Starting Disk Manager...
Sep 16 21:48:36  udisksd[1449]: udisks daemon version 2.10.1 starting
Sep 16 21:48:36  systemd[1]: Started Disk Manager.
Sep 16 21:48:36  udisksd[1449]: Acquired the name org.freedesktop.UDisks2 on the system message bus
Sep 16 21:48:36  systemd[785]: Started Virtual filesystem service - disk device monitor.
Sep 16 21:48:36  systemd[785]: Starting Virtual filesystem service - Apple File Conduit monitor...
Sep 16 21:48:37  systemd[785]: Started Virtual filesystem service - Apple File Conduit monitor.
Sep 16 21:48:37  systemd[785]: Starting Virtual filesystem service - GNOME Online Accounts monitor...
Sep 16 21:48:37  systemd[785]: Created slice Slice /app/dbus-:1.2-org.gnome.OnlineAccounts.
Sep 16 21:48:37  systemd[785]: Started dbus-:1.2-org.gnome.OnlineAccounts@0.service.
Sep 16 21:48:37  goa-daemon[1479]: goa-daemon version 3.50.4 starting
Sep 16 21:48:37  systemd[785]: Created slice Slice /app/dbus-:1.2-org.gnome.Identity.
Sep 16 21:48:37  systemd[785]: Started dbus-:1.2-org.gnome.Identity@0.service.
Sep 16 21:48:37  systemd[785]: Started Virtual filesystem service - GNOME Online Accounts monitor.
Sep 16 21:48:37  systemd[785]: Starting Virtual filesystem service - digital camera monitor...
Sep 16 21:48:37  systemd[785]: Started Virtual filesystem service - digital camera monitor.
Sep 16 21:48:37  systemd[785]: Starting Virtual filesystem service - Media Transfer Protocol monitor...
Sep 16 21:48:37  systemd[785]: Started Virtual filesystem service - Media Transfer Protocol monitor.
Sep 16 21:48:37  systemd[785]: Starting User preferences database...
Sep 16 21:48:37  systemd[785]: Started User preferences database.
Sep 16 21:48:37  gvfsd[1540]: 2024-09-16 21:48:37,460:wsdd WARNING(pid 1540): no interface given, using all interfaces
Sep 16 21:48:40  kernel: input input7: Unknown key pressed, code: 0x0381
Sep 16 21:48:48  rtkit-daemon[1046]: Supervising 7 threads of 4 processes of 1 users.
Sep 16 21:48:48  rtkit-daemon[1046]: Supervising 7 threads of 4 processes of 1 users.
Sep 16 21:48:50  systemd-resolved[687]: Failed to open /etc/hosts: Permission denied
Sep 16 21:48:53  rtkit-daemon[1046]: Supervising 7 threads of 4 processes of 1 users.
Sep 16 21:48:53  rtkit-daemon[1046]: Supervising 7 threads of 4 processes of 1 users.
Sep 16 21:48:53  systemd-resolved[687]: Failed to open /etc/hosts: Permission denied
Sep 16 21:48:57  systemd[1]: systemd-timedated.service: Deactivated successfully.
Sep 16 21:49:07  systemd[1]: systemd-hostnamed.service: Deactivated successfully.
Sep 16 21:49:16  systemd-resolved[687]: Failed to open /etc/hosts: Permission denied
Sep 16 21:49:27  systemd-resolved[687]: Failed to open /etc/hosts: Permission denied
Sep 16 21:49:36  kernel: input input7: Unknown key pressed, code: 0x0383
Sep 16 21:49:37  kernel: input input7: Unknown key pressed, code: 0x0385
Sep 16 21:49:38  systemd-resolved[687]: Failed to open /etc/hosts: Permission denied
Sep 16 21:49:38  wpa_supplicant[738]: wlan0: RSN: Group rekeying completed with 3c:37:12:04:db:b3 [GTK=CCMP]
Sep 16 21:49:44  sudo[1696]: pam_systemd_home(sudo:auth): New sd-bus connection (system-bus-pam-systemd-home-1696) opened.
sudo journalctl -b-1
Sep 16 21:46:02 kernel: microcode: updated early: 0x41e -> 0x433, date = 2023-12-05
Sep 16 21:46:02 kernel: Linux version 6.6.49-1-lts (linux-lts@archlinux) (gcc (GCC) 14.2.1 20240805, GNU ld (GNU Binutils) 2.43.0) #1 SMP PREEMPT_DYNAMIC Wed, 04 Sep 2024 13:18:51 +0000
Sep 16 21:46:02 kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-linux-lts root=UUID=2ec9a78e-0c5a-40b3-a1fb-cf4be8a42b06 rw printk.time=1 initcall_debug nvme_core.default_ps_max_latency_us=0 quiet loglevel=7 rd.udev.log_level=3 systemd.debug_shell no_console_suspend ignore_loglevel
Sep 16 21:46:02 kernel: x86/split lock detection: #AC: crashing the kernel on kernel split_locks and warning on user-space split_locks
Sep 16 21:46:02 kernel: BIOS-provided physical RAM map:
Sep 16 21:46:02 kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
Sep 16 21:46:02 kernel: BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
Sep 16 21:46:02 kernel: BIOS-e820: [mem 0x0000000000100000-0x000000006d4dcfff] usable
Sep 16 21:46:02 kernel: BIOS-e820: [mem 0x000000006d4dd000-0x000000006dddcfff] reserved
Sep 16 21:46:02 kernel: BIOS-e820: [mem 0x000000006dddd000-0x000000006fbfefff] usable
Sep 16 21:46:02 kernel: BIOS-e820: [mem 0x000000006fbff000-0x0000000071a4efff] reserved
Sep 16 21:46:02 kernel: BIOS-e820: [mem 0x0000000071a4f000-0x00000000749fefff] ACPI NVS
Sep 16 21:46:02 kernel: BIOS-e820: [mem 0x00000000749ff000-0x0000000074bfefff] ACPI data
Sep 16 21:46:02 kernel: BIOS-e820: [mem 0x0000000074bff000-0x0000000074bfffff] usable
Sep 16 21:46:02 kernel: BIOS-e820: [mem 0x0000000074c00000-0x0000000078ffffff] reserved
Sep 16 21:46:02 kernel: BIOS-e820: [mem 0x0000000079a00000-0x0000000079bfffff] reserved
Sep 16 21:46:02 kernel: BIOS-e820: [mem 0x000000007a000000-0x00000000803fffff] reserved
Sep 16 21:46:02 kernel: BIOS-e820: [mem 0x00000000c0000000-0x00000000cfffffff] reserved
Sep 16 21:46:02 kernel: BIOS-e820: [mem 0x00000000f9d00000-0x00000000f9efffff] reserved
Sep 16 21:46:02 kernel: BIOS-e820: [mem 0x00000000fe010000-0x00000000fe010fff] reserved
Sep 16 21:46:02 kernel: BIOS-e820: [mem 0x00000000fed20000-0x00000000fed7ffff] reserved
Sep 16 21:46:02 kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
Sep 16 21:46:02 kernel: BIOS-e820: [mem 0x0000000100000000-0x000000047fbfffff] usable
Sep 16 21:46:02 kernel: printk: debug: ignoring loglevel setting.
Sep 16 21:46:02 kernel: NX (Execute Disable) protection: active
Sep 16 21:46:02 kernel: APIC: Static calls initialized
Sep 16 21:46:02 kernel: efi: EFI v2.8 by HUAWEI
Sep 16 21:46:02 kernel: efi: ACPI=0x74bfe000 ACPI 2.0=0x74bfe014 TPMFinalLog=0x74936000 SMBIOS=0x70056000 MEMATTR=0x69dfd018 ESRT=0x667b0a98 INITRD=0x69e37b18 RNG=0x74b12018 TPMEventLog=0x69e32018 
Sep 16 21:46:02 kernel: random: crng init done
Sep 16 21:46:02 kernel: efi: Remove mem110: MMIO range=[0xc0000000-0xcfffffff] (256MB) from e820 map
Sep 16 21:46:02 kernel: e820: remove [mem 0xc0000000-0xcfffffff] reserved
Sep 16 21:46:02 kernel: efi: Remove mem111: MMIO range=[0xf9d00000-0xf9efffff] (2MB) from e820 map
Sep 16 21:46:02 kernel: e820: remove [mem 0xf9d00000-0xf9efffff] reserved
Sep 16 21:46:02 kernel: efi: Not removing mem112: MMIO range=[0xfe010000-0xfe010fff] (4KB) from e820 map
Sep 16 21:46:02 kernel: efi: Remove mem114: MMIO range=[0xff000000-0xffffffff] (16MB) from e820 map
Sep 16 21:46:02 kernel: e820: remove [mem 0xff000000-0xffffffff] reserved
Sep 16 21:46:02 kernel: SMBIOS 3.4 present.
Sep 16 21:46:02 kernel: DMI: HUAWEI RLEF-XX/RLEF-XX-PCB, BIOS 1.26 01/30/2023
Sep 16 21:46:02 kernel: tsc: Detected 2700.000 MHz processor
Sep 16 21:46:02 kernel: tsc: Detected 2688.000 MHz TSC
Sep 16 21:46:02 kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Sep 16 21:46:02 kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
Sep 16 21:46:02 kernel: last_pfn = 0x47fc00 max_arch_pfn = 0x400000000
Sep 16 21:46:02 kernel: MTRR map: 5 entries (3 fixed + 2 variable; max 23), built from 10 variable MTRRs
Sep 16 21:46:02 kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Sep 16 21:46:02 kernel: last_pfn = 0x74c00 max_arch_pfn = 0x400000000
Sep 16 21:46:02 kernel: esrt: Reserving ESRT space from 0x00000000667b0a98 to 0x00000000667b0b20.
Sep 16 21:46:02 kernel: e820: update [mem 0x667b0000-0x667b0fff] usable ==> reserved
Sep 16 21:46:02 kernel: Using GB pages for direct mapping
Sep 16 21:46:02 kernel: Secure boot disabled
Sep 16 21:46:02 kernel: RAMDISK: [mem 0x630fb000-0x6466bfff]
Sep 16 21:46:02 kernel: ACPI: Early table checksum verification disabled
Sep 16 21:46:02 kernel: ACPI: RSDP 0x0000000074BFE014 000024 (v02 HUAWEI)
Sep 16 21:46:02 kernel: ACPI: XSDT 0x0000000074BA6188 00014C (v01 HUAWEI ADL-P-M  00000002      01000013)
Sep 16 21:46:02 kernel: ACPI: FACP 0x0000000074BA2000 000114 (v06 HUAWEI ADL-P-M  00000002 ACPI 00040000)
Sep 16 21:46:02 kernel: ACPI: DSDT 0x0000000074B2A000 07491F (v02 HUAWEI ADL-P-M  00000002 ACPI 00040000)
Sep 16 21:46:02 kernel: ACPI: FACS 0x00000000748F0000 000040
Sep 16 21:46:02 kernel: ACPI: UEFI 0x00000000749FE000 000236 (v01 HUAWEI ADL-P-M  00000001 ACPI 00040000)
Sep 16 21:46:02 kernel: ACPI: SSDT 0x0000000074BF6000 006B43 (v02 HUAWEI DptfTabl 00001000 INTL 20200717)
Sep 16 21:46:02 kernel: ACPI: SSDT 0x0000000074BF5000 00038C (v02 HUAWEI Pmax_Dev 00000001 INTL 20200717)
Sep 16 21:46:02 kernel: ACPI: DLUT 0x0000000074BD4000 020034 (v01 HUAWEI ADL-P-M  00000001 ACPI 00040000)
Sep 16 21:46:02 kernel: ACPI: SSDT 0x0000000074BCE000 005D2C (v02 HUAWEI CpuSsdt  00003000 INTL 20200717)
Sep 16 21:46:02 kernel: ACPI: SSDT 0x0000000074BCB000 002B22 (v02 HUAWEI SaSsdt   00003000 INTL 20200717)
Sep 16 21:46:02 kernel: ACPI: SSDT 0x0000000074BC7000 0033D3 (v02 HUAWEI IgfxSsdt 00003000 INTL 20200717)
Sep 16 21:46:02 kernel: ACPI: SSDT 0x0000000074BB9000 00D39F (v02 HUAWEI TcssSsdt 00001000 INTL 20200717)
Sep 16 21:46:02 kernel: ACPI: SSDT 0x0000000074BB8000 000047 (v01 HUAWEI MlgTable 00001000 INTL 20200717)
Sep 16 21:46:02 kernel: ACPI: SSDT 0x0000000074BB7000 00077B (v02 HUAWEI Tpm2Tabl 00001000 INTL 20200717)
Sep 16 21:46:02 kernel: ACPI: TPM2 0x0000000074BB6000 00004C (v04 HUAWEI ADL-P-M  00000002 ACPI 00040000)
Sep 16 21:46:02 kernel: ACPI: MSDM 0x0000000074BB5000 000055 (v03 HUAWEI ADL-P-M  00000001 ACPI 00040000)
Sep 16 21:46:02 kernel: ACPI: SSDT 0x0000000074BAF000 005C22 (v01 HUAWEI WmiTable 00001000 INTL 20200717)
Sep 16 21:46:02 kernel: ACPI: SSDT 0x0000000074BAE000 000B5C (v02 HUAWEI UsbCTabl 00001000 INTL 20200717)
Sep 16 21:46:02 kernel: ACPI: LPIT 0x0000000074BAD000 0000CC (v01 HUAWEI ADL-P-M  00000002 ACPI 00040000)
Sep 16 21:46:02 kernel: ACPI: WSMT 0x0000000074BAC000 000028 (v01 HUAWEI ADL-P-M  00000002 ACPI 00040000)
Sep 16 21:46:02 kernel: ACPI: SSDT 0x0000000074BAB000 000AD9 (v02 HUAWEI PtidDevc 00001000 INTL 20200717)
Sep 16 21:46:02 kernel: ACPI: SSDT 0x0000000074BA8000 002357 (v02 HUAWEI TbtTypeC 00000000 INTL 20200717)
Sep 16 21:46:02 kernel: ACPI: DBGP 0x0000000074BA7000 000034 (v01 HUAWEI ADL-P-M  00000002 ACPI 00040000)
Sep 16 21:46:02 kernel: ACPI: DBG2 0x0000000074BFD000 000054 (v00 HUAWEI ADL-P-M  00000002 ACPI 00040000)
Sep 16 21:46:02 kernel: ACPI: NHLT 0x0000000074BA4000 001B35 (v00 HUAWEI ADL-P-M  00000002 ACPI 00040000)
Sep 16 21:46:02 kernel: ACPI: ECDT 0x0000000074BA3000 000069 (v01 HUAWEI ADL-P-M  00000002 ACPI 00040000)
Sep 16 21:46:02 kernel: ACPI: HPET 0x0000000074BA1000 000038 (v01 HUAWEI ADL-P-M  00000002 ACPI 00040000)
Sep 16 21:46:02 kernel: ACPI: APIC 0x0000000074BA0000 0001DC (v04 HUAWEI ADL-P-M  00000002 ACPI 00040000)
Sep 16 21:46:02 kernel: ACPI: MCFG 0x0000000074B9F000 00003C (v01 HUAWEI ADL-P-M  00000002 ACPI 00040000)
Sep 16 21:46:02 kernel: ACPI: SSDT 0x0000000074B24000 005F77 (v02 HUAWEI ADL-P-M  00000002      01000013)
Sep 16 21:46:02 kernel: ACPI: SSDT 0x0000000074B22000 001D0E (v02 HUAWEI ADL-P-M  00000002      01000013)
Sep 16 21:46:02 kernel: ACPI: $H2O 0x0000000074B21000 00002C (v01 HUAWEI ADL-P-M  00000001 ACPI 00040000)
Sep 16 21:46:02 kernel: ACPI: DMAR 0x0000000074B20000 000088 (v02 HUAWEI ADL-P-M  00000002 ACPI 00040000)
Sep 16 21:46:02 kernel: ACPI: SSDT 0x0000000074B1F000 000B21 (v02 HUAWEI xh_adlLP 00000000 INTL 20200717)
Sep 16 21:46:02 kernel: ACPI: SSDT 0x0000000074B1B000 003AEA (v02 HUAWEI SocGpe   00003000 INTL 20200717)
Sep 16 21:46:02 kernel: ACPI: SSDT 0x0000000074B17000 0039DA (v02 HUAWEI SocCmn   00003000 INTL 20200717)
Sep 16 21:46:02 kernel: ACPI: SSDT 0x0000000074B16000 0000F8 (v01 HUAWEI PcdTabl  00001000 INTL 20200717)
Sep 16 21:46:02 kernel: ACPI: FPDT 0x0000000074B15000 000044 (v01 HUAWEI ADL-P-M  00000002 ACPI 00040000)
Sep 16 21:46:02 kernel: ACPI: PHAT 0x0000000074B13000 00081C (v01 HUAWEI ADL-P-M  00000005 ACPI 00040000)
Sep 16 21:46:02 kernel: ACPI: BGRT 0x0000000074B14000 000038 (v01 HUAWEI ADL-P-M  00000001 ACPI 00040000)
Sep 16 21:46:02 kernel: ACPI: Reserving FACP table memory at [mem 0x74ba2000-0x74ba2113]
Sep 16 21:46:02 kernel: ACPI: Reserving DSDT table memory at [mem 0x74b2a000-0x74b9e91e]
Sep 16 21:46:02 kernel: ACPI: Reserving FACS table memory at [mem 0x748f0000-0x748f003f]
Sep 16 21:46:02 kernel: ACPI: Reserving UEFI table memory at [mem 0x749fe000-0x749fe235]
Sep 16 21:46:02 kernel: ACPI: Reserving SSDT table memory at [mem 0x74bf6000-0x74bfcb42]
Sep 16 21:46:02 kernel: ACPI: Reserving SSDT table memory at [mem 0x74bf5000-0x74bf538b]
Sep 16 21:46:02 kernel: ACPI: Reserving DLUT table memory at [mem 0x74bd4000-0x74bf4033]
Sep 16 21:46:02 kernel: ACPI: Reserving SSDT table memory at [mem 0x74bce000-0x74bd3d2b]
Sep 16 21:46:02 kernel: ACPI: Reserving SSDT table memory at [mem 0x74bcb000-0x74bcdb21]
Sep 16 21:46:02 kernel: ACPI: Reserving SSDT table memory at [mem 0x74bc7000-0x74bca3d2]
Sep 16 21:46:02 kernel: ACPI: Reserving SSDT table memory at [mem 0x74bb9000-0x74bc639e]
Sep 16 21:46:02 kernel: ACPI: Reserving SSDT table memory at [mem 0x74bb8000-0x74bb8046]
Sep 16 21:46:02 kernel: ACPI: Reserving SSDT table memory at [mem 0x74bb7000-0x74bb777a]
Sep 16 21:46:02 kernel: ACPI: Reserving TPM2 table memory at [mem 0x74bb6000-0x74bb604b]
Sep 16 21:46:02 kernel: ACPI: Reserving MSDM table memory at [mem 0x74bb5000-0x74bb5054]
Sep 16 21:46:02 kernel: ACPI: Reserving SSDT table memory at [mem 0x74baf000-0x74bb4c21]
Sep 16 21:46:02 kernel: ACPI: Reserving SSDT table memory at [mem 0x74bae000-0x74baeb5b]
Sep 16 21:46:02 kernel: ACPI: Reserving LPIT table memory at [mem 0x74bad000-0x74bad0cb]
Sep 16 21:46:02 kernel: ACPI: Reserving WSMT table memory at [mem 0x74bac000-0x74bac027]
Sep 16 21:46:02 kernel: ACPI: Reserving SSDT table memory at [mem 0x74bab000-0x74babad8]
Sep 16 21:46:02 kernel: ACPI: Reserving SSDT table memory at [mem 0x74ba8000-0x74baa356]
Sep 16 21:46:02 kernel: ACPI: Reserving DBGP table memory at [mem 0x74ba7000-0x74ba7033]
Sep 16 21:46:02 kernel: ACPI: Reserving DBG2 table memory at [mem 0x74bfd000-0x74bfd053]
Sep 16 21:46:02 kernel: ACPI: Reserving NHLT table memory at [mem 0x74ba4000-0x74ba5b34]
Sep 16 21:46:02 kernel: ACPI: Reserving ECDT table memory at [mem 0x74ba3000-0x74ba3068]
Sep 16 21:46:02 kernel: ACPI: Reserving HPET table memory at [mem 0x74ba1000-0x74ba1037]
Sep 16 21:46:02 kernel: ACPI: Reserving APIC table memory at [mem 0x74ba0000-0x74ba01db]
Sep 16 21:46:02 kernel: ACPI: Reserving MCFG table memory at [mem 0x74b9f000-0x74b9f03b]
Sep 16 21:46:02 kernel: ACPI: Reserving SSDT table memory at [mem 0x74b24000-0x74b29f76]
Sep 16 21:46:02 kernel: ACPI: Reserving SSDT table memory at [mem 0x74b22000-0x74b23d0d]
Sep 16 21:46:02 kernel: ACPI: Reserving $H2O table memory at [mem 0x74b21000-0x74b2102b]
Sep 16 21:46:02 kernel: ACPI: Reserving DMAR table memory at [mem 0x74b20000-0x74b20087]
Sep 16 21:46:02 kernel: ACPI: Reserving SSDT table memory at [mem 0x74b1f000-0x74b1fb20]
Sep 16 21:46:02 kernel: ACPI: Reserving SSDT table memory at [mem 0x74b1b000-0x74b1eae9]
Sep 16 21:46:02 kernel: ACPI: Reserving SSDT table memory at [mem 0x74b17000-0x74b1a9d9]
Sep 16 21:46:02 kernel: ACPI: Reserving SSDT table memory at [mem 0x74b16000-0x74b160f7]
Sep 16 21:46:02 kernel: ACPI: Reserving FPDT table memory at [mem 0x74b15000-0x74b15043]
Sep 16 21:46:02 kernel: ACPI: Reserving PHAT table memory at [mem 0x74b13000-0x74b1381b]
Sep 16 21:46:02 kernel: ACPI: Reserving BGRT table memory at [mem 0x74b14000-0x74b14037]
Sep 16 21:46:02 kernel: No NUMA configuration found
Sep 16 21:46:02 kernel: Faking a node at [mem 0x0000000000000000-0x000000047fbfffff]
Sep 16 21:46:02 kernel: NODE_DATA(0) allocated [mem 0x47fbfb000-0x47fbfffff]
Sep 16 21:46:02 kernel: Zone ranges:
Sep 16 21:46:02 kernel:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
Sep 16 21:46:02 kernel:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
Sep 16 21:46:02 kernel:   Normal   [mem 0x0000000100000000-0x000000047fbfffff]
Sep 16 21:46:02 kernel:   Device   empty
Sep 16 21:46:02 kernel: Movable zone start for each node
Sep 16 21:46:02 kernel: Early memory node ranges
Sep 16 21:46:02 kernel:   node   0: [mem 0x0000000000001000-0x000000000009efff]
Sep 16 21:46:02 kernel:   node   0: [mem 0x0000000000100000-0x000000006d4dcfff]
Sep 16 21:46:02 kernel:   node   0: [mem 0x000000006dddd000-0x000000006fbfefff]
Sep 16 21:46:02 kernel:   node   0: [mem 0x0000000074bff000-0x0000000074bfffff]
Sep 16 21:46:02 kernel:   node   0: [mem 0x0000000100000000-0x000000047fbfffff]
Sep 16 21:46:02 kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000047fbfffff]
Sep 16 21:46:02 kernel: On node 0, zone DMA: 1 pages in unavailable ranges
Sep 16 21:46:02 kernel: On node 0, zone DMA: 97 pages in unavailable ranges
Sep 16 21:46:02 kernel: On node 0, zone DMA32: 2304 pages in unavailable ranges
Sep 16 21:46:02 kernel: On node 0, zone DMA32: 20480 pages in unavailable ranges
Sep 16 21:46:02 kernel: On node 0, zone Normal: 13312 pages in unavailable ranges
Sep 16 21:46:02 kernel: On node 0, zone Normal: 1024 pages in unavailable ranges
Sep 16 21:46:02 kernel: Reserving Intel graphics memory at [mem 0x7c800000-0x803fffff]
Sep 16 21:46:02 kernel: ACPI: PM-Timer IO Port: 0x1808
Sep 16 21:46:02 kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
Sep 16 21:46:02 kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
Sep 16 21:46:02 kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
Sep 16 21:46:02 kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
Sep 16 21:46:02 kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
Sep 16 21:46:02 kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
Sep 16 21:46:02 kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
Sep 16 21:46:02 kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
Sep 16 21:46:02 kernel: ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
Sep 16 21:46:02 kernel: ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
Sep 16 21:46:02 kernel: ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
Sep 16 21:46:02 kernel: ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
Sep 16 21:46:02 kernel: ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
Sep 16 21:46:02 kernel: ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
Sep 16 21:46:02 kernel: ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
Sep 16 21:46:02 kernel: ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
Sep 16 21:46:02 kernel: ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
Sep 16 21:46:02 kernel: ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
Sep 16 21:46:02 kernel: ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
Sep 16 21:46:02 kernel: ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
Sep 16 21:46:02 kernel: ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
Sep 16 21:46:02 kernel: ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
Sep 16 21:46:02 kernel: ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
Sep 16 21:46:02 kernel: ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
Sep 16 21:46:02 kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
Sep 16 21:46:02 kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Sep 16 21:46:02 kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Sep 16 21:46:02 kernel: ACPI: Using ACPI (MADT) for SMP configuration information
Sep 16 21:46:02 kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
Sep 16 21:46:02 kernel: e820: update [mem 0x6636f000-0x66476fff] usable ==> reserved
Sep 16 21:46:02 kernel: TSC deadline timer available
Sep 16 21:46:02 kernel: smpboot: Allowing 20 CPUs, 0 hotplug CPUs
Sep 16 21:46:02 kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
Sep 16 21:46:02 kernel: PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
Sep 16 21:46:02 kernel: PM: hibernation: Registered nosave memory: [mem 0x6636f000-0x66476fff]
Sep 16 21:46:02 kernel: PM: hibernation: Registered nosave memory: [mem 0x667b0000-0x667b0fff]
Sep 16 21:46:02 kernel: PM: hibernation: Registered nosave memory: [mem 0x6d4dd000-0x6dddcfff]
Sep 16 21:46:02 kernel: PM: hibernation: Registered nosave memory: [mem 0x6fbff000-0x71a4efff]
Sep 16 21:46:02 kernel: PM: hibernation: Registered nosave memory: [mem 0x71a4f000-0x749fefff]
Sep 16 21:46:02 kernel: PM: hibernation: Registered nosave memory: [mem 0x749ff000-0x74bfefff]
Sep 16 21:46:02 kernel: PM: hibernation: Registered nosave memory: [mem 0x74c00000-0x78ffffff]
Sep 16 21:46:02 kernel: PM: hibernation: Registered nosave memory: [mem 0x79000000-0x799fffff]
Sep 16 21:46:02 kernel: PM: hibernation: Registered nosave memory: [mem 0x79a00000-0x79bfffff]
Sep 16 21:46:02 kernel: PM: hibernation: Registered nosave memory: [mem 0x79c00000-0x79ffffff]
Sep 16 21:46:02 kernel: PM: hibernation: Registered nosave memory: [mem 0x7a000000-0x803fffff]
Sep 16 21:46:02 kernel: PM: hibernation: Registered nosave memory: [mem 0x80400000-0xfe00ffff]
Sep 16 21:46:02 kernel: PM: hibernation: Registered nosave memory: [mem 0xfe010000-0xfe010fff]
Sep 16 21:46:02 kernel: PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xfed1ffff]
Sep 16 21:46:02 kernel: PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xfed7ffff]
Sep 16 21:46:02 kernel: PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xffffffff]
Sep 16 21:46:02 kernel: [mem 0x80400000-0xfe00ffff] available for PCI devices
Sep 16 21:46:02 kernel: Booting paravirtualized kernel on bare hardware
Sep 16 21:46:02 kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
Sep 16 21:46:02 kernel: setup_percpu: NR_CPUS:320 nr_cpumask_bits:20 nr_cpu_ids:20 nr_node_ids:1
Sep 16 21:46:02 kernel: percpu: Embedded 64 pages/cpu s225280 r8192 d28672 u262144
Sep 16 21:46:02 kernel: pcpu-alloc: s225280 r8192 d28672 u262144 alloc=1*2097152
Sep 16 21:46:02 kernel: pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 
Sep 16 21:46:02 kernel: pcpu-alloc: [0] 16 17 18 19 -- -- -- -- 
Sep 16 21:46:02 kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux-lts root=UUID=2ec9a78e-0c5a-40b3-a1fb-cf4be8a42b06 rw printk.time=1 initcall_debug nvme_core.default_ps_max_latency_us=0 quiet loglevel=7 rd.udev.log_level=3 systemd.debug_shell no_console_suspend ignore_loglevel
Sep 16 21:46:02 kernel: Unknown kernel command line parameters "BOOT_IMAGE=/boot/vmlinuz-linux-lts", will be passed to user space.
Sep 16 21:46:02 kernel: printk: log_buf_len individual max cpu contribution: 4096 bytes
Sep 16 21:46:02 kernel: printk: log_buf_len total cpu_extra contributions: 77824 bytes
Sep 16 21:46:02 kernel: printk: log_buf_len min size: 131072 bytes
Sep 16 21:46:02 kernel: printk: log_buf_len: 262144 bytes
Sep 16 21:46:02 kernel: printk: early log buf free: 114536(87%)
Sep 16 21:46:02 kernel: Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
Sep 16 21:46:02 kernel: Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
Sep 16 21:46:02 kernel: Fallback order for Node 0: 0 
Sep 16 21:46:02 kernel: Built 1 zonelists, mobility grouping on.  Total pages: 4059716
Sep 16 21:46:02 kernel: Policy zone: Normal
Sep 16 21:46:02 kernel: mem auto-init: stack:all(zero), heap alloc:on, heap free:off
Sep 16 21:46:02 kernel: software IO TLB: area num 32.
Sep 16 21:46:02 kernel: Memory: 15940572K/16497272K available (16384K kernel code, 2137K rwdata, 13024K rodata, 3432K init, 3712K bss, 556444K reserved, 0K cma-reserved)
Sep 16 21:46:02 kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=20, Nodes=1
Sep 16 21:46:02 kernel: ftrace: allocating 48927 entries in 192 pages
Sep 16 21:46:02 kernel: ftrace: allocated 192 pages with 2 groups
Sep 16 21:46:02 kernel: Dynamic Preempt: voluntary
Sep 16 21:46:02 kernel: rcu: Preemptible hierarchical RCU implementation.
Sep 16 21:46:02 kernel: rcu:         RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=20.
Sep 16 21:46:02 kernel: rcu:         RCU priority boosting: priority 1 delay 500 ms.
Sep 16 21:46:02 kernel:         Trampoline variant of Tasks RCU enabled.
Sep 16 21:46:02 kernel:         Rude variant of Tasks RCU enabled.
Sep 16 21:46:02 kernel:         Tracing variant of Tasks RCU enabled.
Sep 16 21:46:02 kernel: rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
Sep 16 21:46:02 kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=20
Sep 16 21:46:02 kernel: NR_IRQS: 20736, nr_irqs: 2216, preallocated irqs: 16
Sep 16 21:46:02 kernel: rcu: srcu_init: Setting srcu_struct sizes based on contention.
Sep 16 21:46:02 kernel: kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
Sep 16 21:46:02 kernel: calling  con_init+0x0/0x290 @ 0
Sep 16 21:46:02 kernel: Console: colour dummy device 80x25
Sep 16 21:46:02 kernel: printk: console [tty0] enabled
Sep 16 21:46:02 kernel: initcall con_init+0x0/0x290 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  hvc_console_init+0x0/0x20 @ 0
Sep 16 21:46:02 kernel: initcall hvc_console_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  xen_cons_init+0x0/0x60 @ 0
Sep 16 21:46:02 kernel: initcall xen_cons_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  univ8250_console_init+0x0/0x40 @ 0
Sep 16 21:46:02 kernel: initcall univ8250_console_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: ACPI: Core revision 20230628
Sep 16 21:46:02 kernel: hpet: HPET dysfunctional in PC10. Force disabled.
Sep 16 21:46:02 kernel: APIC: Switch to symmetric I/O mode setup
Sep 16 21:46:02 kernel: DMAR: Host address width 39
Sep 16 21:46:02 kernel: DMAR: DRHD base: 0x000000fed90000 flags: 0x0
Sep 16 21:46:02 kernel: DMAR: dmar0: reg_base_addr fed90000 ver 4:0 cap 1c0000c40660462 ecap 29a00f0505e
Sep 16 21:46:02 kernel: DMAR: DRHD base: 0x000000fed91000 flags: 0x1
Sep 16 21:46:02 kernel: DMAR: dmar1: reg_base_addr fed91000 ver 5:0 cap d2008c40660462 ecap f050da
Sep 16 21:46:02 kernel: DMAR: RMRR base: 0x0000007c000000 end: 0x000000803fffff
Sep 16 21:46:02 kernel: DMAR-IR: IOAPIC id 2 under DRHD base  0xfed91000 IOMMU 1
Sep 16 21:46:02 kernel: DMAR-IR: HPET id 0 under DRHD base 0xfed91000
Sep 16 21:46:02 kernel: DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
Sep 16 21:46:02 kernel: DMAR-IR: Enabled IRQ remapping in x2apic mode
Sep 16 21:46:02 kernel: x2apic enabled
Sep 16 21:46:02 kernel: APIC: Switched APIC routing to: cluster x2apic
Sep 16 21:46:02 kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x26bef67878b, max_idle_ns: 440795293631 ns
Sep 16 21:46:02 kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 5378.00 BogoMIPS (lpj=8960000)
Sep 16 21:46:02 kernel: CPU0: Thermal monitoring enabled (TM1)
Sep 16 21:46:02 kernel: x86/cpu: User Mode Instruction Prevention (UMIP) activated
Sep 16 21:46:02 kernel: process: using mwait in idle threads
Sep 16 21:46:02 kernel: CET detected: Indirect Branch Tracking enabled
Sep 16 21:46:02 kernel: Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
Sep 16 21:46:02 kernel: Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
Sep 16 21:46:02 kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
Sep 16 21:46:02 kernel: Spectre V2 : Mitigation: Enhanced / Automatic IBRS
Sep 16 21:46:02 kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
Sep 16 21:46:02 kernel: Spectre V2 : Spectre v2 / PBRSB-eIBRS: Retire a single CALL on VMEXIT
Sep 16 21:46:02 kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
Sep 16 21:46:02 kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
Sep 16 21:46:02 kernel: Register File Data Sampling: Mitigation: Clear Register File
Sep 16 21:46:02 kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Sep 16 21:46:02 kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Sep 16 21:46:02 kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Sep 16 21:46:02 kernel: x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
Sep 16 21:46:02 kernel: x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
Sep 16 21:46:02 kernel: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
Sep 16 21:46:02 kernel: x86/fpu: xstate_offset[9]:  832, xstate_sizes[9]:    8
Sep 16 21:46:02 kernel: x86/fpu: xstate_offset[11]:  840, xstate_sizes[11]:   16
Sep 16 21:46:02 kernel: x86/fpu: Enabled xstate features 0xa07, context size is 856 bytes, using 'compacted' format.
Sep 16 21:46:02 kernel: Freeing SMP alternatives memory: 40K
Sep 16 21:46:02 kernel: pid_max: default: 32768 minimum: 301
Sep 16 21:46:02 kernel: LSM: initializing lsm=capability,landlock,lockdown,yama,bpf,integrity
Sep 16 21:46:02 kernel: landlock: Up and running.
Sep 16 21:46:02 kernel: Yama: becoming mindful.
Sep 16 21:46:02 kernel: LSM support for eBPF active
Sep 16 21:46:02 kernel: Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
Sep 16 21:46:02 kernel: Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
Sep 16 21:46:02 kernel: smpboot: CPU0: 12th Gen Intel(R) Core(TM) i7-12700H (family: 0x6, model: 0x9a, stepping: 0x3)
Sep 16 21:46:02 kernel: RCU Tasks: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1.
Sep 16 21:46:02 kernel: RCU Tasks Rude: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1.
Sep 16 21:46:02 kernel: RCU Tasks Trace: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1.
Sep 16 21:46:02 kernel: calling  init_hw_perf_events+0x0/0x6e0 @ 1
Sep 16 21:46:02 kernel: Performance Events: XSAVE Architectural LBR, PEBS fmt4+-baseline,  AnyThread deprecated, Alderlake Hybrid events, 32-deep LBR, full-width counters, Intel PMU driver.
Sep 16 21:46:02 kernel: core: cpu_core PMU driver: 
Sep 16 21:46:02 kernel: ... version:                5
Sep 16 21:46:02 kernel: ... bit width:              48
Sep 16 21:46:02 kernel: ... generic registers:      8
Sep 16 21:46:02 kernel: ... value mask:             0000ffffffffffff
Sep 16 21:46:02 kernel: ... max period:             00007fffffffffff
Sep 16 21:46:02 kernel: ... fixed-purpose events:   4
Sep 16 21:46:02 kernel: ... event mask:             0001000f000000ff
Sep 16 21:46:02 kernel: initcall init_hw_perf_events+0x0/0x6e0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  do_init_real_mode+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall do_init_real_mode+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_sigframe_size+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: signal: max sigframe size: 3632
Sep 16 21:46:02 kernel: initcall init_sigframe_size+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  trace_init_perf_perm_irq_work_exit+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall trace_init_perf_perm_irq_work_exit+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  cache_ap_register+0x0/0x80 @ 1
Sep 16 21:46:02 kernel: initcall cache_ap_register+0x0/0x80 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  bp_init_aperfmperf+0x0/0x310 @ 1
Sep 16 21:46:02 kernel: Estimated ratio of average max frequency by base frequency (times 1024): 1668
Sep 16 21:46:02 kernel: initcall bp_init_aperfmperf+0x0/0x310 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  smp_init_primary_thread_mask+0x0/0xe0 @ 1
Sep 16 21:46:02 kernel: initcall smp_init_primary_thread_mask+0x0/0xe0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  register_nmi_cpu_backtrace_handler+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall register_nmi_cpu_backtrace_handler+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  kvm_setup_vsyscall_timeinfo+0x0/0x160 @ 1
Sep 16 21:46:02 kernel: initcall kvm_setup_vsyscall_timeinfo+0x0/0x160 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  spawn_ksoftirqd+0x0/0x50 @ 1
Sep 16 21:46:02 kernel: initcall spawn_ksoftirqd+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_signal_sysctls+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall init_signal_sysctls+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_umh_sysctls+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall init_umh_sysctls+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  migration_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall migration_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  srcu_bootup_announce+0x0/0x80 @ 1
Sep 16 21:46:02 kernel: rcu: Hierarchical SRCU implementation.
Sep 16 21:46:02 kernel: rcu:         Max phase no-delay instances is 1000.
Sep 16 21:46:02 kernel: initcall srcu_bootup_announce+0x0/0x80 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  rcu_spawn_gp_kthread+0x0/0x1e0 @ 1
Sep 16 21:46:02 kernel: initcall rcu_spawn_gp_kthread+0x0/0x1e0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  check_cpu_stall_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall check_cpu_stall_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  rcu_sysrq_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall rcu_sysrq_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  trace_init_flags_sys_enter+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall trace_init_flags_sys_enter+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  trace_init_flags_sys_exit+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall trace_init_flags_sys_exit+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  cpu_stop_init+0x0/0xb0 @ 1
Sep 16 21:46:02 kernel: initcall cpu_stop_init+0x0/0xb0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_kprobes+0x0/0x1c0 @ 1
Sep 16 21:46:02 kernel: initcall init_kprobes+0x0/0x1c0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_trace_printk+0x0/0x10 @ 1
Sep 16 21:46:02 kernel: initcall init_trace_printk+0x0/0x10 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  event_trace_enable_again+0x0/0x50 @ 1
Sep 16 21:46:02 kernel: initcall event_trace_enable_again+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  irq_work_init_threads+0x0/0x10 @ 1
Sep 16 21:46:02 kernel: initcall irq_work_init_threads+0x0/0x10 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  static_call_init+0x0/0xb0 @ 1
Sep 16 21:46:02 kernel: initcall static_call_init+0x0/0xb0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  jump_label_init_module+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall jump_label_init_module+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_zero_pfn+0x0/0x50 @ 1
Sep 16 21:46:02 kernel: initcall init_zero_pfn+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_fs_inode_sysctls+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall init_fs_inode_sysctls+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_fs_locks_sysctls+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall init_fs_locks_sysctls+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_fs_sysctls+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall init_fs_sysctls+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_security_keys_sysctls+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall init_security_keys_sysctls+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  dynamic_debug_init+0x0/0x300 @ 1
Sep 16 21:46:02 kernel: initcall dynamic_debug_init+0x0/0x300 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  unpopulated_init+0x0/0x60 @ 1
Sep 16 21:46:02 kernel: initcall unpopulated_init+0x0/0x60 returned -19 after 0 usecs
Sep 16 21:46:02 kernel: calling  efi_memreserve_root_init+0x0/0x60 @ 1
Sep 16 21:46:02 kernel: initcall efi_memreserve_root_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  efi_earlycon_remap_fb+0x0/0x70 @ 1
Sep 16 21:46:02 kernel: initcall efi_earlycon_remap_fb+0x0/0x70 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  idle_inject_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall idle_inject_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
Sep 16 21:46:02 kernel: smp: Bringing up secondary CPUs ...
Sep 16 21:46:02 kernel: smpboot: x86: Booting SMP configuration:
Sep 16 21:46:02 kernel: .... node  #0, CPUs:        #2  #4  #6  #8 #10 #12 #13 #14 #15 #16 #17 #18 #19
Sep 16 21:46:02 kernel: core: cpu_atom PMU driver: PEBS-via-PT 
Sep 16 21:46:02 kernel: ... version:                5
Sep 16 21:46:02 kernel: ... bit width:              48
Sep 16 21:46:02 kernel: ... generic registers:      6
Sep 16 21:46:02 kernel: ... value mask:             0000ffffffffffff
Sep 16 21:46:02 kernel: ... max period:             00007fffffffffff
Sep 16 21:46:02 kernel: ... fixed-purpose events:   3
Sep 16 21:46:02 kernel: ... event mask:             000000070000003f
Sep 16 21:46:02 kernel:   #1  #3  #5  #7  #9 #11
Sep 16 21:46:02 kernel: smp: Brought up 1 node, 20 CPUs
Sep 16 21:46:02 kernel: smpboot: Max logical packages: 1
Sep 16 21:46:02 kernel: smpboot: Total of 20 processors activated (107563.00 BogoMIPS)
Sep 16 21:46:02 kernel: devtmpfs: initialized
Sep 16 21:46:02 kernel: x86/mm: Memory block size: 128MB
Sep 16 21:46:02 kernel: calling  bpf_jit_charge_init+0x0/0x50 @ 1
Sep 16 21:46:02 kernel: initcall bpf_jit_charge_init+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  ipc_ns_init+0x0/0x50 @ 1
Sep 16 21:46:02 kernel: initcall ipc_ns_init+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_mmap_min_addr+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall init_mmap_min_addr+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  pci_realloc_setup_params+0x0/0x70 @ 1
Sep 16 21:46:02 kernel: initcall pci_realloc_setup_params+0x0/0x70 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  inet_frag_wq_init+0x0/0x50 @ 1
Sep 16 21:46:02 kernel: initcall inet_frag_wq_init+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  xen_pvh_gnttab_setup+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall xen_pvh_gnttab_setup+0x0/0x40 returned -19 after 0 usecs
Sep 16 21:46:02 kernel: calling  e820__register_nvs_regions+0x0/0x70 @ 1
Sep 16 21:46:02 kernel: ACPI: PM: Registering ACPI NVS region [mem 0x71a4f000-0x749fefff] (50003968 bytes)
Sep 16 21:46:02 kernel: initcall e820__register_nvs_regions+0x0/0x70 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  cpufreq_register_tsc_scaling+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall cpufreq_register_tsc_scaling+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  reboot_init+0x0/0x50 @ 1
Sep 16 21:46:02 kernel: initcall reboot_init+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_lapic_sysfs+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall init_lapic_sysfs+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  alloc_frozen_cpus+0x0/0x10 @ 1
Sep 16 21:46:02 kernel: initcall alloc_frozen_cpus+0x0/0x10 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  cpu_hotplug_pm_sync_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall cpu_hotplug_pm_sync_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  wq_sysfs_init+0x0/0x60 @ 1
Sep 16 21:46:02 kernel: initcall wq_sysfs_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  ksysfs_init+0x0/0xb0 @ 1
Sep 16 21:46:02 kernel: initcall ksysfs_init+0x0/0xb0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  schedutil_gov_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall schedutil_gov_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  pm_init+0x0/0x80 @ 1
Sep 16 21:46:02 kernel: initcall pm_init+0x0/0x80 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  pm_disk_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall pm_disk_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  swsusp_header_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall swsusp_header_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  rcu_set_runtime_mode+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall rcu_set_runtime_mode+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_jiffies_clocksource+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
Sep 16 21:46:02 kernel: initcall init_jiffies_clocksource+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  futex_init+0x0/0x100 @ 1
Sep 16 21:46:02 kernel: futex hash table entries: 8192 (order: 7, 524288 bytes, linear)
Sep 16 21:46:02 kernel: initcall futex_init+0x0/0x100 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  cgroup_wq_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall cgroup_wq_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  cgroup1_wq_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall cgroup1_wq_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  ftrace_mod_cmd_init+0x0/0x10 @ 1
Sep 16 21:46:02 kernel: initcall ftrace_mod_cmd_init+0x0/0x10 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_wakeup_tracer+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall init_wakeup_tracer+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_graph_trace+0x0/0x70 @ 1
Sep 16 21:46:02 kernel: initcall init_graph_trace+0x0/0x70 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  trace_events_eprobe_init_early+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall trace_events_eprobe_init_early+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  trace_events_synth_init_early+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall trace_events_synth_init_early+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_kprobe_trace_early+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall init_kprobe_trace_early+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_fprobe_trace_early+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall init_fprobe_trace_early+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  bpf_offload_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall bpf_offload_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  memory_failure_init+0x0/0xd0 @ 1
Sep 16 21:46:02 kernel: initcall memory_failure_init+0x0/0xd0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  cma_init_reserved_areas+0x0/0x3d0 @ 1
Sep 16 21:46:02 kernel: initcall cma_init_reserved_areas+0x0/0x3d0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  fsnotify_init+0x0/0x60 @ 1
Sep 16 21:46:02 kernel: initcall fsnotify_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  filelock_init+0x0/0xb0 @ 1
Sep 16 21:46:02 kernel: initcall filelock_init+0x0/0xb0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_misc_binfmt+0x0/0x50 @ 1
Sep 16 21:46:02 kernel: initcall init_misc_binfmt+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_script_binfmt+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall init_script_binfmt+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_elf_binfmt+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall init_elf_binfmt+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_compat_elf_binfmt+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall init_compat_elf_binfmt+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  configfs_init+0x0/0xa0 @ 1
Sep 16 21:46:02 kernel: initcall configfs_init+0x0/0xa0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  debugfs_init+0x0/0x90 @ 1
Sep 16 21:46:02 kernel: initcall debugfs_init+0x0/0x90 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  tracefs_init+0x0/0x80 @ 1
Sep 16 21:46:02 kernel: initcall tracefs_init+0x0/0x80 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  securityfs_init+0x0/0x80 @ 1
Sep 16 21:46:02 kernel: initcall securityfs_init+0x0/0x80 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  lockdown_secfs_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall lockdown_secfs_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  pinctrl_init+0x0/0xc0 @ 1
Sep 16 21:46:02 kernel: pinctrl core: initialized pinctrl subsystem
Sep 16 21:46:02 kernel: initcall pinctrl_init+0x0/0xc0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  gpiolib_dev_init+0x0/0x110 @ 1
Sep 16 21:46:02 kernel: initcall gpiolib_dev_init+0x0/0x110 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  virtio_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall virtio_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  regulator_init+0x0/0x130 @ 1
Sep 16 21:46:02 kernel: initcall regulator_init+0x0/0x130 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  iommu_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall iommu_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  component_debug_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall component_debug_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  early_resume_init+0x0/0x120 @ 1
Sep 16 21:46:02 kernel: PM: RTC time: 19:45:58, date: 2024-09-16
Sep 16 21:46:02 kernel: initcall early_resume_init+0x0/0x120 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  soc_bus_register+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall soc_bus_register+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  opp_debug_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall opp_debug_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  cpufreq_core_init+0x0/0xd0 @ 1
Sep 16 21:46:02 kernel: initcall cpufreq_core_init+0x0/0xd0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  cpufreq_gov_performance_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall cpufreq_gov_performance_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  cpufreq_gov_powersave_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall cpufreq_gov_powersave_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  cpufreq_gov_userspace_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall cpufreq_gov_userspace_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  CPU_FREQ_GOV_ONDEMAND_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall CPU_FREQ_GOV_ONDEMAND_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  CPU_FREQ_GOV_CONSERVATIVE_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall CPU_FREQ_GOV_CONSERVATIVE_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  cpuidle_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall cpuidle_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  capsule_reboot_register+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall capsule_reboot_register+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  sock_init+0x0/0xb0 @ 1
Sep 16 21:46:02 kernel: initcall sock_init+0x0/0xb0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  net_inuse_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall net_inuse_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  net_defaults_init+0x0/0x50 @ 1
Sep 16 21:46:02 kernel: initcall net_defaults_init+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_default_flow_dissectors+0x0/0x60 @ 1
Sep 16 21:46:02 kernel: initcall init_default_flow_dissectors+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  netpoll_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall netpoll_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  netlink_proto_init+0x0/0x200 @ 1
Sep 16 21:46:02 kernel: NET: Registered PF_NETLINK/PF_ROUTE protocol family
Sep 16 21:46:02 kernel: initcall netlink_proto_init+0x0/0x200 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  genl_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall genl_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  bsp_pm_check_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall bsp_pm_check_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  trace_boot_init+0x0/0xf0 @ 1
Sep 16 21:46:02 kernel: initcall trace_boot_init+0x0/0xf0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  __gnttab_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall __gnttab_init+0x0/0x40 returned -19 after 0 usecs
Sep 16 21:46:02 kernel: calling  pi_init+0x0/0x70 @ 1
Sep 16 21:46:02 kernel: initcall pi_init+0x0/0x70 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  irq_sysfs_init+0x0/0xe0 @ 1
Sep 16 21:46:02 kernel: initcall irq_sysfs_init+0x0/0xe0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  dma_atomic_pool_init+0x0/0x160 @ 1
Sep 16 21:46:02 kernel: probe of reg-dummy returned 0 after 0 usecs
Sep 16 21:46:02 kernel: DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations
Sep 16 21:46:02 kernel: DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
Sep 16 21:46:02 kernel: DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
Sep 16 21:46:02 kernel: initcall dma_atomic_pool_init+0x0/0x160 returned 0 after 3333 usecs
Sep 16 21:46:02 kernel: calling  audit_init+0x0/0x190 @ 1
Sep 16 21:46:02 kernel: audit: initializing netlink subsys (disabled)
Sep 16 21:46:02 kernel: initcall audit_init+0x0/0x190 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  release_early_probes+0x0/0x50 @ 1
Sep 16 21:46:02 kernel: initcall release_early_probes+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  bdi_class_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall bdi_class_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  mm_sysfs_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall mm_sysfs_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: audit: type=2000 audit(1726515958.023:1): state=initialized audit_enabled=0 res=1
Sep 16 21:46:02 kernel: calling  init_per_zone_wmark_min+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall init_per_zone_wmark_min+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  mpi_init+0x0/0x80 @ 1
Sep 16 21:46:02 kernel: initcall mpi_init+0x0/0x80 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  acpi_gpio_setup_params+0x0/0xf0 @ 1
Sep 16 21:46:02 kernel: initcall acpi_gpio_setup_params+0x0/0xf0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  pcibus_class_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall pcibus_class_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  pci_driver_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall pci_driver_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  backlight_class_init+0x0/0xb0 @ 1
Sep 16 21:46:02 kernel: initcall backlight_class_init+0x0/0xb0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  xenbus_init+0x0/0x4a0 @ 1
Sep 16 21:46:02 kernel: initcall xenbus_init+0x0/0x4a0 returned -19 after 0 usecs
Sep 16 21:46:02 kernel: calling  tty_class_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall tty_class_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  vtconsole_class_init+0x0/0xf0 @ 1
Sep 16 21:46:02 kernel: initcall vtconsole_class_init+0x0/0xf0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  serdev_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall serdev_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  iommu_dev_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall iommu_dev_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  mipi_dsi_bus_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall mipi_dsi_bus_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  devlink_class_init+0x0/0x60 @ 1
Sep 16 21:46:02 kernel: initcall devlink_class_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  software_node_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall software_node_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  wakeup_sources_debugfs_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall wakeup_sources_debugfs_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  wakeup_sources_sysfs_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall wakeup_sources_sysfs_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  isa_bus_init+0x0/0x60 @ 1
Sep 16 21:46:02 kernel: initcall isa_bus_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  regmap_initcall+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall regmap_initcall+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  syscon_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall syscon_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  spi_init+0x0/0xc0 @ 1
Sep 16 21:46:02 kernel: initcall spi_init+0x0/0xc0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  i2c_init+0x0/0xe0 @ 1
Sep 16 21:46:02 kernel: initcall i2c_init+0x0/0xe0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  thermal_init+0x0/0x170 @ 1
Sep 16 21:46:02 kernel: thermal_sys: Registered thermal governor 'fair_share'
Sep 16 21:46:02 kernel: thermal_sys: Registered thermal governor 'bang_bang'
Sep 16 21:46:02 kernel: thermal_sys: Registered thermal governor 'step_wise'
Sep 16 21:46:02 kernel: thermal_sys: Registered thermal governor 'user_space'
Sep 16 21:46:02 kernel: thermal_sys: Registered thermal governor 'power_allocator'
Sep 16 21:46:02 kernel: initcall thermal_init+0x0/0x170 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_ladder+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: cpuidle: using governor ladder
Sep 16 21:46:02 kernel: initcall init_ladder+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_menu+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: cpuidle: using governor menu
Sep 16 21:46:02 kernel: initcall init_menu+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  teo_governor_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall teo_governor_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_haltpoll+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall init_haltpoll+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  pcc_init+0x0/0xb0 @ 1
Sep 16 21:46:02 kernel: initcall pcc_init+0x0/0xb0 returned -19 after 0 usecs
Sep 16 21:46:02 kernel: calling  amd_postcore_init+0x0/0x130 @ 1
Sep 16 21:46:02 kernel: initcall amd_postcore_init+0x0/0x130 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  kobject_uevent_init+0x0/0x10 @ 1
Sep 16 21:46:02 kernel: initcall kobject_uevent_init+0x0/0x10 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  bts_init+0x0/0xd0 @ 1
Sep 16 21:46:02 kernel: initcall bts_init+0x0/0xd0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  pt_init+0x0/0x3f0 @ 1
Sep 16 21:46:02 kernel: initcall pt_init+0x0/0x3f0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  boot_params_ksysfs_init+0x0/0x310 @ 1
Sep 16 21:46:02 kernel: initcall boot_params_ksysfs_init+0x0/0x310 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  sbf_init+0x0/0x130 @ 1
Sep 16 21:46:02 kernel: initcall sbf_init+0x0/0x130 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  arch_kdebugfs_init+0x0/0x230 @ 1
Sep 16 21:46:02 kernel: initcall arch_kdebugfs_init+0x0/0x230 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  xfd_update_static_branch+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall xfd_update_static_branch+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  intel_pconfig_init+0x0/0xf0 @ 1
Sep 16 21:46:02 kernel: initcall intel_pconfig_init+0x0/0xf0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  mtrr_if_init+0x0/0x70 @ 1
Sep 16 21:46:02 kernel: initcall mtrr_if_init+0x0/0x70 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  activate_jump_labels+0x0/0x50 @ 1
Sep 16 21:46:02 kernel: initcall activate_jump_labels+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_s4_sigcheck+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall init_s4_sigcheck+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  ffh_cstate_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall ffh_cstate_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  kvm_alloc_cpumask+0x0/0xc0 @ 1
Sep 16 21:46:02 kernel: initcall kvm_alloc_cpumask+0x0/0xc0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  activate_jump_labels+0x0/0x50 @ 1
Sep 16 21:46:02 kernel: initcall activate_jump_labels+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  report_cpuid_table+0x0/0xa0 @ 1
Sep 16 21:46:02 kernel: initcall report_cpuid_table+0x0/0xa0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  gigantic_pages_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall gigantic_pages_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  kcmp_cookies_init+0x0/0x50 @ 1
Sep 16 21:46:02 kernel: initcall kcmp_cookies_init+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  cryptomgr_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall cryptomgr_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  acpi_pci_init+0x0/0x60 @ 1
Sep 16 21:46:02 kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Sep 16 21:46:02 kernel: initcall acpi_pci_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  dma_channel_table_init+0x0/0xf0 @ 1
Sep 16 21:46:02 kernel: initcall dma_channel_table_init+0x0/0xf0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  dma_bus_init+0x0/0x110 @ 1
Sep 16 21:46:02 kernel: initcall dma_bus_init+0x0/0x110 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  register_xen_pci_notifier+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall register_xen_pci_notifier+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  xen_pcpu_init+0x0/0xd0 @ 1
Sep 16 21:46:02 kernel: initcall xen_pcpu_init+0x0/0xd0 returned -19 after 0 usecs
Sep 16 21:46:02 kernel: calling  serial_base_init+0x0/0x80 @ 1
Sep 16 21:46:02 kernel: initcall serial_base_init+0x0/0x80 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  iommu_dma_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall iommu_dma_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  dmi_id_init+0x0/0x3e0 @ 1
Sep 16 21:46:02 kernel: initcall dmi_id_init+0x0/0x3e0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  ts_dmi_init+0x0/0x80 @ 1
Sep 16 21:46:02 kernel: initcall ts_dmi_init+0x0/0x80 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  pci_arch_init+0x0/0x90 @ 1
Sep 16 21:46:02 kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xc0000000-0xcfffffff] (base 0xc0000000)
Sep 16 21:46:02 kernel: PCI: Using configuration type 1 for base access
Sep 16 21:46:02 kernel: initcall pci_arch_init+0x0/0x90 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_vdso_image_64+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall init_vdso_image_64+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_vdso_image_32+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall init_vdso_image_32+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  fixup_ht_bug+0x0/0x120 @ 1
Sep 16 21:46:02 kernel: initcall fixup_ht_bug+0x0/0x120 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  topology_init+0x0/0x70 @ 1
Sep 16 21:46:02 kernel: initcall topology_init+0x0/0x70 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  intel_epb_init+0x0/0xa0 @ 1
Sep 16 21:46:02 kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
Sep 16 21:46:02 kernel: initcall intel_epb_init+0x0/0xa0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  mtrr_init_finalize+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall mtrr_init_finalize+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  blake2s_mod_init+0x0/0x80 @ 1
Sep 16 21:46:02 kernel: initcall blake2s_mod_init+0x0/0x80 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  uid_cache_init+0x0/0xc0 @ 1
Sep 16 21:46:02 kernel: initcall uid_cache_init+0x0/0xc0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  param_sysfs_init+0x0/0x60 @ 1
Sep 16 21:46:02 kernel: initcall param_sysfs_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  user_namespace_sysctl_init+0x0/0xd0 @ 1
Sep 16 21:46:02 kernel: initcall user_namespace_sysctl_init+0x0/0xd0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  proc_schedstat_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall proc_schedstat_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  pm_sysrq_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall pm_sysrq_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  create_proc_profile+0x0/0xe0 @ 1
Sep 16 21:46:02 kernel: initcall create_proc_profile+0x0/0xe0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  crash_save_vmcoreinfo_init+0x0/0x710 @ 1
Sep 16 21:46:02 kernel: initcall crash_save_vmcoreinfo_init+0x0/0x710 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  crash_notes_memory_init+0x0/0x50 @ 1
Sep 16 21:46:02 kernel: initcall crash_notes_memory_init+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  crash_hotplug_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall crash_hotplug_init+0x0/0x40 returned 72 after 0 usecs
Sep 16 21:46:02 kernel: calling  cgroup_sysfs_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall cgroup_sysfs_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  user_namespaces_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall user_namespaces_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_optprobes+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
Sep 16 21:46:02 kernel: initcall init_optprobes+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  hung_task_init+0x0/0x90 @ 1
Sep 16 21:46:02 kernel: initcall hung_task_init+0x0/0x90 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  ftrace_check_for_weak_functions+0x0/0x70 @ 1
Sep 16 21:46:02 kernel: initcall ftrace_check_for_weak_functions+0x0/0x70 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  trace_eval_init+0x0/0xb0 @ 1
Sep 16 21:46:02 kernel: initcall trace_eval_init+0x0/0xb0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  send_signal_irq_work_init+0x0/0x80 @ 1
Sep 16 21:46:02 kernel: initcall send_signal_irq_work_init+0x0/0x80 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  dev_map_init+0x0/0x60 @ 1
Sep 16 21:46:02 kernel: initcall dev_map_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  cpu_map_init+0x0/0x60 @ 1
Sep 16 21:46:02 kernel: initcall cpu_map_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  netns_bpf_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall netns_bpf_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  btf_vmlinux_init+0x0/0x70 @ 1
Sep 16 21:46:02 kernel: initcall btf_vmlinux_init+0x0/0x70 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  oom_init+0x0/0x60 @ 1
Sep 16 21:46:02 kernel: initcall oom_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  default_bdi_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall default_bdi_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  cgwb_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall cgwb_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  percpu_enable_async+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall percpu_enable_async+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  kcompactd_init+0x0/0xd0 @ 1
Sep 16 21:46:02 kernel: initcall kcompactd_init+0x0/0xd0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_user_reserve+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall init_user_reserve+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_admin_reserve+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall init_admin_reserve+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_reserve_notifier+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall init_reserve_notifier+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  swap_init_sysfs+0x0/0x80 @ 1
Sep 16 21:46:02 kernel: initcall swap_init_sysfs+0x0/0x80 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  swapfile_init+0x0/0xf0 @ 1
Sep 16 21:46:02 kernel: initcall swapfile_init+0x0/0xf0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  hugetlb_init+0x0/0x760 @ 1
Sep 16 21:46:02 kernel: HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
Sep 16 21:46:02 kernel: HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
Sep 16 21:46:02 kernel: HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
Sep 16 21:46:02 kernel: HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
Sep 16 21:46:02 kernel: initcall hugetlb_init+0x0/0x760 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  ksm_init+0x0/0x1c0 @ 1
Sep 16 21:46:02 kernel: initcall ksm_init+0x0/0x1c0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  memory_tier_init+0x0/0x170 @ 1
Sep 16 21:46:02 kernel: initcall memory_tier_init+0x0/0x170 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  numa_init_sysfs+0x0/0x80 @ 1
Sep 16 21:46:02 kernel: initcall numa_init_sysfs+0x0/0x80 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  hugepage_init+0x0/0x180 @ 1
Sep 16 21:46:02 kernel: initcall hugepage_init+0x0/0x180 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  mem_cgroup_init+0x0/0x140 @ 1
Sep 16 21:46:02 kernel: initcall mem_cgroup_init+0x0/0x140 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  mem_cgroup_swap_init+0x0/0x90 @ 1
Sep 16 21:46:02 kernel: initcall mem_cgroup_swap_init+0x0/0x90 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  cma_sysfs_init+0x0/0x140 @ 1
Sep 16 21:46:02 kernel: initcall cma_sysfs_init+0x0/0x140 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  page_idle_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall page_idle_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  damon_init+0x0/0x60 @ 1
Sep 16 21:46:02 kernel: initcall damon_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  damon_va_initcall+0x0/0x130 @ 1
Sep 16 21:46:02 kernel: initcall damon_va_initcall+0x0/0x130 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  damon_pa_initcall+0x0/0xa0 @ 1
Sep 16 21:46:02 kernel: initcall damon_pa_initcall+0x0/0xa0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  damon_sysfs_init+0x0/0x100 @ 1
Sep 16 21:46:02 kernel: initcall damon_sysfs_init+0x0/0x100 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  sel_ib_pkey_init+0x0/0x60 @ 1
Sep 16 21:46:02 kernel: initcall sel_ib_pkey_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  dh_init+0x0/0x60 @ 1
Sep 16 21:46:02 kernel: initcall dh_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  rsa_init+0x0/0x50 @ 1
Sep 16 21:46:02 kernel: initcall rsa_init+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  ecdsa_init+0x0/0x90 @ 1
Sep 16 21:46:02 kernel: initcall ecdsa_init+0x0/0x90 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  hmac_module_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall hmac_module_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  md5_mod_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall md5_mod_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  sha1_generic_mod_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall sha1_generic_mod_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  sha256_generic_mod_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall sha256_generic_mod_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  sha512_generic_mod_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall sha512_generic_mod_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  sha3_generic_mod_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall sha3_generic_mod_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  crypto_ctr_module_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall crypto_ctr_module_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  aes_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall aes_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  crct10dif_mod_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall crct10dif_mod_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  drbg_init+0x0/0x90 @ 1
Sep 16 21:46:02 kernel: initcall drbg_init+0x0/0x90 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  zstd_mod_init+0x0/0x60 @ 1
Sep 16 21:46:02 kernel: initcall zstd_mod_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_bio+0x0/0xc0 @ 1
Sep 16 21:46:02 kernel: initcall init_bio+0x0/0xc0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  blk_ioc_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall blk_ioc_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  blk_mq_init+0x0/0x120 @ 1
Sep 16 21:46:02 kernel: initcall blk_mq_init+0x0/0x120 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  genhd_device_init+0x0/0x60 @ 1
Sep 16 21:46:02 kernel: initcall genhd_device_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  blkcg_punt_bio_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall blkcg_punt_bio_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  bio_crypt_ctx_init+0x0/0x90 @ 1
Sep 16 21:46:02 kernel: initcall bio_crypt_ctx_init+0x0/0x90 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  blk_crypto_sysfs_init+0x0/0x60 @ 1
Sep 16 21:46:02 kernel: initcall blk_crypto_sysfs_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  io_wq_init+0x0/0x50 @ 1
Sep 16 21:46:02 kernel: initcall io_wq_init+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  sg_pool_init+0x0/0xc0 @ 1
Sep 16 21:46:02 kernel: initcall sg_pool_init+0x0/0xc0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  irq_poll_setup+0x0/0x80 @ 1
Sep 16 21:46:02 kernel: initcall irq_poll_setup+0x0/0x80 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  sx150x_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall sx150x_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  byt_gpio_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall byt_gpio_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  chv_pinctrl_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall chv_pinctrl_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  lp_gpio_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall lp_gpio_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  bxt_pinctrl_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall bxt_pinctrl_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  cdf_pinctrl_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall cdf_pinctrl_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  dnv_pinctrl_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall dnv_pinctrl_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  glk_pinctrl_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall glk_pinctrl_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  spt_pinctrl_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall spt_pinctrl_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  gpiolib_debugfs_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall gpiolib_debugfs_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  palmas_gpio_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall palmas_gpio_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  rc5t583_gpio_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall rc5t583_gpio_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  tps6586x_gpio_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall tps6586x_gpio_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  tps65910_gpio_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall tps65910_gpio_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  pwm_debugfs_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall pwm_debugfs_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  pwm_sysfs_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall pwm_sysfs_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  pci_slot_init+0x0/0x50 @ 1
Sep 16 21:46:02 kernel: initcall pci_slot_init+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  fbmem_init+0x0/0x90 @ 1
Sep 16 21:46:02 kernel: fbcon: Taking over console
Sep 16 21:46:02 kernel: initcall fbmem_init+0x0/0x90 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  scan_for_dmi_ipmi+0x0/0x340 @ 1
Sep 16 21:46:02 kernel: initcall scan_for_dmi_ipmi+0x0/0x340 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  acpi_init+0x0/0x560 @ 1
Sep 16 21:46:02 kernel: ACPI: Added _OSI(Module Device)
Sep 16 21:46:02 kernel: ACPI: Added _OSI(Processor Device)
Sep 16 21:46:02 kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Sep 16 21:46:02 kernel: ACPI: Added _OSI(Processor Aggregator Device)
Sep 16 21:46:02 kernel: ACPI: 19 ACPI AML tables successfully acquired and loaded
Sep 16 21:46:02 kernel: ACPI: EC: EC started
Sep 16 21:46:02 kernel: ACPI: EC: interrupt blocked
Sep 16 21:46:02 kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
Sep 16 21:46:02 kernel: ACPI: EC: Boot ECDT EC used to handle transactions
Sep 16 21:46:02 kernel: ACPI: Dynamic OEM Table Load:
Sep 16 21:46:02 kernel: ACPI: SSDT 0xFFFF88810147E400 000394 (v02 PmRef  Cpu0Cst  00003001 INTL 20200717)
Sep 16 21:46:02 kernel: ACPI: Dynamic OEM Table Load:
Sep 16 21:46:02 kernel: ACPI: SSDT 0xFFFF888101474000 000626 (v02 PmRef  Cpu0Ist  00003000 INTL 20200717)
Sep 16 21:46:02 kernel: ACPI: Dynamic OEM Table Load:
Sep 16 21:46:02 kernel: ACPI: SSDT 0xFFFF888102E97200 0001AB (v02 PmRef  Cpu0Psd  00003000 INTL 20200717)
Sep 16 21:46:02 kernel: ACPI: Dynamic OEM Table Load:
Sep 16 21:46:02 kernel: ACPI: SSDT 0xFFFF888101475800 0004BA (v02 PmRef  Cpu0Hwp  00003000 INTL 20200717)
Sep 16 21:46:02 kernel: ACPI: Dynamic OEM Table Load:
Sep 16 21:46:02 kernel: ACPI: SSDT 0xFFFF88810146C000 001BAF (v02 PmRef  ApIst    00003000 INTL 20200717)
Sep 16 21:46:02 kernel: ACPI: Dynamic OEM Table Load:
Sep 16 21:46:02 kernel: ACPI: SSDT 0xFFFF888101468000 001038 (v02 PmRef  ApHwp    00003000 INTL 20200717)
Sep 16 21:46:02 kernel: ACPI: Dynamic OEM Table Load:
Sep 16 21:46:02 kernel: ACPI: SSDT 0xFFFF88810146A000 001349 (v02 PmRef  ApPsd    00003000 INTL 20200717)
Sep 16 21:46:02 kernel: ACPI: Dynamic OEM Table Load:
Sep 16 21:46:02 kernel: ACPI: SSDT 0xFFFF888101484000 000FBB (v02 PmRef  ApCst    00003000 INTL 20200717)
Sep 16 21:46:02 kernel: ACPI: _OSC evaluated successfully for all CPUs
Sep 16 21:46:02 kernel: ACPI: Interpreter enabled
Sep 16 21:46:02 kernel: ACPI: PM: (supports S0 S3 S4 S5)
Sep 16 21:46:02 kernel: ACPI: Using IOAPIC for interrupt routing
Sep 16 21:46:02 kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Sep 16 21:46:02 kernel: PCI: Ignoring E820 reservations for host bridge windows
Sep 16 21:46:02 kernel: ACPI: Enabled 8 GPEs in block 00 to 7F
Sep 16 21:46:02 kernel: ACPI: \_SB_.PC00.PEG0.PXP_: New power resource
Sep 16 21:46:02 kernel: ACPI: \_SB_.PC00.PEG1.PXP_: New power resource
Sep 16 21:46:02 kernel: ACPI: \_SB_.PC00.PEG2.PXP_: New power resource
Sep 16 21:46:02 kernel: ACPI: \_SB_.PC00.XHCI.RHUB.HS10.BTRT: New power resource
Sep 16 21:46:02 kernel: ACPI: \_SB_.PC00.PAUD: New power resource
Sep 16 21:46:02 kernel: ACPI: \_SB_.PC00.I2C0.PXTC: New power resource
Sep 16 21:46:02 kernel: ACPI: \_SB_.PC00.CNVW.WRST: New power resource
Sep 16 21:46:02 kernel: ACPI: \_SB_.PC00.RP06.PXP_: New power resource
Sep 16 21:46:02 kernel: ACPI: \_SB_.PC00.RP08.PXP_: New power resource
Sep 16 21:46:02 kernel: ACPI: \_SB_.PC00.RP09.PXP_: New power resource
Sep 16 21:46:02 kernel: ACPI: \_SB_.PC00.TBT0: New power resource
Sep 16 21:46:02 kernel: ACPI: \_SB_.PC00.TBT1: New power resource
Sep 16 21:46:02 kernel: ACPI: \_SB_.PC00.D3C_: New power resource
Sep 16 21:46:02 kernel: ACPI: \_TZ_.FN00: New power resource
Sep 16 21:46:02 kernel: ACPI: \_TZ_.FN01: New power resource
Sep 16 21:46:02 kernel: ACPI: \_TZ_.FN02: New power resource
Sep 16 21:46:02 kernel: ACPI: \_TZ_.FN03: New power resource
Sep 16 21:46:02 kernel: ACPI: \_TZ_.FN04: New power resource
Sep 16 21:46:02 kernel: ACPI: \PIN_: New power resource
Sep 16 21:46:02 kernel: ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-fe])
Sep 16 21:46:02 kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
Sep 16 21:46:02 kernel: acpi PNP0A08:00: _OSC: platform does not support [AER]
Sep 16 21:46:02 kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability LTR DPC]
Sep 16 21:46:02 kernel: PCI host bridge to bus 0000:00
Sep 16 21:46:02 kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
Sep 16 21:46:02 kernel: pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
Sep 16 21:46:02 kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Sep 16 21:46:02 kernel: pci_bus 0000:00: root bus resource [mem 0x80400000-0xbfffffff window]
Sep 16 21:46:02 kernel: pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
Sep 16 21:46:02 kernel: pci_bus 0000:00: root bus resource [bus 00-fe]
Sep 16 21:46:02 kernel: pci 0000:00:00.0: calling  quirk_mmio_always_on+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: pci 0000:00:00.0: quirk_mmio_always_on+0x0/0x20 took 0 usecs
Sep 16 21:46:02 kernel: pci 0000:00:00.0: [8086:4641] type 00 class 0x060000
Sep 16 21:46:02 kernel: pci 0000:00:00.0: calling  quirk_igfx_skip_te_disable+0x0/0xc0 @ 1
Sep 16 21:46:02 kernel: pci 0000:00:00.0: quirk_igfx_skip_te_disable+0x0/0xc0 took 0 usecs
Sep 16 21:46:02 kernel: pci 0000:00:02.0: [8086:46a6] type 00 class 0x030000
Sep 16 21:46:02 kernel: pci 0000:00:02.0: reg 0x10: [mem 0x6000000000-0x6000ffffff 64bit]
Sep 16 21:46:02 kernel: pci 0000:00:02.0: reg 0x18: [mem 0x4000000000-0x400fffffff 64bit pref]
Sep 16 21:46:02 kernel: pci 0000:00:02.0: reg 0x20: [io  0x3000-0x303f]
Sep 16 21:46:02 kernel: pci 0000:00:02.0: calling  screen_info_fixup_lfb+0x0/0x180 @ 1
Sep 16 21:46:02 kernel: pci 0000:00:02.0: screen_info_fixup_lfb+0x0/0x180 took 0 usecs
Sep 16 21:46:02 kernel: pci 0000:00:02.0: calling  efifb_fixup_resources+0x0/0x140 @ 1
Sep 16 21:46:02 kernel: pci 0000:00:02.0: BAR 2: assigned to efifb
Sep 16 21:46:02 kernel: pci 0000:00:02.0: efifb_fixup_resources+0x0/0x140 took 0 usecs
Sep 16 21:46:02 kernel: pci 0000:00:02.0: calling  quirk_igfx_skip_te_disable+0x0/0xc0 @ 1
Sep 16 21:46:02 kernel: pci 0000:00:02.0: DMAR: Skip IOMMU disabling for graphics
Sep 16 21:46:02 kernel: pci 0000:00:02.0: quirk_igfx_skip_te_disable+0x0/0xc0 took 0 usecs
Sep 16 21:46:02 kernel: pci 0000:00:02.0: calling  pci_fixup_video+0x0/0x140 @ 1
Sep 16 21:46:02 kernel: pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
Sep 16 21:46:02 kernel: pci 0000:00:02.0: pci_fixup_video+0x0/0x140 took 0 usecs
Sep 16 21:46:02 kernel: pci 0000:00:02.0: reg 0x344: [mem 0x00000000-0x00ffffff 64bit]
Sep 16 21:46:02 kernel: pci 0000:00:02.0: VF(n) BAR0 space: [mem 0x00000000-0x06ffffff 64bit] (contains BAR0 for 7 VFs)
Sep 16 21:46:02 kernel: pci 0000:00:02.0: reg 0x34c: [mem 0x00000000-0x1fffffff 64bit pref]
Sep 16 21:46:02 kernel: pci 0000:00:02.0: VF(n) BAR2 space: [mem 0x00000000-0xdfffffff 64bit pref] (contains BAR2 for 7 VFs)
Sep 16 21:46:02 kernel: pci 0000:00:04.0: [8086:461d] type 00 class 0x118000
Sep 16 21:46:02 kernel: pci 0000:00:04.0: reg 0x10: [mem 0x6001100000-0x600111ffff 64bit]
Sep 16 21:46:02 kernel: pci 0000:00:04.0: calling  quirk_igfx_skip_te_disable+0x0/0xc0 @ 1
Sep 16 21:46:02 kernel: pci 0000:00:04.0: quirk_igfx_skip_te_disable+0x0/0xc0 took 0 usecs
Sep 16 21:46:02 kernel: pci 0000:00:06.0: calling  quirk_cmd_compl+0x0/0x80 @ 1
Sep 16 21:46:02 kernel: pci 0000:00:06.0: quirk_cmd_compl+0x0/0x80 took 0 usecs
Sep 16 21:46:02 kernel: pci 0000:00:06.0: calling  quirk_no_aersid+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: pci 0000:00:06.0: quirk_no_aersid+0x0/0x40 took 0 usecs
Sep 16 21:46:02 kernel: pci 0000:00:06.0: [8086:464d] type 01 class 0x060400
Sep 16 21:46:02 kernel: pci 0000:00:06.0: calling  quirk_igfx_skip_te_disable+0x0/0xc0 @ 1
Sep 16 21:46:02 kernel: pci 0000:00:06.0: quirk_igfx_skip_te_disable+0x0/0xc0 took 0 usecs
Sep 16 21:46:02 kernel: pci 0000:00:06.0: calling  pci_fixup_transparent_bridge+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: pci 0000:00:06.0: pci_fixup_transparent_bridge+0x0/0x30 took 0 usecs
Sep 16 21:46:02 kernel: pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
Sep 16 21:46:02 kernel: pci 0000:00:06.0: PTM enabled (root), 4ns granularity
Sep 16 21:46:02 kernel: pci 0000:00:08.0: [8086:464f] type 00 class 0x088000
Sep 16 21:46:02 kernel: pci 0000:00:08.0: reg 0x10: [mem 0x600114d000-0x600114dfff 64bit]
Sep 16 21:46:02 kernel: pci 0000:00:08.0: calling  quirk_igfx_skip_te_disable+0x0/0xc0 @ 1
Sep 16 21:46:02 kernel: pci 0000:00:08.0: quirk_igfx_skip_te_disable+0x0/0xc0 took 0 usecs
Sep 16 21:46:02 kernel: pci 0000:00:0a.0: [8086:467d] type 00 class 0x118000
Sep 16 21:46:02 kernel: pci 0000:00:0a.0: reg 0x10: [mem 0x6001130000-0x6001137fff 64bit]
Sep 16 21:46:02 kernel: pci 0000:00:0a.0: enabling Extended Tags
Sep 16 21:46:02 kernel: pci 0000:00:0a.0: calling  quirk_igfx_skip_te_disable+0x0/0xc0 @ 1
Sep 16 21:46:02 kernel: pci 0000:00:0a.0: quirk_igfx_skip_te_disable+0x0/0xc0 took 0 usecs
Sep 16 21:46:02 kernel: pci 0000:00:0d.0: [8086:461e] type 00 class 0x0c0330
Sep 16 21:46:02 kernel: pci 0000:00:0d.0: reg 0x10: [mem 0x6001120000-0x600112ffff 64bit]
Sep 16 21:46:02 kernel: pci 0000:00:0d.0: calling  quirk_igfx_skip_te_disable+0x0/0xc0 @ 1
Sep 16 21:46:02 kernel: pci 0000:00:0d.0: quirk_igfx_skip_te_disable+0x0/0xc0 took 0 usecs
Sep 16 21:46:02 kernel: pci 0000:00:0d.0: PME# supported from D3hot D3cold
Sep 16 21:46:02 kernel: pci 0000:00:14.0: [8086:51ed] type 00 class 0x0c0330
Sep 16 21:46:02 kernel: pci 0000:00:14.0: reg 0x10: [mem 0x80500000-0x8050ffff 64bit]
Sep 16 21:46:02 kernel: pci 0000:00:14.0: calling  quirk_igfx_skip_te_disable+0x0/0xc0 @ 1
Sep 16 21:46:02 kernel: pci 0000:00:14.0: quirk_igfx_skip_te_disable+0x0/0xc0 took 0 usecs
Sep 16 21:46:02 kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
Sep 16 21:46:02 kernel: pci 0000:00:14.2: [8086:51ef] type 00 class 0x050000
Sep 16 21:46:02 kernel: pci 0000:00:14.2: reg 0x10: [mem 0x6001140000-0x6001143fff 64bit]
Sep 16 21:46:02 kernel: pci 0000:00:14.2: reg 0x18: [mem 0x600114c000-0x600114cfff 64bit]
Sep 16 21:46:02 kernel: pci 0000:00:14.2: calling  quirk_igfx_skip_te_disable+0x0/0xc0 @ 1
Sep 16 21:46:02 kernel: pci 0000:00:14.2: quirk_igfx_skip_te_disable+0x0/0xc0 took 0 usecs
Sep 16 21:46:02 kernel: pci 0000:00:14.3: [8086:51f0] type 00 class 0x028000
Sep 16 21:46:02 kernel: pci 0000:00:14.3: reg 0x10: [mem 0x600113c000-0x600113ffff 64bit]
Sep 16 21:46:02 kernel: pci 0000:00:14.3: calling  quirk_igfx_skip_te_disable+0x0/0xc0 @ 1
Sep 16 21:46:02 kernel: pci 0000:00:14.3: quirk_igfx_skip_te_disable+0x0/0xc0 took 0 usecs
Sep 16 21:46:02 kernel: pci 0000:00:14.3: PME# supported from D0 D3hot D3cold
Sep 16 21:46:02 kernel: pci 0000:00:15.0: [8086:51e8] type 00 class 0x0c8000
Sep 16 21:46:02 kernel: pci 0000:00:15.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
Sep 16 21:46:02 kernel: pci 0000:00:15.0: calling  quirk_igfx_skip_te_disable+0x0/0xc0 @ 1
Sep 16 21:46:02 kernel: pci 0000:00:15.0: quirk_igfx_skip_te_disable+0x0/0xc0 took 0 usecs
Sep 16 21:46:02 kernel: pci 0000:00:15.1: [8086:51e9] type 00 class 0x0c8000
Sep 16 21:46:02 kernel: pci 0000:00:15.1: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
Sep 16 21:46:02 kernel: pci 0000:00:15.1: calling  quirk_igfx_skip_te_disable+0x0/0xc0 @ 1
Sep 16 21:46:02 kernel: pci 0000:00:15.1: quirk_igfx_skip_te_disable+0x0/0xc0 took 0 usecs
Sep 16 21:46:02 kernel: pci 0000:00:16.0: [8086:51e0] type 00 class 0x078000
Sep 16 21:46:02 kernel: pci 0000:00:16.0: reg 0x10: [mem 0x6001149000-0x6001149fff 64bit]
Sep 16 21:46:02 kernel: pci 0000:00:16.0: calling  quirk_igfx_skip_te_disable+0x0/0xc0 @ 1
Sep 16 21:46:02 kernel: pci 0000:00:16.0: quirk_igfx_skip_te_disable+0x0/0xc0 took 0 usecs
Sep 16 21:46:02 kernel: pci 0000:00:16.0: PME# supported from D3hot
Sep 16 21:46:02 kernel: pci 0000:00:19.0: [8086:51c5] type 00 class 0x0c8000
Sep 16 21:46:02 kernel: pci 0000:00:19.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
Sep 16 21:46:02 kernel: pci 0000:00:19.0: calling  quirk_igfx_skip_te_disable+0x0/0xc0 @ 1
Sep 16 21:46:02 kernel: pci 0000:00:19.0: quirk_igfx_skip_te_disable+0x0/0xc0 took 0 usecs
Sep 16 21:46:02 kernel: pci 0000:00:19.1: [8086:51c6] type 00 class 0x0c8000
Sep 16 21:46:02 kernel: pci 0000:00:19.1: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
Sep 16 21:46:02 kernel: pci 0000:00:19.1: calling  quirk_igfx_skip_te_disable+0x0/0xc0 @ 1
Sep 16 21:46:02 kernel: pci 0000:00:19.1: quirk_igfx_skip_te_disable+0x0/0xc0 took 0 usecs
Sep 16 21:46:02 kernel: pci 0000:00:1e.0: [8086:51a8] type 00 class 0x078000
Sep 16 21:46:02 kernel: pci 0000:00:1e.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
Sep 16 21:46:02 kernel: pci 0000:00:1e.0: calling  quirk_igfx_skip_te_disable+0x0/0xc0 @ 1
Sep 16 21:46:02 kernel: pci 0000:00:1e.0: quirk_igfx_skip_te_disable+0x0/0xc0 took 0 usecs
Sep 16 21:46:02 kernel: pci 0000:00:1e.2: [8086:51aa] type 00 class 0x0c8000
Sep 16 21:46:02 kernel: pci 0000:00:1e.2: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
Sep 16 21:46:02 kernel: pci 0000:00:1e.2: calling  quirk_igfx_skip_te_disable+0x0/0xc0 @ 1
Sep 16 21:46:02 kernel: pci 0000:00:1e.2: quirk_igfx_skip_te_disable+0x0/0xc0 took 0 usecs
Sep 16 21:46:02 kernel: pci 0000:00:1f.0: [8086:5182] type 00 class 0x060100
Sep 16 21:46:02 kernel: pci 0000:00:1f.0: calling  quirk_igfx_skip_te_disable+0x0/0xc0 @ 1
Sep 16 21:46:02 kernel: pci 0000:00:1f.0: quirk_igfx_skip_te_disable+0x0/0xc0 took 0 usecs
Sep 16 21:46:02 kernel: pci 0000:00:1f.3: [8086:51c8] type 00 class 0x040100
Sep 16 21:46:02 kernel: pci 0000:00:1f.3: reg 0x10: [mem 0x6001138000-0x600113bfff 64bit]
Sep 16 21:46:02 kernel: pci 0000:00:1f.3: reg 0x20: [mem 0x6001000000-0x60010fffff 64bit]
Sep 16 21:46:02 kernel: pci 0000:00:1f.3: calling  quirk_igfx_skip_te_disable+0x0/0xc0 @ 1
Sep 16 21:46:02 kernel: pci 0000:00:1f.3: quirk_igfx_skip_te_disable+0x0/0xc0 took 0 usecs
Sep 16 21:46:02 kernel: pci 0000:00:1f.3: PME# supported from D3hot D3cold
Sep 16 21:46:02 kernel: pci 0000:00:1f.4: [8086:51a3] type 00 class 0x0c0500
Sep 16 21:46:02 kernel: pci 0000:00:1f.4: reg 0x10: [mem 0x6001144000-0x60011440ff 64bit]
Sep 16 21:46:02 kernel: pci 0000:00:1f.4: reg 0x20: [io  0xefa0-0xefbf]
Sep 16 21:46:02 kernel: pci 0000:00:1f.4: calling  quirk_igfx_skip_te_disable+0x0/0xc0 @ 1
Sep 16 21:46:02 kernel: pci 0000:00:1f.4: quirk_igfx_skip_te_disable+0x0/0xc0 took 0 usecs
Sep 16 21:46:02 kernel: pci 0000:00:1f.5: [8086:51a4] type 00 class 0x0c8000
Sep 16 21:46:02 kernel: pci 0000:00:1f.5: reg 0x10: [mem 0xfe010000-0xfe010fff]
Sep 16 21:46:02 kernel: pci 0000:00:1f.5: calling  quirk_igfx_skip_te_disable+0x0/0xc0 @ 1
Sep 16 21:46:02 kernel: pci 0000:00:1f.5: quirk_igfx_skip_te_disable+0x0/0xc0 took 0 usecs
Sep 16 21:46:02 kernel: pci 0000:01:00.0: [1e49:1001] type 00 class 0x010802
Sep 16 21:46:02 kernel: pci 0000:01:00.0: reg 0x10: [mem 0x80400000-0x80403fff 64bit]
Sep 16 21:46:02 kernel: pci 0000:00:06.0: PCI bridge to [bus 01]
Sep 16 21:46:02 kernel: pci 0000:00:06.0:   bridge window [mem 0x80400000-0x804fffff]
Sep 16 21:46:02 kernel: Low-power S0 idle used by default for system suspend
Sep 16 21:46:02 kernel: ACPI: EC: interrupt unblocked
Sep 16 21:46:02 kernel: ACPI: EC: event unblocked
Sep 16 21:46:02 kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
Sep 16 21:46:02 kernel: ACPI: EC: GPE=0x6e
Sep 16 21:46:02 kernel: ACPI: \_SB_.PC00.LPCB.HWEC: Boot ECDT EC initialization complete
Sep 16 21:46:02 kernel: ACPI: \_SB_.PC00.LPCB.HWEC: EC: Used to handle transactions and events
Sep 16 21:46:02 kernel: probe of PNP0C09:00 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: initcall acpi_init+0x0/0x560 returned 0 after 786666 usecs
Sep 16 21:46:02 kernel: calling  adxl_init+0x0/0x1a0 @ 1
Sep 16 21:46:02 kernel: initcall adxl_init+0x0/0x1a0 returned -19 after 0 usecs
Sep 16 21:46:02 kernel: calling  hmat_init+0x0/0x390 @ 1
Sep 16 21:46:02 kernel: initcall hmat_init+0x0/0x390 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  pnp_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall pnp_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  balloon_init+0x0/0x260 @ 1
Sep 16 21:46:02 kernel: initcall balloon_init+0x0/0x260 returned -19 after 0 usecs
Sep 16 21:46:02 kernel: calling  xen_setup_shutdown_event+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall xen_setup_shutdown_event+0x0/0x40 returned -19 after 0 usecs
Sep 16 21:46:02 kernel: calling  xenbus_probe_backend_init+0x0/0x80 @ 1
Sep 16 21:46:02 kernel: initcall xenbus_probe_backend_init+0x0/0x80 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  xenbus_probe_frontend_init+0x0/0x60 @ 1
Sep 16 21:46:02 kernel: initcall xenbus_probe_frontend_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  xen_acpi_pad_init+0x0/0x60 @ 1
Sep 16 21:46:02 kernel: initcall xen_acpi_pad_init+0x0/0x60 returned -19 after 0 usecs
Sep 16 21:46:02 kernel: calling  misc_init+0x0/0xb0 @ 1
Sep 16 21:46:02 kernel: initcall misc_init+0x0/0xb0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  tpm_init+0x0/0xd0 @ 1
Sep 16 21:46:02 kernel: initcall tpm_init+0x0/0xd0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  iommu_subsys_init+0x0/0x180 @ 1
Sep 16 21:46:02 kernel: iommu: Default domain type: Translated
Sep 16 21:46:02 kernel: iommu: DMA domain TLB invalidation policy: lazy mode
Sep 16 21:46:02 kernel: initcall iommu_subsys_init+0x0/0x180 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  cn_init+0x0/0x100 @ 1
Sep 16 21:46:02 kernel: initcall cn_init+0x0/0x100 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  pm860x_i2c_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall pm860x_i2c_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  wm8400_driver_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall wm8400_driver_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  wm831x_i2c_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall wm831x_i2c_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  wm831x_spi_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall wm831x_spi_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  wm8350_i2c_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall wm8350_i2c_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  tps65910_i2c_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall tps65910_i2c_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  ezx_pcap_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall ezx_pcap_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  da903x_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall da903x_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  da9052_spi_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall da9052_spi_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  da9052_i2c_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall da9052_i2c_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  lp8788_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall lp8788_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  da9055_i2c_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall da9055_i2c_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  max77843_i2c_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall max77843_i2c_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  max8925_i2c_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall max8925_i2c_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  max8997_i2c_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall max8997_i2c_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  max8998_i2c_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall max8998_i2c_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  tps6586x_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall tps6586x_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  tps65090_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall tps65090_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  aat2870_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall aat2870_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  palmas_i2c_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall palmas_i2c_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  rc5t583_i2c_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall rc5t583_i2c_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  as3711_i2c_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall as3711_i2c_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  libnvdimm_init+0x0/0x60 @ 1
Sep 16 21:46:02 kernel: initcall libnvdimm_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  dax_core_init+0x0/0xe0 @ 1
Sep 16 21:46:02 kernel: initcall dax_core_init+0x0/0xe0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  dma_buf_init+0x0/0xf0 @ 1
Sep 16 21:46:02 kernel: initcall dma_buf_init+0x0/0xf0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  dma_heap_init+0x0/0x80 @ 1
Sep 16 21:46:02 kernel: initcall dma_heap_init+0x0/0x80 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_scsi+0x0/0x90 @ 1
Sep 16 21:46:02 kernel: SCSI subsystem initialized
Sep 16 21:46:02 kernel: initcall init_scsi+0x0/0x90 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  ata_init+0x0/0x440 @ 1
Sep 16 21:46:02 kernel: libata version 3.00 loaded.
Sep 16 21:46:02 kernel: initcall ata_init+0x0/0x440 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  usb_common_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall usb_common_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  usb_init+0x0/0x170 @ 1
Sep 16 21:46:02 kernel: ACPI: bus type USB registered
Sep 16 21:46:02 kernel: usbcore: registered new interface driver usbfs
Sep 16 21:46:02 kernel: usbcore: registered new interface driver hub
Sep 16 21:46:02 kernel: usbcore: registered new device driver usb
Sep 16 21:46:02 kernel: initcall usb_init+0x0/0x170 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  xdbc_init+0x0/0x1d0 @ 1
Sep 16 21:46:02 kernel: initcall xdbc_init+0x0/0x1d0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  input_init+0x0/0x140 @ 1
Sep 16 21:46:02 kernel: initcall input_init+0x0/0x140 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  rtc_init+0x0/0x50 @ 1
Sep 16 21:46:02 kernel: initcall rtc_init+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  dw_i2c_init_driver+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall dw_i2c_init_driver+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  rc_core_init+0x0/0x90 @ 1
Sep 16 21:46:02 kernel: initcall rc_core_init+0x0/0x90 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  pps_init+0x0/0xc0 @ 1
Sep 16 21:46:02 kernel: pps_core: LinuxPPS API ver. 1 registered
Sep 16 21:46:02 kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Sep 16 21:46:02 kernel: initcall pps_init+0x0/0xc0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  ptp_init+0x0/0xb0 @ 1
Sep 16 21:46:02 kernel: PTP clock support registered
Sep 16 21:46:02 kernel: initcall ptp_init+0x0/0xb0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  power_supply_class_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall power_supply_class_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  hwmon_init+0x0/0x110 @ 1
Sep 16 21:46:02 kernel: initcall hwmon_init+0x0/0x110 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  edac_init+0x0/0x80 @ 1
Sep 16 21:46:02 kernel: EDAC MC: Ver: 3.0.0
Sep 16 21:46:02 kernel: initcall edac_init+0x0/0x80 returned 0 after 3333 usecs
Sep 16 21:46:02 kernel: calling  leds_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall leds_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  dmi_init+0x0/0x130 @ 1
Sep 16 21:46:02 kernel: initcall dmi_init+0x0/0x130 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  efisubsys_init+0x0/0x710 @ 1
Sep 16 21:46:02 kernel: efivars: Registered efivars operations
Sep 16 21:46:02 kernel: initcall efisubsys_init+0x0/0x710 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  intel_scu_ipc_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall intel_scu_ipc_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  remoteproc_init+0x0/0x80 @ 1
Sep 16 21:46:02 kernel: initcall remoteproc_init+0x0/0x80 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  devfreq_init+0x0/0xd0 @ 1
Sep 16 21:46:02 kernel: initcall devfreq_init+0x0/0xd0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  devfreq_event_init+0x0/0x60 @ 1
Sep 16 21:46:02 kernel: initcall devfreq_event_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  ras_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall ras_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  nvmem_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall nvmem_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  hte_subsys_dbgfs_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall hte_subsys_dbgfs_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  proto_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall proto_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  net_dev_init+0x0/0x280 @ 1
Sep 16 21:46:02 kernel: initcall net_dev_init+0x0/0x280 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  neigh_init+0x0/0x90 @ 1
Sep 16 21:46:02 kernel: initcall neigh_init+0x0/0x90 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  fib_notifier_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall fib_notifier_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  netdev_genl_init+0x0/0x50 @ 1
Sep 16 21:46:02 kernel: initcall netdev_genl_init+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  fib_rules_init+0x0/0xc0 @ 1
Sep 16 21:46:02 kernel: initcall fib_rules_init+0x0/0xc0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_cgroup_netprio+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall init_cgroup_netprio+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  bpf_lwt_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall bpf_lwt_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  pktsched_init+0x0/0x140 @ 1
Sep 16 21:46:02 kernel: initcall pktsched_init+0x0/0x140 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  tc_filter_init+0x0/0x130 @ 1
Sep 16 21:46:02 kernel: initcall tc_filter_init+0x0/0x130 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  tc_action_init+0x0/0x60 @ 1
Sep 16 21:46:02 kernel: initcall tc_action_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  ethnl_init+0x0/0x80 @ 1
Sep 16 21:46:02 kernel: initcall ethnl_init+0x0/0x80 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  nexthop_init+0x0/0x100 @ 1
Sep 16 21:46:02 kernel: initcall nexthop_init+0x0/0x100 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  cipso_v4_init+0x0/0xb0 @ 1
Sep 16 21:46:02 kernel: initcall cipso_v4_init+0x0/0xb0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  devlink_init+0x0/0x70 @ 1
Sep 16 21:46:02 kernel: initcall devlink_init+0x0/0x70 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  wireless_nlevent_init+0x0/0x60 @ 1
Sep 16 21:46:02 kernel: initcall wireless_nlevent_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  netlbl_init+0x0/0x90 @ 1
Sep 16 21:46:02 kernel: NetLabel: Initializing
Sep 16 21:46:02 kernel: NetLabel:  domain hash size = 128
Sep 16 21:46:02 kernel: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
Sep 16 21:46:02 kernel: NetLabel:  unlabeled traffic allowed by default
Sep 16 21:46:02 kernel: initcall netlbl_init+0x0/0x90 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  ncsi_init_netlink+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall ncsi_init_netlink+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  mctp_init+0x0/0x90 @ 1
Sep 16 21:46:02 kernel: mctp: management component transport protocol core
Sep 16 21:46:02 kernel: NET: Registered PF_MCTP protocol family
Sep 16 21:46:02 kernel: initcall mctp_init+0x0/0x90 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  pci_subsys_init+0x0/0x90 @ 1
Sep 16 21:46:02 kernel: PCI: Using ACPI for IRQ routing
Sep 16 21:46:02 kernel: PCI: pci_cache_line_size set to 64 bytes
Sep 16 21:46:02 kernel: pci 0000:00:1f.5: can't claim BAR 0 [mem 0xfe010000-0xfe010fff]: no compatible bridge window
Sep 16 21:46:02 kernel: e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
Sep 16 21:46:02 kernel: e820: reserve RAM buffer [mem 0x6636f000-0x67ffffff]
Sep 16 21:46:02 kernel: e820: reserve RAM buffer [mem 0x667b0000-0x67ffffff]
Sep 16 21:46:02 kernel: e820: reserve RAM buffer [mem 0x6d4dd000-0x6fffffff]
Sep 16 21:46:02 kernel: e820: reserve RAM buffer [mem 0x6fbff000-0x6fffffff]
Sep 16 21:46:02 kernel: e820: reserve RAM buffer [mem 0x74c00000-0x77ffffff]
Sep 16 21:46:02 kernel: e820: reserve RAM buffer [mem 0x47fc00000-0x47fffffff]
Sep 16 21:46:02 kernel: initcall pci_subsys_init+0x0/0x90 returned 0 after 126666 usecs
Sep 16 21:46:02 kernel: calling  vsprintf_init_hashval+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall vsprintf_init_hashval+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  efi_runtime_map_init+0x0/0x230 @ 1
Sep 16 21:46:02 kernel: initcall efi_runtime_map_init+0x0/0x230 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  vga_arb_device_init+0x0/0x90 @ 1
Sep 16 21:46:02 kernel: pci 0000:00:02.0: vgaarb: setting as boot VGA device
Sep 16 21:46:02 kernel: pci 0000:00:02.0: vgaarb: bridge control possible
Sep 16 21:46:02 kernel: pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
Sep 16 21:46:02 kernel: vgaarb: loaded
Sep 16 21:46:02 kernel: initcall vga_arb_device_init+0x0/0x90 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  watchdog_init+0x0/0xc0 @ 1
Sep 16 21:46:02 kernel: initcall watchdog_init+0x0/0xc0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  nmi_warning_debugfs+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall nmi_warning_debugfs+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  save_microcode_in_initrd+0x0/0xc0 @ 1
Sep 16 21:46:02 kernel: initcall save_microcode_in_initrd+0x0/0xc0 returned 0 after 3333 usecs
Sep 16 21:46:02 kernel: calling  hpet_late_init+0x0/0x440 @ 1
Sep 16 21:46:02 kernel: initcall hpet_late_init+0x0/0x440 returned -19 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_amd_nbs+0x0/0x4f0 @ 1
Sep 16 21:46:02 kernel: initcall init_amd_nbs+0x0/0x4f0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  iomem_init_inode+0x0/0x90 @ 1
Sep 16 21:46:02 kernel: initcall iomem_init_inode+0x0/0x90 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_lockevent_counts+0x0/0xf0 @ 1
Sep 16 21:46:02 kernel: initcall init_lockevent_counts+0x0/0xf0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  em_debug_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall em_debug_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  clocksource_done_booting+0x0/0x50 @ 1
Sep 16 21:46:02 kernel: clocksource: Switched to clocksource tsc-early
Sep 16 21:46:02 kernel: initcall clocksource_done_booting+0x0/0x50 returned 0 after 23 usecs
Sep 16 21:46:02 kernel: calling  tracer_init_tracefs+0x0/0xd0 @ 1
Sep 16 21:46:02 kernel: initcall tracer_init_tracefs+0x0/0xd0 returned 0 after 4 usecs
Sep 16 21:46:02 kernel: calling  init_trace_printk_function_export+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall init_trace_printk_function_export+0x0/0x30 returned 0 after 22 usecs
Sep 16 21:46:02 kernel: calling  init_graph_tracefs+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall init_graph_tracefs+0x0/0x30 returned 0 after 3 usecs
Sep 16 21:46:02 kernel: calling  trace_events_synth_init+0x0/0x50 @ 1
Sep 16 21:46:02 kernel: initcall trace_events_synth_init+0x0/0x50 returned 0 after 7 usecs
Sep 16 21:46:02 kernel: calling  trace_events_user_init+0x0/0x1f0 @ 1
Sep 16 21:46:02 kernel: initcall trace_events_user_init+0x0/0x1f0 returned 0 after 5 usecs
Sep 16 21:46:02 kernel: calling  bpf_event_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall bpf_event_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_kprobe_trace+0x0/0x200 @ 1
Sep 16 21:46:02 kernel: initcall init_kprobe_trace+0x0/0x200 returned 0 after 317 usecs
Sep 16 21:46:02 kernel: calling  init_dynamic_event+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall init_dynamic_event+0x0/0x30 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  init_uprobe_trace+0x0/0x70 @ 1
Sep 16 21:46:02 kernel: initcall init_uprobe_trace+0x0/0x70 returned 0 after 2 usecs
Sep 16 21:46:02 kernel: calling  bpf_init+0x0/0x70 @ 1
Sep 16 21:46:02 kernel: initcall bpf_init+0x0/0x70 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  btf_module_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall btf_module_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  secretmem_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall secretmem_init+0x0/0x40 returned 0 after 7 usecs
Sep 16 21:46:02 kernel: calling  init_fs_stat_sysctls+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall init_fs_stat_sysctls+0x0/0x40 returned 0 after 5 usecs
Sep 16 21:46:02 kernel: calling  init_fs_exec_sysctls+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall init_fs_exec_sysctls+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_pipe_fs+0x0/0x70 @ 1
Sep 16 21:46:02 kernel: initcall init_pipe_fs+0x0/0x70 returned 0 after 5 usecs
Sep 16 21:46:02 kernel: calling  init_fs_namei_sysctls+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall init_fs_namei_sysctls+0x0/0x30 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  init_fs_dcache_sysctls+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall init_fs_dcache_sysctls+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_fs_namespace_sysctls+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall init_fs_namespace_sysctls+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  cgroup_writeback_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall cgroup_writeback_init+0x0/0x40 returned 0 after 3 usecs
Sep 16 21:46:02 kernel: calling  inotify_user_setup+0x0/0x100 @ 1
Sep 16 21:46:02 kernel: initcall inotify_user_setup+0x0/0x100 returned 0 after 3 usecs
Sep 16 21:46:02 kernel: calling  eventpoll_init+0x0/0x120 @ 1
Sep 16 21:46:02 kernel: initcall eventpoll_init+0x0/0x120 returned 0 after 10 usecs
Sep 16 21:46:02 kernel: calling  anon_inode_init+0x0/0x70 @ 1
Sep 16 21:46:02 kernel: initcall anon_inode_init+0x0/0x70 returned 0 after 4 usecs
Sep 16 21:46:02 kernel: calling  init_dax_wait_table+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall init_dax_wait_table+0x0/0x40 returned 0 after 8 usecs
Sep 16 21:46:02 kernel: calling  proc_locks_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall proc_locks_init+0x0/0x30 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  init_fs_coredump_sysctls+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall init_fs_coredump_sysctls+0x0/0x30 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  iomap_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall iomap_init+0x0/0x30 returned 0 after 20 usecs
Sep 16 21:46:02 kernel: calling  dquot_init+0x0/0x160 @ 1
Sep 16 21:46:02 kernel: VFS: Disk quotas dquot_6.6.0
Sep 16 21:46:02 kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Sep 16 21:46:02 kernel: initcall dquot_init+0x0/0x160 returned 0 after 13 usecs
Sep 16 21:46:02 kernel: calling  quota_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall quota_init+0x0/0x40 returned 0 after 4 usecs
Sep 16 21:46:02 kernel: calling  proc_cmdline_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall proc_cmdline_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  proc_consoles_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall proc_consoles_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  proc_cpuinfo_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall proc_cpuinfo_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  proc_devices_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall proc_devices_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  proc_interrupts_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall proc_interrupts_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  proc_loadavg_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall proc_loadavg_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  proc_meminfo_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall proc_meminfo_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  proc_stat_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall proc_stat_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  proc_uptime_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall proc_uptime_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  proc_version_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall proc_version_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  proc_softirqs_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall proc_softirqs_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  proc_kcore_init+0x0/0x230 @ 1
Sep 16 21:46:02 kernel: initcall proc_kcore_init+0x0/0x230 returned 0 after 4 usecs
Sep 16 21:46:02 kernel: calling  vmcore_init+0x0/0x730 @ 1
Sep 16 21:46:02 kernel: initcall vmcore_init+0x0/0x730 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  proc_kmsg_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall proc_kmsg_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  proc_page_init+0x0/0x60 @ 1
Sep 16 21:46:02 kernel: initcall proc_page_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  proc_boot_config_init+0x0/0x90 @ 1
Sep 16 21:46:02 kernel: initcall proc_boot_config_init+0x0/0x90 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_ramfs_fs+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall init_ramfs_fs+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_hugetlbfs_fs+0x0/0x170 @ 1
Sep 16 21:46:02 kernel: initcall init_hugetlbfs_fs+0x0/0x170 returned 0 after 13 usecs
Sep 16 21:46:02 kernel: calling  tomoyo_initerface_init+0x0/0x190 @ 1
Sep 16 21:46:02 kernel: initcall tomoyo_initerface_init+0x0/0x190 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  aa_create_aafs+0x0/0x410 @ 1
Sep 16 21:46:02 kernel: initcall aa_create_aafs+0x0/0x410 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  safesetid_init_securityfs+0x0/0xb0 @ 1
Sep 16 21:46:02 kernel: initcall safesetid_init_securityfs+0x0/0xb0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  dynamic_debug_init_control+0x0/0x90 @ 1
Sep 16 21:46:02 kernel: initcall dynamic_debug_init_control+0x0/0x90 returned 0 after 2 usecs
Sep 16 21:46:02 kernel: calling  acpi_event_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall acpi_event_init+0x0/0x40 returned 0 after 2 usecs
Sep 16 21:46:02 kernel: calling  acpi_init_fpdt+0x0/0x3b0 @ 1
Sep 16 21:46:02 kernel: initcall acpi_init_fpdt+0x0/0x3b0 returned 0 after 17 usecs
Sep 16 21:46:02 kernel: calling  pnp_system_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall pnp_system_init+0x0/0x20 returned 0 after 4 usecs
Sep 16 21:46:02 kernel: calling  pnpacpi_init+0x0/0x80 @ 1
Sep 16 21:46:02 kernel: pnp: PnP ACPI init
Sep 16 21:46:02 kernel: system 00:00: [io  0x0680-0x069f] has been reserved
Sep 16 21:46:02 kernel: system 00:00: [io  0x164e-0x164f] has been reserved
Sep 16 21:46:02 kernel: probe of 00:00 returned 0 after 13 usecs
Sep 16 21:46:02 kernel: system 00:02: [io  0x1854-0x1857] has been reserved
Sep 16 21:46:02 kernel: probe of 00:02 returned 0 after 12 usecs
Sep 16 21:46:02 kernel: pnp 00:04: disabling [mem 0xc0000000-0xcfffffff] because it overlaps 0000:00:02.0 BAR 9 [mem 0x00000000-0xdfffffff 64bit pref]
Sep 16 21:46:02 kernel: system 00:04: [mem 0xfedc0000-0xfedc7fff] has been reserved
Sep 16 21:46:02 kernel: system 00:04: [mem 0xfeda0000-0xfeda0fff] has been reserved
Sep 16 21:46:02 kernel: system 00:04: [mem 0xfeda1000-0xfeda1fff] has been reserved
Sep 16 21:46:02 kernel: system 00:04: [mem 0xfed20000-0xfed7ffff] could not be reserved
Sep 16 21:46:02 kernel: system 00:04: [mem 0xfed90000-0xfed93fff] could not be reserved
Sep 16 21:46:02 kernel: system 00:04: [mem 0xfed45000-0xfed8ffff] could not be reserved
Sep 16 21:46:02 kernel: system 00:04: [mem 0xfee00000-0xfeefffff] has been reserved
Sep 16 21:46:02 kernel: probe of 00:04 returned 0 after 20 usecs
Sep 16 21:46:02 kernel: system 00:05: [io  0x2000-0x20fe] has been reserved
Sep 16 21:46:02 kernel: probe of 00:05 returned 0 after 5 usecs
Sep 16 21:46:02 kernel: probe of 00:06 returned 0 after 2 usecs
Sep 16 21:46:02 kernel: pnp: PnP ACPI: found 7 devices
Sep 16 21:46:02 kernel: initcall pnpacpi_init+0x0/0x80 returned 0 after 32439 usecs
Sep 16 21:46:02 kernel: calling  chr_dev_init+0x0/0xa0 @ 1
Sep 16 21:46:02 kernel: initcall chr_dev_init+0x0/0xa0 returned 0 after 894 usecs
Sep 16 21:46:02 kernel: calling  hwrng_modinit+0x0/0xb0 @ 1
Sep 16 21:46:02 kernel: initcall hwrng_modinit+0x0/0xb0 returned 0 after 23 usecs
Sep 16 21:46:02 kernel: calling  firmware_class_init+0x0/0x110 @ 1
Sep 16 21:46:02 kernel: initcall firmware_class_init+0x0/0x110 returned 0 after 6 usecs
Sep 16 21:46:02 kernel: calling  map_properties+0x0/0x600 @ 1
Sep 16 21:46:02 kernel: initcall map_properties+0x0/0x600 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  efi_mokvar_sysfs_init+0x0/0x1b0 @ 1
Sep 16 21:46:02 kernel: initcall efi_mokvar_sysfs_init+0x0/0x1b0 returned -2 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_acpi_pm_clocksource+0x0/0x100 @ 1
Sep 16 21:46:02 kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Sep 16 21:46:02 kernel: initcall init_acpi_pm_clocksource+0x0/0x100 returned 0 after 4508 usecs
Sep 16 21:46:02 kernel: calling  powercap_init+0x0/0x290 @ 1
Sep 16 21:46:02 kernel: initcall powercap_init+0x0/0x290 returned 0 after 15 usecs
Sep 16 21:46:02 kernel: calling  sysctl_core_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall sysctl_core_init+0x0/0x40 returned 0 after 16 usecs
Sep 16 21:46:02 kernel: calling  eth_offload_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall eth_offload_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  ipv4_offload_init+0x0/0xa0 @ 1
Sep 16 21:46:02 kernel: initcall ipv4_offload_init+0x0/0xa0 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  inet_init+0x0/0x2f0 @ 1
Sep 16 21:46:02 kernel: NET: Registered PF_INET protocol family
Sep 16 21:46:02 kernel: IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
Sep 16 21:46:02 kernel: tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
Sep 16 21:46:02 kernel: Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
Sep 16 21:46:02 kernel: TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
Sep 16 21:46:02 kernel: TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
Sep 16 21:46:02 kernel: TCP: Hash tables configured (established 131072 bind 65536)
Sep 16 21:46:02 kernel: MPTCP token hash table entries: 16384 (order: 6, 393216 bytes, linear)
Sep 16 21:46:02 kernel: UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
Sep 16 21:46:02 kernel: UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
Sep 16 21:46:02 kernel: initcall inet_init+0x0/0x2f0 returned 0 after 3479 usecs
Sep 16 21:46:02 kernel: calling  af_unix_init+0x0/0x100 @ 1
Sep 16 21:46:02 kernel: NET: Registered PF_UNIX/PF_LOCAL protocol family
Sep 16 21:46:02 kernel: initcall af_unix_init+0x0/0x100 returned 0 after 9 usecs
Sep 16 21:46:02 kernel: calling  ipv6_offload_init+0x0/0xa0 @ 1
Sep 16 21:46:02 kernel: initcall ipv6_offload_init+0x0/0xa0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  vlan_offload_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall vlan_offload_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  xsk_init+0x0/0xe0 @ 1
Sep 16 21:46:02 kernel: NET: Registered PF_XDP protocol family
Sep 16 21:46:02 kernel: initcall xsk_init+0x0/0xe0 returned 0 after 2 usecs
Sep 16 21:46:02 kernel: calling  pcibios_assign_resources+0x0/0xf0 @ 1
Sep 16 21:46:02 kernel: pci 0000:00:02.0: BAR 9: assigned [mem 0x4020000000-0x40ffffffff 64bit pref]
Sep 16 21:46:02 kernel: pci 0000:00:02.0: BAR 7: assigned [mem 0x4010000000-0x4016ffffff 64bit]
Sep 16 21:46:02 kernel: pci 0000:00:15.0: BAR 0: assigned [mem 0x4017000000-0x4017000fff 64bit]
Sep 16 21:46:02 kernel: pci 0000:00:15.1: BAR 0: assigned [mem 0x4017001000-0x4017001fff 64bit]
Sep 16 21:46:02 kernel: pci 0000:00:19.0: BAR 0: assigned [mem 0x4017002000-0x4017002fff 64bit]
Sep 16 21:46:02 kernel: pci 0000:00:19.1: BAR 0: assigned [mem 0x4017003000-0x4017003fff 64bit]
Sep 16 21:46:02 kernel: pci 0000:00:1e.0: BAR 0: assigned [mem 0x4017004000-0x4017004fff 64bit]
Sep 16 21:46:02 kernel: pci 0000:00:1e.2: BAR 0: assigned [mem 0x4017005000-0x4017005fff 64bit]
Sep 16 21:46:02 kernel: pci 0000:00:1f.5: BAR 0: assigned [mem 0x80510000-0x80510fff]
Sep 16 21:46:02 kernel: pci 0000:00:06.0: PCI bridge to [bus 01]
Sep 16 21:46:02 kernel: pci 0000:00:06.0:   bridge window [mem 0x80400000-0x804fffff]
Sep 16 21:46:02 kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
Sep 16 21:46:02 kernel: pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
Sep 16 21:46:02 kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
Sep 16 21:46:02 kernel: pci_bus 0000:00: resource 7 [mem 0x80400000-0xbfffffff window]
Sep 16 21:46:02 kernel: pci_bus 0000:00: resource 8 [mem 0x4000000000-0x7fffffffff window]
Sep 16 21:46:02 kernel: pci_bus 0000:01: resource 1 [mem 0x80400000-0x804fffff]
Sep 16 21:46:02 kernel: initcall pcibios_assign_resources+0x0/0xf0 returned 0 after 2508 usecs
Sep 16 21:46:02 kernel: calling  pci_apply_final_quirks+0x0/0x170 @ 1
Sep 16 21:46:02 kernel: pci 0000:00:0d.0: calling  quirk_usb_early_handoff+0x0/0x7d0 @ 1
Sep 16 21:46:02 kernel: pci 0000:00:0d.0: quirk_usb_early_handoff+0x0/0x7d0 took 24 usecs
Sep 16 21:46:02 kernel: pci 0000:00:14.0: calling  quirk_usb_early_handoff+0x0/0x7d0 @ 1
Sep 16 21:46:02 kernel: pci 0000:00:14.0: quirk_usb_early_handoff+0x0/0x7d0 took 1509 usecs
Sep 16 21:46:02 kernel: PCI: CLS 64 bytes, default 64
Sep 16 21:46:02 kernel: initcall pci_apply_final_quirks+0x0/0x170 returned 0 after 2731 usecs
Sep 16 21:46:02 kernel: calling  acpi_reserve_resources+0x0/0x110 @ 1
Sep 16 21:46:02 kernel: initcall acpi_reserve_resources+0x0/0x110 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  p2sb_fs_init+0x0/0x190 @ 1
Sep 16 21:46:02 kernel: initcall p2sb_fs_init+0x0/0x190 returned -2 after 101 usecs
Sep 16 21:46:02 kernel: calling  populate_rootfs+0x0/0x90 @ 1
Sep 16 21:46:02 kernel: initcall populate_rootfs+0x0/0x90 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  pci_iommu_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Sep 16 21:46:02 kernel: software IO TLB: mapped [mem 0x000000005f0fb000-0x00000000630fb000] (64MB)
Sep 16 21:46:02 kernel: initcall pci_iommu_init+0x0/0x40 returned 0 after 15 usecs
Sep 16 21:46:02 kernel: calling  ir_dev_scope_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall ir_dev_scope_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: Trying to unpack rootfs image as initramfs...
Sep 16 21:46:02 kernel: calling  ia32_binfmt_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall ia32_binfmt_init+0x0/0x30 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  amd_ibs_init+0x0/0x420 @ 1
Sep 16 21:46:02 kernel: initcall amd_ibs_init+0x0/0x420 returned -19 after 0 usecs
Sep 16 21:46:02 kernel: calling  amd_iommu_pc_init+0x0/0x290 @ 1
Sep 16 21:46:02 kernel: initcall amd_iommu_pc_init+0x0/0x290 returned -19 after 0 usecs
Sep 16 21:46:02 kernel: calling  msr_init+0x0/0x70 @ 1
Sep 16 21:46:02 kernel: initcall msr_init+0x0/0x70 returned 0 after 5 usecs
Sep 16 21:46:02 kernel: calling  register_kernel_offset_dumper+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall register_kernel_offset_dumper+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  i8259A_init_ops+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall i8259A_init_ops+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_tsc_clocksource+0x0/0xd0 @ 1
Sep 16 21:46:02 kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x26bef67878b, max_idle_ns: 440795293631 ns
Sep 16 21:46:02 kernel: clocksource: Switched to clocksource tsc
Sep 16 21:46:02 kernel: initcall init_tsc_clocksource+0x0/0xd0 returned 0 after 163 usecs
Sep 16 21:46:02 kernel: calling  add_rtc_cmos+0x0/0xa0 @ 1
Sep 16 21:46:02 kernel: initcall add_rtc_cmos+0x0/0xa0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  i8237A_init_ops+0x0/0x50 @ 1
Sep 16 21:46:02 kernel: initcall i8237A_init_ops+0x0/0x50 returned -19 after 35 usecs
Sep 16 21:46:02 kernel: calling  umwait_init+0x0/0xb0 @ 1
Sep 16 21:46:02 kernel: initcall umwait_init+0x0/0xb0 returned 0 after 6390 usecs
Sep 16 21:46:02 kernel: calling  sgx_init+0x0/0x480 @ 1
Sep 16 21:46:02 kernel: initcall sgx_init+0x0/0x480 returned -19 after 0 usecs
Sep 16 21:46:02 kernel: calling  msr_init+0x0/0xe0 @ 1
Sep 16 21:46:02 kernel: initcall msr_init+0x0/0xe0 returned 0 after 4027 usecs
Sep 16 21:46:02 kernel: calling  cpuid_init+0x0/0xe0 @ 1
Sep 16 21:46:02 kernel: initcall cpuid_init+0x0/0xe0 returned 0 after 663 usecs
Sep 16 21:46:02 kernel: calling  ioapic_init_ops+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall ioapic_init_ops+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  register_e820_pmem+0x0/0x80 @ 1
Sep 16 21:46:02 kernel: initcall register_e820_pmem+0x0/0x80 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  add_pcspkr+0x0/0x80 @ 1
Sep 16 21:46:02 kernel: initcall add_pcspkr+0x0/0x80 returned 0 after 21 usecs
Sep 16 21:46:02 kernel: calling  start_periodic_check_for_corruption+0x0/0x60 @ 1
Sep 16 21:46:02 kernel: initcall start_periodic_check_for_corruption+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  snp_init_platform_device+0x0/0xa0 @ 1
Sep 16 21:46:02 kernel: initcall snp_init_platform_device+0x0/0xa0 returned -19 after 0 usecs
Sep 16 21:46:02 kernel: calling  audit_classes_init+0x0/0xc0 @ 1
Sep 16 21:46:02 kernel: initcall audit_classes_init+0x0/0xc0 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  pt_dump_init+0x0/0x90 @ 1
Sep 16 21:46:02 kernel: initcall pt_dump_init+0x0/0x90 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  iosf_mbi_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall iosf_mbi_init+0x0/0x30 returned 0 after 8 usecs
Sep 16 21:46:02 kernel: calling  proc_execdomains_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall proc_execdomains_init+0x0/0x30 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  register_warn_debugfs+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall register_warn_debugfs+0x0/0x30 returned 0 after 7 usecs
Sep 16 21:46:02 kernel: calling  cpuhp_sysfs_init+0x0/0xf0 @ 1
Sep 16 21:46:02 kernel: initcall cpuhp_sysfs_init+0x0/0xf0 returned 0 after 27 usecs
Sep 16 21:46:02 kernel: calling  ioresources_init+0x0/0x60 @ 1
Sep 16 21:46:02 kernel: initcall ioresources_init+0x0/0x60 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  psi_proc_init+0x0/0xa0 @ 1
Sep 16 21:46:02 kernel: initcall psi_proc_init+0x0/0xa0 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  snapshot_device_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall snapshot_device_init+0x0/0x20 returned 0 after 11 usecs
Sep 16 21:46:02 kernel: calling  irq_gc_init_ops+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall irq_gc_init_ops+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  irq_pm_init_ops+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall irq_pm_init_ops+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  module_debugfs_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall module_debugfs_init+0x0/0x30 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  proc_modules_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall proc_modules_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  unloaded_tainted_modules_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall unloaded_tainted_modules_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  timer_sysctl_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall timer_sysctl_init+0x0/0x30 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  timekeeping_init_ops+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall timekeeping_init_ops+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_clocksource_sysfs+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall init_clocksource_sysfs+0x0/0x30 returned 0 after 16 usecs
Sep 16 21:46:02 kernel: calling  init_timer_list_procfs+0x0/0x50 @ 1
Sep 16 21:46:02 kernel: initcall init_timer_list_procfs+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  alarmtimer_init+0x0/0xf0 @ 1
Sep 16 21:46:02 kernel: initcall alarmtimer_init+0x0/0xf0 returned 0 after 20 usecs
Sep 16 21:46:02 kernel: calling  init_posix_timers+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall init_posix_timers+0x0/0x40 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  clockevents_init_sysfs+0x0/0xd0 @ 1
Sep 16 21:46:02 kernel: initcall clockevents_init_sysfs+0x0/0xd0 returned 0 after 101 usecs
Sep 16 21:46:02 kernel: calling  proc_dma_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall proc_dma_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  kallsyms_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall kallsyms_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  pid_namespaces_init+0x0/0x70 @ 1
Sep 16 21:46:02 kernel: initcall pid_namespaces_init+0x0/0x70 returned 0 after 4 usecs
Sep 16 21:46:02 kernel: calling  ikconfig_init+0x0/0x50 @ 1
Sep 16 21:46:02 kernel: initcall ikconfig_init+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  audit_watch_init+0x0/0x50 @ 1
Sep 16 21:46:02 kernel: initcall audit_watch_init+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  audit_fsnotify_init+0x0/0x50 @ 1
Sep 16 21:46:02 kernel: initcall audit_fsnotify_init+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  audit_tree_init+0x0/0xa0 @ 1
Sep 16 21:46:02 kernel: initcall audit_tree_init+0x0/0xa0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  seccomp_sysctl_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall seccomp_sysctl_init+0x0/0x30 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  utsname_sysctl_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall utsname_sysctl_init+0x0/0x30 returned 0 after 2 usecs
Sep 16 21:46:02 kernel: calling  init_tracepoints+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall init_tracepoints+0x0/0x40 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  stack_trace_init+0x0/0xc0 @ 1
Sep 16 21:46:02 kernel: initcall stack_trace_init+0x0/0xc0 returned 0 after 7 usecs
Sep 16 21:46:02 kernel: calling  init_mmio_trace+0x0/0x10 @ 1
Sep 16 21:46:02 kernel: initcall init_mmio_trace+0x0/0x10 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  init_blk_tracer+0x0/0x60 @ 1
Sep 16 21:46:02 kernel: initcall init_blk_tracer+0x0/0x60 returned 0 after 4 usecs
Sep 16 21:46:02 kernel: calling  perf_event_sysfs_init+0x0/0xb0 @ 1
Sep 16 21:46:02 kernel: initcall perf_event_sysfs_init+0x0/0xb0 returned 0 after 89 usecs
Sep 16 21:46:02 kernel: calling  system_trusted_keyring_init+0x0/0x100 @ 1
Sep 16 21:46:02 kernel: Initialise system trusted keyrings
Sep 16 21:46:02 kernel: initcall system_trusted_keyring_init+0x0/0x100 returned 0 after 7 usecs
Sep 16 21:46:02 kernel: calling  blacklist_init+0x0/0x100 @ 1
Sep 16 21:46:02 kernel: Key type blacklist registered
Sep 16 21:46:02 kernel: initcall blacklist_init+0x0/0x100 returned 0 after 3 usecs
Sep 16 21:46:02 kernel: calling  kswapd_init+0x0/0x80 @ 1
Sep 16 21:46:02 kernel: initcall kswapd_init+0x0/0x80 returned 0 after 80 usecs
Sep 16 21:46:02 kernel: calling  extfrag_debug_init+0x0/0x60 @ 1
Sep 16 21:46:02 kernel: initcall extfrag_debug_init+0x0/0x60 returned 0 after 2 usecs
Sep 16 21:46:02 kernel: calling  mm_compute_batch_init+0x0/0x80 @ 1
Sep 16 21:46:02 kernel: initcall mm_compute_batch_init+0x0/0x80 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  slab_proc_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall slab_proc_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  workingset_init+0x0/0xc0 @ 1
Sep 16 21:46:02 kernel: workingset: timestamp_bits=41 max_order=22 bucket_order=0
Sep 16 21:46:02 kernel: initcall workingset_init+0x0/0xc0 returned 0 after 3 usecs
Sep 16 21:46:02 kernel: calling  proc_vmalloc_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall proc_vmalloc_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  procswaps_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall procswaps_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  slab_debugfs_init+0x0/0x90 @ 1
Sep 16 21:46:02 kernel: initcall slab_debugfs_init+0x0/0x90 returned 0 after 2 usecs
Sep 16 21:46:02 kernel: calling  init_zbud+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: zbud: loaded
Sep 16 21:46:02 kernel: initcall init_zbud+0x0/0x30 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  zs_init+0x0/0x90 @ 1
Sep 16 21:46:02 kernel: initcall zs_init+0x0/0x90 returned 0 after 12 usecs
Sep 16 21:46:02 kernel: calling  init_z3fold+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall init_z3fold+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  damon_dbgfs_init+0x0/0x1a0 @ 1
Sep 16 21:46:02 kernel: initcall damon_dbgfs_init+0x0/0x1a0 returned 0 after 5 usecs
Sep 16 21:46:02 kernel: calling  damon_reclaim_init+0x0/0x60 @ 1
Sep 16 21:46:02 kernel: initcall damon_reclaim_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  damon_lru_sort_init+0x0/0x60 @ 1
Sep 16 21:46:02 kernel: initcall damon_lru_sort_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  fcntl_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall fcntl_init+0x0/0x40 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  proc_filesystems_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall proc_filesystems_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  start_dirtytime_writeback+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall start_dirtytime_writeback+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  dio_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall dio_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  dnotify_init+0x0/0xb0 @ 1
Sep 16 21:46:02 kernel: initcall dnotify_init+0x0/0xb0 returned 0 after 9 usecs
Sep 16 21:46:02 kernel: calling  fanotify_user_setup+0x0/0x170 @ 1
Sep 16 21:46:02 kernel: initcall fanotify_user_setup+0x0/0x170 returned 0 after 3 usecs
Sep 16 21:46:02 kernel: calling  userfaultfd_init+0x0/0x70 @ 1
Sep 16 21:46:02 kernel: initcall userfaultfd_init+0x0/0x70 returned 0 after 18 usecs
Sep 16 21:46:02 kernel: calling  aio_setup+0x0/0xa0 @ 1
Sep 16 21:46:02 kernel: initcall aio_setup+0x0/0xa0 returned 0 after 16 usecs
Sep 16 21:46:02 kernel: calling  init_devpts_fs+0x0/0x50 @ 1
Sep 16 21:46:02 kernel: initcall init_devpts_fs+0x0/0x50 returned 0 after 3 usecs
Sep 16 21:46:02 kernel: calling  init_nls_cp437+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall init_nls_cp437+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_nls_ascii+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall init_nls_ascii+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_autofs_fs+0x0/0x50 @ 1
Sep 16 21:46:02 kernel: initcall init_autofs_fs+0x0/0x50 returned 0 after 11 usecs
Sep 16 21:46:02 kernel: calling  efivarfs_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall efivarfs_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  ipc_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall ipc_init+0x0/0x30 returned 0 after 5 usecs
Sep 16 21:46:02 kernel: calling  ipc_sysctl_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall ipc_sysctl_init+0x0/0x40 returned 0 after 7 usecs
Sep 16 21:46:02 kernel: calling  init_mqueue_fs+0x0/0xc0 @ 1
Sep 16 21:46:02 kernel: initcall init_mqueue_fs+0x0/0xc0 returned 0 after 15 usecs
Sep 16 21:46:02 kernel: calling  key_proc_init+0x0/0x70 @ 1
Sep 16 21:46:02 kernel: initcall key_proc_init+0x0/0x70 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  selinux_nf_ip_init+0x0/0x50 @ 1
Sep 16 21:46:02 kernel: initcall selinux_nf_ip_init+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_sel_fs+0x0/0x130 @ 1
Sep 16 21:46:02 kernel: initcall init_sel_fs+0x0/0x130 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  selnl_init+0x0/0xc0 @ 1
Sep 16 21:46:02 kernel: initcall selnl_init+0x0/0xc0 returned 0 after 2 usecs
Sep 16 21:46:02 kernel: calling  sel_netif_init+0x0/0x70 @ 1
Sep 16 21:46:02 kernel: initcall sel_netif_init+0x0/0x70 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  sel_netnode_init+0x0/0x70 @ 1
Sep 16 21:46:02 kernel: initcall sel_netnode_init+0x0/0x70 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  sel_netport_init+0x0/0x60 @ 1
Sep 16 21:46:02 kernel: initcall sel_netport_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  aurule_init+0x0/0x50 @ 1
Sep 16 21:46:02 kernel: initcall aurule_init+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_smk_fs+0x0/0x1e0 @ 1
Sep 16 21:46:02 kernel: initcall init_smk_fs+0x0/0x1e0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  smack_nf_ip_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall smack_nf_ip_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  apparmor_nf_ip_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall apparmor_nf_ip_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  platform_keyring_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: integrity: Platform Keyring initialized
Sep 16 21:46:02 kernel: initcall platform_keyring_init+0x0/0x30 returned 0 after 2 usecs
Sep 16 21:46:02 kernel: calling  machine_keyring_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: integrity: Machine keyring initialized
Sep 16 21:46:02 kernel: initcall machine_keyring_init+0x0/0x30 returned 0 after 2 usecs
Sep 16 21:46:02 kernel: calling  crc64_rocksoft_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall crc64_rocksoft_init+0x0/0x20 returned 0 after 3 usecs
Sep 16 21:46:02 kernel: calling  jent_mod_init+0x0/0xf0 @ 1
Sep 16 21:46:02 kernel: initcall jent_mod_init+0x0/0xf0 returned 0 after 6753 usecs
Sep 16 21:46:02 kernel: calling  asymmetric_key_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: Key type asymmetric registered
Sep 16 21:46:02 kernel: initcall asymmetric_key_init+0x0/0x20 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  x509_key_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: Asymmetric key parser 'x509' registered
Sep 16 21:46:02 kernel: initcall x509_key_init+0x0/0x20 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  crypto_kdf108_init+0x0/0x10 @ 1
Sep 16 21:46:02 kernel: initcall crypto_kdf108_init+0x0/0x10 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  blkdev_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall blkdev_init+0x0/0x30 returned 0 after 9 usecs
Sep 16 21:46:02 kernel: calling  proc_genhd_init+0x0/0x50 @ 1
Sep 16 21:46:02 kernel: initcall proc_genhd_init+0x0/0x50 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  bsg_init+0x0/0xa0 @ 1
Sep 16 21:46:02 kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 242)
Sep 16 21:46:02 kernel: initcall bsg_init+0x0/0xa0 returned 0 after 4 usecs
Sep 16 21:46:02 kernel: calling  throtl_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall throtl_init+0x0/0x40 returned 0 after 70 usecs
Sep 16 21:46:02 kernel: calling  ioprio_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall ioprio_init+0x0/0x20 returned 0 after 2 usecs
Sep 16 21:46:02 kernel: calling  iolatency_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall iolatency_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  ioc_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall ioc_init+0x0/0x20 returned 0 after 2 usecs
Sep 16 21:46:02 kernel: calling  deadline_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: io scheduler mq-deadline registered
Sep 16 21:46:02 kernel: initcall deadline_init+0x0/0x20 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  kyber_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: io scheduler kyber registered
Sep 16 21:46:02 kernel: initcall kyber_init+0x0/0x20 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  bfq_init+0x0/0xb0 @ 1
Sep 16 21:46:02 kernel: io scheduler bfq registered
Sep 16 21:46:02 kernel: initcall bfq_init+0x0/0xb0 returned 0 after 7 usecs
Sep 16 21:46:02 kernel: calling  io_uring_init+0x0/0x80 @ 1
Sep 16 21:46:02 kernel: initcall io_uring_init+0x0/0x80 returned 0 after 12 usecs
Sep 16 21:46:02 kernel: calling  blake2s_mod_init+0x0/0x10 @ 1
Sep 16 21:46:02 kernel: initcall blake2s_mod_init+0x0/0x10 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  btree_module_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall btree_module_init+0x0/0x30 returned 0 after 3 usecs
Sep 16 21:46:02 kernel: calling  crc_t10dif_mod_init+0x0/0x60 @ 1
Sep 16 21:46:02 kernel: initcall crc_t10dif_mod_init+0x0/0x60 returned 0 after 44 usecs
Sep 16 21:46:02 kernel: calling  crc64_rocksoft_mod_init+0x0/0x60 @ 1
Sep 16 21:46:02 kernel: initcall crc64_rocksoft_mod_init+0x0/0x60 returned 0 after 33 usecs
Sep 16 21:46:02 kernel: calling  percpu_counter_startup+0x0/0x70 @ 1
Sep 16 21:46:02 kernel: initcall percpu_counter_startup+0x0/0x70 returned 0 after 84 usecs
Sep 16 21:46:02 kernel: calling  digsig_init+0x0/0x50 @ 1
Sep 16 21:46:02 kernel: initcall digsig_init+0x0/0x50 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  phy_core_init+0x0/0x70 @ 1
Sep 16 21:46:02 kernel: initcall phy_core_init+0x0/0x70 returned 0 after 4 usecs
Sep 16 21:46:02 kernel: calling  amd_gpio_driver_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall amd_gpio_driver_init+0x0/0x20 returned 0 after 31 usecs
Sep 16 21:46:02 kernel: calling  adl_pinctrl_driver_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall adl_pinctrl_driver_init+0x0/0x20 returned 0 after 10 usecs
Sep 16 21:46:02 kernel: calling  cnl_pinctrl_driver_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall cnl_pinctrl_driver_init+0x0/0x20 returned 0 after 10 usecs
Sep 16 21:46:02 kernel: calling  ehl_pinctrl_driver_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall ehl_pinctrl_driver_init+0x0/0x20 returned 0 after 9 usecs
Sep 16 21:46:02 kernel: calling  ebg_pinctrl_driver_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall ebg_pinctrl_driver_init+0x0/0x20 returned 0 after 9 usecs
Sep 16 21:46:02 kernel: calling  icl_pinctrl_driver_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall icl_pinctrl_driver_init+0x0/0x20 returned 0 after 9 usecs
Sep 16 21:46:02 kernel: calling  jsl_pinctrl_driver_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall jsl_pinctrl_driver_init+0x0/0x20 returned 0 after 9 usecs
Sep 16 21:46:02 kernel: calling  lkf_pinctrl_driver_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall lkf_pinctrl_driver_init+0x0/0x20 returned 0 after 9 usecs
Sep 16 21:46:02 kernel: calling  lbg_pinctrl_driver_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall lbg_pinctrl_driver_init+0x0/0x20 returned 0 after 8 usecs
Sep 16 21:46:02 kernel: calling  mtl_pinctrl_driver_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall mtl_pinctrl_driver_init+0x0/0x20 returned 0 after 9 usecs
Sep 16 21:46:02 kernel: calling  tgl_pinctrl_driver_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: Freeing initrd memory: 21956K
Sep 16 21:46:02 kernel: probe of INTC1055:00 returned 0 after 8012 usecs
Sep 16 21:46:02 kernel: initcall tgl_pinctrl_driver_init+0x0/0x20 returned 0 after 8025 usecs
Sep 16 21:46:02 kernel: calling  crystalcove_pwm_driver_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall crystalcove_pwm_driver_init+0x0/0x20 returned 0 after 7 usecs
Sep 16 21:46:02 kernel: calling  pcie_portdrv_init+0x0/0x60 @ 1
Sep 16 21:46:02 kernel: pcieport 0000:00:06.0: PME: Signaling with IRQ 122
Sep 16 21:46:02 kernel: probe of 0000:00:06.0:pcie001 returned 0 after 61 usecs
Sep 16 21:46:02 kernel: probe of 0000:00:06.0 returned 0 after 444 usecs
Sep 16 21:46:02 kernel: initcall pcie_portdrv_init+0x0/0x60 returned 0 after 463 usecs
Sep 16 21:46:02 kernel: calling  pci_proc_init+0x0/0x80 @ 1
Sep 16 21:46:02 kernel: initcall pci_proc_init+0x0/0x80 returned 0 after 9 usecs
Sep 16 21:46:02 kernel: calling  pci_hotplug_init+0x0/0x50 @ 1
Sep 16 21:46:02 kernel: initcall pci_hotplug_init+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  shpcd_init+0x0/0x70 @ 1
Sep 16 21:46:02 kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Sep 16 21:46:02 kernel: initcall shpcd_init+0x0/0x70 returned 0 after 5 usecs
Sep 16 21:46:02 kernel: calling  pci_stub_init+0x0/0x1a0 @ 1
Sep 16 21:46:02 kernel: initcall pci_stub_init+0x0/0x1a0 returned 0 after 3 usecs
Sep 16 21:46:02 kernel: calling  dw_plat_pcie_driver_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall dw_plat_pcie_driver_init+0x0/0x20 returned 0 after 6 usecs
Sep 16 21:46:02 kernel: calling  meson_pcie_driver_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall meson_pcie_driver_init+0x0/0x20 returned 0 after 7 usecs
Sep 16 21:46:02 kernel: calling  vesafb_driver_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall vesafb_driver_init+0x0/0x20 returned 0 after 6 usecs
Sep 16 21:46:02 kernel: calling  efifb_driver_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall efifb_driver_init+0x0/0x20 returned 0 after 6 usecs
Sep 16 21:46:02 kernel: calling  intel_idle_init+0x0/0xcb0 @ 1
Sep 16 21:46:02 kernel: initcall intel_idle_init+0x0/0xcb0 returned 0 after 823 usecs
Sep 16 21:46:02 kernel: calling  ged_driver_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall ged_driver_init+0x0/0x20 returned 0 after 10 usecs
Sep 16 21:46:02 kernel: calling  acpi_ac_init+0x0/0x50 @ 1
Sep 16 21:46:02 kernel: ACPI: AC: AC Adapter [AC0] (off-line)
Sep 16 21:46:02 kernel: probe of ACPI0003:00 returned 0 after 11556 usecs
Sep 16 21:46:02 kernel: initcall acpi_ac_init+0x0/0x50 returned 0 after 11658 usecs
Sep 16 21:46:02 kernel: calling  acpi_button_driver_init+0x0/0x60 @ 1
Sep 16 21:46:02 kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:1d/PNP0C09:00/PNP0C0D:00/input/input0
Sep 16 21:46:02 kernel: ACPI: button: Lid Switch [LID]
Sep 16 21:46:02 kernel: probe of PNP0C0D:00 returned 0 after 52 usecs
Sep 16 21:46:02 kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:1d/PNP0C09:00/PNP0C0C:00/input/input1
Sep 16 21:46:02 kernel: ACPI: button: Power Button [PWRB]
Sep 16 21:46:02 kernel: probe of PNP0C0C:00 returned 0 after 33 usecs
Sep 16 21:46:02 kernel: initcall acpi_button_driver_init+0x0/0x60 returned 0 after 161 usecs
Sep 16 21:46:02 kernel: calling  acpi_fan_driver_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: probe of INTC1048:00 returned 0 after 101 usecs
Sep 16 21:46:02 kernel: probe of PNP0C0B:00 returned 0 after 11 usecs
Sep 16 21:46:02 kernel: probe of PNP0C0B:01 returned 0 after 10 usecs
Sep 16 21:46:02 kernel: probe of PNP0C0B:02 returned 0 after 8 usecs
Sep 16 21:46:02 kernel: probe of PNP0C0B:03 returned 0 after 8 usecs
Sep 16 21:46:02 kernel: probe of PNP0C0B:04 returned 0 after 8 usecs
Sep 16 21:46:02 kernel: initcall acpi_fan_driver_init+0x0/0x20 returned 0 after 227 usecs
Sep 16 21:46:02 kernel: calling  acpi_processor_driver_init+0x0/0xc0 @ 1
Sep 16 21:46:02 kernel: probe of cpu0 returned 0 after 246 usecs
Sep 16 21:46:02 kernel: probe of cpu1 returned 0 after 173 usecs
Sep 16 21:46:02 kernel: probe of cpu2 returned 0 after 167 usecs
Sep 16 21:46:02 kernel: probe of cpu3 returned 0 after 167 usecs
Sep 16 21:46:02 kernel: probe of cpu4 returned 0 after 166 usecs
Sep 16 21:46:02 kernel: probe of cpu5 returned 0 after 167 usecs
Sep 16 21:46:02 kernel: probe of cpu6 returned 0 after 165 usecs
Sep 16 21:46:02 kernel: probe of cpu7 returned 0 after 166 usecs
Sep 16 21:46:02 kernel: probe of cpu8 returned 0 after 165 usecs
Sep 16 21:46:02 kernel: probe of cpu9 returned 0 after 174 usecs
Sep 16 21:46:02 kernel: probe of cpu10 returned 0 after 461 usecs
Sep 16 21:46:02 kernel: probe of cpu11 returned 0 after 221 usecs
Sep 16 21:46:02 kernel: probe of cpu12 returned 0 after 172 usecs
Sep 16 21:46:02 kernel: probe of cpu13 returned 0 after 171 usecs
Sep 16 21:46:02 kernel: probe of cpu14 returned 0 after 167 usecs
Sep 16 21:46:02 kernel: probe of cpu15 returned 0 after 167 usecs
Sep 16 21:46:02 kernel: probe of cpu16 returned 0 after 167 usecs
Sep 16 21:46:02 kernel: probe of cpu17 returned 0 after 169 usecs
Sep 16 21:46:02 kernel: probe of cpu18 returned 0 after 168 usecs
Sep 16 21:46:02 kernel: probe of cpu19 returned 0 after 168 usecs
Sep 16 21:46:02 kernel: initcall acpi_processor_driver_init+0x0/0xc0 returned 0 after 3859 usecs
Sep 16 21:46:02 kernel: calling  acpi_thermal_init+0x0/0x90 @ 1
Sep 16 21:46:02 kernel: thermal LNXTHERM:00: registered as thermal_zone0
Sep 16 21:46:02 kernel: ACPI: thermal: Thermal Zone [TZ00] (28 C)
Sep 16 21:46:02 kernel: probe of LNXTHERM:00 returned 0 after 285 usecs
Sep 16 21:46:02 kernel: initcall acpi_thermal_init+0x0/0x90 returned 0 after 589 usecs
Sep 16 21:46:02 kernel: calling  acpi_battery_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall acpi_battery_init+0x0/0x40 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  acpi_hed_driver_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall acpi_hed_driver_init+0x0/0x20 returned 0 after 18 usecs
Sep 16 21:46:02 kernel: calling  bgrt_init+0x0/0xd0 @ 1
Sep 16 21:46:02 kernel: initcall bgrt_init+0x0/0xd0 returned 0 after 15 usecs
Sep 16 21:46:02 kernel: calling  erst_init+0x0/0x360 @ 1
Sep 16 21:46:02 kernel: initcall erst_init+0x0/0x360 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  intel_crc_pmic_opregion_driver_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall intel_crc_pmic_opregion_driver_init+0x0/0x20 returned 0 after 20 usecs
Sep 16 21:46:02 kernel: calling  intel_chtcrc_pmic_opregion_driver_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall intel_chtcrc_pmic_opregion_driver_init+0x0/0x20 returned 0 after 6 usecs
Sep 16 21:46:02 kernel: calling  intel_xpower_pmic_opregion_driver_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall intel_xpower_pmic_opregion_driver_init+0x0/0x20 returned 0 after 5 usecs
Sep 16 21:46:02 kernel: calling  intel_bxtwc_pmic_opregion_driver_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall intel_bxtwc_pmic_opregion_driver_init+0x0/0x20 returned 0 after 9 usecs
Sep 16 21:46:02 kernel: calling  intel_cht_wc_pmic_opregion_driver_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall intel_cht_wc_pmic_opregion_driver_init+0x0/0x20 returned 0 after 5 usecs
Sep 16 21:46:02 kernel: calling  chtdc_ti_pmic_opregion_driver_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall chtdc_ti_pmic_opregion_driver_init+0x0/0x20 returned 0 after 6 usecs
Sep 16 21:46:02 kernel: calling  tps68470_pmic_opregion_driver_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall tps68470_pmic_opregion_driver_init+0x0/0x20 returned 0 after 5 usecs
Sep 16 21:46:02 kernel: calling  gpio_clk_driver_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall gpio_clk_driver_init+0x0/0x20 returned 0 after 7 usecs
Sep 16 21:46:02 kernel: calling  fch_clk_driver_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall fch_clk_driver_init+0x0/0x20 returned 0 after 5 usecs
Sep 16 21:46:02 kernel: calling  plt_clk_driver_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall plt_clk_driver_init+0x0/0x20 returned 0 after 5 usecs
Sep 16 21:46:02 kernel: calling  dw_pci_driver_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall dw_pci_driver_init+0x0/0x20 returned 0 after 7 usecs
Sep 16 21:46:02 kernel: calling  intel_ldma_driver_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall intel_ldma_driver_init+0x0/0x20 returned 0 after 5 usecs
Sep 16 21:46:02 kernel: calling  xenbus_probe_initcall+0x0/0xc0 @ 1
Sep 16 21:46:02 kernel: initcall xenbus_probe_initcall+0x0/0xc0 returned -19 after 0 usecs
Sep 16 21:46:02 kernel: calling  xenbus_init+0x0/0x50 @ 1
Sep 16 21:46:02 kernel: initcall xenbus_init+0x0/0x50 returned -19 after 0 usecs
Sep 16 21:46:02 kernel: calling  xenbus_backend_init+0x0/0x60 @ 1
Sep 16 21:46:02 kernel: initcall xenbus_backend_init+0x0/0x60 returned -19 after 0 usecs
Sep 16 21:46:02 kernel: calling  hyper_sysfs_init+0x0/0x240 @ 1
Sep 16 21:46:02 kernel: initcall hyper_sysfs_init+0x0/0x240 returned -19 after 0 usecs
Sep 16 21:46:02 kernel: calling  hypervisor_subsys_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall hypervisor_subsys_init+0x0/0x40 returned -19 after 0 usecs
Sep 16 21:46:02 kernel: calling  platform_driver_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall platform_driver_init+0x0/0x20 returned 0 after 4 usecs
Sep 16 21:46:02 kernel: calling  xen_late_init_mcelog+0x0/0x80 @ 1
Sep 16 21:46:02 kernel: initcall xen_late_init_mcelog+0x0/0x80 returned -19 after 0 usecs
Sep 16 21:46:02 kernel: calling  pvcalls_back_init+0x0/0xb0 @ 1
Sep 16 21:46:02 kernel: initcall pvcalls_back_init+0x0/0xb0 returned -19 after 0 usecs
Sep 16 21:46:02 kernel: calling  n_null_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall n_null_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  pty_init+0x0/0x230 @ 1
Sep 16 21:46:02 kernel: initcall pty_init+0x0/0x230 returned 0 after 97 usecs
Sep 16 21:46:02 kernel: calling  sysrq_init+0x0/0x80 @ 1
Sep 16 21:46:02 kernel: initcall sysrq_init+0x0/0x80 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  xen_hvc_init+0x0/0x240 @ 1
Sep 16 21:46:02 kernel: initcall xen_hvc_init+0x0/0x240 returned -19 after 0 usecs
Sep 16 21:46:02 kernel: calling  serial8250_init+0x0/0x1f0 @ 1
Sep 16 21:46:02 kernel: Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Sep 16 21:46:02 kernel: probe of serial8250:0 returned 0 after 3 usecs
Sep 16 21:46:02 kernel: probe of serial8250:0.0 returned 0 after 2 usecs
Sep 16 21:46:02 kernel: probe of serial8250:0.1 returned 0 after 2 usecs
Sep 16 21:46:02 kernel: probe of serial8250:0.2 returned 0 after 2 usecs
Sep 16 21:46:02 kernel: probe of serial8250:0.3 returned 0 after 2 usecs
Sep 16 21:46:02 kernel: probe of serial8250:0.4 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: probe of serial8250:0.5 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: probe of serial8250:0.6 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: probe of serial8250:0.7 returned 0 after 2 usecs
Sep 16 21:46:02 kernel: probe of serial8250:0.8 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: probe of serial8250:0.9 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: probe of serial8250:0.10 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: probe of serial8250:0.11 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: probe of serial8250:0.12 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: probe of serial8250:0.13 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: probe of serial8250:0.14 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: probe of serial8250:0.15 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: probe of serial8250:0.16 returned 0 after 2 usecs
Sep 16 21:46:02 kernel: probe of serial8250:0.17 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: probe of serial8250:0.18 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: probe of serial8250:0.19 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: probe of serial8250:0.20 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: probe of serial8250:0.21 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: probe of serial8250:0.22 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: probe of serial8250:0.23 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: probe of serial8250:0.24 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: probe of serial8250:0.25 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: probe of serial8250:0.26 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: probe of serial8250:0.27 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: probe of serial8250:0.28 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: probe of serial8250:0.29 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: probe of serial8250:0.30 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: probe of serial8250:0.31 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: probe of serial8250 returned 0 after 3 usecs
Sep 16 21:46:02 kernel: initcall serial8250_init+0x0/0x1f0 returned 0 after 1813 usecs
Sep 16 21:46:02 kernel: calling  serial_pci_driver_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall serial_pci_driver_init+0x0/0x20 returned 0 after 13 usecs
Sep 16 21:46:02 kernel: calling  lpss8250_pci_driver_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall lpss8250_pci_driver_init+0x0/0x20 returned 0 after 3 usecs
Sep 16 21:46:02 kernel: calling  mid8250_pci_driver_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall mid8250_pci_driver_init+0x0/0x20 returned 0 after 3 usecs
Sep 16 21:46:02 kernel: calling  pericom8250_pci_driver_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall pericom8250_pci_driver_init+0x0/0x20 returned 0 after 3 usecs
Sep 16 21:46:02 kernel: calling  random_sysctls_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall random_sysctls_init+0x0/0x30 returned 0 after 3 usecs
Sep 16 21:46:02 kernel: calling  hpet_init+0x0/0xa0 @ 1
Sep 16 21:46:02 kernel: hpet_acpi_add: no address or irqs in _CRS
Sep 16 21:46:02 kernel: probe of PNP0103:00 returned 19 after 1994 usecs
Sep 16 21:46:02 kernel: initcall hpet_init+0x0/0xa0 returned 0 after 2030 usecs
Sep 16 21:46:02 kernel: calling  nvram_module_init+0x0/0xa0 @ 1
Sep 16 21:46:02 kernel: Non-volatile memory driver v1.3
Sep 16 21:46:02 kernel: initcall nvram_module_init+0x0/0xa0 returned 0 after 16 usecs
Sep 16 21:46:02 kernel: calling  agp_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: Linux agpgart interface v0.103
Sep 16 21:46:02 kernel: initcall agp_init+0x0/0x40 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  init_tis+0x0/0x100 @ 1
Sep 16 21:46:02 kernel: probe of INTC6001:00 returned 19 after 106 usecs
Sep 16 21:46:02 kernel: initcall init_tis+0x0/0x100 returned 0 after 124 usecs
Sep 16 21:46:02 kernel: calling  crb_acpi_driver_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: probe of INTC6001:00 returned 0 after 7127 usecs
Sep 16 21:46:02 kernel: initcall crb_acpi_driver_init+0x0/0x30 returned 0 after 7151 usecs
Sep 16 21:46:02 kernel: calling  amd_iommu_v2_init+0x0/0x80 @ 1
Sep 16 21:46:02 kernel: AMD-Vi: AMD IOMMUv2 functionality not available on this system - This is not a bug.
Sep 16 21:46:02 kernel: initcall amd_iommu_v2_init+0x0/0x80 returned 0 after 2 usecs
Sep 16 21:46:02 kernel: calling  drm_core_init+0x0/0x110 @ 1
Sep 16 21:46:02 kernel: ACPI: bus type drm_connector registered
Sep 16 21:46:02 kernel: initcall drm_core_init+0x0/0x110 returned 0 after 651 usecs
Sep 16 21:46:02 kernel: calling  simpledrm_platform_driver_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall simpledrm_platform_driver_init+0x0/0x20 returned 0 after 10 usecs
Sep 16 21:46:02 kernel: calling  cn_proc_init+0x0/0x50 @ 1
Sep 16 21:46:02 kernel: initcall cn_proc_init+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  topology_sysfs_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall topology_sysfs_init+0x0/0x30 returned 0 after 80 usecs
Sep 16 21:46:02 kernel: calling  cacheinfo_sysfs_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall cacheinfo_sysfs_init+0x0/0x30 returned 0 after 1527 usecs
Sep 16 21:46:02 kernel: calling  devcoredump_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall devcoredump_init+0x0/0x20 returned 0 after 3 usecs
Sep 16 21:46:02 kernel: calling  twl_driver_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall twl_driver_init+0x0/0x20 returned 0 after 3 usecs
Sep 16 21:46:02 kernel: calling  twl4030_audio_driver_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall twl4030_audio_driver_init+0x0/0x20 returned 0 after 6 usecs
Sep 16 21:46:02 kernel: calling  twl6040_driver_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall twl6040_driver_init+0x0/0x20 returned 0 after 2 usecs
Sep 16 21:46:02 kernel: calling  adp5520_driver_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall adp5520_driver_init+0x0/0x20 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  crystal_cove_i2c_driver_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall crystal_cove_i2c_driver_init+0x0/0x20 returned 0 after 2 usecs
Sep 16 21:46:02 kernel: calling  cht_wc_driver_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall cht_wc_driver_init+0x0/0x20 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  hmem_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall hmem_init+0x0/0x40 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  system_heap_create+0x0/0x70 @ 1
Sep 16 21:46:02 kernel: initcall system_heap_create+0x0/0x70 returned 0 after 49 usecs
Sep 16 21:46:02 kernel: calling  add_default_cma_heap+0x0/0xe0 @ 1
Sep 16 21:46:02 kernel: initcall add_default_cma_heap+0x0/0xe0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  udmabuf_dev_init+0x0/0xa0 @ 1
Sep 16 21:46:02 kernel: initcall udmabuf_dev_init+0x0/0xa0 returned 0 after 11 usecs
Sep 16 21:46:02 kernel: calling  init_sd+0x0/0x150 @ 1
Sep 16 21:46:02 kernel: initcall init_sd+0x0/0x150 returned 0 after 7 usecs
Sep 16 21:46:02 kernel: calling  ahci_pci_driver_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall ahci_pci_driver_init+0x0/0x20 returned 0 after 19 usecs
Sep 16 21:46:02 kernel: calling  blackhole_netdev_init+0x0/0x90 @ 1
Sep 16 21:46:02 kernel: initcall blackhole_netdev_init+0x0/0x90 returned 0 after 12 usecs
Sep 16 21:46:02 kernel: calling  wwan_init+0x0/0xb0 @ 1
Sep 16 21:46:02 kernel: initcall wwan_init+0x0/0xb0 returned 0 after 3 usecs
Sep 16 21:46:02 kernel: calling  ehci_hcd_init+0x0/0x100 @ 1
Sep 16 21:46:02 kernel: initcall ehci_hcd_init+0x0/0x100 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  ehci_pci_init+0x0/0x60 @ 1
Sep 16 21:46:02 kernel: initcall ehci_pci_init+0x0/0x60 returned 0 after 3 usecs
Sep 16 21:46:02 kernel: calling  ohci_hcd_mod_init+0x0/0x70 @ 1
Sep 16 21:46:02 kernel: initcall ohci_hcd_mod_init+0x0/0x70 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  ohci_pci_init+0x0/0x60 @ 1
Sep 16 21:46:02 kernel: initcall ohci_pci_init+0x0/0x60 returned 0 after 3 usecs
Sep 16 21:46:02 kernel: calling  uhci_hcd_init+0x0/0x100 @ 1
Sep 16 21:46:02 kernel: initcall uhci_hcd_init+0x0/0x100 returned 0 after 8 usecs
Sep 16 21:46:02 kernel: calling  xhci_hcd_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall xhci_hcd_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  usb_serial_init+0x0/0x160 @ 1
Sep 16 21:46:02 kernel: usbcore: registered new interface driver usbserial_generic
Sep 16 21:46:02 kernel: usbserial: USB Serial support registered for generic
Sep 16 21:46:02 kernel: initcall usb_serial_init+0x0/0x160 returned 0 after 17 usecs
Sep 16 21:46:02 kernel: calling  input_leds_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall input_leds_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  evdev_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall evdev_init+0x0/0x20 returned 0 after 28 usecs
Sep 16 21:46:02 kernel: calling  cmos_init+0x0/0xa0 @ 1
Sep 16 21:46:02 kernel: rtc_cmos 00:01: RTC can wake from S4
Sep 16 21:46:02 kernel: probe of alarmtimer.0.auto returned 0 after 3 usecs
Sep 16 21:46:02 kernel: rtc_cmos 00:01: registered as rtc0
Sep 16 21:46:02 kernel: rtc_cmos 00:01: setting system clock to 2024-09-16T19:45:59 UTC (1726515959)
Sep 16 21:46:02 kernel: rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram
Sep 16 21:46:02 kernel: probe of 00:01 returned 0 after 2967 usecs
Sep 16 21:46:02 kernel: initcall cmos_init+0x0/0xa0 returned 0 after 2973 usecs
Sep 16 21:46:02 kernel: calling  dw_i2c_driver_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall dw_i2c_driver_init+0x0/0x20 returned 0 after 5 usecs
Sep 16 21:46:02 kernel: calling  mt6323_pwrc_driver_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall mt6323_pwrc_driver_init+0x0/0x20 returned 0 after 6 usecs
Sep 16 21:46:02 kernel: calling  restart_poweroff_driver_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall restart_poweroff_driver_init+0x0/0x20 returned 0 after 5 usecs
Sep 16 21:46:02 kernel: calling  tps65086_restart_driver_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall tps65086_restart_driver_init+0x0/0x20 returned 0 after 6 usecs
Sep 16 21:46:02 kernel: calling  thermal_throttle_init_device+0x0/0x50 @ 1
Sep 16 21:46:02 kernel: initcall thermal_throttle_init_device+0x0/0x50 returned 0 after 1549 usecs
Sep 16 21:46:02 kernel: calling  watchdog_gov_panic_register+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall watchdog_gov_panic_register+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  ghes_edac_init+0x0/0x480 @ 1
Sep 16 21:46:02 kernel: initcall ghes_edac_init+0x0/0x480 returned -19 after 0 usecs
Sep 16 21:46:02 kernel: calling  amd_pstate_init+0x0/0x260 @ 1
Sep 16 21:46:02 kernel: initcall amd_pstate_init+0x0/0x260 returned -19 after 0 usecs
Sep 16 21:46:02 kernel: calling  intel_pstate_init+0x0/0x850 @ 1
Sep 16 21:46:02 kernel: intel_pstate: Intel P-state driver initializing
Sep 16 21:46:02 kernel: intel_pstate: HWP enabled
Sep 16 21:46:02 kernel: initcall intel_pstate_init+0x0/0x850 returned 0 after 2182 usecs
Sep 16 21:46:02 kernel: calling  ledtrig_disk_init+0x0/0x50 @ 1
Sep 16 21:46:02 kernel: initcall ledtrig_disk_init+0x0/0x50 returned 0 after 2 usecs
Sep 16 21:46:02 kernel: calling  ledtrig_mtd_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall ledtrig_mtd_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  ledtrig_cpu_init+0x0/0xf0 @ 1
Sep 16 21:46:02 kernel: ledtrig-cpu: registered to indicate activity on CPUs
Sep 16 21:46:02 kernel: initcall ledtrig_cpu_init+0x0/0xf0 returned 0 after 761 usecs
Sep 16 21:46:02 kernel: calling  ledtrig_panic_init+0x0/0x60 @ 1
Sep 16 21:46:02 kernel: initcall ledtrig_panic_init+0x0/0x60 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  dmi_sysfs_init+0x0/0x140 @ 1
Sep 16 21:46:02 kernel: initcall dmi_sysfs_init+0x0/0x140 returned 0 after 77 usecs
Sep 16 21:46:02 kernel: calling  sysfb_init+0x0/0x1a0 @ 1
Sep 16 21:46:02 kernel: [drm] Initialized simpledrm 1.0.0 20200625 for simple-framebuffer.0 on minor 0
Sep 16 21:46:02 kernel: Console: switching to colour frame buffer device 240x75
Sep 16 21:46:02 kernel: simple-framebuffer simple-framebuffer.0: [drm] fb0: simpledrmdrmfb frame buffer device
Sep 16 21:46:02 kernel: probe of simple-framebuffer.0 returned 0 after 7867 usecs
Sep 16 21:46:02 kernel: initcall sysfb_init+0x0/0x1a0 returned 0 after 7888 usecs
Sep 16 21:46:02 kernel: calling  esrt_sysfs_init+0x0/0x360 @ 1
Sep 16 21:46:02 kernel: initcall esrt_sysfs_init+0x0/0x360 returned 0 after 11 usecs
Sep 16 21:46:02 kernel: calling  efivars_pstore_init+0x0/0xb0 @ 1
Sep 16 21:46:02 kernel: initcall efivars_pstore_init+0x0/0xb0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  hid_init+0x0/0x70 @ 1
Sep 16 21:46:02 kernel: hid: raw HID events driver (C) Jiri Kosina
Sep 16 21:46:02 kernel: initcall hid_init+0x0/0x70 returned 0 after 12 usecs
Sep 16 21:46:02 kernel: calling  hid_generic_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall hid_generic_init+0x0/0x20 returned 0 after 3 usecs
Sep 16 21:46:02 kernel: calling  pmc_core_driver_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: intel_pmc_core INT33A1:00:  initialized
Sep 16 21:46:02 kernel: probe of INT33A1:00 returned 0 after 11224 usecs
Sep 16 21:46:02 kernel: initcall pmc_core_driver_init+0x0/0x20 returned 0 after 11271 usecs
Sep 16 21:46:02 kernel: calling  pmc_core_platform_init+0x0/0xd0 @ 1
Sep 16 21:46:02 kernel: initcall pmc_core_platform_init+0x0/0xd0 returned -19 after 44 usecs
Sep 16 21:46:02 kernel: calling  intel_scu_pci_driver_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall intel_scu_pci_driver_init+0x0/0x20 returned 0 after 12 usecs
Sep 16 21:46:02 kernel: calling  pmc_atom_init+0x0/0x2a0 @ 1
Sep 16 21:46:02 kernel: initcall pmc_atom_init+0x0/0x2a0 returned -19 after 4 usecs
Sep 16 21:46:02 kernel: calling  rproc_virtio_driver_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall rproc_virtio_driver_init+0x0/0x20 returned 0 after 23 usecs
Sep 16 21:46:02 kernel: calling  vmgenid_driver_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall vmgenid_driver_init+0x0/0x20 returned 0 after 27 usecs
Sep 16 21:46:02 kernel: calling  extcon_class_init+0x0/0x50 @ 1
Sep 16 21:46:02 kernel: initcall extcon_class_init+0x0/0x50 returned 0 after 3 usecs
Sep 16 21:46:02 kernel: calling  icc_init+0x0/0x80 @ 1
Sep 16 21:46:02 kernel: initcall icc_init+0x0/0x80 returned 0 after 2 usecs
Sep 16 21:46:02 kernel: calling  sock_diag_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall sock_diag_init+0x0/0x40 returned 0 after 21 usecs
Sep 16 21:46:02 kernel: calling  init_net_drop_monitor+0x0/0x130 @ 1
Sep 16 21:46:02 kernel: drop_monitor: Initializing network drop monitor service
Sep 16 21:46:02 kernel: initcall init_net_drop_monitor+0x0/0x130 returned 0 after 25 usecs
Sep 16 21:46:02 kernel: calling  blackhole_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall blackhole_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  fq_codel_module_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall fq_codel_module_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  gre_offload_init+0x0/0x60 @ 1
Sep 16 21:46:02 kernel: initcall gre_offload_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  sysctl_ipv4_init+0x0/0x60 @ 1
Sep 16 21:46:02 kernel: initcall sysctl_ipv4_init+0x0/0x60 returned 0 after 55 usecs
Sep 16 21:46:02 kernel: calling  cubictcp_register+0x0/0x90 @ 1
Sep 16 21:46:02 kernel: initcall cubictcp_register+0x0/0x90 returned 0 after 8421 usecs
Sep 16 21:46:02 kernel: calling  xfrm_user_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: Initializing XFRM netlink socket
Sep 16 21:46:02 kernel: initcall xfrm_user_init+0x0/0x40 returned 0 after 53 usecs
Sep 16 21:46:02 kernel: calling  inet6_init+0x0/0x3f0 @ 1
Sep 16 21:46:02 kernel: NET: Registered PF_INET6 protocol family
Sep 16 21:46:02 kernel: Segment Routing with IPv6
Sep 16 21:46:02 kernel: RPL Segment Routing with IPv6
Sep 16 21:46:02 kernel: In-situ OAM (IOAM) with IPv6
Sep 16 21:46:02 kernel: initcall inet6_init+0x0/0x3f0 returned 0 after 7898 usecs
Sep 16 21:46:02 kernel: calling  packet_init+0x0/0x90 @ 1
Sep 16 21:46:02 kernel: NET: Registered PF_PACKET protocol family
Sep 16 21:46:02 kernel: initcall packet_init+0x0/0x90 returned 0 after 168 usecs
Sep 16 21:46:02 kernel: calling  strp_dev_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall strp_dev_init+0x0/0x40 returned 0 after 445 usecs
Sep 16 21:46:02 kernel: calling  dcbnl_init+0x0/0x60 @ 1
Sep 16 21:46:02 kernel: initcall dcbnl_init+0x0/0x60 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  handshake_init+0x0/0xa0 @ 1
Sep 16 21:46:02 kernel: initcall handshake_init+0x0/0xa0 returned 0 after 5 usecs
Sep 16 21:46:02 kernel: calling  pm_check_save_msr+0x0/0xd0 @ 1
Sep 16 21:46:02 kernel: initcall pm_check_save_msr+0x0/0xd0 returned 0 after 5 usecs
Sep 16 21:46:02 kernel: calling  mcheck_init_device+0x0/0x170 @ 1
Sep 16 21:46:02 kernel: initcall mcheck_init_device+0x0/0x170 returned 0 after 3975 usecs
Sep 16 21:46:02 kernel: calling  kernel_do_mounts_initrd_sysctls_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall kernel_do_mounts_initrd_sysctls_init+0x0/0x30 returned 0 after 3 usecs
Sep 16 21:46:02 kernel: calling  sld_mitigate_sysctl_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall sld_mitigate_sysctl_init+0x0/0x30 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  mcheck_late_init+0x0/0xa0 @ 1
Sep 16 21:46:02 kernel: initcall mcheck_late_init+0x0/0xa0 returned 0 after 8 usecs
Sep 16 21:46:02 kernel: calling  severities_debugfs_init+0x0/0x50 @ 1
Sep 16 21:46:02 kernel: initcall severities_debugfs_init+0x0/0x50 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  microcode_init+0x0/0x1c0 @ 1
Sep 16 21:46:02 kernel: microcode: Microcode Update Driver: v2.2.
Sep 16 21:46:02 kernel: initcall microcode_init+0x0/0x1c0 returned 0 after 2299 usecs
Sep 16 21:46:02 kernel: calling  resctrl_late_init+0x0/0x810 @ 1
Sep 16 21:46:02 kernel: initcall resctrl_late_init+0x0/0x810 returned -19 after 0 usecs
Sep 16 21:46:02 kernel: calling  hpet_insert_resource+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall hpet_insert_resource+0x0/0x30 returned 0 after 2 usecs
Sep 16 21:46:02 kernel: calling  start_sync_check_timer+0x0/0x60 @ 1
Sep 16 21:46:02 kernel: initcall start_sync_check_timer+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  update_mp_table+0x0/0x670 @ 1
Sep 16 21:46:02 kernel: initcall update_mp_table+0x0/0x670 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  lapic_insert_resource+0x0/0x50 @ 1
Sep 16 21:46:02 kernel: initcall lapic_insert_resource+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  print_ipi_mode+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: IPI shorthand broadcast: enabled
Sep 16 21:46:02 kernel: initcall print_ipi_mode+0x0/0x40 returned 0 after 193 usecs
Sep 16 21:46:02 kernel: calling  print_ICs+0x0/0x1d0 @ 1
Sep 16 21:46:02 kernel: initcall print_ICs+0x0/0x1d0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  setup_efi_kvm_sev_migration+0x0/0x1c0 @ 1
Sep 16 21:46:02 kernel: initcall setup_efi_kvm_sev_migration+0x0/0x1c0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  create_tlb_single_page_flush_ceiling+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall create_tlb_single_page_flush_ceiling+0x0/0x40 returned 0 after 102 usecs
Sep 16 21:46:02 kernel: calling  cpa_stats_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall cpa_stats_init+0x0/0x40 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  pat_memtype_list_init+0x0/0x50 @ 1
Sep 16 21:46:02 kernel: initcall pat_memtype_list_init+0x0/0x50 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  create_init_pkru_value+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall create_init_pkru_value+0x0/0x40 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  kernel_panic_sysctls_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall kernel_panic_sysctls_init+0x0/0x30 returned 0 after 4 usecs
Sep 16 21:46:02 kernel: calling  kernel_panic_sysfs_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall kernel_panic_sysfs_init+0x0/0x30 returned 0 after 2 usecs
Sep 16 21:46:02 kernel: calling  kernel_exit_sysctls_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall kernel_exit_sysctls_init+0x0/0x30 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  kernel_exit_sysfs_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall kernel_exit_sysfs_init+0x0/0x30 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  param_sysfs_builtin_init+0x0/0x200 @ 1
Sep 16 21:46:02 kernel: initcall param_sysfs_builtin_init+0x0/0x200 returned 0 after 796 usecs
Sep 16 21:46:02 kernel: calling  reboot_ksysfs_init+0x0/0x80 @ 1
Sep 16 21:46:02 kernel: initcall reboot_ksysfs_init+0x0/0x80 returned 0 after 5 usecs
Sep 16 21:46:02 kernel: calling  sched_core_sysctl_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall sched_core_sysctl_init+0x0/0x30 returned 0 after 6 usecs
Sep 16 21:46:02 kernel: calling  sched_fair_sysctl_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall sched_fair_sysctl_init+0x0/0x30 returned 0 after 3 usecs
Sep 16 21:46:02 kernel: calling  sched_rt_sysctl_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall sched_rt_sysctl_init+0x0/0x30 returned 0 after 53 usecs
Sep 16 21:46:02 kernel: calling  sched_dl_sysctl_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall sched_dl_sysctl_init+0x0/0x30 returned 0 after 3 usecs
Sep 16 21:46:02 kernel: calling  sched_clock_init_late+0x0/0xb0 @ 1
Sep 16 21:46:02 kernel: sched_clock: Marking stable (1193626295, 20383252)->(1247932021, -33922474)
Sep 16 21:46:02 kernel: initcall sched_clock_init_late+0x0/0xb0 returned 0 after 834 usecs
Sep 16 21:46:02 kernel: calling  sched_init_debug+0x0/0x230 @ 1
Sep 16 21:46:02 kernel: initcall sched_init_debug+0x0/0x230 returned 0 after 18 usecs
Sep 16 21:46:02 kernel: calling  sched_energy_aware_sysctl_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall sched_energy_aware_sysctl_init+0x0/0x30 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  cpu_latency_qos_init+0x0/0x50 @ 1
Sep 16 21:46:02 kernel: initcall cpu_latency_qos_init+0x0/0x50 returned 0 after 191 usecs
Sep 16 21:46:02 kernel: calling  pm_debugfs_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall pm_debugfs_init+0x0/0x30 returned 0 after 2 usecs
Sep 16 21:46:02 kernel: calling  printk_late_init+0x0/0x180 @ 1
Sep 16 21:46:02 kernel: initcall printk_late_init+0x0/0x180 returned 0 after 3 usecs
Sep 16 21:46:02 kernel: calling  init_srcu_module_notifier+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall init_srcu_module_notifier+0x0/0x40 returned 0 after 2 usecs
Sep 16 21:46:02 kernel: calling  swiotlb_create_default_debugfs+0x0/0xc0 @ 1
Sep 16 21:46:02 kernel: initcall swiotlb_create_default_debugfs+0x0/0xc0 returned 0 after 2 usecs
Sep 16 21:46:02 kernel: calling  module_decompress_sysfs_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall module_decompress_sysfs_init+0x0/0x40 returned 0 after 3 usecs
Sep 16 21:46:02 kernel: calling  tk_debug_sleep_time_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall tk_debug_sleep_time_init+0x0/0x40 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  bpf_ksym_iter_register+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall bpf_ksym_iter_register+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  kernel_acct_sysctls_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall kernel_acct_sysctls_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  kexec_core_sysctl_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall kexec_core_sysctl_init+0x0/0x40 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  bpf_rstat_kfunc_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall bpf_rstat_kfunc_init+0x0/0x20 returned 0 after 2 usecs
Sep 16 21:46:02 kernel: calling  debugfs_kprobe_init+0x0/0x80 @ 1
Sep 16 21:46:02 kernel: initcall debugfs_kprobe_init+0x0/0x80 returned 0 after 5 usecs
Sep 16 21:46:02 kernel: calling  kernel_delayacct_sysctls_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall kernel_delayacct_sysctls_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  taskstats_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: registered taskstats version 1
Sep 16 21:46:02 kernel: initcall taskstats_init+0x0/0x40 returned 0 after 171 usecs
Sep 16 21:46:02 kernel: calling  ftrace_sysctl_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall ftrace_sysctl_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_hwlat_tracer+0x0/0x120 @ 1
Sep 16 21:46:02 kernel: initcall init_hwlat_tracer+0x0/0x120 returned 0 after 3314 usecs
Sep 16 21:46:02 kernel: calling  init_osnoise_tracer+0x0/0x390 @ 1
Sep 16 21:46:02 kernel: initcall init_osnoise_tracer+0x0/0x390 returned 0 after 1437 usecs
Sep 16 21:46:02 kernel: calling  bpf_key_sig_kfuncs_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall bpf_key_sig_kfuncs_init+0x0/0x20 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  bpf_global_ma_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall bpf_global_ma_init+0x0/0x30 returned 0 after 56 usecs
Sep 16 21:46:02 kernel: calling  bpf_syscall_sysctl_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall bpf_syscall_sysctl_init+0x0/0x30 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  kfunc_init+0x0/0xc0 @ 1
Sep 16 21:46:02 kernel: initcall kfunc_init+0x0/0xc0 returned 0 after 7 usecs
Sep 16 21:46:02 kernel: calling  bpf_map_iter_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall bpf_map_iter_init+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_subsystem+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall init_subsystem+0x0/0x20 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  task_iter_init+0x0/0xe0 @ 1
Sep 16 21:46:02 kernel: initcall task_iter_init+0x0/0xe0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  bpf_prog_iter_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall bpf_prog_iter_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  bpf_link_iter_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall bpf_link_iter_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_trampolines+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall init_trampolines+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  bpf_cgroup_iter_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall bpf_cgroup_iter_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  cpumask_kfunc_init+0x0/0xa0 @ 1
Sep 16 21:46:02 kernel: initcall cpumask_kfunc_init+0x0/0xa0 returned 0 after 10 usecs
Sep 16 21:46:02 kernel: calling  load_system_certificate_list+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: Loading compiled-in X.509 certificates
Sep 16 21:46:02 kernel: Loaded X.509 cert 'Build time autogenerated kernel key: 7ee8b7760c70f76d0a10ccce96ca009a0732dcb1'
Sep 16 21:46:02 kernel: initcall load_system_certificate_list+0x0/0x30 returned 0 after 1833 usecs
Sep 16 21:46:02 kernel: calling  load_revocation_certificate_list+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall load_revocation_certificate_list+0x0/0x40 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  init_lru_gen+0x0/0x70 @ 1
Sep 16 21:46:02 kernel: initcall init_lru_gen+0x0/0x70 returned 0 after 73 usecs
Sep 16 21:46:02 kernel: calling  fault_around_debugfs+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall fault_around_debugfs+0x0/0x30 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  max_swapfiles_check+0x0/0x10 @ 1
Sep 16 21:46:02 kernel: initcall max_swapfiles_check+0x0/0x10 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  zswap_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: zswap: loaded using pool zstd/zsmalloc
Sep 16 21:46:02 kernel: initcall zswap_init+0x0/0x20 returned 0 after 4730 usecs
Sep 16 21:46:02 kernel: calling  hugetlb_vmemmap_init+0x0/0x80 @ 1
Sep 16 21:46:02 kernel: initcall hugetlb_vmemmap_init+0x0/0x80 returned 0 after 4 usecs
Sep 16 21:46:02 kernel: calling  slab_sysfs_init+0x0/0x100 @ 1
Sep 16 21:46:02 kernel: initcall slab_sysfs_init+0x0/0x100 returned 0 after 699 usecs
Sep 16 21:46:02 kernel: calling  kfence_debugfs_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall kfence_debugfs_init+0x0/0x20 returned 0 after 2 usecs
Sep 16 21:46:02 kernel: calling  split_huge_pages_debugfs+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall split_huge_pages_debugfs+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  check_early_ioremap_leak+0x0/0x60 @ 1
Sep 16 21:46:02 kernel: initcall check_early_ioremap_leak+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  cma_debugfs_init+0x0/0x180 @ 1
Sep 16 21:46:02 kernel: initcall cma_debugfs_init+0x0/0x180 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  set_hardened_usercopy+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall set_hardened_usercopy+0x0/0x40 returned 1 after 0 usecs
Sep 16 21:46:02 kernel: calling  shrinker_debugfs_init+0x0/0x90 @ 1
Sep 16 21:46:02 kernel: initcall shrinker_debugfs_init+0x0/0x90 returned 0 after 95 usecs
Sep 16 21:46:02 kernel: calling  fscrypt_init+0x0/0xa0 @ 1
Sep 16 21:46:02 kernel: Key type .fscrypt registered
Sep 16 21:46:02 kernel: Key type fscrypt-provisioning registered
Sep 16 21:46:02 kernel: initcall fscrypt_init+0x0/0xa0 returned 0 after 637 usecs
Sep 16 21:46:02 kernel: calling  fsverity_init+0x0/0x50 @ 1
Sep 16 21:46:02 kernel: initcall fsverity_init+0x0/0x50 returned 0 after 20 usecs
Sep 16 21:46:02 kernel: calling  pstore_init+0x0/0x70 @ 1
Sep 16 21:46:02 kernel: initcall pstore_init+0x0/0x70 returned 0 after 3 usecs
Sep 16 21:46:02 kernel: calling  init_root_keyring+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall init_root_keyring+0x0/0x20 returned 0 after 6 usecs
Sep 16 21:46:02 kernel: calling  init_profile_hash+0x0/0x90 @ 1
Sep 16 21:46:02 kernel: initcall init_profile_hash+0x0/0x90 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  integrity_fs_init+0x0/0x60 @ 1
Sep 16 21:46:02 kernel: initcall integrity_fs_init+0x0/0x60 returned 0 after 3 usecs
Sep 16 21:46:02 kernel: calling  load_uefi_certs+0x0/0x270 @ 1
Sep 16 21:46:02 kernel: initcall load_uefi_certs+0x0/0x270 returned 0 after 18642 usecs
Sep 16 21:46:02 kernel: calling  crypto_algapi_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall crypto_algapi_init+0x0/0x20 returned 0 after 4 usecs
Sep 16 21:46:02 kernel: calling  blk_timeout_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall blk_timeout_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  sed_opal_init+0x0/0x60 @ 1
Sep 16 21:46:02 kernel: initcall sed_opal_init+0x0/0x60 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  init_error_injection+0x0/0x70 @ 1
Sep 16 21:46:02 kernel: initcall init_error_injection+0x0/0x70 returned 0 after 98 usecs
Sep 16 21:46:02 kernel: calling  pci_resource_alignment_sysfs_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall pci_resource_alignment_sysfs_init+0x0/0x20 returned 0 after 3 usecs
Sep 16 21:46:02 kernel: calling  pci_sysfs_init+0x0/0x90 @ 1
Sep 16 21:46:02 kernel: initcall pci_sysfs_init+0x0/0x90 returned 0 after 30 usecs
Sep 16 21:46:02 kernel: calling  bert_init+0x0/0x2e0 @ 1
Sep 16 21:46:02 kernel: initcall bert_init+0x0/0x2e0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  clk_debug_init+0x0/0x120 @ 1
Sep 16 21:46:02 kernel: initcall clk_debug_init+0x0/0x120 returned 0 after 3 usecs
Sep 16 21:46:02 kernel: calling  setup_vcpu_hotplug_event+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall setup_vcpu_hotplug_event+0x0/0x40 returned -19 after 0 usecs
Sep 16 21:46:02 kernel: calling  boot_wait_for_devices+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall boot_wait_for_devices+0x0/0x40 returned -19 after 0 usecs
Sep 16 21:46:02 kernel: calling  dmar_free_unused_resources+0x0/0xf0 @ 1
Sep 16 21:46:02 kernel: initcall dmar_free_unused_resources+0x0/0xf0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  sync_state_resume_initcall+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall sync_state_resume_initcall+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  deferred_probe_initcall+0x0/0x90 @ 1
Sep 16 21:46:02 kernel: initcall deferred_probe_initcall+0x0/0x90 returned 0 after 2147 usecs
Sep 16 21:46:02 kernel: calling  late_resume_init+0x0/0x1c0 @ 1
Sep 16 21:46:02 kernel: PM:   Magic number: 8:473:799
Sep 16 21:46:02 kernel: platform PNP0C09:00: hash matches
Sep 16 21:46:02 kernel: ec PNP0C09:00: hash matches
Sep 16 21:46:02 kernel: initcall late_resume_init+0x0/0x1c0 returned 0 after 1412 usecs
Sep 16 21:46:02 kernel: calling  genpd_debug_init+0x0/0x80 @ 1
Sep 16 21:46:02 kernel: initcall genpd_debug_init+0x0/0x80 returned 0 after 3 usecs
Sep 16 21:46:02 kernel: calling  charger_manager_init+0x0/0xa0 @ 1
Sep 16 21:46:02 kernel: initcall charger_manager_init+0x0/0xa0 returned 0 after 204 usecs
Sep 16 21:46:02 kernel: calling  firmware_memmap_init+0x0/0x50 @ 1
Sep 16 21:46:02 kernel: initcall firmware_memmap_init+0x0/0x50 returned 0 after 175 usecs
Sep 16 21:46:02 kernel: calling  register_update_efi_random_seed+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall register_update_efi_random_seed+0x0/0x30 returned 0 after 94 usecs
Sep 16 21:46:02 kernel: calling  efi_shutdown_init+0x0/0x60 @ 1
Sep 16 21:46:02 kernel: initcall efi_shutdown_init+0x0/0x60 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  efi_rci2_sysfs_init+0x0/0x2a0 @ 1
Sep 16 21:46:02 kernel: initcall efi_rci2_sysfs_init+0x0/0x2a0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  efi_earlycon_unmap_fb+0x0/0x50 @ 1
Sep 16 21:46:02 kernel: initcall efi_earlycon_unmap_fb+0x0/0x50 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  hid_bpf_init+0x0/0xb0 @ 1
Sep 16 21:46:02 kernel: initcall hid_bpf_init+0x0/0xb0 returned 0 after 2662 usecs
Sep 16 21:46:02 kernel: calling  itmt_legacy_init+0x0/0x60 @ 1
Sep 16 21:46:02 kernel: initcall itmt_legacy_init+0x0/0x60 returned -19 after 0 usecs
Sep 16 21:46:02 kernel: calling  cec_init+0x0/0x1b0 @ 1
Sep 16 21:46:02 kernel: RAS: Correctable Errors collector initialized.
Sep 16 21:46:02 kernel: initcall cec_init+0x0/0x1b0 returned 0 after 191 usecs
Sep 16 21:46:02 kernel: calling  bpf_kfunc_init+0x0/0x120 @ 1
Sep 16 21:46:02 kernel: initcall bpf_kfunc_init+0x0/0x120 returned 0 after 2 usecs
Sep 16 21:46:02 kernel: calling  init_subsystem+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall init_subsystem+0x0/0x20 returned 0 after 2 usecs
Sep 16 21:46:02 kernel: calling  xdp_metadata_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall xdp_metadata_init+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  bpf_sockmap_iter_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall bpf_sockmap_iter_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  bpf_sk_storage_map_iter_init+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall bpf_sk_storage_map_iter_init+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  sch_default_qdisc+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall sch_default_qdisc+0x0/0x20 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  bpf_prog_test_run_init+0x0/0xb0 @ 1
Sep 16 21:46:02 kernel: initcall bpf_prog_test_run_init+0x0/0xb0 returned 0 after 4 usecs
Sep 16 21:46:02 kernel: calling  tcp_congestion_default+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall tcp_congestion_default+0x0/0x20 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  tcp_bpf_v4_build_proto+0x0/0xa0 @ 1
Sep 16 21:46:02 kernel: initcall tcp_bpf_v4_build_proto+0x0/0xa0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  udp_bpf_v4_build_proto+0x0/0x80 @ 1
Sep 16 21:46:02 kernel: initcall udp_bpf_v4_build_proto+0x0/0x80 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  bpf_tcp_ca_kfunc_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall bpf_tcp_ca_kfunc_init+0x0/0x20 returned 0 after 2 usecs
Sep 16 21:46:02 kernel: calling  bpf_mptcp_kfunc_init+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall bpf_mptcp_kfunc_init+0x0/0x20 returned 0 after 25 usecs
Sep 16 21:46:02 kernel: calling  pci_mmcfg_late_insert_resources+0x0/0x80 @ 1
Sep 16 21:46:02 kernel: initcall pci_mmcfg_late_insert_resources+0x0/0x80 returned 0 after 1 usecs
Sep 16 21:46:02 kernel: calling  software_resume_initcall+0x0/0x180 @ 1
Sep 16 21:46:02 kernel: initcall software_resume_initcall+0x0/0x180 returned -2 after 1 usecs
Sep 16 21:46:02 kernel: calling  lockup_detector_check+0x0/0x80 @ 1
Sep 16 21:46:02 kernel: initcall lockup_detector_check+0x0/0x80 returned 0 after 1144 usecs
Sep 16 21:46:02 kernel: calling  ftrace_check_sync+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall ftrace_check_sync+0x0/0x20 returned 0 after 8 usecs
Sep 16 21:46:02 kernel: calling  latency_fsnotify_init+0x0/0x40 @ 1
Sep 16 21:46:02 kernel: initcall latency_fsnotify_init+0x0/0x40 returned 0 after 9 usecs
Sep 16 21:46:02 kernel: calling  trace_eval_sync+0x0/0x20 @ 1
Sep 16 21:46:02 kernel: initcall trace_eval_sync+0x0/0x20 returned 0 after 7 usecs
Sep 16 21:46:02 kernel: calling  late_trace_init+0x0/0xc0 @ 1
Sep 16 21:46:02 kernel: initcall late_trace_init+0x0/0xc0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  acpi_gpio_handle_deferred_request_irqs+0x0/0xa0 @ 1
Sep 16 21:46:02 kernel: initcall acpi_gpio_handle_deferred_request_irqs+0x0/0xa0 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  clk_disable_unused+0x0/0x150 @ 1
Sep 16 21:46:02 kernel: clk: Disabling unused clocks
Sep 16 21:46:02 kernel: initcall clk_disable_unused+0x0/0x150 returned 0 after 175 usecs
Sep 16 21:46:02 kernel: calling  balloon_wait_finish+0x0/0x110 @ 1
Sep 16 21:46:02 kernel: initcall balloon_wait_finish+0x0/0x110 returned -19 after 0 usecs
Sep 16 21:46:02 kernel: calling  regulator_init_complete+0x0/0x30 @ 1
Sep 16 21:46:02 kernel: initcall regulator_init_complete+0x0/0x30 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: calling  genpd_power_off_unused+0x0/0x90 @ 1
Sep 16 21:46:02 kernel: initcall genpd_power_off_unused+0x0/0x90 returned 0 after 0 usecs
Sep 16 21:46:02 kernel: ACPI: battery: Slot [BAT0] (battery present)
Sep 16 21:46:02 kernel: probe of PNP0C0A:00 returned 0 after 218053 usecs
Sep 16 21:46:02 kernel: Freeing unused decrypted memory: 2028K
Sep 16 21:46:02 kernel: Freeing unused kernel image (initmem) memory: 3432K
Sep 16 21:46:02 kernel: Write protecting the kernel read-only data: 30720k
Sep 16 21:46:02 kernel: Freeing unused kernel image (rodata/data gap) memory: 1312K
Sep 16 21:46:02 kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Sep 16 21:46:02 kernel: rodata_test: all tests were successful
Sep 16 21:46:02 kernel: Run /init as init process
Sep 16 21:46:02 kernel:   with arguments:
Sep 16 21:46:02 kernel:     /init
Sep 16 21:46:02 kernel:   with environment:
Sep 16 21:46:02 kernel:     HOME=/
Sep 16 21:46:02 kernel:     TERM=linux
Sep 16 21:46:02 kernel:     BOOT_IMAGE=/boot/vmlinuz-linux-lts
Sep 16 21:46:02 kernel: calling  acpi_wmi_init+0x0/0xff0 [wmi] @ 240
Sep 16 21:46:02 kernel: calling  serio_init+0x0/0xff0 [serio] @ 261
Sep 16 21:46:02 kernel: initcall serio_init+0x0/0xff0 [serio] returned 0 after 21 usecs
Sep 16 21:46:02 kernel: probe of PNP0C14:00 returned 0 after 79 usecs
Sep 16 21:46:02 kernel: probe of PNP0C14:01 returned 0 after 48 usecs
Sep 16 21:46:02 kernel: probe of PNP0C14:02 returned 0 after 50 usecs
Sep 16 21:46:02 kernel: initcall acpi_wmi_init+0x0/0xff0 [wmi] returned 0 after 1317 usecs
Sep 16 21:46:02 kernel: calling  i8042_init+0x0/0xff0 [i8042] @ 261
Sep 16 21:46:02 kernel: probe of 00:03 returned 0 after 12 usecs
Sep 16 21:46:02 kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
Sep 16 21:46:02 kernel: i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
Sep 16 21:46:02 kernel: i8042: Warning: Keylock active
Sep 16 21:46:02 kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Sep 16 21:46:02 kernel: probe of i8042 returned 0 after 1272 usecs
Sep 16 21:46:02 kernel: initcall i8042_init+0x0/0xff0 [i8042] returned 0 after 2854 usecs
Sep 16 21:46:02 kernel: calling  acpi_video_init+0x0/0xff0 [video] @ 240
Sep 16 21:46:02 kernel: initcall acpi_video_init+0x0/0xff0 [video] returned 0 after 110 usecs
Sep 16 21:46:02 kernel: calling  xhci_pci_init+0x0/0xff0 [xhci_pci] @ 258
Sep 16 21:46:02 kernel: xhci_hcd 0000:00:0d.0: xHCI Host Controller
Sep 16 21:46:02 kernel: xhci_hcd 0000:00:0d.0: new USB bus registered, assigned bus number 1
Sep 16 21:46:02 kernel: calling  cec_devnode_init+0x0/0xff0 [cec] @ 239
Sep 16 21:46:02 kernel: initcall cec_devnode_init+0x0/0xff0 [cec] returned 0 after 21 usecs
Sep 16 21:46:02 kernel: xhci_hcd 0000:00:0d.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000200009810
Sep 16 21:46:02 kernel: xhci_hcd 0000:00:0d.0: xHCI Host Controller
Sep 16 21:46:02 kernel: xhci_hcd 0000:00:0d.0: new USB bus registered, assigned bus number 2
Sep 16 21:46:02 kernel: xhci_hcd 0000:00:0d.0: Host supports USB 3.2 Enhanced SuperSpeed
Sep 16 21:46:02 kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.06
Sep 16 21:46:02 kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Sep 16 21:46:02 kernel: usb usb1: Product: xHCI Host Controller
Sep 16 21:46:02 kernel: usb usb1: Manufacturer: Linux 6.6.49-1-lts xhci-hcd
Sep 16 21:46:02 kernel: usb usb1: SerialNumber: 0000:00:0d.0
Sep 16 21:46:02 kernel: calling  crc32c_intel_mod_init+0x0/0xff0 [crc32c_intel] @ 261
Sep 16 21:46:02 kernel: hub 1-0:1.0: USB hub found
Sep 16 21:46:02 kernel: calling  nvme_core_init+0x0/0x1b0 [nvme_core] @ 250
Sep 16 21:46:02 kernel: initcall crc32c_intel_mod_init+0x0/0xff0 [crc32c_intel] returned 0 after 6 usecs
Sep 16 21:46:02 kernel: initcall nvme_core_init+0x0/0x1b0 [nvme_core] returned 0 after 27 usecs
Sep 16 21:46:02 kernel: hub 1-0:1.0: 1 port detected
Sep 16 21:46:02 kernel: calling  intel_spi_pci_driver_init+0x0/0xff0 [spi_intel_pci] @ 252
Sep 16 21:46:02 kernel: probe of 1-0:1.0 returned 0 after 2355 usecs
Sep 16 21:46:02 kernel: probe of usb1 returned 0 after 2951 usecs
Sep 16 21:46:02 kernel: probe of 0000:00:1f.5 returned 0 after 259 usecs
Sep 16 21:46:02 kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.06
Sep 16 21:46:02 kernel: initcall intel_spi_pci_driver_init+0x0/0xff0 [spi_intel_pci] returned 0 after 870 usecs
Sep 16 21:46:02 kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Sep 16 21:46:02 kernel: usb usb2: Product: xHCI Host Controller
Sep 16 21:46:02 kernel: usb usb2: Manufacturer: Linux 6.6.49-1-lts xhci-hcd
Sep 16 21:46:02 kernel: usb usb2: SerialNumber: 0000:00:0d.0
Sep 16 21:46:02 kernel: hub 2-0:1.0: USB hub found
Sep 16 21:46:02 kernel: hub 2-0:1.0: 3 ports detected
Sep 16 21:46:02 kernel: probe of 2-0:1.0 returned 0 after 1140 usecs
Sep 16 21:46:02 kernel: probe of usb2 returned 0 after 1505 usecs
Sep 16 21:46:02 kernel: probe of 0000:00:0d.0 returned 0 after 12245 usecs
Sep 16 21:46:02 kernel: calling  nvme_init+0x0/0xff0 [nvme] @ 250
Sep 16 21:46:02 kernel: calling  drm_display_helper_module_init+0x0/0xff0 [drm_display_helper] @ 239
Sep 16 21:46:02 kernel: initcall nvme_init+0x0/0xff0 [nvme] returned 0 after 20 usecs
Sep 16 21:46:02 kernel: nvme 0000:01:00.0: platform quirk: setting simple suspend
Sep 16 21:46:02 kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Sep 16 21:46:02 kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
Sep 16 21:46:02 kernel: initcall drm_display_helper_module_init+0x0/0xff0 [drm_display_helper] returned 0 after 9 usecs
Sep 16 21:46:02 kernel: nvme nvme0: pci function 0000:01:00.0
Sep 16 21:46:02 kernel: xhci_hcd 0000:00:14.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000100200009810
Sep 16 21:46:02 kernel: calling  atkbd_init+0x0/0xf40 [atkbd] @ 256
Sep 16 21:46:02 kernel: initcall atkbd_init+0x0/0xf40 [atkbd] returned 0 after 14 usecs
Sep 16 21:46:02 kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Sep 16 21:46:02 kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
Sep 16 21:46:02 kernel: xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
Sep 16 21:46:02 kernel: usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.06
Sep 16 21:46:02 kernel: usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Sep 16 21:46:02 kernel: usb usb3: Product: xHCI Host Controller
Sep 16 21:46:02 kernel: usb usb3: Manufacturer: Linux 6.6.49-1-lts xhci-hcd
Sep 16 21:46:02 kernel: usb usb3: SerialNumber: 0000:00:14.0
Sep 16 21:46:02 kernel: hub 3-0:1.0: USB hub found
Sep 16 21:46:02 kernel: hub 3-0:1.0: 12 ports detected
Sep 16 21:46:02 kernel: probe of 3-0:1.0 returned 0 after 3055 usecs
Sep 16 21:46:02 kernel: probe of usb3 returned 0 after 3402 usecs
Sep 16 21:46:02 kernel: usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.06
Sep 16 21:46:02 kernel: usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Sep 16 21:46:02 kernel: usb usb4: Product: xHCI Host Controller
Sep 16 21:46:02 kernel: usb usb4: Manufacturer: Linux 6.6.49-1-lts xhci-hcd
Sep 16 21:46:02 kernel: usb usb4: SerialNumber: 0000:00:14.0
Sep 16 21:46:02 kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
Sep 16 21:46:02 kernel: hub 4-0:1.0: USB hub found
Sep 16 21:46:02 kernel: hub 4-0:1.0: 4 ports detected
Sep 16 21:46:02 kernel: nvme nvme0: missing or invalid SUBNQN field.
Sep 16 21:46:02 kernel: probe of 4-0:1.0 returned 0 after 1240 usecs
Sep 16 21:46:02 kernel: probe of usb4 returned 0 after 1600 usecs
Sep 16 21:46:02 kernel: probe of 0000:00:14.0 returned 0 after 20742 usecs
Sep 16 21:46:02 kernel: initcall xhci_pci_init+0x0/0xff0 [xhci_pci] returned 0 after 13126 usecs
Sep 16 21:46:02 kernel: probe of serio0 returned 0 after 104959 usecs
Sep 16 21:46:02 kernel: nvme nvme0: 15/0/0 default/read/poll queues
Sep 16 21:46:02 kernel:  nvme0n1: p1 p2 p3 p4
Sep 16 21:46:02 kernel: probe of 0000:01:00.0 returned 0 after 259880 usecs
Sep 16 21:46:02 kernel: calling  serio_raw_drv_init+0x0/0xff0 [serio_raw] @ 256
Sep 16 21:46:02 kernel: initcall serio_raw_drv_init+0x0/0xff0 [serio_raw] returned 0 after 550 usecs
Sep 16 21:46:02 kernel: usb 3-10: new full-speed USB device number 2 using xhci_hcd
Sep 16 21:46:02 kernel: calling  drm_buddy_module_init+0x0/0xff0 [drm_buddy] @ 239
Sep 16 21:46:02 kernel: initcall drm_buddy_module_init+0x0/0xff0 [drm_buddy] returned 0 after 572 usecs
Sep 16 21:46:02 kernel: usb 3-10: New USB device found, idVendor=8087, idProduct=0026, bcdDevice= 0.02
Sep 16 21:46:02 kernel: usb 3-10: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Sep 16 21:46:02 kernel: probe of 3-10 returned 0 after 1932 usecs
Sep 16 21:46:02 kernel: calling  i915_init+0x0/0xc0 [i915] @ 239
Sep 16 21:46:02 kernel: Console: switching to colour dummy device 80x25
Sep 16 21:46:02 kernel: i915 0000:00:02.0: vgaarb: deactivate vga console
Sep 16 21:46:02 kernel: i915 0000:00:02.0: [drm] Using Transparent Hugepages
Sep 16 21:46:02 kernel: i915 0000:00:02.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=io+mem:owns=io+mem
Sep 16 21:46:02 kernel: i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/adlp_dmc.bin (v2.20)
Sep 16 21:46:02 kernel: i915 0000:00:02.0: [drm] GT0: GuC firmware i915/adlp_guc_70.bin version 70.29.2
Sep 16 21:46:02 kernel: i915 0000:00:02.0: [drm] GT0: HuC firmware i915/tgl_huc.bin version 7.9.3
Sep 16 21:46:02 kernel: i915 0000:00:02.0: [drm] GT0: HuC: authenticated for all workloads
Sep 16 21:46:02 kernel: i915 0000:00:02.0: [drm] GT0: GUC: submission enabled
Sep 16 21:46:02 kernel: i915 0000:00:02.0: [drm] GT0: GUC: SLPC enabled
Sep 16 21:46:02 kernel: i915 0000:00:02.0: [drm] GT0: GUC: RC enabled
Sep 16 21:46:02 kernel: i915 0000:00:02.0: [drm] Protected Xe Path (PXP) protected content support initialized
Sep 16 21:46:02 kernel: [drm] Initialized i915 1.6.0 20201103 for 0000:00:02.0 on minor 1
Sep 16 21:46:02 kernel: ACPI: video: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
Sep 16 21:46:02 kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input3
Sep 16 21:46:02 kernel: probe of LNXVIDEO:00 returned 0 after 127637 usecs
Sep 16 21:46:02 kernel: probe of 0000:00:02.0 returned 0 after 1382343 usecs
Sep 16 21:46:02 kernel: initcall i915_init+0x0/0xc0 [i915] returned 0 after 1382467 usecs
Sep 16 21:46:02 kernel: fbcon: i915drmfb (fb0) is primary device
Sep 16 21:46:02 kernel: Console: switching to colour frame buffer device 240x75
Sep 16 21:46:02 kernel: i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
Sep 16 21:46:02 kernel: calling  journal_init+0x0/0xea0 [jbd2] @ 352
Sep 16 21:46:02 kernel: initcall journal_init+0x0/0xea0 [jbd2] returned 0 after 64 usecs
Sep 16 21:46:02 kernel: calling  mbcache_init+0x0/0xff0 [mbcache] @ 352
Sep 16 21:46:02 kernel: initcall mbcache_init+0x0/0xff0 [mbcache] returned 0 after 6 usecs
Sep 16 21:46:02 kernel: calling  crc32c_mod_init+0x0/0xff0 [crc32c_generic] @ 352
Sep 16 21:46:02 kernel: initcall crc32c_mod_init+0x0/0xff0 [crc32c_generic] returned 0 after 6 usecs
Sep 16 21:46:02 kernel: calling  ext4_init_fs+0x0/0x1f0 [ext4] @ 352
Sep 16 21:46:02 kernel: initcall ext4_init_fs+0x0/0x1f0 [ext4] returned 0 after 111 usecs
Sep 16 21:46:02 kernel: EXT4-fs (nvme0n1p3): mounted filesystem 2ec9a78e-0c5a-40b3-a1fb-cf4be8a42b06 r/w with ordered data mode. Quota mode: none.
Sep 16 21:46:02 kernel: calling  xt_init+0x0/0xff0 [x_tables] @ 1
Sep 16 21:46:02 kernel: initcall xt_init+0x0/0xff0 [x_tables] returned 0 after 2 usecs
Sep 16 21:46:02 kernel: calling  ip_tables_init+0x0/0xff0 [ip_tables] @ 1
Sep 16 21:46:02 kernel: initcall ip_tables_init+0x0/0xff0 [ip_tables] returned 0 after 3 usecs
Sep 16 21:46:02 kernel: calling  load+0x0/0xff0 [bpf_preload] @ 365
Sep 16 21:46:02 kernel: initcall load+0x0/0xff0 [bpf_preload] returned 0 after 6124 usecs
Sep 16 21:46:02 systemd[1]: systemd 256.5-1-arch 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)
Sep 16 21:46:02 systemd[1]: Detected architecture x86-64.
Sep 16 21:46:02 systemd[1]: Hostname set to <X-Ware>.
Sep 16 21:46:02 kernel: systemd[1]: memfd_create() called without MFD_EXEC or MFD_NOEXEC_SEAL set
Sep 16 21:46:02 systemd[1]: bpf-restrict-fs: LSM BPF program attached
Sep 16 21:46:02 systemd[1]: Queued start job for default target Graphical Interface.
Sep 16 21:46:02 kernel: calling  nfnetlink_init+0x0/0xff0 [nfnetlink] @ 386
Sep 16 21:46:02 kernel: initcall nfnetlink_init+0x0/0xff0 [nfnetlink] returned 0 after 3 usecs
Sep 16 21:46:02 systemd[1]: Created slice Slice /system/dirmngr.
Sep 16 21:46:02 systemd[1]: Created slice Slice /system/getty.
Sep 16 21:46:02 systemd[1]: Created slice Slice /system/gpg-agent.
Sep 16 21:46:02 systemd[1]: Created slice Slice /system/gpg-agent-browser.
Sep 16 21:46:02 systemd[1]: Created slice Slice /system/gpg-agent-extra.
Sep 16 21:46:02 systemd[1]: Created slice Slice /system/gpg-agent-ssh.
Sep 16 21:46:02 systemd[1]: Created slice Slice /system/keyboxd.
Sep 16 21:46:02 systemd[1]: Created slice Slice /system/modprobe.
Sep 16 21:46:02 systemd[1]: Created slice Slice /system/systemd-fsck.
Sep 16 21:46:02 systemd[1]: Created slice User and Session Slice.
Sep 16 21:46:02 systemd[1]: Started Forward Password Requests to Wall Directory Watch.
Sep 16 21:46:02 systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
Sep 16 21:46:02 systemd[1]: Expecting device /dev/disk/by-uuid/7DF8-380C...
Sep 16 21:46:02 systemd[1]: Expecting device /dev/disk/by-uuid/7d4dd35b-5de8-4c46-be9d-bd2c87a13f17...
Sep 16 21:46:02 systemd[1]: Expecting device /dev/disk/by-uuid/E68B-375F...
Sep 16 21:46:02 systemd[1]: Reached target Local Integrity Protected Volumes.
Sep 16 21:46:02 systemd[1]: Reached target Remote File Systems.
Sep 16 21:46:02 systemd[1]: Reached target Slice Units.
Sep 16 21:46:02 systemd[1]: Reached target Local Verity Protected Volumes.
Sep 16 21:46:02 systemd[1]: Listening on Device-mapper event daemon FIFOs.
Sep 16 21:46:02 systemd[1]: Listening on LVM2 poll daemon socket.
Sep 16 21:46:02 systemd[1]: Listening on Process Core Dump Socket.
Sep 16 21:46:02 systemd[1]: Listening on Credential Encryption/Decryption.
Sep 16 21:46:02 systemd[1]: Listening on Journal Socket (/dev/log).
Sep 16 21:46:02 systemd[1]: Listening on Journal Sockets.
Sep 16 21:46:02 systemd[1]: Listening on Network Service Netlink Socket.
Sep 16 21:46:02 systemd[1]: TPM PCR Measurements was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Sep 16 21:46:02 systemd[1]: Make TPM PCR Policy was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Sep 16 21:46:02 systemd[1]: Listening on udev Control Socket.
Sep 16 21:46:02 systemd[1]: Listening on udev Kernel Socket.
Sep 16 21:46:02 systemd[1]: Mounting Huge Pages File System...
Sep 16 21:46:02 systemd[1]: Mounting POSIX Message Queue File System...
Sep 16 21:46:02 systemd[1]: Mounting Kernel Debug File System...
Sep 16 21:46:02 systemd[1]: Mounting Kernel Trace File System...
Sep 16 21:46:02 systemd[1]: Starting Create List of Static Device Nodes...
Sep 16 21:46:02 systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
Sep 16 21:46:02 systemd[1]: Starting Load Kernel Module configfs...
Sep 16 21:46:02 systemd[1]: Starting Load Kernel Module dm_mod...
Sep 16 21:46:02 systemd[1]: Starting Load Kernel Module drm...
Sep 16 21:46:02 systemd[1]: Starting Load Kernel Module fuse...
Sep 16 21:46:02 systemd[1]: Starting Load Kernel Module loop...
Sep 16 21:46:02 systemd[1]: File System Check on Root Device was skipped because of an unmet condition check (ConditionPathIsReadWrite=!/).
Sep 16 21:46:02 systemd[1]: Clear Stale Hibernate Storage Info was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67).
Sep 16 21:46:02 systemd[1]: Starting Journal Service...
Sep 16 21:46:02 systemd[1]: Starting Load Kernel Modules...
Sep 16 21:46:02 systemd[1]: Starting Generate network units from Kernel command line...
Sep 16 21:46:02 systemd[1]: TPM PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Sep 16 21:46:02 kernel: calling  loop_init+0x0/0xff0 [loop] @ 398
Sep 16 21:46:02 kernel: calling  dm_init+0x0/0x80 [dm_mod] @ 395
Sep 16 21:46:02 systemd[1]: Starting Remount Root and Kernel File Systems...
Sep 16 21:46:02 systemd[1]: Early TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Sep 16 21:46:02 systemd[1]: Starting Load udev Rules from Credentials...
Sep 16 21:46:02 kernel: loop: module loaded
Sep 16 21:46:02 kernel: initcall loop_init+0x0/0xff0 [loop] returned 0 after 547 usecs
Sep 16 21:46:02 kernel: device-mapper: uevent: version 1.0.3
Sep 16 21:46:02 systemd[1]: Starting Coldplug All udev Devices...
Sep 16 21:46:02 kernel: device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@redhat.com
Sep 16 21:46:02 systemd[1]: Starting Virtual Console Setup...
Sep 16 21:46:02 kernel: initcall dm_init+0x0/0x80 [dm_mod] returned 0 after 4371 usecs
Sep 16 21:46:02 systemd[1]: Mounted Huge Pages File System.
Sep 16 21:46:02 systemd[1]: Mounted POSIX Message Queue File System.
Sep 16 21:46:02 systemd[1]: Mounted Kernel Debug File System.
Sep 16 21:46:02 systemd[1]: Mounted Kernel Trace File System.
Sep 16 21:46:02 systemd-journald[400]: Collecting audit messages is disabled.
Sep 16 21:46:02 kernel: calling  crypto_user_init+0x0/0xff0 [crypto_user] @ 401
Sep 16 21:46:02 kernel: initcall crypto_user_init+0x0/0xff0 [crypto_user] returned 0 after 10 usecs
Sep 16 21:46:02 kernel: calling  fuse_init+0x0/0x200 [fuse] @ 397
Sep 16 21:46:02 kernel: fuse: init (API version 7.39)
Sep 16 21:46:02 kernel: initcall fuse_init+0x0/0x200 [fuse] returned 0 after 710 usecs
Sep 16 21:46:02 kernel: calling  i2c_dev_init+0x0/0xc0 [i2c_dev] @ 401
Sep 16 21:46:02 kernel: i2c_dev: i2c /dev entries driver
Sep 16 21:46:02 kernel: initcall i2c_dev_init+0x0/0xc0 [i2c_dev] returned 0 after 859 usecs
Sep 16 21:46:02 kernel: calling  pkcs8_key_init+0x0/0xff0 [pkcs8_key_parser] @ 401
Sep 16 21:46:02 kernel: Asymmetric key parser 'pkcs8' registered
Sep 16 21:46:02 kernel: initcall pkcs8_key_init+0x0/0xff0 [pkcs8_key_parser] returned 0 after 593 usecs
Sep 16 21:46:02 systemd-journald[400]: Journal started
Sep 16 21:46:02 systemd-journald[400]: Runtime Journal (/run/log/journal/d2f6e77df46d4a1e8240e7ccd89ad000) is 8M, max 786M, 778M free.
Sep 16 21:46:02 systemd-modules-load[401]: Inserted module 'crypto_user'
Sep 16 21:46:02 systemd-modules-load[401]: Inserted module 'i2c_dev'
Sep 16 21:46:02 systemd-modules-load[401]: Inserted module 'pkcs8_key_parser'
Sep 16 21:46:02 systemd-modules-load[401]: Failed to find module 'vboxdrv'
Sep 16 21:46:02 systemd-modules-load[401]: Failed to find module 'vboxnetadp'
Sep 16 21:46:02 systemd-modules-load[401]: Failed to find module 'vboxnetflt'
Sep 16 21:46:02 systemd-remount-fs[415]: mount: /etc/fstab: parse error at line 21 -- ignored
Sep 16 21:46:02 systemd[1]: modprobe@configfs.service: Deactivated successfully.
Sep 16 21:46:02 systemd[1]: Finished Create List of Static Device Nodes.
Sep 16 21:46:02 systemd[1]: Started Journal Service.
Sep 16 21:46:02 kernel: EXT4-fs (nvme0n1p3): re-mounted 2ec9a78e-0c5a-40b3-a1fb-cf4be8a42b06 r/w. Quota mode: none.
Sep 16 21:46:02 systemd[1]: Finished Load Kernel Module configfs.
Sep 16 21:46:02 systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
Sep 16 21:46:02 systemd[1]: Finished Load Kernel Module dm_mod.
Sep 16 21:46:02 systemd[1]: Finished Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
Sep 16 21:46:02 systemd[1]: modprobe@drm.service: Deactivated successfully.
Sep 16 21:46:02 systemd[1]: Finished Load Kernel Module drm.
Sep 16 21:46:02 systemd[1]: modprobe@fuse.service: Deactivated successfully.
Sep 16 21:46:02 systemd[1]: Finished Load Kernel Module fuse.
Sep 16 21:46:02 systemd[1]: modprobe@loop.service: Deactivated successfully.
Sep 16 21:46:02 systemd[1]: Finished Load Kernel Module loop.
Sep 16 21:46:02 systemd[1]: Finished Load Kernel Modules.
Sep 16 21:46:02 systemd[1]: Finished Generate network units from Kernel command line.
Sep 16 21:46:03 systemd[1]: Finished Remount Root and Kernel File Systems.
Sep 16 21:46:03 systemd[1]: Finished Load udev Rules from Credentials.
Sep 16 21:46:03 systemd[1]: Finished Coldplug All udev Devices.
Sep 16 21:46:03 systemd[1]: Finished Virtual Console Setup.
Sep 16 21:46:03 systemd[1]: Reached target Preparation for Network.
Sep 16 21:46:03 systemd[1]: Mounting FUSE Control File System...
Sep 16 21:46:03 systemd[1]: Mounting Kernel Configuration File System...
Sep 16 21:46:03 systemd[1]: Started Early root shell on /dev/tty9 FOR DEBUGGING ONLY.
Sep 16 21:46:03 systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
Sep 16 21:46:03 systemd[1]: Starting Flush Journal to Persistent Storage...
Sep 16 21:46:03 systemd[1]: Starting Load/Save OS Random Seed...
Sep 16 21:46:03 systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
Sep 16 21:46:03 systemd[1]: Starting Apply Kernel Variables...
Sep 16 21:46:03 systemd[1]: Starting Create Static Device Nodes in /dev gracefully...
Sep 16 21:46:03 systemd[1]: TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Sep 16 21:46:03 systemd[1]: Mounted FUSE Control File System.
Sep 16 21:46:03 systemd[1]: Mounted Kernel Configuration File System.
Sep 16 21:46:03 systemd-journald[400]: Time spent on flushing to /var/log/journal/d2f6e77df46d4a1e8240e7ccd89ad000 is 21.902ms for 2711 entries.
Sep 16 21:46:03 systemd-journald[400]: System Journal (/var/log/journal/d2f6e77df46d4a1e8240e7ccd89ad000) is 95.1M, max 103.1M, 8M free.
Sep 16 21:46:03 systemd-journald[400]: Received client request to flush runtime journal.
Sep 16 21:46:03 systemd[1]: Finished Apply Kernel Variables.
Sep 16 21:46:03 systemd[1]: Finished Flush Journal to Persistent Storage.
Sep 16 21:46:03 systemd[1]: Finished Load/Save OS Random Seed.
Sep 16 21:46:03 systemd-tmpfiles[446]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:46:03 systemd-tmpfiles[446]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:46:03 systemd-tmpfiles[446]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:46:03 systemd-tmpfiles[446]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:46:03 systemd-tmpfiles[446]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:46:03 systemd-tmpfiles[446]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev/net.
Sep 16 21:46:03 systemd-tmpfiles[446]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:46:03 systemd-tmpfiles[446]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:46:03 systemd-tmpfiles[446]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:46:03 systemd-tmpfiles[446]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev/mapper.
Sep 16 21:46:03 systemd-tmpfiles[446]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:46:03 systemd-tmpfiles[446]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:46:03 systemd-tmpfiles[446]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev/vfio.
Sep 16 21:46:03 systemd-tmpfiles[446]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:46:03 systemd-tmpfiles[446]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:46:03 systemd-tmpfiles[446]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:46:03 systemd-tmpfiles[446]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:46:03 systemd-tmpfiles[446]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:46:03 systemd-tmpfiles[446]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:46:03 systemd-tmpfiles[446]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev/snd.
Sep 16 21:46:03 systemd-tmpfiles[446]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev/snd.
Sep 16 21:46:03 systemd-tmpfiles[446]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:46:03 systemd-tmpfiles[446]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev/loop-control.
Sep 16 21:46:03 systemd-tmpfiles[446]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev/fuse.
Sep 16 21:46:03 systemd[1]: Finished Create Static Device Nodes in /dev gracefully.
Sep 16 21:46:03 systemd[1]: Create System Users was skipped because no trigger condition checks were met.
Sep 16 21:46:03 systemd[1]: Starting Create Static Device Nodes in /dev...
Sep 16 21:46:03 systemd-tmpfiles[456]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:46:03 systemd-tmpfiles[456]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:46:03 systemd-tmpfiles[456]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:46:03 systemd-tmpfiles[456]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:46:03 systemd-tmpfiles[456]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:46:03 systemd-tmpfiles[456]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev/net.
Sep 16 21:46:03 systemd-tmpfiles[456]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:46:03 systemd-tmpfiles[456]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:46:03 systemd-tmpfiles[456]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:46:03 systemd-tmpfiles[456]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev/mapper.
Sep 16 21:46:03 systemd-tmpfiles[456]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:46:03 systemd-tmpfiles[456]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:46:03 systemd-tmpfiles[456]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev/vfio.
Sep 16 21:46:03 systemd-tmpfiles[456]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:46:03 systemd-tmpfiles[456]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:46:03 systemd-tmpfiles[456]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:46:03 systemd-tmpfiles[456]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:46:03 systemd-tmpfiles[456]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:46:03 systemd-tmpfiles[456]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:46:03 systemd-tmpfiles[456]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev/snd.
Sep 16 21:46:03 systemd-tmpfiles[456]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev/snd.
Sep 16 21:46:03 systemd-tmpfiles[456]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev.
Sep 16 21:46:03 systemd-tmpfiles[456]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev/loop-control.
Sep 16 21:46:03 systemd-tmpfiles[456]: Detected unsafe path transition / (owned by public) → /dev (owned by root) during canonicalization of dev/fuse.
Sep 16 21:46:03 systemd[1]: Finished Create Static Device Nodes in /dev.
Sep 16 21:46:03 systemd[1]: Reached target Preparation for Local File Systems.
Sep 16 21:46:03 systemd[1]: Starting Rule-based Manager for Device Events and Files...
Sep 16 21:46:03 systemd-udevd[460]: Using default interface naming scheme 'v255'.
Sep 16 21:46:03 systemd[1]: Started Rule-based Manager for Device Events and Files.
Sep 16 21:46:03 systemd[1]: Starting Show Plymouth Boot Screen...
Sep 16 21:46:03 systemd[1]: Starting Network Configuration...
Sep 16 21:46:03 systemd[1]: Condition check resulted in /dev/tpmrm0 being skipped.
Sep 16 21:46:03 systemd[1]: Reached target Trusted Platform Module.
Sep 16 21:46:03 kernel: calling  mac_hid_init+0x0/0xff0 [mac_hid] @ 509
Sep 16 21:46:03 kernel: initcall mac_hid_init+0x0/0xff0 [mac_hid] returned 0 after 12 usecs
Sep 16 21:46:03 systemd[1]: Received SIGRTMIN+20 from PID 525 (plymouthd).
Sep 16 21:46:03 kernel: calling  acpi_pad_init+0x0/0xff0 [acpi_pad] @ 488
Sep 16 21:46:03 kernel: probe of ACPI000C:00 returned 0 after 593 usecs
Sep 16 21:46:03 kernel: initcall acpi_pad_init+0x0/0xff0 [acpi_pad] returned 0 after 1952 usecs
Sep 16 21:46:03 kernel: calling  int3400_thermal_driver_init+0x0/0xff0 [int3400_thermal] @ 498
Sep 16 21:46:03 kernel: calling  int3403_driver_init+0x0/0xff0 [int3403_thermal] @ 473
Sep 16 21:46:03 kernel: calling  fjes_init_module+0x0/0xff0 [fjes] @ 511
Sep 16 21:46:03 kernel: initcall fjes_init_module+0x0/0xff0 [fjes] returned -19 after 390 usecs
Sep 16 21:46:03 kernel: calling  i2c_hid_acpi_driver_init+0x0/0xff0 [i2c_hid_acpi] @ 520
Sep 16 21:46:03 kernel: initcall i2c_hid_acpi_driver_init+0x0/0xff0 [i2c_hid_acpi] returned 0 after 33 usecs
Sep 16 21:46:03 kernel: Consider using thermal netlink events interface
Sep 16 21:46:03 kernel: calling  parport_default_proc_register+0x0/0xff0 [parport] @ 505
Sep 16 21:46:03 kernel: initcall parport_default_proc_register+0x0/0xff0 [parport] returned 0 after 42 usecs
Sep 16 21:46:03 kernel: calling  idma64_platform_driver_init+0x0/0xff0 [idma64] @ 466
Sep 16 21:46:03 kernel: initcall idma64_platform_driver_init+0x0/0xff0 [idma64] returned 0 after 56 usecs
Sep 16 21:46:03 kernel: calling  igen6_init+0x0/0xff0 [igen6_edac] @ 495
Sep 16 21:46:03 kernel: probe of INTC1041:00 returned 0 after 14718 usecs
Sep 16 21:46:03 kernel: resource: resource sanity check: requesting [mem 0x00000000fedc0000-0x00000000fedcffff], which spans more than pnp 00:04 [mem 0xfedc0000-0xfedc7fff]
Sep 16 21:46:03 systemd[1]: Found device YMTC PC005 512GB 2.
Sep 16 21:46:03 kernel: initcall int3400_thermal_driver_init+0x0/0xff0 [int3400_thermal] returned 0 after 1695 usecs
Sep 16 21:46:03 kernel: caller igen6_probe+0x197/0x8e0 [igen6_edac] mapping multiple BARs
Sep 16 21:46:03 kernel: EDAC MC0: Giving out device to module igen6_edac controller Intel_client_SoC MC#0: DEV 0000:00:00.0 (INTERRUPT)
Sep 16 21:46:03 kernel: EDAC MC1: Giving out device to module igen6_edac controller Intel_client_SoC MC#1: DEV 0000:00:00.0 (INTERRUPT)
Sep 16 21:46:03 kernel: EDAC igen6 MC1: HANDLING IBECC MEMORY ERROR
Sep 16 21:46:03 kernel: EDAC igen6 MC1: ADDR 0x7fffffffe0 
Sep 16 21:46:03 kernel: EDAC igen6 MC0: HANDLING IBECC MEMORY ERROR
Sep 16 21:46:03 kernel: EDAC igen6 MC0: ADDR 0x7fffffffe0 
Sep 16 21:46:03 kernel: probe of 0000:00:00.0 returned 0 after 4819 usecs
Sep 16 21:46:03 kernel: EDAC igen6: v2.5.1
Sep 16 21:46:03 kernel: initcall igen6_init+0x0/0xff0 [igen6_edac] returned 0 after 5074 usecs
Sep 16 21:46:03 kernel: calling  intel_vsec_pci_driver_init+0x0/0xff0 [intel_vsec] @ 483
Sep 16 21:46:03 kernel: calling  smbalert_driver_init+0x0/0xff0 [i2c_smbus] @ 499
Sep 16 21:46:03 kernel: calling  init_soundcore+0x0/0xff0 [soundcore] @ 488
Sep 16 21:46:03 kernel: calling  rapl_init+0x0/0xff0 [intel_rapl_common] @ 489
Sep 16 21:46:03 kernel: initcall init_soundcore+0x0/0xff0 [soundcore] returned 0 after 11 usecs
Sep 16 21:46:03 kernel: initcall smbalert_driver_init+0x0/0xff0 [i2c_smbus] returned 0 after 30 usecs
Sep 16 21:46:03 kernel: initcall rapl_init+0x0/0xff0 [intel_rapl_common] returned 0 after 47 usecs
Sep 16 21:46:03 kernel: probe of 0000:00:0a.0 returned 0 after 62 usecs
Sep 16 21:46:03 kernel: initcall intel_vsec_pci_driver_init+0x0/0xff0 [intel_vsec] returned 0 after 82 usecs
Sep 16 21:46:03 kernel: calling  parport_pc_init+0x0/0xef0 [parport_pc] @ 505
Sep 16 21:46:03 systemd[1]: Received SIGRTMIN+20 from PID 525 (plymouthd).
Sep 16 21:46:03 kernel: calling  mei_init+0x0/0xa0 [mei] @ 520
Sep 16 21:46:03 kernel: calling  rfkill_init+0x0/0x150 [rfkill] @ 519
Sep 16 21:46:03 kernel: initcall mei_init+0x0/0xa0 [mei] returned 0 after 14 usecs
Sep 16 21:46:03 kernel: initcall rfkill_init+0x0/0x150 [rfkill] returned 0 after 54 usecs
Sep 16 21:46:03 kernel: calling  init_mtd+0x0/0x160 [mtd] @ 515
Sep 16 21:46:03 kernel: calling  intel_lpss_init+0x0/0xff0 [intel_lpss] @ 518
Sep 16 21:46:03 kernel: initcall intel_lpss_init+0x0/0xff0 [intel_lpss] returned 0 after 1 usecs
Sep 16 21:46:03 kernel: initcall init_mtd+0x0/0x160 [mtd] returned 0 after 18 usecs
Sep 16 21:46:03 kernel: calling  i2c_i801_init+0x0/0xff0 [i2c_i801] @ 499
Sep 16 21:46:03 kernel: initcall i2c_i801_init+0x0/0xff0 [i2c_i801] returned 0 after 20 usecs
Sep 16 21:46:03 kernel: i801_smbus 0000:00:1f.4: SPD Write Disable is set
Sep 16 21:46:03 kernel: i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
Sep 16 21:46:03 kernel: probe of parport_pc.956 returned 0 after 7 usecs
Sep 16 21:46:03 kernel: probe of parport_pc.888 returned 0 after 3 usecs
Sep 16 21:46:03 kernel: probe of parport_pc.632 returned 0 after 2 usecs
Sep 16 21:46:03 kernel: initcall parport_pc_init+0x0/0xef0 [parport_pc] returned 0 after 1438 usecs
Sep 16 21:46:03 systemd[1]: Found device YMTC PC005 512GB 1.
Sep 16 21:46:03 kernel: calling  mei_me_driver_init+0x0/0xff0 [mei_me] @ 520
Sep 16 21:46:03 kernel: calling  spi_nor_module_init+0x0/0xff0 [spi_nor] @ 515
Sep 16 21:46:03 kernel: initcall mei_me_driver_init+0x0/0xff0 [mei_me] returned 0 after 14 usecs
Sep 16 21:46:03 kernel: mei_me 0000:00:16.0: enabling device (0000 -> 0002)
Sep 16 21:46:03 kernel: spi-nor spi0.0: mx25l25635e (32768 Kbytes)
Sep 16 21:46:03 kernel: calling  intel_lpss_pci_driver_init+0x0/0xff0 [intel_lpss_pci] @ 475
Sep 16 21:46:03 kernel: calling  alsa_sound_init+0x0/0xb0 [snd] @ 488
Sep 16 21:46:03 kernel: initcall alsa_sound_init+0x0/0xb0 [snd] returned 0 after 8 usecs
Sep 16 21:46:03 kernel: Creating 1 MTD partitions on "0000:00:1f.5":
Sep 16 21:46:03 kernel: 0x000000000000-0x000002000000 : "BIOS"
Sep 16 21:46:03 kernel: probe of spi0.0 returned 0 after 3516 usecs
Sep 16 21:46:03 kernel: initcall spi_nor_module_init+0x0/0xff0 [spi_nor] returned 0 after 2818 usecs
Sep 16 21:46:03 kernel: i2c i2c-11: 8/8 memory slots populated (from DMI)
Sep 16 21:46:03 kernel: i2c i2c-11: Systems with more than 4 memory slots not supported yet, not instantiating SPD
Sep 16 21:46:03 kernel: probe of 0000:00:1f.4 returned 0 after 8902 usecs
Sep 16 21:46:03 kernel: intel-lpss 0000:00:15.0: enabling device (0004 -> 0006)
Sep 16 21:46:03 kernel: idma64 idma64.0: Found Intel integrated DMA 64-bit
Sep 16 21:46:03 kernel: probe of idma64.0 returned 0 after 65 usecs
Sep 16 21:46:03 kernel: probe of INTC1046:00 returned 0 after 48209 usecs
Sep 16 21:46:03 kernel: probe of 0000:00:16.0 returned 0 after 22072 usecs
Sep 16 21:46:03 kernel: calling  cfg80211_init+0x0/0xe0 [cfg80211] @ 519
Sep 16 21:46:03 kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
Sep 16 21:46:03 kernel: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
Sep 16 21:46:03 kernel: Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
Sep 16 21:46:03 kernel: initcall cfg80211_init+0x0/0xe0 [cfg80211] returned 0 after 905 usecs
Sep 16 21:46:03 kernel: platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
Sep 16 21:46:03 kernel: cfg80211: failed to load regulatory.db
Sep 16 21:46:03 kernel: calling  alsa_timer_init+0x0/0xff0 [snd_timer] @ 488
Sep 16 21:46:03 kernel: initcall alsa_timer_init+0x0/0xff0 [snd_timer] returned 0 after 49 usecs
Sep 16 21:46:03 systemd-networkd[471]: lo: Link UP
Sep 16 21:46:03 systemd-networkd[471]: lo: Gained carrier
Sep 16 21:46:03 systemd-networkd[471]: Enumeration completed
Sep 16 21:46:03 kernel: probe of i2c_designware.0 returned 0 after 28714 usecs
Sep 16 21:46:03 kernel: probe of INTC1046:01 returned 0 after 37015 usecs
Sep 16 21:46:03 kernel: probe of 0000:00:15.0 returned 0 after 58373 usecs
Sep 16 21:46:03 kernel: calling  alsa_pcm_init+0x0/0xff0 [snd_pcm] @ 488
Sep 16 21:46:03 kernel: initcall alsa_pcm_init+0x0/0xff0 [snd_pcm] returned 0 after 11 usecs
Sep 16 21:46:03 systemd[1]: Started Network Configuration.
Sep 16 21:46:03 kernel: calling  iwl_drv_init+0x0/0xff0 [iwlwifi] @ 519
Sep 16 21:46:03 kernel: Intel(R) Wireless WiFi driver for Linux
Sep 16 21:46:03 kernel: intel-lpss 0000:00:15.1: enabling device (0004 -> 0006)
Sep 16 21:46:03 kernel: idma64 idma64.1: Found Intel integrated DMA 64-bit
Sep 16 21:46:03 kernel: probe of idma64.1 returned 0 after 97 usecs
Sep 16 21:46:03 kernel: iwlwifi 0000:00:14.3: Detected crf-id 0x1300504, cnv-id 0x80400 wfpm id 0x80000030
Sep 16 21:46:03 kernel: iwlwifi 0000:00:14.3: PCI dev 51f0/0074, rev=0x370, rfid=0x10a100
Sep 16 21:46:03 kernel: probe of 0000:00:14.3 returned 0 after 6781 usecs
Sep 16 21:46:03 kernel: initcall iwl_drv_init+0x0/0xff0 [iwlwifi] returned 0 after 6810 usecs
Sep 16 21:46:03 kernel: iwlwifi 0000:00:14.3: api flags index 2 larger than supported by driver
Sep 16 21:46:03 kernel: iwlwifi 0000:00:14.3: TLV_FW_FSEQ_VERSION: FSEQ Version: 0.0.2.41
Sep 16 21:46:03 kernel: iwlwifi 0000:00:14.3: loaded firmware version 83.e8f84e98.0 so-a0-hr-b0-83.ucode op_mode iwlmvm
Sep 16 21:46:03 systemd[1]: Found device YMTC PC005 512GB 4.
Sep 16 21:46:03 systemd[1]: Created slice Slice /system/systemd-backlight.
Sep 16 21:46:03 systemd[1]: Activating swap /dev/disk/by-uuid/7d4dd35b-5de8-4c46-be9d-bd2c87a13f17...
Sep 16 21:46:03 systemd[1]: Starting Load/Save Screen Backlight Brightness of backlight:intel_backlight...
Sep 16 21:46:03 systemd[1]: Starting File System Check on /dev/disk/by-uuid/7DF8-380C...
Sep 16 21:46:03 kernel: input: ELAN260B:00 04F3:31DC Mouse as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-12/i2c-ELAN260B:00/0018:04F3:31DC.0001/input/input4
Sep 16 21:46:03 kernel: input: ELAN260B:00 04F3:31DC Touchpad as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-12/i2c-ELAN260B:00/0018:04F3:31DC.0001/input/input6
Sep 16 21:46:03 kernel: hid-generic 0018:04F3:31DC.0001: input,hidraw0: I2C HID v1.00 Mouse [ELAN260B:00 04F3:31DC] on i2c-ELAN260B:00
Sep 16 21:46:03 kernel: probe of 0018:04F3:31DC.0001 returned 0 after 920 usecs
Sep 16 21:46:03 kernel: probe of i2c-ELAN260B:00 returned 0 after 84019 usecs
Sep 16 21:46:03 kernel: calling  alsa_hwdep_init+0x0/0xff0 [snd_hwdep] @ 488
Sep 16 21:46:03 kernel: initcall alsa_hwdep_init+0x0/0xff0 [snd_hwdep] returned 0 after 2 usecs
Sep 16 21:46:03 kernel: calling  wmi_bmof_driver_init+0x0/0xff0 [wmi_bmof] @ 519
Sep 16 21:46:03 kernel: probe of 05901221-D566-11D1-B2F0-00A0C9062910 returned 0 after 205 usecs
Sep 16 21:46:03 kernel: calling  proc_thermal_pci_driver_init+0x0/0xff0 [processor_thermal_device_pci] @ 489
Sep 16 21:46:03 kernel: probe of 05901221-D566-11D1-B2F0-00A0C9062910-1 returned 0 after 84 usecs
Sep 16 21:46:03 kernel: probe of 05901221-D566-11D1-B2F0-00A0C9062910-2 returned 0 after 102 usecs
Sep 16 21:46:03 kernel: probe of INTC1046:02 returned 0 after 81501 usecs
Sep 16 21:46:03 kernel: initcall wmi_bmof_driver_init+0x0/0xff0 [wmi_bmof] returned 0 after 2787 usecs
Sep 16 21:46:03 systemd[1]: Starting File System Check on /dev/disk/by-uuid/E68B-375F...
Sep 16 21:46:03 systemd[1]: Starting Enable Persistent Storage in systemd-networkd...
Sep 16 21:46:03 kernel: calling  hda_bus_init+0x0/0xff0 [snd_hda_core] @ 488
Sep 16 21:46:03 kernel: initcall hda_bus_init+0x0/0xff0 [snd_hda_core] returned 0 after 11 usecs
Sep 16 21:46:03 systemd-fsck[601]: fsck: /etc/fstab: parse error at line 21 -- ignored
Sep 16 21:46:03 systemd-fsck[605]: fsck: /etc/fstab: parse error at line 21 -- ignored
Sep 16 21:46:03 kernel: Adding 6918140k swap on /dev/nvme0n1p2.  Priority:-2 extents:1 across:6918140k SS
Sep 16 21:46:03 systemd-fsck[607]: fsck.fat 4.2 (2021-01-31)
Sep 16 21:46:03 systemd-fsck[607]: /dev/nvme0n1p1: 372 files, 46566/130812 clusters
Sep 16 21:46:03 kernel: probe of INTC1046:03 returned 0 after 36382 usecs
Sep 16 21:46:03 kernel: calling  ledtrig_audio_init+0x0/0xff0 [ledtrig_audio] @ 519
Sep 16 21:46:03 kernel: initcall ledtrig_audio_init+0x0/0xff0 [ledtrig_audio] returned 0 after 3 usecs
Sep 16 21:46:03 kernel: calling  ieee80211_init+0x0/0x70 [mac80211] @ 593
Sep 16 21:46:03 kernel: initcall ieee80211_init+0x0/0x70 [mac80211] returned 0 after 6 usecs
Sep 16 21:46:03 kernel: calling  huawei_wmi_init+0x0/0xfb0 [huawei_wmi] @ 519
Sep 16 21:46:03 kernel: input: Huawei WMI hotkeys as /devices/platform/huawei-wmi/input/input7
Sep 16 21:46:03 kernel: calling  azx_driver_init+0x0/0xff0 [snd_hda_intel] @ 488
Sep 16 21:46:03 kernel: snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040100
Sep 16 21:46:03 kernel: snd_hda_intel 0000:00:1f.3: Digital mics found on Skylake+ platform, using SOF driver
Sep 16 21:46:03 kernel: probe of 0000:00:1f.3 returned 19 after 131 usecs
Sep 16 21:46:03 kernel: initcall azx_driver_init+0x0/0xff0 [snd_hda_intel] returned 0 after 170 usecs
Sep 16 21:46:03 kernel: intel_rapl_common: Found RAPL domain package
Sep 16 21:46:03 kernel: calling  iwl_mvm_init+0x0/0xff0 [iwlmvm] @ 593
Sep 16 21:46:03 kernel: probe of 0000:00:04.0 returned 0 after 66933 usecs
Sep 16 21:46:03 kernel: initcall proc_thermal_pci_driver_init+0x0/0xff0 [processor_thermal_device_pci] returned 0 after 205 usecs
Sep 16 21:46:03 kernel: calling  ac97_bus_init+0x0/0xff0 [ac97_bus] @ 488
Sep 16 21:46:03 kernel: initcall ac97_bus_init+0x0/0xff0 [ac97_bus] returned 0 after 15 usecs
Sep 16 21:46:03 systemd[1]: Finished Load/Save Screen Backlight Brightness of backlight:intel_backlight.
Sep 16 21:46:03 systemd[1]: Activated swap /dev/disk/by-uuid/7d4dd35b-5de8-4c46-be9d-bd2c87a13f17.
Sep 16 21:46:03 kernel: probe of INTC1046:04 returned 0 after 36605 usecs
Sep 16 21:46:03 kernel: calling  snd_soc_init+0x0/0xa0 [snd_soc_core] @ 488
Sep 16 21:46:03 kernel: probe of snd-soc-dummy returned 0 after 15 usecs
Sep 16 21:46:03 kernel: initcall snd_soc_init+0x0/0xa0 [snd_soc_core] returned 0 after 106 usecs
Sep 16 21:46:03 kernel: calling  sdw_bus_init+0x0/0xff0 [soundwire_bus] @ 488
Sep 16 21:46:03 kernel: initcall sdw_bus_init+0x0/0xff0 [soundwire_bus] returned 0 after 16 usecs
Sep 16 21:46:03 kernel: iwlwifi 0000:00:14.3: Detected Intel(R) Wi-Fi 6 AX201 160MHz, REV=0x370
Sep 16 21:46:03 kernel: thermal thermal_zone9: failed to read out thermal zone (-61)
Sep 16 21:46:03 kernel: iwlwifi 0000:00:14.3: WRT: Invalid buffer destination
Sep 16 21:46:03 systemd[1]: Finished File System Check on /dev/disk/by-uuid/E68B-375F.
Sep 16 21:46:03 kernel: probe of i2c_designware.1 returned 0 after 185131 usecs
Sep 16 21:46:03 kernel: probe of 0000:00:15.1 returned 0 after 198756 usecs
Sep 16 21:46:03 systemd[1]: Reached target Swaps.
Sep 16 21:46:03 kernel: probe of INTC1046:05 returned 0 after 53268 usecs
Sep 16 21:46:03 kernel: intel-lpss 0000:00:19.0: enabling device (0004 -> 0006)
Sep 16 21:46:03 kernel: idma64 idma64.2: Found Intel integrated DMA 64-bit
Sep 16 21:46:03 kernel: probe of idma64.2 returned 0 after 1219 usecs
Sep 16 21:46:03 kernel: calling  sdw_intel_drv_init+0x0/0xff0 [soundwire_intel] @ 488
Sep 16 21:46:03 kernel: initcall sdw_intel_drv_init+0x0/0xff0 [soundwire_intel] returned 0 after 12 usecs
Sep 16 21:46:03 kernel: calling  snd_sof_pci_intel_tgl_driver_init+0x0/0xff0 [snd_sof_pci_intel_tgl] @ 488
Sep 16 21:46:03 kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040100
Sep 16 21:46:03 kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: Digital mics found on Skylake+ platform, using SOF driver
Sep 16 21:46:03 kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: enabling device (0000 -> 0002)
Sep 16 21:46:03 kernel: probe of 0000:00:1f.3 returned 0 after 3513 usecs
Sep 16 21:46:03 kernel: initcall snd_sof_pci_intel_tgl_driver_init+0x0/0xff0 [snd_sof_pci_intel_tgl] returned 0 after 3548 usecs
Sep 16 21:46:03 kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if 0x040100
Sep 16 21:46:03 kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
Sep 16 21:46:03 kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: use msi interrupt mode
Sep 16 21:46:03 systemd[1]: Mounting /efi...
Sep 16 21:46:03 systemd[1]: tmp.mount: Directory /tmp to mount over is not empty, mounting anyway.
Sep 16 21:46:03 kernel: probe of i2c_designware.2 returned 0 after 28235 usecs
Sep 16 21:46:03 kernel: probe of 0000:00:19.0 returned 0 after 42051 usecs
Sep 16 21:46:03 systemd[1]: Mounting Temporary Directory /tmp...
Sep 16 21:46:03 systemd[1]: Virtual Machine and Container Storage (Compatibility) was skipped because of an unmet condition check (ConditionPathExists=/var/lib/machines.raw).
Sep 16 21:46:03 kernel: calling  init_fat_fs+0x0/0xf90 [fat] @ 613
Sep 16 21:46:03 kernel: initcall init_fat_fs+0x0/0xf90 [fat] returned 0 after 34 usecs
Sep 16 21:46:03 kernel: intel-lpss 0000:00:19.1: enabling device (0004 -> 0006)
Sep 16 21:46:03 kernel: calling  acpi_cpufreq_init+0x0/0x30 [acpi_cpufreq] @ 488
Sep 16 21:46:03 kernel: probe of acpi-cpufreq returned 19 after 6 usecs
Sep 16 21:46:03 kernel: calling  init_vfat_fs+0x0/0xff0 [vfat] @ 613
Sep 16 21:46:03 kernel: initcall init_vfat_fs+0x0/0xff0 [vfat] returned 0 after 2 usecs
Sep 16 21:46:03 kernel: idma64 idma64.3: Found Intel integrated DMA 64-bit
Sep 16 21:46:03 kernel: probe of idma64.3 returned 0 after 78 usecs
Sep 16 21:46:03 kernel: calling  generic_driver_init+0x0/0xff0 [snd_hda_codec_generic] @ 614
Sep 16 21:46:03 kernel: initcall generic_driver_init+0x0/0xff0 [snd_hda_codec_generic] returned 0 after 11 usecs
Sep 16 21:46:03 kernel: calling  conexant_driver_init+0x0/0xff0 [snd_hda_codec_conexant] @ 614
Sep 16 21:46:03 kernel: probe of ehdaudio0D0 returned 0 after 14 usecs
Sep 16 21:46:03 kernel: initcall conexant_driver_init+0x0/0xff0 [snd_hda_codec_conexant] returned 0 after 29 usecs
Sep 16 21:46:03 kernel: calling  hdmi_driver_init+0x0/0xff0 [snd_hda_codec_hdmi] @ 615
Sep 16 21:46:03 kernel: probe of ehdaudio0D2 returned 0 after 11 usecs
Sep 16 21:46:03 kernel: initcall hdmi_driver_init+0x0/0xff0 [snd_hda_codec_hdmi] returned 0 after 26 usecs
Sep 16 21:46:03 kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: hda codecs found, mask 5
Sep 16 21:46:03 kernel: ACPI: battery: new extension: Huawei Battery Extension
Sep 16 21:46:03 kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: using HDA machine driver skl_hda_dsp_generic now
Sep 16 21:46:03 kernel: probe of i2c_designware.3 returned 0 after 19007 usecs
Sep 16 21:46:03 kernel: probe of huawei-wmi returned 0 after 151447 usecs
Sep 16 21:46:03 kernel: probe of 0000:00:19.1 returned 0 after 33427 usecs
Sep 16 21:46:03 kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: DMICs detected in NHLT tables: 4
Sep 16 21:46:03 kernel: initcall huawei_wmi_init+0x0/0xfb0 [huawei_wmi] returned 0 after 5348 usecs
Sep 16 21:46:03 kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: Firmware info: version 2:2:0-57864
Sep 16 21:46:03 kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: Firmware: ABI 3:22:1 Kernel ABI 3:23:0
Sep 16 21:46:03 kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: unknown sof_ext_man header type 3 size 0x30
Sep 16 21:46:03 kernel: calling  pcspkr_platform_driver_init+0x0/0xff0 [pcspkr] @ 489
Sep 16 21:46:03 kernel: input: PC Speaker as /devices/platform/pcspkr/input/input8
Sep 16 21:46:03 kernel: probe of pcspkr returned 0 after 83 usecs
Sep 16 21:46:03 kernel: initcall pcspkr_platform_driver_init+0x0/0xff0 [pcspkr] returned 0 after 109 usecs
Sep 16 21:46:03 kernel: intel-lpss 0000:00:1e.0: enabling device (0004 -> 0006)
Sep 16 21:46:03 systemd[1]: Finished Enable Persistent Storage in systemd-networkd.
Sep 16 21:46:03 kernel: iwlwifi 0000:00:14.3: WFPM_UMAC_PD_NOTIFICATION: 0x20
Sep 16 21:46:03 kernel: idma64 idma64.4: Found Intel integrated DMA 64-bit
Sep 16 21:46:03 kernel: iwlwifi 0000:00:14.3: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
Sep 16 21:46:03 kernel: iwlwifi 0000:00:14.3: RFIm is deactivated, reason = 5
Sep 16 21:46:03 kernel: probe of idma64.4 returned 0 after 2963 usecs
Sep 16 21:46:03 kernel: iwlwifi 0000:00:14.3: WFPM_AUTH_KEY_0: 0x90
Sep 16 21:46:03 kernel: iwlwifi 0000:00:14.3: CNVI_SCU_SEQ_DATA_DW9: 0x10
Sep 16 21:46:03 kernel: probe of 0000:00:1e.0 returned 0 after 17724 usecs
Sep 16 21:46:03 kernel: iwlwifi 0000:00:14.3: Detected RF HR B5, rfid=0x10a100
Sep 16 21:46:03 systemd[1]: Mounted /efi.
Sep 16 21:46:03 systemd[1]: Mounted Temporary Directory /tmp.
Sep 16 21:46:03 kernel: calling  intel_uncore_init+0x0/0xda0 [intel_uncore] @ 519
Sep 16 21:46:03 kernel: initcall intel_uncore_init+0x0/0xda0 [intel_uncore] returned 0 after 1818 usecs
Sep 16 21:46:03 kernel: calling  ecdh_init+0x0/0xff0 [ecdh_generic] @ 470
Sep 16 21:46:03 kernel: initcall ecdh_init+0x0/0xff0 [ecdh_generic] returned 0 after 4 usecs
Sep 16 21:46:03 kernel: calling  cstate_pmu_init+0x0/0xff0 [intel_cstate] @ 489
Sep 16 21:46:03 kernel: intel-lpss 0000:00:1e.2: enabling device (0004 -> 0006)
Sep 16 21:46:03 kernel: idma64 idma64.5: Found Intel integrated DMA 64-bit
Sep 16 21:46:03 kernel: initcall acpi_cpufreq_init+0x0/0x30 [acpi_cpufreq] returned -19 after 1179 usecs
Sep 16 21:46:03 kernel: probe of idma64.5 returned 0 after 1206 usecs
Sep 16 21:46:03 kernel: probe of 0000:00:1e.2 returned 0 after 15935 usecs
Sep 16 21:46:03 kernel: initcall intel_lpss_pci_driver_init+0x0/0xff0 [intel_lpss_pci] returned 0 after 3980 usecs
Sep 16 21:46:03 kernel: initcall cstate_pmu_init+0x0/0xff0 [intel_cstate] returned 0 after 7019 usecs
Sep 16 21:46:03 kernel: probe of INTC1046:06 returned 0 after 106235 usecs
Sep 16 21:46:03 kernel: calling  rapl_pmu_init+0x0/0xff0 [rapl] @ 494
Sep 16 21:46:03 kernel: RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
Sep 16 21:46:03 kernel: RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
Sep 16 21:46:03 kernel: RAPL PMU: hw unit of domain package 2^-14 Joules
Sep 16 21:46:03 kernel: RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
Sep 16 21:46:03 kernel: RAPL PMU: hw unit of domain psys 2^-14 Joules
Sep 16 21:46:03 kernel: initcall rapl_pmu_init+0x0/0xff0 [rapl] returned 0 after 5004 usecs
Sep 16 21:46:03 kernel: calling  bt_init+0x0/0xd0 [bluetooth] @ 470
Sep 16 21:46:03 kernel: Bluetooth: Core ver 2.22
Sep 16 21:46:03 kernel: NET: Registered PF_BLUETOOTH protocol family
Sep 16 21:46:03 kernel: Bluetooth: HCI device and connection manager initialized
Sep 16 21:46:03 kernel: Bluetooth: HCI socket layer initialized
Sep 16 21:46:03 kernel: Bluetooth: L2CAP socket layer initialized
Sep 16 21:46:03 kernel: Bluetooth: SCO socket layer initialized
Sep 16 21:46:03 kernel: initcall bt_init+0x0/0xd0 [bluetooth] returned 0 after 18 usecs
Sep 16 21:46:03 kernel: calling  cryptd_init+0x0/0xff0 [cryptd] @ 466
Sep 16 21:46:03 kernel: cryptd: max_cpu_qlen set to 1000
Sep 16 21:46:03 kernel: initcall cryptd_init+0x0/0xff0 [cryptd] returned 0 after 48 usecs
Sep 16 21:46:03 kernel: calling  aesni_init+0x0/0xff0 [aesni_intel] @ 494
Sep 16 21:46:03 kernel: AVX2 version of gcm_enc/dec engaged.
Sep 16 21:46:03 kernel: AES CTR mode by8 optimization enabled
Sep 16 21:46:03 kernel: initcall aesni_init+0x0/0xff0 [aesni_intel] returned 0 after 69 usecs
Sep 16 21:46:03 kernel: calling  sha1_ssse3_mod_init+0x0/0xff0 [sha1_ssse3] @ 518
Sep 16 21:46:03 kernel: initcall sha1_ssse3_mod_init+0x0/0xff0 [sha1_ssse3] returned 0 after 8 usecs
Sep 16 21:46:04 kernel: calling  sha256_ssse3_mod_init+0x0/0xff0 [sha256_ssse3] @ 519
Sep 16 21:46:04 kernel: initcall sha256_ssse3_mod_init+0x0/0xff0 [sha256_ssse3] returned 0 after 10 usecs
Sep 16 21:46:04 kernel: calling  btusb_driver_init+0x0/0xff0 [btusb] @ 475
Sep 16 21:46:04 kernel: calling  sha512_ssse3_mod_init+0x0/0xff0 [sha512_ssse3] @ 494
Sep 16 21:46:04 kernel: initcall sha512_ssse3_mod_init+0x0/0xff0 [sha512_ssse3] returned 0 after 7 usecs
Sep 16 21:46:04 kernel: calling  ghash_pclmulqdqni_mod_init+0x0/0xff0 [ghash_clmulni_intel] @ 518
Sep 16 21:46:04 kernel: initcall ghash_pclmulqdqni_mod_init+0x0/0xff0 [ghash_clmulni_intel] returned 0 after 7 usecs
Sep 16 21:46:04 kernel: calling  polyval_mod_init+0x0/0xff0 [polyval_generic] @ 494
Sep 16 21:46:04 kernel: initcall polyval_mod_init+0x0/0xff0 [polyval_generic] returned 0 after 1 usecs
Sep 16 21:46:04 kernel: iwlwifi 0000:00:14.3: base HW address: bc:f1:71:11:e2:bb
Sep 16 21:46:04 kernel: calling  polyval_clmulni_mod_init+0x0/0xff0 [polyval_clmulni] @ 466
Sep 16 21:46:04 kernel: initcall polyval_clmulni_mod_init+0x0/0xff0 [polyval_clmulni] returned 0 after 3 usecs
Sep 16 21:46:04 kernel: calling  crc32_pclmul_mod_init+0x0/0xff0 [crc32_pclmul] @ 496
Sep 16 21:46:04 kernel: initcall crc32_pclmul_mod_init+0x0/0xff0 [crc32_pclmul] returned 0 after 3 usecs
Sep 16 21:46:04 kernel: calling  crct10dif_intel_mod_init+0x0/0xff0 [crct10dif_pclmul] @ 466
Sep 16 21:46:04 kernel: initcall crct10dif_intel_mod_init+0x0/0xff0 [crct10dif_pclmul] returned 0 after 4 usecs
Sep 16 21:46:04 kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: Firmware info: version 2:2:0-57864
Sep 16 21:46:04 kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: Firmware: ABI 3:22:1 Kernel ABI 3:23:0
Sep 16 21:46:04 kernel: probe of INTC1046:07 returned 0 after 79491 usecs
Sep 16 21:46:04 kernel: initcall iwl_mvm_init+0x0/0xff0 [iwlmvm] returned 0 after 34454 usecs
Sep 16 21:46:04 kernel: calling  kvm_x86_init+0x0/0x50 [kvm] @ 494
Sep 16 21:46:04 kernel: initcall kvm_x86_init+0x0/0x50 [kvm] returned 0 after 0 usecs
Sep 16 21:46:04 kernel: probe of INTC1046:08 returned 0 after 33215 usecs
Sep 16 21:46:04 kernel: calling  vmx_init+0x0/0x210 [kvm_intel] @ 481
Sep 16 21:46:04 kernel: initcall vmx_init+0x0/0x210 [kvm_intel] returned 0 after 6817 usecs
Sep 16 21:46:04 kernel: calling  coretemp_init+0x0/0xff0 [coretemp] @ 519
Sep 16 21:46:04 kernel: initcall coretemp_init+0x0/0xff0 [coretemp] returned 0 after 482 usecs
Sep 16 21:46:04 kernel: calling  powerclamp_init+0x0/0xff0 [intel_powerclamp] @ 494
Sep 16 21:46:04 kernel: initcall powerclamp_init+0x0/0xff0 [intel_powerclamp] returned 0 after 35 usecs
Sep 16 21:46:04 kernel: calling  pkg_temp_thermal_init+0x0/0xff0 [x86_pkg_temp_thermal] @ 489
Sep 16 21:46:04 kernel: initcall pkg_temp_thermal_init+0x0/0xff0 [x86_pkg_temp_thermal] returned 0 after 182 usecs
Sep 16 21:46:04 kernel: probe of INTC1046:09 returned 0 after 33352 usecs
Sep 16 21:46:04 kernel: calling  tcc_cooling_init+0x0/0xff0 [intel_tcc_cooling] @ 496
Sep 16 21:46:04 kernel: intel_tcc_cooling: Programmable TCC Offset detected
Sep 16 21:46:04 kernel: initcall tcc_cooling_init+0x0/0xff0 [intel_tcc_cooling] returned 0 after 20 usecs
Sep 16 21:46:04 kernel: calling  intel_uncore_init+0x0/0xff0 [intel_uncore_frequency] @ 519
Sep 16 21:46:04 kernel: initcall intel_uncore_init+0x0/0xff0 [intel_uncore_frequency] returned 0 after 151 usecs
Sep 16 21:46:04 kernel: probe of 3-10:1.0 returned 0 after 157 usecs
Sep 16 21:46:04 kernel: usbcore: registered new interface driver btusb
Sep 16 21:46:04 kernel: initcall btusb_driver_init+0x0/0xff0 [btusb] returned 0 after 9021 usecs
Sep 16 21:46:04 kernel: Bluetooth: hci0: Device revision is 2
Sep 16 21:46:04 kernel: Bluetooth: hci0: Secure boot is enabled
Sep 16 21:46:04 kernel: Bluetooth: hci0: OTP lock is enabled
Sep 16 21:46:04 kernel: Bluetooth: hci0: API lock is enabled
Sep 16 21:46:04 kernel: Bluetooth: hci0: Debug lock is disabled
Sep 16 21:46:04 kernel: Bluetooth: hci0: Minimum firmware build 1 week 10 2014
Sep 16 21:46:04 kernel: Bluetooth: hci0: Bootloader timestamp 2019.40 buildtype 1 build 38
Sep 16 21:46:04 kernel: ACPI Warning: \_SB.PC00.XHCI.RHUB.HS10._DSM: Argument #4 type mismatch - Found [Integer], ACPI requires [Package] (20230628/nsarguments-61)
Sep 16 21:46:04 kernel: Bluetooth: hci0: DSM reset method type: 0x00
Sep 16 21:46:04 kernel: calling  intel_rapl_msr_driver_init+0x0/0xff0 [intel_rapl_msr] @ 518
Sep 16 21:46:04 systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
Sep 16 21:46:04 kernel: intel_rapl_msr: PL4 support detected.
Sep 16 21:46:04 kernel: calling  iTCO_vendor_init_module+0x0/0xff0 [iTCO_vendor_support] @ 496
Sep 16 21:46:04 kernel: iTCO_vendor_support: vendor-support=0
Sep 16 21:46:04 kernel: initcall iTCO_vendor_init_module+0x0/0xff0 [iTCO_vendor_support] returned 0 after 1 usecs
Sep 16 21:46:04 kernel: intel_rapl_common: Found RAPL domain package
Sep 16 21:46:04 kernel: intel_rapl_common: Found RAPL domain core
Sep 16 21:46:04 kernel: intel_rapl_common: Found RAPL domain uncore
Sep 16 21:46:04 kernel: intel_rapl_common: Found RAPL domain psys
Sep 16 21:46:04 kernel: calling  pmt_class_init+0x0/0xff0 [pmt_class] @ 466
Sep 16 21:46:04 kernel: initcall pmt_class_init+0x0/0xff0 [pmt_class] returned 0 after 7 usecs
Sep 16 21:46:04 kernel: Bluetooth: hci0: Found device firmware: intel/ibt-0040-4150.sfi
Sep 16 21:46:04 kernel: Bluetooth: hci0: Boot Address: 0x100800
Sep 16 21:46:04 kernel: Bluetooth: hci0: Firmware Version: 120-18.24
Sep 16 21:46:04 systemd[1]: Starting Load/Save RF Kill Switch Status...
Sep 16 21:46:04 kernel: probe of INTC1046:0a returned 0 after 35597 usecs
Sep 16 21:46:04 kernel: calling  intel_pmc_driver_init+0x0/0xff0 [intel_pmc_bxt] @ 496
Sep 16 21:46:04 kernel: calling  pmt_telem_init+0x0/0xff0 [pmt_telemetry] @ 466
Sep 16 21:46:04 kernel: calling  mei_pxp_driver_init+0x0/0xff0 [mei_pxp] @ 519
Sep 16 21:46:04 kernel: initcall intel_pmc_driver_init+0x0/0xff0 [intel_pmc_bxt] returned 0 after 85 usecs
Sep 16 21:46:04 kernel: calling  ppdev_init+0x0/0xff0 [ppdev] @ 489
Sep 16 21:46:04 kernel: mei_pxp 0000:00:16.0-fbf6fcf1-96cf-4e2e-a6a6-1bab8cbe36b1: bound 0000:00:02.0 (ops i915_pxp_tee_component_ops [i915])
Sep 16 21:46:04 kernel: probe of 0000:00:16.0-fbf6fcf1-96cf-4e2e-a6a6-1bab8cbe36b1 returned 0 after 695 usecs
Sep 16 21:46:04 kernel: initcall mei_pxp_driver_init+0x0/0xff0 [mei_pxp] returned 0 after 717 usecs
Sep 16 21:46:04 kernel: ppdev: user-space parallel port driver
Sep 16 21:46:04 kernel: probe of intel_vsec.telemetry.0 returned 0 after 90 usecs
Sep 16 21:46:04 kernel: initcall ppdev_init+0x0/0xff0 [ppdev] returned 0 after 996 usecs
Sep 16 21:46:04 kernel: initcall pmt_telem_init+0x0/0xff0 [pmt_telemetry] returned 0 after 2028 usecs
Sep 16 21:46:04 kernel: calling  mei_hdcp_driver_init+0x0/0xff0 [mei_hdcp] @ 494
Sep 16 21:46:04 systemd[1]: systemd-vconsole-setup.service: Deactivated successfully.
Sep 16 21:46:04 systemd[1]: Stopped Virtual Console Setup.
Sep 16 21:46:04 kernel: probe of intel_rapl_msr.0 returned 0 after 26702 usecs
Sep 16 21:46:04 kernel: initcall intel_rapl_msr_driver_init+0x0/0xff0 [intel_rapl_msr] returned 0 after 292 usecs
Sep 16 21:46:04 kernel: mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_ops [i915])
Sep 16 21:46:04 kernel: probe of 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04 returned 0 after 389 usecs
Sep 16 21:46:04 kernel: initcall mei_hdcp_driver_init+0x0/0xff0 [mei_hdcp] returned 0 after 441 usecs
Sep 16 21:46:04 kernel: calling  mt_driver_init+0x0/0xff0 [hid_multitouch] @ 475
Sep 16 21:46:04 kernel: calling  iTCO_wdt_driver_init+0x0/0xff0 [iTCO_wdt] @ 496
Sep 16 21:46:04 kernel: iTCO_wdt iTCO_wdt: Found a Intel PCH TCO device (Version=6, TCOBASE=0x0400)
Sep 16 21:46:04 kernel: iTCO_wdt iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
Sep 16 21:46:04 kernel: probe of iTCO_wdt returned 0 after 8476 usecs
Sep 16 21:46:04 kernel: initcall iTCO_wdt_driver_init+0x0/0xff0 [iTCO_wdt] returned 0 after 8659 usecs
Sep 16 21:46:04 kernel: calling  dmic_driver_init+0x0/0xff0 [snd_soc_dmic] @ 518
Sep 16 21:46:04 kernel: probe of dmic-codec returned 0 after 12 usecs
Sep 16 21:46:04 kernel: initcall dmic_driver_init+0x0/0xff0 [snd_soc_dmic] returned 0 after 45 usecs
Sep 16 21:46:04 systemd[1]: Stopping Virtual Console Setup...
Sep 16 21:46:04 kernel: calling  dw8250_platform_driver_init+0x0/0xff0 [8250_dw] @ 494
Sep 16 21:46:04 kernel: calling  dw_init+0x0/0xff0 [dw_dmac] @ 518
Sep 16 21:46:04 kernel: initcall dw_init+0x0/0xff0 [dw_dmac] returned 0 after 35 usecs
Sep 16 21:46:04 kernel: calling  pxa2xx_spi_init+0x0/0xff0 [spi_pxa2xx_platform] @ 518
Sep 16 21:46:04 kernel: probe of INTC1046:0b returned 0 after 34725 usecs
Sep 16 21:46:04 kernel: calling  sof_probes_client_drv_init+0x0/0xff0 [snd_sof_probes] @ 519
Sep 16 21:46:04 kernel: probe of snd_sof.hda-probes.0 returned 6 after 5 usecs
Sep 16 21:46:04 kernel: initcall sof_probes_client_drv_init+0x0/0xff0 [snd_sof_probes] returned 0 after 19 usecs
Sep 16 21:46:04 kernel: calling  hdmi_init+0x0/0xff0 [snd_soc_hdac_hdmi] @ 496
Sep 16 21:46:04 kernel: initcall hdmi_init+0x0/0xff0 [snd_soc_hdac_hdmi] returned 0 after 21 usecs
Sep 16 21:46:04 kernel: probe of dw-apb-uart.4:0 returned 0 after 15 usecs
Sep 16 21:46:04 kernel: probe of dw-apb-uart.4:0.0 returned 0 after 5 usecs
Sep 16 21:46:04 kernel: dw-apb-uart.4: ttyS4 at MMIO 0x4017004000 (irq = 16, base_baud = 6250000) is a 16550A
Sep 16 21:46:04 kernel: calling  skl_hda_audio_init+0x0/0xff0 [snd_soc_skl_hda_dsp] @ 496
Sep 16 21:46:04 kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: Topology: ABI 3:22:1 Kernel ABI 3:23:0
Sep 16 21:46:04 kernel: skl_hda_dsp_generic skl_hda_dsp_generic: ASoC: Parent card not yet available, widget card binding deferred
Sep 16 21:46:04 kernel: calling  snd_ctl_led_init+0x0/0xff0 [snd_ctl_led] @ 632
Sep 16 21:46:04 kernel: initcall snd_ctl_led_init+0x0/0xff0 [snd_ctl_led] returned 0 after 43 usecs
Sep 16 21:46:04 systemd[1]: Starting Virtual Console Setup...
Sep 16 21:46:04 systemd[1]: run-credentials-systemd\x2dvconsole\x2dsetup.service.mount: Deactivated successfully.
Sep 16 21:46:04 systemd[1]: Started Load/Save RF Kill Switch Status.
Sep 16 21:46:04 systemd[1]: Reached target Bluetooth Support.
Sep 16 21:46:04 kernel: snd_hda_codec_conexant ehdaudio0D0: SN6140: BIOS auto-probing.
Sep 16 21:46:04 kernel: snd_hda_codec_conexant ehdaudio0D0: autoconfig for SN6140: line_outs=1 (0x17/0x0/0x0/0x0/0x0) type:speaker
Sep 16 21:46:04 kernel: probe of dw-apb-uart.4 returned 0 after 30751 usecs
Sep 16 21:46:04 kernel: snd_hda_codec_conexant ehdaudio0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
Sep 16 21:46:04 kernel: probe of pxa2xx-spi.5 returned 0 after 28259 usecs
Sep 16 21:46:04 kernel: initcall dw8250_platform_driver_init+0x0/0xff0 [8250_dw] returned 0 after 23006 usecs
Sep 16 21:46:04 kernel: snd_hda_codec_conexant ehdaudio0D0:    hp_outs=1 (0x16/0x0/0x0/0x0/0x0)
Sep 16 21:46:04 kernel: initcall pxa2xx_spi_init+0x0/0xff0 [spi_pxa2xx_platform] returned 0 after 24282 usecs
Sep 16 21:46:04 kernel: snd_hda_codec_conexant ehdaudio0D0:    mono: mono_out=0x0
Sep 16 21:46:04 kernel: snd_hda_codec_conexant ehdaudio0D0:    inputs:
Sep 16 21:46:04 kernel: snd_hda_codec_conexant ehdaudio0D0:      Mic=0x19
Sep 16 21:46:04 kernel: skl_hda_dsp_generic skl_hda_dsp_generic: hda_dsp_hdmi_build_controls: no PCM in topology for HDMI converter 3
Sep 16 21:46:04 kernel: probe of 0018:04F3:31DC.0001 returned 19 after 8 usecs
Sep 16 21:46:04 kernel: input: ELAN260B:00 04F3:31DC Mouse as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-12/i2c-ELAN260B:00/0018:04F3:31DC.0001/input/input11
Sep 16 21:46:04 kernel: input: ELAN260B:00 04F3:31DC Touchpad as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-12/i2c-ELAN260B:00/0018:04F3:31DC.0001/input/input13
Sep 16 21:46:04 kernel: hid-multitouch 0018:04F3:31DC.0001: input,hidraw0: I2C HID v1.00 Mouse [ELAN260B:00 04F3:31DC] on i2c-ELAN260B:00
Sep 16 21:46:04 kernel: probe of 0018:04F3:31DC.0001 returned 0 after 14647 usecs
Sep 16 21:46:04 kernel: initcall mt_driver_init+0x0/0xff0 [hid_multitouch] returned 0 after 49592 usecs
Sep 16 21:46:04 kernel: input: sof-hda-dsp Mic as /devices/pci0000:00/0000:00:1f.3/skl_hda_dsp_generic/sound/card0/input9
Sep 16 21:46:04 kernel: input: sof-hda-dsp Headphone as /devices/pci0000:00/0000:00:1f.3/skl_hda_dsp_generic/sound/card0/input10
Sep 16 21:46:04 kernel: input: sof-hda-dsp HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/skl_hda_dsp_generic/sound/card0/input14
Sep 16 21:46:04 kernel: input: sof-hda-dsp HDMI/DP,pcm=4 as /devices/pci0000:00/0000:00:1f.3/skl_hda_dsp_generic/sound/card0/input15
Sep 16 21:46:04 kernel: input: sof-hda-dsp HDMI/DP,pcm=5 as /devices/pci0000:00/0000:00:1f.3/skl_hda_dsp_generic/sound/card0/input16
Sep 16 21:46:04 kernel: probe of skl_hda_dsp_generic returned 0 after 59922 usecs
Sep 16 21:46:04 kernel: initcall skl_hda_audio_init+0x0/0xff0 [snd_soc_skl_hda_dsp] returned 0 after 54179 usecs
Sep 16 21:46:04 kernel: calling  mousedev_init+0x0/0xff0 [mousedev] @ 470
Sep 16 21:46:04 kernel: mousedev: PS/2 mouse device common for all mice
Sep 16 21:46:04 kernel: initcall mousedev_init+0x0/0xff0 [mousedev] returned 0 after 195 usecs
Sep 16 21:46:04 kernel: calling  joydev_init+0x0/0xff0 [joydev] @ 470
Sep 16 21:46:04 kernel: initcall joydev_init+0x0/0xff0 [joydev] returned 0 after 1 usecs
Sep 16 21:46:04 kernel: probe of INTC1046:0c returned 0 after 96316 usecs
Sep 16 21:46:04 systemd[1]: Starting Load Kernel Module dm_mod...
Sep 16 21:46:04 systemd[1]: Starting Load Kernel Module loop...
Sep 16 21:46:04 systemd[1]: File System Check on Root Device was skipped because of an unmet condition check (ConditionPathIsReadWrite=!/).
Sep 16 21:46:04 systemd[1]: Clear Stale Hibernate Storage Info was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67).
Sep 16 21:46:04 systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
Sep 16 21:46:04 systemd[1]: TPM PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Sep 16 21:46:04 systemd[1]: Create System Users was skipped because no trigger condition checks were met.
Sep 16 21:46:04 systemd[1]: Early TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Sep 16 21:46:04 systemd[1]: TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Sep 16 21:46:04 systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
Sep 16 21:46:04 kernel: probe of INTC1046:0d returned 0 after 70194 usecs
Sep 16 21:46:04 systemd[1]: Finished Load Kernel Module dm_mod.
Sep 16 21:46:04 systemd[1]: modprobe@loop.service: Deactivated successfully.
Sep 16 21:46:04 systemd[1]: Finished Load Kernel Module loop.
Sep 16 21:46:04 systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
Sep 16 21:46:04 kernel: probe of INTC1046:0e returned 0 after 76543 usecs
Sep 16 21:46:04 kernel: probe of INTC1046:0f returned 0 after 33477 usecs
Sep 16 21:46:04 kernel: probe of INTC1046:10 returned 0 after 33249 usecs
Sep 16 21:46:04 kernel: probe of INTC1046:11 returned 0 after 33381 usecs
Sep 16 21:46:04 kernel: probe of INTC1046:12 returned 0 after 42884 usecs
Sep 16 21:46:04 kernel: probe of INTC1046:13 returned 0 after 53333 usecs
Sep 16 21:46:04 kernel: probe of INTC1046:14 returned 0 after 80196 usecs
Sep 16 21:46:04 kernel: probe of INTC1046:15 returned 0 after 66566 usecs
Sep 16 21:46:04 kernel: probe of INTC1046:16 returned 0 after 80073 usecs
Sep 16 21:46:04 kernel: initcall int3403_driver_init+0x0/0xff0 [int3403_thermal] returned 0 after 588292 usecs
Sep 16 21:46:05 systemd-fsck[606]: exfatfsck 1.4.0
Sep 16 21:46:05 systemd-fsck[606]: Checking file system on /dev/nvme0n1p4.
Sep 16 21:46:05 systemd-fsck[606]: File system version           1.0
Sep 16 21:46:05 systemd-fsck[606]: Sector size                 512 bytes
Sep 16 21:46:05 systemd-fsck[606]: Cluster size                128 KB
Sep 16 21:46:05 systemd-fsck[606]: Volume size                 210 GB
Sep 16 21:46:05 systemd-fsck[606]: Used space                   82 GB
Sep 16 21:46:05 systemd-fsck[606]: Available space             128 GB
Sep 16 21:46:05 systemd-fsck[606]: Totally 1043 directories and 19837 files.
Sep 16 21:46:05 systemd-fsck[606]: File system checking finished. No errors found.
Sep 16 21:46:05 systemd[1]: Finished File System Check on /dev/disk/by-uuid/7DF8-380C.
Sep 16 21:46:05 systemd[1]: Mounting /mnt/storage...
Sep 16 21:46:05 systemd[1]: Mounted /mnt/storage.
Sep 16 21:46:05 systemd[1]: Reached target Local File Systems.
Sep 16 21:46:05 systemd[1]: Listening on Boot Entries Service Socket.
Sep 16 21:46:05 systemd[1]: Listening on System Extension Image Management.
Sep 16 21:46:05 systemd[1]: Rebuild Dynamic Linker Cache was skipped because no trigger condition checks were met.
Sep 16 21:46:05 systemd[1]: Starting Tell Plymouth To Write Out Runtime Data...
Sep 16 21:46:05 systemd[1]: Set Up Additional Binary Formats was skipped because no trigger condition checks were met.
Sep 16 21:46:05 systemd[1]: Update Boot Loader Random Seed was skipped because no trigger condition checks were met.
Sep 16 21:46:05 systemd[1]: Starting Create System Files and Directories...
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc/ssh.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc/ssh/ssh_config.d.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc/ssh.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc/ssh/sshd_config.d.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/lib.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc/profile.d.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/log.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/lib.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/lib.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/lib.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/lib/colord.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/lib.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/lib/dbus.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run/dbus.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/lib.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/lib.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/lib.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run/lock.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/cache.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/lib.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc/pam.d.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc/ssh.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc/ssh.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc/ssh.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc/ssh/sshd_config.d.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc/polkit-1.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/lib.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/lib.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run/sudo.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run/systemd.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run/systemd/netif.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run/systemd/netif.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/lib.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/lib/systemd.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/lib.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/lib/systemd.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run/systemd.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run/systemd.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run/systemd.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run/systemd.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run/systemd.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run/systemd.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/lib/systemd.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/lib/systemd.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/lib.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/log.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/cache.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/lib.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/lib/tpm2-tss/system.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run/tpm2-tss.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/lib.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/log.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/log.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/log.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /tmp (owned by root) during canonicalization of tmp.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /tmp (owned by root) during canonicalization of tmp.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /tmp (owned by root) during canonicalization of tmp.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /tmp (owned by root) during canonicalization of tmp.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc/audisp.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc/audit.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc/audit/audisp-remote.conf.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc/audit/plugins.d.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc/audit/plugins.d/au-remote.conf.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc/audit/plugins.d/syslog.conf.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc/audit/plugins.d/audispd-zos-remote.conf.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc/audit/plugins.d/af_unix.conf.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc/audit/plugins.d/filter.conf.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc/libaudit.conf.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/log/audit.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /etc (owned by root) during canonicalization of etc/brlapi.key.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/log/journal.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/log/journal.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/log/journal.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/log/journal/d2f6e77df46d4a1e8240e7ccd89ad000.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/log/journal/d2f6e77df46d4a1e8240e7ccd89ad000.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/log/journal/d2f6e77df46d4a1e8240e7ccd89ad000.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/log/journal/remote.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /usr (owned by root) during canonicalization of usr/lib/utempter/utempter.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /usr (owned by root) during canonicalization of usr/bin/groupmems.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run/log/journal.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /run (owned by root) during canonicalization of run/log/journal.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/log/journal/d2f6e77df46d4a1e8240e7ccd89ad000/system.journal.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/log/journal/d2f6e77df46d4a1e8240e7ccd89ad000/system.journal.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /var (owned by root) during canonicalization of var/lib/tpm2-tss/system/keystore.
Sep 16 21:46:05 systemd-tmpfiles[686]: Detected unsafe path transition / (owned by public) → /sys (owned by root) during canonicalization of sys/kernel/security/tpm0/binary_bios_measurements.
Sep 16 21:46:05 systemd[1]: Finished Create System Files and Directories.
Sep 16 21:46:05 systemd[1]: Rebuild Journal Catalog was skipped because of an unmet condition check (ConditionNeedsUpdate=/var).
Sep 16 21:46:05 systemd[1]: Starting Network Name Resolution...
Sep 16 21:46:05 systemd[1]: Starting Network Time Synchronization...
Sep 16 21:46:05 systemd[1]: Update is Completed was skipped because no trigger condition checks were met.
Sep 16 21:46:05 systemd[1]: Starting Record System Boot/Shutdown in UTMP...
Sep 16 21:46:05 systemd-resolved[689]: Positive Trust Anchors:
Sep 16 21:46:05 systemd-resolved[689]: . IN DS 20326 8 2 e06d44b80b8f1d39a95c0b0d7c65d08458e880409bbc683457104237c7f8ec8d
Sep 16 21:46:05 systemd-resolved[689]: Negative trust anchors: home.arpa 10.in-addr.arpa 16.172.in-addr.arpa 17.172.in-addr.arpa 18.172.in-addr.arpa 19.172.in-addr.arpa 20.172.in-addr.arpa 21.172.in-addr.arpa 22.172.in-addr.arpa 23.172.in-addr.arpa 24.172.in-addr.arpa 25.172.in-addr.arpa 26.172.in-addr.arpa 27.172.in-addr.arpa 28.172.in-addr.arpa 29.172.in-addr.arpa 30.172.in-addr.arpa 31.172.in-addr.arpa 170.0.0.192.in-addr.arpa 171.0.0.192.in-addr.arpa 168.192.in-addr.arpa d.f.ip6.arpa ipv4only.arpa resolver.arpa corp home internal intranet lan local private test
Sep 16 21:46:05 systemd[1]: Finished Record System Boot/Shutdown in UTMP.
Sep 16 21:46:05 systemd[1]: Started Network Time Synchronization.
Sep 16 21:46:05 systemd[1]: Reached target System Time Set.
Sep 16 21:46:05 systemd-resolved[689]: Using system hostname 'X-Ware'.
Sep 16 21:46:05 systemd[1]: Started Network Name Resolution.
Sep 16 21:46:05 systemd[1]: Reached target Host and Network Name Lookups.
Sep 16 21:46:05 kernel: Bluetooth: hci0: Waiting for firmware download to complete
Sep 16 21:46:05 kernel: Bluetooth: hci0: Firmware loaded in 1540631 usecs
Sep 16 21:46:05 kernel: Bluetooth: hci0: Waiting for device to boot
Sep 16 21:46:05 kernel: Bluetooth: hci0: Malformed MSFT vendor event: 0x02
Sep 16 21:46:05 kernel: Bluetooth: hci0: Device booted in 14829 usecs
Sep 16 21:46:05 kernel: Bluetooth: hci0: Found Intel DDC parameters: intel/ibt-0040-4150.ddc
Sep 16 21:46:05 kernel: Bluetooth: hci0: Applying Intel DDC parameters completed
Sep 16 21:46:05 kernel: Bluetooth: hci0: Firmware timestamp 2024.18 buildtype 1 build 81528
Sep 16 21:46:05 systemd[1]: Started Show Plymouth Boot Screen.
Sep 16 21:46:05 systemd[1]: Dispatch Password Requests to Console Directory Watch was skipped because of an unmet condition check (ConditionPathExists=!/run/plymouth/pid).
Sep 16 21:46:05 systemd[1]: Started Forward Password Requests to Plymouth Directory Watch.
Sep 16 21:46:05 systemd[1]: Reached target Local Encrypted Volumes.
Sep 16 21:46:05 systemd[1]: Finished Virtual Console Setup.
Sep 16 21:46:05 systemd[1]: First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
Sep 16 21:46:05 systemd[1]: First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes).
Sep 16 21:46:05 systemd[1]: Save Transient machine-id to Disk was skipped because of an unmet condition check (ConditionPathIsMountPoint=/etc/machine-id).
Sep 16 21:46:05 systemd[1]: Received SIGRTMIN+20 from PID 525 (plymouthd).
Sep 16 21:46:05 systemd[1]: Finished Tell Plymouth To Write Out Runtime Data.
Sep 16 21:46:05 systemd[1]: Reached target System Initialization.
Sep 16 21:46:05 systemd[1]: Started CUPS Scheduler.
Sep 16 21:46:05 systemd[1]: VirtualBox Guest VMSVGA resize client was skipped because of an unmet condition check (ConditionVirtualization=oracle).
Sep 16 21:46:05 systemd[1]: Started Refresh existing PGP keys of archlinux-keyring regularly.
Sep 16 21:46:05 systemd[1]: Started Daily man-db regeneration.
Sep 16 21:46:05 systemd[1]: Started Daily verification of password and group files.
Sep 16 21:46:05 systemd[1]: Started Daily Cleanup of Temporary Directories.
Sep 16 21:46:05 systemd[1]: Reached target Path Units.
Sep 16 21:46:05 systemd[1]: Reached target Timer Units.
Sep 16 21:46:05 systemd[1]: Listening on CUPS Scheduler.
Sep 16 21:46:05 systemd[1]: Listening on D-Bus System Message Bus Socket.
Sep 16 21:46:05 systemd[1]: Listening on GnuPG network certificate management daemon for /etc/pacman.d/gnupg.
Sep 16 21:46:05 systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers) for /etc/pacman.d/gnupg.
Sep 16 21:46:05 systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache (restricted) for /etc/pacman.d/gnupg.
Sep 16 21:46:05 systemd[1]: Listening on GnuPG cryptographic agent (ssh-agent emulation) for /etc/pacman.d/gnupg.
Sep 16 21:46:05 systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache for /etc/pacman.d/gnupg.
Sep 16 21:46:05 systemd[1]: Listening on GnuPG public key management service for /etc/pacman.d/gnupg.
Sep 16 21:46:05 systemd[1]: Listening on OpenSSH Server Socket (systemd-ssh-generator, AF_UNIX Local).
Sep 16 21:46:05 systemd[1]: Listening on Hostname Service Socket.
Sep 16 21:46:05 systemd[1]: Reached target Socket Units.
Sep 16 21:46:05 systemd[1]: Starting D-Bus System Message Bus...
Sep 16 21:46:05 systemd[1]: TPM PCR Barrier (Initialization) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Sep 16 21:46:05 systemd[1]: Started D-Bus System Message Bus.
Sep 16 21:46:05 systemd[1]: Reached target Basic System.
Sep 16 21:46:05 systemd[1]: Starting Network Manager...
Sep 16 21:46:05 systemd[1]: Starting Save/Restore Sound Card State...
Sep 16 21:46:05 systemd[1]: Manage Sound Card State (restore and store) was skipped because of an unmet condition check (ConditionPathExists=/etc/alsa/state-daemon.conf).
Sep 16 21:46:05 systemd[1]: Starting Initialize hardware monitoring sensors...
Sep 16 21:46:05 systemd[1]: Started Seat management daemon.
Sep 16 21:46:05 (modprobe)[704]: lm_sensors.service: Referenced but unset environment variable evaluates to an empty string: BUS_MODULES
Sep 16 21:46:05 systemd[1]: Starting User Login Management...
Sep 16 21:46:05 systemd[1]: TPM PCR Barrier (User) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Sep 16 21:46:05 systemd[1]: VirtualBox Guest Service was skipped because of an unmet condition check (ConditionVirtualization=oracle).
Sep 16 21:46:05 seatd[705]: 00:00:00.000 [INFO] [seatd/seat.c:39] Created VT-bound seat seat0
Sep 16 21:46:05 seatd[705]: 00:00:00.000 [INFO] [seatd/seatd.c:194] seatd started
Sep 16 21:46:05 dbus-broker-launch[700]: Ready
Sep 16 21:46:05 NetworkManager[702]: <info>  [1726515965.9783] NetworkManager (version 1.48.10-1) is starting... (boot:c17d7e5d-dd65-4c5b-b75c-dc3476ed8d76)
Sep 16 21:46:05 NetworkManager[702]: <info>  [1726515965.9783] Read config: /etc/NetworkManager/NetworkManager.conf (lib: 20-connectivity.conf)
Sep 16 21:46:05 systemd-logind[706]: New seat seat0.
Sep 16 21:46:05 NetworkManager[702]: <info>  [1726515965.9839] manager[0x5ecee3b7df00]: monitoring kernel firmware directory '/lib/firmware'.
Sep 16 21:46:05 systemd-logind[706]: Watching system buttons on /dev/input/event1 (Power Button)
Sep 16 21:46:05 NetworkManager[702]: <error> [1726515965.9843] session-monitor: failed to create systemd-logind monitor: -2
Sep 16 21:46:05 systemd-logind[706]: Watching system buttons on /dev/input/event0 (Lid Switch)
Sep 16 21:46:05 systemd-logind[706]: Watching system buttons on /dev/input/event2 (AT Translated Set 2 keyboard)
Sep 16 21:46:06 systemd[1]: Finished Save/Restore Sound Card State.
Sep 16 21:46:06 systemd[1]: Started User Login Management.
Sep 16 21:46:06 systemd[1]: Finished Initialize hardware monitoring sensors.
Sep 16 21:46:06 systemd[1]: Reached target Sound Card.
Sep 16 21:46:06 systemd[1]: Starting Hostname Service...
Sep 16 21:46:06 systemd[1]: Started Hostname Service.
Sep 16 21:46:06 NetworkManager[702]: <info>  [1726515966.1337] hostname: hostname: using hostnamed
Sep 16 21:46:06 NetworkManager[702]: <info>  [1726515966.1337] hostname: static hostname changed from (none) to "X-Ware"
Sep 16 21:46:06 NetworkManager[702]: <info>  [1726515966.1340] dns-mgr: init: dns=default,systemd-resolved rc-manager=symlink
Sep 16 21:46:06 NetworkManager[702]: <info>  [1726515966.1346] rfkill0: found Wi-Fi radio killswitch (at /sys/devices/pci0000:00/0000:00:14.3/ieee80211/phy0/rfkill0) (driver iwlwifi)
Sep 16 21:46:06 NetworkManager[702]: <info>  [1726515966.1347] manager[0x5ecee3b7df00]: rfkill: Wi-Fi hardware radio set enabled
Sep 16 21:46:06 NetworkManager[702]: <info>  [1726515966.1347] manager[0x5ecee3b7df00]: rfkill: WWAN hardware radio set enabled
Sep 16 21:46:06 NetworkManager[702]: <info>  [1726515966.1369] Loaded device plugin: NMOvsFactory (/usr/lib/NetworkManager/1.48.10-1/libnm-device-plugin-ovs.so)
Sep 16 21:46:06 NetworkManager[702]: <info>  [1726515966.1390] Loaded device plugin: NMBluezManager (/usr/lib/NetworkManager/1.48.10-1/libnm-device-plugin-bluetooth.so)
Sep 16 21:46:06 NetworkManager[702]: <info>  [1726515966.1394] Loaded device plugin: NMAtmManager (/usr/lib/NetworkManager/1.48.10-1/libnm-device-plugin-adsl.so)
Sep 16 21:46:06 NetworkManager[702]: <info>  [1726515966.1401] Loaded device plugin: NMWifiFactory (/usr/lib/NetworkManager/1.48.10-1/libnm-device-plugin-wifi.so)
Sep 16 21:46:06 NetworkManager[702]: <info>  [1726515966.1404] Loaded device plugin: NMWwanFactory (/usr/lib/NetworkManager/1.48.10-1/libnm-device-plugin-wwan.so)
Sep 16 21:46:06 NetworkManager[702]: <info>  [1726515966.1498] Loaded device plugin: NMTeamFactory (/usr/lib/NetworkManager/1.48.10-1/libnm-device-plugin-team.so)
Sep 16 21:46:06 NetworkManager[702]: <info>  [1726515966.1499] manager: rfkill: Wi-Fi enabled by radio killswitch; enabled by state file
Sep 16 21:46:06 NetworkManager[702]: <info>  [1726515966.1500] manager: rfkill: WWAN enabled by radio killswitch; enabled by state file
Sep 16 21:46:06 NetworkManager[702]: <info>  [1726515966.1500] manager: Networking is enabled by state file
Sep 16 21:46:06 NetworkManager[702]: <info>  [1726515966.1503] settings: Loaded settings plugin: keyfile (internal)
Sep 16 21:46:06 NetworkManager[702]: <info>  [1726515966.1518] dhcp: init: Using DHCP client 'internal'
Sep 16 21:46:06 NetworkManager[702]: <info>  [1726515966.1519] manager: (lo): new Loopback device (/org/freedesktop/NetworkManager/Devices/1)
Sep 16 21:46:06 NetworkManager[702]: <info>  [1726515966.1523] device (lo): state change: unmanaged -> unavailable (reason 'connection-assumed', sys-iface-state: 'external')
Sep 16 21:46:06 NetworkManager[702]: <info>  [1726515966.1526] device (lo): state change: unavailable -> disconnected (reason 'connection-assumed', sys-iface-state: 'external')
Sep 16 21:46:06 NetworkManager[702]: <info>  [1726515966.1529] device (lo): Activation: starting connection 'lo' (63a37395-2d43-49f1-8ff4-ef213e15f34c)
Sep 16 21:46:06 NetworkManager[702]: <info>  [1726515966.1530] device (wlan0): driver supports Access Point (AP) mode
Sep 16 21:46:06 NetworkManager[702]: <info>  [1726515966.1532] manager: (wlan0): new 802.11 Wi-Fi device (/org/freedesktop/NetworkManager/Devices/2)
Sep 16 21:46:06 NetworkManager[702]: <info>  [1726515966.1533] device (wlan0): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
Sep 16 21:46:06 systemd[1]: Starting Network Manager Script Dispatcher Service...
Sep 16 21:46:06 kernel: iwlwifi 0000:00:14.3: WRT: Invalid buffer destination
Sep 16 21:46:06 systemd[1]: Started Network Manager Script Dispatcher Service.
Sep 16 21:46:06 kernel: iwlwifi 0000:00:14.3: WFPM_UMAC_PD_NOTIFICATION: 0x20
Sep 16 21:46:06 kernel: iwlwifi 0000:00:14.3: RFIm is deactivated, reason = 5
Sep 16 21:46:06 kernel: iwlwifi 0000:00:14.3: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
Sep 16 21:46:06 kernel: iwlwifi 0000:00:14.3: WFPM_AUTH_KEY_0: 0x90
Sep 16 21:46:06 kernel: iwlwifi 0000:00:14.3: CNVI_SCU_SEQ_DATA_DW9: 0x10
Sep 16 21:46:06 kernel: iwlwifi 0000:00:14.3: Registered PHC clock: iwlwifi-PTP, with index: 0
Sep 16 21:46:06 systemd-networkd[471]: wlan0: Link UP
Sep 16 21:46:06 systemd-networkd[471]: wlan0: Link DOWN
Sep 16 21:46:06 NetworkManager[702]: <info>  [1726515966.4012] device (wlan0): set-hw-addr: set MAC address to 8E:7C:0D:89:91:AF (scanning)
Sep 16 21:46:06 kernel: iwlwifi 0000:00:14.3: WRT: Invalid buffer destination
Sep 16 21:46:06 kernel: iwlwifi 0000:00:14.3: WFPM_UMAC_PD_NOTIFICATION: 0x20
Sep 16 21:46:06 kernel: iwlwifi 0000:00:14.3: RFIm is deactivated, reason = 5
Sep 16 21:46:06 kernel: iwlwifi 0000:00:14.3: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
Sep 16 21:46:06 kernel: iwlwifi 0000:00:14.3: WFPM_AUTH_KEY_0: 0x90
Sep 16 21:46:06 kernel: iwlwifi 0000:00:14.3: CNVI_SCU_SEQ_DATA_DW9: 0x10
Sep 16 21:46:06 systemd-networkd[471]: wlan0: Link UP
Sep 16 21:46:06 NetworkManager[702]: <info>  [1726515966.6184] bus-manager: acquired D-Bus service "org.freedesktop.NetworkManager"
Sep 16 21:46:06 systemd[1]: Started Network Manager.
Sep 16 21:46:06 NetworkManager[702]: <info>  [1726515966.6214] ovsdb: disconnected from ovsdb
Sep 16 21:46:06 NetworkManager[702]: <info>  [1726515966.6216] device (lo): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'external')
Sep 16 21:46:06 NetworkManager[702]: <info>  [1726515966.6220] device (lo): state change: prepare -> config (reason 'none', sys-iface-state: 'external')
Sep 16 21:46:06 NetworkManager[702]: <info>  [1726515966.6223] device (lo): state change: config -> ip-config (reason 'none', sys-iface-state: 'external')
Sep 16 21:46:06 NetworkManager[702]: <info>  [1726515966.6230] device (lo): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'external')
Sep 16 21:46:06 systemd[1]: Starting WPA supplicant...
Sep 16 21:46:06 NetworkManager[702]: <info>  [1726515966.6252] device (lo): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'external')
Sep 16 21:46:06 NetworkManager[702]: <info>  [1726515966.6254] device (lo): state change: secondaries -> activated (reason 'none', sys-iface-state: 'external')
Sep 16 21:46:06 NetworkManager[702]: <info>  [1726515966.6261] device (lo): Activation: successful, device activated.
Sep 16 21:46:06 systemd[1]: Started WPA supplicant.
Sep 16 21:46:06 wpa_supplicant[738]: Successfully initialized wpa_supplicant
Sep 16 21:46:06 systemd[1]: Reached target Network.
Sep 16 21:46:06 systemd[1]: Starting CUPS Scheduler...
Sep 16 21:46:06 systemd[1]: Starting Permit User Sessions...
Sep 16 21:46:06 NetworkManager[702]: <info>  [1726515966.7675] device (wlan0): supplicant interface state: internal-starting -> disconnected
Sep 16 21:46:06 NetworkManager[702]: <info>  [1726515966.7676] Wi-Fi P2P device controlled by interface wlan0 created
Sep 16 21:46:06 NetworkManager[702]: <info>  [1726515966.7678] manager: (p2p-dev-wlan0): new 802.11 Wi-Fi P2P device (/org/freedesktop/NetworkManager/Devices/3)
Sep 16 21:46:06 NetworkManager[702]: <info>  [1726515966.7680] device (p2p-dev-wlan0): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
Sep 16 21:46:06 NetworkManager[702]: <info>  [1726515966.7682] device (wlan0): state change: unavailable -> disconnected (reason 'supplicant-available', sys-iface-state: 'managed')
Sep 16 21:46:06 NetworkManager[702]: <info>  [1726515966.7685] device (p2p-dev-wlan0): state change: unavailable -> disconnected (reason 'none', sys-iface-state: 'managed')
Sep 16 21:46:06 systemd[1]: Finished Permit User Sessions.
Sep 16 21:46:06 systemd[1]: Starting Hold until boot process finishes up...
Sep 16 21:46:06 systemd[1]: Starting Terminate Plymouth Boot Screen...
Sep 16 21:46:06 systemd[1]: Starting Manage, Install and Generate Color Profiles...
Sep 16 21:46:06 systemd[1]: Received SIGRTMIN+21 from PID 525 (plymouthd).
Sep 16 21:46:06 systemd[1]: Finished Hold until boot process finishes up.
Sep 16 21:46:06 systemd[1]: Started CUPS Scheduler.
Sep 16 21:46:06 systemd[1]: Finished Terminate Plymouth Boot Screen.
Sep 16 21:46:06 systemd[1]: Started Manage, Install and Generate Color Profiles.
Sep 16 21:46:06 systemd[1]: Started Getty on tty1.
Sep 16 21:46:06 systemd[1]: Reached target Login Prompts.
Sep 16 21:46:06 systemd[1]: Reached target Multi-User System.
Sep 16 21:46:06 systemd[1]: Started Battery Monitor Service.
Sep 16 21:46:06 systemd[1]: Reached target Graphical Interface.
Sep 16 21:46:06 systemd[1]: Startup finished in 3.649s (firmware) + 1.859s (loader) + 3.559s (kernel) + 5.001s (userspace) = 14.070s.
Sep 16 21:46:06 dbus-broker-launch[700]: Activation request for 'org.freedesktop.Avahi' failed: The systemd unit 'dbus-org.freedesktop.Avahi.service' could not be found.
Sep 16 21:46:06 battery.sh[761]: start
Sep 16 21:46:09 systemd[1]: systemd-rfkill.service: Deactivated successfully.
Sep 16 21:46:09 kernel: input input7: Unknown key pressed, code: 0x0381
Sep 16 21:46:10 wpa_supplicant[738]: wlan0: CTRL-EVENT-REGDOM-CHANGE init=DRIVER type=COUNTRY alpha2=DE
Sep 16 21:46:10 wpa_supplicant[738]: wlan0: CTRL-EVENT-REGDOM-CHANGE init=DRIVER type=COUNTRY alpha2=DE
Sep 16 21:46:10 NetworkManager[702]: <info>  [1726515970.0875] policy: auto-activating connection 'FRITZ!Box 7530 JU' (23c24095-26ea-49c5-b769-2d19eda295b8)
Sep 16 21:46:10 NetworkManager[702]: <info>  [1726515970.0877] device (wlan0): Activation: starting connection 'FRITZ!Box 7530 JU' (23c24095-26ea-49c5-b769-2d19eda295b8)
Sep 16 21:46:10 NetworkManager[702]: <info>  [1726515970.0878] device (wlan0): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Sep 16 21:46:10 NetworkManager[702]: <info>  [1726515970.0879] manager: NetworkManager state is now CONNECTING
Sep 16 21:46:10 systemd-networkd[471]: wlan0: Link DOWN
Sep 16 21:46:10 NetworkManager[702]: <info>  [1726515970.1176] device (wlan0): set-hw-addr: reset MAC address to BC:F1:71:11:E2:BB (preserve)
Sep 16 21:46:10 systemd-networkd[471]: wlan0: Link UP
Sep 16 21:46:10 NetworkManager[702]: <info>  [1726515970.1241] device (wlan0): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Sep 16 21:46:10 NetworkManager[702]: <info>  [1726515970.1247] device (wlan0): Activation: (wifi) access point 'FRITZ!Box 7530 JU' has security, but secrets are required.
Sep 16 21:46:10 NetworkManager[702]: <info>  [1726515970.1248] device (wlan0): state change: config -> need-auth (reason 'none', sys-iface-state: 'managed')
Sep 16 21:46:10 NetworkManager[702]: <info>  [1726515970.1250] sup-iface[997697ae3cd76307,0,wlan0]: wps: type pbc start...
Sep 16 21:46:10 NetworkManager[702]: <info>  [1726515970.1254] device (wlan0): supplicant interface state: disconnected -> interface_disabled
Sep 16 21:46:10 NetworkManager[702]: <info>  [1726515970.1254] device (p2p-dev-wlan0): supplicant management interface state: disconnected -> interface_disabled
Sep 16 21:46:10 NetworkManager[702]: <info>  [1726515970.1268] device (wlan0): state change: need-auth -> prepare (reason 'none', sys-iface-state: 'managed')
Sep 16 21:46:10 NetworkManager[702]: <info>  [1726515970.1271] device (wlan0): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Sep 16 21:46:10 NetworkManager[702]: <info>  [1726515970.1275] device (wlan0): Activation: (wifi) connection 'FRITZ!Box 7530 JU' has security, and secrets exist.  No new secrets needed.
Sep 16 21:46:10 NetworkManager[702]: <info>  [1726515970.1275] Config: added 'ssid' value 'FRITZ!Box 7530 JU'
Sep 16 21:46:10 NetworkManager[702]: <info>  [1726515970.1275] Config: added 'scan_ssid' value '1'
Sep 16 21:46:10 NetworkManager[702]: <info>  [1726515970.1276] Config: added 'bgscan' value 'simple:30:-65:300'
Sep 16 21:46:10 NetworkManager[702]: <info>  [1726515970.1276] Config: added 'key_mgmt' value 'WPA-PSK WPA-PSK-SHA256 FT-PSK SAE FT-SAE'
Sep 16 21:46:10 NetworkManager[702]: <info>  [1726515970.1276] Config: added 'auth_alg' value 'OPEN'
Sep 16 21:46:10 NetworkManager[702]: <info>  [1726515970.1276] Config: added 'psk' value '<hidden>'
Sep 16 21:46:10 wpa_supplicant[738]: wlan0: WPS-CANCEL
Sep 16 21:46:10 NetworkManager[702]: <info>  [1726515970.1624] device (wlan0): supplicant interface state: interface_disabled -> inactive
Sep 16 21:46:10 NetworkManager[702]: <info>  [1726515970.1625] device (p2p-dev-wlan0): supplicant management interface state: interface_disabled -> inactive
Sep 16 21:46:10 wpa_supplicant[738]: wlan0: SME: Trying to authenticate with 3c:37:12:04:db:b3 (SSID='FRITZ!Box 7530 JU' freq=5500 MHz)
Sep 16 21:46:10 kernel: wlan0: authenticate with 3c:37:12:04:db:b3
Sep 16 21:46:10 NetworkManager[702]: <info>  [1726515970.1891] device (wlan0): supplicant interface state: inactive -> authenticating
Sep 16 21:46:10 NetworkManager[702]: <info>  [1726515970.1892] device (p2p-dev-wlan0): supplicant management interface state: inactive -> authenticating
Sep 16 21:46:10 kernel: wlan0: send auth to 3c:37:12:04:db:b3 (try 1/3)
Sep 16 21:46:10 wpa_supplicant[738]: wlan0: Trying to associate with 3c:37:12:04:db:b3 (SSID='FRITZ!Box 7530 JU' freq=5500 MHz)
Sep 16 21:46:10 kernel: wlan0: authenticated
Sep 16 21:46:10 kernel: wlan0: associate with 3c:37:12:04:db:b3 (try 1/3)
Sep 16 21:46:10 NetworkManager[702]: <info>  [1726515970.2206] device (wlan0): supplicant interface state: authenticating -> associating
Sep 16 21:46:10 NetworkManager[702]: <info>  [1726515970.2207] device (p2p-dev-wlan0): supplicant management interface state: authenticating -> associating
Sep 16 21:46:10 kernel: wlan0: RX AssocResp from 3c:37:12:04:db:b3 (capab=0x1511 status=0 aid=2)
Sep 16 21:46:10 systemd-networkd[471]: wlan0: Connected WiFi access point: FRITZ!Box 7530 JU (3c:37:12:04:db:b3)
Sep 16 21:46:10 kernel: wlan0: associated
Sep 16 21:46:10 wpa_supplicant[738]: wlan0: Associated with 3c:37:12:04:db:b3
Sep 16 21:46:10 wpa_supplicant[738]: wlan0: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
Sep 16 21:46:10 NetworkManager[702]: <info>  [1726515970.2426] device (wlan0): supplicant interface state: associating -> 4way_handshake
Sep 16 21:46:10 NetworkManager[702]: <info>  [1726515970.2427] device (p2p-dev-wlan0): supplicant management interface state: associating -> 4way_handshake
Sep 16 21:46:10 kernel: calling  crypto_ccm_module_init+0x0/0xff0 [ccm] @ 771
Sep 16 21:46:10 kernel: initcall crypto_ccm_module_init+0x0/0xff0 [ccm] returned 0 after 2 usecs
Sep 16 21:46:10 kernel: wlan0: Limiting TX power to 27 (30 - 3) dBm as advertised by 3c:37:12:04:db:b3
Sep 16 21:46:10 wpa_supplicant[738]: wlan0: WPA: Key negotiation completed with 3c:37:12:04:db:b3 [PTK=CCMP GTK=CCMP]
Sep 16 21:46:10 wpa_supplicant[738]: wlan0: CTRL-EVENT-CONNECTED - Connection to 3c:37:12:04:db:b3 completed [id=0 id_str=]
Sep 16 21:46:10 systemd-networkd[471]: wlan0: Gained carrier
Sep 16 21:46:10 wpa_supplicant[738]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-51 noise=9999 txrate=234000
Sep 16 21:46:10 NetworkManager[702]: <info>  [1726515970.3521] device (wlan0): supplicant interface state: 4way_handshake -> completed
Sep 16 21:46:10 NetworkManager[702]: <info>  [1726515970.3523] device (wlan0): Activation: (wifi) Stage 2 of 5 (Device Configure) successful. Connected to wireless network "FRITZ!Box 7530 JU"
Sep 16 21:46:10 NetworkManager[702]: <info>  [1726515970.3523] device (p2p-dev-wlan0): supplicant management interface state: 4way_handshake -> completed
Sep 16 21:46:10 NetworkManager[702]: <info>  [1726515970.3529] device (wlan0): state change: config -> ip-config (reason 'none', sys-iface-state: 'managed')
Sep 16 21:46:10 NetworkManager[702]: <info>  [1726515970.3539] dhcp4 (wlan0): activation: beginning transaction (timeout in 45 seconds)
Sep 16 21:46:10 NetworkManager[702]: <info>  [1726515970.3662] dhcp4 (wlan0): state changed new lease, address=192.168.178.146, acd pending
Sep 16 21:46:10 NetworkManager[702]: <info>  [1726515970.5274] dhcp4 (wlan0): state changed new lease, address=192.168.178.146
Sep 16 21:46:10 NetworkManager[702]: <info>  [1726515970.5287] policy: set 'FRITZ!Box 7530 JU' (wlan0) as default for IPv4 routing and DNS
Sep 16 21:46:10 systemd-resolved[689]: wlan0: Bus client set search domain list to: fritz.box
Sep 16 21:46:10 systemd-resolved[689]: wlan0: Bus client set default route setting: yes
Sep 16 21:46:10 systemd-resolved[689]: wlan0: Bus client set DNS server list to: 192.168.178.1
Sep 16 21:46:10 systemd-timesyncd[690]: Network configuration changed, trying to establish connection.
Sep 16 21:46:10 systemd-resolved[689]: Failed to open /etc/hosts: Permission denied
Sep 16 21:46:10 NetworkManager[702]: <info>  [1726515970.5446] device (wlan0): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'managed')
Sep 16 21:46:10 NetworkManager[702]: <info>  [1726515970.5476] device (wlan0): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'managed')
Sep 16 21:46:10 NetworkManager[702]: <info>  [1726515970.5478] device (wlan0): state change: secondaries -> activated (reason 'none', sys-iface-state: 'managed')
Sep 16 21:46:10 NetworkManager[702]: <info>  [1726515970.5483] manager: NetworkManager state is now CONNECTED_SITE
Sep 16 21:46:10 NetworkManager[702]: <info>  [1726515970.5499] device (wlan0): Activation: successful, device activated.
Sep 16 21:46:10 NetworkManager[702]: <info>  [1726515970.5508] manager: startup complete
Sep 16 21:46:10 systemd-timesyncd[690]: Contacted time server 185.248.189.10:123 (0.arch.pool.ntp.org).
Sep 16 21:46:10 systemd-timesyncd[690]: Initial clock synchronization to Mon 2024-09-16 21:46:10.451518 CEST.
Sep 16 21:46:10 NetworkManager[702]: <info>  [1726515970.7466] manager: NetworkManager state is now CONNECTED_GLOBAL
Sep 16 21:46:11 systemd-networkd[471]: wlan0: Gained IPv6LL
Sep 16 21:46:12 systemd-resolved[689]: Failed to open /etc/hosts: Permission denied
Sep 16 21:46:15 NetworkManager[702]: <info>  [1726515975.8256] dhcp6 (wlan0): activation: beginning transaction (timeout in 45 seconds)
Sep 16 21:46:15 NetworkManager[702]: <info>  [1726515975.8266] policy: set 'FRITZ!Box 7530 JU' (wlan0) as default for IPv6 routing and DNS
Sep 16 21:46:15 systemd-resolved[689]: wlan0: Bus client set DNS server list to: 192.168.178.1, fd00::3e37:12ff:fe04:dbb0, 2003:ca:5f16:c600:3e37:12ff:fe04:dbb0
Sep 16 21:46:15 NetworkManager[702]: <info>  [1726515975.8328] dhcp6 (wlan0): state changed new lease
Sep 16 21:46:16 systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
Sep 16 21:46:16 systemd-resolved[689]: Failed to open /etc/hosts: Permission denied
Sep 16 21:46:24 systemd-resolved[689]: Failed to open /etc/hosts: Permission denied
Sep 16 21:46:25 login[760]: pam_systemd_home(login:auth): New sd-bus connection (system-bus-pam-systemd-home-760) opened.
Sep 16 21:46:25 dbus-broker-launch[700]: Activation request for 'org.freedesktop.home1' failed: The systemd unit 'dbus-org.freedesktop.home1.service' could not be found.
Sep 16 21:46:28 kernel: input input7: Unknown key pressed, code: 0x0383

Sep 16 21:46:29 login[760]: pam_systemd(login:session): New sd-bus connection (system-bus-pam-systemd-760) opened.
Sep 16 21:46:29 systemd[1]: Created slice User Slice of UID 972.
Sep 16 21:46:29 systemd[1]: Starting User Runtime Directory /run/user/972...
Sep 16 21:46:29 systemd[1]: Finished User Runtime Directory /run/user/972.
Sep 16 21:46:29 systemd[1]: Starting User Manager for UID 972...
Sep 16 21:46:29 systemd[791]: Queued start job for default target Main User Target.
Sep 16 21:46:29 systemd[791]: Created slice User Application Slice.
Sep 16 21:46:29 systemd[791]: Started Submitting pending crash events (file monitor).
Sep 16 21:46:29 systemd[791]: Reached target Paths.
Sep 16 21:46:29 systemd[791]: Reached target Timers.
Sep 16 21:46:29 systemd[791]: Starting D-Bus User Message Bus Socket...
Sep 16 21:46:29 systemd[791]: Listening on GnuPG network certificate management daemon.
Sep 16 21:46:29 systemd[791]: Listening on Socket to launch DrKonqi for a systemd-coredump crash.
Sep 16 21:46:29 systemd[791]: Listening on GNOME Keyring daemon.
Sep 16 21:46:29 systemd[791]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
Sep 16 21:46:29 systemd[791]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
Sep 16 21:46:29 systemd[791]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
Sep 16 21:46:29 systemd[791]: Listening on GnuPG cryptographic agent and passphrase cache.
Sep 16 21:46:29 systemd[791]: Listening on GnuPG public key management service.
Sep 16 21:46:29 systemd[791]: Listening on p11-kit server.
Sep 16 21:46:29 systemd[791]: Listening on PipeWire PulseAudio.
Sep 16 21:46:29 systemd[791]: Listening on PipeWire Multimedia System Sockets.
Sep 16 21:46:29 systemd[791]: Listening on D-Bus User Message Bus Socket.
Sep 16 21:46:29 systemd[791]: Reached target Sockets.
Sep 16 21:46:29 systemd[791]: Reached target Basic System.
Sep 16 21:46:29 systemd[1]: Started User Manager for UID 972.
Sep 16 21:46:29 systemd[791]: Starting Update XDG user dir configuration...
Sep 16 21:46:29 systemd[791]: Finished Update XDG user dir configuration.
Sep 16 21:46:29 systemd[791]: Reached target Main User Target.
Sep 16 21:46:29 systemd[791]: Startup finished in 202ms.
Sep 16 21:46:32 systemd[791]: Created slice User Core Session Slice.
Sep 16 21:46:32 systemd[791]: Starting D-Bus User Message Bus...
Sep 16 21:46:32 dbus-broker-launch[844]: Service file '/usr/share//dbus-1/services/org.kde.dolphin.FileManager1.service' is not named after the D-Bus name 'org.freedesktop.FileManager1'.
Sep 16 21:46:32 dbus-broker-launch[844]: Ignoring duplicate name 'org.freedesktop.FileManager1' in service file '/usr/share//dbus-1/services/org.kde.dolphin.FileManager1.service'
Sep 16 21:46:32 dbus-broker-launch[844]: Service file '/usr/share//dbus-1/services/org.kde.kscreen.service' is not named after the D-Bus name 'org.kde.KScreen'.
Sep 16 21:46:32 dbus-broker-launch[844]: Service file '/usr/share//dbus-1/services/org.kde.plasma.Notifications.service' is not named after the D-Bus name 'org.freedesktop.Notifications'.
Sep 16 21:46:32 dbus-broker-launch[844]: Service file '/usr/share//dbus-1/services/org.xfce.Thunar.FileManager1.service' is not named after the D-Bus name 'org.freedesktop.FileManager1'.
Sep 16 21:46:32 dbus-broker-launch[844]: Ignoring duplicate name 'org.freedesktop.FileManager1' in service file '/usr/share//dbus-1/services/org.xfce.Thunar.FileManager1.service'
Sep 16 21:46:32 dbus-broker-launch[844]: Service file '/usr/share//dbus-1/services/org.xfce.Tumbler.Cache1.service' is not named after the D-Bus name 'org.freedesktop.thumbnails.Cache1'.
Sep 16 21:46:32 dbus-broker-launch[844]: Service file '/usr/share//dbus-1/services/org.xfce.Tumbler.Manager1.service' is not named after the D-Bus name 'org.freedesktop.thumbnails.Manager1'.
Sep 16 21:46:32 dbus-broker-launch[844]: Service file '/usr/share//dbus-1/services/org.xfce.Tumbler.Thumbnailer1.service' is not named after the D-Bus name 'org.freedesktop.thumbnails.Thumbnailer1'.
Sep 16 21:46:32 dbus-broker-launch[844]: Service file '/usr/share//dbus-1/services/org.xfce.xfce4-notifyd.Notifications.service' is not named after the D-Bus name 'org.freedesktop.Notifications'.
Sep 16 21:46:32 dbus-broker-launch[844]: Ignoring duplicate name 'org.freedesktop.Notifications' in service file '/usr/share//dbus-1/services/org.xfce.xfce4-notifyd.Notifications.service'
Sep 16 21:46:32 dbus-broker-launch[844]: Service file '/usr/share//dbus-1/services/org.xfce.xfce4-notifyd.Notifyd.service' is not named after the D-Bus name 'org.xfce.Notifyd'.
Sep 16 21:46:32 dbus-broker-launch[844]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +31: Eavesdropping is deprecated and ignored
Sep 16 21:46:32 dbus-broker-launch[844]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +33: Eavesdropping is deprecated and ignored
Sep 16 21:46:32 systemd[791]: Started D-Bus User Message Bus.
Sep 16 21:46:32 dbus-broker-launch[844]: Ready
Sep 16 21:46:35 systemd[791]: Starting Virtual filesystem service...
Sep 16 21:46:35 systemd[791]: Started Virtual filesystem service.
Sep 16 21:46:35 systemd-resolved[689]: Failed to open /etc/hosts: Permission denied
Sep 16 21:46:35 kernel: input input7: Unknown key pressed, code: 0x0383
Sep 16 21:46:35 systemd[791]: Starting Accessibility services bus...
Sep 16 21:46:35 systemd[791]: Started Accessibility services bus.
Sep 16 21:46:35 systemd[791]: Starting Portal service...
Sep 16 21:46:35 systemd[1]: Starting Time & Date Service...
Sep 16 21:46:35 systemd[791]: Starting flatpak document portal service...
Sep 16 21:46:35 systemd[791]: Starting sandboxed app permission store...
Sep 16 21:46:35 systemd[1]: Started Time & Date Service.
Sep 16 21:46:35 systemd[791]: Started sandboxed app permission store.
Sep 16 21:46:35 systemd[791]: Started flatpak document portal service.
Sep 16 21:46:36 xdg-desktop-por[1006]: Choosing gtk.portal for org.freedesktop.impl.portal.Lockdown as a last-resort fallback
Sep 16 21:46:36 xdg-desktop-por[1006]: The preferred method to match portal implementations to desktop environments is to use the portals.conf(5) configuration file
Sep 16 21:46:36 systemd[791]: Starting Portal service (GTK/GNOME implementation)...
Sep 16 21:46:36 at-spi-bus-launcher[1034]: Policy to allow eavesdropping in /usr/share/defaults/at-spi2/accessibility.conf +15: Eavesdropping is deprecated and ignored
Sep 16 21:46:36 at-spi-bus-launcher[1034]: Policy to allow eavesdropping in /usr/share/defaults/at-spi2/accessibility.conf +17: Eavesdropping is deprecated and ignored
Sep 16 21:46:36 dbus-broker-launch[1034]: Ready
Sep 16 21:46:36 systemd[791]: Created slice Slice /app/dbus-:1.12-org.a11y.atspi.Registry.
Sep 16 21:46:36 systemd[791]: Started dbus-:1.12-org.a11y.atspi.Registry@0.service.
Sep 16 21:46:36 at-spi2-registryd[1040]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
Sep 16 21:46:36 systemd[791]: Started Portal service (GTK/GNOME implementation).
Sep 16 21:46:36 systemd[1]: Starting RealtimeKit Scheduling Policy Service...
Sep 16 21:46:36 rtkit-daemon[1047]: Successfully called chroot.
Sep 16 21:46:36 systemd[1]: Started RealtimeKit Scheduling Policy Service.
Sep 16 21:46:36 rtkit-daemon[1047]: Successfully dropped privileges.
Sep 16 21:46:36 rtkit-daemon[1047]: Successfully limited resources.
Sep 16 21:46:36 rtkit-daemon[1047]: Running.
Sep 16 21:46:36 rtkit-daemon[1047]: Canary thread running.
Sep 16 21:46:36 rtkit-daemon[1047]: Watchdog thread running.
Sep 16 21:46:36 rtkit-daemon[1047]: Supervising 0 threads of 0 processes of 0 users.
Sep 16 21:46:36 rtkit-daemon[1047]: Supervising 0 threads of 0 processes of 0 users.
Sep 16 21:46:36 rtkit-daemon[1047]: Supervising 0 threads of 0 processes of 0 users.
Sep 16 21:46:36 xdg-desktop-por[1006]: No skeleton to export
Sep 16 21:46:36 xdg-desktop-por[1006]: Choosing gtk.portal for org.freedesktop.impl.portal.FileChooser as a last-resort fallback
Sep 16 21:46:36 xdg-desktop-por[1006]: Choosing gtk.portal for org.freedesktop.impl.portal.AppChooser as a last-resort fallback
Sep 16 21:46:36 xdg-desktop-por[1006]: Choosing gtk.portal for org.freedesktop.impl.portal.Print as a last-resort fallback
Sep 16 21:46:36 xdg-desktop-por[1006]: Choosing gtk.portal for org.freedesktop.impl.portal.Notification as a last-resort fallback
Sep 16 21:46:36 xdg-desktop-por[1006]: Choosing gtk.portal for org.freedesktop.impl.portal.Inhibit as a last-resort fallback
Sep 16 21:46:36 xdg-desktop-por[1006]: Choosing gtk.portal for org.freedesktop.impl.portal.Access as a last-resort fallback
Sep 16 21:46:36 systemd[791]: Started PipeWire Multimedia Service.
Sep 16 21:46:36 systemd[791]: Started Multimedia Service Session Manager.
Sep 16 21:46:36 rtkit-daemon[1047]: Supervising 0 threads of 0 processes of 0 users.
Sep 16 21:46:36 rtkit-daemon[1047]: Supervising 0 threads of 0 processes of 0 users.
Sep 16 21:46:36 rtkit-daemon[1047]: Supervising 0 threads of 0 processes of 0 users.
Sep 16 21:46:36 xdg-desktop-por[1006]: Choosing gtk.portal for org.freedesktop.impl.portal.Account as a last-resort fallback
Sep 16 21:46:36 xdg-desktop-por[1006]: Choosing gtk.portal for org.freedesktop.impl.portal.Email as a last-resort fallback
Sep 16 21:46:36 wireplumber[1057]: wp-internal-comp-loader: Loading profile 'main'
Sep 16 21:46:36 systemd[1]: Starting Authorization Manager...
Sep 16 21:46:36 xdg-desktop-por[1006]: Choosing gtk.portal for org.freedesktop.impl.portal.DynamicLauncher as a last-resort fallback
Sep 16 21:46:36 systemd[791]: Started Portal service.
Sep 16 21:46:36 polkitd[1062]: Started polkitd version 125
Sep 16 21:46:36 systemd[1]: Started Authorization Manager.
Sep 16 21:46:36 rtkit-daemon[1047]: Successfully made thread 1056 of process 1056 owned by '972' high priority at nice level -11.
Sep 16 21:46:36 rtkit-daemon[1047]: Supervising 1 threads of 1 processes of 1 users.
Sep 16 21:46:36 rtkit-daemon[1047]: Successfully made thread 1059 of process 1056 owned by '972' RT at priority 20.
Sep 16 21:46:36 rtkit-daemon[1047]: Supervising 2 threads of 1 processes of 1 users.
Sep 16 21:46:36 rtkit-daemon[1047]: Supervising 2 threads of 1 processes of 1 users.
Sep 16 21:46:36 rtkit-daemon[1047]: Supervising 2 threads of 1 processes of 1 users.
Sep 16 21:46:36 rtkit-daemon[1047]: Supervising 2 threads of 1 processes of 1 users.
Sep 16 21:46:36 rtkit-daemon[1047]: Supervising 2 threads of 1 processes of 1 users.
Sep 16 21:46:36 rtkit-daemon[1047]: Supervising 2 threads of 1 processes of 1 users.
Sep 16 21:46:36 rtkit-daemon[1047]: Successfully made thread 1057 of process 1057 owned by '972' high priority at nice level -11.
Sep 16 21:46:36 rtkit-daemon[1047]: Supervising 3 threads of 2 processes of 1 users.
Sep 16 21:46:36 rtkit-daemon[1047]: Successfully made thread 1066 of process 1057 owned by '972' RT at priority 20.
Sep 16 21:46:36 rtkit-daemon[1047]: Supervising 4 threads of 2 processes of 1 users.
Sep 16 21:46:36 rtkit-daemon[1047]: Supervising 4 threads of 2 processes of 1 users.
Sep 16 21:46:36 rtkit-daemon[1047]: Supervising 4 threads of 2 processes of 1 users.
Sep 16 21:46:36 rtkit-daemon[1047]: Successfully made thread 1110 of process 905 owned by '972' RT at priority 10.
Sep 16 21:46:36 rtkit-daemon[1047]: Supervising 5 threads of 3 processes of 1 users.
Sep 16 21:46:36 systemd[1]: systemd-hostnamed.service: Deactivated successfully.
Sep 16 21:46:36 systemd[791]: Started PipeWire PulseAudio.
Sep 16 21:46:36 rtkit-daemon[1047]: Successfully made thread 1120 of process 1120 owned by '972' high priority at nice level -11.
Sep 16 21:46:36 rtkit-daemon[1047]: Supervising 6 threads of 4 processes of 1 users.
Sep 16 21:46:36 rtkit-daemon[1047]: Successfully made thread 1125 of process 1120 owned by '972' RT at priority 20.
Sep 16 21:46:36 rtkit-daemon[1047]: Supervising 7 threads of 4 processes of 1 users.
Sep 16 21:46:36 wireplumber[1057]: default: Failed to get percentage from UPower: org.freedesktop.DBus.Error.NameHasNoOwner
Sep 16 21:46:36 wireplumber[1057]: spa.bluez5: BlueZ system service is not available
Sep 16 21:46:36 wireplumber[1057]: wp-device: SPA handle 'api.libcamera.enum.manager' could not be loaded; is it installed?
Sep 16 21:46:36 wireplumber[1057]: s-monitors-libcamera: PipeWire's libcamera SPA plugin is missing or broken. Some camera types may not be supported.
Sep 16 21:46:36 rtkit-daemon[1047]: Supervising 7 threads of 4 processes of 1 users.
Sep 16 21:46:36 rtkit-daemon[1047]: Supervising 7 threads of 4 processes of 1 users.
Sep 16 21:46:36 rtkit-daemon[1047]: Supervising 7 threads of 4 processes of 1 users.
Sep 16 21:46:36 rtkit-daemon[1047]: Supervising 7 threads of 4 processes of 1 users.
Sep 16 21:46:37 systemd-resolved[689]: Using degraded feature set UDP instead of UDP+EDNS0 for DNS server 192.168.178.1.
Sep 16 21:46:37 systemd-resolved[689]: Using degraded feature set UDP instead of UDP+EDNS0 for DNS server 192.168.178.1.
Sep 16 21:46:37 rtkit-daemon[1047]: Supervising 7 threads of 4 processes of 1 users.
Sep 16 21:46:37 rtkit-daemon[1047]: Supervising 7 threads of 4 processes of 1 users.
Sep 16 21:46:37 rtkit-daemon[1047]: Supervising 7 threads of 4 processes of 1 users.
Sep 16 21:46:37 rtkit-daemon[1047]: Supervising 7 threads of 4 processes of 1 users.
Sep 16 21:46:37 rtkit-daemon[1047]: Supervising 7 threads of 4 processes of 1 users.
Sep 16 21:46:37 rtkit-daemon[1047]: Supervising 7 threads of 4 processes of 1 users.
Sep 16 21:46:37 systemd-resolved[689]: Failed to open /etc/hosts: Permission denied
Sep 16 21:46:40 systemd-resolved[689]: Failed to open /etc/hosts: Permission denied
Sep 16 21:46:43 systemd-resolved[689]: Failed to open /etc/hosts: Permission denied
Sep 16 21:46:45 rtkit-daemon[1047]: Supervising 7 threads of 4 processes of 1 users.
Sep 16 21:46:45 rtkit-daemon[1047]: Supervising 7 threads of 4 processes of 1 users.
Sep 16 21:46:45 systemd-resolved[689]: Failed to open /etc/hosts: Permission denied
Sep 16 21:46:47 systemd-resolved[689]: Failed to open /etc/hosts: Permission denied
Sep 16 21:46:48 rtkit-daemon[1047]: Supervising 7 threads of 4 processes of 1 users.
Sep 16 21:46:48 rtkit-daemon[1047]: Supervising 7 threads of 4 processes of 1 users.
Sep 16 21:46:50 systemd-resolved[689]: Failed to open /etc/hosts: Permission denied
Sep 16 21:46:54 systemd-resolved[689]: Failed to open /etc/hosts: Permission denied
Sep 16 21:46:54 rtkit-daemon[1047]: Supervising 7 threads of 4 processes of 1 users.
Sep 16 21:46:54 rtkit-daemon[1047]: Supervising 7 threads of 4 processes of 1 users.
Sep 16 21:46:57 systemd-resolved[689]: Failed to open /etc/hosts: Permission denied
Sep 16 21:47:03 systemd-resolved[689]: Failed to open /etc/hosts: Permission denied
Sep 16 21:47:04 rtkit-daemon[1047]: Supervising 7 threads of 4 processes of 1 users.
Sep 16 21:47:04 rtkit-daemon[1047]: Supervising 7 threads of 4 processes of 1 users.
Sep 16 21:47:04 rtkit-daemon[1047]: Supervising 7 threads of 4 processes of 1 users.
Sep 16 21:47:04 rtkit-daemon[1047]: Supervising 7 threads of 4 processes of 1 users.
Sep 16 21:47:04 rtkit-daemon[1047]: Supervising 7 threads of 4 processes of 1 users.
Sep 16 21:47:04 rtkit-daemon[1047]: Supervising 7 threads of 4 processes of 1 users.
Sep 16 21:47:04 rtkit-daemon[1047]: Successfully made thread 1739 of process 1480 owned by '972' RT at priority 10.
Sep 16 21:47:04 rtkit-daemon[1047]: Supervising 8 threads of 5 processes of 1 users.
Sep 16 21:47:06 systemd[1]: systemd-timedated.service: Deactivated successfully.
Sep 16 21:47:08 systemd-resolved[689]: Failed to open /etc/hosts: Permission denied
Sep 16 21:47:09 rtkit-daemon[1047]: Supervising 8 threads of 5 processes of 1 users.
Sep 16 21:47:09 rtkit-daemon[1047]: Supervising 8 threads of 5 processes of 1 users.
Sep 16 21:47:10 systemd-resolved[689]: Failed to open /etc/hosts: Permission denied
Sep 16 21:47:18 systemd-resolved[689]: Failed to open /etc/hosts: Permission denied
Sep 16 21:47:21 systemd-resolved[689]: Failed to open /etc/hosts: Permission denied
Sep 16 21:47:22 rtkit-daemon[1047]: Supervising 8 threads of 5 processes of 1 users.
Sep 16 21:47:22 rtkit-daemon[1047]: Supervising 8 threads of 5 processes of 1 users.
Sep 16 21:47:22 rtkit-daemon[1047]: Supervising 8 threads of 5 processes of 1 users.
Sep 16 21:47:22 rtkit-daemon[1047]: Supervising 8 threads of 5 processes of 1 users.
Sep 16 21:47:30 kernel: input input7: Unknown key pressed, code: 0x0381
Sep 16 21:47:34 systemd-resolved[689]: Failed to open /etc/hosts: Permission denied
Sep 16 21:47:36 systemd-resolved[689]: Failed to open /etc/hosts: Permission denied
Sep 16 21:47:41 systemd-resolved[689]: Failed to open /etc/hosts: Permission denied
Sep 16 21:47:56 systemd-logind[706]: The system will reboot now!
Sep 16 21:47:56 systemd-logind[706]: System is rebooting.
Sep 16 21:47:56 at-spi2-registryd[1040]: X connection to :0 broken (explicit kill or server shutdown).
Sep 16 21:47:56 login[760]: pam_systemd(login:session): New sd-bus connection (system-bus-pam-systemd-760) opened.
Sep 16 21:47:56 systemd[791]: xdg-desktop-portal-gtk.service: Main process exited, code=exited, status=1/FAILURE
Sep 16 21:47:56 systemd[791]: xdg-desktop-portal-gtk.service: Failed with result 'exit-code'.
Sep 16 21:47:56 systemd[791]: dbus-:1.12-org.a11y.atspi.Registry@0.service: Main process exited, code=exited, status=1/FAILURE
Sep 16 21:47:56 systemd[791]: dbus-:1.12-org.a11y.atspi.Registry@0.service: Failed with result 'exit-code'.
Sep 16 21:47:56 systemd[1]: Removed slice Slice /system/modprobe.
Sep 16 21:47:56 systemd[1]: Stopped target Bluetooth Support.
Sep 16 21:47:56 systemd[1]: Stopped target Graphical Interface.
Sep 16 21:47:56 systemd[1]: Stopped target Host and Network Name Lookups.
Sep 16 21:47:56 systemd[1]: Stopped target Sound Card.
Sep 16 21:47:56 systemd[1]: Stopped target Timer Units.
Sep 16 21:47:56 systemd[1]: archlinux-keyring-wkd-sync.timer: Deactivated successfully.
Sep 16 21:47:56 systemd[1]: Stopped Refresh existing PGP keys of archlinux-keyring regularly.
Sep 16 21:47:56 systemd[1]: man-db.timer: Deactivated successfully.
Sep 16 21:47:56 systemd[1]: Stopped Daily man-db regeneration.
Sep 16 21:47:56 systemd[1]: shadow.timer: Deactivated successfully.
Sep 16 21:47:56 systemd[1]: Stopped Daily verification of password and group files.
Sep 16 21:47:56 systemd[1]: systemd-tmpfiles-clean.timer: Deactivated successfully.
Sep 16 21:47:56 systemd[1]: Stopped Daily Cleanup of Temporary Directories.
Sep 16 21:47:56 systemd[1]: Stopped target System Time Set.
Sep 16 21:47:56 systemd[1]: Stopped target Trusted Platform Module.
Sep 16 21:47:56 systemd[1]: lvm2-lvmpolld.socket: Deactivated successfully.
Sep 16 21:47:56 systemd[1]: Closed LVM2 poll daemon socket.
Sep 16 21:47:56 systemd[1]: systemd-rfkill.socket: Deactivated successfully.
Sep 16 21:47:56 systemd[1]: Closed Load/Save RF Kill Switch Status /dev/rfkill Watch.
Sep 16 21:47:56 systemd[1]: Stopping Save/Restore Sound Card State...
Sep 16 21:47:56 systemd[1]: Stopping Battery Monitor Service...
Sep 16 21:47:56 systemd[1]: Stopping Manage, Install and Generate Color Profiles...
Sep 16 21:47:56 systemd[1]: Starting Generate shutdown-ramfs...
Sep 16 21:47:56 systemd[1]: Stopping Authorization Manager...
Sep 16 21:47:56 systemd[1]: Stopping RealtimeKit Scheduling Policy Service...
Sep 16 21:47:56 systemd[1]: Stopping Enable Persistent Storage in systemd-networkd...
Sep 16 21:47:56 systemd[1]: Stopping Load/Save OS Random Seed...
Sep 16 21:47:56 systemd[1]: systemd-udev-load-credentials.service: Deactivated successfully.
Sep 16 21:47:56 systemd[1]: Stopped Load udev Rules from Credentials.
Sep 16 21:47:56 systemd[1]: run-credentials-systemd\x2dudev\x2dload\x2dcredentials.service.mount: Deactivated successfully.
Sep 16 21:47:56 systemd[1]: colord.service: Deactivated successfully.
Sep 16 21:47:56 mkinitcpio[2061]: ==> Starting build: 'none'
Sep 16 21:47:56 mkinitcpio[2061]:   -> Running build hook: [sd-shutdown]
Sep 16 21:47:56 systemd[1]: Stopped Manage, Install and Generate Color Profiles.
Sep 16 21:47:56 systemd[1]: getty@tty1.service: Deactivated successfully.
Sep 16 21:47:57 systemd[1]: Stopped Getty on tty1.
Sep 16 21:47:57 mkinitcpio[2061]:   -> Running build hook: [plymouth-shutdown]
Sep 16 21:47:57 systemd[1]: run-credentials-getty\x40tty1.service.mount: Deactivated successfully.
Sep 16 21:47:57 systemd[1]: battery-monitor.service: Deactivated successfully.
Sep 16 21:47:57 systemd[1]: Stopped Battery Monitor Service.
Sep 16 21:47:57 systemd[1]: rtkit-daemon.service: Deactivated successfully.
Sep 16 21:47:57 systemd[1]: Stopped RealtimeKit Scheduling Policy Service.
Sep 16 21:47:57 systemd[1]: polkit.service: Deactivated successfully.
Sep 16 21:47:57 systemd[1]: Stopped Authorization Manager.
Sep 16 21:47:57 systemd[1]: alsa-restore.service: Deactivated successfully.
Sep 16 21:47:57 systemd[1]: Stopped Save/Restore Sound Card State.
Sep 16 21:47:57 systemd[1]: systemd-random-seed.service: Deactivated successfully.
Sep 16 21:47:57 systemd[1]: Stopped Load/Save OS Random Seed.
Sep 16 21:47:57 systemd-logind[706]: Session 1 logged out. Waiting for processes to exit.
Sep 16 21:47:57 systemd[1]: Removed slice Slice /system/getty.
Sep 16 21:47:57 systemd[1]: Stopped target Multi-User System.
Sep 16 21:47:57 systemd[1]: Stopped target Login Prompts.
Sep 16 21:47:57 systemd[1]: Stopping CUPS Scheduler...
Sep 16 21:47:57 systemd[1]: Stopping Initialize hardware monitoring sensors...
Sep 16 21:47:57 systemd[1]: plymouth-quit-wait.service: Deactivated successfully.
Sep 16 21:47:57 systemd[1]: Stopped Hold until boot process finishes up.
Sep 16 21:47:57 systemd[1]: plymouth-quit.service: Deactivated successfully.
Sep 16 21:47:57 systemd[1]: Stopped Terminate Plymouth Boot Screen.
Sep 16 21:47:57 systemd[1]: Starting Show Plymouth Reboot Screen...
Sep 16 21:47:57 seatd[705]: 00:01:51.257 [INFO] [seatd/seatd.c:218] seatd stopped
Sep 16 21:47:57 systemd[1]: Stopping Seat management daemon...
Sep 16 21:47:57 systemd[1]: seatd.service: Deactivated successfully.
Sep 16 21:47:57 (modprobe)[2270]: lm_sensors.service: Referenced but unset environment variable evaluates to an empty string: BUS_MODULES
Sep 16 21:47:57 mkinitcpio[2061]: ==> Build complete.
Sep 16 21:47:57 systemd[1]: Stopped Seat management daemon.
Sep 16 21:47:57 systemd[1]: cups.service: Deactivated successfully.
Sep 16 21:47:57 systemd[1]: Stopped CUPS Scheduler.
Sep 16 21:47:57 systemd[1]: mkinitcpio-generate-shutdown-ramfs.service: Deactivated successfully.
Sep 16 21:47:57 systemd[1]: Finished Generate shutdown-ramfs.
Sep 16 21:47:57 systemd[1]: systemd-networkd-persistent-storage.service: Deactivated successfully.
Sep 16 21:47:57 systemd[1]: Stopped Enable Persistent Storage in systemd-networkd.
Sep 16 21:47:57 systemd[1]: lm_sensors.service: Deactivated successfully.
Sep 16 21:47:57 systemd[1]: Stopped Initialize hardware monitoring sensors.
Sep 16 21:47:57 systemd[1]: Received SIGRTMIN+20 from PID 2276 (plymouthd).
Sep 16 21:47:57 systemd[1]: Received SIGRTMIN+20 from PID 2276 (plymouthd).
Sep 16 21:47:57 systemd[1]: session-1.scope: Deactivated successfully.
Sep 16 21:47:57 systemd[1]: session-1.scope: Consumed 51.445s CPU time, 2.7G memory peak.
Sep 16 21:47:57 systemd[1]: Stopping User Manager for UID 972...
Sep 16 21:47:57 systemd-logind[706]: Removed session 1.
Sep 16 21:47:57 systemd[791]: Activating special unit Exit the Session...
Sep 16 21:47:57 systemd[791]: Removed slice Slice /app/dbus-:1.12-org.a11y.atspi.Registry.
Sep 16 21:47:57 systemd[791]: Stopped target Main User Target.
Sep 16 21:47:57 systemd[791]: Closed Socket to launch DrKonqi for a systemd-coredump crash.
Sep 16 21:47:57 dbus-broker[1035]: Dispatched 129 messages @ 3(±5)μs / message.
Sep 16 21:47:57 systemd[791]: Stopping Accessibility services bus...
Sep 16 21:47:57 systemd[791]: Stopping Virtual filesystem service...
Sep 16 21:47:57 systemd[791]: Stopping PipeWire PulseAudio...
Sep 16 21:47:57 systemd[791]: Stopping Portal service...
Sep 16 21:47:57 systemd[791]: Stopping flatpak document portal service...
Sep 16 21:47:57 systemd[791]: Stopping sandboxed app permission store...
Sep 16 21:47:57 systemd-resolved[689]: Failed to open /etc/hosts: Permission denied
Sep 16 21:47:57 systemd[791]: Stopped sandboxed app permission store.
Sep 16 21:47:57 systemd[1]: run-user-972-doc.mount: Deactivated successfully.
Sep 16 21:47:57 systemd[1]: Unmounted /run/user/972/doc.
Sep 16 21:47:57 systemd[791]: Stopped Accessibility services bus.
Sep 16 21:47:57 systemd[791]: Stopped Portal service.
Sep 16 21:47:57 systemd[791]: Stopped PipeWire PulseAudio.
Sep 16 21:47:57 systemd[1]: run-user-972-gvfs.mount: Deactivated successfully.
Sep 16 21:47:57 systemd[1]: Unmounted /run/user/972/gvfs.
Sep 16 21:47:57 systemd[791]: Stopped Virtual filesystem service.
Sep 16 21:47:57 systemd[791]: Stopping Multimedia Service Session Manager...
Sep 16 21:47:57 wireplumber[1057]: wireplumber: stopped by signal: Terminated
Sep 16 21:47:57 wireplumber[1057]: wireplumber: disconnected from pipewire
Sep 16 21:47:57 wireplumber[1057]: pw.core: 0x580948497560: leaked proxy 0x580948521c40 id:3
Sep 16 21:47:57 systemd[791]: Stopped flatpak document portal service.
Sep 16 21:47:57 systemd[791]: Stopped Multimedia Service Session Manager.
Sep 16 21:47:57 systemd[791]: Stopping PipeWire Multimedia Service...
Sep 16 21:47:57 systemd[791]: Stopped PipeWire Multimedia Service.
Sep 16 21:47:57 systemd[791]: Stopped target Basic System.
Sep 16 21:47:57 systemd[791]: Stopped target Paths.
Sep 16 21:47:57 systemd[791]: Stopped Submitting pending crash events (file monitor).
Sep 16 21:47:57 systemd[791]: Stopped target Sockets.
Sep 16 21:47:57 systemd[791]: Stopped target Timers.
Sep 16 21:47:57 systemd[791]: Closed GnuPG network certificate management daemon.
Sep 16 21:47:57 systemd[791]: Closed GNOME Keyring daemon.
Sep 16 21:47:57 systemd[791]: Closed GnuPG cryptographic agent and passphrase cache (access for web browsers).
Sep 16 21:47:57 systemd[791]: Closed GnuPG cryptographic agent and passphrase cache (restricted).
Sep 16 21:47:57 systemd[791]: Closed GnuPG cryptographic agent (ssh-agent emulation).
Sep 16 21:47:57 systemd[791]: Closed GnuPG cryptographic agent and passphrase cache.
Sep 16 21:47:57 systemd[791]: Closed GnuPG public key management service.
Sep 16 21:47:57 systemd[791]: Closed p11-kit server.
Sep 16 21:47:57 systemd[791]: Closed PipeWire PulseAudio.
Sep 16 21:47:57 systemd[791]: Closed PipeWire Multimedia System Sockets.
Sep 16 21:47:57 dbus-broker[845]: Dispatched 1061 messages @ 2(±5)μs / message.
Sep 16 21:47:57 systemd[791]: Stopping D-Bus User Message Bus...
Sep 16 21:47:57 systemd[791]: Stopped D-Bus User Message Bus.
Sep 16 21:47:57 systemd[791]: Removed slice User Core Session Slice.
Sep 16 21:47:57 systemd[791]: Closed D-Bus User Message Bus Socket.
Sep 16 21:47:57 systemd[791]: Removed slice User Application Slice.
Sep 16 21:47:57 systemd[791]: Reached target Shutdown.
Sep 16 21:47:57 systemd[791]: Finished Exit the Session.
Sep 16 21:47:57 systemd[791]: Reached target Exit the Session.
Sep 16 21:47:57 systemd[1]: user@972.service: Deactivated successfully.
Sep 16 21:47:57 systemd[1]: Stopped User Manager for UID 972.
Sep 16 21:47:57 systemd[1]: user@972.service: Consumed 624ms CPU time, 75.5M memory peak.
Sep 16 21:47:57 systemd[1]: Stopping Permit User Sessions...
Sep 16 21:47:57 systemd[1]: Stopping User Runtime Directory /run/user/972...
Sep 16 21:47:57 systemd[1]: systemd-user-sessions.service: Deactivated successfully.
Sep 16 21:47:57 systemd[1]: Stopped Permit User Sessions.
Sep 16 21:47:57 systemd[1]: run-user-972.mount: Deactivated successfully.
Sep 16 21:47:57 systemd[1]: Unmounted /run/user/972.
Sep 16 21:47:57 systemd[1]: user-runtime-dir@972.service: Deactivated successfully.
Sep 16 21:47:57 systemd[1]: Stopped User Runtime Directory /run/user/972.
Sep 16 21:47:57 systemd[1]: Removed slice User Slice of UID 972.
Sep 16 21:47:57 systemd[1]: user-972.slice: Consumed 52.087s CPU time, 2.8G memory peak.
Sep 16 21:47:57 systemd[1]: Stopped target Network.
Sep 16 21:47:57 systemd[1]: Stopped target Remote File Systems.
Sep 16 21:47:57 systemd[1]: Stopping Network Manager...
Sep 16 21:47:57 NetworkManager[702]: <info>  [1726516077.9128] caught SIGTERM, shutting down normally.
Sep 16 21:47:57 NetworkManager[702]: <info>  [1726516077.9131] device (wlan0): state change: activated -> deactivating (reason 'unmanaged', sys-iface-state: 'managed')
Sep 16 21:47:57 NetworkManager[702]: <info>  [1726516077.9132] dhcp4 (wlan0): canceled DHCP transaction
Sep 16 21:47:57 NetworkManager[702]: <info>  [1726516077.9132] dhcp4 (wlan0): activation: beginning transaction (timeout in 45 seconds)
Sep 16 21:47:57 NetworkManager[702]: <info>  [1726516077.9132] dhcp4 (wlan0): state changed no lease
Sep 16 21:47:57 NetworkManager[702]: <info>  [1726516077.9132] dhcp6 (wlan0): canceled DHCP transaction
Sep 16 21:47:57 NetworkManager[702]: <info>  [1726516077.9132] dhcp6 (wlan0): activation: beginning transaction (timeout in 45 seconds)
Sep 16 21:47:57 NetworkManager[702]: <info>  [1726516077.9132] dhcp6 (wlan0): state changed no lease
Sep 16 21:47:57 NetworkManager[702]: <info>  [1726516077.9134] manager: NetworkManager state is now DISCONNECTING
Sep 16 21:47:57 systemd[1]: Stopping User Login Management...
Sep 16 21:47:57 systemd[1]: Stopping Network Configuration...
Sep 16 21:47:57 wpa_supplicant[738]: p2p-dev-wlan0: CTRL-EVENT-DSCP-POLICY clear_all
Sep 16 21:47:57 systemd[1]: Stopping WPA supplicant...
Sep 16 21:47:57 wpa_supplicant[738]: p2p-dev-wlan0: CTRL-EVENT-DSCP-POLICY clear_all
Sep 16 21:47:57 wpa_supplicant[738]: nl80211: deinit ifname=p2p-dev-wlan0 disabled_11b_rates=0
Sep 16 21:47:57 dbus-broker-launch[700]: Activation request for 'org.freedesktop.nm_dispatcher' failed.
Sep 16 21:47:57 NetworkManager[702]: <warn>  [1726516077.9169] dispatcher: (11) failed (after 0.003 sec): Could not activate remote peer 'org.freedesktop.nm_dispatcher': activation request failed: unit is invalid
Sep 16 21:47:57 NetworkManager[702]: <info>  [1726516077.9169] device (wlan0): state change: deactivating -> unmanaged (reason 'unmanaged-quitting', sys-iface-state: 'managed')
Sep 16 21:47:57 wpa_supplicant[738]: p2p-dev-wlan0: CTRL-EVENT-TERMINATING
Sep 16 21:47:57 systemd[1]: systemd-networkd.service: Deactivated successfully.
Sep 16 21:47:57 systemd-resolved[689]: wlan0: Bus client reset search domain list.
Sep 16 21:47:57 systemd-resolved[689]: wlan0: Bus client set default route setting: no
Sep 16 21:47:57 systemd-resolved[689]: wlan0: Bus client reset DNS server list.
Sep 16 21:47:57 kernel: wlan0: deauthenticating from 3c:37:12:04:db:b3 by local choice (Reason: 3=DEAUTH_LEAVING)
Sep 16 21:47:58 systemd[1]: Stopped Network Configuration.
Sep 16 21:47:58 systemd[1]: run-credentials-systemd\x2dnetworkd.service.mount: Deactivated successfully.
Sep 16 21:47:58 systemd[1]: systemd-logind.service: Deactivated successfully.
Sep 16 21:47:58 wpa_supplicant[738]: nl80211: send_event_marker failed: Source based routing not supported
Sep 16 21:47:58 wpa_supplicant[738]: wlan0: CTRL-EVENT-DISCONNECTED bssid=3c:37:12:04:db:b3 reason=3 locally_generated=1
Sep 16 21:47:58 wpa_supplicant[738]: wlan0: CTRL-EVENT-DSCP-POLICY clear_all
Sep 16 21:47:58 systemd[1]: Stopped User Login Management.
Sep 16 21:47:58 wpa_supplicant[738]: wlan0: CTRL-EVENT-DSCP-POLICY clear_all
Sep 16 21:47:58 wpa_supplicant[738]: nl80211: deinit ifname=wlan0 disabled_11b_rates=0
Sep 16 21:47:58 wpa_supplicant[738]: wlan0: CTRL-EVENT-TERMINATING
Sep 16 21:47:58 systemd[1]: wpa_supplicant.service: Deactivated successfully.
Sep 16 21:47:58 systemd[1]: Stopped WPA supplicant.
Sep 16 21:47:58 NetworkManager[702]: <info>  [1726516078.2239] manager: NetworkManager state is now DISCONNECTED
Sep 16 21:47:58 NetworkManager[702]: <info>  [1726516078.2248] device (p2p-dev-wlan0): state change: disconnected -> unmanaged (reason 'unmanaged-link-not-init', sys-iface-state: 'removed')
Sep 16 21:47:58 dbus-broker-launch[700]: Activation request for 'org.freedesktop.nm_dispatcher' failed.
Sep 16 21:47:58 NetworkManager[702]: <info>  [1726516078.2331] exiting (success)
Sep 16 21:47:58 systemd[1]: NetworkManager.service: Deactivated successfully.
Sep 16 21:47:58 systemd[1]: Stopped Network Manager.
Sep 16 21:47:58 systemd[1]: Stopped target Basic System.
Sep 16 21:47:58 systemd[1]: systemd-ask-password-plymouth.path: Deactivated successfully.
Sep 16 21:47:58 systemd[1]: Stopped Forward Password Requests to Plymouth Directory Watch.
Sep 16 21:47:58 systemd[1]: Stopped target Preparation for Network.
Sep 16 21:47:58 systemd[1]: Stopped target Path Units.
Sep 16 21:47:58 systemd[1]: cups.path: Deactivated successfully.
Sep 16 21:47:58 systemd[1]: Stopped CUPS Scheduler.
Sep 16 21:47:58 systemd[1]: Stopped target Slice Units.
Sep 16 21:47:58 systemd[1]: Removed slice User and Session Slice.
Sep 16 21:47:58 systemd[1]: user.slice: Consumed 52.087s CPU time, 2.8G memory peak.
Sep 16 21:47:58 systemd[1]: Stopped target Socket Units.
Sep 16 21:47:58 systemd[1]: cups.socket: Deactivated successfully.
Sep 16 21:47:58 systemd[1]: Closed CUPS Scheduler.
Sep 16 21:47:58 systemd[1]: dirmngr@etc-pacman.d-gnupg.socket: Deactivated successfully.
Sep 16 21:47:58 systemd[1]: Closed GnuPG network certificate management daemon for /etc/pacman.d/gnupg.
Sep 16 21:47:58 systemd[1]: Removed slice Slice /system/dirmngr.
Sep 16 21:47:58 systemd[1]: gpg-agent-browser@etc-pacman.d-gnupg.socket: Deactivated successfully.
Sep 16 21:47:58 systemd[1]: Closed GnuPG cryptographic agent and passphrase cache (access for web browsers) for /etc/pacman.d/gnupg.
Sep 16 21:47:58 systemd[1]: Removed slice Slice /system/gpg-agent-browser.
Sep 16 21:47:58 systemd[1]: gpg-agent-extra@etc-pacman.d-gnupg.socket: Deactivated successfully.
Sep 16 21:47:58 systemd[1]: Closed GnuPG cryptographic agent and passphrase cache (restricted) for /etc/pacman.d/gnupg.
Sep 16 21:47:58 systemd[1]: Removed slice Slice /system/gpg-agent-extra.
Sep 16 21:47:58 systemd[1]: gpg-agent-ssh@etc-pacman.d-gnupg.socket: Deactivated successfully.
Sep 16 21:47:58 systemd[1]: Closed GnuPG cryptographic agent (ssh-agent emulation) for /etc/pacman.d/gnupg.
Sep 16 21:47:58 systemd[1]: Removed slice Slice /system/gpg-agent-ssh.
Sep 16 21:47:58 systemd[1]: gpg-agent@etc-pacman.d-gnupg.socket: Deactivated successfully.
Sep 16 21:47:58 systemd[1]: Closed GnuPG cryptographic agent and passphrase cache for /etc/pacman.d/gnupg.
Sep 16 21:47:58 systemd[1]: Removed slice Slice /system/gpg-agent.
Sep 16 21:47:58 systemd[1]: keyboxd@etc-pacman.d-gnupg.socket: Deactivated successfully.
Sep 16 21:47:58 systemd[1]: Closed GnuPG public key management service for /etc/pacman.d/gnupg.
Sep 16 21:47:58 systemd[1]: Removed slice Slice /system/keyboxd.
Sep 16 21:47:58 systemd[1]: sshd-unix-local.socket: Deactivated successfully.
Sep 16 21:47:58 systemd[1]: Closed OpenSSH Server Socket (systemd-ssh-generator, AF_UNIX Local).
Sep 16 21:47:58 systemd[1]: systemd-hostnamed.socket: Deactivated successfully.
Sep 16 21:47:58 systemd[1]: Closed Hostname Service Socket.
Sep 16 21:47:58 systemd[1]: systemd-networkd.socket: Deactivated successfully.
Sep 16 21:47:58 systemd[1]: Closed Network Service Netlink Socket.
Sep 16 21:47:58 dbus-broker[701]: Dispatched 3065 messages @ 3(±6)μs / message.
Sep 16 21:47:58 systemd[1]: Stopping D-Bus System Message Bus...
Sep 16 21:47:58 systemd[1]: systemd-network-generator.service: Deactivated successfully.
Sep 16 21:47:58 systemd[1]: Stopped Generate network units from Kernel command line.
Sep 16 21:47:58 systemd[1]: run-credentials-systemd\x2dnetwork\x2dgenerator.service.mount: Deactivated successfully.
Sep 16 21:47:58 systemd[1]: dbus-broker.service: Deactivated successfully.
Sep 16 21:47:58 systemd[1]: Stopped D-Bus System Message Bus.
Sep 16 21:47:58 systemd[1]: dbus.socket: Deactivated successfully.
Sep 16 21:47:58 systemd[1]: Closed D-Bus System Message Bus Socket.
Sep 16 21:47:58 systemd[1]: Stopped target System Initialization.
Sep 16 21:47:58 systemd[1]: proc-sys-fs-binfmt_misc.automount: Deactivated successfully.
Sep 16 21:47:58 systemd[1]: Unset automount Arbitrary Executable File Formats File System Automount Point.
Sep 16 21:47:58 systemd[1]: Stopped target Local Encrypted Volumes.
Sep 16 21:47:58 systemd[1]: systemd-ask-password-wall.path: Deactivated successfully.
Sep 16 21:47:58 systemd[1]: Stopped Forward Password Requests to Wall Directory Watch.
Sep 16 21:47:58 systemd[1]: Stopped target Local Integrity Protected Volumes.
Sep 16 21:47:58 systemd[1]: Stopped target Local Verity Protected Volumes.
Sep 16 21:47:58 systemd[1]: Stopping Load/Save Screen Backlight Brightness of backlight:intel_backlight...
Sep 16 21:47:58 systemd[1]: Stopping Network Name Resolution...
Sep 16 21:47:58 systemd[1]: Stopping Network Time Synchronization...
Sep 16 21:47:58 systemd[1]: Stopping Record System Boot/Shutdown in UTMP...
Sep 16 21:47:58 systemd[1]: systemd-resolved.service: Deactivated successfully.
Sep 16 21:47:58 systemd[1]: Stopped Network Name Resolution.
Sep 16 21:47:58 systemd[1]: run-credentials-systemd\x2dresolved.service.mount: Deactivated successfully.
Sep 16 21:47:58 systemd[1]: systemd-timesyncd.service: Deactivated successfully.
Sep 16 21:47:58 systemd[1]: Stopped Network Time Synchronization.
Sep 16 21:47:58 systemd[1]: systemd-backlight@backlight:intel_backlight.service: Deactivated successfully.
Sep 16 21:47:58 systemd[1]: Stopped Load/Save Screen Backlight Brightness of backlight:intel_backlight.
Sep 16 21:47:58 systemd[1]: Removed slice Slice /system/systemd-backlight.
Sep 16 21:47:58 systemd[1]: systemd-sysctl.service: Deactivated successfully.
Sep 16 21:47:58 systemd[1]: Stopped Apply Kernel Variables.
Sep 16 21:47:58 systemd[1]: systemd-coredump.socket: Deactivated successfully.
Sep 16 21:47:58 systemd[1]: Closed Process Core Dump Socket.
Sep 16 21:47:58 systemd[1]: systemd-modules-load.service: Deactivated successfully.
Sep 16 21:47:58 systemd[1]: Stopped Load Kernel Modules.
Sep 16 21:47:58 systemd[1]: run-credentials-systemd\x2dsysctl.service.mount: Deactivated successfully.
Sep 16 21:47:58 systemd[1]: systemd-update-utmp.service: Deactivated successfully.
Sep 16 21:47:58 systemd[1]: Stopped Record System Boot/Shutdown in UTMP.
Sep 16 21:47:58 systemd[1]: systemd-tmpfiles-setup.service: Deactivated successfully.
Sep 16 21:47:58 systemd[1]: Stopped Create System Files and Directories.
Sep 16 21:47:58 systemd[1]: Stopped target Local File Systems.
Sep 16 21:47:58 systemd[1]: Unmounting /efi...
Sep 16 21:47:58 systemd[1]: Unmounting Temporary Directory /tmp...
Sep 16 21:47:58 systemd[1]: run-credentials-systemd\x2dtmpfiles\x2dsetup.service.mount: Deactivated successfully.
Sep 16 21:47:58 systemd[1]: efi.mount: Deactivated successfully.
Sep 16 21:47:58 systemd[1]: Unmounted /efi.
Sep 16 21:47:59 systemd[1]: tmp.mount: Deactivated successfully.
Sep 16 21:47:59 systemd[1]: Unmounted Temporary Directory /tmp.
Sep 16 21:47:59 systemd[1]: Stopped target Swaps.
Sep 16 21:47:59 systemd[1]: Deactivating swap /dev/disk/by-diskseq/1-part2...
Sep 16 21:47:59 systemd[1]: Unmounting /mnt/storage...
Sep 16 21:47:59 systemd[1]: systemd-fsck@dev-disk-by\x2duuid-E68B\x2d375F.service: Deactivated successfully.
Sep 16 21:47:59 systemd[1]: Stopped File System Check on /dev/disk/by-uuid/E68B-375F.
Sep 16 21:47:59 systemd[1]: mnt-storage.mount: Deactivated successfully.
Sep 16 21:47:59 systemd[1]: Unmounted /mnt/storage.
Sep 16 21:47:59 systemd[1]: dev-disk-by\x2dpath-pci\x2d0000:01:00.0\x2dnvme\x2d1\x2dpart2.swap: Deactivated successfully.
Sep 16 21:47:59 systemd[1]: Deactivated swap /dev/disk/by-path/pci-0000:01:00.0-nvme-1-part2.
Sep 16 21:47:59 systemd[1]: dev-disk-by\x2ddiskseq-1\x2dpart2.swap: Deactivated successfully.
Sep 16 21:47:59 systemd[1]: Deactivated swap /dev/disk/by-diskseq/1-part2.
Sep 16 21:47:59 systemd[1]: dev-disk-by\x2dpath-pci\x2d0000:01:00.0\x2dnvme\x2d1\x2dpart-by\x2dpartnum-2.swap: Deactivated successfully.
Sep 16 21:47:59 systemd[1]: Deactivated swap /dev/disk/by-path/pci-0000:01:00.0-nvme-1-part/by-partnum/2.
Sep 16 21:47:59 systemd[1]: dev-disk-by\x2dpath-pci\x2d0000:01:00.0\x2dnvme\x2d1\x2dpart-by\x2duuid-7d4dd35b\x2d5de8\x2d4c46\x2dbe9d\x2dbd2c87a13f17.swap: Deactivated successfully.
Sep 16 21:47:59 systemd[1]: Deactivated swap /dev/disk/by-path/pci-0000:01:00.0-nvme-1-part/by-uuid/7d4dd35b-5de8-4c46-be9d-bd2c87a13f17.
Sep 16 21:47:59 systemd[1]: dev-disk-by\x2did-nvme\x2deui.a428b7338a920049\x2dpart2.swap: Deactivated successfully.
Sep 16 21:47:59 systemd[1]: Deactivated swap /dev/disk/by-id/nvme-eui.a428b7338a920049-part2.
Sep 16 21:47:59 systemd[1]: dev-disk-by\x2did-nvme\x2dYMTC_PC005_512GB_YMA1512JA2150310AE_1\x2dpart2.swap: Deactivated successfully.
Sep 16 21:47:59 systemd[1]: Deactivated swap /dev/disk/by-id/nvme-YMTC_PC005_512GB_YMA1512JA2150310AE_1-part2.
Sep 16 21:47:59 systemd[1]: dev-disk-by\x2dpartuuid-1bce3d9c\x2dcf72\x2d47ec\x2db46f\x2d4c63267f3ea2.swap: Deactivated successfully.
Sep 16 21:47:59 systemd[1]: Deactivated swap /dev/disk/by-partuuid/1bce3d9c-cf72-47ec-b46f-4c63267f3ea2.
Sep 16 21:47:59 systemd[1]: dev-disk-by\x2dpath-pci\x2d0000:01:00.0\x2dnvme\x2d1\x2dpart-by\x2dpartuuid-1bce3d9c\x2dcf72\x2d47ec\x2db46f\x2d4c63267f3ea2.swap: Deactivated successfully.
Sep 16 21:47:59 systemd[1]: Deactivated swap /dev/disk/by-path/pci-0000:01:00.0-nvme-1-part/by-partuuid/1bce3d9c-cf72-47ec-b46f-4c63267f3ea2.
Sep 16 21:47:59 systemd[1]: dev-disk-by\x2did-nvme\x2dYMTC_PC005_512GB_YMA1512JA2150310AE\x2dpart2.swap: Deactivated successfully.
Sep 16 21:47:59 systemd[1]: Deactivated swap /dev/disk/by-id/nvme-YMTC_PC005_512GB_YMA1512JA2150310AE-part2.
Sep 16 21:47:59 systemd[1]: dev-nvme0n1p2.swap: Deactivated successfully.
Sep 16 21:47:59 systemd[1]: Deactivated swap /dev/nvme0n1p2.
Sep 16 21:47:59 systemd[1]: dev-disk-by\x2duuid-7d4dd35b\x2d5de8\x2d4c46\x2dbe9d\x2dbd2c87a13f17.swap: Deactivated successfully.
Sep 16 21:47:59 systemd[1]: Deactivated swap /dev/disk/by-uuid/7d4dd35b-5de8-4c46-be9d-bd2c87a13f17.
Sep 16 21:47:59 systemd[1]: Reached target Unmount All Filesystems.
Sep 16 21:47:59 systemd[1]: systemd-fsck@dev-disk-by\x2duuid-7DF8\x2d380C.service: Deactivated successfully.
Sep 16 21:47:59 systemd[1]: Stopped File System Check on /dev/disk/by-uuid/7DF8-380C.
Sep 16 21:47:59 systemd[1]: Removed slice Slice /system/systemd-fsck.
Sep 16 21:47:59 systemd[1]: system-systemd\x2dfsck.slice: Consumed 1.175s CPU time, 215.8M memory peak.
Sep 16 21:47:59 systemd[1]: Stopped target Preparation for Local File Systems.
Sep 16 21:47:59 systemd[1]: Stopping Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
Sep 16 21:47:59 systemd[1]: systemd-remount-fs.service: Deactivated successfully.
Sep 16 21:47:59 systemd[1]: Stopped Remount Root and Kernel File Systems.
Sep 16 21:47:59 systemd[1]: systemd-tmpfiles-setup-dev.service: Deactivated successfully.
Sep 16 21:47:59 systemd[1]: Stopped Create Static Device Nodes in /dev.
Sep 16 21:47:59 systemd[1]: systemd-tmpfiles-setup-dev-early.service: Deactivated successfully.
Sep 16 21:47:59 systemd[1]: Stopped Create Static Device Nodes in /dev gracefully.
Sep 16 21:47:59 systemd[1]: run-credentials-systemd\x2dtmpfiles\x2dsetup\x2ddev\x2dearly.service.mount: Deactivated successfully.
Sep 16 21:47:59 systemd[1]: run-credentials-systemd\x2dtmpfiles\x2dsetup\x2ddev.service.mount: Deactivated successfully.
Sep 16 21:47:59 systemd[1]: lvm2-monitor.service: Deactivated successfully.
Sep 16 21:47:59 systemd[1]: Stopped Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
Sep 16 21:47:59 systemd[1]: Reached target System Shutdown.
Sep 16 21:47:59 systemd[1]: Reached target Late Shutdown Services.
Sep 16 21:47:59 systemd[1]: Started Show Plymouth Reboot Screen.
Sep 16 21:47:59 systemd[1]: Starting Tell Plymouth To Jump To initramfs...
Sep 16 21:47:59 systemd[1]: systemd-reboot.service: Deactivated successfully.
Sep 16 21:47:59 systemd[1]: Finished System Reboot.
Sep 16 21:47:59 systemd[1]: Reached target System Reboot.
Sep 16 21:47:59 systemd[1]: Shutting down.
Sep 16 21:47:59 systemd[1]: Using hardware watchdog 'iTCO_wdt', version 6, device /dev/watchdog0
Sep 16 21:47:59 systemd[1]: Watchdog running with a hardware timeout of 10min.
Sep 16 21:47:59 kernel: watchdog: watchdog0: watchdog did not stop!
Sep 16 21:47:59 systemd-shutdown[1]: Using hardware watchdog 'iTCO_wdt', version 6, device /dev/watchdog0
Sep 16 21:47:59 systemd-shutdown[1]: Watchdog running with a hardware timeout of 10min.
Sep 16 21:47:59 systemd-shutdown[1]: Syncing filesystems and block devices.
Sep 16 21:47:59 systemd-shutdown[1]: Sending SIGTERM to remaining processes...
Sep 16 21:47:59 systemd-journald[400]: Received SIGTERM from PID 1 (systemd-shutdow).
Sep 16 21:47:59 systemd-journald[400]: Journal stopped

I am not sure if I understood you correctly, especially since I do not know why my normal boot log is needed and not error-related logs

Last edited by testware (2024-09-16 20:03:12)

Offline

Board footer

Powered by FluxBB