You are not logged in.

#1 2024-09-22 07:19:22

garnish
Member
Registered: 2023-12-22
Posts: 13

Hibernation not working

So I've read the wiki and set up hibernation accordingly but for some reason it's not working. Whenever I hibernate I start with a fresh session as if I shutdown my computer normally and didn't hibernate it at all even though I get a message while booting that a hibernation image was detected.
I've configured the initramfs and added the resume hook like so:

HOOKS=(base udev autodetect microcode modconf keyboard keymap consolefont block encrypt filesystems resume fsck)

I've added all the right kernel parameters like this:

GRUB_CMDLINE_LINUX_DEFAULT="loglevel=3 quiet lsm=landlock,lockdown,yama,integrity,apparmor,bpf cryptdevice=UUID=9c612f8c-f056-4062-be52-368c27fe5e78:root root=/dev/mapper/root resume=UUID=3adc738b-6ed9-4988-a8bb-4c4fcc83c00c resume_offset=533760"

My fstab:

# Static information about the filesystems.
# See fstab(5) for details.

# <file system> <dir> <type> <options> <dump> <pass>
# /dev/mapper/root
UUID=3adc738b-6ed9-4988-a8bb-4c4fcc83c00c	/         	btrfs     	rw,noatime,compress=zstd:3,ssd,space_cache=v2,subvolid=256,subvol=/@	0 0

# /dev/mapper/root
UUID=3adc738b-6ed9-4988-a8bb-4c4fcc83c00c	/var/log  	btrfs     	rw,noatime,compress=zstd:3,ssd,space_cache=v2,subvolid=259,subvol=/@log	0 0

# /dev/mapper/root
UUID=3adc738b-6ed9-4988-a8bb-4c4fcc83c00c	/var/cache/pacman/pkg	btrfs     	rw,noatime,compress=zstd:3,ssd,space_cache=v2,subvolid=258,subvol=/@pkg	0 0

# /dev/mapper/root
UUID=3adc738b-6ed9-4988-a8bb-4c4fcc83c00c	/home/images	btrfs     	rw,noatime,compress=zstd:3,ssd,space_cache=v2,subvolid=260,subvol=/@images	0 0

# /dev/mapper/root
UUID=3adc738b-6ed9-4988-a8bb-4c4fcc83c00c	/home     	btrfs     	rw,noatime,compress=zstd:3,ssd,space_cache=v2,subvolid=257,subvol=/@home	0 0

# /dev/mapper/root
UUID=3adc738b-6ed9-4988-a8bb-4c4fcc83c00c	/.snapshots	btrfs     	rw,noatime,compress=zstd:3,ssd,space_cache=v2,subvolid=263,subvol=/@snapshots	0 0

# /dev/mapper/root
UUID=3adc738b-6ed9-4988-a8bb-4c4fcc83c00c	/swap     	btrfs     	rw,noatime,compress=zstd:3,ssd,space_cache=v2,subvolid=262,subvol=/@swap	0 0

# /dev/nvme1n1p1
UUID=96D4-E061      	/boot     	vfat      	rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=ascii,shortname=mixed,utf8,errors=remount-ro	0 2

/swap/swapfile      	none      	swap      	defaults  	0 0

I have 40GB of ram and a 40GB swapfile so I don't think that's what's causing the problem and I've set up hibernation in the exact same way before and had it work so I'm not sure why it's not working this time or what I'm doing wrong.

Last edited by garnish (2024-09-23 03:24:07)

Offline

#2 2024-09-22 17:45:18

Neroman
Member
Registered: 2024-09-13
Posts: 21

Re: Hibernation not working

garnish wrote:

# /dev/mapper/root
UUID=XXX    /swap         btrfs         rw,noatime,compress=zstd:3,ssd,space_cache=v2,subvolid=262,subvol=/@swap    0 0

Not sure, but I think you have missing swap file in fstab (if it isn't file) https://wiki.archlinux.org/title/Swap#Swap_file
You can also make it with btrfs: https://wiki.archlinux.org/title/Btrfs#Swap_file
Here you can try to look for it: https://wiki.archlinux.org/title/Power_ … ile_offset

This is all I think could help. I'm using btrfs either and subvolumes are something difficult to me, so i just made swap partition for these type of things (hibernation, extra ram, etc.) using default arch install guide.

# /dev/nvme0n1p2
UUID=ae9f54ec-bdfe-4769-9ebf-68fb237eb3b6	none      	swap      	defaults  	0 0

There also can be problem if you've set too small size swap. Check it out for you amount of RAM with hibernation

Offline

#3 2024-09-22 18:37:40

ewaller
Administrator
From: Pasadena, CA
Registered: 2009-07-13
Posts: 20,623

Re: Hibernation not working

It is interesting that you are getting a message that a hibernation image was detected.
You are biting off a pretty good chunk of variables by trying this with an encrypted btrfs.  They both complicate things.

Also, as you have obfuscated your UUIDs it is a bit difficult to tell which volumes are used where.  I assume that all XXX represent the same file system, and YYY another?


Nothing is too wonderful to be true, if it be consistent with the laws of nature -- Michael Faraday
The shortest way to ruin a country is to give power to demagogues.— Dionysius of Halicarnassus
---
How to Ask Questions the Smart Way

Offline

#4 2024-09-22 20:30:51

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 75,295

Re: Hibernation not working

even though I get a message while booting that a hibernation image was detected

Please don't paraphrase, https://bbs.archlinux.org/viewtopic.php?id=57855
Please post your complete system journal for the boot:

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

Systemd sometimes "detects" the wrong image.

Then please use [code][/code] tags. Edit your post in this regard.

The UUID obfuscation is pointless, the UUIDs exist to prevent collisions, while traceable (if you post them across the internet they link the posts) they don't reveal anything about you or the system. At all.

@Neroman systemd activates swap partitions automatically (well, should™) and the OP has a swap file which they likely also use as hibernation image.
Speaking of which: make sure to have read https://wiki.archlinux.org/title/Power_ … ile_offset - btrfs is a special kind of beast.
Also

I have 40GB of ram and a 40GB swapfile so I don't think that's what's causing the problem

Heavily depends - if the swapfile is active swap and in use for that and you're using a lot of RAM before hibernating, that assertion gets bold.
In doubt make sure to try this from a  simple multi-user.target boot.

Also, generally

lsm=landlock,lockdown,yama,integrity,apparmor,bpf

Try the behavior w/o that (remove it from the boot that you're going to hibernate, not when waking from hibernation!)

Offline

#5 2024-09-23 02:47:36

garnish
Member
Registered: 2023-12-22
Posts: 13

Re: Hibernation not working

Neroman wrote:
garnish wrote:

# /dev/mapper/root
UUID=XXX    /swap         btrfs         rw,noatime,compress=zstd:3,ssd,space_cache=v2,subvolid=262,subvol=/@swap    0 0

Not sure, but I think you have missing swap file in fstab (if it isn't file) https://wiki.archlinux.org/title/Swap#Swap_file
You can also make it with btrfs: https://wiki.archlinux.org/title/Btrfs#Swap_file
Here you can try to look for it: https://wiki.archlinux.org/title/Power_ … ile_offset

This is all I think could help. I'm using btrfs either and subvolumes are something difficult to me, so i just made swap partition for these type of things (hibernation, extra ram, etc.) using default arch install guide.

# /dev/nvme0n1p2
UUID=ae9f54ec-bdfe-4769-9ebf-68fb237eb3b6	none      	swap      	defaults  	0 0

There also can be problem if you've set too small size swap. Check it out for you amount of RAM with hibernation

I have a swapfile in my fstab, I think you can see it under the /boot entry and yes I made it with btrfs initially when I first installed Arch and I also have the swapfile offset added to my kernel parameters already, as you can see.
My swapfile size is big enough I think.

Offline

#6 2024-09-23 02:51:56

garnish
Member
Registered: 2023-12-22
Posts: 13

Re: Hibernation not working

ewaller wrote:

It is interesting that you are getting a message that a hibernation image was detected.
You are biting off a pretty good chunk of variables by trying this with an encrypted btrfs.  They both complicate things.

Also, as you have obfuscated your UUIDs it is a bit difficult to tell which volumes are used where.  I assume that all XXX represent the same file system, and YYY another?

I understand that hibernating on an encrypted btrfs system is complicated but I've hibernated successfully on an almost exact same install previously following these same instructions. The only difference I can think of between this and that install is that I was on the regular kernel back then and I'm on the zen kernel now.
Or maybe I'm doing something wrong this time, I'm not sure.
And yes all the XXX in my post represent the same UUID everywhere in my original post and YYY represents the UUID of my boot partition.

Offline

#7 2024-09-23 03:21:48

garnish
Member
Registered: 2023-12-22
Posts: 13

Re: Hibernation not working

seth wrote:

I'm sorry, when I boot after hibernating it says:

Reported hibernation image: ID=arch kernel=6.10.10-zen1-1-zen UUID=3adc738b-6ed9

Please post your complete system journal for the boot:

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

When I run this command I get:

Network (my ip and isp) is blocked from uploading files due to frequent abuse.

Then please use [code][/code] tags. Edit your post in this regard.

Ok done.

The UUID obfuscation is pointless, the UUIDs exist to prevent collisions, while traceable (if you post them across the internet they link the posts) they don't reveal anything about you or the system. At all.

I'm aware of all this but I don't like to post them for privacy reasons but still  I understand I need to in order to get proper help so I will update my original posts with the UUIDs now.

Heavily depends - if the swapfile is active swap and in use for that and you're using a lot of RAM before hibernating, that assertion gets bold.

I rarely use more than half my ram unless I'm using VMs and I'm testing hibernation on a system with nothing but the file explorer and a music player running so I'm pretty sure I have enough space in my swapfile to hibernate.

Try the behavior w/o that (remove it from the boot that you're going to hibernate, not when waking from hibernation!)

I don't understand, are you asking me to remove those lines from my grub config, update grub and try to hibernate again?

Last edited by garnish (2024-09-23 03:41:21)

Offline

#8 2024-09-23 07:04:06

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 75,295

Re: Hibernation not working

Please refrain from fully quoting posts, it bloats the thread without reason and can lead to you burying your responses in quotes.

Network (my ip and isp) is blocked from uploading files due to frequent abuse.

Upload the journal somewhere else, cause

Reported hibernation image: ID=arch kernel=6.10.10-zen1-1-zen UUID=3adc738b-6ed9

isn't gonna cut it.

are you asking me to remove those lines from my grub config, update grub and try to hibernate again?

Before the hibernation, first reboot (w/o the parameters) but generally yes.
The lockdown might spoil the resume, do you have a parallel windows installation or change anything about the configuration during the hibernation (detach the system from a dock or sth. like that)?

Offline

#9 2024-09-23 07:43:40

garnish
Member
Registered: 2023-12-22
Posts: 13

Re: Hibernation not working

Please refrain from fully quoting posts, it bloats the thread without reason and can lead to you burying your responses in quotes.

I don't know how to do it.

Upload the journal somewhere else, cause

I don't think you understood me, I get that message in my terminal when I run that command, not when I try to post it here. There's nothing to upload because that's what my terminal gives me when I use that command you said.

Reported hibernation image: ID=arch kernel=6.10.10-zen1-1-zen UUID=3adc738b-6ed9

isn't gonna cut it.
This is what I get when I boot up my laptop after hibernating it on the boot screen, it's not in any journal.

are you asking me to remove those lines from my grub config, update grub and try to hibernate again?

Before the hibernation, first reboot (w/o the parameters) but generally yes.

The lockdown might spoil the resume, do you have a parallel windows installation or change anything about the configuration during the hibernation (detach the system from a dock or sth. like that)?

Alright I will try and yes I have Windows installed on a seperate SSD, but  as I mentioned before I've successfully hibernated before while dualbooting with Windows and that Windows was on the same SSD unlike this time and I've also had those kernal parameters before so I'm not sure why all this would be a problem this time and no I'm not doing anything like detaching my system from a dock or anything similar.

Last edited by garnish (2024-09-23 07:46:22)

Offline

#10 2024-09-23 07:55:23

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 75,295

Re: Hibernation not working

I don't think you understood me, I get that message in my terminal when I run that command, not when I try to post it here.

No, I understood you.
The command you entered pipes the journal of the present boot into 0x0.st and 0x0.st told you to go away because there's been frequent abuse from your netwirk segment.

and that Windows was on the same SSD

The storage location is completely irrelevant, 3rd link below. Mandatory.
Disable it (it's NOT the BIOS setting!) and reboot windows and linux twice for voodo reasons.

Offline

#11 2024-09-23 08:05:47

garnish
Member
Registered: 2023-12-22
Posts: 13

Re: Hibernation not working

Alright so I turned off my VPN and tried that command again and this is what I got

Sep 23 01:01:27 arch kernel: Linux version 6.10.10-zen1-1-zen (linux-zen@archlinux) (gcc (GCC) 14.2.1 20240910, GNU ld (GNU Binutils) 2.43.0) #1 ZEN SMP PREEMPT_DYNAMIC Thu, 12 Sep 2024 17:17:51 +0000
Sep 23 01:01:27 arch kernel: Command line: BOOT_IMAGE=/vmlinuz-linux-zen root=UUID=3adc738b-6ed9-4988-a8bb-4c4fcc83c00c rw rootflags=subvol=@ loglevel=3 quiet lsm=landlock,lockdown,yama,integrity,apparmor,bpf cryptdevice=UUID=9c612f8c-f056-4062-be52-368c27fe5e78:root root=/dev/mapper/root resume=UUID=3adc738b-6ed9-4988-a8bb-4c4fcc83c00c resume_offset=533760
Sep 23 01:01:27 arch kernel: x86/split lock detection: #AC: crashing the kernel on kernel split_locks and warning on user-space split_locks
Sep 23 01:01:27 arch kernel: BIOS-provided physical RAM map:
Sep 23 01:01:27 arch kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009dfff] usable
Sep 23 01:01:27 arch kernel: BIOS-e820: [mem 0x000000000009e000-0x000000000009efff] reserved
Sep 23 01:01:27 arch kernel: BIOS-e820: [mem 0x000000000009f000-0x000000000009ffff] usable
Sep 23 01:01:27 arch kernel: BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved
Sep 23 01:01:27 arch kernel: BIOS-e820: [mem 0x0000000000100000-0x00000000382ebfff] usable
Sep 23 01:01:27 arch kernel: BIOS-e820: [mem 0x00000000382ec000-0x00000000409bafff] reserved
Sep 23 01:01:27 arch kernel: BIOS-e820: [mem 0x00000000409bb000-0x0000000040ae9fff] ACPI data
Sep 23 01:01:27 arch kernel: BIOS-e820: [mem 0x0000000040aea000-0x0000000040c2ffff] ACPI NVS
Sep 23 01:01:27 arch kernel: BIOS-e820: [mem 0x0000000040c30000-0x00000000417fefff] reserved
Sep 23 01:01:27 arch kernel: BIOS-e820: [mem 0x00000000417ff000-0x00000000417fffff] usable
Sep 23 01:01:27 arch kernel: BIOS-e820: [mem 0x0000000041800000-0x0000000047ffffff] reserved
Sep 23 01:01:27 arch kernel: BIOS-e820: [mem 0x0000000048800000-0x0000000048bfffff] reserved
Sep 23 01:01:27 arch kernel: BIOS-e820: [mem 0x0000000048e00000-0x000000004f7fffff] reserved
Sep 23 01:01:27 arch kernel: BIOS-e820: [mem 0x00000000c0000000-0x00000000cfffffff] reserved
Sep 23 01:01:27 arch kernel: BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
Sep 23 01:01:27 arch kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
Sep 23 01:01:27 arch kernel: BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
Sep 23 01:01:27 arch kernel: BIOS-e820: [mem 0x00000000fed20000-0x00000000fed7ffff] reserved
Sep 23 01:01:27 arch kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Sep 23 01:01:27 arch kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
Sep 23 01:01:27 arch kernel: BIOS-e820: [mem 0x0000000100000000-0x0000000ab07fffff] usable
Sep 23 01:01:27 arch kernel: NX (Execute Disable) protection: active
Sep 23 01:01:27 arch kernel: APIC: Static calls initialized
Sep 23 01:01:27 arch kernel: e820: update [mem 0x26c38018-0x26c5cc57] usable ==> usable
Sep 23 01:01:27 arch kernel: extended physical RAM map:
Sep 23 01:01:27 arch kernel: reserve setup_data: [mem 0x0000000000000000-0x000000000009dfff] usable
Sep 23 01:01:27 arch kernel: reserve setup_data: [mem 0x000000000009e000-0x000000000009efff] reserved
Sep 23 01:01:27 arch kernel: reserve setup_data: [mem 0x000000000009f000-0x000000000009ffff] usable
Sep 23 01:01:27 arch kernel: reserve setup_data: [mem 0x00000000000a0000-0x00000000000fffff] reserved
Sep 23 01:01:27 arch kernel: reserve setup_data: [mem 0x0000000000100000-0x0000000026c38017] usable
Sep 23 01:01:27 arch kernel: reserve setup_data: [mem 0x0000000026c38018-0x0000000026c5cc57] usable
Sep 23 01:01:27 arch kernel: reserve setup_data: [mem 0x0000000026c5cc58-0x00000000382ebfff] usable
Sep 23 01:01:27 arch kernel: reserve setup_data: [mem 0x00000000382ec000-0x00000000409bafff] reserved
Sep 23 01:01:27 arch kernel: reserve setup_data: [mem 0x00000000409bb000-0x0000000040ae9fff] ACPI data
Sep 23 01:01:27 arch kernel: reserve setup_data: [mem 0x0000000040aea000-0x0000000040c2ffff] ACPI NVS
Sep 23 01:01:27 arch kernel: reserve setup_data: [mem 0x0000000040c30000-0x00000000417fefff] reserved
Sep 23 01:01:27 arch kernel: reserve setup_data: [mem 0x00000000417ff000-0x00000000417fffff] usable
Sep 23 01:01:27 arch kernel: reserve setup_data: [mem 0x0000000041800000-0x0000000047ffffff] reserved
Sep 23 01:01:27 arch kernel: reserve setup_data: [mem 0x0000000048800000-0x0000000048bfffff] reserved
Sep 23 01:01:27 arch kernel: reserve setup_data: [mem 0x0000000048e00000-0x000000004f7fffff] reserved
Sep 23 01:01:27 arch kernel: reserve setup_data: [mem 0x00000000c0000000-0x00000000cfffffff] reserved
Sep 23 01:01:27 arch kernel: reserve setup_data: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
Sep 23 01:01:27 arch kernel: reserve setup_data: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
Sep 23 01:01:27 arch kernel: reserve setup_data: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
Sep 23 01:01:27 arch kernel: reserve setup_data: [mem 0x00000000fed20000-0x00000000fed7ffff] reserved
Sep 23 01:01:27 arch kernel: reserve setup_data: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Sep 23 01:01:27 arch kernel: reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
Sep 23 01:01:27 arch kernel: reserve setup_data: [mem 0x0000000100000000-0x0000000ab07fffff] usable
Sep 23 01:01:27 arch kernel: efi: EFI v2.8 by American Megatrends
Sep 23 01:01:27 arch kernel: efi: ACPI=0x40ae9000 ACPI 2.0=0x40ae9014 TPMFinalLog=0x40b7b000 SMBIOS=0x41357000 SMBIOS 3.0=0x41356000 MEMATTR=0x31209018 ESRT=0x33a10c18 INITRD=0x332d2a98 RNG=0x409f6018 TPMEventLog=0x3327a018 
Sep 23 01:01:27 arch kernel: random: crng init done
Sep 23 01:01:27 arch kernel: efi: Remove mem93: MMIO range=[0xc0000000-0xcfffffff] (256MB) from e820 map
Sep 23 01:01:27 arch kernel: e820: remove [mem 0xc0000000-0xcfffffff] reserved
Sep 23 01:01:27 arch kernel: efi: Not removing mem94: MMIO range=[0xfe000000-0xfe010fff] (68KB) from e820 map
Sep 23 01:01:27 arch kernel: efi: Not removing mem95: MMIO range=[0xfec00000-0xfec00fff] (4KB) from e820 map
Sep 23 01:01:27 arch kernel: efi: Not removing mem96: MMIO range=[0xfed00000-0xfed00fff] (4KB) from e820 map
Sep 23 01:01:27 arch kernel: efi: Not removing mem98: MMIO range=[0xfee00000-0xfee00fff] (4KB) from e820 map
Sep 23 01:01:27 arch kernel: efi: Remove mem99: MMIO range=[0xff000000-0xffffffff] (16MB) from e820 map
Sep 23 01:01:27 arch kernel: e820: remove [mem 0xff000000-0xffffffff] reserved
Sep 23 01:01:27 arch kernel: SMBIOS 3.5.0 present.
Sep 23 01:01:27 arch kernel: DMI: ASUSTeK COMPUTER INC. Vivobook_ASUSLaptop K6502VU_K6502VU/K6502VU, BIOS K6502VU.311 04/23/2024
Sep 23 01:01:27 arch kernel: DMI: Memory slots populated: 2/2
Sep 23 01:01:27 arch kernel: tsc: Detected 3200.000 MHz processor
Sep 23 01:01:27 arch kernel: tsc: Detected 3187.200 MHz TSC
Sep 23 01:01:27 arch kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Sep 23 01:01:27 arch kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
Sep 23 01:01:27 arch kernel: last_pfn = 0xab0800 max_arch_pfn = 0x400000000
Sep 23 01:01:27 arch kernel: MTRR map: 5 entries (3 fixed + 2 variable; max 23), built from 10 variable MTRRs
Sep 23 01:01:27 arch kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Sep 23 01:01:27 arch kernel: last_pfn = 0x41800 max_arch_pfn = 0x400000000
Sep 23 01:01:27 arch kernel: esrt: Reserving ESRT space from 0x0000000033a10c18 to 0x0000000033a10cc8.
Sep 23 01:01:27 arch kernel: e820: update [mem 0x33a10000-0x33a10fff] usable ==> reserved
Sep 23 01:01:27 arch kernel: Using GB pages for direct mapping
Sep 23 01:01:27 arch kernel: Incomplete global flushes, disabling PCID
Sep 23 01:01:27 arch kernel: Secure boot disabled
Sep 23 01:01:27 arch kernel: RAMDISK: [mem 0x26c5d000-0x2e3adfff]
Sep 23 01:01:27 arch kernel: ACPI: Early table checksum verification disabled
Sep 23 01:01:27 arch kernel: ACPI: RSDP 0x0000000040AE9014 000024 (v02 _ASUS_)
Sep 23 01:01:27 arch kernel: ACPI: XSDT 0x0000000040AE8728 00013C (v01 _ASUS_ Notebook 01072009 AMI  01000013)
Sep 23 01:01:27 arch kernel: ACPI: FACP 0x0000000040ADF000 000114 (v06 _ASUS_ Notebook 01072009 AMI  01000013)
Sep 23 01:01:27 arch kernel: ACPI: DSDT 0x0000000040A45000 099033 (v02 _ASUS_ Notebook 01072009 INTL 20200717)
Sep 23 01:01:27 arch kernel: ACPI: FACS 0x0000000040C2E000 000040
Sep 23 01:01:27 arch kernel: ACPI: SSDT 0x0000000040AE0000 00734D (v02 DptfTb DptfTabl 00001000 INTL 20200717)
Sep 23 01:01:27 arch kernel: ACPI: FIDT 0x0000000040A44000 00009C (v01 _ASUS_ Notebook 01072009 AMI  00010013)
Sep 23 01:01:27 arch kernel: ACPI: MSDM 0x0000000040A43000 000055 (v03 _ASUS_ Notebook 01072009 ASUS 00000001)
Sep 23 01:01:27 arch kernel: ACPI: SSDT 0x0000000040A42000 00038C (v02 PmaxDv Pmax_Dev 00000001 INTL 20200717)
Sep 23 01:01:27 arch kernel: ACPI: SSDT 0x0000000040A3C000 005D34 (v02 CpuRef CpuSsdt  00003000 INTL 20200717)
Sep 23 01:01:27 arch kernel: ACPI: SSDT 0x0000000040A39000 002935 (v02 SaSsdt SaSsdt   00003000 INTL 20200717)
Sep 23 01:01:27 arch kernel: ACPI: SSDT 0x0000000040A35000 0033E9 (v02 INTEL  IgfxSsdt 00003000 INTL 20200717)
Sep 23 01:01:27 arch kernel: ACPI: SSDT 0x0000000040A27000 00D467 (v02 INTEL  TcssSsdt 00001000 INTL 20200717)
Sep 23 01:01:27 arch kernel: ACPI: HPET 0x0000000040A26000 000038 (v01 _ASUS_ Notebook 01072009 AMI  01000013)
Sep 23 01:01:27 arch kernel: ACPI: APIC 0x0000000040A25000 0001DC (v05 _ASUS_ Notebook 01072009 AMI  01000013)
Sep 23 01:01:27 arch kernel: ACPI: MCFG 0x0000000040A24000 00003C (v01 _ASUS_ Notebook 01072009 AMI  01000013)
Sep 23 01:01:27 arch kernel: ACPI: SSDT 0x0000000040A1B000 00895B (v02 _ASUS_ AdlP_Rvp 00001000 INTL 20200717)
Sep 23 01:01:27 arch kernel: ACPI: SSDT 0x0000000040A19000 001ED5 (v02 _ASUS_ Ther_Rvp 00001000 INTL 20200717)
Sep 23 01:01:27 arch kernel: ACPI: LPIT 0x0000000040A18000 0000CC (v01 _ASUS_ Notebook 01072009 AMI  01000013)
Sep 23 01:01:27 arch kernel: ACPI: SSDT 0x0000000040A14000 002A83 (v02 _ASUS_ PtidDevc 00001000 INTL 20200717)
Sep 23 01:01:27 arch kernel: ACPI: SSDT 0x0000000040A11000 002357 (v02 _ASUS_ TbtTypeC 00000000 INTL 20200717)
Sep 23 01:01:27 arch kernel: ACPI: DBGP 0x0000000040A10000 000034 (v01 _ASUS_ Notebook 01072009 AMI  01000013)
Sep 23 01:01:27 arch kernel: ACPI: DBG2 0x0000000040A0F000 000054 (v00 _ASUS_ Notebook 01072009 AMI  01000013)
Sep 23 01:01:27 arch kernel: ACPI: SSDT 0x0000000040A0D000 001AC9 (v02 _ASUS_ UsbCTabl 00001000 INTL 20200717)
Sep 23 01:01:27 arch kernel: ACPI: NHLT 0x0000000040A0B000 001B8E (v00 _ASUS_ Notebook 01072009 AMI  01000013)
Sep 23 01:01:27 arch kernel: ACPI: DMAR 0x0000000040A0A000 000088 (v02 INTEL  EDK2     00000002      01000013)
Sep 23 01:01:27 arch kernel: ACPI: FPDT 0x0000000040A09000 000044 (v01 _ASUS_ A M I    01072009 AMI  01000013)
Sep 23 01:01:27 arch kernel: ACPI: SSDT 0x0000000040A08000 000C02 (v02 INTEL  xh_adlLP 00000000 INTL 20200717)
Sep 23 01:01:27 arch kernel: ACPI: SSDT 0x0000000040A04000 003AEA (v02 SocGpe SocGpe   00003000 INTL 20200717)
Sep 23 01:01:27 arch kernel: ACPI: SSDT 0x0000000040A00000 0039DA (v02 SocCmn SocCmn   00003000 INTL 20200717)
Sep 23 01:01:27 arch kernel: ACPI: SSDT 0x00000000409FF000 000457 (v02 HgRef  HgRpSsdt 00001000 INTL 20200717)
Sep 23 01:01:27 arch kernel: ACPI: SSDT 0x00000000409FE000 000144 (v02 Intel  ADebTabl 00001000 INTL 20200717)
Sep 23 01:01:27 arch kernel: ACPI: BGRT 0x00000000409FD000 000038 (v01 _ASUS_ Notebook 01072009 AMI  00010013)
Sep 23 01:01:27 arch kernel: ACPI: UEFI 0x0000000040B5D000 00063A (v01 INTEL  RstVmdE  00000000 INTL 00000000)
Sep 23 01:01:27 arch kernel: ACPI: UEFI 0x0000000040B5C000 00005C (v01 INTEL  RstVmdV  00000000 INTL 00000000)
Sep 23 01:01:27 arch kernel: ACPI: TPM2 0x00000000409FC000 00004C (v04 _ASUS_ Notebook 00000001 AMI  00000000)
Sep 23 01:01:27 arch kernel: ACPI: SSDT 0x00000000409F8000 00323D (v01 OemNv2 OemNv2T  00001000 INTL 20200717)
Sep 23 01:01:27 arch kernel: ACPI: PHAT 0x00000000409F7000 00060D (v01 _ASUS_ Notebook 00000005 MSFT 0100000D)
Sep 23 01:01:27 arch kernel: ACPI: WSMT 0x0000000040A17000 000028 (v01 _ASUS_ Notebook 01072009 AMI  00010013)
Sep 23 01:01:27 arch kernel: ACPI: Reserving FACP table memory at [mem 0x40adf000-0x40adf113]
Sep 23 01:01:27 arch kernel: ACPI: Reserving DSDT table memory at [mem 0x40a45000-0x40ade032]
Sep 23 01:01:27 arch kernel: ACPI: Reserving FACS table memory at [mem 0x40c2e000-0x40c2e03f]
Sep 23 01:01:27 arch kernel: ACPI: Reserving SSDT table memory at [mem 0x40ae0000-0x40ae734c]
Sep 23 01:01:27 arch kernel: ACPI: Reserving FIDT table memory at [mem 0x40a44000-0x40a4409b]
Sep 23 01:01:27 arch kernel: ACPI: Reserving MSDM table memory at [mem 0x40a43000-0x40a43054]
Sep 23 01:01:27 arch kernel: ACPI: Reserving SSDT table memory at [mem 0x40a42000-0x40a4238b]
Sep 23 01:01:27 arch kernel: ACPI: Reserving SSDT table memory at [mem 0x40a3c000-0x40a41d33]
Sep 23 01:01:27 arch kernel: ACPI: Reserving SSDT table memory at [mem 0x40a39000-0x40a3b934]
Sep 23 01:01:27 arch kernel: ACPI: Reserving SSDT table memory at [mem 0x40a35000-0x40a383e8]
Sep 23 01:01:27 arch kernel: ACPI: Reserving SSDT table memory at [mem 0x40a27000-0x40a34466]
Sep 23 01:01:27 arch kernel: ACPI: Reserving HPET table memory at [mem 0x40a26000-0x40a26037]
Sep 23 01:01:27 arch kernel: ACPI: Reserving APIC table memory at [mem 0x40a25000-0x40a251db]
Sep 23 01:01:27 arch kernel: ACPI: Reserving MCFG table memory at [mem 0x40a24000-0x40a2403b]
Sep 23 01:01:27 arch kernel: ACPI: Reserving SSDT table memory at [mem 0x40a1b000-0x40a2395a]
Sep 23 01:01:27 arch kernel: ACPI: Reserving SSDT table memory at [mem 0x40a19000-0x40a1aed4]
Sep 23 01:01:27 arch kernel: ACPI: Reserving LPIT table memory at [mem 0x40a18000-0x40a180cb]
Sep 23 01:01:27 arch kernel: ACPI: Reserving SSDT table memory at [mem 0x40a14000-0x40a16a82]
Sep 23 01:01:27 arch kernel: ACPI: Reserving SSDT table memory at [mem 0x40a11000-0x40a13356]
Sep 23 01:01:27 arch kernel: ACPI: Reserving DBGP table memory at [mem 0x40a10000-0x40a10033]
Sep 23 01:01:27 arch kernel: ACPI: Reserving DBG2 table memory at [mem 0x40a0f000-0x40a0f053]
Sep 23 01:01:27 arch kernel: ACPI: Reserving SSDT table memory at [mem 0x40a0d000-0x40a0eac8]
Sep 23 01:01:27 arch kernel: ACPI: Reserving NHLT table memory at [mem 0x40a0b000-0x40a0cb8d]
Sep 23 01:01:27 arch kernel: ACPI: Reserving DMAR table memory at [mem 0x40a0a000-0x40a0a087]
Sep 23 01:01:27 arch kernel: ACPI: Reserving FPDT table memory at [mem 0x40a09000-0x40a09043]
Sep 23 01:01:27 arch kernel: ACPI: Reserving SSDT table memory at [mem 0x40a08000-0x40a08c01]
Sep 23 01:01:27 arch kernel: ACPI: Reserving SSDT table memory at [mem 0x40a04000-0x40a07ae9]
Sep 23 01:01:27 arch kernel: ACPI: Reserving SSDT table memory at [mem 0x40a00000-0x40a039d9]
Sep 23 01:01:27 arch kernel: ACPI: Reserving SSDT table memory at [mem 0x409ff000-0x409ff456]
Sep 23 01:01:27 arch kernel: ACPI: Reserving SSDT table memory at [mem 0x409fe000-0x409fe143]
Sep 23 01:01:27 arch kernel: ACPI: Reserving BGRT table memory at [mem 0x409fd000-0x409fd037]
Sep 23 01:01:27 arch kernel: ACPI: Reserving UEFI table memory at [mem 0x40b5d000-0x40b5d639]
Sep 23 01:01:27 arch kernel: ACPI: Reserving UEFI table memory at [mem 0x40b5c000-0x40b5c05b]
Sep 23 01:01:27 arch kernel: ACPI: Reserving TPM2 table memory at [mem 0x409fc000-0x409fc04b]
Sep 23 01:01:27 arch kernel: ACPI: Reserving SSDT table memory at [mem 0x409f8000-0x409fb23c]
Sep 23 01:01:27 arch kernel: ACPI: Reserving PHAT table memory at [mem 0x409f7000-0x409f760c]
Sep 23 01:01:27 arch kernel: ACPI: Reserving WSMT table memory at [mem 0x40a17000-0x40a17027]
Sep 23 01:01:27 arch kernel: No NUMA configuration found
Sep 23 01:01:27 arch kernel: Faking a node at [mem 0x0000000000000000-0x0000000ab07fffff]
Sep 23 01:01:27 arch kernel: NODE_DATA(0) allocated [mem 0xab07fb000-0xab07fffff]
Sep 23 01:01:27 arch kernel: Zone ranges:
Sep 23 01:01:27 arch kernel:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
Sep 23 01:01:27 arch kernel:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
Sep 23 01:01:27 arch kernel:   Normal   [mem 0x0000000100000000-0x0000000ab07fffff]
Sep 23 01:01:27 arch kernel:   Device   empty
Sep 23 01:01:27 arch kernel: Movable zone start for each node
Sep 23 01:01:27 arch kernel: Early memory node ranges
Sep 23 01:01:27 arch kernel:   node   0: [mem 0x0000000000001000-0x000000000009dfff]
Sep 23 01:01:27 arch kernel:   node   0: [mem 0x000000000009f000-0x000000000009ffff]
Sep 23 01:01:27 arch kernel:   node   0: [mem 0x0000000000100000-0x00000000382ebfff]
Sep 23 01:01:27 arch kernel:   node   0: [mem 0x00000000417ff000-0x00000000417fffff]
Sep 23 01:01:27 arch kernel:   node   0: [mem 0x0000000100000000-0x0000000ab07fffff]
Sep 23 01:01:27 arch kernel: Initmem setup node 0 [mem 0x0000000000001000-0x0000000ab07fffff]
Sep 23 01:01:27 arch kernel: On node 0, zone DMA: 1 pages in unavailable ranges
Sep 23 01:01:27 arch kernel: On node 0, zone DMA: 1 pages in unavailable ranges
Sep 23 01:01:27 arch kernel: On node 0, zone DMA: 96 pages in unavailable ranges
Sep 23 01:01:27 arch kernel: On node 0, zone DMA32: 38163 pages in unavailable ranges
Sep 23 01:01:27 arch kernel: On node 0, zone Normal: 26624 pages in unavailable ranges
Sep 23 01:01:27 arch kernel: On node 0, zone Normal: 30720 pages in unavailable ranges
Sep 23 01:01:27 arch kernel: Reserving Intel graphics memory at [mem 0x4b800000-0x4f7fffff]
Sep 23 01:01:27 arch kernel: ACPI: PM-Timer IO Port: 0x1808
Sep 23 01:01:27 arch kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
Sep 23 01:01:27 arch kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
Sep 23 01:01:27 arch kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
Sep 23 01:01:27 arch kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
Sep 23 01:01:27 arch kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
Sep 23 01:01:27 arch kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
Sep 23 01:01:27 arch kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
Sep 23 01:01:27 arch kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
Sep 23 01:01:27 arch kernel: ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
Sep 23 01:01:27 arch kernel: ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
Sep 23 01:01:27 arch kernel: ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
Sep 23 01:01:27 arch kernel: ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
Sep 23 01:01:27 arch kernel: ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
Sep 23 01:01:27 arch kernel: ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
Sep 23 01:01:27 arch kernel: ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
Sep 23 01:01:27 arch kernel: ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
Sep 23 01:01:27 arch kernel: ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
Sep 23 01:01:27 arch kernel: ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
Sep 23 01:01:27 arch kernel: ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
Sep 23 01:01:27 arch kernel: ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
Sep 23 01:01:27 arch kernel: ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
Sep 23 01:01:27 arch kernel: ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
Sep 23 01:01:27 arch kernel: ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
Sep 23 01:01:27 arch kernel: ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
Sep 23 01:01:27 arch kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
Sep 23 01:01:27 arch kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Sep 23 01:01:27 arch kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Sep 23 01:01:27 arch kernel: ACPI: Using ACPI (MADT) for SMP configuration information
Sep 23 01:01:27 arch kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
Sep 23 01:01:27 arch kernel: e820: update [mem 0x30fbe000-0x3100afff] usable ==> reserved
Sep 23 01:01:27 arch kernel: TSC deadline timer available
Sep 23 01:01:27 arch kernel: CPU topo: Max. logical packages:   1
Sep 23 01:01:27 arch kernel: CPU topo: Max. logical dies:       1
Sep 23 01:01:27 arch kernel: CPU topo: Max. dies per package:   1
Sep 23 01:01:27 arch kernel: CPU topo: Max. threads per core:   2
Sep 23 01:01:27 arch kernel: CPU topo: Num. cores per package:    12
Sep 23 01:01:27 arch kernel: CPU topo: Num. threads per package:  16
Sep 23 01:01:27 arch kernel: CPU topo: Allowing 16 present CPUs plus 0 hotplug CPUs
Sep 23 01:01:27 arch kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
Sep 23 01:01:27 arch kernel: PM: hibernation: Registered nosave memory: [mem 0x0009e000-0x0009efff]
Sep 23 01:01:27 arch kernel: PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
Sep 23 01:01:27 arch kernel: PM: hibernation: Registered nosave memory: [mem 0x26c38000-0x26c38fff]
Sep 23 01:01:27 arch kernel: PM: hibernation: Registered nosave memory: [mem 0x26c5c000-0x26c5cfff]
Sep 23 01:01:27 arch kernel: PM: hibernation: Registered nosave memory: [mem 0x30fbe000-0x3100afff]
Sep 23 01:01:27 arch kernel: PM: hibernation: Registered nosave memory: [mem 0x33a10000-0x33a10fff]
Sep 23 01:01:27 arch kernel: PM: hibernation: Registered nosave memory: [mem 0x382ec000-0x409bafff]
Sep 23 01:01:27 arch kernel: PM: hibernation: Registered nosave memory: [mem 0x409bb000-0x40ae9fff]
Sep 23 01:01:27 arch kernel: PM: hibernation: Registered nosave memory: [mem 0x40aea000-0x40c2ffff]
Sep 23 01:01:27 arch kernel: PM: hibernation: Registered nosave memory: [mem 0x40c30000-0x417fefff]
Sep 23 01:01:27 arch kernel: PM: hibernation: Registered nosave memory: [mem 0x41800000-0x47ffffff]
Sep 23 01:01:27 arch kernel: PM: hibernation: Registered nosave memory: [mem 0x48000000-0x487fffff]
Sep 23 01:01:27 arch kernel: PM: hibernation: Registered nosave memory: [mem 0x48800000-0x48bfffff]
Sep 23 01:01:27 arch kernel: PM: hibernation: Registered nosave memory: [mem 0x48c00000-0x48dfffff]
Sep 23 01:01:27 arch kernel: PM: hibernation: Registered nosave memory: [mem 0x48e00000-0x4f7fffff]
Sep 23 01:01:27 arch kernel: PM: hibernation: Registered nosave memory: [mem 0x4f800000-0xfdffffff]
Sep 23 01:01:27 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xfe000000-0xfe010fff]
Sep 23 01:01:27 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xfebfffff]
Sep 23 01:01:27 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
Sep 23 01:01:27 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
Sep 23 01:01:27 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xfed00000-0xfed00fff]
Sep 23 01:01:27 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xfed01000-0xfed1ffff]
Sep 23 01:01:27 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xfed7ffff]
Sep 23 01:01:27 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xfedfffff]
Sep 23 01:01:27 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
Sep 23 01:01:27 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xffffffff]
Sep 23 01:01:27 arch kernel: [mem 0x4f800000-0xfdffffff] available for PCI devices
Sep 23 01:01:27 arch kernel: Booting paravirtualized kernel on bare hardware
Sep 23 01:01:27 arch kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
Sep 23 01:01:27 arch kernel: setup_percpu: NR_CPUS:320 nr_cpumask_bits:16 nr_cpu_ids:16 nr_node_ids:1
Sep 23 01:01:27 arch kernel: percpu: Embedded 66 pages/cpu s233472 r8192 d28672 u524288
Sep 23 01:01:27 arch kernel: pcpu-alloc: s233472 r8192 d28672 u524288 alloc=1*2097152
Sep 23 01:01:27 arch kernel: pcpu-alloc: [0] 00 01 02 03 [0] 04 05 06 07 
Sep 23 01:01:27 arch kernel: pcpu-alloc: [0] 08 09 10 11 [0] 12 13 14 15 
Sep 23 01:01:27 arch kernel: Kernel command line: BOOT_IMAGE=/vmlinuz-linux-zen root=UUID=3adc738b-6ed9-4988-a8bb-4c4fcc83c00c rw rootflags=subvol=@ loglevel=3 quiet lsm=landlock,lockdown,yama,integrity,apparmor,bpf cryptdevice=UUID=9c612f8c-f056-4062-be52-368c27fe5e78:root root=/dev/mapper/root resume=UUID=3adc738b-6ed9-4988-a8bb-4c4fcc83c00c resume_offset=533760
Sep 23 01:01:27 arch kernel: Unknown kernel command line parameters "BOOT_IMAGE=/vmlinuz-linux-zen cryptdevice=UUID=9c612f8c-f056-4062-be52-368c27fe5e78:root", will be passed to user space.
Sep 23 01:01:27 arch kernel: Dentry cache hash table entries: 8388608 (order: 14, 67108864 bytes, linear)
Sep 23 01:01:27 arch kernel: Inode-cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
Sep 23 01:01:27 arch kernel: Fallback order for Node 0: 0 
Sep 23 01:01:27 arch kernel: Built 1 zonelists, mobility grouping on.  Total pages: 10390155
Sep 23 01:01:27 arch kernel: Policy zone: Normal
Sep 23 01:01:27 arch kernel: mem auto-init: stack:all(zero), heap alloc:on, heap free:off
Sep 23 01:01:27 arch kernel: software IO TLB: area num 16.
Sep 23 01:01:27 arch kernel: Memory: 40483012K/41560620K available (20480K kernel code, 2197K rwdata, 13288K rodata, 3568K init, 3172K bss, 1077348K reserved, 0K cma-reserved)
Sep 23 01:01:27 arch kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=16, Nodes=1
Sep 23 01:01:27 arch kernel: ftrace: allocating 48076 entries in 188 pages
Sep 23 01:01:27 arch kernel: ftrace: allocated 188 pages with 5 groups
Sep 23 01:01:27 arch kernel: Dynamic Preempt: full
Sep 23 01:01:27 arch kernel: rcu: Preemptible hierarchical RCU implementation.
Sep 23 01:01:27 arch kernel: rcu:         RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=16.
Sep 23 01:01:27 arch kernel: rcu:         RCU priority boosting: priority 1 delay 500 ms.
Sep 23 01:01:27 arch kernel:         Trampoline variant of Tasks RCU enabled.
Sep 23 01:01:27 arch kernel:         Rude variant of Tasks RCU enabled.
Sep 23 01:01:27 arch kernel:         Tracing variant of Tasks RCU enabled.
Sep 23 01:01:27 arch kernel: rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
Sep 23 01:01:27 arch kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=16
Sep 23 01:01:27 arch kernel: RCU Tasks: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1.
Sep 23 01:01:27 arch kernel: RCU Tasks Rude: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1.
Sep 23 01:01:27 arch kernel: RCU Tasks Trace: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1.
Sep 23 01:01:27 arch kernel: NR_IRQS: 20736, nr_irqs: 2184, preallocated irqs: 16
Sep 23 01:01:27 arch kernel: rcu: srcu_init: Setting srcu_struct sizes based on contention.
Sep 23 01:01:27 arch kernel: kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
Sep 23 01:01:27 arch kernel: Console: colour dummy device 80x25
Sep 23 01:01:27 arch kernel: printk: legacy console [tty0] enabled
Sep 23 01:01:27 arch kernel: ACPI: Core revision 20240322
Sep 23 01:01:27 arch kernel: hpet: HPET dysfunctional in PC10. Force disabled.
Sep 23 01:01:27 arch kernel: APIC: Switch to symmetric I/O mode setup
Sep 23 01:01:27 arch kernel: DMAR: Host address width 39
Sep 23 01:01:27 arch kernel: DMAR: DRHD base: 0x000000fed90000 flags: 0x0
Sep 23 01:01:27 arch kernel: DMAR: dmar0: reg_base_addr fed90000 ver 4:0 cap 1c0000c40660462 ecap 29a00f0505e
Sep 23 01:01:27 arch kernel: DMAR: DRHD base: 0x000000fed91000 flags: 0x1
Sep 23 01:01:27 arch kernel: DMAR: dmar1: reg_base_addr fed91000 ver 5:0 cap d2008c40660462 ecap f050da
Sep 23 01:01:27 arch kernel: DMAR: RMRR base: 0x0000004b000000 end: 0x0000004f7fffff
Sep 23 01:01:27 arch kernel: DMAR-IR: IOAPIC id 2 under DRHD base  0xfed91000 IOMMU 1
Sep 23 01:01:27 arch kernel: DMAR-IR: HPET id 0 under DRHD base 0xfed91000
Sep 23 01:01:27 arch kernel: DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
Sep 23 01:01:27 arch kernel: DMAR-IR: Enabled IRQ remapping in x2apic mode
Sep 23 01:01:27 arch kernel: x2apic enabled
Sep 23 01:01:27 arch kernel: APIC: Switched APIC routing to: cluster x2apic
Sep 23 01:01:27 arch kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2df10e7656b, max_idle_ns: 440795364873 ns
Sep 23 01:01:27 arch kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 6374.40 BogoMIPS (lpj=3187200)
Sep 23 01:01:27 arch kernel: CPU0: Thermal monitoring enabled (TM1)
Sep 23 01:01:27 arch kernel: x86/cpu: User Mode Instruction Prevention (UMIP) activated
Sep 23 01:01:27 arch kernel: CET detected: Indirect Branch Tracking enabled
Sep 23 01:01:27 arch kernel: Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
Sep 23 01:01:27 arch kernel: Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
Sep 23 01:01:27 arch kernel: process: using mwait in idle threads
Sep 23 01:01:27 arch kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
Sep 23 01:01:27 arch kernel: Spectre V2 : Mitigation: Enhanced / Automatic IBRS
Sep 23 01:01:27 arch kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
Sep 23 01:01:27 arch kernel: Spectre V2 : Spectre v2 / PBRSB-eIBRS: Retire a single CALL on VMEXIT
Sep 23 01:01:27 arch kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
Sep 23 01:01:27 arch kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
Sep 23 01:01:27 arch kernel: Register File Data Sampling: Mitigation: Clear Register File
Sep 23 01:01:27 arch kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Sep 23 01:01:27 arch kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Sep 23 01:01:27 arch kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Sep 23 01:01:27 arch kernel: x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
Sep 23 01:01:27 arch kernel: x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
Sep 23 01:01:27 arch kernel: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
Sep 23 01:01:27 arch kernel: x86/fpu: xstate_offset[9]:  832, xstate_sizes[9]:    8
Sep 23 01:01:27 arch kernel: x86/fpu: xstate_offset[11]:  840, xstate_sizes[11]:   16
Sep 23 01:01:27 arch kernel: x86/fpu: Enabled xstate features 0xa07, context size is 856 bytes, using 'compacted' format.
Sep 23 01:01:27 arch kernel: Freeing SMP alternatives memory: 52K
Sep 23 01:01:27 arch kernel: pid_max: default: 32768 minimum: 301
Sep 23 01:01:27 arch kernel: LSM: initializing lsm=capability,landlock,lockdown,yama,apparmor,bpf
Sep 23 01:01:27 arch kernel: landlock: Up and running.
Sep 23 01:01:27 arch kernel: Yama: becoming mindful.
Sep 23 01:01:27 arch kernel: AppArmor: AppArmor initialized
Sep 23 01:01:27 arch kernel: LSM support for eBPF active
Sep 23 01:01:27 arch kernel: Mount-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
Sep 23 01:01:27 arch kernel: Mountpoint-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
Sep 23 01:01:27 arch kernel: smpboot: CPU0: 13th Gen Intel(R) Core(TM) i5-13500H (family: 0x6, model: 0xba, stepping: 0x2)
Sep 23 01:01:27 arch kernel: Performance Events: XSAVE Architectural LBR, PEBS fmt4+-baseline,  AnyThread deprecated, Alderlake Hybrid events, 32-deep LBR, full-width counters, Intel PMU driver.
Sep 23 01:01:27 arch kernel: core: cpu_core PMU driver: 
Sep 23 01:01:27 arch kernel: ... version:                5
Sep 23 01:01:27 arch kernel: ... bit width:              48
Sep 23 01:01:27 arch kernel: ... generic registers:      8
Sep 23 01:01:27 arch kernel: ... value mask:             0000ffffffffffff
Sep 23 01:01:27 arch kernel: ... max period:             00007fffffffffff
Sep 23 01:01:27 arch kernel: ... fixed-purpose events:   4
Sep 23 01:01:27 arch kernel: ... event mask:             0001000f000000ff
Sep 23 01:01:27 arch kernel: signal: max sigframe size: 3632
Sep 23 01:01:27 arch kernel: Estimated ratio of average max frequency by base frequency (times 1024): 1472
Sep 23 01:01:27 arch kernel: rcu: Hierarchical SRCU implementation.
Sep 23 01:01:27 arch kernel: rcu:         Max phase no-delay instances is 400.
Sep 23 01:01:27 arch kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
Sep 23 01:01:27 arch kernel: smp: Bringing up secondary CPUs ...
Sep 23 01:01:27 arch kernel: smpboot: x86: Booting SMP configuration:
Sep 23 01:01:27 arch kernel: .... node  #0, CPUs:        #2  #4  #6  #8  #9 #10 #11 #12 #13 #14 #15
Sep 23 01:01:27 arch kernel: core: cpu_atom PMU driver: PEBS-via-PT 
Sep 23 01:01:27 arch kernel: ... version:                5
Sep 23 01:01:27 arch kernel: ... bit width:              48
Sep 23 01:01:27 arch kernel: ... generic registers:      6
Sep 23 01:01:27 arch kernel: ... value mask:             0000ffffffffffff
Sep 23 01:01:27 arch kernel: ... max period:             00007fffffffffff
Sep 23 01:01:27 arch kernel: ... fixed-purpose events:   3
Sep 23 01:01:27 arch kernel: ... event mask:             000000070000003f
Sep 23 01:01:27 arch kernel:   #1  #3  #5  #7
Sep 23 01:01:27 arch kernel: smp: Brought up 1 node, 16 CPUs
Sep 23 01:01:27 arch kernel: smpboot: Total of 16 processors activated (101990.40 BogoMIPS)
Sep 23 01:01:27 arch kernel: devtmpfs: initialized
Sep 23 01:01:27 arch kernel: x86/mm: Memory block size: 128MB
Sep 23 01:01:27 arch kernel: ACPI: PM: Registering ACPI NVS region [mem 0x40aea000-0x40c2ffff] (1335296 bytes)
Sep 23 01:01:27 arch kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
Sep 23 01:01:27 arch kernel: futex hash table entries: 4096 (order: 6, 262144 bytes, linear)
Sep 23 01:01:27 arch kernel: pinctrl core: initialized pinctrl subsystem
Sep 23 01:01:27 arch kernel: PM: RTC time: 08:00:57, date: 2024-09-23
Sep 23 01:01:27 arch kernel: NET: Registered PF_NETLINK/PF_ROUTE protocol family
Sep 23 01:01:27 arch kernel: DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
Sep 23 01:01:27 arch kernel: DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
Sep 23 01:01:27 arch kernel: DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
Sep 23 01:01:27 arch kernel: audit: initializing netlink subsys (disabled)
Sep 23 01:01:27 arch kernel: audit: type=2000 audit(1727078457.019:1): state=initialized audit_enabled=0 res=1
Sep 23 01:01:27 arch kernel: thermal_sys: Registered thermal governor 'fair_share'
Sep 23 01:01:27 arch kernel: thermal_sys: Registered thermal governor 'bang_bang'
Sep 23 01:01:27 arch kernel: thermal_sys: Registered thermal governor 'step_wise'
Sep 23 01:01:27 arch kernel: thermal_sys: Registered thermal governor 'user_space'
Sep 23 01:01:27 arch kernel: thermal_sys: Registered thermal governor 'power_allocator'
Sep 23 01:01:27 arch kernel: cpuidle: using governor ladder
Sep 23 01:01:27 arch kernel: cpuidle: using governor menu
Sep 23 01:01:27 arch kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Sep 23 01:01:27 arch kernel: PCI: ECAM [mem 0xc0000000-0xce0fffff] (base 0xc0000000) for domain 0000 [bus 00-e0]
Sep 23 01:01:27 arch kernel: PCI: Using configuration type 1 for base access
Sep 23 01:01:27 arch kernel: kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
Sep 23 01:01:27 arch kernel: HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
Sep 23 01:01:27 arch kernel: HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
Sep 23 01:01:27 arch kernel: HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
Sep 23 01:01:27 arch kernel: HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
Sep 23 01:01:27 arch kernel: Demotion targets for Node 0: null
Sep 23 01:01:27 arch kernel: ACPI: Added _OSI(Module Device)
Sep 23 01:01:27 arch kernel: ACPI: Added _OSI(Processor Device)
Sep 23 01:01:27 arch kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Sep 23 01:01:27 arch kernel: ACPI: Added _OSI(Processor Aggregator Device)
Sep 23 01:01:27 arch kernel: ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PC00.I2C0.TPL1], AE_NOT_FOUND (20240322/dswload2-162)
Sep 23 01:01:27 arch kernel: ACPI Error: AE_NOT_FOUND, During name lookup/catalog (20240322/psobject-220)
Sep 23 01:01:27 arch kernel: ACPI: Skipping parse of AML opcode: Scope (0x0010)
Sep 23 01:01:27 arch kernel: ACPI: 18 ACPI AML tables successfully acquired and loaded
Sep 23 01:01:27 arch kernel: ACPI Error: For GPE 0x14, found both _L14 and _E14 methods (20240322/evgpeinit-398)
Sep 23 01:01:27 arch kernel: ACPI: USB4 _OSC: OS supports USB3+ DisplayPort+ PCIe+ XDomain+
Sep 23 01:01:27 arch kernel: ACPI: USB4 _OSC: OS controls USB3+ DisplayPort+ PCIe+ XDomain+
Sep 23 01:01:27 arch kernel: ACPI: Dynamic OEM Table Load:
Sep 23 01:01:27 arch kernel: ACPI: SSDT 0xFFFFA0FEC1786C00 000394 (v02 PmRef  Cpu0Cst  00003001 INTL 20200717)
Sep 23 01:01:27 arch kernel: ACPI: Dynamic OEM Table Load:
Sep 23 01:01:27 arch kernel: ACPI: SSDT 0xFFFFA0FEC216C000 0006CB (v02 PmRef  Cpu0Ist  00003000 INTL 20200717)
Sep 23 01:01:27 arch kernel: ACPI: Dynamic OEM Table Load:
Sep 23 01:01:27 arch kernel: ACPI: SSDT 0xFFFFA0FEC20E8200 0001AB (v02 PmRef  Cpu0Psd  00003000 INTL 20200717)
Sep 23 01:01:27 arch kernel: ACPI: Dynamic OEM Table Load:
Sep 23 01:01:27 arch kernel: ACPI: SSDT 0xFFFFA0FEC216B800 0004B5 (v02 PmRef  Cpu0Hwp  00003000 INTL 20200717)
Sep 23 01:01:27 arch kernel: ACPI: Dynamic OEM Table Load:
Sep 23 01:01:27 arch kernel: ACPI: SSDT 0xFFFFA0FEC1778000 001BAF (v02 PmRef  ApIst    00003000 INTL 20200717)
Sep 23 01:01:27 arch kernel: ACPI: Dynamic OEM Table Load:
Sep 23 01:01:27 arch kernel: ACPI: SSDT 0xFFFFA0FEC177E000 001038 (v02 PmRef  ApHwp    00003000 INTL 20200717)
Sep 23 01:01:27 arch kernel: ACPI: Dynamic OEM Table Load:
Sep 23 01:01:27 arch kernel: ACPI: SSDT 0xFFFFA0FEC177A000 001349 (v02 PmRef  ApPsd    00003000 INTL 20200717)
Sep 23 01:01:27 arch kernel: ACPI: Dynamic OEM Table Load:
Sep 23 01:01:27 arch kernel: ACPI: SSDT 0xFFFFA0FEC178B000 000FBB (v02 PmRef  ApCst    00003000 INTL 20200717)
Sep 23 01:01:27 arch kernel: ACPI: _OSC evaluated successfully for all CPUs
Sep 23 01:01:27 arch kernel: ACPI: EC: EC started
Sep 23 01:01:27 arch kernel: ACPI: EC: interrupt blocked
Sep 23 01:01:27 arch kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
Sep 23 01:01:27 arch kernel: ACPI: \_SB_.PC00.LPCB.H_EC: Boot DSDT EC used to handle transactions
Sep 23 01:01:27 arch kernel: ACPI: Interpreter enabled
Sep 23 01:01:27 arch kernel: ACPI: PM: (supports S0 S3 S4 S5)
Sep 23 01:01:27 arch kernel: ACPI: Using IOAPIC for interrupt routing
Sep 23 01:01:27 arch kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Sep 23 01:01:27 arch kernel: PCI: Ignoring E820 reservations for host bridge windows
Sep 23 01:01:27 arch kernel: ACPI: Enabled 10 GPEs in block 00 to 7F
Sep 23 01:01:27 arch kernel: ACPI: \_SB_.PC00.PEG1.PXP_: New power resource
Sep 23 01:01:27 arch kernel: ACPI: \_SB_.PC00.PEG2.PXP_: New power resource
Sep 23 01:01:27 arch kernel: ACPI: \_SB_.PC00.PEG0.PXP_: New power resource
Sep 23 01:01:27 arch kernel: ACPI: \_SB_.PC00.XHCI.RHUB.HS10.BTRT: New power resource
Sep 23 01:01:27 arch kernel: ACPI: \_SB_.PC00.PAUD: New power resource
Sep 23 01:01:27 arch kernel: ACPI: \_SB_.PC00.I2C0.PXTC: New power resource
Sep 23 01:01:27 arch kernel: ACPI: \_SB_.PC00.I2C0.PTPL: New power resource
Sep 23 01:01:27 arch kernel: ACPI: \_SB_.PC00.CNVW.WRST: New power resource
Sep 23 01:01:27 arch kernel: ACPI: \_SB_.PC00.TBT0: New power resource
Sep 23 01:01:27 arch kernel: ACPI: \_SB_.PC00.TBT1: New power resource
Sep 23 01:01:27 arch kernel: ACPI: \_SB_.PC00.D3C_: New power resource
Sep 23 01:01:27 arch kernel: ACPI: \_TZ_.FN00: New power resource
Sep 23 01:01:27 arch kernel: ACPI: \_TZ_.FN01: New power resource
Sep 23 01:01:27 arch kernel: ACPI: \_TZ_.FN02: New power resource
Sep 23 01:01:27 arch kernel: ACPI: \_TZ_.FN03: New power resource
Sep 23 01:01:27 arch kernel: ACPI: \_TZ_.FN04: New power resource
Sep 23 01:01:27 arch kernel: ACPI: \PIN_: New power resource
Sep 23 01:01:27 arch kernel: ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-e0])
Sep 23 01:01:27 arch kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
Sep 23 01:01:27 arch kernel: acpi PNP0A08:00: _OSC: platform does not support [AER]
Sep 23 01:01:27 arch kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability LTR DPC]
Sep 23 01:01:27 arch kernel: PCI host bridge to bus 0000:00
Sep 23 01:01:27 arch kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
Sep 23 01:01:27 arch kernel: pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
Sep 23 01:01:27 arch kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Sep 23 01:01:27 arch kernel: pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000fffff window]
Sep 23 01:01:27 arch kernel: pci_bus 0000:00: root bus resource [mem 0x4f800000-0xbfffffff window]
Sep 23 01:01:27 arch kernel: pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
Sep 23 01:01:27 arch kernel: pci_bus 0000:00: root bus resource [bus 00-e0]
Sep 23 01:01:27 arch kernel: pci 0000:00:00.0: [8086:a707] type 00 class 0x060000 conventional PCI endpoint
Sep 23 01:01:27 arch kernel: pci 0000:00:01.0: [8086:a70d] type 01 class 0x060400 PCIe Root Port
Sep 23 01:01:27 arch kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
Sep 23 01:01:27 arch kernel: pci 0000:00:01.0:   bridge window [io  0x4000-0x4fff]
Sep 23 01:01:27 arch kernel: pci 0000:00:01.0:   bridge window [mem 0x5f000000-0x600fffff]
Sep 23 01:01:27 arch kernel: pci 0000:00:01.0:   bridge window [mem 0x6000000000-0x6201ffffff 64bit pref]
Sep 23 01:01:27 arch kernel: pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
Sep 23 01:01:27 arch kernel: pci 0000:00:01.0: PTM enabled (root), 4ns granularity
Sep 23 01:01:27 arch kernel: pci 0000:00:02.0: [8086:a7a0] type 00 class 0x030000 PCIe Root Complex Integrated Endpoint
Sep 23 01:01:27 arch kernel: pci 0000:00:02.0: BAR 0 [mem 0x622e000000-0x622effffff 64bit]
Sep 23 01:01:27 arch kernel: pci 0000:00:02.0: BAR 2 [mem 0x4000000000-0x400fffffff 64bit pref]
Sep 23 01:01:27 arch kernel: pci 0000:00:02.0: BAR 4 [io  0x5000-0x503f]
Sep 23 01:01:27 arch kernel: pci 0000:00:02.0: DMAR: Skip IOMMU disabling for graphics
Sep 23 01:01:27 arch kernel: pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
Sep 23 01:01:27 arch kernel: pci 0000:00:02.0: VF BAR 0 [mem 0x00000000-0x00ffffff 64bit]
Sep 23 01:01:27 arch kernel: pci 0000:00:02.0: VF BAR 0 [mem 0x00000000-0x06ffffff 64bit]: contains BAR 0 for 7 VFs
Sep 23 01:01:27 arch kernel: pci 0000:00:02.0: VF BAR 2 [mem 0x00000000-0x1fffffff 64bit pref]
Sep 23 01:01:27 arch kernel: pci 0000:00:02.0: VF BAR 2 [mem 0x00000000-0xdfffffff 64bit pref]: contains BAR 2 for 7 VFs
Sep 23 01:01:27 arch kernel: pci 0000:00:04.0: [8086:a71d] type 00 class 0x118000 conventional PCI endpoint
Sep 23 01:01:27 arch kernel: pci 0000:00:04.0: BAR 0 [mem 0x622f240000-0x622f25ffff 64bit]
Sep 23 01:01:27 arch kernel: pci 0000:00:06.0: [8086:09ab] type 00 class 0x088000 conventional PCI endpoint
Sep 23 01:01:27 arch kernel: pci 0000:00:07.0: [8086:a76e] type 01 class 0x060400 PCIe Root Port
Sep 23 01:01:27 arch kernel: pci 0000:00:07.0: PCI bridge to [bus 02-2b]
Sep 23 01:01:27 arch kernel: pci 0000:00:07.0:   bridge window [mem 0x52000000-0x5e1fffff]
Sep 23 01:01:27 arch kernel: pci 0000:00:07.0:   bridge window [mem 0x6210000000-0x622bffffff 64bit pref]
Sep 23 01:01:27 arch kernel: pci 0000:00:07.0: Overriding RP PIO Log Size to 4
Sep 23 01:01:27 arch kernel: pci 0000:00:07.0: PME# supported from D0 D3hot D3cold
Sep 23 01:01:27 arch kernel: pci 0000:00:07.0: PTM enabled (root), 4ns granularity
Sep 23 01:01:27 arch kernel: pci 0000:00:08.0: [8086:a74f] type 00 class 0x088000 conventional PCI endpoint
Sep 23 01:01:27 arch kernel: pci 0000:00:08.0: BAR 0 [mem 0x622f2b2000-0x622f2b2fff 64bit]
Sep 23 01:01:27 arch kernel: pci 0000:00:0a.0: [8086:a77d] type 00 class 0x118000 PCIe Root Complex Integrated Endpoint
Sep 23 01:01:27 arch kernel: pci 0000:00:0a.0: BAR 0 [mem 0x622f290000-0x622f297fff 64bit]
Sep 23 01:01:27 arch kernel: pci 0000:00:0a.0: enabling Extended Tags
Sep 23 01:01:27 arch kernel: pci 0000:00:0d.0: [8086:a71e] type 00 class 0x0c0330 conventional PCI endpoint
Sep 23 01:01:27 arch kernel: pci 0000:00:0d.0: BAR 0 [mem 0x622f280000-0x622f28ffff 64bit]
Sep 23 01:01:27 arch kernel: pci 0000:00:0d.0: PME# supported from D3hot D3cold
Sep 23 01:01:27 arch kernel: pci 0000:00:0d.2: [8086:a73e] type 00 class 0x0c0340 conventional PCI endpoint
Sep 23 01:01:27 arch kernel: pci 0000:00:0d.2: BAR 0 [mem 0x622f200000-0x622f23ffff 64bit]
Sep 23 01:01:27 arch kernel: pci 0000:00:0d.2: BAR 2 [mem 0x622f2b1000-0x622f2b1fff 64bit]
Sep 23 01:01:27 arch kernel: pci 0000:00:0d.2: supports D1 D2
Sep 23 01:01:27 arch kernel: pci 0000:00:0d.2: PME# supported from D0 D1 D2 D3hot D3cold
Sep 23 01:01:27 arch kernel: pci 0000:00:0e.0: [8086:a77f] type 00 class 0x010400 PCIe Root Complex Integrated Endpoint
Sep 23 01:01:27 arch kernel: pci 0000:00:0e.0: BAR 0 [mem 0x622c000000-0x622dffffff 64bit]
Sep 23 01:01:27 arch kernel: pci 0000:00:0e.0: BAR 2 [mem 0x50000000-0x51ffffff]
Sep 23 01:01:27 arch kernel: pci 0000:00:0e.0: BAR 4 [mem 0x622f100000-0x622f1fffff 64bit]
Sep 23 01:01:27 arch kernel: pci 0000:00:12.0: [8086:51fc] type 00 class 0x070000 conventional PCI endpoint
Sep 23 01:01:27 arch kernel: pci 0000:00:12.0: BAR 0 [mem 0x622f270000-0x622f27ffff 64bit]
Sep 23 01:01:27 arch kernel: pci 0000:00:12.0: PME# supported from D0 D3hot
Sep 23 01:01:27 arch kernel: pci 0000:00:14.0: [8086:51ed] type 00 class 0x0c0330 conventional PCI endpoint
Sep 23 01:01:27 arch kernel: pci 0000:00:14.0: BAR 0 [mem 0x622f260000-0x622f26ffff 64bit]
Sep 23 01:01:27 arch kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
Sep 23 01:01:27 arch kernel: pci 0000:00:14.2: [8086:51ef] type 00 class 0x050000 conventional PCI endpoint
Sep 23 01:01:27 arch kernel: pci 0000:00:14.2: BAR 0 [mem 0x622f2a8000-0x622f2abfff 64bit]
Sep 23 01:01:27 arch kernel: pci 0000:00:14.2: BAR 2 [mem 0x622f2b0000-0x622f2b0fff 64bit]
Sep 23 01:01:27 arch kernel: pci 0000:00:14.3: [8086:51f1] type 00 class 0x028000 PCIe Root Complex Integrated Endpoint
Sep 23 01:01:27 arch kernel: pci 0000:00:14.3: BAR 0 [mem 0x622f2a4000-0x622f2a7fff 64bit]
Sep 23 01:01:27 arch kernel: pci 0000:00:14.3: PME# supported from D0 D3hot D3cold
Sep 23 01:01:27 arch kernel: pci 0000:00:15.0: [8086:51e8] type 00 class 0x0c8000 conventional PCI endpoint
Sep 23 01:01:27 arch kernel: pci 0000:00:15.0: BAR 0 [mem 0x00000000-0x00000fff 64bit]
Sep 23 01:01:27 arch kernel: pci 0000:00:15.1: [8086:51e9] type 00 class 0x0c8000 conventional PCI endpoint
Sep 23 01:01:27 arch kernel: pci 0000:00:15.1: BAR 0 [mem 0x00000000-0x00000fff 64bit]
Sep 23 01:01:27 arch kernel: pci 0000:00:16.0: [8086:51e0] type 00 class 0x078000 conventional PCI endpoint
Sep 23 01:01:27 arch kernel: pci 0000:00:16.0: BAR 0 [mem 0x622f2ad000-0x622f2adfff 64bit]
Sep 23 01:01:27 arch kernel: pci 0000:00:16.0: PME# supported from D3hot
Sep 23 01:01:27 arch kernel: pci 0000:00:1c.0: [8086:51be] type 01 class 0x060400 PCIe Root Port
Sep 23 01:01:27 arch kernel: pci 0000:00:1c.0: PCI bridge to [bus 2c]
Sep 23 01:01:27 arch kernel: pci 0000:00:1c.0:   bridge window [io  0x3000-0x3fff]
Sep 23 01:01:27 arch kernel: pci 0000:00:1c.0:   bridge window [mem 0x60200000-0x602fffff]
Sep 23 01:01:27 arch kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
Sep 23 01:01:27 arch kernel: pci 0000:00:1c.0: PTM enabled (root), 4ns granularity
Sep 23 01:01:27 arch kernel: pci 0000:00:1f.0: [8086:519d] type 00 class 0x060100 conventional PCI endpoint
Sep 23 01:01:27 arch kernel: pci 0000:00:1f.3: [8086:51ca] type 00 class 0x040100 conventional PCI endpoint
Sep 23 01:01:27 arch kernel: pci 0000:00:1f.3: BAR 0 [mem 0x622f2a0000-0x622f2a3fff 64bit]
Sep 23 01:01:27 arch kernel: pci 0000:00:1f.3: BAR 4 [mem 0x622f000000-0x622f0fffff 64bit]
Sep 23 01:01:27 arch kernel: pci 0000:00:1f.3: PME# supported from D3hot D3cold
Sep 23 01:01:27 arch kernel: pci 0000:00:1f.4: [8086:51a3] type 00 class 0x0c0500 conventional PCI endpoint
Sep 23 01:01:27 arch kernel: pci 0000:00:1f.4: BAR 0 [mem 0x622f2ac000-0x622f2ac0ff 64bit]
Sep 23 01:01:27 arch kernel: pci 0000:00:1f.4: BAR 4 [io  0xefa0-0xefbf]
Sep 23 01:01:27 arch kernel: pci 0000:00:1f.5: [8086:51a4] type 00 class 0x0c8000 conventional PCI endpoint
Sep 23 01:01:27 arch kernel: pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]
Sep 23 01:01:27 arch kernel: pci 0000:01:00.0: [10de:28a1] type 00 class 0x030000 PCIe Legacy Endpoint
Sep 23 01:01:27 arch kernel: pci 0000:01:00.0: BAR 0 [mem 0x5f000000-0x5fffffff]
Sep 23 01:01:27 arch kernel: pci 0000:01:00.0: BAR 1 [mem 0x6000000000-0x61ffffffff 64bit pref]
Sep 23 01:01:27 arch kernel: pci 0000:01:00.0: BAR 3 [mem 0x6200000000-0x6201ffffff 64bit pref]
Sep 23 01:01:27 arch kernel: pci 0000:01:00.0: BAR 5 [io  0x4000-0x407f]
Sep 23 01:01:27 arch kernel: pci 0000:01:00.0: ROM [mem 0x60000000-0x6007ffff pref]
Sep 23 01:01:27 arch kernel: pci 0000:01:00.0: PME# supported from D0 D3hot
Sep 23 01:01:27 arch kernel: pci 0000:01:00.1: [10de:22be] type 00 class 0x040300 PCIe Endpoint
Sep 23 01:01:27 arch kernel: pci 0000:01:00.1: BAR 0 [mem 0x60080000-0x60083fff]
Sep 23 01:01:27 arch kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
Sep 23 01:01:27 arch kernel: pci 0000:00:07.0: PCI bridge to [bus 02-2b]
Sep 23 01:01:27 arch kernel: pci 0000:2c:00.0: [10ec:8168] type 00 class 0x020000 PCIe Endpoint
Sep 23 01:01:27 arch kernel: pci 0000:2c:00.0: BAR 0 [io  0x3000-0x30ff]
Sep 23 01:01:27 arch kernel: pci 0000:2c:00.0: BAR 2 [mem 0x60204000-0x60204fff 64bit]
Sep 23 01:01:27 arch kernel: pci 0000:2c:00.0: BAR 4 [mem 0x60200000-0x60203fff 64bit]
Sep 23 01:01:27 arch kernel: pci 0000:2c:00.0: supports D1 D2
Sep 23 01:01:27 arch kernel: pci 0000:2c:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Sep 23 01:01:27 arch kernel: pci 0000:00:1c.0: PCI bridge to [bus 2c]
Sep 23 01:01:27 arch kernel: ACPI: PCI: Interrupt link LNKA configured for IRQ 0
Sep 23 01:01:27 arch kernel: ACPI: PCI: Interrupt link LNKB configured for IRQ 1
Sep 23 01:01:27 arch kernel: ACPI: PCI: Interrupt link LNKC configured for IRQ 0
Sep 23 01:01:27 arch kernel: ACPI: PCI: Interrupt link LNKD configured for IRQ 0
Sep 23 01:01:27 arch kernel: ACPI: PCI: Interrupt link LNKE configured for IRQ 0
Sep 23 01:01:27 arch kernel: ACPI: PCI: Interrupt link LNKF configured for IRQ 0
Sep 23 01:01:27 arch kernel: ACPI: PCI: Interrupt link LNKG configured for IRQ 0
Sep 23 01:01:27 arch kernel: ACPI: PCI: Interrupt link LNKH configured for IRQ 0
Sep 23 01:01:27 arch kernel: Low-power S0 idle used by default for system suspend
Sep 23 01:01:27 arch kernel: ACPI: EC: interrupt unblocked
Sep 23 01:01:27 arch kernel: ACPI: EC: event unblocked
Sep 23 01:01:27 arch kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
Sep 23 01:01:27 arch kernel: ACPI: EC: GPE=0x6e
Sep 23 01:01:27 arch kernel: ACPI: \_SB_.PC00.LPCB.H_EC: Boot DSDT EC initialization complete
Sep 23 01:01:27 arch kernel: ACPI: \_SB_.PC00.LPCB.H_EC: EC: Used to handle transactions and events
Sep 23 01:01:27 arch kernel: iommu: Default domain type: Translated
Sep 23 01:01:27 arch kernel: iommu: DMA domain TLB invalidation policy: lazy mode
Sep 23 01:01:27 arch kernel: SCSI subsystem initialized
Sep 23 01:01:27 arch kernel: libata version 3.00 loaded.
Sep 23 01:01:27 arch kernel: ACPI: bus type USB registered
Sep 23 01:01:27 arch kernel: usbcore: registered new interface driver usbfs
Sep 23 01:01:27 arch kernel: usbcore: registered new interface driver hub
Sep 23 01:01:27 arch kernel: usbcore: registered new device driver usb
Sep 23 01:01:27 arch kernel: EDAC MC: Ver: 3.0.0
Sep 23 01:01:27 arch kernel: efivars: Registered efivars operations
Sep 23 01:01:27 arch kernel: NetLabel: Initializing
Sep 23 01:01:27 arch kernel: NetLabel:  domain hash size = 128
Sep 23 01:01:27 arch kernel: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
Sep 23 01:01:27 arch kernel: NetLabel:  unlabeled traffic allowed by default
Sep 23 01:01:27 arch kernel: mctp: management component transport protocol core
Sep 23 01:01:27 arch kernel: NET: Registered PF_MCTP protocol family
Sep 23 01:01:27 arch kernel: PCI: Using ACPI for IRQ routing
Sep 23 01:01:27 arch kernel: PCI: pci_cache_line_size set to 64 bytes
Sep 23 01:01:27 arch kernel: pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]: can't claim; no compatible bridge window
Sep 23 01:01:27 arch kernel: e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff]
Sep 23 01:01:27 arch kernel: e820: reserve RAM buffer [mem 0x26c38018-0x27ffffff]
Sep 23 01:01:27 arch kernel: e820: reserve RAM buffer [mem 0x30fbe000-0x33ffffff]
Sep 23 01:01:27 arch kernel: e820: reserve RAM buffer [mem 0x33a10000-0x33ffffff]
Sep 23 01:01:27 arch kernel: e820: reserve RAM buffer [mem 0x382ec000-0x3bffffff]
Sep 23 01:01:27 arch kernel: e820: reserve RAM buffer [mem 0x41800000-0x43ffffff]
Sep 23 01:01:27 arch kernel: e820: reserve RAM buffer [mem 0xab0800000-0xab3ffffff]
Sep 23 01:01:27 arch kernel: pci 0000:00:02.0: vgaarb: setting as boot VGA device
Sep 23 01:01:27 arch kernel: pci 0000:00:02.0: vgaarb: bridge control possible
Sep 23 01:01:27 arch kernel: pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
Sep 23 01:01:27 arch kernel: pci 0000:01:00.0: vgaarb: bridge control possible
Sep 23 01:01:27 arch kernel: pci 0000:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
Sep 23 01:01:27 arch kernel: vgaarb: loaded
Sep 23 01:01:27 arch kernel: clocksource: Switched to clocksource tsc-early
Sep 23 01:01:27 arch kernel: VFS: Disk quotas dquot_6.6.0
Sep 23 01:01:27 arch kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Sep 23 01:01:27 arch kernel: AppArmor: AppArmor Filesystem Enabled
Sep 23 01:01:27 arch kernel: pnp: PnP ACPI init
Sep 23 01:01:27 arch kernel: system 00:00: [io  0x0680-0x069f] has been reserved
Sep 23 01:01:27 arch kernel: system 00:00: [io  0x164e-0x164f] has been reserved
Sep 23 01:01:27 arch kernel: system 00:01: [io  0x1854-0x1857] has been reserved
Sep 23 01:01:27 arch kernel: system 00:02: [io  0x06a4] has been reserved
Sep 23 01:01:27 arch kernel: system 00:02: [io  0x06a0] has been reserved
Sep 23 01:01:27 arch kernel: pnp 00:04: disabling [mem 0xc0000000-0xcfffffff] because it overlaps 0000:00:02.0 BAR 9 [mem 0x00000000-0xdfffffff 64bit pref]
Sep 23 01:01:27 arch kernel: system 00:04: [mem 0xfedc0000-0xfedc7fff] has been reserved
Sep 23 01:01:27 arch kernel: system 00:04: [mem 0xfeda0000-0xfeda0fff] has been reserved
Sep 23 01:01:27 arch kernel: system 00:04: [mem 0xfeda1000-0xfeda1fff] has been reserved
Sep 23 01:01:27 arch kernel: system 00:04: [mem 0xfed20000-0xfed7ffff] could not be reserved
Sep 23 01:01:27 arch kernel: system 00:04: [mem 0xfed90000-0xfed93fff] could not be reserved
Sep 23 01:01:27 arch kernel: system 00:04: [mem 0xfed45000-0xfed8ffff] could not be reserved
Sep 23 01:01:27 arch kernel: system 00:04: [mem 0xfee00000-0xfeefffff] could not be reserved
Sep 23 01:01:27 arch kernel: system 00:05: [io  0x2000-0x20fe] has been reserved
Sep 23 01:01:27 arch kernel: pnp: PnP ACPI: found 7 devices
Sep 23 01:01:27 arch kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Sep 23 01:01:27 arch kernel: NET: Registered PF_INET protocol family
Sep 23 01:01:27 arch kernel: IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
Sep 23 01:01:27 arch kernel: tcp_listen_portaddr_hash hash table entries: 32768 (order: 7, 524288 bytes, linear)
Sep 23 01:01:27 arch kernel: Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
Sep 23 01:01:27 arch kernel: TCP established hash table entries: 524288 (order: 10, 4194304 bytes, linear)
Sep 23 01:01:27 arch kernel: TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
Sep 23 01:01:27 arch kernel: TCP: Hash tables configured (established 524288 bind 65536)
Sep 23 01:01:27 arch kernel: MPTCP token hash table entries: 65536 (order: 8, 1572864 bytes, linear)
Sep 23 01:01:27 arch kernel: UDP hash table entries: 32768 (order: 8, 1048576 bytes, linear)
Sep 23 01:01:27 arch kernel: UDP-Lite hash table entries: 32768 (order: 8, 1048576 bytes, linear)
Sep 23 01:01:27 arch kernel: NET: Registered PF_UNIX/PF_LOCAL protocol family
Sep 23 01:01:27 arch kernel: NET: Registered PF_XDP protocol family
Sep 23 01:01:27 arch kernel: pci 0000:00:07.0: bridge window [io  0x1000-0x0fff] to [bus 02-2b] add_size 1000
Sep 23 01:01:27 arch kernel: pci 0000:00:02.0: VF BAR 2 [mem 0x4020000000-0x40ffffffff 64bit pref]: assigned
Sep 23 01:01:27 arch kernel: pci 0000:00:02.0: VF BAR 0 [mem 0x4010000000-0x4016ffffff 64bit]: assigned
Sep 23 01:01:27 arch kernel: pci 0000:00:07.0: bridge window [io  0x6000-0x6fff]: assigned
Sep 23 01:01:27 arch kernel: pci 0000:00:15.0: BAR 0 [mem 0x4017000000-0x4017000fff 64bit]: assigned
Sep 23 01:01:27 arch kernel: pci 0000:00:15.1: BAR 0 [mem 0x4017001000-0x4017001fff 64bit]: assigned
Sep 23 01:01:27 arch kernel: pci 0000:00:1f.5: BAR 0 [mem 0x4f800000-0x4f800fff]: assigned
Sep 23 01:01:27 arch kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
Sep 23 01:01:27 arch kernel: pci 0000:00:01.0:   bridge window [io  0x4000-0x4fff]
Sep 23 01:01:27 arch kernel: pci 0000:00:01.0:   bridge window [mem 0x5f000000-0x600fffff]
Sep 23 01:01:27 arch kernel: pci 0000:00:01.0:   bridge window [mem 0x6000000000-0x6201ffffff 64bit pref]
Sep 23 01:01:27 arch kernel: pci 0000:00:07.0: PCI bridge to [bus 02-2b]
Sep 23 01:01:27 arch kernel: pci 0000:00:07.0:   bridge window [io  0x6000-0x6fff]
Sep 23 01:01:27 arch kernel: pci 0000:00:07.0:   bridge window [mem 0x52000000-0x5e1fffff]
Sep 23 01:01:27 arch kernel: pci 0000:00:07.0:   bridge window [mem 0x6210000000-0x622bffffff 64bit pref]
Sep 23 01:01:27 arch kernel: pci 0000:00:1c.0: PCI bridge to [bus 2c]
Sep 23 01:01:27 arch kernel: pci 0000:00:1c.0:   bridge window [io  0x3000-0x3fff]
Sep 23 01:01:27 arch kernel: pci 0000:00:1c.0:   bridge window [mem 0x60200000-0x602fffff]
Sep 23 01:01:27 arch kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
Sep 23 01:01:27 arch kernel: pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
Sep 23 01:01:27 arch kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
Sep 23 01:01:27 arch kernel: pci_bus 0000:00: resource 7 [mem 0x000e0000-0x000fffff window]
Sep 23 01:01:27 arch kernel: pci_bus 0000:00: resource 8 [mem 0x4f800000-0xbfffffff window]
Sep 23 01:01:27 arch kernel: pci_bus 0000:00: resource 9 [mem 0x4000000000-0x7fffffffff window]
Sep 23 01:01:27 arch kernel: pci_bus 0000:01: resource 0 [io  0x4000-0x4fff]
Sep 23 01:01:27 arch kernel: pci_bus 0000:01: resource 1 [mem 0x5f000000-0x600fffff]
Sep 23 01:01:27 arch kernel: pci_bus 0000:01: resource 2 [mem 0x6000000000-0x6201ffffff 64bit pref]
Sep 23 01:01:27 arch kernel: pci_bus 0000:02: resource 0 [io  0x6000-0x6fff]
Sep 23 01:01:27 arch kernel: pci_bus 0000:02: resource 1 [mem 0x52000000-0x5e1fffff]
Sep 23 01:01:27 arch kernel: pci_bus 0000:02: resource 2 [mem 0x6210000000-0x622bffffff 64bit pref]
Sep 23 01:01:27 arch kernel: pci_bus 0000:2c: resource 0 [io  0x3000-0x3fff]
Sep 23 01:01:27 arch kernel: pci_bus 0000:2c: resource 1 [mem 0x60200000-0x602fffff]
Sep 23 01:01:27 arch kernel: pci 0000:01:00.1: extending delay after power-on from D3hot to 20 msec
Sep 23 01:01:27 arch kernel: pci 0000:01:00.1: D0 power state depends on 0000:01:00.0
Sep 23 01:01:27 arch kernel: PCI: CLS 64 bytes, default 64
Sep 23 01:01:27 arch kernel: DMAR: Intel-IOMMU force enabled due to platform opt in
Sep 23 01:01:27 arch kernel: DMAR: No ATSR found
Sep 23 01:01:27 arch kernel: DMAR: No SATC found
Sep 23 01:01:27 arch kernel: DMAR: IOMMU feature fl1gp_support inconsistent
Sep 23 01:01:27 arch kernel: DMAR: IOMMU feature pgsel_inv inconsistent
Sep 23 01:01:27 arch kernel: DMAR: IOMMU feature nwfs inconsistent
Sep 23 01:01:27 arch kernel: DMAR: IOMMU feature dit inconsistent
Sep 23 01:01:27 arch kernel: DMAR: IOMMU feature sc_support inconsistent
Sep 23 01:01:27 arch kernel: DMAR: IOMMU feature dev_iotlb_support inconsistent
Sep 23 01:01:27 arch kernel: DMAR: dmar0: Using Queued invalidation
Sep 23 01:01:27 arch kernel: DMAR: dmar1: Using Queued invalidation
Sep 23 01:01:27 arch kernel: Trying to unpack rootfs image as initramfs...
Sep 23 01:01:27 arch kernel: pci 0000:00:02.0: Adding to iommu group 0
Sep 23 01:01:27 arch kernel: pci 0000:00:00.0: Adding to iommu group 1
Sep 23 01:01:27 arch kernel: pci 0000:00:01.0: Adding to iommu group 2
Sep 23 01:01:27 arch kernel: pci 0000:00:04.0: Adding to iommu group 3
Sep 23 01:01:27 arch kernel: pci 0000:00:06.0: Adding to iommu group 4
Sep 23 01:01:27 arch kernel: pci 0000:00:07.0: Adding to iommu group 5
Sep 23 01:01:27 arch kernel: pci 0000:00:08.0: Adding to iommu group 6
Sep 23 01:01:27 arch kernel: pci 0000:00:0a.0: Adding to iommu group 7
Sep 23 01:01:27 arch kernel: pci 0000:00:0d.0: Adding to iommu group 8
Sep 23 01:01:27 arch kernel: pci 0000:00:0d.2: Adding to iommu group 8
Sep 23 01:01:27 arch kernel: pci 0000:00:0e.0: Adding to iommu group 9
Sep 23 01:01:27 arch kernel: pci 0000:00:12.0: Adding to iommu group 10
Sep 23 01:01:27 arch kernel: pci 0000:00:14.0: Adding to iommu group 11
Sep 23 01:01:27 arch kernel: pci 0000:00:14.2: Adding to iommu group 11
Sep 23 01:01:27 arch kernel: pci 0000:00:14.3: Adding to iommu group 12
Sep 23 01:01:27 arch kernel: pci 0000:00:15.0: Adding to iommu group 13
Sep 23 01:01:27 arch kernel: pci 0000:00:15.1: Adding to iommu group 13
Sep 23 01:01:27 arch kernel: pci 0000:00:16.0: Adding to iommu group 14
Sep 23 01:01:27 arch kernel: pci 0000:00:1c.0: Adding to iommu group 15
Sep 23 01:01:27 arch kernel: pci 0000:00:1f.0: Adding to iommu group 16
Sep 23 01:01:27 arch kernel: pci 0000:00:1f.3: Adding to iommu group 16
Sep 23 01:01:27 arch kernel: pci 0000:00:1f.4: Adding to iommu group 16
Sep 23 01:01:27 arch kernel: pci 0000:00:1f.5: Adding to iommu group 16
Sep 23 01:01:27 arch kernel: pci 0000:01:00.0: Adding to iommu group 17
Sep 23 01:01:27 arch kernel: pci 0000:01:00.1: Adding to iommu group 17
Sep 23 01:01:27 arch kernel: pci 0000:2c:00.0: Adding to iommu group 18
Sep 23 01:01:27 arch kernel: DMAR: Intel(R) Virtualization Technology for Directed I/O
Sep 23 01:01:27 arch kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Sep 23 01:01:27 arch kernel: software IO TLB: mapped [mem 0x0000000021b9e000-0x0000000025b9e000] (64MB)
Sep 23 01:01:27 arch kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2df10e7656b, max_idle_ns: 440795364873 ns
Sep 23 01:01:27 arch kernel: clocksource: Switched to clocksource tsc
Sep 23 01:01:27 arch kernel: platform rtc_cmos: registered platform RTC device (no PNP device found)
Sep 23 01:01:27 arch kernel: Initialise system trusted keyrings
Sep 23 01:01:27 arch kernel: Key type blacklist registered
Sep 23 01:01:27 arch kernel: workingset: timestamp_bits=41 max_order=24 bucket_order=0
Sep 23 01:01:27 arch kernel: zbud: loaded
Sep 23 01:01:27 arch kernel: fuse: init (API version 7.40)
Sep 23 01:01:27 arch kernel: integrity: Platform Keyring initialized
Sep 23 01:01:27 arch kernel: integrity: Machine keyring initialized
Sep 23 01:01:27 arch kernel: Key type asymmetric registered
Sep 23 01:01:27 arch kernel: Asymmetric key parser 'x509' registered
Sep 23 01:01:27 arch kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
Sep 23 01:01:27 arch kernel: io scheduler mq-deadline registered
Sep 23 01:01:27 arch kernel: io scheduler kyber registered
Sep 23 01:01:27 arch kernel: io scheduler bfq registered
Sep 23 01:01:27 arch kernel: pcieport 0000:00:01.0: PME: Signaling with IRQ 122
Sep 23 01:01:27 arch kernel: pcieport 0000:00:07.0: PME: Signaling with IRQ 123
Sep 23 01:01:27 arch kernel: pcieport 0000:00:07.0: pciehp: Slot #3 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
Sep 23 01:01:27 arch kernel: pcieport 0000:00:1c.0: PME: Signaling with IRQ 124
Sep 23 01:01:27 arch kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Sep 23 01:01:27 arch kernel: Monitor-Mwait will be used to enter C-1 state
Sep 23 01:01:27 arch kernel: Monitor-Mwait will be used to enter C-2 state
Sep 23 01:01:27 arch kernel: Monitor-Mwait will be used to enter C-3 state
Sep 23 01:01:27 arch kernel: ACPI: \_SB_.PR00: Found 3 idle states
Sep 23 01:01:27 arch kernel: ACPI: AC: AC Adapter [ADP1] (on-line)
Sep 23 01:01:27 arch kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:07/PNP0C09:00/PNP0C0D:00/input/input0
Sep 23 01:01:27 arch kernel: ACPI: button: Lid Switch [LID0]
Sep 23 01:01:27 arch kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
Sep 23 01:01:27 arch kernel: ACPI: button: Power Button [PWRB]
Sep 23 01:01:27 arch kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
Sep 23 01:01:27 arch kernel: ACPI: button: Power Button [PWRF]
Sep 23 01:01:27 arch kernel: ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PC00.LPCB.HEC.CFSP], AE_NOT_FOUND (20240322/psargs-330)
Sep 23 01:01:27 arch kernel: ACPI Error: Aborting method \_SB.PC00.LPCB.H_EC.TFN1._FST due to previous error (AE_NOT_FOUND) (20240322/psparse-529)
Sep 23 01:01:27 arch kernel: acpi INTC10A2:00: Get fan state failed
Sep 23 01:01:27 arch kernel: thermal LNXTHERM:00: registered as thermal_zone0
Sep 23 01:01:27 arch kernel: ACPI: thermal: Thermal Zone [TZ00] (39 C)
Sep 23 01:01:27 arch kernel: Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Sep 23 01:01:27 arch kernel: ACPI: battery: Slot [BAT0] (battery present)
Sep 23 01:01:27 arch kernel: serial 0000:00:12.0: enabling device (0000 -> 0002)
Sep 23 01:01:27 arch kernel: hpet_acpi_add: no address or irqs in _CRS
Sep 23 01:01:27 arch kernel: Non-volatile memory driver v1.3
Sep 23 01:01:27 arch kernel: Linux agpgart interface v0.103
Sep 23 01:01:27 arch kernel: ACPI: bus type drm_connector registered
Sep 23 01:01:27 arch kernel: usbcore: registered new interface driver usbserial_generic
Sep 23 01:01:27 arch kernel: usbserial: USB Serial support registered for generic
Sep 23 01:01:27 arch kernel: rtc_cmos rtc_cmos: RTC can wake from S4
Sep 23 01:01:27 arch kernel: rtc_cmos rtc_cmos: registered as rtc0
Sep 23 01:01:27 arch kernel: rtc_cmos rtc_cmos: setting system clock to 2024-09-23T08:00:58 UTC (1727078458)
Sep 23 01:01:27 arch kernel: rtc_cmos rtc_cmos: alarms up to one month, y3k, 114 bytes nvram
Sep 23 01:01:27 arch kernel: intel_pstate: Intel P-state driver initializing
Sep 23 01:01:27 arch kernel: intel_pstate: HWP enabled
Sep 23 01:01:27 arch kernel: ledtrig-cpu: registered to indicate activity on CPUs
Sep 23 01:01:27 arch kernel: [drm] Initialized simpledrm 1.0.0 20200625 for simple-framebuffer.0 on minor 0
Sep 23 01:01:27 arch kernel: fbcon: Deferring console take-over
Sep 23 01:01:27 arch kernel: simple-framebuffer simple-framebuffer.0: [drm] fb0: simpledrmdrmfb frame buffer device
Sep 23 01:01:27 arch kernel: hid: raw HID events driver (C) Jiri Kosina
Sep 23 01:01:27 arch kernel: drop_monitor: Initializing network drop monitor service
Sep 23 01:01:27 arch kernel: NET: Registered PF_INET6 protocol family
Sep 23 01:01:27 arch kernel: Freeing initrd memory: 122180K
Sep 23 01:01:27 arch kernel: Segment Routing with IPv6
Sep 23 01:01:27 arch kernel: RPL Segment Routing with IPv6
Sep 23 01:01:27 arch kernel: In-situ OAM (IOAM) with IPv6
Sep 23 01:01:27 arch kernel: NET: Registered PF_PACKET protocol family
Sep 23 01:01:27 arch kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
Sep 23 01:01:27 arch kernel: microcode: Current revision: 0x00004122
Sep 23 01:01:27 arch kernel: microcode: Updated early from: 0x0000411f
Sep 23 01:01:27 arch kernel: IPI shorthand broadcast: enabled
Sep 23 01:01:27 arch kernel: sched_clock: Marking stable (1045000932, 6531088)->(1081584078, -30052058)
Sep 23 01:01:27 arch kernel: Timer migration: 2 hierarchy levels; 8 children per group; 2 crossnode level
Sep 23 01:01:27 arch kernel: registered taskstats version 1
Sep 23 01:01:27 arch kernel: Loading compiled-in X.509 certificates
Sep 23 01:01:27 arch kernel: Loaded X.509 cert 'Build time autogenerated kernel key: 09e9e12466c7d4006c6b965b85da37f2dbf9fdb6'
Sep 23 01:01:27 arch kernel: zswap: loaded using pool zstd/zsmalloc
Sep 23 01:01:27 arch kernel: Demotion targets for Node 0: null
Sep 23 01:01:27 arch kernel: Key type .fscrypt registered
Sep 23 01:01:27 arch kernel: Key type fscrypt-provisioning registered
Sep 23 01:01:27 arch kernel: AppArmor: AppArmor sha256 policy hashing enabled
Sep 23 01:01:27 arch kernel: integrity: Loading X.509 certificate: UEFI:db
Sep 23 01:01:27 arch kernel: integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
Sep 23 01:01:27 arch kernel: integrity: Loading X.509 certificate: UEFI:db
Sep 23 01:01:27 arch kernel: integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
Sep 23 01:01:27 arch kernel: integrity: Loading X.509 certificate: UEFI:db
Sep 23 01:01:27 arch kernel: integrity: Loaded X.509 cert 'Huaqin NBD2 Software Certificate: 4672fbfc31a0ada6417c929fb7a3c1ba'
Sep 23 01:01:27 arch kernel: PM:   Magic number: 8:555:18
Sep 23 01:01:27 arch kernel: RAS: Correctable Errors collector initialized.
Sep 23 01:01:27 arch kernel: clk: Disabling unused clocks
Sep 23 01:01:27 arch kernel: PM: genpd: Disabling unused power domains
Sep 23 01:01:27 arch kernel: Freeing unused decrypted memory: 2028K
Sep 23 01:01:27 arch kernel: Freeing unused kernel image (initmem) memory: 3568K
Sep 23 01:01:27 arch kernel: Write protecting the kernel read-only data: 34816k
Sep 23 01:01:27 arch kernel: Freeing unused kernel image (rodata/data gap) memory: 1048K
Sep 23 01:01:27 arch kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Sep 23 01:01:27 arch kernel: rodata_test: all tests were successful
Sep 23 01:01:27 arch kernel: Run /init as init process
Sep 23 01:01:27 arch kernel:   with arguments:
Sep 23 01:01:27 arch kernel:     /init
Sep 23 01:01:27 arch kernel:   with environment:
Sep 23 01:01:27 arch kernel:     HOME=/
Sep 23 01:01:27 arch kernel:     TERM=linux
Sep 23 01:01:27 arch kernel:     BOOT_IMAGE=/vmlinuz-linux-zen
Sep 23 01:01:27 arch kernel:     cryptdevice=UUID=9c612f8c-f056-4062-be52-368c27fe5e78:root
Sep 23 01:01:27 arch kernel: nvidia: loading out-of-tree module taints kernel.
Sep 23 01:01:27 arch kernel: nvidia: module license 'NVIDIA' taints kernel.
Sep 23 01:01:27 arch kernel: Disabling lock debugging due to kernel taint
Sep 23 01:01:27 arch kernel: nvidia: module verification failed: signature and/or required key missing - tainting kernel
Sep 23 01:01:27 arch kernel: nvidia: module license taints kernel.
Sep 23 01:01:27 arch kernel: nvidia-nvlink: Nvlink Core is being initialized, major device number 240
Sep 23 01:01:27 arch kernel: 
Sep 23 01:01:27 arch kernel: nvidia 0000:01:00.0: enabling device (0000 -> 0003)
Sep 23 01:01:27 arch kernel: nvidia 0000:01:00.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=none:owns=none
Sep 23 01:01:27 arch kernel: NVRM: loading NVIDIA UNIX x86_64 Kernel Module  560.35.03  Fri Aug 16 21:39:15 UTC 2024
Sep 23 01:01:27 arch kernel: nvidia-modeset: Loading NVIDIA Kernel Mode Setting Driver for UNIX platforms  560.35.03  Fri Aug 16 21:21:48 UTC 2024
Sep 23 01:01:27 arch kernel: nvidia_uvm: module uses symbols nvUvmInterfaceDisableAccessCntr from proprietary module nvidia, inheriting taint.
Sep 23 01:01:27 arch kernel: nvidia-uvm: Loaded the UVM driver, major device number 238.
Sep 23 01:01:27 arch kernel: [drm] [nvidia-drm] [GPU ID 0x00000100] Loading driver
Sep 23 01:01:27 arch kernel: ACPI Warning: \_SB.NPCF._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20240322/nsarguments-61)
Sep 23 01:01:27 arch kernel: ACPI Warning: \_SB.PC00.PEG1.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20240322/nsarguments-61)
Sep 23 01:01:27 arch kernel: [drm] Initialized nvidia-drm 0.0.0 20160202 for 0000:01:00.0 on minor 1
Sep 23 01:01:27 arch kernel: nvidia 0000:01:00.0: [drm] Cannot find any crtc or sizes
Sep 23 01:01:27 arch kernel: xhci_hcd 0000:00:0d.0: xHCI Host Controller
Sep 23 01:01:27 arch kernel: xhci_hcd 0000:00:0d.0: new USB bus registered, assigned bus number 1
Sep 23 01:01:27 arch kernel: vmd 0000:00:0e.0: PCI host bridge to bus 10000:e0
Sep 23 01:01:27 arch kernel: pci_bus 10000:e0: root bus resource [bus e0-ff]
Sep 23 01:01:27 arch kernel: pci_bus 10000:e0: root bus resource [mem 0x50000000-0x51ffffff]
Sep 23 01:01:27 arch kernel: pci_bus 10000:e0: root bus resource [mem 0x622f102000-0x622f1fffff 64bit]
Sep 23 01:01:27 arch kernel: pci 10000:e0:06.0: [8086:a74d] type 01 class 0x060400 PCIe Root Port
Sep 23 01:01:27 arch kernel: pci 10000:e0:06.0: PCI bridge to [bus e1]
Sep 23 01:01:27 arch kernel: pci 10000:e0:06.0:   bridge window [io  0x0000-0x0fff]
Sep 23 01:01:27 arch kernel: pci 10000:e0:06.0:   bridge window [mem 0x50000000-0x500fffff]
Sep 23 01:01:27 arch kernel: pci 10000:e0:06.0: PME# supported from D0 D3hot D3cold
Sep 23 01:01:27 arch kernel: pci 10000:e0:06.0: PTM enabled (root), 4ns granularity
Sep 23 01:01:27 arch kernel: pci 10000:e0:06.0: Adding to iommu group 9
Sep 23 01:01:27 arch kernel: pci 10000:e0:06.2: [8086:a73d] type 01 class 0x060400 PCIe Root Port
Sep 23 01:01:27 arch kernel: pci 10000:e0:06.2: PCI bridge to [bus e2]
Sep 23 01:01:27 arch kernel: pci 10000:e0:06.2:   bridge window [io  0x0000-0x0fff]
Sep 23 01:01:27 arch kernel: pci 10000:e0:06.2:   bridge window [mem 0x50100000-0x501fffff]
Sep 23 01:01:27 arch kernel: pci 10000:e0:06.2: PME# supported from D0 D3hot D3cold
Sep 23 01:01:27 arch kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
Sep 23 01:01:27 arch kernel: i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
Sep 23 01:01:27 arch kernel: pci 10000:e0:06.2: PTM enabled (root), 4ns granularity
Sep 23 01:01:27 arch kernel: pci 10000:e0:06.2: Adding to iommu group 9
Sep 23 01:01:27 arch kernel: pci 10000:e0:06.0: Primary bus is hard wired to 0
Sep 23 01:01:27 arch kernel: pci 10000:e1:00.0: [144d:a80b] type 00 class 0x010802 PCIe Endpoint
Sep 23 01:01:27 arch kernel: pci 10000:e1:00.0: BAR 0 [mem 0x50000000-0x50003fff 64bit]
Sep 23 01:01:27 arch kernel: pci 10000:e1:00.0: PME# supported from D0 D3hot
Sep 23 01:01:27 arch kernel: xhci_hcd 0000:00:0d.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000200009810
Sep 23 01:01:27 arch kernel: pci 10000:e1:00.0: Adding to iommu group 9
Sep 23 01:01:27 arch kernel: pci 10000:e0:06.0: PCI bridge to [bus e1]
Sep 23 01:01:27 arch kernel: pci 10000:e0:06.2: Primary bus is hard wired to 0
Sep 23 01:01:27 arch kernel: xhci_hcd 0000:00:0d.0: xHCI Host Controller
Sep 23 01:01:27 arch kernel: xhci_hcd 0000:00:0d.0: new USB bus registered, assigned bus number 2
Sep 23 01:01:27 arch kernel: xhci_hcd 0000:00:0d.0: Host supports USB 3.2 Enhanced SuperSpeed
Sep 23 01:01:27 arch kernel: pci 10000:e2:00.0: [1987:5018] type 00 class 0x010802 PCIe Endpoint
Sep 23 01:01:27 arch kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.10
Sep 23 01:01:27 arch kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Sep 23 01:01:27 arch kernel: usb usb1: Product: xHCI Host Controller
Sep 23 01:01:27 arch kernel: usb usb1: Manufacturer: Linux 6.10.10-zen1-1-zen xhci-hcd
Sep 23 01:01:27 arch kernel: usb usb1: SerialNumber: 0000:00:0d.0
Sep 23 01:01:27 arch kernel: pci 10000:e2:00.0: BAR 0 [mem 0x50100000-0x50103fff 64bit]
Sep 23 01:01:27 arch kernel: hub 1-0:1.0: USB hub found
Sep 23 01:01:27 arch kernel: hub 1-0:1.0: 1 port detected
Sep 23 01:01:27 arch kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.10
Sep 23 01:01:27 arch kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Sep 23 01:01:27 arch kernel: usb usb2: Product: xHCI Host Controller
Sep 23 01:01:27 arch kernel: usb usb2: Manufacturer: Linux 6.10.10-zen1-1-zen xhci-hcd
Sep 23 01:01:27 arch kernel: usb usb2: SerialNumber: 0000:00:0d.0
Sep 23 01:01:27 arch kernel: hub 2-0:1.0: USB hub found
Sep 23 01:01:27 arch kernel: hub 2-0:1.0: 1 port detected
Sep 23 01:01:27 arch kernel: pci 10000:e2:00.0: Adding to iommu group 9
Sep 23 01:01:27 arch kernel: cryptd: max_cpu_qlen set to 1000
Sep 23 01:01:27 arch kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Sep 23 01:01:27 arch kernel: pci 10000:e0:06.2: PCI bridge to [bus e2]
Sep 23 01:01:27 arch kernel: pci 10000:e0:06.0: Primary bus is hard wired to 0
Sep 23 01:01:27 arch kernel: pci 10000:e0:06.2: Primary bus is hard wired to 0
Sep 23 01:01:27 arch kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Sep 23 01:01:27 arch kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
Sep 23 01:01:27 arch kernel: xhci_hcd 0000:00:14.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000100200009810
Sep 23 01:01:27 arch kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Sep 23 01:01:27 arch kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
Sep 23 01:01:27 arch kernel: xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
Sep 23 01:01:27 arch kernel: usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.10
Sep 23 01:01:27 arch kernel: usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Sep 23 01:01:27 arch kernel: usb usb3: Product: xHCI Host Controller
Sep 23 01:01:27 arch kernel: usb usb3: Manufacturer: Linux 6.10.10-zen1-1-zen xhci-hcd
Sep 23 01:01:27 arch kernel: usb usb3: SerialNumber: 0000:00:14.0
Sep 23 01:01:27 arch kernel: hub 3-0:1.0: USB hub found
Sep 23 01:01:27 arch kernel: hub 3-0:1.0: 12 ports detected
Sep 23 01:01:27 arch kernel: usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.10
Sep 23 01:01:27 arch kernel: usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Sep 23 01:01:27 arch kernel: usb usb4: Product: xHCI Host Controller
Sep 23 01:01:27 arch kernel: usb usb4: Manufacturer: Linux 6.10.10-zen1-1-zen xhci-hcd
Sep 23 01:01:27 arch kernel: usb usb4: SerialNumber: 0000:00:14.0
Sep 23 01:01:27 arch kernel: hub 4-0:1.0: USB hub found
Sep 23 01:01:27 arch kernel: hub 4-0:1.0: 4 ports detected
Sep 23 01:01:27 arch kernel: AVX2 version of gcm_enc/dec engaged.
Sep 23 01:01:27 arch kernel: AES CTR mode by8 optimization enabled
Sep 23 01:01:27 arch kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
Sep 23 01:01:27 arch kernel: pci 10000:e0:06.0: bridge window [mem 0x50000000-0x500fffff]: assigned
Sep 23 01:01:27 arch kernel: pci 10000:e0:06.2: bridge window [mem 0x50100000-0x501fffff]: assigned
Sep 23 01:01:27 arch kernel: pci 10000:e0:06.0: bridge window [io  size 0x1000]: can't assign; no space
Sep 23 01:01:27 arch kernel: pci 10000:e0:06.0: bridge window [io  size 0x1000]: failed to assign
Sep 23 01:01:27 arch kernel: pci 10000:e0:06.2: bridge window [io  size 0x1000]: can't assign; no space
Sep 23 01:01:27 arch kernel: pci 10000:e0:06.2: bridge window [io  size 0x1000]: failed to assign
Sep 23 01:01:27 arch kernel: pci 10000:e1:00.0: BAR 0 [mem 0x50000000-0x50003fff 64bit]: assigned
Sep 23 01:01:27 arch kernel: pci 10000:e0:06.0: PCI bridge to [bus e1]
Sep 23 01:01:27 arch kernel: pci 10000:e0:06.0:   bridge window [mem 0x50000000-0x500fffff]
Sep 23 01:01:27 arch kernel: pci 10000:e2:00.0: BAR 0 [mem 0x50100000-0x50103fff 64bit]: assigned
Sep 23 01:01:27 arch kernel: pci 10000:e0:06.2: PCI bridge to [bus e2]
Sep 23 01:01:27 arch kernel: pci 10000:e0:06.2:   bridge window [mem 0x50100000-0x501fffff]
Sep 23 01:01:27 arch kernel: pcieport 10000:e0:06.0: can't derive routing for PCI INT D
Sep 23 01:01:27 arch kernel: pcieport 10000:e0:06.0: PCI INT D: no GSI
Sep 23 01:01:27 arch kernel: pcieport 10000:e0:06.0: PME: Signaling with IRQ 161
Sep 23 01:01:27 arch kernel: pcieport 10000:e0:06.2: can't derive routing for PCI INT B
Sep 23 01:01:27 arch kernel: pcieport 10000:e0:06.2: PCI INT B: no GSI
Sep 23 01:01:27 arch kernel: pcieport 10000:e0:06.2: PME: Signaling with IRQ 162
Sep 23 01:01:27 arch kernel: vmd 0000:00:0e.0: Bound to PCI domain 10000
Sep 23 01:01:27 arch kernel: nvme nvme0: pci function 10000:e1:00.0
Sep 23 01:01:27 arch kernel: nvme nvme1: pci function 10000:e2:00.0
Sep 23 01:01:27 arch kernel: pcieport 10000:e0:06.2: can't derive routing for PCI INT A
Sep 23 01:01:27 arch kernel: nvme 10000:e2:00.0: PCI INT A: no GSI
Sep 23 01:01:27 arch kernel: pcieport 10000:e0:06.0: can't derive routing for PCI INT A
Sep 23 01:01:27 arch kernel: nvme 10000:e1:00.0: PCI INT A: not connected
Sep 23 01:01:27 arch kernel: usb 3-5: new high-speed USB device number 2 using xhci_hcd
Sep 23 01:01:27 arch kernel: nvme nvme0: D3 entry latency set to 8 seconds
Sep 23 01:01:27 arch kernel: nvme nvme1: missing or invalid SUBNQN field.
Sep 23 01:01:27 arch kernel: nvme nvme1: D3 entry latency set to 10 seconds
Sep 23 01:01:27 arch kernel: nvme nvme1: 16/0/0 default/read/poll queues
Sep 23 01:01:27 arch kernel:  nvme1n1: p1 p2
Sep 23 01:01:27 arch kernel: usb 3-5: New USB device found, idVendor=1c7a, idProduct=0587, bcdDevice=64.67
Sep 23 01:01:27 arch kernel: usb 3-5: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Sep 23 01:01:27 arch kernel: usb 3-5: Product: ETU905A88-E
Sep 23 01:01:27 arch kernel: usb 3-5: Manufacturer: EGIS
Sep 23 01:01:27 arch kernel: usb 3-5: SerialNumber: 027A39PRF917
Sep 23 01:01:27 arch kernel: nvme nvme0: allocated 64 MiB host memory buffer.
Sep 23 01:01:27 arch kernel: nvme nvme0: 16/0/0 default/read/poll queues
Sep 23 01:01:27 arch kernel: nvme nvme0: Ignoring bogus Namespace Identifiers
Sep 23 01:01:27 arch kernel:  nvme0n1: p1 p2 p3 p4 p5
Sep 23 01:01:27 arch kernel: device-mapper: uevent: version 1.0.3
Sep 23 01:01:27 arch kernel: device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@lists.linux.dev
Sep 23 01:01:27 arch kernel: Key type trusted registered
Sep 23 01:01:27 arch kernel: usb 3-7: new high-speed USB device number 3 using xhci_hcd
Sep 23 01:01:27 arch kernel: Key type encrypted registered
Sep 23 01:01:27 arch kernel: fbcon: Taking over console
Sep 23 01:01:27 arch kernel: Console: switching to colour frame buffer device 180x50
Sep 23 01:01:27 arch kernel: usb 3-7: New USB device found, idVendor=3277, idProduct=0021, bcdDevice= 1.02
Sep 23 01:01:27 arch kernel: usb 3-7: New USB device strings: Mfr=2, Product=1, SerialNumber=3
Sep 23 01:01:27 arch kernel: usb 3-7: Product: USB2.0 FHD UVC WebCam
Sep 23 01:01:27 arch kernel: usb 3-7: Manufacturer: Sonix Technology Co., Ltd.
Sep 23 01:01:27 arch kernel: usb 3-7: SerialNumber: SN0001
Sep 23 01:01:27 arch kernel: usb 3-9: new full-speed USB device number 4 using xhci_hcd
Sep 23 01:01:27 arch kernel: usb 3-9: New USB device found, idVendor=046d, idProduct=c09d, bcdDevice=52.02
Sep 23 01:01:27 arch kernel: usb 3-9: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Sep 23 01:01:27 arch kernel: usb 3-9: Product: G102 LIGHTSYNC Gaming Mouse
Sep 23 01:01:27 arch kernel: usb 3-9: Manufacturer: Logitech
Sep 23 01:01:27 arch kernel: usb 3-9: SerialNumber: 207A35744B58
Sep 23 01:01:27 arch kernel: usbcore: registered new interface driver usbhid
Sep 23 01:01:27 arch kernel: usbhid: USB HID core driver
Sep 23 01:01:27 arch kernel: input: Logitech G102 LIGHTSYNC Gaming Mouse as /devices/pci0000:00/0000:00:14.0/usb3/3-9/3-9:1.0/0003:046D:C09D.0001/input/input4
Sep 23 01:01:27 arch kernel: hid-generic 0003:046D:C09D.0001: input,hidraw0: USB HID v1.11 Mouse [Logitech G102 LIGHTSYNC Gaming Mouse] on usb-0000:00:14.0-9/input0
Sep 23 01:01:27 arch kernel: input: Logitech G102 LIGHTSYNC Gaming Mouse Keyboard as /devices/pci0000:00/0000:00:14.0/usb3/3-9/3-9:1.1/0003:046D:C09D.0002/input/input5
Sep 23 01:01:27 arch kernel: hid-generic 0003:046D:C09D.0002: input,hiddev96,hidraw1: USB HID v1.11 Keyboard [Logitech G102 LIGHTSYNC Gaming Mouse] on usb-0000:00:14.0-9/input1
Sep 23 01:01:27 arch kernel: usb 3-10: new full-speed USB device number 5 using xhci_hcd
Sep 23 01:01:27 arch kernel: usb 3-10: New USB device found, idVendor=8087, idProduct=0033, bcdDevice= 0.00
Sep 23 01:01:27 arch kernel: usb 3-10: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Sep 23 01:01:27 arch kernel: usb 4-2: new SuperSpeed USB device number 2 using xhci_hcd
Sep 23 01:01:27 arch kernel: usb 4-2: New USB device found, idVendor=0bda, idProduct=0329, bcdDevice=29.28
Sep 23 01:01:27 arch kernel: usb 4-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Sep 23 01:01:27 arch kernel: usb 4-2: Product: USB3.0 Card Reader
Sep 23 01:01:27 arch kernel: usb 4-2: Manufacturer: Realtek
Sep 23 01:01:27 arch kernel: usb 4-2: SerialNumber: 201408282030
Sep 23 01:01:27 arch kernel: usb-storage 4-2:1.0: USB Mass Storage device detected
Sep 23 01:01:27 arch kernel: scsi host0: usb-storage 4-2:1.0
Sep 23 01:01:27 arch kernel: usbcore: registered new interface driver usb-storage
Sep 23 01:01:27 arch kernel: usbcore: registered new interface driver uas
Sep 23 01:01:27 arch kernel: scsi 0:0:0:0: Direct-Access     Generic- USB3.0 CRW       1.00 PQ: 0 ANSI: 6
Sep 23 01:01:27 arch kernel: sd 0:0:0:0: [sda] Media removed, stopped polling
Sep 23 01:01:27 arch kernel: sd 0:0:0:0: [sda] Attached SCSI removable disk
Sep 23 01:01:27 arch kernel: usb 3-5: USB disconnect, device number 2
Sep 23 01:01:27 arch kernel: usb 3-5: new high-speed USB device number 6 using xhci_hcd
Sep 23 01:01:27 arch kernel: usb 3-5: New USB device found, idVendor=1c7a, idProduct=0587, bcdDevice=64.67
Sep 23 01:01:27 arch kernel: usb 3-5: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Sep 23 01:01:27 arch kernel: usb 3-5: Product: ETU905A88-E
Sep 23 01:01:27 arch kernel: usb 3-5: Manufacturer: EGIS
Sep 23 01:01:27 arch kernel: usb 3-5: SerialNumber: 027A39PRF917
Sep 23 01:01:27 arch kernel: raid6: skipped pq benchmark and selected avx2x4
Sep 23 01:01:27 arch kernel: raid6: using avx2x2 recovery algorithm
Sep 23 01:01:27 arch kernel: xor: automatically using best checksumming function   avx       
Sep 23 01:01:27 arch kernel: Btrfs loaded, zoned=yes, fsverity=yes
Sep 23 01:01:27 arch kernel: PM: Image signature found, resuming
Sep 23 01:01:27 arch kernel: PM: hibernation: resume from hibernation
Sep 23 01:01:27 arch kernel: random: crng reseeded on system resumption
Sep 23 01:01:27 arch kernel: Freezing user space processes
Sep 23 01:01:27 arch kernel: Freezing user space processes completed (elapsed 0.000 seconds)
Sep 23 01:01:27 arch kernel: OOM killer disabled.
Sep 23 01:01:27 arch kernel: Freezing remaining freezable tasks
Sep 23 01:01:27 arch kernel: Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
Sep 23 01:01:27 arch kernel: PM: hibernation: Marking nosave pages: [mem 0x00000000-0x00000fff]
Sep 23 01:01:27 arch kernel: PM: hibernation: Marking nosave pages: [mem 0x0009e000-0x0009efff]
Sep 23 01:01:27 arch kernel: PM: hibernation: Marking nosave pages: [mem 0x000a0000-0x000fffff]
Sep 23 01:01:27 arch kernel: PM: hibernation: Marking nosave pages: [mem 0x26c38000-0x26c38fff]
Sep 23 01:01:27 arch kernel: PM: hibernation: Marking nosave pages: [mem 0x26c5c000-0x26c5cfff]
Sep 23 01:01:27 arch kernel: PM: hibernation: Marking nosave pages: [mem 0x30fbe000-0x3100afff]
Sep 23 01:01:27 arch kernel: PM: hibernation: Marking nosave pages: [mem 0x33a10000-0x33a10fff]
Sep 23 01:01:27 arch kernel: PM: hibernation: Marking nosave pages: [mem 0x382ec000-0x417fefff]
Sep 23 01:01:27 arch kernel: PM: hibernation: Marking nosave pages: [mem 0x41800000-0xffffffff]
Sep 23 01:01:27 arch kernel: PM: hibernation: Basic memory bitmaps created
Sep 23 01:01:27 arch kernel: PM: Using 3 thread(s) for lzo decompression
Sep 23 01:01:27 arch kernel: PM: Loading and decompressing image data (1952404 pages)...
Sep 23 01:01:27 arch kernel: PM: Image loading progress:   0%
Sep 23 01:01:27 arch kernel: PM: Image loading progress:  10%
Sep 23 01:01:27 arch kernel: PM: Image loading progress:  20%
Sep 23 01:01:27 arch kernel: PM: Image loading progress:  30%
Sep 23 01:01:27 arch kernel: PM: Image loading progress:  40%
Sep 23 01:01:27 arch kernel: PM: Image loading progress:  50%
Sep 23 01:01:27 arch kernel: PM: Image loading progress:  60%
Sep 23 01:01:27 arch kernel: PM: Image loading progress:  70%
Sep 23 01:01:27 arch kernel: PM: Image loading progress:  80%
Sep 23 01:01:27 arch kernel: PM: Image loading progress:  90%
Sep 23 01:01:27 arch kernel: PM: Image loading progress: 100%
Sep 23 01:01:27 arch kernel: PM: Image loading done
Sep 23 01:01:27 arch kernel: PM: hibernation: Read 7809616 kbytes in 7.42 seconds (1052.50 MB/s)
Sep 23 01:01:27 arch kernel: PM: Image successfully loaded
Sep 23 01:01:27 arch kernel: printk: Suspending console(s) (use no_console_suspend to debug)
Sep 23 01:01:27 arch kernel: NVRM: GPU 0000:01:00.0: PreserveVideoMemoryAllocations module parameter is set. System Power Management attempted without driver procfs suspend interface. Please refer to the 'Configuring Power Management Support' section in the driver README.
Sep 23 01:01:27 arch kernel: nvidia 0000:01:00.0: PM: pci_pm_freeze(): nv_pmops_freeze [nvidia] returns -5
Sep 23 01:01:27 arch kernel: nvidia 0000:01:00.0: PM: dpm_run_callback(): pci_pm_freeze returns -5
Sep 23 01:01:27 arch kernel: nvidia 0000:01:00.0: PM: failed to quiesce async: error -5
Sep 23 01:01:27 arch kernel: pcieport 10000:e0:06.2: can't derive routing for PCI INT A
Sep 23 01:01:27 arch kernel: nvme 10000:e2:00.0: PCI INT A: no GSI
Sep 23 01:01:27 arch kernel: pcieport 10000:e0:06.0: can't derive routing for PCI INT A
Sep 23 01:01:27 arch kernel: nvme 10000:e1:00.0: PCI INT A: no GSI
Sep 23 01:01:27 arch kernel: nvme nvme0: D3 entry latency set to 8 seconds
Sep 23 01:01:27 arch kernel: nvme nvme0: 16/0/0 default/read/poll queues
Sep 23 01:01:27 arch kernel: nvme nvme0: Ignoring bogus Namespace Identifiers
Sep 23 01:01:27 arch kernel: PM: hibernation: Failed to load image, recovering.
Sep 23 01:01:27 arch kernel: PM: hibernation: Basic memory bitmaps freed
Sep 23 01:01:27 arch kernel: OOM killer enabled.
Sep 23 01:01:27 arch kernel: Restarting tasks ... done.
Sep 23 01:01:27 arch kernel: PM: hibernation: resume failed (-5)
Sep 23 01:01:27 arch kernel: nvme nvme1: D3 entry latency set to 10 seconds
Sep 23 01:01:27 arch kernel: nvme nvme1: 16/0/0 default/read/poll queues
Sep 23 01:01:27 arch kernel: BTRFS: device fsid 3adc738b-6ed9-4988-a8bb-4c4fcc83c00c devid 1 transid 88399 /dev/mapper/root (254:0) scanned by mount (574)
Sep 23 01:01:27 arch kernel: BTRFS info (device dm-0): first mount of filesystem 3adc738b-6ed9-4988-a8bb-4c4fcc83c00c
Sep 23 01:01:27 arch kernel: BTRFS info (device dm-0): using crc32c (crc32c-intel) checksum algorithm
Sep 23 01:01:27 arch kernel: BTRFS info (device dm-0): using free-space-tree
Sep 23 01:01:27 arch systemd[1]: systemd 256.6-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 23 01:01:27 arch systemd[1]: Detected architecture x86-64.
Sep 23 01:01:27 arch systemd[1]: Hostname set to <arch>.
Sep 23 01:01:27 arch systemd[1]: bpf-restrict-fs: LSM BPF program attached
Sep 23 01:01:27 arch kernel: zram: Added device: zram0
Sep 23 01:01:27 arch systemd[1]: Queued start job for default target Graphical Interface.
Sep 23 01:01:27 arch systemd[1]: Created slice Virtual Machine and Container Slice.
Sep 23 01:01:27 arch systemd[1]: Created slice Slice /system/dirmngr.
Sep 23 01:01:27 arch systemd[1]: Created slice Slice /system/getty.
Sep 23 01:01:27 arch systemd[1]: Created slice Slice /system/gpg-agent.
Sep 23 01:01:27 arch systemd[1]: Created slice Slice /system/gpg-agent-browser.
Sep 23 01:01:27 arch systemd[1]: Created slice Slice /system/gpg-agent-extra.
Sep 23 01:01:27 arch systemd[1]: Created slice Slice /system/gpg-agent-ssh.
Sep 23 01:01:27 arch systemd[1]: Created slice Slice /system/keyboxd.
Sep 23 01:01:27 arch systemd[1]: Created slice Slice /system/modprobe.
Sep 23 01:01:27 arch systemd[1]: Created slice Slice /system/systemd-zram-setup.
Sep 23 01:01:27 arch systemd[1]: Created slice User and Session Slice.
Sep 23 01:01:27 arch systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
Sep 23 01:01:27 arch systemd[1]: Started Forward Password Requests to Wall Directory Watch.
Sep 23 01:01:27 arch systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
Sep 23 01:01:27 arch systemd[1]: Expecting device /dev/disk/by-uuid/3adc738b-6ed9-4988-a8bb-4c4fcc83c00c...
Sep 23 01:01:27 arch systemd[1]: Expecting device /dev/disk/by-uuid/96D4-E061...
Sep 23 01:01:27 arch systemd[1]: Expecting device /dev/zram0...
Sep 23 01:01:27 arch systemd[1]: Reached target Local Encrypted Volumes.
Sep 23 01:01:27 arch systemd[1]: Reached target Local Integrity Protected Volumes.
Sep 23 01:01:27 arch systemd[1]: Reached target Path Units.
Sep 23 01:01:27 arch systemd[1]: Reached target Remote File Systems.
Sep 23 01:01:27 arch systemd[1]: Reached target Slice Units.
Sep 23 01:01:27 arch systemd[1]: Reached target Local Verity Protected Volumes.
Sep 23 01:01:27 arch systemd[1]: Listening on Device-mapper event daemon FIFOs.
Sep 23 01:01:27 arch systemd[1]: Listening on Process Core Dump Socket.
Sep 23 01:01:27 arch systemd[1]: Listening on Credential Encryption/Decryption.
Sep 23 01:01:27 arch systemd[1]: Listening on Journal Socket (/dev/log).
Sep 23 01:01:27 arch systemd[1]: Listening on Journal Sockets.
Sep 23 01:01:27 arch systemd[1]: TPM PCR Measurements was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Sep 23 01:01:27 arch systemd[1]: Make TPM PCR Policy was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Sep 23 01:01:27 arch systemd[1]: Listening on udev Control Socket.
Sep 23 01:01:27 arch systemd[1]: Listening on udev Kernel Socket.
Sep 23 01:01:27 arch systemd[1]: Listening on User Database Manager Socket.
Sep 23 01:01:27 arch systemd[1]: Mounting Huge Pages File System...
Sep 23 01:01:27 arch systemd[1]: Mounting POSIX Message Queue File System...
Sep 23 01:01:27 arch systemd[1]: Mounting Kernel Debug File System...
Sep 23 01:01:27 arch systemd[1]: Mounting Kernel Trace File System...
Sep 23 01:01:27 arch systemd[1]: Starting Load AppArmor profiles...
Sep 23 01:01:27 arch systemd[1]: Starting Create List of Static Device Nodes...
Sep 23 01:01:27 arch systemd[1]: Starting Load Kernel Module configfs...
Sep 23 01:01:27 arch systemd[1]: Starting Load Kernel Module dm_mod...
Sep 23 01:01:27 arch systemd[1]: Starting Load Kernel Module drm...
Sep 23 01:01:27 arch systemd[1]: Starting Load Kernel Module fuse...
Sep 23 01:01:27 arch systemd[1]: Starting Load Kernel Module loop...
Sep 23 01:01:27 arch 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 23 01:01:27 arch systemd[1]: Starting Journal Service...
Sep 23 01:01:27 arch systemd[1]: Starting Load Kernel Modules...
Sep 23 01:01:27 arch systemd[1]: TPM PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Sep 23 01:01:27 arch systemd[1]: Starting Remount Root and Kernel File Systems...
Sep 23 01:01:27 arch systemd[1]: Early TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Sep 23 01:01:27 arch systemd[1]: Starting Load udev Rules from Credentials...
Sep 23 01:01:27 arch systemd[1]: Starting Coldplug All udev Devices...
Sep 23 01:01:27 arch kernel: loop: module loaded
Sep 23 01:01:27 arch systemd[1]: Mounted Huge Pages File System.
Sep 23 01:01:27 arch systemd[1]: Mounted POSIX Message Queue File System.
Sep 23 01:01:27 arch systemd[1]: Mounted Kernel Debug File System.
Sep 23 01:01:27 arch systemd[1]: Mounted Kernel Trace File System.
Sep 23 01:01:27 arch systemd[1]: Finished Create List of Static Device Nodes.
Sep 23 01:01:27 arch systemd[1]: modprobe@configfs.service: Deactivated successfully.
Sep 23 01:01:27 arch systemd[1]: Finished Load Kernel Module configfs.
Sep 23 01:01:27 arch systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
Sep 23 01:01:27 arch systemd[1]: Finished Load Kernel Module dm_mod.
Sep 23 01:01:27 arch systemd[1]: modprobe@drm.service: Deactivated successfully.
Sep 23 01:01:27 arch systemd[1]: Finished Load Kernel Module drm.
Sep 23 01:01:27 arch systemd[1]: modprobe@fuse.service: Deactivated successfully.
Sep 23 01:01:27 arch systemd[1]: Finished Load Kernel Module fuse.
Sep 23 01:01:27 arch systemd[1]: modprobe@loop.service: Deactivated successfully.
Sep 23 01:01:27 arch systemd[1]: Finished Load Kernel Module loop.
Sep 23 01:01:27 arch systemd[1]: Mounting FUSE Control File System...
Sep 23 01:01:27 arch systemd[1]: Mounting Kernel Configuration File System...
Sep 23 01:01:27 arch systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
Sep 23 01:01:27 arch systemd[1]: Starting Create Static Device Nodes in /dev gracefully...
Sep 23 01:01:27 arch systemd[1]: Finished Load udev Rules from Credentials.
Sep 23 01:01:27 arch systemd-journald[637]: Collecting audit messages is disabled.
Sep 23 01:01:27 arch systemd[1]: Mounted Kernel Configuration File System.
Sep 23 01:01:27 arch systemd[1]: Mounted FUSE Control File System.
Sep 23 01:01:27 arch kernel: i2c_dev: i2c /dev entries driver
Sep 23 01:01:27 arch systemd[1]: Finished Load Kernel Modules.
Sep 23 01:01:27 arch systemd[1]: Starting Apply Kernel Variables...
Sep 23 01:01:27 arch kernel: audit: type=1400 audit(1727078487.340:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="dovecot-anvil" pid=666 comm="apparmor_parser"
Sep 23 01:01:27 arch systemd[1]: Starting User Database Manager...
Sep 23 01:01:27 arch kernel: audit: type=1400 audit(1727078487.348:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="ping" pid=653 comm="apparmor_parser"
Sep 23 01:01:27 arch kernel: audit: type=1400 audit(1727078487.348:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=654 comm="apparmor_parser"
Sep 23 01:01:27 arch kernel: audit: type=1400 audit(1727078487.348:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=655 comm="apparmor_parser"
Sep 23 01:01:27 arch kernel: BTRFS info (device dm-0 state M): use zstd compression, level 3
Sep 23 01:01:27 arch kernel: audit: type=1400 audit(1727078487.349:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=655 comm="apparmor_parser"
Sep 23 01:01:27 arch systemd[1]: Finished Remount Root and Kernel File Systems.
Sep 23 01:01:27 arch systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
Sep 23 01:01:27 arch systemd[1]: Starting Load/Save OS Random Seed...
Sep 23 01:01:27 arch systemd[1]: TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Sep 23 01:01:27 arch systemd-journald[637]: Journal started
Sep 23 01:01:27 arch systemd-journald[637]: Runtime Journal (/run/log/journal/9c61a3f814744af9b803e22e630365ba) is 8M, max 1.9G, 1.9G free.
Sep 23 01:01:27 arch systemd-modules-load[638]: Inserted module 'crypto_user'
Sep 23 01:01:27 arch systemd-modules-load[638]: Inserted module 'i2c_dev'
Sep 23 01:01:27 arch apparmor.systemd[629]: Restarting AppArmor
Sep 23 01:01:27 arch apparmor.systemd[629]: Reloading AppArmor profiles
Sep 23 01:01:27 arch systemd[1]: Started Journal Service.
Sep 23 01:01:27 arch kernel: audit: type=1400 audit(1727078487.358:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="samba-dcerpcd" pid=658 comm="apparmor_parser"
Sep 23 01:01:27 arch kernel: audit: type=1400 audit(1727078487.359:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="klogd" pid=662 comm="apparmor_parser"
Sep 23 01:01:27 arch kernel: audit: type=1400 audit(1727078487.362:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="samba-rpcd-classic" pid=660 comm="apparmor_parser"
Sep 23 01:01:27 arch kernel: audit: type=1400 audit(1727078487.362:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="dovecot-doveadm-server" pid=676 comm="apparmor_parser"
Sep 23 01:01:27 arch kernel: audit: type=1400 audit(1727078487.362:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="samba-rpcd-spoolss" pid=661 comm="apparmor_parser"
Sep 23 01:01:27 arch systemd[1]: Finished Load/Save OS Random Seed.
Sep 23 01:01:27 arch systemd[1]: Finished Apply Kernel Variables.
Sep 23 01:01:27 arch systemd[1]: Started User Database Manager.
Sep 23 01:01:27 arch systemd[1]: Finished Create Static Device Nodes in /dev gracefully.
Sep 23 01:01:27 arch systemd[1]: Create System Users was skipped because no trigger condition checks were met.
Sep 23 01:01:27 arch systemd[1]: Starting Create Static Device Nodes in /dev...
Sep 23 01:01:27 arch systemd[1]: Finished Coldplug All udev Devices.
Sep 23 01:01:27 arch systemd[1]: Finished Create Static Device Nodes in /dev.
Sep 23 01:01:27 arch systemd[1]: Reached target Preparation for Local File Systems.
Sep 23 01:01:27 arch systemd[1]: Starting Rule-based Manager for Device Events and Files...
Sep 23 01:01:27 arch systemd[1]: Finished Load AppArmor profiles.
Sep 23 01:01:27 arch systemd-udevd[732]: Using default interface naming scheme 'v255'.
Sep 23 01:01:27 arch systemd[1]: Started Rule-based Manager for Device Events and Files.
Sep 23 01:01:27 arch systemd[1]: Found device /dev/zram0.
Sep 23 01:01:27 arch systemd[1]: Starting Create swap on /dev/zram0...
Sep 23 01:01:27 arch kernel: BTRFS info: devid 1 device path /dev/mapper/root changed to /dev/dm-0 scanned by (udev-worker) (746)
Sep 23 01:01:27 arch kernel: BTRFS info: devid 1 device path /dev/dm-0 changed to /dev/mapper/root scanned by (udev-worker) (746)
Sep 23 01:01:27 arch systemd[1]: Condition check resulted in /dev/tpmrm0 being skipped.
Sep 23 01:01:27 arch systemd[1]: Reached target Trusted Platform Module.
Sep 23 01:01:27 arch kernel: zram0: detected capacity change from 0 to 40689664
Sep 23 01:01:27 arch systemd-makefs[810]: /dev/zram0 successfully formatted as swap (label "zram0", uuid 3211db48-7265-4e9b-9bcb-c7af10bbbb69)
Sep 23 01:01:27 arch systemd[1]: Finished Create swap on /dev/zram0.
Sep 23 01:01:27 arch kernel: Consider using thermal netlink events interface
Sep 23 01:01:27 arch kernel: input: Intel HID events as /devices/platform/INTC1078:00/input/input8
Sep 23 01:01:27 arch kernel: intel-hid INTC1078:00: platform supports 5 button array
Sep 23 01:01:27 arch kernel: input: Intel HID 5 button array as /devices/platform/INTC1078:00/input/input9
Sep 23 01:01:27 arch systemd[1]: Found device GIGABYTE AG4731TB 1.
Sep 23 01:01:27 arch systemd[1]: Found device /dev/disk/by-uuid/3adc738b-6ed9-4988-a8bb-4c4fcc83c00c.
Sep 23 01:01:27 arch kernel: resource: resource sanity check: requesting [mem 0x00000000fedc0000-0x00000000fedcffff], which spans more than pnp 00:04 [mem 0xfedc0000-0xfedc7fff]
Sep 23 01:01:27 arch kernel: caller igen6_probe+0x1fb/0x9a0 [igen6_edac] mapping multiple BARs
Sep 23 01:01:27 arch kernel: EDAC MC0: Giving out device to module igen6_edac controller Intel_client_SoC MC#0: DEV 0000:00:00.0 (INTERRUPT)
Sep 23 01:01:27 arch kernel: EDAC MC1: Giving out device to module igen6_edac controller Intel_client_SoC MC#1: DEV 0000:00:00.0 (INTERRUPT)
Sep 23 01:01:27 arch kernel: EDAC igen6 MC0: HANDLING IBECC MEMORY ERROR
Sep 23 01:01:27 arch kernel: EDAC igen6 MC0: ADDR 0x1ffffffffff 
Sep 23 01:01:27 arch kernel: EDAC igen6 MC1: HANDLING IBECC MEMORY ERROR
Sep 23 01:01:27 arch kernel: EDAC igen6 MC1: ADDR 0x1ffffffffff 
Sep 23 01:01:27 arch kernel: EDAC igen6: v2.5.1
Sep 23 01:01:27 arch kernel: intel_pmc_core INT33A1:00:  initialized
Sep 23 01:01:27 arch kernel: ACPI: bus type thunderbolt registered
Sep 23 01:01:27 arch kernel: mei_me 0000:00:16.0: enabling device (0000 -> 0002)
Sep 23 01:01:27 arch kernel: input: PC Speaker as /devices/platform/pcspkr/input/input10
Sep 23 01:01:27 arch kernel: intel-lpss 0000:00:15.0: enabling device (0004 -> 0006)
Sep 23 01:01:27 arch kernel: idma64 idma64.0: Found Intel integrated DMA 64-bit
Sep 23 01:01:27 arch kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
Sep 23 01:01:27 arch kernel: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
Sep 23 01:01:27 arch kernel: Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
Sep 23 01:01:27 arch kernel: platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
Sep 23 01:01:27 arch kernel: cfg80211: failed to load regulatory.db
Sep 23 01:01:27 arch kernel: i801_smbus 0000:00:1f.4: SPD Write Disable is set
Sep 23 01:01:27 arch kernel: i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
Sep 23 01:01:27 arch kernel: i2c i2c-5: Memory type 0x22 not supported yet, not instantiating SPD
Sep 23 01:01:27 arch kernel: intel-lpss 0000:00:15.1: enabling device (0004 -> 0006)
Sep 23 01:01:27 arch kernel: idma64 idma64.1: Found Intel integrated DMA 64-bit
Sep 23 01:01:27 arch kernel: r8169 0000:2c:00.0 eth0: RTL8168h/8111h, a0:36:bc:5e:e2:e1, XID 541, IRQ 214
Sep 23 01:01:27 arch kernel: r8169 0000:2c:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
Sep 23 01:01:27 arch systemd[1]: Activating swap Compressed Swap on /dev/zram0...
Sep 23 01:01:27 arch systemd[1]: Starting Virtual Console Setup...
Sep 23 01:01:27 arch kernel: intel_rapl_msr: PL4 support detected.
Sep 23 01:01:27 arch kernel: intel_rapl_common: Found RAPL domain package
Sep 23 01:01:27 arch kernel: intel_rapl_common: Found RAPL domain core
Sep 23 01:01:27 arch kernel: intel_rapl_common: Found RAPL domain uncore
Sep 23 01:01:27 arch kernel: intel_rapl_common: Found RAPL domain psys
Sep 23 01:01:27 arch systemd[1]: Finished Virtual Console Setup.
Sep 23 01:01:27 arch kernel: input: ASUE120B:00 04F3:31C0 Mouse as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-4/i2c-ASUE120B:00/0018:04F3:31C0.0003/input/input11
Sep 23 01:01:27 arch kernel: input: ASUE120B:00 04F3:31C0 Touchpad as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-4/i2c-ASUE120B:00/0018:04F3:31C0.0003/input/input12
Sep 23 01:01:27 arch kernel: hid-generic 0018:04F3:31C0.0003: input,hidraw2: I2C HID v1.00 Mouse [ASUE120B:00 04F3:31C0] on i2c-ASUE120B:00
Sep 23 01:01:27 arch kernel: r8169 0000:2c:00.0 enp44s0: renamed from eth0
Sep 23 01:01:27 arch kernel: iTCO_vendor_support: vendor-support=0
Sep 23 01:01:27 arch kernel: asus_wmi: ASUS WMI generic driver loaded
Sep 23 01:01:27 arch kernel: iTCO_wdt iTCO_wdt: Found a Intel PCH TCO device (Version=6, TCOBASE=0x0400)
Sep 23 01:01:27 arch kernel: Intel(R) Wireless WiFi driver for Linux
Sep 23 01:01:27 arch kernel: iwlwifi 0000:00:14.3: enabling device (0000 -> 0002)
Sep 23 01:01:27 arch kernel: iTCO_wdt iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
Sep 23 01:01:27 arch kernel: Creating 1 MTD partitions on "0000:00:1f.5":
Sep 23 01:01:27 arch kernel: 0x000000000000-0x000002000000 : "BIOS"
Sep 23 01:01:27 arch kernel: proc_thermal_pci 0000:00:04.0: enabling device (0000 -> 0002)
Sep 23 01:01:27 arch kernel: intel_rapl_common: Found RAPL domain package
Sep 23 01:01:27 arch kernel: RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
Sep 23 01:01:27 arch kernel: RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
Sep 23 01:01:27 arch kernel: RAPL PMU: hw unit of domain package 2^-14 Joules
Sep 23 01:01:27 arch kernel: RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
Sep 23 01:01:27 arch kernel: RAPL PMU: hw unit of domain psys 2^-14 Joules
Sep 23 01:01:27 arch kernel: iwlwifi 0000:00:14.3: Detected crf-id 0x400410, cnv-id 0x80400 wfpm id 0x80000020
Sep 23 01:01:27 arch kernel: iwlwifi 0000:00:14.3: PCI dev 51f1/0094, rev=0x370, rfid=0x2010d000
Sep 23 01:01:27 arch kernel: asus_wmi: Initialization: 0x1
Sep 23 01:01:27 arch kernel: asus_wmi: SFUN value: 0x21
Sep 23 01:01:27 arch kernel: asus-nb-wmi asus-nb-wmi: Detected ATK, not ASUSWMI, use DSTS
Sep 23 01:01:27 arch kernel: iwlwifi 0000:00:14.3: TLV_FW_FSEQ_VERSION: FSEQ Version: 0.0.2.42
Sep 23 01:01:27 arch kernel: iwlwifi 0000:00:14.3: loaded firmware version 89.202a2f7b.0 so-a0-gf-a0-89.ucode op_mode iwlmvm
Sep 23 01:01:27 arch kernel: input: Asus WMI hotkeys as /devices/platform/asus-nb-wmi/input/input13
Sep 23 01:01:27 arch kernel: input: ASUE120B:00 04F3:31C0 Mouse as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-4/i2c-ASUE120B:00/0018:04F3:31C0.0003/input/input14
Sep 23 01:01:27 arch kernel: input: ASUE120B:00 04F3:31C0 Touchpad as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-4/i2c-ASUE120B:00/0018:04F3:31C0.0003/input/input15
Sep 23 01:01:27 arch kernel: hid-multitouch 0018:04F3:31C0.0003: input,hidraw2: I2C HID v1.00 Mouse [ASUE120B:00 04F3:31C0] on i2c-ASUE120B:00
Sep 23 01:01:27 arch kernel: asus_wmi: fan_curve_get_factory_default (0x00110024) failed: -19
Sep 23 01:01:27 arch kernel: asus_wmi: fan_curve_get_factory_default (0x00110025) failed: -19
Sep 23 01:01:27 arch kernel: asus_wmi: fan_curve_get_factory_default (0x00110032) failed: -19
Sep 23 01:01:27 arch systemd[1]: Created slice Slice /system/systemd-backlight.
Sep 23 01:01:27 arch kernel: pps_core: LinuxPPS API ver. 1 registered
Sep 23 01:01:27 arch kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Sep 23 01:01:27 arch kernel: mousedev: PS/2 mouse device common for all mice
Sep 23 01:01:27 arch systemd[1]: Starting Load/Save Screen Backlight Brightness of leds:asus::kbd_backlight...
Sep 23 01:01:27 arch kernel: PTP clock support registered
Sep 23 01:01:27 arch kernel: snd_hda_intel 0000:00:1f.3: Digital mics found on Skylake+ platform, using SOF driver
Sep 23 01:01:27 arch kernel: Adding 20344828k swap on /dev/zram0.  Priority:100 extents:1 across:20344828k SSDsc
Sep 23 01:01:27 arch systemd[1]: Activated swap Compressed Swap on /dev/zram0.
Sep 23 01:01:27 arch kernel: ACPI: battery: new extension: ASUS Battery Extension
Sep 23 01:01:27 arch systemd[1]: Finished Load/Save Screen Backlight Brightness of leds:asus::kbd_backlight.
Sep 23 01:01:28 arch (udev-worker)[788]: input2: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Sep 23 01:01:28 arch (udev-worker)[742]: input3: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Sep 23 01:01:28 arch (udev-worker)[740]: input12: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Sep 23 01:01:28 arch (udev-worker)[738]: input10: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Sep 23 01:01:28 arch (udev-worker)[782]: input8: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Sep 23 01:01:28 arch (udev-worker)[778]: input1: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Sep 23 01:01:28 arch (udev-worker)[779]: input9: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Sep 23 01:01:28 arch (udev-worker)[753]: input11: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Sep 23 01:01:28 arch (udev-worker)[735]: input0: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Sep 23 01:01:28 arch systemd[1]: Starting Load Kernel Module dm_mod...
Sep 23 01:01:28 arch systemd[1]: Starting Load Kernel Module loop...
Sep 23 01:01:28 arch 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 23 01:01:28 arch systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
Sep 23 01:01:28 arch systemd[1]: TPM PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Sep 23 01:01:28 arch systemd[1]: Create System Users was skipped because no trigger condition checks were met.
Sep 23 01:01:28 arch systemd[1]: Early TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Sep 23 01:01:28 arch systemd[1]: TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Sep 23 01:01:28 arch (udev-worker)[783]: input13: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Sep 23 01:01:28 arch kernel: i915 0000:00:02.0: [drm] VT-d active for gfx access
Sep 23 01:01:28 arch kernel: Console: switching to colour dummy device 80x25
Sep 23 01:01:28 arch systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
Sep 23 01:01:28 arch systemd[1]: Finished Load Kernel Module dm_mod.
Sep 23 01:01:28 arch systemd[1]: modprobe@loop.service: Deactivated successfully.
Sep 23 01:01:28 arch systemd[1]: Finished Load Kernel Module loop.
Sep 23 01:01:28 arch systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
Sep 23 01:01:28 arch kernel: intel_tcc_cooling: Programmable TCC Offset detected
Sep 23 01:01:28 arch kernel: i915 0000:00:02.0: vgaarb: deactivate vga console
Sep 23 01:01:28 arch kernel: i915 0000:00:02.0: [drm] Using Transparent Hugepages
Sep 23 01:01:28 arch kernel: i915 0000:00:02.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=none:owns=io+mem
Sep 23 01:01:28 arch kernel: i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/adlp_dmc.bin (v2.20)
Sep 23 01:01:28 arch mtp-probe[1003]: checking bus 3, device 6: "/sys/devices/pci0000:00/0000:00:14.0/usb3/3-5"
Sep 23 01:01:28 arch kernel: iwlwifi 0000:00:14.3: Detected Intel(R) Wi-Fi 6E AX211 160MHz, REV=0x370
Sep 23 01:01:28 arch mtp-probe[1001]: checking bus 3, device 4: "/sys/devices/pci0000:00/0000:00:14.0/usb3/3-9"
Sep 23 01:01:28 arch mtp-probe[1004]: checking bus 3, device 3: "/sys/devices/pci0000:00/0000:00:14.0/usb3/3-7"
Sep 23 01:01:28 arch mtp-probe[1001]: bus: 3, device: 4 was not an MTP device
Sep 23 01:01:28 arch mtp-probe[1004]: bus: 3, device: 3 was not an MTP device
Sep 23 01:01:28 arch mtp-probe[1000]: checking bus 4, device 2: "/sys/devices/pci0000:00/0000:00:14.0/usb4/4-2"
Sep 23 01:01:28 arch mtp-probe[1000]: bus: 4, device: 2 was not an MTP device
Sep 23 01:01:28 arch mtp-probe[1003]: bus: 3, device: 6 was not an MTP device
Sep 23 01:01:28 arch kernel: iwlwifi 0000:00:14.3: WRT: Invalid buffer destination
Sep 23 01:01:28 arch kernel: i915 0000:00:02.0: [drm] GT0: GuC firmware i915/adlp_guc_70.bin version 70.29.2
Sep 23 01:01:28 arch kernel: i915 0000:00:02.0: [drm] GT0: HuC firmware i915/tgl_huc.bin version 7.9.3
Sep 23 01:01:28 arch kernel: i915 0000:00:02.0: [drm] GT0: HuC: authenticated for all workloads
Sep 23 01:01:28 arch kernel: i915 0000:00:02.0: [drm] GT0: GUC: submission enabled
Sep 23 01:01:28 arch kernel: i915 0000:00:02.0: [drm] GT0: GUC: SLPC enabled
Sep 23 01:01:28 arch kernel: i915 0000:00:02.0: [drm] GT0: GUC: RC enabled
Sep 23 01:01:28 arch 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 23 01:01:28 arch kernel: i915 0000:00:02.0: [drm] Protected Xe Path (PXP) protected content support initialized
Sep 23 01:01:28 arch kernel: mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_ops [i915])
Sep 23 01:01:28 arch kernel: [drm] Initialized i915 1.6.0 20230929 for 0000:00:02.0 on minor 2
Sep 23 01:01:28 arch kernel: ACPI: video: Video Device [PEGP] (multi-head: no  rom: yes  post: no)
Sep 23 01:01:28 arch kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/LNXVIDEO:00/input/input16
Sep 23 01:01:28 arch kernel: ACPI: video: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
Sep 23 01:01:28 arch kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input17
Sep 23 01:01:28 arch kernel: fbcon: i915drmfb (fb0) is primary device
Sep 23 01:01:28 arch kernel: ish-hid {33AECD58-B679-4E54-9BD9-A04D34F0C226}: [hid-ish]: enum_devices_done OK, num_hid_devices=1
Sep 23 01:01:28 arch kernel: hid-generic 001F:8087:0AC2.0004: hidraw3: SENSOR HUB HID v2.00 Device [hid-ishtp 8087:0AC2] on 
Sep 23 01:01:28 arch kernel: hid-sensor-hub 001F:8087:0AC2.0004: hidraw3: SENSOR HUB HID v2.00 Device [hid-ishtp 8087:0AC2] on 
Sep 23 01:01:28 arch kernel: iwlwifi 0000:00:14.3: WFPM_UMAC_PD_NOTIFICATION: 0x20
Sep 23 01:01:28 arch kernel: iwlwifi 0000:00:14.3: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
Sep 23 01:01:28 arch kernel: iwlwifi 0000:00:14.3: WFPM_AUTH_KEY_0: 0x90
Sep 23 01:01:28 arch kernel: iwlwifi 0000:00:14.3: CNVI_SCU_SEQ_DATA_DW9: 0x0
Sep 23 01:01:28 arch kernel: iwlwifi 0000:00:14.3: loaded PNVM version 35148b80
Sep 23 01:01:28 arch kernel: iwlwifi 0000:00:14.3: RFIm is deactivated, reason = 4
Sep 23 01:01:28 arch systemd[1]: Mounting /.snapshots...
Sep 23 01:01:28 arch systemd[1]: Mounting /boot...
Sep 23 01:01:28 arch systemd[1]: home.mount: Directory /home to mount over is not empty, mounting anyway.
Sep 23 01:01:28 arch systemd[1]: Mounting /home...
Sep 23 01:01:28 arch systemd[1]: Mounting /swap...
Sep 23 01:01:28 arch systemd[1]: Mounting /var/cache/pacman/pkg...
Sep 23 01:01:28 arch systemd[1]: Virtual Machine and Container Storage (Compatibility) was skipped because of an unmet condition check (ConditionPathExists=/var/lib/machines.raw).
Sep 23 01:01:28 arch systemd[1]: Mounting /var/log...
Sep 23 01:01:28 arch kernel: iwlwifi 0000:00:14.3: Detected RF GF, rfid=0x2010d000
Sep 23 01:01:28 arch systemd[1]: Starting Load Kernel Module dm_mod...
Sep 23 01:01:28 arch systemd[1]: Starting Load Kernel Module loop...
Sep 23 01:01:28 arch 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 23 01:01:28 arch systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
Sep 23 01:01:28 arch systemd[1]: TPM PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Sep 23 01:01:28 arch systemd[1]: Create System Users was skipped because no trigger condition checks were met.
Sep 23 01:01:28 arch systemd[1]: Early TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Sep 23 01:01:28 arch systemd[1]: TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Sep 23 01:01:28 arch kernel: iwlwifi 0000:00:14.3: base HW address: c8:5e:a9:77:93:3b
Sep 23 01:01:28 arch kernel: iwlwifi 0000:00:14.3 wlo1: renamed from wlan0
Sep 23 01:01:28 arch (udev-worker)[755]: input16: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Sep 23 01:01:28 arch (udev-worker)[783]: input17: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Sep 23 01:01:28 arch (udev-worker)[735]: input15: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Sep 23 01:01:28 arch (udev-worker)[778]: input14: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Sep 23 01:01:28 arch kernel: mc: Linux media interface: v0.10
Sep 23 01:01:28 arch kernel: Bluetooth: Core ver 2.22
Sep 23 01:01:28 arch kernel: NET: Registered PF_BLUETOOTH protocol family
Sep 23 01:01:28 arch kernel: Bluetooth: HCI device and connection manager initialized
Sep 23 01:01:28 arch kernel: Bluetooth: HCI socket layer initialized
Sep 23 01:01:28 arch kernel: Bluetooth: L2CAP socket layer initialized
Sep 23 01:01:28 arch kernel: Bluetooth: SCO socket layer initialized
Sep 23 01:01:28 arch kernel: videodev: Linux video capture interface: v2.00
Sep 23 01:01:28 arch kernel: usbcore: registered new interface driver btusb
Sep 23 01:01:28 arch 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 23 01:01:28 arch kernel: Bluetooth: hci0: Firmware timestamp 2024.18 buildtype 1 build 81528
Sep 23 01:01:28 arch kernel: Bluetooth: hci0: Firmware SHA1: 0xa8bb3f39
Sep 23 01:01:28 arch kernel: ACPI Warning: \_SB.PC00.XHCI.RHUB.HS10._DSM: Argument #4 type mismatch - Found [Integer], ACPI requires [Package] (20240322/nsarguments-61)
Sep 23 01:01:28 arch kernel: Bluetooth: hci0: DSM reset method type: 0x00
Sep 23 01:01:28 arch systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
Sep 23 01:01:28 arch systemd[1]: TPM PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Sep 23 01:01:28 arch systemd[1]: Create System Users was skipped because no trigger condition checks were met.
Sep 23 01:01:28 arch systemd[1]: Early TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Sep 23 01:01:28 arch systemd[1]: TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Sep 23 01:01:28 arch kernel: Bluetooth: hci0: Found device firmware: intel/ibt-0040-0041.sfi
Sep 23 01:01:28 arch kernel: Bluetooth: hci0: Boot Address: 0x100800
Sep 23 01:01:28 arch kernel: Bluetooth: hci0: Firmware Version: 120-18.24
Sep 23 01:01:28 arch kernel: Bluetooth: hci0: Firmware already loaded
Sep 23 01:01:28 arch kernel: Bluetooth: hci0: Fseq status: Success (0x00)
Sep 23 01:01:28 arch kernel: Bluetooth: hci0: Fseq executed: 00.00.02.42
Sep 23 01:01:28 arch kernel: Bluetooth: hci0: Fseq BT Top: 00.00.02.41
Sep 23 01:01:28 arch (udev-worker)[755]: input4: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Sep 23 01:01:28 arch kernel: usb 3-7: Found UVC 1.00 device USB2.0 FHD UVC WebCam (3277:0021)
Sep 23 01:01:28 arch kernel: usbcore: registered new interface driver uvcvideo
Sep 23 01:01:28 arch (udev-worker)[783]: input5: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Sep 23 01:01:29 arch kernel: Console: switching to colour frame buffer device 180x50
Sep 23 01:01:29 arch kernel: i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
Sep 23 01:01:29 arch systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
Sep 23 01:01:29 arch systemd[1]: Finished Load Kernel Module dm_mod.
Sep 23 01:01:29 arch systemd[1]: modprobe@loop.service: Deactivated successfully.
Sep 23 01:01:29 arch systemd[1]: Finished Load Kernel Module loop.
Sep 23 01:01:29 arch systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
Sep 23 01:01:29 arch kernel: snd_hda_intel 0000:01:00.1: enabling device (0000 -> 0002)
Sep 23 01:01:29 arch kernel: snd_hda_intel 0000:01:00.1: Disabling MSI
Sep 23 01:01:29 arch kernel: snd_hda_intel 0000:01:00.1: Handle vga_switcheroo audio client
Sep 23 01:01:29 arch kernel: snd_hda_intel 0000:01:00.1: number of I/O streams is 30, forcing separate stream tags
Sep 23 01:01:29 arch systemd[1]: Mounted /.snapshots.
Sep 23 01:01:29 arch systemd[1]: Mounted /swap.
Sep 23 01:01:29 arch systemd[1]: Mounted /var/cache/pacman/pkg.
Sep 23 01:01:29 arch systemd[1]: Mounted /var/log.
Sep 23 01:01:29 arch systemd[1]: Mounted /home.
Sep 23 01:01:29 arch systemd[1]: Activating swap /swap/swapfile...
Sep 23 01:01:29 arch systemd[1]: Mounting /home/images...
Sep 23 01:01:29 arch systemd[1]: Starting Flush Journal to Persistent Storage...
Sep 23 01:01:29 arch kernel: FAT-fs (nvme1n1p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
Sep 23 01:01:29 arch systemd[1]: Mounted /boot.
Sep 23 01:01:29 arch systemd-journald[637]: Time spent on flushing to /var/log/journal/9c61a3f814744af9b803e22e630365ba is 4.549ms for 1410 entries.
Sep 23 01:01:29 arch systemd-journald[637]: System Journal (/var/log/journal/9c61a3f814744af9b803e22e630365ba) is 3.9G, max 4G, 45.8M free.
Sep 23 01:01:29 arch systemd-journald[637]: Received client request to flush runtime journal.
Sep 23 01:01:29 arch kernel: Adding 41943036k swap on /swap/swapfile.  Priority:-2 extents:1 across:41943036k 
Sep 23 01:01:29 arch systemd-journald[637]: File /var/log/journal/9c61a3f814744af9b803e22e630365ba/system.journal corrupted or uncleanly shut down, renaming and replacing.
Sep 23 01:01:29 arch kernel: hdaudio hdaudioC0D0: no AFG or MFG node found
Sep 23 01:01:29 arch kernel: hdaudio hdaudioC0D1: no AFG or MFG node found
Sep 23 01:01:29 arch kernel: hdaudio hdaudioC0D2: no AFG or MFG node found
Sep 23 01:01:29 arch kernel: hdaudio hdaudioC0D3: no AFG or MFG node found
Sep 23 01:01:29 arch kernel: hdaudio hdaudioC0D4: no AFG or MFG node found
Sep 23 01:01:29 arch kernel: hdaudio hdaudioC0D5: no AFG or MFG node found
Sep 23 01:01:29 arch kernel: hdaudio hdaudioC0D6: no AFG or MFG node found
Sep 23 01:01:29 arch kernel: hdaudio hdaudioC0D7: no AFG or MFG node found
Sep 23 01:01:29 arch kernel: snd_hda_intel 0000:01:00.1: no codecs initialized
Sep 23 01:01:29 arch kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: enabling device (0000 -> 0002)
Sep 23 01:01:29 arch kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if 0x040100
Sep 23 01:01:29 arch kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
Sep 23 01:01:29 arch kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: use msi interrupt mode
Sep 23 01:01:29 arch kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: hda codecs found, mask 5
Sep 23 01:01:29 arch kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: using HDA machine driver skl_hda_dsp_generic now
Sep 23 01:01:29 arch kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: DMICs detected in NHLT tables: 4
Sep 23 01:01:29 arch kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: Firmware paths/files for ipc type 0:
Sep 23 01:01:29 arch kernel: sof-audio-pci-intel-tgl 0000:00:1f.3:  Firmware file:     intel/sof/sof-rpl.ri
Sep 23 01:01:29 arch kernel: sof-audio-pci-intel-tgl 0000:00:1f.3:  Topology file:     intel/sof-tplg/sof-hda-generic-4ch.tplg
Sep 23 01:01:29 arch kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: Firmware info: version 2:2:0-57864
Sep 23 01:01:29 arch kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: Firmware: ABI 3:22:1 Kernel ABI 3:23:0
Sep 23 01:01:29 arch kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: unknown sof_ext_man header type 3 size 0x30
Sep 23 01:01:29 arch kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: Firmware info: version 2:2:0-57864
Sep 23 01:01:29 arch kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: Firmware: ABI 3:22:1 Kernel ABI 3:23:0
Sep 23 01:01:29 arch systemd[1]: Mounted /home/images.
Sep 23 01:01:29 arch systemd[1]: Activated swap /swap/swapfile.
Sep 23 01:01:29 arch systemd[1]: Reached target Swaps.
Sep 23 01:01:29 arch systemd[1]: Mounting Temporary Directory /tmp...
Sep 23 01:01:29 arch systemd[1]: Mounted Temporary Directory /tmp.
Sep 23 01:01:29 arch systemd[1]: Reached target Local File Systems.
Sep 23 01:01:29 arch systemd[1]: Listening on Boot Entries Service Socket.
Sep 23 01:01:29 arch systemd[1]: Listening on System Extension Image Management.
Sep 23 01:01:29 arch systemd[1]: Rebuild Dynamic Linker Cache was skipped because no trigger condition checks were met.
Sep 23 01:01:29 arch systemd[1]: Starting Set Up Additional Binary Formats...
Sep 23 01:01:29 arch systemd[1]: Update Boot Loader Random Seed was skipped because no trigger condition checks were met.
Sep 23 01:01:29 arch systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 1323 (systemd-binfmt)
Sep 23 01:01:29 arch systemd[1]: Starting Load/Save Screen Backlight Brightness of backlight:intel_backlight...
Sep 23 01:01:29 arch systemd[1]: Finished Load/Save Screen Backlight Brightness of backlight:intel_backlight.
Sep 23 01:01:29 arch systemd[1]: Finished Flush Journal to Persistent Storage.
Sep 23 01:01:29 arch systemd[1]: Starting Create System Files and Directories...
Sep 23 01:01:29 arch kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: Topology: ABI 3:22:1 Kernel ABI 3:23:0
Sep 23 01:01:29 arch kernel: skl_hda_dsp_generic skl_hda_dsp_generic: ASoC: Parent card not yet available, widget card binding deferred
Sep 23 01:01:29 arch kernel: snd_hda_codec_realtek ehdaudio0D0: autoconfig for ALC294: line_outs=1 (0x17/0x0/0x0/0x0/0x0) type:speaker
Sep 23 01:01:29 arch kernel: snd_hda_codec_realtek ehdaudio0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
Sep 23 01:01:29 arch kernel: snd_hda_codec_realtek ehdaudio0D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
Sep 23 01:01:29 arch kernel: snd_hda_codec_realtek ehdaudio0D0:    mono: mono_out=0x0
Sep 23 01:01:29 arch kernel: snd_hda_codec_realtek ehdaudio0D0:    inputs:
Sep 23 01:01:29 arch kernel: snd_hda_codec_realtek ehdaudio0D0:      Headset Mic=0x19
Sep 23 01:01:29 arch systemd[1]: Finished Create System Files and Directories.
Sep 23 01:01:29 arch systemd[1]: First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
Sep 23 01:01:29 arch systemd[1]: First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes).
Sep 23 01:01:29 arch systemd[1]: Rebuild Journal Catalog was skipped because of an unmet condition check (ConditionNeedsUpdate=/var).
Sep 23 01:01:29 arch systemd[1]: Save Transient machine-id to Disk was skipped because of an unmet condition check (ConditionPathIsMountPoint=/etc/machine-id).
Sep 23 01:01:29 arch systemd[1]: Starting Network Time Synchronization...
Sep 23 01:01:29 arch systemd[1]: Update is Completed was skipped because no trigger condition checks were met.
Sep 23 01:01:29 arch systemd[1]: Starting Record System Boot/Shutdown in UTMP...
Sep 23 01:01:29 arch systemd[1]: Finished Record System Boot/Shutdown in UTMP.
Sep 23 01:01:30 arch kernel: skl_hda_dsp_generic skl_hda_dsp_generic: hda_dsp_hdmi_build_controls: no PCM in topology for HDMI converter 3
Sep 23 01:01:30 arch kernel: input: sof-hda-dsp Headset Mic as /devices/pci0000:00/0000:00:1f.3/skl_hda_dsp_generic/sound/card0/input18
Sep 23 01:01:30 arch kernel: input: sof-hda-dsp Headphone as /devices/pci0000:00/0000:00:1f.3/skl_hda_dsp_generic/sound/card0/input19
Sep 23 01:01:30 arch kernel: input: sof-hda-dsp HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/skl_hda_dsp_generic/sound/card0/input20
Sep 23 01:01:30 arch kernel: input: sof-hda-dsp HDMI/DP,pcm=4 as /devices/pci0000:00/0000:00:1f.3/skl_hda_dsp_generic/sound/card0/input21
Sep 23 01:01:30 arch kernel: input: sof-hda-dsp HDMI/DP,pcm=5 as /devices/pci0000:00/0000:00:1f.3/skl_hda_dsp_generic/sound/card0/input22
Sep 23 01:01:30 arch systemd[1]: Reached target Sound Card.
Sep 23 01:01:30 arch (udev-worker)[738]: input22: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Sep 23 01:01:30 arch (udev-worker)[740]: input20: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Sep 23 01:01:30 arch (udev-worker)[753]: input18: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Sep 23 01:01:30 arch (udev-worker)[743]: input19: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Sep 23 01:01:30 arch (udev-worker)[785]: input21: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Sep 23 01:01:30 arch systemd[1]: Mounting Arbitrary Executable File Formats File System...
Sep 23 01:01:30 arch systemd[1]: Mounted Arbitrary Executable File Formats File System.
Sep 23 01:01:30 arch systemd[1]: Finished Set Up Additional Binary Formats.
Sep 23 01:01:30 arch systemd[1]: Started Network Time Synchronization.
Sep 23 01:01:30 arch systemd[1]: Reached target System Initialization.
Sep 23 01:01:30 arch systemd[1]: Started Daily Cleanup of Temporary Directories.
Sep 23 01:01:30 arch systemd[1]: Reached target System Time Set.
Sep 23 01:01:30 arch systemd[1]: Started Refresh existing PGP keys of archlinux-keyring regularly.
Sep 23 01:01:30 arch systemd[1]: Started Discard unused filesystem blocks once a week.
Sep 23 01:01:30 arch systemd[1]: Started Daily man-db regeneration.
Sep 23 01:01:30 arch systemd[1]: Started Refresh Pacman mirrorlist weekly with Reflector..
Sep 23 01:01:30 arch systemd[1]: Started Daily verification of password and group files.
Sep 23 01:01:30 arch systemd[1]: Reached target Timer Units.
Sep 23 01:01:30 arch systemd[1]: Listening on D-Bus System Message Bus Socket.
Sep 23 01:01:30 arch systemd[1]: Listening on GnuPG network certificate management daemon for /etc/pacman.d/gnupg.
Sep 23 01:01:30 arch systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers) for /etc/pacman.d/gnupg.
Sep 23 01:01:30 arch systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache (restricted) for /etc/pacman.d/gnupg.
Sep 23 01:01:30 arch systemd[1]: Listening on GnuPG cryptographic agent (ssh-agent emulation) for /etc/pacman.d/gnupg.
Sep 23 01:01:30 arch systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache for /etc/pacman.d/gnupg.
Sep 23 01:01:30 arch systemd[1]: Listening on GnuPG public key management service for /etc/pacman.d/gnupg.
Sep 23 01:01:30 arch systemd[1]: Listening on libvirt legacy monolithic daemon socket.
Sep 23 01:01:30 arch systemd[1]: Listening on libvirt legacy monolithic daemon admin socket.
Sep 23 01:01:30 arch systemd[1]: Listening on libvirt legacy monolithic daemon read-only socket.
Sep 23 01:01:30 arch systemd[1]: Listening on OpenSSH Server Socket (systemd-ssh-generator, AF_UNIX Local).
Sep 23 01:01:30 arch systemd[1]: Listening on Hostname Service Socket.
Sep 23 01:01:30 arch systemd[1]: Listening on libvirt locking daemon socket.
Sep 23 01:01:30 arch systemd[1]: Listening on libvirt locking daemon admin socket.
Sep 23 01:01:30 arch systemd[1]: Listening on libvirt logging daemon socket.
Sep 23 01:01:30 arch systemd[1]: Listening on libvirt logging daemon admin socket.
Sep 23 01:01:30 arch systemd[1]: Reached target Socket Units.
Sep 23 01:01:30 arch systemd[1]: Starting D-Bus System Message Bus...
Sep 23 01:01:30 arch systemd[1]: TPM PCR Barrier (Initialization) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Sep 23 01:01:30 arch dbus-broker-launch[1530]: Looking up NSS group entry for 'sudo'...
Sep 23 01:01:30 arch dbus-broker-launch[1530]: NSS returned no entry for 'sudo'
Sep 23 01:01:30 arch dbus-broker-launch[1530]: Invalid group-name in /usr/share/dbus-1/system.d/org.supergfxctl.Daemon.conf +9: group="sudo"
Sep 23 01:01:30 arch systemd[1]: Started D-Bus System Message Bus.
Sep 23 01:01:30 arch systemd[1]: Reached target Basic System.
Sep 23 01:01:30 arch systemd[1]: Starting Bluetooth service...
Sep 23 01:01:30 arch systemd[1]: Starting Thunderbolt system service...
Sep 23 01:01:30 arch systemd[1]: Starting firewalld - dynamic firewall daemon...
Sep 23 01:01:30 arch systemd[1]: Starting IIO Sensor Proxy service...
Sep 23 01:01:30 arch dbus-broker-launch[1530]: Ready
Sep 23 01:01:30 arch systemd[1]: Starting Service to inject keycodes without the GUI application...
Sep 23 01:01:30 arch systemd[1]: Starting SUPERGFX...
Sep 23 01:01:30 arch systemd[1]: Starting User Login Management...
Sep 23 01:01:30 arch systemd[1]: Starting Virtual Machine and Container Registration Service...
Sep 23 01:01:30 arch systemd[1]: TPM PCR Barrier (User) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Sep 23 01:01:30 arch systemd[1]: Starting Daemon for power management...
Sep 23 01:01:30 arch supergfxd[1540]: INFO: Daemon version: 5.2.1
Sep 23 01:01:30 arch supergfxd[1540]: INFO: DiscreetGpu::new: Rescanning PCI bus
Sep 23 01:01:30 arch systemd[1]: Started SUPERGFX.
Sep 23 01:01:30 arch systemd[1]: Reached target Login Prompts.
Sep 23 01:01:30 arch kernel: pcieport 10000:e0:06.0: Primary bus is hard wired to 0
Sep 23 01:01:30 arch kernel: pcieport 10000:e0:06.2: Primary bus is hard wired to 0
Sep 23 01:01:30 arch kernel: pcieport 10000:e0:06.0: Primary bus is hard wired to 0
Sep 23 01:01:30 arch kernel: pcieport 10000:e0:06.2: Primary bus is hard wired to 0
Sep 23 01:01:30 arch supergfxd[1540]: DEBUG: Looking at PCI device "0000:00:00.0"
Sep 23 01:01:30 arch supergfxd[1540]: DEBUG: Looking at PCI device "0000:00:01.0"
Sep 23 01:01:30 arch supergfxd[1540]: DEBUG: Looking at PCI device "0000:01:00.0"
Sep 23 01:01:30 arch supergfxd[1540]: DEBUG: Found non-boot_vga 10DE:28A1 at "0000:01:00.0"
Sep 23 01:01:30 arch supergfxd[1540]: INFO: Found dgpu 10DE:28A1 at "0000:01:00.0"
Sep 23 01:01:30 arch supergfxd[1540]: DEBUG: Laptop is in dGPU MUX mode? false
Sep 23 01:01:30 arch supergfxd[1540]: DEBUG: Looking at PCI device "0000:01:00.1"
Sep 23 01:01:30 arch supergfxd[1540]: DEBUG: Didn't find dGPU with standard methods, using last resort for id:10DE:22BE at "0000:01:00.1"
Sep 23 01:01:30 arch boltd[1533]: bolt 0.9.8 starting up.
Sep 23 01:01:30 arch systemd[1]: Started Virtual Machine and Container Registration Service.
Sep 23 01:01:30 arch boltd[1533]: manager: initializing store
Sep 23 01:01:30 arch boltd[1533]: store: located at: /var/lib/boltd
Sep 23 01:01:30 arch boltd[1533]: config: loading user config
Sep 23 01:01:30 arch boltd[1533]: bouncer: initializing polkit
Sep 23 01:01:30 arch systemd[1]: Starting Authorization Manager...
Sep 23 01:01:30 arch bluetoothd[1532]: Bluetooth daemon 5.78
Sep 23 01:01:30 arch systemd[1]: Started Bluetooth service.
Sep 23 01:01:30 arch bluetoothd[1532]: Starting SDP server
Sep 23 01:01:30 arch systemd[1]: Reached target Bluetooth Support.
Sep 23 01:01:30 arch supergfxd[1540]: INFO: Found additional device 10DE:22BE at "0000:01:00.1"
Sep 23 01:01:30 arch supergfxd[1540]: DEBUG: Looking at PCI device "0000:00:02.0"
Sep 23 01:01:30 arch supergfxd[1540]: INFO: supergfxd.mode not set, ignoring
Sep 23 01:01:30 arch supergfxd[1540]: DEBUG: do_mode_setup_tasks(mode:Hybrid, vfio_enable:false, asus_use_dgpu_disable: None)
Sep 23 01:01:30 arch supergfxd[1540]: DEBUG: asus_reload: asus_use_dgpu_disable: false
Sep 23 01:01:30 arch supergfxd[1540]: INFO: create_modprobe_conf: writing /etc/modprobe.d/supergfxd.conf
Sep 23 01:01:30 arch systemd[1]: Starting Hostname Service...
Sep 23 01:01:30 arch bluetoothd[1532]: src/plugin.c:init_plugin() System does not support bap plugin
Sep 23 01:01:30 arch bluetoothd[1532]: src/plugin.c:init_plugin() System does not support bass plugin
Sep 23 01:01:30 arch supergfxd[1540]: INFO: check_vulkan_icd: checking for Vulkan ICD profiles...
Sep 23 01:01:30 arch bluetoothd[1532]: src/plugin.c:init_plugin() System does not support mcp plugin
Sep 23 01:01:30 arch bluetoothd[1532]: src/plugin.c:init_plugin() System does not support vcp plugin
Sep 23 01:01:30 arch bluetoothd[1532]: profiles/audio/micp.c:micp_init() D-Bus experimental not enabled
Sep 23 01:01:30 arch bluetoothd[1532]: src/plugin.c:init_plugin() System does not support micp plugin
Sep 23 01:01:30 arch bluetoothd[1532]: src/plugin.c:init_plugin() System does not support ccp plugin
Sep 23 01:01:30 arch bluetoothd[1532]: src/plugin.c:init_plugin() System does not support csip plugin
Sep 23 01:01:30 arch bluetoothd[1532]: src/plugin.c:init_plugin() System does not support asha plugin
Sep 23 01:01:30 arch bluetoothd[1532]: Bluetooth management interface 1.22 initialized
Sep 23 01:01:30 arch supergfxd[1540]: INFO: do_rescan: Rescanning PCI bus
Sep 23 01:01:30 arch bluetoothd[1532]: Battery Provider Manager created
Sep 23 01:01:30 arch kernel: Bluetooth: BNEP (Ethernet Emulation) ver 1.3
Sep 23 01:01:30 arch kernel: Bluetooth: BNEP filters: protocol multicast
Sep 23 01:01:30 arch kernel: Bluetooth: BNEP socket layer initialized
Sep 23 01:01:30 arch kernel: Bluetooth: MGMT ver 1.22
Sep 23 01:01:30 arch kernel: pcieport 10000:e0:06.0: Primary bus is hard wired to 0
Sep 23 01:01:30 arch kernel: pcieport 10000:e0:06.2: Primary bus is hard wired to 0
Sep 23 01:01:30 arch kernel: pcieport 10000:e0:06.0: Primary bus is hard wired to 0
Sep 23 01:01:30 arch kernel: pcieport 10000:e0:06.2: Primary bus is hard wired to 0
Sep 23 01:01:30 arch supergfxd[1540]: DEBUG: do_driver_action: action = modprobe, [Device { dev_path: "/sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0", hotplug_path: None, vendor: Nvidia, is_dgpu: true, name: "0000:01:00.0", pci_id: "10DE:28A1" }, Device { dev_path: "/sys/devices/pci0000:00/0000:00:01.0/0000:01:00.1", hotplug_path: None, vendor: Nvidia, is_dgpu: false, name: "0000:01:00.1", pci_id: "10DE:22BE" }]
Sep 23 01:01:30 arch systemd-logind[1541]: New seat seat0.
Sep 23 01:01:30 arch supergfxd[1540]: DEBUG: Did modprobe for driver nvidia_drm
Sep 23 01:01:30 arch kernel: NET: Registered PF_ALG protocol family
Sep 23 01:01:30 arch supergfxd[1540]: DEBUG: Did modprobe for driver nvidia_modeset
Sep 23 01:01:30 arch systemd-logind[1541]: Watching system buttons on /dev/input/event2 (Power Button)
Sep 23 01:01:30 arch systemd-logind[1541]: Watching system buttons on /dev/input/event0 (Lid Switch)
Sep 23 01:01:30 arch systemd-logind[1541]: Watching system buttons on /dev/input/event1 (Power Button)
Sep 23 01:01:30 arch systemd-logind[1541]: Watching system buttons on /dev/input/event5 (Logitech G102 LIGHTSYNC Gaming Mouse Keyboard)
Sep 23 01:01:30 arch systemd-logind[1541]: Watching system buttons on /dev/input/event6 (Intel HID events)
Sep 23 01:01:30 arch systemd-logind[1541]: Watching system buttons on /dev/input/event7 (Intel HID 5 button array)
Sep 23 01:01:30 arch systemd-logind[1541]: Watching system buttons on /dev/input/event3 (AT Translated Set 2 keyboard)
Sep 23 01:01:30 arch systemd[1]: Started User Login Management.
Sep 23 01:01:30 arch supergfxd[1540]: DEBUG: Did modprobe for driver nvidia_uvm
Sep 23 01:01:30 arch supergfxd[1540]: DEBUG: Did modprobe for driver nvidia
Sep 23 01:01:30 arch systemd[1]: Started nvidia-powerd service.
Sep 23 01:01:30 arch supergfxd[1540]: DEBUG: Did CommandArgs { inner: ["start", "nvidia-powerd.service"] }
Sep 23 01:01:30 arch supergfxd[1540]: DEBUG: set_runtime_pm: pm = Auto, [Device { dev_path: "/sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0", hotplug_path: None, vendor: Nvidia, is_dgpu: true, name: "0000:01:00.0", pci_id: "10DE:28A1" }, Device { dev_path: "/sys/devices/pci0000:00/0000:00:01.0/0000:01:00.1", hotplug_path: None, vendor: Nvidia, is_dgpu: false, name: "0000:01:00.1", pci_id: "10DE:22BE" }]
Sep 23 01:01:30 arch supergfxd[1540]: INFO: set_runtime_pm: Set PM on "/sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0" to Auto
Sep 23 01:01:30 arch supergfxd[1540]: INFO: set_runtime_pm: Set PM on "/sys/devices/pci0000:00/0000:00:01.0/0000:01:00.1" to Auto
Sep 23 01:01:30 arch supergfxd[1540]: INFO: reload: Reloaded gfx mode: Hybrid
Sep 23 01:01:30 arch polkitd[1573]: Started polkitd version 125
Sep 23 01:01:30 arch /usr/bin/nvidia-powerd[1602]: nvidia-powerd version:1.0(build 1)
Sep 23 01:01:30 arch systemd[1]: Started Authorization Manager.
Sep 23 01:01:30 arch boltd[1533]: watchdog: enabled [pulse: 90s]
Sep 23 01:01:30 arch boltd[1533]: udev: initializing udev
Sep 23 01:01:30 arch systemd[1]: Started IIO Sensor Proxy service.
Sep 23 01:01:30 arch boltd[1533]: store: loading domains
Sep 23 01:01:30 arch boltd[1533]: store: loading devices
Sep 23 01:01:30 arch boltd[1533]: power: state located at: /run/boltd/power
Sep 23 01:01:30 arch boltd[1533]: power: force power support: no
Sep 23 01:01:30 arch boltd[1533]: udev: enumerating devices
Sep 23 01:01:30 arch boltd[1533]: [b4f78780-4031-domain0                    ] newly connected [iommu+user] (/sys/devices/pci0000:00/0000:00:0d.2/domain0/0-0)
Sep 23 01:01:30 arch boltd[1533]: security level set to 'user'
Sep 23 01:01:30 arch boltd[1533]: [b4f78780-4031-domain0                    ] domain: registered (bootacl: 0/0)
Sep 23 01:01:30 arch boltd[1533]: [b4f78780-4031-domain0                    ] bootacl: bootacl not supported, no sync
Sep 23 01:01:30 arch boltd[1533]: [b4f78780-4031-domain0                    ] udev: failed to determine if uid is stable: unknown NHI PCI id '0xa73e'
Sep 23 01:01:30 arch boltd[1533]: [b4f78780-4031-domain0                    ] udev: uuid is stable: no (for NHI: 0xa73e)
Sep 23 01:01:30 arch boltd[1533]: global 'generation' set to '4'
Sep 23 01:01:30 arch boltd[1533]: [b4f78780-4031-Gen12                      ] device added, status: authorized, at /sys/devices/pci0000:00/0000:00:0d.2/domain0/0-0
Sep 23 01:01:30 arch boltd[1533]: [b4f78780-4031-Gen12                      ] labeling device: INTEL Gen12
Sep 23 01:01:30 arch boltd[1533]: [b4f78780-4031-domain0                    ] dbus: exported domain at /org/freedesktop/bolt/domains/b4f78780_4031_8bbc_ffff_ffffffffffff
Sep 23 01:01:30 arch boltd[1533]: [b4f78780-4031-Gen12                      ] dbus: exported device at /org/freedesktop/bolt/devices/b4f78780_4031...
Sep 23 01:01:30 arch systemd[1]: Started Thunderbolt system service.
Sep 23 01:01:30 arch /usr/bin/nvidia-powerd[1602]: Dbus Connection is established
Sep 23 01:01:30 arch systemd[1]: Started Hostname Service.
Sep 23 01:01:30 arch systemd[1]: Started Daemon for power management.
Sep 23 01:01:30 arch systemd[1]: Started firewalld - dynamic firewall daemon.
Sep 23 01:01:30 arch systemd[1]: Reached target Preparation for Network.
Sep 23 01:01:30 arch systemd[1]: Starting Network Manager...
Sep 23 01:01:30 arch input-remapper-service[1539]: input-remapper-service 2.0.1 f5151aab27ae0e7d8b1f0c80ce92a718e3a86e71 https://github.com/sezanzeb/input-remapper
Sep 23 01:01:30 arch input-remapper-service[1539]: python-evdev 1.7.1
Sep 23 01:01:30 arch systemd[1]: Started Service to inject keycodes without the GUI application.
Sep 23 01:01:30 arch NetworkManager[1636]: <info>  [1727078490.8847] NetworkManager (version 1.48.10-1) is starting... (boot:4f3d097f-4dec-4202-857d-de11e7bcf4ae)
Sep 23 01:01:30 arch NetworkManager[1636]: <info>  [1727078490.8847] Read config: /etc/NetworkManager/NetworkManager.conf (lib: 20-connectivity.conf)
Sep 23 01:01:30 arch NetworkManager[1636]: <info>  [1727078490.8871] manager[0x5dd361d7ba20]: monitoring kernel firmware directory '/lib/firmware'.
Sep 23 01:01:30 arch NetworkManager[1636]: <info>  [1727078490.8882] hostname: hostname: using hostnamed
Sep 23 01:01:30 arch NetworkManager[1636]: <info>  [1727078490.8882] hostname: static hostname changed from (none) to "arch"
Sep 23 01:01:30 arch NetworkManager[1636]: <info>  [1727078490.8884] dns-mgr: init: dns=default,systemd-resolved rc-manager=symlink
Sep 23 01:01:30 arch NetworkManager[1636]: <info>  [1727078490.8888] rfkill0: found Wi-Fi radio killswitch (at /sys/devices/pci0000:00/0000:00:14.3/ieee80211/phy0/rfkill0) (driver iwlwifi)
Sep 23 01:01:30 arch NetworkManager[1636]: <info>  [1727078490.8889] manager[0x5dd361d7ba20]: rfkill: Wi-Fi hardware radio set enabled
Sep 23 01:01:30 arch NetworkManager[1636]: <info>  [1727078490.8889] manager[0x5dd361d7ba20]: rfkill: WWAN hardware radio set enabled
Sep 23 01:01:30 arch NetworkManager[1636]: <info>  [1727078490.8899] Loaded device plugin: NMAtmManager (/usr/lib/NetworkManager/1.48.10-1/libnm-device-plugin-adsl.so)
Sep 23 01:01:30 arch NetworkManager[1636]: <info>  [1727078490.8924] Loaded device plugin: NMBluezManager (/usr/lib/NetworkManager/1.48.10-1/libnm-device-plugin-bluetooth.so)
Sep 23 01:01:30 arch NetworkManager[1636]: <info>  [1727078490.8929] Loaded device plugin: NMOvsFactory (/usr/lib/NetworkManager/1.48.10-1/libnm-device-plugin-ovs.so)
Sep 23 01:01:30 arch NetworkManager[1636]: <info>  [1727078490.9072] Loaded device plugin: NMTeamFactory (/usr/lib/NetworkManager/1.48.10-1/libnm-device-plugin-team.so)
Sep 23 01:01:30 arch NetworkManager[1636]: <info>  [1727078490.9081] Loaded device plugin: NMWifiFactory (/usr/lib/NetworkManager/1.48.10-1/libnm-device-plugin-wifi.so)
Sep 23 01:01:30 arch NetworkManager[1636]: <info>  [1727078490.9084] Loaded device plugin: NMWwanFactory (/usr/lib/NetworkManager/1.48.10-1/libnm-device-plugin-wwan.so)
Sep 23 01:01:30 arch NetworkManager[1636]: <info>  [1727078490.9085] manager: rfkill: Wi-Fi enabled by radio killswitch; enabled by state file
Sep 23 01:01:30 arch NetworkManager[1636]: <info>  [1727078490.9085] manager: rfkill: WWAN enabled by radio killswitch; enabled by state file
Sep 23 01:01:30 arch NetworkManager[1636]: <info>  [1727078490.9085] manager: Networking is enabled by state file
Sep 23 01:01:30 arch NetworkManager[1636]: <info>  [1727078490.9088] settings: Loaded settings plugin: keyfile (internal)
Sep 23 01:01:30 arch NetworkManager[1636]: <info>  [1727078490.9097] dhcp: init: Using DHCP client 'internal'
Sep 23 01:01:30 arch NetworkManager[1636]: <info>  [1727078490.9097] manager: (lo): new Loopback device (/org/freedesktop/NetworkManager/Devices/1)
Sep 23 01:01:30 arch NetworkManager[1636]: <info>  [1727078490.9101] device (lo): state change: unmanaged -> unavailable (reason 'connection-assumed', sys-iface-state: 'external')
Sep 23 01:01:30 arch NetworkManager[1636]: <info>  [1727078490.9103] device (lo): state change: unavailable -> disconnected (reason 'connection-assumed', sys-iface-state: 'external')
Sep 23 01:01:30 arch NetworkManager[1636]: <info>  [1727078490.9105] device (lo): Activation: starting connection 'lo' (af448b95-7dbc-4786-9736-5d41c0c06553)
Sep 23 01:01:30 arch NetworkManager[1636]: <info>  [1727078490.9107] manager: (enp44s0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/2)
Sep 23 01:01:30 arch NetworkManager[1636]: <info>  [1727078490.9111] settings: (enp44s0): created default wired connection 'Wired connection 1'
Sep 23 01:01:30 arch NetworkManager[1636]: <info>  [1727078490.9111] device (enp44s0): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
Sep 23 01:01:30 arch systemd[1]: Starting Network Manager Script Dispatcher Service...
Sep 23 01:01:30 arch kernel: Generic FE-GE Realtek PHY r8169-0-2c00:00: attached PHY driver (mii_bus:phy_addr=r8169-0-2c00:00, irq=MAC)
Sep 23 01:01:30 arch systemd[1]: Started Network Manager Script Dispatcher Service.
Sep 23 01:01:31 arch NetworkManager[1636]: <info>  [1727078491.1089] device (wlo1): driver supports Access Point (AP) mode
Sep 23 01:01:31 arch kernel: r8169 0000:2c:00.0 enp44s0: Link is Down
Sep 23 01:01:31 arch NetworkManager[1636]: <info>  [1727078491.1092] manager: (wlo1): new 802.11 Wi-Fi device (/org/freedesktop/NetworkManager/Devices/3)
Sep 23 01:01:31 arch NetworkManager[1636]: <info>  [1727078491.1093] device (wlo1): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
Sep 23 01:01:31 arch kernel: iwlwifi 0000:00:14.3: WRT: Invalid buffer destination
Sep 23 01:01:31 arch kernel: iwlwifi 0000:00:14.3: WFPM_UMAC_PD_NOTIFICATION: 0x20
Sep 23 01:01:31 arch kernel: iwlwifi 0000:00:14.3: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
Sep 23 01:01:31 arch kernel: iwlwifi 0000:00:14.3: WFPM_AUTH_KEY_0: 0x90
Sep 23 01:01:31 arch kernel: iwlwifi 0000:00:14.3: CNVI_SCU_SEQ_DATA_DW9: 0x0
Sep 23 01:01:31 arch kernel: iwlwifi 0000:00:14.3: RFIm is deactivated, reason = 4
Sep 23 01:01:31 arch kernel: iwlwifi 0000:00:14.3: Registered PHC clock: iwlwifi-PTP, with index: 0
Sep 23 01:01:31 arch NetworkManager[1636]: <info>  [1727078491.3915] device (wlo1): set-hw-addr: set MAC address to 8A:87:67:9F:5E:E6 (scanning)
Sep 23 01:01:31 arch kernel: iwlwifi 0000:00:14.3: WRT: Invalid buffer destination
Sep 23 01:01:31 arch kernel: iwlwifi 0000:00:14.3: WFPM_UMAC_PD_NOTIFICATION: 0x20
Sep 23 01:01:31 arch kernel: iwlwifi 0000:00:14.3: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
Sep 23 01:01:31 arch kernel: iwlwifi 0000:00:14.3: WFPM_AUTH_KEY_0: 0x90
Sep 23 01:01:31 arch kernel: iwlwifi 0000:00:14.3: CNVI_SCU_SEQ_DATA_DW9: 0x0
Sep 23 01:01:31 arch kernel: iwlwifi 0000:00:14.3: RFIm is deactivated, reason = 4
Sep 23 01:01:31 arch NetworkManager[1636]: <info>  [1727078491.6507] bus-manager: acquired D-Bus service "org.freedesktop.NetworkManager"
Sep 23 01:01:31 arch systemd[1]: Started Network Manager.
Sep 23 01:01:31 arch NetworkManager[1636]: <info>  [1727078491.6513] ovsdb: disconnected from ovsdb
Sep 23 01:01:31 arch NetworkManager[1636]: <info>  [1727078491.6514] device (lo): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'external')
Sep 23 01:01:31 arch NetworkManager[1636]: <info>  [1727078491.6515] device (lo): state change: prepare -> config (reason 'none', sys-iface-state: 'external')
Sep 23 01:01:31 arch NetworkManager[1636]: <info>  [1727078491.6516] device (lo): state change: config -> ip-config (reason 'none', sys-iface-state: 'external')
Sep 23 01:01:31 arch NetworkManager[1636]: <info>  [1727078491.6518] device (lo): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'external')
Sep 23 01:01:31 arch systemd[1]: Starting WPA supplicant...
Sep 23 01:01:31 arch NetworkManager[1636]: <info>  [1727078491.6525] device (lo): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'external')
Sep 23 01:01:31 arch NetworkManager[1636]: <info>  [1727078491.6526] device (lo): state change: secondaries -> activated (reason 'none', sys-iface-state: 'external')
Sep 23 01:01:31 arch NetworkManager[1636]: <info>  [1727078491.6528] device (lo): Activation: successful, device activated.
Sep 23 01:01:31 arch wpa_supplicant[1701]: Successfully initialized wpa_supplicant
Sep 23 01:01:31 arch systemd[1]: Started WPA supplicant.
Sep 23 01:01:31 arch systemd[1]: Reached target Network.
Sep 23 01:01:31 arch systemd[1]: Starting libvirt legacy monolithic daemon...
Sep 23 01:01:31 arch systemd[1]: Starting Permit User Sessions...
Sep 23 01:01:31 arch systemd[1]: Finished Permit User Sessions.
Sep 23 01:01:31 arch systemd[1]: Started Simple Desktop Display Manager.
Sep 23 01:01:31 arch NetworkManager[1636]: <info>  [1727078491.7172] device (wlo1): supplicant interface state: internal-starting -> disconnected
Sep 23 01:01:31 arch NetworkManager[1636]: <info>  [1727078491.7173] Wi-Fi P2P device controlled by interface wlo1 created
Sep 23 01:01:31 arch NetworkManager[1636]: <info>  [1727078491.7173] manager: (p2p-dev-wlo1): new 802.11 Wi-Fi P2P device (/org/freedesktop/NetworkManager/Devices/4)
Sep 23 01:01:31 arch NetworkManager[1636]: <info>  [1727078491.7174] device (p2p-dev-wlo1): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
Sep 23 01:01:31 arch NetworkManager[1636]: <info>  [1727078491.7176] device (wlo1): state change: unavailable -> disconnected (reason 'supplicant-available', sys-iface-state: 'managed')
Sep 23 01:01:31 arch NetworkManager[1636]: <info>  [1727078491.7178] device (p2p-dev-wlo1): state change: unavailable -> disconnected (reason 'none', sys-iface-state: 'managed')
Sep 23 01:01:31 arch sddm[1706]: Initializing...
Sep 23 01:01:31 arch sddm[1706]: Starting...
Sep 23 01:01:31 arch sddm[1706]: Logind interface found
Sep 23 01:01:31 arch sddm[1706]: Adding new display...
Sep 23 01:01:31 arch sddm[1706]: Loaded empty theme configuration
Sep 23 01:01:31 arch sddm[1706]: Xauthority path: "/run/sddm/xauth_UxXQjS"
Sep 23 01:01:31 arch sddm[1706]: Using VT 1
Sep 23 01:01:31 arch sddm[1706]: Display server starting...
Sep 23 01:01:31 arch sddm[1706]: Writing cookie to "/run/sddm/xauth_UxXQjS"
Sep 23 01:01:31 arch sddm[1706]: Running: /usr/bin/X -nolisten tcp -background none -seat seat0 vt1 -auth /run/sddm/xauth_UxXQjS -noreset -displayfd 16
Sep 23 01:01:31 arch systemd[1]: Started libvirt legacy monolithic daemon.
Sep 23 01:01:31 arch systemd[1]: Reached target Multi-User System.
Sep 23 01:01:31 arch systemd[1]: Reached target Graphical Interface.
Sep 23 01:01:31 arch systemd[1]: Starting TLP system startup/shutdown...
Sep 23 01:01:31 arch kernel: bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
Sep 23 01:01:31 arch NetworkManager[1636]: <info>  [1727078491.7704] manager: (virbr0): new Bridge device (/org/freedesktop/NetworkManager/Devices/5)
Sep 23 01:01:31 arch tlp[1729]: Applying power save settings...done.
Sep 23 01:01:31 arch tlp[1729]: Setting battery charge thresholds...done.
Sep 23 01:01:31 arch systemd[1]: Finished TLP system startup/shutdown.
Sep 23 01:01:31 arch systemd[1]: Startup finished in 3.867s (firmware) + 2.746s (loader) + 28.962s (kernel) + 5.487s (userspace) = 41.065s.
Sep 23 01:01:31 arch NetworkManager[1636]: <info>  [1727078491.9659] device (virbr0): state change: unmanaged -> unavailable (reason 'connection-assumed', sys-iface-state: 'external')
Sep 23 01:01:31 arch NetworkManager[1636]: <info>  [1727078491.9662] device (virbr0): state change: unavailable -> disconnected (reason 'connection-assumed', sys-iface-state: 'external')
Sep 23 01:01:31 arch NetworkManager[1636]: <info>  [1727078491.9665] device (virbr0): Activation: starting connection 'virbr0' (1ab6ebb2-0574-4689-9595-011f53d22f85)
Sep 23 01:01:31 arch NetworkManager[1636]: <info>  [1727078491.9666] device (virbr0): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'external')
Sep 23 01:01:31 arch NetworkManager[1636]: <info>  [1727078491.9667] device (virbr0): state change: prepare -> config (reason 'none', sys-iface-state: 'external')
Sep 23 01:01:31 arch NetworkManager[1636]: <info>  [1727078491.9668] device (virbr0): state change: config -> ip-config (reason 'none', sys-iface-state: 'external')
Sep 23 01:01:31 arch NetworkManager[1636]: <info>  [1727078491.9668] device (virbr0): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'external')
Sep 23 01:01:31 arch NetworkManager[1636]: <info>  [1727078491.9674] device (virbr0): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'external')
Sep 23 01:01:31 arch NetworkManager[1636]: <info>  [1727078491.9675] device (virbr0): state change: secondaries -> activated (reason 'none', sys-iface-state: 'external')
Sep 23 01:01:31 arch NetworkManager[1636]: <info>  [1727078491.9676] manager: NetworkManager state is now CONNECTED_LOCAL
Sep 23 01:01:31 arch NetworkManager[1636]: <info>  [1727078491.9676] device (virbr0): Activation: successful, device activated.
Sep 23 01:01:31 arch dnsmasq[1965]: started, version 2.90 cachesize 150
Sep 23 01:01:31 arch dnsmasq[1965]: compile time options: IPv6 GNU-getopt DBus no-UBus i18n IDN2 DHCP DHCPv6 no-Lua TFTP conntrack ipset nftset auth cryptohash DNSSEC loop-detect inotify dumpfile
Sep 23 01:01:31 arch dnsmasq-dhcp[1965]: DHCP, IP range 192.168.122.2 -- 192.168.122.254, lease time 1h
Sep 23 01:01:31 arch dnsmasq-dhcp[1965]: DHCP, sockets bound exclusively to interface virbr0
Sep 23 01:01:31 arch dnsmasq[1965]: no servers found in /etc/resolv.conf, will retry
Sep 23 01:01:31 arch dnsmasq[1965]: read /etc/hosts - 0 names
Sep 23 01:01:31 arch dnsmasq[1965]: read /var/lib/libvirt/dnsmasq/default.addnhosts - 0 names
Sep 23 01:01:31 arch dnsmasq-dhcp[1965]: read /var/lib/libvirt/dnsmasq/default.hostsfile
Sep 23 01:01:32 arch sddm[1706]: Setting default cursor
Sep 23 01:01:32 arch sddm[1706]: Running display setup script  "/usr/share/sddm/scripts/Xsetup"
Sep 23 01:01:32 arch sddm[1706]: Display server started.
Sep 23 01:01:32 arch sddm[1706]: Socket server starting...
Sep 23 01:01:32 arch sddm[1706]: Socket server started.
Sep 23 01:01:32 arch sddm[1706]: Loading theme configuration from "/usr/share/sddm/themes/MacSequoia-Dark/theme.conf"
Sep 23 01:01:32 arch sddm[1706]: Greeter starting...
Sep 23 01:01:32 arch sddm-helper[1995]: [PAM] Starting...
Sep 23 01:01:32 arch sddm-helper[1995]: [PAM] Authenticating...
Sep 23 01:01:32 arch sddm-helper[1995]: [PAM] returning.
Sep 23 01:01:32 arch sddm-helper[1995]: pam_unix(sddm-greeter:session): session opened for user sddm(uid=958) by (uid=0)
Sep 23 01:01:32 arch sddm-helper[1995]: pam_systemd(sddm-greeter:session): New sd-bus connection (system-bus-pam-systemd-1995) opened.
Sep 23 01:01:32 arch systemd-logind[1541]: New session c1 of user sddm.
Sep 23 01:01:32 arch systemd[1]: Created slice User Slice of UID 958.
Sep 23 01:01:32 arch systemd[1]: Starting User Runtime Directory /run/user/958...
Sep 23 01:01:32 arch systemd[1]: Finished User Runtime Directory /run/user/958.
Sep 23 01:01:32 arch systemd[1]: Starting User Manager for UID 958...
Sep 23 01:01:32 arch dbus-broker-launch[1530]: Activation request for 'org.freedesktop.home1' failed: The systemd unit 'dbus-org.freedesktop.home1.service' could not be found.
Sep 23 01:01:32 arch (systemd)[1999]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8002 service=[systemd-user] terminal=[] user=[sddm] ruser=[<unknown>] rhost=[<unknown>]
Sep 23 01:01:32 arch (systemd)[1999]: pam_unix(systemd-user:session): session opened for user sddm(uid=958) by sddm(uid=0)
Sep 23 01:01:32 arch systemd-logind[1541]: New session 1 of user sddm.
Sep 23 01:01:32 arch systemd[1999]: Queued start job for default target Main User Target.
Sep 23 01:01:32 arch systemd[1999]: Created slice User Application Slice.
Sep 23 01:01:32 arch systemd[1999]: Started Submitting pending crash events (file monitor).
Sep 23 01:01:32 arch systemd[1999]: Cleanup lingering KCrash metadata was skipped because of an unmet condition check (ConditionPathExistsGlob=/var/lib/sddm/.cache/kcrash-metadata/*.ini).
Sep 23 01:01:32 arch systemd[1999]: Submitting pending crash events was skipped because of an unmet condition check (ConditionPathExistsGlob=/var/lib/sddm/.cache/drkonqi/sentry-envelopes/*).
Sep 23 01:01:32 arch systemd[1999]: Reached target Paths.
Sep 23 01:01:32 arch systemd[1999]: Reached target Timers.
Sep 23 01:01:32 arch systemd[1999]: Starting D-Bus User Message Bus Socket...
Sep 23 01:01:32 arch systemd[1999]: Listening on GnuPG network certificate management daemon.
Sep 23 01:01:32 arch systemd[1999]: Listening on Socket to launch DrKonqi for a systemd-coredump crash.
Sep 23 01:01:32 arch systemd[1999]: Listening on GNOME Keyring daemon.
Sep 23 01:01:32 arch systemd[1999]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
Sep 23 01:01:32 arch systemd[1999]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
Sep 23 01:01:32 arch systemd[1999]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
Sep 23 01:01:32 arch systemd[1999]: Listening on GnuPG cryptographic agent and passphrase cache.
Sep 23 01:01:32 arch systemd[1999]: Listening on GnuPG public key management service.
Sep 23 01:01:32 arch systemd[1999]: Listening on p11-kit server.
Sep 23 01:01:32 arch systemd[1999]: Listening on PipeWire PulseAudio.
Sep 23 01:01:32 arch systemd[1999]: Listening on PipeWire Multimedia System Sockets.
Sep 23 01:01:32 arch systemd[1999]: Listening on D-Bus User Message Bus Socket.
Sep 23 01:01:32 arch systemd[1999]: Reached target Sockets.
Sep 23 01:01:32 arch systemd[1999]: Reached target Basic System.
Sep 23 01:01:32 arch systemd[1999]: Cleanup lingering KCrash metadata was skipped because of an unmet condition check (ConditionPathExistsGlob=/var/lib/sddm/.cache/kcrash-metadata/*.ini).
Sep 23 01:01:32 arch systemd[1]: Started User Manager for UID 958.
Sep 23 01:01:32 arch systemd[1999]: Starting Update XDG user dir configuration...
Sep 23 01:01:32 arch systemd[1]: Started Session c1 of User sddm.
Sep 23 01:01:32 arch sddm-helper[1995]: Writing cookie to "/tmp/xauth_erVrsi"
Sep 23 01:01:32 arch sddm-helper[1995]: Starting X11 session: "" "/usr/bin/sddm-greeter-qt6 --socket /tmp/sddm-:0-sGpzrY --theme /usr/share/sddm/themes/MacSequoia-Dark"
Sep 23 01:01:32 arch systemd[1999]: Finished Update XDG user dir configuration.
Sep 23 01:01:32 arch systemd[1999]: Reached target Main User Target.
Sep 23 01:01:32 arch systemd[1999]: Startup finished in 115ms.
Sep 23 01:01:32 arch sddm[1706]: Greeter session started successfully
Sep 23 01:01:32 arch sddm-greeter-qt6[2011]: High-DPI autoscaling Enabled
Sep 23 01:01:32 arch sddm-greeter-qt6[2011]: Reading from "/usr/local/share/wayland-sessions/gnome-classic-wayland.desktop"
Sep 23 01:01:32 arch sddm-greeter-qt6[2011]: Reading from "/usr/share/wayland-sessions/gnome-classic-wayland.desktop"
Sep 23 01:01:32 arch sddm-greeter-qt6[2011]: Reading from "/usr/local/share/wayland-sessions/gnome-classic.desktop"
Sep 23 01:01:32 arch sddm-greeter-qt6[2011]: Reading from "/usr/share/wayland-sessions/gnome-classic.desktop"
Sep 23 01:01:32 arch sddm-greeter-qt6[2011]: Reading from "/usr/local/share/wayland-sessions/gnome-wayland.desktop"
Sep 23 01:01:32 arch sddm-greeter-qt6[2011]: Reading from "/usr/share/wayland-sessions/gnome-wayland.desktop"
Sep 23 01:01:32 arch sddm-greeter-qt6[2011]: Reading from "/usr/local/share/wayland-sessions/gnome.desktop"
Sep 23 01:01:32 arch sddm-greeter-qt6[2011]: Reading from "/usr/share/wayland-sessions/gnome.desktop"
Sep 23 01:01:32 arch sddm-greeter-qt6[2011]: Reading from "/usr/local/share/wayland-sessions/plasma.desktop"
Sep 23 01:01:32 arch sddm-greeter-qt6[2011]: Reading from "/usr/share/wayland-sessions/plasma.desktop"
Sep 23 01:01:32 arch sddm-greeter-qt6[2011]: Reading from "/usr/local/share/xsessions/gnome-classic-xorg.desktop"
Sep 23 01:01:32 arch sddm-greeter-qt6[2011]: Reading from "/usr/share/xsessions/gnome-classic-xorg.desktop"
Sep 23 01:01:32 arch sddm-greeter-qt6[2011]: Reading from "/usr/local/share/xsessions/gnome-classic.desktop"
Sep 23 01:01:32 arch sddm-greeter-qt6[2011]: Reading from "/usr/share/xsessions/gnome-classic.desktop"
Sep 23 01:01:32 arch sddm-greeter-qt6[2011]: Reading from "/usr/local/share/xsessions/gnome-xorg.desktop"
Sep 23 01:01:32 arch sddm-greeter-qt6[2011]: Reading from "/usr/share/xsessions/gnome-xorg.desktop"
Sep 23 01:01:32 arch sddm-greeter-qt6[2011]: Reading from "/usr/local/share/xsessions/gnome.desktop"
Sep 23 01:01:32 arch sddm-greeter-qt6[2011]: Reading from "/usr/share/xsessions/gnome.desktop"
Sep 23 01:01:32 arch sddm-greeter-qt6[2011]: Reading from "/usr/local/share/xsessions/plasmax11.desktop"
Sep 23 01:01:32 arch sddm-greeter-qt6[2011]: Reading from "/usr/share/xsessions/plasmax11.desktop"
Sep 23 01:01:32 arch sddm-greeter-qt6[2011]: Loading theme configuration from "/usr/share/sddm/themes/MacSequoia-Dark/theme.conf"
Sep 23 01:01:32 arch systemd[1999]: Created slice User Core Session Slice.
Sep 23 01:01:32 arch systemd[1999]: Starting D-Bus User Message Bus...
Sep 23 01:01:32 arch dbus-broker-launch[2019]: Service file '/usr/share//dbus-1/services/org.kde.dolphin.FileManager1.service' is not named after the D-Bus name 'org.freedesktop.FileManager1'.
Sep 23 01:01:32 arch dbus-broker-launch[2019]: Ignoring duplicate name 'org.freedesktop.FileManager1' in service file '/usr/share//dbus-1/services/org.kde.dolphin.FileManager1.service'
Sep 23 01:01:32 arch dbus-broker-launch[2019]: Service file '/usr/share//dbus-1/services/org.kde.kscreen.service' is not named after the D-Bus name 'org.kde.KScreen'.
Sep 23 01:01:32 arch dbus-broker-launch[2019]: Service file '/usr/share//dbus-1/services/org.kde.plasma.Notifications.service' is not named after the D-Bus name 'org.freedesktop.Notifications'.
Sep 23 01:01:32 arch dbus-broker-launch[2019]: Service file '/usr/share//dbus-1/services/org.xfce.Thunar.FileManager1.service' is not named after the D-Bus name 'org.freedesktop.FileManager1'.
Sep 23 01:01:32 arch dbus-broker-launch[2019]: Ignoring duplicate name 'org.freedesktop.FileManager1' in service file '/usr/share//dbus-1/services/org.xfce.Thunar.FileManager1.service'
Sep 23 01:01:32 arch dbus-broker-launch[2019]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +31: Eavesdropping is deprecated and ignored
Sep 23 01:01:32 arch dbus-broker-launch[2019]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +33: Eavesdropping is deprecated and ignored
Sep 23 01:01:32 arch systemd[1999]: Started D-Bus User Message Bus.
Sep 23 01:01:32 arch dbus-broker-launch[2019]: Ready
Sep 23 01:01:32 arch sddm-greeter-qt6[2011]: Connected to the daemon.
Sep 23 01:01:32 arch sddm[1706]: Message received from greeter: Connect
Sep 23 01:01:32 arch sddm-greeter-qt6[2011]: Loading file:///usr/share/sddm/themes/MacSequoia-Dark/Main.qml...
Sep 23 01:01:32 arch sddm-greeter-qt6[2011]: KeyStatesEngine is deprecated. Use KeyState from org.kde.plasma.private.keyboardindicator instead.
Sep 23 01:01:33 arch sddm-greeter-qt6[2011]: file:///usr/share/sddm/themes/MacSequoia-Dark/Login.qml:136:9: QML Connections: Implicitly defined onFoo properties in Connections are deprecated. Use this syntax instead: function onFoo(<arguments>) { ... }
Sep 23 01:01:33 arch sddm-greeter-qt6[2011]: file:///usr/share/sddm/themes/MacSequoia-Dark/Login.qml:145:5: QML QQuickImage: Detected anchors on an item that is managed by a layout. This is undefined behavior; use Layout.alignment instead.
Sep 23 01:01:33 arch sddm-greeter-qt6[2011]: file:///usr/share/sddm/themes/MacSequoia-Dark/Login.qml:145:5: QML QQuickImage: Detected anchors on an item that is managed by a layout. This is undefined behavior; use Layout.alignment instead.
Sep 23 01:01:33 arch kernel: ucsi_acpi USBC000:00: error -ETIMEDOUT: PPM init failed
Sep 23 01:01:33 arch sddm-greeter-qt6[2011]: file:///usr/share/sddm/themes/MacSequoia-Dark/Input.qml:9:5: Unable to assign [undefined] to QString
Sep 23 01:01:33 arch sddm-greeter-qt6[2011]: file:///usr/share/sddm/themes/MacSequoia-Dark/Login.qml:106:9: Unable to assign [undefined] to QString
Sep 23 01:01:33 arch sddm-greeter-qt6[2011]: file:///usr/share/sddm/themes/MacSequoia-Dark/Login.qml:101:9: Unable to assign [undefined] to QString
Sep 23 01:01:33 arch sddm-greeter-qt6[2011]: Adding view for "eDP-2" QRect(0,0 2880x1620)
Sep 23 01:01:33 arch sddm-greeter-qt6[2011]: Message received from daemon: Capabilities
Sep 23 01:01:33 arch sddm-greeter-qt6[2011]: Message received from daemon: HostName
Sep 23 01:01:34 arch sddm-greeter-qt6[2011]: file:///usr/share/sddm/themes/MacSequoia-Dark/Login.qml:116:9 Parameter "event" is not declared. Injection of parameters into signal handlers is deprecated. Use JavaScript functions with formal parameters instead.
Sep 23 01:01:34 arch sddm-greeter-qt6[2011]: file:///usr/share/sddm/themes/MacSequoia-Dark/Login.qml:145:5: QML QQuickImage: Detected anchors on an item that is managed by a layout. This is undefined behavior; use Layout.alignment instead.
Sep 23 01:01:34 arch sddm-greeter-qt6[2011]: file:///usr/share/sddm/themes/MacSequoia-Dark/Login.qml:145:5: QML QQuickImage: Detected anchors on an item that is managed by a layout. This is undefined behavior; use Layout.alignment instead.
Sep 23 01:01:34 arch sddm-greeter-qt6[2011]: file:///usr/share/sddm/themes/MacSequoia-Dark/Login.qml:145:5: QML QQuickImage: Detected anchors on an item that is managed by a layout. This is undefined behavior; use Layout.alignment instead.
Sep 23 01:01:34 arch sddm-greeter-qt6[2011]: file:///usr/share/sddm/themes/MacSequoia-Dark/Login.qml:145:5: QML QQuickImage: Detected anchors on an item that is managed by a layout. This is undefined behavior; use Layout.alignment instead.
Sep 23 01:01:34 arch sddm-greeter-qt6[2011]: file:///usr/share/sddm/themes/MacSequoia-Dark/Login.qml:145:5: QML QQuickImage: Detected anchors on an item that is managed by a layout. This is undefined behavior; use Layout.alignment instead.
Sep 23 01:01:35 arch sddm-greeter-qt6[2011]: file:///usr/share/sddm/themes/MacSequoia-Dark/Login.qml:145:5: QML QQuickImage: Detected anchors on an item that is managed by a layout. This is undefined behavior; use Layout.alignment instead.
Sep 23 01:01:35 arch wpa_supplicant[1701]: wlo1: CTRL-EVENT-REGDOM-CHANGE init=DRIVER type=COUNTRY alpha2=IN
Sep 23 01:01:35 arch wpa_supplicant[1701]: wlo1: CTRL-EVENT-REGDOM-CHANGE init=DRIVER type=COUNTRY alpha2=IN
Sep 23 01:01:35 arch sddm-greeter-qt6[2011]: file:///usr/share/sddm/themes/MacSequoia-Dark/Login.qml:145:5: QML QQuickImage: Detected anchors on an item that is managed by a layout. This is undefined behavior; use Layout.alignment instead.
Sep 23 01:01:35 arch sddm-greeter-qt6[2011]: file:///usr/share/sddm/themes/MacSequoia-Dark/Login.qml:145:5: QML QQuickImage: Detected anchors on an item that is managed by a layout. This is undefined behavior; use Layout.alignment instead.
Sep 23 01:01:35 arch sddm-greeter-qt6[2011]: file:///usr/share/sddm/themes/MacSequoia-Dark/Login.qml:145:5: QML QQuickImage: Detected anchors on an item that is managed by a layout. This is undefined behavior; use Layout.alignment instead.
Sep 23 01:01:35 arch sddm-greeter-qt6[2011]: file:///usr/share/sddm/themes/MacSequoia-Dark/Main.qml:241:17 Parameter "username" is not declared. Injection of parameters into signal handlers is deprecated. Use JavaScript functions with formal parameters instead.
Sep 23 01:01:35 arch sddm-greeter-qt6[2011]: Reading from "/usr/share/wayland-sessions/plasma.desktop"
Sep 23 01:01:35 arch sddm[1706]: Message received from greeter: Login
Sep 23 01:01:35 arch sddm[1706]: Reading from "/usr/share/wayland-sessions/plasma.desktop"
Sep 23 01:01:35 arch sddm[1706]: Session "/usr/share/wayland-sessions/plasma.desktop" selected, command: "/usr/lib/plasma-dbus-run-session-if-needed /usr/bin/startplasma-wayland" for VT 2
Sep 23 01:01:35 arch sddm-helper[2095]: [PAM] Starting...
Sep 23 01:01:35 arch sddm-helper[2095]: [PAM] Authenticating...
Sep 23 01:01:35 arch sddm-helper[2095]: pam_systemd_home(sddm:auth): New sd-bus connection (system-bus-pam-systemd-home-2095) opened.
Sep 23 01:01:35 arch sddm-helper[2095]: [PAM] Preparing to converse...
Sep 23 01:01:35 arch sddm-helper[2095]: [PAM] Conversation with 1 messages
Sep 23 01:01:35 arch sddm-helper[2095]: gkr-pam: unable to locate daemon control file
Sep 23 01:01:35 arch sddm-helper[2095]: gkr-pam: stashed password to try later in open session
Sep 23 01:01:35 arch sddm-helper[2095]: [PAM] returning.
Sep 23 01:01:35 arch sddm-helper[2095]: pam_kwallet5(sddm:auth): pam_kwallet5: pam_sm_authenticate
Sep 23 01:01:35 arch sddm[1706]: Authentication for user  "admin"  successful
Sep 23 01:01:35 arch sddm-helper[2095]: pam_kwallet5(sddm:setcred): pam_kwallet5: pam_sm_setcred
Sep 23 01:01:35 arch sddm-helper[2095]: pam_unix(sddm:session): session opened for user admin(uid=1000) by admin(uid=0)
Sep 23 01:01:35 arch sddm-helper[2095]: pam_systemd(sddm:session): New sd-bus connection (system-bus-pam-systemd-2095) opened.
Sep 23 01:01:35 arch sddm-greeter-qt6[2011]: Message received from daemon: LoginSucceeded
Sep 23 01:01:35 arch systemd-logind[1541]: New session 2 of user admin.
Sep 23 01:01:35 arch systemd[1]: Created slice User Slice of UID 1000.
Sep 23 01:01:35 arch systemd[1]: Starting User Runtime Directory /run/user/1000...
Sep 23 01:01:35 arch systemd[1]: Finished User Runtime Directory /run/user/1000.
Sep 23 01:01:35 arch systemd[1]: Starting User Manager for UID 1000...
Sep 23 01:01:35 arch (systemd)[2101]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8002 service=[systemd-user] terminal=[] user=[admin] ruser=[<unknown>] rhost=[<unknown>]
Sep 23 01:01:35 arch (systemd)[2101]: pam_unix(systemd-user:session): session opened for user admin(uid=1000) by admin(uid=0)
Sep 23 01:01:35 arch systemd-logind[1541]: New session 3 of user admin.
Sep 23 01:01:35 arch sddm-helper[1995]: [PAM] Closing session
Sep 23 01:01:35 arch sddm-helper[1995]: pam_unix(sddm-greeter:session): session closed for user sddm
Sep 23 01:01:35 arch sddm-helper[1995]: pam_systemd(sddm-greeter:session): New sd-bus connection (system-bus-pam-systemd-1995) opened.
Sep 23 01:01:35 arch sddm-helper[1995]: [PAM] Ended.
Sep 23 01:01:35 arch sddm[1706]: Auth: sddm-helper exited successfully
Sep 23 01:01:35 arch sddm[1706]: Greeter stopped. SDDM::Auth::HELPER_SUCCESS
Sep 23 01:01:35 arch systemd[1]: session-c1.scope: Deactivated successfully.
Sep 23 01:01:35 arch systemd[1]: session-c1.scope: Consumed 548ms CPU time, 551.2M memory peak.
Sep 23 01:01:35 arch systemd-logind[1541]: Session c1 logged out. Waiting for processes to exit.
Sep 23 01:01:35 arch systemd-logind[1541]: Removed session c1.
Sep 23 01:01:36 arch systemd[2101]: Queued start job for default target Main User Target.
Sep 23 01:01:36 arch systemd-journald[637]: File /var/log/journal/9c61a3f814744af9b803e22e630365ba/user-1000.journal corrupted or uncleanly shut down, renaming and replacing.
Sep 23 01:01:36 arch systemd[2101]: Created slice User Application Slice.
Sep 23 01:01:36 arch systemd[2101]: Started Submitting pending crash events (file monitor).
Sep 23 01:01:36 arch systemd[2101]: Cleanup lingering KCrash metadata was skipped because of an unmet condition check (ConditionPathExistsGlob=/home/admin/.cache/kcrash-metadata/*.ini).
Sep 23 01:01:36 arch systemd[2101]: Submitting pending crash events was skipped because of an unmet condition check (ConditionPathExistsGlob=/home/admin/.cache/drkonqi/sentry-envelopes/*).
Sep 23 01:01:36 arch systemd[2101]: Reached target Paths.
Sep 23 01:01:36 arch systemd[2101]: Reached target Timers.
Sep 23 01:01:36 arch systemd[2101]: Starting D-Bus User Message Bus Socket...
Sep 23 01:01:36 arch systemd[2101]: Listening on GnuPG network certificate management daemon.
Sep 23 01:01:36 arch systemd[2101]: Listening on Socket to launch DrKonqi for a systemd-coredump crash.
Sep 23 01:01:36 arch systemd[2101]: Listening on GNOME Keyring daemon.
Sep 23 01:01:36 arch systemd[2101]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
Sep 23 01:01:36 arch systemd[2101]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
Sep 23 01:01:36 arch systemd[2101]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
Sep 23 01:01:36 arch systemd[2101]: Listening on GnuPG cryptographic agent and passphrase cache.
Sep 23 01:01:36 arch systemd[2101]: Listening on GnuPG public key management service.
Sep 23 01:01:36 arch systemd[2101]: Listening on p11-kit server.
Sep 23 01:01:36 arch systemd[2101]: Listening on PipeWire PulseAudio.
Sep 23 01:01:36 arch systemd[2101]: Listening on PipeWire Multimedia System Sockets.
Sep 23 01:01:36 arch systemd[2101]: Listening on D-Bus User Message Bus Socket.
Sep 23 01:01:36 arch systemd[2101]: Reached target Sockets.
Sep 23 01:01:36 arch systemd[2101]: Reached target Basic System.
Sep 23 01:01:36 arch systemd[2101]: Cleanup lingering KCrash metadata was skipped because of an unmet condition check (ConditionPathExistsGlob=/home/admin/.cache/kcrash-metadata/*.ini).
Sep 23 01:01:36 arch systemd[1]: Started User Manager for UID 1000.
Sep 23 01:01:36 arch systemd[2101]: Starting Update XDG user dir configuration...
Sep 23 01:01:36 arch systemd[1]: Started Session 2 of User admin.
Sep 23 01:01:36 arch systemd[2101]: Started GNOME Keyring daemon.
Sep 23 01:01:36 arch systemd[2101]: Finished Update XDG user dir configuration.
Sep 23 01:01:36 arch systemd[2101]: Reached target Main User Target.
Sep 23 01:01:36 arch systemd[2101]: Startup finished in 96ms.
Sep 23 01:01:36 arch gnome-keyring-daemon[2113]: GNOME_KEYRING_CONTROL=/run/user/1000/keyring
Sep 23 01:01:36 arch systemd[2101]: Created slice User Core Session Slice.
Sep 23 01:01:36 arch systemd[2101]: Starting D-Bus User Message Bus...
Sep 23 01:01:36 arch dbus-broker-launch[2120]: Service file '/usr/share//dbus-1/services/org.kde.dolphin.FileManager1.service' is not named after the D-Bus name 'org.freedesktop.FileManager1'.
Sep 23 01:01:36 arch dbus-broker-launch[2120]: Ignoring duplicate name 'org.freedesktop.FileManager1' in service file '/usr/share//dbus-1/services/org.kde.dolphin.FileManager1.service'
Sep 23 01:01:36 arch dbus-broker-launch[2120]: Service file '/usr/share//dbus-1/services/org.kde.kscreen.service' is not named after the D-Bus name 'org.kde.KScreen'.
Sep 23 01:01:36 arch dbus-broker-launch[2120]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +31: Eavesdropping is deprecated and ignored
Sep 23 01:01:36 arch dbus-broker-launch[2120]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +33: Eavesdropping is deprecated and ignored
Sep 23 01:01:36 arch dbus-broker-launch[2120]: Service file '/usr/share//dbus-1/services/org.kde.plasma.Notifications.service' is not named after the D-Bus name 'org.freedesktop.Notifications'.
Sep 23 01:01:36 arch dbus-broker-launch[2120]: Service file '/usr/share//dbus-1/services/org.xfce.Thunar.FileManager1.service' is not named after the D-Bus name 'org.freedesktop.FileManager1'.
Sep 23 01:01:36 arch dbus-broker-launch[2120]: Ignoring duplicate name 'org.freedesktop.FileManager1' in service file '/usr/share//dbus-1/services/org.xfce.Thunar.FileManager1.service'
Sep 23 01:01:36 arch systemd[2101]: Started D-Bus User Message Bus.
Sep 23 01:01:36 arch dbus-broker-launch[2120]: Ready
Sep 23 01:01:36 arch sddm-helper[2095]: gkr-pam: unlocked login keyring
Sep 23 01:01:36 arch sddm-helper[2095]: pam_kwallet5(sddm:session): pam_kwallet5: pam_sm_open_session
Sep 23 01:01:36 arch sddm-helper[2124]: pam_kwallet5: final socket path: /run/user/1000/kwallet5.socket
Sep 23 01:01:36 arch sddm-helper[2095]: Starting Wayland user session: "/usr/share/sddm/scripts/wayland-session" "/usr/lib/plasma-dbus-run-session-if-needed /usr/bin/startplasma-wayland"
Sep 23 01:01:36 arch sddm-helper[2126]: Jumping to VT 2
Sep 23 01:01:36 arch sddm-helper[2126]: VT mode didn't need to be fixed
Sep 23 01:01:36 arch sddm[1706]: Session started true
Sep 23 01:01:36 arch systemd[1]: Starting Locale Service...
Sep 23 01:01:36 arch systemd[1]: Started Locale Service.
Sep 23 01:01:36 arch systemd[2101]: Reload requested from client PID 2126 ('startplasma-way')...
Sep 23 01:01:36 arch systemd[2101]: Reloading...
Sep 23 01:01:36 arch systemd[2101]: Reloading finished in 86 ms.
Sep 23 01:01:36 arch systemd[2101]: Created slice Slice /app/dbus-:1.2-org.kde.KSplash.
Sep 23 01:01:36 arch systemd[2101]: Started dbus-:1.2-org.kde.KSplash@0.service.
Sep 23 01:01:36 arch systemd[2101]: Created slice User Background Tasks Slice.
Sep 23 01:01:36 arch systemd[2101]: Submitting pending crash events was skipped because of an unmet condition check (ConditionPathExistsGlob=/home/admin/.cache/drkonqi/sentry-envelopes/*).
Sep 23 01:01:36 arch systemd[2101]: Reached target Session services which should run early before the graphical session is brought up.
Sep 23 01:01:36 arch systemd[2101]: Starting KDE Global Shortcuts Server...
Sep 23 01:01:36 arch systemd[2101]: Starting KDE Window Manager...
Sep 23 01:01:36 arch systemd[2101]: Starting Baloo File Indexer Daemon...
Sep 23 01:01:36 arch systemd[2101]: Started KDE Window Manager.
Sep 23 01:01:36 arch systemd[2101]: Starting KDE Config Module Initialization...
Sep 23 01:01:36 arch systemd[2101]: Starting Splash screen shown during boot...
Sep 23 01:01:36 arch systemd[2101]: Started Baloo File Indexer Daemon.
Sep 23 01:01:36 arch systemd[2101]: Starting Portal service...
Sep 23 01:01:36 arch systemd[2101]: Started KDE Global Shortcuts Server.
Sep 23 01:01:36 arch systemd[1]: Starting Disk Manager...
Sep 23 01:01:36 arch systemd[2101]: Starting flatpak document portal service...
Sep 23 01:01:36 arch udisksd[2159]: udisks daemon version 2.10.1 starting
Sep 23 01:01:36 arch systemd[2101]: Starting sandboxed app permission store...
Sep 23 01:01:36 arch systemd[2101]: Started sandboxed app permission store.
Sep 23 01:01:36 arch systemd[2101]: Started flatpak document portal service.
Sep 23 01:01:36 arch xdg-desktop-por[2156]: Choosing gtk.portal for org.freedesktop.impl.portal.Lockdown as a last-resort fallback
Sep 23 01:01:36 arch xdg-desktop-por[2156]: The preferred method to match portal implementations to desktop environments is to use the portals.conf(5) configuration file
Sep 23 01:01:36 arch systemd[2101]: Starting Portal service (GTK/GNOME implementation)...
Sep 23 01:01:36 arch kwin_wayland[2149]: No backend specified, automatically choosing drm
Sep 23 01:01:36 arch systemd[1]: Started Disk Manager.
Sep 23 01:01:36 arch udisksd[2159]: Acquired the name org.freedesktop.UDisks2 on the system message bus
Sep 23 01:01:36 arch NetworkManager[1636]: <info>  [1727078496.5816] policy: auto-activating connection 'Srishti 5G' (c99e209a-fffd-4b73-bbec-f326aa8e60a8)
Sep 23 01:01:36 arch NetworkManager[1636]: <info>  [1727078496.5818] device (wlo1): Activation: starting connection 'Srishti 5G' (c99e209a-fffd-4b73-bbec-f326aa8e60a8)
Sep 23 01:01:36 arch NetworkManager[1636]: <info>  [1727078496.5819] device (wlo1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Sep 23 01:01:36 arch NetworkManager[1636]: <info>  [1727078496.5820] manager: NetworkManager state is now CONNECTING
Sep 23 01:01:36 arch NetworkManager[1636]: <info>  [1727078496.6041] device (wlo1): set-hw-addr: reset MAC address to C8:5E:A9:77:93:3B (preserve)
Sep 23 01:01:36 arch NetworkManager[1636]: <info>  [1727078496.6052] device (wlo1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Sep 23 01:01:36 arch NetworkManager[1636]: <info>  [1727078496.6053] device (wlo1): Activation: (wifi) access point 'Srishti 5G' has security, but secrets are required.
Sep 23 01:01:36 arch NetworkManager[1636]: <info>  [1727078496.6053] device (wlo1): state change: config -> need-auth (reason 'none', sys-iface-state: 'managed')
Sep 23 01:01:36 arch NetworkManager[1636]: <info>  [1727078496.6054] sup-iface[e46ca12ac55133db,0,wlo1]: wps: type pbc start...
Sep 23 01:01:36 arch NetworkManager[1636]: <warn>  [1727078496.6055] device (wlo1): no secrets: No agents were available for this request.
Sep 23 01:01:36 arch NetworkManager[1636]: <info>  [1727078496.6055] device (wlo1): state change: need-auth -> failed (reason 'no-secrets', sys-iface-state: 'managed')
Sep 23 01:01:36 arch NetworkManager[1636]: <info>  [1727078496.6055] manager: NetworkManager state is now CONNECTED_LOCAL
Sep 23 01:01:36 arch NetworkManager[1636]: <warn>  [1727078496.6056] device (wlo1): Activation: failed for connection 'Srishti 5G'
Sep 23 01:01:36 arch NetworkManager[1636]: <info>  [1727078496.6057] device (wlo1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Sep 23 01:01:36 arch NetworkManager[1636]: <info>  [1727078496.6277] device (wlo1): set-hw-addr: set MAC address to 8A:C5:ED:88:18:81 (scanning)
Sep 23 01:01:36 arch wpa_supplicant[1701]: wlo1: WPS-CANCEL
Sep 23 01:01:36 arch NetworkManager[1636]: <info>  [1727078496.6291] device (wlo1): supplicant interface state: disconnected -> interface_disabled
Sep 23 01:01:36 arch NetworkManager[1636]: <info>  [1727078496.6291] device (p2p-dev-wlo1): supplicant management interface state: disconnected -> interface_disabled
Sep 23 01:01:36 arch NetworkManager[1636]: <info>  [1727078496.6291] policy: auto-activating connection 'EXCITEL-5G' (e796f4ec-7934-4db1-abcf-8399719782b1)
Sep 23 01:01:36 arch NetworkManager[1636]: <info>  [1727078496.6293] device (wlo1): Activation: starting connection 'EXCITEL-5G' (e796f4ec-7934-4db1-abcf-8399719782b1)
Sep 23 01:01:36 arch NetworkManager[1636]: <info>  [1727078496.6293] device (wlo1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Sep 23 01:01:36 arch NetworkManager[1636]: <info>  [1727078496.6294] manager: NetworkManager state is now CONNECTING
Sep 23 01:01:36 arch NetworkManager[1636]: <info>  [1727078496.6437] device (wlo1): set-hw-addr: reset MAC address to C8:5E:A9:77:93:3B (preserve)
Sep 23 01:01:36 arch NetworkManager[1636]: <info>  [1727078496.6451] device (wlo1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Sep 23 01:01:36 arch NetworkManager[1636]: <info>  [1727078496.6452] device (wlo1): Activation: (wifi) access point 'EXCITEL-5G' has security, but secrets are required.
Sep 23 01:01:36 arch NetworkManager[1636]: <info>  [1727078496.6452] device (wlo1): state change: config -> need-auth (reason 'none', sys-iface-state: 'managed')
Sep 23 01:01:36 arch NetworkManager[1636]: <info>  [1727078496.6453] device (wlo1): supplicant interface state: interface_disabled -> inactive
Sep 23 01:01:36 arch NetworkManager[1636]: <info>  [1727078496.6453] device (p2p-dev-wlo1): supplicant management interface state: interface_disabled -> inactive
Sep 23 01:01:36 arch NetworkManager[1636]: <warn>  [1727078496.6453] device (wlo1): no secrets: No agents were available for this request.
Sep 23 01:01:36 arch NetworkManager[1636]: <info>  [1727078496.6453] device (wlo1): state change: need-auth -> failed (reason 'no-secrets', sys-iface-state: 'managed')
Sep 23 01:01:36 arch NetworkManager[1636]: <info>  [1727078496.6454] manager: NetworkManager state is now CONNECTED_LOCAL
Sep 23 01:01:36 arch NetworkManager[1636]: <warn>  [1727078496.6455] device (wlo1): Activation: failed for connection 'EXCITEL-5G'
Sep 23 01:01:36 arch NetworkManager[1636]: <info>  [1727078496.6455] device (wlo1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Sep 23 01:01:36 arch baloo_file[2148]: qt.dbus.integration: QDBusConnection: name 'org.freedesktop.UDisks2' had owner '' but we thought it was ':1.38'
Sep 23 01:01:36 arch NetworkManager[1636]: <info>  [1727078496.6656] device (wlo1): set-hw-addr: set MAC address to C2:39:2B:4A:BD:69 (scanning)
Sep 23 01:01:36 arch NetworkManager[1636]: <info>  [1727078496.6671] device (wlo1): supplicant interface state: inactive -> interface_disabled
Sep 23 01:01:36 arch NetworkManager[1636]: <info>  [1727078496.6671] device (p2p-dev-wlo1): supplicant management interface state: inactive -> interface_disabled
Sep 23 01:01:36 arch kwin_wayland[2149]: kwin_xkbcommon: XKB: [XKB-489] us:825:72: numeric keysym "0x1002039" (16785465)
Sep 23 01:01:36 arch kwin_wayland[2149]: kwin_xkbcommon: XKB: [XKB-489] us:826:72: numeric keysym "0x100203a" (16785466)
Sep 23 01:01:36 arch kwin_wayland[2149]: kwin_xkbcommon: XKB: [XKB-489] us:831:72: numeric keysym "0x1001e9e" (16785054)
Sep 23 01:01:36 arch kwin_wayland[2149]: kwin_xkbcommon: XKB: [XKB-489] us:825:72: numeric keysym "0x1002039" (16785465)
Sep 23 01:01:36 arch kwin_wayland[2149]: kwin_xkbcommon: XKB: [XKB-489] us:826:72: numeric keysym "0x100203a" (16785466)
Sep 23 01:01:36 arch kwin_wayland[2149]: kwin_xkbcommon: XKB: [XKB-489] us:831:72: numeric keysym "0x1001e9e" (16785054)
Sep 23 01:01:36 arch NetworkManager[1636]: <info>  [1727078496.6719] device (wlo1): supplicant interface state: interface_disabled -> inactive
Sep 23 01:01:36 arch NetworkManager[1636]: <info>  [1727078496.6719] device (p2p-dev-wlo1): supplicant management interface state: interface_disabled -> inactive
Sep 23 01:01:36 arch systemd[2101]: Started PipeWire Multimedia Service.
Sep 23 01:01:36 arch systemd[2101]: Started Multimedia Service Session Manager.
Sep 23 01:01:36 arch systemd[1]: Starting RealtimeKit Scheduling Policy Service...
Sep 23 01:01:36 arch wireplumber[2203]: wp-internal-comp-loader: Loading profile 'main'
Sep 23 01:01:36 arch systemd[1]: Started RealtimeKit Scheduling Policy Service.
Sep 23 01:01:36 arch rtkit-daemon[2218]: Successfully called chroot.
Sep 23 01:01:36 arch rtkit-daemon[2218]: Successfully dropped privileges.
Sep 23 01:01:36 arch rtkit-daemon[2218]: Successfully limited resources.
Sep 23 01:01:36 arch rtkit-daemon[2218]: Canary thread running.
Sep 23 01:01:36 arch rtkit-daemon[2218]: Running.
Sep 23 01:01:36 arch rtkit-daemon[2218]: Watchdog thread running.
Sep 23 01:01:36 arch rtkit-daemon[2218]: Supervising 0 threads of 0 processes of 0 users.
Sep 23 01:01:36 arch rtkit-daemon[2218]: Supervising 0 threads of 0 processes of 0 users.
Sep 23 01:01:36 arch rtkit-daemon[2218]: Supervising 0 threads of 0 processes of 0 users.
Sep 23 01:01:36 arch rtkit-daemon[2218]: Supervising 0 threads of 0 processes of 0 users.
Sep 23 01:01:36 arch rtkit-daemon[2218]: Supervising 0 threads of 0 processes of 0 users.
Sep 23 01:01:36 arch rtkit-daemon[2218]: Supervising 0 threads of 0 processes of 0 users.
Sep 23 01:01:36 arch rtkit-daemon[2218]: Successfully made thread 2202 of process 2202 owned by '1000' high priority at nice level -11.
Sep 23 01:01:36 arch rtkit-daemon[2218]: Supervising 1 threads of 1 processes of 1 users.
Sep 23 01:01:36 arch rtkit-daemon[2218]: Successfully made thread 2217 of process 2202 owned by '1000' RT at priority 20.
Sep 23 01:01:36 arch rtkit-daemon[2218]: Supervising 2 threads of 1 processes of 1 users.
Sep 23 01:01:36 arch rtkit-daemon[2218]: Successfully made thread 2203 of process 2203 owned by '1000' high priority at nice level -11.
Sep 23 01:01:36 arch rtkit-daemon[2218]: Supervising 3 threads of 2 processes of 1 users.
Sep 23 01:01:36 arch rtkit-daemon[2218]: Successfully made thread 2226 of process 2203 owned by '1000' RT at priority 20.
Sep 23 01:01:36 arch rtkit-daemon[2218]: Supervising 4 threads of 2 processes of 1 users.
Sep 23 01:01:36 arch kernel: Bluetooth: RFCOMM TTY layer initialized
Sep 23 01:01:36 arch kernel: Bluetooth: RFCOMM socket layer initialized
Sep 23 01:01:36 arch kernel: Bluetooth: RFCOMM ver 1.11
Sep 23 01:01:37 arch bluetoothd[1532]: Endpoint registered: sender=:1.43 path=/MediaEndpoint/A2DPSource/ldac
Sep 23 01:01:37 arch bluetoothd[1532]: Endpoint registered: sender=:1.43 path=/MediaEndpoint/A2DPSink/aptx_hd
Sep 23 01:01:37 arch bluetoothd[1532]: Endpoint registered: sender=:1.43 path=/MediaEndpoint/A2DPSource/aptx_hd
Sep 23 01:01:37 arch bluetoothd[1532]: Endpoint registered: sender=:1.43 path=/MediaEndpoint/A2DPSink/aptx
Sep 23 01:01:37 arch bluetoothd[1532]: Endpoint registered: sender=:1.43 path=/MediaEndpoint/A2DPSource/aptx
Sep 23 01:01:37 arch bluetoothd[1532]: Endpoint registered: sender=:1.43 path=/MediaEndpoint/A2DPSink/aac
Sep 23 01:01:37 arch bluetoothd[1532]: Endpoint registered: sender=:1.43 path=/MediaEndpoint/A2DPSource/aac
Sep 23 01:01:37 arch bluetoothd[1532]: Endpoint registered: sender=:1.43 path=/MediaEndpoint/A2DPSink/opus_g
Sep 23 01:01:37 arch bluetoothd[1532]: Endpoint registered: sender=:1.43 path=/MediaEndpoint/A2DPSource/opus_g
Sep 23 01:01:37 arch bluetoothd[1532]: Endpoint registered: sender=:1.43 path=/MediaEndpoint/A2DPSink/sbc
Sep 23 01:01:37 arch bluetoothd[1532]: Endpoint registered: sender=:1.43 path=/MediaEndpoint/A2DPSource/sbc
Sep 23 01:01:37 arch bluetoothd[1532]: Endpoint registered: sender=:1.43 path=/MediaEndpoint/A2DPSource/aptx_ll_1
Sep 23 01:01:37 arch bluetoothd[1532]: Endpoint registered: sender=:1.43 path=/MediaEndpoint/A2DPSource/aptx_ll_0
Sep 23 01:01:37 arch bluetoothd[1532]: Endpoint registered: sender=:1.43 path=/MediaEndpoint/A2DPSource/aptx_ll_duplex_1
Sep 23 01:01:37 arch bluetoothd[1532]: Endpoint registered: sender=:1.43 path=/MediaEndpoint/A2DPSource/aptx_ll_duplex_0
Sep 23 01:01:37 arch bluetoothd[1532]: Endpoint registered: sender=:1.43 path=/MediaEndpoint/A2DPSource/faststream
Sep 23 01:01:37 arch bluetoothd[1532]: Endpoint registered: sender=:1.43 path=/MediaEndpoint/A2DPSource/faststream_duplex
Sep 23 01:01:37 arch bluetoothd[1532]: Endpoint registered: sender=:1.43 path=/MediaEndpoint/A2DPSink/opus_05
Sep 23 01:01:37 arch bluetoothd[1532]: Endpoint registered: sender=:1.43 path=/MediaEndpoint/A2DPSource/opus_05
Sep 23 01:01:37 arch bluetoothd[1532]: Endpoint registered: sender=:1.43 path=/MediaEndpoint/A2DPSink/opus_05_duplex
Sep 23 01:01:37 arch bluetoothd[1532]: Endpoint registered: sender=:1.43 path=/MediaEndpoint/A2DPSource/opus_05_duplex
Sep 23 01:01:37 arch wireplumber[2203]: wp-device: SPA handle 'api.libcamera.enum.manager' could not be loaded; is it installed?
Sep 23 01:01:37 arch wireplumber[2203]: s-monitors-libcamera: PipeWire's libcamera SPA plugin is missing or broken. Some camera types may not be supported.
Sep 23 01:01:37 arch NetworkManager[1636]: <info>  [1727078497.8295] manager: startup complete
Sep 23 01:01:38 arch systemd[2101]: Starting Accessibility services bus...
Sep 23 01:01:38 arch kcminit_startup[2153]: Initializing  "/usr/lib/qt6/plugins/plasma/kcms/systemsettings/kcm_fonts.so"
Sep 23 01:01:38 arch systemd[2101]: Started Accessibility services bus.
Sep 23 01:01:38 arch dbus-broker-launch[2252]: Ready
Sep 23 01:01:38 arch systemd[2101]: Starting Virtual filesystem service...
Sep 23 01:01:38 arch systemd[2101]: Started Virtual filesystem service.
Sep 23 01:01:38 arch systemd[2101]: Created slice Slice /app/dbus-:1.20-org.a11y.atspi.Registry.
Sep 23 01:01:38 arch systemd[2101]: Started dbus-:1.20-org.a11y.atspi.Registry@0.service.
Sep 23 01:01:38 arch systemd[2101]: Started Portal service (GTK/GNOME implementation).
Sep 23 01:01:38 arch rtkit-daemon[2218]: Supervising 4 threads of 2 processes of 1 users.
Sep 23 01:01:38 arch rtkit-daemon[2218]: Supervising 4 threads of 2 processes of 1 users.
Sep 23 01:01:38 arch rtkit-daemon[2218]: Supervising 4 threads of 2 processes of 1 users.
Sep 23 01:01:38 arch kcminit_startup[2153]: Initializing  "/usr/lib/qt6/plugins/plasma/kcms/systemsettings/kcm_style.so"
Sep 23 01:01:38 arch kwin_wayland_wrapper[2295]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Sep 23 01:01:38 arch kwin_wayland_wrapper[2295]: > Warning:          Unsupported maximum keycode 708, clipping.
Sep 23 01:01:38 arch kwin_wayland_wrapper[2295]: >                   X11 cannot support keycodes above 255.
Sep 23 01:01:38 arch kwin_wayland_wrapper[2295]: > Warning:          Could not resolve keysym XF86KbdInputAssistPrevgrou
Sep 23 01:01:38 arch kwin_wayland_wrapper[2295]: > Warning:          Could not resolve keysym XF86KbdInputAssistNextgrou
Sep 23 01:01:38 arch kwin_wayland_wrapper[2295]: Errors from xkbcomp are not fatal to the X server
Sep 23 01:01:38 arch at-spi2-registryd[2291]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
Sep 23 01:01:38 arch kcminit[2297]: Initializing  "/usr/lib/qt6/plugins/plasma/kcms/systemsettings/kcm_fonts.so"
Sep 23 01:01:38 arch kcminit[2297]: Initializing  "/usr/lib/qt6/plugins/plasma/kcms/systemsettings/kcm_style.so"
Sep 23 01:01:38 arch kcminit_startup[2153]: Initializing  "/usr/lib/qt6/plugins/plasma/kcms/systemsettings/kcm_mouse.so"
Sep 23 01:01:38 arch systemd[2101]: Started KDE Config Module Initialization.
Sep 23 01:01:38 arch systemd[2101]: Starting KDE Session Management Server...
Sep 23 01:01:38 arch systemd[2101]: Started Unlock kwallet from pam credentials.
Sep 23 01:01:38 arch systemd[2101]: Starting KDE Daemon 6...
Sep 23 01:01:38 arch pam_kwallet_init[2317]: 2024/09/23 01:01:38 socat[2317] W address is opened in read-write mode but only supports read-only
Sep 23 01:01:38 arch systemd[2101]: Started KDE Daemon 6.
Sep 23 01:01:38 arch systemd[2101]: Starting KDE Configuration Module Initialization (Phase 1)...
Sep 23 01:01:38 arch kcminit_startup[2153]: Initializing  "/usr/lib/qt6/plugins/plasma/kcms/systemsettings_qwidgets/kcm_kgamma.so"
Sep 23 01:01:38 arch systemd[2101]: Started KDE Session Management Server.
Sep 23 01:01:38 arch kcminit_startup[2153]: Initializing  "/usr/lib/qt6/plugins/plasma/kcms/systemsettings/kcm_touchpad.so"
Sep 23 01:01:38 arch systemd[2101]: Starting KDE Plasma Workspace...
Sep 23 01:01:38 arch systemd[2101]: Finished KDE Configuration Module Initialization (Phase 1).
Sep 23 01:01:38 arch systemd[2101]: Starting User preferences database...
Sep 23 01:01:38 arch systemd[2101]: Started User preferences database.
Sep 23 01:01:38 arch xdg-desktop-por[2183]: Failed to load module "appmenu-gtk-module"
Sep 23 01:01:38 arch kded6[2315]: org.kde.colorcorrectlocationupdater: Geolocator stopped
Sep 23 01:01:38 arch kded6[2315]: QDBusObjectPath: invalid path "/modules/plasma-session-shortcuts"
Sep 23 01:01:38 arch kded6[2315]: kf.dbusaddons: The kded module name "plasma-session-shortcuts" is invalid!
Sep 23 01:01:38 arch kded6[2315]: org.kde.kameleon: found no RGB LED devices
Sep 23 01:01:38 arch NetworkManager[1636]: <info>  [1727078498.4697] agent-manager: agent[6eb9c92ea9caa3fd,:1.47/org.kde.plasma.networkmanagement/1000]: agent registered
Sep 23 01:01:38 arch NetworkManager[1636]: <info>  [1727078498.4698] policy: auto-activating connection 'Srishti 5G' (c99e209a-fffd-4b73-bbec-f326aa8e60a8)
Sep 23 01:01:38 arch NetworkManager[1636]: <info>  [1727078498.4700] device (wlo1): Activation: starting connection 'Srishti 5G' (c99e209a-fffd-4b73-bbec-f326aa8e60a8)
Sep 23 01:01:38 arch NetworkManager[1636]: <info>  [1727078498.4700] device (wlo1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Sep 23 01:01:38 arch NetworkManager[1636]: <info>  [1727078498.4701] manager: NetworkManager state is now CONNECTING
Sep 23 01:01:38 arch systemd[2101]: Starting KActivityManager Activity manager Service...
Sep 23 01:01:38 arch systemd[2101]: Started PipeWire PulseAudio.
Sep 23 01:01:38 arch systemd[2101]: Started KDE Plasma Workspace.
Sep 23 01:01:38 arch systemd[2101]: Reached target KDE Plasma Workspace Core.
Sep 23 01:01:38 arch NetworkManager[1636]: <info>  [1727078498.4970] device (wlo1): set-hw-addr: reset MAC address to C8:5E:A9:77:93:3B (preserve)
Sep 23 01:01:38 arch systemd[2101]: Started Consume pending crashes using DrKonqi.
Sep 23 01:01:38 arch systemd[2101]: Started Proxies GTK DBus menus to a Plasma readable format.
Sep 23 01:01:38 arch NetworkManager[1636]: <info>  [1727078498.4987] device (wlo1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Sep 23 01:01:38 arch systemd[2101]: Starting KDE PolicyKit Authentication Agent...
Sep 23 01:01:38 arch NetworkManager[1636]: <info>  [1727078498.4988] device (wlo1): Activation: (wifi) access point 'Srishti 5G' has security, but secrets are required.
Sep 23 01:01:38 arch NetworkManager[1636]: <info>  [1727078498.4988] device (wlo1): state change: config -> need-auth (reason 'none', sys-iface-state: 'managed')
Sep 23 01:01:38 arch NetworkManager[1636]: <info>  [1727078498.4989] sup-iface[e46ca12ac55133db,0,wlo1]: wps: type pbc start...
Sep 23 01:01:38 arch systemd[2101]: Starting Powerdevil...
Sep 23 01:01:38 arch wpa_supplicant[1701]: wlo1: WPS-PBC-ACTIVE
Sep 23 01:01:38 arch systemd[2101]: Starting Xdg Desktop Portal For KDE...
Sep 23 01:01:38 arch systemd[2101]: Started Handle legacy xembed system tray icons.
Sep 23 01:01:38 arch plasmashell[2356]: kde.plasmashell: Aborting shell load: The activity manager daemon (kactivitymanagerd) is not running.
Sep 23 01:01:38 arch plasmashell[2356]: kde.plasmashell: If this Plasma has been installed into a custom prefix, verify that its D-Bus services dir is known to the system for the daemon to be activatable.
Sep 23 01:01:38 arch rtkit-daemon[2218]: Supervising 4 threads of 2 processes of 1 users.
Sep 23 01:01:38 arch rtkit-daemon[2218]: Supervising 4 threads of 2 processes of 1 users.
Sep 23 01:01:38 arch rtkit-daemon[2218]: Supervising 4 threads of 2 processes of 1 users.
Sep 23 01:01:38 arch NetworkManager[1636]: <info>  [1727078498.5048] device (wlo1): supplicant interface state: inactive -> scanning
Sep 23 01:01:38 arch NetworkManager[1636]: <info>  [1727078498.5048] device (p2p-dev-wlo1): supplicant management interface state: inactive -> scanning
Sep 23 01:01:38 arch rtkit-daemon[2218]: Successfully made thread 2415 of process 2415 owned by '1000' high priority at nice level -11.
Sep 23 01:01:38 arch rtkit-daemon[2218]: Supervising 5 threads of 3 processes of 1 users.
Sep 23 01:01:38 arch rtkit-daemon[2218]: Successfully made thread 2424 of process 2415 owned by '1000' RT at priority 20.
Sep 23 01:01:38 arch rtkit-daemon[2218]: Supervising 6 threads of 3 processes of 1 users.
Sep 23 01:01:38 arch kded6[2315]: QDBusObjectPath: invalid path "/modules/kded_plasma-welcome"
Sep 23 01:01:38 arch kded6[2315]: kf.dbusaddons: The kded module name "kded_plasma-welcome" is invalid!
Sep 23 01:01:38 arch kded6[2315]: org.kde.plasma.printmanager.kded: unable to register service to dbus
Sep 23 01:01:38 arch kactivitymanagerd[2413]: kf.windowsystem: virtual void KX11Extras::connectNotify(const QMetaMethod&) may only be used on X11
Sep 23 01:01:38 arch kactivitymanagerd[2413]: kf.windowsystem: virtual void KX11Extras::connectNotify(const QMetaMethod&) may only be used on X11
Sep 23 01:01:38 arch systemd[2101]: Started KActivityManager Activity manager Service.
Sep 23 01:01:38 arch plasmashell[2356]: kde.plasmashell: Aborting shell load: The activity manager daemon (kactivitymanagerd) is not running.
Sep 23 01:01:38 arch plasmashell[2356]: kde.plasmashell: If this Plasma has been installed into a custom prefix, verify that its D-Bus services dir is known to the system for the daemon to be activatable.
Sep 23 01:01:38 arch kconf_update[2447]: kf.config.kconf_update: /usr/share/kconf_update/ark.upd defined Version=5 but Version=6 was expected
Sep 23 01:01:38 arch kconf_update[2447]: kf.config.kconf_update: /usr/share/kconf_update/dolphin_detailsmodesettings.upd defined Version=5 but Version=6 was expected
Sep 23 01:01:38 arch kconf_update[2447]: kf.config.kconf_update: /usr/share/kconf_update/dolphin_directorysizemode.upd defined Version=5 but Version=6 was expected
Sep 23 01:01:38 arch kconf_update[2447]: kf.config.kconf_update: /usr/share/kconf_update/okular.upd defined Version=5 but Version=6 was expected
Sep 23 01:01:38 arch systemd[2101]: Started KDE PolicyKit Authentication Agent.
Sep 23 01:01:38 arch polkit-kde-authentication-agent-1[2418]: New PolkitAgentListener  0x57962644d8a0
Sep 23 01:01:38 arch polkit-kde-authentication-agent-1[2418]: Adding new listener  PolkitQt1::Agent::Listener(0x57962644d290) for  0x57962644d8a0
Sep 23 01:01:38 arch polkit-kde-authentication-agent-1[2418]: Listener online
Sep 23 01:01:38 arch systemd[2101]: Started Xdg Desktop Portal For KDE.
Sep 23 01:01:38 arch systemd[2101]: Starting Track hardware statistics...
Sep 23 01:01:38 arch polkit-kde-authentication-agent-1[2418]: Authentication agent result: true
Sep 23 01:01:38 arch xdg-desktop-por[2156]: Choosing kwallet.portal for org.freedesktop.impl.portal.Secret via the deprecated UseIn key
Sep 23 01:01:38 arch systemd[2101]: Started Portal service.
Sep 23 01:01:38 arch dbus-broker-launch[1530]: Activation request for 'org.freedesktop.ModemManager1' failed: The systemd unit 'dbus-org.freedesktop.ModemManager1.service' could not be found.
Sep 23 01:01:38 arch kded6[2315]: kf.modemmanagerqt: Failed enumerating MM objects: "org.freedesktop.DBus.Error.NameHasNoOwner" 
                                   "Could not activate remote peer 'org.freedesktop.ModemManager1': activation request failed: unknown unit"
Sep 23 01:01:38 arch kded6[2315]: 
Sep 23 01:01:38 arch kded6[2502]: xsettingsd: Loaded 14 settings from /home/admin/.config/xsettingsd/xsettingsd.conf
Sep 23 01:01:38 arch kded6[2502]: xsettingsd: Created window 0xc00001 on screen 0 with timestamp 41104
Sep 23 01:01:38 arch kded6[2502]: xsettingsd: Selection _XSETTINGS_S0 is owned by 0x0
Sep 23 01:01:38 arch kded6[2502]: xsettingsd: Took ownership of selection _XSETTINGS_S0
Sep 23 01:01:38 arch systemd[1]: Created slice Slice /system/dbus-:1.2-org.kde.kded.smart.
Sep 23 01:01:38 arch systemd[1]: Started dbus-:1.2-org.kde.kded.smart@0.service.
Sep 23 01:01:38 arch ksystemstats[2486]: Loaded plugin "ksystemstats_plugin_cpu" from file "/usr/lib/qt6/plugins/ksystemstats/ksystemstats_plugin_cpu.so"
Sep 23 01:01:38 arch org_kde_powerdevil[2419]: qt.core.qobject.connect: QObject::disconnect: Unexpected nullptr parameter
Sep 23 01:01:38 arch org_kde_powerdevil[2419]: qt.core.qobject.connect: QObject::disconnect: Unexpected nullptr parameter
Sep 23 01:01:38 arch kded6[2315]: Known activities: QList("9cdeeb67-2d23-46bc-9294-83ca315583c2")
Sep 23 01:01:38 arch xdg-desktop-por[2183]: Failed to load module "appmenu-gtk-module"
Sep 23 01:01:38 arch kded6[2315]: kf.bluezqt: PendingCall Error: "The name is not activatable"
Sep 23 01:01:38 arch kded6[2315]: kf.networkmanagerqt: void NetworkManager::ConnectionPrivate::onPropertiesChanged(const QVariantMap&) Unhandled property "VersionId"
Sep 23 01:01:38 arch NetworkManager[1636]: <info>  [1727078498.6249] device (wlo1): state change: need-auth -> prepare (reason 'none', sys-iface-state: 'managed')
Sep 23 01:01:38 arch NetworkManager[1636]: <info>  [1727078498.6251] device (wlo1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Sep 23 01:01:38 arch wpa_supplicant[1701]: wlo1: WPS-CANCEL
Sep 23 01:01:38 arch org_kde_powerdevil[2419]: Initializing libddcutil.  ddcutil version: 2.1.4, shared library: /usr/lib/libddcutil.so.5.1.2
Sep 23 01:01:38 arch org_kde_powerdevil[2419]: Options passed from client:
Sep 23 01:01:38 arch org_kde_powerdevil[2419]: Applying combined options:
Sep 23 01:01:38 arch NetworkManager[1636]: <info>  [1727078498.6253] device (wlo1): Activation: (wifi) connection 'Srishti 5G' has security, and secrets exist.  No new secrets needed.
Sep 23 01:01:38 arch NetworkManager[1636]: <info>  [1727078498.6253] Config: added 'ssid' value 'Srishti 5G'
Sep 23 01:01:38 arch NetworkManager[1636]: <info>  [1727078498.6253] Config: added 'scan_ssid' value '1'
Sep 23 01:01:38 arch NetworkManager[1636]: <info>  [1727078498.6253] Config: added 'bgscan' value 'simple:30:-70:86400'
Sep 23 01:01:38 arch NetworkManager[1636]: <info>  [1727078498.6253] Config: added 'key_mgmt' value 'WPA-PSK WPA-PSK-SHA256 FT-PSK SAE FT-SAE'
Sep 23 01:01:38 arch NetworkManager[1636]: <info>  [1727078498.6253] Config: added 'auth_alg' value 'OPEN'
Sep 23 01:01:38 arch NetworkManager[1636]: <info>  [1727078498.6253] Config: added 'psk' value '<hidden>'
Sep 23 01:01:38 arch wpa_supplicant[1701]: wlo1: SME: Trying to authenticate with f8:c4:f3:da:80:33 (SSID='Srishti 5G' freq=5785 MHz)
Sep 23 01:01:38 arch kernel: wlo1: authenticate with f8:c4:f3:da:80:33 (local address=c8:5e:a9:77:93:3b)
Sep 23 01:01:38 arch kernel: wlo1: send auth to f8:c4:f3:da:80:33 (try 1/3)
Sep 23 01:01:38 arch NetworkManager[1636]: <info>  [1727078498.6338] device (wlo1): supplicant interface state: scanning -> authenticating
Sep 23 01:01:38 arch NetworkManager[1636]: <info>  [1727078498.6338] device (p2p-dev-wlo1): supplicant management interface state: scanning -> authenticating
Sep 23 01:01:38 arch ksystemstats[2486]: Loaded plugin "ksystemstats_plugin_disk" from file "/usr/lib/qt6/plugins/ksystemstats/ksystemstats_plugin_disk.so"
Sep 23 01:01:38 arch plasmashell[2356]: kf.plasma.quick: Applet preload policy set to 1
Sep 23 01:01:38 arch plasmashell[2356]: file:///usr/share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/main.qml:195:25: QML FolderViewDropArea (parent or ancestor of QQuickLayoutAttached): Binding loop detected for property "minimumWidth"
Sep 23 01:01:38 arch wpa_supplicant[1701]: wlo1: Trying to associate with f8:c4:f3:da:80:33 (SSID='Srishti 5G' freq=5785 MHz)
Sep 23 01:01:38 arch NetworkManager[1636]: <info>  [1727078498.6756] device (wlo1): supplicant interface state: authenticating -> associating
Sep 23 01:01:38 arch NetworkManager[1636]: <info>  [1727078498.6757] device (p2p-dev-wlo1): supplicant management interface state: authenticating -> associating
Sep 23 01:01:38 arch kernel: wlo1: authenticated
Sep 23 01:01:38 arch kernel: wlo1: associate with f8:c4:f3:da:80:33 (try 1/3)
Sep 23 01:01:38 arch kernel: wlo1: RX AssocResp from f8:c4:f3:da:80:33 (capab=0x411 status=0 aid=5)
Sep 23 01:01:38 arch wpa_supplicant[1701]: wlo1: Associated with f8:c4:f3:da:80:33
Sep 23 01:01:38 arch kernel: wlo1: associated
Sep 23 01:01:38 arch wpa_supplicant[1701]: wlo1: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
Sep 23 01:01:38 arch kernel: wlo1: Limiting TX power to 30 (30 - 0) dBm as advertised by f8:c4:f3:da:80:33
Sep 23 01:01:38 arch wpa_supplicant[1701]: wlo1: WPA: Key negotiation completed with f8:c4:f3:da:80:33 [PTK=CCMP GTK=TKIP]
Sep 23 01:01:38 arch wpa_supplicant[1701]: wlo1: CTRL-EVENT-CONNECTED - Connection to f8:c4:f3:da:80:33 completed [id=0 id_str=]
Sep 23 01:01:38 arch NetworkManager[1636]: <info>  [1727078498.7410] device (wlo1): supplicant interface state: associating -> completed
Sep 23 01:01:38 arch NetworkManager[1636]: <info>  [1727078498.7410] device (wlo1): Activation: (wifi) Stage 2 of 5 (Device Configure) successful. Connected to wireless network "Srishti 5G"
Sep 23 01:01:38 arch NetworkManager[1636]: <info>  [1727078498.7410] device (p2p-dev-wlo1): supplicant management interface state: associating -> completed
Sep 23 01:01:38 arch plasmashell[2356]: Toolbox not loading, toolbox package is either invalid or disabled.
Sep 23 01:01:38 arch NetworkManager[1636]: <info>  [1727078498.7478] device (wlo1): state change: config -> ip-config (reason 'none', sys-iface-state: 'managed')
Sep 23 01:01:38 arch NetworkManager[1636]: <info>  [1727078498.7480] dhcp4 (wlo1): activation: beginning transaction (timeout in 45 seconds)
Sep 23 01:01:39 arch ksystemstats[2486]: Found unsupported GPU: /sys/devices/pci0000:00/0000:00:02.0/drm/card2
Sep 23 01:01:39 arch ksystemstats[2486]: Loaded plugin "ksystemstats_plugin_gpu" from file "/usr/lib/qt6/plugins/ksystemstats/ksystemstats_plugin_gpu.so"
Sep 23 01:01:39 arch plasmashell[2356]: file:///usr/share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/MenuRepresentation.qml:204:20: Duplicate signal name: invalid override of property change signal or superclass signal
Sep 23 01:01:39 arch plasmashell[2356]: file:///usr/share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/MenuRepresentation.qml:233:21: Duplicate method name: invalid override of property change signal or superclass signal
Sep 23 01:01:39 arch plasmashell[2356]: file:///usr/share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/main.qml:45: TypeError: Value is null and could not be converted to an object
Sep 23 01:01:39 arch ksystemstats[2486]: Loaded plugin "ksystemstats_plugin_lmsensors" from file "/usr/lib/qt6/plugins/ksystemstats/ksystemstats_plugin_lmsensors.so"
Sep 23 01:01:39 arch ksystemstats[2486]: Loaded plugin "ksystemstats_plugin_memory" from file "/usr/lib/qt6/plugins/ksystemstats/ksystemstats_plugin_memory.so"
Sep 23 01:01:39 arch plasmashell[2356]: file:///usr/share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/main.qml:162:21: QML KSortFilterProxyModel: Binding loop detected for property "sourceModel"
Sep 23 01:01:39 arch plasmashell[2356]: file:///usr/share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/main.qml:162:21: QML KSortFilterProxyModel: Binding loop detected for property "sourceModel"
Sep 23 01:01:39 arch NetworkManager[1636]: <info>  [1727078499.1669] audit: op="statistics" interface="enp44s0" ifindex=2 args="500" pid=2486 uid=1000 result="success"
Sep 23 01:01:39 arch NetworkManager[1636]: <info>  [1727078499.1680] audit: op="statistics" interface="wlo1" ifindex=3 args="500" pid=2486 uid=1000 result="success"
Sep 23 01:01:39 arch ksystemstats[2486]: Loaded plugin "ksystemstats_plugin_network" from file "/usr/lib/qt6/plugins/ksystemstats/ksystemstats_plugin_network.so"
Sep 23 01:01:39 arch ksystemstats[2486]: Loaded plugin "ksystemstats_plugin_osinfo" from file "/usr/lib/qt6/plugins/ksystemstats/ksystemstats_plugin_osinfo.so"
Sep 23 01:01:39 arch ksystemstats[2486]: Loaded plugin "ksystemstats_plugin_power" from file "/usr/lib/qt6/plugins/ksystemstats/ksystemstats_plugin_power.so"
Sep 23 01:01:39 arch systemd[2101]: Started Track hardware statistics.
Sep 23 01:01:39 arch NetworkManager[1636]: <info>  [1727078499.1800] audit: op="statistics" interface="wlo1" ifindex=3 args="500" pid=2486 uid=1000 result="success"
Sep 23 01:01:39 arch plasmashell[2356]: qt.dbus.integration: Could not connect "org.cups.cupsd.Notifier" to PrinterFinishingsChanged(QString, QString, QString, uint, QString, bool) :
Sep 23 01:01:39 arch plasmashell[2356]: qml: SystemTray ItemLoader: Invalid state, cannot determine source!
Sep 23 01:01:39 arch dbus-broker-launch[1530]: Activation request for 'org.freedesktop.resolve1' failed: The systemd unit 'dbus-org.freedesktop.resolve1.service' could not be found.
Sep 23 01:01:39 arch wpa_supplicant[1701]: wlo1: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-44 noise=9999 txrate=234000
Sep 23 01:01:39 arch plasmashell[2356]: kf5idletime_wayland: This plugin does not support polling idle time
Sep 23 01:01:39 arch plasmashell[2356]: The cached device pixel ratio value was stale on window update.  Please file a QTBUG which explains how to reproduce.
Sep 23 01:01:39 arch plasmashell[2356]: The cached device pixel ratio value was stale on window update.  Please file a QTBUG which explains how to reproduce.
Sep 23 01:01:39 arch plasmashell[2356]: The cached device pixel ratio value was stale on window update.  Please file a QTBUG which explains how to reproduce.
Sep 23 01:01:39 arch systemd[2101]: Reached target Bluetooth.
Sep 23 01:01:39 arch systemd[1999]: Reached target Bluetooth.
Sep 23 01:01:39 arch plasmashell[2356]: QFont::setPointSizeF: Point size <= 0 (0.000000), must be greater than 0
Sep 23 01:01:39 arch NetworkManager[1636]: <info>  [1727078499.8944] dhcp4 (wlo1): state changed new lease, address=192.168.1.44, acd pending
Sep 23 01:01:40 arch NetworkManager[1636]: <info>  [1727078500.0554] dhcp4 (wlo1): state changed new lease, address=192.168.1.44
Sep 23 01:01:40 arch NetworkManager[1636]: <info>  [1727078500.0557] policy: set 'Srishti 5G' (wlo1) as default for IPv4 routing and DNS
Sep 23 01:01:40 arch dnsmasq[1965]: reading /etc/resolv.conf
Sep 23 01:01:40 arch dnsmasq[1965]: using nameserver 192.168.1.1#53
Sep 23 01:01:40 arch NetworkManager[1636]: <info>  [1727078500.0791] device (wlo1): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'managed')
Sep 23 01:01:40 arch NetworkManager[1636]: <info>  [1727078500.0798] device (wlo1): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'managed')
Sep 23 01:01:40 arch NetworkManager[1636]: <info>  [1727078500.0799] device (wlo1): state change: secondaries -> activated (reason 'none', sys-iface-state: 'managed')
Sep 23 01:01:40 arch NetworkManager[1636]: <info>  [1727078500.0800] manager: NetworkManager state is now CONNECTED_SITE
Sep 23 01:01:40 arch NetworkManager[1636]: <info>  [1727078500.0803] device (wlo1): Activation: successful, device activated.
Sep 23 01:01:40 arch kernel: input: JBL TUNE770NC (AVRCP) as /devices/virtual/input/input23
Sep 23 01:01:40 arch wireplumber[2203]: spa.bluez5.native: RFCOMM receive command but modem not available: AT+NREC=0
Sep 23 01:01:40 arch (udev-worker)[761]: input23: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Sep 23 01:01:40 arch NetworkManager[1636]: <info>  [1727078500.5269] dhcp6 (wlo1): activation: beginning transaction (timeout in 45 seconds)
Sep 23 01:01:40 arch NetworkManager[1636]: <info>  [1727078500.5272] policy: set 'Srishti 5G' (wlo1) as default for IPv6 routing and DNS
Sep 23 01:01:40 arch input-remapper-service[1539]: Request to autoload for "JBL TUNE770NC (AVRCP)"
Sep 23 01:01:40 arch input-remapper-service[1539]: ERROR: Request to autoload "JBL TUNE770NC (AVRCP)" before a user told the service about their session using set_config_dir
Sep 23 01:01:40 arch systemd-logind[1541]: Watching system buttons on /dev/input/event19 (JBL TUNE770NC (AVRCP))
Sep 23 01:01:40 arch org_kde_powerdevil[2419]: Library initialization complete.
Sep 23 01:01:40 arch org_kde_powerdevil[2419]: Watch thread started
Sep 23 01:01:40 arch systemd[1]: Created slice Slice /system/dbus-:1.2-org.kde.powerdevil.discretegpuhelper.
Sep 23 01:01:40 arch systemd[1]: Started dbus-:1.2-org.kde.powerdevil.discretegpuhelper@0.service.
Sep 23 01:01:40 arch systemd[1]: Created slice Slice /system/dbus-:1.2-org.kde.powerdevil.chargethresholdhelper.
Sep 23 01:01:40 arch systemd[1]: Started dbus-:1.2-org.kde.powerdevil.chargethresholdhelper@0.service.
Sep 23 01:01:40 arch systemd[1]: Created slice Slice /system/dbus-:1.2-org.kde.powerdevil.backlighthelper.
Sep 23 01:01:40 arch systemd[1]: Started dbus-:1.2-org.kde.powerdevil.backlighthelper@0.service.
Sep 23 01:01:40 arch NetworkManager[1636]: <info>  [1727078500.7348] manager: NetworkManager state is now CONNECTED_GLOBAL
Sep 23 01:01:40 arch systemd[2101]: Started Powerdevil.
Sep 23 01:01:40 arch systemd[2101]: Reached target KDE Plasma Workspace.
Sep 23 01:01:40 arch systemd[2101]: Reached target Current graphical user session.
Sep 23 01:01:40 arch systemd[2101]: Reached target plasma-workspace-wayland.target.
Sep 23 01:01:40 arch systemd[2101]: Starting AT-SPI D-Bus Bus...
Sep 23 01:01:40 arch systemd[2101]: Starting Firewall Applet...
Sep 23 01:01:40 arch systemd[2101]: Starting Geoclue Demo agent...
Sep 23 01:01:40 arch systemd[2101]: Starting Certificate and Key Storage...
Sep 23 01:01:40 arch systemd[2101]: Starting Secret Storage Service...
Sep 23 01:01:40 arch org_kde_powerdevil[2419]: org.kde.powerdevil: Handle button events action could not check for screen configuration
Sep 23 01:01:40 arch systemd[2101]: Starting SSH Key Agent...
Sep 23 01:01:40 arch systemd[2101]: Starting input-remapper-autoload...
Sep 23 01:01:40 arch systemd[2101]: Starting Accessibility...
Sep 23 01:01:40 arch systemd[2101]: Starting Orca Screen Reader...
Sep 23 01:01:40 arch systemd[2101]: Starting Events and Tasks Reminders...
Sep 23 01:01:40 arch systemd[2101]: Starting gnome-disk-utility notification plugin for GNOME Settings Daemon...
Sep 23 01:01:40 arch systemd[2101]: Starting GNOME Software...
Sep 23 01:01:40 arch systemd[2101]: Starting Discover...
Sep 23 01:01:40 arch systemd[2101]: Starting Plasma Session Restore...
Sep 23 01:01:40 arch systemd[2101]: Starting User folders update...
Sep 23 01:01:40 arch systemd[2101]: Starting Wireguird...
Sep 23 01:01:40 arch systemd[2101]: Starting KSplash "ready" Stage...
Sep 23 01:01:40 arch systemd[2101]: Starting KDE Session Restoration...
Sep 23 01:01:40 arch systemd[2101]: Started input-remapper-autoload.
Sep 23 01:01:40 arch systemd[2101]: Started Events and Tasks Reminders.
Sep 23 01:01:40 arch systemd[2101]: Started Firewall Applet.
Sep 23 01:01:40 arch systemd[2101]: Started Wireguird.
Sep 23 01:01:40 arch systemd[2101]: app-at\x2dspi\x2ddbus\x2dbus@autostart.service: Skipped due to 'exec-condition'.
Sep 23 01:01:40 arch systemd[2101]: Condition check resulted in AT-SPI D-Bus Bus being skipped.
Sep 23 01:01:40 arch firewall-applet[2655]: Traceback (most recent call last):
Sep 23 01:01:40 arch firewall-applet[2655]:   File "/usr/bin/firewall-applet", line 11, in <module>
Sep 23 01:01:40 arch firewall-applet[2655]:     from PyQt6 import QtGui, QtCore, QtWidgets
Sep 23 01:01:40 arch firewall-applet[2655]: ModuleNotFoundError: No module named 'PyQt6'
Sep 23 01:01:40 arch firewall-applet[2655]: During handling of the above exception, another exception occurred:
Sep 23 01:01:40 arch firewall-applet[2655]: Traceback (most recent call last):
Sep 23 01:01:40 arch firewall-applet[2655]:   File "/usr/bin/firewall-applet", line 15, in <module>
Sep 23 01:01:40 arch firewall-applet[2655]:     from PyQt5 import QtGui, QtCore, QtWidgets
Sep 23 01:01:40 arch firewall-applet[2655]: ModuleNotFoundError: No module named 'PyQt5'
Sep 23 01:01:40 arch systemd[2101]: app-gnome\x2dkeyring\x2dpkcs11@autostart.service: Skipped due to 'exec-condition'.
Sep 23 01:01:40 arch systemd[2101]: Condition check resulted in Certificate and Key Storage being skipped.
Sep 23 01:01:40 arch systemd[2101]: app-gnome\x2dkeyring\x2dsecrets@autostart.service: Skipped due to 'exec-condition'.
Sep 23 01:01:40 arch systemd[2101]: Condition check resulted in Secret Storage Service being skipped.
Sep 23 01:01:40 arch systemd[2101]: app-gnome\x2dkeyring\x2dssh@autostart.service: Skipped due to 'exec-condition'.
Sep 23 01:01:40 arch systemd[2101]: Condition check resulted in SSH Key Agent being skipped.
Sep 23 01:01:40 arch systemd[2101]: app-firewall\x2dapplet@autostart.service: Main process exited, code=exited, status=1/FAILURE
Sep 23 01:01:40 arch systemd[2101]: app-firewall\x2dapplet@autostart.service: Failed with result 'exit-code'.
Sep 23 01:01:40 arch systemd[2101]: app-orca\x2dautostart@autostart.service: Skipped due to 'exec-condition'.
Sep 23 01:01:40 arch systemd[2101]: Condition check resulted in Orca Screen Reader being skipped.
Sep 23 01:01:40 arch systemd[2101]: app-org.gnome.SettingsDaemon.DiskUtilityNotify@autostart.service: Skipped due to 'exec-condition'.
Sep 23 01:01:40 arch systemd[2101]: Condition check resulted in gnome-disk-utility notification plugin for GNOME Settings Daemon being skipped.
Sep 23 01:01:40 arch systemd[2101]: app-org.gnome.Software@autostart.service: Skipped due to 'exec-condition'.
Sep 23 01:01:40 arch systemd[2101]: Condition check resulted in GNOME Software being skipped.
Sep 23 01:01:40 arch systemd[2101]: Started Geoclue Demo agent.
Sep 23 01:01:40 arch systemd[2101]: app-user\x2ddirs\x2dupdate\x2dgtk@autostart.service: Skipped due to 'exec-condition'.
Sep 23 01:01:40 arch systemd[2101]: Condition check resulted in User folders update being skipped.
Sep 23 01:01:40 arch systemd[2101]: Finished KDE Session Restoration.
Sep 23 01:01:40 arch systemd[2101]: Started Accessibility.
Sep 23 01:01:40 arch systemd[2101]: Started Plasma Session Restore.
Sep 23 01:01:40 arch systemd[2101]: Started Discover.
Sep 23 01:01:40 arch systemd[2101]: Reached target Startup of XDG autostart applications.
Sep 23 01:01:40 arch polkit-kde-authentication-agent-1[2418]: Listener adapter polkit_qt_listener_initiate_authentication
Sep 23 01:01:40 arch polkit-kde-authentication-agent-1[2418]: GSimpleAsyncResult: 0x579626489f50
Sep 23 01:01:40 arch polkit-kde-authentication-agent-1[2418]: polkit_qt_listener_initiate_authentication callback for  0x57962644d8a0
Sep 23 01:01:40 arch polkit-kde-authentication-agent-1[2418]: Initiating authentication
Sep 23 01:01:40 arch kaccess[2698]: Xlib XKB extension major= 1  minor= 0
Sep 23 01:01:40 arch systemd[2101]: Finished KSplash "ready" Stage.
Sep 23 01:01:40 arch polkit-kde-authentication-agent-1[2418]: Action description has been found
Sep 23 01:01:40 arch systemd[2101]: Finished Splash screen shown during boot.
Sep 23 01:01:40 arch systemd[2101]: plasma-ksplash.service: Consumed 253ms CPU time, 172.6M memory peak.
Sep 23 01:01:40 arch plasmashell[2356]: kameleon supported false
Sep 23 01:01:40 arch plasmashell[2356]: kameleon enabled true
Sep 23 01:01:40 arch plasmashell[2356]: The cached device pixel ratio value was stale on window update.  Please file a QTBUG which explains how to reproduce.
Sep 23 01:01:40 arch kaccess[2698]: X server XKB extension major= 1  minor= 0
Sep 23 01:01:40 arch polkit-kde-authentication-agent-1[2418]: User:  "unix-user:admin"
Sep 23 01:01:40 arch polkit-kde-authentication-agent-1[2418]: Trying again
Sep 23 01:01:40 arch DiscoverNotifier[2699]: couldn't load "/usr/lib/qt6/plugins/discover-notifier/DiscoverPackageKitNotifier.so" because "Cannot load library /usr/lib/qt6/plugins/discover-notifier/DiscoverPackageKitNotifier.so: libpackagekitqt6.so.1: cannot open shared object file: No such file or directory"
Sep 23 01:01:40 arch polkit-agent-helper-1[2754]: pam_systemd_home(polkit-1:auth): New sd-bus connection (system-bus-pam-systemd-home-2754) opened.
Sep 23 01:01:40 arch systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
Sep 23 01:01:40 arch polkit-kde-authentication-agent-1[2418]: REQUEST
Sep 23 01:01:40 arch polkit-kde-authentication-agent-1[2418]: Request:  "Password: "
Sep 23 01:01:40 arch systemd[2101]: Starting Evolution source registry...
Sep 23 01:01:41 arch bash[2672]: Connected to the service
Sep 23 01:01:41 arch input-remapper-service[1539]: Loaded config from "/home/admin/.config/input-remapper-2/config.json"
Sep 23 01:01:41 arch input-remapper-service[1539]: Loaded config from "/home/admin/.config/input-remapper-2/config.json"
Sep 23 01:01:41 arch input-remapper-service[1539]: Stopping all injections
Sep 23 01:01:41 arch bash[2672]: Done
Sep 23 01:01:41 arch systemd[2101]: Created slice Slice /app/dbus-:1.2-org.gnome.OnlineAccounts.
Sep 23 01:01:41 arch systemd[2101]: Started dbus-:1.2-org.gnome.OnlineAccounts@0.service.
Sep 23 01:01:41 arch systemd[2101]: Started Evolution source registry.
Sep 23 01:01:41 arch systemd[2101]: Starting Evolution calendar service...
Sep 23 01:01:41 arch evolution-alarm[2670]: Failed to load module "appmenu-gtk-module"
Sep 23 01:01:41 arch goa-daemon[2796]: goa-daemon version 3.52.0 starting
Sep 23 01:01:41 arch systemd[2101]: Created slice Slice /app/dbus-:1.2-org.gnome.Identity.
Sep 23 01:01:41 arch systemd[2101]: Started dbus-:1.2-org.gnome.Identity@0.service.
Sep 23 01:01:41 arch systemd[2101]: Started Evolution calendar service.
Sep 23 01:01:41 arch systemd[2101]: Starting Evolution address book service...
Sep 23 01:01:41 arch bash[2663]: Connected to the service
Sep 23 01:01:41 arch input-remapper-service[1539]: Loaded config from "/home/admin/.config/input-remapper-2/config.json"
Sep 23 01:01:41 arch input-remapper-service[1539]: Loaded config from "/home/admin/.config/input-remapper-2/config.json"
Sep 23 01:01:41 arch bash[2663]: Autoloading all
Sep 23 01:01:41 arch input-remapper-service[1539]: Autoloading for all devices
Sep 23 01:01:41 arch systemd[2101]: Started Evolution address book service.
Sep 23 01:01:41 arch input-remapper-service[1539]: Found "AT Translated Set 2 keyboard", "Logitech G102 LIGHTSYNC Gaming Mouse", "Intel HID events", "Asus WMI hotkeys", "ASUE120B:00 04F3:31C0 Mouse", "Video Bus", "JBL TUNE770NC (AVRCP)"
Sep 23 01:01:41 arch input-remapper-service[1539]: Autoloading for "Logitech G102 LIGHTSYNC Gaming Mouse"
Sep 23 01:01:41 arch input-remapper-service[1539]: Request to start injecting for "Logitech G102 LIGHTSYNC Gaming Mouse"
Sep 23 01:01:41 arch input-remapper-service[1539]: Loading preset from "/home/admin/.config/input-remapper-2/presets/Logitech G102 LIGHTSYNC Gaming Mouse/new preset.json"
Sep 23 01:01:41 arch kernel: input: input-remapper keyboard as /devices/virtual/input/input24
Sep 23 01:01:41 arch input-remapper-service[1539]: Autoloading for "AT Translated Set 2 keyboard"
Sep 23 01:01:41 arch input-remapper-service[1539]: Request to start injecting for "AT Translated Set 2 keyboard"
Sep 23 01:01:41 arch input-remapper-service[2847]: Starting injecting the preset for "Logitech G102 LIGHTSYNC Gaming Mouse"
Sep 23 01:01:41 arch input-remapper-service[1539]: Loading preset from "/home/admin/.config/input-remapper-2/presets/AT Translated Set 2 keyboard/new preset.json"
Sep 23 01:01:41 arch bash[2663]: Done
Sep 23 01:01:41 arch kernel: input: input-remapper Logitech G102 LIGHTSYNC Gaming Mouse forwarded as /devices/virtual/input/input25
Sep 23 01:01:41 arch input-remapper-service[2848]: Starting injecting the preset for "AT Translated Set 2 keyboard"
Sep 23 01:01:41 arch kernel: input: input-remapper AT Translated Set 2 keyboard forwarded as /devices/virtual/input/input26
Sep 23 01:01:41 arch systemd[1]: Reached target User and Group Name Lookups.
Sep 23 01:01:41 arch systemd[1]: Starting Accounts Service...
Sep 23 01:01:41 arch (udev-worker)[761]: input26: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Sep 23 01:01:41 arch (udev-worker)[755]: input25: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Sep 23 01:01:41 arch (udev-worker)[759]: input24: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Sep 23 01:01:41 arch accounts-daemon[2868]: started daemon version 23.13.0
Sep 23 01:01:41 arch systemd[1]: Started Accounts Service.
Sep 23 01:01:41 arch (udev-worker)[787]: mouse3: Process '/bin/input-remapper-control --command autoload --device /dev/input/mouse3' failed with exit code 4.
Sep 23 01:01:41 arch (udev-worker)[759]: event20: Process '/bin/input-remapper-control --command autoload --device /dev/input/event20' failed with exit code 4.
Sep 23 01:01:41 arch systemd-logind[1541]: Watching system buttons on /dev/input/event20 (input-remapper keyboard)
Sep 23 01:01:41 arch (udev-worker)[755]: event21: Process '/bin/input-remapper-control --command autoload --device /dev/input/event21' failed with exit code 4.
Sep 23 01:01:41 arch (udev-worker)[735]: event22: Process '/bin/input-remapper-control --command autoload --device /dev/input/event22' failed with exit code 4.
Sep 23 01:01:41 arch systemd-logind[1541]: Watching system buttons on /dev/input/event22 (input-remapper AT Translated Set 2 keyboard forwarded)
Sep 23 01:01:42 arch plasmashell[2356]: The cached device pixel ratio value was stale on window update.  Please file a QTBUG which explains how to reproduce.
Sep 23 01:01:43 arch plasmashell[2356]: file:///usr/share/plasma/plasmoids/org.kde.plasma.keyboardindicator/contents/ui/main.qml:61:13: Unable to assign [undefined] to bool
Sep 23 01:01:43 arch systemd[2101]: Started Alacritty - Terminal.
Sep 23 01:01:43 arch plasmashell[2356]: error creating screencast "Could not find window id {792cf6f1-6fc8-4530-8829-4db110819772}"
Sep 23 01:01:45 arch systemd[1]: Stopping User Manager for UID 958...
Sep 23 01:01:45 arch systemd[1999]: Activating special unit Exit the Session...
Sep 23 01:01:45 arch systemd[1999]: Stopped target Bluetooth.
Sep 23 01:01:45 arch systemd[1999]: Stopped target Main User Target.
Sep 23 01:01:45 arch systemd[1999]: Stopped target Basic System.
Sep 23 01:01:45 arch systemd[1999]: Stopped target Paths.
Sep 23 01:01:45 arch systemd[1999]: Stopped Submitting pending crash events (file monitor).
Sep 23 01:01:45 arch systemd[1999]: Stopped target Sockets.
Sep 23 01:01:45 arch systemd[1999]: Stopped target Timers.
Sep 23 01:01:45 arch systemd[1999]: Closed GnuPG network certificate management daemon.
Sep 23 01:01:45 arch systemd[1999]: Closed Socket to launch DrKonqi for a systemd-coredump crash.
Sep 23 01:01:45 arch systemd[1999]: Closed GNOME Keyring daemon.
Sep 23 01:01:45 arch systemd[1999]: Closed GnuPG cryptographic agent and passphrase cache (access for web browsers).
Sep 23 01:01:45 arch systemd[1999]: Closed GnuPG cryptographic agent and passphrase cache (restricted).
Sep 23 01:01:45 arch systemd[1999]: Closed GnuPG cryptographic agent (ssh-agent emulation).
Sep 23 01:01:45 arch systemd[1999]: Closed GnuPG cryptographic agent and passphrase cache.
Sep 23 01:01:45 arch systemd[1999]: Closed GnuPG public key management service.
Sep 23 01:01:45 arch systemd[1999]: Closed p11-kit server.
Sep 23 01:01:45 arch systemd[1999]: Closed PipeWire PulseAudio.
Sep 23 01:01:45 arch systemd[1999]: Closed PipeWire Multimedia System Sockets.
Sep 23 01:01:45 arch dbus-broker[2020]: Dispatched 239 messages @ 0(±2)μs / message.
Sep 23 01:01:45 arch systemd[1999]: Stopping D-Bus User Message Bus...
Sep 23 01:01:45 arch systemd[1999]: Stopped D-Bus User Message Bus.
Sep 23 01:01:45 arch systemd[1999]: Removed slice User Core Session Slice.
Sep 23 01:01:45 arch systemd[1999]: Closed D-Bus User Message Bus Socket.
Sep 23 01:01:45 arch systemd[1999]: Removed slice User Application Slice.
Sep 23 01:01:45 arch systemd[1999]: Reached target Shutdown.
Sep 23 01:01:45 arch systemd[1999]: Finished Exit the Session.
Sep 23 01:01:45 arch systemd[1999]: Reached target Exit the Session.
Sep 23 01:01:45 arch systemd[1]: user@958.service: Deactivated successfully.
Sep 23 01:01:45 arch systemd[1]: Stopped User Manager for UID 958.
Sep 23 01:01:45 arch systemd[1]: Stopping User Runtime Directory /run/user/958...
Sep 23 01:01:46 arch systemd[1]: run-user-958.mount: Deactivated successfully.
Sep 23 01:01:46 arch systemd[1]: user-runtime-dir@958.service: Deactivated successfully.
Sep 23 01:01:46 arch systemd[1]: Stopped User Runtime Directory /run/user/958.
Sep 23 01:01:46 arch systemd[1]: Removed slice User Slice of UID 958.
Sep 23 01:01:46 arch systemd[1]: user-958.slice: Consumed 686ms CPU time, 561.5M memory peak.
Sep 23 01:01:46 arch systemd-logind[1541]: Removed session 1.
Sep 23 01:01:46 arch sudo[2918]: pam_systemd_home(sudo:auth): New sd-bus connection (system-bus-pam-systemd-home-2918) opened.
Sep 23 01:01:48 arch systemd[1]: dbus-:1.2-org.kde.kded.smart@0.service: Deactivated successfully.
Sep 23 01:01:50 arch sudo[2918]:    admin : TTY=pts/1 ; PWD=/home/admin ; USER=root ; COMMAND=/usr/bin/journalctl -b
Sep 23 01:01:50 arch sudo[2918]: pam_unix(sudo:session): session opened for user root(uid=0) by admin(uid=1000)
Sep 23 01:01:50 arch systemd[1]: dbus-:1.2-org.kde.powerdevil.discretegpuhelper@0.service: Deactivated successfully.
Sep 23 01:01:50 arch systemd[1]: dbus-:1.2-org.kde.powerdevil.chargethresholdhelper@0.service: Deactivated successfully.
Sep 23 01:01:50 arch systemd[1]: dbus-:1.2-org.kde.powerdevil.backlighthelper@0.service: Deactivated successfully.

Disable it (it's NOT the BIOS setting!) and reboot windows and linux twice for voodo reasons.

Oh I have my Windows partition encrypted with VeraCrypt so I already have fastboot disabled.

Offline

#12 2024-09-23 14:07:51

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 75,295

Re: Hibernation not working

I'm not really sure how this relates to VC, but nb. that the terminology is "fast start", "fast boot" is a feature of the pre-boot environment (BIOS/UEFI) and completely unrelated here.

Sep 23 01:01:27 arch kernel: NVRM: GPU 0000:01:00.0: PreserveVideoMemoryAllocations module parameter is set. System Power Management attempted without driver procfs suspend interface. Please refer to the 'Configuring Power Management Support' section in the driver README.
Sep 23 01:01:27 arch kernel: nvidia 0000:01:00.0: PM: pci_pm_freeze(): nv_pmops_freeze [nvidia] returns -5
Sep 23 01:01:27 arch kernel: nvidia 0000:01:00.0: PM: dpm_run_callback(): pci_pm_freeze returns -5
Sep 23 01:01:27 arch kernel: nvidia 0000:01:00.0: PM: failed to quiesce async: error -5
Sep 23 01:01:27 arch kernel: pcieport 10000:e0:06.2: can't derive routing for PCI INT A
Sep 23 01:01:27 arch kernel: nvme 10000:e2:00.0: PCI INT A: no GSI
Sep 23 01:01:27 arch kernel: pcieport 10000:e0:06.0: can't derive routing for PCI INT A
Sep 23 01:01:27 arch kernel: nvme 10000:e1:00.0: PCI INT A: no GSI
Sep 23 01:01:27 arch kernel: nvme nvme0: D3 entry latency set to 8 seconds
Sep 23 01:01:27 arch kernel: nvme nvme0: 16/0/0 default/read/poll queues
Sep 23 01:01:27 arch kernel: nvme nvme0: Ignoring bogus Namespace Identifiers
Sep 23 01:01:27 arch kernel: PM: hibernation: Failed to load image, recovering.
Sep 23 01:01:27 arch kernel: PM: hibernation: Basic memory bitmaps freed
Sep 23 01:01:27 arch kernel: OOM killer enabled.
Sep 23 01:01:27 arch kernel: Restarting tasks ... done.
Sep 23 01:01:27 arch kernel: PM: hibernation: resume failed (-5)

https://bbs.archlinux.org/viewtopic.php?id=285508

Offline

#13 2024-09-23 18:04:24

garnish
Member
Registered: 2023-12-22
Posts: 13

Re: Hibernation not working

Encrypting your Windows partition through VeraCrypt requires you to disable Windows fast start, I used fast boot and fast start interchangeably but what I meant was that I have fast boot enabled in my bios and Windows fast start disabled through Windows since VeraCrypt requires you to do that before you encrypt your Windows partition through it.

I'm not sure what that person is recommending as the solution.

my /etc/mkinitcpio.conf:

# vim:set ft=sh
# MODULES
# The following modules are loaded before any boot hooks are
# run.  Advanced users may wish to specify all system modules
# in this array.  For instance:
#     MODULES=(usbhid xhci_hcd)
MODULES=(nvidia nvidia_modeset nvidia_uvm nvidia_drm)

# BINARIES
# This setting includes any additional binaries a given user may
# wish into the CPIO image.  This is run last, so it may be used to
# override the actual binaries included by a given hook
# BINARIES are dependency parsed, so you may safely ignore libraries
BINARIES=()

# FILES
# This setting is similar to BINARIES above, however, files are added
# as-is and are not parsed in any way.  This is useful for config files.
FILES=()

# HOOKS
# This is the most important setting in this file.  The HOOKS control the
# modules and scripts added to the image, and what happens at boot time.
# Order is important, and it is recommended that you do not change the
# order in which HOOKS are added.  Run 'mkinitcpio -H <hook name>' for
# help on a given hook.
# 'base' is _required_ unless you know precisely what you are doing.
# 'udev' is _required_ in order to automatically load modules
# 'filesystems' is _required_ unless you specify your fs modules in MODULES
# Examples:
##   This setup specifies all modules in the MODULES setting above.
##   No RAID, lvm2, or encrypted root is needed.
#    HOOKS=(base)
#
##   This setup will autodetect all modules for your system and should
##   work as a sane default
#    HOOKS=(base udev autodetect modconf block filesystems fsck)
#
##   This setup will generate a 'full' image which supports most systems.
##   No autodetection is done.
#    HOOKS=(base udev modconf block filesystems fsck)
#
##   This setup assembles a mdadm array with an encrypted root file system.
##   Note: See 'mkinitcpio -H mdadm_udev' for more information on RAID devices.
#    HOOKS=(base udev modconf keyboard keymap consolefont block mdadm_udev encrypt filesystems fsck)
#
##   This setup loads an lvm2 volume group.
#    HOOKS=(base udev modconf block lvm2 filesystems fsck)
#
##   This will create a systemd based initramfs which loads an encrypted root filesystem.
#    HOOKS=(base systemd autodetect modconf kms keyboard sd-vconsole sd-encrypt block filesystems fsck)
#
##   NOTE: If you have /usr on a separate partition, you MUST include the
#    usr and fsck hooks.
HOOKS=(base udev autodetect microcode modconf keyboard keymap consolefont block encrypt filesystems resume fsck)

# COMPRESSION
# Use this to compress the initramfs image. By default, zstd compression
# is used for Linux ≥ 5.9 and gzip compression is used for Linux < 5.9.
# Use 'cat' to create an uncompressed image.
#COMPRESSION="zstd"
#COMPRESSION="gzip"
#COMPRESSION="bzip2"
#COMPRESSION="lzma"
#COMPRESSION="xz"
#COMPRESSION="lzop"
#COMPRESSION="lz4"

# COMPRESSION_OPTIONS
# Additional options for the compressor
#COMPRESSION_OPTIONS=()

# MODULES_DECOMPRESS
# Decompress loadable kernel modules and their firmware during initramfs
# creation. Switch (yes/no).
# Enable to allow further decreasing image size when using high compression
# (e.g. xz -9e or zstd --long --ultra -22) at the expense of increased RAM usage
# at early boot.
# Note that any compressed files will be placed in the uncompressed early CPIO
# to avoid double compression.
#MODULES_DECOMPRESS="no"

my /etc/modprobe.d/nvidia.conf:

options nvidia_drm modeset=1
options nvidia_drm fbdev=1

my /etc/modprobe.d/nvidia-power-management.conf

options nvidia NVreg_PreserveVideoMemoryAllocations=1 NVreg_TemporaryFilePath=/var/tmp

What changes should I make to these three and what problems could those changes cause?
All these are recommended by the Arch wiki so I'm not sure what to do.

Offline

#14 2024-09-23 21:44:20

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 75,295

Re: Hibernation not working

MODULES=(nvidia nvidia_modeset nvidia_uvm nvidia_drm)

Early KMS (the nvidia modules in the initramfs), the VRAM perservation service or hibernation - pick two, one has to go.
There's no other known solution.

Offline

#15 2024-09-24 00:24:14

garnish
Member
Registered: 2023-12-22
Posts: 13

Re: Hibernation not working

Well I consider VRAM preservation to be essential because you can't suspend without it, I mean you  can suspend but it leaves your system unusable until you force shutdown or force reboot it again and I really like Hibernation so that leaves early KMS.
What's the use of those nvidia modules in the initramfs? I only put them there because the wiki recommended it.
I think that's going to be the one I remove, what do you suggest?
And there are four modules in there, can you explain what each of them do? Do I have to remove all of them?

Also, I was hibernating fine before even when I had all these modules on a previous arch install so is this a new bug and is it being worked upon? Is there somewhere I can track its progress?

Last edited by garnish (2024-09-24 01:14:15)

Offline

#16 2024-09-24 06:47:35

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 75,295

Re: Hibernation not working

What's the use of those nvidia modules in the initramfs?

https://wiki.archlinux.org/title/SDDM#B … phics_card

nvidia_uvm is CUDA, the other ones are blocks of the currently common graphics stack (but you'd not need modeset and drm if you were only interested in GPGPU)

Also, I was hibernating fine before even when I had all these modules on a previous arch install

Do you have journals for that?

https://bbs.archlinux.org/viewtopic.php?id=285508 failed to restore the VRAM because of the condition (rendering the preservartion inert) but does not seem to also fail loading the image in return.
So there might be a secondary issue, probably relating to the nvme and APST or DIPM - iff, but we should first get the obvious problem out of the way before we move there.

Offline

#17 2024-09-25 05:15:12

garnish
Member
Registered: 2023-12-22
Posts: 13

Re: Hibernation not working

Oh yeah I remember reading that page, now I remember why I put all those modules there in the first place.
They're really important so I guess I'll just have to live without hibernation for now.

Do you have journals for that?

No but I have that install on a USB stick back from when I was just trying out Arch, but that install is kind of broken now because I hadn't used it for a few months before I updated it.
If people are willing to help here maybe I can try fixing that install and see if it works again but I'm not sure if it's worth it because I don't really remember if I even had hibernation on that install, my memory's a bit hazy because I've installed Arch a bunch of times and it's been a few months now since I touched that USB stick.
Also, for now I can't even boot from that USB anymore for some reason, when I click on it in my bios it just returns me to my bios page back again instead of booting Arch. I'm trying to investigate why that's happening for now. I mean I can't get any journals if I can't even boot up the system.

I'll try to get that USB stick to boot up and then ask what's wrong with the install here or try to fix it myself if it's ok? But fair warning, It will be a waste of time if I get that system up and running again only to find out I didn't have hibernation enabled on it. I think it's worth investigating and I'm up for it, let me know what you think.

Offline

#18 2024-09-25 22:58:25

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 75,295

Re: Hibernation not working

The main question wuld be what the working configuration actually looked like.
As for your immedidate situation, the main issue is that systemd kicks off the graphical.target before the GPU is initialized, a strategic "ExecStartPre=/usr/bin/sleep 3" might delay your boot by 3 seconds but should allow you to have your cake and eat it.
https://wiki.archlinux.org/title/Iwd#Re … after_boot but obviously you want to delay the sddm.service, not iwd.
Then remove the nvidia modules from the initramfs and see whether SDDM reliably comes up regardless.

Offline

Board footer

Powered by FluxBB