You are not logged in.

#1 2024-05-21 00:52:49

jec15
Member
Registered: 2024-05-14
Posts: 4

[SOLVED] Forcing mode at early KMS not working in kernel 6.9.1-arch1-1

My monitor's preferred resolution is 1024x768, so i was forcing it to 1280x1024 as per https://wiki.archlinux.org/title/Kernel … s_and_EDID. But this stopped working since updating to 6.9.1-arch1-1.

It still works as intended if i boot into 6.6.31-1-lts.

Just in case, I regenerated both the grub configuration and all the initramfs (without changing anything in /etc/default/grub or /etc/mkinitcpio.conf) by:

grub-mkconfig -o /boot/grub/grub.cfg

and:

mkinitcpio -P

and rebooted, but this did not have any effect.

I also tried grabbing the edid again from /sys/class/drm/card1-VGA-1/edid (which is what i originally did when setting this up) and overwriting the old one at /usr/lib/firmware/edid, then regenerating both grub config and the initramfs and rebooting, also to no effect.


These are the contents of /etc/default/grub:

# GRUB boot loader configuration

GRUB_DEFAULT=saved
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR="Arch"
GRUB_CMDLINE_LINUX_DEFAULT="sysrq_always_enabled=1 loglevel=7 rd.systemd.show_status=true drm.edid_firmware=edid/1280x1024.bin zswap.enabled=0"
GRUB_CMDLINE_LINUX=""

# Preload both GPT and MBR modules so that they are not missed
GRUB_PRELOAD_MODULES="part_gpt part_msdos"

# Uncomment to enable booting from LUKS encrypted devices
#GRUB_ENABLE_CRYPTODISK=y

# Set to 'countdown' or 'hidden' to change timeout behavior,
# press ESC key to display menu.
GRUB_TIMEOUT_STYLE=menu

# Uncomment to use basic console
GRUB_TERMINAL_INPUT=console

# Uncomment to disable graphical terminal
#GRUB_TERMINAL_OUTPUT=console

# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `videoinfo'
GRUB_GFXMODE=1280x1024x32

# Uncomment to allow the kernel use the same resolution used by grub
GRUB_GFXPAYLOAD_LINUX=keep

# Uncomment if you want GRUB to pass to the Linux kernel the old parameter
# format "root=/dev/xxx" instead of "root=/dev/disk/by-uuid/xxx"
#GRUB_DISABLE_LINUX_UUID=true

# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY=true

# Uncomment and set to the desired menu colors.  Used by normal and wallpaper
# modes only.  Entries specified as foreground/background.
#GRUB_COLOR_NORMAL="light-blue/black"
#GRUB_COLOR_HIGHLIGHT="light-cyan/blue"

# Uncomment one of them for the gfx desired, a image background or a gfxtheme
#GRUB_BACKGROUND="/path/to/wallpaper"
#GRUB_THEME="/path/to/gfxtheme"

# Uncomment to get a beep at GRUB start
#GRUB_INIT_TUNE="480 440 1"

# Uncomment to make GRUB remember the last selection. This requires
# setting 'GRUB_DEFAULT=saved' above.
GRUB_SAVEDEFAULT=true

# Uncomment to disable submenus in boot menu
#GRUB_DISABLE_SUBMENU=y

# Probing for other operating systems is disabled for security reasons. Read
# documentation on GRUB_DISABLE_OS_PROBER, if still want to enable this
# functionality install os-prober and uncomment to detect and include other
# operating systems.
GRUB_DISABLE_OS_PROBER=false

and /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=(/usr/lib/firmware/edid/1280x1024.bin)


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

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

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

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

Output of "journalctl -b" for 6.9.1-arch1-1:

May 20 19:26:03 arch kernel: Linux version 6.9.1-arch1-1 (linux@archlinux) (gcc (GCC) 14.1.1 20240507, GNU ld (GNU Binutils) 2.42.0) #1 SMP PREEMPT_DYNAMIC Fri, 17 May 2024 16:56:38 +0000
May 20 19:26:03 arch kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=c88c5185-df9b-462e-8cea-9a0c7393ae50 rw sysrq_always_enabled=1 loglevel=7 rd.systemd.show_status=true drm.edid_firmware=edid/1280x1024.bin zswap.enabled=0
May 20 19:26:03 arch kernel: BIOS-provided physical RAM map:
May 20 19:26:03 arch kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
May 20 19:26:03 arch kernel: BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
May 20 19:26:03 arch kernel: BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
May 20 19:26:03 arch kernel: BIOS-e820: [mem 0x0000000000100000-0x00000000c7d9ffff] usable
May 20 19:26:03 arch kernel: BIOS-e820: [mem 0x00000000c7da0000-0x00000000c7dadfff] ACPI data
May 20 19:26:03 arch kernel: BIOS-e820: [mem 0x00000000c7dae000-0x00000000c7deffff] ACPI NVS
May 20 19:26:03 arch kernel: BIOS-e820: [mem 0x00000000c7df0000-0x00000000cfffffff] reserved
May 20 19:26:03 arch kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
May 20 19:26:03 arch kernel: BIOS-e820: [mem 0x00000000fff00000-0x00000000ffffffff] reserved
May 20 19:26:03 arch kernel: BIOS-e820: [mem 0x0000000100000000-0x000000012fffffff] usable
May 20 19:26:03 arch kernel: NX (Execute Disable) protection: active
May 20 19:26:03 arch kernel: APIC: Static calls initialized
May 20 19:26:03 arch kernel: SMBIOS 2.5 present.
May 20 19:26:03 arch kernel: DMI: MSI MS-7592/G41M-P26 (MS-7592), BIOS V26.8 08/26/2011
May 20 19:26:03 arch kernel: tsc: Fast TSC calibration failed
May 20 19:26:03 arch kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
May 20 19:26:03 arch kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
May 20 19:26:03 arch kernel: last_pfn = 0x130000 max_arch_pfn = 0x400000000
May 20 19:26:03 arch kernel: total RAM covered: 3966M
May 20 19:26:03 arch kernel: Found optimal setting for mtrr clean up
May 20 19:26:03 arch kernel:  gran_size: 64K         chunk_size: 4M         num_reg: 6          lose cover RAM: 0G
May 20 19:26:03 arch kernel: MTRR map: 9 entries (6 fixed + 3 variable; max 22), built from 8 variable MTRRs
May 20 19:26:03 arch kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
May 20 19:26:03 arch kernel: e820: update [mem 0xc7e00000-0xffffffff] usable ==> reserved
May 20 19:26:03 arch kernel: last_pfn = 0xc7da0 max_arch_pfn = 0x400000000
May 20 19:26:03 arch kernel: found SMP MP-table at [mem 0x000ff780-0x000ff78f]
May 20 19:26:03 arch kernel: RAMDISK: [mem 0x35301000-0x36977fff]
May 20 19:26:03 arch kernel: ACPI: Early table checksum verification disabled
May 20 19:26:03 arch kernel: ACPI: RSDP 0x00000000000F99F0 000014 (v00 ACPIAM)
May 20 19:26:03 arch kernel: ACPI: RSDT 0x00000000C7DA0000 000040 (v01 7592MS A7592400 20110826 MSFT 00000097)
May 20 19:26:03 arch kernel: ACPI: FACP 0x00000000C7DA0200 000084 (v01 7592MS A7592400 20110826 MSFT 00000097)
May 20 19:26:03 arch kernel: ACPI: DSDT 0x00000000C7DA0440 0062AE (v01 A7592  A7592400 00000400 INTL 20051117)
May 20 19:26:03 arch kernel: ACPI: FACS 0x00000000C7DAE000 000040
May 20 19:26:03 arch kernel: ACPI: APIC 0x00000000C7DA0390 00006C (v01 7592MS A7592400 20110826 MSFT 00000097)
May 20 19:26:03 arch kernel: ACPI: MCFG 0x00000000C7DA0400 00003C (v01 7592MS OEMMCFG  20110826 MSFT 00000097)
May 20 19:26:03 arch kernel: ACPI: OEMB 0x00000000C7DAE040 000072 (v01 7592MS A7592400 20110826 MSFT 00000097)
May 20 19:26:03 arch kernel: ACPI: HPET 0x00000000C7DA8440 000038 (v01 7592MS OEMHPET  20110826 MSFT 00000097)
May 20 19:26:03 arch kernel: ACPI: GSCI 0x00000000C7DAE0C0 002024 (v01 7592MS GMCHSCI  20110826 MSFT 00000097)
May 20 19:26:03 arch kernel: ACPI: SSDT 0x00000000C7DB05F0 000A7C (v01 DpgPmm CpuPm    00000012 INTL 20051117)
May 20 19:26:03 arch kernel: ACPI: Reserving FACP table memory at [mem 0xc7da0200-0xc7da0283]
May 20 19:26:03 arch kernel: ACPI: Reserving DSDT table memory at [mem 0xc7da0440-0xc7da66ed]
May 20 19:26:03 arch kernel: ACPI: Reserving FACS table memory at [mem 0xc7dae000-0xc7dae03f]
May 20 19:26:03 arch kernel: ACPI: Reserving APIC table memory at [mem 0xc7da0390-0xc7da03fb]
May 20 19:26:03 arch kernel: ACPI: Reserving MCFG table memory at [mem 0xc7da0400-0xc7da043b]
May 20 19:26:03 arch kernel: ACPI: Reserving OEMB table memory at [mem 0xc7dae040-0xc7dae0b1]
May 20 19:26:03 arch kernel: ACPI: Reserving HPET table memory at [mem 0xc7da8440-0xc7da8477]
May 20 19:26:03 arch kernel: ACPI: Reserving GSCI table memory at [mem 0xc7dae0c0-0xc7db00e3]
May 20 19:26:03 arch kernel: ACPI: Reserving SSDT table memory at [mem 0xc7db05f0-0xc7db106b]
May 20 19:26:03 arch kernel: No NUMA configuration found
May 20 19:26:03 arch kernel: Faking a node at [mem 0x0000000000000000-0x000000012fffffff]
May 20 19:26:03 arch kernel: NODE_DATA(0) allocated [mem 0x12fff7000-0x12fffbfff]
May 20 19:26:03 arch kernel: Zone ranges:
May 20 19:26:03 arch kernel:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
May 20 19:26:03 arch kernel:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
May 20 19:26:03 arch kernel:   Normal   [mem 0x0000000100000000-0x000000012fffffff]
May 20 19:26:03 arch kernel:   Device   empty
May 20 19:26:03 arch kernel: Movable zone start for each node
May 20 19:26:03 arch kernel: Early memory node ranges
May 20 19:26:03 arch kernel:   node   0: [mem 0x0000000000001000-0x000000000009efff]
May 20 19:26:03 arch kernel:   node   0: [mem 0x0000000000100000-0x00000000c7d9ffff]
May 20 19:26:03 arch kernel:   node   0: [mem 0x0000000100000000-0x000000012fffffff]
May 20 19:26:03 arch kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000012fffffff]
May 20 19:26:03 arch kernel: On node 0, zone DMA: 1 pages in unavailable ranges
May 20 19:26:03 arch kernel: On node 0, zone DMA: 97 pages in unavailable ranges
May 20 19:26:03 arch kernel: On node 0, zone Normal: 608 pages in unavailable ranges
May 20 19:26:03 arch kernel: Reserving Intel graphics memory at [mem 0xc8000000-0xcfffffff]
May 20 19:26:03 arch kernel: ACPI: PM-Timer IO Port: 0x808
May 20 19:26:03 arch kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
May 20 19:26:03 arch kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
May 20 19:26:03 arch kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
May 20 19:26:03 arch kernel: ACPI: Using ACPI (MADT) for SMP configuration information
May 20 19:26:03 arch kernel: ACPI: HPET id: 0xffffffff base: 0xfed00000
May 20 19:26:03 arch kernel: CPU topo: Max. logical packages:   2
May 20 19:26:03 arch kernel: CPU topo: Max. logical dies:       2
May 20 19:26:03 arch kernel: CPU topo: Max. dies per package:   1
May 20 19:26:03 arch kernel: CPU topo: Max. threads per core:   1
May 20 19:26:03 arch kernel: CPU topo: Num. cores per package:     2
May 20 19:26:03 arch kernel: CPU topo: Num. threads per package:   2
May 20 19:26:03 arch kernel: CPU topo: Allowing 2 present CPUs plus 2 hotplug CPUs
May 20 19:26:03 arch kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
May 20 19:26:03 arch kernel: PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
May 20 19:26:03 arch kernel: PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000dffff]
May 20 19:26:03 arch kernel: PM: hibernation: Registered nosave memory: [mem 0x000e0000-0x000fffff]
May 20 19:26:03 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xc7da0000-0xc7dadfff]
May 20 19:26:03 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xc7dae000-0xc7deffff]
May 20 19:26:03 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xc7df0000-0xcfffffff]
May 20 19:26:03 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xd0000000-0xfedfffff]
May 20 19:26:03 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
May 20 19:26:03 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xffefffff]
May 20 19:26:03 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xfff00000-0xffffffff]
May 20 19:26:03 arch kernel: [mem 0xd0000000-0xfedfffff] available for PCI devices
May 20 19:26:03 arch kernel: Booting paravirtualized kernel on bare hardware
May 20 19:26:03 arch kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
May 20 19:26:03 arch kernel: setup_percpu: NR_CPUS:320 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
May 20 19:26:03 arch kernel: percpu: Embedded 66 pages/cpu s233472 r8192 d28672 u524288
May 20 19:26:03 arch kernel: pcpu-alloc: s233472 r8192 d28672 u524288 alloc=1*2097152
May 20 19:26:03 arch kernel: pcpu-alloc: [0] 0 1 2 3 
May 20 19:26:03 arch kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=c88c5185-df9b-462e-8cea-9a0c7393ae50 rw sysrq_always_enabled=1 loglevel=7 rd.systemd.show_status=true drm.edid_firmware=edid/1280x1024.bin zswap.enabled=0
May 20 19:26:03 arch kernel: sysrq: sysrq always enabled.
May 20 19:26:03 arch kernel: Unknown kernel command line parameters "BOOT_IMAGE=/boot/vmlinuz-linux", will be passed to user space.
May 20 19:26:03 arch kernel: Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
May 20 19:26:03 arch kernel: Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
May 20 19:26:03 arch kernel: Fallback order for Node 0: 0 
May 20 19:26:03 arch kernel: Built 1 zonelists, mobility grouping on.  Total pages: 999081
May 20 19:26:03 arch kernel: Policy zone: Normal
May 20 19:26:03 arch kernel: mem auto-init: stack:all(zero), heap alloc:on, heap free:off
May 20 19:26:03 arch kernel: software IO TLB: area num 4.
May 20 19:26:03 arch kernel: Memory: 3849896K/4060408K available (18432K kernel code, 2164K rwdata, 13276K rodata, 3408K init, 3636K bss, 210252K reserved, 0K cma-reserved)
May 20 19:26:03 arch kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
May 20 19:26:03 arch kernel: Kernel/User page tables isolation: enabled
May 20 19:26:03 arch kernel: ftrace: allocating 49689 entries in 195 pages
May 20 19:26:03 arch kernel: ftrace: allocated 195 pages with 4 groups
May 20 19:26:03 arch kernel: Dynamic Preempt: full
May 20 19:26:03 arch kernel: rcu: Preemptible hierarchical RCU implementation.
May 20 19:26:03 arch kernel: rcu:         RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=4.
May 20 19:26:03 arch kernel: rcu:         RCU priority boosting: priority 1 delay 500 ms.
May 20 19:26:03 arch kernel:         Trampoline variant of Tasks RCU enabled.
May 20 19:26:03 arch kernel:         Rude variant of Tasks RCU enabled.
May 20 19:26:03 arch kernel:         Tracing variant of Tasks RCU enabled.
May 20 19:26:03 arch kernel: rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
May 20 19:26:03 arch kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
May 20 19:26:03 arch kernel: RCU Tasks: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
May 20 19:26:03 arch kernel: RCU Tasks Rude: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
May 20 19:26:03 arch kernel: RCU Tasks Trace: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
May 20 19:26:03 arch kernel: NR_IRQS: 20736, nr_irqs: 456, preallocated irqs: 16
May 20 19:26:03 arch kernel: rcu: srcu_init: Setting srcu_struct sizes based on contention.
May 20 19:26:03 arch kernel: kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
May 20 19:26:03 arch kernel: Console: colour dummy device 80x25
May 20 19:26:03 arch kernel: printk: legacy console [tty0] enabled
May 20 19:26:03 arch kernel: ACPI: Core revision 20230628
May 20 19:26:03 arch kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
May 20 19:26:03 arch kernel: APIC: Switch to symmetric I/O mode setup
May 20 19:26:03 arch kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
May 20 19:26:03 arch kernel: tsc: PIT calibration matches HPET. 1 loops
May 20 19:26:03 arch kernel: tsc: Detected 3002.234 MHz processor
May 20 19:26:03 arch kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2b4683ed677, max_idle_ns: 440795336266 ns
May 20 19:26:03 arch kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 6006.65 BogoMIPS (lpj=10007446)
May 20 19:26:03 arch kernel: CPU0: Thermal monitoring enabled (TM2)
May 20 19:26:03 arch kernel: Last level iTLB entries: 4KB 128, 2MB 4, 4MB 4
May 20 19:26:03 arch kernel: Last level dTLB entries: 4KB 256, 2MB 0, 4MB 32, 1GB 0
May 20 19:26:03 arch kernel: process: using mwait in idle threads
May 20 19:26:03 arch kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
May 20 19:26:03 arch kernel: Spectre V2 : Mitigation: Retpolines
May 20 19:26:03 arch kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
May 20 19:26:03 arch kernel: Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
May 20 19:26:03 arch kernel: Speculative Store Bypass: Vulnerable
May 20 19:26:03 arch kernel: MDS: Vulnerable: Clear CPU buffers attempted, no microcode
May 20 19:26:03 arch kernel: MMIO Stale Data: Unknown: No mitigations
May 20 19:26:03 arch kernel: x86/fpu: x87 FPU will use FXSAVE
May 20 19:26:03 arch kernel: Freeing SMP alternatives memory: 40K
May 20 19:26:03 arch kernel: pid_max: default: 32768 minimum: 301
May 20 19:26:03 arch kernel: LSM: initializing lsm=capability,landlock,lockdown,yama,bpf
May 20 19:26:03 arch kernel: landlock: Up and running.
May 20 19:26:03 arch kernel: Yama: becoming mindful.
May 20 19:26:03 arch kernel: LSM support for eBPF active
May 20 19:26:03 arch kernel: Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
May 20 19:26:03 arch kernel: Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
May 20 19:26:03 arch kernel: smpboot: CPU0: Intel(R) Core(TM)2 Duo CPU     E7200  @ 2.53GHz (family: 0x6, model: 0x17, stepping: 0x6)
May 20 19:26:03 arch kernel: Performance Events: PEBS fmt0+, Core2 events, 4-deep LBR, Intel PMU driver.
May 20 19:26:03 arch kernel: ... version:                2
May 20 19:26:03 arch kernel: ... bit width:              40
May 20 19:26:03 arch kernel: ... generic registers:      2
May 20 19:26:03 arch kernel: ... value mask:             000000ffffffffff
May 20 19:26:03 arch kernel: ... max period:             000000007fffffff
May 20 19:26:03 arch kernel: ... fixed-purpose events:   3
May 20 19:26:03 arch kernel: ... event mask:             0000000700000003
May 20 19:26:03 arch kernel: signal: max sigframe size: 1440
May 20 19:26:03 arch kernel: rcu: Hierarchical SRCU implementation.
May 20 19:26:03 arch kernel: rcu:         Max phase no-delay instances is 1000.
May 20 19:26:03 arch kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
May 20 19:26:03 arch kernel: smp: Bringing up secondary CPUs ...
May 20 19:26:03 arch kernel: smpboot: x86: Booting SMP configuration:
May 20 19:26:03 arch kernel: .... node  #0, CPUs:      #1
May 20 19:26:03 arch kernel: smp: Brought up 1 node, 2 CPUs
May 20 19:26:03 arch kernel: smpboot: Total of 2 processors activated (12013.30 BogoMIPS)
May 20 19:26:03 arch kernel: devtmpfs: initialized
May 20 19:26:03 arch kernel: x86/mm: Memory block size: 128MB
May 20 19:26:03 arch kernel: ACPI: PM: Registering ACPI NVS region [mem 0xc7dae000-0xc7deffff] (270336 bytes)
May 20 19:26:03 arch kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
May 20 19:26:03 arch kernel: futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
May 20 19:26:03 arch kernel: pinctrl core: initialized pinctrl subsystem
May 20 19:26:03 arch kernel: PM: RTC time: 22:25:49, date: 2024-05-20
May 20 19:26:03 arch kernel: NET: Registered PF_NETLINK/PF_ROUTE protocol family
May 20 19:26:03 arch kernel: DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations
May 20 19:26:03 arch kernel: DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
May 20 19:26:03 arch kernel: DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
May 20 19:26:03 arch kernel: audit: initializing netlink subsys (disabled)
May 20 19:26:03 arch kernel: audit: type=2000 audit(1716243949.146:1): state=initialized audit_enabled=0 res=1
May 20 19:26:03 arch kernel: thermal_sys: Registered thermal governor 'fair_share'
May 20 19:26:03 arch kernel: thermal_sys: Registered thermal governor 'bang_bang'
May 20 19:26:03 arch kernel: thermal_sys: Registered thermal governor 'step_wise'
May 20 19:26:03 arch kernel: thermal_sys: Registered thermal governor 'user_space'
May 20 19:26:03 arch kernel: thermal_sys: Registered thermal governor 'power_allocator'
May 20 19:26:03 arch kernel: cpuidle: using governor ladder
May 20 19:26:03 arch kernel: cpuidle: using governor menu
May 20 19:26:03 arch kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
May 20 19:26:03 arch kernel: PCI: ECAM [mem 0xe0000000-0xefffffff] (base 0xe0000000) for domain 0000 [bus 00-ff]
May 20 19:26:03 arch kernel: PCI: not using ECAM ([mem 0xe0000000-0xefffffff] not reserved)
May 20 19:26:03 arch kernel: PCI: Using configuration type 1 for base access
May 20 19:26:03 arch kernel: kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
May 20 19:26:03 arch kernel: HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
May 20 19:26:03 arch kernel: HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
May 20 19:26:03 arch kernel: Demotion targets for Node 0: null
May 20 19:26:03 arch kernel: fbcon: Taking over console
May 20 19:26:03 arch kernel: ACPI: Added _OSI(Module Device)
May 20 19:26:03 arch kernel: ACPI: Added _OSI(Processor Device)
May 20 19:26:03 arch kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
May 20 19:26:03 arch kernel: ACPI: Added _OSI(Processor Aggregator Device)
May 20 19:26:03 arch kernel: ACPI: 2 ACPI AML tables successfully acquired and loaded
May 20 19:26:03 arch kernel: ACPI: Dynamic OEM Table Load:
May 20 19:26:03 arch kernel: ACPI: SSDT 0xFFFF8B74C030DC00 000277 (v01 DpgPmm P001Ist  00000011 INTL 20051117)
May 20 19:26:03 arch kernel: ACPI: Dynamic OEM Table Load:
May 20 19:26:03 arch kernel: ACPI: SSDT 0xFFFF8B74C031D000 000277 (v01 DpgPmm P002Ist  00000012 INTL 20051117)
May 20 19:26:03 arch kernel: ACPI: _OSC evaluated successfully for all CPUs
May 20 19:26:03 arch kernel: ACPI: Interpreter enabled
May 20 19:26:03 arch kernel: ACPI: PM: (supports S0 S1 S4 S5)
May 20 19:26:03 arch kernel: ACPI: Using IOAPIC for interrupt routing
May 20 19:26:03 arch kernel: PCI: ECAM [mem 0xe0000000-0xefffffff] (base 0xe0000000) for domain 0000 [bus 00-ff]
May 20 19:26:03 arch kernel: PCI: ECAM [mem 0xe0000000-0xefffffff] reserved as ACPI motherboard resource
May 20 19:26:03 arch kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
May 20 19:26:03 arch kernel: PCI: Using E820 reservations for host bridge windows
May 20 19:26:03 arch kernel: ACPI: Enabled 12 GPEs in block 00 to 1F
May 20 19:26:03 arch kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
May 20 19:26:03 arch kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
May 20 19:26:03 arch kernel: acpi PNP0A08:00: _OSC: OS requested [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
May 20 19:26:03 arch kernel: acpi PNP0A08:00: _OSC: platform willing to grant [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
May 20 19:26:03 arch kernel: acpi PNP0A08:00: _OSC: platform retains control of PCIe features (AE_NOT_FOUND)
May 20 19:26:03 arch kernel: PCI host bridge to bus 0000:00
May 20 19:26:03 arch kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
May 20 19:26:03 arch kernel: pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
May 20 19:26:03 arch kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
May 20 19:26:03 arch kernel: pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000dffff window]
May 20 19:26:03 arch kernel: pci_bus 0000:00: root bus resource [mem 0xc7e00000-0xdfffffff window]
May 20 19:26:03 arch kernel: pci_bus 0000:00: root bus resource [mem 0xf0000000-0xffffffff window]
May 20 19:26:03 arch kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
May 20 19:26:03 arch kernel: pci 0000:00:00.0: [8086:2e30] type 00 class 0x060000 conventional PCI endpoint
May 20 19:26:03 arch kernel: pci 0000:00:00.0: DMAR: Disabling IOMMU for graphics on this chipset
May 20 19:26:03 arch kernel: pci 0000:00:00.0: DMAR: Forcing write-buffer flush capability
May 20 19:26:03 arch kernel: pci 0000:00:02.0: [8086:2e32] type 00 class 0x030000 conventional PCI endpoint
May 20 19:26:03 arch kernel: pci 0000:00:02.0: BAR 0 [mem 0xfe400000-0xfe7fffff 64bit]
May 20 19:26:03 arch kernel: pci 0000:00:02.0: BAR 2 [mem 0xd0000000-0xdfffffff 64bit pref]
May 20 19:26:03 arch kernel: pci 0000:00:02.0: BAR 4 [io  0xdc00-0xdc07]
May 20 19:26:03 arch kernel: pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
May 20 19:26:03 arch kernel: pci 0000:00:1b.0: [8086:27d8] type 00 class 0x040300 PCIe Root Complex Integrated Endpoint
May 20 19:26:03 arch kernel: pci 0000:00:1b.0: BAR 0 [mem 0xfeaf8000-0xfeafbfff 64bit]
May 20 19:26:03 arch kernel: pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
May 20 19:26:03 arch kernel: pci 0000:00:1c.0: [8086:27d0] type 01 class 0x060400 PCIe Root Port
May 20 19:26:03 arch kernel: pci 0000:00:1c.0: PCI bridge to [bus 01]
May 20 19:26:03 arch kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
May 20 19:26:03 arch kernel: pci 0000:00:1c.1: [8086:27d2] type 01 class 0x060400 PCIe Root Port
May 20 19:26:03 arch kernel: pci 0000:00:1c.1: PCI bridge to [bus 02]
May 20 19:26:03 arch kernel: pci 0000:00:1c.1:   bridge window [io  0xe000-0xefff]
May 20 19:26:03 arch kernel: pci 0000:00:1c.1:   bridge window [mem 0xfeb00000-0xfebfffff]
May 20 19:26:03 arch kernel: pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
May 20 19:26:03 arch kernel: pci 0000:00:1c.2: [8086:27d4] type 01 class 0x060400 PCIe Root Port
May 20 19:26:03 arch kernel: pci 0000:00:1c.2: PCI bridge to [bus 03]
May 20 19:26:03 arch kernel: pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
May 20 19:26:03 arch kernel: pci 0000:00:1d.0: [8086:27c8] type 00 class 0x0c0300 conventional PCI endpoint
May 20 19:26:03 arch kernel: pci 0000:00:1d.0: BAR 4 [io  0xd880-0xd89f]
May 20 19:26:03 arch kernel: pci 0000:00:1d.1: [8086:27c9] type 00 class 0x0c0300 conventional PCI endpoint
May 20 19:26:03 arch kernel: pci 0000:00:1d.1: BAR 4 [io  0xd800-0xd81f]
May 20 19:26:03 arch kernel: pci 0000:00:1d.2: [8086:27ca] type 00 class 0x0c0300 conventional PCI endpoint
May 20 19:26:03 arch kernel: pci 0000:00:1d.2: BAR 4 [io  0xd480-0xd49f]
May 20 19:26:03 arch kernel: pci 0000:00:1d.3: [8086:27cb] type 00 class 0x0c0300 conventional PCI endpoint
May 20 19:26:03 arch kernel: pci 0000:00:1d.3: BAR 4 [io  0xd400-0xd41f]
May 20 19:26:03 arch kernel: pci 0000:00:1d.7: [8086:27cc] type 00 class 0x0c0320 conventional PCI endpoint
May 20 19:26:03 arch kernel: pci 0000:00:1d.7: BAR 0 [mem 0xfeaf7c00-0xfeaf7fff]
May 20 19:26:03 arch kernel: pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
May 20 19:26:03 arch kernel: pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401 conventional PCI bridge
May 20 19:26:03 arch kernel: pci 0000:00:1e.0: PCI bridge to [bus 04] (subtractive decode)
May 20 19:26:03 arch kernel: pci 0000:00:1f.0: [8086:27b8] type 00 class 0x060100 conventional PCI endpoint
May 20 19:26:03 arch kernel: pci 0000:00:1f.0: quirk: [io  0x0800-0x087f] claimed by ICH6 ACPI/GPIO/TCO
May 20 19:26:03 arch kernel: pci 0000:00:1f.0: quirk: [io  0x0480-0x04bf] claimed by ICH6 GPIO
May 20 19:26:03 arch kernel: pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0a00 (mask 00ff)
May 20 19:26:03 arch kernel: pci 0000:00:1f.0: ICH7 LPC Generic IO decode 2 PIO at 0a00 (mask 0017)
May 20 19:26:03 arch kernel: pci 0000:00:1f.0: ICH7 LPC Generic IO decode 3 PIO at 4700 (mask 00ff)
May 20 19:26:03 arch kernel: pci 0000:00:1f.1: [8086:27df] type 00 class 0x01018a conventional PCI endpoint
May 20 19:26:03 arch kernel: pci 0000:00:1f.1: BAR 0 [io  0x0000-0x0007]
May 20 19:26:03 arch kernel: pci 0000:00:1f.1: BAR 1 [io  0x0000-0x0003]
May 20 19:26:03 arch kernel: pci 0000:00:1f.1: BAR 2 [io  0x08f0-0x08f7]
May 20 19:26:03 arch kernel: pci 0000:00:1f.1: BAR 3 [io  0x08f8-0x08fb]
May 20 19:26:03 arch kernel: pci 0000:00:1f.1: BAR 4 [io  0xffa0-0xffaf]
May 20 19:26:03 arch kernel: pci 0000:00:1f.1: BAR 0 [io  0x01f0-0x01f7]: legacy IDE quirk
May 20 19:26:03 arch kernel: pci 0000:00:1f.1: BAR 1 [io  0x03f6]: legacy IDE quirk
May 20 19:26:03 arch kernel: pci 0000:00:1f.1: BAR 2 [io  0x0170-0x0177]: legacy IDE quirk
May 20 19:26:03 arch kernel: pci 0000:00:1f.1: BAR 3 [io  0x0376]: legacy IDE quirk
May 20 19:26:03 arch kernel: pci 0000:00:1f.2: [8086:27c0] type 00 class 0x01018f conventional PCI endpoint
May 20 19:26:03 arch kernel: pci 0000:00:1f.2: BAR 0 [io  0xd080-0xd087]
May 20 19:26:03 arch kernel: pci 0000:00:1f.2: BAR 1 [io  0xd000-0xd003]
May 20 19:26:03 arch kernel: pci 0000:00:1f.2: BAR 2 [io  0xcc00-0xcc07]
May 20 19:26:03 arch kernel: pci 0000:00:1f.2: BAR 3 [io  0xc880-0xc883]
May 20 19:26:03 arch kernel: pci 0000:00:1f.2: BAR 4 [io  0xc800-0xc80f]
May 20 19:26:03 arch kernel: pci 0000:00:1f.2: PME# supported from D3hot
May 20 19:26:03 arch kernel: pci 0000:00:1f.3: [8086:27da] type 00 class 0x0c0500 conventional PCI endpoint
May 20 19:26:03 arch kernel: pci 0000:00:1f.3: BAR 4 [io  0x0400-0x041f]
May 20 19:26:03 arch kernel: pci 0000:00:1c.0: PCI bridge to [bus 01]
May 20 19:26:03 arch kernel: pci 0000:02:00.0: [1969:1062] type 00 class 0x020000 PCIe Endpoint
May 20 19:26:03 arch kernel: pci 0000:02:00.0: BAR 0 [mem 0xfebc0000-0xfebfffff 64bit]
May 20 19:26:03 arch kernel: pci 0000:02:00.0: BAR 2 [io  0xec00-0xec7f]
May 20 19:26:03 arch kernel: pci 0000:02:00.0: [Firmware Bug]: disabling VPD access (can't determine size of non-standard VPD format)
May 20 19:26:03 arch kernel: pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
May 20 19:26:03 arch kernel: pci 0000:00:1c.1: PCI bridge to [bus 02]
May 20 19:26:03 arch kernel: pci 0000:00:1c.2: PCI bridge to [bus 03]
May 20 19:26:03 arch kernel: pci_bus 0000:04: extended config space not accessible
May 20 19:26:03 arch kernel: pci 0000:00:1e.0: PCI bridge to [bus 04] (subtractive decode)
May 20 19:26:03 arch kernel: pci 0000:00:1e.0:   bridge window [io  0x0000-0x0cf7 window] (subtractive decode)
May 20 19:26:03 arch kernel: pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff window] (subtractive decode)
May 20 19:26:03 arch kernel: pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
May 20 19:26:03 arch kernel: pci 0000:00:1e.0:   bridge window [mem 0x000d0000-0x000dffff window] (subtractive decode)
May 20 19:26:03 arch kernel: pci 0000:00:1e.0:   bridge window [mem 0xc7e00000-0xdfffffff window] (subtractive decode)
May 20 19:26:03 arch kernel: pci 0000:00:1e.0:   bridge window [mem 0xf0000000-0xffffffff window] (subtractive decode)
May 20 19:26:03 arch kernel: ACPI: PCI: Interrupt link LNKA configured for IRQ 10
May 20 19:26:03 arch kernel: ACPI: PCI: Interrupt link LNKB configured for IRQ 11
May 20 19:26:03 arch kernel: ACPI: PCI: Interrupt link LNKC configured for IRQ 6
May 20 19:26:03 arch kernel: ACPI: PCI: Interrupt link LNKD configured for IRQ 10
May 20 19:26:03 arch kernel: ACPI: PCI: Interrupt link LNKE configured for IRQ 0
May 20 19:26:03 arch kernel: ACPI: PCI: Interrupt link LNKE disabled
May 20 19:26:03 arch kernel: ACPI: PCI: Interrupt link LNKF configured for IRQ 0
May 20 19:26:03 arch kernel: ACPI: PCI: Interrupt link LNKF disabled
May 20 19:26:03 arch kernel: ACPI: PCI: Interrupt link LNKG configured for IRQ 0
May 20 19:26:03 arch kernel: ACPI: PCI: Interrupt link LNKG disabled
May 20 19:26:03 arch kernel: ACPI: PCI: Interrupt link LNKH configured for IRQ 5
May 20 19:26:03 arch kernel: iommu: Default domain type: Translated
May 20 19:26:03 arch kernel: iommu: DMA domain TLB invalidation policy: lazy mode
May 20 19:26:03 arch kernel: SCSI subsystem initialized
May 20 19:26:03 arch kernel: libata version 3.00 loaded.
May 20 19:26:03 arch kernel: ACPI: bus type USB registered
May 20 19:26:03 arch kernel: usbcore: registered new interface driver usbfs
May 20 19:26:03 arch kernel: usbcore: registered new interface driver hub
May 20 19:26:03 arch kernel: usbcore: registered new device driver usb
May 20 19:26:03 arch kernel: EDAC MC: Ver: 3.0.0
May 20 19:26:03 arch kernel: NetLabel: Initializing
May 20 19:26:03 arch kernel: NetLabel:  domain hash size = 128
May 20 19:26:03 arch kernel: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
May 20 19:26:03 arch kernel: NetLabel:  unlabeled traffic allowed by default
May 20 19:26:03 arch kernel: mctp: management component transport protocol core
May 20 19:26:03 arch kernel: NET: Registered PF_MCTP protocol family
May 20 19:26:03 arch kernel: PCI: Using ACPI for IRQ routing
May 20 19:26:03 arch kernel: PCI: pci_cache_line_size set to 64 bytes
May 20 19:26:03 arch kernel: resource: Expanded resource Reserved due to conflict with PCI Bus 0000:00
May 20 19:26:03 arch kernel: e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
May 20 19:26:03 arch kernel: e820: reserve RAM buffer [mem 0xc7da0000-0xc7ffffff]
May 20 19:26:03 arch kernel: pci 0000:00:02.0: vgaarb: setting as boot VGA device
May 20 19:26:03 arch kernel: pci 0000:00:02.0: vgaarb: bridge control possible
May 20 19:26:03 arch kernel: pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
May 20 19:26:03 arch kernel: vgaarb: loaded
May 20 19:26:03 arch kernel: hpet: 3 channels of 0 reserved for per-cpu timers
May 20 19:26:03 arch kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
May 20 19:26:03 arch kernel: hpet0: 3 comparators, 64-bit 14.318180 MHz counter
May 20 19:26:03 arch kernel: clocksource: Switched to clocksource tsc-early
May 20 19:26:03 arch kernel: VFS: Disk quotas dquot_6.6.0
May 20 19:26:03 arch kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
May 20 19:26:03 arch kernel: pnp: PnP ACPI init
May 20 19:26:03 arch kernel: system 00:00: [mem 0xfed14000-0xfed19fff] has been reserved
May 20 19:26:03 arch kernel: system 00:00: [mem 0xfed90000-0xfed93fff] has been reserved
May 20 19:26:03 arch kernel: pnp 00:02: [dma 0 disabled]
May 20 19:26:03 arch kernel: pnp 00:03: [dma 0 disabled]
May 20 19:26:03 arch kernel: pnp 00:04: [dma 0 disabled]
May 20 19:26:03 arch kernel: system 00:05: [io  0x04d0-0x04d1] has been reserved
May 20 19:26:03 arch kernel: system 00:05: [io  0x0800-0x087f] has been reserved
May 20 19:26:03 arch kernel: system 00:05: [io  0x0480-0x04bf] has been reserved
May 20 19:26:03 arch kernel: system 00:05: [mem 0xfed1c000-0xfed1ffff] has been reserved
May 20 19:26:03 arch kernel: system 00:05: [mem 0xfed20000-0xfed8ffff] has been reserved
May 20 19:26:03 arch kernel: system 00:05: [mem 0xffa00000-0xffffffff] could not be reserved
May 20 19:26:03 arch kernel: system 00:06: [mem 0xffc00000-0xffefffff] has been reserved
May 20 19:26:03 arch kernel: system 00:07: [mem 0xfec00000-0xfec00fff] could not be reserved
May 20 19:26:03 arch kernel: system 00:07: [mem 0xfee00000-0xfee00fff] has been reserved
May 20 19:26:03 arch kernel: system 00:08: [io  0x0a00-0x0adf] has been reserved
May 20 19:26:03 arch kernel: system 00:08: [io  0x0ae0-0x0aef] has been reserved
May 20 19:26:03 arch kernel: system 00:09: [mem 0xe0000000-0xefffffff] has been reserved
May 20 19:26:03 arch kernel: pnp 00:0a: disabling [mem 0x000c0000-0x000cffff] because it overlaps 0000:00:02.0 BAR 6 [mem 0x000c0000-0x000dffff]
May 20 19:26:03 arch kernel: system 00:0a: [mem 0x00000000-0x0009ffff] could not be reserved
May 20 19:26:03 arch kernel: system 00:0a: [mem 0x000e0000-0x000fffff] could not be reserved
May 20 19:26:03 arch kernel: system 00:0a: [mem 0x00100000-0xc7dfffff] could not be reserved
May 20 19:26:03 arch kernel: pnp: PnP ACPI: found 11 devices
May 20 19:26:03 arch kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
May 20 19:26:03 arch kernel: NET: Registered PF_INET protocol family
May 20 19:26:03 arch kernel: IP idents hash table entries: 65536 (order: 7, 524288 bytes, linear)
May 20 19:26:03 arch kernel: tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear)
May 20 19:26:03 arch kernel: Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
May 20 19:26:03 arch kernel: TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear)
May 20 19:26:03 arch kernel: TCP bind hash table entries: 32768 (order: 8, 1048576 bytes, linear)
May 20 19:26:03 arch kernel: TCP: Hash tables configured (established 32768 bind 32768)
May 20 19:26:03 arch kernel: MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear)
May 20 19:26:03 arch kernel: UDP hash table entries: 2048 (order: 4, 65536 bytes, linear)
May 20 19:26:03 arch kernel: UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear)
May 20 19:26:03 arch kernel: NET: Registered PF_UNIX/PF_LOCAL protocol family
May 20 19:26:03 arch kernel: NET: Registered PF_XDP protocol family
May 20 19:26:03 arch kernel: pci 0000:00:1c.0: bridge window [io  0x1000-0x0fff] to [bus 01] add_size 1000
May 20 19:26:03 arch kernel: pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000 add_align 100000
May 20 19:26:03 arch kernel: pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff] to [bus 01] add_size 200000 add_align 100000
May 20 19:26:03 arch kernel: pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000 add_align 100000
May 20 19:26:03 arch kernel: pci 0000:00:1c.2: bridge window [io  0x1000-0x0fff] to [bus 03] add_size 1000
May 20 19:26:03 arch kernel: pci 0000:00:1c.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000 add_align 100000
May 20 19:26:03 arch kernel: pci 0000:00:1c.2: bridge window [mem 0x00100000-0x000fffff] to [bus 03] add_size 200000 add_align 100000
May 20 19:26:03 arch kernel: resource: avoiding allocation from e820 entry [mem 0xc7df0000-0xcfffffff]
May 20 19:26:03 arch kernel: pci 0000:00:1c.0: bridge window [mem 0xf0000000-0xf01fffff]: assigned
May 20 19:26:03 arch kernel: resource: avoiding allocation from e820 entry [mem 0xc7df0000-0xcfffffff]
May 20 19:26:03 arch kernel: pci 0000:00:1c.0: bridge window [mem 0xf0200000-0xf03fffff 64bit pref]: assigned
May 20 19:26:03 arch kernel: resource: avoiding allocation from e820 entry [mem 0xc7df0000-0xcfffffff]
May 20 19:26:03 arch kernel: pci 0000:00:1c.1: bridge window [mem 0xf0400000-0xf05fffff 64bit pref]: assigned
May 20 19:26:03 arch kernel: resource: avoiding allocation from e820 entry [mem 0xc7df0000-0xcfffffff]
May 20 19:26:03 arch kernel: pci 0000:00:1c.2: bridge window [mem 0xf0600000-0xf07fffff]: assigned
May 20 19:26:03 arch kernel: resource: avoiding allocation from e820 entry [mem 0xc7df0000-0xcfffffff]
May 20 19:26:03 arch kernel: pci 0000:00:1c.2: bridge window [mem 0xf0800000-0xf09fffff 64bit pref]: assigned
May 20 19:26:03 arch kernel: pci 0000:00:1c.0: bridge window [io  0x1000-0x1fff]: assigned
May 20 19:26:03 arch kernel: pci 0000:00:1c.2: bridge window [io  0x2000-0x2fff]: assigned
May 20 19:26:03 arch kernel: pci 0000:00:1c.0: PCI bridge to [bus 01]
May 20 19:26:03 arch kernel: pci 0000:00:1c.0:   bridge window [io  0x1000-0x1fff]
May 20 19:26:03 arch kernel: pci 0000:00:1c.0:   bridge window [mem 0xf0000000-0xf01fffff]
May 20 19:26:03 arch kernel: pci 0000:00:1c.0:   bridge window [mem 0xf0200000-0xf03fffff 64bit pref]
May 20 19:26:03 arch kernel: pci 0000:00:1c.1: PCI bridge to [bus 02]
May 20 19:26:03 arch kernel: pci 0000:00:1c.1:   bridge window [io  0xe000-0xefff]
May 20 19:26:03 arch kernel: pci 0000:00:1c.1:   bridge window [mem 0xfeb00000-0xfebfffff]
May 20 19:26:03 arch kernel: pci 0000:00:1c.1:   bridge window [mem 0xf0400000-0xf05fffff 64bit pref]
May 20 19:26:03 arch kernel: pci 0000:00:1c.2: PCI bridge to [bus 03]
May 20 19:26:03 arch kernel: pci 0000:00:1c.2:   bridge window [io  0x2000-0x2fff]
May 20 19:26:03 arch kernel: pci 0000:00:1c.2:   bridge window [mem 0xf0600000-0xf07fffff]
May 20 19:26:03 arch kernel: pci 0000:00:1c.2:   bridge window [mem 0xf0800000-0xf09fffff 64bit pref]
May 20 19:26:03 arch kernel: pci 0000:00:1e.0: PCI bridge to [bus 04]
May 20 19:26:03 arch kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
May 20 19:26:03 arch kernel: pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
May 20 19:26:03 arch kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
May 20 19:26:03 arch kernel: pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000dffff window]
May 20 19:26:03 arch kernel: pci_bus 0000:00: resource 8 [mem 0xc7e00000-0xdfffffff window]
May 20 19:26:03 arch kernel: pci_bus 0000:00: resource 9 [mem 0xf0000000-0xffffffff window]
May 20 19:26:03 arch kernel: pci_bus 0000:01: resource 0 [io  0x1000-0x1fff]
May 20 19:26:03 arch kernel: pci_bus 0000:01: resource 1 [mem 0xf0000000-0xf01fffff]
May 20 19:26:03 arch kernel: pci_bus 0000:01: resource 2 [mem 0xf0200000-0xf03fffff 64bit pref]
May 20 19:26:03 arch kernel: pci_bus 0000:02: resource 0 [io  0xe000-0xefff]
May 20 19:26:03 arch kernel: pci_bus 0000:02: resource 1 [mem 0xfeb00000-0xfebfffff]
May 20 19:26:03 arch kernel: pci_bus 0000:02: resource 2 [mem 0xf0400000-0xf05fffff 64bit pref]
May 20 19:26:03 arch kernel: pci_bus 0000:03: resource 0 [io  0x2000-0x2fff]
May 20 19:26:03 arch kernel: pci_bus 0000:03: resource 1 [mem 0xf0600000-0xf07fffff]
May 20 19:26:03 arch kernel: pci_bus 0000:03: resource 2 [mem 0xf0800000-0xf09fffff 64bit pref]
May 20 19:26:03 arch kernel: pci_bus 0000:04: resource 4 [io  0x0000-0x0cf7 window]
May 20 19:26:03 arch kernel: pci_bus 0000:04: resource 5 [io  0x0d00-0xffff window]
May 20 19:26:03 arch kernel: pci_bus 0000:04: resource 6 [mem 0x000a0000-0x000bffff window]
May 20 19:26:03 arch kernel: pci_bus 0000:04: resource 7 [mem 0x000d0000-0x000dffff window]
May 20 19:26:03 arch kernel: pci_bus 0000:04: resource 8 [mem 0xc7e00000-0xdfffffff window]
May 20 19:26:03 arch kernel: pci_bus 0000:04: resource 9 [mem 0xf0000000-0xffffffff window]
May 20 19:26:03 arch kernel: PCI: CLS 32 bytes, default 64
May 20 19:26:03 arch kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
May 20 19:26:03 arch kernel: software IO TLB: mapped [mem 0x00000000c3da0000-0x00000000c7da0000] (64MB)
May 20 19:26:03 arch kernel: Trying to unpack rootfs image as initramfs...
May 20 19:26:03 arch kernel: Initialise system trusted keyrings
May 20 19:26:03 arch kernel: Key type blacklist registered
May 20 19:26:03 arch kernel: workingset: timestamp_bits=41 max_order=20 bucket_order=0
May 20 19:26:03 arch kernel: zbud: loaded
May 20 19:26:03 arch kernel: fuse: init (API version 7.40)
May 20 19:26:03 arch kernel: integrity: Platform Keyring initialized
May 20 19:26:03 arch kernel: integrity: Machine keyring initialized
May 20 19:26:03 arch kernel: Key type asymmetric registered
May 20 19:26:03 arch kernel: Asymmetric key parser 'x509' registered
May 20 19:26:03 arch kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
May 20 19:26:03 arch kernel: io scheduler mq-deadline registered
May 20 19:26:03 arch kernel: io scheduler kyber registered
May 20 19:26:03 arch kernel: io scheduler bfq registered
May 20 19:26:03 arch kernel: pcieport 0000:00:1c.0: enabling device (0104 -> 0107)
May 20 19:26:03 arch kernel: pcieport 0000:00:1c.2: enabling device (0104 -> 0107)
May 20 19:26:03 arch kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
May 20 19:26:03 arch kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
May 20 19:26:03 arch kernel: ACPI: button: Power Button [PWRB]
May 20 19:26:03 arch kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
May 20 19:26:03 arch kernel: ACPI: button: Power Button [PWRF]
May 20 19:26:03 arch kernel: Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
May 20 19:26:03 arch kernel: 00:02: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
May 20 19:26:03 arch kernel: 00:03: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
May 20 19:26:03 arch kernel: Non-volatile memory driver v1.3
May 20 19:26:03 arch kernel: Linux agpgart interface v0.103
May 20 19:26:03 arch kernel: ACPI: bus type drm_connector registered
May 20 19:26:03 arch kernel: ehci-pci 0000:00:1d.7: EHCI Host Controller
May 20 19:26:03 arch kernel: ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 1
May 20 19:26:03 arch kernel: ehci-pci 0000:00:1d.7: debug port 1
May 20 19:26:03 arch kernel: ehci-pci 0000:00:1d.7: irq 23, io mem 0xfeaf7c00
May 20 19:26:03 arch kernel: ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
May 20 19:26:03 arch kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.09
May 20 19:26:03 arch kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
May 20 19:26:03 arch kernel: usb usb1: Product: EHCI Host Controller
May 20 19:26:03 arch kernel: usb usb1: Manufacturer: Linux 6.9.1-arch1-1 ehci_hcd
May 20 19:26:03 arch kernel: usb usb1: SerialNumber: 0000:00:1d.7
May 20 19:26:03 arch kernel: hub 1-0:1.0: USB hub found
May 20 19:26:03 arch kernel: hub 1-0:1.0: 8 ports detected
May 20 19:26:03 arch kernel: uhci_hcd 0000:00:1d.0: UHCI Host Controller
May 20 19:26:03 arch kernel: uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
May 20 19:26:03 arch kernel: uhci_hcd 0000:00:1d.0: detected 2 ports
May 20 19:26:03 arch kernel: uhci_hcd 0000:00:1d.0: irq 23, io port 0x0000d880
May 20 19:26:03 arch kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.09
May 20 19:26:03 arch kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
May 20 19:26:03 arch kernel: usb usb2: Product: UHCI Host Controller
May 20 19:26:03 arch kernel: usb usb2: Manufacturer: Linux 6.9.1-arch1-1 uhci_hcd
May 20 19:26:03 arch kernel: usb usb2: SerialNumber: 0000:00:1d.0
May 20 19:26:03 arch kernel: hub 2-0:1.0: USB hub found
May 20 19:26:03 arch kernel: hub 2-0:1.0: 2 ports detected
May 20 19:26:03 arch kernel: uhci_hcd 0000:00:1d.1: UHCI Host Controller
May 20 19:26:03 arch kernel: uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
May 20 19:26:03 arch kernel: uhci_hcd 0000:00:1d.1: detected 2 ports
May 20 19:26:03 arch kernel: uhci_hcd 0000:00:1d.1: irq 19, io port 0x0000d800
May 20 19:26:03 arch kernel: usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.09
May 20 19:26:03 arch kernel: usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
May 20 19:26:03 arch kernel: usb usb3: Product: UHCI Host Controller
May 20 19:26:03 arch kernel: usb usb3: Manufacturer: Linux 6.9.1-arch1-1 uhci_hcd
May 20 19:26:03 arch kernel: usb usb3: SerialNumber: 0000:00:1d.1
May 20 19:26:03 arch kernel: hub 3-0:1.0: USB hub found
May 20 19:26:03 arch kernel: hub 3-0:1.0: 2 ports detected
May 20 19:26:03 arch kernel: uhci_hcd 0000:00:1d.2: UHCI Host Controller
May 20 19:26:03 arch kernel: uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
May 20 19:26:03 arch kernel: uhci_hcd 0000:00:1d.2: detected 2 ports
May 20 19:26:03 arch kernel: uhci_hcd 0000:00:1d.2: irq 18, io port 0x0000d480
May 20 19:26:03 arch kernel: usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.09
May 20 19:26:03 arch kernel: usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
May 20 19:26:03 arch kernel: usb usb4: Product: UHCI Host Controller
May 20 19:26:03 arch kernel: usb usb4: Manufacturer: Linux 6.9.1-arch1-1 uhci_hcd
May 20 19:26:03 arch kernel: usb usb4: SerialNumber: 0000:00:1d.2
May 20 19:26:03 arch kernel: hub 4-0:1.0: USB hub found
May 20 19:26:03 arch kernel: hub 4-0:1.0: 2 ports detected
May 20 19:26:03 arch kernel: uhci_hcd 0000:00:1d.3: UHCI Host Controller
May 20 19:26:03 arch kernel: uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
May 20 19:26:03 arch kernel: uhci_hcd 0000:00:1d.3: detected 2 ports
May 20 19:26:03 arch kernel: uhci_hcd 0000:00:1d.3: irq 16, io port 0x0000d400
May 20 19:26:03 arch kernel: usb usb5: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.09
May 20 19:26:03 arch kernel: usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
May 20 19:26:03 arch kernel: usb usb5: Product: UHCI Host Controller
May 20 19:26:03 arch kernel: usb usb5: Manufacturer: Linux 6.9.1-arch1-1 uhci_hcd
May 20 19:26:03 arch kernel: usb usb5: SerialNumber: 0000:00:1d.3
May 20 19:26:03 arch kernel: hub 5-0:1.0: USB hub found
May 20 19:26:03 arch kernel: hub 5-0:1.0: 2 ports detected
May 20 19:26:03 arch kernel: usbcore: registered new interface driver usbserial_generic
May 20 19:26:03 arch kernel: usbserial: USB Serial support registered for generic
May 20 19:26:03 arch kernel: rtc_cmos 00:01: RTC can wake from S4
May 20 19:26:03 arch kernel: rtc_cmos 00:01: registered as rtc0
May 20 19:26:03 arch kernel: rtc_cmos 00:01: setting system clock to 2024-05-20T22:25:49 UTC (1716243949)
May 20 19:26:03 arch kernel: rtc_cmos 00:01: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
May 20 19:26:03 arch kernel: intel_pstate: CPU model not supported
May 20 19:26:03 arch kernel: ledtrig-cpu: registered to indicate activity on CPUs
May 20 19:26:03 arch kernel: [drm] Initialized simpledrm 1.0.0 20200625 for simple-framebuffer.0 on minor 0
May 20 19:26:03 arch kernel: Console: switching to colour frame buffer device 160x64
May 20 19:26:03 arch kernel: simple-framebuffer simple-framebuffer.0: [drm] fb0: simpledrmdrmfb frame buffer device
May 20 19:26:03 arch kernel: hid: raw HID events driver (C) Jiri Kosina
May 20 19:26:03 arch kernel: drop_monitor: Initializing network drop monitor service
May 20 19:26:03 arch kernel: NET: Registered PF_INET6 protocol family
May 20 19:26:03 arch kernel: Freeing initrd memory: 23004K
May 20 19:26:03 arch kernel: Segment Routing with IPv6
May 20 19:26:03 arch kernel: RPL Segment Routing with IPv6
May 20 19:26:03 arch kernel: In-situ OAM (IOAM) with IPv6
May 20 19:26:03 arch kernel: NET: Registered PF_PACKET protocol family
May 20 19:26:03 arch kernel: microcode: Current revision: 0x0000060f
May 20 19:26:03 arch kernel: microcode: Updated early from: 0x0000060c
May 20 19:26:03 arch kernel: IPI shorthand broadcast: enabled
May 20 19:26:03 arch kernel: sched_clock: Marking stable (315047565, -19991639)->(323777370, -28721444)
May 20 19:26:03 arch kernel: Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level
May 20 19:26:03 arch kernel: registered taskstats version 1
May 20 19:26:03 arch kernel: Loading compiled-in X.509 certificates
May 20 19:26:03 arch kernel: Loaded X.509 cert 'Build time autogenerated kernel key: be4bbad69eed7dd060ec4b225d099c7ad90dc57b'
May 20 19:26:03 arch kernel: Key type .fscrypt registered
May 20 19:26:03 arch kernel: Key type fscrypt-provisioning registered
May 20 19:26:03 arch kernel: PM:   Magic number: 8:207:452
May 20 19:26:03 arch kernel: RAS: Correctable Errors collector initialized.
May 20 19:26:03 arch kernel: clk: Disabling unused clocks
May 20 19:26:03 arch kernel: PM: genpd: Disabling unused power domains
May 20 19:26:03 arch kernel: Freeing unused decrypted memory: 2028K
May 20 19:26:03 arch kernel: Freeing unused kernel image (initmem) memory: 3408K
May 20 19:26:03 arch kernel: Write protecting the kernel read-only data: 32768k
May 20 19:26:03 arch kernel: Freeing unused kernel image (rodata/data gap) memory: 1060K
May 20 19:26:03 arch kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
May 20 19:26:03 arch kernel: rodata_test: all tests were successful
May 20 19:26:03 arch kernel: x86/mm: Checking user space page tables
May 20 19:26:03 arch kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
May 20 19:26:03 arch kernel: Run /init as init process
May 20 19:26:03 arch kernel:   with arguments:
May 20 19:26:03 arch kernel:     /init
May 20 19:26:03 arch kernel:   with environment:
May 20 19:26:03 arch kernel:     HOME=/
May 20 19:26:03 arch kernel:     TERM=linux
May 20 19:26:03 arch kernel:     BOOT_IMAGE=/boot/vmlinuz-linux
May 20 19:26:03 arch kernel: ata_piix 0000:00:1f.1: version 2.13
May 20 19:26:03 arch kernel: scsi host0: ata_piix
May 20 19:26:03 arch kernel: scsi host1: ata_piix
May 20 19:26:03 arch kernel: ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xffa0 irq 14 lpm-pol 0
May 20 19:26:03 arch kernel: ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xffa8 irq 15 lpm-pol 0
May 20 19:26:03 arch kernel: ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
May 20 19:26:03 arch kernel: scsi host2: ata_piix
May 20 19:26:03 arch kernel: scsi host3: ata_piix
May 20 19:26:03 arch kernel: ata3: SATA max UDMA/133 cmd 0xd080 ctl 0xd000 bmdma 0xc800 irq 19 lpm-pol 0
May 20 19:26:03 arch kernel: ata4: SATA max UDMA/133 cmd 0xcc00 ctl 0xc880 bmdma 0xc808 irq 19 lpm-pol 0
May 20 19:26:03 arch kernel: ata4: found unknown device (class 0)
May 20 19:26:03 arch kernel: ata4.01: ATA-8: ST500DM002-1BD142, KC48, max UDMA/133
May 20 19:26:03 arch kernel: ata4.01: 976773168 sectors, multi 16: LBA48 NCQ (depth 0/32)
May 20 19:26:03 arch kernel: scsi 3:0:1:0: Direct-Access     ATA      ST500DM002-1BD14 KC48 PQ: 0 ANSI: 5
May 20 19:26:03 arch kernel: sd 3:0:1:0: [sda] 976773168 512-byte logical blocks: (500 GB/466 GiB)
May 20 19:26:03 arch kernel: sd 3:0:1:0: [sda] 4096-byte physical blocks
May 20 19:26:03 arch kernel: sd 3:0:1:0: [sda] Write Protect is off
May 20 19:26:03 arch kernel: sd 3:0:1:0: [sda] Mode Sense: 00 3a 00 00
May 20 19:26:03 arch kernel: sd 3:0:1:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
May 20 19:26:03 arch kernel: sd 3:0:1:0: [sda] Preferred minimum I/O size 4096 bytes
May 20 19:26:03 arch kernel: usb 2-1: new low-speed USB device number 2 using uhci_hcd
May 20 19:26:03 arch kernel:  sda: sda1 sda2 sda4 < sda5 sda6 >
May 20 19:26:03 arch kernel: sd 3:0:1:0: [sda] Attached SCSI disk
May 20 19:26:03 arch kernel: usb 2-1: New USB device found, idVendor=0458, idProduct=003a, bcdDevice= 1.00
May 20 19:26:03 arch kernel: usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
May 20 19:26:03 arch kernel: usb 2-1: Product: USB Optical Mouse
May 20 19:26:03 arch kernel: usb 2-1: Manufacturer: Genius
May 20 19:26:03 arch kernel: tsc: Refined TSC clocksource calibration: 3002.251 MHz
May 20 19:26:03 arch kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2b4693ee198, max_idle_ns: 440795253227 ns
May 20 19:26:03 arch kernel: clocksource: Switched to clocksource tsc
May 20 19:26:03 arch kernel: usb usb1-port2: over-current condition
May 20 19:26:03 arch kernel: pci 0000:00:00.0: Intel G41 Chipset
May 20 19:26:03 arch kernel: resource: avoiding allocation from e820 entry [mem 0xc7df0000-0xcfffffff]
May 20 19:26:03 arch kernel: pci 0000:00:00.0: detected gtt size: 2097152K total, 262144K mappable
May 20 19:26:03 arch kernel: pci 0000:00:00.0: detected 131072K stolen memory
May 20 19:26:03 arch kernel: usbcore: registered new interface driver usbhid
May 20 19:26:03 arch kernel: usbhid: USB HID core driver
May 20 19:26:03 arch kernel: usb 2-2: new low-speed USB device number 3 using uhci_hcd
May 20 19:26:03 arch kernel: Console: switching to colour dummy device 80x25
May 20 19:26:03 arch kernel: input: Genius USB Optical Mouse as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1:1.0/0003:0458:003A.0001/input/input2
May 20 19:26:03 arch kernel: hid-generic 0003:0458:003A.0001: input,hidraw0: USB HID v1.11 Mouse [Genius USB Optical Mouse] on usb-0000:00:1d.0-1/input0
May 20 19:26:03 arch kernel: i915 0000:00:02.0: vgaarb: deactivate vga console
May 20 19:26:03 arch kernel: [drm] Initialized i915 1.6.0 20230929 for 0000:00:02.0 on minor 1
May 20 19:26:03 arch kernel: fbcon: i915drmfb (fb0) is primary device
May 20 19:26:03 arch kernel: Console: switching to colour frame buffer device 160x64
May 20 19:26:03 arch kernel: i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
May 20 19:26:03 arch kernel: usb 2-2: New USB device found, idVendor=1a2c, idProduct=2d23, bcdDevice= 1.10
May 20 19:26:03 arch kernel: usb 2-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
May 20 19:26:03 arch kernel: usb 2-2: Product: USB Keyboard
May 20 19:26:03 arch kernel: usb 2-2: Manufacturer: USB
May 20 19:26:03 arch kernel: input: USB USB Keyboard as /devices/pci0000:00/0000:00:1d.0/usb2/2-2/2-2:1.0/0003:1A2C:2D23.0002/input/input3
May 20 19:26:03 arch kernel: hid-generic 0003:1A2C:2D23.0002: input,hidraw1: USB HID v1.10 Keyboard [USB USB Keyboard] on usb-0000:00:1d.0-2/input0
May 20 19:26:03 arch kernel: input: USB USB Keyboard Consumer Control as /devices/pci0000:00/0000:00:1d.0/usb2/2-2/2-2:1.1/0003:1A2C:2D23.0003/input/input4
May 20 19:26:03 arch kernel: input: USB USB Keyboard System Control as /devices/pci0000:00/0000:00:1d.0/usb2/2-2/2-2:1.1/0003:1A2C:2D23.0003/input/input5
May 20 19:26:03 arch kernel: hid-generic 0003:1A2C:2D23.0003: input,hidraw2: USB HID v1.10 Device [USB USB Keyboard] on usb-0000:00:1d.0-2/input1
May 20 19:26:03 arch kernel: usb usb1-port4: over-current condition
May 20 19:26:03 arch kernel: usb 1-7: new high-speed USB device number 4 using ehci-pci
May 20 19:26:03 arch kernel: usb 1-7: New USB device found, idVendor=0cf3, idProduct=9271, bcdDevice= 1.08
May 20 19:26:03 arch kernel: usb 1-7: New USB device strings: Mfr=16, Product=32, SerialNumber=48
May 20 19:26:03 arch kernel: usb 1-7: Product: USB2.0 WLAN
May 20 19:26:03 arch kernel: usb 1-7: Manufacturer: ATHEROS
May 20 19:26:03 arch kernel: usb 1-7: SerialNumber: 12345
May 20 19:26:03 arch kernel: EXT4-fs (sda5): mounted filesystem c88c5185-df9b-462e-8cea-9a0c7393ae50 r/w with ordered data mode. Quota mode: none.
May 20 19:26:03 arch kernel: random: crng init done
May 20 19:26:03 arch systemd[1]: systemd 255.6-1-arch running in system mode (+PAM +AUDIT -SELINUX -APPARMOR -IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +XKBCOMMON +UTMP -SYSVINIT default-hierarchy=unified)
May 20 19:26:03 arch systemd[1]: Detected architecture x86-64.
May 20 19:26:03 arch systemd[1]: Hostname set to <arch>.
May 20 19:26:03 arch systemd[1]: bpf-lsm: LSM BPF program attached
May 20 19:26:03 arch kernel: zram: Added device: zram0
May 20 19:26:03 arch systemd[1]: Queued start job for default target Graphical Interface.
May 20 19:26:03 arch systemd[1]: Created slice Slice /system/dirmngr.
May 20 19:26:03 arch systemd[1]: Created slice Slice /system/getty.
May 20 19:26:03 arch systemd[1]: Created slice Slice /system/gpg-agent.
May 20 19:26:03 arch systemd[1]: Created slice Slice /system/gpg-agent-browser.
May 20 19:26:03 arch systemd[1]: Created slice Slice /system/gpg-agent-extra.
May 20 19:26:03 arch systemd[1]: Created slice Slice /system/gpg-agent-ssh.
May 20 19:26:03 arch systemd[1]: Created slice Slice /system/keyboxd.
May 20 19:26:03 arch systemd[1]: Created slice Slice /system/modprobe.
May 20 19:26:03 arch systemd[1]: Created slice Slice /system/systemd-zram-setup.
May 20 19:26:03 arch systemd[1]: Created slice User and Session Slice.
May 20 19:26:03 arch systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
May 20 19:26:03 arch systemd[1]: Started Forward Password Requests to Wall Directory Watch.
May 20 19:26:03 arch systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
May 20 19:26:03 arch systemd[1]: Expecting device /dev/disk/by-uuid/8674be30-c4fc-46a3-b83f-77e5c6188eaa...
May 20 19:26:03 arch systemd[1]: Expecting device /dev/zram0...
May 20 19:26:03 arch systemd[1]: Reached target Local Encrypted Volumes.
May 20 19:26:03 arch systemd[1]: Reached target Login Prompts.
May 20 19:26:03 arch systemd[1]: Reached target Local Integrity Protected Volumes.
May 20 19:26:03 arch systemd[1]: Reached target Path Units.
May 20 19:26:03 arch systemd[1]: Reached target Remote File Systems.
May 20 19:26:03 arch systemd[1]: Reached target Slice Units.
May 20 19:26:03 arch systemd[1]: Reached target Local Verity Protected Volumes.
May 20 19:26:03 arch systemd[1]: Listening on Device-mapper event daemon FIFOs.
May 20 19:26:03 arch systemd[1]: Listening on LVM2 poll daemon socket.
May 20 19:26:03 arch systemd[1]: Listening on Process Core Dump Socket.
May 20 19:26:03 arch systemd[1]: Listening on Journal Socket (/dev/log).
May 20 19:26:03 arch systemd[1]: Listening on Journal Socket.
May 20 19:26:03 arch systemd[1]: Listening on Userspace Out-Of-Memory (OOM) Killer Socket.
May 20 19:26:03 arch systemd[1]: TPM2 PCR Extension (Varlink) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 20 19:26:03 arch systemd[1]: Listening on udev Control Socket.
May 20 19:26:03 arch systemd[1]: Listening on udev Kernel Socket.
May 20 19:26:03 arch systemd[1]: Mounting Huge Pages File System...
May 20 19:26:03 arch systemd[1]: Mounting POSIX Message Queue File System...
May 20 19:26:03 arch systemd[1]: Mounting Kernel Debug File System...
May 20 19:26:03 arch systemd[1]: Mounting Kernel Trace File System...
May 20 19:26:03 arch systemd[1]: Starting Create List of Static Device Nodes...
May 20 19:26:03 arch systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
May 20 19:26:03 arch systemd[1]: Starting Load Kernel Module configfs...
May 20 19:26:03 arch systemd[1]: Starting Load Kernel Module dm_mod...
May 20 19:26:03 arch systemd[1]: Starting Load Kernel Module drm...
May 20 19:26:03 arch systemd[1]: Starting Load Kernel Module fuse...
May 20 19:26:03 arch systemd[1]: Starting Load Kernel Module loop...
May 20 19:26:03 arch systemd[1]: File System Check on Root Device was skipped because of an unmet condition check (ConditionPathIsReadWrite=!/).
May 20 19:26:03 arch systemd[1]: Starting Journal Service...
May 20 19:26:03 arch kernel: loop: module loaded
May 20 19:26:03 arch systemd[1]: Starting Load Kernel Modules...
May 20 19:26:03 arch systemd[1]: TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 20 19:26:03 arch systemd[1]: Starting Remount Root and Kernel File Systems...
May 20 19:26:03 arch systemd[1]: TPM2 SRK Setup (Early) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 20 19:26:03 arch systemd[1]: Starting Coldplug All udev Devices...
May 20 19:26:03 arch systemd[1]: Mounted Huge Pages File System.
May 20 19:26:03 arch systemd[1]: Mounted POSIX Message Queue File System.
May 20 19:26:03 arch systemd[1]: Mounted Kernel Debug File System.
May 20 19:26:03 arch systemd[1]: Mounted Kernel Trace File System.
May 20 19:26:03 arch systemd[1]: Finished Create List of Static Device Nodes.
May 20 19:26:03 arch systemd-journald[233]: Collecting audit messages is disabled.
May 20 19:26:03 arch systemd[1]: modprobe@configfs.service: Deactivated successfully.
May 20 19:26:03 arch systemd[1]: Finished Load Kernel Module configfs.
May 20 19:26:03 arch systemd[1]: modprobe@drm.service: Deactivated successfully.
May 20 19:26:03 arch systemd[1]: Finished Load Kernel Module drm.
May 20 19:26:03 arch systemd[1]: modprobe@fuse.service: Deactivated successfully.
May 20 19:26:03 arch systemd[1]: Finished Load Kernel Module fuse.
May 20 19:26:03 arch systemd[1]: modprobe@loop.service: Deactivated successfully.
May 20 19:26:03 arch systemd[1]: Finished Load Kernel Module loop.
May 20 19:26:03 arch systemd[1]: Mounting FUSE Control File System...
May 20 19:26:03 arch systemd[1]: Mounting Kernel Configuration File System...
May 20 19:26:03 arch systemd[1]: Starting Create Static Device Nodes in /dev gracefully...
May 20 19:26:03 arch kernel: device-mapper: uevent: version 1.0.3
May 20 19:26:03 arch kernel: device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@lists.linux.dev
May 20 19:26:03 arch systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
May 20 19:26:03 arch systemd[1]: Finished Load Kernel Module dm_mod.
May 20 19:26:03 arch kernel: EXT4-fs (sda5): re-mounted c88c5185-df9b-462e-8cea-9a0c7393ae50 r/w. Quota mode: none.
May 20 19:26:03 arch systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
May 20 19:26:03 arch systemd[1]: Finished Remount Root and Kernel File Systems.
May 20 19:26:03 arch systemd[1]: Mounted FUSE Control File System.
May 20 19:26:03 arch systemd[1]: Mounted Kernel Configuration File System.
May 20 19:26:03 arch systemd-journald[233]: Journal started
May 20 19:26:03 arch systemd-journald[233]: Runtime Journal (/run/log/journal/02fd8092237446f4b17509aeb6349ba3) is 8.0M, max 189.4M, 181.4M free.
May 20 19:26:03 arch systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
May 20 19:26:03 arch systemd[1]: Starting Load/Save OS Random Seed...
May 20 19:26:03 arch systemd[1]: TPM2 SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 20 19:26:03 arch systemd[1]: Started Journal Service.
May 20 19:26:03 arch systemd[1]: Finished Load Kernel Modules.
May 20 19:26:03 arch systemd[1]: Starting Flush Journal to Persistent Storage...
May 20 19:26:03 arch systemd[1]: Starting Apply Kernel Variables...
May 20 19:26:03 arch systemd-journald[233]: Time spent on flushing to /var/log/journal/02fd8092237446f4b17509aeb6349ba3 is 9.839648s for 733 entries.
May 20 19:26:03 arch systemd-journald[233]: System Journal (/var/log/journal/02fd8092237446f4b17509aeb6349ba3) is 429.9M, max 4.0G, 3.5G free.
May 20 19:26:15 arch systemd-journald[233]: Received client request to flush runtime journal.
May 20 19:26:15 arch systemd-journald[233]: /var/log/journal/02fd8092237446f4b17509aeb6349ba3/system.journal: Journal file uses a different sequence number ID, rotating.
May 20 19:26:15 arch systemd-journald[233]: Rotating system journal.
May 20 19:26:15 arch kernel: zram0: detected capacity change from 0 to 7757824
May 20 19:26:15 arch kernel: Adding 3878908k swap on /dev/zram0.  Priority:100 extents:1 across:3878908k SSDsc
May 20 19:26:15 arch kernel: intel_rng: FWH not detected
May 20 19:26:15 arch kernel: parport_pc 00:04: reported by Plug and Play ACPI
May 20 19:26:15 arch kernel: parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE]
May 20 19:26:15 arch kernel: input: PC Speaker as /devices/platform/pcspkr/input/input6
May 20 19:26:15 arch kernel: i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
May 20 19:26:15 arch kernel: i2c i2c-6: Memory type 0x0f not supported yet, not instantiating SPD
May 20 19:26:15 arch kernel: ACPI Warning: SystemIO range 0x0000000000000828-0x000000000000082F conflicts with OpRegion 0x0000000000000800-0x000000000000084F (\PMRG) (20230628/utaddress-204)
May 20 19:26:15 arch kernel: ACPI: OSL: Resource conflict; ACPI support missing from driver?
May 20 19:26:15 arch kernel: lpc_ich: Resource conflict(s) found affecting gpio_ich
May 20 19:26:15 arch kernel: ppdev: user-space parallel port driver
May 20 19:26:15 arch kernel: leds_ss4200: no LED devices found
May 20 19:26:15 arch kernel: atl1c 0000:02:00.0 enp2s0: renamed from eth0
May 20 19:26:15 arch kernel: gpio_ich gpio_ich.2.auto: GPIO from 512 to 561
May 20 19:26:15 arch kernel: iTCO_vendor_support: vendor-support=0
May 20 19:26:15 arch kernel: iTCO_wdt iTCO_wdt.1.auto: Found a ICH7 or ICH7R TCO device (Version=2, TCOBASE=0x0860)
May 20 19:26:15 arch kernel: iTCO_wdt iTCO_wdt.1.auto: initialized. heartbeat=30 sec (nowayout=0)
May 20 19:26:15 arch kernel: intel_powerclamp: No package C-state available
May 20 19:26:15 arch kernel: mousedev: PS/2 mouse device common for all mice
May 20 19:26:15 arch kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
May 20 19:26:15 arch kernel: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
May 20 19:26:15 arch kernel: Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
May 20 19:26:15 arch kernel: Adding 4192252k swap on /dev/sda6.  Priority:-2 extents:1 across:4192252k 
May 20 19:26:15 arch kernel: snd_hda_intel 0000:00:1b.0: Applying patch firmware 'hda-jack-retask.fw'
May 20 19:26:15 arch kernel: snd_hda_codec_via hdaudioC0D0: autoconfig for VT1708S: line_outs=1 (0x1c/0x0/0x0/0x0/0x0) type:line
May 20 19:26:15 arch kernel: snd_hda_codec_via hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
May 20 19:26:15 arch kernel: snd_hda_codec_via hdaudioC0D0:    hp_outs=0 (0x0/0x0/0x0/0x0/0x0)
May 20 19:26:15 arch kernel: snd_hda_codec_via hdaudioC0D0:    mono: mono_out=0x0
May 20 19:26:15 arch kernel: snd_hda_codec_via hdaudioC0D0:    dig-out=0x20/0x0
May 20 19:26:15 arch kernel: snd_hda_codec_via hdaudioC0D0:    inputs:
May 20 19:26:15 arch kernel: snd_hda_codec_via hdaudioC0D0:      Front Mic=0x1e
May 20 19:26:15 arch kernel: snd_hda_codec_via hdaudioC0D0:      Rear Mic=0x1a
May 20 19:26:15 arch kernel: snd_hda_codec_via hdaudioC0D0:      Line=0x1b
May 20 19:26:15 arch kernel: snd_hda_codec_via hdaudioC0D0:      CD=0x1f
May 20 19:26:15 arch kernel: input: HDA Intel Front Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input7
May 20 19:26:15 arch kernel: input: HDA Intel Rear Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
May 20 19:26:15 arch kernel: input: HDA Intel Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
May 20 19:26:15 arch kernel: input: HDA Intel Line Out as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
May 20 19:26:15 arch kernel: usb 1-7: ath9k_htc: Firmware ath9k_htc/htc_9271-1.4.0.fw requested
May 20 19:26:15 arch kernel: usbcore: registered new interface driver ath9k_htc
May 20 19:26:15 arch kernel: usb 1-7: ath9k_htc: Transferred FW: ath9k_htc/htc_9271-1.4.0.fw, size: 51008
May 20 19:26:15 arch kernel: ath9k_htc 1-7:1.0: ath9k_htc: HTC initialized with 33 credits
May 20 19:26:15 arch kernel: ath9k_htc 1-7:1.0: ath9k_htc: FW Version: 1.4
May 20 19:26:15 arch kernel: ath9k_htc 1-7:1.0: FW RMW support: On
May 20 19:26:15 arch kernel: ath: EEPROM regdomain: 0x809c
May 20 19:26:15 arch kernel: ath: EEPROM indicates we should expect a country code
May 20 19:26:15 arch kernel: ath: doing EEPROM country->regdmn map search
May 20 19:26:15 arch kernel: ath: country maps to regdmn code: 0x52
May 20 19:26:15 arch kernel: ath: Country alpha2 being used: CN
May 20 19:26:15 arch kernel: ath: Regpair used: 0x52
May 20 19:26:15 arch kernel: ieee80211 phy0: Atheros AR9271 Rev:1
May 20 19:26:15 arch kernel: ath9k_htc 1-7:1.0 wlp0s29f7u7: renamed from wlan0
May 20 19:26:10 arch mtp-probe[366]: checking bus 2, device 2: "/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1"
May 20 19:26:03 arch systemd[1]: Finished Coldplug All udev Devices.
May 20 19:26:10 arch mtp-probe[364]: checking bus 2, device 3: "/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-2"
May 20 19:26:03 arch systemd[1]: Finished Apply Kernel Variables.
May 20 19:26:10 arch mtp-probe[366]: bus: 2, device: 2 was not an MTP device
May 20 19:26:03 arch systemd[1]: Starting CLI Netfilter Manager...
May 20 19:26:10 arch mtp-probe[364]: bus: 2, device: 3 was not an MTP device
May 20 19:26:03 arch systemd[1]: Finished Load/Save OS Random Seed.
May 20 19:26:04 arch systemd[1]: Finished Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
May 20 19:26:04 arch systemd[1]: Finished Create Static Device Nodes in /dev gracefully.
May 20 19:26:04 arch systemd[1]: Create System Users was skipped because no trigger condition checks were met.
May 20 19:26:04 arch systemd[1]: Starting Create Static Device Nodes in /dev...
May 20 19:26:04 arch systemd[1]: Finished Create Static Device Nodes in /dev.
May 20 19:26:04 arch systemd[1]: Reached target Preparation for Local File Systems.
May 20 19:26:04 arch systemd[1]: Virtual Machine and Container Storage (Compatibility) was skipped because of an unmet condition check (ConditionPathExists=/var/lib/machines.raw).
May 20 19:26:04 arch systemd[1]: Starting Rule-based Manager for Device Events and Files...
May 20 19:26:04 arch systemd-udevd[281]: Using default interface naming scheme 'v255'.
May 20 19:26:07 arch systemd[1]: Finished CLI Netfilter Manager.
May 20 19:26:08 arch systemd[1]: Started Rule-based Manager for Device Events and Files.
May 20 19:26:08 arch systemd[1]: Found device /dev/zram0.
May 20 19:26:08 arch systemd[1]: Starting Create swap on /dev/zram0...
May 20 19:26:08 arch systemd-makefs[353]: /dev/zram0 successfully formatted as swap (label "zram0", uuid 35f10b87-72bf-4646-ae71-51a036596a3f)
May 20 19:26:08 arch systemd[1]: Finished Create swap on /dev/zram0.
May 20 19:26:08 arch systemd[1]: Activating swap Compressed Swap on /dev/zram0...
May 20 19:26:08 arch systemd[1]: Activated swap Compressed Swap on /dev/zram0.
May 20 19:26:09 arch systemd[1]: Starting Virtual Console Setup...
May 20 19:26:11 arch systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
May 20 19:26:11 arch systemd[1]: Found device ST500DM002-1BD142 6.
May 20 19:26:11 arch systemd[1]: Activating swap /dev/disk/by-uuid/8674be30-c4fc-46a3-b83f-77e5c6188eaa...
May 20 19:26:12 arch systemd[1]: Activated swap /dev/disk/by-uuid/8674be30-c4fc-46a3-b83f-77e5c6188eaa.
May 20 19:26:12 arch systemd[1]: Reached target Swaps.
May 20 19:26:12 arch systemd[1]: Mounting Temporary Directory /tmp...
May 20 19:26:12 arch systemd[1]: Mounted Temporary Directory /tmp.
May 20 19:26:12 arch systemd[1]: Reached target Local File Systems.
May 20 19:26:12 arch systemd[1]: Listening on System Extension Image Management (Varlink).
May 20 19:26:12 arch systemd[1]: Rebuild Dynamic Linker Cache was skipped because no trigger condition checks were met.
May 20 19:26:12 arch (udev-worker)[332]: cfg80211: Process '/usr/bin/set-wireless-regdom' failed with exit code 1.
May 20 19:26:12 arch systemd[1]: Starting Set Up Additional Binary Formats...
May 20 19:26:12 arch systemd[1]: Update Boot Loader Random Seed was skipped because no trigger condition checks were met.
May 20 19:26:12 arch systemd[1]: Finished Virtual Console Setup.
May 20 19:26:12 arch systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 389 (systemd-binfmt)
May 20 19:26:12 arch systemd[1]: Mounting Arbitrary Executable File Formats File System...
May 20 19:26:12 arch systemd[1]: Mounted Arbitrary Executable File Formats File System.
May 20 19:26:12 arch systemd[1]: Finished Set Up Additional Binary Formats.
May 20 19:26:14 arch systemd[1]: Starting Load/Save RF Kill Switch Status...
May 20 19:26:14 arch systemd[1]: Started Load/Save RF Kill Switch Status.
May 20 19:26:14 arch systemd[1]: Rebuild Dynamic Linker Cache was skipped because no trigger condition checks were met.
May 20 19:26:14 arch systemd[1]: Starting Load Kernel Module dm_mod...
May 20 19:26:14 arch systemd[1]: Starting Load Kernel Module loop...
May 20 19:26:14 arch systemd[1]: Update Boot Loader Random Seed was skipped because no trigger condition checks were met.
May 20 19:26:14 arch systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
May 20 19:26:14 arch systemd[1]: TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 20 19:26:14 arch systemd[1]: Create System Users was skipped because no trigger condition checks were met.
May 20 19:26:14 arch systemd[1]: TPM2 SRK Setup (Early) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 20 19:26:14 arch systemd[1]: TPM2 SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 20 19:26:14 arch systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
May 20 19:26:14 arch systemd[1]: Finished Load Kernel Module dm_mod.
May 20 19:26:14 arch systemd[1]: modprobe@loop.service: Deactivated successfully.
May 20 19:26:14 arch systemd[1]: Finished Load Kernel Module loop.
May 20 19:26:14 arch systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
May 20 19:26:15 arch systemd[1]: Finished Flush Journal to Persistent Storage.
May 20 19:26:15 arch systemd[1]: Starting Create Volatile Files and Directories...
May 20 19:26:15 arch systemd[1]: Finished Create Volatile Files and Directories.
May 20 19:26:15 arch systemd[1]: First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
May 20 19:26:15 arch systemd[1]: First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes).
May 20 19:26:15 arch systemd[1]: Rebuild Journal Catalog was skipped because of an unmet condition check (ConditionNeedsUpdate=/var).
May 20 19:26:15 arch systemd[1]: Commit a transient machine-id on disk was skipped because of an unmet condition check (ConditionPathIsMountPoint=/etc/machine-id).
May 20 19:26:15 arch systemd[1]: Starting Userspace Out-Of-Memory (OOM) Killer...
May 20 19:26:15 arch systemd[1]: Update is Completed was skipped because no trigger condition checks were met.
May 20 19:26:15 arch systemd[1]: Starting Record System Boot/Shutdown in UTMP...
May 20 19:26:15 arch systemd[1]: Finished Record System Boot/Shutdown in UTMP.
May 20 19:26:15 arch systemd[1]: Reached target System Initialization.
May 20 19:26:15 arch systemd[1]: Started Refresh existing PGP keys of archlinux-keyring regularly.
May 20 19:26:15 arch systemd[1]: Started Daily man-db regeneration.
May 20 19:26:15 arch systemd[1]: Started Daily verification of password and group files.
May 20 19:26:15 arch systemd[1]: Started Daily Cleanup of Temporary Directories.
May 20 19:26:15 arch systemd[1]: Reached target Timer Units.
May 20 19:26:15 arch systemd[1]: Listening on D-Bus System Message Bus Socket.
May 20 19:26:15 arch systemd[1]: Listening on GnuPG network certificate management daemon for /etc/pacman.d/gnupg.
May 20 19:26:15 arch systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers) for /etc/pacman.d/gnupg.
May 20 19:26:15 arch systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache (restricted) for /etc/pacman.d/gnupg.
May 20 19:26:15 arch systemd[1]: Listening on GnuPG cryptographic agent (ssh-agent emulation) for /etc/pacman.d/gnupg.
May 20 19:26:15 arch systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache for /etc/pacman.d/gnupg.
May 20 19:26:15 arch systemd[1]: Listening on GnuPG public key management service for /etc/pacman.d/gnupg.
May 20 19:26:15 arch systemd[1]: Reached target Socket Units.
May 20 19:26:15 arch systemd[1]: Starting D-Bus System Message Bus...
May 20 19:26:15 arch systemd[1]: TPM2 PCR Barrier (Initialization) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 20 19:26:15 arch systemd[1]: Started Userspace Out-Of-Memory (OOM) Killer.
May 20 19:26:16 arch systemd[1]: Started D-Bus System Message Bus.
May 20 19:26:16 arch systemd[1]: Reached target Basic System.
May 20 19:26:16 arch systemd[1]: Starting Network Manager...
May 20 19:26:16 arch systemd[1]: Starting Save/Restore Sound Card State...
May 20 19:26:16 arch systemd[1]: Manage Sound Card State (restore and store) was skipped because of an unmet condition check (ConditionPathExists=/etc/alsa/state-daemon.conf).
May 20 19:26:16 arch systemd[1]: Starting Initialize hardware monitoring sensors...
May 20 19:26:16 arch (modprobe)[425]: lm_sensors.service: Referenced but unset environment variable evaluates to an empty string: BUS_MODULES
May 20 19:26:16 arch systemd[1]: Starting User Login Management...
May 20 19:26:16 arch systemd[1]: TPM2 PCR Barrier (User) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 20 19:26:16 arch systemd[1]: Finished Save/Restore Sound Card State.
May 20 19:26:16 arch systemd[1]: Reached target Sound Card.
May 20 19:26:16 arch dbus-broker-launch[421]: Ready
May 20 19:26:16 arch kernel: f71882fg: Found f71889fg chip at 0xa00, revision 21
May 20 19:26:16 arch kernel: f71882fg f71882fg.2560: Fan: 1 is in duty-cycle mode
May 20 19:26:16 arch kernel: f71882fg f71882fg.2560: Fan: 2 is in duty-cycle mode
May 20 19:26:16 arch kernel: f71882fg f71882fg.2560: Fan: 3 is in duty-cycle mode
May 20 19:26:16 arch kernel: f71882fg f71882fg.2560: hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().
May 20 19:26:16 arch systemd-logind[426]: New seat seat0.
May 20 19:26:16 arch systemd-logind[426]: Watching system buttons on /dev/input/event1 (Power Button)
May 20 19:26:16 arch systemd-logind[426]: Watching system buttons on /dev/input/event0 (Power Button)
May 20 19:26:16 arch systemd-logind[426]: Watching system buttons on /dev/input/event3 (USB USB Keyboard)
May 20 19:26:16 arch systemd-logind[426]: Watching system buttons on /dev/input/event4 (USB USB Keyboard Consumer Control)
May 20 19:26:16 arch systemd-logind[426]: Watching system buttons on /dev/input/event5 (USB USB Keyboard System Control)
May 20 19:26:16 arch systemd[1]: Started User Login Management.
May 20 19:26:16 arch systemd[1]: Finished Initialize hardware monitoring sensors.
May 20 19:26:16 arch NetworkManager[423]: <info>  [1716243976.7118] NetworkManager (version 1.46.0-2) is starting... (boot:da107218-8e4a-4770-88ad-d7d26b5f3de5)
May 20 19:26:16 arch NetworkManager[423]: <info>  [1716243976.7119] Read config: /etc/NetworkManager/NetworkManager.conf (lib: 20-connectivity.conf)
May 20 19:26:16 arch NetworkManager[423]: <info>  [1716243976.7728] manager[0x617c79e4ec80]: monitoring kernel firmware directory '/lib/firmware'.
May 20 19:26:16 arch systemd[1]: Starting Hostname Service...
May 20 19:26:16 arch systemd[1]: Started Hostname Service.
May 20 19:26:16 arch NetworkManager[423]: <info>  [1716243976.8768] hostname: hostname: using hostnamed
May 20 19:26:16 arch NetworkManager[423]: <info>  [1716243976.8768] hostname: static hostname changed from (none) to "arch"
May 20 19:26:16 arch NetworkManager[423]: <info>  [1716243976.8777] dns-mgr: init: dns=default,systemd-resolved rc-manager=symlink
May 20 19:26:16 arch NetworkManager[423]: <info>  [1716243976.8790] rfkill0: found Wi-Fi radio killswitch (at /sys/devices/pci0000:00/0000:00:1d.7/usb1/1-7/1-7:1.0/ieee80211/phy0/rfkill0) (driver ath9k_htc)
May 20 19:26:16 arch NetworkManager[423]: <info>  [1716243976.8792] manager[0x617c79e4ec80]: rfkill: Wi-Fi hardware radio set enabled
May 20 19:26:16 arch NetworkManager[423]: <info>  [1716243976.8792] manager[0x617c79e4ec80]: rfkill: WWAN hardware radio set enabled
May 20 19:26:17 arch NetworkManager[423]: <info>  [1716243977.0805] Loaded device plugin: NMBluezManager (/usr/lib/NetworkManager/1.46.0-2/libnm-device-plugin-bluetooth.so)
May 20 19:26:17 arch NetworkManager[423]: <info>  [1716243977.1022] Loaded device plugin: NMAtmManager (/usr/lib/NetworkManager/1.46.0-2/libnm-device-plugin-adsl.so)
May 20 19:26:17 arch NetworkManager[423]: <info>  [1716243977.1038] Loaded device plugin: NMWwanFactory (/usr/lib/NetworkManager/1.46.0-2/libnm-device-plugin-wwan.so)
May 20 19:26:17 arch NetworkManager[423]: <info>  [1716243977.4716] Loaded device plugin: NMTeamFactory (/usr/lib/NetworkManager/1.46.0-2/libnm-device-plugin-team.so)
May 20 19:26:17 arch NetworkManager[423]: <info>  [1716243977.5018] Loaded device plugin: NMWifiFactory (/usr/lib/NetworkManager/1.46.0-2/libnm-device-plugin-wifi.so)
May 20 19:26:17 arch NetworkManager[423]: <info>  [1716243977.5113] Loaded device plugin: NMOvsFactory (/usr/lib/NetworkManager/1.46.0-2/libnm-device-plugin-ovs.so)
May 20 19:26:17 arch NetworkManager[423]: <info>  [1716243977.5118] manager: rfkill: Wi-Fi enabled by radio killswitch; enabled by state file
May 20 19:26:17 arch NetworkManager[423]: <info>  [1716243977.5119] manager: rfkill: WWAN enabled by radio killswitch; enabled by state file
May 20 19:26:17 arch NetworkManager[423]: <info>  [1716243977.5120] manager: Networking is enabled by state file
May 20 19:26:17 arch NetworkManager[423]: <info>  [1716243977.5293] settings: Loaded settings plugin: keyfile (internal)
May 20 19:26:17 arch systemd[1]: Starting Network Manager Script Dispatcher Service...
May 20 19:26:17 arch NetworkManager[423]: <info>  [1716243977.6401] dhcp: init: Using DHCP client 'internal'
May 20 19:26:17 arch NetworkManager[423]: <info>  [1716243977.6683] manager: (lo): new Loopback device (/org/freedesktop/NetworkManager/Devices/1)
May 20 19:26:17 arch NetworkManager[423]: <info>  [1716243977.6702] device (lo): state change: unmanaged -> unavailable (reason 'connection-assumed', sys-iface-state: 'external')
May 20 19:26:17 arch NetworkManager[423]: <info>  [1716243977.6747] device (lo): state change: unavailable -> disconnected (reason 'connection-assumed', sys-iface-state: 'external')
May 20 19:26:17 arch NetworkManager[423]: <info>  [1716243977.6756] device (lo): Activation: starting connection 'lo' (8ab14db2-5098-4d60-b71f-0c22702680b4)
May 20 19:26:17 arch NetworkManager[423]: <info>  [1716243977.6771] manager: (enp2s0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/2)
May 20 19:26:17 arch NetworkManager[423]: <info>  [1716243977.6788] settings: (enp2s0): created default wired connection 'Wired connection 1'
May 20 19:26:17 arch NetworkManager[423]: <info>  [1716243977.6788] device (enp2s0): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
May 20 19:26:17 arch NetworkManager[423]: <info>  [1716243977.7017] device (wlp0s29f7u7): driver supports Access Point (AP) mode
May 20 19:26:17 arch NetworkManager[423]: <info>  [1716243977.7024] manager: (wlp0s29f7u7): new 802.11 Wi-Fi device (/org/freedesktop/NetworkManager/Devices/3)
May 20 19:26:17 arch NetworkManager[423]: <info>  [1716243977.7027] device (wlp0s29f7u7): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
May 20 19:26:17 arch systemd[1]: Started Network Manager Script Dispatcher Service.
May 20 19:26:17 arch NetworkManager[423]: <info>  [1716243977.9407] device (wlp0s29f7u7): set-hw-addr: set MAC address to BA:76:CE:18:7E:D0 (scanning)
May 20 19:26:18 arch NetworkManager[423]: <info>  [1716243978.0835] bus-manager: acquired D-Bus service "org.freedesktop.NetworkManager"
May 20 19:26:18 arch systemd[1]: Started Network Manager.
May 20 19:26:18 arch NetworkManager[423]: <info>  [1716243978.1171] ovsdb: disconnected from ovsdb
May 20 19:26:18 arch NetworkManager[423]: <info>  [1716243978.1172] device (lo): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'external')
May 20 19:26:18 arch NetworkManager[423]: <info>  [1716243978.1174] device (lo): state change: prepare -> config (reason 'none', sys-iface-state: 'external')
May 20 19:26:18 arch NetworkManager[423]: <info>  [1716243978.1177] device (lo): state change: config -> ip-config (reason 'none', sys-iface-state: 'external')
May 20 19:26:18 arch NetworkManager[423]: <info>  [1716243978.1183] device (lo): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'external')
May 20 19:26:18 arch systemd[1]: Starting WPA supplicant...
May 20 19:26:18 arch NetworkManager[423]: <info>  [1716243978.1617] device (lo): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'external')
May 20 19:26:18 arch NetworkManager[423]: <info>  [1716243978.1619] device (lo): state change: secondaries -> activated (reason 'none', sys-iface-state: 'external')
May 20 19:26:18 arch NetworkManager[423]: <info>  [1716243978.1625] device (lo): Activation: successful, device activated.
May 20 19:26:18 arch systemd[1]: Started WPA supplicant.
May 20 19:26:18 arch wpa_supplicant[449]: Successfully initialized wpa_supplicant
May 20 19:26:18 arch systemd[1]: Reached target Network.
May 20 19:26:18 arch systemd[1]: Starting Network Time Service...
May 20 19:26:18 arch systemd[1]: Starting Permit User Sessions...
May 20 19:26:18 arch systemd[1]: Finished Permit User Sessions.
May 20 19:26:18 arch systemd[1]: Started Simple Desktop Display Manager.
May 20 19:26:19 arch ntpd[450]: ntpd 4.2.8p17@1.4004-o Tue Jun  6 14:05:47 UTC 2023 (1): Starting
May 20 19:26:19 arch ntpd[450]: Command line: /usr/bin/ntpd -g -u ntp:ntp
May 20 19:26:19 arch ntpd[450]: ----------------------------------------------------
May 20 19:26:19 arch ntpd[450]: ntp-4 is maintained by Network Time Foundation,
May 20 19:26:19 arch ntpd[450]: Inc. (NTF), a non-profit 501(c)(3) public-benefit
May 20 19:26:19 arch ntpd[450]: corporation.  Support and training for ntp-4 are
May 20 19:26:19 arch ntpd[450]: available at https://www.nwtime.org/support
May 20 19:26:19 arch ntpd[450]: ----------------------------------------------------
May 20 19:26:19 arch ntpd[450]: DEBUG behavior is enabled - a violation of any
May 20 19:26:19 arch ntpd[450]: diagnostic assertion will cause ntpd to abort
May 20 19:26:19 arch NetworkManager[423]: <info>  [1716243979.2630] device (wlp0s29f7u7): supplicant interface state: internal-starting -> disconnected
May 20 19:26:19 arch NetworkManager[423]: <info>  [1716243979.2631] Wi-Fi P2P device controlled by interface wlp0s29f7u7 created
May 20 19:26:19 arch NetworkManager[423]: <info>  [1716243979.2634] manager: (p2p-dev-wlp0s29f7u7): new 802.11 Wi-Fi P2P device (/org/freedesktop/NetworkManager/Devices/4)
May 20 19:26:19 arch NetworkManager[423]: <info>  [1716243979.2637] device (p2p-dev-wlp0s29f7u7): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
May 20 19:26:19 arch NetworkManager[423]: <info>  [1716243979.2641] device (wlp0s29f7u7): state change: unavailable -> disconnected (reason 'supplicant-available', sys-iface-state: 'managed')
May 20 19:26:19 arch NetworkManager[423]: <info>  [1716243979.2647] device (p2p-dev-wlp0s29f7u7): state change: unavailable -> disconnected (reason 'none', sys-iface-state: 'managed')
May 20 19:26:19 arch systemd[1]: systemd-rfkill.service: Deactivated successfully.
May 20 19:26:19 arch ntpd[455]: proto: precision = 0.127 usec (-23)
May 20 19:26:19 arch ntpd[455]: basedate set to 2023-05-25
May 20 19:26:19 arch ntpd[455]: gps base set to 2023-05-28 (week 2264)
May 20 19:26:19 arch ntpd[455]: initial drift restored to -49.647000
May 20 19:26:19 arch ntpd[455]: Listen and drop on 0 v6wildcard [::]:123
May 20 19:26:19 arch ntpd[455]: Listen and drop on 1 v4wildcard 0.0.0.0:123
May 20 19:26:19 arch ntpd[455]: Listen normally on 2 lo 127.0.0.1:123
May 20 19:26:19 arch ntpd[455]: Listen normally on 3 lo [::1]:123
May 20 19:26:19 arch ntpd[455]: Listening on routing socket on fd #20 for interface updates
May 20 19:26:19 arch ntpd[455]: kernel reports TIME_ERROR: 0x41: Clock Unsynchronized
May 20 19:26:19 arch ntpd[455]: kernel reports TIME_ERROR: 0x41: Clock Unsynchronized
May 20 19:26:19 arch systemd[1]: Started Network Time Service.
May 20 19:26:19 arch systemd[1]: Reached target Multi-User System.
May 20 19:26:19 arch systemd[1]: Reached target Graphical Interface.
May 20 19:26:19 arch systemd[1]: Startup finished in 6.518s (kernel) + 23.917s (userspace) = 30.435s.
May 20 19:26:20 arch sddm[453]: Initializing...
May 20 19:26:20 arch sddm[453]: Starting...
May 20 19:26:20 arch sddm[453]: Logind interface found
May 20 19:26:20 arch sddm[453]: Adding new display...
May 20 19:26:20 arch sddm[453]: Loaded empty theme configuration
May 20 19:26:20 arch sddm[453]: Xauthority path: "/run/sddm/xauth_zxfpDn"
May 20 19:26:20 arch sddm[453]: Using VT 2
May 20 19:26:20 arch sddm[453]: Display server starting...
May 20 19:26:20 arch sddm[453]: Writing cookie to "/run/sddm/xauth_zxfpDn"
May 20 19:26:20 arch sddm[453]: Running: /usr/bin/X -nolisten tcp -background none -seat seat0 vt2 -auth /run/sddm/xauth_zxfpDn -noreset -displayfd 16
May 20 19:26:20 arch NetworkManager[423]: <info>  [1716243980.7975] policy: auto-activating connection 'JAVIER' (e46b91b4-57df-4d96-b80c-237284377815)
May 20 19:26:20 arch NetworkManager[423]: <info>  [1716243980.7982] device (wlp0s29f7u7): Activation: starting connection 'JAVIER' (e46b91b4-57df-4d96-b80c-237284377815)
May 20 19:26:20 arch NetworkManager[423]: <info>  [1716243980.7983] device (wlp0s29f7u7): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
May 20 19:26:20 arch NetworkManager[423]: <info>  [1716243980.7987] manager: NetworkManager state is now CONNECTING
May 20 19:26:20 arch NetworkManager[423]: <info>  [1716243980.8408] device (wlp0s29f7u7): set-hw-addr: reset MAC address to F8:D1:11:0B:01:19 (preserve)
May 20 19:26:20 arch NetworkManager[423]: <info>  [1716243980.9823] device (wlp0s29f7u7): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
May 20 19:26:20 arch NetworkManager[423]: <info>  [1716243980.9827] device (wlp0s29f7u7): Activation: (wifi) access point 'JAVIER' has security, but secrets are required.
May 20 19:26:20 arch NetworkManager[423]: <info>  [1716243980.9828] device (wlp0s29f7u7): state change: config -> need-auth (reason 'none', sys-iface-state: 'managed')
May 20 19:26:20 arch NetworkManager[423]: <info>  [1716243980.9830] sup-iface[2dc628878329d051,0,wlp0s29f7u7]: wps: type pbc start...
May 20 19:26:20 arch NetworkManager[423]: <info>  [1716243980.9833] device (wlp0s29f7u7): supplicant interface state: disconnected -> interface_disabled
May 20 19:26:20 arch NetworkManager[423]: <info>  [1716243980.9833] device (p2p-dev-wlp0s29f7u7): supplicant management interface state: disconnected -> interface_disabled
May 20 19:26:20 arch NetworkManager[423]: <info>  [1716243980.9846] device (wlp0s29f7u7): supplicant interface state: interface_disabled -> inactive
May 20 19:26:20 arch NetworkManager[423]: <info>  [1716243980.9846] device (p2p-dev-wlp0s29f7u7): supplicant management interface state: interface_disabled -> inactive
May 20 19:26:20 arch NetworkManager[423]: <info>  [1716243980.9847] device (wlp0s29f7u7): state change: need-auth -> prepare (reason 'none', sys-iface-state: 'managed')
May 20 19:26:20 arch NetworkManager[423]: <info>  [1716243980.9851] device (wlp0s29f7u7): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
May 20 19:26:20 arch NetworkManager[423]: <info>  [1716243980.9855] device (wlp0s29f7u7): Activation: (wifi) connection 'JAVIER' has security, and secrets exist.  No new secrets needed.
May 20 19:26:20 arch NetworkManager[423]: <info>  [1716243980.9856] Config: added 'ssid' value 'JAVIER'
May 20 19:26:20 arch NetworkManager[423]: <info>  [1716243980.9856] Config: added 'scan_ssid' value '1'
May 20 19:26:20 arch NetworkManager[423]: <info>  [1716243980.9856] Config: added 'bgscan' value 'simple:30:-70:86400'
May 20 19:26:20 arch NetworkManager[423]: <info>  [1716243980.9856] Config: added 'key_mgmt' value 'WPA-PSK WPA-PSK-SHA256 FT-PSK SAE FT-SAE'
May 20 19:26:20 arch wpa_supplicant[449]: wlp0s29f7u7: WPS-PBC-ACTIVE
May 20 19:26:20 arch NetworkManager[423]: <info>  [1716243980.9856] Config: added 'auth_alg' value 'OPEN'
May 20 19:26:20 arch NetworkManager[423]: <info>  [1716243980.9857] Config: added 'psk' value '<hidden>'
May 20 19:26:21 arch wpa_supplicant[449]: wlp0s29f7u7: WPS-CANCEL
May 20 19:26:21 arch NetworkManager[423]: <info>  [1716243981.1670] device (wlp0s29f7u7): supplicant interface state: inactive -> scanning
May 20 19:26:21 arch NetworkManager[423]: <info>  [1716243981.1670] device (p2p-dev-wlp0s29f7u7): supplicant management interface state: inactive -> scanning
May 20 19:26:21 arch wpa_supplicant[449]: wlp0s29f7u7: SME: Trying to authenticate with 60:d7:55:5b:75:5c (SSID='JAVIER' freq=2422 MHz)
May 20 19:26:21 arch kernel: wlp0s29f7u7: authenticate with 60:d7:55:5b:75:5c (local address=f8:d1:11:0b:01:19)
May 20 19:26:21 arch kernel: wlp0s29f7u7: send auth to 60:d7:55:5b:75:5c (try 1/3)
May 20 19:26:21 arch NetworkManager[423]: <info>  [1716243981.4634] device (wlp0s29f7u7): supplicant interface state: scanning -> authenticating
May 20 19:26:21 arch NetworkManager[423]: <info>  [1716243981.4634] device (p2p-dev-wlp0s29f7u7): supplicant management interface state: scanning -> authenticating
May 20 19:26:21 arch kernel: wlp0s29f7u7: authenticated
May 20 19:26:21 arch wpa_supplicant[449]: wlp0s29f7u7: Trying to associate with 60:d7:55:5b:75:5c (SSID='JAVIER' freq=2422 MHz)
May 20 19:26:21 arch NetworkManager[423]: <info>  [1716243981.4670] device (wlp0s29f7u7): supplicant interface state: authenticating -> associating
May 20 19:26:21 arch NetworkManager[423]: <info>  [1716243981.4672] device (p2p-dev-wlp0s29f7u7): supplicant management interface state: authenticating -> associating
May 20 19:26:21 arch kernel: wlp0s29f7u7: associate with 60:d7:55:5b:75:5c (try 1/3)
May 20 19:26:21 arch kernel: wlp0s29f7u7: RX AssocResp from 60:d7:55:5b:75:5c (capab=0x1431 status=0 aid=50)
May 20 19:26:21 arch wpa_supplicant[449]: wlp0s29f7u7: Associated with 60:d7:55:5b:75:5c
May 20 19:26:21 arch kernel: wlp0s29f7u7: associated
May 20 19:26:21 arch wpa_supplicant[449]: wlp0s29f7u7: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
May 20 19:26:21 arch wpa_supplicant[449]: wlp0s29f7u7: CTRL-EVENT-REGDOM-CHANGE init=COUNTRY_IE type=COUNTRY alpha2=AR
May 20 19:26:21 arch NetworkManager[423]: <info>  [1716243981.4925] device (wlp0s29f7u7): supplicant interface state: associating -> 4way_handshake
May 20 19:26:21 arch NetworkManager[423]: <info>  [1716243981.4925] device (p2p-dev-wlp0s29f7u7): supplicant management interface state: associating -> 4way_handshake
May 20 19:26:21 arch wpa_supplicant[449]: wlp0s29f7u7: WPA: Key negotiation completed with 60:d7:55:5b:75:5c [PTK=CCMP GTK=TKIP]
May 20 19:26:21 arch wpa_supplicant[449]: wlp0s29f7u7: CTRL-EVENT-CONNECTED - Connection to 60:d7:55:5b:75:5c completed [id=0 id_str=]
May 20 19:26:21 arch NetworkManager[423]: <info>  [1716243981.5934] device (wlp0s29f7u7): supplicant interface state: 4way_handshake -> completed
May 20 19:26:21 arch NetworkManager[423]: <info>  [1716243981.5935] device (wlp0s29f7u7): Activation: (wifi) Stage 2 of 5 (Device Configure) successful. Connected to wireless network "JAVIER"
May 20 19:26:21 arch NetworkManager[423]: <info>  [1716243981.5935] device (p2p-dev-wlp0s29f7u7): supplicant management interface state: 4way_handshake -> completed
May 20 19:26:21 arch NetworkManager[423]: <info>  [1716243981.5937] device (wlp0s29f7u7): state change: config -> ip-config (reason 'none', sys-iface-state: 'managed')
May 20 19:26:21 arch NetworkManager[423]: <info>  [1716243981.5943] dhcp4 (wlp0s29f7u7): activation: beginning transaction (timeout in 45 seconds)
May 20 19:26:21 arch kernel: wlp0s29f7u7: Limiting TX power to 30 (30 - 0) dBm as advertised by 60:d7:55:5b:75:5c
May 20 19:26:21 arch NetworkManager[423]: <info>  [1716243981.6497] dhcp4 (wlp0s29f7u7): state changed new lease, address=192.168.100.2, acd pending
May 20 19:26:21 arch NetworkManager[423]: <info>  [1716243981.7988] dhcp4 (wlp0s29f7u7): state changed new lease, address=192.168.100.2
May 20 19:26:21 arch NetworkManager[423]: <info>  [1716243981.7994] policy: set 'JAVIER' (wlp0s29f7u7) as default for IPv4 routing and DNS
May 20 19:26:21 arch dbus-broker-launch[421]: Activation request for 'org.freedesktop.resolve1' failed: The systemd unit 'dbus-org.freedesktop.resolve1.service' could not be found.
May 20 19:26:21 arch wpa_supplicant[449]: wlp0s29f7u7: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-45 noise=9999 txrate=65000
May 20 19:26:22 arch NetworkManager[423]: <info>  [1716243982.1044] device (wlp0s29f7u7): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'managed')
May 20 19:26:22 arch NetworkManager[423]: <info>  [1716243982.1072] device (wlp0s29f7u7): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'managed')
May 20 19:26:22 arch NetworkManager[423]: <info>  [1716243982.1074] device (wlp0s29f7u7): state change: secondaries -> activated (reason 'none', sys-iface-state: 'managed')
May 20 19:26:22 arch NetworkManager[423]: <info>  [1716243982.1079] manager: NetworkManager state is now CONNECTED_SITE
May 20 19:26:22 arch NetworkManager[423]: <info>  [1716243982.1086] device (wlp0s29f7u7): Activation: successful, device activated.
May 20 19:26:22 arch NetworkManager[423]: <info>  [1716243982.7997] manager: NetworkManager state is now CONNECTED_GLOBAL
May 20 19:26:23 arch NetworkManager[423]: <info>  [1716243983.0771] dhcp6 (wlp0s29f7u7): activation: beginning transaction (timeout in 45 seconds)
May 20 19:26:23 arch NetworkManager[423]: <info>  [1716243983.0779] policy: set 'JAVIER' (wlp0s29f7u7) as default for IPv6 routing and DNS
May 20 19:26:23 arch NetworkManager[423]: <info>  [1716243983.7013] manager: startup complete
May 20 19:26:24 arch NetworkManager[423]: <info>  [1716243984.0544] dhcp6 (wlp0s29f7u7): state changed new lease
May 20 19:26:26 arch sddm[453]: Setting default cursor
May 20 19:26:26 arch sddm[453]: Running display setup script  "/usr/share/sddm/scripts/Xsetup"
May 20 19:26:26 arch sddm[453]: Display server started.
May 20 19:26:26 arch sddm[453]: Reading from "/usr/local/share/xsessions/i3.desktop"
May 20 19:26:26 arch sddm[453]: Reading from "/usr/share/xsessions/i3.desktop"
May 20 19:26:26 arch sddm[453]: Session "/usr/share/xsessions/i3.desktop" selected, command: "i3" for VT 2
May 20 19:26:27 arch sddm-helper[481]: [PAM] Starting...
May 20 19:26:27 arch sddm-helper[481]: [PAM] Authenticating...
May 20 19:26:27 arch ntpd[455]: Listen normally on 4 wlp0s29f7u7 192.168.100.2:123
May 20 19:26:27 arch ntpd[455]: Listen normally on 5 wlp0s29f7u7 [2803:9800:9010:b0fd:ad2b:e669:9412:80f3]:123
May 20 19:26:27 arch ntpd[455]: Listen normally on 6 wlp0s29f7u7 [fe80::4111:55ba:1cdb:69b3%3]:123
May 20 19:26:27 arch ntpd[455]: new interface(s) found: waking up resolver
May 20 19:26:27 arch sddm-helper[481]: [PAM] returning.
May 20 19:26:27 arch dbus-broker-launch[421]: Activation request for 'org.freedesktop.home1' failed: The systemd unit 'dbus-org.freedesktop.home1.service' could not be found.
May 20 19:26:27 arch sddm[453]: Authentication for user  "jec"  successful
May 20 19:26:27 arch sddm-helper[481]: pam_unix(sddm-autologin:session): session opened for user jec(uid=1000) by jec(uid=0)
May 20 19:26:27 arch systemd-logind[426]: New session 1 of user jec.
May 20 19:26:27 arch systemd[1]: Created slice User Slice of UID 1000.
May 20 19:26:27 arch systemd[1]: Starting User Runtime Directory /run/user/1000...
May 20 19:26:27 arch systemd[1]: Finished User Runtime Directory /run/user/1000.
May 20 19:26:27 arch systemd[1]: Starting User Manager for UID 1000...
May 20 19:26:27 arch (systemd)[486]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8002 service=[systemd-user] terminal=[] user=[jec] ruser=[<unknown>] rhost=[<unknown>]
May 20 19:26:27 arch (systemd)[486]: pam_unix(systemd-user:session): session opened for user jec(uid=1000) by jec(uid=0)
May 20 19:26:27 arch systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
May 20 19:26:28 arch systemd[486]: Queued start job for default target Main User Target.
May 20 19:26:30 arch systemd-journald[233]: /var/log/journal/02fd8092237446f4b17509aeb6349ba3/user-1000.journal: Journal file uses a different sequence number ID, rotating.
May 20 19:26:28 arch systemd[486]: Created slice User Application Slice.
May 20 19:26:28 arch systemd[486]: Reached target Paths.
May 20 19:26:28 arch systemd[486]: Reached target Timers.
May 20 19:26:28 arch systemd[486]: Starting D-Bus User Message Bus Socket...
May 20 19:26:30 arch dbus-broker-launch[508]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +31: Eavesdropping is deprecated and ignored
May 20 19:26:30 arch dbus-broker-launch[508]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +33: Eavesdropping is deprecated and ignored
May 20 19:26:28 arch systemd[486]: Listening on GnuPG network certificate management daemon.
May 20 19:26:28 arch systemd[486]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
May 20 19:26:28 arch systemd[486]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
May 20 19:26:28 arch systemd[486]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
May 20 19:26:28 arch systemd[486]: Listening on GnuPG cryptographic agent and passphrase cache.
May 20 19:26:28 arch systemd[486]: Listening on GnuPG public key management service.
May 20 19:26:28 arch systemd[486]: Listening on p11-kit server.
May 20 19:26:28 arch systemd[486]: Listening on PipeWire PulseAudio.
May 20 19:26:28 arch systemd[486]: Listening on PipeWire Multimedia System Sockets.
May 20 19:26:28 arch systemd[486]: Listening on D-Bus User Message Bus Socket.
May 20 19:26:28 arch systemd[486]: Reached target Sockets.
May 20 19:26:28 arch systemd[486]: Reached target Basic System.
May 20 19:26:28 arch systemd[1]: Started User Manager for UID 1000.
May 20 19:26:28 arch systemd[1]: Started Session 1 of User jec.
May 20 19:26:28 arch systemd[486]: Starting Update XDG user dir configuration...
May 20 19:26:28 arch sddm-helper[481]: Writing cookie to "/tmp/xauth_rDEHgm"
May 20 19:26:28 arch sddm-helper[481]: Starting X11 session: "" "/usr/share/sddm/scripts/Xsession \"i3\""
May 20 19:26:28 arch sddm[453]: Session started true
May 20 19:26:28 arch systemd[486]: Finished Update XDG user dir configuration.
May 20 19:26:28 arch systemd[486]: Reached target Main User Target.
May 20 19:26:28 arch systemd[486]: Startup finished in 1.172s.
May 20 19:26:29 arch systemd[486]: Created slice User Core Session Slice.
May 20 19:26:29 arch systemd[486]: Starting D-Bus User Message Bus...
May 20 19:26:29 arch dbus-broker-launch[508]: Service file '/usr/share//dbus-1/services/org.knopwob.dunst.service' is not named after the D-Bus name 'org.freedesktop.Notifications'.
May 20 19:26:29 arch dbus-broker-launch[508]: Service file '/usr/share//dbus-1/services/org.xfce.Thunar.FileManager1.service' is not named after the D-Bus name 'org.freedesktop.FileManager1'.
May 20 19:26:29 arch systemd[486]: Started D-Bus User Message Bus.
May 20 19:26:29 arch dbus-broker-launch[508]: Ready
May 20 19:26:37 arch systemd[486]: Started PipeWire Multimedia Service.
May 20 19:26:37 arch systemd[486]: Started Multimedia Service Session Manager.
May 20 19:26:37 arch systemd[486]: Started PipeWire PulseAudio.
May 20 19:26:38 arch systemd[1]: Starting RealtimeKit Scheduling Policy Service...
May 20 19:26:38 arch systemd[1]: Started RealtimeKit Scheduling Policy Service.
May 20 19:26:38 arch rtkit-daemon[573]: Successfully called chroot.
May 20 19:26:38 arch rtkit-daemon[573]: Successfully dropped privileges.
May 20 19:26:38 arch rtkit-daemon[573]: Successfully limited resources.
May 20 19:26:38 arch rtkit-daemon[573]: Running.
May 20 19:26:38 arch rtkit-daemon[573]: Supervising 0 threads of 0 processes of 0 users.
May 20 19:26:38 arch rtkit-daemon[573]: Supervising 0 threads of 0 processes of 0 users.
May 20 19:26:38 arch rtkit-daemon[573]: Supervising 0 threads of 0 processes of 0 users.
May 20 19:26:38 arch rtkit-daemon[573]: Canary thread running.
May 20 19:26:38 arch rtkit-daemon[573]: Watchdog thread running.
May 20 19:26:38 arch rtkit-daemon[573]: Supervising 0 threads of 0 processes of 0 users.
May 20 19:26:38 arch rtkit-daemon[573]: Supervising 0 threads of 0 processes of 0 users.
May 20 19:26:38 arch rtkit-daemon[573]: Supervising 0 threads of 0 processes of 0 users.
May 20 19:26:38 arch rtkit-daemon[573]: Supervising 0 threads of 0 processes of 0 users.
May 20 19:26:38 arch rtkit-daemon[573]: Supervising 0 threads of 0 processes of 0 users.
May 20 19:26:38 arch systemd[1]: Starting Authorization Manager...
May 20 19:26:38 arch polkitd[577]: Started polkitd version 124
May 20 19:26:38 arch polkitd[577]: Loading rules from directory /etc/polkit-1/rules.d
May 20 19:26:39 arch polkitd[577]: Loading rules from directory /usr/share/polkit-1/rules.d
May 20 19:26:39 arch polkitd[577]: Finished loading, compiling and executing 5 rules
May 20 19:26:39 arch systemd[1]: Started Authorization Manager.
May 20 19:26:39 arch polkitd[577]: Acquired the name org.freedesktop.PolicyKit1 on the system bus
May 20 19:26:40 arch rtkit-daemon[573]: Successfully made thread 563 of process 563 owned by '1000' high priority at nice level -11.
May 20 19:26:40 arch rtkit-daemon[573]: Supervising 1 threads of 1 processes of 1 users.
May 20 19:26:40 arch rtkit-daemon[573]: Supervising 1 threads of 1 processes of 1 users.
May 20 19:26:40 arch rtkit-daemon[573]: Successfully made thread 564 of process 564 owned by '1000' high priority at nice level -11.
May 20 19:26:40 arch rtkit-daemon[573]: Supervising 2 threads of 2 processes of 1 users.
May 20 19:26:40 arch rtkit-daemon[573]: Successfully made thread 585 of process 563 owned by '1000' RT at priority 20.
May 20 19:26:40 arch rtkit-daemon[573]: Supervising 3 threads of 2 processes of 1 users.
May 20 19:26:40 arch rtkit-daemon[573]: Successfully made thread 565 of process 565 owned by '1000' high priority at nice level -11.
May 20 19:26:40 arch rtkit-daemon[573]: Supervising 4 threads of 3 processes of 1 users.
May 20 19:26:40 arch rtkit-daemon[573]: Successfully made thread 582 of process 565 owned by '1000' RT at priority 20.
May 20 19:26:40 arch rtkit-daemon[573]: Supervising 5 threads of 3 processes of 1 users.
May 20 19:26:46 arch systemd[486]: Starting Virtual filesystem service...
May 20 19:26:46 arch wireplumber[564]: Failed to get percentage from UPower: org.freedesktop.DBus.Error.NameHasNoOwner
May 20 19:26:46 arch wireplumber[564]: BlueZ system service is not available
May 20 19:26:46 arch systemd[486]: Started Virtual filesystem service.
May 20 19:26:46 arch systemd[1]: systemd-hostnamed.service: Deactivated successfully.
May 20 19:26:47 arch wireplumber[564]: [0:00:57.987964176] [564] ERROR IPAModule ipa_module.cpp:172 Symbol ipaModuleInfo not found
May 20 19:26:47 arch wireplumber[564]: [0:00:57.988009907] [564] ERROR IPAModule ipa_module.cpp:292 v4l2-compat.so: IPA module has no valid info
May 20 19:26:47 arch wireplumber[564]: [0:00:57.988072883] [564]  INFO Camera camera_manager.cpp:284 libcamera v0.2.0
May 20 19:26:47 arch systemd[486]: Starting Accessibility services bus...
May 20 19:26:47 arch systemd[486]: Started Accessibility services bus.
May 20 19:26:47 arch at-spi-bus-launcher[718]: Policy to allow eavesdropping in /usr/share/defaults/at-spi2/accessibility.conf +15: Eavesdropping is deprecated and ignored
May 20 19:26:47 arch at-spi-bus-launcher[718]: Policy to allow eavesdropping in /usr/share/defaults/at-spi2/accessibility.conf +17: Eavesdropping is deprecated and ignored
May 20 19:26:47 arch dbus-broker-launch[718]: Ready
May 20 19:26:48 arch polkitd[577]: Registered Authentication Agent for unix-session:1 (system bus name :1.22 [/usr/lib/xfce-polkit/xfce-polkit], object path /org/freedesktop/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8)
May 20 19:26:48 arch systemd[486]: Created slice Slice /app/dbus-:1.14-org.a11y.atspi.Registry.
May 20 19:26:48 arch systemd[486]: Started dbus-:1.14-org.a11y.atspi.Registry@0.service.
May 20 19:26:48 arch at-spi2-registryd[738]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
May 20 19:26:51 arch systemd[486]: Starting Portal service...
May 20 19:26:52 arch systemd[486]: Starting flatpak document portal service...
May 20 19:26:52 arch systemd[486]: Starting sandboxed app permission store...
May 20 19:26:52 arch systemd[486]: Started sandboxed app permission store.
May 20 19:26:52 arch systemd[486]: Started flatpak document portal service.
May 20 19:26:52 arch xdg-desktop-por[754]: Choosing gtk.portal for org.freedesktop.impl.portal.Lockdown as a last-resort fallback
May 20 19:26:52 arch xdg-desktop-por[754]: The preferred method to match portal implementations to desktop environments is to use the portals.conf(5) configuration file
May 20 19:26:52 arch systemd[486]: Starting Portal service (GTK/GNOME implementation)...
May 20 19:26:52 arch systemd[486]: Started Portal service (GTK/GNOME implementation).
May 20 19:26:52 arch rtkit-daemon[573]: Supervising 5 threads of 3 processes of 1 users.
May 20 19:26:52 arch rtkit-daemon[573]: Supervising 5 threads of 3 processes of 1 users.
May 20 19:26:52 arch rtkit-daemon[573]: Supervising 5 threads of 3 processes of 1 users.
May 20 19:26:52 arch xdg-desktop-por[754]: No skeleton to export
May 20 19:26:52 arch xdg-desktop-por[754]: Choosing gtk.portal for org.freedesktop.impl.portal.FileChooser as a last-resort fallback
May 20 19:26:52 arch xdg-desktop-por[754]: Choosing gtk.portal for org.freedesktop.impl.portal.AppChooser as a last-resort fallback
May 20 19:26:52 arch xdg-desktop-por[754]: Choosing gtk.portal for org.freedesktop.impl.portal.Print as a last-resort fallback
May 20 19:26:52 arch xdg-desktop-por[754]: Choosing gtk.portal for org.freedesktop.impl.portal.Notification as a last-resort fallback
May 20 19:26:52 arch xdg-desktop-por[754]: Choosing gtk.portal for org.freedesktop.impl.portal.Inhibit as a last-resort fallback
May 20 19:26:52 arch xdg-desktop-por[754]: Choosing gtk.portal for org.freedesktop.impl.portal.Access as a last-resort fallback
May 20 19:26:52 arch xdg-desktop-por[754]: Choosing gtk.portal for org.freedesktop.impl.portal.Account as a last-resort fallback
May 20 19:26:52 arch xdg-desktop-por[754]: Choosing gtk.portal for org.freedesktop.impl.portal.Email as a last-resort fallback
May 20 19:26:52 arch xdg-desktop-por[754]: Choosing gtk.portal for org.freedesktop.impl.portal.DynamicLauncher as a last-resort fallback
May 20 19:26:52 arch systemd[486]: Started Portal service.
May 20 19:26:52 arch rtkit-daemon[573]: Successfully made thread 786 of process 730 owned by '1000' RT at priority 20.
May 20 19:26:52 arch rtkit-daemon[573]: Supervising 6 threads of 4 processes of 1 users.
May 20 19:26:53 arch systemd[486]: Starting User preferences database...
May 20 19:26:53 arch systemd[486]: Started User preferences database.

Contents of /var/log/Xorg.0.log for 6.9.1-arch1-1:

[    31.619] (--) Log file renamed from "/var/log/Xorg.pid-460.log" to "/var/log/Xorg.0.log"
[    31.674] 
X.Org X Server 1.21.1.13
X Protocol Version 11, Revision 0
[    31.674] Current Operating System: Linux arch 6.9.1-arch1-1 #1 SMP PREEMPT_DYNAMIC Fri, 17 May 2024 16:56:38 +0000 x86_64
[    31.674] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=c88c5185-df9b-462e-8cea-9a0c7393ae50 rw sysrq_always_enabled=1 loglevel=7 rd.systemd.show_status=true drm.edid_firmware=edid/1280x1024.bin zswap.enabled=0
[    31.674]  
[    31.674] Current version of pixman: 0.43.4
[    31.674] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[    31.674] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    31.674] (==) Log file: "/var/log/Xorg.0.log", Time: Mon May 20 19:26:20 2024
[    31.747] (==) Using config directory: "/etc/X11/xorg.conf.d"
[    31.747] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[    31.844] (==) No Layout section.  Using the first Screen section.
[    31.844] (==) No screen section available. Using defaults.
[    31.844] (**) |-->Screen "Default Screen Section" (0)
[    31.844] (**) |   |-->Monitor "<default monitor>"
[    31.845] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[    31.845] (**) Allowing byte-swapped clients
[    31.845] (==) Automatically adding devices
[    31.845] (==) Automatically enabling devices
[    31.845] (==) Automatically adding GPU devices
[    31.845] (==) Automatically binding GPU devices
[    31.845] (==) Max clients allowed: 256, resource mask: 0x1fffff
[    31.845] (WW) The directory "/usr/share/fonts/misc" does not exist.
[    31.845] 	Entry deleted from font path.
[    31.896] (WW) The directory "/usr/share/fonts/OTF" does not exist.
[    31.896] 	Entry deleted from font path.
[    31.896] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[    31.896] 	Entry deleted from font path.
[    31.927] (==) FontPath set to:
	/usr/share/fonts/TTF,
	/usr/share/fonts/100dpi,
	/usr/share/fonts/75dpi
[    31.927] (==) ModulePath set to "/usr/lib/xorg/modules"
[    31.927] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[    31.927] (II) Module ABI versions:
[    31.927] 	X.Org ANSI C Emulation: 0.4
[    31.927] 	X.Org Video Driver: 25.2
[    31.927] 	X.Org XInput driver : 24.4
[    31.927] 	X.Org Server Extension : 10.0
[    31.927] (++) using VT number 2

[    31.927] (II) systemd-logind: logind integration requires -keeptty and -keeptty was not provided, disabling logind integration
[    31.928] (II) xfree86: Adding drm device (/dev/dri/card1)
[    31.928] (II) Platform probe for /sys/devices/pci0000:00/0000:00:02.0/drm/card1
[    31.940] (--) PCI:*(0@0:2:0) 8086:2e32:1462:7592 rev 3, Mem @ 0xfe400000/4194304, 0xd0000000/268435456, I/O @ 0x0000dc00/8, BIOS @ 0x????????/131072
[    31.940] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[    31.940] (II) LoadModule: "glx"
[    32.060] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[    32.233] (II) Module glx: vendor="X.Org Foundation"
[    32.233] 	compiled for 1.21.1.13, module version = 1.0.0
[    32.233] 	ABI class: X.Org Server Extension, version 10.0
[    32.233] (==) Matched intel as autoconfigured driver 0
[    32.233] (==) Matched modesetting as autoconfigured driver 1
[    32.233] (==) Matched fbdev as autoconfigured driver 2
[    32.233] (==) Matched vesa as autoconfigured driver 3
[    32.233] (==) Assigned the driver to the xf86ConfigLayout
[    32.233] (II) LoadModule: "intel"
[    32.305] (WW) Warning, couldn't open module intel
[    32.305] (EE) Failed to load module "intel" (module does not exist, 0)
[    32.305] (II) LoadModule: "modesetting"
[    32.305] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[    32.376] (II) Module modesetting: vendor="X.Org Foundation"
[    32.376] 	compiled for 1.21.1.13, module version = 1.21.1
[    32.376] 	Module class: X.Org Video Driver
[    32.376] 	ABI class: X.Org Video Driver, version 25.2
[    32.376] (II) LoadModule: "fbdev"
[    32.376] (WW) Warning, couldn't open module fbdev
[    32.376] (EE) Failed to load module "fbdev" (module does not exist, 0)
[    32.376] (II) LoadModule: "vesa"
[    32.377] (WW) Warning, couldn't open module vesa
[    32.377] (EE) Failed to load module "vesa" (module does not exist, 0)
[    32.377] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[    32.395] (II) modeset(0): using drv /dev/dri/card1
[    32.396] (II) modeset(0): Creating default Display subsection in Screen section
	"Default Screen Section" for depth/fbbpp 24/32
[    32.396] (==) modeset(0): Depth 24, (==) framebuffer bpp 32
[    32.396] (==) modeset(0): RGB weight 888
[    32.396] (==) modeset(0): Default visual is TrueColor
[    32.396] (II) Loading sub module "glamoregl"
[    32.396] (II) LoadModule: "glamoregl"
[    32.396] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[    32.447] (II) Module glamoregl: vendor="X.Org Foundation"
[    32.447] 	compiled for 1.21.1.13, module version = 1.0.1
[    32.447] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    35.256] (II) modeset(0): glamor X acceleration enabled on Mesa Intel(R) G41 (ELK)
[    35.256] (II) modeset(0): glamor initialized
[    35.256] (==) modeset(0): VariableRefresh: disabled
[    35.256] (==) modeset(0): AsyncFlipSecondaries: disabled
[    35.311] (II) modeset(0): Output VGA-1 using monitor section <default monitor>
[    35.332] (II) modeset(0): EDID for output VGA-1
[    35.332] (II) modeset(0): Manufacturer: SAM  Model: 107  Serial#: 1279406391
[    35.332] (II) modeset(0): Year: 2005  Week: 39
[    35.332] (II) modeset(0): EDID Version: 1.3
[    35.332] (II) modeset(0): Analog Display Input,  Input Voltage Level: 0.700/0.700 V
[    35.332] (II) modeset(0): Sync:  Separate
[    35.332] (II) modeset(0): Max Image Size [cm]: horiz.: 31  vert.: 23
[    35.332] (II) modeset(0): Gamma: 2.20
[    35.332] (II) modeset(0): DPMS capabilities: Off; RGB/Color Display
[    35.332] (II) modeset(0): Default color space is primary color space
[    35.332] (II) modeset(0): First detailed timing is preferred mode
[    35.332] (II) modeset(0): redX: 0.640 redY: 0.330   greenX: 0.300 greenY: 0.600
[    35.332] (II) modeset(0): blueX: 0.150 blueY: 0.060   whiteX: 0.312 whiteY: 0.329
[    35.332] (II) modeset(0): Supported established timings:
[    35.332] (II) modeset(0): 720x400@70Hz
[    35.332] (II) modeset(0): 640x480@60Hz
[    35.332] (II) modeset(0): 640x480@67Hz
[    35.332] (II) modeset(0): 640x480@72Hz
[    35.332] (II) modeset(0): 640x480@75Hz
[    35.332] (II) modeset(0): 800x600@56Hz
[    35.332] (II) modeset(0): 800x600@60Hz
[    35.332] (II) modeset(0): 800x600@72Hz
[    35.332] (II) modeset(0): 800x600@75Hz
[    35.332] (II) modeset(0): 832x624@75Hz
[    35.332] (II) modeset(0): 1024x768@60Hz
[    35.332] (II) modeset(0): 1024x768@70Hz
[    35.332] (II) modeset(0): 1024x768@75Hz
[    35.332] (II) modeset(0): 1152x864@75Hz
[    35.332] (II) modeset(0): Manufacturer's mask: 0
[    35.332] (II) modeset(0): Supported standard timings:
[    35.332] (II) modeset(0): #0: hsize: 1024  vsize 768  refresh: 85  vid: 22881
[    35.332] (II) modeset(0): #1: hsize: 800  vsize 600  refresh: 85  vid: 22853
[    35.332] (II) modeset(0): #2: hsize: 640  vsize 480  refresh: 85  vid: 22833
[    35.332] (II) modeset(0): #3: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
[    35.332] (II) modeset(0): #4: hsize: 1152  vsize 864  refresh: 75  vid: 20337
[    35.332] (II) modeset(0): Supported detailed timing:
[    35.332] (II) modeset(0): clock: 94.5 MHz   Image Size:  312 x 234 mm
[    35.332] (II) modeset(0): h_active: 1024  h_sync: 1072  h_sync_end 1168 h_blank_end 1376 h_border: 0
[    35.332] (II) modeset(0): v_active: 768  v_sync: 769  v_sync_end 772 v_blanking: 808 v_border: 0
[    35.332] (II) modeset(0): Ranges: V min: 50 V max: 160 Hz, H min: 30 H max: 71 kHz, PixClock max 115 MHz
[    35.332] (II) modeset(0): Monitor name: SyncMaster
[    35.332] (II) modeset(0): Serial No: HXAY952789
[    35.332] (II) modeset(0): EDID (in hex):
[    35.332] (II) modeset(0): 	00ffffffffffff004c2d07013731424c
[    35.332] (II) modeset(0): 	270f0103681f17782eee91a3544c9926
[    35.332] (II) modeset(0): 	0f5054bfee806159455931598180714f
[    35.332] (II) modeset(0): 	010101010101ea240060410028303060
[    35.332] (II) modeset(0): 	130038ea1000001e000000fd0032a01e
[    35.332] (II) modeset(0): 	470b000a202020202020000000fc0053
[    35.332] (II) modeset(0): 	796e634d61737465720a2020000000ff
[    35.332] (II) modeset(0): 	00485841593935323738390a202000ea
[    35.332] (II) modeset(0): Printing probed modes for output VGA-1
[    35.332] (II) modeset(0): Modeline "1024x768"x85.0   94.50  1024 1072 1168 1376  768 769 772 808 +hsync +vsync (68.7 kHz eP)
[    35.332] (II) modeset(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[    35.332] (II) modeset(0): Modeline "1152x864"x75.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[    35.332] (II) modeset(0): Modeline "1024x768"x75.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
[    35.332] (II) modeset(0): Modeline "1024x768"x70.1   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[    35.332] (II) modeset(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[    35.332] (II) modeset(0): Modeline "832x624"x74.6   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
[    35.332] (II) modeset(0): Modeline "800x600"x85.1   56.25  800 832 896 1048  600 601 604 631 +hsync +vsync (53.7 kHz e)
[    35.332] (II) modeset(0): Modeline "800x600"x72.2   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
[    35.332] (II) modeset(0): Modeline "800x600"x75.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[    35.332] (II) modeset(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[    35.332] (II) modeset(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[    35.332] (II) modeset(0): Modeline "640x480"x85.0   36.00  640 696 752 832  480 481 484 509 -hsync -vsync (43.3 kHz e)
[    35.332] (II) modeset(0): Modeline "640x480"x75.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[    35.332] (II) modeset(0): Modeline "640x480"x72.8   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz e)
[    35.332] (II) modeset(0): Modeline "640x480"x66.7   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
[    35.332] (II) modeset(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    35.332] (II) modeset(0): Modeline "720x400"x70.1   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[    35.332] (II) modeset(0): Output VGA-1 connected
[    35.332] (II) modeset(0): Using exact sizes for initial modes
[    35.332] (II) modeset(0): Output VGA-1 using initial mode 1024x768 +0+0
[    35.332] (==) modeset(0): Using gamma correction (1.0, 1.0, 1.0)
[    35.332] (==) modeset(0): DPI set to (96, 96)
[    35.332] (II) Loading sub module "fb"
[    35.332] (II) LoadModule: "fb"
[    35.332] (II) Module "fb" already built-in
[    36.256] (==) modeset(0): Backing store enabled
[    36.256] (==) modeset(0): Silken mouse enabled
[    36.258] (II) modeset(0): Initializing kms color map for depth 24, 8 bpc.
[    36.258] (==) modeset(0): DPMS enabled
[    36.259] (II) modeset(0): [DRI2] Setup complete
[    36.259] (II) modeset(0): [DRI2]   DRI driver: crocus
[    36.259] (II) modeset(0): [DRI2]   VDPAU driver: va_gl
[    36.259] (II) Initializing extension Generic Event Extension
[    36.259] (II) Initializing extension SHAPE
[    36.259] (II) Initializing extension MIT-SHM
[    36.259] (II) Initializing extension XInputExtension
[    36.260] (II) Initializing extension XTEST
[    36.260] (II) Initializing extension BIG-REQUESTS
[    36.260] (II) Initializing extension SYNC
[    36.260] (II) Initializing extension XKEYBOARD
[    36.260] (II) Initializing extension XC-MISC
[    36.261] (II) Initializing extension SECURITY
[    36.261] (II) Initializing extension XFIXES
[    36.261] (II) Initializing extension RENDER
[    36.261] (II) Initializing extension RANDR
[    36.261] (II) Initializing extension COMPOSITE
[    36.262] (II) Initializing extension DAMAGE
[    36.262] (II) Initializing extension MIT-SCREEN-SAVER
[    36.262] (II) Initializing extension DOUBLE-BUFFER
[    36.262] (II) Initializing extension RECORD
[    36.262] (II) Initializing extension DPMS
[    36.262] (II) Initializing extension Present
[    36.263] (II) Initializing extension DRI3
[    36.263] (II) Initializing extension X-Resource
[    36.263] (II) Initializing extension XVideo
[    36.263] (II) Initializing extension XVideo-MotionCompensation
[    36.263] (II) Initializing extension GLX
[    36.274] (II) AIGLX: Loaded and initialized crocus
[    36.274] (II) GLX: Initialized DRI2 GL provider for screen 0
[    36.274] (II) Initializing extension XFree86-VidModeExtension
[    36.274] (II) Initializing extension XFree86-DGA
[    36.274] (II) Initializing extension XFree86-DRI
[    36.274] (II) Initializing extension DRI2
[    36.297] (II) modeset(0): Damage tracking initialized
[    36.297] (II) modeset(0): Setting screen physical size to 325 x 245
[    36.873] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[    36.873] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[    36.873] (**) Power Button: Applying InputClass "system-keyboard"
[    36.873] (II) LoadModule: "libinput"
[    36.873] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[    36.947] (II) Module libinput: vendor="X.Org Foundation"
[    36.947] 	compiled for 1.21.1.8, module version = 1.4.0
[    36.947] 	Module class: X.Org XInput Driver
[    36.947] 	ABI class: X.Org XInput driver, version 24.4
[    36.947] (II) Using input driver 'libinput' for 'Power Button'
[    36.947] (**) Power Button: always reports core events
[    36.947] (**) Option "Device" "/dev/input/event1"
[    37.007] (II) event1  - Power Button: is tagged by udev as: Keyboard
[    37.007] (II) event1  - Power Button: device is a keyboard
[    37.007] (II) event1  - Power Button: device removed
[    37.023] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1"
[    37.023] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[    37.023] (**) Option "xkb_layout" "es"
[    37.065] (II) event1  - Power Button: is tagged by udev as: Keyboard
[    37.065] (II) event1  - Power Button: device is a keyboard
[    37.066] (II) config/udev: Adding input device Power Button (/dev/input/event0)
[    37.066] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[    37.066] (**) Power Button: Applying InputClass "system-keyboard"
[    37.066] (II) Using input driver 'libinput' for 'Power Button'
[    37.066] (**) Power Button: always reports core events
[    37.066] (**) Option "Device" "/dev/input/event0"
[    37.068] (II) event0  - Power Button: is tagged by udev as: Keyboard
[    37.068] (II) event0  - Power Button: device is a keyboard
[    37.068] (II) event0  - Power Button: device removed
[    37.083] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0"
[    37.083] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
[    37.083] (**) Option "xkb_layout" "es"
[    37.084] (II) event0  - Power Button: is tagged by udev as: Keyboard
[    37.084] (II) event0  - Power Button: device is a keyboard
[    37.085] (II) config/udev: Adding input device HDA Intel Line Out (/dev/input/event10)
[    37.085] (II) No input driver specified, ignoring this device.
[    37.085] (II) This device may have been added with another device file.
[    37.086] (II) config/udev: Adding input device HDA Intel Front Mic (/dev/input/event7)
[    37.086] (II) No input driver specified, ignoring this device.
[    37.086] (II) This device may have been added with another device file.
[    37.087] (II) config/udev: Adding input device HDA Intel Rear Mic (/dev/input/event8)
[    37.087] (II) No input driver specified, ignoring this device.
[    37.087] (II) This device may have been added with another device file.
[    37.087] (II) config/udev: Adding input device HDA Intel Line (/dev/input/event9)
[    37.087] (II) No input driver specified, ignoring this device.
[    37.087] (II) This device may have been added with another device file.
[    37.088] (II) config/udev: Adding input device Genius USB Optical Mouse (/dev/input/event2)
[    37.088] (**) Genius USB Optical Mouse: Applying InputClass "libinput pointer catchall"
[    37.088] (II) Using input driver 'libinput' for 'Genius USB Optical Mouse'
[    37.088] (**) Genius USB Optical Mouse: always reports core events
[    37.088] (**) Option "Device" "/dev/input/event2"
[    37.145] (II) event2  - Genius USB Optical Mouse: is tagged by udev as: Mouse
[    37.145] (II) event2  - Genius USB Optical Mouse: device is a pointer
[    37.146] (II) event2  - Genius USB Optical Mouse: device removed
[    37.186] (II) libinput: Genius USB Optical Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[    37.186] (II) libinput: Genius USB Optical Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[    37.186] (II) libinput: Genius USB Optical Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[    37.186] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1:1.0/0003:0458:003A.0001/input/input2/event2"
[    37.186] (II) XINPUT: Adding extended input device "Genius USB Optical Mouse" (type: MOUSE, id 8)
[    37.187] (**) Option "AccelerationScheme" "none"
[    37.187] (**) Genius USB Optical Mouse: (accel) selected scheme none/0
[    37.187] (**) Genius USB Optical Mouse: (accel) acceleration factor: 2.000
[    37.187] (**) Genius USB Optical Mouse: (accel) acceleration threshold: 4
[    37.245] (II) event2  - Genius USB Optical Mouse: is tagged by udev as: Mouse
[    37.245] (II) event2  - Genius USB Optical Mouse: device is a pointer
[    37.247] (II) config/udev: Adding input device Genius USB Optical Mouse (/dev/input/mouse0)
[    37.247] (II) No input driver specified, ignoring this device.
[    37.247] (II) This device may have been added with another device file.
[    37.248] (II) config/udev: Adding input device USB USB Keyboard (/dev/input/event3)
[    37.248] (**) USB USB Keyboard: Applying InputClass "libinput keyboard catchall"
[    37.248] (**) USB USB Keyboard: Applying InputClass "system-keyboard"
[    37.248] (II) Using input driver 'libinput' for 'USB USB Keyboard'
[    37.248] (**) USB USB Keyboard: always reports core events
[    37.248] (**) Option "Device" "/dev/input/event3"
[    37.250] (II) event3  - USB USB Keyboard: is tagged by udev as: Keyboard
[    37.250] (II) event3  - USB USB Keyboard: device is a keyboard
[    37.251] (II) event3  - USB USB Keyboard: device removed
[    37.270] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-2/2-2:1.0/0003:1A2C:2D23.0002/input/input3/event3"
[    37.270] (II) XINPUT: Adding extended input device "USB USB Keyboard" (type: KEYBOARD, id 9)
[    37.270] (**) Option "xkb_layout" "es"
[    37.272] (II) event3  - USB USB Keyboard: is tagged by udev as: Keyboard
[    37.273] (II) event3  - USB USB Keyboard: device is a keyboard
[    37.276] (II) config/udev: Adding input device USB USB Keyboard Consumer Control (/dev/input/event4)
[    37.276] (**) USB USB Keyboard Consumer Control: Applying InputClass "libinput keyboard catchall"
[    37.276] (**) USB USB Keyboard Consumer Control: Applying InputClass "system-keyboard"
[    37.276] (II) Using input driver 'libinput' for 'USB USB Keyboard Consumer Control'
[    37.276] (**) USB USB Keyboard Consumer Control: always reports core events
[    37.276] (**) Option "Device" "/dev/input/event4"
[    37.278] (II) event4  - USB USB Keyboard Consumer Control: is tagged by udev as: Keyboard
[    37.279] (II) event4  - USB USB Keyboard Consumer Control: device is a keyboard
[    37.279] (II) event4  - USB USB Keyboard Consumer Control: device removed
[    37.320] (II) libinput: USB USB Keyboard Consumer Control: needs a virtual subdevice
[    37.320] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-2/2-2:1.1/0003:1A2C:2D23.0003/input/input4/event4"
[    37.320] (II) XINPUT: Adding extended input device "USB USB Keyboard Consumer Control" (type: MOUSE, id 10)
[    37.320] (**) Option "AccelerationScheme" "none"
[    37.320] (**) USB USB Keyboard Consumer Control: (accel) selected scheme none/0
[    37.320] (**) USB USB Keyboard Consumer Control: (accel) acceleration factor: 2.000
[    37.320] (**) USB USB Keyboard Consumer Control: (accel) acceleration threshold: 4
[    37.321] (II) event4  - USB USB Keyboard Consumer Control: is tagged by udev as: Keyboard
[    37.321] (II) event4  - USB USB Keyboard Consumer Control: device is a keyboard
[    37.323] (II) config/udev: Adding input device USB USB Keyboard System Control (/dev/input/event5)
[    37.323] (**) USB USB Keyboard System Control: Applying InputClass "libinput keyboard catchall"
[    37.323] (**) USB USB Keyboard System Control: Applying InputClass "system-keyboard"
[    37.323] (II) Using input driver 'libinput' for 'USB USB Keyboard System Control'
[    37.323] (**) USB USB Keyboard System Control: always reports core events
[    37.323] (**) Option "Device" "/dev/input/event5"
[    37.324] (II) event5  - USB USB Keyboard System Control: is tagged by udev as: Keyboard
[    37.325] (II) event5  - USB USB Keyboard System Control: device is a keyboard
[    37.325] (II) event5  - USB USB Keyboard System Control: device removed
[    37.356] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-2/2-2:1.1/0003:1A2C:2D23.0003/input/input5/event5"
[    37.356] (II) XINPUT: Adding extended input device "USB USB Keyboard System Control" (type: KEYBOARD, id 11)
[    37.356] (**) Option "xkb_layout" "es"
[    37.358] (II) event5  - USB USB Keyboard System Control: is tagged by udev as: Keyboard
[    37.359] (II) event5  - USB USB Keyboard System Control: device is a keyboard
[    37.359] (II) config/udev: Adding input device PC Speaker (/dev/input/event6)
[    37.359] (II) No input driver specified, ignoring this device.
[    37.359] (II) This device may have been added with another device file.
[    37.377] (**) USB USB Keyboard Consumer Control: Applying InputClass "libinput keyboard catchall"
[    37.377] (**) USB USB Keyboard Consumer Control: Applying InputClass "system-keyboard"
[    37.377] (II) Using input driver 'libinput' for 'USB USB Keyboard Consumer Control'
[    37.377] (**) USB USB Keyboard Consumer Control: always reports core events
[    37.378] (**) Option "Device" "/dev/input/event4"
[    37.378] (II) libinput: USB USB Keyboard Consumer Control: is a virtual subdevice
[    37.378] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-2/2-2:1.1/0003:1A2C:2D23.0003/input/input4/event4"
[    37.378] (II) XINPUT: Adding extended input device "USB USB Keyboard Consumer Control" (type: KEYBOARD, id 12)
[    37.378] (**) Option "xkb_layout" "es"

Output of "journalctl -b" for 6.6.31-1-lts:

May 20 19:22:04 arch kernel: microcode: updated early: 0x60c -> 0x60f, date = 2010-09-29
May 20 19:22:04 arch kernel: Linux version 6.6.31-1-lts (linux-lts@archlinux) (gcc (GCC) 14.1.1 20240507, GNU ld (GNU Binutils) 2.42.0) #1 SMP PREEMPT_DYNAMIC Fri, 17 May 2024 11:49:30 +0000
May 20 19:22:04 arch kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-linux-lts root=UUID=c88c5185-df9b-462e-8cea-9a0c7393ae50 rw sysrq_always_enabled=1 loglevel=7 rd.systemd.show_status=true drm.edid_firmware=edid/1280x1024.bin zswap.enabled=0
May 20 19:22:04 arch kernel: BIOS-provided physical RAM map:
May 20 19:22:04 arch kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
May 20 19:22:04 arch kernel: BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
May 20 19:22:04 arch kernel: BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
May 20 19:22:04 arch kernel: BIOS-e820: [mem 0x0000000000100000-0x00000000c7d9ffff] usable
May 20 19:22:04 arch kernel: BIOS-e820: [mem 0x00000000c7da0000-0x00000000c7dadfff] ACPI data
May 20 19:22:04 arch kernel: BIOS-e820: [mem 0x00000000c7dae000-0x00000000c7deffff] ACPI NVS
May 20 19:22:04 arch kernel: BIOS-e820: [mem 0x00000000c7df0000-0x00000000cfffffff] reserved
May 20 19:22:04 arch kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
May 20 19:22:04 arch kernel: BIOS-e820: [mem 0x00000000fff00000-0x00000000ffffffff] reserved
May 20 19:22:04 arch kernel: BIOS-e820: [mem 0x0000000100000000-0x000000012fffffff] usable
May 20 19:22:04 arch kernel: NX (Execute Disable) protection: active
May 20 19:22:04 arch kernel: APIC: Static calls initialized
May 20 19:22:04 arch kernel: SMBIOS 2.5 present.
May 20 19:22:04 arch kernel: DMI: MSI MS-7592/G41M-P26 (MS-7592), BIOS V26.8 08/26/2011
May 20 19:22:04 arch kernel: tsc: Fast TSC calibration using PIT
May 20 19:22:04 arch kernel: tsc: Detected 3002.211 MHz processor
May 20 19:22:04 arch kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
May 20 19:22:04 arch kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
May 20 19:22:04 arch kernel: last_pfn = 0x130000 max_arch_pfn = 0x400000000
May 20 19:22:04 arch kernel: total RAM covered: 3966M
May 20 19:22:04 arch kernel: Found optimal setting for mtrr clean up
May 20 19:22:04 arch kernel:  gran_size: 64K         chunk_size: 4M         num_reg: 6          lose cover RAM: 0G
May 20 19:22:04 arch kernel: MTRR map: 9 entries (6 fixed + 3 variable; max 22), built from 8 variable MTRRs
May 20 19:22:04 arch kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
May 20 19:22:04 arch kernel: e820: update [mem 0xc7e00000-0xffffffff] usable ==> reserved
May 20 19:22:04 arch kernel: last_pfn = 0xc7da0 max_arch_pfn = 0x400000000
May 20 19:22:04 arch kernel: found SMP MP-table at [mem 0x000ff780-0x000ff78f]
May 20 19:22:04 arch kernel: RAMDISK: [mem 0x3548d000-0x36a3dfff]
May 20 19:22:04 arch kernel: ACPI: Early table checksum verification disabled
May 20 19:22:04 arch kernel: ACPI: RSDP 0x00000000000F99F0 000014 (v00 ACPIAM)
May 20 19:22:04 arch kernel: ACPI: RSDT 0x00000000C7DA0000 000040 (v01 7592MS A7592400 20110826 MSFT 00000097)
May 20 19:22:04 arch kernel: ACPI: FACP 0x00000000C7DA0200 000084 (v01 7592MS A7592400 20110826 MSFT 00000097)
May 20 19:22:04 arch kernel: ACPI: DSDT 0x00000000C7DA0440 0062AE (v01 A7592  A7592400 00000400 INTL 20051117)
May 20 19:22:04 arch kernel: ACPI: FACS 0x00000000C7DAE000 000040
May 20 19:22:04 arch kernel: ACPI: APIC 0x00000000C7DA0390 00006C (v01 7592MS A7592400 20110826 MSFT 00000097)
May 20 19:22:04 arch kernel: ACPI: MCFG 0x00000000C7DA0400 00003C (v01 7592MS OEMMCFG  20110826 MSFT 00000097)
May 20 19:22:04 arch kernel: ACPI: OEMB 0x00000000C7DAE040 000072 (v01 7592MS A7592400 20110826 MSFT 00000097)
May 20 19:22:04 arch kernel: ACPI: HPET 0x00000000C7DA8440 000038 (v01 7592MS OEMHPET  20110826 MSFT 00000097)
May 20 19:22:04 arch kernel: ACPI: GSCI 0x00000000C7DAE0C0 002024 (v01 7592MS GMCHSCI  20110826 MSFT 00000097)
May 20 19:22:04 arch kernel: ACPI: SSDT 0x00000000C7DB05F0 000A7C (v01 DpgPmm CpuPm    00000012 INTL 20051117)
May 20 19:22:04 arch kernel: ACPI: Reserving FACP table memory at [mem 0xc7da0200-0xc7da0283]
May 20 19:22:04 arch kernel: ACPI: Reserving DSDT table memory at [mem 0xc7da0440-0xc7da66ed]
May 20 19:22:04 arch kernel: ACPI: Reserving FACS table memory at [mem 0xc7dae000-0xc7dae03f]
May 20 19:22:04 arch kernel: ACPI: Reserving APIC table memory at [mem 0xc7da0390-0xc7da03fb]
May 20 19:22:04 arch kernel: ACPI: Reserving MCFG table memory at [mem 0xc7da0400-0xc7da043b]
May 20 19:22:04 arch kernel: ACPI: Reserving OEMB table memory at [mem 0xc7dae040-0xc7dae0b1]
May 20 19:22:04 arch kernel: ACPI: Reserving HPET table memory at [mem 0xc7da8440-0xc7da8477]
May 20 19:22:04 arch kernel: ACPI: Reserving GSCI table memory at [mem 0xc7dae0c0-0xc7db00e3]
May 20 19:22:04 arch kernel: ACPI: Reserving SSDT table memory at [mem 0xc7db05f0-0xc7db106b]
May 20 19:22:04 arch kernel: No NUMA configuration found
May 20 19:22:04 arch kernel: Faking a node at [mem 0x0000000000000000-0x000000012fffffff]
May 20 19:22:04 arch kernel: NODE_DATA(0) allocated [mem 0x12fffb000-0x12fffffff]
May 20 19:22:04 arch kernel: Zone ranges:
May 20 19:22:04 arch kernel:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
May 20 19:22:04 arch kernel:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
May 20 19:22:04 arch kernel:   Normal   [mem 0x0000000100000000-0x000000012fffffff]
May 20 19:22:04 arch kernel:   Device   empty
May 20 19:22:04 arch kernel: Movable zone start for each node
May 20 19:22:04 arch kernel: Early memory node ranges
May 20 19:22:04 arch kernel:   node   0: [mem 0x0000000000001000-0x000000000009efff]
May 20 19:22:04 arch kernel:   node   0: [mem 0x0000000000100000-0x00000000c7d9ffff]
May 20 19:22:04 arch kernel:   node   0: [mem 0x0000000100000000-0x000000012fffffff]
May 20 19:22:04 arch kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000012fffffff]
May 20 19:22:04 arch kernel: On node 0, zone DMA: 1 pages in unavailable ranges
May 20 19:22:04 arch kernel: On node 0, zone DMA: 97 pages in unavailable ranges
May 20 19:22:04 arch kernel: On node 0, zone Normal: 608 pages in unavailable ranges
May 20 19:22:04 arch kernel: Reserving Intel graphics memory at [mem 0xc8000000-0xcfffffff]
May 20 19:22:04 arch kernel: ACPI: PM-Timer IO Port: 0x808
May 20 19:22:04 arch kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
May 20 19:22:04 arch kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
May 20 19:22:04 arch kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
May 20 19:22:04 arch kernel: ACPI: Using ACPI (MADT) for SMP configuration information
May 20 19:22:04 arch kernel: ACPI: HPET id: 0xffffffff base: 0xfed00000
May 20 19:22:04 arch kernel: smpboot: Allowing 4 CPUs, 2 hotplug CPUs
May 20 19:22:04 arch kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
May 20 19:22:04 arch kernel: PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
May 20 19:22:04 arch kernel: PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000dffff]
May 20 19:22:04 arch kernel: PM: hibernation: Registered nosave memory: [mem 0x000e0000-0x000fffff]
May 20 19:22:04 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xc7da0000-0xc7dadfff]
May 20 19:22:04 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xc7dae000-0xc7deffff]
May 20 19:22:04 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xc7df0000-0xcfffffff]
May 20 19:22:04 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xd0000000-0xfedfffff]
May 20 19:22:04 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
May 20 19:22:04 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xffefffff]
May 20 19:22:04 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xfff00000-0xffffffff]
May 20 19:22:04 arch kernel: [mem 0xd0000000-0xfedfffff] available for PCI devices
May 20 19:22:04 arch kernel: Booting paravirtualized kernel on bare hardware
May 20 19:22:04 arch kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
May 20 19:22:04 arch kernel: setup_percpu: NR_CPUS:320 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
May 20 19:22:04 arch kernel: percpu: Embedded 64 pages/cpu s225280 r8192 d28672 u524288
May 20 19:22:04 arch kernel: pcpu-alloc: s225280 r8192 d28672 u524288 alloc=1*2097152
May 20 19:22:04 arch kernel: pcpu-alloc: [0] 0 1 2 3 
May 20 19:22:04 arch kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux-lts root=UUID=c88c5185-df9b-462e-8cea-9a0c7393ae50 rw sysrq_always_enabled=1 loglevel=7 rd.systemd.show_status=true drm.edid_firmware=edid/1280x1024.bin zswap.enabled=0
May 20 19:22:04 arch kernel: sysrq: sysrq always enabled.
May 20 19:22:04 arch kernel: Unknown kernel command line parameters "BOOT_IMAGE=/boot/vmlinuz-linux-lts", will be passed to user space.
May 20 19:22:04 arch kernel: Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
May 20 19:22:04 arch kernel: Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
May 20 19:22:04 arch kernel: Fallback order for Node 0: 0 
May 20 19:22:04 arch kernel: Built 1 zonelists, mobility grouping on.  Total pages: 999081
May 20 19:22:04 arch kernel: Policy zone: Normal
May 20 19:22:04 arch kernel: mem auto-init: stack:all(zero), heap alloc:on, heap free:off
May 20 19:22:04 arch kernel: software IO TLB: area num 4.
May 20 19:22:04 arch kernel: Memory: 3852784K/4060408K available (16384K kernel code, 2136K rwdata, 13088K rodata, 3424K init, 3792K bss, 207364K reserved, 0K cma-reserved)
May 20 19:22:04 arch kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
May 20 19:22:04 arch kernel: Kernel/User page tables isolation: enabled
May 20 19:22:04 arch kernel: ftrace: allocating 48883 entries in 191 pages
May 20 19:22:04 arch kernel: ftrace: allocated 191 pages with 7 groups
May 20 19:22:04 arch kernel: Dynamic Preempt: voluntary
May 20 19:22:04 arch kernel: rcu: Preemptible hierarchical RCU implementation.
May 20 19:22:04 arch kernel: rcu:         RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=4.
May 20 19:22:04 arch kernel: rcu:         RCU priority boosting: priority 1 delay 500 ms.
May 20 19:22:04 arch kernel:         Trampoline variant of Tasks RCU enabled.
May 20 19:22:04 arch kernel:         Rude variant of Tasks RCU enabled.
May 20 19:22:04 arch kernel:         Tracing variant of Tasks RCU enabled.
May 20 19:22:04 arch kernel: rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
May 20 19:22:04 arch kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
May 20 19:22:04 arch kernel: NR_IRQS: 20736, nr_irqs: 456, preallocated irqs: 16
May 20 19:22:04 arch kernel: rcu: srcu_init: Setting srcu_struct sizes based on contention.
May 20 19:22:04 arch kernel: kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
May 20 19:22:04 arch kernel: Console: colour dummy device 80x25
May 20 19:22:04 arch kernel: printk: console [tty0] enabled
May 20 19:22:04 arch kernel: ACPI: Core revision 20230628
May 20 19:22:04 arch kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
May 20 19:22:04 arch kernel: APIC: Switch to symmetric I/O mode setup
May 20 19:22:04 arch kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
May 20 19:22:04 arch kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2b466dfb275, max_idle_ns: 440795293149 ns
May 20 19:22:04 arch kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 6006.60 BogoMIPS (lpj=10007370)
May 20 19:22:04 arch kernel: CPU0: Thermal monitoring enabled (TM2)
May 20 19:22:04 arch kernel: process: using mwait in idle threads
May 20 19:22:04 arch kernel: Last level iTLB entries: 4KB 128, 2MB 4, 4MB 4
May 20 19:22:04 arch kernel: Last level dTLB entries: 4KB 256, 2MB 0, 4MB 32, 1GB 0
May 20 19:22:04 arch kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
May 20 19:22:04 arch kernel: Spectre V2 : Mitigation: Retpolines
May 20 19:22:04 arch kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
May 20 19:22:04 arch kernel: Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
May 20 19:22:04 arch kernel: Speculative Store Bypass: Vulnerable
May 20 19:22:04 arch kernel: MDS: Vulnerable: Clear CPU buffers attempted, no microcode
May 20 19:22:04 arch kernel: MMIO Stale Data: Unknown: No mitigations
May 20 19:22:04 arch kernel: x86/fpu: x87 FPU will use FXSAVE
May 20 19:22:04 arch kernel: Freeing SMP alternatives memory: 40K
May 20 19:22:04 arch kernel: pid_max: default: 32768 minimum: 301
May 20 19:22:04 arch kernel: LSM: initializing lsm=capability,landlock,lockdown,yama,bpf,integrity
May 20 19:22:04 arch kernel: landlock: Up and running.
May 20 19:22:04 arch kernel: Yama: becoming mindful.
May 20 19:22:04 arch kernel: LSM support for eBPF active
May 20 19:22:04 arch kernel: Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
May 20 19:22:04 arch kernel: Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
May 20 19:22:04 arch kernel: APIC calibration not consistent with PM-Timer: 107ms instead of 100ms
May 20 19:22:04 arch kernel: APIC delta adjusted to PM-Timer: 1975160 (2116359)
May 20 19:22:04 arch kernel: smpboot: CPU0: Intel(R) Core(TM)2 Duo CPU     E7200  @ 2.53GHz (family: 0x6, model: 0x17, stepping: 0x6)
May 20 19:22:04 arch kernel: RCU Tasks: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
May 20 19:22:04 arch kernel: RCU Tasks Rude: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
May 20 19:22:04 arch kernel: RCU Tasks Trace: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
May 20 19:22:04 arch kernel: Performance Events: PEBS fmt0+, Core2 events, 4-deep LBR, Intel PMU driver.
May 20 19:22:04 arch kernel: ... version:                2
May 20 19:22:04 arch kernel: ... bit width:              40
May 20 19:22:04 arch kernel: ... generic registers:      2
May 20 19:22:04 arch kernel: ... value mask:             000000ffffffffff
May 20 19:22:04 arch kernel: ... max period:             000000007fffffff
May 20 19:22:04 arch kernel: ... fixed-purpose events:   3
May 20 19:22:04 arch kernel: ... event mask:             0000000700000003
May 20 19:22:04 arch kernel: signal: max sigframe size: 1440
May 20 19:22:04 arch kernel: rcu: Hierarchical SRCU implementation.
May 20 19:22:04 arch kernel: rcu:         Max phase no-delay instances is 1000.
May 20 19:22:04 arch kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
May 20 19:22:04 arch kernel: smp: Bringing up secondary CPUs ...
May 20 19:22:04 arch kernel: smpboot: x86: Booting SMP configuration:
May 20 19:22:04 arch kernel: .... node  #0, CPUs:      #1
May 20 19:22:04 arch kernel: smp: Brought up 1 node, 2 CPUs
May 20 19:22:04 arch kernel: smpboot: Max logical packages: 2
May 20 19:22:04 arch kernel: smpboot: Total of 2 processors activated (12013.21 BogoMIPS)
May 20 19:22:04 arch kernel: devtmpfs: initialized
May 20 19:22:04 arch kernel: x86/mm: Memory block size: 128MB
May 20 19:22:04 arch kernel: ACPI: PM: Registering ACPI NVS region [mem 0xc7dae000-0xc7deffff] (270336 bytes)
May 20 19:22:04 arch kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
May 20 19:22:04 arch kernel: futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
May 20 19:22:04 arch kernel: pinctrl core: initialized pinctrl subsystem
May 20 19:22:04 arch kernel: PM: RTC time: 22:21:51, date: 2024-05-20
May 20 19:22:04 arch kernel: NET: Registered PF_NETLINK/PF_ROUTE protocol family
May 20 19:22:04 arch kernel: DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations
May 20 19:22:04 arch kernel: DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
May 20 19:22:04 arch kernel: DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
May 20 19:22:04 arch kernel: audit: initializing netlink subsys (disabled)
May 20 19:22:04 arch kernel: audit: type=2000 audit(1716243710.149:1): state=initialized audit_enabled=0 res=1
May 20 19:22:04 arch kernel: thermal_sys: Registered thermal governor 'fair_share'
May 20 19:22:04 arch kernel: thermal_sys: Registered thermal governor 'bang_bang'
May 20 19:22:04 arch kernel: thermal_sys: Registered thermal governor 'step_wise'
May 20 19:22:04 arch kernel: thermal_sys: Registered thermal governor 'user_space'
May 20 19:22:04 arch kernel: thermal_sys: Registered thermal governor 'power_allocator'
May 20 19:22:04 arch kernel: cpuidle: using governor ladder
May 20 19:22:04 arch kernel: cpuidle: using governor menu
May 20 19:22:04 arch kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
May 20 19:22:04 arch kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
May 20 19:22:04 arch kernel: PCI: not using MMCONFIG
May 20 19:22:04 arch kernel: PCI: Using configuration type 1 for base access
May 20 19:22:04 arch kernel: kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
May 20 19:22:04 arch kernel: HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
May 20 19:22:04 arch kernel: HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
May 20 19:22:04 arch kernel: fbcon: Taking over console
May 20 19:22:04 arch kernel: ACPI: Added _OSI(Module Device)
May 20 19:22:04 arch kernel: ACPI: Added _OSI(Processor Device)
May 20 19:22:04 arch kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
May 20 19:22:04 arch kernel: ACPI: Added _OSI(Processor Aggregator Device)
May 20 19:22:04 arch kernel: ACPI: 2 ACPI AML tables successfully acquired and loaded
May 20 19:22:04 arch kernel: ACPI: Dynamic OEM Table Load:
May 20 19:22:04 arch kernel: ACPI: SSDT 0xFFFF8BDA40B50400 000277 (v01 DpgPmm P001Ist  00000011 INTL 20051117)
May 20 19:22:04 arch kernel: ACPI: Dynamic OEM Table Load:
May 20 19:22:04 arch kernel: ACPI: SSDT 0xFFFF8BDA40B52800 000277 (v01 DpgPmm P002Ist  00000012 INTL 20051117)
May 20 19:22:04 arch kernel: ACPI: _OSC evaluated successfully for all CPUs
May 20 19:22:04 arch kernel: ACPI: Interpreter enabled
May 20 19:22:04 arch kernel: ACPI: PM: (supports S0 S1 S4 S5)
May 20 19:22:04 arch kernel: ACPI: Using IOAPIC for interrupt routing
May 20 19:22:04 arch kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
May 20 19:22:04 arch kernel: PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved as ACPI motherboard resource
May 20 19:22:04 arch kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
May 20 19:22:04 arch kernel: PCI: Using E820 reservations for host bridge windows
May 20 19:22:04 arch kernel: ACPI: Enabled 12 GPEs in block 00 to 1F
May 20 19:22:04 arch kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
May 20 19:22:04 arch kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
May 20 19:22:04 arch kernel: acpi PNP0A08:00: _OSC: OS requested [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
May 20 19:22:04 arch kernel: acpi PNP0A08:00: _OSC: platform willing to grant [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
May 20 19:22:04 arch kernel: acpi PNP0A08:00: _OSC: platform retains control of PCIe features (AE_NOT_FOUND)
May 20 19:22:04 arch kernel: PCI host bridge to bus 0000:00
May 20 19:22:04 arch kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
May 20 19:22:04 arch kernel: pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
May 20 19:22:04 arch kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
May 20 19:22:04 arch kernel: pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000dffff window]
May 20 19:22:04 arch kernel: pci_bus 0000:00: root bus resource [mem 0xc7e00000-0xdfffffff window]
May 20 19:22:04 arch kernel: pci_bus 0000:00: root bus resource [mem 0xf0000000-0xffffffff window]
May 20 19:22:04 arch kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
May 20 19:22:04 arch kernel: pci 0000:00:00.0: [8086:2e30] type 00 class 0x060000
May 20 19:22:04 arch kernel: pci 0000:00:00.0: DMAR: Disabling IOMMU for graphics on this chipset
May 20 19:22:04 arch kernel: pci 0000:00:00.0: DMAR: Forcing write-buffer flush capability
May 20 19:22:04 arch kernel: pci 0000:00:02.0: [8086:2e32] type 00 class 0x030000
May 20 19:22:04 arch kernel: pci 0000:00:02.0: reg 0x10: [mem 0xfe400000-0xfe7fffff 64bit]
May 20 19:22:04 arch kernel: pci 0000:00:02.0: reg 0x18: [mem 0xd0000000-0xdfffffff 64bit pref]
May 20 19:22:04 arch kernel: pci 0000:00:02.0: reg 0x20: [io  0xdc00-0xdc07]
May 20 19:22:04 arch kernel: pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
May 20 19:22:04 arch kernel: pci 0000:00:1b.0: [8086:27d8] type 00 class 0x040300
May 20 19:22:04 arch kernel: pci 0000:00:1b.0: reg 0x10: [mem 0xfeaf8000-0xfeafbfff 64bit]
May 20 19:22:04 arch kernel: pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
May 20 19:22:04 arch kernel: pci 0000:00:1c.0: [8086:27d0] type 01 class 0x060400
May 20 19:22:04 arch kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
May 20 19:22:04 arch kernel: pci 0000:00:1c.1: [8086:27d2] type 01 class 0x060400
May 20 19:22:04 arch kernel: pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
May 20 19:22:04 arch kernel: pci 0000:00:1c.2: [8086:27d4] type 01 class 0x060400
May 20 19:22:04 arch kernel: pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
May 20 19:22:04 arch kernel: pci 0000:00:1d.0: [8086:27c8] type 00 class 0x0c0300
May 20 19:22:04 arch kernel: pci 0000:00:1d.0: reg 0x20: [io  0xd880-0xd89f]
May 20 19:22:04 arch kernel: pci 0000:00:1d.1: [8086:27c9] type 00 class 0x0c0300
May 20 19:22:04 arch kernel: pci 0000:00:1d.1: reg 0x20: [io  0xd800-0xd81f]
May 20 19:22:04 arch kernel: pci 0000:00:1d.2: [8086:27ca] type 00 class 0x0c0300
May 20 19:22:04 arch kernel: pci 0000:00:1d.2: reg 0x20: [io  0xd480-0xd49f]
May 20 19:22:04 arch kernel: pci 0000:00:1d.3: [8086:27cb] type 00 class 0x0c0300
May 20 19:22:04 arch kernel: pci 0000:00:1d.3: reg 0x20: [io  0xd400-0xd41f]
May 20 19:22:04 arch kernel: pci 0000:00:1d.7: [8086:27cc] type 00 class 0x0c0320
May 20 19:22:04 arch kernel: pci 0000:00:1d.7: reg 0x10: [mem 0xfeaf7c00-0xfeaf7fff]
May 20 19:22:04 arch kernel: pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
May 20 19:22:04 arch kernel: pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
May 20 19:22:04 arch kernel: pci 0000:00:1f.0: [8086:27b8] type 00 class 0x060100
May 20 19:22:04 arch kernel: pci 0000:00:1f.0: quirk: [io  0x0800-0x087f] claimed by ICH6 ACPI/GPIO/TCO
May 20 19:22:04 arch kernel: pci 0000:00:1f.0: quirk: [io  0x0480-0x04bf] claimed by ICH6 GPIO
May 20 19:22:04 arch kernel: pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0a00 (mask 00ff)
May 20 19:22:04 arch kernel: pci 0000:00:1f.0: ICH7 LPC Generic IO decode 2 PIO at 0a00 (mask 0017)
May 20 19:22:04 arch kernel: pci 0000:00:1f.0: ICH7 LPC Generic IO decode 3 PIO at 4700 (mask 00ff)
May 20 19:22:04 arch kernel: pci 0000:00:1f.1: [8086:27df] type 00 class 0x01018a
May 20 19:22:04 arch kernel: pci 0000:00:1f.1: reg 0x10: [io  0x0000-0x0007]
May 20 19:22:04 arch kernel: pci 0000:00:1f.1: reg 0x14: [io  0x0000-0x0003]
May 20 19:22:04 arch kernel: pci 0000:00:1f.1: reg 0x18: [io  0x08f0-0x08f7]
May 20 19:22:04 arch kernel: pci 0000:00:1f.1: reg 0x1c: [io  0x08f8-0x08fb]
May 20 19:22:04 arch kernel: pci 0000:00:1f.1: reg 0x20: [io  0xffa0-0xffaf]
May 20 19:22:04 arch kernel: pci 0000:00:1f.1: legacy IDE quirk: reg 0x10: [io  0x01f0-0x01f7]
May 20 19:22:04 arch kernel: pci 0000:00:1f.1: legacy IDE quirk: reg 0x14: [io  0x03f6]
May 20 19:22:04 arch kernel: pci 0000:00:1f.1: legacy IDE quirk: reg 0x18: [io  0x0170-0x0177]
May 20 19:22:04 arch kernel: pci 0000:00:1f.1: legacy IDE quirk: reg 0x1c: [io  0x0376]
May 20 19:22:04 arch kernel: pci 0000:00:1f.2: [8086:27c0] type 00 class 0x01018f
May 20 19:22:04 arch kernel: pci 0000:00:1f.2: reg 0x10: [io  0xd080-0xd087]
May 20 19:22:04 arch kernel: pci 0000:00:1f.2: reg 0x14: [io  0xd000-0xd003]
May 20 19:22:04 arch kernel: pci 0000:00:1f.2: reg 0x18: [io  0xcc00-0xcc07]
May 20 19:22:04 arch kernel: pci 0000:00:1f.2: reg 0x1c: [io  0xc880-0xc883]
May 20 19:22:04 arch kernel: pci 0000:00:1f.2: reg 0x20: [io  0xc800-0xc80f]
May 20 19:22:04 arch kernel: pci 0000:00:1f.2: PME# supported from D3hot
May 20 19:22:04 arch kernel: pci 0000:00:1f.3: [8086:27da] type 00 class 0x0c0500
May 20 19:22:04 arch kernel: pci 0000:00:1f.3: reg 0x20: [io  0x0400-0x041f]
May 20 19:22:04 arch kernel: pci 0000:00:1c.0: PCI bridge to [bus 01]
May 20 19:22:04 arch kernel: pci 0000:02:00.0: [1969:1062] type 00 class 0x020000
May 20 19:22:04 arch kernel: pci 0000:02:00.0: reg 0x10: [mem 0xfebc0000-0xfebfffff 64bit]
May 20 19:22:04 arch kernel: pci 0000:02:00.0: reg 0x18: [io  0xec00-0xec7f]
May 20 19:22:04 arch kernel: pci 0000:02:00.0: [Firmware Bug]: disabling VPD access (can't determine size of non-standard VPD format)
May 20 19:22:04 arch kernel: pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
May 20 19:22:04 arch kernel: pci 0000:00:1c.1: PCI bridge to [bus 02]
May 20 19:22:04 arch kernel: pci 0000:00:1c.1:   bridge window [io  0xe000-0xefff]
May 20 19:22:04 arch kernel: pci 0000:00:1c.1:   bridge window [mem 0xfeb00000-0xfebfffff]
May 20 19:22:04 arch kernel: pci 0000:00:1c.2: PCI bridge to [bus 03]
May 20 19:22:04 arch kernel: pci_bus 0000:04: extended config space not accessible
May 20 19:22:04 arch kernel: pci 0000:00:1e.0: PCI bridge to [bus 04] (subtractive decode)
May 20 19:22:04 arch kernel: pci 0000:00:1e.0:   bridge window [io  0x0000-0x0cf7 window] (subtractive decode)
May 20 19:22:04 arch kernel: pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff window] (subtractive decode)
May 20 19:22:04 arch kernel: pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
May 20 19:22:04 arch kernel: pci 0000:00:1e.0:   bridge window [mem 0x000d0000-0x000dffff window] (subtractive decode)
May 20 19:22:04 arch kernel: pci 0000:00:1e.0:   bridge window [mem 0xc7e00000-0xdfffffff window] (subtractive decode)
May 20 19:22:04 arch kernel: pci 0000:00:1e.0:   bridge window [mem 0xf0000000-0xffffffff window] (subtractive decode)
May 20 19:22:04 arch kernel: ACPI: PCI: Interrupt link LNKA configured for IRQ 10
May 20 19:22:04 arch kernel: ACPI: PCI: Interrupt link LNKB configured for IRQ 11
May 20 19:22:04 arch kernel: ACPI: PCI: Interrupt link LNKC configured for IRQ 6
May 20 19:22:04 arch kernel: ACPI: PCI: Interrupt link LNKD configured for IRQ 10
May 20 19:22:04 arch kernel: ACPI: PCI: Interrupt link LNKE configured for IRQ 0
May 20 19:22:04 arch kernel: ACPI: PCI: Interrupt link LNKE disabled
May 20 19:22:04 arch kernel: ACPI: PCI: Interrupt link LNKF configured for IRQ 0
May 20 19:22:04 arch kernel: ACPI: PCI: Interrupt link LNKF disabled
May 20 19:22:04 arch kernel: ACPI: PCI: Interrupt link LNKG configured for IRQ 0
May 20 19:22:04 arch kernel: ACPI: PCI: Interrupt link LNKG disabled
May 20 19:22:04 arch kernel: ACPI: PCI: Interrupt link LNKH configured for IRQ 5
May 20 19:22:04 arch kernel: iommu: Default domain type: Translated
May 20 19:22:04 arch kernel: iommu: DMA domain TLB invalidation policy: lazy mode
May 20 19:22:04 arch kernel: SCSI subsystem initialized
May 20 19:22:04 arch kernel: libata version 3.00 loaded.
May 20 19:22:04 arch kernel: ACPI: bus type USB registered
May 20 19:22:04 arch kernel: usbcore: registered new interface driver usbfs
May 20 19:22:04 arch kernel: usbcore: registered new interface driver hub
May 20 19:22:04 arch kernel: usbcore: registered new device driver usb
May 20 19:22:04 arch kernel: pps_core: LinuxPPS API ver. 1 registered
May 20 19:22:04 arch kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
May 20 19:22:04 arch kernel: PTP clock support registered
May 20 19:22:04 arch kernel: EDAC MC: Ver: 3.0.0
May 20 19:22:04 arch kernel: NetLabel: Initializing
May 20 19:22:04 arch kernel: NetLabel:  domain hash size = 128
May 20 19:22:04 arch kernel: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
May 20 19:22:04 arch kernel: NetLabel:  unlabeled traffic allowed by default
May 20 19:22:04 arch kernel: mctp: management component transport protocol core
May 20 19:22:04 arch kernel: NET: Registered PF_MCTP protocol family
May 20 19:22:04 arch kernel: PCI: Using ACPI for IRQ routing
May 20 19:22:04 arch kernel: PCI: pci_cache_line_size set to 64 bytes
May 20 19:22:04 arch kernel: resource: Expanded resource Reserved due to conflict with PCI Bus 0000:00
May 20 19:22:04 arch kernel: e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
May 20 19:22:04 arch kernel: e820: reserve RAM buffer [mem 0xc7da0000-0xc7ffffff]
May 20 19:22:04 arch kernel: pci 0000:00:02.0: vgaarb: setting as boot VGA device
May 20 19:22:04 arch kernel: pci 0000:00:02.0: vgaarb: bridge control possible
May 20 19:22:04 arch kernel: pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
May 20 19:22:04 arch kernel: vgaarb: loaded
May 20 19:22:04 arch kernel: hpet: 3 channels of 0 reserved for per-cpu timers
May 20 19:22:04 arch kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
May 20 19:22:04 arch kernel: hpet0: 3 comparators, 64-bit 14.318180 MHz counter
May 20 19:22:04 arch kernel: clocksource: Switched to clocksource tsc-early
May 20 19:22:04 arch kernel: VFS: Disk quotas dquot_6.6.0
May 20 19:22:04 arch kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
May 20 19:22:04 arch kernel: pnp: PnP ACPI init
May 20 19:22:04 arch kernel: system 00:00: [mem 0xfed14000-0xfed19fff] has been reserved
May 20 19:22:04 arch kernel: system 00:00: [mem 0xfed90000-0xfed93fff] has been reserved
May 20 19:22:04 arch kernel: pnp 00:02: [dma 0 disabled]
May 20 19:22:04 arch kernel: pnp 00:03: [dma 0 disabled]
May 20 19:22:04 arch kernel: pnp 00:04: [dma 0 disabled]
May 20 19:22:04 arch kernel: system 00:05: [io  0x04d0-0x04d1] has been reserved
May 20 19:22:04 arch kernel: system 00:05: [io  0x0800-0x087f] has been reserved
May 20 19:22:04 arch kernel: system 00:05: [io  0x0480-0x04bf] has been reserved
May 20 19:22:04 arch kernel: system 00:05: [mem 0xfed1c000-0xfed1ffff] has been reserved
May 20 19:22:04 arch kernel: system 00:05: [mem 0xfed20000-0xfed8ffff] has been reserved
May 20 19:22:04 arch kernel: system 00:05: [mem 0xffa00000-0xffffffff] could not be reserved
May 20 19:22:04 arch kernel: system 00:06: [mem 0xffc00000-0xffefffff] has been reserved
May 20 19:22:04 arch kernel: system 00:07: [mem 0xfec00000-0xfec00fff] could not be reserved
May 20 19:22:04 arch kernel: system 00:07: [mem 0xfee00000-0xfee00fff] has been reserved
May 20 19:22:04 arch kernel: system 00:08: [io  0x0a00-0x0adf] has been reserved
May 20 19:22:04 arch kernel: system 00:08: [io  0x0ae0-0x0aef] has been reserved
May 20 19:22:04 arch kernel: system 00:09: [mem 0xe0000000-0xefffffff] has been reserved
May 20 19:22:04 arch kernel: pnp 00:0a: disabling [mem 0x000c0000-0x000cffff] because it overlaps 0000:00:02.0 BAR 6 [mem 0x000c0000-0x000dffff]
May 20 19:22:04 arch kernel: system 00:0a: [mem 0x00000000-0x0009ffff] could not be reserved
May 20 19:22:04 arch kernel: system 00:0a: [mem 0x000e0000-0x000fffff] could not be reserved
May 20 19:22:04 arch kernel: system 00:0a: [mem 0x00100000-0xc7dfffff] could not be reserved
May 20 19:22:04 arch kernel: pnp: PnP ACPI: found 11 devices
May 20 19:22:04 arch kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
May 20 19:22:04 arch kernel: NET: Registered PF_INET protocol family
May 20 19:22:04 arch kernel: IP idents hash table entries: 65536 (order: 7, 524288 bytes, linear)
May 20 19:22:04 arch kernel: tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear)
May 20 19:22:04 arch kernel: Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
May 20 19:22:04 arch kernel: TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear)
May 20 19:22:04 arch kernel: TCP bind hash table entries: 32768 (order: 8, 1048576 bytes, linear)
May 20 19:22:04 arch kernel: TCP: Hash tables configured (established 32768 bind 32768)
May 20 19:22:04 arch kernel: MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear)
May 20 19:22:04 arch kernel: UDP hash table entries: 2048 (order: 4, 65536 bytes, linear)
May 20 19:22:04 arch kernel: UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear)
May 20 19:22:04 arch kernel: NET: Registered PF_UNIX/PF_LOCAL protocol family
May 20 19:22:04 arch kernel: NET: Registered PF_XDP protocol family
May 20 19:22:04 arch kernel: pci 0000:00:1c.0: bridge window [io  0x1000-0x0fff] to [bus 01] add_size 1000
May 20 19:22:04 arch kernel: pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000 add_align 100000
May 20 19:22:04 arch kernel: pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff] to [bus 01] add_size 200000 add_align 100000
May 20 19:22:04 arch kernel: pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000 add_align 100000
May 20 19:22:04 arch kernel: pci 0000:00:1c.2: bridge window [io  0x1000-0x0fff] to [bus 03] add_size 1000
May 20 19:22:04 arch kernel: pci 0000:00:1c.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000 add_align 100000
May 20 19:22:04 arch kernel: pci 0000:00:1c.2: bridge window [mem 0x00100000-0x000fffff] to [bus 03] add_size 200000 add_align 100000
May 20 19:22:04 arch kernel: resource: avoiding allocation from e820 entry [mem 0xc7df0000-0xcfffffff]
May 20 19:22:04 arch kernel: pci 0000:00:1c.0: BAR 14: assigned [mem 0xf0000000-0xf01fffff]
May 20 19:22:04 arch kernel: resource: avoiding allocation from e820 entry [mem 0xc7df0000-0xcfffffff]
May 20 19:22:04 arch kernel: pci 0000:00:1c.0: BAR 15: assigned [mem 0xf0200000-0xf03fffff 64bit pref]
May 20 19:22:04 arch kernel: resource: avoiding allocation from e820 entry [mem 0xc7df0000-0xcfffffff]
May 20 19:22:04 arch kernel: pci 0000:00:1c.1: BAR 15: assigned [mem 0xf0400000-0xf05fffff 64bit pref]
May 20 19:22:04 arch kernel: resource: avoiding allocation from e820 entry [mem 0xc7df0000-0xcfffffff]
May 20 19:22:04 arch kernel: pci 0000:00:1c.2: BAR 14: assigned [mem 0xf0600000-0xf07fffff]
May 20 19:22:04 arch kernel: resource: avoiding allocation from e820 entry [mem 0xc7df0000-0xcfffffff]
May 20 19:22:04 arch kernel: pci 0000:00:1c.2: BAR 15: assigned [mem 0xf0800000-0xf09fffff 64bit pref]
May 20 19:22:04 arch kernel: pci 0000:00:1c.0: BAR 13: assigned [io  0x1000-0x1fff]
May 20 19:22:04 arch kernel: pci 0000:00:1c.2: BAR 13: assigned [io  0x2000-0x2fff]
May 20 19:22:04 arch kernel: pci 0000:00:1c.0: PCI bridge to [bus 01]
May 20 19:22:04 arch kernel: pci 0000:00:1c.0:   bridge window [io  0x1000-0x1fff]
May 20 19:22:04 arch kernel: pci 0000:00:1c.0:   bridge window [mem 0xf0000000-0xf01fffff]
May 20 19:22:04 arch kernel: pci 0000:00:1c.0:   bridge window [mem 0xf0200000-0xf03fffff 64bit pref]
May 20 19:22:04 arch kernel: pci 0000:00:1c.1: PCI bridge to [bus 02]
May 20 19:22:04 arch kernel: pci 0000:00:1c.1:   bridge window [io  0xe000-0xefff]
May 20 19:22:04 arch kernel: pci 0000:00:1c.1:   bridge window [mem 0xfeb00000-0xfebfffff]
May 20 19:22:04 arch kernel: pci 0000:00:1c.1:   bridge window [mem 0xf0400000-0xf05fffff 64bit pref]
May 20 19:22:04 arch kernel: pci 0000:00:1c.2: PCI bridge to [bus 03]
May 20 19:22:04 arch kernel: pci 0000:00:1c.2:   bridge window [io  0x2000-0x2fff]
May 20 19:22:04 arch kernel: pci 0000:00:1c.2:   bridge window [mem 0xf0600000-0xf07fffff]
May 20 19:22:04 arch kernel: pci 0000:00:1c.2:   bridge window [mem 0xf0800000-0xf09fffff 64bit pref]
May 20 19:22:04 arch kernel: pci 0000:00:1e.0: PCI bridge to [bus 04]
May 20 19:22:04 arch kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
May 20 19:22:04 arch kernel: pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
May 20 19:22:04 arch kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
May 20 19:22:04 arch kernel: pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000dffff window]
May 20 19:22:04 arch kernel: pci_bus 0000:00: resource 8 [mem 0xc7e00000-0xdfffffff window]
May 20 19:22:04 arch kernel: pci_bus 0000:00: resource 9 [mem 0xf0000000-0xffffffff window]
May 20 19:22:04 arch kernel: pci_bus 0000:01: resource 0 [io  0x1000-0x1fff]
May 20 19:22:04 arch kernel: pci_bus 0000:01: resource 1 [mem 0xf0000000-0xf01fffff]
May 20 19:22:04 arch kernel: pci_bus 0000:01: resource 2 [mem 0xf0200000-0xf03fffff 64bit pref]
May 20 19:22:04 arch kernel: pci_bus 0000:02: resource 0 [io  0xe000-0xefff]
May 20 19:22:04 arch kernel: pci_bus 0000:02: resource 1 [mem 0xfeb00000-0xfebfffff]
May 20 19:22:04 arch kernel: pci_bus 0000:02: resource 2 [mem 0xf0400000-0xf05fffff 64bit pref]
May 20 19:22:04 arch kernel: pci_bus 0000:03: resource 0 [io  0x2000-0x2fff]
May 20 19:22:04 arch kernel: pci_bus 0000:03: resource 1 [mem 0xf0600000-0xf07fffff]
May 20 19:22:04 arch kernel: pci_bus 0000:03: resource 2 [mem 0xf0800000-0xf09fffff 64bit pref]
May 20 19:22:04 arch kernel: pci_bus 0000:04: resource 4 [io  0x0000-0x0cf7 window]
May 20 19:22:04 arch kernel: pci_bus 0000:04: resource 5 [io  0x0d00-0xffff window]
May 20 19:22:04 arch kernel: pci_bus 0000:04: resource 6 [mem 0x000a0000-0x000bffff window]
May 20 19:22:04 arch kernel: pci_bus 0000:04: resource 7 [mem 0x000d0000-0x000dffff window]
May 20 19:22:04 arch kernel: pci_bus 0000:04: resource 8 [mem 0xc7e00000-0xdfffffff window]
May 20 19:22:04 arch kernel: pci_bus 0000:04: resource 9 [mem 0xf0000000-0xffffffff window]
May 20 19:22:04 arch kernel: PCI: CLS 32 bytes, default 64
May 20 19:22:04 arch kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
May 20 19:22:04 arch kernel: software IO TLB: mapped [mem 0x00000000c3da0000-0x00000000c7da0000] (64MB)
May 20 19:22:04 arch kernel: Trying to unpack rootfs image as initramfs...
May 20 19:22:04 arch kernel: Initialise system trusted keyrings
May 20 19:22:04 arch kernel: Key type blacklist registered
May 20 19:22:04 arch kernel: workingset: timestamp_bits=41 max_order=20 bucket_order=0
May 20 19:22:04 arch kernel: zbud: loaded
May 20 19:22:04 arch kernel: integrity: Platform Keyring initialized
May 20 19:22:04 arch kernel: integrity: Machine keyring initialized
May 20 19:22:04 arch kernel: Key type asymmetric registered
May 20 19:22:04 arch kernel: Asymmetric key parser 'x509' registered
May 20 19:22:04 arch kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 242)
May 20 19:22:04 arch kernel: io scheduler mq-deadline registered
May 20 19:22:04 arch kernel: io scheduler kyber registered
May 20 19:22:04 arch kernel: io scheduler bfq registered
May 20 19:22:04 arch kernel: pcieport 0000:00:1c.0: enabling device (0104 -> 0107)
May 20 19:22:04 arch kernel: pcieport 0000:00:1c.2: enabling device (0104 -> 0107)
May 20 19:22:04 arch kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
May 20 19:22:04 arch kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
May 20 19:22:04 arch kernel: ACPI: button: Power Button [PWRB]
May 20 19:22:04 arch kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
May 20 19:22:04 arch kernel: ACPI: button: Power Button [PWRF]
May 20 19:22:04 arch kernel: Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
May 20 19:22:04 arch kernel: 00:02: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
May 20 19:22:04 arch kernel: 00:03: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
May 20 19:22:04 arch kernel: Non-volatile memory driver v1.3
May 20 19:22:04 arch kernel: Linux agpgart interface v0.103
May 20 19:22:04 arch kernel: AMD-Vi: AMD IOMMUv2 functionality not available on this system - This is not a bug.
May 20 19:22:04 arch kernel: ACPI: bus type drm_connector registered
May 20 19:22:04 arch kernel: uhci_hcd 0000:00:1d.0: UHCI Host Controller
May 20 19:22:04 arch kernel: uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 1
May 20 19:22:04 arch kernel: uhci_hcd 0000:00:1d.0: detected 2 ports
May 20 19:22:04 arch kernel: uhci_hcd 0000:00:1d.0: irq 23, io port 0x0000d880
May 20 19:22:04 arch kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.06
May 20 19:22:04 arch kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
May 20 19:22:04 arch kernel: usb usb1: Product: UHCI Host Controller
May 20 19:22:04 arch kernel: usb usb1: Manufacturer: Linux 6.6.31-1-lts uhci_hcd
May 20 19:22:04 arch kernel: usb usb1: SerialNumber: 0000:00:1d.0
May 20 19:22:04 arch kernel: hub 1-0:1.0: USB hub found
May 20 19:22:04 arch kernel: hub 1-0:1.0: 2 ports detected
May 20 19:22:04 arch kernel: uhci_hcd 0000:00:1d.1: UHCI Host Controller
May 20 19:22:04 arch kernel: uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 2
May 20 19:22:04 arch kernel: uhci_hcd 0000:00:1d.1: detected 2 ports
May 20 19:22:04 arch kernel: uhci_hcd 0000:00:1d.1: irq 19, io port 0x0000d800
May 20 19:22:04 arch kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.06
May 20 19:22:04 arch kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
May 20 19:22:04 arch kernel: usb usb2: Product: UHCI Host Controller
May 20 19:22:04 arch kernel: usb usb2: Manufacturer: Linux 6.6.31-1-lts uhci_hcd
May 20 19:22:04 arch kernel: usb usb2: SerialNumber: 0000:00:1d.1
May 20 19:22:04 arch kernel: hub 2-0:1.0: USB hub found
May 20 19:22:04 arch kernel: hub 2-0:1.0: 2 ports detected
May 20 19:22:04 arch kernel: uhci_hcd 0000:00:1d.2: UHCI Host Controller
May 20 19:22:04 arch kernel: uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 3
May 20 19:22:04 arch kernel: uhci_hcd 0000:00:1d.2: detected 2 ports
May 20 19:22:04 arch kernel: uhci_hcd 0000:00:1d.2: irq 18, io port 0x0000d480
May 20 19:22:04 arch kernel: usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.06
May 20 19:22:04 arch kernel: usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
May 20 19:22:04 arch kernel: usb usb3: Product: UHCI Host Controller
May 20 19:22:04 arch kernel: usb usb3: Manufacturer: Linux 6.6.31-1-lts uhci_hcd
May 20 19:22:04 arch kernel: usb usb3: SerialNumber: 0000:00:1d.2
May 20 19:22:04 arch kernel: hub 3-0:1.0: USB hub found
May 20 19:22:04 arch kernel: hub 3-0:1.0: 2 ports detected
May 20 19:22:04 arch kernel: uhci_hcd 0000:00:1d.3: UHCI Host Controller
May 20 19:22:04 arch kernel: uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 4
May 20 19:22:04 arch kernel: uhci_hcd 0000:00:1d.3: detected 2 ports
May 20 19:22:04 arch kernel: uhci_hcd 0000:00:1d.3: irq 16, io port 0x0000d400
May 20 19:22:04 arch kernel: usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.06
May 20 19:22:04 arch kernel: usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
May 20 19:22:04 arch kernel: usb usb4: Product: UHCI Host Controller
May 20 19:22:04 arch kernel: usb usb4: Manufacturer: Linux 6.6.31-1-lts uhci_hcd
May 20 19:22:04 arch kernel: usb usb4: SerialNumber: 0000:00:1d.3
May 20 19:22:04 arch kernel: hub 4-0:1.0: USB hub found
May 20 19:22:04 arch kernel: hub 4-0:1.0: 2 ports detected
May 20 19:22:04 arch kernel: usbcore: registered new interface driver usbserial_generic
May 20 19:22:04 arch kernel: usbserial: USB Serial support registered for generic
May 20 19:22:04 arch kernel: rtc_cmos 00:01: RTC can wake from S4
May 20 19:22:04 arch kernel: ehci-pci 0000:00:1d.7: EHCI Host Controller
May 20 19:22:04 arch kernel: ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 5
May 20 19:22:04 arch kernel: ehci-pci 0000:00:1d.7: debug port 1
May 20 19:22:04 arch kernel: rtc_cmos 00:01: registered as rtc0
May 20 19:22:04 arch kernel: rtc_cmos 00:01: setting system clock to 2024-05-20T22:21:51 UTC (1716243711)
May 20 19:22:04 arch kernel: rtc_cmos 00:01: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
May 20 19:22:04 arch kernel: ehci-pci 0000:00:1d.7: irq 23, io mem 0xfeaf7c00
May 20 19:22:04 arch kernel: intel_pstate: CPU model not supported
May 20 19:22:04 arch kernel: ledtrig-cpu: registered to indicate activity on CPUs
May 20 19:22:04 arch kernel: [drm] Initialized simpledrm 1.0.0 20200625 for simple-framebuffer.0 on minor 0
May 20 19:22:04 arch kernel: Console: switching to colour frame buffer device 160x64
May 20 19:22:04 arch kernel: ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
May 20 19:22:04 arch kernel: simple-framebuffer simple-framebuffer.0: [drm] fb0: simpledrmdrmfb frame buffer device
May 20 19:22:04 arch kernel: usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.06
May 20 19:22:04 arch kernel: usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
May 20 19:22:04 arch kernel: usb usb5: Product: EHCI Host Controller
May 20 19:22:04 arch kernel: usb usb5: Manufacturer: Linux 6.6.31-1-lts ehci_hcd
May 20 19:22:04 arch kernel: usb usb5: SerialNumber: 0000:00:1d.7
May 20 19:22:04 arch kernel: hub 5-0:1.0: USB hub found
May 20 19:22:04 arch kernel: hub 5-0:1.0: 8 ports detected
May 20 19:22:04 arch kernel: hid: raw HID events driver (C) Jiri Kosina
May 20 19:22:04 arch kernel: drop_monitor: Initializing network drop monitor service
May 20 19:22:04 arch kernel: Initializing XFRM netlink socket
May 20 19:22:04 arch kernel: NET: Registered PF_INET6 protocol family
May 20 19:22:04 arch kernel: hub 1-0:1.0: USB hub found
May 20 19:22:04 arch kernel: hub 1-0:1.0: 2 ports detected
May 20 19:22:04 arch kernel: Freeing initrd memory: 22212K
May 20 19:22:04 arch kernel: Segment Routing with IPv6
May 20 19:22:04 arch kernel: RPL Segment Routing with IPv6
May 20 19:22:04 arch kernel: In-situ OAM (IOAM) with IPv6
May 20 19:22:04 arch kernel: NET: Registered PF_PACKET protocol family
May 20 19:22:04 arch kernel: microcode: Microcode Update Driver: v2.2.
May 20 19:22:04 arch kernel: IPI shorthand broadcast: enabled
May 20 19:22:04 arch kernel: hub 2-0:1.0: USB hub found
May 20 19:22:04 arch kernel: hub 2-0:1.0: 2 ports detected
May 20 19:22:04 arch kernel: sched_clock: Marking stable (456528141, 1098971)->(488227814, -30600702)
May 20 19:22:04 arch kernel: registered taskstats version 1
May 20 19:22:04 arch kernel: Loading compiled-in X.509 certificates
May 20 19:22:04 arch kernel: Loaded X.509 cert 'Build time autogenerated kernel key: 86836c6c607043a01b291aac33ece2161f64a0e2'
May 20 19:22:04 arch kernel: Key type .fscrypt registered
May 20 19:22:04 arch kernel: Key type fscrypt-provisioning registered
May 20 19:22:04 arch kernel: PM:   Magic number: 8:654:401
May 20 19:22:04 arch kernel: RAS: Correctable Errors collector initialized.
May 20 19:22:04 arch kernel: clk: Disabling unused clocks
May 20 19:22:04 arch kernel: hub 3-0:1.0: USB hub found
May 20 19:22:04 arch kernel: hub 3-0:1.0: 2 ports detected
May 20 19:22:04 arch kernel: hub 4-0:1.0: USB hub found
May 20 19:22:04 arch kernel: hub 4-0:1.0: 2 ports detected
May 20 19:22:04 arch kernel: Freeing unused decrypted memory: 2028K
May 20 19:22:04 arch kernel: Freeing unused kernel image (initmem) memory: 3424K
May 20 19:22:04 arch kernel: Write protecting the kernel read-only data: 30720k
May 20 19:22:04 arch kernel: Freeing unused kernel image (rodata/data gap) memory: 1248K
May 20 19:22:04 arch kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
May 20 19:22:04 arch kernel: rodata_test: all tests were successful
May 20 19:22:04 arch kernel: x86/mm: Checking user space page tables
May 20 19:22:04 arch kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
May 20 19:22:04 arch kernel: Run /init as init process
May 20 19:22:04 arch kernel:   with arguments:
May 20 19:22:04 arch kernel:     /init
May 20 19:22:04 arch kernel:   with environment:
May 20 19:22:04 arch kernel:     HOME=/
May 20 19:22:04 arch kernel:     TERM=linux
May 20 19:22:04 arch kernel:     BOOT_IMAGE=/boot/vmlinuz-linux-lts
May 20 19:22:04 arch kernel: usb 1-1: new low-speed USB device number 2 using uhci_hcd
May 20 19:22:04 arch kernel: ata_piix 0000:00:1f.1: version 2.13
May 20 19:22:04 arch kernel: scsi host0: ata_piix
May 20 19:22:04 arch kernel: scsi host1: ata_piix
May 20 19:22:04 arch kernel: ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xffa0 irq 14
May 20 19:22:04 arch kernel: ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xffa8 irq 15
May 20 19:22:04 arch kernel: ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
May 20 19:22:04 arch kernel: scsi host2: ata_piix
May 20 19:22:04 arch kernel: scsi host3: ata_piix
May 20 19:22:04 arch kernel: ata3: SATA max UDMA/133 cmd 0xd080 ctl 0xd000 bmdma 0xc800 irq 19
May 20 19:22:04 arch kernel: ata4: SATA max UDMA/133 cmd 0xcc00 ctl 0xc880 bmdma 0xc808 irq 19
May 20 19:22:04 arch kernel: usb 1-1: New USB device found, idVendor=0458, idProduct=003a, bcdDevice= 1.00
May 20 19:22:04 arch kernel: usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
May 20 19:22:04 arch kernel: usb 1-1: Product: USB Optical Mouse
May 20 19:22:04 arch kernel: usb 1-1: Manufacturer: Genius
May 20 19:22:04 arch kernel: ata4: found unknown device (class 0)
May 20 19:22:04 arch kernel: input: Genius USB Optical Mouse as /devices/pci0000:00/0000:00:1d.0/usb1/1-1/1-1:1.0/0003:0458:003A.0001/input/input2
May 20 19:22:04 arch kernel: hid-generic 0003:0458:003A.0001: input,hidraw0: USB HID v1.11 Mouse [Genius USB Optical Mouse] on usb-0000:00:1d.0-1/input0
May 20 19:22:04 arch kernel: usbcore: registered new interface driver usbhid
May 20 19:22:04 arch kernel: usbhid: USB HID core driver
May 20 19:22:04 arch kernel: ata4.01: ATA-8: ST500DM002-1BD142, KC48, max UDMA/133
May 20 19:22:04 arch kernel: ata4.01: 976773168 sectors, multi 16: LBA48 NCQ (depth 0/32)
May 20 19:22:04 arch kernel: scsi 3:0:1:0: Direct-Access     ATA      ST500DM002-1BD14 KC48 PQ: 0 ANSI: 5
May 20 19:22:04 arch kernel: sd 3:0:1:0: [sda] 976773168 512-byte logical blocks: (500 GB/466 GiB)
May 20 19:22:04 arch kernel: sd 3:0:1:0: [sda] 4096-byte physical blocks
May 20 19:22:04 arch kernel: sd 3:0:1:0: [sda] Write Protect is off
May 20 19:22:04 arch kernel: sd 3:0:1:0: [sda] Mode Sense: 00 3a 00 00
May 20 19:22:04 arch kernel: sd 3:0:1:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
May 20 19:22:04 arch kernel: sd 3:0:1:0: [sda] Preferred minimum I/O size 4096 bytes
May 20 19:22:04 arch kernel:  sda: sda1 sda2 sda4 < sda5 sda6 >
May 20 19:22:04 arch kernel: sd 3:0:1:0: [sda] Attached SCSI disk
May 20 19:22:04 arch kernel: usb usb5-port2: over-current condition
May 20 19:22:04 arch kernel: tsc: Refined TSC clocksource calibration: 3002.251 MHz
May 20 19:22:04 arch kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2b4693ee198, max_idle_ns: 440795253227 ns
May 20 19:22:04 arch kernel: clocksource: Switched to clocksource tsc
May 20 19:22:04 arch kernel: usb 1-2: new low-speed USB device number 3 using uhci_hcd
May 20 19:22:04 arch kernel: pci 0000:00:00.0: Intel G41 Chipset
May 20 19:22:04 arch kernel: resource: avoiding allocation from e820 entry [mem 0xc7df0000-0xcfffffff]
May 20 19:22:04 arch kernel: pci 0000:00:00.0: detected gtt size: 2097152K total, 262144K mappable
May 20 19:22:04 arch kernel: pci 0000:00:00.0: detected 131072K stolen memory
May 20 19:22:04 arch kernel: Console: switching to colour dummy device 80x25
May 20 19:22:04 arch kernel: i915 0000:00:02.0: vgaarb: deactivate vga console
May 20 19:22:04 arch kernel: [drm] Initialized i915 1.6.0 20201103 for 0000:00:02.0 on minor 1
May 20 19:22:04 arch kernel: fbcon: i915drmfb (fb0) is primary device
May 20 19:22:04 arch kernel: Console: switching to colour frame buffer device 160x64
May 20 19:22:04 arch kernel: i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
May 20 19:22:04 arch kernel: usb 1-2: New USB device found, idVendor=1a2c, idProduct=2d23, bcdDevice= 1.10
May 20 19:22:04 arch kernel: usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
May 20 19:22:04 arch kernel: usb 1-2: Product: USB Keyboard
May 20 19:22:04 arch kernel: usb 1-2: Manufacturer: USB
May 20 19:22:04 arch kernel: input: USB USB Keyboard as /devices/pci0000:00/0000:00:1d.0/usb1/1-2/1-2:1.0/0003:1A2C:2D23.0002/input/input3
May 20 19:22:04 arch kernel: hid-generic 0003:1A2C:2D23.0002: input,hidraw1: USB HID v1.10 Keyboard [USB USB Keyboard] on usb-0000:00:1d.0-2/input0
May 20 19:22:04 arch kernel: input: USB USB Keyboard Consumer Control as /devices/pci0000:00/0000:00:1d.0/usb1/1-2/1-2:1.1/0003:1A2C:2D23.0003/input/input4
May 20 19:22:04 arch kernel: input: USB USB Keyboard System Control as /devices/pci0000:00/0000:00:1d.0/usb1/1-2/1-2:1.1/0003:1A2C:2D23.0003/input/input5
May 20 19:22:04 arch kernel: hid-generic 0003:1A2C:2D23.0003: input,hidraw2: USB HID v1.10 Device [USB USB Keyboard] on usb-0000:00:1d.0-2/input1
May 20 19:22:04 arch kernel: usb usb5-port4: over-current condition
May 20 19:22:04 arch kernel: usb 5-7: new high-speed USB device number 4 using ehci-pci
May 20 19:22:04 arch kernel: usb 5-7: New USB device found, idVendor=0cf3, idProduct=9271, bcdDevice= 1.08
May 20 19:22:04 arch kernel: usb 5-7: New USB device strings: Mfr=16, Product=32, SerialNumber=48
May 20 19:22:04 arch kernel: usb 5-7: Product: USB2.0 WLAN
May 20 19:22:04 arch kernel: usb 5-7: Manufacturer: ATHEROS
May 20 19:22:04 arch kernel: usb 5-7: SerialNumber: 12345
May 20 19:22:04 arch kernel: EXT4-fs (sda5): mounted filesystem c88c5185-df9b-462e-8cea-9a0c7393ae50 r/w with ordered data mode. Quota mode: none.
May 20 19:22:04 arch kernel: random: crng init done
May 20 19:22:04 arch systemd[1]: systemd 255.6-1-arch running in system mode (+PAM +AUDIT -SELINUX -APPARMOR -IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +XKBCOMMON +UTMP -SYSVINIT default-hierarchy=unified)
May 20 19:22:04 arch systemd[1]: Detected architecture x86-64.
May 20 19:22:04 arch systemd[1]: Hostname set to <arch>.
May 20 19:22:04 arch systemd[1]: bpf-lsm: LSM BPF program attached
May 20 19:22:04 arch kernel: zram: Added device: zram0
May 20 19:22:04 arch systemd[1]: Queued start job for default target Graphical Interface.
May 20 19:22:04 arch systemd[1]: Created slice Slice /system/dirmngr.
May 20 19:22:04 arch systemd[1]: Created slice Slice /system/getty.
May 20 19:22:04 arch systemd[1]: Created slice Slice /system/gpg-agent.
May 20 19:22:04 arch systemd[1]: Created slice Slice /system/gpg-agent-browser.
May 20 19:22:04 arch systemd[1]: Created slice Slice /system/gpg-agent-extra.
May 20 19:22:04 arch systemd[1]: Created slice Slice /system/gpg-agent-ssh.
May 20 19:22:04 arch systemd[1]: Created slice Slice /system/keyboxd.
May 20 19:22:04 arch systemd[1]: Created slice Slice /system/modprobe.
May 20 19:22:04 arch systemd[1]: Created slice Slice /system/systemd-zram-setup.
May 20 19:22:04 arch systemd[1]: Created slice User and Session Slice.
May 20 19:22:04 arch systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
May 20 19:22:04 arch systemd[1]: Started Forward Password Requests to Wall Directory Watch.
May 20 19:22:04 arch systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
May 20 19:22:04 arch systemd[1]: Expecting device /dev/disk/by-uuid/8674be30-c4fc-46a3-b83f-77e5c6188eaa...
May 20 19:22:04 arch systemd[1]: Expecting device /dev/zram0...
May 20 19:22:04 arch systemd[1]: Reached target Local Encrypted Volumes.
May 20 19:22:04 arch systemd[1]: Reached target Login Prompts.
May 20 19:22:04 arch systemd[1]: Reached target Local Integrity Protected Volumes.
May 20 19:22:04 arch systemd[1]: Reached target Path Units.
May 20 19:22:04 arch systemd[1]: Reached target Remote File Systems.
May 20 19:22:04 arch systemd[1]: Reached target Slice Units.
May 20 19:22:04 arch systemd[1]: Reached target Local Verity Protected Volumes.
May 20 19:22:04 arch systemd[1]: Listening on Device-mapper event daemon FIFOs.
May 20 19:22:04 arch systemd[1]: Listening on LVM2 poll daemon socket.
May 20 19:22:04 arch systemd[1]: Listening on Process Core Dump Socket.
May 20 19:22:04 arch systemd[1]: Listening on Journal Socket (/dev/log).
May 20 19:22:04 arch systemd[1]: Listening on Journal Socket.
May 20 19:22:04 arch systemd[1]: Listening on Userspace Out-Of-Memory (OOM) Killer Socket.
May 20 19:22:04 arch systemd[1]: TPM2 PCR Extension (Varlink) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 20 19:22:04 arch systemd[1]: Listening on udev Control Socket.
May 20 19:22:04 arch systemd[1]: Listening on udev Kernel Socket.
May 20 19:22:04 arch systemd[1]: Mounting Huge Pages File System...
May 20 19:22:04 arch systemd[1]: Mounting POSIX Message Queue File System...
May 20 19:22:04 arch systemd[1]: Mounting Kernel Debug File System...
May 20 19:22:04 arch systemd[1]: Mounting Kernel Trace File System...
May 20 19:22:04 arch systemd[1]: Starting Create List of Static Device Nodes...
May 20 19:22:04 arch systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
May 20 19:22:04 arch systemd[1]: Starting Load Kernel Module configfs...
May 20 19:22:04 arch systemd[1]: Starting Load Kernel Module dm_mod...
May 20 19:22:04 arch systemd[1]: Starting Load Kernel Module drm...
May 20 19:22:04 arch systemd[1]: Starting Load Kernel Module fuse...
May 20 19:22:04 arch systemd[1]: Starting Load Kernel Module loop...
May 20 19:22:04 arch systemd[1]: File System Check on Root Device was skipped because of an unmet condition check (ConditionPathIsReadWrite=!/).
May 20 19:22:04 arch systemd[1]: Starting Journal Service...
May 20 19:22:04 arch systemd[1]: Starting Load Kernel Modules...
May 20 19:22:04 arch systemd[1]: TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 20 19:22:04 arch systemd[1]: Starting Remount Root and Kernel File Systems...
May 20 19:22:04 arch systemd[1]: TPM2 SRK Setup (Early) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 20 19:22:04 arch systemd[1]: Starting Coldplug All udev Devices...
May 20 19:22:04 arch systemd[1]: Mounted Huge Pages File System.
May 20 19:22:04 arch systemd[1]: Mounted POSIX Message Queue File System.
May 20 19:22:04 arch systemd[1]: Mounted Kernel Debug File System.
May 20 19:22:04 arch systemd[1]: Mounted Kernel Trace File System.
May 20 19:22:04 arch systemd[1]: Finished Create List of Static Device Nodes.
May 20 19:22:04 arch systemd[1]: modprobe@configfs.service: Deactivated successfully.
May 20 19:22:04 arch kernel: fuse: init (API version 7.39)
May 20 19:22:04 arch systemd[1]: Finished Load Kernel Module configfs.
May 20 19:22:04 arch systemd[1]: modprobe@drm.service: Deactivated successfully.
May 20 19:22:04 arch systemd[1]: Finished Load Kernel Module drm.
May 20 19:22:04 arch systemd[1]: modprobe@fuse.service: Deactivated successfully.
May 20 19:22:04 arch systemd-journald[235]: Collecting audit messages is disabled.
May 20 19:22:04 arch systemd[1]: Finished Load Kernel Module fuse.
May 20 19:22:04 arch kernel: loop: module loaded
May 20 19:22:04 arch systemd[1]: modprobe@loop.service: Deactivated successfully.
May 20 19:22:04 arch systemd[1]: Finished Load Kernel Module loop.
May 20 19:22:04 arch systemd[1]: Mounting FUSE Control File System...
May 20 19:22:04 arch systemd[1]: Mounting Kernel Configuration File System...
May 20 19:22:04 arch systemd[1]: Starting Create Static Device Nodes in /dev gracefully...
May 20 19:22:04 arch kernel: device-mapper: uevent: version 1.0.3
May 20 19:22:04 arch kernel: device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@redhat.com
May 20 19:22:04 arch systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
May 20 19:22:04 arch systemd[1]: Finished Load Kernel Module dm_mod.
May 20 19:22:04 arch systemd-journald[235]: Journal started
May 20 19:22:04 arch systemd-journald[235]: Runtime Journal (/run/log/journal/02fd8092237446f4b17509aeb6349ba3) is 8.0M, max 189.5M, 181.5M free.
May 20 19:22:04 arch systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
May 20 19:22:04 arch systemd[1]: Started Journal Service.
May 20 19:22:04 arch kernel: EXT4-fs (sda5): re-mounted c88c5185-df9b-462e-8cea-9a0c7393ae50 r/w. Quota mode: none.
May 20 19:22:04 arch systemd[1]: Finished Load Kernel Modules.
May 20 19:22:04 arch systemd[1]: Finished Remount Root and Kernel File Systems.
May 20 19:22:04 arch systemd[1]: Mounted FUSE Control File System.
May 20 19:22:04 arch systemd[1]: Mounted Kernel Configuration File System.
May 20 19:22:04 arch systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
May 20 19:22:04 arch systemd[1]: Starting Flush Journal to Persistent Storage...
May 20 19:22:04 arch systemd[1]: Starting Load/Save OS Random Seed...
May 20 19:22:04 arch systemd[1]: Starting Apply Kernel Variables...
May 20 19:22:04 arch systemd[1]: TPM2 SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 20 19:22:04 arch systemd-journald[235]: Time spent on flushing to /var/log/journal/02fd8092237446f4b17509aeb6349ba3 is 9.091695s for 735 entries.
May 20 19:22:04 arch systemd-journald[235]: System Journal (/var/log/journal/02fd8092237446f4b17509aeb6349ba3) is 434.6M, max 4.0G, 3.5G free.
May 20 19:22:15 arch systemd-journald[235]: Received client request to flush runtime journal.
May 20 19:22:15 arch systemd-journald[235]: /var/log/journal/02fd8092237446f4b17509aeb6349ba3/system.journal: Journal file uses a different sequence number ID, rotating.
May 20 19:22:15 arch systemd-journald[235]: Rotating system journal.
May 20 19:22:15 arch kernel: zram0: detected capacity change from 0 to 7763968
May 20 19:22:15 arch kernel: Adding 3881980k swap on /dev/zram0.  Priority:100 extents:1 across:3881980k SSDsc
May 20 19:22:15 arch kernel: input: PC Speaker as /devices/platform/pcspkr/input/input6
May 20 19:22:15 arch kernel: intel_rng: FWH not detected
May 20 19:22:15 arch kernel: i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
May 20 19:22:15 arch kernel: i2c i2c-6: 2/2 memory slots populated (from DMI)
May 20 19:22:15 arch kernel: i2c i2c-6: Memory type 0x0f not supported yet, not instantiating SPD
May 20 19:22:15 arch kernel: intel_powerclamp: No package C-state available
May 20 19:22:15 arch kernel: ACPI Warning: SystemIO range 0x0000000000000828-0x000000000000082F conflicts with OpRegion 0x0000000000000800-0x000000000000084F (\PMRG) (20230628/utaddress-204)
May 20 19:22:15 arch kernel: ACPI: OSL: Resource conflict; ACPI support missing from driver?
May 20 19:22:15 arch kernel: lpc_ich: Resource conflict(s) found affecting gpio_ich
May 20 19:22:15 arch kernel: leds_ss4200: no LED devices found
May 20 19:22:15 arch kernel: parport_pc 00:04: reported by Plug and Play ACPI
May 20 19:22:15 arch kernel: parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE]
May 20 19:22:15 arch kernel: iTCO_vendor_support: vendor-support=0
May 20 19:22:15 arch kernel: atl1c 0000:02:00.0 enp2s0: renamed from eth0
May 20 19:22:15 arch kernel: ppdev: user-space parallel port driver
May 20 19:22:15 arch kernel: gpio_ich gpio_ich.2.auto: GPIO from 512 to 561
May 20 19:22:15 arch kernel: iTCO_wdt iTCO_wdt.1.auto: Found a ICH7 or ICH7R TCO device (Version=2, TCOBASE=0x0860)
May 20 19:22:15 arch kernel: iTCO_wdt iTCO_wdt.1.auto: initialized. heartbeat=30 sec (nowayout=0)
May 20 19:22:15 arch kernel: mousedev: PS/2 mouse device common for all mice
May 20 19:22:15 arch kernel: snd_hda_intel 0000:00:1b.0: Applying patch firmware 'hda-jack-retask.fw'
May 20 19:22:15 arch kernel: Adding 4192252k swap on /dev/sda6.  Priority:-2 extents:1 across:4192252k 
May 20 19:22:15 arch kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
May 20 19:22:15 arch kernel: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
May 20 19:22:15 arch kernel: Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
May 20 19:22:15 arch kernel: snd_hda_codec_via hdaudioC0D0: autoconfig for VT1708S: line_outs=1 (0x1c/0x0/0x0/0x0/0x0) type:line
May 20 19:22:15 arch kernel: snd_hda_codec_via hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
May 20 19:22:15 arch kernel: snd_hda_codec_via hdaudioC0D0:    hp_outs=0 (0x0/0x0/0x0/0x0/0x0)
May 20 19:22:15 arch kernel: snd_hda_codec_via hdaudioC0D0:    mono: mono_out=0x0
May 20 19:22:15 arch kernel: snd_hda_codec_via hdaudioC0D0:    dig-out=0x20/0x0
May 20 19:22:15 arch kernel: snd_hda_codec_via hdaudioC0D0:    inputs:
May 20 19:22:15 arch kernel: snd_hda_codec_via hdaudioC0D0:      Rear Mic=0x1a
May 20 19:22:15 arch kernel: snd_hda_codec_via hdaudioC0D0:      Front Mic=0x1e
May 20 19:22:15 arch kernel: snd_hda_codec_via hdaudioC0D0:      Line=0x1b
May 20 19:22:15 arch kernel: snd_hda_codec_via hdaudioC0D0:      CD=0x1f
May 20 19:22:15 arch kernel: input: HDA Intel Rear Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input7
May 20 19:22:15 arch kernel: input: HDA Intel Front Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
May 20 19:22:15 arch kernel: input: HDA Intel Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
May 20 19:22:15 arch kernel: input: HDA Intel Line Out as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
May 20 19:22:15 arch kernel: usb 5-7: ath9k_htc: Firmware ath9k_htc/htc_9271-1.4.0.fw requested
May 20 19:22:15 arch kernel: usbcore: registered new interface driver ath9k_htc
May 20 19:22:15 arch kernel: usb 5-7: ath9k_htc: Transferred FW: ath9k_htc/htc_9271-1.4.0.fw, size: 51008
May 20 19:22:15 arch kernel: ath9k_htc 5-7:1.0: ath9k_htc: HTC initialized with 33 credits
May 20 19:22:15 arch kernel: ath9k_htc 5-7:1.0: ath9k_htc: FW Version: 1.4
May 20 19:22:15 arch kernel: ath9k_htc 5-7:1.0: FW RMW support: On
May 20 19:22:15 arch kernel: ath: EEPROM regdomain: 0x809c
May 20 19:22:15 arch kernel: ath: EEPROM indicates we should expect a country code
May 20 19:22:15 arch kernel: ath: doing EEPROM country->regdmn map search
May 20 19:22:15 arch kernel: ath: country maps to regdmn code: 0x52
May 20 19:22:15 arch kernel: ath: Country alpha2 being used: CN
May 20 19:22:15 arch kernel: ath: Regpair used: 0x52
May 20 19:22:15 arch kernel: ieee80211 phy0: Atheros AR9271 Rev:1
May 20 19:22:15 arch kernel: ath9k_htc 5-7:1.0 wlp0s29f7u7: renamed from wlan0
May 20 19:22:13 arch mtp-probe[375]: checking bus 1, device 2: "/sys/devices/pci0000:00/0000:00:1d.0/usb1/1-1"
May 20 19:22:04 arch systemd[1]: Finished Coldplug All udev Devices.
May 20 19:22:13 arch mtp-probe[371]: checking bus 1, device 3: "/sys/devices/pci0000:00/0000:00:1d.0/usb1/1-2"
May 20 19:22:05 arch systemd[1]: Finished Apply Kernel Variables.
May 20 19:22:13 arch mtp-probe[375]: bus: 1, device: 2 was not an MTP device
May 20 19:22:05 arch systemd[1]: Starting CLI Netfilter Manager...
May 20 19:22:13 arch mtp-probe[371]: bus: 1, device: 3 was not an MTP device
May 20 19:22:05 arch systemd[1]: Finished Load/Save OS Random Seed.
May 20 19:22:06 arch systemd[1]: Finished Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
May 20 19:22:06 arch systemd[1]: Finished Create Static Device Nodes in /dev gracefully.
May 20 19:22:06 arch systemd[1]: Create System Users was skipped because no trigger condition checks were met.
May 20 19:22:06 arch systemd[1]: Starting Create Static Device Nodes in /dev...
May 20 19:22:06 arch systemd[1]: Finished Create Static Device Nodes in /dev.
May 20 19:22:06 arch systemd[1]: Reached target Preparation for Local File Systems.
May 20 19:22:06 arch systemd[1]: Virtual Machine and Container Storage (Compatibility) was skipped because of an unmet condition check (ConditionPathExists=/var/lib/machines.raw).
May 20 19:22:06 arch systemd[1]: Starting Rule-based Manager for Device Events and Files...
May 20 19:22:06 arch systemd-udevd[285]: Using default interface naming scheme 'v255'.
May 20 19:22:08 arch systemd[1]: Finished CLI Netfilter Manager.
May 20 19:22:09 arch systemd[1]: Started Rule-based Manager for Device Events and Files.
May 20 19:22:09 arch systemd[1]: Found device /dev/zram0.
May 20 19:22:09 arch systemd[1]: Starting Create swap on /dev/zram0...
May 20 19:22:10 arch systemd-makefs[356]: /dev/zram0 successfully formatted as swap (label "zram0", uuid 51c5f48a-4f96-4ade-8a0f-0be2b39def89)
May 20 19:22:10 arch systemd[1]: Finished Create swap on /dev/zram0.
May 20 19:22:10 arch systemd[1]: Activating swap Compressed Swap on /dev/zram0...
May 20 19:22:10 arch systemd[1]: Activated swap Compressed Swap on /dev/zram0.
May 20 19:22:12 arch systemd[1]: Starting Virtual Console Setup...
May 20 19:22:13 arch systemd[1]: Found device ST500DM002-1BD142 6.
May 20 19:22:13 arch systemd[1]: Activating swap /dev/disk/by-uuid/8674be30-c4fc-46a3-b83f-77e5c6188eaa...
May 20 19:22:13 arch systemd[1]: Activated swap /dev/disk/by-uuid/8674be30-c4fc-46a3-b83f-77e5c6188eaa.
May 20 19:22:13 arch systemd[1]: Reached target Swaps.
May 20 19:22:13 arch systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
May 20 19:22:13 arch systemd[1]: Mounting Temporary Directory /tmp...
May 20 19:22:13 arch systemd[1]: Mounted Temporary Directory /tmp.
May 20 19:22:13 arch systemd[1]: Reached target Local File Systems.
May 20 19:22:14 arch (udev-worker)[348]: cfg80211: Process '/usr/bin/set-wireless-regdom' failed with exit code 1.
May 20 19:22:14 arch systemd[1]: Listening on System Extension Image Management (Varlink).
May 20 19:22:14 arch systemd[1]: Rebuild Dynamic Linker Cache was skipped because no trigger condition checks were met.
May 20 19:22:14 arch systemd[1]: Starting Set Up Additional Binary Formats...
May 20 19:22:14 arch systemd[1]: Update Boot Loader Random Seed was skipped because no trigger condition checks were met.
May 20 19:22:14 arch systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 390 (systemd-binfmt)
May 20 19:22:14 arch systemd[1]: Mounting Arbitrary Executable File Formats File System...
May 20 19:22:14 arch systemd[1]: Mounted Arbitrary Executable File Formats File System.
May 20 19:22:14 arch systemd[1]: Finished Virtual Console Setup.
May 20 19:22:14 arch systemd[1]: Finished Set Up Additional Binary Formats.
May 20 19:22:15 arch systemd[1]: Rebuild Dynamic Linker Cache was skipped because no trigger condition checks were met.
May 20 19:22:15 arch systemd[1]: Starting Load Kernel Module dm_mod...
May 20 19:22:15 arch systemd[1]: Starting Load Kernel Module loop...
May 20 19:22:15 arch systemd[1]: Update Boot Loader Random Seed was skipped because no trigger condition checks were met.
May 20 19:22:15 arch systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
May 20 19:22:15 arch systemd[1]: TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 20 19:22:15 arch systemd[1]: Create System Users was skipped because no trigger condition checks were met.
May 20 19:22:15 arch systemd[1]: TPM2 SRK Setup (Early) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 20 19:22:15 arch systemd[1]: TPM2 SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 20 19:22:15 arch systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
May 20 19:22:15 arch systemd[1]: Finished Load Kernel Module dm_mod.
May 20 19:22:15 arch systemd[1]: modprobe@loop.service: Deactivated successfully.
May 20 19:22:15 arch systemd[1]: Finished Load Kernel Module loop.
May 20 19:22:15 arch systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
May 20 19:22:15 arch systemd[1]: Starting Load/Save RF Kill Switch Status...
May 20 19:22:15 arch systemd[1]: Finished Flush Journal to Persistent Storage.
May 20 19:22:15 arch systemd[1]: Starting Create Volatile Files and Directories...
May 20 19:22:15 arch systemd[1]: Started Load/Save RF Kill Switch Status.
May 20 19:22:16 arch systemd[1]: Finished Create Volatile Files and Directories.
May 20 19:22:16 arch systemd[1]: First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
May 20 19:22:16 arch systemd[1]: First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes).
May 20 19:22:16 arch systemd[1]: Rebuild Journal Catalog was skipped because of an unmet condition check (ConditionNeedsUpdate=/var).
May 20 19:22:16 arch systemd[1]: Commit a transient machine-id on disk was skipped because of an unmet condition check (ConditionPathIsMountPoint=/etc/machine-id).
May 20 19:22:16 arch systemd[1]: Starting Userspace Out-Of-Memory (OOM) Killer...
May 20 19:22:16 arch systemd[1]: Update is Completed was skipped because no trigger condition checks were met.
May 20 19:22:16 arch systemd[1]: Starting Record System Boot/Shutdown in UTMP...
May 20 19:22:16 arch systemd[1]: Finished Record System Boot/Shutdown in UTMP.
May 20 19:22:16 arch systemd[1]: Reached target System Initialization.
May 20 19:22:16 arch systemd[1]: Started Refresh existing PGP keys of archlinux-keyring regularly.
May 20 19:22:16 arch systemd[1]: Started Daily man-db regeneration.
May 20 19:22:16 arch systemd[1]: Started Daily verification of password and group files.
May 20 19:22:16 arch systemd[1]: Started Daily Cleanup of Temporary Directories.
May 20 19:22:16 arch systemd[1]: Reached target Timer Units.
May 20 19:22:16 arch systemd[1]: Listening on D-Bus System Message Bus Socket.
May 20 19:22:16 arch systemd[1]: Listening on GnuPG network certificate management daemon for /etc/pacman.d/gnupg.
May 20 19:22:16 arch systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers) for /etc/pacman.d/gnupg.
May 20 19:22:16 arch systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache (restricted) for /etc/pacman.d/gnupg.
May 20 19:22:16 arch systemd[1]: Listening on GnuPG cryptographic agent (ssh-agent emulation) for /etc/pacman.d/gnupg.
May 20 19:22:16 arch systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache for /etc/pacman.d/gnupg.
May 20 19:22:16 arch systemd[1]: Listening on GnuPG public key management service for /etc/pacman.d/gnupg.
May 20 19:22:16 arch systemd[1]: Reached target Socket Units.
May 20 19:22:16 arch systemd[1]: Starting D-Bus System Message Bus...
May 20 19:22:16 arch systemd[1]: TPM2 PCR Barrier (Initialization) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 20 19:22:16 arch systemd[1]: Started Userspace Out-Of-Memory (OOM) Killer.
May 20 19:22:16 arch systemd[1]: Started D-Bus System Message Bus.
May 20 19:22:16 arch systemd[1]: Reached target Basic System.
May 20 19:22:16 arch systemd[1]: Starting Network Manager...
May 20 19:22:16 arch systemd[1]: Starting Save/Restore Sound Card State...
May 20 19:22:16 arch systemd[1]: Manage Sound Card State (restore and store) was skipped because of an unmet condition check (ConditionPathExists=/etc/alsa/state-daemon.conf).
May 20 19:22:17 arch systemd[1]: Starting Initialize hardware monitoring sensors...
May 20 19:22:17 arch (modprobe)[425]: lm_sensors.service: Referenced but unset environment variable evaluates to an empty string: BUS_MODULES
May 20 19:22:17 arch systemd[1]: Starting User Login Management...
May 20 19:22:17 arch systemd[1]: TPM2 PCR Barrier (User) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 20 19:22:17 arch dbus-broker-launch[421]: Ready
May 20 19:22:17 arch systemd[1]: Finished Save/Restore Sound Card State.
May 20 19:22:17 arch systemd[1]: Reached target Sound Card.
May 20 19:22:17 arch kernel: f71882fg: Found f71889fg chip at 0xa00, revision 21
May 20 19:22:17 arch kernel: f71882fg f71882fg.2560: Fan: 1 is in duty-cycle mode
May 20 19:22:17 arch kernel: f71882fg f71882fg.2560: Fan: 2 is in duty-cycle mode
May 20 19:22:17 arch kernel: f71882fg f71882fg.2560: Fan: 3 is in duty-cycle mode
May 20 19:22:17 arch kernel: f71882fg f71882fg.2560: hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().
May 20 19:22:17 arch systemd-logind[426]: New seat seat0.
May 20 19:22:17 arch systemd-logind[426]: Watching system buttons on /dev/input/event1 (Power Button)
May 20 19:22:17 arch systemd-logind[426]: Watching system buttons on /dev/input/event0 (Power Button)
May 20 19:22:17 arch systemd-logind[426]: Watching system buttons on /dev/input/event3 (USB USB Keyboard)
May 20 19:22:17 arch systemd-logind[426]: Watching system buttons on /dev/input/event4 (USB USB Keyboard Consumer Control)
May 20 19:22:17 arch systemd-logind[426]: Watching system buttons on /dev/input/event5 (USB USB Keyboard System Control)
May 20 19:22:17 arch systemd[1]: Started User Login Management.
May 20 19:22:17 arch systemd[1]: Finished Initialize hardware monitoring sensors.
May 20 19:22:17 arch NetworkManager[423]: <info>  [1716243737.5965] NetworkManager (version 1.46.0-2) is starting... (boot:18ebf85d-4fe8-4ea5-85dd-c3448b7d4a87)
May 20 19:22:17 arch NetworkManager[423]: <info>  [1716243737.5966] Read config: /etc/NetworkManager/NetworkManager.conf (lib: 20-connectivity.conf)
May 20 19:22:17 arch NetworkManager[423]: <info>  [1716243737.6491] manager[0x62e839326880]: monitoring kernel firmware directory '/lib/firmware'.
May 20 19:22:17 arch systemd[1]: Starting Hostname Service...
May 20 19:22:17 arch systemd[1]: Started Hostname Service.
May 20 19:22:17 arch NetworkManager[423]: <info>  [1716243737.7608] hostname: hostname: using hostnamed
May 20 19:22:17 arch NetworkManager[423]: <info>  [1716243737.7610] hostname: static hostname changed from (none) to "arch"
May 20 19:22:17 arch NetworkManager[423]: <info>  [1716243737.7619] dns-mgr: init: dns=default,systemd-resolved rc-manager=symlink
May 20 19:22:17 arch NetworkManager[423]: <info>  [1716243737.7632] rfkill0: found Wi-Fi radio killswitch (at /sys/devices/pci0000:00/0000:00:1d.7/usb5/5-7/5-7:1.0/ieee80211/phy0/rfkill0) (driver ath9k_htc)
May 20 19:22:17 arch NetworkManager[423]: <info>  [1716243737.7634] manager[0x62e839326880]: rfkill: Wi-Fi hardware radio set enabled
May 20 19:22:17 arch NetworkManager[423]: <info>  [1716243737.7635] manager[0x62e839326880]: rfkill: WWAN hardware radio set enabled
May 20 19:22:17 arch NetworkManager[423]: <info>  [1716243737.9812] Loaded device plugin: NMBluezManager (/usr/lib/NetworkManager/1.46.0-2/libnm-device-plugin-bluetooth.so)
May 20 19:22:18 arch NetworkManager[423]: <info>  [1716243738.0028] Loaded device plugin: NMAtmManager (/usr/lib/NetworkManager/1.46.0-2/libnm-device-plugin-adsl.so)
May 20 19:22:18 arch NetworkManager[423]: <info>  [1716243738.0044] Loaded device plugin: NMWwanFactory (/usr/lib/NetworkManager/1.46.0-2/libnm-device-plugin-wwan.so)
May 20 19:22:18 arch NetworkManager[423]: <info>  [1716243738.3972] Loaded device plugin: NMTeamFactory (/usr/lib/NetworkManager/1.46.0-2/libnm-device-plugin-team.so)
May 20 19:22:18 arch NetworkManager[423]: <info>  [1716243738.4274] Loaded device plugin: NMWifiFactory (/usr/lib/NetworkManager/1.46.0-2/libnm-device-plugin-wifi.so)
May 20 19:22:18 arch NetworkManager[423]: <info>  [1716243738.4369] Loaded device plugin: NMOvsFactory (/usr/lib/NetworkManager/1.46.0-2/libnm-device-plugin-ovs.so)
May 20 19:22:18 arch NetworkManager[423]: <info>  [1716243738.4373] manager: rfkill: Wi-Fi enabled by radio killswitch; enabled by state file
May 20 19:22:18 arch NetworkManager[423]: <info>  [1716243738.4373] manager: rfkill: WWAN enabled by radio killswitch; enabled by state file
May 20 19:22:18 arch NetworkManager[423]: <info>  [1716243738.4374] manager: Networking is enabled by state file
May 20 19:22:18 arch NetworkManager[423]: <info>  [1716243738.4632] settings: Loaded settings plugin: keyfile (internal)
May 20 19:22:18 arch systemd[1]: Starting Network Manager Script Dispatcher Service...
May 20 19:22:18 arch NetworkManager[423]: <info>  [1716243738.5409] dhcp: init: Using DHCP client 'internal'
May 20 19:22:18 arch NetworkManager[423]: <info>  [1716243738.5690] manager: (lo): new Loopback device (/org/freedesktop/NetworkManager/Devices/1)
May 20 19:22:18 arch NetworkManager[423]: <info>  [1716243738.5709] device (lo): state change: unmanaged -> unavailable (reason 'connection-assumed', sys-iface-state: 'external')
May 20 19:22:18 arch NetworkManager[423]: <info>  [1716243738.5924] device (lo): state change: unavailable -> disconnected (reason 'connection-assumed', sys-iface-state: 'external')
May 20 19:22:18 arch NetworkManager[423]: <info>  [1716243738.5935] device (lo): Activation: starting connection 'lo' (01df8f1b-2886-46f8-b5d4-f38e91d0a460)
May 20 19:22:18 arch NetworkManager[423]: <info>  [1716243738.5949] manager: (enp2s0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/2)
May 20 19:22:18 arch NetworkManager[423]: <info>  [1716243738.5966] settings: (enp2s0): created default wired connection 'Wired connection 1'
May 20 19:22:18 arch NetworkManager[423]: <info>  [1716243738.5966] device (enp2s0): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
May 20 19:22:18 arch NetworkManager[423]: <info>  [1716243738.6157] device (wlp0s29f7u7): driver supports Access Point (AP) mode
May 20 19:22:18 arch NetworkManager[423]: <info>  [1716243738.6172] manager: (wlp0s29f7u7): new 802.11 Wi-Fi device (/org/freedesktop/NetworkManager/Devices/3)
May 20 19:22:18 arch NetworkManager[423]: <info>  [1716243738.6175] device (wlp0s29f7u7): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
May 20 19:22:18 arch systemd[1]: Started Network Manager Script Dispatcher Service.
May 20 19:22:18 arch NetworkManager[423]: <info>  [1716243738.8413] device (wlp0s29f7u7): set-hw-addr: set MAC address to BA:DD:80:63:FE:34 (scanning)
May 20 19:22:19 arch NetworkManager[423]: <info>  [1716243739.0543] bus-manager: acquired D-Bus service "org.freedesktop.NetworkManager"
May 20 19:22:19 arch systemd[1]: Started Network Manager.
May 20 19:22:19 arch systemd[1]: Starting WPA supplicant...
May 20 19:22:19 arch NetworkManager[423]: <info>  [1716243739.0964] ovsdb: disconnected from ovsdb
May 20 19:22:19 arch NetworkManager[423]: <info>  [1716243739.0965] device (lo): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'external')
May 20 19:22:19 arch NetworkManager[423]: <info>  [1716243739.0968] device (lo): state change: prepare -> config (reason 'none', sys-iface-state: 'external')
May 20 19:22:19 arch NetworkManager[423]: <info>  [1716243739.0970] device (lo): state change: config -> ip-config (reason 'none', sys-iface-state: 'external')
May 20 19:22:19 arch NetworkManager[423]: <info>  [1716243739.0978] device (lo): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'external')
May 20 19:22:19 arch NetworkManager[423]: <info>  [1716243739.1321] device (lo): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'external')
May 20 19:22:19 arch NetworkManager[423]: <info>  [1716243739.1323] device (lo): state change: secondaries -> activated (reason 'none', sys-iface-state: 'external')
May 20 19:22:19 arch NetworkManager[423]: <info>  [1716243739.1329] device (lo): Activation: successful, device activated.
May 20 19:22:19 arch systemd[1]: Started WPA supplicant.
May 20 19:22:19 arch wpa_supplicant[449]: Successfully initialized wpa_supplicant
May 20 19:22:19 arch systemd[1]: Reached target Network.
May 20 19:22:19 arch systemd[1]: Starting Network Time Service...
May 20 19:22:19 arch systemd[1]: Starting Permit User Sessions...
May 20 19:22:19 arch systemd[1]: Finished Permit User Sessions.
May 20 19:22:19 arch systemd[1]: Started Simple Desktop Display Manager.
May 20 19:22:20 arch ntpd[450]: ntpd 4.2.8p17@1.4004-o Tue Jun  6 14:05:47 UTC 2023 (1): Starting
May 20 19:22:20 arch ntpd[450]: Command line: /usr/bin/ntpd -g -u ntp:ntp
May 20 19:22:20 arch ntpd[450]: ----------------------------------------------------
May 20 19:22:20 arch ntpd[450]: ntp-4 is maintained by Network Time Foundation,
May 20 19:22:20 arch ntpd[450]: Inc. (NTF), a non-profit 501(c)(3) public-benefit
May 20 19:22:20 arch ntpd[450]: corporation.  Support and training for ntp-4 are
May 20 19:22:20 arch ntpd[450]: available at https://www.nwtime.org/support
May 20 19:22:20 arch ntpd[450]: ----------------------------------------------------
May 20 19:22:20 arch ntpd[450]: DEBUG behavior is enabled - a violation of any
May 20 19:22:20 arch ntpd[450]: diagnostic assertion will cause ntpd to abort
May 20 19:22:20 arch NetworkManager[423]: <info>  [1716243740.2485] device (wlp0s29f7u7): supplicant interface state: internal-starting -> disconnected
May 20 19:22:20 arch NetworkManager[423]: <info>  [1716243740.2486] Wi-Fi P2P device controlled by interface wlp0s29f7u7 created
May 20 19:22:20 arch NetworkManager[423]: <info>  [1716243740.2490] manager: (p2p-dev-wlp0s29f7u7): new 802.11 Wi-Fi P2P device (/org/freedesktop/NetworkManager/Devices/4)
May 20 19:22:20 arch NetworkManager[423]: <info>  [1716243740.2493] device (p2p-dev-wlp0s29f7u7): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
May 20 19:22:20 arch NetworkManager[423]: <info>  [1716243740.2498] device (wlp0s29f7u7): state change: unavailable -> disconnected (reason 'supplicant-available', sys-iface-state: 'managed')
May 20 19:22:20 arch NetworkManager[423]: <info>  [1716243740.2504] device (p2p-dev-wlp0s29f7u7): state change: unavailable -> disconnected (reason 'none', sys-iface-state: 'managed')
May 20 19:22:20 arch ntpd[455]: proto: precision = 0.126 usec (-23)
May 20 19:22:20 arch ntpd[455]: basedate set to 2023-05-25
May 20 19:22:20 arch ntpd[455]: gps base set to 2023-05-28 (week 2264)
May 20 19:22:20 arch ntpd[455]: initial drift restored to -49.647000
May 20 19:22:20 arch ntpd[455]: Listen and drop on 0 v6wildcard [::]:123
May 20 19:22:20 arch ntpd[455]: Listen and drop on 1 v4wildcard 0.0.0.0:123
May 20 19:22:20 arch ntpd[455]: Listen normally on 2 lo 127.0.0.1:123
May 20 19:22:20 arch ntpd[455]: Listen normally on 3 lo [::1]:123
May 20 19:22:20 arch ntpd[455]: Listening on routing socket on fd #20 for interface updates
May 20 19:22:20 arch ntpd[455]: kernel reports TIME_ERROR: 0x41: Clock Unsynchronized
May 20 19:22:20 arch ntpd[455]: kernel reports TIME_ERROR: 0x41: Clock Unsynchronized
May 20 19:22:20 arch systemd[1]: Started Network Time Service.
May 20 19:22:20 arch systemd[1]: Reached target Multi-User System.
May 20 19:22:20 arch systemd[1]: Reached target Graphical Interface.
May 20 19:22:20 arch systemd[1]: Startup finished in 4.698s (kernel) + 24.685s (userspace) = 29.384s.
May 20 19:22:20 arch systemd[1]: systemd-rfkill.service: Deactivated successfully.
May 20 19:22:21 arch sddm[454]: Initializing...
May 20 19:22:21 arch sddm[454]: Starting...
May 20 19:22:21 arch sddm[454]: Logind interface found
May 20 19:22:21 arch sddm[454]: Adding new display...
May 20 19:22:21 arch sddm[454]: Loaded empty theme configuration
May 20 19:22:21 arch sddm[454]: Xauthority path: "/run/sddm/xauth_RtbVAj"
May 20 19:22:21 arch sddm[454]: Using VT 2
May 20 19:22:21 arch sddm[454]: Display server starting...
May 20 19:22:21 arch sddm[454]: Writing cookie to "/run/sddm/xauth_RtbVAj"
May 20 19:22:21 arch sddm[454]: Running: /usr/bin/X -nolisten tcp -background none -seat seat0 vt2 -auth /run/sddm/xauth_RtbVAj -noreset -displayfd 16
May 20 19:22:21 arch NetworkManager[423]: <info>  [1716243741.5569] policy: auto-activating connection 'JAVIER' (e46b91b4-57df-4d96-b80c-237284377815)
May 20 19:22:21 arch NetworkManager[423]: <info>  [1716243741.5573] device (wlp0s29f7u7): Activation: starting connection 'JAVIER' (e46b91b4-57df-4d96-b80c-237284377815)
May 20 19:22:21 arch NetworkManager[423]: <info>  [1716243741.5574] device (wlp0s29f7u7): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
May 20 19:22:21 arch NetworkManager[423]: <info>  [1716243741.5577] manager: NetworkManager state is now CONNECTING
May 20 19:22:21 arch NetworkManager[423]: <info>  [1716243741.5978] device (wlp0s29f7u7): set-hw-addr: reset MAC address to F8:D1:11:0B:01:19 (preserve)
May 20 19:22:21 arch NetworkManager[423]: <info>  [1716243741.8098] device (wlp0s29f7u7): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
May 20 19:22:21 arch NetworkManager[423]: <info>  [1716243741.8103] device (wlp0s29f7u7): Activation: (wifi) access point 'JAVIER' has security, but secrets are required.
May 20 19:22:21 arch NetworkManager[423]: <info>  [1716243741.8104] device (wlp0s29f7u7): state change: config -> need-auth (reason 'none', sys-iface-state: 'managed')
May 20 19:22:21 arch NetworkManager[423]: <info>  [1716243741.8105] sup-iface[43ec6e4ae16e25ec,0,wlp0s29f7u7]: wps: type pbc start...
May 20 19:22:21 arch NetworkManager[423]: <info>  [1716243741.8109] device (wlp0s29f7u7): supplicant interface state: disconnected -> interface_disabled
May 20 19:22:21 arch NetworkManager[423]: <info>  [1716243741.8109] device (p2p-dev-wlp0s29f7u7): supplicant management interface state: disconnected -> interface_disabled
May 20 19:22:21 arch NetworkManager[423]: <info>  [1716243741.8122] device (wlp0s29f7u7): supplicant interface state: interface_disabled -> inactive
May 20 19:22:21 arch NetworkManager[423]: <info>  [1716243741.8122] device (p2p-dev-wlp0s29f7u7): supplicant management interface state: interface_disabled -> inactive
May 20 19:22:21 arch NetworkManager[423]: <info>  [1716243741.8123] device (wlp0s29f7u7): state change: need-auth -> prepare (reason 'none', sys-iface-state: 'managed')
May 20 19:22:21 arch NetworkManager[423]: <info>  [1716243741.8126] device (wlp0s29f7u7): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
May 20 19:22:21 arch NetworkManager[423]: <info>  [1716243741.8129] device (wlp0s29f7u7): Activation: (wifi) connection 'JAVIER' has security, and secrets exist.  No new secrets needed.
May 20 19:22:21 arch wpa_supplicant[449]: wlp0s29f7u7: WPS-PBC-ACTIVE
May 20 19:22:21 arch NetworkManager[423]: <info>  [1716243741.8129] Config: added 'ssid' value 'JAVIER'
May 20 19:22:21 arch NetworkManager[423]: <info>  [1716243741.8130] Config: added 'scan_ssid' value '1'
May 20 19:22:21 arch NetworkManager[423]: <info>  [1716243741.8130] Config: added 'bgscan' value 'simple:30:-70:86400'
May 20 19:22:21 arch NetworkManager[423]: <info>  [1716243741.8130] Config: added 'key_mgmt' value 'WPA-PSK WPA-PSK-SHA256 FT-PSK SAE FT-SAE'
May 20 19:22:21 arch NetworkManager[423]: <info>  [1716243741.8130] Config: added 'auth_alg' value 'OPEN'
May 20 19:22:21 arch NetworkManager[423]: <info>  [1716243741.8130] Config: added 'psk' value '<hidden>'
May 20 19:22:21 arch wpa_supplicant[449]: wlp0s29f7u7: WPS-CANCEL
May 20 19:22:21 arch NetworkManager[423]: <info>  [1716243741.9090] device (wlp0s29f7u7): supplicant interface state: inactive -> scanning
May 20 19:22:21 arch NetworkManager[423]: <info>  [1716243741.9090] device (p2p-dev-wlp0s29f7u7): supplicant management interface state: inactive -> scanning
May 20 19:22:22 arch wpa_supplicant[449]: wlp0s29f7u7: SME: Trying to authenticate with 60:d7:55:5b:75:5c (SSID='JAVIER' freq=2422 MHz)
May 20 19:22:22 arch kernel: wlp0s29f7u7: authenticate with 60:d7:55:5b:75:5c
May 20 19:22:22 arch kernel: wlp0s29f7u7: 80 MHz not supported, disabling VHT
May 20 19:22:22 arch NetworkManager[423]: <info>  [1716243742.2782] device (wlp0s29f7u7): supplicant interface state: scanning -> authenticating
May 20 19:22:22 arch NetworkManager[423]: <info>  [1716243742.2782] device (p2p-dev-wlp0s29f7u7): supplicant management interface state: scanning -> authenticating
May 20 19:22:22 arch kernel: wlp0s29f7u7: send auth to 60:d7:55:5b:75:5c (try 1/3)
May 20 19:22:22 arch kernel: wlp0s29f7u7: authenticated
May 20 19:22:22 arch wpa_supplicant[449]: wlp0s29f7u7: Trying to associate with 60:d7:55:5b:75:5c (SSID='JAVIER' freq=2422 MHz)
May 20 19:22:22 arch NetworkManager[423]: <info>  [1716243742.2810] device (wlp0s29f7u7): supplicant interface state: authenticating -> associating
May 20 19:22:22 arch NetworkManager[423]: <info>  [1716243742.2810] device (p2p-dev-wlp0s29f7u7): supplicant management interface state: authenticating -> associating
May 20 19:22:22 arch kernel: wlp0s29f7u7: associate with 60:d7:55:5b:75:5c (try 1/3)
May 20 19:22:22 arch kernel: wlp0s29f7u7: RX AssocResp from 60:d7:55:5b:75:5c (capab=0x1431 status=0 aid=49)
May 20 19:22:22 arch wpa_supplicant[449]: wlp0s29f7u7: Associated with 60:d7:55:5b:75:5c
May 20 19:22:22 arch kernel: wlp0s29f7u7: associated
May 20 19:22:22 arch wpa_supplicant[449]: wlp0s29f7u7: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
May 20 19:22:22 arch wpa_supplicant[449]: wlp0s29f7u7: CTRL-EVENT-REGDOM-CHANGE init=COUNTRY_IE type=COUNTRY alpha2=AR
May 20 19:22:22 arch NetworkManager[423]: <info>  [1716243742.3099] device (wlp0s29f7u7): supplicant interface state: associating -> 4way_handshake
May 20 19:22:22 arch NetworkManager[423]: <info>  [1716243742.3101] device (p2p-dev-wlp0s29f7u7): supplicant management interface state: associating -> 4way_handshake
May 20 19:22:22 arch kernel: wlp0s29f7u7: Limiting TX power to 30 (30 - 0) dBm as advertised by 60:d7:55:5b:75:5c
May 20 19:22:22 arch wpa_supplicant[449]: wlp0s29f7u7: WPA: Key negotiation completed with 60:d7:55:5b:75:5c [PTK=CCMP GTK=TKIP]
May 20 19:22:22 arch wpa_supplicant[449]: wlp0s29f7u7: CTRL-EVENT-CONNECTED - Connection to 60:d7:55:5b:75:5c completed [id=0 id_str=]
May 20 19:22:22 arch NetworkManager[423]: <info>  [1716243742.4272] device (wlp0s29f7u7): supplicant interface state: 4way_handshake -> completed
May 20 19:22:22 arch NetworkManager[423]: <info>  [1716243742.4273] device (wlp0s29f7u7): Activation: (wifi) Stage 2 of 5 (Device Configure) successful. Connected to wireless network "JAVIER"
May 20 19:22:22 arch NetworkManager[423]: <info>  [1716243742.4273] device (p2p-dev-wlp0s29f7u7): supplicant management interface state: 4way_handshake -> completed
May 20 19:22:22 arch NetworkManager[423]: <info>  [1716243742.4274] device (wlp0s29f7u7): state change: config -> ip-config (reason 'none', sys-iface-state: 'managed')
May 20 19:22:22 arch NetworkManager[423]: <info>  [1716243742.4280] dhcp4 (wlp0s29f7u7): activation: beginning transaction (timeout in 45 seconds)
May 20 19:22:22 arch NetworkManager[423]: <info>  [1716243742.4792] dhcp4 (wlp0s29f7u7): state changed new lease, address=192.168.100.2, acd pending
May 20 19:22:22 arch NetworkManager[423]: <info>  [1716243742.6561] dhcp4 (wlp0s29f7u7): state changed new lease, address=192.168.100.2
May 20 19:22:22 arch NetworkManager[423]: <info>  [1716243742.6565] policy: set 'JAVIER' (wlp0s29f7u7) as default for IPv4 routing and DNS
May 20 19:22:22 arch dbus-broker-launch[421]: Activation request for 'org.freedesktop.resolve1' failed: The systemd unit 'dbus-org.freedesktop.resolve1.service' could not be found.
May 20 19:22:22 arch wpa_supplicant[449]: wlp0s29f7u7: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-48 noise=9999 txrate=65000
May 20 19:22:22 arch NetworkManager[423]: <info>  [1716243742.9496] device (wlp0s29f7u7): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'managed')
May 20 19:22:22 arch NetworkManager[423]: <info>  [1716243742.9525] device (wlp0s29f7u7): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'managed')
May 20 19:22:22 arch NetworkManager[423]: <info>  [1716243742.9528] device (wlp0s29f7u7): state change: secondaries -> activated (reason 'none', sys-iface-state: 'managed')
May 20 19:22:22 arch NetworkManager[423]: <info>  [1716243742.9532] manager: NetworkManager state is now CONNECTED_SITE
May 20 19:22:22 arch NetworkManager[423]: <info>  [1716243742.9539] device (wlp0s29f7u7): Activation: successful, device activated.
May 20 19:22:23 arch NetworkManager[423]: <info>  [1716243743.6394] manager: NetworkManager state is now CONNECTED_GLOBAL
May 20 19:22:23 arch NetworkManager[423]: <info>  [1716243743.7261] dhcp6 (wlp0s29f7u7): activation: beginning transaction (timeout in 45 seconds)
May 20 19:22:23 arch NetworkManager[423]: <info>  [1716243743.7269] policy: set 'JAVIER' (wlp0s29f7u7) as default for IPv6 routing and DNS
May 20 19:22:23 arch NetworkManager[423]: <info>  [1716243743.8432] dhcp6 (wlp0s29f7u7): state changed new lease
May 20 19:22:24 arch NetworkManager[423]: <info>  [1716243744.6160] manager: startup complete
May 20 19:22:27 arch sddm[454]: Setting default cursor
May 20 19:22:27 arch sddm[454]: Running display setup script  "/usr/share/sddm/scripts/Xsetup"
May 20 19:22:27 arch sddm[454]: Display server started.
May 20 19:22:27 arch sddm[454]: Reading from "/usr/local/share/xsessions/i3.desktop"
May 20 19:22:27 arch sddm[454]: Reading from "/usr/share/xsessions/i3.desktop"
May 20 19:22:27 arch sddm[454]: Session "/usr/share/xsessions/i3.desktop" selected, command: "i3" for VT 2
May 20 19:22:27 arch sddm-helper[481]: [PAM] Starting...
May 20 19:22:27 arch sddm-helper[481]: [PAM] Authenticating...
May 20 19:22:27 arch sddm-helper[481]: [PAM] returning.
May 20 19:22:27 arch dbus-broker-launch[421]: Activation request for 'org.freedesktop.home1' failed: The systemd unit 'dbus-org.freedesktop.home1.service' could not be found.
May 20 19:22:27 arch sddm[454]: Authentication for user  "jec"  successful
May 20 19:22:27 arch sddm-helper[481]: pam_unix(sddm-autologin:session): session opened for user jec(uid=1000) by jec(uid=0)
May 20 19:22:27 arch systemd-logind[426]: New session 1 of user jec.
May 20 19:22:27 arch systemd[1]: Created slice User Slice of UID 1000.
May 20 19:22:27 arch systemd[1]: Starting User Runtime Directory /run/user/1000...
May 20 19:22:28 arch ntpd[455]: Listen normally on 4 wlp0s29f7u7 192.168.100.2:123
May 20 19:22:28 arch ntpd[455]: Listen normally on 5 wlp0s29f7u7 [2803:9800:9010:b0fd:ad2b:e669:9412:80f3]:123
May 20 19:22:28 arch ntpd[455]: Listen normally on 6 wlp0s29f7u7 [fe80::4111:55ba:1cdb:69b3%3]:123
May 20 19:22:28 arch ntpd[455]: new interface(s) found: waking up resolver
May 20 19:22:28 arch systemd[1]: Finished User Runtime Directory /run/user/1000.
May 20 19:22:28 arch systemd[1]: Starting User Manager for UID 1000...
May 20 19:22:28 arch (systemd)[486]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8002 service=[systemd-user] terminal=[] user=[jec] ruser=[<unknown>] rhost=[<unknown>]
May 20 19:22:28 arch (systemd)[486]: pam_unix(systemd-user:session): session opened for user jec(uid=1000) by jec(uid=0)
May 20 19:22:28 arch systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
May 20 19:22:29 arch systemd[486]: Queued start job for default target Main User Target.
May 20 19:22:31 arch systemd-journald[235]: /var/log/journal/02fd8092237446f4b17509aeb6349ba3/user-1000.journal: Journal file uses a different sequence number ID, rotating.
May 20 19:22:29 arch wpa_supplicant[449]: wlp0s29f7u7: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-42 noise=9999 txrate=72200
May 20 19:22:29 arch systemd[486]: Created slice User Application Slice.
May 20 19:22:29 arch systemd[486]: Reached target Paths.
May 20 19:22:29 arch systemd[486]: Reached target Timers.
May 20 19:22:31 arch dbus-broker-launch[508]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +31: Eavesdropping is deprecated and ignored
May 20 19:22:31 arch dbus-broker-launch[508]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +33: Eavesdropping is deprecated and ignored
May 20 19:22:29 arch systemd[486]: Starting D-Bus User Message Bus Socket...
May 20 19:22:29 arch systemd[486]: Listening on GnuPG network certificate management daemon.
May 20 19:22:29 arch systemd[486]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
May 20 19:22:29 arch systemd[486]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
May 20 19:22:29 arch systemd[486]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
May 20 19:22:29 arch systemd[486]: Listening on GnuPG cryptographic agent and passphrase cache.
May 20 19:22:29 arch systemd[486]: Listening on GnuPG public key management service.
May 20 19:22:29 arch systemd[486]: Listening on p11-kit server.
May 20 19:22:29 arch systemd[486]: Listening on PipeWire PulseAudio.
May 20 19:22:29 arch systemd[486]: Listening on PipeWire Multimedia System Sockets.
May 20 19:22:29 arch systemd[486]: Listening on D-Bus User Message Bus Socket.
May 20 19:22:29 arch systemd[486]: Reached target Sockets.
May 20 19:22:29 arch systemd[486]: Reached target Basic System.
May 20 19:22:29 arch systemd[1]: Started User Manager for UID 1000.
May 20 19:22:29 arch systemd[1]: Started Session 1 of User jec.
May 20 19:22:29 arch systemd[486]: Starting Update XDG user dir configuration...
May 20 19:22:29 arch sddm-helper[481]: Writing cookie to "/tmp/xauth_zFkCnf"
May 20 19:22:29 arch sddm-helper[481]: Starting X11 session: "" "/usr/share/sddm/scripts/Xsession \"i3\""
May 20 19:22:29 arch sddm[454]: Session started true
May 20 19:22:29 arch systemd[486]: Finished Update XDG user dir configuration.
May 20 19:22:29 arch systemd[486]: Reached target Main User Target.
May 20 19:22:29 arch systemd[486]: Startup finished in 1.187s.
May 20 19:22:29 arch systemd[486]: Created slice User Core Session Slice.
May 20 19:22:29 arch systemd[486]: Starting D-Bus User Message Bus...
May 20 19:22:30 arch dbus-broker-launch[508]: Service file '/usr/share//dbus-1/services/org.knopwob.dunst.service' is not named after the D-Bus name 'org.freedesktop.Notifications'.
May 20 19:22:30 arch dbus-broker-launch[508]: Service file '/usr/share//dbus-1/services/org.xfce.Thunar.FileManager1.service' is not named after the D-Bus name 'org.freedesktop.FileManager1'.
May 20 19:22:30 arch systemd[486]: Started D-Bus User Message Bus.
May 20 19:22:30 arch dbus-broker-launch[508]: Ready
May 20 19:22:38 arch kernel: Xorg[460]: memfd_create() called without MFD_EXEC or MFD_NOEXEC_SEAL set
May 20 19:22:38 arch systemd[486]: Started PipeWire Multimedia Service.
May 20 19:22:38 arch systemd[486]: Started Multimedia Service Session Manager.
May 20 19:22:38 arch systemd[486]: Started PipeWire PulseAudio.
May 20 19:22:38 arch systemd[1]: Starting RealtimeKit Scheduling Policy Service...
May 20 19:22:38 arch systemd[1]: Started RealtimeKit Scheduling Policy Service.
May 20 19:22:38 arch rtkit-daemon[573]: Successfully called chroot.
May 20 19:22:38 arch rtkit-daemon[573]: Successfully dropped privileges.
May 20 19:22:38 arch rtkit-daemon[573]: Successfully limited resources.
May 20 19:22:38 arch rtkit-daemon[573]: Running.
May 20 19:22:38 arch rtkit-daemon[573]: Supervising 0 threads of 0 processes of 0 users.
May 20 19:22:38 arch rtkit-daemon[573]: Supervising 0 threads of 0 processes of 0 users.
May 20 19:22:38 arch rtkit-daemon[573]: Supervising 0 threads of 0 processes of 0 users.
May 20 19:22:38 arch rtkit-daemon[573]: Canary thread running.
May 20 19:22:38 arch rtkit-daemon[573]: Watchdog thread running.
May 20 19:22:38 arch rtkit-daemon[573]: Supervising 0 threads of 0 processes of 0 users.
May 20 19:22:38 arch rtkit-daemon[573]: Supervising 0 threads of 0 processes of 0 users.
May 20 19:22:38 arch rtkit-daemon[573]: Supervising 0 threads of 0 processes of 0 users.
May 20 19:22:38 arch rtkit-daemon[573]: Supervising 0 threads of 0 processes of 0 users.
May 20 19:22:38 arch rtkit-daemon[573]: Supervising 0 threads of 0 processes of 0 users.
May 20 19:22:38 arch rtkit-daemon[573]: Supervising 0 threads of 0 processes of 0 users.
May 20 19:22:38 arch systemd[1]: Starting Authorization Manager...
May 20 19:22:39 arch polkitd[577]: Started polkitd version 124
May 20 19:22:39 arch polkitd[577]: Loading rules from directory /etc/polkit-1/rules.d
May 20 19:22:39 arch polkitd[577]: Loading rules from directory /usr/share/polkit-1/rules.d
May 20 19:22:39 arch polkitd[577]: Finished loading, compiling and executing 5 rules
May 20 19:22:39 arch systemd[1]: Started Authorization Manager.
May 20 19:22:39 arch polkitd[577]: Acquired the name org.freedesktop.PolicyKit1 on the system bus
May 20 19:22:40 arch rtkit-daemon[573]: Successfully made thread 563 of process 563 owned by '1000' high priority at nice level -11.
May 20 19:22:40 arch rtkit-daemon[573]: Supervising 1 threads of 1 processes of 1 users.
May 20 19:22:40 arch rtkit-daemon[573]: Successfully made thread 564 of process 564 owned by '1000' high priority at nice level -11.
May 20 19:22:40 arch rtkit-daemon[573]: Supervising 2 threads of 2 processes of 1 users.
May 20 19:22:40 arch rtkit-daemon[573]: Successfully made thread 565 of process 565 owned by '1000' high priority at nice level -11.
May 20 19:22:40 arch rtkit-daemon[573]: Supervising 3 threads of 3 processes of 1 users.
May 20 19:22:40 arch rtkit-daemon[573]: Successfully made thread 583 of process 565 owned by '1000' RT at priority 20.
May 20 19:22:40 arch rtkit-daemon[573]: Supervising 4 threads of 3 processes of 1 users.
May 20 19:22:40 arch rtkit-daemon[573]: Successfully made thread 584 of process 563 owned by '1000' RT at priority 20.
May 20 19:22:40 arch rtkit-daemon[573]: Supervising 5 threads of 3 processes of 1 users.
May 20 19:22:46 arch systemd[486]: Starting Virtual filesystem service...
May 20 19:22:46 arch wireplumber[564]: Failed to get percentage from UPower: org.freedesktop.DBus.Error.NameHasNoOwner
May 20 19:22:46 arch wireplumber[564]: BlueZ system service is not available
May 20 19:22:46 arch systemd[486]: Started Virtual filesystem service.
May 20 19:22:47 arch wireplumber[564]: [0:00:56.013982628] [564] ERROR IPAModule ipa_module.cpp:172 Symbol ipaModuleInfo not found
May 20 19:22:47 arch wireplumber[564]: [0:00:56.014035121] [564] ERROR IPAModule ipa_module.cpp:292 v4l2-compat.so: IPA module has no valid info
May 20 19:22:47 arch wireplumber[564]: [0:00:56.014120300] [564]  INFO Camera camera_manager.cpp:284 libcamera v0.2.0
May 20 19:22:47 arch systemd[486]: Starting Accessibility services bus...
May 20 19:22:47 arch systemd[486]: Started Accessibility services bus.
May 20 19:22:47 arch at-spi-bus-launcher[712]: Policy to allow eavesdropping in /usr/share/defaults/at-spi2/accessibility.conf +15: Eavesdropping is deprecated and ignored
May 20 19:22:47 arch at-spi-bus-launcher[712]: Policy to allow eavesdropping in /usr/share/defaults/at-spi2/accessibility.conf +17: Eavesdropping is deprecated and ignored
May 20 19:22:47 arch dbus-broker-launch[712]: Ready
May 20 19:22:47 arch systemd[1]: systemd-hostnamed.service: Deactivated successfully.
May 20 19:22:49 arch polkitd[577]: Registered Authentication Agent for unix-session:1 (system bus name :1.22 [/usr/lib/xfce-polkit/xfce-polkit], object path /org/freedesktop/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8)
May 20 19:22:49 arch systemd[486]: Created slice Slice /app/dbus-:1.14-org.a11y.atspi.Registry.
May 20 19:22:49 arch systemd[486]: Started dbus-:1.14-org.a11y.atspi.Registry@0.service.
May 20 19:22:49 arch at-spi2-registryd[737]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
May 20 19:22:51 arch systemd[486]: Starting Portal service...
May 20 19:22:51 arch systemd[486]: Starting flatpak document portal service...
May 20 19:22:51 arch systemd[486]: Starting sandboxed app permission store...
May 20 19:22:52 arch systemd[486]: Started sandboxed app permission store.
May 20 19:22:52 arch systemd[486]: Started flatpak document portal service.
May 20 19:22:52 arch xdg-desktop-por[752]: Choosing gtk.portal for org.freedesktop.impl.portal.Lockdown as a last-resort fallback
May 20 19:22:52 arch xdg-desktop-por[752]: The preferred method to match portal implementations to desktop environments is to use the portals.conf(5) configuration file
May 20 19:22:52 arch systemd[486]: Starting Portal service (GTK/GNOME implementation)...
May 20 19:22:52 arch systemd[486]: Started Portal service (GTK/GNOME implementation).
May 20 19:22:52 arch rtkit-daemon[573]: Supervising 5 threads of 3 processes of 1 users.
May 20 19:22:52 arch rtkit-daemon[573]: Supervising 5 threads of 3 processes of 1 users.
May 20 19:22:52 arch rtkit-daemon[573]: Supervising 5 threads of 3 processes of 1 users.
May 20 19:22:52 arch xdg-desktop-por[752]: No skeleton to export
May 20 19:22:52 arch xdg-desktop-por[752]: Choosing gtk.portal for org.freedesktop.impl.portal.FileChooser as a last-resort fallback
May 20 19:22:52 arch xdg-desktop-por[752]: Choosing gtk.portal for org.freedesktop.impl.portal.AppChooser as a last-resort fallback
May 20 19:22:52 arch xdg-desktop-por[752]: Choosing gtk.portal for org.freedesktop.impl.portal.Print as a last-resort fallback
May 20 19:22:52 arch xdg-desktop-por[752]: Choosing gtk.portal for org.freedesktop.impl.portal.Notification as a last-resort fallback
May 20 19:22:52 arch xdg-desktop-por[752]: Choosing gtk.portal for org.freedesktop.impl.portal.Inhibit as a last-resort fallback
May 20 19:22:52 arch xdg-desktop-por[752]: Choosing gtk.portal for org.freedesktop.impl.portal.Access as a last-resort fallback
May 20 19:22:52 arch xdg-desktop-por[752]: Choosing gtk.portal for org.freedesktop.impl.portal.Account as a last-resort fallback
May 20 19:22:52 arch xdg-desktop-por[752]: Choosing gtk.portal for org.freedesktop.impl.portal.Email as a last-resort fallback
May 20 19:22:52 arch xdg-desktop-por[752]: Choosing gtk.portal for org.freedesktop.impl.portal.DynamicLauncher as a last-resort fallback
May 20 19:22:52 arch systemd[486]: Started Portal service.
May 20 19:22:52 arch rtkit-daemon[573]: Successfully made thread 784 of process 729 owned by '1000' RT at priority 20.
May 20 19:22:52 arch rtkit-daemon[573]: Supervising 6 threads of 4 processes of 1 users.
May 20 19:22:53 arch systemd[486]: Starting User preferences database...
May 20 19:22:53 arch systemd[486]: Started User preferences database.

Contents of /var/log/Xorg.0.log for 6.6.31-1-lts:

[    30.586] (--) Log file renamed from "/var/log/Xorg.pid-460.log" to "/var/log/Xorg.0.log"
[    30.641] 
X.Org X Server 1.21.1.13
X Protocol Version 11, Revision 0
[    30.641] Current Operating System: Linux arch 6.6.31-1-lts #1 SMP PREEMPT_DYNAMIC Fri, 17 May 2024 11:49:30 +0000 x86_64
[    30.641] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux-lts root=UUID=c88c5185-df9b-462e-8cea-9a0c7393ae50 rw sysrq_always_enabled=1 loglevel=7 rd.systemd.show_status=true drm.edid_firmware=edid/1280x1024.bin zswap.enabled=0
[    30.641]  
[    30.641] Current version of pixman: 0.43.4
[    30.641] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[    30.641] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    30.641] (==) Log file: "/var/log/Xorg.0.log", Time: Mon May 20 19:22:21 2024
[    30.730] (==) Using config directory: "/etc/X11/xorg.conf.d"
[    30.730] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[    30.778] (==) No Layout section.  Using the first Screen section.
[    30.778] (==) No screen section available. Using defaults.
[    30.778] (**) |-->Screen "Default Screen Section" (0)
[    30.778] (**) |   |-->Monitor "<default monitor>"
[    30.778] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[    30.778] (**) Allowing byte-swapped clients
[    30.778] (==) Automatically adding devices
[    30.778] (==) Automatically enabling devices
[    30.778] (==) Automatically adding GPU devices
[    30.778] (==) Automatically binding GPU devices
[    30.778] (==) Max clients allowed: 256, resource mask: 0x1fffff
[    30.778] (WW) The directory "/usr/share/fonts/misc" does not exist.
[    30.778] 	Entry deleted from font path.
[    30.888] (WW) The directory "/usr/share/fonts/OTF" does not exist.
[    30.888] 	Entry deleted from font path.
[    30.888] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[    30.888] 	Entry deleted from font path.
[    30.960] (==) FontPath set to:
	/usr/share/fonts/TTF,
	/usr/share/fonts/100dpi,
	/usr/share/fonts/75dpi
[    30.960] (==) ModulePath set to "/usr/lib/xorg/modules"
[    30.960] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[    30.960] (II) Module ABI versions:
[    30.960] 	X.Org ANSI C Emulation: 0.4
[    30.960] 	X.Org Video Driver: 25.2
[    30.960] 	X.Org XInput driver : 24.4
[    30.960] 	X.Org Server Extension : 10.0
[    30.961] (++) using VT number 2

[    30.961] (II) systemd-logind: logind integration requires -keeptty and -keeptty was not provided, disabling logind integration
[    30.962] (II) xfree86: Adding drm device (/dev/dri/card1)
[    30.962] (II) Platform probe for /sys/devices/pci0000:00/0000:00:02.0/drm/card1
[    30.980] (--) PCI:*(0@0:2:0) 8086:2e32:1462:7592 rev 3, Mem @ 0xfe400000/4194304, 0xd0000000/268435456, I/O @ 0x0000dc00/8, BIOS @ 0x????????/131072
[    30.980] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[    30.980] (II) LoadModule: "glx"
[    30.993] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[    31.174] (II) Module glx: vendor="X.Org Foundation"
[    31.174] 	compiled for 1.21.1.13, module version = 1.0.0
[    31.174] 	ABI class: X.Org Server Extension, version 10.0
[    31.174] (==) Matched intel as autoconfigured driver 0
[    31.174] (==) Matched modesetting as autoconfigured driver 1
[    31.174] (==) Matched fbdev as autoconfigured driver 2
[    31.174] (==) Matched vesa as autoconfigured driver 3
[    31.174] (==) Assigned the driver to the xf86ConfigLayout
[    31.174] (II) LoadModule: "intel"
[    31.273] (WW) Warning, couldn't open module intel
[    31.273] (EE) Failed to load module "intel" (module does not exist, 0)
[    31.273] (II) LoadModule: "modesetting"
[    31.273] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[    31.349] (II) Module modesetting: vendor="X.Org Foundation"
[    31.349] 	compiled for 1.21.1.13, module version = 1.21.1
[    31.349] 	Module class: X.Org Video Driver
[    31.349] 	ABI class: X.Org Video Driver, version 25.2
[    31.349] (II) LoadModule: "fbdev"
[    31.349] (WW) Warning, couldn't open module fbdev
[    31.349] (EE) Failed to load module "fbdev" (module does not exist, 0)
[    31.349] (II) LoadModule: "vesa"
[    31.349] (WW) Warning, couldn't open module vesa
[    31.349] (EE) Failed to load module "vesa" (module does not exist, 0)
[    31.349] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[    31.374] (II) modeset(0): using drv /dev/dri/card1
[    31.374] (II) modeset(0): Creating default Display subsection in Screen section
	"Default Screen Section" for depth/fbbpp 24/32
[    31.374] (==) modeset(0): Depth 24, (==) framebuffer bpp 32
[    31.374] (==) modeset(0): RGB weight 888
[    31.374] (==) modeset(0): Default visual is TrueColor
[    31.374] (II) Loading sub module "glamoregl"
[    31.374] (II) LoadModule: "glamoregl"
[    31.374] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[    31.437] (II) Module glamoregl: vendor="X.Org Foundation"
[    31.437] 	compiled for 1.21.1.13, module version = 1.0.1
[    31.437] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    34.181] (II) modeset(0): glamor X acceleration enabled on Mesa Intel(R) G41 (ELK)
[    34.181] (II) modeset(0): glamor initialized
[    34.181] (==) modeset(0): VariableRefresh: disabled
[    34.181] (==) modeset(0): AsyncFlipSecondaries: disabled
[    34.208] (II) modeset(0): Output VGA-1 using monitor section <default monitor>
[    34.242] (II) modeset(0): EDID for output VGA-1
[    34.242] (II) modeset(0): Manufacturer: LNX  Model: 0  Serial#: 0
[    34.242] (II) modeset(0): Year: 2012  Week: 5
[    34.242] (II) modeset(0): EDID Version: 1.3
[    34.242] (II) modeset(0): Analog Display Input,  Input Voltage Level: 0.700/0.700 V
[    34.242] (II) modeset(0): Sync:  Separate  CompositeSerration on. V.Sync Pulse req. if CompSync or SyncOnGreen
[    34.242] (II) modeset(0): Max Image Size [cm]: horiz.: 44  vert.: 35
[    34.242] (II) modeset(0): Gamma: 2.20
[    34.242] (II) modeset(0): DPMS capabilities: StandBy Suspend Off; RGB/Color Display
[    34.242] (II) modeset(0): First detailed timing is preferred mode
[    34.242] (II) modeset(0): redX: 0.642 redY: 0.349   greenX: 0.292 greenY: 0.596
[    34.242] (II) modeset(0): blueX: 0.147 blueY: 0.125   whiteX: 0.312 whiteY: 0.328
[    34.242] (II) modeset(0): Manufacturer's mask: 0
[    34.243] (II) modeset(0): Supported standard timings:
[    34.243] (II) modeset(0): #0: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
[    34.243] (II) modeset(0): Supported detailed timing:
[    34.243] (II) modeset(0): clock: 108.0 MHz   Image Size:  444 x 355 mm
[    34.243] (II) modeset(0): h_active: 1280  h_sync: 1328  h_sync_end 1440 h_blank_end 1688 h_border: 0
[    34.243] (II) modeset(0): v_active: 1024  v_sync: 1025  v_sync_end 1028 v_blanking: 1066 v_border: 0
[    34.243] (II) modeset(0): Serial No: Linux #0
[    34.243] (II) modeset(0): Ranges: V min: 59 V max: 61 Hz, H min: 62 H max: 64 kHz, PixClock max 115 MHz
[    34.243] (II) modeset(0): Monitor name: Linux SXGA
[    34.243] (II) modeset(0): EDID (in hex):
[    34.243] (II) modeset(0): 	00ffffffffffff0031d8000000000000
[    34.243] (II) modeset(0): 	051601036d2c2378ea5ec0a4594a9825
[    34.243] (II) modeset(0): 	20505400000081800101010101010101
[    34.243] (II) modeset(0): 	010101010101302a009851002a403070
[    34.243] (II) modeset(0): 	1300bc631100001e000000ff004c696e
[    34.243] (II) modeset(0): 	75782023300a20202020000000fd003b
[    34.243] (II) modeset(0): 	3d3e400b000a202020202020000000fc
[    34.243] (II) modeset(0): 	004c696e757820535847410a202000a0
[    34.243] (II) modeset(0): Printing probed modes for output VGA-1
[    34.243] (II) modeset(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz eP)
[    34.243] (II) modeset(0): Output VGA-1 connected
[    34.243] (II) modeset(0): Using exact sizes for initial modes
[    34.243] (II) modeset(0): Output VGA-1 using initial mode 1280x1024 +0+0
[    34.243] (==) modeset(0): Using gamma correction (1.0, 1.0, 1.0)
[    34.243] (==) modeset(0): DPI set to (96, 96)
[    34.243] (II) Loading sub module "fb"
[    34.243] (II) LoadModule: "fb"
[    34.243] (II) Module "fb" already built-in
[    34.898] (==) modeset(0): Backing store enabled
[    34.898] (==) modeset(0): Silken mouse enabled
[    34.906] (II) modeset(0): Initializing kms color map for depth 24, 8 bpc.
[    34.906] (==) modeset(0): DPMS enabled
[    34.906] (II) modeset(0): [DRI2] Setup complete
[    34.906] (II) modeset(0): [DRI2]   DRI driver: crocus
[    34.906] (II) modeset(0): [DRI2]   VDPAU driver: va_gl
[    34.906] (II) Initializing extension Generic Event Extension
[    34.906] (II) Initializing extension SHAPE
[    34.907] (II) Initializing extension MIT-SHM
[    34.907] (II) Initializing extension XInputExtension
[    34.907] (II) Initializing extension XTEST
[    34.907] (II) Initializing extension BIG-REQUESTS
[    34.908] (II) Initializing extension SYNC
[    34.908] (II) Initializing extension XKEYBOARD
[    34.908] (II) Initializing extension XC-MISC
[    34.908] (II) Initializing extension SECURITY
[    34.908] (II) Initializing extension XFIXES
[    34.909] (II) Initializing extension RENDER
[    34.909] (II) Initializing extension RANDR
[    34.909] (II) Initializing extension COMPOSITE
[    34.909] (II) Initializing extension DAMAGE
[    34.910] (II) Initializing extension MIT-SCREEN-SAVER
[    34.910] (II) Initializing extension DOUBLE-BUFFER
[    34.910] (II) Initializing extension RECORD
[    34.910] (II) Initializing extension DPMS
[    34.910] (II) Initializing extension Present
[    34.910] (II) Initializing extension DRI3
[    34.911] (II) Initializing extension X-Resource
[    34.911] (II) Initializing extension XVideo
[    34.911] (II) Initializing extension XVideo-MotionCompensation
[    34.911] (II) Initializing extension GLX
[    34.919] (II) AIGLX: Loaded and initialized crocus
[    34.919] (II) GLX: Initialized DRI2 GL provider for screen 0
[    34.919] (II) Initializing extension XFree86-VidModeExtension
[    34.919] (II) Initializing extension XFree86-DGA
[    34.920] (II) Initializing extension XFree86-DRI
[    34.920] (II) Initializing extension DRI2
[    34.956] (II) modeset(0): Damage tracking initialized
[    34.956] (II) modeset(0): Setting screen physical size to 325 x 245
[    35.612] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[    35.612] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[    35.612] (**) Power Button: Applying InputClass "system-keyboard"
[    35.612] (II) LoadModule: "libinput"
[    35.613] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[    35.672] (II) Module libinput: vendor="X.Org Foundation"
[    35.672] 	compiled for 1.21.1.8, module version = 1.4.0
[    35.672] 	Module class: X.Org XInput Driver
[    35.672] 	ABI class: X.Org XInput driver, version 24.4
[    35.672] (II) Using input driver 'libinput' for 'Power Button'
[    35.672] (**) Power Button: always reports core events
[    35.672] (**) Option "Device" "/dev/input/event1"
[    35.741] (II) event1  - Power Button: is tagged by udev as: Keyboard
[    35.741] (II) event1  - Power Button: device is a keyboard
[    35.741] (II) event1  - Power Button: device removed
[    35.756] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1"
[    35.756] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[    35.756] (**) Option "xkb_layout" "es"
[    35.801] (II) event1  - Power Button: is tagged by udev as: Keyboard
[    35.801] (II) event1  - Power Button: device is a keyboard
[    35.802] (II) config/udev: Adding input device Power Button (/dev/input/event0)
[    35.802] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[    35.802] (**) Power Button: Applying InputClass "system-keyboard"
[    35.802] (II) Using input driver 'libinput' for 'Power Button'
[    35.802] (**) Power Button: always reports core events
[    35.802] (**) Option "Device" "/dev/input/event0"
[    35.804] (II) event0  - Power Button: is tagged by udev as: Keyboard
[    35.804] (II) event0  - Power Button: device is a keyboard
[    35.804] (II) event0  - Power Button: device removed
[    35.826] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0"
[    35.826] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
[    35.826] (**) Option "xkb_layout" "es"
[    35.828] (II) event0  - Power Button: is tagged by udev as: Keyboard
[    35.828] (II) event0  - Power Button: device is a keyboard
[    35.830] (II) config/udev: Adding input device HDA Intel Line Out (/dev/input/event10)
[    35.830] (II) No input driver specified, ignoring this device.
[    35.830] (II) This device may have been added with another device file.
[    35.830] (II) config/udev: Adding input device HDA Intel Rear Mic (/dev/input/event7)
[    35.830] (II) No input driver specified, ignoring this device.
[    35.830] (II) This device may have been added with another device file.
[    35.831] (II) config/udev: Adding input device HDA Intel Front Mic (/dev/input/event8)
[    35.831] (II) No input driver specified, ignoring this device.
[    35.831] (II) This device may have been added with another device file.
[    35.832] (II) config/udev: Adding input device HDA Intel Line (/dev/input/event9)
[    35.832] (II) No input driver specified, ignoring this device.
[    35.832] (II) This device may have been added with another device file.
[    35.833] (II) config/udev: Adding input device Genius USB Optical Mouse (/dev/input/event2)
[    35.834] (**) Genius USB Optical Mouse: Applying InputClass "libinput pointer catchall"
[    35.834] (II) Using input driver 'libinput' for 'Genius USB Optical Mouse'
[    35.834] (**) Genius USB Optical Mouse: always reports core events
[    35.834] (**) Option "Device" "/dev/input/event2"
[    35.892] (II) event2  - Genius USB Optical Mouse: is tagged by udev as: Mouse
[    35.892] (II) event2  - Genius USB Optical Mouse: device is a pointer
[    35.893] (II) event2  - Genius USB Optical Mouse: device removed
[    35.933] (II) libinput: Genius USB Optical Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[    35.933] (II) libinput: Genius USB Optical Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[    35.933] (II) libinput: Genius USB Optical Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[    35.933] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb1/1-1/1-1:1.0/0003:0458:003A.0001/input/input2/event2"
[    35.933] (II) XINPUT: Adding extended input device "Genius USB Optical Mouse" (type: MOUSE, id 8)
[    35.933] (**) Option "AccelerationScheme" "none"
[    35.933] (**) Genius USB Optical Mouse: (accel) selected scheme none/0
[    35.933] (**) Genius USB Optical Mouse: (accel) acceleration factor: 2.000
[    35.933] (**) Genius USB Optical Mouse: (accel) acceleration threshold: 4
[    35.992] (II) event2  - Genius USB Optical Mouse: is tagged by udev as: Mouse
[    35.992] (II) event2  - Genius USB Optical Mouse: device is a pointer
[    35.994] (II) config/udev: Adding input device Genius USB Optical Mouse (/dev/input/mouse0)
[    35.994] (II) No input driver specified, ignoring this device.
[    35.994] (II) This device may have been added with another device file.
[    35.996] (II) config/udev: Adding input device USB USB Keyboard (/dev/input/event3)
[    35.996] (**) USB USB Keyboard: Applying InputClass "libinput keyboard catchall"
[    35.996] (**) USB USB Keyboard: Applying InputClass "system-keyboard"
[    35.996] (II) Using input driver 'libinput' for 'USB USB Keyboard'
[    35.996] (**) USB USB Keyboard: always reports core events
[    35.996] (**) Option "Device" "/dev/input/event3"
[    35.998] (II) event3  - USB USB Keyboard: is tagged by udev as: Keyboard
[    35.999] (II) event3  - USB USB Keyboard: device is a keyboard
[    35.999] (II) event3  - USB USB Keyboard: device removed
[    36.016] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb1/1-2/1-2:1.0/0003:1A2C:2D23.0002/input/input3/event3"
[    36.016] (II) XINPUT: Adding extended input device "USB USB Keyboard" (type: KEYBOARD, id 9)
[    36.016] (**) Option "xkb_layout" "es"
[    36.018] (II) event3  - USB USB Keyboard: is tagged by udev as: Keyboard
[    36.018] (II) event3  - USB USB Keyboard: device is a keyboard
[    36.020] (II) config/udev: Adding input device USB USB Keyboard Consumer Control (/dev/input/event4)
[    36.020] (**) USB USB Keyboard Consumer Control: Applying InputClass "libinput keyboard catchall"
[    36.020] (**) USB USB Keyboard Consumer Control: Applying InputClass "system-keyboard"
[    36.020] (II) Using input driver 'libinput' for 'USB USB Keyboard Consumer Control'
[    36.020] (**) USB USB Keyboard Consumer Control: always reports core events
[    36.020] (**) Option "Device" "/dev/input/event4"
[    36.021] (II) event4  - USB USB Keyboard Consumer Control: is tagged by udev as: Keyboard
[    36.022] (II) event4  - USB USB Keyboard Consumer Control: device is a keyboard
[    36.022] (II) event4  - USB USB Keyboard Consumer Control: device removed
[    36.043] (II) libinput: USB USB Keyboard Consumer Control: needs a virtual subdevice
[    36.043] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb1/1-2/1-2:1.1/0003:1A2C:2D23.0003/input/input4/event4"
[    36.043] (II) XINPUT: Adding extended input device "USB USB Keyboard Consumer Control" (type: MOUSE, id 10)
[    36.043] (**) Option "AccelerationScheme" "none"
[    36.043] (**) USB USB Keyboard Consumer Control: (accel) selected scheme none/0
[    36.043] (**) USB USB Keyboard Consumer Control: (accel) acceleration factor: 2.000
[    36.043] (**) USB USB Keyboard Consumer Control: (accel) acceleration threshold: 4
[    36.045] (II) event4  - USB USB Keyboard Consumer Control: is tagged by udev as: Keyboard
[    36.045] (II) event4  - USB USB Keyboard Consumer Control: device is a keyboard
[    36.047] (II) config/udev: Adding input device USB USB Keyboard System Control (/dev/input/event5)
[    36.047] (**) USB USB Keyboard System Control: Applying InputClass "libinput keyboard catchall"
[    36.047] (**) USB USB Keyboard System Control: Applying InputClass "system-keyboard"
[    36.047] (II) Using input driver 'libinput' for 'USB USB Keyboard System Control'
[    36.047] (**) USB USB Keyboard System Control: always reports core events
[    36.047] (**) Option "Device" "/dev/input/event5"
[    36.049] (II) event5  - USB USB Keyboard System Control: is tagged by udev as: Keyboard
[    36.049] (II) event5  - USB USB Keyboard System Control: device is a keyboard
[    36.049] (II) event5  - USB USB Keyboard System Control: device removed
[    36.070] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb1/1-2/1-2:1.1/0003:1A2C:2D23.0003/input/input5/event5"
[    36.070] (II) XINPUT: Adding extended input device "USB USB Keyboard System Control" (type: KEYBOARD, id 11)
[    36.070] (**) Option "xkb_layout" "es"
[    36.072] (II) event5  - USB USB Keyboard System Control: is tagged by udev as: Keyboard
[    36.072] (II) event5  - USB USB Keyboard System Control: device is a keyboard
[    36.073] (II) config/udev: Adding input device PC Speaker (/dev/input/event6)
[    36.073] (II) No input driver specified, ignoring this device.
[    36.073] (II) This device may have been added with another device file.
[    36.089] (**) USB USB Keyboard Consumer Control: Applying InputClass "libinput keyboard catchall"
[    36.089] (**) USB USB Keyboard Consumer Control: Applying InputClass "system-keyboard"
[    36.089] (II) Using input driver 'libinput' for 'USB USB Keyboard Consumer Control'
[    36.089] (**) USB USB Keyboard Consumer Control: always reports core events
[    36.089] (**) Option "Device" "/dev/input/event4"
[    36.089] (II) libinput: USB USB Keyboard Consumer Control: is a virtual subdevice
[    36.089] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb1/1-2/1-2:1.1/0003:1A2C:2D23.0003/input/input4/event4"
[    36.089] (II) XINPUT: Adding extended input device "USB USB Keyboard Consumer Control" (type: KEYBOARD, id 12)
[    36.089] (**) Option "xkb_layout" "es"

I also have the file /etc/X11/xorg.conf.d/90-monitor.conf:

Section "Monitor"
    Identifier             "<default monitor>"
    DisplaySize            325 245    # In millimeters
EndSection

to adjust the DPI based on my monitor's actual size, as per https://wiki.archlinux.org/title/Xorg#D … ze_and_DPI, but removing it and rebooting also has no effect on the issue.

I have noticed, from comparing both Xorg logs, that the monitor appears to be detected differently on each of the kernels, but i am unsure why.

Is there any adjustments that need to be done for the new kernel that i am unaware of?

Any help in figuring this out would be appreciated.

Last edited by jec15 (2024-05-22 23:41:57)

Offline

#2 2024-05-21 07:07:34

seth
Member
Registered: 2012-09-03
Posts: 61,632

Re: [SOLVED] Forcing mode at early KMS not working in kernel 6.9.1-arch1-1

I have noticed, from comparing both Xorg logs, that the monitor appears to be detected differently on each of the kernels, but i am unsure why.

The server gets different EDIDs.

What happens if you  add "initcall_blacklist=simpledrm_platform_driver_init" to the https://wiki.archlinux.org/title/Kernel_parameters ?
Do so at the grub editor - it might result in no output showing up anywhere at all and you need to be able to rever that (resp. by just adding it there it'll be gone w/ a reboot)

Offline

#3 2024-05-21 08:06:24

jec15
Member
Registered: 2024-05-14
Posts: 4

Re: [SOLVED] Forcing mode at early KMS not working in kernel 6.9.1-arch1-1

What happens if you  add "initcall_blacklist=simpledrm_platform_driver_init" to the https://wiki.archlinux.org/title/Kernel_parameters ?

Issue persists.


Output of "journalctl -b":

May 21 04:49:46 arch kernel: Linux version 6.9.1-arch1-1 (linux@archlinux) (gcc (GCC) 14.1.1 20240507, GNU ld (GNU Binutils) 2.42.0) #1 SMP PREEMPT_DYNAMIC Fri, 17 May 2024 16:56:38 +0000
May 21 04:49:46 arch kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=c88c5185-df9b-462e-8cea-9a0c7393ae50 rw sysrq_always_enabled=1 loglevel=7 rd.systemd.show_status=true initcall_blacklist=simpledrm_platform_driver_init drm.edid_firmware=edid/1280x1024.bin zswap.enabled=0
May 21 04:49:46 arch kernel: BIOS-provided physical RAM map:
May 21 04:49:46 arch kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
May 21 04:49:46 arch kernel: BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
May 21 04:49:46 arch kernel: BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
May 21 04:49:46 arch kernel: BIOS-e820: [mem 0x0000000000100000-0x00000000c7d9ffff] usable
May 21 04:49:46 arch kernel: BIOS-e820: [mem 0x00000000c7da0000-0x00000000c7dadfff] ACPI data
May 21 04:49:46 arch kernel: BIOS-e820: [mem 0x00000000c7dae000-0x00000000c7deffff] ACPI NVS
May 21 04:49:46 arch kernel: BIOS-e820: [mem 0x00000000c7df0000-0x00000000cfffffff] reserved
May 21 04:49:46 arch kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
May 21 04:49:46 arch kernel: BIOS-e820: [mem 0x00000000fff00000-0x00000000ffffffff] reserved
May 21 04:49:46 arch kernel: BIOS-e820: [mem 0x0000000100000000-0x000000012fffffff] usable
May 21 04:49:46 arch kernel: NX (Execute Disable) protection: active
May 21 04:49:46 arch kernel: APIC: Static calls initialized
May 21 04:49:46 arch kernel: SMBIOS 2.5 present.
May 21 04:49:46 arch kernel: DMI: MSI MS-7592/G41M-P26 (MS-7592), BIOS V26.8 08/26/2011
May 21 04:49:46 arch kernel: tsc: Fast TSC calibration using PIT
May 21 04:49:46 arch kernel: tsc: Detected 3002.023 MHz processor
May 21 04:49:46 arch kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
May 21 04:49:46 arch kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
May 21 04:49:46 arch kernel: last_pfn = 0x130000 max_arch_pfn = 0x400000000
May 21 04:49:46 arch kernel: total RAM covered: 3966M
May 21 04:49:46 arch kernel: Found optimal setting for mtrr clean up
May 21 04:49:46 arch kernel:  gran_size: 64K         chunk_size: 4M         num_reg: 6          lose cover RAM: 0G
May 21 04:49:46 arch kernel: MTRR map: 9 entries (6 fixed + 3 variable; max 22), built from 8 variable MTRRs
May 21 04:49:46 arch kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
May 21 04:49:46 arch kernel: e820: update [mem 0xc7e00000-0xffffffff] usable ==> reserved
May 21 04:49:46 arch kernel: last_pfn = 0xc7da0 max_arch_pfn = 0x400000000
May 21 04:49:46 arch kernel: found SMP MP-table at [mem 0x000ff780-0x000ff78f]
May 21 04:49:46 arch kernel: RAMDISK: [mem 0x35301000-0x36977fff]
May 21 04:49:46 arch kernel: ACPI: Early table checksum verification disabled
May 21 04:49:46 arch kernel: ACPI: RSDP 0x00000000000F99F0 000014 (v00 ACPIAM)
May 21 04:49:46 arch kernel: ACPI: RSDT 0x00000000C7DA0000 000040 (v01 7592MS A7592400 20110826 MSFT 00000097)
May 21 04:49:46 arch kernel: ACPI: FACP 0x00000000C7DA0200 000084 (v01 7592MS A7592400 20110826 MSFT 00000097)
May 21 04:49:46 arch kernel: ACPI: DSDT 0x00000000C7DA0440 0062AE (v01 A7592  A7592400 00000400 INTL 20051117)
May 21 04:49:46 arch kernel: ACPI: FACS 0x00000000C7DAE000 000040
May 21 04:49:46 arch kernel: ACPI: APIC 0x00000000C7DA0390 00006C (v01 7592MS A7592400 20110826 MSFT 00000097)
May 21 04:49:46 arch kernel: ACPI: MCFG 0x00000000C7DA0400 00003C (v01 7592MS OEMMCFG  20110826 MSFT 00000097)
May 21 04:49:46 arch kernel: ACPI: OEMB 0x00000000C7DAE040 000072 (v01 7592MS A7592400 20110826 MSFT 00000097)
May 21 04:49:46 arch kernel: ACPI: HPET 0x00000000C7DA8440 000038 (v01 7592MS OEMHPET  20110826 MSFT 00000097)
May 21 04:49:46 arch kernel: ACPI: GSCI 0x00000000C7DAE0C0 002024 (v01 7592MS GMCHSCI  20110826 MSFT 00000097)
May 21 04:49:46 arch kernel: ACPI: SSDT 0x00000000C7DB05F0 000A7C (v01 DpgPmm CpuPm    00000012 INTL 20051117)
May 21 04:49:46 arch kernel: ACPI: Reserving FACP table memory at [mem 0xc7da0200-0xc7da0283]
May 21 04:49:46 arch kernel: ACPI: Reserving DSDT table memory at [mem 0xc7da0440-0xc7da66ed]
May 21 04:49:46 arch kernel: ACPI: Reserving FACS table memory at [mem 0xc7dae000-0xc7dae03f]
May 21 04:49:46 arch kernel: ACPI: Reserving APIC table memory at [mem 0xc7da0390-0xc7da03fb]
May 21 04:49:46 arch kernel: ACPI: Reserving MCFG table memory at [mem 0xc7da0400-0xc7da043b]
May 21 04:49:46 arch kernel: ACPI: Reserving OEMB table memory at [mem 0xc7dae040-0xc7dae0b1]
May 21 04:49:46 arch kernel: ACPI: Reserving HPET table memory at [mem 0xc7da8440-0xc7da8477]
May 21 04:49:46 arch kernel: ACPI: Reserving GSCI table memory at [mem 0xc7dae0c0-0xc7db00e3]
May 21 04:49:46 arch kernel: ACPI: Reserving SSDT table memory at [mem 0xc7db05f0-0xc7db106b]
May 21 04:49:46 arch kernel: No NUMA configuration found
May 21 04:49:46 arch kernel: Faking a node at [mem 0x0000000000000000-0x000000012fffffff]
May 21 04:49:46 arch kernel: NODE_DATA(0) allocated [mem 0x12fff7000-0x12fffbfff]
May 21 04:49:46 arch kernel: Zone ranges:
May 21 04:49:46 arch kernel:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
May 21 04:49:46 arch kernel:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
May 21 04:49:46 arch kernel:   Normal   [mem 0x0000000100000000-0x000000012fffffff]
May 21 04:49:46 arch kernel:   Device   empty
May 21 04:49:46 arch kernel: Movable zone start for each node
May 21 04:49:46 arch kernel: Early memory node ranges
May 21 04:49:46 arch kernel:   node   0: [mem 0x0000000000001000-0x000000000009efff]
May 21 04:49:46 arch kernel:   node   0: [mem 0x0000000000100000-0x00000000c7d9ffff]
May 21 04:49:46 arch kernel:   node   0: [mem 0x0000000100000000-0x000000012fffffff]
May 21 04:49:46 arch kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000012fffffff]
May 21 04:49:46 arch kernel: On node 0, zone DMA: 1 pages in unavailable ranges
May 21 04:49:46 arch kernel: On node 0, zone DMA: 97 pages in unavailable ranges
May 21 04:49:46 arch kernel: On node 0, zone Normal: 608 pages in unavailable ranges
May 21 04:49:46 arch kernel: Reserving Intel graphics memory at [mem 0xc8000000-0xcfffffff]
May 21 04:49:46 arch kernel: ACPI: PM-Timer IO Port: 0x808
May 21 04:49:46 arch kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
May 21 04:49:46 arch kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
May 21 04:49:46 arch kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
May 21 04:49:46 arch kernel: ACPI: Using ACPI (MADT) for SMP configuration information
May 21 04:49:46 arch kernel: ACPI: HPET id: 0xffffffff base: 0xfed00000
May 21 04:49:46 arch kernel: CPU topo: Max. logical packages:   2
May 21 04:49:46 arch kernel: CPU topo: Max. logical dies:       2
May 21 04:49:46 arch kernel: CPU topo: Max. dies per package:   1
May 21 04:49:46 arch kernel: CPU topo: Max. threads per core:   1
May 21 04:49:46 arch kernel: CPU topo: Num. cores per package:     2
May 21 04:49:46 arch kernel: CPU topo: Num. threads per package:   2
May 21 04:49:46 arch kernel: CPU topo: Allowing 2 present CPUs plus 2 hotplug CPUs
May 21 04:49:46 arch kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
May 21 04:49:46 arch kernel: PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
May 21 04:49:46 arch kernel: PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000dffff]
May 21 04:49:46 arch kernel: PM: hibernation: Registered nosave memory: [mem 0x000e0000-0x000fffff]
May 21 04:49:46 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xc7da0000-0xc7dadfff]
May 21 04:49:46 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xc7dae000-0xc7deffff]
May 21 04:49:46 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xc7df0000-0xcfffffff]
May 21 04:49:46 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xd0000000-0xfedfffff]
May 21 04:49:46 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
May 21 04:49:46 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xffefffff]
May 21 04:49:46 arch kernel: PM: hibernation: Registered nosave memory: [mem 0xfff00000-0xffffffff]
May 21 04:49:46 arch kernel: [mem 0xd0000000-0xfedfffff] available for PCI devices
May 21 04:49:46 arch kernel: Booting paravirtualized kernel on bare hardware
May 21 04:49:46 arch kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
May 21 04:49:46 arch kernel: setup_percpu: NR_CPUS:320 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
May 21 04:49:46 arch kernel: percpu: Embedded 66 pages/cpu s233472 r8192 d28672 u524288
May 21 04:49:46 arch kernel: pcpu-alloc: s233472 r8192 d28672 u524288 alloc=1*2097152
May 21 04:49:46 arch kernel: pcpu-alloc: [0] 0 1 2 3 
May 21 04:49:46 arch kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=c88c5185-df9b-462e-8cea-9a0c7393ae50 rw sysrq_always_enabled=1 loglevel=7 rd.systemd.show_status=true initcall_blacklist=simpledrm_platform_driver_init drm.edid_firmware=edid/1280x1024.bin zswap.enabled=0
May 21 04:49:46 arch kernel: sysrq: sysrq always enabled.
May 21 04:49:46 arch kernel: blacklisting initcall simpledrm_platform_driver_init
May 21 04:49:46 arch kernel: Unknown kernel command line parameters "BOOT_IMAGE=/boot/vmlinuz-linux", will be passed to user space.
May 21 04:49:46 arch kernel: Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
May 21 04:49:46 arch kernel: Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
May 21 04:49:46 arch kernel: Fallback order for Node 0: 0 
May 21 04:49:46 arch kernel: Built 1 zonelists, mobility grouping on.  Total pages: 999081
May 21 04:49:46 arch kernel: Policy zone: Normal
May 21 04:49:46 arch kernel: mem auto-init: stack:all(zero), heap alloc:on, heap free:off
May 21 04:49:46 arch kernel: software IO TLB: area num 4.
May 21 04:49:46 arch kernel: Memory: 3849896K/4060408K available (18432K kernel code, 2164K rwdata, 13276K rodata, 3408K init, 3636K bss, 210252K reserved, 0K cma-reserved)
May 21 04:49:46 arch kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
May 21 04:49:46 arch kernel: Kernel/User page tables isolation: enabled
May 21 04:49:46 arch kernel: ftrace: allocating 49689 entries in 195 pages
May 21 04:49:46 arch kernel: ftrace: allocated 195 pages with 4 groups
May 21 04:49:46 arch kernel: Dynamic Preempt: full
May 21 04:49:46 arch kernel: rcu: Preemptible hierarchical RCU implementation.
May 21 04:49:46 arch kernel: rcu:         RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=4.
May 21 04:49:46 arch kernel: rcu:         RCU priority boosting: priority 1 delay 500 ms.
May 21 04:49:46 arch kernel:         Trampoline variant of Tasks RCU enabled.
May 21 04:49:46 arch kernel:         Rude variant of Tasks RCU enabled.
May 21 04:49:46 arch kernel:         Tracing variant of Tasks RCU enabled.
May 21 04:49:46 arch kernel: rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
May 21 04:49:46 arch kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
May 21 04:49:46 arch kernel: RCU Tasks: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
May 21 04:49:46 arch kernel: RCU Tasks Rude: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
May 21 04:49:46 arch kernel: RCU Tasks Trace: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
May 21 04:49:46 arch kernel: NR_IRQS: 20736, nr_irqs: 456, preallocated irqs: 16
May 21 04:49:46 arch kernel: rcu: srcu_init: Setting srcu_struct sizes based on contention.
May 21 04:49:46 arch kernel: kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
May 21 04:49:46 arch kernel: Console: colour dummy device 80x25
May 21 04:49:46 arch kernel: printk: legacy console [tty0] enabled
May 21 04:49:46 arch kernel: ACPI: Core revision 20230628
May 21 04:49:46 arch kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
May 21 04:49:46 arch kernel: APIC: Switch to symmetric I/O mode setup
May 21 04:49:46 arch kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
May 21 04:49:46 arch kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2b45bc231fa, max_idle_ns: 440795213303 ns
May 21 04:49:46 arch kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 6006.21 BogoMIPS (lpj=10006743)
May 21 04:49:46 arch kernel: CPU0: Thermal monitoring enabled (TM2)
May 21 04:49:46 arch kernel: Last level iTLB entries: 4KB 128, 2MB 4, 4MB 4
May 21 04:49:46 arch kernel: Last level dTLB entries: 4KB 256, 2MB 0, 4MB 32, 1GB 0
May 21 04:49:46 arch kernel: process: using mwait in idle threads
May 21 04:49:46 arch kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
May 21 04:49:46 arch kernel: Spectre V2 : Mitigation: Retpolines
May 21 04:49:46 arch kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
May 21 04:49:46 arch kernel: Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
May 21 04:49:46 arch kernel: Speculative Store Bypass: Vulnerable
May 21 04:49:46 arch kernel: MDS: Vulnerable: Clear CPU buffers attempted, no microcode
May 21 04:49:46 arch kernel: MMIO Stale Data: Unknown: No mitigations
May 21 04:49:46 arch kernel: x86/fpu: x87 FPU will use FXSAVE
May 21 04:49:46 arch kernel: Freeing SMP alternatives memory: 40K
May 21 04:49:46 arch kernel: pid_max: default: 32768 minimum: 301
May 21 04:49:46 arch kernel: LSM: initializing lsm=capability,landlock,lockdown,yama,bpf
May 21 04:49:46 arch kernel: landlock: Up and running.
May 21 04:49:46 arch kernel: Yama: becoming mindful.
May 21 04:49:46 arch kernel: LSM support for eBPF active
May 21 04:49:46 arch kernel: Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
May 21 04:49:46 arch kernel: Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
May 21 04:49:46 arch kernel: APIC calibration not consistent with PM-Timer: 109ms instead of 100ms
May 21 04:49:46 arch kernel: APIC delta adjusted to PM-Timer: 1975164 (2157405)
May 21 04:49:46 arch kernel: smpboot: CPU0: Intel(R) Core(TM)2 Duo CPU     E7200  @ 2.53GHz (family: 0x6, model: 0x17, stepping: 0x6)
May 21 04:49:46 arch kernel: Performance Events: PEBS fmt0+, Core2 events, 4-deep LBR, Intel PMU driver.
May 21 04:49:46 arch kernel: ... version:                2
May 21 04:49:46 arch kernel: ... bit width:              40
May 21 04:49:46 arch kernel: ... generic registers:      2
May 21 04:49:46 arch kernel: ... value mask:             000000ffffffffff
May 21 04:49:46 arch kernel: ... max period:             000000007fffffff
May 21 04:49:46 arch kernel: ... fixed-purpose events:   3
May 21 04:49:46 arch kernel: ... event mask:             0000000700000003
May 21 04:49:46 arch kernel: signal: max sigframe size: 1440
May 21 04:49:46 arch kernel: rcu: Hierarchical SRCU implementation.
May 21 04:49:46 arch kernel: rcu:         Max phase no-delay instances is 1000.
May 21 04:49:46 arch kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
May 21 04:49:46 arch kernel: smp: Bringing up secondary CPUs ...
May 21 04:49:46 arch kernel: smpboot: x86: Booting SMP configuration:
May 21 04:49:46 arch kernel: .... node  #0, CPUs:      #1
May 21 04:49:46 arch kernel: smp: Brought up 1 node, 2 CPUs
May 21 04:49:46 arch kernel: smpboot: Total of 2 processors activated (12012.42 BogoMIPS)
May 21 04:49:46 arch kernel: devtmpfs: initialized
May 21 04:49:46 arch kernel: x86/mm: Memory block size: 128MB
May 21 04:49:46 arch kernel: ACPI: PM: Registering ACPI NVS region [mem 0xc7dae000-0xc7deffff] (270336 bytes)
May 21 04:49:46 arch kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
May 21 04:49:46 arch kernel: futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
May 21 04:49:46 arch kernel: pinctrl core: initialized pinctrl subsystem
May 21 04:49:46 arch kernel: PM: RTC time: 07:49:33, date: 2024-05-21
May 21 04:49:46 arch kernel: NET: Registered PF_NETLINK/PF_ROUTE protocol family
May 21 04:49:46 arch kernel: DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations
May 21 04:49:46 arch kernel: DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
May 21 04:49:46 arch kernel: DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
May 21 04:49:46 arch kernel: audit: initializing netlink subsys (disabled)
May 21 04:49:46 arch kernel: audit: type=2000 audit(1716277772.153:1): state=initialized audit_enabled=0 res=1
May 21 04:49:46 arch kernel: thermal_sys: Registered thermal governor 'fair_share'
May 21 04:49:46 arch kernel: thermal_sys: Registered thermal governor 'bang_bang'
May 21 04:49:46 arch kernel: thermal_sys: Registered thermal governor 'step_wise'
May 21 04:49:46 arch kernel: thermal_sys: Registered thermal governor 'user_space'
May 21 04:49:46 arch kernel: thermal_sys: Registered thermal governor 'power_allocator'
May 21 04:49:46 arch kernel: cpuidle: using governor ladder
May 21 04:49:46 arch kernel: cpuidle: using governor menu
May 21 04:49:46 arch kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
May 21 04:49:46 arch kernel: PCI: ECAM [mem 0xe0000000-0xefffffff] (base 0xe0000000) for domain 0000 [bus 00-ff]
May 21 04:49:46 arch kernel: PCI: not using ECAM ([mem 0xe0000000-0xefffffff] not reserved)
May 21 04:49:46 arch kernel: PCI: Using configuration type 1 for base access
May 21 04:49:46 arch kernel: kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
May 21 04:49:46 arch kernel: HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
May 21 04:49:46 arch kernel: HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
May 21 04:49:46 arch kernel: Demotion targets for Node 0: null
May 21 04:49:46 arch kernel: fbcon: Taking over console
May 21 04:49:46 arch kernel: ACPI: Added _OSI(Module Device)
May 21 04:49:46 arch kernel: ACPI: Added _OSI(Processor Device)
May 21 04:49:46 arch kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
May 21 04:49:46 arch kernel: ACPI: Added _OSI(Processor Aggregator Device)
May 21 04:49:46 arch kernel: ACPI: 2 ACPI AML tables successfully acquired and loaded
May 21 04:49:46 arch kernel: ACPI: Dynamic OEM Table Load:
May 21 04:49:46 arch kernel: ACPI: SSDT 0xFFFF9E94C030C400 000277 (v01 DpgPmm P001Ist  00000011 INTL 20051117)
May 21 04:49:46 arch kernel: ACPI: Dynamic OEM Table Load:
May 21 04:49:46 arch kernel: ACPI: SSDT 0xFFFF9E94C030C000 000277 (v01 DpgPmm P002Ist  00000012 INTL 20051117)
May 21 04:49:46 arch kernel: ACPI: _OSC evaluated successfully for all CPUs
May 21 04:49:46 arch kernel: ACPI: Interpreter enabled
May 21 04:49:46 arch kernel: ACPI: PM: (supports S0 S1 S4 S5)
May 21 04:49:46 arch kernel: ACPI: Using IOAPIC for interrupt routing
May 21 04:49:46 arch kernel: PCI: ECAM [mem 0xe0000000-0xefffffff] (base 0xe0000000) for domain 0000 [bus 00-ff]
May 21 04:49:46 arch kernel: PCI: ECAM [mem 0xe0000000-0xefffffff] reserved as ACPI motherboard resource
May 21 04:49:46 arch kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
May 21 04:49:46 arch kernel: PCI: Using E820 reservations for host bridge windows
May 21 04:49:46 arch kernel: ACPI: Enabled 12 GPEs in block 00 to 1F
May 21 04:49:46 arch kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
May 21 04:49:46 arch kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
May 21 04:49:46 arch kernel: acpi PNP0A08:00: _OSC: OS requested [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
May 21 04:49:46 arch kernel: acpi PNP0A08:00: _OSC: platform willing to grant [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
May 21 04:49:46 arch kernel: acpi PNP0A08:00: _OSC: platform retains control of PCIe features (AE_NOT_FOUND)
May 21 04:49:46 arch kernel: PCI host bridge to bus 0000:00
May 21 04:49:46 arch kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
May 21 04:49:46 arch kernel: pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
May 21 04:49:46 arch kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
May 21 04:49:46 arch kernel: pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000dffff window]
May 21 04:49:46 arch kernel: pci_bus 0000:00: root bus resource [mem 0xc7e00000-0xdfffffff window]
May 21 04:49:46 arch kernel: pci_bus 0000:00: root bus resource [mem 0xf0000000-0xffffffff window]
May 21 04:49:46 arch kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
May 21 04:49:46 arch kernel: pci 0000:00:00.0: [8086:2e30] type 00 class 0x060000 conventional PCI endpoint
May 21 04:49:46 arch kernel: pci 0000:00:00.0: DMAR: Disabling IOMMU for graphics on this chipset
May 21 04:49:46 arch kernel: pci 0000:00:00.0: DMAR: Forcing write-buffer flush capability
May 21 04:49:46 arch kernel: pci 0000:00:02.0: [8086:2e32] type 00 class 0x030000 conventional PCI endpoint
May 21 04:49:46 arch kernel: pci 0000:00:02.0: BAR 0 [mem 0xfe400000-0xfe7fffff 64bit]
May 21 04:49:46 arch kernel: pci 0000:00:02.0: BAR 2 [mem 0xd0000000-0xdfffffff 64bit pref]
May 21 04:49:46 arch kernel: pci 0000:00:02.0: BAR 4 [io  0xdc00-0xdc07]
May 21 04:49:46 arch kernel: pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
May 21 04:49:46 arch kernel: pci 0000:00:1b.0: [8086:27d8] type 00 class 0x040300 PCIe Root Complex Integrated Endpoint
May 21 04:49:46 arch kernel: pci 0000:00:1b.0: BAR 0 [mem 0xfeaf8000-0xfeafbfff 64bit]
May 21 04:49:46 arch kernel: pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
May 21 04:49:46 arch kernel: pci 0000:00:1c.0: [8086:27d0] type 01 class 0x060400 PCIe Root Port
May 21 04:49:46 arch kernel: pci 0000:00:1c.0: PCI bridge to [bus 01]
May 21 04:49:46 arch kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
May 21 04:49:46 arch kernel: pci 0000:00:1c.1: [8086:27d2] type 01 class 0x060400 PCIe Root Port
May 21 04:49:46 arch kernel: pci 0000:00:1c.1: PCI bridge to [bus 02]
May 21 04:49:46 arch kernel: pci 0000:00:1c.1:   bridge window [io  0xe000-0xefff]
May 21 04:49:46 arch kernel: pci 0000:00:1c.1:   bridge window [mem 0xfeb00000-0xfebfffff]
May 21 04:49:46 arch kernel: pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
May 21 04:49:46 arch kernel: pci 0000:00:1c.2: [8086:27d4] type 01 class 0x060400 PCIe Root Port
May 21 04:49:46 arch kernel: pci 0000:00:1c.2: PCI bridge to [bus 03]
May 21 04:49:46 arch kernel: pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
May 21 04:49:46 arch kernel: pci 0000:00:1d.0: [8086:27c8] type 00 class 0x0c0300 conventional PCI endpoint
May 21 04:49:46 arch kernel: pci 0000:00:1d.0: BAR 4 [io  0xd880-0xd89f]
May 21 04:49:46 arch kernel: pci 0000:00:1d.1: [8086:27c9] type 00 class 0x0c0300 conventional PCI endpoint
May 21 04:49:46 arch kernel: pci 0000:00:1d.1: BAR 4 [io  0xd800-0xd81f]
May 21 04:49:46 arch kernel: pci 0000:00:1d.2: [8086:27ca] type 00 class 0x0c0300 conventional PCI endpoint
May 21 04:49:46 arch kernel: pci 0000:00:1d.2: BAR 4 [io  0xd480-0xd49f]
May 21 04:49:46 arch kernel: pci 0000:00:1d.3: [8086:27cb] type 00 class 0x0c0300 conventional PCI endpoint
May 21 04:49:46 arch kernel: pci 0000:00:1d.3: BAR 4 [io  0xd400-0xd41f]
May 21 04:49:46 arch kernel: pci 0000:00:1d.7: [8086:27cc] type 00 class 0x0c0320 conventional PCI endpoint
May 21 04:49:46 arch kernel: pci 0000:00:1d.7: BAR 0 [mem 0xfeaf7c00-0xfeaf7fff]
May 21 04:49:46 arch kernel: pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
May 21 04:49:46 arch kernel: pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401 conventional PCI bridge
May 21 04:49:46 arch kernel: pci 0000:00:1e.0: PCI bridge to [bus 04] (subtractive decode)
May 21 04:49:46 arch kernel: pci 0000:00:1f.0: [8086:27b8] type 00 class 0x060100 conventional PCI endpoint
May 21 04:49:46 arch kernel: pci 0000:00:1f.0: quirk: [io  0x0800-0x087f] claimed by ICH6 ACPI/GPIO/TCO
May 21 04:49:46 arch kernel: pci 0000:00:1f.0: quirk: [io  0x0480-0x04bf] claimed by ICH6 GPIO
May 21 04:49:46 arch kernel: pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0a00 (mask 00ff)
May 21 04:49:46 arch kernel: pci 0000:00:1f.0: ICH7 LPC Generic IO decode 2 PIO at 0a00 (mask 0017)
May 21 04:49:46 arch kernel: pci 0000:00:1f.0: ICH7 LPC Generic IO decode 3 PIO at 4700 (mask 00ff)
May 21 04:49:46 arch kernel: pci 0000:00:1f.1: [8086:27df] type 00 class 0x01018a conventional PCI endpoint
May 21 04:49:46 arch kernel: pci 0000:00:1f.1: BAR 0 [io  0x0000-0x0007]
May 21 04:49:46 arch kernel: pci 0000:00:1f.1: BAR 1 [io  0x0000-0x0003]
May 21 04:49:46 arch kernel: pci 0000:00:1f.1: BAR 2 [io  0x08f0-0x08f7]
May 21 04:49:46 arch kernel: pci 0000:00:1f.1: BAR 3 [io  0x08f8-0x08fb]
May 21 04:49:46 arch kernel: pci 0000:00:1f.1: BAR 4 [io  0xffa0-0xffaf]
May 21 04:49:46 arch kernel: pci 0000:00:1f.1: BAR 0 [io  0x01f0-0x01f7]: legacy IDE quirk
May 21 04:49:46 arch kernel: pci 0000:00:1f.1: BAR 1 [io  0x03f6]: legacy IDE quirk
May 21 04:49:46 arch kernel: pci 0000:00:1f.1: BAR 2 [io  0x0170-0x0177]: legacy IDE quirk
May 21 04:49:46 arch kernel: pci 0000:00:1f.1: BAR 3 [io  0x0376]: legacy IDE quirk
May 21 04:49:46 arch kernel: pci 0000:00:1f.2: [8086:27c0] type 00 class 0x01018f conventional PCI endpoint
May 21 04:49:46 arch kernel: pci 0000:00:1f.2: BAR 0 [io  0xd080-0xd087]
May 21 04:49:46 arch kernel: pci 0000:00:1f.2: BAR 1 [io  0xd000-0xd003]
May 21 04:49:46 arch kernel: pci 0000:00:1f.2: BAR 2 [io  0xcc00-0xcc07]
May 21 04:49:46 arch kernel: pci 0000:00:1f.2: BAR 3 [io  0xc880-0xc883]
May 21 04:49:46 arch kernel: pci 0000:00:1f.2: BAR 4 [io  0xc800-0xc80f]
May 21 04:49:46 arch kernel: pci 0000:00:1f.2: PME# supported from D3hot
May 21 04:49:46 arch kernel: pci 0000:00:1f.3: [8086:27da] type 00 class 0x0c0500 conventional PCI endpoint
May 21 04:49:46 arch kernel: pci 0000:00:1f.3: BAR 4 [io  0x0400-0x041f]
May 21 04:49:46 arch kernel: pci 0000:00:1c.0: PCI bridge to [bus 01]
May 21 04:49:46 arch kernel: pci 0000:02:00.0: [1969:1062] type 00 class 0x020000 PCIe Endpoint
May 21 04:49:46 arch kernel: pci 0000:02:00.0: BAR 0 [mem 0xfebc0000-0xfebfffff 64bit]
May 21 04:49:46 arch kernel: pci 0000:02:00.0: BAR 2 [io  0xec00-0xec7f]
May 21 04:49:46 arch kernel: pci 0000:02:00.0: [Firmware Bug]: disabling VPD access (can't determine size of non-standard VPD format)
May 21 04:49:46 arch kernel: pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
May 21 04:49:46 arch kernel: pci 0000:00:1c.1: PCI bridge to [bus 02]
May 21 04:49:46 arch kernel: pci 0000:00:1c.2: PCI bridge to [bus 03]
May 21 04:49:46 arch kernel: pci_bus 0000:04: extended config space not accessible
May 21 04:49:46 arch kernel: pci 0000:00:1e.0: PCI bridge to [bus 04] (subtractive decode)
May 21 04:49:46 arch kernel: pci 0000:00:1e.0:   bridge window [io  0x0000-0x0cf7 window] (subtractive decode)
May 21 04:49:46 arch kernel: pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff window] (subtractive decode)
May 21 04:49:46 arch kernel: pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
May 21 04:49:46 arch kernel: pci 0000:00:1e.0:   bridge window [mem 0x000d0000-0x000dffff window] (subtractive decode)
May 21 04:49:46 arch kernel: pci 0000:00:1e.0:   bridge window [mem 0xc7e00000-0xdfffffff window] (subtractive decode)
May 21 04:49:46 arch kernel: pci 0000:00:1e.0:   bridge window [mem 0xf0000000-0xffffffff window] (subtractive decode)
May 21 04:49:46 arch kernel: ACPI: PCI: Interrupt link LNKA configured for IRQ 10
May 21 04:49:46 arch kernel: ACPI: PCI: Interrupt link LNKB configured for IRQ 11
May 21 04:49:46 arch kernel: ACPI: PCI: Interrupt link LNKC configured for IRQ 6
May 21 04:49:46 arch kernel: ACPI: PCI: Interrupt link LNKD configured for IRQ 10
May 21 04:49:46 arch kernel: ACPI: PCI: Interrupt link LNKE configured for IRQ 0
May 21 04:49:46 arch kernel: ACPI: PCI: Interrupt link LNKE disabled
May 21 04:49:46 arch kernel: ACPI: PCI: Interrupt link LNKF configured for IRQ 0
May 21 04:49:46 arch kernel: ACPI: PCI: Interrupt link LNKF disabled
May 21 04:49:46 arch kernel: ACPI: PCI: Interrupt link LNKG configured for IRQ 0
May 21 04:49:46 arch kernel: ACPI: PCI: Interrupt link LNKG disabled
May 21 04:49:46 arch kernel: ACPI: PCI: Interrupt link LNKH configured for IRQ 5
May 21 04:49:46 arch kernel: iommu: Default domain type: Translated
May 21 04:49:46 arch kernel: iommu: DMA domain TLB invalidation policy: lazy mode
May 21 04:49:46 arch kernel: SCSI subsystem initialized
May 21 04:49:46 arch kernel: libata version 3.00 loaded.
May 21 04:49:46 arch kernel: ACPI: bus type USB registered
May 21 04:49:46 arch kernel: usbcore: registered new interface driver usbfs
May 21 04:49:46 arch kernel: usbcore: registered new interface driver hub
May 21 04:49:46 arch kernel: usbcore: registered new device driver usb
May 21 04:49:46 arch kernel: EDAC MC: Ver: 3.0.0
May 21 04:49:46 arch kernel: NetLabel: Initializing
May 21 04:49:46 arch kernel: NetLabel:  domain hash size = 128
May 21 04:49:46 arch kernel: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
May 21 04:49:46 arch kernel: NetLabel:  unlabeled traffic allowed by default
May 21 04:49:46 arch kernel: mctp: management component transport protocol core
May 21 04:49:46 arch kernel: NET: Registered PF_MCTP protocol family
May 21 04:49:46 arch kernel: PCI: Using ACPI for IRQ routing
May 21 04:49:46 arch kernel: PCI: pci_cache_line_size set to 64 bytes
May 21 04:49:46 arch kernel: resource: Expanded resource Reserved due to conflict with PCI Bus 0000:00
May 21 04:49:46 arch kernel: e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
May 21 04:49:46 arch kernel: e820: reserve RAM buffer [mem 0xc7da0000-0xc7ffffff]
May 21 04:49:46 arch kernel: pci 0000:00:02.0: vgaarb: setting as boot VGA device
May 21 04:49:46 arch kernel: pci 0000:00:02.0: vgaarb: bridge control possible
May 21 04:49:46 arch kernel: pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
May 21 04:49:46 arch kernel: vgaarb: loaded
May 21 04:49:46 arch kernel: hpet: 3 channels of 0 reserved for per-cpu timers
May 21 04:49:46 arch kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
May 21 04:49:46 arch kernel: hpet0: 3 comparators, 64-bit 14.318180 MHz counter
May 21 04:49:46 arch kernel: clocksource: Switched to clocksource tsc-early
May 21 04:49:46 arch kernel: VFS: Disk quotas dquot_6.6.0
May 21 04:49:46 arch kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
May 21 04:49:46 arch kernel: pnp: PnP ACPI init
May 21 04:49:46 arch kernel: system 00:00: [mem 0xfed14000-0xfed19fff] has been reserved
May 21 04:49:46 arch kernel: system 00:00: [mem 0xfed90000-0xfed93fff] has been reserved
May 21 04:49:46 arch kernel: pnp 00:02: [dma 0 disabled]
May 21 04:49:46 arch kernel: pnp 00:03: [dma 0 disabled]
May 21 04:49:46 arch kernel: pnp 00:04: [dma 0 disabled]
May 21 04:49:46 arch kernel: system 00:05: [io  0x04d0-0x04d1] has been reserved
May 21 04:49:46 arch kernel: system 00:05: [io  0x0800-0x087f] has been reserved
May 21 04:49:46 arch kernel: system 00:05: [io  0x0480-0x04bf] has been reserved
May 21 04:49:46 arch kernel: system 00:05: [mem 0xfed1c000-0xfed1ffff] has been reserved
May 21 04:49:46 arch kernel: system 00:05: [mem 0xfed20000-0xfed8ffff] has been reserved
May 21 04:49:46 arch kernel: system 00:05: [mem 0xffa00000-0xffffffff] could not be reserved
May 21 04:49:46 arch kernel: system 00:06: [mem 0xffc00000-0xffefffff] has been reserved
May 21 04:49:46 arch kernel: system 00:07: [mem 0xfec00000-0xfec00fff] could not be reserved
May 21 04:49:46 arch kernel: system 00:07: [mem 0xfee00000-0xfee00fff] has been reserved
May 21 04:49:46 arch kernel: system 00:08: [io  0x0a00-0x0adf] has been reserved
May 21 04:49:46 arch kernel: system 00:08: [io  0x0ae0-0x0aef] has been reserved
May 21 04:49:46 arch kernel: system 00:09: [mem 0xe0000000-0xefffffff] has been reserved
May 21 04:49:46 arch kernel: pnp 00:0a: disabling [mem 0x000c0000-0x000cffff] because it overlaps 0000:00:02.0 BAR 6 [mem 0x000c0000-0x000dffff]
May 21 04:49:46 arch kernel: system 00:0a: [mem 0x00000000-0x0009ffff] could not be reserved
May 21 04:49:46 arch kernel: system 00:0a: [mem 0x000e0000-0x000fffff] could not be reserved
May 21 04:49:46 arch kernel: system 00:0a: [mem 0x00100000-0xc7dfffff] could not be reserved
May 21 04:49:46 arch kernel: pnp: PnP ACPI: found 11 devices
May 21 04:49:46 arch kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
May 21 04:49:46 arch kernel: NET: Registered PF_INET protocol family
May 21 04:49:46 arch kernel: IP idents hash table entries: 65536 (order: 7, 524288 bytes, linear)
May 21 04:49:46 arch kernel: tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear)
May 21 04:49:46 arch kernel: Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
May 21 04:49:46 arch kernel: TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear)
May 21 04:49:46 arch kernel: TCP bind hash table entries: 32768 (order: 8, 1048576 bytes, linear)
May 21 04:49:46 arch kernel: TCP: Hash tables configured (established 32768 bind 32768)
May 21 04:49:46 arch kernel: MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear)
May 21 04:49:46 arch kernel: UDP hash table entries: 2048 (order: 4, 65536 bytes, linear)
May 21 04:49:46 arch kernel: UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear)
May 21 04:49:46 arch kernel: NET: Registered PF_UNIX/PF_LOCAL protocol family
May 21 04:49:46 arch kernel: NET: Registered PF_XDP protocol family
May 21 04:49:46 arch kernel: pci 0000:00:1c.0: bridge window [io  0x1000-0x0fff] to [bus 01] add_size 1000
May 21 04:49:46 arch kernel: pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000 add_align 100000
May 21 04:49:46 arch kernel: pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff] to [bus 01] add_size 200000 add_align 100000
May 21 04:49:46 arch kernel: pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000 add_align 100000
May 21 04:49:46 arch kernel: pci 0000:00:1c.2: bridge window [io  0x1000-0x0fff] to [bus 03] add_size 1000
May 21 04:49:46 arch kernel: pci 0000:00:1c.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000 add_align 100000
May 21 04:49:46 arch kernel: pci 0000:00:1c.2: bridge window [mem 0x00100000-0x000fffff] to [bus 03] add_size 200000 add_align 100000
May 21 04:49:46 arch kernel: resource: avoiding allocation from e820 entry [mem 0xc7df0000-0xcfffffff]
May 21 04:49:46 arch kernel: pci 0000:00:1c.0: bridge window [mem 0xf0000000-0xf01fffff]: assigned
May 21 04:49:46 arch kernel: resource: avoiding allocation from e820 entry [mem 0xc7df0000-0xcfffffff]
May 21 04:49:46 arch kernel: pci 0000:00:1c.0: bridge window [mem 0xf0200000-0xf03fffff 64bit pref]: assigned
May 21 04:49:46 arch kernel: resource: avoiding allocation from e820 entry [mem 0xc7df0000-0xcfffffff]
May 21 04:49:46 arch kernel: pci 0000:00:1c.1: bridge window [mem 0xf0400000-0xf05fffff 64bit pref]: assigned
May 21 04:49:46 arch kernel: resource: avoiding allocation from e820 entry [mem 0xc7df0000-0xcfffffff]
May 21 04:49:46 arch kernel: pci 0000:00:1c.2: bridge window [mem 0xf0600000-0xf07fffff]: assigned
May 21 04:49:46 arch kernel: resource: avoiding allocation from e820 entry [mem 0xc7df0000-0xcfffffff]
May 21 04:49:46 arch kernel: pci 0000:00:1c.2: bridge window [mem 0xf0800000-0xf09fffff 64bit pref]: assigned
May 21 04:49:46 arch kernel: pci 0000:00:1c.0: bridge window [io  0x1000-0x1fff]: assigned
May 21 04:49:46 arch kernel: pci 0000:00:1c.2: bridge window [io  0x2000-0x2fff]: assigned
May 21 04:49:46 arch kernel: pci 0000:00:1c.0: PCI bridge to [bus 01]
May 21 04:49:46 arch kernel: pci 0000:00:1c.0:   bridge window [io  0x1000-0x1fff]
May 21 04:49:46 arch kernel: pci 0000:00:1c.0:   bridge window [mem 0xf0000000-0xf01fffff]
May 21 04:49:46 arch kernel: pci 0000:00:1c.0:   bridge window [mem 0xf0200000-0xf03fffff 64bit pref]
May 21 04:49:46 arch kernel: pci 0000:00:1c.1: PCI bridge to [bus 02]
May 21 04:49:46 arch kernel: pci 0000:00:1c.1:   bridge window [io  0xe000-0xefff]
May 21 04:49:46 arch kernel: pci 0000:00:1c.1:   bridge window [mem 0xfeb00000-0xfebfffff]
May 21 04:49:46 arch kernel: pci 0000:00:1c.1:   bridge window [mem 0xf0400000-0xf05fffff 64bit pref]
May 21 04:49:46 arch kernel: pci 0000:00:1c.2: PCI bridge to [bus 03]
May 21 04:49:46 arch kernel: pci 0000:00:1c.2:   bridge window [io  0x2000-0x2fff]
May 21 04:49:46 arch kernel: pci 0000:00:1c.2:   bridge window [mem 0xf0600000-0xf07fffff]
May 21 04:49:46 arch kernel: pci 0000:00:1c.2:   bridge window [mem 0xf0800000-0xf09fffff 64bit pref]
May 21 04:49:46 arch kernel: pci 0000:00:1e.0: PCI bridge to [bus 04]
May 21 04:49:46 arch kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
May 21 04:49:46 arch kernel: pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
May 21 04:49:46 arch kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
May 21 04:49:46 arch kernel: pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000dffff window]
May 21 04:49:46 arch kernel: pci_bus 0000:00: resource 8 [mem 0xc7e00000-0xdfffffff window]
May 21 04:49:46 arch kernel: pci_bus 0000:00: resource 9 [mem 0xf0000000-0xffffffff window]
May 21 04:49:46 arch kernel: pci_bus 0000:01: resource 0 [io  0x1000-0x1fff]
May 21 04:49:46 arch kernel: pci_bus 0000:01: resource 1 [mem 0xf0000000-0xf01fffff]
May 21 04:49:46 arch kernel: pci_bus 0000:01: resource 2 [mem 0xf0200000-0xf03fffff 64bit pref]
May 21 04:49:46 arch kernel: pci_bus 0000:02: resource 0 [io  0xe000-0xefff]
May 21 04:49:46 arch kernel: pci_bus 0000:02: resource 1 [mem 0xfeb00000-0xfebfffff]
May 21 04:49:46 arch kernel: pci_bus 0000:02: resource 2 [mem 0xf0400000-0xf05fffff 64bit pref]
May 21 04:49:46 arch kernel: pci_bus 0000:03: resource 0 [io  0x2000-0x2fff]
May 21 04:49:46 arch kernel: pci_bus 0000:03: resource 1 [mem 0xf0600000-0xf07fffff]
May 21 04:49:46 arch kernel: pci_bus 0000:03: resource 2 [mem 0xf0800000-0xf09fffff 64bit pref]
May 21 04:49:46 arch kernel: pci_bus 0000:04: resource 4 [io  0x0000-0x0cf7 window]
May 21 04:49:46 arch kernel: pci_bus 0000:04: resource 5 [io  0x0d00-0xffff window]
May 21 04:49:46 arch kernel: pci_bus 0000:04: resource 6 [mem 0x000a0000-0x000bffff window]
May 21 04:49:46 arch kernel: pci_bus 0000:04: resource 7 [mem 0x000d0000-0x000dffff window]
May 21 04:49:46 arch kernel: pci_bus 0000:04: resource 8 [mem 0xc7e00000-0xdfffffff window]
May 21 04:49:46 arch kernel: pci_bus 0000:04: resource 9 [mem 0xf0000000-0xffffffff window]
May 21 04:49:46 arch kernel: PCI: CLS 32 bytes, default 64
May 21 04:49:46 arch kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
May 21 04:49:46 arch kernel: software IO TLB: mapped [mem 0x00000000c3da0000-0x00000000c7da0000] (64MB)
May 21 04:49:46 arch kernel: Trying to unpack rootfs image as initramfs...
May 21 04:49:46 arch kernel: Initialise system trusted keyrings
May 21 04:49:46 arch kernel: Key type blacklist registered
May 21 04:49:46 arch kernel: workingset: timestamp_bits=41 max_order=20 bucket_order=0
May 21 04:49:46 arch kernel: zbud: loaded
May 21 04:49:46 arch kernel: fuse: init (API version 7.40)
May 21 04:49:46 arch kernel: integrity: Platform Keyring initialized
May 21 04:49:46 arch kernel: integrity: Machine keyring initialized
May 21 04:49:46 arch kernel: Key type asymmetric registered
May 21 04:49:46 arch kernel: Asymmetric key parser 'x509' registered
May 21 04:49:46 arch kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
May 21 04:49:46 arch kernel: io scheduler mq-deadline registered
May 21 04:49:46 arch kernel: io scheduler kyber registered
May 21 04:49:46 arch kernel: io scheduler bfq registered
May 21 04:49:46 arch kernel: pcieport 0000:00:1c.0: enabling device (0104 -> 0107)
May 21 04:49:46 arch kernel: pcieport 0000:00:1c.2: enabling device (0104 -> 0107)
May 21 04:49:46 arch kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
May 21 04:49:46 arch kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
May 21 04:49:46 arch kernel: ACPI: button: Power Button [PWRB]
May 21 04:49:46 arch kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
May 21 04:49:46 arch kernel: ACPI: button: Power Button [PWRF]
May 21 04:49:46 arch kernel: Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
May 21 04:49:46 arch kernel: 00:02: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
May 21 04:49:46 arch kernel: 00:03: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
May 21 04:49:46 arch kernel: Non-volatile memory driver v1.3
May 21 04:49:46 arch kernel: Linux agpgart interface v0.103
May 21 04:49:46 arch kernel: ACPI: bus type drm_connector registered
May 21 04:49:46 arch kernel: initcall simpledrm_platform_driver_init blacklisted
May 21 04:49:46 arch kernel: uhci_hcd 0000:00:1d.0: UHCI Host Controller
May 21 04:49:46 arch kernel: uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 1
May 21 04:49:46 arch kernel: uhci_hcd 0000:00:1d.0: detected 2 ports
May 21 04:49:46 arch kernel: uhci_hcd 0000:00:1d.0: irq 23, io port 0x0000d880
May 21 04:49:46 arch kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.09
May 21 04:49:46 arch kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
May 21 04:49:46 arch kernel: usb usb1: Product: UHCI Host Controller
May 21 04:49:46 arch kernel: usb usb1: Manufacturer: Linux 6.9.1-arch1-1 uhci_hcd
May 21 04:49:46 arch kernel: usb usb1: SerialNumber: 0000:00:1d.0
May 21 04:49:46 arch kernel: hub 1-0:1.0: USB hub found
May 21 04:49:46 arch kernel: hub 1-0:1.0: 2 ports detected
May 21 04:49:46 arch kernel: ehci-pci 0000:00:1d.7: EHCI Host Controller
May 21 04:49:46 arch kernel: ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 2
May 21 04:49:46 arch kernel: ehci-pci 0000:00:1d.7: debug port 1
May 21 04:49:46 arch kernel: ehci-pci 0000:00:1d.7: irq 23, io mem 0xfeaf7c00
May 21 04:49:46 arch kernel: ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
May 21 04:49:46 arch kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.09
May 21 04:49:46 arch kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
May 21 04:49:46 arch kernel: usb usb2: Product: EHCI Host Controller
May 21 04:49:46 arch kernel: usb usb2: Manufacturer: Linux 6.9.1-arch1-1 ehci_hcd
May 21 04:49:46 arch kernel: usb usb2: SerialNumber: 0000:00:1d.7
May 21 04:49:46 arch kernel: hub 2-0:1.0: USB hub found
May 21 04:49:46 arch kernel: hub 2-0:1.0: 8 ports detected
May 21 04:49:46 arch kernel: hub 1-0:1.0: USB hub found
May 21 04:49:46 arch kernel: hub 1-0:1.0: 2 ports detected
May 21 04:49:46 arch kernel: uhci_hcd 0000:00:1d.1: UHCI Host Controller
May 21 04:49:46 arch kernel: uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
May 21 04:49:46 arch kernel: uhci_hcd 0000:00:1d.1: detected 2 ports
May 21 04:49:46 arch kernel: uhci_hcd 0000:00:1d.1: irq 19, io port 0x0000d800
May 21 04:49:46 arch kernel: usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.09
May 21 04:49:46 arch kernel: usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
May 21 04:49:46 arch kernel: usb usb3: Product: UHCI Host Controller
May 21 04:49:46 arch kernel: usb usb3: Manufacturer: Linux 6.9.1-arch1-1 uhci_hcd
May 21 04:49:46 arch kernel: usb usb3: SerialNumber: 0000:00:1d.1
May 21 04:49:46 arch kernel: hub 3-0:1.0: USB hub found
May 21 04:49:46 arch kernel: hub 3-0:1.0: 2 ports detected
May 21 04:49:46 arch kernel: uhci_hcd 0000:00:1d.2: UHCI Host Controller
May 21 04:49:46 arch kernel: uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
May 21 04:49:46 arch kernel: uhci_hcd 0000:00:1d.2: detected 2 ports
May 21 04:49:46 arch kernel: uhci_hcd 0000:00:1d.2: irq 18, io port 0x0000d480
May 21 04:49:46 arch kernel: usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.09
May 21 04:49:46 arch kernel: usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
May 21 04:49:46 arch kernel: usb usb4: Product: UHCI Host Controller
May 21 04:49:46 arch kernel: usb usb4: Manufacturer: Linux 6.9.1-arch1-1 uhci_hcd
May 21 04:49:46 arch kernel: usb usb4: SerialNumber: 0000:00:1d.2
May 21 04:49:46 arch kernel: hub 4-0:1.0: USB hub found
May 21 04:49:46 arch kernel: hub 4-0:1.0: 2 ports detected
May 21 04:49:46 arch kernel: uhci_hcd 0000:00:1d.3: UHCI Host Controller
May 21 04:49:46 arch kernel: uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
May 21 04:49:46 arch kernel: uhci_hcd 0000:00:1d.3: detected 2 ports
May 21 04:49:46 arch kernel: uhci_hcd 0000:00:1d.3: irq 16, io port 0x0000d400
May 21 04:49:46 arch kernel: usb usb5: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.09
May 21 04:49:46 arch kernel: usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
May 21 04:49:46 arch kernel: usb usb5: Product: UHCI Host Controller
May 21 04:49:46 arch kernel: usb usb5: Manufacturer: Linux 6.9.1-arch1-1 uhci_hcd
May 21 04:49:46 arch kernel: usb usb5: SerialNumber: 0000:00:1d.3
May 21 04:49:46 arch kernel: hub 5-0:1.0: USB hub found
May 21 04:49:46 arch kernel: hub 5-0:1.0: 2 ports detected
May 21 04:49:46 arch kernel: usbcore: registered new interface driver usbserial_generic
May 21 04:49:46 arch kernel: usbserial: USB Serial support registered for generic
May 21 04:49:46 arch kernel: rtc_cmos 00:01: RTC can wake from S4
May 21 04:49:46 arch kernel: rtc_cmos 00:01: registered as rtc0
May 21 04:49:46 arch kernel: rtc_cmos 00:01: setting system clock to 2024-05-21T07:49:33 UTC (1716277773)
May 21 04:49:46 arch kernel: rtc_cmos 00:01: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
May 21 04:49:46 arch kernel: intel_pstate: CPU model not supported
May 21 04:49:46 arch kernel: ledtrig-cpu: registered to indicate activity on CPUs
May 21 04:49:46 arch kernel: hid: raw HID events driver (C) Jiri Kosina
May 21 04:49:46 arch kernel: drop_monitor: Initializing network drop monitor service
May 21 04:49:46 arch kernel: NET: Registered PF_INET6 protocol family
May 21 04:49:46 arch kernel: Freeing initrd memory: 23004K
May 21 04:49:46 arch kernel: Segment Routing with IPv6
May 21 04:49:46 arch kernel: RPL Segment Routing with IPv6
May 21 04:49:46 arch kernel: In-situ OAM (IOAM) with IPv6
May 21 04:49:46 arch kernel: NET: Registered PF_PACKET protocol family
May 21 04:49:46 arch kernel: microcode: Current revision: 0x0000060f
May 21 04:49:46 arch kernel: microcode: Updated early from: 0x0000060c
May 21 04:49:46 arch kernel: IPI shorthand broadcast: enabled
May 21 04:49:46 arch kernel: sched_clock: Marking stable (461182733, 1099524)->(492053562, -29771305)
May 21 04:49:46 arch kernel: Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level
May 21 04:49:46 arch kernel: registered taskstats version 1
May 21 04:49:46 arch kernel: Loading compiled-in X.509 certificates
May 21 04:49:46 arch kernel: Loaded X.509 cert 'Build time autogenerated kernel key: be4bbad69eed7dd060ec4b225d099c7ad90dc57b'
May 21 04:49:46 arch kernel: Key type .fscrypt registered
May 21 04:49:46 arch kernel: Key type fscrypt-provisioning registered
May 21 04:49:46 arch kernel: PM:   Magic number: 8:101:825
May 21 04:49:46 arch kernel: RAS: Correctable Errors collector initialized.
May 21 04:49:46 arch kernel: clk: Disabling unused clocks
May 21 04:49:46 arch kernel: PM: genpd: Disabling unused power domains
May 21 04:49:46 arch kernel: Freeing unused decrypted memory: 2028K
May 21 04:49:46 arch kernel: Freeing unused kernel image (initmem) memory: 3408K
May 21 04:49:46 arch kernel: Write protecting the kernel read-only data: 32768k
May 21 04:49:46 arch kernel: Freeing unused kernel image (rodata/data gap) memory: 1060K
May 21 04:49:46 arch kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
May 21 04:49:46 arch kernel: rodata_test: all tests were successful
May 21 04:49:46 arch kernel: x86/mm: Checking user space page tables
May 21 04:49:46 arch kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
May 21 04:49:46 arch kernel: Run /init as init process
May 21 04:49:46 arch kernel:   with arguments:
May 21 04:49:46 arch kernel:     /init
May 21 04:49:46 arch kernel:   with environment:
May 21 04:49:46 arch kernel:     HOME=/
May 21 04:49:46 arch kernel:     TERM=linux
May 21 04:49:46 arch kernel:     BOOT_IMAGE=/boot/vmlinuz-linux
May 21 04:49:46 arch kernel: ata_piix 0000:00:1f.1: version 2.13
May 21 04:49:46 arch kernel: scsi host0: ata_piix
May 21 04:49:46 arch kernel: scsi host1: ata_piix
May 21 04:49:46 arch kernel: ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xffa0 irq 14 lpm-pol 0
May 21 04:49:46 arch kernel: ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xffa8 irq 15 lpm-pol 0
May 21 04:49:46 arch kernel: ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
May 21 04:49:46 arch kernel: scsi host2: ata_piix
May 21 04:49:46 arch kernel: scsi host3: ata_piix
May 21 04:49:46 arch kernel: ata3: SATA max UDMA/133 cmd 0xd080 ctl 0xd000 bmdma 0xc800 irq 19 lpm-pol 0
May 21 04:49:46 arch kernel: ata4: SATA max UDMA/133 cmd 0xcc00 ctl 0xc880 bmdma 0xc808 irq 19 lpm-pol 0
May 21 04:49:46 arch kernel: usb 1-1: new low-speed USB device number 2 using uhci_hcd
May 21 04:49:46 arch kernel: ata4: found unknown device (class 0)
May 21 04:49:46 arch kernel: ata4.01: ATA-8: ST500DM002-1BD142, KC48, max UDMA/133
May 21 04:49:46 arch kernel: ata4.01: 976773168 sectors, multi 16: LBA48 NCQ (depth 0/32)
May 21 04:49:46 arch kernel: scsi 3:0:1:0: Direct-Access     ATA      ST500DM002-1BD14 KC48 PQ: 0 ANSI: 5
May 21 04:49:46 arch kernel: sd 3:0:1:0: [sda] 976773168 512-byte logical blocks: (500 GB/466 GiB)
May 21 04:49:46 arch kernel: sd 3:0:1:0: [sda] 4096-byte physical blocks
May 21 04:49:46 arch kernel: sd 3:0:1:0: [sda] Write Protect is off
May 21 04:49:46 arch kernel: sd 3:0:1:0: [sda] Mode Sense: 00 3a 00 00
May 21 04:49:46 arch kernel: sd 3:0:1:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
May 21 04:49:46 arch kernel: sd 3:0:1:0: [sda] Preferred minimum I/O size 4096 bytes
May 21 04:49:46 arch kernel: usb 1-1: New USB device found, idVendor=0458, idProduct=003a, bcdDevice= 1.00
May 21 04:49:46 arch kernel: usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
May 21 04:49:46 arch kernel: usb 1-1: Product: USB Optical Mouse
May 21 04:49:46 arch kernel: usb 1-1: Manufacturer: Genius
May 21 04:49:46 arch kernel:  sda: sda1 sda2 sda4 < sda5 sda6 >
May 21 04:49:46 arch kernel: sd 3:0:1:0: [sda] Attached SCSI disk
May 21 04:49:46 arch kernel: usbcore: registered new interface driver usbhid
May 21 04:49:46 arch kernel: usbhid: USB HID core driver
May 21 04:49:46 arch kernel: input: Genius USB Optical Mouse as /devices/pci0000:00/0000:00:1d.0/usb1/1-1/1-1:1.0/0003:0458:003A.0001/input/input2
May 21 04:49:46 arch kernel: hid-generic 0003:0458:003A.0001: input,hidraw0: USB HID v1.11 Mouse [Genius USB Optical Mouse] on usb-0000:00:1d.0-1/input0
May 21 04:49:46 arch kernel: tsc: Refined TSC clocksource calibration: 3002.251 MHz
May 21 04:49:46 arch kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2b4693ee198, max_idle_ns: 440795253227 ns
May 21 04:49:46 arch kernel: clocksource: Switched to clocksource tsc
May 21 04:49:46 arch kernel: usb usb2-port2: over-current condition
May 21 04:49:46 arch kernel: pci 0000:00:00.0: Intel G41 Chipset
May 21 04:49:46 arch kernel: resource: avoiding allocation from e820 entry [mem 0xc7df0000-0xcfffffff]
May 21 04:49:46 arch kernel: pci 0000:00:00.0: detected gtt size: 2097152K total, 262144K mappable
May 21 04:49:46 arch kernel: pci 0000:00:00.0: detected 131072K stolen memory
May 21 04:49:46 arch kernel: i915 0000:00:02.0: vgaarb: deactivate vga console
May 21 04:49:46 arch kernel: [drm] Initialized i915 1.6.0 20230929 for 0000:00:02.0 on minor 0
May 21 04:49:46 arch kernel: usb 1-2: new low-speed USB device number 3 using uhci_hcd
May 21 04:49:46 arch kernel: fbcon: i915drmfb (fb0) is primary device
May 21 04:49:46 arch kernel: Console: switching to colour frame buffer device 160x64
May 21 04:49:46 arch kernel: i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
May 21 04:49:46 arch kernel: usb 1-2: New USB device found, idVendor=1a2c, idProduct=2d23, bcdDevice= 1.10
May 21 04:49:46 arch kernel: usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
May 21 04:49:46 arch kernel: usb 1-2: Product: USB Keyboard
May 21 04:49:46 arch kernel: usb 1-2: Manufacturer: USB
May 21 04:49:46 arch kernel: input: USB USB Keyboard as /devices/pci0000:00/0000:00:1d.0/usb1/1-2/1-2:1.0/0003:1A2C:2D23.0002/input/input3
May 21 04:49:46 arch kernel: hid-generic 0003:1A2C:2D23.0002: input,hidraw1: USB HID v1.10 Keyboard [USB USB Keyboard] on usb-0000:00:1d.0-2/input0
May 21 04:49:46 arch kernel: input: USB USB Keyboard Consumer Control as /devices/pci0000:00/0000:00:1d.0/usb1/1-2/1-2:1.1/0003:1A2C:2D23.0003/input/input4
May 21 04:49:46 arch kernel: input: USB USB Keyboard System Control as /devices/pci0000:00/0000:00:1d.0/usb1/1-2/1-2:1.1/0003:1A2C:2D23.0003/input/input5
May 21 04:49:46 arch kernel: hid-generic 0003:1A2C:2D23.0003: input,hidraw2: USB HID v1.10 Device [USB USB Keyboard] on usb-0000:00:1d.0-2/input1
May 21 04:49:46 arch kernel: usb usb2-port4: over-current condition
May 21 04:49:46 arch kernel: usb 2-7: new high-speed USB device number 4 using ehci-pci
May 21 04:49:46 arch kernel: usb 2-7: New USB device found, idVendor=0cf3, idProduct=9271, bcdDevice= 1.08
May 21 04:49:46 arch kernel: usb 2-7: New USB device strings: Mfr=16, Product=32, SerialNumber=48
May 21 04:49:46 arch kernel: usb 2-7: Product: USB2.0 WLAN
May 21 04:49:46 arch kernel: usb 2-7: Manufacturer: ATHEROS
May 21 04:49:46 arch kernel: usb 2-7: SerialNumber: 12345
May 21 04:49:46 arch kernel: EXT4-fs (sda5): mounted filesystem c88c5185-df9b-462e-8cea-9a0c7393ae50 r/w with ordered data mode. Quota mode: none.
May 21 04:49:46 arch kernel: random: crng init done
May 21 04:49:46 arch systemd[1]: systemd 255.6-1-arch running in system mode (+PAM +AUDIT -SELINUX -APPARMOR -IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +XKBCOMMON +UTMP -SYSVINIT default-hierarchy=unified)
May 21 04:49:46 arch systemd[1]: Detected architecture x86-64.
May 21 04:49:46 arch systemd[1]: Hostname set to <arch>.
May 21 04:49:46 arch systemd[1]: bpf-lsm: LSM BPF program attached
May 21 04:49:46 arch kernel: zram: Added device: zram0
May 21 04:49:46 arch systemd[1]: Queued start job for default target Graphical Interface.
May 21 04:49:46 arch systemd[1]: Created slice Slice /system/dirmngr.
May 21 04:49:46 arch systemd[1]: Created slice Slice /system/getty.
May 21 04:49:46 arch systemd[1]: Created slice Slice /system/gpg-agent.
May 21 04:49:46 arch systemd[1]: Created slice Slice /system/gpg-agent-browser.
May 21 04:49:46 arch systemd[1]: Created slice Slice /system/gpg-agent-extra.
May 21 04:49:46 arch systemd[1]: Created slice Slice /system/gpg-agent-ssh.
May 21 04:49:46 arch systemd[1]: Created slice Slice /system/keyboxd.
May 21 04:49:46 arch systemd[1]: Created slice Slice /system/modprobe.
May 21 04:49:46 arch systemd[1]: Created slice Slice /system/systemd-zram-setup.
May 21 04:49:46 arch systemd[1]: Created slice User and Session Slice.
May 21 04:49:46 arch systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
May 21 04:49:46 arch systemd[1]: Started Forward Password Requests to Wall Directory Watch.
May 21 04:49:46 arch systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
May 21 04:49:46 arch systemd[1]: Expecting device /dev/disk/by-uuid/8674be30-c4fc-46a3-b83f-77e5c6188eaa...
May 21 04:49:46 arch systemd[1]: Expecting device /dev/zram0...
May 21 04:49:46 arch systemd[1]: Reached target Local Encrypted Volumes.
May 21 04:49:46 arch systemd[1]: Reached target Login Prompts.
May 21 04:49:46 arch systemd[1]: Reached target Local Integrity Protected Volumes.
May 21 04:49:46 arch systemd[1]: Reached target Path Units.
May 21 04:49:46 arch systemd[1]: Reached target Remote File Systems.
May 21 04:49:46 arch systemd[1]: Reached target Slice Units.
May 21 04:49:46 arch systemd[1]: Reached target Local Verity Protected Volumes.
May 21 04:49:46 arch systemd[1]: Listening on Device-mapper event daemon FIFOs.
May 21 04:49:46 arch systemd[1]: Listening on LVM2 poll daemon socket.
May 21 04:49:46 arch systemd[1]: Listening on Process Core Dump Socket.
May 21 04:49:46 arch systemd[1]: Listening on Journal Socket (/dev/log).
May 21 04:49:46 arch systemd[1]: Listening on Journal Socket.
May 21 04:49:46 arch systemd[1]: Listening on Userspace Out-Of-Memory (OOM) Killer Socket.
May 21 04:49:46 arch systemd[1]: TPM2 PCR Extension (Varlink) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 21 04:49:46 arch systemd[1]: Listening on udev Control Socket.
May 21 04:49:46 arch systemd[1]: Listening on udev Kernel Socket.
May 21 04:49:46 arch systemd[1]: Mounting Huge Pages File System...
May 21 04:49:46 arch systemd[1]: Mounting POSIX Message Queue File System...
May 21 04:49:46 arch systemd[1]: Mounting Kernel Debug File System...
May 21 04:49:46 arch systemd[1]: Mounting Kernel Trace File System...
May 21 04:49:46 arch systemd[1]: Starting Create List of Static Device Nodes...
May 21 04:49:46 arch systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
May 21 04:49:46 arch systemd[1]: Starting Load Kernel Module configfs...
May 21 04:49:46 arch systemd[1]: Starting Load Kernel Module dm_mod...
May 21 04:49:46 arch systemd[1]: Starting Load Kernel Module drm...
May 21 04:49:46 arch systemd[1]: Starting Load Kernel Module fuse...
May 21 04:49:46 arch systemd[1]: Starting Load Kernel Module loop...
May 21 04:49:46 arch systemd[1]: File System Check on Root Device was skipped because of an unmet condition check (ConditionPathIsReadWrite=!/).
May 21 04:49:46 arch systemd[1]: Starting Journal Service...
May 21 04:49:46 arch systemd[1]: Starting Load Kernel Modules...
May 21 04:49:46 arch systemd[1]: TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 21 04:49:46 arch systemd[1]: Starting Remount Root and Kernel File Systems...
May 21 04:49:46 arch systemd[1]: TPM2 SRK Setup (Early) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 21 04:49:46 arch kernel: loop: module loaded
May 21 04:49:46 arch systemd[1]: Starting Coldplug All udev Devices...
May 21 04:49:46 arch systemd[1]: Mounted Huge Pages File System.
May 21 04:49:46 arch systemd[1]: Mounted POSIX Message Queue File System.
May 21 04:49:46 arch systemd[1]: Mounted Kernel Debug File System.
May 21 04:49:46 arch systemd[1]: Mounted Kernel Trace File System.
May 21 04:49:46 arch systemd[1]: Finished Create List of Static Device Nodes.
May 21 04:49:46 arch systemd[1]: modprobe@configfs.service: Deactivated successfully.
May 21 04:49:46 arch systemd[1]: Finished Load Kernel Module configfs.
May 21 04:49:46 arch systemd[1]: modprobe@drm.service: Deactivated successfully.
May 21 04:49:46 arch systemd[1]: Finished Load Kernel Module drm.
May 21 04:49:46 arch systemd[1]: modprobe@fuse.service: Deactivated successfully.
May 21 04:49:46 arch systemd[1]: Finished Load Kernel Module fuse.
May 21 04:49:46 arch systemd[1]: modprobe@loop.service: Deactivated successfully.
May 21 04:49:46 arch systemd[1]: Finished Load Kernel Module loop.
May 21 04:49:46 arch systemd[1]: Mounting FUSE Control File System...
May 21 04:49:46 arch systemd[1]: Mounting Kernel Configuration File System...
May 21 04:49:46 arch systemd[1]: Starting Create Static Device Nodes in /dev gracefully...
May 21 04:49:46 arch systemd[1]: Mounted FUSE Control File System.
May 21 04:49:46 arch kernel: EXT4-fs (sda5): re-mounted c88c5185-df9b-462e-8cea-9a0c7393ae50 r/w. Quota mode: none.
May 21 04:49:46 arch systemd[1]: Finished Remount Root and Kernel File Systems.
May 21 04:49:46 arch kernel: device-mapper: uevent: version 1.0.3
May 21 04:49:46 arch kernel: device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@lists.linux.dev
May 21 04:49:46 arch systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
May 21 04:49:46 arch systemd[1]: Starting Load/Save OS Random Seed...
May 21 04:49:46 arch systemd[1]: TPM2 SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 21 04:49:46 arch systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
May 21 04:49:46 arch systemd[1]: Finished Load Kernel Module dm_mod.
May 21 04:49:46 arch systemd[1]: Finished Load Kernel Modules.
May 21 04:49:46 arch systemd[1]: Mounted Kernel Configuration File System.
May 21 04:49:46 arch systemd-journald[236]: Collecting audit messages is disabled.
May 21 04:49:46 arch systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
May 21 04:49:46 arch systemd[1]: Starting Apply Kernel Variables...
May 21 04:49:46 arch systemd-journald[236]: Journal started
May 21 04:49:46 arch systemd-journald[236]: Runtime Journal (/run/log/journal/02fd8092237446f4b17509aeb6349ba3) is 8.0M, max 189.4M, 181.4M free.
May 21 04:49:46 arch systemd[1]: Started Journal Service.
May 21 04:49:46 arch systemd[1]: Starting Flush Journal to Persistent Storage...
May 21 04:49:46 arch systemd-journald[236]: Time spent on flushing to /var/log/journal/02fd8092237446f4b17509aeb6349ba3 is 8.997997s for 734 entries.
May 21 04:49:46 arch systemd-journald[236]: System Journal (/var/log/journal/02fd8092237446f4b17509aeb6349ba3) is 420.1M, max 4.0G, 3.5G free.
May 21 04:49:57 arch systemd-journald[236]: Received client request to flush runtime journal.
May 21 04:49:57 arch systemd-journald[236]: /var/log/journal/02fd8092237446f4b17509aeb6349ba3/system.journal: Journal file uses a different sequence number ID, rotating.
May 21 04:49:57 arch systemd-journald[236]: Rotating system journal.
May 21 04:49:57 arch kernel: zram0: detected capacity change from 0 to 7757824
May 21 04:49:57 arch kernel: Adding 3878908k swap on /dev/zram0.  Priority:100 extents:1 across:3878908k SSDsc
May 21 04:49:57 arch kernel: intel_rng: FWH not detected
May 21 04:49:57 arch kernel: parport_pc 00:04: reported by Plug and Play ACPI
May 21 04:49:57 arch kernel: parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE]
May 21 04:49:57 arch kernel: ppdev: user-space parallel port driver
May 21 04:49:57 arch kernel: ACPI Warning: SystemIO range 0x0000000000000828-0x000000000000082F conflicts with OpRegion 0x0000000000000800-0x000000000000084F (\PMRG) (20230628/utaddress-204)
May 21 04:49:57 arch kernel: ACPI: OSL: Resource conflict; ACPI support missing from driver?
May 21 04:49:57 arch kernel: lpc_ich: Resource conflict(s) found affecting gpio_ich
May 21 04:49:57 arch kernel: i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
May 21 04:49:57 arch kernel: i2c i2c-6: Memory type 0x0f not supported yet, not instantiating SPD
May 21 04:49:57 arch kernel: leds_ss4200: no LED devices found
May 21 04:49:57 arch kernel: input: PC Speaker as /devices/platform/pcspkr/input/input6
May 21 04:49:57 arch kernel: atl1c 0000:02:00.0 enp2s0: renamed from eth0
May 21 04:49:57 arch kernel: gpio_ich gpio_ich.2.auto: GPIO from 512 to 561
May 21 04:49:57 arch kernel: mousedev: PS/2 mouse device common for all mice
May 21 04:49:57 arch kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
May 21 04:49:57 arch kernel: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
May 21 04:49:57 arch kernel: Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
May 21 04:49:57 arch kernel: iTCO_vendor_support: vendor-support=0
May 21 04:49:57 arch kernel: iTCO_wdt iTCO_wdt.1.auto: Found a ICH7 or ICH7R TCO device (Version=2, TCOBASE=0x0860)
May 21 04:49:57 arch kernel: iTCO_wdt iTCO_wdt.1.auto: initialized. heartbeat=30 sec (nowayout=0)
May 21 04:49:57 arch kernel: intel_powerclamp: No package C-state available
May 21 04:49:57 arch kernel: snd_hda_intel 0000:00:1b.0: Applying patch firmware 'hda-jack-retask.fw'
May 21 04:49:57 arch kernel: usb 2-7: ath9k_htc: Firmware ath9k_htc/htc_9271-1.4.0.fw requested
May 21 04:49:57 arch kernel: usbcore: registered new interface driver ath9k_htc
May 21 04:49:57 arch kernel: snd_hda_codec_via hdaudioC0D0: autoconfig for VT1708S: line_outs=1 (0x1c/0x0/0x0/0x0/0x0) type:line
May 21 04:49:57 arch kernel: snd_hda_codec_via hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
May 21 04:49:57 arch kernel: snd_hda_codec_via hdaudioC0D0:    hp_outs=0 (0x0/0x0/0x0/0x0/0x0)
May 21 04:49:57 arch kernel: snd_hda_codec_via hdaudioC0D0:    mono: mono_out=0x0
May 21 04:49:57 arch kernel: snd_hda_codec_via hdaudioC0D0:    dig-out=0x20/0x0
May 21 04:49:57 arch kernel: snd_hda_codec_via hdaudioC0D0:    inputs:
May 21 04:49:57 arch kernel: snd_hda_codec_via hdaudioC0D0:      Front Mic=0x1e
May 21 04:49:57 arch kernel: snd_hda_codec_via hdaudioC0D0:      Rear Mic=0x1a
May 21 04:49:57 arch kernel: snd_hda_codec_via hdaudioC0D0:      Line=0x1b
May 21 04:49:57 arch kernel: snd_hda_codec_via hdaudioC0D0:      CD=0x1f
May 21 04:49:57 arch kernel: input: HDA Intel Front Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input7
May 21 04:49:57 arch kernel: input: HDA Intel Rear Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
May 21 04:49:57 arch kernel: input: HDA Intel Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
May 21 04:49:57 arch kernel: input: HDA Intel Line Out as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
May 21 04:49:57 arch kernel: Adding 4192252k swap on /dev/sda6.  Priority:-2 extents:1 across:4192252k 
May 21 04:49:57 arch kernel: usb 2-7: ath9k_htc: Transferred FW: ath9k_htc/htc_9271-1.4.0.fw, size: 51008
May 21 04:49:57 arch kernel: ath9k_htc 2-7:1.0: ath9k_htc: HTC initialized with 33 credits
May 21 04:49:57 arch kernel: ath9k_htc 2-7:1.0: ath9k_htc: FW Version: 1.4
May 21 04:49:57 arch kernel: ath9k_htc 2-7:1.0: FW RMW support: On
May 21 04:49:57 arch kernel: ath: EEPROM regdomain: 0x809c
May 21 04:49:57 arch kernel: ath: EEPROM indicates we should expect a country code
May 21 04:49:57 arch kernel: ath: doing EEPROM country->regdmn map search
May 21 04:49:57 arch kernel: ath: country maps to regdmn code: 0x52
May 21 04:49:57 arch kernel: ath: Country alpha2 being used: CN
May 21 04:49:57 arch kernel: ath: Regpair used: 0x52
May 21 04:49:57 arch kernel: ieee80211 phy0: Atheros AR9271 Rev:1
May 21 04:49:57 arch kernel: ath9k_htc 2-7:1.0 wlp0s29f7u7: renamed from wlan0
May 21 04:49:53 arch mtp-probe[369]: checking bus 1, device 2: "/sys/devices/pci0000:00/0000:00:1d.0/usb1/1-1"
May 21 04:49:46 arch systemd[1]: Finished Coldplug All udev Devices.
May 21 04:49:53 arch mtp-probe[369]: bus: 1, device: 2 was not an MTP device
May 21 04:49:47 arch systemd[1]: Finished Apply Kernel Variables.
May 21 04:49:53 arch mtp-probe[366]: checking bus 1, device 3: "/sys/devices/pci0000:00/0000:00:1d.0/usb1/1-2"
May 21 04:49:47 arch systemd[1]: Starting CLI Netfilter Manager...
May 21 04:49:53 arch mtp-probe[366]: bus: 1, device: 3 was not an MTP device
May 21 04:49:47 arch systemd[1]: Finished Load/Save OS Random Seed.
May 21 04:49:48 arch systemd[1]: Finished Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
May 21 04:49:48 arch systemd[1]: Finished Create Static Device Nodes in /dev gracefully.
May 21 04:49:48 arch systemd[1]: Create System Users was skipped because no trigger condition checks were met.
May 21 04:49:48 arch systemd[1]: Starting Create Static Device Nodes in /dev...
May 21 04:49:48 arch systemd[1]: Finished Create Static Device Nodes in /dev.
May 21 04:49:48 arch systemd[1]: Reached target Preparation for Local File Systems.
May 21 04:49:48 arch systemd[1]: Virtual Machine and Container Storage (Compatibility) was skipped because of an unmet condition check (ConditionPathExists=/var/lib/machines.raw).
May 21 04:49:48 arch systemd[1]: Starting Rule-based Manager for Device Events and Files...
May 21 04:49:48 arch systemd-udevd[284]: Using default interface naming scheme 'v255'.
May 21 04:49:50 arch systemd[1]: Finished CLI Netfilter Manager.
May 21 04:49:51 arch systemd[1]: Started Rule-based Manager for Device Events and Files.
May 21 04:49:51 arch systemd[1]: Found device /dev/zram0.
May 21 04:49:51 arch systemd[1]: Starting Create swap on /dev/zram0...
May 21 04:49:51 arch systemd-makefs[358]: /dev/zram0 successfully formatted as swap (label "zram0", uuid 80365150-329a-45b9-9ff5-411350436d61)
May 21 04:49:51 arch systemd[1]: Finished Create swap on /dev/zram0.
May 21 04:49:51 arch systemd[1]: Activating swap Compressed Swap on /dev/zram0...
May 21 04:49:52 arch systemd[1]: Activated swap Compressed Swap on /dev/zram0.
May 21 04:49:53 arch systemd[1]: Starting Virtual Console Setup...
May 21 04:49:54 arch systemd[1]: systemd-vconsole-setup.service: Deactivated successfully.
May 21 04:49:54 arch systemd[1]: Stopped Virtual Console Setup.
May 21 04:49:54 arch systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
May 21 04:49:54 arch systemd[1]: Starting Virtual Console Setup...
May 21 04:49:55 arch (udev-worker)[351]: cfg80211: Process '/usr/bin/set-wireless-regdom' failed with exit code 1.
May 21 04:49:55 arch systemd[1]: Found device ST500DM002-1BD142 6.
May 21 04:49:55 arch systemd[1]: Activating swap /dev/disk/by-uuid/8674be30-c4fc-46a3-b83f-77e5c6188eaa...
May 21 04:49:55 arch systemd[1]: Activated swap /dev/disk/by-uuid/8674be30-c4fc-46a3-b83f-77e5c6188eaa.
May 21 04:49:55 arch systemd[1]: Reached target Swaps.
May 21 04:49:55 arch systemd[1]: Mounting Temporary Directory /tmp...
May 21 04:49:55 arch systemd[1]: Mounted Temporary Directory /tmp.
May 21 04:49:55 arch systemd[1]: Reached target Local File Systems.
May 21 04:49:56 arch systemd[1]: Listening on System Extension Image Management (Varlink).
May 21 04:49:56 arch systemd[1]: Rebuild Dynamic Linker Cache was skipped because no trigger condition checks were met.
May 21 04:49:56 arch systemd[1]: Starting Set Up Additional Binary Formats...
May 21 04:49:56 arch systemd[1]: Update Boot Loader Random Seed was skipped because no trigger condition checks were met.
May 21 04:49:56 arch systemd[1]: Finished Virtual Console Setup.
May 21 04:49:56 arch systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 400 (systemd-binfmt)
May 21 04:49:56 arch systemd[1]: Mounting Arbitrary Executable File Formats File System...
May 21 04:49:56 arch systemd[1]: Mounted Arbitrary Executable File Formats File System.
May 21 04:49:56 arch systemd[1]: Finished Set Up Additional Binary Formats.
May 21 04:49:56 arch systemd[1]: Starting Load/Save RF Kill Switch Status...
May 21 04:49:56 arch systemd[1]: Started Load/Save RF Kill Switch Status.
May 21 04:49:57 arch systemd[1]: Rebuild Dynamic Linker Cache was skipped because no trigger condition checks were met.
May 21 04:49:57 arch systemd[1]: Starting Load Kernel Module dm_mod...
May 21 04:49:57 arch systemd[1]: Starting Load Kernel Module loop...
May 21 04:49:57 arch systemd[1]: Update Boot Loader Random Seed was skipped because no trigger condition checks were met.
May 21 04:49:57 arch systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
May 21 04:49:57 arch systemd[1]: TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 21 04:49:57 arch systemd[1]: Create System Users was skipped because no trigger condition checks were met.
May 21 04:49:57 arch systemd[1]: TPM2 SRK Setup (Early) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 21 04:49:57 arch systemd[1]: TPM2 SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 21 04:49:57 arch systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
May 21 04:49:57 arch systemd[1]: Finished Load Kernel Module dm_mod.
May 21 04:49:57 arch systemd[1]: modprobe@loop.service: Deactivated successfully.
May 21 04:49:57 arch systemd[1]: Finished Load Kernel Module loop.
May 21 04:49:57 arch systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
May 21 04:49:57 arch systemd[1]: Finished Flush Journal to Persistent Storage.
May 21 04:49:58 arch systemd[1]: Starting Create Volatile Files and Directories...
May 21 04:49:58 arch systemd[1]: Finished Create Volatile Files and Directories.
May 21 04:49:58 arch systemd[1]: First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
May 21 04:49:58 arch systemd[1]: First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes).
May 21 04:49:58 arch systemd[1]: Rebuild Journal Catalog was skipped because of an unmet condition check (ConditionNeedsUpdate=/var).
May 21 04:49:58 arch systemd[1]: Commit a transient machine-id on disk was skipped because of an unmet condition check (ConditionPathIsMountPoint=/etc/machine-id).
May 21 04:49:58 arch systemd[1]: Starting Userspace Out-Of-Memory (OOM) Killer...
May 21 04:49:58 arch systemd[1]: Update is Completed was skipped because no trigger condition checks were met.
May 21 04:49:58 arch systemd[1]: Starting Record System Boot/Shutdown in UTMP...
May 21 04:49:58 arch systemd[1]: Finished Record System Boot/Shutdown in UTMP.
May 21 04:49:58 arch systemd[1]: Reached target System Initialization.
May 21 04:49:58 arch systemd[1]: Started Refresh existing PGP keys of archlinux-keyring regularly.
May 21 04:49:58 arch systemd[1]: Started Daily man-db regeneration.
May 21 04:49:58 arch systemd[1]: Started Daily verification of password and group files.
May 21 04:49:58 arch systemd[1]: Started Daily Cleanup of Temporary Directories.
May 21 04:49:58 arch systemd[1]: Reached target Timer Units.
May 21 04:49:58 arch systemd[1]: Listening on D-Bus System Message Bus Socket.
May 21 04:49:58 arch systemd[1]: Listening on GnuPG network certificate management daemon for /etc/pacman.d/gnupg.
May 21 04:49:58 arch systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers) for /etc/pacman.d/gnupg.
May 21 04:49:58 arch systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache (restricted) for /etc/pacman.d/gnupg.
May 21 04:49:58 arch systemd[1]: Listening on GnuPG cryptographic agent (ssh-agent emulation) for /etc/pacman.d/gnupg.
May 21 04:49:58 arch systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache for /etc/pacman.d/gnupg.
May 21 04:49:58 arch systemd[1]: Listening on GnuPG public key management service for /etc/pacman.d/gnupg.
May 21 04:49:58 arch systemd[1]: Reached target Socket Units.
May 21 04:49:58 arch systemd[1]: Starting D-Bus System Message Bus...
May 21 04:49:58 arch systemd[1]: TPM2 PCR Barrier (Initialization) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 21 04:49:58 arch systemd[1]: Started Userspace Out-Of-Memory (OOM) Killer.
May 21 04:49:58 arch systemd[1]: Started D-Bus System Message Bus.
May 21 04:49:58 arch systemd[1]: Reached target Basic System.
May 21 04:49:58 arch systemd[1]: Starting Network Manager...
May 21 04:49:58 arch systemd[1]: Starting Save/Restore Sound Card State...
May 21 04:49:58 arch systemd[1]: Manage Sound Card State (restore and store) was skipped because of an unmet condition check (ConditionPathExists=/etc/alsa/state-daemon.conf).
May 21 04:49:59 arch systemd[1]: Starting Initialize hardware monitoring sensors...
May 21 04:49:59 arch (modprobe)[431]: lm_sensors.service: Referenced but unset environment variable evaluates to an empty string: BUS_MODULES
May 21 04:49:59 arch dbus-broker-launch[427]: Ready
May 21 04:49:59 arch kernel: f71882fg: Found f71889fg chip at 0xa00, revision 21
May 21 04:49:59 arch kernel: f71882fg f71882fg.2560: Fan: 1 is in duty-cycle mode
May 21 04:49:59 arch kernel: f71882fg f71882fg.2560: Fan: 2 is in duty-cycle mode
May 21 04:49:59 arch kernel: f71882fg f71882fg.2560: Fan: 3 is in duty-cycle mode
May 21 04:49:59 arch kernel: f71882fg f71882fg.2560: hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().
May 21 04:49:59 arch systemd[1]: Starting User Login Management...
May 21 04:49:59 arch systemd[1]: TPM2 PCR Barrier (User) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 21 04:49:59 arch systemd[1]: Finished Save/Restore Sound Card State.
May 21 04:49:59 arch systemd[1]: Reached target Sound Card.
May 21 04:49:59 arch systemd-logind[432]: New seat seat0.
May 21 04:49:59 arch systemd[1]: Finished Initialize hardware monitoring sensors.
May 21 04:49:59 arch systemd-logind[432]: Watching system buttons on /dev/input/event1 (Power Button)
May 21 04:49:59 arch systemd-logind[432]: Watching system buttons on /dev/input/event0 (Power Button)
May 21 04:49:59 arch systemd-logind[432]: Watching system buttons on /dev/input/event3 (USB USB Keyboard)
May 21 04:49:59 arch systemd-logind[432]: Watching system buttons on /dev/input/event4 (USB USB Keyboard Consumer Control)
May 21 04:49:59 arch systemd-logind[432]: Watching system buttons on /dev/input/event5 (USB USB Keyboard System Control)
May 21 04:49:59 arch systemd[1]: Started User Login Management.
May 21 04:49:59 arch NetworkManager[429]: <info>  [1716277799.5817] NetworkManager (version 1.46.0-2) is starting... (boot:cb10a694-0401-460b-8ded-611bd8cba671)
May 21 04:49:59 arch NetworkManager[429]: <info>  [1716277799.5818] Read config: /etc/NetworkManager/NetworkManager.conf (lib: 20-connectivity.conf)
May 21 04:49:59 arch NetworkManager[429]: <info>  [1716277799.6342] manager[0x5e5605f98d40]: monitoring kernel firmware directory '/lib/firmware'.
May 21 04:49:59 arch systemd[1]: Starting Hostname Service...
May 21 04:49:59 arch systemd[1]: Started Hostname Service.
May 21 04:49:59 arch NetworkManager[429]: <info>  [1716277799.7381] hostname: hostname: using hostnamed
May 21 04:49:59 arch NetworkManager[429]: <info>  [1716277799.7382] hostname: static hostname changed from (none) to "arch"
May 21 04:49:59 arch NetworkManager[429]: <info>  [1716277799.7391] dns-mgr: init: dns=default,systemd-resolved rc-manager=symlink
May 21 04:49:59 arch NetworkManager[429]: <info>  [1716277799.7404] rfkill0: found Wi-Fi radio killswitch (at /sys/devices/pci0000:00/0000:00:1d.7/usb2/2-7/2-7:1.0/ieee80211/phy0/rfkill0) (driver ath9k_htc)
May 21 04:49:59 arch NetworkManager[429]: <info>  [1716277799.7406] manager[0x5e5605f98d40]: rfkill: Wi-Fi hardware radio set enabled
May 21 04:49:59 arch NetworkManager[429]: <info>  [1716277799.7406] manager[0x5e5605f98d40]: rfkill: WWAN hardware radio set enabled
May 21 04:49:59 arch NetworkManager[429]: <info>  [1716277799.9504] Loaded device plugin: NMBluezManager (/usr/lib/NetworkManager/1.46.0-2/libnm-device-plugin-bluetooth.so)
May 21 04:49:59 arch NetworkManager[429]: <info>  [1716277799.9720] Loaded device plugin: NMAtmManager (/usr/lib/NetworkManager/1.46.0-2/libnm-device-plugin-adsl.so)
May 21 04:49:59 arch NetworkManager[429]: <info>  [1716277799.9737] Loaded device plugin: NMWwanFactory (/usr/lib/NetworkManager/1.46.0-2/libnm-device-plugin-wwan.so)
May 21 04:50:00 arch NetworkManager[429]: <info>  [1716277800.3664] Loaded device plugin: NMTeamFactory (/usr/lib/NetworkManager/1.46.0-2/libnm-device-plugin-team.so)
May 21 04:50:00 arch NetworkManager[429]: <info>  [1716277800.3966] Loaded device plugin: NMWifiFactory (/usr/lib/NetworkManager/1.46.0-2/libnm-device-plugin-wifi.so)
May 21 04:50:00 arch NetworkManager[429]: <info>  [1716277800.4062] Loaded device plugin: NMOvsFactory (/usr/lib/NetworkManager/1.46.0-2/libnm-device-plugin-ovs.so)
May 21 04:50:00 arch NetworkManager[429]: <info>  [1716277800.4067] manager: rfkill: Wi-Fi enabled by radio killswitch; enabled by state file
May 21 04:50:00 arch NetworkManager[429]: <info>  [1716277800.4068] manager: rfkill: WWAN enabled by radio killswitch; enabled by state file
May 21 04:50:00 arch NetworkManager[429]: <info>  [1716277800.4069] manager: Networking is enabled by state file
May 21 04:50:00 arch NetworkManager[429]: <info>  [1716277800.4325] settings: Loaded settings plugin: keyfile (internal)
May 21 04:50:00 arch systemd[1]: Starting Network Manager Script Dispatcher Service...
May 21 04:50:00 arch NetworkManager[429]: <info>  [1716277800.5184] dhcp: init: Using DHCP client 'internal'
May 21 04:50:00 arch NetworkManager[429]: <info>  [1716277800.5466] manager: (lo): new Loopback device (/org/freedesktop/NetworkManager/Devices/1)
May 21 04:50:00 arch NetworkManager[429]: <info>  [1716277800.5488] device (lo): state change: unmanaged -> unavailable (reason 'connection-assumed', sys-iface-state: 'external')
May 21 04:50:00 arch NetworkManager[429]: <info>  [1716277800.5977] device (lo): state change: unavailable -> disconnected (reason 'connection-assumed', sys-iface-state: 'external')
May 21 04:50:00 arch NetworkManager[429]: <info>  [1716277800.5989] device (lo): Activation: starting connection 'lo' (dd552743-3259-4955-964a-c22ede3e074d)
May 21 04:50:00 arch NetworkManager[429]: <info>  [1716277800.6004] manager: (enp2s0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/2)
May 21 04:50:00 arch NetworkManager[429]: <info>  [1716277800.6020] settings: (enp2s0): created default wired connection 'Wired connection 1'
May 21 04:50:00 arch NetworkManager[429]: <info>  [1716277800.6021] device (enp2s0): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
May 21 04:50:00 arch NetworkManager[429]: <info>  [1716277800.6205] device (wlp0s29f7u7): driver supports Access Point (AP) mode
May 21 04:50:00 arch NetworkManager[429]: <info>  [1716277800.6214] manager: (wlp0s29f7u7): new 802.11 Wi-Fi device (/org/freedesktop/NetworkManager/Devices/3)
May 21 04:50:00 arch NetworkManager[429]: <info>  [1716277800.6217] device (wlp0s29f7u7): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
May 21 04:50:00 arch systemd[1]: Started Network Manager Script Dispatcher Service.
May 21 04:50:00 arch NetworkManager[429]: <info>  [1716277800.8720] device (wlp0s29f7u7): set-hw-addr: set MAC address to 82:BD:23:22:1E:1B (scanning)
May 21 04:50:01 arch NetworkManager[429]: <info>  [1716277801.0142] bus-manager: acquired D-Bus service "org.freedesktop.NetworkManager"
May 21 04:50:01 arch systemd[1]: Started Network Manager.
May 21 04:50:01 arch NetworkManager[429]: <info>  [1716277801.0520] ovsdb: disconnected from ovsdb
May 21 04:50:01 arch NetworkManager[429]: <info>  [1716277801.0523] device (lo): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'external')
May 21 04:50:01 arch NetworkManager[429]: <info>  [1716277801.0525] device (lo): state change: prepare -> config (reason 'none', sys-iface-state: 'external')
May 21 04:50:01 arch NetworkManager[429]: <info>  [1716277801.0527] device (lo): state change: config -> ip-config (reason 'none', sys-iface-state: 'external')
May 21 04:50:01 arch NetworkManager[429]: <info>  [1716277801.0533] device (lo): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'external')
May 21 04:50:01 arch systemd[1]: Starting WPA supplicant...
May 21 04:50:01 arch NetworkManager[429]: <info>  [1716277801.0738] device (lo): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'external')
May 21 04:50:01 arch NetworkManager[429]: <info>  [1716277801.0740] device (lo): state change: secondaries -> activated (reason 'none', sys-iface-state: 'external')
May 21 04:50:01 arch NetworkManager[429]: <info>  [1716277801.0747] device (lo): Activation: successful, device activated.
May 21 04:50:01 arch systemd[1]: Started WPA supplicant.
May 21 04:50:01 arch wpa_supplicant[455]: Successfully initialized wpa_supplicant
May 21 04:50:01 arch systemd[1]: Reached target Network.
May 21 04:50:01 arch systemd[1]: Starting Network Time Service...
May 21 04:50:01 arch systemd[1]: Starting Permit User Sessions...
May 21 04:50:01 arch systemd[1]: Finished Permit User Sessions.
May 21 04:50:01 arch systemd[1]: Started Simple Desktop Display Manager.
May 21 04:50:01 arch systemd[1]: systemd-rfkill.service: Deactivated successfully.
May 21 04:50:02 arch ntpd[456]: ntpd 4.2.8p17@1.4004-o Tue Jun  6 14:05:47 UTC 2023 (1): Starting
May 21 04:50:02 arch ntpd[456]: Command line: /usr/bin/ntpd -g -u ntp:ntp
May 21 04:50:02 arch ntpd[456]: ----------------------------------------------------
May 21 04:50:02 arch ntpd[456]: ntp-4 is maintained by Network Time Foundation,
May 21 04:50:02 arch ntpd[456]: Inc. (NTF), a non-profit 501(c)(3) public-benefit
May 21 04:50:02 arch ntpd[456]: corporation.  Support and training for ntp-4 are
May 21 04:50:02 arch ntpd[456]: available at https://www.nwtime.org/support
May 21 04:50:02 arch ntpd[456]: ----------------------------------------------------
May 21 04:50:02 arch ntpd[456]: DEBUG behavior is enabled - a violation of any
May 21 04:50:02 arch ntpd[456]: diagnostic assertion will cause ntpd to abort
May 21 04:50:02 arch NetworkManager[429]: <info>  [1716277802.0850] device (wlp0s29f7u7): supplicant interface state: internal-starting -> disconnected
May 21 04:50:02 arch NetworkManager[429]: <info>  [1716277802.0855] Wi-Fi P2P device controlled by interface wlp0s29f7u7 created
May 21 04:50:02 arch NetworkManager[429]: <info>  [1716277802.0859] manager: (p2p-dev-wlp0s29f7u7): new 802.11 Wi-Fi P2P device (/org/freedesktop/NetworkManager/Devices/4)
May 21 04:50:02 arch NetworkManager[429]: <info>  [1716277802.0862] device (p2p-dev-wlp0s29f7u7): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
May 21 04:50:02 arch NetworkManager[429]: <info>  [1716277802.0869] device (wlp0s29f7u7): state change: unavailable -> disconnected (reason 'supplicant-available', sys-iface-state: 'managed')
May 21 04:50:02 arch NetworkManager[429]: <info>  [1716277802.0875] device (p2p-dev-wlp0s29f7u7): state change: unavailable -> disconnected (reason 'none', sys-iface-state: 'managed')
May 21 04:50:02 arch ntpd[462]: proto: precision = 0.126 usec (-23)
May 21 04:50:02 arch ntpd[462]: basedate set to 2023-05-25
May 21 04:50:02 arch ntpd[462]: gps base set to 2023-05-28 (week 2264)
May 21 04:50:02 arch ntpd[462]: initial drift restored to -49.722000
May 21 04:50:02 arch ntpd[462]: Listen and drop on 0 v6wildcard [::]:123
May 21 04:50:02 arch ntpd[462]: Listen and drop on 1 v4wildcard 0.0.0.0:123
May 21 04:50:02 arch ntpd[462]: Listen normally on 2 lo 127.0.0.1:123
May 21 04:50:02 arch ntpd[462]: Listen normally on 3 lo [::1]:123
May 21 04:50:02 arch ntpd[462]: Listening on routing socket on fd #20 for interface updates
May 21 04:50:02 arch ntpd[462]: kernel reports TIME_ERROR: 0x41: Clock Unsynchronized
May 21 04:50:02 arch ntpd[462]: kernel reports TIME_ERROR: 0x41: Clock Unsynchronized
May 21 04:50:02 arch systemd[1]: Started Network Time Service.
May 21 04:50:02 arch systemd[1]: Reached target Multi-User System.
May 21 04:50:02 arch systemd[1]: Reached target Graphical Interface.
May 21 04:50:02 arch systemd[1]: Startup finished in 4.760s (kernel) + 24.688s (userspace) = 29.448s.
May 21 04:50:03 arch sddm[459]: Initializing...
May 21 04:50:03 arch sddm[459]: Starting...
May 21 04:50:03 arch sddm[459]: Logind interface found
May 21 04:50:03 arch sddm[459]: Adding new display...
May 21 04:50:03 arch sddm[459]: Loaded empty theme configuration
May 21 04:50:03 arch sddm[459]: Xauthority path: "/run/sddm/xauth_sMHwHw"
May 21 04:50:03 arch sddm[459]: Using VT 2
May 21 04:50:03 arch sddm[459]: Display server starting...
May 21 04:50:03 arch sddm[459]: Writing cookie to "/run/sddm/xauth_sMHwHw"
May 21 04:50:03 arch sddm[459]: Running: /usr/bin/X -nolisten tcp -background none -seat seat0 vt2 -auth /run/sddm/xauth_sMHwHw -noreset -displayfd 16
May 21 04:50:03 arch NetworkManager[429]: <info>  [1716277803.6032] policy: auto-activating connection 'JAVIER' (e46b91b4-57df-4d96-b80c-237284377815)
May 21 04:50:03 arch NetworkManager[429]: <info>  [1716277803.6039] device (wlp0s29f7u7): Activation: starting connection 'JAVIER' (e46b91b4-57df-4d96-b80c-237284377815)
May 21 04:50:03 arch NetworkManager[429]: <info>  [1716277803.6041] device (wlp0s29f7u7): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
May 21 04:50:03 arch NetworkManager[429]: <info>  [1716277803.6044] manager: NetworkManager state is now CONNECTING
May 21 04:50:03 arch NetworkManager[429]: <info>  [1716277803.6528] device (wlp0s29f7u7): set-hw-addr: reset MAC address to F8:D1:11:0B:01:19 (preserve)
May 21 04:50:03 arch NetworkManager[429]: <info>  [1716277803.7943] device (wlp0s29f7u7): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
May 21 04:50:03 arch NetworkManager[429]: <info>  [1716277803.7947] device (wlp0s29f7u7): Activation: (wifi) access point 'JAVIER' has security, but secrets are required.
May 21 04:50:03 arch NetworkManager[429]: <info>  [1716277803.7947] device (wlp0s29f7u7): state change: config -> need-auth (reason 'none', sys-iface-state: 'managed')
May 21 04:50:03 arch NetworkManager[429]: <info>  [1716277803.7950] sup-iface[3030bbbf22eb754e,0,wlp0s29f7u7]: wps: type pbc start...
May 21 04:50:03 arch NetworkManager[429]: <info>  [1716277803.7953] device (wlp0s29f7u7): supplicant interface state: disconnected -> interface_disabled
May 21 04:50:03 arch NetworkManager[429]: <info>  [1716277803.7953] device (p2p-dev-wlp0s29f7u7): supplicant management interface state: disconnected -> interface_disabled
May 21 04:50:03 arch NetworkManager[429]: <info>  [1716277803.7965] device (wlp0s29f7u7): state change: need-auth -> prepare (reason 'none', sys-iface-state: 'managed')
May 21 04:50:03 arch NetworkManager[429]: <info>  [1716277803.7971] device (wlp0s29f7u7): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
May 21 04:50:03 arch NetworkManager[429]: <info>  [1716277803.7974] device (wlp0s29f7u7): Activation: (wifi) connection 'JAVIER' has security, and secrets exist.  No new secrets needed.
May 21 04:50:03 arch NetworkManager[429]: <info>  [1716277803.7975] Config: added 'ssid' value 'JAVIER'
May 21 04:50:03 arch NetworkManager[429]: <info>  [1716277803.7975] Config: added 'scan_ssid' value '1'
May 21 04:50:03 arch NetworkManager[429]: <info>  [1716277803.7975] Config: added 'bgscan' value 'simple:30:-70:86400'
May 21 04:50:03 arch NetworkManager[429]: <info>  [1716277803.7976] Config: added 'key_mgmt' value 'WPA-PSK WPA-PSK-SHA256 FT-PSK SAE FT-SAE'
May 21 04:50:03 arch NetworkManager[429]: <info>  [1716277803.7976] Config: added 'auth_alg' value 'OPEN'
May 21 04:50:03 arch NetworkManager[429]: <info>  [1716277803.7976] Config: added 'psk' value '<hidden>'
May 21 04:50:03 arch wpa_supplicant[455]: wlp0s29f7u7: WPS-PBC-ACTIVE
May 21 04:50:03 arch NetworkManager[429]: <info>  [1716277803.7979] device (wlp0s29f7u7): supplicant interface state: interface_disabled -> inactive
May 21 04:50:03 arch wpa_supplicant[455]: wlp0s29f7u7: WPS-CANCEL
May 21 04:50:03 arch NetworkManager[429]: <info>  [1716277803.7979] device (p2p-dev-wlp0s29f7u7): supplicant management interface state: interface_disabled -> inactive
May 21 04:50:03 arch NetworkManager[429]: <info>  [1716277803.9784] device (wlp0s29f7u7): supplicant interface state: inactive -> scanning
May 21 04:50:03 arch NetworkManager[429]: <info>  [1716277803.9785] device (p2p-dev-wlp0s29f7u7): supplicant management interface state: inactive -> scanning
May 21 04:50:04 arch wpa_supplicant[455]: wlp0s29f7u7: SME: Trying to authenticate with 60:d7:55:5b:75:5c (SSID='JAVIER' freq=2422 MHz)
May 21 04:50:04 arch kernel: wlp0s29f7u7: authenticate with 60:d7:55:5b:75:5c (local address=f8:d1:11:0b:01:19)
May 21 04:50:04 arch kernel: wlp0s29f7u7: send auth to 60:d7:55:5b:75:5c (try 1/3)
May 21 04:50:04 arch NetworkManager[429]: <info>  [1716277804.3049] device (wlp0s29f7u7): supplicant interface state: scanning -> authenticating
May 21 04:50:04 arch NetworkManager[429]: <info>  [1716277804.3051] device (p2p-dev-wlp0s29f7u7): supplicant management interface state: scanning -> authenticating
May 21 04:50:04 arch kernel: wlp0s29f7u7: authenticated
May 21 04:50:04 arch wpa_supplicant[455]: wlp0s29f7u7: Trying to associate with 60:d7:55:5b:75:5c (SSID='JAVIER' freq=2422 MHz)
May 21 04:50:04 arch NetworkManager[429]: <info>  [1716277804.3081] device (wlp0s29f7u7): supplicant interface state: authenticating -> associating
May 21 04:50:04 arch NetworkManager[429]: <info>  [1716277804.3081] device (p2p-dev-wlp0s29f7u7): supplicant management interface state: authenticating -> associating
May 21 04:50:04 arch kernel: wlp0s29f7u7: associate with 60:d7:55:5b:75:5c (try 1/3)
May 21 04:50:04 arch kernel: wlp0s29f7u7: RX AssocResp from 60:d7:55:5b:75:5c (capab=0x1431 status=0 aid=58)
May 21 04:50:04 arch wpa_supplicant[455]: wlp0s29f7u7: Associated with 60:d7:55:5b:75:5c
May 21 04:50:04 arch wpa_supplicant[455]: wlp0s29f7u7: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
May 21 04:50:04 arch wpa_supplicant[455]: wlp0s29f7u7: CTRL-EVENT-REGDOM-CHANGE init=COUNTRY_IE type=COUNTRY alpha2=AR
May 21 04:50:04 arch kernel: wlp0s29f7u7: associated
May 21 04:50:04 arch NetworkManager[429]: <info>  [1716277804.3341] device (wlp0s29f7u7): supplicant interface state: associating -> 4way_handshake
May 21 04:50:04 arch NetworkManager[429]: <info>  [1716277804.3343] device (p2p-dev-wlp0s29f7u7): supplicant management interface state: associating -> 4way_handshake
May 21 04:50:04 arch kernel: wlp0s29f7u7: Limiting TX power to 30 (30 - 0) dBm as advertised by 60:d7:55:5b:75:5c
May 21 04:50:04 arch wpa_supplicant[455]: wlp0s29f7u7: WPA: Key negotiation completed with 60:d7:55:5b:75:5c [PTK=CCMP GTK=TKIP]
May 21 04:50:04 arch wpa_supplicant[455]: wlp0s29f7u7: CTRL-EVENT-CONNECTED - Connection to 60:d7:55:5b:75:5c completed [id=1 id_str=]
May 21 04:50:04 arch NetworkManager[429]: <info>  [1716277804.4244] device (wlp0s29f7u7): supplicant interface state: 4way_handshake -> completed
May 21 04:50:04 arch NetworkManager[429]: <info>  [1716277804.4245] device (wlp0s29f7u7): Activation: (wifi) Stage 2 of 5 (Device Configure) successful. Connected to wireless network "JAVIER"
May 21 04:50:04 arch NetworkManager[429]: <info>  [1716277804.4245] device (p2p-dev-wlp0s29f7u7): supplicant management interface state: 4way_handshake -> completed
May 21 04:50:04 arch NetworkManager[429]: <info>  [1716277804.4247] device (wlp0s29f7u7): state change: config -> ip-config (reason 'none', sys-iface-state: 'managed')
May 21 04:50:04 arch NetworkManager[429]: <info>  [1716277804.4253] dhcp4 (wlp0s29f7u7): activation: beginning transaction (timeout in 45 seconds)
May 21 04:50:04 arch NetworkManager[429]: <info>  [1716277804.4908] dhcp4 (wlp0s29f7u7): state changed new lease, address=192.168.100.2, acd pending
May 21 04:50:04 arch NetworkManager[429]: <info>  [1716277804.6235] dhcp4 (wlp0s29f7u7): state changed new lease, address=192.168.100.2
May 21 04:50:04 arch NetworkManager[429]: <info>  [1716277804.6241] policy: set 'JAVIER' (wlp0s29f7u7) as default for IPv4 routing and DNS
May 21 04:50:04 arch dbus-broker-launch[427]: Activation request for 'org.freedesktop.resolve1' failed: The systemd unit 'dbus-org.freedesktop.resolve1.service' could not be found.
May 21 04:50:04 arch wpa_supplicant[455]: wlp0s29f7u7: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-48 noise=9999 txrate=58500
May 21 04:50:04 arch NetworkManager[429]: <info>  [1716277804.8978] device (wlp0s29f7u7): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'managed')
May 21 04:50:04 arch NetworkManager[429]: <info>  [1716277804.9006] device (wlp0s29f7u7): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'managed')
May 21 04:50:04 arch NetworkManager[429]: <info>  [1716277804.9008] device (wlp0s29f7u7): state change: secondaries -> activated (reason 'none', sys-iface-state: 'managed')
May 21 04:50:04 arch NetworkManager[429]: <info>  [1716277804.9013] manager: NetworkManager state is now CONNECTED_SITE
May 21 04:50:04 arch NetworkManager[429]: <info>  [1716277804.9020] device (wlp0s29f7u7): Activation: successful, device activated.
May 21 04:50:05 arch NetworkManager[429]: <info>  [1716277805.5915] manager: NetworkManager state is now CONNECTED_GLOBAL
May 21 04:50:06 arch NetworkManager[429]: <info>  [1716277806.0698] dhcp6 (wlp0s29f7u7): activation: beginning transaction (timeout in 45 seconds)
May 21 04:50:06 arch NetworkManager[429]: <info>  [1716277806.0706] policy: set 'JAVIER' (wlp0s29f7u7) as default for IPv6 routing and DNS
May 21 04:50:06 arch NetworkManager[429]: <info>  [1716277806.6202] manager: startup complete
May 21 04:50:06 arch NetworkManager[429]: <info>  [1716277806.8735] dhcp6 (wlp0s29f7u7): state changed new lease
May 21 04:50:09 arch sddm[459]: Setting default cursor
May 21 04:50:09 arch sddm[459]: Running display setup script  "/usr/share/sddm/scripts/Xsetup"
May 21 04:50:09 arch sddm[459]: Display server started.
May 21 04:50:09 arch sddm[459]: Reading from "/usr/local/share/xsessions/i3.desktop"
May 21 04:50:09 arch sddm[459]: Reading from "/usr/share/xsessions/i3.desktop"
May 21 04:50:09 arch sddm[459]: Session "/usr/share/xsessions/i3.desktop" selected, command: "i3" for VT 2
May 21 04:50:09 arch sddm-helper[487]: [PAM] Starting...
May 21 04:50:09 arch sddm-helper[487]: [PAM] Authenticating...
May 21 04:50:09 arch sddm-helper[487]: [PAM] returning.
May 21 04:50:09 arch dbus-broker-launch[427]: Activation request for 'org.freedesktop.home1' failed: The systemd unit 'dbus-org.freedesktop.home1.service' could not be found.
May 21 04:50:09 arch sddm[459]: Authentication for user  "jec"  successful
May 21 04:50:09 arch sddm-helper[487]: pam_unix(sddm-autologin:session): session opened for user jec(uid=1000) by jec(uid=0)
May 21 04:50:09 arch systemd-logind[432]: New session 1 of user jec.
May 21 04:50:10 arch systemd[1]: Created slice User Slice of UID 1000.
May 21 04:50:10 arch systemd[1]: Starting User Runtime Directory /run/user/1000...
May 21 04:50:10 arch systemd[1]: Finished User Runtime Directory /run/user/1000.
May 21 04:50:10 arch systemd[1]: Starting User Manager for UID 1000...
May 21 04:50:10 arch ntpd[462]: Listen normally on 4 wlp0s29f7u7 192.168.100.2:123
May 21 04:50:10 arch ntpd[462]: Listen normally on 5 wlp0s29f7u7 [2803:9800:9010:b0fd:ad2b:e669:9412:80f3]:123
May 21 04:50:10 arch ntpd[462]: Listen normally on 6 wlp0s29f7u7 [fe80::4111:55ba:1cdb:69b3%3]:123
May 21 04:50:10 arch ntpd[462]: new interface(s) found: waking up resolver
May 21 04:50:10 arch (systemd)[492]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8002 service=[systemd-user] terminal=[] user=[jec] ruser=[<unknown>] rhost=[<unknown>]
May 21 04:50:10 arch (systemd)[492]: pam_unix(systemd-user:session): session opened for user jec(uid=1000) by jec(uid=0)
May 21 04:50:10 arch systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
May 21 04:50:10 arch systemd[492]: Queued start job for default target Main User Target.
May 21 04:50:13 arch systemd-journald[236]: /var/log/journal/02fd8092237446f4b17509aeb6349ba3/user-1000.journal: Journal file uses a different sequence number ID, rotating.
May 21 04:50:10 arch systemd[492]: Created slice User Application Slice.
May 21 04:50:10 arch systemd[492]: Reached target Paths.
May 21 04:50:10 arch systemd[492]: Reached target Timers.
May 21 04:50:10 arch systemd[492]: Starting D-Bus User Message Bus Socket...
May 21 04:50:13 arch dbus-broker-launch[514]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +31: Eavesdropping is deprecated and ignored
May 21 04:50:13 arch dbus-broker-launch[514]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +33: Eavesdropping is deprecated and ignored
May 21 04:50:10 arch systemd[492]: Listening on GnuPG network certificate management daemon.
May 21 04:50:10 arch systemd[492]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
May 21 04:50:10 arch systemd[492]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
May 21 04:50:10 arch systemd[492]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
May 21 04:50:10 arch systemd[492]: Listening on GnuPG cryptographic agent and passphrase cache.
May 21 04:50:10 arch systemd[492]: Listening on GnuPG public key management service.
May 21 04:50:10 arch systemd[492]: Listening on p11-kit server.
May 21 04:50:10 arch systemd[492]: Listening on PipeWire PulseAudio.
May 21 04:50:10 arch systemd[492]: Listening on PipeWire Multimedia System Sockets.
May 21 04:50:11 arch systemd[492]: Listening on D-Bus User Message Bus Socket.
May 21 04:50:11 arch systemd[492]: Reached target Sockets.
May 21 04:50:11 arch systemd[492]: Reached target Basic System.
May 21 04:50:11 arch systemd[1]: Started User Manager for UID 1000.
May 21 04:50:11 arch systemd[492]: Starting Update XDG user dir configuration...
May 21 04:50:11 arch systemd[1]: Started Session 1 of User jec.
May 21 04:50:11 arch sddm-helper[487]: Writing cookie to "/tmp/xauth_xcPStL"
May 21 04:50:11 arch sddm-helper[487]: Starting X11 session: "" "/usr/share/sddm/scripts/Xsession \"i3\""
May 21 04:50:11 arch sddm[459]: Session started true
May 21 04:50:11 arch systemd[492]: Finished Update XDG user dir configuration.
May 21 04:50:11 arch systemd[492]: Reached target Main User Target.
May 21 04:50:11 arch systemd[492]: Startup finished in 1.039s.
May 21 04:50:11 arch systemd[492]: Created slice User Core Session Slice.
May 21 04:50:11 arch systemd[492]: Starting D-Bus User Message Bus...
May 21 04:50:12 arch dbus-broker-launch[514]: Service file '/usr/share//dbus-1/services/org.knopwob.dunst.service' is not named after the D-Bus name 'org.freedesktop.Notifications'.
May 21 04:50:12 arch dbus-broker-launch[514]: Service file '/usr/share//dbus-1/services/org.xfce.Thunar.FileManager1.service' is not named after the D-Bus name 'org.freedesktop.FileManager1'.
May 21 04:50:12 arch systemd[492]: Started D-Bus User Message Bus.
May 21 04:50:12 arch dbus-broker-launch[514]: Ready
May 21 04:50:20 arch systemd[492]: Started PipeWire Multimedia Service.
May 21 04:50:20 arch systemd[492]: Started Multimedia Service Session Manager.
May 21 04:50:20 arch systemd[492]: Started PipeWire PulseAudio.
May 21 04:50:20 arch systemd[1]: Starting RealtimeKit Scheduling Policy Service...
May 21 04:50:20 arch systemd[1]: Started RealtimeKit Scheduling Policy Service.
May 21 04:50:20 arch rtkit-daemon[579]: Successfully called chroot.
May 21 04:50:20 arch rtkit-daemon[579]: Successfully dropped privileges.
May 21 04:50:20 arch rtkit-daemon[579]: Successfully limited resources.
May 21 04:50:20 arch rtkit-daemon[579]: Running.
May 21 04:50:20 arch rtkit-daemon[579]: Supervising 0 threads of 0 processes of 0 users.
May 21 04:50:20 arch rtkit-daemon[579]: Supervising 0 threads of 0 processes of 0 users.
May 21 04:50:20 arch rtkit-daemon[579]: Supervising 0 threads of 0 processes of 0 users.
May 21 04:50:20 arch rtkit-daemon[579]: Canary thread running.
May 21 04:50:20 arch rtkit-daemon[579]: Watchdog thread running.
May 21 04:50:20 arch rtkit-daemon[579]: Supervising 0 threads of 0 processes of 0 users.
May 21 04:50:20 arch rtkit-daemon[579]: Supervising 0 threads of 0 processes of 0 users.
May 21 04:50:20 arch rtkit-daemon[579]: Supervising 0 threads of 0 processes of 0 users.
May 21 04:50:20 arch rtkit-daemon[579]: Supervising 0 threads of 0 processes of 0 users.
May 21 04:50:20 arch rtkit-daemon[579]: Supervising 0 threads of 0 processes of 0 users.
May 21 04:50:20 arch rtkit-daemon[579]: Supervising 0 threads of 0 processes of 0 users.
May 21 04:50:20 arch systemd[1]: Starting Authorization Manager...
May 21 04:50:21 arch polkitd[583]: Started polkitd version 124
May 21 04:50:21 arch polkitd[583]: Loading rules from directory /etc/polkit-1/rules.d
May 21 04:50:21 arch polkitd[583]: Loading rules from directory /usr/share/polkit-1/rules.d
May 21 04:50:21 arch polkitd[583]: Finished loading, compiling and executing 5 rules
May 21 04:50:21 arch systemd[1]: Started Authorization Manager.
May 21 04:50:21 arch polkitd[583]: Acquired the name org.freedesktop.PolicyKit1 on the system bus
May 21 04:50:22 arch rtkit-daemon[579]: Successfully made thread 569 of process 569 owned by '1000' high priority at nice level -11.
May 21 04:50:22 arch rtkit-daemon[579]: Supervising 1 threads of 1 processes of 1 users.
May 21 04:50:22 arch rtkit-daemon[579]: Successfully made thread 570 of process 570 owned by '1000' high priority at nice level -11.
May 21 04:50:22 arch rtkit-daemon[579]: Supervising 2 threads of 2 processes of 1 users.
May 21 04:50:22 arch rtkit-daemon[579]: Successfully made thread 571 of process 571 owned by '1000' high priority at nice level -11.
May 21 04:50:22 arch rtkit-daemon[579]: Supervising 3 threads of 3 processes of 1 users.
May 21 04:50:22 arch rtkit-daemon[579]: Successfully made thread 584 of process 569 owned by '1000' RT at priority 20.
May 21 04:50:22 arch rtkit-daemon[579]: Supervising 4 threads of 3 processes of 1 users.
May 21 04:50:22 arch rtkit-daemon[579]: Successfully made thread 590 of process 571 owned by '1000' RT at priority 20.
May 21 04:50:22 arch rtkit-daemon[579]: Supervising 5 threads of 3 processes of 1 users.
May 21 04:50:27 arch systemd[492]: Starting Virtual filesystem service...
May 21 04:50:27 arch wireplumber[570]: Failed to get percentage from UPower: org.freedesktop.DBus.Error.NameHasNoOwner
May 21 04:50:27 arch wireplumber[570]: BlueZ system service is not available
May 21 04:50:28 arch systemd[492]: Started Virtual filesystem service.
May 21 04:50:29 arch wireplumber[570]: [0:00:55.984124494] [570] ERROR IPAModule ipa_module.cpp:172 Symbol ipaModuleInfo not found
May 21 04:50:29 arch wireplumber[570]: [0:00:55.984179781] [570] ERROR IPAModule ipa_module.cpp:292 v4l2-compat.so: IPA module has no valid info
May 21 04:50:29 arch wireplumber[570]: [0:00:55.984250645] [570]  INFO Camera camera_manager.cpp:284 libcamera v0.2.0
May 21 04:50:29 arch systemd[492]: Starting Accessibility services bus...
May 21 04:50:29 arch systemd[492]: Started Accessibility services bus.
May 21 04:50:29 arch at-spi-bus-launcher[718]: Policy to allow eavesdropping in /usr/share/defaults/at-spi2/accessibility.conf +15: Eavesdropping is deprecated and ignored
May 21 04:50:29 arch at-spi-bus-launcher[718]: Policy to allow eavesdropping in /usr/share/defaults/at-spi2/accessibility.conf +17: Eavesdropping is deprecated and ignored
May 21 04:50:29 arch dbus-broker-launch[718]: Ready
May 21 04:50:29 arch systemd[1]: systemd-hostnamed.service: Deactivated successfully.
May 21 04:50:30 arch systemd[492]: Created slice Slice /app/dbus-:1.14-org.a11y.atspi.Registry.
May 21 04:50:30 arch systemd[492]: Started dbus-:1.14-org.a11y.atspi.Registry@0.service.
May 21 04:50:31 arch at-spi2-registryd[736]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
May 21 04:50:31 arch polkitd[583]: Registered Authentication Agent for unix-session:1 (system bus name :1.22 [/usr/lib/xfce-polkit/xfce-polkit], object path /org/freedesktop/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8)
May 21 04:50:33 arch systemd[492]: Starting Portal service...
May 21 04:50:33 arch systemd[492]: Starting flatpak document portal service...
May 21 04:50:33 arch systemd[492]: Starting sandboxed app permission store...
May 21 04:50:33 arch systemd[492]: Started sandboxed app permission store.
May 21 04:50:33 arch systemd[492]: Started flatpak document portal service.
May 21 04:50:33 arch xdg-desktop-por[758]: Choosing gtk.portal for org.freedesktop.impl.portal.Lockdown as a last-resort fallback
May 21 04:50:33 arch xdg-desktop-por[758]: The preferred method to match portal implementations to desktop environments is to use the portals.conf(5) configuration file
May 21 04:50:33 arch systemd[492]: Starting Portal service (GTK/GNOME implementation)...
May 21 04:50:33 arch systemd[492]: Started Portal service (GTK/GNOME implementation).
May 21 04:50:33 arch rtkit-daemon[579]: Supervising 5 threads of 3 processes of 1 users.
May 21 04:50:33 arch rtkit-daemon[579]: Supervising 5 threads of 3 processes of 1 users.
May 21 04:50:33 arch rtkit-daemon[579]: Supervising 5 threads of 3 processes of 1 users.
May 21 04:50:33 arch xdg-desktop-por[758]: No skeleton to export
May 21 04:50:33 arch xdg-desktop-por[758]: Choosing gtk.portal for org.freedesktop.impl.portal.FileChooser as a last-resort fallback
May 21 04:50:33 arch xdg-desktop-por[758]: Choosing gtk.portal for org.freedesktop.impl.portal.AppChooser as a last-resort fallback
May 21 04:50:33 arch xdg-desktop-por[758]: Choosing gtk.portal for org.freedesktop.impl.portal.Print as a last-resort fallback
May 21 04:50:33 arch xdg-desktop-por[758]: Choosing gtk.portal for org.freedesktop.impl.portal.Notification as a last-resort fallback
May 21 04:50:33 arch xdg-desktop-por[758]: Choosing gtk.portal for org.freedesktop.impl.portal.Inhibit as a last-resort fallback
May 21 04:50:33 arch xdg-desktop-por[758]: Choosing gtk.portal for org.freedesktop.impl.portal.Access as a last-resort fallback
May 21 04:50:33 arch xdg-desktop-por[758]: Choosing gtk.portal for org.freedesktop.impl.portal.Account as a last-resort fallback
May 21 04:50:33 arch xdg-desktop-por[758]: Choosing gtk.portal for org.freedesktop.impl.portal.Email as a last-resort fallback
May 21 04:50:33 arch xdg-desktop-por[758]: Choosing gtk.portal for org.freedesktop.impl.portal.DynamicLauncher as a last-resort fallback
May 21 04:50:33 arch systemd[492]: Started Portal service.
May 21 04:50:34 arch rtkit-daemon[579]: Successfully made thread 790 of process 735 owned by '1000' RT at priority 20.
May 21 04:50:34 arch rtkit-daemon[579]: Supervising 6 threads of 4 processes of 1 users.
May 21 04:50:34 arch systemd[492]: Starting User preferences database...
May 21 04:50:34 arch systemd[492]: Started User preferences database.

Xorg.0.log:

[    30.622] (--) Log file renamed from "/var/log/Xorg.pid-466.log" to "/var/log/Xorg.0.log"
[    30.677] 
X.Org X Server 1.21.1.13
X Protocol Version 11, Revision 0
[    30.677] Current Operating System: Linux arch 6.9.1-arch1-1 #1 SMP PREEMPT_DYNAMIC Fri, 17 May 2024 16:56:38 +0000 x86_64
[    30.677] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=c88c5185-df9b-462e-8cea-9a0c7393ae50 rw sysrq_always_enabled=1 loglevel=7 rd.systemd.show_status=true initcall_blacklist=simpledrm_platform_driver_init drm.edid_firmware=edid/1280x1024.bin zswap.enabled=0
[    30.677]  
[    30.677] Current version of pixman: 0.43.4
[    30.677] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[    30.677] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    30.678] (==) Log file: "/var/log/Xorg.0.log", Time: Tue May 21 04:50:03 2024
[    30.769] (==) Using config directory: "/etc/X11/xorg.conf.d"
[    30.769] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[    30.831] (==) No Layout section.  Using the first Screen section.
[    30.831] (==) No screen section available. Using defaults.
[    30.831] (**) |-->Screen "Default Screen Section" (0)
[    30.831] (**) |   |-->Monitor "<default monitor>"
[    30.832] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[    30.832] (**) Allowing byte-swapped clients
[    30.832] (==) Automatically adding devices
[    30.832] (==) Automatically enabling devices
[    30.832] (==) Automatically adding GPU devices
[    30.832] (==) Automatically binding GPU devices
[    30.832] (==) Max clients allowed: 256, resource mask: 0x1fffff
[    30.832] (WW) The directory "/usr/share/fonts/misc" does not exist.
[    30.832] 	Entry deleted from font path.
[    30.883] (WW) The directory "/usr/share/fonts/OTF" does not exist.
[    30.883] 	Entry deleted from font path.
[    30.883] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[    30.883] 	Entry deleted from font path.
[    30.913] (==) FontPath set to:
	/usr/share/fonts/TTF,
	/usr/share/fonts/100dpi,
	/usr/share/fonts/75dpi
[    30.914] (==) ModulePath set to "/usr/lib/xorg/modules"
[    30.914] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[    30.914] (II) Module ABI versions:
[    30.914] 	X.Org ANSI C Emulation: 0.4
[    30.914] 	X.Org Video Driver: 25.2
[    30.914] 	X.Org XInput driver : 24.4
[    30.914] 	X.Org Server Extension : 10.0
[    30.914] (++) using VT number 2

[    30.914] (II) systemd-logind: logind integration requires -keeptty and -keeptty was not provided, disabling logind integration
[    30.915] (II) xfree86: Adding drm device (/dev/dri/card0)
[    30.915] (II) Platform probe for /sys/devices/pci0000:00/0000:00:02.0/drm/card0
[    30.927] (--) PCI:*(0@0:2:0) 8086:2e32:1462:7592 rev 3, Mem @ 0xfe400000/4194304, 0xd0000000/268435456, I/O @ 0x0000dc00/8, BIOS @ 0x????????/131072
[    30.927] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[    30.927] (II) LoadModule: "glx"
[    31.032] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[    31.194] (II) Module glx: vendor="X.Org Foundation"
[    31.194] 	compiled for 1.21.1.13, module version = 1.0.0
[    31.194] 	ABI class: X.Org Server Extension, version 10.0
[    31.194] (==) Matched intel as autoconfigured driver 0
[    31.194] (==) Matched modesetting as autoconfigured driver 1
[    31.194] (==) Matched fbdev as autoconfigured driver 2
[    31.194] (==) Matched vesa as autoconfigured driver 3
[    31.194] (==) Assigned the driver to the xf86ConfigLayout
[    31.194] (II) LoadModule: "intel"
[    31.235] (WW) Warning, couldn't open module intel
[    31.235] (EE) Failed to load module "intel" (module does not exist, 0)
[    31.235] (II) LoadModule: "modesetting"
[    31.235] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[    31.327] (II) Module modesetting: vendor="X.Org Foundation"
[    31.327] 	compiled for 1.21.1.13, module version = 1.21.1
[    31.327] 	Module class: X.Org Video Driver
[    31.327] 	ABI class: X.Org Video Driver, version 25.2
[    31.327] (II) LoadModule: "fbdev"
[    31.327] (WW) Warning, couldn't open module fbdev
[    31.327] (EE) Failed to load module "fbdev" (module does not exist, 0)
[    31.327] (II) LoadModule: "vesa"
[    31.327] (WW) Warning, couldn't open module vesa
[    31.327] (EE) Failed to load module "vesa" (module does not exist, 0)
[    31.327] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[    31.346] (II) modeset(0): using drv /dev/dri/card0
[    31.347] (II) modeset(0): Creating default Display subsection in Screen section
	"Default Screen Section" for depth/fbbpp 24/32
[    31.347] (==) modeset(0): Depth 24, (==) framebuffer bpp 32
[    31.347] (==) modeset(0): RGB weight 888
[    31.347] (==) modeset(0): Default visual is TrueColor
[    31.347] (II) Loading sub module "glamoregl"
[    31.347] (II) LoadModule: "glamoregl"
[    31.347] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[    31.442] (II) Module glamoregl: vendor="X.Org Foundation"
[    31.442] 	compiled for 1.21.1.13, module version = 1.0.1
[    31.442] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    34.143] (II) modeset(0): glamor X acceleration enabled on Mesa Intel(R) G41 (ELK)
[    34.143] (II) modeset(0): glamor initialized
[    34.143] (==) modeset(0): VariableRefresh: disabled
[    34.143] (==) modeset(0): AsyncFlipSecondaries: disabled
[    34.198] (II) modeset(0): Output VGA-1 using monitor section <default monitor>
[    34.222] (II) modeset(0): EDID for output VGA-1
[    34.222] (II) modeset(0): Manufacturer: SAM  Model: 107  Serial#: 1279406391
[    34.222] (II) modeset(0): Year: 2005  Week: 39
[    34.222] (II) modeset(0): EDID Version: 1.3
[    34.222] (II) modeset(0): Analog Display Input,  Input Voltage Level: 0.700/0.700 V
[    34.222] (II) modeset(0): Sync:  Separate
[    34.222] (II) modeset(0): Max Image Size [cm]: horiz.: 31  vert.: 23
[    34.222] (II) modeset(0): Gamma: 2.20
[    34.222] (II) modeset(0): DPMS capabilities: Off; RGB/Color Display
[    34.222] (II) modeset(0): Default color space is primary color space
[    34.222] (II) modeset(0): First detailed timing is preferred mode
[    34.222] (II) modeset(0): redX: 0.640 redY: 0.330   greenX: 0.300 greenY: 0.600
[    34.223] (II) modeset(0): blueX: 0.150 blueY: 0.060   whiteX: 0.312 whiteY: 0.329
[    34.223] (II) modeset(0): Supported established timings:
[    34.223] (II) modeset(0): 720x400@70Hz
[    34.223] (II) modeset(0): 640x480@60Hz
[    34.223] (II) modeset(0): 640x480@67Hz
[    34.223] (II) modeset(0): 640x480@72Hz
[    34.223] (II) modeset(0): 640x480@75Hz
[    34.223] (II) modeset(0): 800x600@56Hz
[    34.223] (II) modeset(0): 800x600@60Hz
[    34.223] (II) modeset(0): 800x600@72Hz
[    34.223] (II) modeset(0): 800x600@75Hz
[    34.223] (II) modeset(0): 832x624@75Hz
[    34.223] (II) modeset(0): 1024x768@60Hz
[    34.223] (II) modeset(0): 1024x768@70Hz
[    34.223] (II) modeset(0): 1024x768@75Hz
[    34.223] (II) modeset(0): 1152x864@75Hz
[    34.223] (II) modeset(0): Manufacturer's mask: 0
[    34.223] (II) modeset(0): Supported standard timings:
[    34.223] (II) modeset(0): #0: hsize: 1024  vsize 768  refresh: 85  vid: 22881
[    34.223] (II) modeset(0): #1: hsize: 800  vsize 600  refresh: 85  vid: 22853
[    34.223] (II) modeset(0): #2: hsize: 640  vsize 480  refresh: 85  vid: 22833
[    34.223] (II) modeset(0): #3: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
[    34.223] (II) modeset(0): #4: hsize: 1152  vsize 864  refresh: 75  vid: 20337
[    34.223] (II) modeset(0): Supported detailed timing:
[    34.223] (II) modeset(0): clock: 94.5 MHz   Image Size:  312 x 234 mm
[    34.223] (II) modeset(0): h_active: 1024  h_sync: 1072  h_sync_end 1168 h_blank_end 1376 h_border: 0
[    34.223] (II) modeset(0): v_active: 768  v_sync: 769  v_sync_end 772 v_blanking: 808 v_border: 0
[    34.223] (II) modeset(0): Ranges: V min: 50 V max: 160 Hz, H min: 30 H max: 71 kHz, PixClock max 115 MHz
[    34.223] (II) modeset(0): Monitor name: SyncMaster
[    34.223] (II) modeset(0): Serial No: HXAY952789
[    34.223] (II) modeset(0): EDID (in hex):
[    34.223] (II) modeset(0): 	00ffffffffffff004c2d07013731424c
[    34.223] (II) modeset(0): 	270f0103681f17782eee91a3544c9926
[    34.223] (II) modeset(0): 	0f5054bfee806159455931598180714f
[    34.223] (II) modeset(0): 	010101010101ea240060410028303060
[    34.223] (II) modeset(0): 	130038ea1000001e000000fd0032a01e
[    34.223] (II) modeset(0): 	470b000a202020202020000000fc0053
[    34.223] (II) modeset(0): 	796e634d61737465720a2020000000ff
[    34.223] (II) modeset(0): 	00485841593935323738390a202000ea
[    34.223] (II) modeset(0): Printing probed modes for output VGA-1
[    34.223] (II) modeset(0): Modeline "1024x768"x85.0   94.50  1024 1072 1168 1376  768 769 772 808 +hsync +vsync (68.7 kHz eP)
[    34.223] (II) modeset(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[    34.223] (II) modeset(0): Modeline "1152x864"x75.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[    34.223] (II) modeset(0): Modeline "1024x768"x75.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
[    34.223] (II) modeset(0): Modeline "1024x768"x70.1   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[    34.223] (II) modeset(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[    34.223] (II) modeset(0): Modeline "832x624"x74.6   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
[    34.223] (II) modeset(0): Modeline "800x600"x85.1   56.25  800 832 896 1048  600 601 604 631 +hsync +vsync (53.7 kHz e)
[    34.223] (II) modeset(0): Modeline "800x600"x72.2   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
[    34.223] (II) modeset(0): Modeline "800x600"x75.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[    34.223] (II) modeset(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[    34.223] (II) modeset(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[    34.223] (II) modeset(0): Modeline "640x480"x85.0   36.00  640 696 752 832  480 481 484 509 -hsync -vsync (43.3 kHz e)
[    34.223] (II) modeset(0): Modeline "640x480"x75.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[    34.223] (II) modeset(0): Modeline "640x480"x72.8   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz e)
[    34.223] (II) modeset(0): Modeline "640x480"x66.7   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
[    34.223] (II) modeset(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    34.223] (II) modeset(0): Modeline "720x400"x70.1   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[    34.223] (II) modeset(0): Output VGA-1 connected
[    34.223] (II) modeset(0): Using exact sizes for initial modes
[    34.223] (II) modeset(0): Output VGA-1 using initial mode 1024x768 +0+0
[    34.223] (==) modeset(0): Using gamma correction (1.0, 1.0, 1.0)
[    34.223] (==) modeset(0): DPI set to (96, 96)
[    34.223] (II) Loading sub module "fb"
[    34.223] (II) LoadModule: "fb"
[    34.223] (II) Module "fb" already built-in
[    34.951] (==) modeset(0): Backing store enabled
[    34.951] (==) modeset(0): Silken mouse enabled
[    34.962] (II) modeset(0): Initializing kms color map for depth 24, 8 bpc.
[    34.962] (==) modeset(0): DPMS enabled
[    34.962] (II) modeset(0): [DRI2] Setup complete
[    34.962] (II) modeset(0): [DRI2]   DRI driver: crocus
[    34.962] (II) modeset(0): [DRI2]   VDPAU driver: va_gl
[    34.962] (II) Initializing extension Generic Event Extension
[    34.962] (II) Initializing extension SHAPE
[    34.963] (II) Initializing extension MIT-SHM
[    34.963] (II) Initializing extension XInputExtension
[    34.963] (II) Initializing extension XTEST
[    34.964] (II) Initializing extension BIG-REQUESTS
[    34.964] (II) Initializing extension SYNC
[    34.964] (II) Initializing extension XKEYBOARD
[    34.964] (II) Initializing extension XC-MISC
[    34.965] (II) Initializing extension SECURITY
[    34.965] (II) Initializing extension XFIXES
[    34.965] (II) Initializing extension RENDER
[    34.965] (II) Initializing extension RANDR
[    34.966] (II) Initializing extension COMPOSITE
[    34.966] (II) Initializing extension DAMAGE
[    34.966] (II) Initializing extension MIT-SCREEN-SAVER
[    34.966] (II) Initializing extension DOUBLE-BUFFER
[    34.967] (II) Initializing extension RECORD
[    34.967] (II) Initializing extension DPMS
[    34.967] (II) Initializing extension Present
[    34.967] (II) Initializing extension DRI3
[    34.968] (II) Initializing extension X-Resource
[    34.968] (II) Initializing extension XVideo
[    34.968] (II) Initializing extension XVideo-MotionCompensation
[    34.968] (II) Initializing extension GLX
[    34.977] (II) AIGLX: Loaded and initialized crocus
[    34.977] (II) GLX: Initialized DRI2 GL provider for screen 0
[    34.977] (II) Initializing extension XFree86-VidModeExtension
[    34.978] (II) Initializing extension XFree86-DGA
[    34.978] (II) Initializing extension XFree86-DRI
[    34.978] (II) Initializing extension DRI2
[    35.001] (II) modeset(0): Damage tracking initialized
[    35.001] (II) modeset(0): Setting screen physical size to 325 x 245
[    35.594] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[    35.594] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[    35.594] (**) Power Button: Applying InputClass "system-keyboard"
[    35.594] (II) LoadModule: "libinput"
[    35.595] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[    35.659] (II) Module libinput: vendor="X.Org Foundation"
[    35.659] 	compiled for 1.21.1.8, module version = 1.4.0
[    35.659] 	Module class: X.Org XInput Driver
[    35.659] 	ABI class: X.Org XInput driver, version 24.4
[    35.659] (II) Using input driver 'libinput' for 'Power Button'
[    35.659] (**) Power Button: always reports core events
[    35.659] (**) Option "Device" "/dev/input/event1"
[    35.719] (II) event1  - Power Button: is tagged by udev as: Keyboard
[    35.720] (II) event1  - Power Button: device is a keyboard
[    35.720] (II) event1  - Power Button: device removed
[    35.746] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1"
[    35.746] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[    35.746] (**) Option "xkb_layout" "es"
[    35.785] (II) event1  - Power Button: is tagged by udev as: Keyboard
[    35.785] (II) event1  - Power Button: device is a keyboard
[    35.786] (II) config/udev: Adding input device Power Button (/dev/input/event0)
[    35.786] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[    35.786] (**) Power Button: Applying InputClass "system-keyboard"
[    35.786] (II) Using input driver 'libinput' for 'Power Button'
[    35.786] (**) Power Button: always reports core events
[    35.786] (**) Option "Device" "/dev/input/event0"
[    35.787] (II) event0  - Power Button: is tagged by udev as: Keyboard
[    35.788] (II) event0  - Power Button: device is a keyboard
[    35.788] (II) event0  - Power Button: device removed
[    35.806] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0"
[    35.806] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
[    35.806] (**) Option "xkb_layout" "es"
[    35.808] (II) event0  - Power Button: is tagged by udev as: Keyboard
[    35.808] (II) event0  - Power Button: device is a keyboard
[    35.809] (II) config/udev: Adding input device HDA Intel Line Out (/dev/input/event10)
[    35.809] (II) No input driver specified, ignoring this device.
[    35.810] (II) This device may have been added with another device file.
[    35.810] (II) config/udev: Adding input device HDA Intel Front Mic (/dev/input/event7)
[    35.810] (II) No input driver specified, ignoring this device.
[    35.810] (II) This device may have been added with another device file.
[    35.811] (II) config/udev: Adding input device HDA Intel Rear Mic (/dev/input/event8)
[    35.811] (II) No input driver specified, ignoring this device.
[    35.811] (II) This device may have been added with another device file.
[    35.811] (II) config/udev: Adding input device HDA Intel Line (/dev/input/event9)
[    35.811] (II) No input driver specified, ignoring this device.
[    35.811] (II) This device may have been added with another device file.
[    35.812] (II) config/udev: Adding input device Genius USB Optical Mouse (/dev/input/event2)
[    35.812] (**) Genius USB Optical Mouse: Applying InputClass "libinput pointer catchall"
[    35.813] (II) Using input driver 'libinput' for 'Genius USB Optical Mouse'
[    35.813] (**) Genius USB Optical Mouse: always reports core events
[    35.813] (**) Option "Device" "/dev/input/event2"
[    35.869] (II) event2  - Genius USB Optical Mouse: is tagged by udev as: Mouse
[    35.870] (II) event2  - Genius USB Optical Mouse: device is a pointer
[    35.870] (II) event2  - Genius USB Optical Mouse: device removed
[    35.930] (II) libinput: Genius USB Optical Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[    35.930] (II) libinput: Genius USB Optical Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[    35.930] (II) libinput: Genius USB Optical Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[    35.930] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb1/1-1/1-1:1.0/0003:0458:003A.0001/input/input2/event2"
[    35.930] (II) XINPUT: Adding extended input device "Genius USB Optical Mouse" (type: MOUSE, id 8)
[    35.930] (**) Option "AccelerationScheme" "none"
[    35.930] (**) Genius USB Optical Mouse: (accel) selected scheme none/0
[    35.930] (**) Genius USB Optical Mouse: (accel) acceleration factor: 2.000
[    35.930] (**) Genius USB Optical Mouse: (accel) acceleration threshold: 4
[    35.988] (II) event2  - Genius USB Optical Mouse: is tagged by udev as: Mouse
[    35.989] (II) event2  - Genius USB Optical Mouse: device is a pointer
[    35.990] (II) config/udev: Adding input device Genius USB Optical Mouse (/dev/input/mouse0)
[    35.990] (II) No input driver specified, ignoring this device.
[    35.990] (II) This device may have been added with another device file.
[    35.992] (II) config/udev: Adding input device USB USB Keyboard (/dev/input/event3)
[    35.992] (**) USB USB Keyboard: Applying InputClass "libinput keyboard catchall"
[    35.992] (**) USB USB Keyboard: Applying InputClass "system-keyboard"
[    35.992] (II) Using input driver 'libinput' for 'USB USB Keyboard'
[    35.992] (**) USB USB Keyboard: always reports core events
[    35.992] (**) Option "Device" "/dev/input/event3"
[    35.994] (II) event3  - USB USB Keyboard: is tagged by udev as: Keyboard
[    35.994] (II) event3  - USB USB Keyboard: device is a keyboard
[    35.994] (II) event3  - USB USB Keyboard: device removed
[    36.033] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb1/1-2/1-2:1.0/0003:1A2C:2D23.0002/input/input3/event3"
[    36.033] (II) XINPUT: Adding extended input device "USB USB Keyboard" (type: KEYBOARD, id 9)
[    36.033] (**) Option "xkb_layout" "es"
[    36.035] (II) event3  - USB USB Keyboard: is tagged by udev as: Keyboard
[    36.035] (II) event3  - USB USB Keyboard: device is a keyboard
[    36.036] (II) config/udev: Adding input device USB USB Keyboard Consumer Control (/dev/input/event4)
[    36.036] (**) USB USB Keyboard Consumer Control: Applying InputClass "libinput keyboard catchall"
[    36.036] (**) USB USB Keyboard Consumer Control: Applying InputClass "system-keyboard"
[    36.036] (II) Using input driver 'libinput' for 'USB USB Keyboard Consumer Control'
[    36.036] (**) USB USB Keyboard Consumer Control: always reports core events
[    36.036] (**) Option "Device" "/dev/input/event4"
[    36.039] (II) event4  - USB USB Keyboard Consumer Control: is tagged by udev as: Keyboard
[    36.039] (II) event4  - USB USB Keyboard Consumer Control: device is a keyboard
[    36.040] (II) event4  - USB USB Keyboard Consumer Control: device removed
[    36.076] (II) libinput: USB USB Keyboard Consumer Control: needs a virtual subdevice
[    36.076] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb1/1-2/1-2:1.1/0003:1A2C:2D23.0003/input/input4/event4"
[    36.076] (II) XINPUT: Adding extended input device "USB USB Keyboard Consumer Control" (type: MOUSE, id 10)
[    36.076] (**) Option "AccelerationScheme" "none"
[    36.076] (**) USB USB Keyboard Consumer Control: (accel) selected scheme none/0
[    36.076] (**) USB USB Keyboard Consumer Control: (accel) acceleration factor: 2.000
[    36.076] (**) USB USB Keyboard Consumer Control: (accel) acceleration threshold: 4
[    36.078] (II) event4  - USB USB Keyboard Consumer Control: is tagged by udev as: Keyboard
[    36.078] (II) event4  - USB USB Keyboard Consumer Control: device is a keyboard
[    36.079] (II) config/udev: Adding input device USB USB Keyboard System Control (/dev/input/event5)
[    36.079] (**) USB USB Keyboard System Control: Applying InputClass "libinput keyboard catchall"
[    36.079] (**) USB USB Keyboard System Control: Applying InputClass "system-keyboard"
[    36.079] (II) Using input driver 'libinput' for 'USB USB Keyboard System Control'
[    36.079] (**) USB USB Keyboard System Control: always reports core events
[    36.079] (**) Option "Device" "/dev/input/event5"
[    36.081] (II) event5  - USB USB Keyboard System Control: is tagged by udev as: Keyboard
[    36.081] (II) event5  - USB USB Keyboard System Control: device is a keyboard
[    36.081] (II) event5  - USB USB Keyboard System Control: device removed
[    36.110] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb1/1-2/1-2:1.1/0003:1A2C:2D23.0003/input/input5/event5"
[    36.110] (II) XINPUT: Adding extended input device "USB USB Keyboard System Control" (type: KEYBOARD, id 11)
[    36.110] (**) Option "xkb_layout" "es"
[    36.111] (II) event5  - USB USB Keyboard System Control: is tagged by udev as: Keyboard
[    36.112] (II) event5  - USB USB Keyboard System Control: device is a keyboard
[    36.112] (II) config/udev: Adding input device PC Speaker (/dev/input/event6)
[    36.112] (II) No input driver specified, ignoring this device.
[    36.112] (II) This device may have been added with another device file.
[    36.128] (**) USB USB Keyboard Consumer Control: Applying InputClass "libinput keyboard catchall"
[    36.128] (**) USB USB Keyboard Consumer Control: Applying InputClass "system-keyboard"
[    36.128] (II) Using input driver 'libinput' for 'USB USB Keyboard Consumer Control'
[    36.128] (**) USB USB Keyboard Consumer Control: always reports core events
[    36.128] (**) Option "Device" "/dev/input/event4"
[    36.128] (II) libinput: USB USB Keyboard Consumer Control: is a virtual subdevice
[    36.128] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb1/1-2/1-2:1.1/0003:1A2C:2D23.0003/input/input4/event4"
[    36.128] (II) XINPUT: Adding extended input device "USB USB Keyboard Consumer Control" (type: KEYBOARD, id 12)
[    36.128] (**) Option "xkb_layout" "es"

Last edited by jec15 (2024-05-21 08:06:51)

Offline

#4 2024-05-21 14:30:18

seth
Member
Registered: 2012-09-03
Posts: 61,632

Re: [SOLVED] Forcing mode at early KMS not working in kernel 6.9.1-arch1-1

You're still getting the XGA EDID…

1. do you actually care about the alternative edid?

Section "Monitor"
    Identifier "VGA-1"
    Option "PreferredMode" "1280x1024"
EndSection

does not work/suffice?

2. How does it behave if you don't rely on a built-in edid ?

3. You could probably still mitigate this using the debugfs and injecting the EDID before X11 starts?
=> https://wiki.archlinux.org/title/Kernel … s_and_EDID

Offline

#5 2024-05-22 06:39:57

jec15
Member
Registered: 2024-05-14
Posts: 4

Re: [SOLVED] Forcing mode at early KMS not working in kernel 6.9.1-arch1-1

1. All I care about is to avoid jumping between modes during the boot process. Adding a preferred mode works for setting the resolution for X but I am jumping between the 1280x1024 i have set in grub, to 1024x768 at KMS, then back to 1280x1024 when X starts, which is not the desired behavior, and not what was happening before 6.9.1-arch1-1.

2. If you mean removing "drm.edid_firmware" from kernel parameters, and the edid binary from the FILES array in mkinitcpio.conf, and regenerating both; then i get the undesired behavior described in point 1: 1280x1024 > 1024x768 (and back to 1280x1024 if setting it as preferred mode for X).

3. I am unsure how to do this to achieve the desired behavior described in point 1.

Last edited by jec15 (2024-05-22 06:57:16)

Offline

#6 2024-05-22 07:10:58

seth
Member
Registered: 2012-09-03
Posts: 61,632

Re: [SOLVED] Forcing mode at early KMS not working in kernel 6.9.1-arch1-1

edid/1280x1024.bin is supposed to be a built-in edid,  if you're trying to add a custom edid w/ the same name, rename it.
As workaround you could simply force the mode for kms (since the present edid does provide it) w/ the resp. kernel parameter:

video=VGA-1:1280x1024@60e

VGA-1 is a guess, check the relevant output name in /sys/class/drm

Offline

#7 2024-05-22 23:37:05

jec15
Member
Registered: 2024-05-14
Posts: 4

Re: [SOLVED] Forcing mode at early KMS not working in kernel 6.9.1-arch1-1

I ended up removing "drm.edid_firmware" from kernel parameters and the edid binary from the initramfs.

Using

video=VGA-1:1280x1024@60e

works for kms but then it switches to 1024x768 at X start. So i paired this with your earlier suggestion

Section "Monitor"
    Identifier "VGA-1"
    Option "PreferredMode" "1280x1024"
EndSection

and this gets me the desired behavior so I'm sticking with it.

Thank you for the help seth.

Last edited by jec15 (2024-05-22 23:40:28)

Offline

Board footer

Powered by FluxBB