You are not logged in.
I am trying to get my desktop system to awaken from suspend.target and hibernate.target but it won't do it from hibernation.
I created and enabled two systemd services:
systemctl cat unsuspend.service
# /etc/systemd/system/unsuspend.service
[Unit]
Description=Automatically un-suspend system
Before=suspend.target
[Service]
Type=simple
ExecStart=/usr/bin/rtcwake -m no -s 60
[Install]
WantedBy=suspend.target
and
systemctl cat unhibernate.service
# /etc/systemd/system/unhibernate.service
[Unit]
Description=Automatically un-hibernate system
Before=hibernate.target
[Service]
Type=simple
ExecStart=/usr/bin/rtcwake -m no -s 60
[Install]
WantedBy=hibernate.target
Both services are enabled.
systemctl status unsuspend.service unhibernate.service
○ unsuspend.service - Automatically un-suspend system
Loaded: loaded (/etc/systemd/system/unsuspend.service; enabled; preset: disabled)
Active: inactive (dead)
○ unhibernate.service - Automatically un-hibernate system
Loaded: loaded (/etc/systemd/system/unhibernate.service; enabled; preset: disabled)
Active: inactive (dead)
All help appreciated.
Last edited by FallenArches (2023-03-05 01:28:50)
Offline
I guess I should include my /etc/systemd/sleep.conf.d/custom.conf file
cat /etc/systemd/sleep.conf.d/custom.conf
[Sleep]
AllowSuspend=yes
AllowHibernation=yes
AllowSuspendThenHibernate=no
AllowHybridSleep=no
HibernateState=disk
#HibernateDelaySec=30min
#SuspendEstimationSec=30min
Offline
but it won't do it from hibernation.
You mean it does work with suspend?
Type=simple (instead of oneshot) could be problematic, because systemd won't wait for the process to finish before continuing. It might sometimes work and sometimes not; did you ever try manually running rtcwake before hibernating?
PS: I assume you'll eventually want different wake times for these services? Otherwise you could merge them and use Before/WantedBy=sleep.target.
Offline
When I suspend this system
systemctl suspend
or from the suspend xfce4 action button the system does in deed come back to life in 30 seconds but not after
systemctl hibernate
or the xfce4 hibernate action button.
I do want want them to be merged with the sleep.target but I have been trying to diagnose the problem and so I split them as you see here. My final goal is to have the system wake up daily in order to run some cron jobs.
I will also want the system to "sleep-the-hibernate" if nobody is logged on, but that is for later.
Any help is appreciated, Thanks for your time
Offline
Are you using a swap file or a swap partition?
Have you configured your initrd with by adding the resume hook in /etc/mkinitcpio.conf?
Does your kernel command line include the 'resume=' parameter? (What is the output of 'cat /proc/cmdline ?)
If this does not make sense, see https://wiki.archlinux.org/title/Power_ … _hibernate and https://wiki.archlinux.org/title/Power_ … _initramfs
Does your system have Intel Rapid Start Technology (IRST) ? That is another can of worms.
Nothing is too wonderful to be true, if it be consistent with the laws of nature -- Michael Faraday
Sometimes it is the people no one can imagine anything of who do the things no one can imagine. -- Alan Turing
---
How to Ask Questions the Smart Way
Offline
I am currently using a swap partition on an SSD but I am thinking of moving it to a swap file on my nvme.
My /etc/mkinitcpio.conf
cat /etc/mkinitcpio.conf
# vim:set ft=sh
# MODULES
# The following modules are loaded before any boot hooks are
# run. Advanced users may wish to specify all system modules
# in this array. For instance:
# MODULES=(usbhid xhci_hcd)
MODULES=()
# BINARIES
# This setting includes any additional binaries a given user may
# wish into the CPIO image. This is run last, so it may be used to
# override the actual binaries included by a given hook
# BINARIES are dependency parsed, so you may safely ignore libraries
BINARIES=()
# FILES
# This setting is similar to BINARIES above, however, files are added
# as-is and are not parsed in any way. This is useful for config files.
FILES=()
# HOOKS
# This is the most important setting in this file. The HOOKS control the
# modules and scripts added to the image, and what happens at boot time.
# Order is important, and it is recommended that you do not change the
# order in which HOOKS are added. Run 'mkinitcpio -H <hook name>' for
# help on a given hook.
# 'base' is _required_ unless you know precisely what you are doing.
# 'udev' is _required_ in order to automatically load modules
# 'filesystems' is _required_ unless you specify your fs modules in MODULES
# Examples:
## This setup specifies all modules in the MODULES setting above.
## No RAID, lvm2, or encrypted root is needed.
# HOOKS=(base)
#
## This setup will autodetect all modules for your system and should
## work as a sane default
# HOOKS=(base udev autodetect modconf block filesystems fsck)
#
## This setup will generate a 'full' image which supports most systems.
## No autodetection is done.
# HOOKS=(base udev modconf block filesystems fsck)
#
## This setup assembles a mdadm array with an encrypted root file system.
## Note: See 'mkinitcpio -H mdadm_udev' for more information on RAID devices.
# HOOKS=(base udev modconf keyboard keymap consolefont block mdadm_udev encrypt filesystems fsck)
#
## This setup loads an lvm2 volume group.
# HOOKS=(base udev modconf block lvm2 filesystems fsck)
#
## NOTE: If you have /usr on a separate partition, you MUST include the
# usr and fsck hooks.
HOOKS=(base udev autodetect modconf kms keyboard keymap consolefont block filesystems resume fsck)
# COMPRESSION
# Use this to compress the initramfs image. By default, zstd compression
# is used. Use 'cat' to create an uncompressed image.
#COMPRESSION="zstd"
#COMPRESSION="gzip"
#COMPRESSION="bzip2"
#COMPRESSION="lzma"
#COMPRESSION="xz"
#COMPRESSION="lzop"
#COMPRESSION="lz4"
# COMPRESSION_OPTIONS
# Additional options for the compressor
#COMPRESSION_OPTIONS=()
# MODULES_DECOMPRESS
# Decompress kernel modules during initramfs creation.
# Enable to speedup boot process, disable to save RAM
# during early userspace. Switch (yes/no).
#MODULES_DECOMPRESS="yes"
My /proc/cmdline
cat /proc/cmdline
BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=31f12f6d-0594-4230-8eb4-6f9ed774fbd5 rw loglevel=3 quiet resume=UUID=4af59151-e37d-4718-9eda-3fee043be631
No IRST. Its an "AMD Ryzen 7 2700 Eight-Core Processor" according to 'lscpu' and the box it came in.
Offline
That all looks rational as long as the UUID is correct.
So, what happens when you try to resume? Does it hang? Does it reboot without resuming?
Nothing is too wonderful to be true, if it be consistent with the laws of nature -- Michael Faraday
Sometimes it is the people no one can imagine anything of who do the things no one can imagine. -- Alan Turing
---
How to Ask Questions the Smart Way
Offline
My understanding is that the issue here is the automatic wakeup, not that you can't resume from hibernation, correct? Make sure this is enabled in your system firmware, the system is completely shut down so the firmware has to do everything here.
Offline
After hibernation the machine does wake up with a push of the power button. I'll check the mother board settings later and get back here.
BTW: Might it be a legacy BIOS or EUFI issue? I use GRUB and a MBR to boot. Not sure if the system even supports EUFI.
Offline
On a terminal
sudo rtcwake -m disk -s 30
will suspend to disk but it will not wake up in 30 seconds FWIW
Offline
Flashed my BIOS to the latest version and on reboot I found some settings that seem related to "awakening" from the rtc. I enabled them but still have the same issue. Continuing to investigate. I'll post again soon. If you have any suggestions I would be thankful.
Thank you for your time.
Offline
After checking the output of "journalctl -b" I found some things that might be relevant but I really do not know what most of this means (numbered for reference):
43 Feb 22 11:57:03 archlinux kernel: tsc: Fast TSC calibration using PIT
44 Feb 22 11:57:03 archlinux kernel: tsc: Detected 3199.990 MHz processor
175 Feb 22 11:57:03 archlinux kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
216 Feb 22 11:57:03 archlinux kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
220 Feb 22 11:57:03 archlinux kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2e2040de13b, max_idle_ns: 440795297443 ns
258 Feb 22 11:57:03 archlinux kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
269 Feb 22 11:57:03 archlinux kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
463 Feb 22 11:57:03 archlinux kernel: clocksource: Switched to clocksource tsc-early
497 Feb 22 11:57:03 archlinux kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
735 Feb 22 11:57:03 archlinux kernel: tsc: Refined TSC clocksource calibration: 3205.751 MHz
736 Feb 22 11:57:03 archlinux kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2e3582e6b4d, max_idle_ns: 440795225998 ns
737 Feb 22 11:57:03 archlinux kernel: clocksource: Switched to clocksource tsc
749 Feb 22 11:57:03 archlinux kernel: clocksource: timekeeping watchdog on CPU3: Marking clocksource 'tsc' as unstable because the skew is too large:
750 Feb 22 11:57:03 archlinux kernel: clocksource: 'hpet' wd_nsec: 507445010 wd_now: 1bf0377 wd_last: 15025de mask: ffffffff
751 Feb 22 11:57:03 archlinux kernel: clocksource: 'tsc' cs_nsec: 506534138 cs_now: ea70a31e0 cs_last: e4640a160 mask: ffffffffffffffff
752 Feb 22 11:57:03 archlinux kernel: clocksource: 'tsc' is current clocksource.
753 Feb 22 11:57:03 archlinux kernel: tsc: Marking TSC unstable due to clocksource watchdog
754 Feb 22 11:57:03 archlinux kernel: TSC found unstable after boot, most likely due to broken BIOS. Use 'tsc=unstable'.
756 Feb 22 11:57:03 archlinux kernel: clocksource: Checking clocksource tsc synchronization from CPU 15 to CPUs 0,4.
757 Feb 22 11:57:03 archlinux kernel: clocksource: Switched to clocksource hpet
896 Feb 22 11:57:03 archlinux systemd-modules-load[373]: Inserted module 'softdog'
897 Feb 22 11:57:03 archlinux kernel: softdog: initialized. soft_noboot=0 soft_margin=60 sec soft_panic=0 (nowayout=0)
898 Feb 22 11:57:03 archlinux kernel: softdog: soft_reboot_cmd=<not set> soft_active_on_boot=0
907 Feb 22 11:57:03 archlinux kernel: SVM: TSC scaling supported
1002 Feb 22 11:57:04 archlinux kernel: sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
1003 Feb 22 11:57:04 archlinux kernel: sp5100-tco sp5100-tco: Using 0xfeb00000 for watchdog MMIO address
1004 Feb 22 11:57:04 archlinux kernel: sp5100-tco sp5100-tco: initialized. heartbeat=60 sec (nowayout=0)
1339 Feb 22 11:57:07 archlinux rtkit-daemon[870]: Watchdog thread running.
Here's the whole thing if it'll help (also numbered):
1 Feb 22 11:57:03 archlinux kernel: Linux version 6.1.12-arch1-1 (linux@archlinux) (gcc (GCC) 12.2.1 20230201, GNU ld (GNU Binutils) 2.40) #1 SMP PREEMPT_DYNAMIC Tue, 14 Feb 2023 22:08:08 +0000
2 Feb 22 11:57:03 archlinux kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=31f12f6d-0594-4230-8eb4-6f9ed774fbd5 rw loglevel=3 quiet resume=UUID=4af59151-e37d-4718-9eda-3fee043be631
3 Feb 22 11:57:03 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
4 Feb 22 11:57:03 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
5 Feb 22 11:57:03 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
6 Feb 22 11:57:03 archlinux kernel: x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
7 Feb 22 11:57:03 archlinux kernel: x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'compacted' format.
8 Feb 22 11:57:03 archlinux kernel: signal: max sigframe size: 1776
9 Feb 22 11:57:03 archlinux kernel: BIOS-provided physical RAM map:
10 Feb 22 11:57:03 archlinux kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009d3ff] usable
11 Feb 22 11:57:03 archlinux kernel: BIOS-e820: [mem 0x000000000009d400-0x000000000009ffff] reserved
12 Feb 22 11:57:03 archlinux kernel: BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
13 Feb 22 11:57:03 archlinux kernel: BIOS-e820: [mem 0x0000000000100000-0x0000000009d81fff] usable
14 Feb 22 11:57:03 archlinux kernel: BIOS-e820: [mem 0x0000000009d82000-0x0000000009ffffff] reserved
15 Feb 22 11:57:03 archlinux kernel: BIOS-e820: [mem 0x000000000a000000-0x000000000a1fffff] usable
16 Feb 22 11:57:03 archlinux kernel: BIOS-e820: [mem 0x000000000a200000-0x000000000a20afff] ACPI NVS
17 Feb 22 11:57:03 archlinux kernel: BIOS-e820: [mem 0x000000000a20b000-0x000000000affffff] usable
18 Feb 22 11:57:03 archlinux kernel: BIOS-e820: [mem 0x000000000b000000-0x000000000b01ffff] reserved
19 Feb 22 11:57:03 archlinux kernel: BIOS-e820: [mem 0x000000000b020000-0x00000000bb323fff] usable
20 Feb 22 11:57:03 archlinux kernel: BIOS-e820: [mem 0x00000000bb324000-0x00000000bb6a3fff] reserved
21 Feb 22 11:57:03 archlinux kernel: BIOS-e820: [mem 0x00000000bb6a4000-0x00000000bb707fff] ACPI data
22 Feb 22 11:57:03 archlinux kernel: BIOS-e820: [mem 0x00000000bb708000-0x00000000bce06fff] ACPI NVS
23 Feb 22 11:57:03 archlinux kernel: BIOS-e820: [mem 0x00000000bce07000-0x00000000bddfefff] reserved
24 Feb 22 11:57:03 archlinux kernel: BIOS-e820: [mem 0x00000000bddff000-0x00000000beffffff] usable
25 Feb 22 11:57:03 archlinux kernel: BIOS-e820: [mem 0x00000000bf000000-0x00000000bfffffff] reserved
26 Feb 22 11:57:03 archlinux kernel: BIOS-e820: [mem 0x00000000f0000000-0x00000000f7ffffff] reserved
27 Feb 22 11:57:03 archlinux kernel: BIOS-e820: [mem 0x00000000fd100000-0x00000000fd1fffff] reserved
28 Feb 22 11:57:03 archlinux kernel: BIOS-e820: [mem 0x00000000fea00000-0x00000000fea0ffff] reserved
29 Feb 22 11:57:03 archlinux kernel: BIOS-e820: [mem 0x00000000feb80000-0x00000000fec01fff] reserved
30 Feb 22 11:57:03 archlinux kernel: BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
31 Feb 22 11:57:03 archlinux kernel: BIOS-e820: [mem 0x00000000fec30000-0x00000000fec30fff] reserved
32 Feb 22 11:57:03 archlinux kernel: BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
33 Feb 22 11:57:03 archlinux kernel: BIOS-e820: [mem 0x00000000fed40000-0x00000000fed44fff] reserved
34 Feb 22 11:57:03 archlinux kernel: BIOS-e820: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
35 Feb 22 11:57:03 archlinux kernel: BIOS-e820: [mem 0x00000000fedc2000-0x00000000fedcffff] reserved
36 Feb 22 11:57:03 archlinux kernel: BIOS-e820: [mem 0x00000000fedd4000-0x00000000fedd5fff] reserved
37 Feb 22 11:57:03 archlinux kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
38 Feb 22 11:57:03 archlinux kernel: BIOS-e820: [mem 0x0000000100000000-0x000000083f37ffff] usable
39 Feb 22 11:57:03 archlinux kernel: BIOS-e820: [mem 0x000000083f380000-0x000000083fffffff] reserved
40 Feb 22 11:57:03 archlinux kernel: NX (Execute Disable) protection: active
41 Feb 22 11:57:03 archlinux kernel: SMBIOS 2.8 present.
42 Feb 22 11:57:03 archlinux kernel: DMI: Micro-Star International Co., Ltd MS-7B86/B450 GAMING PLUS MAX (MS-7B86), BIOS H.G0 07/26/2022
43 Feb 22 11:57:03 archlinux kernel: tsc: Fast TSC calibration using PIT
44 Feb 22 11:57:03 archlinux kernel: tsc: Detected 3199.990 MHz processor
45 Feb 22 11:57:03 archlinux kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
46 Feb 22 11:57:03 archlinux kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
47 Feb 22 11:57:03 archlinux kernel: last_pfn = 0x83f380 max_arch_pfn = 0x400000000
48 Feb 22 11:57:03 archlinux kernel: x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
49 Feb 22 11:57:03 archlinux kernel: e820: update [mem 0xc0000000-0xffffffff] usable ==> reserved
50 Feb 22 11:57:03 archlinux kernel: last_pfn = 0xbf000 max_arch_pfn = 0x400000000
51 Feb 22 11:57:03 archlinux kernel: Using GB pages for direct mapping
52 Feb 22 11:57:03 archlinux kernel: RAMDISK: [mem 0x36ab1000-0x3754ffff]
53 Feb 22 11:57:03 archlinux kernel: ACPI: Early table checksum verification disabled
54 Feb 22 11:57:03 archlinux kernel: ACPI: RSDP 0x00000000000F05B0 000024 (v02 ALASKA)
55 Feb 22 11:57:03 archlinux kernel: ACPI: XSDT 0x00000000BCDEF728 0000BC (v01 ALASKA A M I 01072009 AMI 01000013)
56 Feb 22 11:57:03 archlinux kernel: ACPI: FACP 0x00000000BB6F9000 000114 (v06 ALASKA A M I 01072009 AMI 00010013)
57 Feb 22 11:57:03 archlinux kernel: ACPI: DSDT 0x00000000BB6F2000 006D2C (v02 ALASKA A M I 01072009 INTL 20120913)
58 Feb 22 11:57:03 archlinux kernel: ACPI: FACS 0x00000000BCDB9000 000040
59 Feb 22 11:57:03 archlinux kernel: ACPI: SSDT 0x00000000BB6FF000 008C98 (v02 AMD AmdTable 00000002 MSFT 04000000)
60 Feb 22 11:57:03 archlinux kernel: ACPI: SSDT 0x00000000BB6FB000 003B7E (v01 AMD AMD AOD 00000001 INTL 20120913)
61 Feb 22 11:57:03 archlinux kernel: ACPI: SSDT 0x00000000BB6FA000 0000FC (v02 ALASKA CPUSSDT 01072009 AMI 01072009)
62 Feb 22 11:57:03 archlinux kernel: ACPI: FIDT 0x00000000BB6F1000 00009C (v01 ALASKA A M I 01072009 AMI 00010013)
63 Feb 22 11:57:03 archlinux kernel: ACPI: MCFG 0x00000000BB6F0000 00003C (v01 ALASKA A M I 01072009 MSFT 00010013)
64 Feb 22 11:57:03 archlinux kernel: ACPI: HPET 0x00000000BB6EF000 000038 (v01 ALASKA A M I 01072009 AMI 00000005)
65 Feb 22 11:57:03 archlinux kernel: ACPI: SSDT 0x00000000BB6EE000 000024 (v01 AMDFCH FCHZP 00001000 INTL 20120913)
66 Feb 22 11:57:03 archlinux kernel: ACPI: FPDT 0x00000000BB6ED000 000044 (v01 ALASKA A M I 01072009 AMI 01000013)
67 Feb 22 11:57:03 archlinux kernel: ACPI: TPM2 0x00000000BB6EC000 00004C (v04 ALASKA A M I 00000001 AMI 00000000)
68 Feb 22 11:57:03 archlinux kernel: ACPI: IVRS 0x00000000BB6EB000 0000D0 (v02 AMD AmdTable 00000001 AMD 00000000)
69 Feb 22 11:57:03 archlinux kernel: ACPI: SSDT 0x00000000BB6E8000 002314 (v02 AMD AmdTable 00000001 AMD 00000001)
70 Feb 22 11:57:03 archlinux kernel: ACPI: CRAT 0x00000000BB6E7000 000F50 (v01 AMD AmdTable 00000001 AMD 00000001)
71 Feb 22 11:57:03 archlinux kernel: ACPI: CDIT 0x00000000BB6E6000 000029 (v01 AMD AmdTable 00000001 AMD 00000001)
72 Feb 22 11:57:03 archlinux kernel: ACPI: SSDT 0x00000000BB6E1000 0037B0 (v01 AMD MYRTLE 00000001 INTL 20120913)
73 Feb 22 11:57:03 archlinux kernel: ACPI: SSDT 0x00000000BB6E0000 0000BF (v01 AMD AmdTable 00001000 INTL 20120913)
74 Feb 22 11:57:03 archlinux kernel: ACPI: WSMT 0x00000000BB6DF000 000028 (v01 ALASKA A M I 01072009 AMI 00010013)
75 Feb 22 11:57:03 archlinux kernel: ACPI: APIC 0x00000000BB6DE000 00015E (v03 ALASKA A M I 01072009 AMI 00010013)
76 Feb 22 11:57:03 archlinux kernel: ACPI: SSDT 0x00000000BB6DC000 0010AF (v01 AMD MYRTLE 00000001 INTL 20120913)
77 Feb 22 11:57:03 archlinux kernel: ACPI: Reserving FACP table memory at [mem 0xbb6f9000-0xbb6f9113]
78 Feb 22 11:57:03 archlinux kernel: ACPI: Reserving DSDT table memory at [mem 0xbb6f2000-0xbb6f8d2b]
79 Feb 22 11:57:03 archlinux kernel: ACPI: Reserving FACS table memory at [mem 0xbcdb9000-0xbcdb903f]
80 Feb 22 11:57:03 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0xbb6ff000-0xbb707c97]
81 Feb 22 11:57:03 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0xbb6fb000-0xbb6feb7d]
82 Feb 22 11:57:03 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0xbb6fa000-0xbb6fa0fb]
83 Feb 22 11:57:03 archlinux kernel: ACPI: Reserving FIDT table memory at [mem 0xbb6f1000-0xbb6f109b]
84 Feb 22 11:57:03 archlinux kernel: ACPI: Reserving MCFG table memory at [mem 0xbb6f0000-0xbb6f003b]
85 Feb 22 11:57:03 archlinux kernel: ACPI: Reserving HPET table memory at [mem 0xbb6ef000-0xbb6ef037]
86 Feb 22 11:57:03 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0xbb6ee000-0xbb6ee023]
87 Feb 22 11:57:03 archlinux kernel: ACPI: Reserving FPDT table memory at [mem 0xbb6ed000-0xbb6ed043]
88 Feb 22 11:57:03 archlinux kernel: ACPI: Reserving TPM2 table memory at [mem 0xbb6ec000-0xbb6ec04b]
89 Feb 22 11:57:03 archlinux kernel: ACPI: Reserving IVRS table memory at [mem 0xbb6eb000-0xbb6eb0cf]
90 Feb 22 11:57:03 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0xbb6e8000-0xbb6ea313]
91 Feb 22 11:57:03 archlinux kernel: ACPI: Reserving CRAT table memory at [mem 0xbb6e7000-0xbb6e7f4f]
92 Feb 22 11:57:03 archlinux kernel: ACPI: Reserving CDIT table memory at [mem 0xbb6e6000-0xbb6e6028]
93 Feb 22 11:57:03 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0xbb6e1000-0xbb6e47af]
94 Feb 22 11:57:03 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0xbb6e0000-0xbb6e00be]
95 Feb 22 11:57:03 archlinux kernel: ACPI: Reserving WSMT table memory at [mem 0xbb6df000-0xbb6df027]
96 Feb 22 11:57:03 archlinux kernel: ACPI: Reserving APIC table memory at [mem 0xbb6de000-0xbb6de15d]
97 Feb 22 11:57:03 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0xbb6dc000-0xbb6dd0ae]
98 Feb 22 11:57:03 archlinux kernel: system APIC only can use physical flat
99 Feb 22 11:57:03 archlinux kernel: Setting APIC routing to physical flat.
100 Feb 22 11:57:03 archlinux kernel: No NUMA configuration found
101 Feb 22 11:57:03 archlinux kernel: Faking a node at [mem 0x0000000000000000-0x000000083f37ffff]
102 Feb 22 11:57:03 archlinux kernel: NODE_DATA(0) allocated [mem 0x83f37b000-0x83f37ffff]
103 Feb 22 11:57:03 archlinux kernel: Zone ranges:
104 Feb 22 11:57:03 archlinux kernel: DMA [mem 0x0000000000001000-0x0000000000ffffff]
105 Feb 22 11:57:03 archlinux kernel: DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
106 Feb 22 11:57:03 archlinux kernel: Normal [mem 0x0000000100000000-0x000000083f37ffff]
107 Feb 22 11:57:03 archlinux kernel: Device empty
108 Feb 22 11:57:03 archlinux kernel: Movable zone start for each node
109 Feb 22 11:57:03 archlinux kernel: Early memory node ranges
110 Feb 22 11:57:03 archlinux kernel: node 0: [mem 0x0000000000001000-0x000000000009cfff]
111 Feb 22 11:57:03 archlinux kernel: node 0: [mem 0x0000000000100000-0x0000000009d81fff]
112 Feb 22 11:57:03 archlinux kernel: node 0: [mem 0x000000000a000000-0x000000000a1fffff]
113 Feb 22 11:57:03 archlinux kernel: node 0: [mem 0x000000000a20b000-0x000000000affffff]
114 Feb 22 11:57:03 archlinux kernel: node 0: [mem 0x000000000b020000-0x00000000bb323fff]
115 Feb 22 11:57:03 archlinux kernel: node 0: [mem 0x00000000bddff000-0x00000000beffffff]
116 Feb 22 11:57:03 archlinux kernel: node 0: [mem 0x0000000100000000-0x000000083f37ffff]
117 Feb 22 11:57:03 archlinux kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000083f37ffff]
118 Feb 22 11:57:03 archlinux kernel: On node 0, zone DMA: 1 pages in unavailable ranges
119 Feb 22 11:57:03 archlinux kernel: On node 0, zone DMA: 99 pages in unavailable ranges
120 Feb 22 11:57:03 archlinux kernel: On node 0, zone DMA32: 638 pages in unavailable ranges
121 Feb 22 11:57:03 archlinux kernel: On node 0, zone DMA32: 11 pages in unavailable ranges
122 Feb 22 11:57:03 archlinux kernel: On node 0, zone DMA32: 32 pages in unavailable ranges
123 Feb 22 11:57:03 archlinux kernel: On node 0, zone DMA32: 10971 pages in unavailable ranges
124 Feb 22 11:57:03 archlinux kernel: On node 0, zone Normal: 4096 pages in unavailable ranges
125 Feb 22 11:57:03 archlinux kernel: On node 0, zone Normal: 3200 pages in unavailable ranges
126 Feb 22 11:57:03 archlinux kernel: ACPI: PM-Timer IO Port: 0x808
127 Feb 22 11:57:03 archlinux kernel: system APIC only can use physical flat
128 Feb 22 11:57:03 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
129 Feb 22 11:57:03 archlinux kernel: IOAPIC[0]: apic_id 17, version 33, address 0xfec00000, GSI 0-23
130 Feb 22 11:57:03 archlinux kernel: IOAPIC[1]: apic_id 18, version 33, address 0xfec01000, GSI 24-55
131 Feb 22 11:57:03 archlinux kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
132 Feb 22 11:57:03 archlinux kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
133 Feb 22 11:57:03 archlinux kernel: ACPI: Using ACPI (MADT) for SMP configuration information
134 Feb 22 11:57:03 archlinux kernel: ACPI: HPET id: 0x10228201 base: 0xfed00000
135 Feb 22 11:57:03 archlinux kernel: smpboot: Allowing 32 CPUs, 16 hotplug CPUs
136 Feb 22 11:57:03 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
137 Feb 22 11:57:03 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x0009d000-0x0009dfff]
138 Feb 22 11:57:03 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
139 Feb 22 11:57:03 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000dffff]
140 Feb 22 11:57:03 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x000e0000-0x000fffff]
141 Feb 22 11:57:03 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x09d82000-0x09ffffff]
142 Feb 22 11:57:03 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x0a200000-0x0a20afff]
143 Feb 22 11:57:03 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x0b000000-0x0b01ffff]
144 Feb 22 11:57:03 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xbb324000-0xbb6a3fff]
145 Feb 22 11:57:03 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xbb6a4000-0xbb707fff]
146 Feb 22 11:57:03 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xbb708000-0xbce06fff]
147 Feb 22 11:57:03 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xbce07000-0xbddfefff]
148 Feb 22 11:57:03 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xbf000000-0xbfffffff]
149 Feb 22 11:57:03 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xc0000000-0xefffffff]
150 Feb 22 11:57:03 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xf0000000-0xf7ffffff]
151 Feb 22 11:57:03 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xf8000000-0xfd0fffff]
152 Feb 22 11:57:03 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfd100000-0xfd1fffff]
153 Feb 22 11:57:03 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfd200000-0xfe9fffff]
154 Feb 22 11:57:03 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfea00000-0xfea0ffff]
155 Feb 22 11:57:03 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfea10000-0xfeb7ffff]
156 Feb 22 11:57:03 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfeb80000-0xfec01fff]
157 Feb 22 11:57:03 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfec02000-0xfec0ffff]
158 Feb 22 11:57:03 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfec10000-0xfec10fff]
159 Feb 22 11:57:03 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfec11000-0xfec2ffff]
160 Feb 22 11:57:03 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfec30000-0xfec30fff]
161 Feb 22 11:57:03 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfec31000-0xfecfffff]
162 Feb 22 11:57:03 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfed00000-0xfed00fff]
163 Feb 22 11:57:03 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfed01000-0xfed3ffff]
164 Feb 22 11:57:03 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfed40000-0xfed44fff]
165 Feb 22 11:57:03 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfed45000-0xfed7ffff]
166 Feb 22 11:57:03 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xfed8ffff]
167 Feb 22 11:57:03 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfed90000-0xfedc1fff]
168 Feb 22 11:57:03 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfedc2000-0xfedcffff]
169 Feb 22 11:57:03 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfedd0000-0xfedd3fff]
170 Feb 22 11:57:03 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfedd4000-0xfedd5fff]
171 Feb 22 11:57:03 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfedd6000-0xfeffffff]
172 Feb 22 11:57:03 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xff000000-0xffffffff]
173 Feb 22 11:57:03 archlinux kernel: [mem 0xc0000000-0xefffffff] available for PCI devices
174 Feb 22 11:57:03 archlinux kernel: Booting paravirtualized kernel on bare hardware
175 Feb 22 11:57:03 archlinux kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
176 Feb 22 11:57:03 archlinux kernel: setup_percpu: NR_CPUS:320 nr_cpumask_bits:32 nr_cpu_ids:32 nr_node_ids:1
177 Feb 22 11:57:03 archlinux kernel: percpu: Embedded 63 pages/cpu s221184 r8192 d28672 u262144
178 Feb 22 11:57:03 archlinux kernel: pcpu-alloc: s221184 r8192 d28672 u262144 alloc=1*2097152
179 Feb 22 11:57:03 archlinux kernel: pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15
180 Feb 22 11:57:03 archlinux kernel: pcpu-alloc: [0] 16 17 18 19 20 21 22 23 [0] 24 25 26 27 28 29 30 31
181 Feb 22 11:57:03 archlinux kernel: Fallback order for Node 0: 0
182 Feb 22 11:57:03 archlinux kernel: Built 1 zonelists, mobility grouping on. Total pages: 8238628
183 Feb 22 11:57:03 archlinux kernel: Policy zone: Normal
184 Feb 22 11:57:03 archlinux kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=31f12f6d-0594-4230-8eb4-6f9ed774fbd5 rw loglevel=3 quiet resume=UUID=4af59151-e37d-4718-9eda-3fee043be631
185 Feb 22 11:57:03 archlinux kernel: Unknown kernel command line parameters "BOOT_IMAGE=/boot/vmlinuz-linux", will be passed to user space.
186 Feb 22 11:57:03 archlinux kernel: random: crng init done
187 Feb 22 11:57:03 archlinux kernel: printk: log_buf_len individual max cpu contribution: 4096 bytes
188 Feb 22 11:57:03 archlinux kernel: printk: log_buf_len total cpu_extra contributions: 126976 bytes
189 Feb 22 11:57:03 archlinux kernel: printk: log_buf_len min size: 131072 bytes
190 Feb 22 11:57:03 archlinux kernel: printk: log_buf_len: 262144 bytes
191 Feb 22 11:57:03 archlinux kernel: printk: early log buf free: 117192(89%)
192 Feb 22 11:57:03 archlinux kernel: Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
193 Feb 22 11:57:03 archlinux kernel: Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
194 Feb 22 11:57:03 archlinux kernel: mem auto-init: stack:all(zero), heap alloc:on, heap free:off
195 Feb 22 11:57:03 archlinux kernel: software IO TLB: area num 32.
196 Feb 22 11:57:03 archlinux kernel: Memory: 32772296K/33478240K available (16391K kernel code, 2160K rwdata, 11076K rodata, 2144K init, 3332K bss, 705684K reserved, 0K cma-reserved)
197 Feb 22 11:57:03 archlinux kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=32, Nodes=1
198 Feb 22 11:57:03 archlinux kernel: ftrace: allocating 46413 entries in 182 pages
199 Feb 22 11:57:03 archlinux kernel: ftrace: allocated 182 pages with 5 groups
200 Feb 22 11:57:03 archlinux kernel: Dynamic Preempt: full
201 Feb 22 11:57:03 archlinux kernel: rcu: Preemptible hierarchical RCU implementation.
202 Feb 22 11:57:03 archlinux kernel: rcu: RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=32.
203 Feb 22 11:57:03 archlinux kernel: rcu: RCU priority boosting: priority 1 delay 500 ms.
204 Feb 22 11:57:03 archlinux kernel: Trampoline variant of Tasks RCU enabled.
205 Feb 22 11:57:03 archlinux kernel: Rude variant of Tasks RCU enabled.
206 Feb 22 11:57:03 archlinux kernel: Tracing variant of Tasks RCU enabled.
207 Feb 22 11:57:03 archlinux kernel: rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
208 Feb 22 11:57:03 archlinux kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=32
209 Feb 22 11:57:03 archlinux kernel: NR_IRQS: 20736, nr_irqs: 1224, preallocated irqs: 16
210 Feb 22 11:57:03 archlinux kernel: rcu: srcu_init: Setting srcu_struct sizes based on contention.
211 Feb 22 11:57:03 archlinux kernel: kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
212 Feb 22 11:57:03 archlinux kernel: spurious 8259A interrupt: IRQ7.
213 Feb 22 11:57:03 archlinux kernel: Console: colour dummy device 80x25
214 Feb 22 11:57:03 archlinux kernel: printk: console [tty0] enabled
215 Feb 22 11:57:03 archlinux kernel: ACPI: Core revision 20220331
216 Feb 22 11:57:03 archlinux kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
217 Feb 22 11:57:03 archlinux kernel: APIC: Switch to symmetric I/O mode setup
218 Feb 22 11:57:03 archlinux kernel: AMD-Vi: Using global IVHD EFR:0xf77ef22294ada, EFR2:0x0
219 Feb 22 11:57:03 archlinux kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
220 Feb 22 11:57:03 archlinux kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2e2040de13b, max_idle_ns: 440795297443 ns
221 Feb 22 11:57:03 archlinux kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 6402.64 BogoMIPS (lpj=10666633)
222 Feb 22 11:57:03 archlinux kernel: pid_max: default: 32768 minimum: 301
223 Feb 22 11:57:03 archlinux kernel: LSM: Security Framework initializing
224 Feb 22 11:57:03 archlinux kernel: landlock: Up and running.
225 Feb 22 11:57:03 archlinux kernel: Yama: becoming mindful.
226 Feb 22 11:57:03 archlinux kernel: LSM support for eBPF active
227 Feb 22 11:57:03 archlinux kernel: Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
228 Feb 22 11:57:03 archlinux kernel: Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
229 Feb 22 11:57:03 archlinux kernel: LVT offset 1 assigned for vector 0xf9
230 Feb 22 11:57:03 archlinux kernel: LVT offset 2 assigned for vector 0xf4
231 Feb 22 11:57:03 archlinux kernel: process: using mwait in idle threads
232 Feb 22 11:57:03 archlinux kernel: Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 512
233 Feb 22 11:57:03 archlinux kernel: Last level dTLB entries: 4KB 1536, 2MB 1536, 4MB 768, 1GB 0
234 Feb 22 11:57:03 archlinux kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
235 Feb 22 11:57:03 archlinux kernel: Spectre V2 : Mitigation: Retpolines
236 Feb 22 11:57:03 archlinux kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
237 Feb 22 11:57:03 archlinux kernel: Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
238 Feb 22 11:57:03 archlinux kernel: Spectre V2 : Enabling Speculation Barrier for firmware calls
239 Feb 22 11:57:03 archlinux kernel: RETBleed: Mitigation: untrained return thunk
240 Feb 22 11:57:03 archlinux kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
241 Feb 22 11:57:03 archlinux kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
242 Feb 22 11:57:03 archlinux kernel: Freeing SMP alternatives memory: 40K
243 Feb 22 11:57:03 archlinux kernel: smpboot: CPU0: AMD Ryzen 7 2700 Eight-Core Processor (family: 0x17, model: 0x8, stepping: 0x2)
244 Feb 22 11:57:03 archlinux kernel: cblist_init_generic: Setting adjustable number of callback queues.
245 Feb 22 11:57:03 archlinux kernel: cblist_init_generic: Setting shift to 5 and lim to 1.
246 Feb 22 11:57:03 archlinux kernel: cblist_init_generic: Setting shift to 5 and lim to 1.
247 Feb 22 11:57:03 archlinux kernel: cblist_init_generic: Setting shift to 5 and lim to 1.
248 Feb 22 11:57:03 archlinux kernel: Performance Events: Fam17h+ core perfctr, AMD PMU driver.
249 Feb 22 11:57:03 archlinux kernel: ... version: 0
250 Feb 22 11:57:03 archlinux kernel: ... bit width: 48
251 Feb 22 11:57:03 archlinux kernel: ... generic registers: 6
252 Feb 22 11:57:03 archlinux kernel: ... value mask: 0000ffffffffffff
253 Feb 22 11:57:03 archlinux kernel: ... max period: 00007fffffffffff
254 Feb 22 11:57:03 archlinux kernel: ... fixed-purpose events: 0
255 Feb 22 11:57:03 archlinux kernel: ... event mask: 000000000000003f
256 Feb 22 11:57:03 archlinux kernel: rcu: Hierarchical SRCU implementation.
257 Feb 22 11:57:03 archlinux kernel: rcu: Max phase no-delay instances is 1000.
258 Feb 22 11:57:03 archlinux kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
259 Feb 22 11:57:03 archlinux kernel: smp: Bringing up secondary CPUs ...
260 Feb 22 11:57:03 archlinux kernel: x86: Booting SMP configuration:
261 Feb 22 11:57:03 archlinux kernel: .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7 #8 #9 #10 #11 #12 #13 #14 #15
262 Feb 22 11:57:03 archlinux kernel: smp: Brought up 1 node, 16 CPUs
263 Feb 22 11:57:03 archlinux kernel: smpboot: Max logical packages: 2
264 Feb 22 11:57:03 archlinux kernel: smpboot: Total of 16 processors activated (102440.33 BogoMIPS)
265 Feb 22 11:57:03 archlinux kernel: devtmpfs: initialized
266 Feb 22 11:57:03 archlinux kernel: x86/mm: Memory block size: 128MB
267 Feb 22 11:57:03 archlinux kernel: ACPI: PM: Registering ACPI NVS region [mem 0x0a200000-0x0a20afff] (45056 bytes)
268 Feb 22 11:57:03 archlinux kernel: ACPI: PM: Registering ACPI NVS region [mem 0xbb708000-0xbce06fff] (24113152 bytes)
269 Feb 22 11:57:03 archlinux kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
270 Feb 22 11:57:03 archlinux kernel: futex hash table entries: 8192 (order: 7, 524288 bytes, linear)
271 Feb 22 11:57:03 archlinux kernel: pinctrl core: initialized pinctrl subsystem
272 Feb 22 11:57:03 archlinux kernel: PM: RTC time: 16:57:00, date: 2023-02-22
273 Feb 22 11:57:03 archlinux kernel: NET: Registered PF_NETLINK/PF_ROUTE protocol family
274 Feb 22 11:57:03 archlinux kernel: DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
275 Feb 22 11:57:03 archlinux kernel: DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
276 Feb 22 11:57:03 archlinux kernel: DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
277 Feb 22 11:57:03 archlinux kernel: audit: initializing netlink subsys (disabled)
278 Feb 22 11:57:03 archlinux kernel: audit: type=2000 audit(1677085020.176:1): state=initialized audit_enabled=0 res=1
279 Feb 22 11:57:03 archlinux kernel: thermal_sys: Registered thermal governor 'fair_share'
280 Feb 22 11:57:03 archlinux kernel: thermal_sys: Registered thermal governor 'bang_bang'
281 Feb 22 11:57:03 archlinux kernel: thermal_sys: Registered thermal governor 'step_wise'
282 Feb 22 11:57:03 archlinux kernel: thermal_sys: Registered thermal governor 'user_space'
283 Feb 22 11:57:03 archlinux kernel: thermal_sys: Registered thermal governor 'power_allocator'
284 Feb 22 11:57:03 archlinux kernel: cpuidle: using governor ladder
285 Feb 22 11:57:03 archlinux kernel: cpuidle: using governor menu
286 Feb 22 11:57:03 archlinux kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
287 Feb 22 11:57:03 archlinux kernel: PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xf0000000-0xf7ffffff] (base 0xf0000000)
288 Feb 22 11:57:03 archlinux kernel: PCI: MMCONFIG at [mem 0xf0000000-0xf7ffffff] reserved in E820
289 Feb 22 11:57:03 archlinux kernel: PCI: Using configuration type 1 for base access
290 Feb 22 11:57:03 archlinux kernel: mtrr: your CPUs had inconsistent variable MTRR settings
291 Feb 22 11:57:03 archlinux kernel: mtrr: probably your BIOS does not setup all CPUs.
292 Feb 22 11:57:03 archlinux kernel: mtrr: corrected configuration.
293 Feb 22 11:57:03 archlinux kernel: kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
294 Feb 22 11:57:03 archlinux kernel: HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
295 Feb 22 11:57:03 archlinux kernel: HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
296 Feb 22 11:57:03 archlinux kernel: HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
297 Feb 22 11:57:03 archlinux kernel: HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
298 Feb 22 11:57:03 archlinux kernel: ACPI: Added _OSI(Module Device)
299 Feb 22 11:57:03 archlinux kernel: ACPI: Added _OSI(Processor Device)
300 Feb 22 11:57:03 archlinux kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
301 Feb 22 11:57:03 archlinux kernel: ACPI: Added _OSI(Processor Aggregator Device)
302 Feb 22 11:57:03 archlinux kernel: ACPI: 9 ACPI AML tables successfully acquired and loaded
303 Feb 22 11:57:03 archlinux kernel: ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
304 Feb 22 11:57:03 archlinux kernel: ACPI: Interpreter enabled
305 Feb 22 11:57:03 archlinux kernel: ACPI: PM: (supports S0 S3 S4 S5)
306 Feb 22 11:57:03 archlinux kernel: ACPI: Using IOAPIC for interrupt routing
307 Feb 22 11:57:03 archlinux kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
308 Feb 22 11:57:03 archlinux kernel: PCI: Using E820 reservations for host bridge windows
309 Feb 22 11:57:03 archlinux kernel: ACPI: Enabled 2 GPEs in block 00 to 1F
310 Feb 22 11:57:03 archlinux kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
311 Feb 22 11:57:03 archlinux kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
312 Feb 22 11:57:03 archlinux kernel: acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug PME LTR DPC]
313 Feb 22 11:57:03 archlinux kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug AER PCIeCapability]
314 Feb 22 11:57:03 archlinux kernel: acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-7f] only partially covers this bridge
315 Feb 22 11:57:03 archlinux kernel: PCI host bridge to bus 0000:00
316 Feb 22 11:57:03 archlinux kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x03af window]
317 Feb 22 11:57:03 archlinux kernel: pci_bus 0000:00: root bus resource [io 0x03e0-0x0cf7 window]
318 Feb 22 11:57:03 archlinux kernel: pci_bus 0000:00: root bus resource [io 0x03b0-0x03df window]
319 Feb 22 11:57:03 archlinux kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
320 Feb 22 11:57:03 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000dffff window]
321 Feb 22 11:57:03 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfec2ffff window]
322 Feb 22 11:57:03 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0xfee00000-0xffffffff window]
323 Feb 22 11:57:03 archlinux kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
324 Feb 22 11:57:03 archlinux kernel: pci 0000:00:00.0: [1022:1450] type 00 class 0x060000
325 Feb 22 11:57:03 archlinux kernel: pci 0000:00:00.2: [1022:1451] type 00 class 0x080600
326 Feb 22 11:57:03 archlinux kernel: pci 0000:00:01.0: [1022:1452] type 00 class 0x060000
327 Feb 22 11:57:03 archlinux kernel: pci 0000:00:01.1: [1022:1453] type 01 class 0x060400
328 Feb 22 11:57:03 archlinux kernel: pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
329 Feb 22 11:57:03 archlinux kernel: pci 0000:00:01.3: [1022:1453] type 01 class 0x060400
330 Feb 22 11:57:03 archlinux kernel: pci 0000:00:01.3: PME# supported from D0 D3hot D3cold
331 Feb 22 11:57:03 archlinux kernel: pci 0000:00:02.0: [1022:1452] type 00 class 0x060000
332 Feb 22 11:57:03 archlinux kernel: pci 0000:00:03.0: [1022:1452] type 00 class 0x060000
333 Feb 22 11:57:03 archlinux kernel: pci 0000:00:03.1: [1022:1453] type 01 class 0x060400
334 Feb 22 11:57:03 archlinux kernel: pci 0000:00:03.1: PME# supported from D0 D3hot D3cold
335 Feb 22 11:57:03 archlinux kernel: pci 0000:00:04.0: [1022:1452] type 00 class 0x060000
336 Feb 22 11:57:03 archlinux kernel: pci 0000:00:07.0: [1022:1452] type 00 class 0x060000
337 Feb 22 11:57:03 archlinux kernel: pci 0000:00:07.1: [1022:1454] type 01 class 0x060400
338 Feb 22 11:57:03 archlinux kernel: pci 0000:00:07.1: PME# supported from D0 D3hot D3cold
339 Feb 22 11:57:03 archlinux kernel: pci 0000:00:08.0: [1022:1452] type 00 class 0x060000
340 Feb 22 11:57:03 archlinux kernel: pci 0000:00:08.1: [1022:1454] type 01 class 0x060400
341 Feb 22 11:57:03 archlinux kernel: pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
342 Feb 22 11:57:03 archlinux kernel: pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500
343 Feb 22 11:57:03 archlinux kernel: pci 0000:00:14.3: [1022:790e] type 00 class 0x060100
344 Feb 22 11:57:03 archlinux kernel: pci 0000:00:18.0: [1022:1460] type 00 class 0x060000
345 Feb 22 11:57:03 archlinux kernel: pci 0000:00:18.1: [1022:1461] type 00 class 0x060000
346 Feb 22 11:57:03 archlinux kernel: pci 0000:00:18.2: [1022:1462] type 00 class 0x060000
347 Feb 22 11:57:03 archlinux kernel: pci 0000:00:18.3: [1022:1463] type 00 class 0x060000
348 Feb 22 11:57:03 archlinux kernel: pci 0000:00:18.4: [1022:1464] type 00 class 0x060000
349 Feb 22 11:57:03 archlinux kernel: pci 0000:00:18.5: [1022:1465] type 00 class 0x060000
350 Feb 22 11:57:03 archlinux kernel: pci 0000:00:18.6: [1022:1466] type 00 class 0x060000
351 Feb 22 11:57:03 archlinux kernel: pci 0000:00:18.7: [1022:1467] type 00 class 0x060000
352 Feb 22 11:57:03 archlinux kernel: pci 0000:01:00.0: [8086:f1a8] type 00 class 0x010802
353 Feb 22 11:57:03 archlinux kernel: pci 0000:01:00.0: reg 0x10: [mem 0xfc800000-0xfc803fff 64bit]
354 Feb 22 11:57:03 archlinux kernel: pci 0000:00:01.1: PCI bridge to [bus 01]
355 Feb 22 11:57:03 archlinux kernel: pci 0000:00:01.1: bridge window [mem 0xfc800000-0xfc8fffff]
356 Feb 22 11:57:03 archlinux kernel: pci 0000:03:00.0: [1022:43d5] type 00 class 0x0c0330
357 Feb 22 11:57:03 archlinux kernel: pci 0000:03:00.0: reg 0x10: [mem 0xfc6a0000-0xfc6a7fff 64bit]
358 Feb 22 11:57:03 archlinux kernel: pci 0000:03:00.0: PME# supported from D3hot D3cold
359 Feb 22 11:57:03 archlinux kernel: pci 0000:03:00.1: [1022:43c8] type 00 class 0x010601
360 Feb 22 11:57:03 archlinux kernel: pci 0000:03:00.1: reg 0x24: [mem 0xfc680000-0xfc69ffff]
361 Feb 22 11:57:03 archlinux kernel: pci 0000:03:00.1: reg 0x30: [mem 0xfc600000-0xfc67ffff pref]
362 Feb 22 11:57:03 archlinux kernel: pci 0000:03:00.1: PME# supported from D3hot D3cold
363 Feb 22 11:57:03 archlinux kernel: pci 0000:03:00.2: [1022:43c6] type 01 class 0x060400
364 Feb 22 11:57:03 archlinux kernel: pci 0000:03:00.2: PME# supported from D3hot D3cold
365 Feb 22 11:57:03 archlinux kernel: pci 0000:00:01.3: PCI bridge to [bus 03-25]
366 Feb 22 11:57:03 archlinux kernel: pci 0000:00:01.3: bridge window [io 0xf000-0xffff]
367 Feb 22 11:57:03 archlinux kernel: pci 0000:00:01.3: bridge window [mem 0xfc500000-0xfc6fffff]
368 Feb 22 11:57:03 archlinux kernel: pci 0000:20:00.0: [1022:43c7] type 01 class 0x060400
369 Feb 22 11:57:03 archlinux kernel: pci 0000:20:00.0: enabling Extended Tags
370 Feb 22 11:57:03 archlinux kernel: pci 0000:20:00.0: PME# supported from D3hot D3cold
371 Feb 22 11:57:03 archlinux kernel: pci 0000:20:01.0: [1022:43c7] type 01 class 0x060400
372 Feb 22 11:57:03 archlinux kernel: pci 0000:20:01.0: PME# supported from D3hot D3cold
373 Feb 22 11:57:03 archlinux kernel: pci 0000:20:04.0: [1022:43c7] type 01 class 0x060400
374 Feb 22 11:57:03 archlinux kernel: pci 0000:20:04.0: enabling Extended Tags
375 Feb 22 11:57:03 archlinux kernel: pci 0000:20:04.0: PME# supported from D3hot D3cold
376 Feb 22 11:57:03 archlinux kernel: pci 0000:03:00.2: PCI bridge to [bus 20-25]
377 Feb 22 11:57:03 archlinux kernel: pci 0000:03:00.2: bridge window [io 0xf000-0xffff]
378 Feb 22 11:57:03 archlinux kernel: pci 0000:03:00.2: bridge window [mem 0xfc500000-0xfc5fffff]
379 Feb 22 11:57:03 archlinux kernel: pci 0000:20:00.0: PCI bridge to [bus 21]
380 Feb 22 11:57:03 archlinux kernel: pci 0000:22:00.0: [10ec:8168] type 00 class 0x020000
381 Feb 22 11:57:03 archlinux kernel: pci 0000:22:00.0: reg 0x10: [io 0xf000-0xf0ff]
382 Feb 22 11:57:03 archlinux kernel: pci 0000:22:00.0: reg 0x18: [mem 0xfc504000-0xfc504fff 64bit]
383 Feb 22 11:57:03 archlinux kernel: pci 0000:22:00.0: reg 0x20: [mem 0xfc500000-0xfc503fff 64bit]
384 Feb 22 11:57:03 archlinux kernel: pci 0000:22:00.0: supports D1 D2
385 Feb 22 11:57:03 archlinux kernel: pci 0000:22:00.0: PME# supported from D0 D1 D2 D3hot D3cold
386 Feb 22 11:57:03 archlinux kernel: pci 0000:20:01.0: PCI bridge to [bus 22]
387 Feb 22 11:57:03 archlinux kernel: pci 0000:20:01.0: bridge window [io 0xf000-0xffff]
388 Feb 22 11:57:03 archlinux kernel: pci 0000:20:01.0: bridge window [mem 0xfc500000-0xfc5fffff]
389 Feb 22 11:57:03 archlinux kernel: pci 0000:20:04.0: PCI bridge to [bus 25]
390 Feb 22 11:57:03 archlinux kernel: pci 0000:26:00.0: [10de:1d01] type 00 class 0x030000
391 Feb 22 11:57:03 archlinux kernel: pci 0000:26:00.0: reg 0x10: [mem 0xfb000000-0xfbffffff]
392 Feb 22 11:57:03 archlinux kernel: pci 0000:26:00.0: reg 0x14: [mem 0xd0000000-0xdfffffff 64bit pref]
393 Feb 22 11:57:03 archlinux kernel: pci 0000:26:00.0: reg 0x1c: [mem 0xe0000000-0xe1ffffff 64bit pref]
394 Feb 22 11:57:03 archlinux kernel: pci 0000:26:00.0: reg 0x24: [io 0xe000-0xe07f]
395 Feb 22 11:57:03 archlinux kernel: pci 0000:26:00.0: reg 0x30: [mem 0xfc000000-0xfc07ffff pref]
396 Feb 22 11:57:03 archlinux kernel: pci 0000:26:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
397 Feb 22 11:57:03 archlinux kernel: pci 0000:26:00.0: 8.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s PCIe x4 link at 0000:00:03.1 (capable of 31.504 Gb/s with 8.0 GT/s PCIe x4 link)
398 Feb 22 11:57:03 archlinux kernel: pci 0000:26:00.1: [10de:0fb8] type 00 class 0x040300
399 Feb 22 11:57:03 archlinux kernel: pci 0000:26:00.1: reg 0x10: [mem 0xfc080000-0xfc083fff]
400 Feb 22 11:57:03 archlinux kernel: pci 0000:00:03.1: PCI bridge to [bus 26]
401 Feb 22 11:57:03 archlinux kernel: pci 0000:00:03.1: bridge window [io 0xe000-0xefff]
402 Feb 22 11:57:03 archlinux kernel: pci 0000:00:03.1: bridge window [mem 0xfb000000-0xfc0fffff]
403 Feb 22 11:57:03 archlinux kernel: pci 0000:00:03.1: bridge window [mem 0xd0000000-0xe1ffffff 64bit pref]
404 Feb 22 11:57:03 archlinux kernel: pci 0000:27:00.0: [1022:145a] type 00 class 0x130000
405 Feb 22 11:57:03 archlinux kernel: pci 0000:27:00.2: [1022:1456] type 00 class 0x108000
406 Feb 22 11:57:03 archlinux kernel: pci 0000:27:00.2: reg 0x18: [mem 0xfc300000-0xfc3fffff]
407 Feb 22 11:57:03 archlinux kernel: pci 0000:27:00.2: reg 0x24: [mem 0xfc400000-0xfc401fff]
408 Feb 22 11:57:03 archlinux kernel: pci 0000:27:00.3: [1022:145f] type 00 class 0x0c0330
409 Feb 22 11:57:03 archlinux kernel: pci 0000:27:00.3: reg 0x10: [mem 0xfc200000-0xfc2fffff 64bit]
410 Feb 22 11:57:03 archlinux kernel: pci 0000:27:00.3: PME# supported from D0 D3hot D3cold
411 Feb 22 11:57:03 archlinux kernel: pci 0000:00:07.1: PCI bridge to [bus 27]
412 Feb 22 11:57:03 archlinux kernel: pci 0000:00:07.1: bridge window [mem 0xfc200000-0xfc4fffff]
413 Feb 22 11:57:03 archlinux kernel: pci 0000:28:00.0: [1022:1455] type 00 class 0x130000
414 Feb 22 11:57:03 archlinux kernel: pci 0000:28:00.2: [1022:7901] type 00 class 0x010601
415 Feb 22 11:57:03 archlinux kernel: pci 0000:28:00.2: reg 0x24: [mem 0xfc708000-0xfc708fff]
416 Feb 22 11:57:03 archlinux kernel: pci 0000:28:00.2: PME# supported from D3hot D3cold
417 Feb 22 11:57:03 archlinux kernel: pci 0000:28:00.3: [1022:1457] type 00 class 0x040300
418 Feb 22 11:57:03 archlinux kernel: pci 0000:28:00.3: reg 0x10: [mem 0xfc700000-0xfc707fff]
419 Feb 22 11:57:03 archlinux kernel: pci 0000:28:00.3: PME# supported from D0 D3hot D3cold
420 Feb 22 11:57:03 archlinux kernel: pci 0000:00:08.1: PCI bridge to [bus 28]
421 Feb 22 11:57:03 archlinux kernel: pci 0000:00:08.1: bridge window [mem 0xfc700000-0xfc7fffff]
422 Feb 22 11:57:03 archlinux kernel: ACPI: PCI: Interrupt link LNKA configured for IRQ 0
423 Feb 22 11:57:03 archlinux kernel: ACPI: PCI: Interrupt link LNKB configured for IRQ 0
424 Feb 22 11:57:03 archlinux kernel: ACPI: PCI: Interrupt link LNKC configured for IRQ 0
425 Feb 22 11:57:03 archlinux kernel: ACPI: PCI: Interrupt link LNKD configured for IRQ 0
426 Feb 22 11:57:03 archlinux kernel: ACPI: PCI: Interrupt link LNKE configured for IRQ 0
427 Feb 22 11:57:03 archlinux kernel: ACPI: PCI: Interrupt link LNKF configured for IRQ 0
428 Feb 22 11:57:03 archlinux kernel: ACPI: PCI: Interrupt link LNKG configured for IRQ 0
429 Feb 22 11:57:03 archlinux kernel: ACPI: PCI: Interrupt link LNKH configured for IRQ 0
430 Feb 22 11:57:03 archlinux kernel: iommu: Default domain type: Translated
431 Feb 22 11:57:03 archlinux kernel: iommu: DMA domain TLB invalidation policy: lazy mode
432 Feb 22 11:57:03 archlinux kernel: SCSI subsystem initialized
433 Feb 22 11:57:03 archlinux kernel: libata version 3.00 loaded.
434 Feb 22 11:57:03 archlinux kernel: ACPI: bus type USB registered
435 Feb 22 11:57:03 archlinux kernel: usbcore: registered new interface driver usbfs
436 Feb 22 11:57:03 archlinux kernel: usbcore: registered new interface driver hub
437 Feb 22 11:57:03 archlinux kernel: usbcore: registered new device driver usb
438 Feb 22 11:57:03 archlinux kernel: pps_core: LinuxPPS API ver. 1 registered
439 Feb 22 11:57:03 archlinux kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
440 Feb 22 11:57:03 archlinux kernel: PTP clock support registered
441 Feb 22 11:57:03 archlinux kernel: EDAC MC: Ver: 3.0.0
442 Feb 22 11:57:03 archlinux kernel: NetLabel: Initializing
443 Feb 22 11:57:03 archlinux kernel: NetLabel: domain hash size = 128
444 Feb 22 11:57:03 archlinux kernel: NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
445 Feb 22 11:57:03 archlinux kernel: NetLabel: unlabeled traffic allowed by default
446 Feb 22 11:57:03 archlinux kernel: mctp: management component transport protocol core
447 Feb 22 11:57:03 archlinux kernel: NET: Registered PF_MCTP protocol family
448 Feb 22 11:57:03 archlinux kernel: PCI: Using ACPI for IRQ routing
449 Feb 22 11:57:03 archlinux kernel: PCI: pci_cache_line_size set to 64 bytes
450 Feb 22 11:57:03 archlinux kernel: e820: reserve RAM buffer [mem 0x0009d400-0x0009ffff]
451 Feb 22 11:57:03 archlinux kernel: e820: reserve RAM buffer [mem 0x09d82000-0x0bffffff]
452 Feb 22 11:57:03 archlinux kernel: e820: reserve RAM buffer [mem 0x0a200000-0x0bffffff]
453 Feb 22 11:57:03 archlinux kernel: e820: reserve RAM buffer [mem 0x0b000000-0x0bffffff]
454 Feb 22 11:57:03 archlinux kernel: e820: reserve RAM buffer [mem 0xbb324000-0xbbffffff]
455 Feb 22 11:57:03 archlinux kernel: e820: reserve RAM buffer [mem 0xbf000000-0xbfffffff]
456 Feb 22 11:57:03 archlinux kernel: e820: reserve RAM buffer [mem 0x83f380000-0x83fffffff]
457 Feb 22 11:57:03 archlinux kernel: pci 0000:26:00.0: vgaarb: setting as boot VGA device
458 Feb 22 11:57:03 archlinux kernel: pci 0000:26:00.0: vgaarb: bridge control possible
459 Feb 22 11:57:03 archlinux kernel: pci 0000:26:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
460 Feb 22 11:57:03 archlinux kernel: vgaarb: loaded
461 Feb 22 11:57:03 archlinux kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
462 Feb 22 11:57:03 archlinux kernel: hpet0: 3 comparators, 32-bit 14.318180 MHz counter
463 Feb 22 11:57:03 archlinux kernel: clocksource: Switched to clocksource tsc-early
464 Feb 22 11:57:03 archlinux kernel: VFS: Disk quotas dquot_6.6.0
465 Feb 22 11:57:03 archlinux kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
466 Feb 22 11:57:03 archlinux kernel: pnp: PnP ACPI init
467 Feb 22 11:57:03 archlinux kernel: system 00:00: [mem 0xf0000000-0xf7ffffff] has been reserved
468 Feb 22 11:57:03 archlinux kernel: system 00:02: [io 0x0a00-0x0a0f] has been reserved
469 Feb 22 11:57:03 archlinux kernel: system 00:02: [io 0x0a10-0x0a1f] has been reserved
470 Feb 22 11:57:03 archlinux kernel: system 00:02: [io 0x0a20-0x0a2f] has been reserved
471 Feb 22 11:57:03 archlinux kernel: system 00:02: [io 0x0a30-0x0a3f] has been reserved
472 Feb 22 11:57:03 archlinux kernel: pnp 00:03: [dma 0 disabled]
473 Feb 22 11:57:03 archlinux kernel: pnp 00:04: [dma 0 disabled]
474 Feb 22 11:57:03 archlinux kernel: system 00:05: [io 0x04d0-0x04d1] has been reserved
475 Feb 22 11:57:03 archlinux kernel: system 00:05: [io 0x040b] has been reserved
476 Feb 22 11:57:03 archlinux kernel: system 00:05: [io 0x04d6] has been reserved
477 Feb 22 11:57:03 archlinux kernel: system 00:05: [io 0x0c00-0x0c01] has been reserved
478 Feb 22 11:57:03 archlinux kernel: system 00:05: [io 0x0c14] has been reserved
479 Feb 22 11:57:03 archlinux kernel: system 00:05: [io 0x0c50-0x0c51] has been reserved
480 Feb 22 11:57:03 archlinux kernel: system 00:05: [io 0x0c52] has been reserved
481 Feb 22 11:57:03 archlinux kernel: system 00:05: [io 0x0c6c] has been reserved
482 Feb 22 11:57:03 archlinux kernel: system 00:05: [io 0x0c6f] has been reserved
483 Feb 22 11:57:03 archlinux kernel: system 00:05: [io 0x0cd8-0x0cdf] has been reserved
484 Feb 22 11:57:03 archlinux kernel: system 00:05: [io 0x0800-0x089f] has been reserved
485 Feb 22 11:57:03 archlinux kernel: system 00:05: [io 0x0b00-0x0b0f] has been reserved
486 Feb 22 11:57:03 archlinux kernel: system 00:05: [io 0x0b20-0x0b3f] has been reserved
487 Feb 22 11:57:03 archlinux kernel: system 00:05: [io 0x0900-0x090f] has been reserved
488 Feb 22 11:57:03 archlinux kernel: system 00:05: [io 0x0910-0x091f] has been reserved
489 Feb 22 11:57:03 archlinux kernel: system 00:05: [mem 0xfec00000-0xfec00fff] could not be reserved
490 Feb 22 11:57:03 archlinux kernel: system 00:05: [mem 0xfec01000-0xfec01fff] could not be reserved
491 Feb 22 11:57:03 archlinux kernel: system 00:05: [mem 0xfedc0000-0xfedc0fff] has been reserved
492 Feb 22 11:57:03 archlinux kernel: system 00:05: [mem 0xfee00000-0xfee00fff] has been reserved
493 Feb 22 11:57:03 archlinux kernel: system 00:05: [mem 0xfed80000-0xfed8ffff] could not be reserved
494 Feb 22 11:57:03 archlinux kernel: system 00:05: [mem 0xfec10000-0xfec10fff] has been reserved
495 Feb 22 11:57:03 archlinux kernel: system 00:05: [mem 0xff000000-0xffffffff] has been reserved
496 Feb 22 11:57:03 archlinux kernel: pnp: PnP ACPI: found 6 devices
497 Feb 22 11:57:03 archlinux kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
498 Feb 22 11:57:03 archlinux kernel: NET: Registered PF_INET protocol family
499 Feb 22 11:57:03 archlinux kernel: IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
500 Feb 22 11:57:03 archlinux kernel: tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
501 Feb 22 11:57:03 archlinux kernel: Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
502 Feb 22 11:57:03 archlinux kernel: TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
503 Feb 22 11:57:03 archlinux kernel: TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
504 Feb 22 11:57:03 archlinux kernel: TCP: Hash tables configured (established 262144 bind 65536)
505 Feb 22 11:57:03 archlinux kernel: MPTCP token hash table entries: 32768 (order: 7, 786432 bytes, linear)
506 Feb 22 11:57:03 archlinux kernel: UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
507 Feb 22 11:57:03 archlinux kernel: UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
508 Feb 22 11:57:03 archlinux kernel: NET: Registered PF_UNIX/PF_LOCAL protocol family
509 Feb 22 11:57:03 archlinux kernel: NET: Registered PF_XDP protocol family
510 Feb 22 11:57:03 archlinux kernel: pci 0000:00:01.1: PCI bridge to [bus 01]
511 Feb 22 11:57:03 archlinux kernel: pci 0000:00:01.1: bridge window [mem 0xfc800000-0xfc8fffff]
512 Feb 22 11:57:03 archlinux kernel: pci 0000:20:00.0: PCI bridge to [bus 21]
513 Feb 22 11:57:03 archlinux kernel: pci 0000:20:01.0: PCI bridge to [bus 22]
514 Feb 22 11:57:03 archlinux kernel: pci 0000:20:01.0: bridge window [io 0xf000-0xffff]
515 Feb 22 11:57:03 archlinux kernel: pci 0000:20:01.0: bridge window [mem 0xfc500000-0xfc5fffff]
516 Feb 22 11:57:03 archlinux kernel: pci 0000:20:04.0: PCI bridge to [bus 25]
517 Feb 22 11:57:03 archlinux kernel: pci 0000:03:00.2: PCI bridge to [bus 20-25]
518 Feb 22 11:57:03 archlinux kernel: pci 0000:03:00.2: bridge window [io 0xf000-0xffff]
519 Feb 22 11:57:03 archlinux kernel: pci 0000:03:00.2: bridge window [mem 0xfc500000-0xfc5fffff]
520 Feb 22 11:57:03 archlinux kernel: pci 0000:00:01.3: PCI bridge to [bus 03-25]
521 Feb 22 11:57:03 archlinux kernel: pci 0000:00:01.3: bridge window [io 0xf000-0xffff]
522 Feb 22 11:57:03 archlinux kernel: pci 0000:00:01.3: bridge window [mem 0xfc500000-0xfc6fffff]
523 Feb 22 11:57:03 archlinux kernel: pci 0000:00:03.1: PCI bridge to [bus 26]
524 Feb 22 11:57:03 archlinux kernel: pci 0000:00:03.1: bridge window [io 0xe000-0xefff]
525 Feb 22 11:57:03 archlinux kernel: pci 0000:00:03.1: bridge window [mem 0xfb000000-0xfc0fffff]
526 Feb 22 11:57:03 archlinux kernel: pci 0000:00:03.1: bridge window [mem 0xd0000000-0xe1ffffff 64bit pref]
527 Feb 22 11:57:03 archlinux kernel: pci 0000:00:07.1: PCI bridge to [bus 27]
528 Feb 22 11:57:03 archlinux kernel: pci 0000:00:07.1: bridge window [mem 0xfc200000-0xfc4fffff]
529 Feb 22 11:57:03 archlinux kernel: pci 0000:00:08.1: PCI bridge to [bus 28]
530 Feb 22 11:57:03 archlinux kernel: pci 0000:00:08.1: bridge window [mem 0xfc700000-0xfc7fffff]
531 Feb 22 11:57:03 archlinux kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x03af window]
532 Feb 22 11:57:03 archlinux kernel: pci_bus 0000:00: resource 5 [io 0x03e0-0x0cf7 window]
533 Feb 22 11:57:03 archlinux kernel: pci_bus 0000:00: resource 6 [io 0x03b0-0x03df window]
534 Feb 22 11:57:03 archlinux kernel: pci_bus 0000:00: resource 7 [io 0x0d00-0xffff window]
535 Feb 22 11:57:03 archlinux kernel: pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000dffff window]
536 Feb 22 11:57:03 archlinux kernel: pci_bus 0000:00: resource 9 [mem 0xc0000000-0xfec2ffff window]
537 Feb 22 11:57:03 archlinux kernel: pci_bus 0000:00: resource 10 [mem 0xfee00000-0xffffffff window]
538 Feb 22 11:57:03 archlinux kernel: pci_bus 0000:01: resource 1 [mem 0xfc800000-0xfc8fffff]
539 Feb 22 11:57:03 archlinux kernel: pci_bus 0000:03: resource 0 [io 0xf000-0xffff]
540 Feb 22 11:57:03 archlinux kernel: pci_bus 0000:03: resource 1 [mem 0xfc500000-0xfc6fffff]
541 Feb 22 11:57:03 archlinux kernel: pci_bus 0000:20: resource 0 [io 0xf000-0xffff]
542 Feb 22 11:57:03 archlinux kernel: pci_bus 0000:20: resource 1 [mem 0xfc500000-0xfc5fffff]
543 Feb 22 11:57:03 archlinux kernel: pci_bus 0000:22: resource 0 [io 0xf000-0xffff]
544 Feb 22 11:57:03 archlinux kernel: pci_bus 0000:22: resource 1 [mem 0xfc500000-0xfc5fffff]
545 Feb 22 11:57:03 archlinux kernel: pci_bus 0000:26: resource 0 [io 0xe000-0xefff]
546 Feb 22 11:57:03 archlinux kernel: pci_bus 0000:26: resource 1 [mem 0xfb000000-0xfc0fffff]
547 Feb 22 11:57:03 archlinux kernel: pci_bus 0000:26: resource 2 [mem 0xd0000000-0xe1ffffff 64bit pref]
548 Feb 22 11:57:03 archlinux kernel: pci_bus 0000:27: resource 1 [mem 0xfc200000-0xfc4fffff]
549 Feb 22 11:57:03 archlinux kernel: pci_bus 0000:28: resource 1 [mem 0xfc700000-0xfc7fffff]
550 Feb 22 11:57:03 archlinux kernel: pci 0000:26:00.1: D0 power state depends on 0000:26:00.0
551 Feb 22 11:57:03 archlinux kernel: PCI: CLS 64 bytes, default 64
552 Feb 22 11:57:03 archlinux kernel: pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
553 Feb 22 11:57:03 archlinux kernel: Trying to unpack rootfs image as initramfs...
554 Feb 22 11:57:03 archlinux kernel: pci 0000:00:01.0: Adding to iommu group 0
555 Feb 22 11:57:03 archlinux kernel: pci 0000:00:01.1: Adding to iommu group 1
556 Feb 22 11:57:03 archlinux kernel: pci 0000:00:01.3: Adding to iommu group 2
557 Feb 22 11:57:03 archlinux kernel: pci 0000:00:02.0: Adding to iommu group 3
558 Feb 22 11:57:03 archlinux kernel: pci 0000:00:03.0: Adding to iommu group 4
559 Feb 22 11:57:03 archlinux kernel: pci 0000:00:03.1: Adding to iommu group 5
560 Feb 22 11:57:03 archlinux kernel: pci 0000:00:04.0: Adding to iommu group 6
561 Feb 22 11:57:03 archlinux kernel: pci 0000:00:07.0: Adding to iommu group 7
562 Feb 22 11:57:03 archlinux kernel: pci 0000:00:07.1: Adding to iommu group 8
563 Feb 22 11:57:03 archlinux kernel: pci 0000:00:08.0: Adding to iommu group 9
564 Feb 22 11:57:03 archlinux kernel: pci 0000:00:08.1: Adding to iommu group 10
565 Feb 22 11:57:03 archlinux kernel: pci 0000:00:14.0: Adding to iommu group 11
566 Feb 22 11:57:03 archlinux kernel: pci 0000:00:14.3: Adding to iommu group 11
567 Feb 22 11:57:03 archlinux kernel: pci 0000:00:18.0: Adding to iommu group 12
568 Feb 22 11:57:03 archlinux kernel: pci 0000:00:18.1: Adding to iommu group 12
569 Feb 22 11:57:03 archlinux kernel: pci 0000:00:18.2: Adding to iommu group 12
570 Feb 22 11:57:03 archlinux kernel: pci 0000:00:18.3: Adding to iommu group 12
571 Feb 22 11:57:03 archlinux kernel: pci 0000:00:18.4: Adding to iommu group 12
572 Feb 22 11:57:03 archlinux kernel: pci 0000:00:18.5: Adding to iommu group 12
573 Feb 22 11:57:03 archlinux kernel: pci 0000:00:18.6: Adding to iommu group 12
574 Feb 22 11:57:03 archlinux kernel: pci 0000:00:18.7: Adding to iommu group 12
575 Feb 22 11:57:03 archlinux kernel: pci 0000:01:00.0: Adding to iommu group 13
576 Feb 22 11:57:03 archlinux kernel: pci 0000:03:00.0: Adding to iommu group 14
577 Feb 22 11:57:03 archlinux kernel: pci 0000:03:00.1: Adding to iommu group 14
578 Feb 22 11:57:03 archlinux kernel: pci 0000:03:00.2: Adding to iommu group 14
579 Feb 22 11:57:03 archlinux kernel: pci 0000:20:00.0: Adding to iommu group 14
580 Feb 22 11:57:03 archlinux kernel: pci 0000:20:01.0: Adding to iommu group 14
581 Feb 22 11:57:03 archlinux kernel: pci 0000:20:04.0: Adding to iommu group 14
582 Feb 22 11:57:03 archlinux kernel: pci 0000:22:00.0: Adding to iommu group 14
583 Feb 22 11:57:03 archlinux kernel: pci 0000:26:00.0: Adding to iommu group 15
584 Feb 22 11:57:03 archlinux kernel: pci 0000:26:00.1: Adding to iommu group 15
585 Feb 22 11:57:03 archlinux kernel: pci 0000:27:00.0: Adding to iommu group 16
586 Feb 22 11:57:03 archlinux kernel: pci 0000:27:00.2: Adding to iommu group 17
587 Feb 22 11:57:03 archlinux kernel: pci 0000:27:00.3: Adding to iommu group 18
588 Feb 22 11:57:03 archlinux kernel: pci 0000:28:00.0: Adding to iommu group 19
589 Feb 22 11:57:03 archlinux kernel: pci 0000:28:00.2: Adding to iommu group 20
590 Feb 22 11:57:03 archlinux kernel: pci 0000:28:00.3: Adding to iommu group 21
591 Feb 22 11:57:03 archlinux kernel: pci 0000:00:00.2: AMD-Vi: Found IOMMU cap 0x40
592 Feb 22 11:57:03 archlinux kernel: AMD-Vi: Extended features (0xf77ef22294ada, 0x0): PPR NX GT IA GA PC GA_vAPIC
593 Feb 22 11:57:03 archlinux kernel: AMD-Vi: Interrupt remapping enabled
594 Feb 22 11:57:03 archlinux kernel: AMD-Vi: Virtual APIC enabled
595 Feb 22 11:57:03 archlinux kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
596 Feb 22 11:57:03 archlinux kernel: software IO TLB: mapped [mem 0x00000000b7324000-0x00000000bb324000] (64MB)
597 Feb 22 11:57:03 archlinux kernel: perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
598 Feb 22 11:57:03 archlinux kernel: Initialise system trusted keyrings
599 Feb 22 11:57:03 archlinux kernel: Key type blacklist registered
600 Feb 22 11:57:03 archlinux kernel: workingset: timestamp_bits=41 max_order=23 bucket_order=0
601 Feb 22 11:57:03 archlinux kernel: zbud: loaded
602 Feb 22 11:57:03 archlinux kernel: integrity: Platform Keyring initialized
603 Feb 22 11:57:03 archlinux kernel: integrity: Machine keyring initialized
604 Feb 22 11:57:03 archlinux kernel: Key type asymmetric registered
605 Feb 22 11:57:03 archlinux kernel: Asymmetric key parser 'x509' registered
606 Feb 22 11:57:03 archlinux kernel: Freeing initrd memory: 10876K
607 Feb 22 11:57:03 archlinux kernel: alg: self-tests for CTR-KDF (hmac(sha256)) passed
608 Feb 22 11:57:03 archlinux kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 242)
609 Feb 22 11:57:03 archlinux kernel: io scheduler mq-deadline registered
610 Feb 22 11:57:03 archlinux kernel: io scheduler kyber registered
611 Feb 22 11:57:03 archlinux kernel: io scheduler bfq registered
612 Feb 22 11:57:03 archlinux kernel: pcieport 0000:00:01.1: AER: enabled with IRQ 26
613 Feb 22 11:57:03 archlinux kernel: pcieport 0000:00:01.3: AER: enabled with IRQ 27
614 Feb 22 11:57:03 archlinux kernel: pcieport 0000:00:03.1: AER: enabled with IRQ 28
615 Feb 22 11:57:03 archlinux kernel: pcieport 0000:00:07.1: AER: enabled with IRQ 29
616 Feb 22 11:57:03 archlinux kernel: pcieport 0000:00:08.1: AER: enabled with IRQ 31
617 Feb 22 11:57:03 archlinux kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
618 Feb 22 11:57:03 archlinux kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
619 Feb 22 11:57:03 archlinux kernel: ACPI: button: Power Button [PWRB]
620 Feb 22 11:57:03 archlinux kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
621 Feb 22 11:57:03 archlinux kernel: ACPI: button: Power Button [PWRF]
622 Feb 22 11:57:03 archlinux kernel: Monitor-Mwait will be used to enter C-1 state
623 Feb 22 11:57:03 archlinux kernel: ACPI: \_PR_.C000: Found 2 idle states
624 Feb 22 11:57:03 archlinux kernel: ACPI: \_PR_.C002: Found 2 idle states
625 Feb 22 11:57:03 archlinux kernel: ACPI: \_PR_.C004: Found 2 idle states
626 Feb 22 11:57:03 archlinux kernel: ACPI: \_PR_.C006: Found 2 idle states
627 Feb 22 11:57:03 archlinux kernel: ACPI: \_PR_.C008: Found 2 idle states
628 Feb 22 11:57:03 archlinux kernel: ACPI: \_PR_.C00A: Found 2 idle states
629 Feb 22 11:57:03 archlinux kernel: ACPI: \_PR_.C00C: Found 2 idle states
630 Feb 22 11:57:03 archlinux kernel: ACPI: \_PR_.C00E: Found 2 idle states
631 Feb 22 11:57:03 archlinux kernel: ACPI: \_PR_.C001: Found 2 idle states
632 Feb 22 11:57:03 archlinux kernel: ACPI: \_PR_.C003: Found 2 idle states
633 Feb 22 11:57:03 archlinux kernel: ACPI: \_PR_.C005: Found 2 idle states
634 Feb 22 11:57:03 archlinux kernel: ACPI: \_PR_.C007: Found 2 idle states
635 Feb 22 11:57:03 archlinux kernel: ACPI: \_PR_.C009: Found 2 idle states
636 Feb 22 11:57:03 archlinux kernel: ACPI: \_PR_.C00B: Found 2 idle states
637 Feb 22 11:57:03 archlinux kernel: ACPI: \_PR_.C00D: Found 2 idle states
638 Feb 22 11:57:03 archlinux kernel: ACPI: \_PR_.C00F: Found 2 idle states
639 Feb 22 11:57:03 archlinux kernel: Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
640 Feb 22 11:57:03 archlinux kernel: 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
641 Feb 22 11:57:03 archlinux kernel: Non-volatile memory driver v1.3
642 Feb 22 11:57:03 archlinux kernel: Linux agpgart interface v0.103
643 Feb 22 11:57:03 archlinux kernel: AMD-Vi: AMD IOMMUv2 loaded and initialized
644 Feb 22 11:57:03 archlinux kernel: ACPI: bus type drm_connector registered
645 Feb 22 11:57:03 archlinux kernel: ahci 0000:03:00.1: version 3.0
646 Feb 22 11:57:03 archlinux kernel: ahci 0000:03:00.1: SSS flag set, parallel bus scan disabled
647 Feb 22 11:57:03 archlinux kernel: ahci 0000:03:00.1: AHCI 0001.0301 32 slots 8 ports 6 Gbps 0x33 impl SATA mode
648 Feb 22 11:57:03 archlinux kernel: ahci 0000:03:00.1: flags: 64bit ncq sntf stag pm led clo only pmp pio slum part sxs deso sadm sds apst
649 Feb 22 11:57:03 archlinux kernel: scsi host0: ahci
650 Feb 22 11:57:03 archlinux kernel: scsi host1: ahci
651 Feb 22 11:57:03 archlinux kernel: scsi host2: ahci
652 Feb 22 11:57:03 archlinux kernel: scsi host3: ahci
653 Feb 22 11:57:03 archlinux kernel: scsi host4: ahci
654 Feb 22 11:57:03 archlinux kernel: scsi host5: ahci
655 Feb 22 11:57:03 archlinux kernel: scsi host6: ahci
656 Feb 22 11:57:03 archlinux kernel: scsi host7: ahci
657 Feb 22 11:57:03 archlinux kernel: ata1: SATA max UDMA/133 abar m131072@0xfc680000 port 0xfc680100 irq 38
658 Feb 22 11:57:03 archlinux kernel: ata2: SATA max UDMA/133 abar m131072@0xfc680000 port 0xfc680180 irq 38
659 Feb 22 11:57:03 archlinux kernel: ata3: DUMMY
660 Feb 22 11:57:03 archlinux kernel: ata4: DUMMY
661 Feb 22 11:57:03 archlinux kernel: ata5: SATA max UDMA/133 abar m131072@0xfc680000 port 0xfc680300 irq 38
662 Feb 22 11:57:03 archlinux kernel: ata6: SATA max UDMA/133 abar m131072@0xfc680000 port 0xfc680380 irq 38
663 Feb 22 11:57:03 archlinux kernel: ata7: DUMMY
664 Feb 22 11:57:03 archlinux kernel: ata8: DUMMY
665 Feb 22 11:57:03 archlinux kernel: ahci 0000:28:00.2: AHCI 0001.0301 32 slots 1 ports 6 Gbps 0x1 impl SATA mode
666 Feb 22 11:57:03 archlinux kernel: ahci 0000:28:00.2: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part
667 Feb 22 11:57:03 archlinux kernel: scsi host8: ahci
668 Feb 22 11:57:03 archlinux kernel: ata9: SATA max UDMA/133 abar m4096@0xfc708000 port 0xfc708100 irq 40
669 Feb 22 11:57:03 archlinux kernel: usbcore: registered new interface driver usbserial_generic
670 Feb 22 11:57:03 archlinux kernel: usbserial: USB Serial support registered for generic
671 Feb 22 11:57:03 archlinux kernel: rtc_cmos 00:01: RTC can wake from S4
672 Feb 22 11:57:03 archlinux kernel: rtc_cmos 00:01: registered as rtc0
673 Feb 22 11:57:03 archlinux kernel: rtc_cmos 00:01: setting system clock to 2023-02-22T16:57:00 UTC (1677085020)
674 Feb 22 11:57:03 archlinux kernel: rtc_cmos 00:01: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
675 Feb 22 11:57:03 archlinux kernel: ledtrig-cpu: registered to indicate activity on CPUs
676 Feb 22 11:57:03 archlinux kernel: vesafb: mode is 640x480x32, linelength=2560, pages=0
677 Feb 22 11:57:03 archlinux kernel: vesafb: scrolling: redraw
678 Feb 22 11:57:03 archlinux kernel: vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
679 Feb 22 11:57:03 archlinux kernel: vesafb: framebuffer at 0xe1000000, mapped to 0x0000000081f07dbb, using 1216k, total 1216k
680 Feb 22 11:57:03 archlinux kernel: fbcon: Deferring console take-over
681 Feb 22 11:57:03 archlinux kernel: fb0: VESA VGA frame buffer device
682 Feb 22 11:57:03 archlinux kernel: hid: raw HID events driver (C) Jiri Kosina
683 Feb 22 11:57:03 archlinux kernel: drop_monitor: Initializing network drop monitor service
684 Feb 22 11:57:03 archlinux kernel: Initializing XFRM netlink socket
685 Feb 22 11:57:03 archlinux kernel: NET: Registered PF_INET6 protocol family
686 Feb 22 11:57:03 archlinux kernel: Segment Routing with IPv6
687 Feb 22 11:57:03 archlinux kernel: RPL Segment Routing with IPv6
688 Feb 22 11:57:03 archlinux kernel: In-situ OAM (IOAM) with IPv6
689 Feb 22 11:57:03 archlinux kernel: NET: Registered PF_PACKET protocol family
690 Feb 22 11:57:03 archlinux kernel: microcode: microcode updated early to new patch_level=0x0800820d
691 Feb 22 11:57:03 archlinux kernel: microcode: CPU0: patch_level=0x0800820d
692 Feb 22 11:57:03 archlinux kernel: microcode: CPU1: patch_level=0x0800820d
693 Feb 22 11:57:03 archlinux kernel: microcode: CPU2: patch_level=0x0800820d
694 Feb 22 11:57:03 archlinux kernel: microcode: CPU3: patch_level=0x0800820d
695 Feb 22 11:57:03 archlinux kernel: microcode: CPU4: patch_level=0x0800820d
696 Feb 22 11:57:03 archlinux kernel: microcode: CPU5: patch_level=0x0800820d
697 Feb 22 11:57:03 archlinux kernel: microcode: CPU6: patch_level=0x0800820d
698 Feb 22 11:57:03 archlinux kernel: microcode: CPU7: patch_level=0x0800820d
699 Feb 22 11:57:03 archlinux kernel: microcode: CPU8: patch_level=0x0800820d
700 Feb 22 11:57:03 archlinux kernel: microcode: CPU9: patch_level=0x0800820d
701 Feb 22 11:57:03 archlinux kernel: microcode: CPU10: patch_level=0x0800820d
702 Feb 22 11:57:03 archlinux kernel: microcode: CPU11: patch_level=0x0800820d
703 Feb 22 11:57:03 archlinux kernel: microcode: CPU12: patch_level=0x0800820d
704 Feb 22 11:57:03 archlinux kernel: microcode: CPU13: patch_level=0x0800820d
705 Feb 22 11:57:03 archlinux kernel: microcode: CPU14: patch_level=0x0800820d
706 Feb 22 11:57:03 archlinux kernel: microcode: CPU15: patch_level=0x0800820d
707 Feb 22 11:57:03 archlinux kernel: microcode: Microcode Update Driver: v2.2.
708 Feb 22 11:57:03 archlinux kernel: IPI shorthand broadcast: enabled
709 Feb 22 11:57:03 archlinux kernel: sched_clock: Marking stable (560769605, 355767)->(584333415, -23208043)
710 Feb 22 11:57:03 archlinux kernel: registered taskstats version 1
711 Feb 22 11:57:03 archlinux kernel: Loading compiled-in X.509 certificates
712 Feb 22 11:57:03 archlinux kernel: Loaded X.509 cert 'Build time autogenerated kernel key: 3f85e1b84b8d1aa77c32de9c1f3fe41da6ce9978'
713 Feb 22 11:57:03 archlinux kernel: zswap: loaded using pool lz4/z3fold
714 Feb 22 11:57:03 archlinux kernel: Key type .fscrypt registered
715 Feb 22 11:57:03 archlinux kernel: Key type fscrypt-provisioning registered
716 Feb 22 11:57:03 archlinux kernel: PM: Magic number: 11:767:995
717 Feb 22 11:57:03 archlinux kernel: machinecheck machinecheck8: hash matches
718 Feb 22 11:57:03 archlinux kernel: acpi STK0004A:01: hash matches
719 Feb 22 11:57:03 archlinux kernel: memory memory38: hash matches
720 Feb 22 11:57:03 archlinux kernel: RAS: Correctable Errors collector initialized.
721 Feb 22 11:57:03 archlinux kernel: ata9: SATA link down (SStatus 0 SControl 300)
722 Feb 22 11:57:03 archlinux kernel: ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
723 Feb 22 11:57:03 archlinux kernel: ata1.00: ATA-9: TS128GSSD370S, P1225CE, max UDMA/133
724 Feb 22 11:57:03 archlinux kernel: ata1.00: 250069680 sectors, multi 1: LBA48 NCQ (depth 32), AA
725 Feb 22 11:57:03 archlinux kernel: ata1.00: Features: Dev-Sleep
726 Feb 22 11:57:03 archlinux kernel: ata1.00: configured for UDMA/133
727 Feb 22 11:57:03 archlinux kernel: scsi 0:0:0:0: Direct-Access ATA TS128GSSD370S 5CE PQ: 0 ANSI: 5
728 Feb 22 11:57:03 archlinux kernel: sd 0:0:0:0: [sda] 250069680 512-byte logical blocks: (128 GB/119 GiB)
729 Feb 22 11:57:03 archlinux kernel: sd 0:0:0:0: [sda] Write Protect is off
730 Feb 22 11:57:03 archlinux kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
731 Feb 22 11:57:03 archlinux kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
732 Feb 22 11:57:03 archlinux kernel: sd 0:0:0:0: [sda] Preferred minimum I/O size 512 bytes
733 Feb 22 11:57:03 archlinux kernel: sda: sda1 sda2
734 Feb 22 11:57:03 archlinux kernel: sd 0:0:0:0: [sda] Attached SCSI disk
735 Feb 22 11:57:03 archlinux kernel: tsc: Refined TSC clocksource calibration: 3205.751 MHz
736 Feb 22 11:57:03 archlinux kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2e3582e6b4d, max_idle_ns: 440795225998 ns
737 Feb 22 11:57:03 archlinux kernel: clocksource: Switched to clocksource tsc
738 Feb 22 11:57:03 archlinux kernel: ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
739 Feb 22 11:57:03 archlinux kernel: ata2.00: ATAPI: ASUS DRW-24B1ST a, 1.04, max UDMA/100
740 Feb 22 11:57:03 archlinux kernel: ata2.00: configured for UDMA/100
741 Feb 22 11:57:03 archlinux kernel: scsi 1:0:0:0: CD-ROM ASUS DRW-24B1ST a 1.04 PQ: 0 ANSI: 5
742 Feb 22 11:57:03 archlinux kernel: ata5: SATA link down (SStatus 0 SControl 300)
743 Feb 22 11:57:03 archlinux kernel: ata6: SATA link down (SStatus 0 SControl 300)
744 Feb 22 11:57:03 archlinux kernel: Freeing unused decrypted memory: 2036K
745 Feb 22 11:57:03 archlinux kernel: Freeing unused kernel image (initmem) memory: 2144K
746 Feb 22 11:57:03 archlinux kernel: Write protecting the kernel read-only data: 30720k
747 Feb 22 11:57:03 archlinux kernel: Freeing unused kernel image (text/rodata gap) memory: 2040K
748 Feb 22 11:57:03 archlinux kernel: Freeing unused kernel image (rodata/data gap) memory: 1212K
749 Feb 22 11:57:03 archlinux kernel: clocksource: timekeeping watchdog on CPU3: Marking clocksource 'tsc' as unstable because the skew is too large:
750 Feb 22 11:57:03 archlinux kernel: clocksource: 'hpet' wd_nsec: 507445010 wd_now: 1bf0377 wd_last: 15025de mask: ffffffff
751 Feb 22 11:57:03 archlinux kernel: clocksource: 'tsc' cs_nsec: 506534138 cs_now: ea70a31e0 cs_last: e4640a160 mask: ffffffffffffffff
752 Feb 22 11:57:03 archlinux kernel: clocksource: 'tsc' is current clocksource.
753 Feb 22 11:57:03 archlinux kernel: tsc: Marking TSC unstable due to clocksource watchdog
754 Feb 22 11:57:03 archlinux kernel: TSC found unstable after boot, most likely due to broken BIOS. Use 'tsc=unstable'.
755 Feb 22 11:57:03 archlinux kernel: sched_clock: Marking unstable (2185701804, 355740)<-(2209265636, -23208043)
756 Feb 22 11:57:03 archlinux kernel: clocksource: Checking clocksource tsc synchronization from CPU 15 to CPUs 0,4.
757 Feb 22 11:57:03 archlinux kernel: clocksource: Switched to clocksource hpet
758 Feb 22 11:57:03 archlinux kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
759 Feb 22 11:57:03 archlinux kernel: rodata_test: all tests were successful
760 Feb 22 11:57:03 archlinux kernel: Run /init as init process
761 Feb 22 11:57:03 archlinux kernel: with arguments:
762 Feb 22 11:57:03 archlinux kernel: /init
763 Feb 22 11:57:03 archlinux kernel: with environment:
764 Feb 22 11:57:03 archlinux kernel: HOME=/
765 Feb 22 11:57:03 archlinux kernel: TERM=linux
766 Feb 22 11:57:03 archlinux kernel: BOOT_IMAGE=/boot/vmlinuz-linux
767 Feb 22 11:57:03 archlinux kernel: fbcon: Taking over console
768 Feb 22 11:57:03 archlinux kernel: Console: switching to colour frame buffer device 80x30
769 Feb 22 11:57:03 archlinux kernel: xhci_hcd 0000:03:00.0: xHCI Host Controller
770 Feb 22 11:57:03 archlinux kernel: xhci_hcd 0000:03:00.0: new USB bus registered, assigned bus number 1
771 Feb 22 11:57:03 archlinux kernel: nvme nvme0: pci function 0000:01:00.0
772 Feb 22 11:57:03 archlinux kernel: nvme nvme0: 8/0/0 default/read/poll queues
773 Feb 22 11:57:03 archlinux kernel: nvme0n1: p1 p2
774 Feb 22 11:57:03 archlinux kernel: xhci_hcd 0000:03:00.0: hcc params 0x0200ef81 hci version 0x110 quirks 0x0000000000000410
775 Feb 22 11:57:03 archlinux kernel: xhci_hcd 0000:03:00.0: xHCI Host Controller
776 Feb 22 11:57:03 archlinux kernel: xhci_hcd 0000:03:00.0: new USB bus registered, assigned bus number 2
777 Feb 22 11:57:03 archlinux kernel: xhci_hcd 0000:03:00.0: Host supports USB 3.1 Enhanced SuperSpeed
778 Feb 22 11:57:03 archlinux kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.01
779 Feb 22 11:57:03 archlinux kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
780 Feb 22 11:57:03 archlinux kernel: usb usb1: Product: xHCI Host Controller
781 Feb 22 11:57:03 archlinux kernel: usb usb1: Manufacturer: Linux 6.1.12-arch1-1 xhci-hcd
782 Feb 22 11:57:03 archlinux kernel: usb usb1: SerialNumber: 0000:03:00.0
783 Feb 22 11:57:03 archlinux kernel: hub 1-0:1.0: USB hub found
784 Feb 22 11:57:03 archlinux kernel: hub 1-0:1.0: 10 ports detected
785 Feb 22 11:57:03 archlinux kernel: usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
786 Feb 22 11:57:03 archlinux kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.01
787 Feb 22 11:57:03 archlinux kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
788 Feb 22 11:57:03 archlinux kernel: usb usb2: Product: xHCI Host Controller
789 Feb 22 11:57:03 archlinux kernel: usb usb2: Manufacturer: Linux 6.1.12-arch1-1 xhci-hcd
790 Feb 22 11:57:03 archlinux kernel: usb usb2: SerialNumber: 0000:03:00.0
791 Feb 22 11:57:03 archlinux kernel: hub 2-0:1.0: USB hub found
792 Feb 22 11:57:03 archlinux kernel: hub 2-0:1.0: 4 ports detected
793 Feb 22 11:57:03 archlinux kernel: xhci_hcd 0000:27:00.3: xHCI Host Controller
794 Feb 22 11:57:03 archlinux kernel: xhci_hcd 0000:27:00.3: new USB bus registered, assigned bus number 3
795 Feb 22 11:57:03 archlinux kernel: xhci_hcd 0000:27:00.3: hcc params 0x0270f665 hci version 0x100 quirks 0x0000000000000410
796 Feb 22 11:57:03 archlinux kernel: xhci_hcd 0000:27:00.3: xHCI Host Controller
797 Feb 22 11:57:03 archlinux kernel: xhci_hcd 0000:27:00.3: new USB bus registered, assigned bus number 4
798 Feb 22 11:57:03 archlinux kernel: xhci_hcd 0000:27:00.3: Host supports USB 3.0 SuperSpeed
799 Feb 22 11:57:03 archlinux kernel: usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.01
800 Feb 22 11:57:03 archlinux kernel: usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
801 Feb 22 11:57:03 archlinux kernel: usb usb3: Product: xHCI Host Controller
802 Feb 22 11:57:03 archlinux kernel: usb usb3: Manufacturer: Linux 6.1.12-arch1-1 xhci-hcd
803 Feb 22 11:57:03 archlinux kernel: usb usb3: SerialNumber: 0000:27:00.3
804 Feb 22 11:57:03 archlinux kernel: hub 3-0:1.0: USB hub found
805 Feb 22 11:57:03 archlinux kernel: hub 3-0:1.0: 4 ports detected
806 Feb 22 11:57:03 archlinux kernel: usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
807 Feb 22 11:57:03 archlinux kernel: usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.01
808 Feb 22 11:57:03 archlinux kernel: usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
809 Feb 22 11:57:03 archlinux kernel: usb usb4: Product: xHCI Host Controller
810 Feb 22 11:57:03 archlinux kernel: usb usb4: Manufacturer: Linux 6.1.12-arch1-1 xhci-hcd
811 Feb 22 11:57:03 archlinux kernel: usb usb4: SerialNumber: 0000:27:00.3
812 Feb 22 11:57:03 archlinux kernel: hub 4-0:1.0: USB hub found
813 Feb 22 11:57:03 archlinux kernel: hub 4-0:1.0: 4 ports detected
814 Feb 22 11:57:03 archlinux kernel: sr 1:0:0:0: [sr0] scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
815 Feb 22 11:57:03 archlinux kernel: cdrom: Uniform CD-ROM driver Revision: 3.20
816 Feb 22 11:57:03 archlinux kernel: sr 1:0:0:0: Attached scsi CD-ROM sr0
817 Feb 22 11:57:03 archlinux kernel: usb 1-1: new high-speed USB device number 2 using xhci_hcd
818 Feb 22 11:57:03 archlinux kernel: usb 1-1: New USB device found, idVendor=045b, idProduct=0209, bcdDevice= 1.00
819 Feb 22 11:57:03 archlinux kernel: usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
820 Feb 22 11:57:03 archlinux kernel: hub 1-1:1.0: USB hub found
821 Feb 22 11:57:03 archlinux kernel: hub 1-1:1.0: 4 ports detected
822 Feb 22 11:57:03 archlinux kernel: PM: Image not found (code -22)
823 Feb 22 11:57:03 archlinux kernel: usb 2-1: new SuperSpeed USB device number 2 using xhci_hcd
824 Feb 22 11:57:03 archlinux kernel: usb 2-1: New USB device found, idVendor=045b, idProduct=0210, bcdDevice= 1.00
825 Feb 22 11:57:03 archlinux kernel: usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
826 Feb 22 11:57:03 archlinux kernel: hub 2-1:1.0: USB hub found
827 Feb 22 11:57:03 archlinux kernel: hub 2-1:1.0: 4 ports detected
828 Feb 22 11:57:03 archlinux kernel: EXT4-fs (nvme0n1p1): mounted filesystem with ordered data mode. Quota mode: none.
829 Feb 22 11:57:03 archlinux kernel: usb 1-9: new full-speed USB device number 3 using xhci_hcd
830 Feb 22 11:57:03 archlinux systemd[1]: systemd 253-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 +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +XKBCOMMON +UTMP -SYSVINIT default-hierarchy=unified)
831 Feb 22 11:57:03 archlinux systemd[1]: Detected architecture x86-64.
832 Feb 22 11:57:03 archlinux kernel: usb 1-9: New USB device found, idVendor=046d, idProduct=c534, bcdDevice=29.01
833 Feb 22 11:57:03 archlinux kernel: usb 1-9: New USB device strings: Mfr=1, Product=2, SerialNumber=0
834 Feb 22 11:57:03 archlinux kernel: usb 1-9: Product: USB Receiver
835 Feb 22 11:57:03 archlinux kernel: usb 1-9: Manufacturer: Logitech
836 Feb 22 11:57:03 archlinux systemd[1]: bpf-lsm: LSM BPF program attached
837 Feb 22 11:57:03 archlinux (sd-execu[347]: /usr/local/lib/systemd/system-generators/generator-test failed with exit status 1.
838 Feb 22 11:57:03 archlinux kernel: usb 1-1.4: new full-speed USB device number 4 using xhci_hcd
839 Feb 22 11:57:03 archlinux systemd[1]: Queued start job for default target Graphical Interface.
840 Feb 22 11:57:03 archlinux systemd[1]: Created slice Virtual Machine and Container Slice.
841 Feb 22 11:57:03 archlinux systemd[1]: Created slice Slice /system/getty.
842 Feb 22 11:57:03 archlinux systemd[1]: Created slice Slice /system/modprobe.
843 Feb 22 11:57:03 archlinux systemd[1]: Created slice Slice /system/systemd-fsck.
844 Feb 22 11:57:03 archlinux systemd[1]: Created slice User and Session Slice.
845 Feb 22 11:57:03 archlinux systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
846 Feb 22 11:57:03 archlinux systemd[1]: Started Forward Password Requests to Wall Directory Watch.
847 Feb 22 11:57:03 archlinux systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
848 Feb 22 11:57:03 archlinux systemd[1]: Reached target Local Encrypted Volumes.
849 Feb 22 11:57:03 archlinux systemd[1]: Reached target Login Prompts.
850 Feb 22 11:57:03 archlinux systemd[1]: Reached target Local Integrity Protected Volumes.
851 Feb 22 11:57:03 archlinux systemd[1]: Reached target Remote Encrypted Volumes.
852 Feb 22 11:57:03 archlinux systemd[1]: Reached target Remote File Systems.
853 Feb 22 11:57:03 archlinux systemd[1]: Reached target Slice Units.
854 Feb 22 11:57:03 archlinux systemd[1]: Reached target Local Verity Protected Volumes.
855 Feb 22 11:57:03 archlinux systemd[1]: Listening on Device-mapper event daemon FIFOs.
856 Feb 22 11:57:03 archlinux systemd[1]: Listening on LVM2 poll daemon socket.
857 Feb 22 11:57:03 archlinux systemd[1]: Listening on Process Core Dump Socket.
858 Feb 22 11:57:03 archlinux systemd[1]: Listening on Journal Socket (/dev/log).
859 Feb 22 11:57:03 archlinux systemd[1]: Listening on Journal Socket.
860 Feb 22 11:57:03 archlinux systemd[1]: Listening on Network Service Netlink Socket.
861 Feb 22 11:57:03 archlinux systemd[1]: Listening on udev Control Socket.
862 Feb 22 11:57:03 archlinux systemd[1]: Listening on udev Kernel Socket.
863 Feb 22 11:57:03 archlinux systemd[1]: Mounting Huge Pages File System...
864 Feb 22 11:57:03 archlinux systemd[1]: Mounting POSIX Message Queue File System...
865 Feb 22 11:57:03 archlinux systemd[1]: Mounting Kernel Debug File System...
866 Feb 22 11:57:03 archlinux systemd[1]: Mounting Kernel Trace File System...
867 Feb 22 11:57:03 archlinux systemd[1]: Starting Create List of Static Device Nodes...
868 Feb 22 11:57:03 archlinux systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
869 Feb 22 11:57:03 archlinux systemd[1]: Starting Load Kernel Module configfs...
870 Feb 22 11:57:03 archlinux systemd[1]: Starting Load Kernel Module dm_mod...
871 Feb 22 11:57:03 archlinux systemd[1]: Starting Load Kernel Module drm...
872 Feb 22 11:57:03 archlinux systemd[1]: Starting Load Kernel Module fuse...
873 Feb 22 11:57:03 archlinux systemd[1]: Starting Load Kernel Module loop...
874 Feb 22 11:57:03 archlinux systemd[1]: File System Check on Root Device was skipped because of an unmet condition check (ConditionPathIsReadWrite=!/).
875 Feb 22 11:57:03 archlinux systemd[1]: Starting Journal Service...
876 Feb 22 11:57:03 archlinux systemd[1]: Starting Load Kernel Modules...
877 Feb 22 11:57:03 archlinux systemd[1]: TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
878 Feb 22 11:57:03 archlinux systemd[1]: Starting Remount Root and Kernel File Systems...
879 Feb 22 11:57:03 archlinux systemd[1]: Starting Coldplug All udev Devices...
880 Feb 22 11:57:03 archlinux systemd[1]: Mounted Huge Pages File System.
881 Feb 22 11:57:03 archlinux systemd[1]: Mounted POSIX Message Queue File System.
882 Feb 22 11:57:03 archlinux systemd[1]: Mounted Kernel Debug File System.
883 Feb 22 11:57:03 archlinux systemd[1]: Mounted Kernel Trace File System.
884 Feb 22 11:57:03 archlinux kernel: EXT4-fs (nvme0n1p1): re-mounted. Quota mode: none.
885 Feb 22 11:57:03 archlinux kernel: loop: module loaded
886 Feb 22 11:57:03 archlinux systemd-journald[372]: Collecting audit messages is disabled.
887 Feb 22 11:57:03 archlinux kernel: device-mapper: uevent: version 1.0.3
888 Feb 22 11:57:03 archlinux kernel: device-mapper: ioctl: 4.47.0-ioctl (2022-07-28) initialised: dm-devel@redhat.com
889 Feb 22 11:57:03 archlinux kernel: fuse: init (API version 7.37)
890 Feb 22 11:57:03 archlinux systemd[1]: Finished Create List of Static Device Nodes.
891 Feb 22 11:57:03 archlinux systemd[1]: modprobe@configfs.service: Deactivated successfully.
892 Feb 22 11:57:03 archlinux systemd-journald[372]: Journal started
893 Feb 22 11:57:03 archlinux systemd-journald[372]: Runtime Journal (/run/log/journal/7fc2d5fd7f2843f8be84e35d5bc48f80) is 8.0M, max 1.5G, 1.5G free.
894 Feb 22 11:57:03 archlinux systemd-modules-load[373]: Inserted module 'snd_seq_oss'
895 Feb 22 11:57:03 archlinux systemd-modules-load[373]: Inserted module 'snd_pcm_oss'
896 Feb 22 11:57:03 archlinux systemd-modules-load[373]: Inserted module 'softdog'
897 Feb 22 11:57:03 archlinux kernel: softdog: initialized. soft_noboot=0 soft_margin=60 sec soft_panic=0 (nowayout=0)
898 Feb 22 11:57:03 archlinux kernel: softdog: soft_reboot_cmd=<not set> soft_active_on_boot=0
899 Feb 22 11:57:03 archlinux systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
900 Feb 22 11:57:03 archlinux systemd[1]: Finished Load Kernel Module configfs.
901 Feb 22 11:57:03 archlinux systemd[1]: Started Journal Service.
902 Feb 22 11:57:03 archlinux systemd[1]: Finished Load Kernel Module dm_mod.
903 Feb 22 11:57:03 archlinux systemd[1]: Finished Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
904 Feb 22 11:57:03 archlinux systemd[1]: modprobe@drm.service: Deactivated successfully.
905 Feb 22 11:57:03 archlinux kernel: ccp 0000:27:00.2: ccp enabled
906 Feb 22 11:57:03 archlinux kernel: ccp 0000:27:00.2: psp enabled
907 Feb 22 11:57:03 archlinux kernel: SVM: TSC scaling supported
908 Feb 22 11:57:03 archlinux kernel: kvm: Nested Virtualization enabled
909 Feb 22 11:57:03 archlinux kernel: SVM: kvm: Nested Paging enabled
910 Feb 22 11:57:03 archlinux kernel: SEV supported: 16 ASIDs
911 Feb 22 11:57:03 archlinux kernel: SEV-ES supported: 4294967295 ASIDs
912 Feb 22 11:57:03 archlinux kernel: SVM: Virtual VMLOAD VMSAVE supported
913 Feb 22 11:57:03 archlinux kernel: SVM: Virtual GIF supported
914 Feb 22 11:57:03 archlinux kernel: SVM: LBR virtualization supported
915 Feb 22 11:57:03 archlinux systemd-modules-load[373]: Inserted module 'kvm_amd'
916 Feb 22 11:57:03 archlinux systemd-modules-load[373]: Inserted module 'nbd'
917 Feb 22 11:57:03 archlinux systemd-modules-load[373]: Inserted module 'crypto_user'
918 Feb 22 11:57:03 archlinux systemd[1]: Finished Load Kernel Module drm.
919 Feb 22 11:57:03 archlinux systemd[1]: modprobe@fuse.service: Deactivated successfully.
920 Feb 22 11:57:03 archlinux systemd-modules-load[373]: Inserted module 'sg'
921 Feb 22 11:57:03 archlinux kernel: sd 0:0:0:0: Attached scsi generic sg0 type 0
922 Feb 22 11:57:03 archlinux kernel: sr 1:0:0:0: Attached scsi generic sg1 type 5
923 Feb 22 11:57:03 archlinux systemd-modules-load[373]: Inserted module 'dm_multipath'
924 Feb 22 11:57:03 archlinux systemd[1]: Finished Load Kernel Module fuse.
925 Feb 22 11:57:03 archlinux systemd[1]: modprobe@loop.service: Deactivated successfully.
926 Feb 22 11:57:03 archlinux kernel: usb 1-1.4: New USB device found, idVendor=17f6, idProduct=0862, bcdDevice= 7.48
927 Feb 22 11:57:03 archlinux kernel: usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
928 Feb 22 11:57:03 archlinux kernel: usb 1-1.4: Product: Unicomp R7_2_10x_Kbrd_v7_48
929 Feb 22 11:57:03 archlinux kernel: usb 1-1.4: Manufacturer: Unicomp Inc
930 Feb 22 11:57:04 archlinux systemd[1]: Finished Load Kernel Module loop.
931 Feb 22 11:57:04 archlinux systemd[1]: Finished Remount Root and Kernel File Systems.
932 Feb 22 11:57:04 archlinux systemd[1]: Finished Coldplug All udev Devices.
933 Feb 22 11:57:04 archlinux systemd[1]: Mounting FUSE Control File System...
934 Feb 22 11:57:04 archlinux systemd[1]: Mounting Kernel Configuration File System...
935 Feb 22 11:57:04 archlinux systemd[1]: First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
936 Feb 22 11:57:04 archlinux systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
937 Feb 22 11:57:04 archlinux systemd[1]: Starting Flush Journal to Persistent Storage...
938 Feb 22 11:57:04 archlinux systemd[1]: Starting Load/Save OS Random Seed...
939 Feb 22 11:57:04 archlinux systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
940 Feb 22 11:57:04 archlinux systemd[1]: Create System Users was skipped because no trigger condition checks were met.
941 Feb 22 11:57:04 archlinux systemd[1]: Starting Create Static Device Nodes in /dev...
942 Feb 22 11:57:04 archlinux systemd[1]: Mounted FUSE Control File System.
943 Feb 22 11:57:04 archlinux systemd[1]: Mounted Kernel Configuration File System.
944 Feb 22 11:57:04 archlinux systemd-journald[372]: Time spent on flushing to /var/log/journal/7fc2d5fd7f2843f8be84e35d5bc48f80 is 72.905ms for 943 entries.
945 Feb 22 11:57:04 archlinux systemd-journald[372]: System Journal (/var/log/journal/7fc2d5fd7f2843f8be84e35d5bc48f80) is 524.3M, max 4.0G, 3.4G free.
946 Feb 22 11:57:04 archlinux systemd-journald[372]: Received client request to flush runtime journal.
947 Feb 22 11:57:04 archlinux systemd-journald[372]: /var/log/journal/7fc2d5fd7f2843f8be84e35d5bc48f80/system.journal: Montonic clock jumped backwards relative to last journal entry, rotating.
948 Feb 22 11:57:04 archlinux systemd-journald[372]: Rotating system journal.
949 Feb 22 11:57:04 archlinux systemd[1]: Finished Load/Save OS Random Seed.
950 Feb 22 11:57:04 archlinux systemd[1]: First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes).
951 Feb 22 11:57:04 archlinux systemd[1]: Finished Create Static Device Nodes in /dev.
952 Feb 22 11:57:04 archlinux kernel: nvidia: loading out-of-tree module taints kernel.
953 Feb 22 11:57:04 archlinux kernel: nvidia: module license 'NVIDIA' taints kernel.
954 Feb 22 11:57:04 archlinux kernel: Disabling lock debugging due to kernel taint
955 Feb 22 11:57:04 archlinux kernel: nvidia: module verification failed: signature and/or required key missing - tainting kernel
956 Feb 22 11:57:04 archlinux systemd[1]: Finished Flush Journal to Persistent Storage.
957 Feb 22 11:57:04 archlinux systemd[1]: Reached target Preparation for Local File Systems.
958 Feb 22 11:57:04 archlinux systemd[1]: Virtual Machine and Container Storage (Compatibility) was skipped because of an unmet condition check (ConditionPathExists=/var/lib/machines.raw).
959 Feb 22 11:57:04 archlinux systemd[1]: Starting Rule-based Manager for Device Events and Files...
960 Feb 22 11:57:04 archlinux systemd-udevd[412]: Using default interface naming scheme 'v253'.
961 Feb 22 11:57:04 archlinux systemd[1]: Started Rule-based Manager for Device Events and Files.
962 Feb 22 11:57:04 archlinux systemd[1]: Found device INTEL SSDPEKNW010T8 2.
963 Feb 22 11:57:04 archlinux mtp-probe[465]: checking bus 1, device 3: "/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-9"
964 Feb 22 11:57:04 archlinux mtp-probe[465]: bus: 1, device: 3 was not an MTP device
965 Feb 22 11:57:04 archlinux systemd[1]: Starting File System Check on /dev/disk/by-uuid/b4e48d90-fac2-4e05-8811-f061edb19cf6...
966 Feb 22 11:57:04 archlinux systemd[1]: Found device TS128GSSD370S 2.
967 Feb 22 11:57:04 archlinux systemd[1]: Found device TS128GSSD370S 1.
968 Feb 22 11:57:04 archlinux systemd[1]: Activating swap /dev/disk/by-uuid/4af59151-e37d-4718-9eda-3fee043be631...
969 Feb 22 11:57:04 archlinux systemd[1]: Starting File System Check on /dev/disk/by-uuid/a61cf9ca-3147-4f11-b103-a037a0f0279d...
970 Feb 22 11:57:04 archlinux kernel: Adding 39845884k swap on /dev/sda1. Priority:-2 extents:1 across:39845884k SSFS
971 Feb 22 11:57:04 archlinux systemd[1]: Activated swap /dev/disk/by-uuid/4af59151-e37d-4718-9eda-3fee043be631.
972 Feb 22 11:57:04 archlinux systemd[1]: Reached target Swaps.
973 Feb 22 11:57:04 archlinux systemd[1]: Mounting Temporary Directory /tmp...
974 Feb 22 11:57:04 archlinux systemd[1]: Mounted Temporary Directory /tmp.
975 Feb 22 11:57:04 archlinux systemd-fsck[469]: /dev/nvme0n1p2: clean, 247551/49405952 files, 16643665/197622102 blocks
976 Feb 22 11:57:04 archlinux systemd-fsck[472]: /dev/sda2: clean, 196359/5324800 files, 14623055/21296982 blocks
977 Feb 22 11:57:04 archlinux systemd[1]: Finished File System Check on /dev/disk/by-uuid/b4e48d90-fac2-4e05-8811-f061edb19cf6.
978 Feb 22 11:57:04 archlinux systemd[1]: Finished File System Check on /dev/disk/by-uuid/a61cf9ca-3147-4f11-b103-a037a0f0279d.
979 Feb 22 11:57:04 archlinux systemd[1]: Mounting /aux...
980 Feb 22 11:57:04 archlinux systemd[1]: Mounting /home...
981 Feb 22 11:57:04 archlinux kernel: EXT4-fs (nvme0n1p2): mounted filesystem with ordered data mode. Quota mode: none.
982 Feb 22 11:57:04 archlinux systemd[1]: Mounted /home.
983 Feb 22 11:57:04 archlinux systemd[1]: Mounted /aux.
984 Feb 22 11:57:04 archlinux systemd[1]: Reached target Local File Systems.
985 Feb 22 11:57:04 archlinux systemd[1]: Rebuild Dynamic Linker Cache was skipped because no trigger condition checks were met.
986 Feb 22 11:57:04 archlinux systemd[1]: Set Up Additional Binary Formats was skipped because no trigger condition checks were met.
987 Feb 22 11:57:04 archlinux systemd[1]: Update Boot Loader Random Seed was skipped because no trigger condition checks were met.
988 Feb 22 11:57:04 archlinux systemd[1]: Commit a transient machine-id on disk was skipped because of an unmet condition check (ConditionPathIsMountPoint=/etc/machine-id).
989 Feb 22 11:57:04 archlinux systemd[1]: Starting Create Volatile Files and Directories...
990 Feb 22 11:57:04 archlinux kernel: EXT4-fs (sda2): mounted filesystem with ordered data mode. Quota mode: none.
991 Feb 22 11:57:04 archlinux kernel: acpi_cpufreq: overriding BIOS provided _PSD data
992 Feb 22 11:57:04 archlinux kernel: nvidia-nvlink: Nvlink Core is being initialized, major device number 236
993 Feb 22 11:57:04 archlinux kernel:
994 Feb 22 11:57:04 archlinux kernel: nvidia 0000:26:00.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=none:owns=io+mem
995 Feb 22 11:57:04 archlinux kernel: piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
996 Feb 22 11:57:04 archlinux kernel: piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
997 Feb 22 11:57:04 archlinux kernel: piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
998 Feb 22 11:57:04 archlinux kernel: input: PC Speaker as /devices/platform/pcspkr/input/input2
999 Feb 22 11:57:04 archlinux kernel: RAPL PMU: API unit is 2^-32 Joules, 1 fixed counters, 163840 ms ovfl timer
1000 Feb 22 11:57:04 archlinux kernel: RAPL PMU: hw unit of domain package 2^-16 Joules
1001 Feb 22 11:57:04 archlinux kernel: cryptd: max_cpu_qlen set to 1000
1002 Feb 22 11:57:04 archlinux kernel: sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
1003 Feb 22 11:57:04 archlinux kernel: sp5100-tco sp5100-tco: Using 0xfeb00000 for watchdog MMIO address
1004 Feb 22 11:57:04 archlinux kernel: sp5100-tco sp5100-tco: initialized. heartbeat=60 sec (nowayout=0)
1005 Feb 22 11:57:04 archlinux kernel: input: Logitech USB Receiver as /devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-9/1-9:1.0/0003:046D:C534.0001/input/input3
1006 Feb 22 11:57:04 archlinux kernel: parport_pc 00:03: reported by Plug and Play ACPI
1007 Feb 22 11:57:04 archlinux kernel: parport0: PC-style at 0x378, irq 5 [PCSPP]
1008 Feb 22 11:57:04 archlinux kernel: AVX2 version of gcm_enc/dec engaged.
1009 Feb 22 11:57:04 archlinux kernel: AES CTR mode by8 optimization enabled
1010 Feb 22 11:57:04 archlinux systemd[1]: Finished Create Volatile Files and Directories.
1011 Feb 22 11:57:04 archlinux systemd[1]: Rebuild Journal Catalog was skipped because of an unmet condition check (ConditionNeedsUpdate=/var).
1012 Feb 22 11:57:04 archlinux mtp-probe[518]: checking bus 1, device 4: "/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-1/1-1.4"
1013 Feb 22 11:57:04 archlinux kernel: hid-generic 0003:046D:C534.0001: input,hidraw0: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:03:00.0-9/input0
1014 Feb 22 11:57:04 archlinux kernel: input: Logitech USB Receiver Mouse as /devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-9/1-9:1.1/0003:046D:C534.0002/input/input4
1015 Feb 22 11:57:04 archlinux kernel: input: Logitech USB Receiver Consumer Control as /devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-9/1-9:1.1/0003:046D:C534.0002/input/input5
1016 Feb 22 11:57:04 archlinux systemd[1]: Starting Network Name Resolution...
1017 Feb 22 11:57:04 archlinux mtp-probe[518]: bus: 1, device: 4 was not an MTP device
1018 Feb 22 11:57:04 archlinux systemd[1]: Starting Network Time Synchronization...
1019 Feb 22 11:57:04 archlinux systemd[1]: Update is Completed was skipped because no trigger condition checks were met.
1020 Feb 22 11:57:04 archlinux systemd[1]: Starting Record System Boot/Shutdown in UTMP...
1021 Feb 22 11:57:04 archlinux kernel: NVRM: loading NVIDIA UNIX x86_64 Kernel Module 525.89.02 Wed Feb 1 23:23:25 UTC 2023
1022 Feb 22 11:57:04 archlinux (udev-worker)[423]: nvidia: Process '/usr/bin/bash -c '/usr/bin/mknod -Z -m 666 /dev/nvidiactl c $(grep nvidia-frontend /proc/devices | cut -d \ -f 1) 255'' failed with exit code 1.
1023 Feb 22 11:57:04 archlinux kernel: ppdev: user-space parallel port driver
1024 Feb 22 11:57:04 archlinux kernel: r8169 0000:22:00.0 eth0: RTL8168h/8111h, 00:d8:61:a8:94:78, XID 541, IRQ 72
1025 Feb 22 11:57:04 archlinux kernel: r8169 0000:22:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
1026 Feb 22 11:57:04 archlinux kernel: r8169 0000:22:00.0 mobo0: renamed from eth0
1027 Feb 22 11:57:04 archlinux kernel: snd_hda_intel 0000:26:00.1: Disabling MSI
1028 Feb 22 11:57:04 archlinux kernel: snd_hda_intel 0000:26:00.1: Handle vga_switcheroo audio client
1029 Feb 22 11:57:04 archlinux kernel: input: Logitech USB Receiver System Control as /devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-9/1-9:1.1/0003:046D:C534.0002/input/input6
1030 Feb 22 11:57:04 archlinux kernel: hid-generic 0003:046D:C534.0002: input,hiddev96,hidraw1: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:03:00.0-9/input1
1031 Feb 22 11:57:04 archlinux kernel: nvidia_uvm: module uses symbols nvUvmInterfaceDisableAccessCntr from proprietary module nvidia, inheriting taint.
1032 Feb 22 11:57:04 archlinux kernel: MCE: In-kernel MCE decoding enabled.
1033 Feb 22 11:57:04 archlinux kernel: input: Unicomp Inc Unicomp R7_2_10x_Kbrd_v7_48 as /devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-1/1-1.4/1-1.4:1.0/0003:17F6:0862.0003/input/input9
1034 Feb 22 11:57:05 archlinux kernel: hid-generic 0003:17F6:0862.0003: input,hidraw2: USB HID v1.11 Keyboard [Unicomp Inc Unicomp R7_2_10x_Kbrd_v7_48] on usb-0000:03:00.0-1.4/input0
1035 Feb 22 11:57:05 archlinux kernel: usbcore: registered new interface driver usbhid
1036 Feb 22 11:57:05 archlinux kernel: usbhid: USB HID core driver
1037 Feb 22 11:57:05 archlinux (udev-worker)[423]: nvidia: Process '/usr/bin/bash -c 'for i in $(cat /proc/driver/nvidia/gpus/*/information | grep Minor | cut -d \ -f 4); do /usr/bin/mknod -Z -m 666 /dev/nvidia${i} c $(grep nvidia-frontend /proc/devices | cut -d \ -f 1) ${i}; done'' failed with exit code 1.
1038 Feb 22 11:57:05 archlinux kernel: input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.1/0000:26:00.1/sound/card0/input10
1039 Feb 22 11:57:05 archlinux kernel: input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.1/0000:26:00.1/sound/card0/input11
1040 Feb 22 11:57:05 archlinux kernel: input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:03.1/0000:26:00.1/sound/card0/input12
1041 Feb 22 11:57:05 archlinux kernel: input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:03.1/0000:26:00.1/sound/card0/input13
1042 Feb 22 11:57:05 archlinux mtp-probe[560]: checking bus 1, device 4: "/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-1/1-1.4"
1043 Feb 22 11:57:05 archlinux mtp-probe[560]: bus: 1, device: 4 was not an MTP device
1044 Feb 22 11:57:05 archlinux systemd-modules-load[373]: Inserted module 'nvidia_uvm'
1045 Feb 22 11:57:05 archlinux kernel: nvidia-uvm: Loaded the UVM driver, major device number 234.
1046 Feb 22 11:57:05 archlinux systemd-modules-load[373]: Inserted module 'usbip_core'
1047 Feb 22 11:57:05 archlinux kernel: snd_hda_codec_realtek hdaudioC1D0: autoconfig for ALC892: line_outs=4 (0x14/0x15/0x16/0x17/0x0) type:line
1048 Feb 22 11:57:05 archlinux kernel: snd_hda_codec_realtek hdaudioC1D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
1049 Feb 22 11:57:05 archlinux kernel: snd_hda_codec_realtek hdaudioC1D0: hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
1050 Feb 22 11:57:05 archlinux kernel: snd_hda_codec_realtek hdaudioC1D0: mono: mono_out=0x0
1051 Feb 22 11:57:05 archlinux kernel: snd_hda_codec_realtek hdaudioC1D0: inputs:
1052 Feb 22 11:57:05 archlinux kernel: snd_hda_codec_realtek hdaudioC1D0: Front Mic=0x19
1053 Feb 22 11:57:05 archlinux kernel: snd_hda_codec_realtek hdaudioC1D0: Rear Mic=0x18
1054 Feb 22 11:57:05 archlinux kernel: snd_hda_codec_realtek hdaudioC1D0: Line=0x1a
1055 Feb 22 11:57:05 archlinux systemd-modules-load[373]: Inserted module 'usbip_host'
1056 Feb 22 11:57:05 archlinux kernel: usbcore: registered new device driver usbip-host
1057 Feb 22 11:57:05 archlinux kernel: input: HD-Audio Generic Front Mic as /devices/pci0000:00/0000:00:08.1/0000:28:00.3/sound/card1/input14
1058 Feb 22 11:57:05 archlinux kernel: intel_rapl_common: Found RAPL domain package
1059 Feb 22 11:57:05 archlinux kernel: intel_rapl_common: Found RAPL domain core
1060 Feb 22 11:57:05 archlinux systemd-resolved[508]: Positive Trust Anchors:
1061 Feb 22 11:57:05 archlinux systemd-resolved[508]: . IN DS 20326 8 2 e06d44b80b8f1d39a95c0b0d7c65d08458e880409bbc683457104237c7f8ec8d
1062 Feb 22 11:57:05 archlinux systemd-resolved[508]: Negative trust anchors: home.arpa 10.in-addr.arpa 16.172.in-addr.arpa 17.172.in-addr.arpa 18.172.in-addr.arpa 19.172.in-addr.arpa 20.172.in-addr.arpa 21.172.in-addr.arpa 22.172.in-addr.arpa 23.172.in-addr.arpa 24.172.in-addr.arpa 25.172.in-addr.arpa 26.172.in-addr.arpa 27.172.in-addr.arpa 28.172.in-addr.arpa 29.172.in-addr.arpa 30.172.in-addr.arpa 31.172.in-addr.arpa 168.192.in-addr.arpa d.f.ip6.arpa corp home internal intranet lan local private test
1063 Feb 22 11:57:05 archlinux systemd[1]: Finished Record System Boot/Shutdown in UTMP.
1064 Feb 22 11:57:05 archlinux systemd[1]: Started Network Time Synchronization.
1065 Feb 22 11:57:05 archlinux systemd-resolved[508]: Using system hostname 'archlinux'.
1066 Feb 22 11:57:05 archlinux systemd[1]: Finished Load Kernel Modules.
1067 Feb 22 11:57:05 archlinux systemd[1]: Started Network Name Resolution.
1068 Feb 22 11:57:05 archlinux systemd[1]: Reached target Host and Network Name Lookups.
1069 Feb 22 11:57:05 archlinux systemd[1]: Reached target System Time Set.
1070 Feb 22 11:57:05 archlinux systemd[1]: Rebuild Dynamic Linker Cache was skipped because no trigger condition checks were met.
1071 Feb 22 11:57:05 archlinux systemd[1]: Starting Load Kernel Module dm_mod...
1072 Feb 22 11:57:05 archlinux systemd[1]: Starting Load Kernel Module loop...
1073 Feb 22 11:57:05 archlinux systemd[1]: Set Up Additional Binary Formats was skipped because no trigger condition checks were met.
1074 Feb 22 11:57:05 archlinux systemd[1]: Update Boot Loader Random Seed was skipped because no trigger condition checks were met.
1075 Feb 22 11:57:05 archlinux systemd[1]: First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
1076 Feb 22 11:57:05 archlinux systemd[1]: First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes).
1077 Feb 22 11:57:05 archlinux systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
1078 Feb 22 11:57:05 archlinux systemd[1]: Rebuild Journal Catalog was skipped because of an unmet condition check (ConditionNeedsUpdate=/var).
1079 Feb 22 11:57:05 archlinux systemd[1]: Commit a transient machine-id on disk was skipped because of an unmet condition check (ConditionPathIsMountPoint=/etc/machine-id).
1080 Feb 22 11:57:05 archlinux systemd[1]: TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
1081 Feb 22 11:57:05 archlinux systemd[1]: Starting Apply Kernel Variables...
1082 Feb 22 11:57:05 archlinux systemd[1]: Create System Users was skipped because no trigger condition checks were met.
1083 Feb 22 11:57:05 archlinux systemd[1]: Update is Completed was skipped because no trigger condition checks were met.
1084 Feb 22 11:57:05 archlinux systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
1085 Feb 22 11:57:05 archlinux kernel: nvidia-modeset: Loading NVIDIA Kernel Mode Setting Driver for UNIX platforms 525.89.02 Wed Feb 1 23:09:40 UTC 2023
1086 Feb 22 11:57:05 archlinux kernel: [drm] [nvidia-drm] [GPU ID 0x00002600] Loading driver
1087 Feb 22 11:57:05 archlinux kernel: [drm] Initialized nvidia-drm 0.0.0 20160202 for 0000:26:00.0 on minor 0
1088 Feb 22 11:57:05 archlinux systemd[1]: Finished Load Kernel Module dm_mod.
1089 Feb 22 11:57:05 archlinux systemd[1]: modprobe@loop.service: Deactivated successfully.
1090 Feb 22 11:57:05 archlinux systemd[1]: Finished Load Kernel Module loop.
1091 Feb 22 11:57:05 archlinux systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
1092 Feb 22 11:57:05 archlinux kernel: input: HD-Audio Generic Rear Mic as /devices/pci0000:00/0000:00:08.1/0000:28:00.3/sound/card1/input15
1093 Feb 22 11:57:05 archlinux kernel: input: HD-Audio Generic Line as /devices/pci0000:00/0000:00:08.1/0000:28:00.3/sound/card1/input16
1094 Feb 22 11:57:05 archlinux kernel: input: HD-Audio Generic Line Out Front as /devices/pci0000:00/0000:00:08.1/0000:28:00.3/sound/card1/input17
1095 Feb 22 11:57:05 archlinux kernel: input: HD-Audio Generic Line Out Surround as /devices/pci0000:00/0000:00:08.1/0000:28:00.3/sound/card1/input18
1096 Feb 22 11:57:05 archlinux kernel: input: HD-Audio Generic Line Out CLFE as /devices/pci0000:00/0000:00:08.1/0000:28:00.3/sound/card1/input19
1097 Feb 22 11:57:05 archlinux kernel: input: HD-Audio Generic Line Out Side as /devices/pci0000:00/0000:00:08.1/0000:28:00.3/sound/card1/input20
1098 Feb 22 11:57:05 archlinux kernel: input: HD-Audio Generic Front Headphone as /devices/pci0000:00/0000:00:08.1/0000:28:00.3/sound/card1/input21
1099 Feb 22 11:57:05 archlinux kernel: logitech-djreceiver 0003:046D:C534.0001: hidraw0: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:03:00.0-9/input0
1100 Feb 22 11:57:05 archlinux systemd[1]: Finished Apply Kernel Variables.
1101 Feb 22 11:57:05 archlinux systemd[1]: Rebuild Dynamic Linker Cache was skipped because no trigger condition checks were met.
1102 Feb 22 11:57:05 archlinux systemd[1]: Starting Load Kernel Module dm_mod...
1103 Feb 22 11:57:05 archlinux systemd[1]: Starting Load Kernel Module loop...
1104 Feb 22 11:57:05 archlinux systemd[1]: Set Up Additional Binary Formats was skipped because no trigger condition checks were met.
1105 Feb 22 11:57:05 archlinux systemd[1]: Update Boot Loader Random Seed was skipped because no trigger condition checks were met.
1106 Feb 22 11:57:05 archlinux systemd[1]: First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
1107 Feb 22 11:57:05 archlinux systemd[1]: First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes).
1108 Feb 22 11:57:05 archlinux systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
1109 Feb 22 11:57:05 archlinux systemd[1]: Rebuild Journal Catalog was skipped because of an unmet condition check (ConditionNeedsUpdate=/var).
1110 Feb 22 11:57:05 archlinux systemd[1]: Commit a transient machine-id on disk was skipped because of an unmet condition check (ConditionPathIsMountPoint=/etc/machine-id).
1111 Feb 22 11:57:05 archlinux systemd[1]: TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
1112 Feb 22 11:57:05 archlinux systemd[1]: Create System Users was skipped because no trigger condition checks were met.
1113 Feb 22 11:57:05 archlinux systemd[1]: Starting Network Configuration...
1114 Feb 22 11:57:05 archlinux systemd[1]: Update is Completed was skipped because no trigger condition checks were met.
1115 Feb 22 11:57:05 archlinux systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
1116 Feb 22 11:57:05 archlinux systemd[1]: Finished Load Kernel Module dm_mod.
1117 Feb 22 11:57:05 archlinux systemd[1]: modprobe@loop.service: Deactivated successfully.
1118 Feb 22 11:57:05 archlinux systemd[1]: Finished Load Kernel Module loop.
1119 Feb 22 11:57:05 archlinux systemd[1]: Reached target System Initialization.
1120 Feb 22 11:57:05 archlinux systemd[1]: Started CUPS Scheduler.
1121 Feb 22 11:57:05 archlinux systemd[1]: Started Refresh existing PGP keys of archlinux-keyring regularly.
1122 Feb 22 11:57:05 archlinux systemd[1]: Started Discard unused blocks once a week.
1123 Feb 22 11:57:05 archlinux systemd[1]: Started Daily rotation of log files.
1124 Feb 22 11:57:05 archlinux systemd[1]: Started Daily man-db regeneration.
1125 Feb 22 11:57:05 archlinux systemd[1]: Started Discard unused packages weekly.
1126 Feb 22 11:57:05 archlinux systemd[1]: Started Daily verification of password and group files.
1127 Feb 22 11:57:05 archlinux systemd[1]: Started Daily Cleanup of Temporary Directories.
1128 Feb 22 11:57:05 archlinux systemd[1]: Started Daily locate database update.
1129 Feb 22 11:57:05 archlinux systemd[1]: Reached target Path Units.
1130 Feb 22 11:57:05 archlinux systemd[1]: Reached target Timer Units.
1131 Feb 22 11:57:05 archlinux systemd[1]: Listening on CUPS Scheduler.
1132 Feb 22 11:57:05 archlinux systemd[1]: Listening on D-Bus System Message Bus Socket.
1133 Feb 22 11:57:05 archlinux systemd[1]: Listening on Libvirt local socket.
1134 Feb 22 11:57:05 archlinux systemd[1]: Listening on Libvirt admin socket.
1135 Feb 22 11:57:05 archlinux systemd[1]: Listening on Libvirt local read-only socket.
1136 Feb 22 11:57:05 archlinux systemd[1]: Listening on Virtual machine lock manager socket.
1137 Feb 22 11:57:05 archlinux systemd[1]: Listening on Virtual machine log manager socket.
1138 Feb 22 11:57:05 archlinux systemd[1]: Reached target Socket Units.
1139 Feb 22 11:57:05 archlinux systemd[1]: TPM2 PCR Barrier (Initialization) was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
1140 Feb 22 11:57:05 archlinux systemd[1]: Reached target Basic System.
1141 Feb 22 11:57:05 archlinux systemd[1]: Started ACPI event daemon.
1142 Feb 22 11:57:05 archlinux systemd[1]: Starting Save/Restore Sound Card State...
1143 Feb 22 11:57:05 archlinux systemd[1]: Manage Sound Card State (restore and store) was skipped because of an unmet condition check (ConditionPathExists=/etc/alsa/state-daemon.conf).
1144 Feb 22 11:57:05 archlinux systemd[1]: Starting Deferred execution scheduler...
1145 Feb 22 11:57:05 archlinux systemd[1]: Started Periodic Command Scheduler.
1146 Feb 22 11:57:05 archlinux systemd[1]: Starting D-Bus System Message Bus...
1147 Feb 22 11:57:05 archlinux crond[607]: (CRON) STARTUP (1.6.1)
1148 Feb 22 11:57:05 archlinux crond[607]: (CRON) INFO (RANDOM_DELAY will be scaled with factor 2% if used.)
1149 Feb 22 11:57:05 archlinux crond[607]: (CRON) INFO (running with inotify support)
1150 Feb 22 11:57:05 archlinux systemd[1]: Starting Initialize hardware monitoring sensors...
1151 Feb 22 11:57:05 archlinux systemd[1]: Starting User Login Management...
1152 Feb 22 11:57:05 archlinux systemd[1]: Starting Virtual Machine and Container Registration Service...
1153 Feb 22 11:57:05 archlinux kernel: logitech-djreceiver 0003:046D:C534.0002: hiddev96,hidraw1: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:03:00.0-9/input1
1154 Feb 22 11:57:05 archlinux systemd[1]: TPM2 PCR Barrier (User) was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
1155 Feb 22 11:57:05 archlinux systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
1156 Feb 22 11:57:05 archlinux kernel: nct6775: Found NCT6797D or compatible chip at 0x4e:0xa20
1157 Feb 22 11:57:05 archlinux systemd-logind[610]: New seat seat0.
1158 Feb 22 11:57:05 archlinux systemd-logind[610]: Watching system buttons on /dev/input/event1 (Power Button)
1159 Feb 22 11:57:05 archlinux systemd-logind[610]: Watching system buttons on /dev/input/event0 (Power Button)
1160 Feb 22 11:57:05 archlinux kernel: logitech-djreceiver 0003:046D:C534.0002: device of type eQUAD nano Lite (0x0a) connected on slot 1
1161 Feb 22 11:57:05 archlinux kernel: input: Logitech Wireless Keyboard PID:4023 Keyboard as /devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-9/1-9:1.1/0003:046D:C534.0002/0003:046D:4023.0004/input/input22
1162 Feb 22 11:57:05 archlinux kernel: hid-generic 0003:046D:4023.0004: input,hidraw3: USB HID v1.11 Keyboard [Logitech Wireless Keyboard PID:4023] on usb-0000:03:00.0-9/input1:1
1163 Feb 22 11:57:05 archlinux kernel: logitech-djreceiver 0003:046D:C534.0002: device of type eQUAD nano Lite (0x0a) connected on slot 2
1164 Feb 22 11:57:05 archlinux systemd[1]: Finished Save/Restore Sound Card State.
1165 Feb 22 11:57:05 archlinux systemd[1]: Started D-Bus System Message Bus.
1166 Feb 22 11:57:05 archlinux kernel: input: Logitech Wireless Mouse PID:4054 Mouse as /devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-9/1-9:1.1/0003:046D:C534.0002/0003:046D:4054.0005/input/input27
1167 Feb 22 11:57:05 archlinux kernel: hid-generic 0003:046D:4054.0005: input,hidraw4: USB HID v1.11 Mouse [Logitech Wireless Mouse PID:4054] on usb-0000:03:00.0-9/input1:2
1168 Feb 22 11:57:05 archlinux acpid[604]: starting up with netlink and the input layer
1169 Feb 22 11:57:05 archlinux acpid[604]: 1 rule loaded
1170 Feb 22 11:57:05 archlinux acpid[604]: waiting for events: event logging is off
1171 Feb 22 11:57:05 archlinux systemd[1]: Started User Login Management.
1172 Feb 22 11:57:05 archlinux systemd[1]: Started Deferred execution scheduler.
1173 Feb 22 11:57:05 archlinux systemd[1]: Reached target Sound Card.
1174 Feb 22 11:57:05 archlinux systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
1175 Feb 22 11:57:05 archlinux dbus-daemon[608]: [system] Successfully activated service 'org.freedesktop.systemd1'
1176 Feb 22 11:57:05 archlinux systemd[1]: Started Virtual Machine and Container Registration Service.
1177 Feb 22 11:57:05 archlinux kernel: mousedev: PS/2 mouse device common for all mice
1178 Feb 22 11:57:05 archlinux kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
1179 Feb 22 11:57:05 archlinux kernel: cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
1180 Feb 22 11:57:05 archlinux (udev-worker)[418]: cfg80211: Process '/usr/bin/set-wireless-regdom' failed with exit code 1.
1181 Feb 22 11:57:05 archlinux systemd-networkd[603]: lo: Link UP
1182 Feb 22 11:57:05 archlinux systemd-networkd[603]: lo: Gained carrier
1183 Feb 22 11:57:05 archlinux systemd-networkd[603]: Enumeration completed
1184 Feb 22 11:57:05 archlinux systemd-networkd[603]: mobo0: Configuring with /etc/systemd/network/10-internet.network.
1185 Feb 22 11:57:05 archlinux systemd[1]: Finished Initialize hardware monitoring sensors.
1186 Feb 22 11:57:05 archlinux systemd[1]: Started Network Configuration.
1187 Feb 22 11:57:05 archlinux systemd[1]: Reached target Network.
1188 Feb 22 11:57:05 archlinux systemd[1]: Starting CUPS Scheduler...
1189 Feb 22 11:57:05 archlinux systemd[1]: Starting Virtualization daemon...
1190 Feb 22 11:57:05 archlinux systemd[1]: Starting Permit User Sessions...
1191 Feb 22 11:57:05 archlinux kernel: Generic FE-GE Realtek PHY r8169-0-2200:00: attached PHY driver (mii_bus:phy_addr=r8169-0-2200:00, irq=MAC)
1192 Feb 22 11:57:05 archlinux systemd[1]: Finished Permit User Sessions.
1193 Feb 22 11:57:05 archlinux systemd[1]: Starting Light Display Manager...
1194 Feb 22 11:57:05 archlinux dbus-daemon[608]: [system] Activating via systemd: service name='org.freedesktop.ColorManager' unit='colord.service' requested by ':1.7' (uid=0 pid=633 comm="/usr/bin/cupsd -l")
1195 Feb 22 11:57:05 archlinux dbus-daemon[608]: [system] Activating via systemd: service name='org.freedesktop.Accounts' unit='accounts-daemon.service' requested by ':1.6' (uid=0 pid=648 comm="/usr/bin/lightdm")
1196 Feb 22 11:57:05 archlinux systemd[1]: Reached target User and Group Name Lookups.
1197 Feb 22 11:57:05 archlinux systemd[1]: Starting Accounts Service...
1198 Feb 22 11:57:05 archlinux systemd[1]: Starting Manage, Install and Generate Color Profiles...
1199 Feb 22 11:57:05 archlinux dbus-daemon[608]: [system] Successfully activated service 'org.freedesktop.ColorManager'
1200 Feb 22 11:57:05 archlinux systemd[1]: Started Manage, Install and Generate Color Profiles.
1201 Feb 22 11:57:05 archlinux systemd[1]: Started Virtualization daemon.
1202 Feb 22 11:57:06 archlinux systemd-networkd[603]: mobo0: Link UP
1203 Feb 22 11:57:06 archlinux kernel: r8169 0000:22:00.0 mobo0: Link is Down
1204 Feb 22 11:57:06 archlinux systemd[1]: Started CUPS Scheduler.
1205 Feb 22 11:57:06 archlinux systemd[1]: Reached target Multi-User System.
1206 Feb 22 11:57:06 archlinux kernel: bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
1207 Feb 22 11:57:06 archlinux dbus-daemon[608]: [system] Activating via systemd: service name='org.freedesktop.PolicyKit1' unit='polkit.service' requested by ':1.10' (uid=0 pid=654 comm="/usr/lib/accounts-daemon")
1208 Feb 22 11:57:06 archlinux systemd[1]: Starting Authorization Manager...
1209 Feb 22 11:57:06 archlinux polkitd[689]: Started polkitd version 122
1210 Feb 22 11:57:06 archlinux polkitd[689]: Loading rules from directory /etc/polkit-1/rules.d
1211 Feb 22 11:57:06 archlinux polkitd[689]: Loading rules from directory /usr/share/polkit-1/rules.d
1212 Feb 22 11:57:06 archlinux polkitd[689]: Finished loading, compiling and executing 7 rules
1213 Feb 22 11:57:06 archlinux dbus-daemon[608]: [system] Successfully activated service 'org.freedesktop.PolicyKit1'
1214 Feb 22 11:57:06 archlinux systemd[1]: Started Authorization Manager.
1215 Feb 22 11:57:06 archlinux polkitd[689]: Acquired the name org.freedesktop.PolicyKit1 on the system bus
1216 Feb 22 11:57:06 archlinux accounts-daemon[654]: started daemon version 22.08.0
1217 Feb 22 11:57:06 archlinux dbus-daemon[608]: [system] Successfully activated service 'org.freedesktop.Accounts'
1218 Feb 22 11:57:06 archlinux systemd[1]: Started Accounts Service.
1219 Feb 22 11:57:06 archlinux kernel: input: Logitech Wireless Keyboard PID:4023 as /devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-9/1-9:1.1/0003:046D:C534.0002/0003:046D:4023.0004/input/input31
1220 Feb 22 11:57:06 archlinux kernel: logitech-hidpp-device 0003:046D:4023.0004: input,hidraw3: USB HID v1.11 Keyboard [Logitech Wireless Keyboard PID:4023] on usb-0000:03:00.0-9/input1:1
1221 Feb 22 11:57:06 archlinux systemd[1]: Started Light Display Manager.
1222 Feb 22 11:57:06 archlinux systemd[1]: Reached target Graphical Interface.
1223 Feb 22 11:57:06 archlinux systemd[1]: Startup finished in 3.126s (kernel) + 3.098s (userspace) = 6.224s.
1224 Feb 22 11:57:06 archlinux acpid[604]: client connected from 707[0:0]
1225 Feb 22 11:57:06 archlinux acpid[604]: 1 client rule loaded
1226 Feb 22 11:57:06 archlinux acpid[604]: input device has been disconnected, fd 21
1227 Feb 22 11:57:06 archlinux kernel: input: Logitech Wireless Mouse as /devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-9/1-9:1.1/0003:046D:C534.0002/0003:046D:4054.0005/input/input32
1228 Feb 22 11:57:06 archlinux kernel: logitech-hidpp-device 0003:046D:4054.0005: input,hidraw4: USB HID v1.11 Mouse [Logitech Wireless Mouse] on usb-0000:03:00.0-9/input1:2
1229 Feb 22 11:57:06 archlinux systemd-networkd[603]: virbr0: Link UP
1230 Feb 22 11:57:06 archlinux dnsmasq[763]: started, version 2.89 cachesize 150
1231 Feb 22 11:57:06 archlinux dnsmasq[763]: compile time options: IPv6 GNU-getopt DBus no-UBus i18n IDN2 DHCP DHCPv6 no-Lua TFTP conntrack ipset nftset auth cryptohash DNSSEC loop-detect inotify dumpfile
1232 Feb 22 11:57:06 archlinux dnsmasq-dhcp[763]: DHCP, IP range 192.168.122.2 -- 192.168.122.254, lease time 1h
1233 Feb 22 11:57:06 archlinux dnsmasq-dhcp[763]: DHCP, sockets bound exclusively to interface virbr0
1234 Feb 22 11:57:06 archlinux dnsmasq[763]: reading /etc/resolv.conf
1235 Feb 22 11:57:06 archlinux dnsmasq[763]: using nameserver 127.0.0.53#53
1236 Feb 22 11:57:06 archlinux dnsmasq[763]: read /etc/hosts - 12 names
1237 Feb 22 11:57:06 archlinux dnsmasq[763]: read /var/lib/libvirt/dnsmasq/default.addnhosts - 0 names
1238 Feb 22 11:57:06 archlinux dnsmasq-dhcp[763]: read /var/lib/libvirt/dnsmasq/default.hostsfile
1239 Feb 22 11:57:06 archlinux systemd-logind[610]: Watching system buttons on /dev/input/event4 (Logitech Wireless Keyboard PID:4023)
1240 Feb 22 11:57:06 archlinux acpid[604]: client connected from 707[0:0]
1241 Feb 22 11:57:06 archlinux acpid[604]: 1 client rule loaded
1242 Feb 22 11:57:07 archlinux root[784]: ACPI group/action undefined: jack/lineout / LINEOUT
1243 Feb 22 11:57:07 archlinux root[789]: ACPI group/action undefined: jack/videoout / VIDEOOUT
1244 Feb 22 11:57:07 archlinux lightdm[798]: pam_succeed_if(lightdm-autologin:auth): requirement "user ingroup autologin" was met by user "rich"
1245 Feb 22 11:57:07 archlinux lightdm[798]: gkr-pam: no password is available for user
1246 Feb 22 11:57:07 archlinux dbus-daemon[608]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.13' (uid=0 pid=798 comm="lightdm --session-child 13 16")
1247 Feb 22 11:57:07 archlinux dbus-daemon[608]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
1248 Feb 22 11:57:07 archlinux lightdm[798]: pam_systemd_home(lightdm-autologin:account): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
1249 Feb 22 11:57:07 archlinux lightdm[798]: pam_unix(lightdm-autologin:session): session opened for user rich(uid=1000) by (uid=0)
1250 Feb 22 11:57:07 archlinux systemd[1]: Created slice User Slice of UID 1000.
1251 Feb 22 11:57:07 archlinux systemd[1]: Starting User Runtime Directory /run/user/1000...
1252 Feb 22 11:57:07 archlinux systemd-logind[610]: New session 1 of user rich.
1253 Feb 22 11:57:07 archlinux systemd[1]: Finished User Runtime Directory /run/user/1000.
1254 Feb 22 11:57:07 archlinux systemd[1]: Starting User Manager for UID 1000...
1255 Feb 22 11:57:07 archlinux dbus-daemon[608]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.16' (uid=0 pid=806 comm="(systemd)")
1256 Feb 22 11:57:07 archlinux dbus-daemon[608]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
1257 Feb 22 11:57:07 archlinux (systemd)[806]: pam_systemd_home(systemd-user:account): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
1258 Feb 22 11:57:07 archlinux (systemd)[806]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8002 service=[systemd-user] terminal=[] user=[rich] ruser=[<unknown>] rhost=[<unknown>]
1259 Feb 22 11:57:07 archlinux (systemd)[806]: pam_unix(systemd-user:session): session opened for user rich(uid=1000) by (uid=0)
1260 Feb 22 11:57:07 archlinux systemd[1]: Listening on Virtual machine log manager socket.
1261 Feb 22 11:57:07 archlinux systemd[1]: Started Virtual machine log manager.
1262 Feb 22 11:57:07 archlinux virtlogd[811]: libvirt version: 9.0.0
1263 Feb 22 11:57:07 archlinux virtlogd[811]: hostname: archlinux
1264 Feb 22 11:57:07 archlinux virtlogd[811]: Client hit max requests limit 1. This may result in keep-alive timeouts. Consider tuning the max_client_requests server parameter
1265 Feb 22 11:57:07 archlinux systemd-xdg-autostart-generator[819]: /home/rich/.config/autostart/Terminal.desktop:9: Unknown key name 'RunHook' in section 'Desktop Entry', ignoring.
1266 Feb 22 11:57:07 archlinux kernel: tun: Universal TUN/TAP device driver, 1.6
1267 Feb 22 11:57:07 archlinux kernel: virbr0: port 1(vnet0) entered blocking state
1268 Feb 22 11:57:07 archlinux kernel: virbr0: port 1(vnet0) entered disabled state
1269 Feb 22 11:57:07 archlinux kernel: device vnet0 entered promiscuous mode
1270 Feb 22 11:57:07 archlinux kernel: virbr0: port 1(vnet0) entered blocking state
1271 Feb 22 11:57:07 archlinux kernel: virbr0: port 1(vnet0) entered listening state
1272 Feb 22 11:57:07 archlinux systemd-journald[372]: /var/log/journal/7fc2d5fd7f2843f8be84e35d5bc48f80/user-1000.journal: Montonic clock jumped backwards relative to last journal entry, rotating.
1273 Feb 22 11:57:07 archlinux systemd-journald[372]: Failed to write entry to /var/log/journal/7fc2d5fd7f2843f8be84e35d5bc48f80/user-1000.journal (32 items, 1138 bytes), rotating before retrying: Not a XENIX named type file
1274 Feb 22 11:57:07 archlinux systemd-xdg-autostart-generator[819]: /home/rich/.config/autostart/KeePassXC.desktop:9: Unknown key name 'RunHook' in section 'Desktop Entry', ignoring.
1275 Feb 22 11:57:07 archlinux systemd-xdg-autostart-generator[819]: /home/rich/.config/autostart/xscreensaver.desktop:2: Unknown key name 'RunHook' in section 'Desktop Entry', ignoring.
1276 Feb 22 11:57:07 archlinux systemd-networkd[603]: vnet0: Link UP
1277 Feb 22 11:57:07 archlinux systemd-networkd[603]: vnet0: Gained carrier
1278 Feb 22 11:57:07 archlinux systemd-resolved[508]: Switching to fallback DNS server 1.1.1.1#cloudflare-dns.com.
1279 Feb 22 11:57:07 archlinux systemd-machined[611]: New machine qemu-1-vpstest.
1280 Feb 22 11:57:07 archlinux systemd[806]: Queued start job for default target Main User Target.
1281 Feb 22 11:57:07 archlinux systemd[806]: Created slice User Application Slice.
1282 Feb 22 11:57:07 archlinux systemd[806]: Created slice User Core Session Slice.
1283 Feb 22 11:57:07 archlinux systemd[806]: Started Timer for profile-sync-daemon - 1Hour.
1284 Feb 22 11:57:07 archlinux systemd[806]: Started Daily Cleanup of User's Temporary Directories.
1285 Feb 22 11:57:07 archlinux systemd[806]: Reached target Paths.
1286 Feb 22 11:57:07 archlinux systemd[806]: Reached target Timers.
1287 Feb 22 11:57:07 archlinux systemd[1]: Started Virtual Machine qemu-1-vpstest.
1288 Feb 22 11:57:07 archlinux systemd[806]: Starting D-Bus User Message Bus Socket...
1289 Feb 22 11:57:07 archlinux systemd[806]: Listening on GnuPG network certificate management daemon.
1290 Feb 22 11:57:07 archlinux systemd[806]: Listening on GCR ssh-agent wrapper.
1291 Feb 22 11:57:07 archlinux systemd[806]: Listening on GNOME Keyring daemon.
1292 Feb 22 11:57:07 archlinux systemd[806]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
1293 Feb 22 11:57:07 archlinux systemd[806]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
1294 Feb 22 11:57:07 archlinux systemd[806]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
1295 Feb 22 11:57:07 archlinux systemd[806]: Listening on GnuPG cryptographic agent and passphrase cache.
1296 Feb 22 11:57:07 archlinux systemd[806]: Listening on p11-kit server.
1297 Feb 22 11:57:07 archlinux systemd[806]: Listening on PipeWire Multimedia System Socket.
1298 Feb 22 11:57:07 archlinux systemd[806]: Listening on Sound System.
1299 Feb 22 11:57:07 archlinux systemd[806]: Starting Create User's Volatile Files and Directories...
1300 Feb 22 11:57:07 archlinux systemd[806]: Finished Create User's Volatile Files and Directories.
1301 Feb 22 11:57:07 archlinux systemd[806]: Listening on D-Bus User Message Bus Socket.
1302 Feb 22 11:57:07 archlinux systemd[806]: Reached target Sockets.
1303 Feb 22 11:57:07 archlinux systemd[806]: Reached target Basic System.
1304 Feb 22 11:57:07 archlinux systemd[1]: Started User Manager for UID 1000.
1305 Feb 22 11:57:07 archlinux systemd[1]: Started Session 1 of User rich.
1306 Feb 22 11:57:07 archlinux systemd[806]: Starting Dunst notification daemon...
1307 Feb 22 11:57:07 archlinux systemd[806]: Started p11-kit server.
1308 Feb 22 11:57:07 archlinux systemd[806]: Starting Profile-sync-daemon...
1309 Feb 22 11:57:07 archlinux p11-kit[833]: P11_KIT_SERVER_ADDRESS=unix:path=/run/user/1000/p11-kit/pkcs11; export P11_KIT_SERVER_ADDRESS;
1310 Feb 22 11:57:07 archlinux p11-kit[833]: P11_KIT_SERVER_PID=833; export P11_KIT_SERVER_PID;
1311 Feb 22 11:57:07 archlinux systemd[806]: Starting Sound Service...
1312 Feb 22 11:57:07 archlinux systemd[806]: Started GNOME Keyring daemon.
1313 Feb 22 11:57:07 archlinux dunst[832]: WARNING: Setting geometry in section global doesn't exist
1314 Feb 22 11:57:07 archlinux dunst[832]: WARNING: Setting notification_height in section global doesn't exist
1315 Feb 22 11:57:07 archlinux dunst[832]: WARNING: Setting startup_notification in section global doesn't exist
1316 Feb 22 11:57:07 archlinux dunst[832]: WARNING: Setting verbosity in section global doesn't exist
1317 Feb 22 11:57:07 archlinux dunst[832]: WARNING: Section shortcuts is deprecated.
1318 Feb 22 11:57:07 archlinux dunst[832]: Settings in the shortcuts sections have been moved to the global section.
1319 Feb 22 11:57:07 archlinux dunst[832]: Alternatively you can bind shortcuts in you window manager to dunstctl commands. For that, see the manual for dunstctl.
1320 Feb 22 11:57:07 archlinux dunst[832]: Ignoring this section.
1321 Feb 22 11:57:07 archlinux gnome-keyring-daemon[838]: GNOME_KEYRING_CONTROL=/run/user/1000/keyring
1322 Feb 22 11:57:07 archlinux systemd[806]: Starting D-Bus User Message Bus...
1323 Feb 22 11:57:07 archlinux dunst[832]: WARNING: Cannot open X11 display.
1324 Feb 22 11:57:07 archlinux dunst[832]: ERROR: [ get_x11_output:0065] Couldn't initialize X11 output. Aborting...
1325 Feb 22 11:57:07 archlinux kernel: traps: dunst[832] trap int3 ip:7f92b4386895 sp:7ffef4f32700 error:0 in libglib-2.0.so.0.7400.5[7f92b4345000+93000]
1326 Feb 22 11:57:07 archlinux systemd[1]: Created slice Slice /system/systemd-coredump.
1327 Feb 22 11:57:07 archlinux systemd[1]: Started Process Core Dump (PID 856/UID 0).
1328 Feb 22 11:57:07 archlinux systemd[806]: Started D-Bus User Message Bus.
1329 Feb 22 11:57:07 archlinux lightdm[798]: gkr-pam: couldn't unlock the login keyring.
1330 Feb 22 11:57:07 archlinux dbus-daemon[608]: [system] Activating via systemd: service name='org.freedesktop.RealtimeKit1' unit='rtkit-daemon.service' requested by ':1.19' (uid=1000 pid=836 comm="/usr/bin/pulseaudio --daemonize=no --log-target=jo")
1331 Feb 22 11:57:07 archlinux systemd[1]: Starting RealtimeKit Scheduling Policy Service...
1332 Feb 22 11:57:07 archlinux dbus-daemon[608]: [system] Successfully activated service 'org.freedesktop.RealtimeKit1'
1333 Feb 22 11:57:07 archlinux systemd[1]: Started RealtimeKit Scheduling Policy Service.
1334 Feb 22 11:57:07 archlinux rtkit-daemon[870]: Successfully called chroot.
1335 Feb 22 11:57:07 archlinux rtkit-daemon[870]: Successfully dropped privileges.
1336 Feb 22 11:57:07 archlinux rtkit-daemon[870]: Successfully limited resources.
1337 Feb 22 11:57:07 archlinux rtkit-daemon[870]: Canary thread running.
1338 Feb 22 11:57:07 archlinux rtkit-daemon[870]: Running.
1339 Feb 22 11:57:07 archlinux rtkit-daemon[870]: Watchdog thread running.
And the MoBo deos support UEFI!
Last edited by FallenArches (2023-02-22 17:34:49)
Offline
Moving to Kernel & Hardware by request
Offline
I consider this closed and will be unsubscribing from it. Not sure how to edit the title.
Offline
I consider this closed and will be unsubscribing from it. Not sure how to edit the title.
I saw your report
Edit your first post in the thread. That will give you the ability to edit the thread title. Then, just prepend [SOVED] to the thread title.
Nothing is too wonderful to be true, if it be consistent with the laws of nature -- Michael Faraday
Sometimes it is the people no one can imagine anything of who do the things no one can imagine. -- Alan Turing
---
How to Ask Questions the Smart Way
Offline