You are not logged in.

#26 2022-05-12 08:17:53

WeebSpirit
Member
Registered: 2021-10-27
Posts: 91

Re: Can't use nouveau to load into xorg.

seth wrote:

No.
The generic placeholder is 0x1234, not the attribute.

Like this?

SUBSYSTEM=="pci", ATTR{vendor}=="VGA compatible controller [0300]", ATTR{device}=="NVIDIA Corporation TU117M", ATTR{power}="on"

Offline

#27 2022-05-12 11:34:15

seth
Member
Registered: 2012-09-03
Posts: 50,933

Re: Can't use nouveau to load into xorg.

No.
The vendor and product IDs are numbers, that's why the placeholders are 0x1234…

Offline

#28 2022-05-12 11:45:40

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 21,627

Re: Can't use nouveau to load into xorg.

Are you hell bent on getting this to run with nouveau and a generally open graphics stack despite all the potential shortcomings that are already showing itself?

I'd argue you'll have more success to opt for the just packaged nvidia-open drivers which should satisfy your free kernel fuzzies while making actual use of the GPU (though you would have to opt for the closed userspace regardless).

Online

#29 2022-05-12 13:39:49

WeebSpirit
Member
Registered: 2021-10-27
Posts: 91

Re: Can't use nouveau to load into xorg.

seth wrote:

No.
The vendor and product IDs are numbers, that's why the placeholders are 0x1234…

Hmm, this?

SUBSYSTEM=="pci", ATTR{vendor}=="10de", ATTR{device}=="1f99", ATTR{power/control}="on"

Offline

#30 2022-05-12 13:43:09

WeebSpirit
Member
Registered: 2021-10-27
Posts: 91

Re: Can't use nouveau to load into xorg.

V1del wrote:

Are you hell bent on getting this to run with nouveau and a generally open graphics stack despite all the potential shortcomings that are already showing itself?

I'd argue you'll have more success to opt for the just packaged nvidia-open drivers which should satisfy your free kernel fuzzies while making actual use of the GPU (though you would have to opt for the closed userspace regardless).

My goal is to make a 100% free software system, and i know of non-free bios and cpu microcode, but we have to start somewhere. Nvidia recently made their drivers free software, but i doubt it doesn't depend on anything pooprietary. Nouveau is good, I wanna use it, i don't really care if it doesn't give me the full potential of the GPU, i don't even do anything that hard on GPU. Picom animations using jonaburg's fork is the hardest thing my machine does.

Offline

#31 2022-05-12 14:09:43

seth
Member
Registered: 2012-09-03
Posts: 50,933

Re: Can't use nouveau to load into xorg.

Closer.
Did you notice that there's a goto label to avoid the default behavior?

Offline

#32 2022-05-12 15:32:45

WeebSpirit
Member
Registered: 2021-10-27
Posts: 91

Re: Can't use nouveau to load into xorg.

Did you notice that there's a goto label to avoid the default behavior?

Where exactly? In the link to arch wiki page? Or where?

Offline

#33 2022-05-12 18:10:11

seth
Member
Registered: 2012-09-03
Posts: 50,933

Re: Can't use nouveau to load into xorg.

Well, where did you lift your stanza from? Not the linked wiki? And if you look at that wiki example, do you see the goto logics in those examples?
I don't know whether you're worthy to use archlinux, but you need to adjust your attitude towards problem solving. Primarily by thinking for yourself instead of hoping to be spoonfed every last detail.

Offline

#34 2022-05-13 07:46:11

WeebSpirit
Member
Registered: 2021-10-27
Posts: 91

Re: Can't use nouveau to load into xorg.

seth wrote:

Well, where did you lift your stanza from? Not the linked wiki? And if you look at that wiki example, do you see the goto logics in those examples?
I don't know whether you're worthy to use archlinux, but you need to adjust your attitude towards problem solving. Primarily by thinking for yourself instead of hoping to be spoonfed every last detail.

Ok, i noticed it. There's

GOTO="pci_pm_end"

, so should it be like this?

SUBSYSTEM=="pci", ATTR{vendor}=="10de", ATTR{device}=="1f99", ATTR{power/control}="on", GOTO="pci_pm_end"

Offline

#35 2022-05-13 07:57:53

seth
Member
Registered: 2012-09-03
Posts: 50,933

Re: Can't use nouveau to load into xorg.

If that's the entire file you're going to create, where is the goto target…
There's an entire example pattern on how to blacklist a device from power management and since a dozen posts you're looking for every possible iteration to not meet it.
You're either trolling or a hopeless cause.

Offline

#36 2022-05-13 10:46:01

WeebSpirit
Member
Registered: 2021-10-27
Posts: 91

Re: Can't use nouveau to load into xorg.

seth wrote:

If that's the entire file you're going to create, where is the goto target…
There's an entire example pattern on how to blacklist a device from power management and since a dozen posts you're looking for every possible iteration to not meet it.
You're either trolling or a hopeless cause.

I guess the one trolling here is you, I assume you know how to do it. You already have the number for vendor, and the device itself, instead of telling me the full thing to write, you're trying to make me do it myself, even tho u already see i can't. I understand that you want me to understand things myself, but it's not what I want at the moment, I may look into it later, but for now I just want to make xorg work on linux-libre

Offline

#37 2022-05-13 11:04:43

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 21,627

Re: Can't use nouveau to load into xorg.

You need to read the linked wiki as the explanation of doing it is right there, FWIW to prevent this from drifting into a flamewar:

SUBSYSTEM=="pci", ATTR{vendor}=="10de", ATTR{device}=="1f99", ATTR{power/control}="on", GOTO="pci_pm_end"

SUBSYSTEM=="pci", ATTR{power/control}="auto"
LABEL="pci_pm_end"

Online

#38 2022-05-13 12:10:47

seth
Member
Registered: 2012-09-03
Posts: 50,933

Re: Can't use nouveau to load into xorg.

I just want to make xorg work on linux-libre

What's not gonna happen because you're not getting past

May 11 16:24:19 arch kernel: nouveau 0000:01:00.0: fb: VPR locked, but no scrubber binary

instead of telling me the full thing to write

seth wrote:

I don't know whether you're worthy to use archlinux, but you need to adjust your attitude towards problem solving. Primarily by thinking for yourself instead of hoping to be spoonfed every last detail.

Offline

#39 2022-05-13 12:45:57

WeebSpirit
Member
Registered: 2021-10-27
Posts: 91

Re: Can't use nouveau to load into xorg.

V1del wrote:

You need to read the linked wiki as the explanation of doing it is right there, FWIW to prevent this from drifting into a flamewar:

SUBSYSTEM=="pci", ATTR{vendor}=="10de", ATTR{device}=="1f99", ATTR{power/control}="on", GOTO="pci_pm_end"

SUBSYSTEM=="pci", ATTR{power/control}="auto"
LABEL="pci_pm_end"

Thank, you. I added it to /etc/udev/rules.d/pci_pm.rules/ then tried to boot, startx still powers my machine off, then i decided to follow what seth said at the beginning of the thread.

lsinitcpio /boot/initramfs-linux-libre.img | grep nouveau
lsmod | grep nouveau
lspci -k
sudo journalctl -b

First command gives

usr/lib/modules/5.17.3-gnu-1/kernel/nouveau.ko

Second command gives

nouveau              2723840  0
video                  57344  2 acer_wmi,nouveau
drm_ttm_helper         16384  1 nouveau
ttm                    86016  2 drm_ttm_helper,nouveau
mxm_wmi                16384  1 nouveau
wmi                    40960  4 acer_wmi,wmi_bmof,mxm_wmi,nouveau

Third command powers the computer off, just like startx, which i find weird.
Fourth command gives

May 13 15:38:34 arch kernel: Linux version 5.17.3-gnu-1 (linux-libre@archlinux) (gcc (GCC) 11.2.0, GNU ld (GNU Binutils) 2.38) #1 SMP PREEMPT Wed, 27 Apr 2022 15:49:30 +0000
May 13 15:38:34 arch kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-linux-libre root=UUID=b174f517-1978-437a-a0d9-b1883048c1a8 rw loglevel=3 quiet fbcon=nodefer
May 13 15:38:34 arch kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
May 13 15:38:34 arch kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
May 13 15:38:34 arch kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
May 13 15:38:34 arch kernel: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
May 13 15:38:34 arch kernel: x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'compacted' format.
May 13 15:38:34 arch kernel: signal: max sigframe size: 1776
May 13 15:38:34 arch kernel: BIOS-provided physical RAM map:
May 13 15:38:34 arch kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
May 13 15:38:34 arch kernel: BIOS-e820: [mem 0x000000000009f000-0x00000000000bffff] reserved
May 13 15:38:34 arch kernel: BIOS-e820: [mem 0x0000000000100000-0x0000000009afffff] usable
May 13 15:38:34 arch kernel: BIOS-e820: [mem 0x0000000009b00000-0x0000000009dfffff] reserved
May 13 15:38:34 arch kernel: BIOS-e820: [mem 0x0000000009e00000-0x0000000009efffff] usable
May 13 15:38:34 arch kernel: BIOS-e820: [mem 0x0000000009f00000-0x0000000009f0cfff] ACPI NVS
May 13 15:38:34 arch kernel: BIOS-e820: [mem 0x0000000009f0d000-0x00000000bab68fff] usable
May 13 15:38:34 arch kernel: BIOS-e820: [mem 0x00000000bab69000-0x00000000bbd68fff] reserved
May 13 15:38:34 arch kernel: BIOS-e820: [mem 0x00000000bbd69000-0x00000000c9f7efff] usable
May 13 15:38:34 arch kernel: BIOS-e820: [mem 0x00000000c9f7f000-0x00000000caf7efff] type 20
May 13 15:38:34 arch kernel: BIOS-e820: [mem 0x00000000caf7f000-0x00000000ccf7efff] reserved
May 13 15:38:34 arch kernel: BIOS-e820: [mem 0x00000000ccf7f000-0x00000000cdf7efff] ACPI NVS
May 13 15:38:34 arch kernel: BIOS-e820: [mem 0x00000000cdf7f000-0x00000000cdffefff] ACPI data
May 13 15:38:34 arch kernel: BIOS-e820: [mem 0x00000000cdfff000-0x00000000cdffffff] usable
May 13 15:38:34 arch kernel: BIOS-e820: [mem 0x00000000ce000000-0x00000000ceffffff] reserved
May 13 15:38:34 arch kernel: BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
May 13 15:38:34 arch kernel: BIOS-e820: [mem 0x00000000fde00000-0x00000000fdefffff] reserved
May 13 15:38:34 arch kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
May 13 15:38:34 arch kernel: BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
May 13 15:38:34 arch kernel: BIOS-e820: [mem 0x00000000fed80000-0x00000000fed80fff] reserved
May 13 15:38:34 arch kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
May 13 15:38:34 arch kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000fff1ffff] reserved
May 13 15:38:34 arch kernel: BIOS-e820: [mem 0x0000000100000000-0x000000040f33ffff] usable
May 13 15:38:34 arch kernel: BIOS-e820: [mem 0x000000040f340000-0x000000042fffffff] reserved
May 13 15:38:34 arch kernel: NX (Execute Disable) protection: active
May 13 15:38:34 arch kernel: efi: EFI v2.70 by INSYDE Corp.
May 13 15:38:34 arch kernel: efi: ACPI=0xcdffe000 ACPI 2.0=0xcdffe014 TPMFinalLog=0xcdedd000 ESRT=0xcb70d798 SMBIOS=0xcb70b000 SMBIOS 3.0=0xcb709000 MEMATTR=0xb5371018 
May 13 15:38:34 arch kernel: SMBIOS 3.2.0 present.
May 13 15:38:34 arch kernel: DMI: Acer Nitro AN515-44/Stonic_RNS, BIOS V1.04 02/04/2021
May 13 15:38:34 arch kernel: tsc: Fast TSC calibration using PIT
May 13 15:38:34 arch kernel: tsc: Detected 2894.532 MHz processor
May 13 15:38:34 arch kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
May 13 15:38:34 arch kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
May 13 15:38:34 arch kernel: last_pfn = 0x40f340 max_arch_pfn = 0x400000000
May 13 15:38:34 arch kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
May 13 15:38:34 arch kernel: last_pfn = 0xce000 max_arch_pfn = 0x400000000
May 13 15:38:34 arch kernel: esrt: Reserving ESRT space from 0x00000000cb70d798 to 0x00000000cb70d7d0.
May 13 15:38:34 arch kernel: Using GB pages for direct mapping
May 13 15:38:34 arch kernel: Secure boot disabled
May 13 15:38:34 arch kernel: RAMDISK: [mem 0x36c3d000-0x37615fff]
May 13 15:38:34 arch kernel: ACPI: Early table checksum verification disabled
May 13 15:38:34 arch kernel: ACPI: RSDP 0x00000000CDFFE014 000024 (v02 ACRSYS)
May 13 15:38:34 arch kernel: ACPI: XSDT 0x00000000CDFC3188 000114 (v01 ACRSYS ACRPRDCT 00000002      01000013)
May 13 15:38:34 arch kernel: ACPI: FACP 0x00000000CDFED000 00010C (v05 ACRSYS ACRPRDCT 00000002 1025 00040000)
May 13 15:38:34 arch kernel: ACPI: DSDT 0x00000000CDFE2000 006A46 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
May 13 15:38:34 arch kernel: ACPI: FACS 0x00000000CDED9000 000040
May 13 15:38:34 arch kernel: ACPI: UEFI 0x00000000CDF7E000 000236 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
May 13 15:38:34 arch kernel: ACPI: SSDT 0x00000000CDFF5000 007216 (v02 ACRSYS ACRPRDCT 00000002 1025 00040000)
May 13 15:38:34 arch kernel: ACPI: IVRS 0x00000000CDFF4000 0001A4 (v02 ACRSYS ACRPRDCT 00000001 1025 00040000)
May 13 15:38:34 arch kernel: ACPI: SSDT 0x00000000CDFF3000 000228 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
May 13 15:38:34 arch kernel: ACPI: SSDT 0x00000000CDFF1000 00047E (v01 ACRSYS ACRPRDCT 00001000 1025 00040000)
May 13 15:38:34 arch kernel: ACPI: TPM2 0x00000000CDFF0000 000034 (v04 ACRSYS ACRPRDCT 00000002 1025 00040000)
May 13 15:38:34 arch kernel: ACPI: ASF! 0x00000000CDFEF000 0000A5 (v32 ACRSYS ACRPRDCT 00000002 1025 00040000)
May 13 15:38:34 arch kernel: ACPI: BOOT 0x00000000CDFEE000 000028 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
May 13 15:38:34 arch kernel: ACPI: HPET 0x00000000CDFEC000 000038 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
May 13 15:38:34 arch kernel: ACPI: APIC 0x00000000CDFEB000 000138 (v03 ACRSYS ACRPRDCT 00000002 1025 00040000)
May 13 15:38:34 arch kernel: ACPI: MCFG 0x00000000CDFEA000 00003C (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
May 13 15:38:34 arch kernel: ACPI: SSDT 0x00000000CDFE1000 000080 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
May 13 15:38:34 arch kernel: ACPI: SSDT 0x00000000CDFDA000 006925 (v01 ACRSYS ACRPRDCT 00001000 1025 00040000)
May 13 15:38:34 arch kernel: ACPI: SSDT 0x00000000CDFD8000 00106F (v01 ACRSYS ACRPRDCT 00001000 1025 00040000)
May 13 15:38:34 arch kernel: ACPI: VFCT 0x00000000CDFCA000 00D484 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
May 13 15:38:34 arch kernel: ACPI: SSDT 0x00000000CDFE9000 0000F8 (v01 ACRSYS ACRPRDCT 00001000 1025 00040000)
May 13 15:38:34 arch kernel: ACPI: SSDT 0x00000000CDFC6000 0039F4 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
May 13 15:38:34 arch kernel: ACPI: CRAT 0x00000000CDFC5000 000F28 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
May 13 15:38:34 arch kernel: ACPI: CDIT 0x00000000CDFC4000 000029 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
May 13 15:38:34 arch kernel: ACPI: SSDT 0x00000000CDFFD000 00028D (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
May 13 15:38:34 arch kernel: ACPI: SSDT 0x00000000CDFC2000 0000B9 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
May 13 15:38:34 arch kernel: ACPI: SSDT 0x00000000CDFC1000 000D37 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
May 13 15:38:34 arch kernel: ACPI: SSDT 0x00000000CDFBF000 0010AC (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
May 13 15:38:34 arch kernel: ACPI: SSDT 0x00000000CDFBB000 0030C8 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
May 13 15:38:34 arch kernel: ACPI: FPDT 0x00000000CDFBA000 000044 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
May 13 15:38:34 arch kernel: ACPI: WSMT 0x00000000CDFB8000 000028 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
May 13 15:38:34 arch kernel: ACPI: SSDT 0x00000000CDFB7000 00007D (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
May 13 15:38:34 arch kernel: ACPI: SSDT 0x00000000CDFB6000 000517 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
May 13 15:38:34 arch kernel: ACPI: BGRT 0x00000000CDFB9000 000038 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
May 13 15:38:34 arch kernel: ACPI: Reserving FACP table memory at [mem 0xcdfed000-0xcdfed10b]
May 13 15:38:34 arch kernel: ACPI: Reserving DSDT table memory at [mem 0xcdfe2000-0xcdfe8a45]
May 13 15:38:34 arch kernel: ACPI: Reserving FACS table memory at [mem 0xcded9000-0xcded903f]
May 13 15:38:34 arch kernel: ACPI: Reserving UEFI table memory at [mem 0xcdf7e000-0xcdf7e235]
May 13 15:38:34 arch kernel: ACPI: Reserving SSDT table memory at [mem 0xcdff5000-0xcdffc215]
May 13 15:38:34 arch kernel: ACPI: Reserving IVRS table memory at [mem 0xcdff4000-0xcdff41a3]
May 13 15:38:34 arch kernel: ACPI: Reserving SSDT table memory at [mem 0xcdff3000-0xcdff3227]
May 13 15:38:34 arch kernel: ACPI: Reserving SSDT table memory at [mem 0xcdff1000-0xcdff147d]
May 13 15:38:34 arch kernel: ACPI: Reserving TPM2 table memory at [mem 0xcdff0000-0xcdff0033]
May 13 15:38:34 arch kernel: ACPI: Reserving ASF! table memory at [mem 0xcdfef000-0xcdfef0a4]
May 13 15:38:34 arch kernel: ACPI: Reserving BOOT table memory at [mem 0xcdfee000-0xcdfee027]
May 13 15:38:34 arch kernel: ACPI: Reserving HPET table memory at [mem 0xcdfec000-0xcdfec037]
May 13 15:38:34 arch kernel: ACPI: Reserving APIC table memory at [mem 0xcdfeb000-0xcdfeb137]
May 13 15:38:34 arch kernel: ACPI: Reserving MCFG table memory at [mem 0xcdfea000-0xcdfea03b]
May 13 15:38:34 arch kernel: ACPI: Reserving SSDT table memory at [mem 0xcdfe1000-0xcdfe107f]
May 13 15:38:34 arch kernel: ACPI: Reserving SSDT table memory at [mem 0xcdfda000-0xcdfe0924]
May 13 15:38:34 arch kernel: ACPI: Reserving SSDT table memory at [mem 0xcdfd8000-0xcdfd906e]
May 13 15:38:34 arch kernel: ACPI: Reserving VFCT table memory at [mem 0xcdfca000-0xcdfd7483]
May 13 15:38:34 arch kernel: ACPI: Reserving SSDT table memory at [mem 0xcdfe9000-0xcdfe90f7]
May 13 15:38:34 arch kernel: ACPI: Reserving SSDT table memory at [mem 0xcdfc6000-0xcdfc99f3]
May 13 15:38:34 arch kernel: ACPI: Reserving CRAT table memory at [mem 0xcdfc5000-0xcdfc5f27]
May 13 15:38:34 arch kernel: ACPI: Reserving CDIT table memory at [mem 0xcdfc4000-0xcdfc4028]
May 13 15:38:34 arch kernel: ACPI: Reserving SSDT table memory at [mem 0xcdffd000-0xcdffd28c]
May 13 15:38:34 arch kernel: ACPI: Reserving SSDT table memory at [mem 0xcdfc2000-0xcdfc20b8]
May 13 15:38:34 arch kernel: ACPI: Reserving SSDT table memory at [mem 0xcdfc1000-0xcdfc1d36]
May 13 15:38:34 arch kernel: ACPI: Reserving SSDT table memory at [mem 0xcdfbf000-0xcdfc00ab]
May 13 15:38:34 arch kernel: ACPI: Reserving SSDT table memory at [mem 0xcdfbb000-0xcdfbe0c7]
May 13 15:38:34 arch kernel: ACPI: Reserving FPDT table memory at [mem 0xcdfba000-0xcdfba043]
May 13 15:38:34 arch kernel: ACPI: Reserving WSMT table memory at [mem 0xcdfb8000-0xcdfb8027]
May 13 15:38:34 arch kernel: ACPI: Reserving SSDT table memory at [mem 0xcdfb7000-0xcdfb707c]
May 13 15:38:34 arch kernel: ACPI: Reserving SSDT table memory at [mem 0xcdfb6000-0xcdfb6516]
May 13 15:38:34 arch kernel: ACPI: Reserving BGRT table memory at [mem 0xcdfb9000-0xcdfb9037]
May 13 15:38:34 arch kernel: No NUMA configuration found
May 13 15:38:34 arch kernel: Faking a node at [mem 0x0000000000000000-0x000000040f33ffff]
May 13 15:38:34 arch kernel: NODE_DATA(0) allocated [mem 0x40f33c000-0x40f33ffff]
May 13 15:38:34 arch kernel: Zone ranges:
May 13 15:38:34 arch kernel:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
May 13 15:38:34 arch kernel:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
May 13 15:38:34 arch kernel:   Normal   [mem 0x0000000100000000-0x000000040f33ffff]
May 13 15:38:34 arch kernel:   Device   empty
May 13 15:38:34 arch kernel: Movable zone start for each node
May 13 15:38:34 arch kernel: Early memory node ranges
May 13 15:38:34 arch kernel:   node   0: [mem 0x0000000000001000-0x000000000009efff]
May 13 15:38:34 arch kernel:   node   0: [mem 0x0000000000100000-0x0000000009afffff]
May 13 15:38:34 arch kernel:   node   0: [mem 0x0000000009e00000-0x0000000009efffff]
May 13 15:38:34 arch kernel:   node   0: [mem 0x0000000009f0d000-0x00000000bab68fff]
May 13 15:38:34 arch kernel:   node   0: [mem 0x00000000bbd69000-0x00000000c9f7efff]
May 13 15:38:34 arch kernel:   node   0: [mem 0x00000000cdfff000-0x00000000cdffffff]
May 13 15:38:34 arch kernel:   node   0: [mem 0x0000000100000000-0x000000040f33ffff]
May 13 15:38:34 arch kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000040f33ffff]
May 13 15:38:34 arch kernel: On node 0, zone DMA: 1 pages in unavailable ranges
May 13 15:38:34 arch kernel: On node 0, zone DMA: 97 pages in unavailable ranges
May 13 15:38:34 arch kernel: On node 0, zone DMA32: 768 pages in unavailable ranges
May 13 15:38:34 arch kernel: On node 0, zone DMA32: 13 pages in unavailable ranges
May 13 15:38:34 arch kernel: On node 0, zone DMA32: 4608 pages in unavailable ranges
May 13 15:38:34 arch kernel: On node 0, zone DMA32: 16512 pages in unavailable ranges
May 13 15:38:34 arch kernel: On node 0, zone Normal: 8192 pages in unavailable ranges
May 13 15:38:34 arch kernel: On node 0, zone Normal: 3264 pages in unavailable ranges
May 13 15:38:34 arch kernel: ACPI: PM-Timer IO Port: 0x408
May 13 15:38:34 arch kernel: ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
May 13 15:38:34 arch kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
May 13 15:38:34 arch kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
May 13 15:38:34 arch kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
May 13 15:38:34 arch kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
May 13 15:38:34 arch kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
May 13 15:38:34 arch kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
May 13 15:38:34 arch kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
May 13 15:38:34 arch kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
May 13 15:38:34 arch kernel: ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
May 13 15:38:34 arch kernel: ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
May 13 15:38:34 arch kernel: ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
May 13 15:38:34 arch kernel: ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
May 13 15:38:34 arch kernel: ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
May 13 15:38:34 arch kernel: ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
May 13 15:38:34 arch kernel: ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
May 13 15:38:34 arch kernel: IOAPIC[0]: apic_id 33, version 33, address 0xfec00000, GSI 0-23
May 13 15:38:34 arch kernel: IOAPIC[1]: apic_id 34, version 33, address 0xfec01000, GSI 24-55
May 13 15:38:34 arch kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
May 13 15:38:34 arch kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
May 13 15:38:34 arch kernel: ACPI: Using ACPI (MADT) for SMP configuration information
May 13 15:38:34 arch kernel: ACPI: HPET id: 0x10228210 base: 0xfed00000
May 13 15:38:34 arch kernel: e820: update [mem 0xb593c000-0xb5a2ffff] usable ==> reserved
May 13 15:38:34 arch kernel: smpboot: Allowing 16 CPUs, 0 hotplug CPUs
May 13 15:38:34 arch kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
May 13 15:38:34 arch kernel: PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000bffff]
May 13 15:38:34 arch kernel: PM: hibernation: Registered nosave memory: [mem 0x000c0000-0x000fffff]
May 13 15:38:34 arch kernel: PM: hibernation: Registered nosave memory: [mem 0x09b00000-0x09dfffff]
May 13 15:38:34 arch kernel: PM: hibernation: Registered nosave memory: [mem 0x09f00000-0x09f0cfff]
May 13 15:38:34 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xb593c000-0xb5a2ffff]
May 13 15:38:34 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xbab69000-0xbbd68fff]
May 13 15:38:34 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xc9f7f000-0xcaf7efff]
May 13 15:38:34 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xcaf7f000-0xccf7efff]
May 13 15:38:34 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xccf7f000-0xcdf7efff]
May 13 15:38:34 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xcdf7f000-0xcdffefff]
May 13 15:38:34 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xce000000-0xceffffff]
May 13 15:38:34 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xcf000000-0xf7ffffff]
May 13 15:38:34 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
May 13 15:38:34 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xfc000000-0xfddfffff]
May 13 15:38:34 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xfde00000-0xfdefffff]
May 13 15:38:34 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xfdf00000-0xfebfffff]
May 13 15:38:34 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
May 13 15:38:34 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfec0ffff]
May 13 15:38:34 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xfec10000-0xfec10fff]
May 13 15:38:34 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xfec11000-0xfed7ffff]
May 13 15:38:34 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xfed80fff]
May 13 15:38:34 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xfed81000-0xfedfffff]
May 13 15:38:34 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
May 13 15:38:34 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xfeffffff]
May 13 15:38:34 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xff000000-0xfff1ffff]
May 13 15:38:34 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xfff20000-0xffffffff]
May 13 15:38:34 arch kernel: [mem 0xcf000000-0xf7ffffff] available for PCI devices
May 13 15:38:34 arch kernel: Booting paravirtualized kernel on bare hardware
May 13 15:38:34 arch kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
May 13 15:38:34 arch kernel: setup_percpu: NR_CPUS:320 nr_cpumask_bits:320 nr_cpu_ids:16 nr_node_ids:1
May 13 15:38:34 arch kernel: percpu: Embedded 62 pages/cpu s217088 r8192 d28672 u262144
May 13 15:38:34 arch kernel: pcpu-alloc: s217088 r8192 d28672 u262144 alloc=1*2097152
May 13 15:38:34 arch kernel: pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 
May 13 15:38:34 arch kernel: Fallback order for Node 0: 0 
May 13 15:38:34 arch kernel: Built 1 zonelists, mobility grouping on.  Total pages: 3966652
May 13 15:38:34 arch kernel: Policy zone: Normal
May 13 15:38:34 arch kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux-libre root=UUID=b174f517-1978-437a-a0d9-b1883048c1a8 rw loglevel=3 quiet fbcon=nodefer
May 13 15:38:34 arch kernel: Unknown kernel command line parameters "BOOT_IMAGE=/boot/vmlinuz-linux-libre", will be passed to user space.
May 13 15:38:34 arch kernel: Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
May 13 15:38:34 arch kernel: Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
May 13 15:38:34 arch kernel: mem auto-init: stack:byref_all(zero), heap alloc:on, heap free:off
May 13 15:38:34 arch kernel: Memory: 15667444K/16119108K available (14343K kernel code, 2092K rwdata, 10936K rodata, 1792K init, 3852K bss, 451404K reserved, 0K cma-reserved)
May 13 15:38:34 arch kernel: random: get_random_u64 called from __kmem_cache_create+0x2a/0x550 with crng_init=0
May 13 15:38:34 arch kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=16, Nodes=1
May 13 15:38:34 arch kernel: ftrace: allocating 44931 entries in 176 pages
May 13 15:38:34 arch kernel: ftrace: allocated 176 pages with 3 groups
May 13 15:38:34 arch kernel: Dynamic Preempt: full
May 13 15:38:34 arch kernel: rcu: Preemptible hierarchical RCU implementation.
May 13 15:38:34 arch kernel: rcu:         RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=16.
May 13 15:38:34 arch kernel: rcu:         RCU priority boosting: priority 1 delay 500 ms.
May 13 15:38:34 arch kernel:         Trampoline variant of Tasks RCU enabled.
May 13 15:38:34 arch kernel:         Rude variant of Tasks RCU enabled.
May 13 15:38:34 arch kernel:         Tracing variant of Tasks RCU enabled.
May 13 15:38:34 arch kernel: rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
May 13 15:38:34 arch kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=16
May 13 15:38:34 arch kernel: NR_IRQS: 20736, nr_irqs: 1096, preallocated irqs: 16
May 13 15:38:34 arch kernel: kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
May 13 15:38:34 arch kernel: random: crng init done (trusting CPU's manufacturer)
May 13 15:38:34 arch kernel: Console: colour dummy device 80x25
May 13 15:38:34 arch kernel: printk: console [tty0] enabled
May 13 15:38:34 arch kernel: ACPI: Core revision 20211217
May 13 15:38:34 arch kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
May 13 15:38:34 arch kernel: APIC: Switch to symmetric I/O mode setup
May 13 15:38:34 arch kernel: AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR0, rdevid:160
May 13 15:38:34 arch kernel: AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR1, rdevid:160
May 13 15:38:34 arch kernel: AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR2, rdevid:160
May 13 15:38:34 arch kernel: AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR3, rdevid:160
May 13 15:38:34 arch kernel: Switched APIC routing to physical flat.
May 13 15:38:34 arch kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
May 13 15:38:34 arch kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x29b91578521, max_idle_ns: 440795257552 ns
May 13 15:38:34 arch kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 5791.27 BogoMIPS (lpj=9648440)
May 13 15:38:34 arch kernel: pid_max: default: 32768 minimum: 301
May 13 15:38:34 arch kernel: LSM: Security Framework initializing
May 13 15:38:34 arch kernel: landlock: Up and running.
May 13 15:38:34 arch kernel: Yama: becoming mindful.
May 13 15:38:34 arch kernel: LSM support for eBPF active
May 13 15:38:34 arch kernel: Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
May 13 15:38:34 arch kernel: Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
May 13 15:38:34 arch kernel: x86/cpu: User Mode Instruction Prevention (UMIP) activated
May 13 15:38:34 arch kernel: LVT offset 1 assigned for vector 0xf9
May 13 15:38:34 arch kernel: LVT offset 2 assigned for vector 0xf4
May 13 15:38:34 arch kernel: Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 512
May 13 15:38:34 arch kernel: Last level dTLB entries: 4KB 2048, 2MB 2048, 4MB 1024, 1GB 0
May 13 15:38:34 arch kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
May 13 15:38:34 arch kernel: Spectre V2 : Mitigation: Retpolines
May 13 15:38:34 arch kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
May 13 15:38:34 arch kernel: Spectre V2 : Enabling Restricted Speculation for firmware calls
May 13 15:38:34 arch kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
May 13 15:38:34 arch kernel: Spectre V2 : User space: Mitigation: STIBP via prctl
May 13 15:38:34 arch kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
May 13 15:38:34 arch kernel: Freeing SMP alternatives memory: 36K
May 13 15:38:34 arch kernel: smpboot: CPU0: AMD Ryzen 7 4800H with Radeon Graphics (family: 0x17, model: 0x60, stepping: 0x1)
May 13 15:38:34 arch kernel: cblist_init_generic: Setting adjustable number of callback queues.
May 13 15:38:34 arch kernel: cblist_init_generic: Setting shift to 4 and lim to 1.
May 13 15:38:34 arch kernel: cblist_init_generic: Setting shift to 4 and lim to 1.
May 13 15:38:34 arch kernel: cblist_init_generic: Setting shift to 4 and lim to 1.
May 13 15:38:34 arch kernel: Performance Events: Fam17h+ core perfctr, AMD PMU driver.
May 13 15:38:34 arch kernel: ... version:                0
May 13 15:38:34 arch kernel: ... bit width:              48
May 13 15:38:34 arch kernel: ... generic registers:      6
May 13 15:38:34 arch kernel: ... value mask:             0000ffffffffffff
May 13 15:38:34 arch kernel: ... max period:             00007fffffffffff
May 13 15:38:34 arch kernel: ... fixed-purpose events:   0
May 13 15:38:34 arch kernel: ... event mask:             000000000000003f
May 13 15:38:34 arch kernel: rcu: Hierarchical SRCU implementation.
May 13 15:38:34 arch kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
May 13 15:38:34 arch kernel: smp: Bringing up secondary CPUs ...
May 13 15:38:34 arch kernel: x86: Booting SMP configuration:
May 13 15:38:34 arch kernel: .... node  #0, CPUs:        #1  #2  #3  #4  #5  #6  #7  #8  #9 #10 #11 #12 #13 #14 #15
May 13 15:38:34 arch kernel: smp: Brought up 1 node, 16 CPUs
May 13 15:38:34 arch kernel: smpboot: Max logical packages: 1
May 13 15:38:34 arch kernel: smpboot: Total of 16 processors activated (92662.40 BogoMIPS)
May 13 15:38:34 arch kernel: devtmpfs: initialized
May 13 15:38:34 arch kernel: x86/mm: Memory block size: 128MB
May 13 15:38:34 arch kernel: ACPI: PM: Registering ACPI NVS region [mem 0x09f00000-0x09f0cfff] (53248 bytes)
May 13 15:38:34 arch kernel: ACPI: PM: Registering ACPI NVS region [mem 0xccf7f000-0xcdf7efff] (16777216 bytes)
May 13 15:38:34 arch kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
May 13 15:38:34 arch kernel: futex hash table entries: 4096 (order: 6, 262144 bytes, linear)
May 13 15:38:34 arch kernel: pinctrl core: initialized pinctrl subsystem
May 13 15:38:34 arch kernel: PM: RTC time: 12:38:32, date: 2022-05-13
May 13 15:38:34 arch kernel: NET: Registered PF_NETLINK/PF_ROUTE protocol family
May 13 15:38:34 arch kernel: DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations
May 13 15:38:34 arch kernel: DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
May 13 15:38:34 arch kernel: DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
May 13 15:38:34 arch kernel: audit: initializing netlink subsys (disabled)
May 13 15:38:34 arch kernel: audit: type=2000 audit(1652445512.169:1): state=initialized audit_enabled=0 res=1
May 13 15:38:34 arch kernel: thermal_sys: Registered thermal governor 'fair_share'
May 13 15:38:34 arch kernel: thermal_sys: Registered thermal governor 'bang_bang'
May 13 15:38:34 arch kernel: thermal_sys: Registered thermal governor 'step_wise'
May 13 15:38:34 arch kernel: thermal_sys: Registered thermal governor 'user_space'
May 13 15:38:34 arch kernel: thermal_sys: Registered thermal governor 'power_allocator'
May 13 15:38:34 arch kernel: cpuidle: using governor ladder
May 13 15:38:34 arch kernel: cpuidle: using governor menu
May 13 15:38:34 arch kernel: Simple Boot Flag at 0x44 set to 0x1
May 13 15:38:34 arch kernel: HugeTLB: can free 4094 vmemmap pages for hugepages-1048576kB
May 13 15:38:34 arch kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
May 13 15:38:34 arch kernel: PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
May 13 15:38:34 arch kernel: PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
May 13 15:38:34 arch kernel: PCI: Using configuration type 1 for base access
May 13 15:38:34 arch kernel: kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
May 13 15:38:34 arch kernel: HugeTLB: can free 6 vmemmap pages for hugepages-2048kB
May 13 15:38:34 arch kernel: HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
May 13 15:38:34 arch kernel: HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
May 13 15:38:34 arch kernel: ACPI: Added _OSI(Module Device)
May 13 15:38:34 arch kernel: ACPI: Added _OSI(Processor Device)
May 13 15:38:34 arch kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
May 13 15:38:34 arch kernel: ACPI: Added _OSI(Processor Aggregator Device)
May 13 15:38:34 arch kernel: ACPI: Added _OSI(Linux-Dell-Video)
May 13 15:38:34 arch kernel: ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
May 13 15:38:34 arch kernel: ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
May 13 15:38:34 arch kernel: ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PCI0.GPP4.WLAN], AE_NOT_FOUND (20211217/dswload2-162)
May 13 15:38:34 arch kernel: ACPI Error: AE_NOT_FOUND, During name lookup/catalog (20211217/psobject-220)
May 13 15:38:34 arch kernel: ACPI: Skipping parse of AML opcode: Scope (0x0010)
May 13 15:38:34 arch kernel: ACPI: 16 ACPI AML tables successfully acquired and loaded
May 13 15:38:34 arch kernel: ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
May 13 15:38:34 arch kernel: ACPI: EC: EC started
May 13 15:38:34 arch kernel: ACPI: EC: interrupt blocked
May 13 15:38:34 arch kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
May 13 15:38:34 arch kernel: ACPI: \_SB_.PCI0.LPC0.EC0_: Boot DSDT EC used to handle transactions
May 13 15:38:34 arch kernel: ACPI: Interpreter enabled
May 13 15:38:34 arch kernel: ACPI: PM: (supports S0 S3 S4 S5)
May 13 15:38:34 arch kernel: ACPI: Using IOAPIC for interrupt routing
May 13 15:38:34 arch kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
May 13 15:38:34 arch kernel: ACPI: Enabled 3 GPEs in block 00 to 1F
May 13 15:38:34 arch kernel: ACPI: PM: Power Resource [PG00]
May 13 15:38:34 arch kernel: ACPI: PM: Power Resource [WRST]
May 13 15:38:34 arch kernel: ACPI: PM: Power Resource [P0S0]
May 13 15:38:34 arch kernel: ACPI: PM: Power Resource [P3S0]
May 13 15:38:34 arch kernel: ACPI: PM: Power Resource [P0S1]
May 13 15:38:34 arch kernel: ACPI: PM: Power Resource [P3S1]
May 13 15:38:34 arch kernel: ACPI: PM: Power Resource [PRWL]
May 13 15:38:34 arch kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
May 13 15:38:34 arch kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
May 13 15:38:34 arch kernel: acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug LTR DPC]
May 13 15:38:34 arch kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
May 13 15:38:34 arch kernel: acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
May 13 15:38:34 arch kernel: PCI host bridge to bus 0000:00
May 13 15:38:34 arch kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
May 13 15:38:34 arch kernel: pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
May 13 15:38:34 arch kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
May 13 15:38:34 arch kernel: pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000cffff window]
May 13 15:38:34 arch kernel: pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000effff window]
May 13 15:38:34 arch kernel: pci_bus 0000:00: root bus resource [mem 0xd0000000-0xf7ffffff window]
May 13 15:38:34 arch kernel: pci_bus 0000:00: root bus resource [mem 0xfc000000-0xfed3ffff window]
May 13 15:38:34 arch kernel: pci_bus 0000:00: root bus resource [mem 0x450200000-0xfcffffffff window]
May 13 15:38:34 arch kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
May 13 15:38:34 arch kernel: pci 0000:00:00.0: [1022:1630] type 00 class 0x060000
May 13 15:38:34 arch kernel: pci 0000:00:00.2: [1022:1631] type 00 class 0x080600
May 13 15:38:34 arch kernel: pci 0000:00:01.0: [1022:1632] type 00 class 0x060000
May 13 15:38:34 arch kernel: pci 0000:00:01.1: [1022:1633] type 01 class 0x060400
May 13 15:38:34 arch kernel: pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
May 13 15:38:34 arch kernel: pci 0000:00:01.2: [1022:1634] type 01 class 0x060400
May 13 15:38:34 arch kernel: pci 0000:00:01.2: PME# supported from D0 D3hot D3cold
May 13 15:38:34 arch kernel: pci 0000:00:02.0: [1022:1632] type 00 class 0x060000
May 13 15:38:34 arch kernel: pci 0000:00:02.1: [1022:1634] type 01 class 0x060400
May 13 15:38:34 arch kernel: pci 0000:00:02.1: PME# supported from D0 D3hot D3cold
May 13 15:38:34 arch kernel: pci 0000:00:02.2: [1022:1634] type 01 class 0x060400
May 13 15:38:34 arch kernel: pci 0000:00:02.2: PME# supported from D0 D3hot D3cold
May 13 15:38:34 arch kernel: pci 0000:00:08.0: [1022:1632] type 00 class 0x060000
May 13 15:38:34 arch kernel: pci 0000:00:08.1: [1022:1635] type 01 class 0x060400
May 13 15:38:34 arch kernel: pci 0000:00:08.1: enabling Extended Tags
May 13 15:38:34 arch kernel: pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
May 13 15:38:34 arch kernel: pci 0000:00:08.2: [1022:1635] type 01 class 0x060400
May 13 15:38:34 arch kernel: pci 0000:00:08.2: enabling Extended Tags
May 13 15:38:34 arch kernel: pci 0000:00:08.2: PME# supported from D0 D3hot D3cold
May 13 15:38:34 arch kernel: pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500
May 13 15:38:34 arch kernel: pci 0000:00:14.3: [1022:790e] type 00 class 0x060100
May 13 15:38:34 arch kernel: pci 0000:00:18.0: [1022:1448] type 00 class 0x060000
May 13 15:38:34 arch kernel: pci 0000:00:18.1: [1022:1449] type 00 class 0x060000
May 13 15:38:34 arch kernel: pci 0000:00:18.2: [1022:144a] type 00 class 0x060000
May 13 15:38:34 arch kernel: pci 0000:00:18.3: [1022:144b] type 00 class 0x060000
May 13 15:38:34 arch kernel: pci 0000:00:18.4: [1022:144c] type 00 class 0x060000
May 13 15:38:34 arch kernel: pci 0000:00:18.5: [1022:144d] type 00 class 0x060000
May 13 15:38:34 arch kernel: pci 0000:00:18.6: [1022:144e] type 00 class 0x060000
May 13 15:38:34 arch kernel: pci 0000:00:18.7: [1022:144f] type 00 class 0x060000
May 13 15:38:34 arch kernel: pci 0000:01:00.0: [10de:1f99] type 00 class 0x030000
May 13 15:38:34 arch kernel: pci 0000:01:00.0: reg 0x10: [mem 0xd0000000-0xd0ffffff]
May 13 15:38:34 arch kernel: pci 0000:01:00.0: reg 0x14: [mem 0xfcc0000000-0xfccfffffff 64bit pref]
May 13 15:38:34 arch kernel: pci 0000:01:00.0: reg 0x1c: [mem 0xfcd0000000-0xfcd1ffffff 64bit pref]
May 13 15:38:34 arch kernel: pci 0000:01:00.0: reg 0x24: [io  0x3000-0x307f]
May 13 15:38:34 arch kernel: pci 0000:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
May 13 15:38:34 arch kernel: pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
May 13 15:38:34 arch kernel: pci 0000:01:00.0: 63.008 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x8 link at 0000:00:01.1 (capable of 126.016 Gb/s with 8.0 GT/s PCIe x16 link)
May 13 15:38:34 arch kernel: pci 0000:01:00.1: [10de:10fa] type 00 class 0x040300
May 13 15:38:34 arch kernel: pci 0000:01:00.1: reg 0x10: [mem 0xd1000000-0xd1003fff]
May 13 15:38:34 arch kernel: pci 0000:00:01.1: PCI bridge to [bus 01]
May 13 15:38:34 arch kernel: pci 0000:00:01.1:   bridge window [io  0x3000-0x3fff]
May 13 15:38:34 arch kernel: pci 0000:00:01.1:   bridge window [mem 0xd0000000-0xd10fffff]
May 13 15:38:34 arch kernel: pci 0000:00:01.1:   bridge window [mem 0xfcc0000000-0xfcd1ffffff 64bit pref]
May 13 15:38:34 arch kernel: pci 0000:02:00.0: [15b7:5009] type 00 class 0x010802
May 13 15:38:34 arch kernel: pci 0000:02:00.0: reg 0x10: [mem 0xd1800000-0xd1803fff 64bit]
May 13 15:38:34 arch kernel: pci 0000:02:00.0: reg 0x20: [mem 0xd1804000-0xd18040ff 64bit]
May 13 15:38:34 arch kernel: pci 0000:00:01.2: PCI bridge to [bus 02]
May 13 15:38:34 arch kernel: pci 0000:00:01.2:   bridge window [mem 0xd1800000-0xd18fffff]
May 13 15:38:34 arch kernel: pci 0000:03:00.0: [10ec:2600] type 00 class 0x020000
May 13 15:38:34 arch kernel: pci 0000:03:00.0: reg 0x10: [io  0x2000-0x20ff]
May 13 15:38:34 arch kernel: pci 0000:03:00.0: reg 0x18: [mem 0xd1704000-0xd1704fff 64bit]
May 13 15:38:34 arch kernel: pci 0000:03:00.0: reg 0x20: [mem 0xd1700000-0xd1703fff 64bit]
May 13 15:38:34 arch kernel: pci 0000:03:00.0: supports D1 D2
May 13 15:38:34 arch kernel: pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
May 13 15:38:34 arch kernel: pci 0000:00:02.1: PCI bridge to [bus 03]
May 13 15:38:34 arch kernel: pci 0000:00:02.1:   bridge window [io  0x2000-0x2fff]
May 13 15:38:34 arch kernel: pci 0000:00:02.1:   bridge window [mem 0xd1700000-0xd17fffff]
May 13 15:38:34 arch kernel: pci 0000:04:00.0: [8086:2723] type 00 class 0x028000
May 13 15:38:34 arch kernel: pci 0000:04:00.0: reg 0x10: [mem 0xd1600000-0xd1603fff 64bit]
May 13 15:38:34 arch kernel: pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
May 13 15:38:34 arch kernel: pci 0000:00:02.2: PCI bridge to [bus 04]
May 13 15:38:34 arch kernel: pci 0000:00:02.2:   bridge window [mem 0xd1600000-0xd16fffff]
May 13 15:38:34 arch kernel: pci 0000:05:00.0: [1002:1636] type 00 class 0x030000
May 13 15:38:34 arch kernel: pci 0000:05:00.0: reg 0x10: [mem 0xfce0000000-0xfcefffffff 64bit pref]
May 13 15:38:34 arch kernel: pci 0000:05:00.0: reg 0x18: [mem 0xfcf0000000-0xfcf01fffff 64bit pref]
May 13 15:38:34 arch kernel: pci 0000:05:00.0: reg 0x20: [io  0x1000-0x10ff]
May 13 15:38:34 arch kernel: pci 0000:05:00.0: reg 0x24: [mem 0xd1500000-0xd157ffff]
May 13 15:38:34 arch kernel: pci 0000:05:00.0: enabling Extended Tags
May 13 15:38:34 arch kernel: pci 0000:05:00.0: BAR 0: assigned to efifb
May 13 15:38:34 arch kernel: pci 0000:05:00.0: PME# supported from D1 D2 D3hot D3cold
May 13 15:38:34 arch kernel: pci 0000:05:00.2: [1022:15df] type 00 class 0x108000
May 13 15:38:34 arch kernel: pci 0000:05:00.2: reg 0x18: [mem 0xd1400000-0xd14fffff]
May 13 15:38:34 arch kernel: pci 0000:05:00.2: reg 0x24: [mem 0xd15c8000-0xd15c9fff]
May 13 15:38:34 arch kernel: pci 0000:05:00.2: enabling Extended Tags
May 13 15:38:34 arch kernel: pci 0000:05:00.3: [1022:1639] type 00 class 0x0c0330
May 13 15:38:34 arch kernel: pci 0000:05:00.3: reg 0x10: [mem 0xd1300000-0xd13fffff 64bit]
May 13 15:38:34 arch kernel: pci 0000:05:00.3: enabling Extended Tags
May 13 15:38:34 arch kernel: pci 0000:05:00.3: PME# supported from D0 D3hot D3cold
May 13 15:38:34 arch kernel: pci 0000:05:00.4: [1022:1639] type 00 class 0x0c0330
May 13 15:38:34 arch kernel: pci 0000:05:00.4: reg 0x10: [mem 0xd1200000-0xd12fffff 64bit]
May 13 15:38:34 arch kernel: pci 0000:05:00.4: enabling Extended Tags
May 13 15:38:34 arch kernel: pci 0000:05:00.4: PME# supported from D0 D3hot D3cold
May 13 15:38:34 arch kernel: pci 0000:05:00.5: [1022:15e2] type 00 class 0x048000
May 13 15:38:34 arch kernel: pci 0000:05:00.5: reg 0x10: [mem 0xd1580000-0xd15bffff]
May 13 15:38:34 arch kernel: pci 0000:05:00.5: enabling Extended Tags
May 13 15:38:34 arch kernel: pci 0000:05:00.5: PME# supported from D0 D3hot D3cold
May 13 15:38:34 arch kernel: pci 0000:05:00.6: [1022:15e3] type 00 class 0x040300
May 13 15:38:34 arch kernel: pci 0000:05:00.6: reg 0x10: [mem 0xd15c0000-0xd15c7fff]
May 13 15:38:34 arch kernel: pci 0000:05:00.6: enabling Extended Tags
May 13 15:38:34 arch kernel: pci 0000:05:00.6: PME# supported from D0 D3hot D3cold
May 13 15:38:34 arch kernel: pci 0000:00:08.1: PCI bridge to [bus 05]
May 13 15:38:34 arch kernel: pci 0000:00:08.1:   bridge window [io  0x1000-0x1fff]
May 13 15:38:34 arch kernel: pci 0000:00:08.1:   bridge window [mem 0xd1200000-0xd15fffff]
May 13 15:38:34 arch kernel: pci 0000:00:08.1:   bridge window [mem 0xfce0000000-0xfcf01fffff 64bit pref]
May 13 15:38:34 arch kernel: pci 0000:06:00.0: [1022:7901] type 00 class 0x010601
May 13 15:38:34 arch kernel: pci 0000:06:00.0: reg 0x24: [mem 0xd1101000-0xd11017ff]
May 13 15:38:34 arch kernel: pci 0000:06:00.0: enabling Extended Tags
May 13 15:38:34 arch kernel: pci 0000:06:00.1: [1022:7901] type 00 class 0x010601
May 13 15:38:34 arch kernel: pci 0000:06:00.1: reg 0x24: [mem 0xd1100000-0xd11007ff]
May 13 15:38:34 arch kernel: pci 0000:06:00.1: enabling Extended Tags
May 13 15:38:34 arch kernel: pci 0000:00:08.2: PCI bridge to [bus 06]
May 13 15:38:34 arch kernel: pci 0000:00:08.2:   bridge window [mem 0xd1100000-0xd11fffff]
May 13 15:38:34 arch kernel: ACPI: PCI: Interrupt link LNKA configured for IRQ 0
May 13 15:38:34 arch kernel: ACPI: PCI: Interrupt link LNKA disabled
May 13 15:38:34 arch kernel: ACPI: PCI: Interrupt link LNKB configured for IRQ 0
May 13 15:38:34 arch kernel: ACPI: PCI: Interrupt link LNKB disabled
May 13 15:38:34 arch kernel: ACPI: PCI: Interrupt link LNKC configured for IRQ 0
May 13 15:38:34 arch kernel: ACPI: PCI: Interrupt link LNKC disabled
May 13 15:38:34 arch kernel: ACPI: PCI: Interrupt link LNKD configured for IRQ 0
May 13 15:38:34 arch kernel: ACPI: PCI: Interrupt link LNKD disabled
May 13 15:38:34 arch kernel: ACPI: PCI: Interrupt link LNKE configured for IRQ 0
May 13 15:38:34 arch kernel: ACPI: PCI: Interrupt link LNKE disabled
May 13 15:38:34 arch kernel: ACPI: PCI: Interrupt link LNKF configured for IRQ 0
May 13 15:38:34 arch kernel: ACPI: PCI: Interrupt link LNKF disabled
May 13 15:38:34 arch kernel: ACPI: PCI: Interrupt link LNKG configured for IRQ 0
May 13 15:38:34 arch kernel: ACPI: PCI: Interrupt link LNKG disabled
May 13 15:38:34 arch kernel: ACPI: PCI: Interrupt link LNKH configured for IRQ 0
May 13 15:38:34 arch kernel: ACPI: PCI: Interrupt link LNKH disabled
May 13 15:38:34 arch kernel: ACPI: EC: interrupt unblocked
May 13 15:38:34 arch kernel: ACPI: EC: event unblocked
May 13 15:38:34 arch kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
May 13 15:38:34 arch kernel: ACPI: EC: GPE=0x3
May 13 15:38:34 arch kernel: ACPI: \_SB_.PCI0.LPC0.EC0_: Boot DSDT EC initialization complete
May 13 15:38:34 arch kernel: ACPI: \_SB_.PCI0.LPC0.EC0_: EC: Used to handle transactions and events
May 13 15:38:34 arch kernel: iommu: Default domain type: Translated 
May 13 15:38:34 arch kernel: iommu: DMA domain TLB invalidation policy: lazy mode 
May 13 15:38:34 arch kernel: pci 0000:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
May 13 15:38:34 arch kernel: pci 0000:05:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
May 13 15:38:34 arch kernel: pci 0000:01:00.0: vgaarb: bridge control possible
May 13 15:38:34 arch kernel: pci 0000:05:00.0: vgaarb: bridge control possible
May 13 15:38:34 arch kernel: pci 0000:05:00.0: vgaarb: setting as boot device
May 13 15:38:34 arch kernel: vgaarb: loaded
May 13 15:38:34 arch kernel: SCSI subsystem initialized
May 13 15:38:34 arch kernel: libata version 3.00 loaded.
May 13 15:38:34 arch kernel: ACPI: bus type USB registered
May 13 15:38:34 arch kernel: usbcore: registered new interface driver usbfs
May 13 15:38:34 arch kernel: usbcore: registered new interface driver hub
May 13 15:38:34 arch kernel: usbcore: registered new device driver usb
May 13 15:38:34 arch kernel: pps_core: LinuxPPS API ver. 1 registered
May 13 15:38:34 arch kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
May 13 15:38:34 arch kernel: PTP clock support registered
May 13 15:38:34 arch kernel: EDAC MC: Ver: 3.0.0
May 13 15:38:34 arch kernel: Registered efivars operations
May 13 15:38:34 arch kernel: NetLabel: Initializing
May 13 15:38:34 arch kernel: NetLabel:  domain hash size = 128
May 13 15:38:34 arch kernel: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
May 13 15:38:34 arch kernel: NetLabel:  unlabeled traffic allowed by default
May 13 15:38:34 arch kernel: mctp: management component transport protocol core
May 13 15:38:34 arch kernel: NET: Registered PF_MCTP protocol family
May 13 15:38:34 arch kernel: PCI: Using ACPI for IRQ routing
May 13 15:38:34 arch kernel: PCI: pci_cache_line_size set to 64 bytes
May 13 15:38:34 arch kernel: e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
May 13 15:38:34 arch kernel: e820: reserve RAM buffer [mem 0x09b00000-0x0bffffff]
May 13 15:38:34 arch kernel: e820: reserve RAM buffer [mem 0x09f00000-0x0bffffff]
May 13 15:38:34 arch kernel: e820: reserve RAM buffer [mem 0xb593c000-0xb7ffffff]
May 13 15:38:34 arch kernel: e820: reserve RAM buffer [mem 0xbab69000-0xbbffffff]
May 13 15:38:34 arch kernel: e820: reserve RAM buffer [mem 0xc9f7f000-0xcbffffff]
May 13 15:38:34 arch kernel: e820: reserve RAM buffer [mem 0xce000000-0xcfffffff]
May 13 15:38:34 arch kernel: e820: reserve RAM buffer [mem 0x40f340000-0x40fffffff]
May 13 15:38:34 arch kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
May 13 15:38:34 arch kernel: hpet0: 3 comparators, 32-bit 14.318180 MHz counter
May 13 15:38:34 arch kernel: clocksource: Switched to clocksource tsc-early
May 13 15:38:34 arch kernel: VFS: Disk quotas dquot_6.6.0
May 13 15:38:34 arch kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
May 13 15:38:34 arch kernel: pnp: PnP ACPI init
May 13 15:38:34 arch kernel: system 00:00: [mem 0xfec00000-0xfec01fff] could not be reserved
May 13 15:38:34 arch kernel: system 00:00: [mem 0xfee00000-0xfee00fff] has been reserved
May 13 15:38:34 arch kernel: system 00:00: [mem 0xfde00000-0xfdefffff] has been reserved
May 13 15:38:34 arch kernel: system 00:03: [io  0x0400-0x04cf] has been reserved
May 13 15:38:34 arch kernel: system 00:03: [io  0x04d0-0x04d1] has been reserved
May 13 15:38:34 arch kernel: system 00:03: [io  0x04d6] has been reserved
May 13 15:38:34 arch kernel: system 00:03: [io  0x0c00-0x0c01] has been reserved
May 13 15:38:34 arch kernel: system 00:03: [io  0x0c14] has been reserved
May 13 15:38:34 arch kernel: system 00:03: [io  0x0c50-0x0c52] has been reserved
May 13 15:38:34 arch kernel: system 00:03: [io  0x0c6c] has been reserved
May 13 15:38:34 arch kernel: system 00:03: [io  0x0c6f] has been reserved
May 13 15:38:34 arch kernel: system 00:03: [io  0x0cd0-0x0cdb] has been reserved
May 13 15:38:34 arch kernel: system 00:04: [mem 0x000e0000-0x000fffff] could not be reserved
May 13 15:38:34 arch kernel: system 00:04: [mem 0xff000000-0xffffffff] could not be reserved
May 13 15:38:34 arch kernel: pnp: PnP ACPI: found 5 devices
May 13 15:38:34 arch kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
May 13 15:38:34 arch kernel: NET: Registered PF_INET protocol family
May 13 15:38:34 arch kernel: IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
May 13 15:38:34 arch kernel: tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
May 13 15:38:34 arch kernel: TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
May 13 15:38:34 arch kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
May 13 15:38:34 arch kernel: TCP: Hash tables configured (established 131072 bind 65536)
May 13 15:38:34 arch kernel: MPTCP token hash table entries: 16384 (order: 6, 393216 bytes, linear)
May 13 15:38:34 arch kernel: UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
May 13 15:38:34 arch kernel: UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
May 13 15:38:34 arch kernel: NET: Registered PF_UNIX/PF_LOCAL protocol family
May 13 15:38:34 arch kernel: NET: Registered PF_XDP protocol family
May 13 15:38:34 arch kernel: pci 0000:01:00.0: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
May 13 15:38:34 arch kernel: pci 0000:01:00.0: BAR 6: assigned [mem 0xd1080000-0xd10fffff pref]
May 13 15:38:34 arch kernel: pci 0000:00:01.1: PCI bridge to [bus 01]
May 13 15:38:34 arch kernel: pci 0000:00:01.1:   bridge window [io  0x3000-0x3fff]
May 13 15:38:34 arch kernel: pci 0000:00:01.1:   bridge window [mem 0xd0000000-0xd10fffff]
May 13 15:38:34 arch kernel: pci 0000:00:01.1:   bridge window [mem 0xfcc0000000-0xfcd1ffffff 64bit pref]
May 13 15:38:34 arch kernel: pci 0000:00:01.2: PCI bridge to [bus 02]
May 13 15:38:34 arch kernel: pci 0000:00:01.2:   bridge window [mem 0xd1800000-0xd18fffff]
May 13 15:38:34 arch kernel: pci 0000:00:02.1: PCI bridge to [bus 03]
May 13 15:38:34 arch kernel: pci 0000:00:02.1:   bridge window [io  0x2000-0x2fff]
May 13 15:38:34 arch kernel: pci 0000:00:02.1:   bridge window [mem 0xd1700000-0xd17fffff]
May 13 15:38:34 arch kernel: pci 0000:00:02.2: PCI bridge to [bus 04]
May 13 15:38:34 arch kernel: pci 0000:00:02.2:   bridge window [mem 0xd1600000-0xd16fffff]
May 13 15:38:34 arch kernel: pci 0000:00:08.1: PCI bridge to [bus 05]
May 13 15:38:34 arch kernel: pci 0000:00:08.1:   bridge window [io  0x1000-0x1fff]
May 13 15:38:34 arch kernel: pci 0000:00:08.1:   bridge window [mem 0xd1200000-0xd15fffff]
May 13 15:38:34 arch kernel: pci 0000:00:08.1:   bridge window [mem 0xfce0000000-0xfcf01fffff 64bit pref]
May 13 15:38:34 arch kernel: pci 0000:00:08.2: PCI bridge to [bus 06]
May 13 15:38:34 arch kernel: pci 0000:00:08.2:   bridge window [mem 0xd1100000-0xd11fffff]
May 13 15:38:34 arch kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
May 13 15:38:34 arch kernel: pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
May 13 15:38:34 arch kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
May 13 15:38:34 arch kernel: pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000cffff window]
May 13 15:38:34 arch kernel: pci_bus 0000:00: resource 8 [mem 0x000d0000-0x000effff window]
May 13 15:38:34 arch kernel: pci_bus 0000:00: resource 9 [mem 0xd0000000-0xf7ffffff window]
May 13 15:38:34 arch kernel: pci_bus 0000:00: resource 10 [mem 0xfc000000-0xfed3ffff window]
May 13 15:38:34 arch kernel: pci_bus 0000:00: resource 11 [mem 0x450200000-0xfcffffffff window]
May 13 15:38:34 arch kernel: pci_bus 0000:01: resource 0 [io  0x3000-0x3fff]
May 13 15:38:34 arch kernel: pci_bus 0000:01: resource 1 [mem 0xd0000000-0xd10fffff]
May 13 15:38:34 arch kernel: pci_bus 0000:01: resource 2 [mem 0xfcc0000000-0xfcd1ffffff 64bit pref]
May 13 15:38:34 arch kernel: pci_bus 0000:02: resource 1 [mem 0xd1800000-0xd18fffff]
May 13 15:38:34 arch kernel: pci_bus 0000:03: resource 0 [io  0x2000-0x2fff]
May 13 15:38:34 arch kernel: pci_bus 0000:03: resource 1 [mem 0xd1700000-0xd17fffff]
May 13 15:38:34 arch kernel: pci_bus 0000:04: resource 1 [mem 0xd1600000-0xd16fffff]
May 13 15:38:34 arch kernel: pci_bus 0000:05: resource 0 [io  0x1000-0x1fff]
May 13 15:38:34 arch kernel: pci_bus 0000:05: resource 1 [mem 0xd1200000-0xd15fffff]
May 13 15:38:34 arch kernel: pci_bus 0000:05: resource 2 [mem 0xfce0000000-0xfcf01fffff 64bit pref]
May 13 15:38:34 arch kernel: pci_bus 0000:06: resource 1 [mem 0xd1100000-0xd11fffff]
May 13 15:38:34 arch kernel: pci 0000:01:00.1: D0 power state depends on 0000:01:00.0
May 13 15:38:34 arch kernel: pci 0000:05:00.3: extending delay after power-on from D3hot to 20 msec
May 13 15:38:34 arch kernel: pci 0000:05:00.4: extending delay after power-on from D3hot to 20 msec
May 13 15:38:34 arch kernel: pci 0000:05:00.4: quirk_usb_early_handoff+0x0/0x750 took 13628 usecs
May 13 15:38:34 arch kernel: PCI: CLS 64 bytes, default 64
May 13 15:38:34 arch kernel: pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
May 13 15:38:34 arch kernel: pci 0000:00:00.2: can't derive routing for PCI INT A
May 13 15:38:34 arch kernel: pci 0000:00:00.2: PCI INT A: not connected
May 13 15:38:34 arch kernel: Trying to unpack rootfs image as initramfs...
May 13 15:38:34 arch kernel: pci 0000:00:01.0: Adding to iommu group 0
May 13 15:38:34 arch kernel: pci 0000:00:01.1: Adding to iommu group 1
May 13 15:38:34 arch kernel: pci 0000:00:01.2: Adding to iommu group 2
May 13 15:38:34 arch kernel: pci 0000:00:02.0: Adding to iommu group 3
May 13 15:38:34 arch kernel: pci 0000:00:02.1: Adding to iommu group 4
May 13 15:38:34 arch kernel: pci 0000:00:02.2: Adding to iommu group 5
May 13 15:38:34 arch kernel: pci 0000:00:08.0: Adding to iommu group 6
May 13 15:38:34 arch kernel: pci 0000:00:08.1: Adding to iommu group 6
May 13 15:38:34 arch kernel: pci 0000:00:08.2: Adding to iommu group 6
May 13 15:38:34 arch kernel: pci 0000:00:14.0: Adding to iommu group 7
May 13 15:38:34 arch kernel: pci 0000:00:14.3: Adding to iommu group 7
May 13 15:38:34 arch kernel: pci 0000:00:18.0: Adding to iommu group 8
May 13 15:38:34 arch kernel: pci 0000:00:18.1: Adding to iommu group 8
May 13 15:38:34 arch kernel: pci 0000:00:18.2: Adding to iommu group 8
May 13 15:38:34 arch kernel: pci 0000:00:18.3: Adding to iommu group 8
May 13 15:38:34 arch kernel: pci 0000:00:18.4: Adding to iommu group 8
May 13 15:38:34 arch kernel: pci 0000:00:18.5: Adding to iommu group 8
May 13 15:38:34 arch kernel: pci 0000:00:18.6: Adding to iommu group 8
May 13 15:38:34 arch kernel: pci 0000:00:18.7: Adding to iommu group 8
May 13 15:38:34 arch kernel: pci 0000:01:00.0: Adding to iommu group 9
May 13 15:38:34 arch kernel: pci 0000:01:00.1: Adding to iommu group 9
May 13 15:38:34 arch kernel: pci 0000:02:00.0: Adding to iommu group 10
May 13 15:38:34 arch kernel: pci 0000:03:00.0: Adding to iommu group 11
May 13 15:38:34 arch kernel: pci 0000:04:00.0: Adding to iommu group 12
May 13 15:38:34 arch kernel: pci 0000:05:00.0: Adding to iommu group 6
May 13 15:38:34 arch kernel: pci 0000:05:00.2: Adding to iommu group 6
May 13 15:38:34 arch kernel: pci 0000:05:00.3: Adding to iommu group 6
May 13 15:38:34 arch kernel: pci 0000:05:00.4: Adding to iommu group 6
May 13 15:38:34 arch kernel: pci 0000:05:00.5: Adding to iommu group 6
May 13 15:38:35 arch kernel: pci 0000:05:00.6: Adding to iommu group 6
May 13 15:38:35 arch kernel: pci 0000:06:00.0: Adding to iommu group 6
May 13 15:38:35 arch kernel: pci 0000:06:00.1: Adding to iommu group 6
May 13 15:38:35 arch kernel: pci 0000:00:00.2: AMD-Vi: Found IOMMU cap 0x40
May 13 15:38:35 arch kernel: AMD-Vi: Extended features (0x206d73ef22254ade): PPR X2APIC NX GT IA GA PC GA_vAPIC
May 13 15:38:35 arch kernel: AMD-Vi: Interrupt remapping enabled
May 13 15:38:35 arch kernel: AMD-Vi: Virtual APIC enabled
May 13 15:38:35 arch kernel: AMD-Vi: X2APIC enabled
May 13 15:38:35 arch kernel: Freeing initrd memory: 10084K
May 13 15:38:35 arch kernel: software IO TLB: tearing down default memory pool
May 13 15:38:35 arch kernel: LVT offset 0 assigned for vector 0x400
May 13 15:38:35 arch kernel: perf: AMD IBS detected (0x000003ff)
May 13 15:38:35 arch kernel: perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
May 13 15:38:35 arch kernel: Initialise system trusted keyrings
May 13 15:38:35 arch kernel: Key type blacklist registered
May 13 15:38:35 arch kernel: workingset: timestamp_bits=41 max_order=22 bucket_order=0
May 13 15:38:35 arch kernel: zbud: loaded
May 13 15:38:35 arch kernel: Key type asymmetric registered
May 13 15:38:35 arch kernel: Asymmetric key parser 'x509' registered
May 13 15:38:35 arch kernel: alg: self-tests for CTR-KDF (hmac(sha256)) passed
May 13 15:38:35 arch kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 242)
May 13 15:38:35 arch kernel: io scheduler mq-deadline registered
May 13 15:38:35 arch kernel: io scheduler kyber registered
May 13 15:38:35 arch kernel: io scheduler bfq registered
May 13 15:38:35 arch kernel: pcieport 0000:00:01.1: PME: Signaling with IRQ 26
May 13 15:38:35 arch kernel: pcieport 0000:00:01.2: PME: Signaling with IRQ 27
May 13 15:38:35 arch kernel: pcieport 0000:00:02.1: PME: Signaling with IRQ 28
May 13 15:38:35 arch kernel: pcieport 0000:00:02.2: PME: Signaling with IRQ 29
May 13 15:38:35 arch kernel: pcieport 0000:00:08.1: PME: Signaling with IRQ 30
May 13 15:38:35 arch kernel: pcieport 0000:00:08.2: PME: Signaling with IRQ 31
May 13 15:38:35 arch kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
May 13 15:38:35 arch kernel: ACPI: AC: AC Adapter [ACAD] (on-line)
May 13 15:38:35 arch kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
May 13 15:38:35 arch kernel: ACPI: button: Power Button [PWRB]
May 13 15:38:35 arch kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1
May 13 15:38:35 arch kernel: ACPI: button: Sleep Button [SLPB]
May 13 15:38:35 arch kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:2d/PNP0C0D:00/input/input2
May 13 15:38:35 arch kernel: ACPI: button: Lid Switch [LID0]
May 13 15:38:35 arch kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
May 13 15:38:35 arch kernel: ACPI: button: Power Button [PWRF]
May 13 15:38:35 arch kernel: Monitor-Mwait will be used to enter C-1 state
May 13 15:38:35 arch kernel: ACPI: \_SB_.PLTF.C000: Found 3 idle states
May 13 15:38:35 arch kernel: ACPI: FW issue: working around C-state latencies out of order
May 13 15:38:35 arch kernel: ACPI: \_SB_.PLTF.C001: Found 3 idle states
May 13 15:38:35 arch kernel: ACPI: FW issue: working around C-state latencies out of order
May 13 15:38:35 arch kernel: ACPI: \_SB_.PLTF.C002: Found 3 idle states
May 13 15:38:35 arch kernel: ACPI: FW issue: working around C-state latencies out of order
May 13 15:38:35 arch kernel: ACPI: \_SB_.PLTF.C003: Found 3 idle states
May 13 15:38:35 arch kernel: ACPI: FW issue: working around C-state latencies out of order
May 13 15:38:35 arch kernel: ACPI: \_SB_.PLTF.C004: Found 3 idle states
May 13 15:38:35 arch kernel: ACPI: FW issue: working around C-state latencies out of order
May 13 15:38:35 arch kernel: ACPI: \_SB_.PLTF.C005: Found 3 idle states
May 13 15:38:35 arch kernel: ACPI: FW issue: working around C-state latencies out of order
May 13 15:38:35 arch kernel: ACPI: \_SB_.PLTF.C006: Found 3 idle states
May 13 15:38:35 arch kernel: ACPI: FW issue: working around C-state latencies out of order
May 13 15:38:35 arch kernel: ACPI: \_SB_.PLTF.C007: Found 3 idle states
May 13 15:38:35 arch kernel: ACPI: FW issue: working around C-state latencies out of order
May 13 15:38:35 arch kernel: ACPI: \_SB_.PLTF.C008: Found 3 idle states
May 13 15:38:35 arch kernel: ACPI: FW issue: working around C-state latencies out of order
May 13 15:38:35 arch kernel: ACPI: \_SB_.PLTF.C009: Found 3 idle states
May 13 15:38:35 arch kernel: ACPI: FW issue: working around C-state latencies out of order
May 13 15:38:35 arch kernel: ACPI: \_SB_.PLTF.C00A: Found 3 idle states
May 13 15:38:35 arch kernel: ACPI: FW issue: working around C-state latencies out of order
May 13 15:38:35 arch kernel: ACPI: \_SB_.PLTF.C00B: Found 3 idle states
May 13 15:38:35 arch kernel: ACPI: FW issue: working around C-state latencies out of order
May 13 15:38:35 arch kernel: ACPI: \_SB_.PLTF.C00C: Found 3 idle states
May 13 15:38:35 arch kernel: ACPI: FW issue: working around C-state latencies out of order
May 13 15:38:35 arch kernel: ACPI: \_SB_.PLTF.C00D: Found 3 idle states
May 13 15:38:35 arch kernel: ACPI: FW issue: working around C-state latencies out of order
May 13 15:38:35 arch kernel: ACPI: \_SB_.PLTF.C00E: Found 3 idle states
May 13 15:38:35 arch kernel: ACPI: FW issue: working around C-state latencies out of order
May 13 15:38:35 arch kernel: ACPI: \_SB_.PLTF.C00F: Found 3 idle states
May 13 15:38:35 arch kernel: ACPI: FW issue: working around C-state latencies out of order
May 13 15:38:35 arch kernel: Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
May 13 15:38:35 arch kernel: ACPI: battery: Slot [BAT1] (battery present)
May 13 15:38:35 arch kernel: Non-volatile memory driver v1.3
May 13 15:38:35 arch kernel: Linux agpgart interface v0.103
May 13 15:38:35 arch kernel: AMD-Vi: AMD IOMMUv2 loaded and initialized
May 13 15:38:35 arch kernel: ACPI: bus type drm_connector registered
May 13 15:38:35 arch kernel: ahci 0000:06:00.0: version 3.0
May 13 15:38:35 arch kernel: ahci 0000:06:00.0: AHCI 0001.0301 32 slots 1 ports 6 Gbps 0x1 impl SATA mode
May 13 15:38:35 arch kernel: ahci 0000:06:00.0: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part 
May 13 15:38:35 arch kernel: scsi host0: ahci
May 13 15:38:35 arch kernel: ata1: SATA max UDMA/133 abar m2048@0xd1101000 port 0xd1101100 irq 33
May 13 15:38:35 arch kernel: ahci 0000:06:00.1: AHCI 0001.0301 32 slots 1 ports 6 Gbps 0x1 impl SATA mode
May 13 15:38:35 arch kernel: ahci 0000:06:00.1: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part 
May 13 15:38:35 arch kernel: scsi host1: ahci
May 13 15:38:35 arch kernel: ata2: SATA max UDMA/133 abar m2048@0xd1100000 port 0xd1100100 irq 35
May 13 15:38:35 arch kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
May 13 15:38:35 arch kernel: ehci-pci: EHCI PCI platform driver
May 13 15:38:35 arch kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
May 13 15:38:35 arch kernel: ohci-pci: OHCI PCI platform driver
May 13 15:38:35 arch kernel: uhci_hcd: USB Universal Host Controller Interface driver
May 13 15:38:35 arch kernel: usbcore: registered new interface driver usbserial_generic
May 13 15:38:35 arch kernel: usbserial: USB Serial support registered for generic
May 13 15:38:35 arch kernel: rtc_cmos 00:01: RTC can wake from S4
May 13 15:38:35 arch kernel: rtc_cmos 00:01: registered as rtc0
May 13 15:38:35 arch kernel: rtc_cmos 00:01: setting system clock to 2022-05-13T12:38:33 UTC (1652445513)
May 13 15:38:35 arch kernel: rtc_cmos 00:01: alarms up to one month, 114 bytes nvram, hpet irqs
May 13 15:38:35 arch kernel: ledtrig-cpu: registered to indicate activity on CPUs
May 13 15:38:35 arch kernel: efifb: probing for efifb
May 13 15:38:35 arch kernel: efifb: showing boot graphics
May 13 15:38:35 arch kernel: efifb: framebuffer at 0xfce0000000, using 8128k, total 8128k
May 13 15:38:35 arch kernel: efifb: mode is 1920x1080x32, linelength=7680, pages=1
May 13 15:38:35 arch kernel: efifb: scrolling: redraw
May 13 15:38:35 arch kernel: efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
May 13 15:38:35 arch kernel: Console: switching to colour frame buffer device 240x67
May 13 15:38:35 arch kernel: fb0: EFI VGA frame buffer device
May 13 15:38:35 arch kernel: hid: raw HID events driver (C) Jiri Kosina
May 13 15:38:35 arch kernel: drop_monitor: Initializing network drop monitor service
May 13 15:38:35 arch kernel: Initializing XFRM netlink socket
May 13 15:38:35 arch kernel: NET: Registered PF_INET6 protocol family
May 13 15:38:35 arch kernel: Segment Routing with IPv6
May 13 15:38:35 arch kernel: RPL Segment Routing with IPv6
May 13 15:38:35 arch kernel: In-situ OAM (IOAM) with IPv6
May 13 15:38:35 arch kernel: NET: Registered PF_PACKET protocol family
May 13 15:38:35 arch kernel: microcode: CPU0: patch_level=0x08600103
May 13 15:38:35 arch kernel: microcode: CPU1: patch_level=0x08600103
May 13 15:38:35 arch kernel: microcode: CPU2: patch_level=0x08600103
May 13 15:38:35 arch kernel: microcode: CPU3: patch_level=0x08600103
May 13 15:38:35 arch kernel: microcode: CPU4: patch_level=0x08600103
May 13 15:38:35 arch kernel: microcode: CPU5: patch_level=0x08600103
May 13 15:38:35 arch kernel: microcode: CPU6: patch_level=0x08600103
May 13 15:38:35 arch kernel: microcode: CPU7: patch_level=0x08600103
May 13 15:38:35 arch kernel: microcode: CPU8: patch_level=0x08600103
May 13 15:38:35 arch kernel: microcode: CPU9: patch_level=0x08600103
May 13 15:38:35 arch kernel: microcode: CPU10: patch_level=0x08600103
May 13 15:38:35 arch kernel: microcode: CPU11: patch_level=0x08600103
May 13 15:38:35 arch kernel: microcode: CPU12: patch_level=0x08600103
May 13 15:38:35 arch kernel: microcode: CPU13: patch_level=0x08600103
May 13 15:38:35 arch kernel: microcode: CPU14: patch_level=0x08600103
May 13 15:38:35 arch kernel: microcode: CPU15: patch_level=0x08600103
May 13 15:38:35 arch kernel: microcode: Microcode Update Driver: v2.2.
May 13 15:38:35 arch kernel: resctrl: L3 allocation detected
May 13 15:38:35 arch kernel: resctrl: MB allocation detected
May 13 15:38:35 arch kernel: resctrl: L3 monitoring detected
May 13 15:38:35 arch kernel: IPI shorthand broadcast: enabled
May 13 15:38:35 arch kernel: sched_clock: Marking stable (435050941, 438667)->(458380114, -22890506)
May 13 15:38:35 arch kernel: registered taskstats version 1
May 13 15:38:35 arch kernel: Loading compiled-in X.509 certificates
May 13 15:38:35 arch kernel: Loaded X.509 cert 'Build time autogenerated kernel key: 831718b3e11620c1f27213a304d78f099695d3c0'
May 13 15:38:35 arch kernel: zswap: loaded using pool lz4/z3fold
May 13 15:38:35 arch kernel: Key type ._fscrypt registered
May 13 15:38:35 arch kernel: Key type .fscrypt registered
May 13 15:38:35 arch kernel: Key type fscrypt-provisioning registered
May 13 15:38:35 arch kernel: PM:   Magic number: 6:822:632
May 13 15:38:35 arch kernel: RAS: Correctable Errors collector initialized.
May 13 15:38:35 arch kernel: ata2: SATA link down (SStatus 0 SControl 300)
May 13 15:38:35 arch kernel: ata1: SATA link down (SStatus 0 SControl 300)
May 13 15:38:35 arch kernel: Freeing unused decrypted memory: 2036K
May 13 15:38:35 arch kernel: Freeing unused kernel image (initmem) memory: 1792K
May 13 15:38:35 arch kernel: Write protecting the kernel read-only data: 28672k
May 13 15:38:35 arch kernel: Freeing unused kernel image (text/rodata gap) memory: 2040K
May 13 15:38:35 arch kernel: Freeing unused kernel image (rodata/data gap) memory: 1352K
May 13 15:38:35 arch kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
May 13 15:38:35 arch kernel: rodata_test: all tests were successful
May 13 15:38:35 arch kernel: Run /init as init process
May 13 15:38:35 arch kernel:   with arguments:
May 13 15:38:35 arch kernel:     /init
May 13 15:38:35 arch kernel:   with environment:
May 13 15:38:35 arch kernel:     HOME=/
May 13 15:38:35 arch kernel:     TERM=linux
May 13 15:38:35 arch kernel:     BOOT_IMAGE=/boot/vmlinuz-linux-libre
May 13 15:38:35 arch kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
May 13 15:38:35 arch kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
May 13 15:38:35 arch kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
May 13 15:38:35 arch kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
May 13 15:38:35 arch kernel: ACPI: video: [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
May 13 15:38:35 arch kernel: ACPI: video: Video Device [PEGP] (multi-head: yes  rom: no  post: no)
May 13 15:38:35 arch kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/LNXVIDEO:00/input/input4
May 13 15:38:35 arch kernel: ACPI: video: Video Device [VGA] (multi-head: yes  rom: no  post: no)
May 13 15:38:35 arch kernel: acpi device:10: registered as cooling_device16
May 13 15:38:35 arch kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/LNXVIDEO:01/input/input5
May 13 15:38:35 arch kernel: ACPI Warning: \_SB.PCI0.GPP0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20211217/nsarguments-61)
May 13 15:38:35 arch kernel: pci 0000:01:00.0: optimus capabilities: enabled, status dynamic power, hda bios codec supported
May 13 15:38:35 arch kernel: VGA switcheroo: detected Optimus DSM method \_SB_.PCI0.GPP0.PEGP handle
May 13 15:38:35 arch kernel: nouveau 0000:01:00.0: enabling device (0100 -> 0103)
May 13 15:38:35 arch kernel: checking generic (fce0000000 7f0000) vs hw (d0000000 1000000)
May 13 15:38:35 arch kernel: checking generic (fce0000000 7f0000) vs hw (fcc0000000 10000000)
May 13 15:38:35 arch kernel: checking generic (fce0000000 7f0000) vs hw (fcd0000000 2000000)
May 13 15:38:35 arch kernel: nouveau 0000:01:00.0: NVIDIA TU117 (167000a1)
May 13 15:38:35 arch kernel: nouveau 0000:01:00.0: bios: version 90.17.48.00.0f
May 13 15:38:35 arch kernel: nouveau 0000:01:00.0: pmu: firmware unavailable
May 13 15:38:35 arch kernel: nouveau 0000:01:00.0: gr: firmware unavailable
May 13 15:38:35 arch kernel: nouveau 0000:01:00.0: sec2: firmware unavailable
May 13 15:38:35 arch kernel: nouveau 0000:01:00.0: fb: 4096 MiB GDDR6
May 13 15:38:35 arch kernel: nouveau 0000:01:00.0: fb: VPR locked, but no scrubber binary!
May 13 15:38:35 arch kernel: nouveau 0000:01:00.0: DRM: VRAM: 4096 MiB
May 13 15:38:35 arch kernel: nouveau 0000:01:00.0: DRM: GART: 536870912 MiB
May 13 15:38:35 arch kernel: nouveau 0000:01:00.0: DRM: BIT table 'A' not found
May 13 15:38:35 arch kernel: nouveau 0000:01:00.0: DRM: BIT table 'L' not found
May 13 15:38:35 arch kernel: nouveau 0000:01:00.0: DRM: TMDS table version 2.0
May 13 15:38:35 arch kernel: nouveau 0000:01:00.0: DRM: DCB version 4.1
May 13 15:38:35 arch kernel: nouveau 0000:01:00.0: DRM: DCB outp 00: 02002f52 00020010
May 13 15:38:35 arch kernel: nouveau 0000:01:00.0: DRM: DCB conn 02: 00010261
May 13 15:38:35 arch kernel: nouveau 0000:01:00.0: DRM: failed to create kernel channel, -22
May 13 15:38:35 arch kernel: nouveau 0000:01:00.0: DRM: MM: using COPY for buffer copies
May 13 15:38:35 arch kernel: nouveau 0000:01:00.0: [drm] Cannot find any crtc or sizes
May 13 15:38:35 arch kernel: nouveau 0000:01:00.0: [drm] Cannot find any crtc or sizes
May 13 15:38:35 arch kernel: [drm] Initialized nouveau 1.3.1 20120801 for 0000:01:00.0 on minor 0
May 13 15:38:35 arch kernel: i8042: PNP: PS/2 Controller [PNP0303:KBC0] at 0x60,0x64 irq 1
May 13 15:38:35 arch kernel: i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
May 13 15:38:35 arch kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
May 13 15:38:35 arch kernel: xhci_hcd 0000:05:00.3: xHCI Host Controller
May 13 15:38:35 arch kernel: xhci_hcd 0000:05:00.3: new USB bus registered, assigned bus number 1
May 13 15:38:35 arch kernel: xhci_hcd 0000:05:00.3: hcc params 0x0268ffe5 hci version 0x110 quirks 0x0000020000000410
May 13 15:38:35 arch kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.17
May 13 15:38:35 arch kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
May 13 15:38:35 arch kernel: usb usb1: Product: xHCI Host Controller
May 13 15:38:35 arch kernel: usb usb1: Manufacturer: Linux 5.17.3-gnu-1 xhci-hcd
May 13 15:38:35 arch kernel: usb usb1: SerialNumber: 0000:05:00.3
May 13 15:38:35 arch kernel: hub 1-0:1.0: USB hub found
May 13 15:38:35 arch kernel: hub 1-0:1.0: 4 ports detected
May 13 15:38:35 arch kernel: xhci_hcd 0000:05:00.3: xHCI Host Controller
May 13 15:38:35 arch kernel: xhci_hcd 0000:05:00.3: new USB bus registered, assigned bus number 2
May 13 15:38:35 arch kernel: xhci_hcd 0000:05:00.3: Host supports USB 3.1 Enhanced SuperSpeed
May 13 15:38:35 arch kernel: usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
May 13 15:38:35 arch kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.17
May 13 15:38:35 arch kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
May 13 15:38:35 arch kernel: usb usb2: Product: xHCI Host Controller
May 13 15:38:35 arch kernel: usb usb2: Manufacturer: Linux 5.17.3-gnu-1 xhci-hcd
May 13 15:38:35 arch kernel: usb usb2: SerialNumber: 0000:05:00.3
May 13 15:38:35 arch kernel: hub 2-0:1.0: USB hub found
May 13 15:38:35 arch kernel: hub 2-0:1.0: 2 ports detected
May 13 15:38:35 arch kernel: xhci_hcd 0000:05:00.4: xHCI Host Controller
May 13 15:38:35 arch kernel: xhci_hcd 0000:05:00.4: new USB bus registered, assigned bus number 3
May 13 15:38:35 arch kernel: xhci_hcd 0000:05:00.4: hcc params 0x0268ffe5 hci version 0x110 quirks 0x0000020000000410
May 13 15:38:35 arch kernel: usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.17
May 13 15:38:35 arch kernel: usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
May 13 15:38:35 arch kernel: usb usb3: Product: xHCI Host Controller
May 13 15:38:35 arch kernel: usb usb3: Manufacturer: Linux 5.17.3-gnu-1 xhci-hcd
May 13 15:38:35 arch kernel: usb usb3: SerialNumber: 0000:05:00.4
May 13 15:38:35 arch kernel: hub 3-0:1.0: USB hub found
May 13 15:38:35 arch kernel: hub 3-0:1.0: 4 ports detected
May 13 15:38:35 arch kernel: xhci_hcd 0000:05:00.4: xHCI Host Controller
May 13 15:38:35 arch kernel: xhci_hcd 0000:05:00.4: new USB bus registered, assigned bus number 4
May 13 15:38:35 arch kernel: xhci_hcd 0000:05:00.4: Host supports USB 3.1 Enhanced SuperSpeed
May 13 15:38:35 arch kernel: usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
May 13 15:38:35 arch kernel: usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.17
May 13 15:38:35 arch kernel: usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
May 13 15:38:35 arch kernel: usb usb4: Product: xHCI Host Controller
May 13 15:38:35 arch kernel: usb usb4: Manufacturer: Linux 5.17.3-gnu-1 xhci-hcd
May 13 15:38:35 arch kernel: usb usb4: SerialNumber: 0000:05:00.4
May 13 15:38:35 arch kernel: hub 4-0:1.0: USB hub found
May 13 15:38:35 arch kernel: hub 4-0:1.0: 2 ports detected
May 13 15:38:35 arch kernel: nvme 0000:02:00.0: platform quirk: setting simple suspend
May 13 15:38:35 arch kernel: nvme nvme0: pci function 0000:02:00.0
May 13 15:38:35 arch kernel: nvme nvme0: allocated 32 MiB host memory buffer.
May 13 15:38:35 arch kernel: nvme nvme0: 16/0/0 default/read/poll queues
May 13 15:38:35 arch kernel:  nvme0n1: p1 p2 p3
May 13 15:38:35 arch kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input6
May 13 15:38:35 arch kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x29b91578521, max_idle_ns: 440795257552 ns
May 13 15:38:35 arch kernel: clocksource: Switched to clocksource tsc
May 13 15:38:35 arch kernel: usb 3-1: new full-speed USB device number 2 using xhci_hcd
May 13 15:38:35 arch kernel: usb 1-4: new full-speed USB device number 2 using xhci_hcd
May 13 15:38:35 arch kernel: EXT4-fs (nvme0n1p3): mounted filesystem with ordered data mode. Quota mode: none.
May 13 15:38:35 arch systemd[1]: systemd 250.5-1-arch running in system mode (+PAM +AUDIT -SELINUX -APPARMOR -IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT -QRENCODE +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK +XKBCOMMON +UTMP -SYSVINIT default-hierarchy=unified)
May 13 15:38:35 arch kernel: usb 3-1: New USB device found, idVendor=046d, idProduct=c084, bcdDevice= 7.03
May 13 15:38:35 arch kernel: usb 3-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
May 13 15:38:35 arch kernel: usb 3-1: Product: G102 Prodigy Gaming Mouse
May 13 15:38:35 arch kernel: usb 3-1: Manufacturer: Logitech
May 13 15:38:35 arch kernel: usb 3-1: SerialNumber: 0F6B39543731
May 13 15:38:35 arch kernel: usb 1-4: New USB device found, idVendor=8087, idProduct=0029, bcdDevice= 0.01
May 13 15:38:35 arch kernel: usb 1-4: New USB device strings: Mfr=0, Product=0, SerialNumber=0
May 13 15:38:35 arch systemd[1]: Detected architecture x86-64.
May 13 15:38:35 arch systemd[1]: Hostname set to <arch>.
May 13 15:38:35 arch kernel: usb 2-2: new SuperSpeed USB device number 2 using xhci_hcd
May 13 15:38:35 arch kernel: usb 2-2: New USB device found, idVendor=0951, idProduct=1666, bcdDevice= 1.10
May 13 15:38:35 arch kernel: usb 2-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
May 13 15:38:35 arch kernel: usb 2-2: Product: DataTraveler 3.0
May 13 15:38:35 arch kernel: usb 2-2: Manufacturer: Kingston
May 13 15:38:35 arch kernel: usb 2-2: SerialNumber: 408D5C1654FDE460993951C3
May 13 15:38:35 arch kernel: usb 3-3: new high-speed USB device number 3 using xhci_hcd
May 13 15:38:35 arch systemd[1]: Queued start job for default target Graphical Interface.
May 13 15:38:35 arch systemd[1]: Created slice Virtual Machine and Container Slice.
May 13 15:38:35 arch systemd[1]: Created slice Slice /system/getty.
May 13 15:38:35 arch systemd[1]: Created slice Slice /system/modprobe.
May 13 15:38:35 arch systemd[1]: Created slice Slice /system/systemd-fsck.
May 13 15:38:35 arch systemd[1]: Created slice User and Session Slice.
May 13 15:38:35 arch systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
May 13 15:38:35 arch systemd[1]: Started Forward Password Requests to Wall Directory Watch.
May 13 15:38:35 arch systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
May 13 15:38:35 arch systemd[1]: Reached target Local Encrypted Volumes.
May 13 15:38:35 arch systemd[1]: Reached target Local Integrity Protected Volumes.
May 13 15:38:35 arch systemd[1]: Reached target Path Units.
May 13 15:38:35 arch systemd[1]: Reached target Remote File Systems.
May 13 15:38:35 arch systemd[1]: Reached target Slice Units.
May 13 15:38:35 arch systemd[1]: Reached target Local Verity Protected Volumes.
May 13 15:38:35 arch systemd[1]: Listening on Device-mapper event daemon FIFOs.
May 13 15:38:35 arch systemd[1]: Listening on LVM2 poll daemon socket.
May 13 15:38:35 arch systemd[1]: Listening on Process Core Dump Socket.
May 13 15:38:35 arch systemd[1]: Listening on Journal Audit Socket.
May 13 15:38:35 arch systemd[1]: Listening on Journal Socket (/dev/log).
May 13 15:38:35 arch systemd[1]: Listening on Journal Socket.
May 13 15:38:35 arch systemd[1]: Listening on udev Control Socket.
May 13 15:38:35 arch systemd[1]: Listening on udev Kernel Socket.
May 13 15:38:35 arch systemd[1]: Mounting Huge Pages File System...
May 13 15:38:35 arch systemd[1]: Mounting POSIX Message Queue File System...
May 13 15:38:35 arch systemd[1]: Mounting Kernel Debug File System...
May 13 15:38:35 arch systemd[1]: Mounting Kernel Trace File System...
May 13 15:38:35 arch systemd[1]: Starting Create List of Static Device Nodes...
May 13 15:38:35 arch systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
May 13 15:38:35 arch systemd[1]: Starting Load Kernel Module configfs...
May 13 15:38:35 arch systemd[1]: Starting Load Kernel Module drm...
May 13 15:38:35 arch systemd[1]: Starting Load Kernel Module fuse...
May 13 15:38:35 arch systemd[1]: File System Check on Root Device was skipped because of a failed condition check (ConditionPathIsReadWrite=!/).
May 13 15:38:35 arch systemd[1]: Starting Journal Service...
May 13 15:38:35 arch systemd[1]: Starting Load Kernel Modules...
May 13 15:38:35 arch systemd[1]: Starting Remount Root and Kernel File Systems...
May 13 15:38:35 arch systemd[1]: Repartition Root Disk was skipped because all trigger condition checks failed.
May 13 15:38:35 arch systemd[1]: Starting Coldplug All udev Devices...
May 13 15:38:35 arch systemd[1]: Mounted Huge Pages File System.
May 13 15:38:35 arch systemd[1]: Mounted POSIX Message Queue File System.
May 13 15:38:35 arch systemd[1]: Mounted Kernel Debug File System.
May 13 15:38:35 arch systemd[1]: Mounted Kernel Trace File System.
May 13 15:38:35 arch systemd[1]: Finished Create List of Static Device Nodes.
May 13 15:38:35 arch systemd[1]: modprobe@configfs.service: Deactivated successfully.
May 13 15:38:35 arch systemd[1]: Finished Load Kernel Module configfs.
May 13 15:38:35 arch systemd[1]: modprobe@drm.service: Deactivated successfully.
May 13 15:38:35 arch systemd[1]: Finished Load Kernel Module drm.
May 13 15:38:35 arch systemd[1]: Mounting Kernel Configuration File System...
May 13 15:38:35 arch kernel: EXT4-fs (nvme0n1p3): re-mounted. Quota mode: none.
May 13 15:38:35 arch systemd[1]: Mounted Kernel Configuration File System.
May 13 15:38:35 arch systemd[1]: Finished Remount Root and Kernel File Systems.
May 13 15:38:35 arch systemd[1]: First Boot Wizard was skipped because of a failed condition check (ConditionFirstBoot=yes).
May 13 15:38:35 arch systemd[1]: Rebuild Hardware Database was skipped because of a failed condition check (ConditionNeedsUpdate=/etc).
May 13 15:38:35 arch systemd[1]: Starting Load/Save Random Seed...
May 13 15:38:35 arch systemd[1]: Create System Users was skipped because of a failed condition check (ConditionNeedsUpdate=/etc).
May 13 15:38:35 arch systemd[1]: Starting Create Static Device Nodes in /dev...
May 13 15:38:35 arch kernel: fuse: init (API version 7.36)
May 13 15:38:35 arch systemd[1]: modprobe@fuse.service: Deactivated successfully.
May 13 15:38:35 arch systemd[1]: Finished Load Kernel Module fuse.
May 13 15:38:35 arch systemd[1]: Mounting FUSE Control File System...
May 13 15:38:35 arch systemd[1]: Mounted FUSE Control File System.
May 13 15:38:35 arch systemd[1]: Finished Load/Save Random Seed.
May 13 15:38:35 arch kernel: audit: type=1130 audit(1652445514.983:2): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-random-seed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 13 15:38:35 arch systemd[1]: First Boot Complete was skipped because of a failed condition check (ConditionFirstBoot=yes).
May 13 15:38:35 arch kernel: device-mapper: uevent: version 1.0.3
May 13 15:38:35 arch kernel: device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com
May 13 15:38:35 arch systemd[1]: Finished Create Static Device Nodes in /dev.
May 13 15:38:35 arch kernel: audit: type=1130 audit(1652445514.996:3): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 13 15:38:35 arch kernel: audit: type=1334 audit(1652445514.996:4): prog-id=13 op=LOAD
May 13 15:38:35 arch kernel: audit: type=1334 audit(1652445514.996:5): prog-id=14 op=LOAD
May 13 15:38:35 arch kernel: audit: type=1334 audit(1652445514.996:6): prog-id=15 op=LOAD
May 13 15:38:35 arch systemd[1]: Starting Rule-based Manager for Device Events and Files...
May 13 15:38:35 arch systemd[1]: Finished Load Kernel Modules.
May 13 15:38:35 arch kernel: audit: type=1130 audit(1652445514.996:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-modules-load comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 13 15:38:35 arch systemd[1]: Starting Apply Kernel Variables...
May 13 15:38:35 arch systemd[1]: Finished Apply Kernel Variables.
May 13 15:38:35 arch kernel: audit: type=1130 audit(1652445515.000:8): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 13 15:38:35 arch systemd-journald[331]: Journal started
May 13 15:38:35 arch systemd-journald[331]: Runtime Journal (/run/log/journal/0055b974517649deafe0a07797d27475) is 8.0M, max 771.4M, 763.4M free.
May 13 15:38:34 arch audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-random-seed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 13 15:38:34 arch audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 13 15:38:34 arch audit: BPF prog-id=13 op=LOAD
May 13 15:38:34 arch audit: BPF prog-id=14 op=LOAD
May 13 15:38:34 arch audit: BPF prog-id=15 op=LOAD
May 13 15:38:34 arch audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-modules-load comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 13 15:38:35 arch audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 13 15:38:35 arch audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 13 15:38:34 arch systemd-modules-load[332]: Inserted module 'crypto_user'
May 13 15:38:34 arch systemd-modules-load[332]: Inserted module 'sg'
May 13 15:38:35 arch systemd-modules-load[332]: Inserted module 'dm_multipath'
May 13 15:38:35 arch systemd[1]: Starting Flush Journal to Persistent Storage...
May 13 15:38:35 arch systemd[1]: Started Journal Service.
May 13 15:38:35 arch kernel: audit: type=1130 audit(1652445515.006:9): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 13 15:38:35 arch systemd-journald[331]: Time spent on flushing to /var/log/journal/0055b974517649deafe0a07797d27475 is 168.009ms for 988 entries.
May 13 15:38:35 arch systemd-journald[331]: System Journal (/var/log/journal/0055b974517649deafe0a07797d27475) is 2.0G, max 4.0G, 1.9G free.
May 13 15:38:35 arch systemd-journald[331]: Received client request to flush runtime journal.
May 13 15:38:35 arch kernel: audit: type=1130 audit(1652445515.016:10): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udev-trigger comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 13 15:38:35 arch kernel: input: Acer Wireless Radio Control as /devices/LNXSYSTM:00/10251229:00/input/input7
May 13 15:38:35 arch kernel: acpi_cpufreq: overriding BIOS provided _PSD data
May 13 15:38:35 arch kernel: piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
May 13 15:38:35 arch kernel: piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
May 13 15:38:35 arch kernel: piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
May 13 15:38:35 arch kernel: ccp 0000:05:00.2: enabling device (0000 -> 0002)
May 13 15:38:35 arch kernel: ccp 0000:05:00.2: ccp: unable to access the device: you might be running a broken BIOS.
May 13 15:38:35 arch kernel: ccp 0000:05:00.2: tee enabled
May 13 15:38:35 arch kernel: ccp 0000:05:00.2: psp enabled
May 13 15:38:35 arch kernel: usb 3-3: New USB device found, idVendor=04f2, idProduct=b72b, bcdDevice=27.46
May 13 15:38:35 arch kernel: usb 3-3: New USB device strings: Mfr=3, Product=1, SerialNumber=2
May 13 15:38:35 arch kernel: usb 3-3: Product: HD User Facing
May 13 15:38:35 arch kernel: usb 3-3: Manufacturer: Chicony Electronics Co.,Ltd.
May 13 15:38:35 arch kernel: usb 3-3: SerialNumber: 200901010001
May 13 15:38:35 arch kernel: input: ELAN050A:01 04F3:3158 Mouse as /devices/platform/AMDI0010:03/i2c-0/i2c-ELAN050A:01/0018:04F3:3158.0001/input/input8
May 13 15:38:35 arch kernel: input: ELAN050A:01 04F3:3158 Touchpad as /devices/platform/AMDI0010:03/i2c-0/i2c-ELAN050A:01/0018:04F3:3158.0001/input/input10
May 13 15:38:35 arch kernel: hid-generic 0018:04F3:3158.0001: input,hidraw0: I2C HID v1.00 Mouse [ELAN050A:01 04F3:3158] on i2c-ELAN050A:01
May 13 15:38:35 arch kernel: usb-storage 2-2:1.0: USB Mass Storage device detected
May 13 15:38:35 arch kernel: scsi host2: usb-storage 2-2:1.0
May 13 15:38:35 arch kernel: usbcore: registered new interface driver usb-storage
May 13 15:38:35 arch kernel: RAPL PMU: API unit is 2^-32 Joules, 1 fixed counters, 163840 ms ovfl timer
May 13 15:38:35 arch kernel: RAPL PMU: hw unit of domain package 2^-16 Joules
May 13 15:38:35 arch kernel: acer_wmi: Acer Laptop ACPI-WMI Extras
May 13 15:38:35 arch kernel: acer_wmi: Function bitmap for Communication Button: 0x801
May 13 15:38:35 arch kernel: snd_rn_pci_acp3x 0000:05:00.5: enabling device (0000 -> 0002)
May 13 15:38:35 arch kernel: input: Logitech G102 Prodigy Gaming Mouse as /devices/pci0000:00/0000:00:08.1/0000:05:00.4/usb3/3-1/3-1:1.0/0003:046D:C084.0002/input/input11
May 13 15:38:35 arch kernel: hid-generic 0003:046D:C084.0002: input,hidraw1: USB HID v1.11 Mouse [Logitech G102 Prodigy Gaming Mouse] on usb-0000:05:00.4-1/input0
May 13 15:38:35 arch kernel: sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
May 13 15:38:35 arch kernel: sp5100-tco sp5100-tco: Using 0xfeb00000 for watchdog MMIO address
May 13 15:38:35 arch kernel: sp5100-tco sp5100-tco: initialized. heartbeat=60 sec (nowayout=0)
May 13 15:38:35 arch kernel: cryptd: max_cpu_qlen set to 1000
May 13 15:38:35 arch kernel: usbcore: registered new interface driver uas
May 13 15:38:35 arch kernel: input: Acer WMI hotkeys as /devices/virtual/input/input12
May 13 15:38:35 arch kernel: Adding 1048572k swap on /dev/nvme0n1p2.  Priority:-2 extents:1 across:1048572k SSFS
May 13 15:38:35 arch kernel: input: Logitech G102 Prodigy Gaming Mouse Keyboard as /devices/pci0000:00/0000:00:08.1/0000:05:00.4/usb3/3-1/3-1:1.1/0003:046D:C084.0003/input/input13
May 13 15:38:35 arch audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udev-trigger comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 13 15:38:35 arch audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udevd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 13 15:38:35 arch audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-backlight@backlight:acpi_video0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 13 15:38:35 arch audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lvm2-monitor comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 13 15:38:35 arch audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-A9A4\x2d1D4D comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 13 15:38:35 arch mtp-probe[401]: checking bus 2, device 2: "/sys/devices/pci0000:00/0000:00:08.1/0000:05:00.3/usb2/2-2"
May 13 15:38:35 arch audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journal-flush comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 13 15:38:35 arch systemd[1]: Finished Coldplug All udev Devices.
May 13 15:38:35 arch mtp-probe[401]: bus: 2, device: 2 was not an MTP device
May 13 15:38:35 arch systemd[1]: Started Rule-based Manager for Device Events and Files.
May 13 15:38:35 arch mtp-probe[404]: checking bus 3, device 2: "/sys/devices/pci0000:00/0000:00:08.1/0000:05:00.4/usb3/3-1"
May 13 15:38:35 arch systemd[1]: Created slice Slice /system/systemd-backlight.
May 13 15:38:35 arch systemd-fsck[427]: Seek to 1073741312:Invalid argument
May 13 15:38:35 arch systemd-fsck[427]: fsck.fat 4.2 (2021-01-31)
May 13 15:38:35 arch mtp-probe[404]: bus: 3, device: 2 was not an MTP device
May 13 15:38:35 arch systemd[1]: Starting Load/Save Screen Backlight Brightness of backlight:acpi_video0...
May 13 15:38:35 arch systemd[1]: Finished Load/Save Screen Backlight Brightness of backlight:acpi_video0.
May 13 15:38:35 arch systemd[1]: Finished Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
May 13 15:38:35 arch systemd[1]: Reached target Preparation for Local File Systems.
May 13 15:38:35 arch systemd[1]: Virtual Machine and Container Storage (Compatibility) was skipped because of a failed condition check (ConditionPathExists=/var/lib/machines.raw).
May 13 15:38:35 arch systemd[1]: Found device WDC PC SN530 SDBPNPZ-512G-1014 1.
May 13 15:38:35 arch systemd[1]: Starting File System Check on /dev/disk/by-uuid/A9A4-1D4D...
May 13 15:38:35 arch systemd[1]: Found device WDC PC SN530 SDBPNPZ-512G-1014 2.
May 13 15:38:35 arch systemd[1]: Activating swap /dev/disk/by-uuid/e1b76519-03ee-45b7-92e1-1dcfa110687e...
May 13 15:38:35 arch systemd[1]: Activated swap /dev/disk/by-uuid/e1b76519-03ee-45b7-92e1-1dcfa110687e.
May 13 15:38:35 arch systemd[1]: Finished File System Check on /dev/disk/by-uuid/A9A4-1D4D.
May 13 15:38:35 arch systemd[1]: Reached target Swaps.
May 13 15:38:35 arch systemd[1]: Mounting /efi...
May 13 15:38:35 arch systemd[1]: Mounting Temporary Directory /tmp...
May 13 15:38:35 arch systemd[1]: Mounted Temporary Directory /tmp.
May 13 15:38:35 arch systemd[1]: Finished Flush Journal to Persistent Storage.
May 13 15:38:35 arch systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
May 13 15:38:35 arch systemd[1]: Starting Load/Save RF Kill Switch Status...
May 13 15:38:35 arch mtp-probe[437]: checking bus 3, device 3: "/sys/devices/pci0000:00/0000:00:08.1/0000:05:00.4/usb3/3-3"
May 13 15:38:35 arch mtp-probe[437]: bus: 3, device: 3 was not an MTP device
May 13 15:38:35 arch kernel: hid-generic 0003:046D:C084.0003: input,hiddev96,hidraw2: USB HID v1.11 Keyboard [Logitech G102 Prodigy Gaming Mouse] on usb-0000:05:00.4-1/input1
May 13 15:38:35 arch kernel: usbcore: registered new interface driver usbhid
May 13 15:38:35 arch kernel: usbhid: USB HID core driver
May 13 15:38:35 arch systemd[1]: Started Load/Save RF Kill Switch Status.
May 13 15:38:35 arch audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 13 15:38:35 arch kernel: mc: Linux media interface: v0.10
May 13 15:38:35 arch kernel: AVX2 version of gcm_enc/dec engaged.
May 13 15:38:35 arch kernel: AES CTR mode by8 optimization enabled
May 13 15:38:35 arch kernel: Bluetooth: Core ver 2.22
May 13 15:38:35 arch kernel: NET: Registered PF_BLUETOOTH protocol family
May 13 15:38:35 arch kernel: Bluetooth: HCI device and connection manager initialized
May 13 15:38:35 arch kernel: Bluetooth: HCI socket layer initialized
May 13 15:38:35 arch kernel: Bluetooth: L2CAP socket layer initialized
May 13 15:38:35 arch kernel: Bluetooth: SCO socket layer initialized
May 13 15:38:35 arch kernel: r8169 0000:03:00.0: enabling device (0000 -> 0003)
May 13 15:38:35 arch kernel: videodev: Linux video capture interface: v2.00
May 13 15:38:35 arch kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
May 13 15:38:35 arch kernel: FAT-fs (nvme0n1p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
May 13 15:38:35 arch systemd[1]: Mounted /efi.
May 13 15:38:35 arch systemd[1]: Reached target Local File Systems.
May 13 15:38:35 arch systemd[1]: Rebuild Dynamic Linker Cache was skipped because all trigger condition checks failed.
May 13 15:38:35 arch systemd[1]: Starting Set Up Additional Binary Formats...
May 13 15:38:35 arch systemd[1]: Store a System Token in an EFI Variable was skipped because of a failed condition check (ConditionPathExists=/sys/firmware/efi/efivars/LoaderFeatures-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
May 13 15:38:35 arch systemd[1]: Commit a transient machine-id on disk was skipped because of a failed condition check (ConditionPathIsMountPoint=/etc/machine-id).
May 13 15:38:35 arch systemd[1]: Starting Create Volatile Files and Directories...
May 13 15:38:35 arch systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 465 (systemd-binfmt)
May 13 15:38:35 arch kernel: cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
May 13 15:38:35 arch kernel: platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
May 13 15:38:35 arch kernel: cfg80211: failed to load regulatory.db
May 13 15:38:35 arch kernel: r8169 0000:03:00.0 eth0: RTL8168h/8111h, 08:8f:c3:07:b6:d0, XID 541, IRQ 78
May 13 15:38:35 arch kernel: r8169 0000:03:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
May 13 15:38:35 arch kernel: microcode: Missing Free firmware (non-Free firmware loading is disabled)
May 13 15:38:35 arch audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 13 15:38:35 arch systemd[1]: Finished Create Volatile Files and Directories.
May 13 15:38:35 arch audit: BPF prog-id=16 op=LOAD
May 13 15:38:35 arch systemd[1]: Rebuild Journal Catalog was skipped because of a failed condition check (ConditionNeedsUpdate=/var).
May 13 15:38:35 arch systemd[1]: Starting Network Time Synchronization...
May 13 15:38:35 arch systemd[1]: Update is Completed was skipped because all trigger condition checks failed.
May 13 15:38:35 arch systemd[1]: Starting Record System Boot/Shutdown in UTMP...
May 13 15:38:35 arch audit[476]: SYSTEM_BOOT pid=476 uid=0 auid=4294967295 ses=4294967295 msg=' comm="systemd-update-utmp" exe="/usr/lib/systemd/systemd-update-utmp" hostname=? addr=? terminal=? res=success'
May 13 15:38:35 arch systemd[1]: Finished Record System Boot/Shutdown in UTMP.
May 13 15:38:35 arch audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-update-utmp comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 13 15:38:35 arch kernel: mousedev: PS/2 mouse device common for all mice
May 13 15:38:35 arch kernel: input: ELAN050A:01 04F3:3158 Mouse as /devices/platform/AMDI0010:03/i2c-0/i2c-ELAN050A:01/0018:04F3:3158.0001/input/input16
May 13 15:38:35 arch kernel: input: ELAN050A:01 04F3:3158 Touchpad as /devices/platform/AMDI0010:03/i2c-0/i2c-ELAN050A:01/0018:04F3:3158.0001/input/input18
May 13 15:38:35 arch kernel: hid-multitouch 0018:04F3:3158.0001: input,hidraw0: I2C HID v1.00 Mouse [ELAN050A:01 04F3:3158] on i2c-ELAN050A:01
May 13 15:38:35 arch kernel: snd_hda_intel 0000:01:00.1: enabling device (0000 -> 0002)
May 13 15:38:35 arch kernel: snd_hda_intel 0000:01:00.1: Disabling MSI
May 13 15:38:35 arch kernel: snd_hda_intel 0000:01:00.1: Handle vga_switcheroo audio client
May 13 15:38:35 arch kernel: snd_hda_intel 0000:05:00.6: enabling device (0000 -> 0002)
May 13 15:38:35 arch kernel: Intel(R) Wireless WiFi driver for Linux
May 13 15:38:35 arch kernel: iwlwifi 0000:04:00.0: enabling device (0000 -> 0002)
May 13 15:38:35 arch kernel: 0000:04:00.0: Missing Free firmware (non-Free firmware loading is disabled)
May 13 15:38:35 arch kernel: iwlwifi 0000:04:00.0: Direct firmware load for /*(DEBLOBBED)*/ failed with error -2
May 13 15:38:35 arch kernel: 0000:04:00.0: Missing Free firmware (non-Free firmware loading is disabled)
May 13 15:38:35 arch kernel: iwlwifi 0000:04:00.0: Direct firmware load for /*(DEBLOBBED)*/ failed with error -2
May 13 15:38:35 arch kernel: 0000:04:00.0: Missing Free firmware (non-Free firmware loading is disabled)
May 13 15:38:35 arch kernel: iwlwifi 0000:04:00.0: Direct firmware load for /*(DEBLOBBED)*/ failed with error -2
May 13 15:38:35 arch kernel: 0000:04:00.0: Missing Free firmware (non-Free firmware loading is disabled)
May 13 15:38:35 arch kernel: iwlwifi 0000:04:00.0: Direct firmware load for /*(DEBLOBBED)*/ failed with error -2
May 13 15:38:35 arch kernel: 0000:04:00.0: Missing Free firmware (non-Free firmware loading is disabled)
May 13 15:38:35 arch kernel: iwlwifi 0000:04:00.0: Direct firmware load for /*(DEBLOBBED)*/ failed with error -2
May 13 15:38:35 arch kernel: 0000:04:00.0: Missing Free firmware (non-Free firmware loading is disabled)
May 13 15:38:35 arch kernel: iwlwifi 0000:04:00.0: Direct firmware load for /*(DEBLOBBED)*/ failed with error -2
May 13 15:38:35 arch kernel: 0000:04:00.0: Missing Free firmware (non-Free firmware loading is disabled)
May 13 15:38:35 arch kernel: iwlwifi 0000:04:00.0: Direct firmware load for /*(DEBLOBBED)*/ failed with error -2
May 13 15:38:35 arch kernel: 0000:04:00.0: Missing Free firmware (non-Free firmware loading is disabled)
May 13 15:38:35 arch kernel: iwlwifi 0000:04:00.0: Direct firmware load for /*(DEBLOBBED)*/ failed with error -2
May 13 15:38:35 arch kernel: 0000:04:00.0: Missing Free firmware (non-Free firmware loading is disabled)
May 13 15:38:35 arch kernel: iwlwifi 0000:04:00.0: Direct firmware load for /*(DEBLOBBED)*/ failed with error -2
May 13 15:38:35 arch kernel: 0000:04:00.0: Missing Free firmware (non-Free firmware loading is disabled)
May 13 15:38:35 arch kernel: iwlwifi 0000:04:00.0: Direct firmware load for /*(DEBLOBBED)*/ failed with error -2
May 13 15:38:35 arch kernel: 0000:04:00.0: Missing Free firmware (non-Free firmware loading is disabled)
May 13 15:38:35 arch kernel: iwlwifi 0000:04:00.0: Direct firmware load for /*(DEBLOBBED)*/ failed with error -2
May 13 15:38:35 arch kernel: 0000:04:00.0: Missing Free firmware (non-Free firmware loading is disabled)
May 13 15:38:35 arch kernel: iwlwifi 0000:04:00.0: Direct firmware load for /*(DEBLOBBED)*/ failed with error -2
May 13 15:38:35 arch kernel: 0000:04:00.0: Missing Free firmware (non-Free firmware loading is disabled)
May 13 15:38:35 arch kernel: iwlwifi 0000:04:00.0: Direct firmware load for /*(DEBLOBBED)*/ failed with error -2
May 13 15:38:35 arch kernel: 0000:04:00.0: Missing Free firmware (non-Free firmware loading is disabled)
May 13 15:38:35 arch kernel: iwlwifi 0000:04:00.0: Direct firmware load for /*(DEBLOBBED)*/ failed with error -2
May 13 15:38:35 arch kernel: 0000:04:00.0: Missing Free firmware (non-Free firmware loading is disabled)
May 13 15:38:35 arch kernel: iwlwifi 0000:04:00.0: Direct firmware load for /*(DEBLOBBED)*/ failed with error -2
May 13 15:38:35 arch kernel: 0000:04:00.0: Missing Free firmware (non-Free firmware loading is disabled)
May 13 15:38:35 arch kernel: iwlwifi 0000:04:00.0: Direct firmware load for /*(DEBLOBBED)*/ failed with error -2
May 13 15:38:35 arch kernel: 0000:04:00.0: Missing Free firmware (non-Free firmware loading is disabled)
May 13 15:38:35 arch kernel: iwlwifi 0000:04:00.0: Direct firmware load for /*(DEBLOBBED)*/ failed with error -2
May 13 15:38:35 arch kernel: 0000:04:00.0: Missing Free firmware (non-Free firmware loading is disabled)
May 13 15:38:35 arch kernel: iwlwifi 0000:04:00.0: Direct firmware load for /*(DEBLOBBED)*/ failed with error -2
May 13 15:38:35 arch kernel: 0000:04:00.0: Missing Free firmware (non-Free firmware loading is disabled)
May 13 15:38:35 arch kernel: iwlwifi 0000:04:00.0: Direct firmware load for /*(DEBLOBBED)*/ failed with error -2
May 13 15:38:35 arch kernel: 0000:04:00.0: Missing Free firmware (non-Free firmware loading is disabled)
May 13 15:38:35 arch kernel: iwlwifi 0000:04:00.0: Direct firmware load for /*(DEBLOBBED)*/ failed with error -2
May 13 15:38:35 arch kernel: 0000:04:00.0: Missing Free firmware (non-Free firmware loading is disabled)
May 13 15:38:35 arch kernel: iwlwifi 0000:04:00.0: Direct firmware load for /*(DEBLOBBED)*/ failed with error -2
May 13 15:38:35 arch kernel: 0000:04:00.0: Missing Free firmware (non-Free firmware loading is disabled)
May 13 15:38:35 arch kernel: iwlwifi 0000:04:00.0: Direct firmware load for /*(DEBLOBBED)*/ failed with error -2
May 13 15:38:35 arch kernel: 0000:04:00.0: Missing Free firmware (non-Free firmware loading is disabled)
May 13 15:38:35 arch kernel: iwlwifi 0000:04:00.0: Direct firmware load for /*(DEBLOBBED)*/ failed with error -2
May 13 15:38:35 arch kernel: 0000:04:00.0: Missing Free firmware (non-Free firmware loading is disabled)
May 13 15:38:35 arch kernel: iwlwifi 0000:04:00.0: Direct firmware load for /*(DEBLOBBED)*/ failed with error -2
May 13 15:38:35 arch kernel: 0000:04:00.0: Missing Free firmware (non-Free firmware loading is disabled)
May 13 15:38:35 arch kernel: iwlwifi 0000:04:00.0: Direct firmware load for /*(DEBLOBBED)*/ failed with error -2
May 13 15:38:35 arch kernel: 0000:04:00.0: Missing Free firmware (non-Free firmware loading is disabled)
May 13 15:38:35 arch kernel: iwlwifi 0000:04:00.0: Direct firmware load for /*(DEBLOBBED)*/ failed with error -2
May 13 15:38:35 arch kernel: 0000:04:00.0: Missing Free firmware (non-Free firmware loading is disabled)
May 13 15:38:35 arch kernel: iwlwifi 0000:04:00.0: Direct firmware load for /*(DEBLOBBED)*/ failed with error -2
May 13 15:38:35 arch kernel: 0000:04:00.0: Missing Free firmware (non-Free firmware loading is disabled)
May 13 15:38:35 arch kernel: iwlwifi 0000:04:00.0: Direct firmware load for /*(DEBLOBBED)*/ failed with error -2
May 13 15:38:35 arch kernel: 0000:04:00.0: Missing Free firmware (non-Free firmware loading is disabled)
May 13 15:38:35 arch kernel: iwlwifi 0000:04:00.0: Direct firmware load for /*(DEBLOBBED)*/ failed with error -2
May 13 15:38:35 arch kernel: 0000:04:00.0: Missing Free firmware (non-Free firmware loading is disabled)
May 13 15:38:35 arch kernel: iwlwifi 0000:04:00.0: Direct firmware load for /*(DEBLOBBED)*/ failed with error -2
May 13 15:38:35 arch kernel: 0000:04:00.0: Missing Free firmware (non-Free firmware loading is disabled)
May 13 15:38:35 arch kernel: iwlwifi 0000:04:00.0: Direct firmware load for /*(DEBLOBBED)*/ failed with error -2
May 13 15:38:35 arch kernel: iwlwifi 0000:04:00.0: no suitable firmware found!
May 13 15:38:35 arch kernel: iwlwifi 0000:04:00.0: minimum version required: /*(DEBLOBBED)*/39
May 13 15:38:35 arch kernel: iwlwifi 0000:04:00.0: maximum version supported: /*(DEBLOBBED)*/69
May 13 15:38:35 arch kernel: iwlwifi 0000:04:00.0: check /*(DEBLOBBED)*/
May 13 15:38:35 arch kernel: usbcore: registered new interface driver btusb
May 13 15:38:35 arch systemd-udevd[389]: Using default interface naming scheme 'v250'.
May 13 15:38:35 arch kernel: Bluetooth: hci0: Bootloader revision 0.3 build 0 week 24 2017
May 13 15:38:35 arch kernel: Bluetooth: hci0: Device revision is 1
May 13 15:38:35 arch kernel: Bluetooth: hci0: Secure boot is enabled
May 13 15:38:35 arch kernel: Bluetooth: hci0: OTP lock is enabled
May 13 15:38:35 arch kernel: Bluetooth: hci0: API lock is enabled
May 13 15:38:35 arch kernel: Bluetooth: hci0: Debug lock is disabled
May 13 15:38:35 arch kernel: Bluetooth: hci0: Minimum firmware build 1 week 10 2014
May 13 15:38:35 arch kernel: Bluetooth: hci0: Failed to load Intel firmware file intel/ibt-20-1-3.sfi (-2)
May 13 15:38:35 arch kernel: r8169 0000:03:00.0 enp3s0: renamed from eth0
May 13 15:38:35 arch kernel: Bluetooth: hci0: MSFT supported features length mismatch
May 13 15:38:35 arch systemd[1]: Reached target Bluetooth Support.
May 13 15:38:35 arch kernel: usb 3-3: Found UVC 1.10 device HD User Facing (04f2:b72b)
May 13 15:38:35 arch kernel: snd_hda_intel 0000:01:00.1: bound 0000:01:00.0 (ops nv50_audio_component_bind_ops [nouveau])
May 13 15:38:35 arch kernel: input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.1/0000:01:00.1/sound/card0/input19
May 13 15:38:35 arch kernel: input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.1/0000:01:00.1/sound/card0/input20
May 13 15:38:35 arch kernel: input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.1/0000:01:00.1/sound/card0/input21
May 13 15:38:35 arch kernel: input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.1/0000:01:00.1/sound/card0/input22
May 13 15:38:35 arch systemd-udevd[382]: Using default interface naming scheme 'v250'.
May 13 15:38:35 arch kernel: kvm: support for 'kvm_amd' disabled by bios
May 13 15:38:35 arch kernel: snd_hda_codec_realtek hdaudioC1D0: autoconfig for ALC295: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
May 13 15:38:35 arch kernel: snd_hda_codec_realtek hdaudioC1D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
May 13 15:38:35 arch kernel: snd_hda_codec_realtek hdaudioC1D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
May 13 15:38:35 arch kernel: snd_hda_codec_realtek hdaudioC1D0:    mono: mono_out=0x0
May 13 15:38:35 arch kernel: snd_hda_codec_realtek hdaudioC1D0:    inputs:
May 13 15:38:35 arch kernel: snd_hda_codec_realtek hdaudioC1D0:      Mic=0x12
May 13 15:38:35 arch mtp-probe[502]: checking bus 3, device 3: "/sys/devices/pci0000:00/0000:00:08.1/0000:05:00.4/usb3/3-3"
May 13 15:38:35 arch mtp-probe[502]: bus: 3, device: 3 was not an MTP device
May 13 15:38:35 arch kernel: input: HD User Facing: HD User Facing as /devices/pci0000:00/0000:00:08.1/0000:05:00.4/usb3/3-3/3-3:1.0/input/input23
May 13 15:38:35 arch kernel: usbcore: registered new interface driver uvcvideo
May 13 15:38:35 arch systemd[1]: Reached target Sound Card.
May 13 15:38:35 arch kernel: MCE: In-kernel MCE decoding enabled.
May 13 15:38:35 arch kernel: kvm: support for 'kvm_amd' disabled by bios
May 13 15:38:35 arch systemd[1]: Mounting Arbitrary Executable File Formats File System...
May 13 15:38:35 arch systemd[1]: Mounted Arbitrary Executable File Formats File System.
May 13 15:38:35 arch systemd[1]: Finished Set Up Additional Binary Formats.
May 13 15:38:35 arch audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-binfmt comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 13 15:38:36 arch kernel: kvm: support for 'kvm_amd' disabled by bios
May 13 15:38:36 arch kernel: intel_rapl_common: Found RAPL domain package
May 13 15:38:36 arch kernel: intel_rapl_common: Found RAPL domain core
May 13 15:38:36 arch systemd[1]: Started Network Time Synchronization.
May 13 15:38:36 arch audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-timesyncd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 13 15:38:36 arch systemd[1]: Reached target System Initialization.
May 13 15:38:36 arch systemd[1]: Started Daily Cleanup of Temporary Directories.
May 13 15:38:36 arch systemd[1]: Reached target System Time Set.
May 13 15:38:36 arch systemd[1]: Started Daily man-db regeneration.
May 13 15:38:36 arch systemd[1]: Started Daily verification of password and group files.
May 13 15:38:36 arch systemd[1]: Reached target Timer Units.
May 13 15:38:36 arch systemd[1]: Listening on D-Bus System Message Bus Socket.
May 13 15:38:36 arch systemd[1]: Listening on Libvirt local socket.
May 13 15:38:36 arch systemd[1]: Listening on Libvirt admin socket.
May 13 15:38:36 arch systemd[1]: Listening on Libvirt local read-only socket.
May 13 15:38:36 arch systemd[1]: Listening on Virtual machine lock manager socket.
May 13 15:38:36 arch systemd[1]: Listening on Virtual machine log manager socket.
May 13 15:38:36 arch systemd[1]: Reached target Socket Units.
May 13 15:38:36 arch systemd[1]: Reached target Basic System.
May 13 15:38:36 arch systemd[1]: Starting D-Bus System Message Bus...
May 13 15:38:36 arch audit: BPF prog-id=17 op=LOAD
May 13 15:38:36 arch audit: BPF prog-id=18 op=LOAD
May 13 15:38:36 arch audit: BPF prog-id=19 op=LOAD
May 13 15:38:36 arch systemd[1]: Starting User Login Management...
May 13 15:38:36 arch audit: BPF prog-id=20 op=LOAD
May 13 15:38:36 arch audit: BPF prog-id=21 op=LOAD
May 13 15:38:36 arch systemd[1]: Starting Virtual Machine and Container Registration Service...
May 13 15:38:36 arch systemd[1]: Started D-Bus System Message Bus.
May 13 15:38:36 arch audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=dbus comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 13 15:38:36 arch dbus-daemon[517]: [system] Successfully activated service 'org.freedesktop.systemd1'
May 13 15:38:36 arch systemd[1]: Starting Network Manager...
May 13 15:38:36 arch systemd[1]: Started Virtual Machine and Container Registration Service.
May 13 15:38:36 arch audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-machined comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 13 15:38:36 arch NetworkManager[520]: <info>  [1652445516.0818] NetworkManager (version 1.36.4-1) is starting... (for the first time)
May 13 15:38:36 arch NetworkManager[520]: <info>  [1652445516.0818] Read config: /etc/NetworkManager/NetworkManager.conf (lib: 20-connectivity.conf)
May 13 15:38:36 arch systemd-logind[518]: New seat seat0.
May 13 15:38:36 arch audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 13 15:38:36 arch NetworkManager[520]: <info>  [1652445516.0836] bus-manager: acquired D-Bus service "org.freedesktop.NetworkManager"
May 13 15:38:36 arch systemd[1]: Started Network Manager.
May 13 15:38:36 arch systemd[1]: Reached target Network.
May 13 15:38:36 arch systemd-logind[518]: Watching system buttons on /dev/input/event3 (Power Button)
May 13 15:38:36 arch systemd-logind[518]: Watching system buttons on /dev/input/event2 (Lid Switch)
May 13 15:38:36 arch systemd-logind[518]: Watching system buttons on /dev/input/event0 (Power Button)
May 13 15:38:36 arch systemd-logind[518]: Watching system buttons on /dev/input/event1 (Sleep Button)
May 13 15:38:36 arch systemd[1]: Started Jackett Daemon.
May 13 15:38:36 arch audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=jackett comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 13 15:38:36 arch systemd-logind[518]: Watching system buttons on /dev/input/event12 (Logitech G102 Prodigy Gaming Mouse Keyboard)
May 13 15:38:36 arch systemd-logind[518]: Watching system buttons on /dev/input/event6 (AT Translated Set 2 keyboard)
May 13 15:38:36 arch systemd-logind[518]: Watching system buttons on /dev/input/event11 (Acer WMI hotkeys)
May 13 15:38:36 arch systemd[1]: Starting Permit User Sessions...
May 13 15:38:36 arch systemd[1]: Started User Login Management.
May 13 15:38:36 arch audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-logind comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 13 15:38:36 arch NetworkManager[520]: <info>  [1652445516.0869] manager[0x55b680a39000]: monitoring kernel firmware directory '/lib/firmware'.
May 13 15:38:36 arch dbus-daemon[517]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service' requested by ':1.3' (uid=0 pid=520 comm="/usr/bin/NetworkManager --no-daemon")
May 13 15:38:36 arch systemd[1]: Starting Virtualization daemon...
May 13 15:38:36 arch systemd[1]: Finished Permit User Sessions.
May 13 15:38:36 arch audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-user-sessions comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 13 15:38:36 arch systemd[1]: Started Getty on tty1.
May 13 15:38:36 arch audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=getty@tty1 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 13 15:38:36 arch systemd[1]: Reached target Login Prompts.
May 13 15:38:36 arch audit: BPF prog-id=22 op=LOAD
May 13 15:38:36 arch audit: BPF prog-id=23 op=LOAD
May 13 15:38:36 arch audit: BPF prog-id=24 op=LOAD
May 13 15:38:36 arch systemd[1]: Starting Hostname Service...
May 13 15:38:36 arch dbus-daemon[517]: [system] Successfully activated service 'org.freedesktop.hostname1'
May 13 15:38:36 arch systemd[1]: Started Hostname Service.
May 13 15:38:36 arch audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 13 15:38:36 arch systemd[1]: Started Virtualization daemon.
May 13 15:38:36 arch audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=libvirtd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 13 15:38:36 arch systemd[1]: Reached target Multi-User System.
May 13 15:38:36 arch systemd[1]: Reached target Graphical Interface.
May 13 15:38:36 arch systemd[1]: Startup finished in 5.075s (firmware) + 5.194s (loader) + 1.681s (kernel) + 1.376s (userspace) = 13.327s.
May 13 15:38:36 arch NetworkManager[520]: <info>  [1652445516.1343] hostname: hostname: using hostnamed
May 13 15:38:36 arch NetworkManager[520]: <info>  [1652445516.1343] hostname: static hostname changed from (none) to "arch"
May 13 15:38:36 arch NetworkManager[520]: <info>  [1652445516.1345] dns-mgr[0x55b680a0b250]: init: dns=default,systemd-resolved rc-manager=immutable
May 13 15:38:36 arch NetworkManager[520]: <info>  [1652445516.1353] rfkill0: found Wi-Fi radio killswitch (at /sys/devices/platform/acer-wmi/rfkill/rfkill0) (platform driver acer-wmi)
May 13 15:38:36 arch NetworkManager[520]: <info>  [1652445516.1442] manager[0x55b680a39000]: rfkill: Wi-Fi hardware radio set enabled
May 13 15:38:36 arch NetworkManager[520]: <info>  [1652445516.1442] manager[0x55b680a39000]: rfkill: WWAN hardware radio set enabled
May 13 15:38:36 arch NetworkManager[520]: <info>  [1652445516.1463] Loaded device plugin: NMWifiFactory (/usr/lib/NetworkManager/1.36.4-1/libnm-device-plugin-wifi.so)
May 13 15:38:36 arch NetworkManager[520]: <info>  [1652445516.1496] Loaded device plugin: NMBluezManager (/usr/lib/NetworkManager/1.36.4-1/libnm-device-plugin-bluetooth.so)
May 13 15:38:36 arch NetworkManager[520]: <info>  [1652445516.1502] Loaded device plugin: NMAtmManager (/usr/lib/NetworkManager/1.36.4-1/libnm-device-plugin-adsl.so)
May 13 15:38:36 arch NetworkManager[520]: <info>  [1652445516.1555] Loaded device plugin: NMTeamFactory (/usr/lib/NetworkManager/1.36.4-1/libnm-device-plugin-team.so)
May 13 15:38:36 arch NetworkManager[520]: <info>  [1652445516.1560] Loaded device plugin: NMWwanFactory (/usr/lib/NetworkManager/1.36.4-1/libnm-device-plugin-wwan.so)
May 13 15:38:36 arch NetworkManager[520]: <info>  [1652445516.1566] Loaded device plugin: NMOvsFactory (/usr/lib/NetworkManager/1.36.4-1/libnm-device-plugin-ovs.so)
May 13 15:38:36 arch dbus-daemon[517]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service' requested by ':1.3' (uid=0 pid=520 comm="/usr/bin/NetworkManager --no-daemon")
May 13 15:38:36 arch NetworkManager[520]: <info>  [1652445516.1567] manager: rfkill: Wi-Fi enabled by radio killswitch; enabled by state file
May 13 15:38:36 arch NetworkManager[520]: <info>  [1652445516.1567] manager: rfkill: WWAN enabled by radio killswitch; enabled by state file
May 13 15:38:36 arch NetworkManager[520]: <info>  [1652445516.1568] manager: Networking is enabled by state file
May 13 15:38:36 arch NetworkManager[520]: <info>  [1652445516.1578] settings: Loaded settings plugin: keyfile (internal)
May 13 15:38:36 arch systemd[1]: Starting Network Manager Script Dispatcher Service...
May 13 15:38:36 arch NetworkManager[520]: <info>  [1652445516.1605] dhcp-init: Using DHCP client 'internal'
May 13 15:38:36 arch NetworkManager[520]: <info>  [1652445516.1605] device (lo): carrier: link connected
May 13 15:38:36 arch NetworkManager[520]: <info>  [1652445516.1607] manager: (lo): new Generic device (/org/freedesktop/NetworkManager/Devices/1)
May 13 15:38:36 arch NetworkManager[520]: <info>  [1652445516.1611] manager: (enp3s0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/2)
May 13 15:38:36 arch NetworkManager[520]: <info>  [1652445516.1617] settings: (enp3s0): created default wired connection 'Wired connection 1'
May 13 15:38:36 arch NetworkManager[520]: <info>  [1652445516.1617] device (enp3s0): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
May 13 15:38:36 arch kernel: 0000:03:00.0: Missing Free firmware (non-Free firmware loading is disabled)
May 13 15:38:36 arch kernel: r8169 0000:03:00.0: Unable to load firmware /*(DEBLOBBED)*/ (-2)
May 13 15:38:36 arch dbus-daemon[517]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
May 13 15:38:36 arch systemd[1]: Started Network Manager Script Dispatcher Service.
May 13 15:38:36 arch audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 13 15:38:36 arch libvirtd[534]: libvirt version: 8.3.0
May 13 15:38:36 arch libvirtd[534]: hostname: arch
May 13 15:38:36 arch libvirtd[534]: cannot open directory '/run/media/user/Ventoy1': No such file or directory
May 13 15:38:36 arch libvirtd[534]: internal error: Failed to autostart storage pool 'Ventoy1': cannot open directory '/run/media/user/Ventoy1': No such file or directory
May 13 15:38:36 arch libvirtd[534]: cannot open directory '/run/media/user/Ventoy': No such file or directory
May 13 15:38:36 arch libvirtd[534]: internal error: Failed to autostart storage pool 'Ventoy': cannot open directory '/run/media/user/Ventoy': No such file or directory
May 13 15:38:36 arch libvirtd[534]: Cannot find 'dmidecode' in path: No such file or directory
May 13 15:38:36 arch kernel: Generic FE-GE Realtek PHY r8169-0-300:00: attached PHY driver (mii_bus:phy_addr=r8169-0-300:00, irq=MAC)
May 13 15:38:36 arch libvirtd[534]: Unable to open /dev/kvm: No such file or directory
May 13 15:38:36 arch libvirtd[534]: Cannot find 'dmidecode' in path: No such file or directory
May 13 15:38:36 arch kernel: scsi 2:0:0:0: Direct-Access     Kingston DataTraveler 3.0 PMAP PQ: 0 ANSI: 6
May 13 15:38:36 arch kernel: sd 2:0:0:0: Attached scsi generic sg0 type 0
May 13 15:38:36 arch kernel: sd 2:0:0:0: [sda] 121110528 512-byte logical blocks: (62.0 GB/57.8 GiB)
May 13 15:38:36 arch kernel: sd 2:0:0:0: [sda] Write Protect is off
May 13 15:38:36 arch kernel: sd 2:0:0:0: [sda] Mode Sense: 45 00 00 00
May 13 15:38:36 arch kernel: sd 2:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
May 13 15:38:36 arch kernel:  sda: sda1 sda2
May 13 15:38:36 arch kernel: sd 2:0:0:0: [sda] Attached SCSI removable disk
May 13 15:38:36 arch kernel: kvm: support for 'kvm_amd' disabled by bios
May 13 15:38:36 arch NetworkManager[520]: <info>  [1652445516.3128] ovsdb: disconnected from ovsdb
May 13 15:38:36 arch kernel: r8169 0000:03:00.0 enp3s0: Link is Down
May 13 15:38:36 arch kernel: kvm: support for 'kvm_amd' disabled by bios
May 13 15:38:36 arch jackett[539]: 05-13 15:38:36 Info Starting Jackett v0.20.1047
May 13 15:38:36 arch kernel: input: HD-Audio Generic Headphone as /devices/pci0000:00/0000:00:08.1/0000:05:00.6/sound/card1/input24
May 13 15:38:36 arch kernel: kvm: support for 'kvm_amd' disabled by bios
May 13 15:38:36 arch kernel: kvm: support for 'kvm_amd' disabled by bios
May 13 15:38:36 arch kernel: kvm: support for 'kvm_amd' disabled by bios
May 13 15:38:36 arch jackett[539]: 05-13 15:38:36 Info Environment version: 6.0.5 (/home/user/jackett/Jackett/)
May 13 15:38:36 arch jackett[539]: 05-13 15:38:36 Info OS version: Unix 5.17.3.1 (64bit OS) (64bit process)
May 13 15:38:36 arch jackett[539]: 05-13 15:38:36 Info Jackett variant: CoreLinuxAmdx64
May 13 15:38:36 arch jackett[539]: 05-13 15:38:36 Info File /etc/issue: Arch Linux \r (\l)
May 13 15:38:36 arch jackett[539]: 05-13 15:38:36 Info Running in Docker: No
May 13 15:38:36 arch jackett[539]: 05-13 15:38:36 Info ThreadPool MaxThreads: 32767 workerThreads, 1000 completionPortThreads
May 13 15:38:36 arch jackett[539]: 05-13 15:38:36 Info App config/log directory: /home/user/.config/Jackett
May 13 15:38:36 arch jackett[539]: 05-13 15:38:36 Info Using proxy: Disabled
May 13 15:38:36 arch jackett[539]: 05-13 15:38:36 Info Using FlareSolverr: No
May 13 15:38:36 arch jackett[539]: 05-13 15:38:36 Info Using HTTP Client: HttpWebClient2
May 13 15:38:36 arch jackett[539]: 05-13 15:38:36 Info Loading Native indexers ...
May 13 15:38:36 arch kernel: kvm: support for 'kvm_amd' disabled by bios
May 13 15:38:36 arch jackett[539]: 05-13 15:38:36 Info Loaded 82 Native indexers: abnormal, alpharatio, anidex, anidub, animebytes, Animedia, animetorrents, anthelion, avistaz, bakabt, bb, beyond-hd-api, bithdtv, bjshare, broadcasthenet, brokenstones, cgpeers, cinecalidad, cinemaz, darmowetorenty, divxtotal, dontorrent, epublibre, erai-raws, exoticaz, filelist, funfile, fuzer, gazellegames, gimmepeers, greatposterwall, hdbitsapi, hdspace, hdtorrents, hebits, immortalseed, iptorrents, libble, lostfilm, magnetico, mejortorrent, myanonamouse, ncore, nebulance, norbits, oppaitime, orpheus, partis, passthepopcorn, piratethenet, pixelhd, polishtracker, pornolab, pretome, privatehd, rarbg, redacted, retroflix, revolutiontt, rutracker, scenehd, scenetime, secretcinema, sharewoodapi, shazbat, ShizaProject, speedapp, speedcd, subsplease, toloka, torrentbytes, torrentday, torrentech, torrentheaven, torrentnetwork, torrentscsv, torrentsyndikat, tvstore, xspeeds, zonaq, animetosho, morethantv-api
May 13 15:38:36 arch jackett[539]: 05-13 15:38:36 Info Loading Cardigann indexers from: /home/user/.config/cardigann/definitions/, /etc/xdg/cardigan/definitions/, /home/user/jackett/Jackett/Definitions
May 13 15:38:36 arch kernel: kvm: support for 'kvm_amd' disabled by bios
May 13 15:38:37 arch jackett[539]: 05-13 15:38:37 Info Loaded 502 Cardigann indexers: ebooks-shares, linkomanija, RockBox, netcosmo, torrentoyunindir, lepornoinfo, potuk, bitbr, extremlymtorrents, diablotorrent, aidoruonline, anilibria, myspleen, skipthecommercials-api, arenabg, aussierules, ftuapps, pornforall, dreamtracker, concertos, hdai, hdsky, anime-free, 1ptbar, korsar, ccfbits, scenepalace, torrentproject2, torrentfunk, hdolimpo-api, btnext, brsociety-api, torrentseeds-api, torrentgalaxy, torrentqq, crnaberza, cpasbien, lesaloon, polishsource, datascene-api, sktorrent, romanianmetaltorrents, megapeer, tekno3d, digitalcore, pornotorrent, xxxtor, hdarea, torrentsectorcrew, linuxtracker, peersfm, danishbytes-api, glodls, teracod, aftershock, empornium2fa, muziekfabriek, elitetorrent-biz, 24rolika, torrentmasters, xwtclassics, tellytorrent-api, concen, slosoul, isohunt2, cryptichaven, ptfiles, ibit, sexypics, internetarchive, pornoslab, bibliotik, torrentwhiz, uniongang, torrentbd, ebookparadijs, mma-torrents, teamhd, torrent-turk, parnuxi, sugoimusic, rainbowtracker, torrentccf, totallykids, r3vwtf, springsunday, resurrectthenet, immortuos, torrentview, mousebits, dragonworldreloaded, jav-torrent, kinonavse100, nethd, torrentparadise, hdatmos, mediamaatjes, zooqle, turktorrent, bigfangroup, femdomcult, 3dtorrents, yts, mixtapetorrent, theempire, torrentsir, ourbits, hdforever, yourbittorrent, crazyhd, piratbit, crazyspirits, btschool, estone, crt2fa, hidden-palace, booktracker, hdmonkey, esharenet, acgrip, megamixtracker, soulvoice, hdtorrentsit, krazyzone, mypornclub, proaudiotorrents, rudub, sporthd, fantasticheaven, hdchina, frozenlayer, newstudio, theshow, anisource, trancetraffic, opencd, gamestorrents, xiteme, insanetracker, byrutor, rapidzona, turktracker, torrentland-api, bitru, themixingbowl, redstartorrent, hdcztorrent, rptorrents, pier720, opensharing, magicheaven, bithorlo, sportscult, torrent9clone, greekdiamond, extremetorrents, riperam, fantastiko, hd4fans, movietorrent, zamundanet, hdc, backups, pterclub, swarmazon, torrentkitty, amigosshare, 0magnet, btdigg, chdbits, 52pt, bangumi-moe, brasiltracker, ydypt, libranet, torlook, p2pbg, turkseed, bitspyder, demonoid, selezen, movietorrentz, dxp, noname-club, torrentz2eu, hellastz, ztracker, ilcorsaroverde, omgwtftrackr, blutopia-api, microbit, twilight, oxtorrent, byrbt, beitai, uhdbits, asiancinema, borgzelle, file-tracker, tjupt, losslessclub, nyaasi, piratbitl, soundpark, hawke-uno, deildu, freshmeat, mteamtp, extratorrent-st, cinematik, xxxadulttorrent, rutor, superbits, acgsou, racingforme, carpathians, sktorrent-org, vizuk, aither-api, hdhome, mnv, gigatorrents, wihd, metaltracker, fouducinema, bitsearch, datatalli, speedmasterhd, thefallingangels, cinemageddon, thevault, coastalcrew, filelisting, vsttorrents, cinemamovies, skipthetrailers, nipponsei, oshenpt, torlock, finelite, lemonhd, girotorrent, xbit, hdcenter, pttime, Bittorrentfiles, unionfansub, underverse, theshinning, noname-clubl, spiritofrevolution, kinozal, netlab, nntt, pornotor, dariustracker, pornbits, shanaproject, madsrevolution, zomb, torrentleech, pussytorrents, hdbitscom, nitro, putao, ps4-torrent, indietorrents, learnbits, legittorrents, kinorun, gay-torrents, hdbits, carphunter, dimeadozen, torrenthr, moviesdvdr, jpopsuki, ptmsg, tribalmixes, limetorrents, mononokebt, showrss, aniRena, mircrew, fenyarnyek-tracker, punkshorror, haitang, hdroute, torrentby, fanoin, scenerush, 4thd, sdbits, greekteam, rustorka, mactorrentsdownload, cpasbienclone, pthome, 2fast4you, underversel, redbits-api, lastfiles, pixelcove, thesceneplace, audiobookbay, magico, ehentai, newstudiol, thepiratebay, torrentdownloads, funkytorrents, onejav, ceskeforum, falkonvisionteam, torrentv, woot, itorrent, rintor, xthor-api, iv-torrents, arabp2p, alleenretail, genesismovement, discfan, torrentleech-pl, hdu, pornleech, hdzone, bitcityreloaded, the-crazy-ones, kickasstorrents-ws, learnflakes, torrent9, acidlounge, bestcore, mikan, seedoff, huntorrent, rus-media, gay-torrentsorg, acrossthetasman, crackingpatching, jme-reunit3d-api, totheglorycookie, bitsexy, 1337x, reelflix-api, empornium, hqsource, bitbazis, cartoonchaos, audiences, ilcorsaronero, milkie, totheglory, teamctgame, puurhollands, broadcity, u2, finvip, dmhy, shareisland-api, uniondht, film-paleis, wdt, rgfootball, animeworld-api, hdspain, bitded, eniahd, limetorrentsclone, prostylex, sukebeinyaasi, rintornet, siambit, badasstorrents, 0daykiev, mesevilag, bithumen, theaudioscene, extremebits, bluebirdhd, chilebt, bluesbrothers, dark-shadow, comicat, generationfree-api, newpct-me, animeclipse, docspedia, bitturk, pornolive, lat-team-api, tasmanit, gtorrentpro, miobt, pctorrent, teamos, happyfappy, arabafenice, theplace, tvroad, whiteangel, xxxtorrents, pwtorrents, keepfriends, boxingtorrents, gaytorrentru, theleachzone, hdcity, torrentdb, purovicio, trezzor, ptsbao, thehorrorcharnel, hdonly, tokyotosho, moviesite, torrentdownload, audionews, bwtorrents, torrentslocal, bootytape, hdturk, hdme, trupornolabs, idope, sosulki, snowpt, firebit, tapochek, rutracker-ru, classix, thenewfun, tvchaosuk, racing4everyone-api, kufirc, desitorrents-api, hdtime, haidan, tmghub, zelkaorg, peerjunkies, unlimitz, catorrent, hddolby, animelayer, btetree, mvgroupforum, theoccult, puntotorrent, gfxpeers, torrenting, zetorrents, majomparade, xwtorrents, beyond-hd, exttorrents, yggtorrent, proporno, hamsterstudio, kickasstorrents-to, mteamtp2fa, spidertk, vsthouse, abtorrents, pornbay, gktorrent, tlfbits, ilcorsaroblu, hdgalaktik, btsow, thegeeks, exkinoray, xbytesv2, solidtorrents, peeratiko, mvgroupmain, leech24, cathoderaytube, piratadigital, sharewood, torrent-explosiv, yggcookie, karagarga, divteam, torrentlt, p2pelite, bt4g, marinetracker, eztv, torrentsurf, portugas, speedtorrentreloaded, 3changtrai, seedfile, newretro, jptv, anaschcc, torrent-pirat, twilightszoom, houseofdevil
May 13 15:38:37 arch jackett[539]: 05-13 15:38:37 Info Loaded 584 indexers in total
May 13 15:38:37 arch jackett[539]: 05-13 15:38:37 Info Adding aggregate indexer ('all' indexer) ...
May 13 15:38:37 arch jackett[539]: 05-13 15:38:37 Info Adding filter indexer ('type:public' indexer) ...
May 13 15:38:37 arch jackett[539]: 05-13 15:38:37 Info Adding filter indexer ('type:private' indexer) ...
May 13 15:38:37 arch jackett[539]: 05-13 15:38:37 Info Adding filter indexer ('type:semi-public' indexer) ...
May 13 15:38:38 arch jackett[539]: 05-13 15:38:38 Info Jackett startup finished in 2.049 s
May 13 15:38:38 arch jackett[539]: Hosting environment: Production
May 13 15:38:38 arch jackett[539]: Content root path: /home/user/jackett/Jackett/Content
May 13 15:38:38 arch jackett[539]: Now listening on: http://[::]:9117
May 13 15:38:38 arch jackett[539]: Application started. Press Ctrl+C to shut down.
May 13 15:38:40 arch systemd[1]: systemd-rfkill.service: Deactivated successfully.
May 13 15:38:40 arch audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 13 15:38:40 arch kernel: kauditd_printk_skb: 30 callbacks suppressed
May 13 15:38:40 arch kernel: audit: type=1131 audit(1652445520.523:41): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 13 15:38:42 arch NetworkManager[520]: <info>  [1652445522.3146] manager: startup complete
May 13 15:38:46 arch systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
May 13 15:38:46 arch audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 13 15:38:46 arch kernel: audit: type=1131 audit(1652445526.210:42): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 13 15:38:51 arch dbus-daemon[517]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.8' (uid=0 pid=535 comm="/bin/login -p --     ")
May 13 15:38:51 arch dbus-daemon[517]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
May 13 15:38:51 arch login[535]: pam_systemd_home(login:auth): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
May 13 15:38:56 arch audit[535]: USER_AUTH pid=535 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:authentication grantors=pam_securetty,pam_shells,pam_faillock,pam_permit,pam_faillock acct="user" exe="/usr/bin/login" hostname=arch addr=? terminal=/dev/tty1 res=success'
May 13 15:38:56 arch kernel: audit: type=1100 audit(1652445536.703:43): pid=535 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:authentication grantors=pam_securetty,pam_shells,pam_faillock,pam_permit,pam_faillock acct="user" exe="/usr/bin/login" hostname=arch addr=? terminal=/dev/tty1 res=success'
May 13 15:38:56 arch audit[535]: USER_ACCT pid=535 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_access,pam_unix,pam_permit,pam_time acct="user" exe="/usr/bin/login" hostname=arch addr=? terminal=/dev/tty1 res=success'
May 13 15:38:56 arch kernel: audit: type=1101 audit(1652445536.713:44): pid=535 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_access,pam_unix,pam_permit,pam_time acct="user" exe="/usr/bin/login" hostname=arch addr=? terminal=/dev/tty1 res=success'
May 13 15:38:56 arch audit[535]: CRED_ACQ pid=535 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_securetty,pam_shells,pam_faillock,pam_permit,pam_faillock acct="user" exe="/usr/bin/login" hostname=arch addr=? terminal=/dev/tty1 res=success'
May 13 15:38:56 arch audit[535]: SYSCALL arch=c000003e syscall=1 success=yes exit=4 a0=5 a1=7fff7210daa0 a2=4 a3=7fff7210d7b4 items=0 ppid=1 pid=535 auid=1000 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=1000 fsgid=0 tty=tty1 ses=1 comm="login" exe="/usr/bin/login" key=(null)
May 13 15:38:56 arch audit: PROCTITLE proctitle=2F62696E2F6C6F67696E002D70002D2D
May 13 15:38:56 arch login[535]: pam_unix(login:session): session opened for user user(uid=1000) by LOGIN(uid=0)
May 13 15:38:56 arch kernel: audit: type=1103 audit(1652445536.720:45): pid=535 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_securetty,pam_shells,pam_faillock,pam_permit,pam_faillock acct="user" exe="/usr/bin/login" hostname=arch addr=? terminal=/dev/tty1 res=success'
May 13 15:38:56 arch kernel: audit: type=1006 audit(1652445536.720:46): pid=535 uid=0 old-auid=4294967295 auid=1000 tty=tty1 old-ses=4294967295 ses=1 res=1
May 13 15:38:56 arch kernel: audit: type=1300 audit(1652445536.720:46): arch=c000003e syscall=1 success=yes exit=4 a0=5 a1=7fff7210daa0 a2=4 a3=7fff7210d7b4 items=0 ppid=1 pid=535 auid=1000 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=1000 fsgid=0 tty=tty1 ses=1 comm="login" exe="/usr/bin/login" key=(null)
May 13 15:38:56 arch kernel: audit: type=1327 audit(1652445536.720:46): proctitle=2F62696E2F6C6F67696E002D70002D2D
May 13 15:38:56 arch systemd[1]: Created slice User Slice of UID 1000.
May 13 15:38:56 arch systemd[1]: Starting User Runtime Directory /run/user/1000...
May 13 15:38:56 arch systemd-logind[518]: New session 1 of user user.
May 13 15:38:56 arch systemd[1]: Finished User Runtime Directory /run/user/1000.
May 13 15:38:56 arch audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@1000 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 13 15:38:56 arch systemd[1]: Starting User Manager for UID 1000...
May 13 15:38:56 arch kernel: audit: type=1130 audit(1652445536.740:47): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@1000 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 13 15:38:56 arch dbus-daemon[517]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.10' (uid=0 pid=590 comm="(systemd)")
May 13 15:38:56 arch dbus-daemon[517]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
May 13 15:38:56 arch systemd[590]: pam_systemd_home(systemd-user:account): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
May 13 15:38:56 arch audit[590]: USER_ACCT pid=590 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_access,pam_unix,pam_permit,pam_time acct="user" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 13 15:38:56 arch audit[590]: CRED_ACQ pid=590 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=? acct="user" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
May 13 15:38:56 arch audit[590]: SYSCALL arch=c000003e syscall=1 success=yes exit=4 a0=9 a1=7ffcee509c80 a2=4 a3=7ffcee509994 items=0 ppid=1 pid=590 auid=1000 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=2 comm="(systemd)" exe="/usr/lib/systemd/systemd" key=(null)
May 13 15:38:56 arch audit: PROCTITLE proctitle="(systemd)"
May 13 15:38:56 arch systemd[590]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8002 service=[systemd-user] terminal=[] user=[user] ruser=[<unknown>] rhost=[<unknown>]
May 13 15:38:56 arch systemd[590]: pam_unix(systemd-user:session): session opened for user user(uid=1000) by (uid=0)
May 13 15:38:56 arch systemd[590]: pam_env(systemd-user:session): deprecated reading of user environment enabled
May 13 15:38:56 arch audit[590]: USER_START pid=590 uid=0 auid=1000 ses=2 msg='op=PAM:session_open grantors=pam_loginuid,pam_loginuid,pam_keyinit,pam_systemd_home,pam_limits,pam_unix,pam_permit,pam_mail,pam_systemd,pam_env acct="user" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 13 15:38:56 arch kernel: audit: type=1101 audit(1652445536.750:48): pid=590 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_access,pam_unix,pam_permit,pam_time acct="user" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 13 15:38:56 arch kernel: audit: type=1103 audit(1652445536.750:49): pid=590 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=? acct="user" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
May 13 15:38:56 arch kernel: audit: type=1006 audit(1652445536.750:50): pid=590 uid=0 old-auid=4294967295 auid=1000 tty=(none) old-ses=4294967295 ses=2 res=1
May 13 15:38:56 arch systemd[590]: Queued start job for default target Main User Target.
May 13 15:38:56 arch audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user@1000 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 13 15:38:56 arch systemd[590]: Created slice User Application Slice.
May 13 15:38:56 arch audit[535]: USER_START pid=535 uid=0 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_loginuid,pam_keyinit,pam_systemd_home,pam_limits,pam_unix,pam_permit,pam_mail,pam_systemd,pam_env acct="user" exe="/usr/bin/login" hostname=arch addr=? terminal=/dev/tty1 res=success'
May 13 15:38:56 arch audit[535]: CRED_REFR pid=535 uid=0 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_securetty,pam_shells,pam_faillock,pam_permit,pam_faillock acct="user" exe="/usr/bin/login" hostname=arch addr=? terminal=/dev/tty1 res=success'
May 13 15:38:56 arch login[535]: pam_env(login:session): deprecated reading of user environment enabled
May 13 15:38:56 arch systemd[590]: Reached target Paths.
May 13 15:38:56 arch login[535]: LOGIN ON tty1 BY user
May 13 15:38:56 arch systemd[590]: Reached target Timers.
May 13 15:38:56 arch systemd[590]: Starting D-Bus User Message Bus Socket...
May 13 15:38:56 arch otd[599]: DISPLAY and/or WAYLAND_DISPLAY is not set
May 13 15:38:56 arch systemd[590]: Listening on GnuPG network certificate management daemon.
May 13 15:38:56 arch systemd[590]: Listening on GCR ssh-agent wrapper.
May 13 15:38:56 arch systemd[590]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
May 13 15:38:56 arch systemd[590]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
May 13 15:38:56 arch systemd[590]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
May 13 15:38:56 arch systemd[590]: Listening on GnuPG cryptographic agent and passphrase cache.
May 13 15:38:56 arch systemd[590]: Listening on p11-kit server.
May 13 15:38:56 arch systemd[590]: Listening on PipeWire PulseAudio.
May 13 15:38:56 arch systemd[590]: Listening on PipeWire Multimedia System Socket.
May 13 15:38:56 arch systemd[590]: Listening on D-Bus User Message Bus Socket.
May 13 15:38:56 arch systemd[590]: Reached target Sockets.
May 13 15:38:56 arch systemd[590]: Reached target Basic System.
May 13 15:38:56 arch systemd[1]: Started User Manager for UID 1000.
May 13 15:38:56 arch systemd[1]: Started Session 1 of User user.
May 13 15:38:56 arch systemd[590]: Starting Music Player Daemon...
May 13 15:38:56 arch systemd[590]: Started OpenTabletDriver Daemon.
May 13 15:38:56 arch systemd[590]: Starting Update XDG user dir configuration...
May 13 15:38:56 arch systemd[590]: Finished Update XDG user dir configuration.
May 13 15:38:56 arch systemd[590]: opentabletdriver.service: Main process exited, code=exited, status=64/USAGE
May 13 15:38:56 arch systemd[590]: opentabletdriver.service: Failed with result 'exit-code'.
May 13 15:38:56 arch mpd[598]: server_socket: bind to '0.0.0.0:6600' failed (continuing anyway, because binding to '[::]:6600' succeeded): Failed to bind socket: Address already in use
May 13 15:38:56 arch mpd[598]: exception: Failed to access /home/user/Music/Dream Theater/: No such file or directory
May 13 15:38:56 arch mpd[598]: decoder: Decoder plugin 'wildmidi' is unavailable: configuration file does not exist: /etc/timidity/timidity.cfg
May 13 15:38:57 arch dbus-daemon[517]: [system] Activating via systemd: service name='org.freedesktop.Avahi' unit='dbus-org.freedesktop.Avahi.service' requested by ':1.12' (uid=1000 pid=598 comm="/usr/bin/mpd --systemd")
May 13 15:38:57 arch dbus-daemon[517]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.Avahi.service': Unit dbus-org.freedesktop.Avahi.service not found.
May 13 15:38:57 arch systemd[590]: Started Music Player Daemon.
May 13 15:38:57 arch systemd[590]: Reached target Main User Target.
May 13 15:38:57 arch systemd[590]: Startup finished in 247ms.
May 13 15:39:05 arch systemd[590]: opentabletdriver.service: Scheduled restart job, restart counter is at 1.
May 13 15:39:05 arch systemd[590]: Stopped OpenTabletDriver Daemon.
May 13 15:39:05 arch systemd[590]: Started OpenTabletDriver Daemon.
May 13 15:39:05 arch otd[675]: DISPLAY and/or WAYLAND_DISPLAY is not set
May 13 15:39:05 arch systemd[590]: opentabletdriver.service: Main process exited, code=exited, status=64/USAGE
May 13 15:39:05 arch systemd[590]: opentabletdriver.service: Failed with result 'exit-code'.
May 13 15:39:06 arch systemd[1]: systemd-hostnamed.service: Deactivated successfully.
May 13 15:39:06 arch audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 13 15:39:06 arch kernel: kauditd_printk_skb: 6 callbacks suppressed
May 13 15:39:06 arch kernel: audit: type=1131 audit(1652445546.170:55): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 13 15:39:06 arch audit: BPF prog-id=0 op=UNLOAD
May 13 15:39:06 arch kernel: audit: type=1334 audit(1652445546.390:56): prog-id=0 op=UNLOAD
May 13 15:39:06 arch kernel: audit: type=1334 audit(1652445546.390:57): prog-id=0 op=UNLOAD
May 13 15:39:06 arch kernel: audit: type=1334 audit(1652445546.390:58): prog-id=0 op=UNLOAD
May 13 15:39:06 arch audit: BPF prog-id=0 op=UNLOAD
May 13 15:39:06 arch audit: BPF prog-id=0 op=UNLOAD
May 13 15:39:13 arch systemd[590]: opentabletdriver.service: Scheduled restart job, restart counter is at 2.
May 13 15:39:13 arch systemd[590]: Stopped OpenTabletDriver Daemon.
May 13 15:39:13 arch systemd[590]: Started OpenTabletDriver Daemon.
May 13 15:39:13 arch otd[688]: DISPLAY and/or WAYLAND_DISPLAY is not set
May 13 15:39:13 arch systemd[590]: opentabletdriver.service: Main process exited, code=exited, status=64/USAGE
May 13 15:39:13 arch systemd[590]: opentabletdriver.service: Failed with result 'exit-code'.
May 13 15:39:21 arch systemd[590]: opentabletdriver.service: Scheduled restart job, restart counter is at 3.
May 13 15:39:21 arch systemd[590]: Stopped OpenTabletDriver Daemon.
May 13 15:39:21 arch systemd[590]: Started OpenTabletDriver Daemon.
May 13 15:39:21 arch otd[712]: DISPLAY and/or WAYLAND_DISPLAY is not set
May 13 15:39:21 arch systemd[590]: opentabletdriver.service: Main process exited, code=exited, status=64/USAGE
May 13 15:39:21 arch systemd[590]: opentabletdriver.service: Failed with result 'exit-code'.
May 13 15:39:27 arch dbus-daemon[517]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.13' (uid=0 pid=725 comm="sudo journalctl -b")
May 13 15:39:27 arch audit[725]: USER_ACCT pid=725 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="user" exe="/usr/bin/sudo" hostname=arch addr=? terminal=/dev/tty1 res=success'
May 13 15:39:27 arch audit[725]: CRED_REFR pid=725 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=arch addr=? terminal=/dev/tty1 res=success'
May 13 15:39:27 arch dbus-daemon[517]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
May 13 15:39:27 arch sudo[725]: pam_systemd_home(sudo:account): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
May 13 15:39:27 arch sudo[725]:     user : TTY=tty1 ; PWD=/home/user ; USER=root ; COMMAND=/usr/bin/journalctl -b
May 13 15:39:27 arch sudo[725]: pam_unix(sudo:session): session opened for user root(uid=0) by user(uid=1000)
May 13 15:39:27 arch audit[725]: USER_START pid=725 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_systemd_home,pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=arch addr=? terminal=/dev/tty1 res=success'
May 13 15:39:27 arch kernel: audit: type=1101 audit(1652445567.320:59): pid=725 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="user" exe="/usr/bin/sudo" hostname=arch addr=? terminal=/dev/tty1 res=success'
May 13 15:39:27 arch kernel: audit: type=1110 audit(1652445567.320:60): pid=725 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=arch addr=? terminal=/dev/tty1 res=success'
May 13 15:39:27 arch kernel: audit: type=1105 audit(1652445567.320:61): pid=725 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_systemd_home,pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=arch addr=? terminal=/dev/tty1 res=success'

Offline

#40 2022-05-13 12:49:21

seth
Member
Registered: 2012-09-03
Posts: 50,933

Re: Can't use nouveau to load into xorg.

seth wrote:

I just want to make xorg work on linux-libre

What's not gonna happen because you're not getting past

May 11 16:24:19 arch kernel: nouveau 0000:01:00.0: fb: VPR locked, but no scrubber binary

Offline

Board footer

Powered by FluxBB