You are not logged in.

#1 2021-03-05 23:34:08

vlovich
Member
Registered: 2021-03-05
Posts: 21

[Resolved] DisplayLink not working w/ Dell D6000 + Precision 5550

Just got a DisplayLink hub but can't seem to get it to work. What I've done:

  • Downgrade kernel to 5.10 since AUR page indicates that evdi doesn't work yet on newer kernels & evdi-git compilation is currently broken (+ other bugs).

  • Installed linux kernel headers (yay -S linux-headers)

  • Installed DisplayPort & evdi packages (yay -S displayport evdi)

  • Added the X conf file:

    $ cat /usr/share/X11/xorg.conf.d/20-evdidevice.conf
    Section "OutputClass"
            Identifier "DisplayLink"
            MatchDriver "evdi"
            Driver "modesetting"
            Option  "AccelMethod" "none"
    EndSection
  • Reboot

  • Uname:

    $ uname -a
    Linux vlovich 5.10.16-arch1-1 #1 SMP PREEMPT Sat, 13 Feb 2021 20:50:18 +0000 x86_64 GNU/Linux
  • lsmod

    $ lsmod | grep evdi
    evdi                   61440  0
    drm_kms_helper        274432  4 udl,evdi,nvidia_drm,i915
    syscopyarea            16384  2 drm_kms_helper,evdi
    sysfillrect            16384  2 drm_kms_helper,evdi
    sysimgblt              16384  2 drm_kms_helper,evdi
    drm                   569344  22 udl,drm_kms_helper,evdi,nvidia_drm,i915
    $ lsmod | grep udl
    udl                    20480  0
    drm_kms_helper        274432  4 udl,evdi,nvidia_drm,i915
    drm                   569344  22 udl,drm_kms_helper,evdi,nvidia_drm,i915
  • xrandr providers:

    xrandr --listproviders
    Providers: number : 2
    Provider 0: id: 0x46 cap: 0xf, Source Output, Sink Output, Source Offload, Sink Offload crtcs: 3 outputs: 4 associated providers: 0 name:modesetting
    Provider 1: id: 0x2bb cap: 0x0 crtcs: 0 outputs: 0 associated providers: 0 name:NVIDIA-G0
  • xrandr current displays

    Screen 0: minimum 320 x 200, current 3840 x 2400, maximum 16384 x 16384
    eDP-1 connected primary 3840x2400+0+0 (normal left inverted right x axis y axis) 336mm x 210mm
       3840x2400     59.99*+  48.00  
       3840x2160     60.00    60.01    59.98    59.97  
       3200x1800     59.96    59.94  
       2880x1620     59.96    59.97  
       2560x1600     59.99    59.97  
       2560x1440     59.99    59.99    59.96    59.95  
       2048x1536     60.00  
       1920x1440     60.00  
       1856x1392     60.01  
       1792x1344     60.01  
       2048x1152     59.99    59.98    59.90    59.91  
       1920x1200     59.88    59.95  
       1920x1080     60.01    59.97    59.96    59.93  
       1600x1200     60.00  
       1680x1050     59.95    59.88  
       1400x1050     59.98  
       1600x900      59.99    59.94    59.95    59.82  
       1280x1024     60.02  
       1400x900      59.96    59.88  
       1280x960      60.00  
       1440x810      60.00    59.97  
       1368x768      59.88    59.85  
       1280x800      59.99    59.97    59.81    59.91  
       1280x720      60.00    59.99    59.86    59.74  
       1024x768      60.04    60.00  
       960x720       60.00  
       928x696       60.05  
       896x672       60.01  
       1024x576      59.95    59.96    59.90    59.82  
       960x600       59.93    60.00  
       960x540       59.96    59.99    59.63    59.82  
       800x600       60.00    60.32    56.25  
       840x525       60.01    59.88  
       864x486       59.92    59.57  
       700x525       59.98  
       800x450       59.95    59.82  
       640x512       60.02  
       700x450       59.96    59.88  
       640x480       60.00    59.94  
       720x405       59.51    58.99  
       684x384       59.88    59.85  
       640x400       59.88    59.98  
       640x360       59.86    59.83    59.84    59.32  
       512x384       60.00  
       512x288       60.00    59.92  
       480x270       59.63    59.82  
       400x300       60.32    56.34  
       432x243       59.92    59.57  
       320x240       60.05  
       360x202       59.51    59.13  
       320x180       59.84    59.32  
    DP-1 disconnected (normal left inverted right x axis y axis)
    DP-2 disconnected (normal left inverted right x axis y axis)
    DP-3 disconnected (normal left inverted right x axis y axis)

I did notice a warning in the docs about this being incompatible with Intel GPUs when running X Window Server >= 1.18.3. Not sure if that's still relevant but it looks like I'm running newer:

yay -Q | grep xorg-server
xorg-server 1.20.10-3
xorg-server-common 1.20.10-3

I did try adding a 20-displaylink.conf that turned off PageFlip & also adding systemd.unit=displaylink.target as a kernel parameter, but none of that seemed to do anything.

Any tips/insights/help is greatly appreciated.

Updated: I just retried this after blacklisting nouveau and now I get:

$ xrandr --listproviders
Provider 0: id: 0x46 cap: 0xf, Source Output, Sink Output, Source Offload, Sink Offload crtcs: 3 outputs: 4 associated providers: 0 name:modesetting
Provider 1: id: 0xe2 cap: 0x0 crtcs: 0 outputs: 0 associated providers: 0 name:modesetting
xrandr --setprovideroutputsource 1 0
X Error of failed request:  BadValue (integer parameter out of range for operation)
  Major opcode of failed request:  140 (RANDR)
  Minor opcode of failed request:  35 (RRSetProviderOutputSource)
  Value in failed request:  0xe2
  Serial number of failed request:  16
  Current serial number in output stream:  17

Last edited by vlovich (2021-03-09 18:14:33)

Offline

#2 2021-03-06 13:32:20

Lone_Wolf
Forum Moderator
From: Netherlands, Europe
Registered: 2005-10-04
Posts: 11,925

Re: [Resolved] DisplayLink not working w/ Dell D6000 + Precision 5550

Installed linux kernel headers (yay -S linux-headers)

Please use pacman for repo packages.

Downgrade kernel to 5.10

switch to linux-lts / linux-lts-headers instead (now at 5.10.20 ) .

I did notice a warning in the docs about this being incompatible with Intel GPUs when running X Window Server >= 1.18.3.

xorg server 1.1.8.3 was released in 2016 , it's questionable if that warning is still valid .

You have enabled / started displaylink.service ?

On your system you should have seen 3 xrandr providers.
post full journacltcl -b (run as root) and xorg log .

P.S. the package is called displaylink , not displayport .


Disliking systemd intensely, but not satisfied with alternatives so focusing on taming systemd.


(A works at time B)  && (time C > time B ) ≠  (A works at time C)

Offline

#3 2021-03-06 16:39:28

vlovich
Member
Registered: 2021-03-05
Posts: 21

Re: [Resolved] DisplayLink not working w/ Dell D6000 + Precision 5550

Currently I'm seeing only 1 provider. I think that's caused by 20-displaylink.conf file in "Workaround 2" to disable PageFlip. "Workaround 1" just causes X to fail to launch claiming it can't find the intel driver.

$ sudo journalctl -b
-- Journal begins at Wed 2021-02-10 19:17:20 PST, ends at Sat 2021-03-06 08:28:50 PST. --
Mar 05 17:17:18 archlinux kernel: microcode: microcode updated early to revision 0xe0, date = 2020-07-08
Mar 05 17:17:18 archlinux kernel: Linux version 5.10.16-arch1-1 (linux@archlinux) (gcc (GCC) 10.2.0, GNU ld (GNU Binutils) 2.36) #1 SMP PREEMPT Sat, 13 Feb 2021 20:50:18 +0000
Mar 05 17:17:18 archlinux kernel: Command line: initrd=\intel-ucode.img initrd=\initramfs-linux.img rd.luks.name=4833f4ef-725f-47aa-897f-d5e672fb236b=cryptlvm root=/dev/Arch/OS rw nvidia-drm.modeset=1
Mar 05 17:17:18 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Mar 05 17:17:18 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Mar 05 17:17:18 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Mar 05 17:17:18 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
Mar 05 17:17:18 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
Mar 05 17:17:18 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
Mar 05 17:17:18 archlinux kernel: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
Mar 05 17:17:18 archlinux kernel: x86/fpu: xstate_offset[3]:  832, xstate_sizes[3]:   64
Mar 05 17:17:18 archlinux kernel: x86/fpu: xstate_offset[4]:  896, xstate_sizes[4]:   64
Mar 05 17:17:18 archlinux kernel: x86/fpu: xstate_offset[9]:  960, xstate_sizes[9]:    8
Mar 05 17:17:18 archlinux kernel: x86/fpu: Enabled xstate features 0x21f, context size is 968 bytes, using 'compacted' format.
Mar 05 17:17:18 archlinux kernel: BIOS-provided physical RAM map:
Mar 05 17:17:18 archlinux kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
Mar 05 17:17:18 archlinux kernel: BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
Mar 05 17:17:18 archlinux kernel: BIOS-e820: [mem 0x0000000000100000-0x000000003fffffff] usable
Mar 05 17:17:18 archlinux kernel: BIOS-e820: [mem 0x0000000040000000-0x00000000403fffff] reserved
Mar 05 17:17:18 archlinux kernel: BIOS-e820: [mem 0x0000000040400000-0x000000004ea08fff] usable
Mar 05 17:17:18 archlinux kernel: BIOS-e820: [mem 0x000000004ea09000-0x000000004ea09fff] reserved
Mar 05 17:17:18 archlinux kernel: BIOS-e820: [mem 0x000000004ea0a000-0x0000000051031fff] usable
Mar 05 17:17:18 archlinux kernel: BIOS-e820: [mem 0x0000000051032000-0x0000000051032fff] ACPI NVS
Mar 05 17:17:18 archlinux kernel: BIOS-e820: [mem 0x0000000051033000-0x0000000051033fff] reserved
Mar 05 17:17:18 archlinux kernel: BIOS-e820: [mem 0x0000000051034000-0x0000000062825fff] usable
Mar 05 17:17:18 archlinux kernel: BIOS-e820: [mem 0x0000000062826000-0x00000000658b4fff] reserved
Mar 05 17:17:18 archlinux kernel: BIOS-e820: [mem 0x00000000658b5000-0x0000000065f24fff] ACPI NVS
Mar 05 17:17:18 archlinux kernel: BIOS-e820: [mem 0x0000000065f25000-0x0000000065ffefff] ACPI data
Mar 05 17:17:18 archlinux kernel: BIOS-e820: [mem 0x0000000065fff000-0x0000000065ffffff] usable
Mar 05 17:17:18 archlinux kernel: BIOS-e820: [mem 0x0000000066000000-0x000000006e7fffff] reserved
Mar 05 17:17:18 archlinux kernel: BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
Mar 05 17:17:18 archlinux kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
Mar 05 17:17:18 archlinux kernel: BIOS-e820: [mem 0x0000000100000000-0x000000088d7fffff] usable
Mar 05 17:17:18 archlinux kernel: NX (Execute Disable) protection: active
Mar 05 17:17:18 archlinux kernel: e820: update [mem 0x6270e018-0x6271d057] usable ==> usable
Mar 05 17:17:18 archlinux kernel: e820: update [mem 0x6270e018-0x6271d057] usable ==> usable
Mar 05 17:17:18 archlinux kernel: extended physical RAM map:
Mar 05 17:17:18 archlinux kernel: reserve setup_data: [mem 0x0000000000000000-0x000000000009efff] usable
Mar 05 17:17:18 archlinux kernel: reserve setup_data: [mem 0x000000000009f000-0x00000000000fffff] reserved
Mar 05 17:17:18 archlinux kernel: reserve setup_data: [mem 0x0000000000100000-0x000000003fffffff] usable
Mar 05 17:17:18 archlinux kernel: reserve setup_data: [mem 0x0000000040000000-0x00000000403fffff] reserved
Mar 05 17:17:18 archlinux kernel: reserve setup_data: [mem 0x0000000040400000-0x000000004ea08fff] usable
Mar 05 17:17:18 archlinux kernel: reserve setup_data: [mem 0x000000004ea09000-0x000000004ea09fff] reserved
Mar 05 17:17:18 archlinux kernel: reserve setup_data: [mem 0x000000004ea0a000-0x0000000051031fff] usable
Mar 05 17:17:18 archlinux kernel: reserve setup_data: [mem 0x0000000051032000-0x0000000051032fff] ACPI NVS
Mar 05 17:17:18 archlinux kernel: reserve setup_data: [mem 0x0000000051033000-0x0000000051033fff] reserved
Mar 05 17:17:18 archlinux kernel: reserve setup_data: [mem 0x0000000051034000-0x000000006270e017] usable
Mar 05 17:17:18 archlinux kernel: reserve setup_data: [mem 0x000000006270e018-0x000000006271d057] usable
Mar 05 17:17:18 archlinux kernel: reserve setup_data: [mem 0x000000006271d058-0x0000000062825fff] usable
Mar 05 17:17:18 archlinux kernel: reserve setup_data: [mem 0x0000000062826000-0x00000000658b4fff] reserved
Mar 05 17:17:18 archlinux kernel: reserve setup_data: [mem 0x00000000658b5000-0x0000000065f24fff] ACPI NVS
Mar 05 17:17:18 archlinux kernel: reserve setup_data: [mem 0x0000000065f25000-0x0000000065ffefff] ACPI data
Mar 05 17:17:18 archlinux kernel: reserve setup_data: [mem 0x0000000065fff000-0x0000000065ffffff] usable
Mar 05 17:17:18 archlinux kernel: reserve setup_data: [mem 0x0000000066000000-0x000000006e7fffff] reserved
Mar 05 17:17:18 archlinux kernel: reserve setup_data: [mem 0x00000000e0000000-0x00000000efffffff] reserved
Mar 05 17:17:18 archlinux kernel: reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
Mar 05 17:17:18 archlinux kernel: reserve setup_data: [mem 0x0000000100000000-0x000000088d7fffff] usable
Mar 05 17:17:18 archlinux kernel: efi: EFI v2.70 by Dell
Mar 05 17:17:18 archlinux kernel: efi: SMBIOS=0x63263000 TPMFinalLog=0x65f1d000 ACPI=0x65ffe000 ACPI 2.0=0x65ffe014 ESRT=0x6314cb98 MEMATTR=0x5f869018 PROP=0x4fe12130 RNG=0x6314dc98 TPMEventLog=0x6271e018 
Mar 05 17:17:18 archlinux kernel: efi: seeding entropy pool
Mar 05 17:17:18 archlinux kernel: SMBIOS 3.2 present.
Mar 05 17:17:18 archlinux kernel: DMI: Dell Inc. Precision 5550/0MCFW2, BIOS 1.5.3 11/20/2020
Mar 05 17:17:18 archlinux kernel: tsc: Detected 2600.000 MHz processor
Mar 05 17:17:18 archlinux kernel: tsc: Detected 2599.992 MHz TSC
Mar 05 17:17:18 archlinux kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Mar 05 17:17:18 archlinux kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
Mar 05 17:17:18 archlinux kernel: last_pfn = 0x88d800 max_arch_pfn = 0x400000000
Mar 05 17:17:18 archlinux kernel: MTRR default type: write-back
Mar 05 17:17:18 archlinux kernel: MTRR fixed ranges enabled:
Mar 05 17:17:18 archlinux kernel:   00000-9FFFF write-back
Mar 05 17:17:18 archlinux kernel:   A0000-BFFFF uncachable
Mar 05 17:17:18 archlinux kernel:   C0000-FFFFF write-protect
Mar 05 17:17:18 archlinux kernel: MTRR variable ranges enabled:
Mar 05 17:17:18 archlinux kernel:   0 base 0080000000 mask 7F80000000 uncachable
Mar 05 17:17:18 archlinux kernel:   1 base 0070000000 mask 7FF0000000 uncachable
Mar 05 17:17:18 archlinux kernel:   2 base 006C000000 mask 7FFC000000 uncachable
Mar 05 17:17:18 archlinux kernel:   3 base 006A000000 mask 7FFE000000 uncachable
Mar 05 17:17:18 archlinux kernel:   4 base 4000000000 mask 4000000000 uncachable
Mar 05 17:17:18 archlinux kernel:   5 disabled
Mar 05 17:17:18 archlinux kernel:   6 disabled
Mar 05 17:17:18 archlinux kernel:   7 disabled
Mar 05 17:17:18 archlinux kernel:   8 disabled
Mar 05 17:17:18 archlinux kernel:   9 disabled
Mar 05 17:17:18 archlinux kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Mar 05 17:17:18 archlinux kernel: last_pfn = 0x66000 max_arch_pfn = 0x400000000
Mar 05 17:17:18 archlinux kernel: esrt: Reserving ESRT space from 0x000000006314cb98 to 0x000000006314cc20.
Mar 05 17:17:18 archlinux kernel: check: Scanning 1 areas for low memory corruption
Mar 05 17:17:18 archlinux kernel: Using GB pages for direct mapping
Mar 05 17:17:18 archlinux kernel: Secure boot disabled
Mar 05 17:17:18 archlinux kernel: RAMDISK: [mem 0x4d33a000-0x4ea08fff]
Mar 05 17:17:18 archlinux kernel: ACPI: Early table checksum verification disabled
Mar 05 17:17:18 archlinux kernel: ACPI: RSDP 0x0000000065FFE014 000024 (v02 DELL  )
Mar 05 17:17:18 archlinux kernel: ACPI: XSDT 0x0000000065F93188 0000F4 (v01 DELL   Dell Inc 20170001 INTL 20160422)
Mar 05 17:17:18 archlinux kernel: ACPI: FACP 0x0000000065FF0000 000114 (v06 DELL   Dell Inc 20170001 INTL 20160422)
Mar 05 17:17:18 archlinux kernel: ACPI: DSDT 0x0000000065FA3000 049DC8 (v02 DELL   Dell Inc 20170001 INTL 20160422)
Mar 05 17:17:18 archlinux kernel: ACPI: FACS 0x0000000065EA5000 000040
Mar 05 17:17:18 archlinux kernel: ACPI: SSDT 0x0000000065FFA000 00203C (v02 CpuRef CpuSsdt  00003000 INTL 20160527)
Mar 05 17:17:18 archlinux kernel: ACPI: SSDT 0x0000000065FF3000 0063E5 (v02 INTEL  DptfTabl 00001000 INTL 20160527)
Mar 05 17:17:18 archlinux kernel: ACPI: SSDT 0x0000000065FF1000 00134A (v02 SaSsdt SaSsdt   00003000 INTL 20160527)
Mar 05 17:17:18 archlinux kernel: ACPI: HPET 0x0000000065FEF000 000038 (v01 DELL   Dell Inc 20170001 INTL 20160422)
Mar 05 17:17:18 archlinux kernel: ACPI: APIC 0x0000000065FEE000 000164 (v03 DELL   Dell Inc 20170001 INTL 20160422)
Mar 05 17:17:18 archlinux kernel: ACPI: MCFG 0x0000000065FED000 00003C (v01 DELL   Dell Inc 20170001 INTL 20160422)
Mar 05 17:17:18 archlinux kernel: ACPI: SSDT 0x0000000065FA1000 001749 (v02 DELL   DellRtd3 00001000 INTL 20160527)
Mar 05 17:17:18 archlinux kernel: ACPI: SSDT 0x0000000065FA0000 000CB0 (v02 DELL   xh_Dell_ 00000000 INTL 20160527)
Mar 05 17:17:18 archlinux kernel: ACPI: NHLT 0x0000000065F9F000 00002D (v00 DELL   Dell Inc 20170001 INTL 20160422)
Mar 05 17:17:18 archlinux kernel: ACPI: SSDT 0x0000000065F9E000 000C78 (v02 DELL   UsbCTabl 00001000 INTL 20160527)
Mar 05 17:17:18 archlinux kernel: ACPI: LPIT 0x0000000065F9D000 000094 (v01 DELL   Dell Inc 20170001 INTL 20160422)
Mar 05 17:17:18 archlinux kernel: ACPI: WSMT 0x0000000065F9C000 000028 (v01 DELL   Dell Inc 20170001 INTL 20160422)
Mar 05 17:17:18 archlinux kernel: ACPI: SSDT 0x0000000065F9B000 000B75 (v02 DELL   PtidDevc 00001000 INTL 20160527)
Mar 05 17:17:18 archlinux kernel: ACPI: DBGP 0x0000000065F9A000 000034 (v01 DELL   Dell Inc 20170001 INTL 20160422)
Mar 05 17:17:18 archlinux kernel: ACPI: DBG2 0x0000000065F99000 000054 (v00 DELL   Dell Inc 20170001 INTL 20160422)
Mar 05 17:17:18 archlinux kernel: ACPI: SSDT 0x0000000065F98000 00060E (v02 DELL   Tpm2Tabl 00001000 INTL 20160527)
Mar 05 17:17:18 archlinux kernel: ACPI: TPM2 0x0000000065F97000 000034 (v04 DELL   Dell Inc 20170001 INTL 20160422)
Mar 05 17:17:18 archlinux kernel: ACPI: SLIC 0x0000000065F96000 000176 (v03 DELL   CBX3     06222004 MSFT 00010013)
Mar 05 17:17:18 archlinux kernel: ACPI: BOOT 0x0000000065F95000 000028 (v01 DELL   CBX3     20170001 INTL 20160422)
Mar 05 17:17:18 archlinux kernel: ACPI: MSDM 0x0000000065F94000 000055 (v03 DELL   CBX3     06222004 AMI  00010013)
Mar 05 17:17:18 archlinux kernel: ACPI: SSDT 0x0000000065F8E000 0041A0 (v01 DELL   NvdTable 00001000 INTL 20160527)
Mar 05 17:17:18 archlinux kernel: ACPI: SSDT 0x0000000065FFD000 000156 (v02 Dell   ADebTabl 00001000 INTL 20160527)
Mar 05 17:17:18 archlinux kernel: ACPI: ASF! 0x0000000065F8D000 000074 (v32 DELL   Dell Inc 20170001 INTL 20160422)
Mar 05 17:17:18 archlinux kernel: ACPI: BGRT 0x0000000065F8C000 000038 (v01 DELL   Dell Inc 20170001 INTL 20160422)
Mar 05 17:17:18 archlinux kernel: ACPI: FPDT 0x0000000065F8B000 000034 (v01 DELL   Dell Inc 20170001 INTL 20160422)
Mar 05 17:17:18 archlinux kernel: ACPI: Local APIC address 0xfee00000
Mar 05 17:17:18 archlinux kernel: No NUMA configuration found
Mar 05 17:17:18 archlinux kernel: Faking a node at [mem 0x0000000000000000-0x000000088d7fffff]
Mar 05 17:17:18 archlinux kernel: NODE_DATA(0) allocated [mem 0x88d7fc000-0x88d7fffff]
Mar 05 17:17:18 archlinux kernel: Zone ranges:
Mar 05 17:17:18 archlinux kernel:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
Mar 05 17:17:18 archlinux kernel:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
Mar 05 17:17:18 archlinux kernel:   Normal   [mem 0x0000000100000000-0x000000088d7fffff]
Mar 05 17:17:18 archlinux kernel:   Device   empty
Mar 05 17:17:18 archlinux kernel: Movable zone start for each node
Mar 05 17:17:18 archlinux kernel: Early memory node ranges
Mar 05 17:17:18 archlinux kernel:   node   0: [mem 0x0000000000001000-0x000000000009efff]
Mar 05 17:17:18 archlinux kernel:   node   0: [mem 0x0000000000100000-0x000000003fffffff]
Mar 05 17:17:18 archlinux kernel:   node   0: [mem 0x0000000040400000-0x000000004ea08fff]
Mar 05 17:17:18 archlinux kernel:   node   0: [mem 0x000000004ea0a000-0x0000000051031fff]
Mar 05 17:17:18 archlinux kernel:   node   0: [mem 0x0000000051034000-0x0000000062825fff]
Mar 05 17:17:18 archlinux kernel:   node   0: [mem 0x0000000065fff000-0x0000000065ffffff]
Mar 05 17:17:18 archlinux kernel:   node   0: [mem 0x0000000100000000-0x000000088d7fffff]
Mar 05 17:17:18 archlinux kernel: Zeroed struct page in unavailable ranges: 33854 pages
Mar 05 17:17:18 archlinux kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000088d7fffff]
Mar 05 17:17:18 archlinux kernel: On node 0 totalpages: 8321986
Mar 05 17:17:18 archlinux kernel:   DMA zone: 64 pages used for memmap
Mar 05 17:17:18 archlinux kernel:   DMA zone: 22 pages reserved
Mar 05 17:17:18 archlinux kernel:   DMA zone: 3998 pages, LIFO batch:0
Mar 05 17:17:18 archlinux kernel:   DMA32 zone: 6225 pages used for memmap
Mar 05 17:17:18 archlinux kernel:   DMA32 zone: 398372 pages, LIFO batch:63
Mar 05 17:17:18 archlinux kernel:   Normal zone: 123744 pages used for memmap
Mar 05 17:17:18 archlinux kernel:   Normal zone: 7919616 pages, LIFO batch:63
Mar 05 17:17:18 archlinux kernel: Reserving Intel graphics memory at [mem 0x6a800000-0x6e7fffff]
Mar 05 17:17:18 archlinux kernel: ACPI: PM-Timer IO Port: 0x1808
Mar 05 17:17:18 archlinux kernel: ACPI: Local APIC address 0xfee00000
Mar 05 17:17:18 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
Mar 05 17:17:18 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
Mar 05 17:17:18 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
Mar 05 17:17:18 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
Mar 05 17:17:18 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
Mar 05 17:17:18 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
Mar 05 17:17:18 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
Mar 05 17:17:18 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
Mar 05 17:17:18 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
Mar 05 17:17:18 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
Mar 05 17:17:18 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
Mar 05 17:17:18 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
Mar 05 17:17:18 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
Mar 05 17:17:18 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
Mar 05 17:17:18 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
Mar 05 17:17:18 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
Mar 05 17:17:18 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
Mar 05 17:17:18 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
Mar 05 17:17:18 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
Mar 05 17:17:18 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
Mar 05 17:17:18 archlinux kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
Mar 05 17:17:18 archlinux kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Mar 05 17:17:18 archlinux kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Mar 05 17:17:18 archlinux kernel: ACPI: IRQ0 used by override.
Mar 05 17:17:18 archlinux kernel: ACPI: IRQ9 used by override.
Mar 05 17:17:18 archlinux kernel: Using ACPI (MADT) for SMP configuration information
Mar 05 17:17:18 archlinux kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
Mar 05 17:17:18 archlinux kernel: e820: update [mem 0x5f6f7000-0x5f773fff] usable ==> reserved
Mar 05 17:17:18 archlinux kernel: TSC deadline timer available
Mar 05 17:17:18 archlinux kernel: smpboot: Allowing 12 CPUs, 0 hotplug CPUs
Mar 05 17:17:18 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
Mar 05 17:17:18 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
Mar 05 17:17:18 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x40000000-0x403fffff]
Mar 05 17:17:18 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x4ea09000-0x4ea09fff]
Mar 05 17:17:18 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x51032000-0x51032fff]
Mar 05 17:17:18 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x51033000-0x51033fff]
Mar 05 17:17:18 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x5f6f7000-0x5f773fff]
Mar 05 17:17:18 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x6270e000-0x6270efff]
Mar 05 17:17:18 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x6271d000-0x6271dfff]
Mar 05 17:17:18 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x62826000-0x658b4fff]
Mar 05 17:17:18 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x658b5000-0x65f24fff]
Mar 05 17:17:18 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x65f25000-0x65ffefff]
Mar 05 17:17:18 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x66000000-0x6e7fffff]
Mar 05 17:17:18 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x6e800000-0xdfffffff]
Mar 05 17:17:18 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xe0000000-0xefffffff]
Mar 05 17:17:18 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xf0000000-0xfeffffff]
Mar 05 17:17:18 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xff000000-0xffffffff]
Mar 05 17:17:18 archlinux kernel: [mem 0x6e800000-0xdfffffff] available for PCI devices
Mar 05 17:17:18 archlinux kernel: Booting paravirtualized kernel on bare hardware
Mar 05 17:17:18 archlinux kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
Mar 05 17:17:18 archlinux kernel: setup_percpu: NR_CPUS:320 nr_cpumask_bits:320 nr_cpu_ids:12 nr_node_ids:1
Mar 05 17:17:18 archlinux kernel: percpu: Embedded 56 pages/cpu s192512 r8192 d28672 u262144
Mar 05 17:17:18 archlinux kernel: pcpu-alloc: s192512 r8192 d28672 u262144 alloc=1*2097152
Mar 05 17:17:18 archlinux kernel: pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 -- -- -- -- 
Mar 05 17:17:18 archlinux kernel: Built 1 zonelists, mobility grouping on.  Total pages: 8191931
Mar 05 17:17:18 archlinux kernel: Policy zone: Normal
Mar 05 17:17:18 archlinux kernel: Kernel command line: initrd=\intel-ucode.img initrd=\initramfs-linux.img rd.luks.name=4833f4ef-725f-47aa-897f-d5e672fb236b=cryptlvm root=/dev/Arch/OS rw nvidia-drm.modeset=1
Mar 05 17:17:18 archlinux kernel: Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
Mar 05 17:17:18 archlinux kernel: Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
Mar 05 17:17:18 archlinux kernel: mem auto-init: stack:byref_all(zero), heap alloc:on, heap free:off
Mar 05 17:17:18 archlinux kernel: Memory: 32465040K/33287944K available (14344K kernel code, 2034K rwdata, 8808K rodata, 1704K init, 4332K bss, 822644K reserved, 0K cma-reserved)
Mar 05 17:17:18 archlinux kernel: random: get_random_u64 called from __kmem_cache_create+0x26/0x520 with crng_init=0
Mar 05 17:17:18 archlinux kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=12, Nodes=1
Mar 05 17:17:18 archlinux kernel: ftrace: allocating 41612 entries in 163 pages
Mar 05 17:17:18 archlinux kernel: ftrace: allocated 163 pages with 4 groups
Mar 05 17:17:18 archlinux kernel: rcu: Preemptible hierarchical RCU implementation.
Mar 05 17:17:18 archlinux kernel: rcu:         RCU dyntick-idle grace-period acceleration is enabled.
Mar 05 17:17:18 archlinux kernel: rcu:         RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=12.
Mar 05 17:17:18 archlinux kernel: rcu:         RCU priority boosting: priority 1 delay 500 ms.
Mar 05 17:17:18 archlinux kernel:         Trampoline variant of Tasks RCU enabled.
Mar 05 17:17:18 archlinux kernel:         Rude variant of Tasks RCU enabled.
Mar 05 17:17:18 archlinux kernel:         Tracing variant of Tasks RCU enabled.
Mar 05 17:17:18 archlinux kernel: rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
Mar 05 17:17:18 archlinux kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=12
Mar 05 17:17:18 archlinux kernel: NR_IRQS: 20736, nr_irqs: 2152, preallocated irqs: 16
Mar 05 17:17:18 archlinux kernel: Console: colour dummy device 80x25
Mar 05 17:17:18 archlinux kernel: printk: console [tty0] enabled
Mar 05 17:17:18 archlinux kernel: ACPI: Core revision 20200925
Mar 05 17:17:18 archlinux kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635855245 ns
Mar 05 17:17:18 archlinux kernel: APIC: Switch to symmetric I/O mode setup
Mar 05 17:17:18 archlinux kernel: x2apic: IRQ remapping doesn't support X2APIC mode
Mar 05 17:17:18 archlinux kernel: Switched APIC routing to physical flat.
Mar 05 17:17:18 archlinux kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Mar 05 17:17:18 archlinux kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x257a34a6eea, max_idle_ns: 440795264358 ns
Mar 05 17:17:18 archlinux kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 5202.65 BogoMIPS (lpj=8666640)
Mar 05 17:17:18 archlinux kernel: pid_max: default: 32768 minimum: 301
Mar 05 17:17:18 archlinux kernel: LSM: Security Framework initializing
Mar 05 17:17:18 archlinux kernel: Yama: becoming mindful.
Mar 05 17:17:18 archlinux kernel: LSM support for eBPF active
Mar 05 17:17:18 archlinux kernel: Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
Mar 05 17:17:18 archlinux kernel: Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
Mar 05 17:17:18 archlinux kernel: x86/cpu: VMX (outside TXT) disabled by BIOS
Mar 05 17:17:18 archlinux kernel: mce: CPU0: Thermal monitoring enabled (TM1)
Mar 05 17:17:18 archlinux kernel: process: using mwait in idle threads
Mar 05 17:17:18 archlinux kernel: Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
Mar 05 17:17:18 archlinux kernel: Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
Mar 05 17:17:18 archlinux kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
Mar 05 17:17:18 archlinux kernel: Spectre V2 : Mitigation: Enhanced IBRS
Mar 05 17:17:18 archlinux kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
Mar 05 17:17:18 archlinux kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
Mar 05 17:17:18 archlinux kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
Mar 05 17:17:18 archlinux kernel: Freeing SMP alternatives memory: 36K
Mar 05 17:17:18 archlinux kernel: smpboot: CPU0: Intel(R) Core(TM) i7-10750H CPU @ 2.60GHz (family: 0x6, model: 0xa5, stepping: 0x2)
Mar 05 17:17:18 archlinux kernel: Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
Mar 05 17:17:18 archlinux kernel: ... version:                4
Mar 05 17:17:18 archlinux kernel: ... bit width:              48
Mar 05 17:17:18 archlinux kernel: ... generic registers:      4
Mar 05 17:17:18 archlinux kernel: ... value mask:             0000ffffffffffff
Mar 05 17:17:18 archlinux kernel: ... max period:             00007fffffffffff
Mar 05 17:17:18 archlinux kernel: ... fixed-purpose events:   3
Mar 05 17:17:18 archlinux kernel: ... event mask:             000000070000000f
Mar 05 17:17:18 archlinux kernel: rcu: Hierarchical SRCU implementation.
Mar 05 17:17:18 archlinux kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
Mar 05 17:17:18 archlinux kernel: smp: Bringing up secondary CPUs ...
Mar 05 17:17:18 archlinux kernel: x86: Booting SMP configuration:
Mar 05 17:17:18 archlinux kernel: .... node  #0, CPUs:        #1  #2  #3  #4  #5  #6  #7  #8  #9 #10 #11
Mar 05 17:17:18 archlinux kernel: smp: Brought up 1 node, 12 CPUs
Mar 05 17:17:18 archlinux kernel: smpboot: Max logical packages: 1
Mar 05 17:17:18 archlinux kernel: smpboot: Total of 12 processors activated (62424.80 BogoMIPS)
Mar 05 17:17:18 archlinux kernel: devtmpfs: initialized
Mar 05 17:17:18 archlinux kernel: x86/mm: Memory block size: 128MB
Mar 05 17:17:18 archlinux kernel: PM: Registering ACPI NVS region [mem 0x51032000-0x51032fff] (4096 bytes)
Mar 05 17:17:18 archlinux kernel: PM: Registering ACPI NVS region [mem 0x658b5000-0x65f24fff] (6750208 bytes)
Mar 05 17:17:18 archlinux kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
Mar 05 17:17:18 archlinux kernel: futex hash table entries: 4096 (order: 6, 262144 bytes, linear)
Mar 05 17:17:18 archlinux kernel: pinctrl core: initialized pinctrl subsystem
Mar 05 17:17:18 archlinux kernel: PM: RTC time: 01:17:17, date: 2021-03-06
Mar 05 17:17:18 archlinux kernel: NET: Registered protocol family 16
Mar 05 17:17:18 archlinux kernel: DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
Mar 05 17:17:18 archlinux kernel: DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
Mar 05 17:17:18 archlinux kernel: DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
Mar 05 17:17:18 archlinux kernel: audit: initializing netlink subsys (disabled)
Mar 05 17:17:18 archlinux kernel: audit: type=2000 audit(1614993437.036:1): state=initialized audit_enabled=0 res=1
Mar 05 17:17:18 archlinux kernel: thermal_sys: Registered thermal governor 'fair_share'
Mar 05 17:17:18 archlinux kernel: thermal_sys: Registered thermal governor 'bang_bang'
Mar 05 17:17:18 archlinux kernel: thermal_sys: Registered thermal governor 'step_wise'
Mar 05 17:17:18 archlinux kernel: thermal_sys: Registered thermal governor 'user_space'
Mar 05 17:17:18 archlinux kernel: thermal_sys: Registered thermal governor 'power_allocator'
Mar 05 17:17:18 archlinux kernel: cpuidle: using governor ladder
Mar 05 17:17:18 archlinux kernel: cpuidle: using governor menu
Mar 05 17:17:18 archlinux kernel: Simple Boot Flag at 0x47 set to 0x80
Mar 05 17:17:18 archlinux kernel: ACPI: bus type PCI registered
Mar 05 17:17:18 archlinux kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Mar 05 17:17:18 archlinux kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
Mar 05 17:17:18 archlinux kernel: PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
Mar 05 17:17:18 archlinux kernel: PCI: Using configuration type 1 for base access
Mar 05 17:17:18 archlinux kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
Mar 05 17:17:18 archlinux kernel: HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
Mar 05 17:17:18 archlinux kernel: HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
Mar 05 17:17:18 archlinux kernel: fbcon: Taking over console
Mar 05 17:17:18 archlinux kernel: ACPI: Added _OSI(Module Device)
Mar 05 17:17:18 archlinux kernel: ACPI: Added _OSI(Processor Device)
Mar 05 17:17:18 archlinux kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Mar 05 17:17:18 archlinux kernel: ACPI: Added _OSI(Processor Aggregator Device)
Mar 05 17:17:18 archlinux kernel: ACPI: Added _OSI(Linux-Dell-Video)
Mar 05 17:17:18 archlinux kernel: ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
Mar 05 17:17:18 archlinux kernel: ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
Mar 05 17:17:18 archlinux kernel: ACPI: 11 ACPI AML tables successfully acquired and loaded
Mar 05 17:17:18 archlinux kernel: ACPI: Dynamic OEM Table Load:
Mar 05 17:17:18 archlinux kernel: ACPI: SSDT 0xFFFF958C81294F00 0000FC (v02 PmRef  Cpu0Psd  00003000 INTL 20160527)
Mar 05 17:17:18 archlinux kernel: ACPI: \_SB_.PR00: _OSC native thermal LVT Acked
Mar 05 17:17:18 archlinux kernel: ACPI: Dynamic OEM Table Load:
Mar 05 17:17:18 archlinux kernel: ACPI: SSDT 0xFFFF958C81374000 000502 (v02 PmRef  Cpu0Cst  00003001 INTL 20160527)
Mar 05 17:17:18 archlinux kernel: ACPI: Dynamic OEM Table Load:
Mar 05 17:17:18 archlinux kernel: ACPI: SSDT 0xFFFF958C81376800 000581 (v02 PmRef  Cpu0Ist  00003000 INTL 20160527)
Mar 05 17:17:18 archlinux kernel: ACPI: Dynamic OEM Table Load:
Mar 05 17:17:18 archlinux kernel: ACPI: SSDT 0xFFFF958C812A8C00 00016C (v02 PmRef  Cpu0Hwp  00003000 INTL 20160527)
Mar 05 17:17:18 archlinux kernel: ACPI: Dynamic OEM Table Load:
Mar 05 17:17:18 archlinux kernel: ACPI: SSDT 0xFFFF958C8132D000 000BEA (v02 PmRef  HwpLvt   00003000 INTL 20160527)
Mar 05 17:17:18 archlinux kernel: ACPI: Dynamic OEM Table Load:
Mar 05 17:17:18 archlinux kernel: ACPI: SSDT 0xFFFF958C81373800 000778 (v02 PmRef  ApIst    00003000 INTL 20160527)
Mar 05 17:17:18 archlinux kernel: ACPI: Dynamic OEM Table Load:
Mar 05 17:17:18 archlinux kernel: ACPI: SSDT 0xFFFF958C812A6000 0003D7 (v02 PmRef  ApHwp    00003000 INTL 20160527)
Mar 05 17:17:18 archlinux kernel: ACPI: Dynamic OEM Table Load:
Mar 05 17:17:18 archlinux kernel: ACPI: SSDT 0xFFFF958C8132E000 000D22 (v02 PmRef  ApPsd    00003000 INTL 20160527)
Mar 05 17:17:18 archlinux kernel: ACPI: Dynamic OEM Table Load:
Mar 05 17:17:18 archlinux kernel: ACPI: SSDT 0xFFFF958C812A4400 0003CA (v02 PmRef  ApCst    00003000 INTL 20160527)
Mar 05 17:17:18 archlinux kernel: ACPI: EC: EC started
Mar 05 17:17:18 archlinux kernel: ACPI: EC: interrupt blocked
Mar 05 17:17:18 archlinux kernel: ACPI: EC: EC_CMD/EC_SC=0x934, EC_DATA=0x930
Mar 05 17:17:18 archlinux kernel: ACPI: \_SB_.PCI0.LPCB.ECDV: Boot DSDT EC used to handle transactions
Mar 05 17:17:18 archlinux kernel: ACPI: Interpreter enabled
Mar 05 17:17:18 archlinux kernel: ACPI: (supports S0 S3 S4 S5)
Mar 05 17:17:18 archlinux kernel: ACPI: Using IOAPIC for interrupt routing
Mar 05 17:17:18 archlinux kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Mar 05 17:17:18 archlinux kernel: ACPI: Enabled 9 GPEs in block 00 to 7F
Mar 05 17:17:18 archlinux kernel: ACPI: Power Resource [PG00] (on)
Mar 05 17:17:18 archlinux kernel: ACPI: Power Resource [USBC] (on)
Mar 05 17:17:18 archlinux kernel: ACPI: Power Resource [PXP] (on)
Mar 05 17:17:18 archlinux kernel: ACPI: Power Resource [V0PR] (on)
Mar 05 17:17:18 archlinux kernel: ACPI: Power Resource [V1PR] (on)
Mar 05 17:17:18 archlinux kernel: ACPI: Power Resource [V2PR] (on)
Mar 05 17:17:18 archlinux kernel: ACPI: Power Resource [WRST] (on)
Mar 05 17:17:18 archlinux kernel: ACPI: Power Resource [PIN] (off)
Mar 05 17:17:18 archlinux kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
Mar 05 17:17:18 archlinux kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
Mar 05 17:17:18 archlinux kernel: acpi PNP0A08:00: _OSC: platform does not support [AER]
Mar 05 17:17:18 archlinux kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability LTR DPC]
Mar 05 17:17:18 archlinux kernel: PCI host bridge to bus 0000:00
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff window]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff window]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff window]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff window]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff window]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff window]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff window]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff window]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff window]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff window]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x000f0000-0x000fffff window]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x6e800000-0xdfffffff window]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0xfc800000-0xfe7fffff window]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:00: root bus resource [bus 00-fe]
Mar 05 17:17:18 archlinux kernel: pci 0000:00:00.0: [8086:9b54] type 00 class 0x060000
Mar 05 17:17:18 archlinux kernel: pci 0000:00:01.0: [8086:1901] type 01 class 0x060400
Mar 05 17:17:18 archlinux kernel: pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
Mar 05 17:17:18 archlinux kernel: pci 0000:00:02.0: [8086:9bc4] type 00 class 0x030000
Mar 05 17:17:18 archlinux kernel: pci 0000:00:02.0: reg 0x10: [mem 0x604a000000-0x604affffff 64bit]
Mar 05 17:17:18 archlinux kernel: pci 0000:00:02.0: reg 0x18: [mem 0x4000000000-0x400fffffff 64bit pref]
Mar 05 17:17:18 archlinux kernel: pci 0000:00:02.0: reg 0x20: [io  0x4000-0x403f]
Mar 05 17:17:18 archlinux kernel: pci 0000:00:02.0: BAR 2: assigned to efifb
Mar 05 17:17:18 archlinux kernel: pci 0000:00:04.0: [8086:1903] type 00 class 0x118000
Mar 05 17:17:18 archlinux kernel: pci 0000:00:04.0: reg 0x10: [mem 0x604b110000-0x604b117fff 64bit]
Mar 05 17:17:18 archlinux kernel: pci 0000:00:08.0: [8086:1911] type 00 class 0x088000
Mar 05 17:17:18 archlinux kernel: pci 0000:00:08.0: reg 0x10: [mem 0x604b12b000-0x604b12bfff 64bit]
Mar 05 17:17:18 archlinux kernel: pci 0000:00:12.0: [8086:06f9] type 00 class 0x118000
Mar 05 17:17:18 archlinux kernel: pci 0000:00:12.0: reg 0x10: [mem 0x604b12a000-0x604b12afff 64bit]
Mar 05 17:17:18 archlinux kernel: pci 0000:00:13.0: [8086:06fc] type 00 class 0x070000
Mar 05 17:17:18 archlinux kernel: pci 0000:00:13.0: reg 0x10: [mem 0x604b122000-0x604b123fff 64bit]
Mar 05 17:17:18 archlinux kernel: pci 0000:00:13.0: PME# supported from D0 D3hot
Mar 05 17:17:18 archlinux kernel: pci 0000:00:14.0: [8086:06ed] type 00 class 0x0c0330
Mar 05 17:17:18 archlinux kernel: pci 0000:00:14.0: reg 0x10: [mem 0x604b100000-0x604b10ffff 64bit]
Mar 05 17:17:18 archlinux kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
Mar 05 17:17:18 archlinux kernel: pci 0000:00:14.2: [8086:06ef] type 00 class 0x050000
Mar 05 17:17:18 archlinux kernel: pci 0000:00:14.2: reg 0x10: [mem 0x604b120000-0x604b121fff 64bit]
Mar 05 17:17:18 archlinux kernel: pci 0000:00:14.2: reg 0x18: [mem 0x604b129000-0x604b129fff 64bit]
Mar 05 17:17:18 archlinux kernel: pci 0000:00:14.3: [8086:06f0] type 00 class 0x028000
Mar 05 17:17:18 archlinux kernel: pci 0000:00:14.3: reg 0x10: [mem 0x604b11c000-0x604b11ffff 64bit]
Mar 05 17:17:18 archlinux kernel: pci 0000:00:14.3: PME# supported from D0 D3hot D3cold
Mar 05 17:17:18 archlinux kernel: pci 0000:00:15.0: [8086:06e8] type 00 class 0x0c8000
Mar 05 17:17:18 archlinux kernel: pci 0000:00:15.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
Mar 05 17:17:18 archlinux kernel: pci 0000:00:15.1: [8086:06e9] type 00 class 0x0c8000
Mar 05 17:17:18 archlinux kernel: pci 0000:00:15.1: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
Mar 05 17:17:18 archlinux kernel: pci 0000:00:16.0: [8086:06e0] type 00 class 0x078000
Mar 05 17:17:18 archlinux kernel: pci 0000:00:16.0: reg 0x10: [mem 0x604b126000-0x604b126fff 64bit]
Mar 05 17:17:18 archlinux kernel: pci 0000:00:16.0: PME# supported from D3hot
Mar 05 17:17:18 archlinux kernel: pci 0000:00:1c.0: [8086:06b8] type 01 class 0x060400
Mar 05 17:17:18 archlinux kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
Mar 05 17:17:18 archlinux kernel: pci 0000:00:1c.0: PTM enabled (root), 4ns granularity
Mar 05 17:17:18 archlinux kernel: pci 0000:00:1d.0: [8086:06b0] type 01 class 0x060400
Mar 05 17:17:18 archlinux kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
Mar 05 17:17:18 archlinux kernel: pci 0000:00:1d.0: PTM enabled (root), 4ns granularity
Mar 05 17:17:18 archlinux kernel: pci 0000:00:1e.0: [8086:06a8] type 00 class 0x078000
Mar 05 17:17:18 archlinux kernel: pci 0000:00:1e.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
Mar 05 17:17:18 archlinux kernel: pci 0000:00:1f.0: [8086:068e] type 00 class 0x060100
Mar 05 17:17:18 archlinux kernel: pci 0000:00:1f.3: [8086:06c8] type 00 class 0x040380
Mar 05 17:17:18 archlinux kernel: pci 0000:00:1f.3: reg 0x10: [mem 0x604b118000-0x604b11bfff 64bit]
Mar 05 17:17:18 archlinux kernel: pci 0000:00:1f.3: reg 0x20: [mem 0x604b000000-0x604b0fffff 64bit]
Mar 05 17:17:18 archlinux kernel: pci 0000:00:1f.3: PME# supported from D3hot D3cold
Mar 05 17:17:18 archlinux kernel: pci 0000:00:1f.4: [8086:06a3] type 00 class 0x0c0500
Mar 05 17:17:18 archlinux kernel: pci 0000:00:1f.4: reg 0x10: [mem 0x604b124000-0x604b1240ff 64bit]
Mar 05 17:17:18 archlinux kernel: pci 0000:00:1f.4: reg 0x20: [io  0xefa0-0xefbf]
Mar 05 17:17:18 archlinux kernel: pci 0000:00:1f.5: [8086:06a4] type 00 class 0x0c8000
Mar 05 17:17:18 archlinux kernel: pci 0000:00:1f.5: reg 0x10: [mem 0xfe010000-0xfe010fff]
Mar 05 17:17:18 archlinux kernel: pci 0000:01:00.0: [10de:1fb8] type 00 class 0x030200
Mar 05 17:17:18 archlinux kernel: pci 0000:01:00.0: reg 0x10: [mem 0xb3000000-0xb3ffffff]
Mar 05 17:17:18 archlinux kernel: pci 0000:01:00.0: reg 0x14: [mem 0x70000000-0x7fffffff 64bit pref]
Mar 05 17:17:18 archlinux kernel: pci 0000:01:00.0: reg 0x1c: [mem 0x80000000-0x81ffffff 64bit pref]
Mar 05 17:17:18 archlinux kernel: pci 0000:01:00.0: reg 0x24: [io  0x3000-0x307f]
Mar 05 17:17:18 archlinux kernel: pci 0000:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
Mar 05 17:17:18 archlinux kernel: pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
Mar 05 17:17:18 archlinux kernel: pci 0000:01:00.0: 63.008 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x8 link at 0000:00:01.0 (capable of 126.016 Gb/s with 8.0 GT/s PCIe x16 link)
Mar 05 17:17:18 archlinux kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
Mar 05 17:17:18 archlinux kernel: pci 0000:00:01.0:   bridge window [io  0x3000-0x3fff]
Mar 05 17:17:18 archlinux kernel: pci 0000:00:01.0:   bridge window [mem 0xb3000000-0xb3ffffff]
Mar 05 17:17:18 archlinux kernel: pci 0000:00:01.0:   bridge window [mem 0x70000000-0x81ffffff 64bit pref]
Mar 05 17:17:18 archlinux kernel: pci 0000:02:00.0: [8086:15ea] type 01 class 0x060400
Mar 05 17:17:18 archlinux kernel: pci 0000:02:00.0: enabling Extended Tags
Mar 05 17:17:18 archlinux kernel: pci 0000:02:00.0: supports D1 D2
Mar 05 17:17:18 archlinux kernel: pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Mar 05 17:17:18 archlinux kernel: pci 0000:02:00.0: PTM enabled, 4ns granularity
Mar 05 17:17:18 archlinux kernel: pci 0000:00:1c.0: PCI bridge to [bus 02-6b]
Mar 05 17:17:18 archlinux kernel: pci 0000:00:1c.0:   bridge window [mem 0x84000000-0xb20fffff]
Mar 05 17:17:18 archlinux kernel: pci 0000:00:1c.0:   bridge window [mem 0x6000000000-0x6049ffffff 64bit pref]
Mar 05 17:17:18 archlinux kernel: pci 0000:03:00.0: [8086:15ea] type 01 class 0x060400
Mar 05 17:17:18 archlinux kernel: pci 0000:03:00.0: enabling Extended Tags
Mar 05 17:17:18 archlinux kernel: pci 0000:03:00.0: supports D1 D2
Mar 05 17:17:18 archlinux kernel: pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Mar 05 17:17:18 archlinux kernel: pci 0000:03:01.0: [8086:15ea] type 01 class 0x060400
Mar 05 17:17:18 archlinux kernel: pci 0000:03:01.0: enabling Extended Tags
Mar 05 17:17:18 archlinux kernel: pci 0000:03:01.0: supports D1 D2
Mar 05 17:17:18 archlinux kernel: pci 0000:03:01.0: PME# supported from D0 D1 D2 D3hot D3cold
Mar 05 17:17:18 archlinux kernel: pci 0000:03:02.0: [8086:15ea] type 01 class 0x060400
Mar 05 17:17:18 archlinux kernel: pci 0000:03:02.0: enabling Extended Tags
Mar 05 17:17:18 archlinux kernel: pci 0000:03:02.0: supports D1 D2
Mar 05 17:17:18 archlinux kernel: pci 0000:03:02.0: PME# supported from D0 D1 D2 D3hot D3cold
Mar 05 17:17:18 archlinux kernel: pci 0000:03:04.0: [8086:15ea] type 01 class 0x060400
Mar 05 17:17:18 archlinux kernel: pci 0000:03:04.0: enabling Extended Tags
Mar 05 17:17:18 archlinux kernel: pci 0000:03:04.0: supports D1 D2
Mar 05 17:17:18 archlinux kernel: pci 0000:03:04.0: PME# supported from D0 D1 D2 D3hot D3cold
Mar 05 17:17:18 archlinux kernel: pci 0000:02:00.0: PCI bridge to [bus 03-6b]
Mar 05 17:17:18 archlinux kernel: pci 0000:02:00.0:   bridge window [mem 0x84000000-0xb1ffffff]
Mar 05 17:17:18 archlinux kernel: pci 0000:02:00.0:   bridge window [mem 0x6000000000-0x6049ffffff 64bit pref]
Mar 05 17:17:18 archlinux kernel: pci 0000:04:00.0: [8086:15eb] type 00 class 0x088000
Mar 05 17:17:18 archlinux kernel: pci 0000:04:00.0: reg 0x10: [mem 0xb1f00000-0xb1f3ffff]
Mar 05 17:17:18 archlinux kernel: pci 0000:04:00.0: reg 0x14: [mem 0xb1f40000-0xb1f40fff]
Mar 05 17:17:18 archlinux kernel: pci 0000:04:00.0: enabling Extended Tags
Mar 05 17:17:18 archlinux kernel: pci 0000:04:00.0: supports D1 D2
Mar 05 17:17:18 archlinux kernel: pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Mar 05 17:17:18 archlinux kernel: pci 0000:03:00.0: PCI bridge to [bus 04]
Mar 05 17:17:18 archlinux kernel: pci 0000:03:00.0:   bridge window [mem 0xb1f00000-0xb1ffffff]
Mar 05 17:17:18 archlinux kernel: pci 0000:03:01.0: PCI bridge to [bus 05-37]
Mar 05 17:17:18 archlinux kernel: pci 0000:03:01.0:   bridge window [mem 0x9b000000-0xb1efffff]
Mar 05 17:17:18 archlinux kernel: pci 0000:03:01.0:   bridge window [mem 0x6025000000-0x6049ffffff 64bit pref]
Mar 05 17:17:18 archlinux kernel: pci 0000:38:00.0: [8086:15ec] type 00 class 0x0c0330
Mar 05 17:17:18 archlinux kernel: pci 0000:38:00.0: reg 0x10: [mem 0x9af00000-0x9af0ffff]
Mar 05 17:17:18 archlinux kernel: pci 0000:38:00.0: enabling Extended Tags
Mar 05 17:17:18 archlinux kernel: pci 0000:38:00.0: supports D1 D2
Mar 05 17:17:18 archlinux kernel: pci 0000:38:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Mar 05 17:17:18 archlinux kernel: pci 0000:38:00.0: 8.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s PCIe x4 link at 0000:03:02.0 (capable of 31.504 Gb/s with 8.0 GT/s PCIe x4 link)
Mar 05 17:17:18 archlinux kernel: pci 0000:03:02.0: PCI bridge to [bus 38]
Mar 05 17:17:18 archlinux kernel: pci 0000:03:02.0:   bridge window [mem 0x9af00000-0x9affffff]
Mar 05 17:17:18 archlinux kernel: pci 0000:03:04.0: PCI bridge to [bus 39-6b]
Mar 05 17:17:18 archlinux kernel: pci 0000:03:04.0:   bridge window [mem 0x84000000-0x9aefffff]
Mar 05 17:17:18 archlinux kernel: pci 0000:03:04.0:   bridge window [mem 0x6000000000-0x6024ffffff 64bit pref]
Mar 05 17:17:18 archlinux kernel: pci 0000:6c:00.0: [1179:011a] type 00 class 0x010802
Mar 05 17:17:18 archlinux kernel: pci 0000:6c:00.0: reg 0x10: [mem 0xb4000000-0xb4003fff 64bit]
Mar 05 17:17:18 archlinux kernel: pci 0000:00:1d.0: PCI bridge to [bus 6c]
Mar 05 17:17:18 archlinux kernel: pci 0000:00:1d.0:   bridge window [mem 0xb4000000-0xb40fffff]
Mar 05 17:17:18 archlinux kernel: ACPI: EC: interrupt unblocked
Mar 05 17:17:18 archlinux kernel: ACPI: EC: event unblocked
Mar 05 17:17:18 archlinux kernel: ACPI: EC: EC_CMD/EC_SC=0x934, EC_DATA=0x930
Mar 05 17:17:18 archlinux kernel: ACPI: EC: GPE=0x6e
Mar 05 17:17:18 archlinux kernel: ACPI: \_SB_.PCI0.LPCB.ECDV: Boot DSDT EC initialization complete
Mar 05 17:17:18 archlinux kernel: ACPI: \_SB_.PCI0.LPCB.ECDV: EC: Used to handle transactions and events
Mar 05 17:17:18 archlinux kernel: iommu: Default domain type: Translated 
Mar 05 17:17:18 archlinux kernel: pci 0000:00:02.0: vgaarb: setting as boot VGA device
Mar 05 17:17:18 archlinux kernel: pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
Mar 05 17:17:18 archlinux kernel: pci 0000:00:02.0: vgaarb: bridge control possible
Mar 05 17:17:18 archlinux kernel: vgaarb: loaded
Mar 05 17:17:18 archlinux kernel: SCSI subsystem initialized
Mar 05 17:17:18 archlinux kernel: libata version 3.00 loaded.
Mar 05 17:17:18 archlinux kernel: ACPI: bus type USB registered
Mar 05 17:17:18 archlinux kernel: usbcore: registered new interface driver usbfs
Mar 05 17:17:18 archlinux kernel: usbcore: registered new interface driver hub
Mar 05 17:17:18 archlinux kernel: usbcore: registered new device driver usb
Mar 05 17:17:18 archlinux kernel: pps_core: LinuxPPS API ver. 1 registered
Mar 05 17:17:18 archlinux kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Mar 05 17:17:18 archlinux kernel: PTP clock support registered
Mar 05 17:17:18 archlinux kernel: EDAC MC: Ver: 3.0.0
Mar 05 17:17:18 archlinux kernel: Registered efivars operations
Mar 05 17:17:18 archlinux kernel: NetLabel: Initializing
Mar 05 17:17:18 archlinux kernel: NetLabel:  domain hash size = 128
Mar 05 17:17:18 archlinux kernel: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
Mar 05 17:17:18 archlinux kernel: NetLabel:  unlabeled traffic allowed by default
Mar 05 17:17:18 archlinux kernel: PCI: Using ACPI for IRQ routing
Mar 05 17:17:18 archlinux kernel: PCI: pci_cache_line_size set to 64 bytes
Mar 05 17:17:18 archlinux kernel: e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
Mar 05 17:17:18 archlinux kernel: e820: reserve RAM buffer [mem 0x4ea09000-0x4fffffff]
Mar 05 17:17:18 archlinux kernel: e820: reserve RAM buffer [mem 0x51032000-0x53ffffff]
Mar 05 17:17:18 archlinux kernel: e820: reserve RAM buffer [mem 0x5f6f7000-0x5fffffff]
Mar 05 17:17:18 archlinux kernel: e820: reserve RAM buffer [mem 0x6270e018-0x63ffffff]
Mar 05 17:17:18 archlinux kernel: e820: reserve RAM buffer [mem 0x62826000-0x63ffffff]
Mar 05 17:17:18 archlinux kernel: e820: reserve RAM buffer [mem 0x66000000-0x67ffffff]
Mar 05 17:17:18 archlinux kernel: e820: reserve RAM buffer [mem 0x88d800000-0x88fffffff]
Mar 05 17:17:18 archlinux kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
Mar 05 17:17:18 archlinux kernel: hpet0: 8 comparators, 64-bit 24.000000 MHz counter
Mar 05 17:17:18 archlinux kernel: clocksource: Switched to clocksource tsc-early
Mar 05 17:17:18 archlinux kernel: VFS: Disk quotas dquot_6.6.0
Mar 05 17:17:18 archlinux kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Mar 05 17:17:18 archlinux kernel: pnp: PnP ACPI init
Mar 05 17:17:18 archlinux kernel: system 00:00: [mem 0x40000000-0x403fffff] has been reserved
Mar 05 17:17:18 archlinux kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
Mar 05 17:17:18 archlinux kernel: system 00:01: [io  0x1800-0x18fe] has been reserved
Mar 05 17:17:18 archlinux kernel: system 00:01: [mem 0xfd000000-0xfd69ffff] has been reserved
Mar 05 17:17:18 archlinux kernel: system 00:01: [mem 0xfd6c0000-0xfd6cffff] has been reserved
Mar 05 17:17:18 archlinux kernel: system 00:01: [mem 0xfd6f0000-0xfdffffff] has been reserved
Mar 05 17:17:18 archlinux kernel: system 00:01: [mem 0xfe000000-0xfe01ffff] could not be reserved
Mar 05 17:17:18 archlinux kernel: system 00:01: [mem 0xfe200000-0xfe7fffff] has been reserved
Mar 05 17:17:18 archlinux kernel: system 00:01: [mem 0xff000000-0xffffffff] has been reserved
Mar 05 17:17:18 archlinux kernel: system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
Mar 05 17:17:18 archlinux kernel: system 00:02: [io  0x2000-0x20fe] has been reserved
Mar 05 17:17:18 archlinux kernel: system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
Mar 05 17:17:18 archlinux kernel: system 00:03: [io  0x0680-0x069f] has been reserved
Mar 05 17:17:18 archlinux kernel: system 00:03: [io  0x164e-0x164f] has been reserved
Mar 05 17:17:18 archlinux kernel: system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
Mar 05 17:17:18 archlinux kernel: pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
Mar 05 17:17:18 archlinux kernel: system 00:05: [io  0x1854-0x1857] has been reserved
Mar 05 17:17:18 archlinux kernel: system 00:05: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
Mar 05 17:17:18 archlinux kernel: pnp 00:06: Plug and Play ACPI device, IDs PNP0303 (active)
Mar 05 17:17:18 archlinux kernel: pnp 00:07: Plug and Play ACPI device, IDs DLL097e PNP0f13 (active)
Mar 05 17:17:18 archlinux kernel: system 00:08: [mem 0xfed10000-0xfed17fff] has been reserved
Mar 05 17:17:18 archlinux kernel: system 00:08: [mem 0xfed18000-0xfed18fff] has been reserved
Mar 05 17:17:18 archlinux kernel: system 00:08: [mem 0xfed19000-0xfed19fff] has been reserved
Mar 05 17:17:18 archlinux kernel: system 00:08: [mem 0xe0000000-0xefffffff] has been reserved
Mar 05 17:17:18 archlinux kernel: system 00:08: [mem 0xfed20000-0xfed3ffff] has been reserved
Mar 05 17:17:18 archlinux kernel: system 00:08: [mem 0xfed90000-0xfed93fff] has been reserved
Mar 05 17:17:18 archlinux kernel: system 00:08: [mem 0xfed45000-0xfed8ffff] has been reserved
Mar 05 17:17:18 archlinux kernel: system 00:08: [mem 0xfee00000-0xfeefffff] has been reserved
Mar 05 17:17:18 archlinux kernel: system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
Mar 05 17:17:18 archlinux kernel: system 00:09: [mem 0xfe038000-0xfe038fff] has been reserved
Mar 05 17:17:18 archlinux kernel: system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
Mar 05 17:17:18 archlinux kernel: pnp: PnP ACPI: found 10 devices
Mar 05 17:17:18 archlinux kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Mar 05 17:17:18 archlinux kernel: NET: Registered protocol family 2
Mar 05 17:17:18 archlinux kernel: tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
Mar 05 17:17:18 archlinux kernel: TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
Mar 05 17:17:18 archlinux kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
Mar 05 17:17:18 archlinux kernel: TCP: Hash tables configured (established 262144 bind 65536)
Mar 05 17:17:18 archlinux kernel: MPTCP token hash table entries: 32768 (order: 7, 786432 bytes, linear)
Mar 05 17:17:18 archlinux kernel: UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
Mar 05 17:17:18 archlinux kernel: UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
Mar 05 17:17:18 archlinux kernel: NET: Registered protocol family 1
Mar 05 17:17:18 archlinux kernel: NET: Registered protocol family 44
Mar 05 17:17:18 archlinux kernel: pci 0000:01:00.0: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
Mar 05 17:17:18 archlinux kernel: pci 0000:03:01.0: bridge window [io  0x1000-0x0fff] to [bus 05-37] add_size 1000
Mar 05 17:17:18 archlinux kernel: pci 0000:03:04.0: bridge window [io  0x1000-0x0fff] to [bus 39-6b] add_size 1000
Mar 05 17:17:18 archlinux kernel: pci 0000:02:00.0: bridge window [io  0x1000-0x0fff] to [bus 03-6b] add_size 2000
Mar 05 17:17:18 archlinux kernel: pci 0000:00:1c.0: bridge window [io  0x1000-0x0fff] to [bus 02-6b] add_size 3000
Mar 05 17:17:18 archlinux kernel: pci 0000:00:15.0: BAR 0: assigned [mem 0x4010000000-0x4010000fff 64bit]
Mar 05 17:17:18 archlinux kernel: pci 0000:00:15.1: BAR 0: assigned [mem 0x4010001000-0x4010001fff 64bit]
Mar 05 17:17:18 archlinux kernel: pci 0000:00:1c.0: BAR 13: assigned [io  0x5000-0x7fff]
Mar 05 17:17:18 archlinux kernel: pci 0000:00:1e.0: BAR 0: assigned [mem 0x4010002000-0x4010002fff 64bit]
Mar 05 17:17:18 archlinux kernel: pci 0000:01:00.0: BAR 6: no space for [mem size 0x00080000 pref]
Mar 05 17:17:18 archlinux kernel: pci 0000:01:00.0: BAR 6: failed to assign [mem size 0x00080000 pref]
Mar 05 17:17:18 archlinux kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
Mar 05 17:17:18 archlinux kernel: pci 0000:00:01.0:   bridge window [io  0x3000-0x3fff]
Mar 05 17:17:18 archlinux kernel: pci 0000:00:01.0:   bridge window [mem 0xb3000000-0xb3ffffff]
Mar 05 17:17:18 archlinux kernel: pci 0000:00:01.0:   bridge window [mem 0x70000000-0x81ffffff 64bit pref]
Mar 05 17:17:18 archlinux kernel: pci 0000:02:00.0: BAR 13: assigned [io  0x5000-0x6fff]
Mar 05 17:17:18 archlinux kernel: pci 0000:03:01.0: BAR 13: assigned [io  0x5000-0x5fff]
Mar 05 17:17:18 archlinux kernel: pci 0000:03:04.0: BAR 13: assigned [io  0x6000-0x6fff]
Mar 05 17:17:18 archlinux kernel: pci 0000:03:00.0: PCI bridge to [bus 04]
Mar 05 17:17:18 archlinux kernel: pci 0000:03:00.0:   bridge window [mem 0xb1f00000-0xb1ffffff]
Mar 05 17:17:18 archlinux kernel: pci 0000:03:01.0: PCI bridge to [bus 05-37]
Mar 05 17:17:18 archlinux kernel: pci 0000:03:01.0:   bridge window [io  0x5000-0x5fff]
Mar 05 17:17:18 archlinux kernel: pci 0000:03:01.0:   bridge window [mem 0x9b000000-0xb1efffff]
Mar 05 17:17:18 archlinux kernel: pci 0000:03:01.0:   bridge window [mem 0x6025000000-0x6049ffffff 64bit pref]
Mar 05 17:17:18 archlinux kernel: pci 0000:03:02.0: PCI bridge to [bus 38]
Mar 05 17:17:18 archlinux kernel: pci 0000:03:02.0:   bridge window [mem 0x9af00000-0x9affffff]
Mar 05 17:17:18 archlinux kernel: pci 0000:03:04.0: PCI bridge to [bus 39-6b]
Mar 05 17:17:18 archlinux kernel: pci 0000:03:04.0:   bridge window [io  0x6000-0x6fff]
Mar 05 17:17:18 archlinux kernel: pci 0000:03:04.0:   bridge window [mem 0x84000000-0x9aefffff]
Mar 05 17:17:18 archlinux kernel: pci 0000:03:04.0:   bridge window [mem 0x6000000000-0x6024ffffff 64bit pref]
Mar 05 17:17:18 archlinux kernel: pci 0000:02:00.0: PCI bridge to [bus 03-6b]
Mar 05 17:17:18 archlinux kernel: pci 0000:02:00.0:   bridge window [io  0x5000-0x6fff]
Mar 05 17:17:18 archlinux kernel: pci 0000:02:00.0:   bridge window [mem 0x84000000-0xb1ffffff]
Mar 05 17:17:18 archlinux kernel: pci 0000:02:00.0:   bridge window [mem 0x6000000000-0x6049ffffff 64bit pref]
Mar 05 17:17:18 archlinux kernel: pci 0000:00:1c.0: PCI bridge to [bus 02-6b]
Mar 05 17:17:18 archlinux kernel: pci 0000:00:1c.0:   bridge window [io  0x5000-0x7fff]
Mar 05 17:17:18 archlinux kernel: pci 0000:00:1c.0:   bridge window [mem 0x84000000-0xb20fffff]
Mar 05 17:17:18 archlinux kernel: pci 0000:00:1c.0:   bridge window [mem 0x6000000000-0x6049ffffff 64bit pref]
Mar 05 17:17:18 archlinux kernel: pci 0000:00:1d.0: PCI bridge to [bus 6c]
Mar 05 17:17:18 archlinux kernel: pci 0000:00:1d.0:   bridge window [mem 0xb4000000-0xb40fffff]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff window]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff window]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff window]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:00: resource 10 [mem 0x000cc000-0x000cffff window]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:00: resource 11 [mem 0x000d0000-0x000d3fff window]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:00: resource 12 [mem 0x000d4000-0x000d7fff window]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:00: resource 13 [mem 0x000d8000-0x000dbfff window]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:00: resource 14 [mem 0x000dc000-0x000dffff window]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:00: resource 15 [mem 0x000e0000-0x000e3fff window]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:00: resource 16 [mem 0x000e4000-0x000e7fff window]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:00: resource 17 [mem 0x000e8000-0x000ebfff window]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:00: resource 18 [mem 0x000ec000-0x000effff window]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:00: resource 19 [mem 0x000f0000-0x000fffff window]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:00: resource 20 [mem 0x6e800000-0xdfffffff window]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:00: resource 21 [mem 0x4000000000-0x7fffffffff window]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:00: resource 22 [mem 0xfc800000-0xfe7fffff window]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:01: resource 0 [io  0x3000-0x3fff]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:01: resource 1 [mem 0xb3000000-0xb3ffffff]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:01: resource 2 [mem 0x70000000-0x81ffffff 64bit pref]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:02: resource 0 [io  0x5000-0x7fff]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:02: resource 1 [mem 0x84000000-0xb20fffff]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:02: resource 2 [mem 0x6000000000-0x6049ffffff 64bit pref]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:03: resource 0 [io  0x5000-0x6fff]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:03: resource 1 [mem 0x84000000-0xb1ffffff]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:03: resource 2 [mem 0x6000000000-0x6049ffffff 64bit pref]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:04: resource 1 [mem 0xb1f00000-0xb1ffffff]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:05: resource 0 [io  0x5000-0x5fff]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:05: resource 1 [mem 0x9b000000-0xb1efffff]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:05: resource 2 [mem 0x6025000000-0x6049ffffff 64bit pref]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:38: resource 1 [mem 0x9af00000-0x9affffff]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:39: resource 0 [io  0x6000-0x6fff]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:39: resource 1 [mem 0x84000000-0x9aefffff]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:39: resource 2 [mem 0x6000000000-0x6024ffffff 64bit pref]
Mar 05 17:17:18 archlinux kernel: pci_bus 0000:6c: resource 1 [mem 0xb4000000-0xb40fffff]
Mar 05 17:17:18 archlinux kernel: pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
Mar 05 17:17:18 archlinux kernel: PCI: CLS 0 bytes, default 64
Mar 05 17:17:18 archlinux kernel: Trying to unpack rootfs image as initramfs...
Mar 05 17:17:18 archlinux kernel: Freeing initrd memory: 23356K
Mar 05 17:17:18 archlinux kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Mar 05 17:17:18 archlinux kernel: software IO TLB: mapped [mem 0x000000005b6f7000-0x000000005f6f7000] (64MB)
Mar 05 17:17:18 archlinux kernel: check: Scanning for low memory corruption every 60 seconds
Mar 05 17:17:18 archlinux kernel: Initialise system trusted keyrings
Mar 05 17:17:18 archlinux kernel: Key type blacklist registered
Mar 05 17:17:18 archlinux kernel: workingset: timestamp_bits=41 max_order=23 bucket_order=0
Mar 05 17:17:18 archlinux kernel: zbud: loaded
Mar 05 17:17:18 archlinux kernel: Key type asymmetric registered
Mar 05 17:17:18 archlinux kernel: Asymmetric key parser 'x509' registered
Mar 05 17:17:18 archlinux kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
Mar 05 17:17:18 archlinux kernel: io scheduler mq-deadline registered
Mar 05 17:17:18 archlinux kernel: io scheduler kyber registered
Mar 05 17:17:18 archlinux kernel: io scheduler bfq registered
Mar 05 17:17:18 archlinux kernel: atomic64_test: passed for x86-64 platform with CX8 and with SSE
Mar 05 17:17:18 archlinux kernel: pcieport 0000:00:01.0: PME: Signaling with IRQ 120
Mar 05 17:17:18 archlinux kernel: pcieport 0000:00:1c.0: PME: Signaling with IRQ 121
Mar 05 17:17:18 archlinux kernel: pcieport 0000:00:1c.0: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
Mar 05 17:17:18 archlinux kernel: pcieport 0000:00:1d.0: PME: Signaling with IRQ 122
Mar 05 17:17:18 archlinux kernel: pcieport 0000:03:01.0: pciehp: Slot #1 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
Mar 05 17:17:18 archlinux kernel: pcieport 0000:03:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
Mar 05 17:17:18 archlinux kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Mar 05 17:17:18 archlinux kernel: efifb: probing for efifb
Mar 05 17:17:18 archlinux kernel: efifb: framebuffer at 0x4000000000, using 36000k, total 36000k
Mar 05 17:17:18 archlinux kernel: efifb: mode is 3840x2400x32, linelength=15360, pages=1
Mar 05 17:17:18 archlinux kernel: efifb: scrolling: redraw
Mar 05 17:17:18 archlinux kernel: efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
Mar 05 17:17:18 archlinux kernel: Console: switching to colour frame buffer device 240x75
Mar 05 17:17:18 archlinux kernel: fb0: EFI VGA frame buffer device
Mar 05 17:17:18 archlinux kernel: intel_idle: MWAIT substates: 0x11142120
Mar 05 17:17:18 archlinux kernel: Monitor-Mwait will be used to enter C-1 state
Mar 05 17:17:18 archlinux kernel: Monitor-Mwait will be used to enter C-2 state
Mar 05 17:17:18 archlinux kernel: Monitor-Mwait will be used to enter C-3 state
Mar 05 17:17:18 archlinux kernel: ACPI: \_SB_.PR00: Found 3 idle states
Mar 05 17:17:18 archlinux kernel: intel_idle: v0.5.1 model 0xA5
Mar 05 17:17:18 archlinux kernel: intel_idle: Local APIC timer is reliable in all C-states
Mar 05 17:17:18 archlinux kernel: ACPI: AC Adapter [AC] (on-line)
Mar 05 17:17:18 archlinux kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
Mar 05 17:17:18 archlinux kernel: ACPI: Lid Switch [LID0]
Mar 05 17:17:18 archlinux kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
Mar 05 17:17:18 archlinux kernel: ACPI: Power Button [PBTN]
Mar 05 17:17:18 archlinux kernel: Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Mar 05 17:17:18 archlinux kernel: serial 0000:00:13.0: enabling device (0000 -> 0002)
Mar 05 17:17:18 archlinux kernel: Non-volatile memory driver v1.3
Mar 05 17:17:18 archlinux kernel: AMD-Vi: AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
Mar 05 17:17:18 archlinux kernel: AMD-Vi: AMD IOMMUv2 functionality not available on this system
Mar 05 17:17:18 archlinux kernel: nvme 0000:6c:00.0: platform quirk: setting simple suspend
Mar 05 17:17:18 archlinux kernel: nvme nvme0: pci function 0000:6c:00.0
Mar 05 17:17:18 archlinux kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Mar 05 17:17:18 archlinux kernel: ehci-pci: EHCI PCI platform driver
Mar 05 17:17:18 archlinux kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Mar 05 17:17:18 archlinux kernel: ohci-pci: OHCI PCI platform driver
Mar 05 17:17:18 archlinux kernel: uhci_hcd: USB Universal Host Controller Interface driver
Mar 05 17:17:18 archlinux kernel: usbcore: registered new interface driver usbserial_generic
Mar 05 17:17:18 archlinux kernel: usbserial: USB Serial support registered for generic
Mar 05 17:17:18 archlinux kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
Mar 05 17:17:18 archlinux kernel: i8042: Warning: Keylock active
Mar 05 17:17:18 archlinux kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Mar 05 17:17:18 archlinux kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
Mar 05 17:17:18 archlinux kernel: rtc_cmos 00:04: RTC can wake from S4
Mar 05 17:17:18 archlinux kernel: rtc_cmos 00:04: registered as rtc0
Mar 05 17:17:18 archlinux kernel: rtc_cmos 00:04: setting system clock to 2021-03-06T01:17:18 UTC (1614993438)
Mar 05 17:17:18 archlinux kernel: rtc_cmos 00:04: alarms up to one month, y3k, 242 bytes nvram
Mar 05 17:17:18 archlinux kernel: intel_pstate: Intel P-state driver initializing
Mar 05 17:17:18 archlinux kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
Mar 05 17:17:18 archlinux kernel: intel_pstate: HWP enabled
Mar 05 17:17:18 archlinux kernel: ledtrig-cpu: registered to indicate activity on CPUs
Mar 05 17:17:18 archlinux kernel: nvme nvme0: 12/0/0 default/read/poll queues
Mar 05 17:17:18 archlinux kernel:  nvme0n1: p1 p2 p5
Mar 05 17:17:18 archlinux kernel: pstore: Registered efi as persistent store backend
Mar 05 17:17:18 archlinux kernel: hid: raw HID events driver (C) Jiri Kosina
Mar 05 17:17:18 archlinux kernel: intel_pmc_core INT33A1:00:  initialized
Mar 05 17:17:18 archlinux kernel: drop_monitor: Initializing network drop monitor service
Mar 05 17:17:18 archlinux kernel: Initializing XFRM netlink socket
Mar 05 17:17:18 archlinux kernel: NET: Registered protocol family 10
Mar 05 17:17:18 archlinux kernel: Segment Routing with IPv6
Mar 05 17:17:18 archlinux kernel: RPL Segment Routing with IPv6
Mar 05 17:17:18 archlinux kernel: NET: Registered protocol family 17
Mar 05 17:17:18 archlinux kernel: microcode: sig=0xa0652, pf=0x20, revision=0xe0
Mar 05 17:17:18 archlinux kernel: microcode: Microcode Update Driver: v2.2.
Mar 05 17:17:18 archlinux kernel: IPI shorthand broadcast: enabled
Mar 05 17:17:18 archlinux kernel: sched_clock: Marking stable (590018778, 379655)->(595085037, -4686604)
Mar 05 17:17:18 archlinux kernel: registered taskstats version 1
Mar 05 17:17:18 archlinux kernel: Loading compiled-in X.509 certificates
Mar 05 17:17:18 archlinux kernel: Loaded X.509 cert 'Build time autogenerated kernel key: 298c74e799b1da1e04953d75dc402ed94591c68e'
Mar 05 17:17:18 archlinux kernel: zswap: loaded using pool lz4/z3fold
Mar 05 17:17:18 archlinux kernel: Key type ._fscrypt registered
Mar 05 17:17:18 archlinux kernel: Key type .fscrypt registered
Mar 05 17:17:18 archlinux kernel: Key type fscrypt-provisioning registered
Mar 05 17:17:18 archlinux kernel: pstore: Using crash dump compression: zstd
Mar 05 17:17:18 archlinux kernel: PM:   Magic number: 13:253:255
Mar 05 17:17:18 archlinux kernel: acpi device:94: hash matches
Mar 05 17:17:18 archlinux kernel: memory memory129: hash matches
Mar 05 17:17:18 archlinux kernel: RAS: Correctable Errors collector initialized.
Mar 05 17:17:18 archlinux kernel: battery: ACPI: Battery Slot [BAT0] (battery present)
Mar 05 17:17:18 archlinux kernel: Freeing unused decrypted memory: 2036K
Mar 05 17:17:18 archlinux kernel: Freeing unused kernel image (initmem) memory: 1704K
Mar 05 17:17:18 archlinux kernel: Write protecting the kernel read-only data: 26624k
Mar 05 17:17:18 archlinux kernel: Freeing unused kernel image (text/rodata gap) memory: 2036K
Mar 05 17:17:18 archlinux kernel: Freeing unused kernel image (rodata/data gap) memory: 1432K
Mar 05 17:17:18 archlinux kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Mar 05 17:17:18 archlinux kernel: rodata_test: all tests were successful
Mar 05 17:17:18 archlinux kernel: Run /init as init process
Mar 05 17:17:18 archlinux kernel:   with arguments:
Mar 05 17:17:18 archlinux kernel:     /init
Mar 05 17:17:18 archlinux kernel:   with environment:
Mar 05 17:17:18 archlinux kernel:     HOME=/
Mar 05 17:17:18 archlinux kernel:     TERM=linux
Mar 05 17:17:18 archlinux kernel: random: crng init done
Mar 05 17:17:18 archlinux systemd[1]: Successfully credited entropy passed from boot loader.
Mar 05 17:17:18 archlinux systemd[1]: systemd 247.3-1-arch running in system mode. (+PAM +AUDIT -SELINUX -IMA -APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +ZSTD +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=hybrid)
Mar 05 17:17:18 archlinux systemd[1]: Detected architecture x86-64.
Mar 05 17:17:18 archlinux systemd[1]: Running in initial RAM disk.
Mar 05 17:17:18 archlinux systemd[1]: Initializing machine ID from random generator.
Mar 05 17:17:18 archlinux systemd[1]: Queued start job for default target Initrd Default Target.
Mar 05 17:17:18 archlinux systemd[1]: Created slice system-systemd\x2dcryptsetup.slice.
Mar 05 17:17:18 archlinux systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
Mar 05 17:17:18 archlinux systemd[1]: Reached target Local File Systems.
Mar 05 17:17:18 archlinux systemd[1]: Reached target Paths.
Mar 05 17:17:18 archlinux systemd[1]: Reached target Slices.
Mar 05 17:17:18 archlinux systemd[1]: Reached target Swap.
Mar 05 17:17:18 archlinux systemd[1]: Reached target Timers.
Mar 05 17:17:18 archlinux systemd[1]: Listening on Journal Audit Socket.
Mar 05 17:17:18 archlinux systemd[1]: Listening on Journal Socket (/dev/log).
Mar 05 17:17:18 archlinux systemd[1]: Listening on Journal Socket.
Mar 05 17:17:18 archlinux systemd[1]: Listening on udev Control Socket.
Mar 05 17:17:18 archlinux systemd[1]: Listening on udev Kernel Socket.
Mar 05 17:17:18 archlinux systemd[1]: Reached target Sockets.
Mar 05 17:17:18 archlinux systemd[1]: Starting Create list of static device nodes for the current kernel...
Mar 05 17:17:18 archlinux systemd[1]: Starting Journal Service...
Mar 05 17:17:18 archlinux systemd[1]: Starting Load Kernel Modules...
Mar 05 17:17:18 archlinux systemd[1]: Starting Coldplug All udev Devices...
Mar 05 17:17:18 archlinux systemd[1]: Finished Create list of static device nodes for the current kernel.
Mar 05 17:17:18 archlinux systemd[1]: Starting Create Static Device Nodes in /dev...
Mar 05 17:17:18 archlinux kernel: usbcore: registered new interface driver usbhid
Mar 05 17:17:18 archlinux kernel: usbhid: USB HID core driver
Mar 05 17:17:18 archlinux systemd[1]: Finished Load Kernel Modules.
Mar 05 17:17:18 archlinux systemd[1]: Finished Create Static Device Nodes in /dev.
Mar 05 17:17:18 archlinux systemd[1]: Starting Rule-based Manager for Device Events and Files...
Mar 05 17:17:18 archlinux systemd[1]: Started Rule-based Manager for Device Events and Files.
Mar 05 17:17:18 archlinux kernel: audit: type=1130 audit(1614993438.733:2): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udevd comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:18 archlinux systemd-journald[193]: Journal started
Mar 05 17:17:18 archlinux systemd-journald[193]: Runtime Journal (/run/log/journal/b8b883064ad148dbbb8eac9baa8041de) is 8.0M, max 637.0M, 629.0M free.
Mar 05 17:17:18 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udevd comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:18 archlinux systemd-modules-load[194]: Inserted module 'usbhid'
Mar 05 17:17:18 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journald comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:18 archlinux systemd-modules-load[194]: Failed to find module 'xhci_hcd'
Mar 05 17:17:18 archlinux systemd[1]: Started Journal Service.
Mar 05 17:17:18 archlinux kernel: audit: type=1130 audit(1614993438.749:3): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journald comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:18 archlinux systemd[1]: Finished Coldplug All udev Devices.
Mar 05 17:17:18 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udev-trigger comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:18 archlinux kernel: audit: type=1130 audit(1614993438.759:4): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udev-trigger comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:18 archlinux kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Mar 05 17:17:18 archlinux kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
Mar 05 17:17:18 archlinux kernel: xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x110 quirks 0x0000000000009810
Mar 05 17:17:18 archlinux kernel: xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
Mar 05 17:17:18 archlinux kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
Mar 05 17:17:18 archlinux kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Mar 05 17:17:18 archlinux kernel: usb usb1: Product: xHCI Host Controller
Mar 05 17:17:18 archlinux kernel: usb usb1: Manufacturer: Linux 5.10.16-arch1-1 xhci-hcd
Mar 05 17:17:18 archlinux kernel: usb usb1: SerialNumber: 0000:00:14.0
Mar 05 17:17:18 archlinux kernel: hub 1-0:1.0: USB hub found
Mar 05 17:17:18 archlinux kernel: hub 1-0:1.0: 16 ports detected
Mar 05 17:17:18 archlinux kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Mar 05 17:17:18 archlinux kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
Mar 05 17:17:18 archlinux kernel: xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
Mar 05 17:17:18 archlinux kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
Mar 05 17:17:18 archlinux kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Mar 05 17:17:18 archlinux kernel: usb usb2: Product: xHCI Host Controller
Mar 05 17:17:18 archlinux kernel: usb usb2: Manufacturer: Linux 5.10.16-arch1-1 xhci-hcd
Mar 05 17:17:18 archlinux kernel: usb usb2: SerialNumber: 0000:00:14.0
Mar 05 17:17:18 archlinux kernel: hub 2-0:1.0: USB hub found
Mar 05 17:17:18 archlinux kernel: hub 2-0:1.0: 10 ports detected
Mar 05 17:17:18 archlinux kernel: usb: port power management may be unreliable
Mar 05 17:17:18 archlinux kernel: xhci_hcd 0000:38:00.0: xHCI Host Controller
Mar 05 17:17:18 archlinux kernel: xhci_hcd 0000:38:00.0: new USB bus registered, assigned bus number 3
Mar 05 17:17:18 archlinux kernel: xhci_hcd 0000:38:00.0: hcc params 0x200077c1 hci version 0x110 quirks 0x0000000200009810
Mar 05 17:17:18 archlinux kernel: usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
Mar 05 17:17:18 archlinux kernel: usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Mar 05 17:17:18 archlinux kernel: usb usb3: Product: xHCI Host Controller
Mar 05 17:17:18 archlinux kernel: usb usb3: Manufacturer: Linux 5.10.16-arch1-1 xhci-hcd
Mar 05 17:17:18 archlinux kernel: usb usb3: SerialNumber: 0000:38:00.0
Mar 05 17:17:18 archlinux kernel: hub 3-0:1.0: USB hub found
Mar 05 17:17:18 archlinux kernel: hub 3-0:1.0: 2 ports detected
Mar 05 17:17:18 archlinux kernel: xhci_hcd 0000:38:00.0: xHCI Host Controller
Mar 05 17:17:18 archlinux kernel: xhci_hcd 0000:38:00.0: new USB bus registered, assigned bus number 4
Mar 05 17:17:18 archlinux kernel: xhci_hcd 0000:38:00.0: Host supports USB 3.1 Enhanced SuperSpeed
Mar 05 17:17:18 archlinux kernel: usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
Mar 05 17:17:18 archlinux kernel: usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Mar 05 17:17:18 archlinux kernel: usb usb4: Product: xHCI Host Controller
Mar 05 17:17:18 archlinux kernel: usb usb4: Manufacturer: Linux 5.10.16-arch1-1 xhci-hcd
Mar 05 17:17:18 archlinux kernel: usb usb4: SerialNumber: 0000:38:00.0
Mar 05 17:17:18 archlinux kernel: hub 4-0:1.0: USB hub found
Mar 05 17:17:18 archlinux kernel: hub 4-0:1.0: 2 ports detected
Mar 05 17:17:18 archlinux kernel: cryptd: max_cpu_qlen set to 1000
Mar 05 17:17:18 archlinux kernel: AVX2 version of gcm_enc/dec engaged.
Mar 05 17:17:18 archlinux kernel: AES CTR mode by8 optimization enabled
Mar 05 17:17:18 archlinux systemd[1]: Found device KXG60ZNV512G NVMe KIOXIA 512GB 2.
Mar 05 17:17:18 archlinux systemd[1]: Starting Cryptography Setup for cryptlvm...
Mar 05 17:17:18 archlinux systemd-cryptsetup[248]: WARNING: Locking directory /run/cryptsetup is missing!
Mar 05 17:17:18 archlinux kernel: device-mapper: uevent: version 1.0.3
Mar 05 17:17:18 archlinux kernel: device-mapper: ioctl: 4.43.0-ioctl (2020-10-01) initialised: dm-devel@redhat.com
Mar 05 17:17:18 archlinux systemd[1]: Started Dispatch Password Requests to Console.
Mar 05 17:17:18 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-ask-password-console comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:18 archlinux kernel: audit: type=1130 audit(1614993438.803:5): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-ask-password-console comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:19 archlinux kernel: usb 1-3: new full-speed USB device number 2 using xhci_hcd
Mar 05 17:17:19 archlinux kernel: usb 1-3: New USB device found, idVendor=046d, idProduct=c52b, bcdDevice=12.03
Mar 05 17:17:19 archlinux kernel: usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Mar 05 17:17:19 archlinux kernel: usb 1-3: Product: USB Receiver
Mar 05 17:17:19 archlinux kernel: usb 1-3: Manufacturer: Logitech
Mar 05 17:17:19 archlinux kernel: input: Logitech USB Receiver as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.0/0003:046D:C52B.0001/input/input4
Mar 05 17:17:19 archlinux kernel: hid-generic 0003:046D:C52B.0001: input,hidraw0: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:00:14.0-3/input0
Mar 05 17:17:19 archlinux kernel: input: Logitech USB Receiver Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.1/0003:046D:C52B.0002/input/input5
Mar 05 17:17:19 archlinux kernel: input: Logitech USB Receiver Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.1/0003:046D:C52B.0002/input/input6
Mar 05 17:17:19 archlinux kernel: input: Logitech USB Receiver System Control as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.1/0003:046D:C52B.0002/input/input7
Mar 05 17:17:19 archlinux kernel: hid-generic 0003:046D:C52B.0002: input,hiddev96,hidraw1: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:00:14.0-3/input1
Mar 05 17:17:19 archlinux kernel: hid-generic 0003:046D:C52B.0003: hiddev97,hidraw2: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:14.0-3/input2
Mar 05 17:17:19 archlinux kernel: tsc: Refined TSC clocksource calibration: 2591.993 MHz
Mar 05 17:17:19 archlinux kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x255cb052b3b, max_idle_ns: 440795338616 ns
Mar 05 17:17:19 archlinux kernel: clocksource: Switched to clocksource tsc
Mar 05 17:17:19 archlinux kernel: usb 1-10: new full-speed USB device number 3 using xhci_hcd
Mar 05 17:17:19 archlinux kernel: usb 1-10: New USB device found, idVendor=27c6, idProduct=533c, bcdDevice= 1.00
Mar 05 17:17:19 archlinux kernel: usb 1-10: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Mar 05 17:17:19 archlinux kernel: usb 1-10: Product: FingerPrint
Mar 05 17:17:19 archlinux kernel: usb 1-10: Manufacturer: Goodix
Mar 05 17:17:19 archlinux kernel: logitech-djreceiver 0003:046D:C52B.0003: hiddev96,hidraw0: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:14.0-3/input2
Mar 05 17:17:19 archlinux kernel: usb 1-11: new high-speed USB device number 4 using xhci_hcd
Mar 05 17:17:19 archlinux kernel: input: Logitech Wireless Device PID:2010 Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:2010.0004/input/input9
Mar 05 17:17:19 archlinux kernel: input: Logitech Wireless Device PID:2010 Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:2010.0004/input/input10
Mar 05 17:17:19 archlinux kernel: input: Logitech Wireless Device PID:2010 System Control as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:2010.0004/input/input11
Mar 05 17:17:19 archlinux kernel: hid-generic 0003:046D:2010.0004: input,hidraw1: USB HID v1.11 Keyboard [Logitech Wireless Device PID:2010] on usb-0000:00:14.0-3/input2:1
Mar 05 17:17:19 archlinux kernel: input: Logitech Wireless Device PID:101a Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:101A.0005/input/input15
Mar 05 17:17:19 archlinux kernel: hid-generic 0003:046D:101A.0005: input,hidraw2: USB HID v1.11 Mouse [Logitech Wireless Device PID:101a] on usb-0000:00:14.0-3/input2:2
Mar 05 17:17:19 archlinux kernel: input: Logitech Wireless Device PID:406d Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:406D.0006/input/input19
Mar 05 17:17:19 archlinux kernel: hid-generic 0003:046D:406D.0006: input,hidraw3: USB HID v1.11 Mouse [Logitech Wireless Device PID:406d] on usb-0000:00:14.0-3/input2:3
Mar 05 17:17:19 archlinux kernel: input: Logitech Wireless Device PID:200a Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:200A.0007/input/input23
Mar 05 17:17:19 archlinux kernel: input: Logitech Wireless Device PID:200a Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:200A.0007/input/input24
Mar 05 17:17:19 archlinux kernel: input: Logitech Wireless Device PID:200a System Control as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:200A.0007/input/input25
Mar 05 17:17:19 archlinux kernel: hid-generic 0003:046D:200A.0007: input,hidraw4: USB HID v1.11 Keyboard [Logitech Wireless Device PID:200a] on usb-0000:00:14.0-3/input2:4
Mar 05 17:17:19 archlinux kernel: usb 1-11: New USB device found, idVendor=0bda, idProduct=5510, bcdDevice=91.79
Mar 05 17:17:19 archlinux kernel: usb 1-11: New USB device strings: Mfr=3, Product=1, SerialNumber=2
Mar 05 17:17:19 archlinux kernel: usb 1-11: Product: Integrated_Webcam_HD
Mar 05 17:17:19 archlinux kernel: usb 1-11: Manufacturer: CN02FP438LG0009GA9B8A02
Mar 05 17:17:19 archlinux kernel: usb 1-11: SerialNumber: 200901010001
Mar 05 17:17:20 archlinux kernel: input: Logitech K800 as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:2010.0004/input/input29
Mar 05 17:17:20 archlinux kernel: logitech-hidpp-device 0003:046D:2010.0004: input,hidraw1: USB HID v1.11 Keyboard [Logitech K800] on usb-0000:00:14.0-3/input2:1
Mar 05 17:17:20 archlinux kernel: usb 1-14: new full-speed USB device number 5 using xhci_hcd
Mar 05 17:17:20 archlinux kernel: input: Logitech Performance MX as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:101A.0005/input/input30
Mar 05 17:17:20 archlinux kernel: logitech-hidpp-device 0003:046D:101A.0005: input,hidraw2: USB HID v1.11 Mouse [Logitech Performance MX] on usb-0000:00:14.0-3/input2:2
Mar 05 17:17:20 archlinux kernel: input: Logitech M705 as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:406D.0006/input/input31
Mar 05 17:17:20 archlinux kernel: logitech-hidpp-device 0003:046D:406D.0006: input,hidraw3: USB HID v1.11 Mouse [Logitech M705] on usb-0000:00:14.0-3/input2:3
Mar 05 17:17:20 archlinux kernel: usb 1-14: New USB device found, idVendor=8087, idProduct=0026, bcdDevice= 0.02
Mar 05 17:17:20 archlinux kernel: usb 1-14: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Mar 05 17:17:20 archlinux kernel: input: Logitech K350 as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:200A.0007/input/input32
Mar 05 17:17:20 archlinux kernel: logitech-hidpp-device 0003:046D:200A.0007: input,hidraw4: USB HID v1.11 Keyboard [Logitech K350] on usb-0000:00:14.0-3/input2:4
Mar 05 17:17:43 archlinux systemd-cryptsetup[248]: Set cipher aes, mode xts-plain64, key size 512 bits for device /dev/disk/by-uuid/4833f4ef-725f-47aa-897f-d5e672fb236b.
Mar 05 17:17:45 archlinux kernel: Key type encrypted registered
Mar 05 17:17:45 archlinux systemd[1]: Created slice system-lvm2\x2dpvscan.slice.
Mar 05 17:17:45 archlinux systemd[1]: Starting LVM event activation on device 254:0...
Mar 05 17:17:45 archlinux systemd[1]: Finished Cryptography Setup for cryptlvm.
Mar 05 17:17:45 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-cryptsetup@cryptlvm comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:45 archlinux systemd[1]: Reached target Local Encrypted Volumes.
Mar 05 17:17:45 archlinux systemd[1]: Reached target System Initialization.
Mar 05 17:17:45 archlinux systemd[1]: Reached target Basic System.
Mar 05 17:17:45 archlinux kernel: audit: type=1130 audit(1614993465.642:6): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-cryptsetup@cryptlvm comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:45 archlinux lvm[375]:   pvscan[375] PV /dev/mapper/cryptlvm online, VG Arch is complete.
Mar 05 17:17:45 archlinux lvm[375]:   pvscan[375] VG Arch run autoactivation.
Mar 05 17:17:45 archlinux lvm[375]:   2 logical volume(s) in volume group "Arch" now active
Mar 05 17:17:45 archlinux systemd[1]: Found device /dev/Arch/OS.
Mar 05 17:17:45 archlinux systemd[1]: Reached target Initrd Root Device.
Mar 05 17:17:45 archlinux systemd[1]: Starting File System Check on /dev/Arch/OS...
Mar 05 17:17:45 archlinux systemd-fsck[386]: /dev/mapper/Arch-OS: clean, 674619/30629888 files, 11584105/122514432 blocks
Mar 05 17:17:45 archlinux systemd[1]: Finished File System Check on /dev/Arch/OS.
Mar 05 17:17:45 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck-root comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:45 archlinux systemd[1]: Mounting /sysroot...
Mar 05 17:17:45 archlinux kernel: audit: type=1130 audit(1614993465.672:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck-root comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:45 archlinux systemd[1]: Mounted /sysroot.
Mar 05 17:17:45 archlinux systemd[1]: Reached target Initrd Root File System.
Mar 05 17:17:45 archlinux systemd[1]: Starting Reload Configuration from the Real Root...
Mar 05 17:17:45 archlinux kernel: EXT4-fs (dm-2): mounted filesystem with ordered data mode. Opts: (null)
Mar 05 17:17:45 archlinux systemd[1]: Reloading.
Mar 05 17:17:45 archlinux audit: BPF prog-id=4 op=UNLOAD
Mar 05 17:17:45 archlinux audit: BPF prog-id=3 op=UNLOAD
Mar 05 17:17:45 archlinux audit: BPF prog-id=6 op=UNLOAD
Mar 05 17:17:45 archlinux audit: BPF prog-id=5 op=UNLOAD
Mar 05 17:17:45 archlinux kernel: audit: type=1334 audit(1614993465.702:8): prog-id=4 op=UNLOAD
Mar 05 17:17:45 archlinux kernel: audit: type=1334 audit(1614993465.702:9): prog-id=3 op=UNLOAD
Mar 05 17:17:45 archlinux kernel: audit: type=1334 audit(1614993465.702:10): prog-id=6 op=UNLOAD
Mar 05 17:17:45 archlinux kernel: audit: type=1334 audit(1614993465.702:11): prog-id=5 op=UNLOAD
Mar 05 17:17:45 archlinux audit: BPF prog-id=7 op=LOAD
Mar 05 17:17:45 archlinux audit: BPF prog-id=8 op=LOAD
Mar 05 17:17:45 archlinux kernel: audit: type=1334 audit(1614993465.749:12): prog-id=7 op=LOAD
Mar 05 17:17:45 archlinux kernel: audit: type=1334 audit(1614993465.749:13): prog-id=8 op=LOAD
Mar 05 17:17:45 archlinux audit: BPF prog-id=9 op=LOAD
Mar 05 17:17:45 archlinux audit: BPF prog-id=10 op=LOAD
Mar 05 17:17:45 archlinux systemd[1]: Finished LVM event activation on device 254:0.
Mar 05 17:17:45 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lvm2-pvscan@254:0 comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:45 archlinux kernel: audit: type=1334 audit(1614993465.755:14): prog-id=9 op=LOAD
Mar 05 17:17:45 archlinux kernel: audit: type=1334 audit(1614993465.755:15): prog-id=10 op=LOAD
Mar 05 17:17:45 archlinux systemd[1]: initrd-parse-etc.service: Succeeded.
Mar 05 17:17:45 archlinux systemd[1]: Finished Reload Configuration from the Real Root.
Mar 05 17:17:45 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=initrd-parse-etc comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:45 archlinux audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=initrd-parse-etc comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:45 archlinux systemd[1]: Reached target Initrd File Systems.
Mar 05 17:17:45 archlinux systemd[1]: Reached target Initrd Default Target.
Mar 05 17:17:45 archlinux systemd[1]: Starting Cleaning Up and Shutting Down Daemons...
Mar 05 17:17:45 archlinux systemd[1]: Stopped target Initrd Default Target.
Mar 05 17:17:45 archlinux systemd[1]: Stopped target Basic System.
Mar 05 17:17:45 archlinux systemd[1]: Stopped target Initrd Root Device.
Mar 05 17:17:45 archlinux systemd[1]: Stopped target Paths.
Mar 05 17:17:45 archlinux systemd[1]: Stopped target Slices.
Mar 05 17:17:45 archlinux systemd[1]: Stopped target Sockets.
Mar 05 17:17:45 archlinux systemd[1]: Stopped target System Initialization.
Mar 05 17:17:45 archlinux systemd[1]: Stopped target Local Encrypted Volumes.
Mar 05 17:17:45 archlinux systemd[1]: Stopped target Local File Systems.
Mar 05 17:17:45 archlinux systemd[1]: Stopped target Swap.
Mar 05 17:17:45 archlinux systemd[1]: Stopped target Timers.
Mar 05 17:17:45 archlinux systemd[1]: Stopping LVM event activation on device 254:0...
Mar 05 17:17:45 archlinux systemd[1]: Stopping Dispatch Password Requests to Console...
Mar 05 17:17:45 archlinux systemd[1]: systemd-modules-load.service: Succeeded.
Mar 05 17:17:45 archlinux systemd[1]: Stopped Load Kernel Modules.
Mar 05 17:17:45 archlinux audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-modules-load comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:45 archlinux systemd[1]: systemd-udev-trigger.service: Succeeded.
Mar 05 17:17:45 archlinux systemd[1]: Stopped Coldplug All udev Devices.
Mar 05 17:17:45 archlinux audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udev-trigger comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:45 archlinux systemd[1]: systemd-ask-password-console.service: Succeeded.
Mar 05 17:17:45 archlinux systemd[1]: Stopped Dispatch Password Requests to Console.
Mar 05 17:17:45 archlinux audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-ask-password-console comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:45 archlinux systemd[1]: systemd-ask-password-console.path: Succeeded.
Mar 05 17:17:45 archlinux lvm[408]:   pvscan[408] PV /dev/mapper/cryptlvm online.
Mar 05 17:17:45 archlinux systemd[1]: Stopped Dispatch Password Requests to Console Directory Watch.
Mar 05 17:17:45 archlinux systemd[1]: initrd-cleanup.service: Succeeded.
Mar 05 17:17:45 archlinux systemd[1]: Finished Cleaning Up and Shutting Down Daemons.
Mar 05 17:17:45 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=initrd-cleanup comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:45 archlinux audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=initrd-cleanup comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:45 archlinux systemd[1]: lvm2-pvscan@254:0.service: Succeeded.
Mar 05 17:17:45 archlinux systemd[1]: Stopped LVM event activation on device 254:0.
Mar 05 17:17:45 archlinux audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lvm2-pvscan@254:0 comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:45 archlinux systemd[1]: Stopping Rule-based Manager for Device Events and Files...
Mar 05 17:17:45 archlinux systemd[1]: systemd-udevd.service: Succeeded.
Mar 05 17:17:45 archlinux systemd[1]: Stopped Rule-based Manager for Device Events and Files.
Mar 05 17:17:45 archlinux audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udevd comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:45 archlinux systemd[1]: systemd-udevd-control.socket: Succeeded.
Mar 05 17:17:45 archlinux systemd[1]: Closed udev Control Socket.
Mar 05 17:17:45 archlinux systemd[1]: systemd-udevd-kernel.socket: Succeeded.
Mar 05 17:17:45 archlinux systemd[1]: Closed udev Kernel Socket.
Mar 05 17:17:45 archlinux systemd[1]: Starting Cleanup udev Database...
Mar 05 17:17:45 archlinux systemd[1]: systemd-tmpfiles-setup-dev.service: Succeeded.
Mar 05 17:17:45 archlinux systemd[1]: Stopped Create Static Device Nodes in /dev.
Mar 05 17:17:45 archlinux audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:45 archlinux systemd[1]: kmod-static-nodes.service: Succeeded.
Mar 05 17:17:45 archlinux systemd[1]: Stopped Create list of static device nodes for the current kernel.
Mar 05 17:17:45 archlinux audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=kmod-static-nodes comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:45 archlinux systemd[1]: initrd-udevadm-cleanup-db.service: Succeeded.
Mar 05 17:17:45 archlinux systemd[1]: Finished Cleanup udev Database.
Mar 05 17:17:45 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=initrd-udevadm-cleanup-db comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:45 archlinux audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=initrd-udevadm-cleanup-db comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:45 archlinux systemd[1]: Reached target Switch Root.
Mar 05 17:17:45 archlinux systemd[1]: Starting Switch Root...
Mar 05 17:17:45 archlinux systemd[1]: Switching root.
Mar 05 17:17:45 archlinux audit: BPF prog-id=8 op=UNLOAD
Mar 05 17:17:45 archlinux audit: BPF prog-id=7 op=UNLOAD
Mar 05 17:17:45 archlinux systemd-journald[193]: Journal stopped
Mar 05 17:17:46 vlovich systemd-journald[193]: Received SIGTERM from PID 1 (systemd).
Mar 05 17:17:46 vlovich systemd[1]: systemd 247.3-1-arch running in system mode. (+PAM +AUDIT -SELINUX -IMA -APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +ZSTD +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=hybrid)
Mar 05 17:17:46 vlovich systemd[1]: Detected architecture x86-64.
Mar 05 17:17:46 vlovich systemd[1]: Set hostname to <vlovich>.
Mar 05 17:17:46 vlovich systemd[1]: initrd-switch-root.service: Succeeded.
Mar 05 17:17:46 vlovich systemd[1]: Stopped Switch Root.
Mar 05 17:17:46 vlovich systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
Mar 05 17:17:46 vlovich systemd[1]: Created slice system-getty.slice.
Mar 05 17:17:46 vlovich systemd[1]: Created slice system-modprobe.slice.
Mar 05 17:17:46 vlovich systemd[1]: Created slice system-systemd\x2dfsck.slice.
Mar 05 17:17:46 vlovich systemd[1]: Created slice User and Session Slice.
Mar 05 17:17:46 vlovich systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
Mar 05 17:17:46 vlovich systemd[1]: Started Forward Password Requests to Wall Directory Watch.
Mar 05 17:17:46 vlovich systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
Mar 05 17:17:46 vlovich systemd[1]: Reached target Local Encrypted Volumes.
Mar 05 17:17:46 vlovich systemd[1]: Reached target Login Prompts.
Mar 05 17:17:46 vlovich systemd[1]: Stopped target Switch Root.
Mar 05 17:17:46 vlovich systemd[1]: Stopped target Initrd File Systems.
Mar 05 17:17:46 vlovich systemd[1]: Stopped target Initrd Root File System.
Mar 05 17:17:46 vlovich systemd[1]: Reached target Paths.
Mar 05 17:17:46 vlovich systemd[1]: Reached target Remote File Systems.
Mar 05 17:17:46 vlovich systemd[1]: Reached target Slices.
Mar 05 17:17:46 vlovich systemd[1]: Reached target Swap.
Mar 05 17:17:46 vlovich systemd[1]: Listening on Device-mapper event daemon FIFOs.
Mar 05 17:17:46 vlovich systemd[1]: Listening on LVM2 poll daemon socket.
Mar 05 17:17:46 vlovich systemd[1]: Listening on Process Core Dump Socket.
Mar 05 17:17:46 vlovich systemd[1]: Listening on udev Control Socket.
Mar 05 17:17:46 vlovich systemd[1]: Listening on udev Kernel Socket.
Mar 05 17:17:46 vlovich systemd[1]: Mounting Huge Pages File System...
Mar 05 17:17:46 vlovich systemd[1]: Mounting POSIX Message Queue File System...
Mar 05 17:17:46 vlovich systemd[1]: Mounting Kernel Debug File System...
Mar 05 17:17:46 vlovich systemd[1]: Mounting Kernel Trace File System...
Mar 05 17:17:46 vlovich systemd[1]: Mounting Temporary Directory (/tmp)...
Mar 05 17:17:46 vlovich systemd[1]: Starting Create list of static device nodes for the current kernel...
Mar 05 17:17:46 vlovich systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
Mar 05 17:17:46 vlovich systemd[1]: Starting Load Kernel Module configfs...
Mar 05 17:17:46 vlovich systemd[1]: Starting Load Kernel Module drm...
Mar 05 17:17:46 vlovich systemd[1]: Starting Load Kernel Module fuse...
Mar 05 17:17:46 vlovich kernel: Linux agpgart interface v0.103
Mar 05 17:17:46 vlovich systemd[1]: Starting Set Up Additional Binary Formats...
Mar 05 17:17:46 vlovich systemd[1]: systemd-cryptsetup@cryptlvm.service: Succeeded.
Mar 05 17:17:46 vlovich systemd[1]: Stopped systemd-cryptsetup@cryptlvm.service.
Mar 05 17:17:46 vlovich systemd[1]: Stopped Journal Service.
Mar 05 17:17:46 vlovich systemd[1]: Starting Journal Service...
Mar 05 17:17:46 vlovich kernel: fuse: init (API version 7.32)
Mar 05 17:17:46 vlovich systemd[1]: Starting Load Kernel Modules...
Mar 05 17:17:46 vlovich systemd[1]: Starting Remount Root and Kernel File Systems...
Mar 05 17:17:46 vlovich systemd[1]: Condition check resulted in Repartition Root Disk being skipped.
Mar 05 17:17:46 vlovich systemd[1]: Starting Coldplug All udev Devices...
Mar 05 17:17:46 vlovich kernel: EXT4-fs (dm-2): re-mounted. Opts: (null)
Mar 05 17:17:46 vlovich systemd[1]: sysroot.mount: Succeeded.
Mar 05 17:17:46 vlovich systemd[1]: Mounted Huge Pages File System.
Mar 05 17:17:46 vlovich systemd[1]: Mounted POSIX Message Queue File System.
Mar 05 17:17:46 vlovich kernel: usbcore: registered new device driver usbip-host
Mar 05 17:17:46 vlovich systemd[1]: Mounted Kernel Debug File System.
Mar 05 17:17:46 vlovich systemd[1]: Mounted Kernel Trace File System.
Mar 05 17:17:46 vlovich systemd[1]: Mounted Temporary Directory (/tmp).
Mar 05 17:17:46 vlovich systemd[1]: Finished Create list of static device nodes for the current kernel.
Mar 05 17:17:46 vlovich systemd[1]: modprobe@configfs.service: Succeeded.
Mar 05 17:17:46 vlovich systemd[1]: Finished Load Kernel Module configfs.
Mar 05 17:17:46 vlovich systemd-journald[441]: Journal started
Mar 05 17:17:46 vlovich systemd-journald[441]: Runtime Journal (/run/log/journal/037a6641b94b4c69ad0ad3ad2ce07c63) is 8.0M, max 637.0M, 629.0M free.
Mar 05 17:17:45 vlovich audit: BPF prog-id=10 op=UNLOAD
Mar 05 17:17:45 vlovich audit: BPF prog-id=9 op=UNLOAD
Mar 05 17:17:45 vlovich audit: BPF prog-id=11 op=LOAD
Mar 05 17:17:45 vlovich audit: BPF prog-id=11 op=UNLOAD
Mar 05 17:17:45 vlovich audit: BPF prog-id=12 op=LOAD
Mar 05 17:17:45 vlovich audit: BPF prog-id=12 op=UNLOAD
Mar 05 17:17:46 vlovich audit: BPF prog-id=13 op=LOAD
Mar 05 17:17:46 vlovich audit: BPF prog-id=14 op=LOAD
Mar 05 17:17:46 vlovich audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:46 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=initrd-switch-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:46 vlovich audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=initrd-switch-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:46 vlovich audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-cryptsetup@cryptlvm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:46 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:46 vlovich audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:46 vlovich audit: BPF prog-id=13 op=UNLOAD
Mar 05 17:17:46 vlovich audit: BPF prog-id=14 op=UNLOAD
Mar 05 17:17:46 vlovich audit: BPF prog-id=15 op=LOAD
Mar 05 17:17:46 vlovich audit: BPF prog-id=16 op=LOAD
Mar 05 17:17:46 vlovich audit: CONFIG_CHANGE op=set audit_enabled=1 old=1 auid=4294967295 ses=4294967295 res=1
Mar 05 17:17:46 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=kmod-static-nodes comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:46 vlovich systemd[1]: Queued start job for default target Graphical Interface.
Mar 05 17:17:46 vlovich systemd[1]: systemd-journald.service: Succeeded.
Mar 05 17:17:46 vlovich systemd-modules-load[442]: Inserted module 'crypto_user'
Mar 05 17:17:46 vlovich systemd-modules-load[442]: Inserted module 'usbip_core'
Mar 05 17:17:46 vlovich systemd-modules-load[442]: Inserted module 'usbip_host'
Mar 05 17:17:46 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@configfs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:46 vlovich audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@configfs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:46 vlovich systemd[1]: Started Journal Service.
Mar 05 17:17:46 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:46 vlovich systemd[1]: modprobe@drm.service: Succeeded.
Mar 05 17:17:46 vlovich systemd[1]: Finished Load Kernel Module drm.
Mar 05 17:17:46 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@drm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:46 vlovich audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@drm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:46 vlovich systemd[1]: modprobe@fuse.service: Succeeded.
Mar 05 17:17:46 vlovich systemd[1]: Finished Load Kernel Module fuse.
Mar 05 17:17:46 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@fuse comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:46 vlovich audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@fuse comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:46 vlovich systemd[1]: Finished Load Kernel Modules.
Mar 05 17:17:46 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-modules-load comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:46 vlovich systemd[1]: Finished Remount Root and Kernel File Systems.
Mar 05 17:17:46 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-remount-fs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:46 vlovich systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 439 (systemd-binfmt)
Mar 05 17:17:46 vlovich systemd[1]: Mounting Arbitrary Executable File Formats File System...
Mar 05 17:17:46 vlovich systemd[1]: Mounting FUSE Control File System...
Mar 05 17:17:46 vlovich systemd[1]: Mounting Kernel Configuration File System...
Mar 05 17:17:46 vlovich systemd[1]: Condition check resulted in First Boot Wizard being skipped.
Mar 05 17:17:46 vlovich systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
Mar 05 17:17:46 vlovich systemd[1]: Starting Flush Journal to Persistent Storage...
Mar 05 17:17:46 vlovich systemd[1]: Starting Load/Save Random Seed...
Mar 05 17:17:46 vlovich systemd-journald[441]: Time spent on flushing to /var/log/journal/037a6641b94b4c69ad0ad3ad2ce07c63 is 124.836ms for 1126 entries.
Mar 05 17:17:46 vlovich systemd-journald[441]: System Journal (/var/log/journal/037a6641b94b4c69ad0ad3ad2ce07c63) is 512.0M, max 4.0G, 3.4G free.
Mar 05 17:17:46 vlovich kernel: input: Intel HID events as /devices/platform/INT33D5:00/input/input33
Mar 05 17:17:46 vlovich kernel: intel-hid INT33D5:00: platform supports 5 button array
Mar 05 17:17:46 vlovich kernel: input: Intel HID 5 button array as /devices/platform/INT33D5:00/input/input34
Mar 05 17:17:46 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-binfmt comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:46 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-random-seed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:46 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:46 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:46 vlovich audit: BPF prog-id=17 op=LOAD
Mar 05 17:17:46 vlovich audit: BPF prog-id=18 op=LOAD
Mar 05 17:17:46 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udev-trigger comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:46 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udevd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:46 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@configfs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:46 vlovich audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@configfs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:46 vlovich systemd[1]: Starting Apply Kernel Variables...
Mar 05 17:17:46 vlovich systemd[1]: Condition check resulted in Create System Users being skipped.
Mar 05 17:17:46 vlovich systemd[1]: Starting Create Static Device Nodes in /dev...
Mar 05 17:17:46 vlovich systemd-sysctl[453]: Not setting net/ipv4/conf/all/rp_filter (explicit setting exists).
Mar 05 17:17:46 vlovich systemd-sysctl[453]: Not setting net/ipv4/conf/default/rp_filter (explicit setting exists).
Mar 05 17:17:46 vlovich systemd-sysctl[453]: Not setting net/ipv4/conf/all/accept_source_route (explicit setting exists).
Mar 05 17:17:46 vlovich systemd-sysctl[453]: Not setting net/ipv4/conf/default/accept_source_route (explicit setting exists).
Mar 05 17:17:46 vlovich systemd-sysctl[453]: Not setting net/ipv4/conf/all/promote_secondaries (explicit setting exists).
Mar 05 17:17:46 vlovich systemd-sysctl[453]: Not setting net/ipv4/conf/default/promote_secondaries (explicit setting exists).
Mar 05 17:17:46 vlovich systemd[1]: Mounted Arbitrary Executable File Formats File System.
Mar 05 17:17:46 vlovich systemd[1]: Mounted FUSE Control File System.
Mar 05 17:17:46 vlovich systemd[1]: Finished Set Up Additional Binary Formats.
Mar 05 17:17:46 vlovich systemd[1]: Mounted Kernel Configuration File System.
Mar 05 17:17:46 vlovich systemd[1]: Finished Load/Save Random Seed.
Mar 05 17:17:46 vlovich systemd[1]: Finished Apply Kernel Variables.
Mar 05 17:17:46 vlovich systemd[1]: Condition check resulted in First Boot Complete being skipped.
Mar 05 17:17:46 vlovich systemd[1]: Finished Create Static Device Nodes in /dev.
Mar 05 17:17:46 vlovich systemd[1]: Starting Rule-based Manager for Device Events and Files...
Mar 05 17:17:46 vlovich systemd[1]: Finished Coldplug All udev Devices.
Mar 05 17:17:46 vlovich systemd[1]: Started Rule-based Manager for Device Events and Files.
Mar 05 17:17:46 vlovich systemd[1]: Starting Load Kernel Module configfs...
Mar 05 17:17:46 vlovich systemd[1]: modprobe@configfs.service: Succeeded.
Mar 05 17:17:46 vlovich systemd[1]: Finished Load Kernel Module configfs.
Mar 05 17:17:46 vlovich systemd[1]: Finished Flush Journal to Persistent Storage.
Mar 05 17:17:46 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journal-flush comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:46 vlovich kernel: acpi PNP0C14:02: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:01)
Mar 05 17:17:46 vlovich kernel: wmi_bus wmi_bus-PNP0C14:03: WQBC data block query control method not found
Mar 05 17:17:46 vlovich kernel: acpi PNP0C14:03: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:01)
Mar 05 17:17:46 vlovich kernel: acpi PNP0C14:04: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:01)
Mar 05 17:17:46 vlovich kernel: acpi PNP0C14:05: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:01)
Mar 05 17:17:46 vlovich kernel: acpi PNP0C14:06: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:01)
Mar 05 17:17:46 vlovich kernel: acpi PNP0C14:07: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:01)
Mar 05 17:17:46 vlovich kernel: intel_pch_thermal 0000:00:12.0: enabling device (0000 -> 0002)
Mar 05 17:17:46 vlovich kernel: tpm_tis STM0125:00: 2.0 TPM (device-id 0x0, rev-id 78)
Mar 05 17:17:46 vlovich kernel: proc_thermal 0000:00:04.0: enabling device (0000 -> 0002)
Mar 05 17:17:46 vlovich mtp-probe[501]: checking bus 1, device 4: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-11"
Mar 05 17:17:46 vlovich mtp-probe[500]: checking bus 1, device 3: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-10"
Mar 05 17:17:46 vlovich mtp-probe[502]: checking bus 1, device 2: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-3"
Mar 05 17:17:46 vlovich mtp-probe[500]: bus: 1, device: 3 was not an MTP device
Mar 05 17:17:46 vlovich mtp-probe[501]: bus: 1, device: 4 was not an MTP device
Mar 05 17:17:46 vlovich mtp-probe[502]: bus: 1, device: 2 was not an MTP device
Mar 05 17:17:46 vlovich kernel: intel_rapl_common: Found RAPL domain package
Mar 05 17:17:46 vlovich kernel: intel_rapl_common: Found RAPL domain dram
Mar 05 17:17:46 vlovich kernel: proc_thermal 0000:00:04.0: Creating sysfs group for PROC_THERMAL_PCI
Mar 05 17:17:46 vlovich kernel: mei_me 0000:00:16.0: enabling device (0000 -> 0002)
Mar 05 17:17:46 vlovich kernel: intel-lpss 0000:00:15.0: enabling device (0000 -> 0002)
Mar 05 17:17:46 vlovich kernel: idma64 idma64.0: Found Intel integrated DMA 64-bit
Mar 05 17:17:46 vlovich kernel: mc: Linux media interface: v0.10
Mar 05 17:17:46 vlovich kernel: i2c_hid i2c-ELAN29E2:00: supply vdd not found, using dummy regulator
Mar 05 17:17:46 vlovich kernel: i2c_hid i2c-ELAN29E2:00: supply vddl not found, using dummy regulator
Mar 05 17:17:46 vlovich kernel: intel-lpss 0000:00:15.1: enabling device (0000 -> 0002)
Mar 05 17:17:46 vlovich kernel: idma64 idma64.1: Found Intel integrated DMA 64-bit
Mar 05 17:17:46 vlovich kernel: i2c_hid i2c-DELL097E:00: supply vdd not found, using dummy regulator
Mar 05 17:17:46 vlovich kernel: i2c_hid i2c-DELL097E:00: supply vddl not found, using dummy regulator
Mar 05 17:17:46 vlovich kernel: intel-lpss 0000:00:1e.0: enabling device (0000 -> 0002)
Mar 05 17:17:46 vlovich kernel: idma64 idma64.2: Found Intel integrated DMA 64-bit
Mar 05 17:17:46 vlovich kernel: ioremap error for 0x65e93000-0x65e94000, requested 0x2, got 0x0
Mar 05 17:17:46 vlovich kernel: ucsi_acpi: probe of USBC000:00 failed with error -12
Mar 05 17:17:46 vlovich kernel: mousedev: PS/2 mouse device common for all mice
Mar 05 17:17:46 vlovich kernel: videodev: Linux video capture interface: v2.00
Mar 05 17:17:46 vlovich kernel: Bluetooth: Core ver 2.22
Mar 05 17:17:46 vlovich kernel: NET: Registered protocol family 31
Mar 05 17:17:46 vlovich kernel: Bluetooth: HCI device and connection manager initialized
Mar 05 17:17:46 vlovich kernel: Bluetooth: HCI socket layer initialized
Mar 05 17:17:46 vlovich kernel: Bluetooth: L2CAP socket layer initialized
Mar 05 17:17:46 vlovich kernel: Bluetooth: SCO socket layer initialized
Mar 05 17:17:46 vlovich kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
Mar 05 17:17:46 vlovich kernel: thunderbolt 0000:04:00.0: enabling device (0000 -> 0002)
Mar 05 17:17:46 vlovich kernel: cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
Mar 05 17:17:46 vlovich kernel: platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
Mar 05 17:17:46 vlovich kernel: cfg80211: failed to load regulatory.db
Mar 05 17:17:46 vlovich kernel: uvcvideo: Found UVC 1.10 device Integrated_Webcam_HD (0bda:5510)
Mar 05 17:17:46 vlovich kernel: input: Integrated_Webcam_HD: Integrate as /devices/pci0000:00/0000:00:14.0/usb1/1-11/1-11:1.0/input/input35
Mar 05 17:17:46 vlovich kernel: uvcvideo: Found UVC 1.50 device Integrated_Webcam_HD (0bda:5510)
Mar 05 17:17:46 vlovich kernel: input: Integrated_Webcam_HD: Integrate as /devices/pci0000:00/0000:00:14.0/usb1/1-11/1-11:1.2/input/input36
Mar 05 17:17:46 vlovich kernel: usbcore: registered new interface driver uvcvideo
Mar 05 17:17:46 vlovich kernel: USB Video Class driver (1.1.1)
Mar 05 17:17:46 vlovich kernel: input: ELAN29E2:00 04F3:29E2 Touchscreen as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-ELAN29E2:00/0018:04F3:29E2.0008/input/input37
Mar 05 17:17:46 vlovich kernel: input: ELAN29E2:00 04F3:29E2 as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-ELAN29E2:00/0018:04F3:29E2.0008/input/input38
Mar 05 17:17:46 vlovich kernel: input: ELAN29E2:00 04F3:29E2 as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-ELAN29E2:00/0018:04F3:29E2.0008/input/input39
Mar 05 17:17:46 vlovich kernel: hid-generic 0018:04F3:29E2.0008: input,hidraw5: I2C HID v1.00 Device [ELAN29E2:00 04F3:29E2] on i2c-ELAN29E2:00
Mar 05 17:17:46 vlovich kernel: input: DELL097E:00 04F3:311C Mouse as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-DELL097E:00/0018:04F3:311C.0009/input/input41
Mar 05 17:17:46 vlovich kernel: input: DELL097E:00 04F3:311C Touchpad as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-DELL097E:00/0018:04F3:311C.0009/input/input42
Mar 05 17:17:46 vlovich kernel: hid-generic 0018:04F3:311C.0009: input,hidraw6: I2C HID v1.00 Mouse [DELL097E:00 04F3:311C] on i2c-DELL097E:00
Mar 05 17:17:46 vlovich lvm[435]:   2 logical volume(s) in volume group "Arch" monitored
Mar 05 17:17:46 vlovich kernel: usbcore: registered new interface driver btusb
Mar 05 17:17:46 vlovich kernel: Bluetooth: hci0: Firmware revision 0.0 build 26 week 3 2021
Mar 05 17:17:46 vlovich kernel: input: PC Speaker as /devices/platform/pcspkr/input/input44
Mar 05 17:17:46 vlovich kernel: i801_smbus 0000:00:1f.4: enabling device (0000 -> 0003)
Mar 05 17:17:46 vlovich kernel: i801_smbus 0000:00:1f.4: SPD Write Disable is set
Mar 05 17:17:46 vlovich kernel: i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
Mar 05 17:17:46 vlovich kernel: Intel(R) Wireless WiFi driver for Linux
Mar 05 17:17:46 vlovich kernel: iwlwifi 0000:00:14.3: enabling device (0000 -> 0002)
Mar 05 17:17:46 vlovich systemd[1]: Finished Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
Mar 05 17:17:46 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lvm2-monitor comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:46 vlovich systemd[1]: Reached target Local File Systems (Pre).
Mar 05 17:17:46 vlovich kernel: iwlwifi 0000:00:14.3: api flags index 2 larger than supported by driver
Mar 05 17:17:46 vlovich kernel: iwlwifi 0000:00:14.3: TLV_FW_FSEQ_VERSION: FSEQ Version: 65.3.35.22
Mar 05 17:17:46 vlovich kernel: iwlwifi 0000:00:14.3: loaded firmware version 59.601f3a66.0 QuZ-a0-hr-b0-59.ucode op_mode iwlmvm
Mar 05 17:17:46 vlovich kernel: RAPL PMU: API unit is 2^-32 Joules, 5 fixed counters, 655360 ms ovfl timer
Mar 05 17:17:46 vlovich kernel: RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
Mar 05 17:17:46 vlovich kernel: RAPL PMU: hw unit of domain package 2^-14 Joules
Mar 05 17:17:46 vlovich kernel: RAPL PMU: hw unit of domain dram 2^-14 Joules
Mar 05 17:17:46 vlovich kernel: RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
Mar 05 17:17:46 vlovich kernel: RAPL PMU: hw unit of domain psys 2^-14 Joules
Mar 05 17:17:46 vlovich systemd[1]: Condition check resulted in Virtual Machine and Container Storage (Compatibility) being skipped.
Mar 05 17:17:46 vlovich systemd[1]: Starting File System Check on /dev/disk/by-uuid/4999-6E77...
Mar 05 17:17:46 vlovich kernel: i2c i2c-2: 2/2 memory slots populated (from DMI)
Mar 05 17:17:46 vlovich kernel: i2c i2c-2: Successfully instantiated SPD at 0x50
Mar 05 17:17:46 vlovich systemd-fsck[568]: fsck.fat 4.2 (2021-01-31)
Mar 05 17:17:46 vlovich systemd-fsck[568]: /dev/nvme0n1p1: 18 files, 137006/383102 clusters
Mar 05 17:17:46 vlovich systemd[1]: Finished File System Check on /dev/disk/by-uuid/4999-6E77.
Mar 05 17:17:46 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-4999\x2d6E77 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:46 vlovich systemd[1]: Mounting /boot...
Mar 05 17:17:46 vlovich kernel: Setting dangerous option enable_fbc - tainting kernel
Mar 05 17:17:46 vlovich kernel: checking generic (4000000000 2328000) vs hw (604a000000 1000000)
Mar 05 17:17:46 vlovich kernel: checking generic (4000000000 2328000) vs hw (4000000000 10000000)
Mar 05 17:17:46 vlovich kernel: fb0: switching to inteldrmfb from EFI VGA
Mar 05 17:17:46 vlovich kernel: Console: switching to colour dummy device 80x25
Mar 05 17:17:46 vlovich kernel: i915 0000:00:02.0: vgaarb: deactivate vga console
Mar 05 17:17:46 vlovich systemd[1]: Mounted /boot.
Mar 05 17:17:46 vlovich systemd[1]: Reached target Local File Systems.
Mar 05 17:17:46 vlovich systemd[1]: Condition check resulted in Rebuild Dynamic Linker Cache being skipped.
Mar 05 17:17:46 vlovich systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped.
Mar 05 17:17:46 vlovich systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped.
Mar 05 17:17:46 vlovich systemd[1]: Starting Create Volatile Files and Directories...
Mar 05 17:17:46 vlovich kernel: i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
Mar 05 17:17:46 vlovich kernel: i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/kbl_dmc_ver1_04.bin (v1.4)
Mar 05 17:17:46 vlovich kernel: [drm] Initialized i915 1.6.0 20200917 for 0000:00:02.0 on minor 0
Mar 05 17:17:46 vlovich kernel: ACPI: Video Device [PEGP] (multi-head: no  rom: yes  post: no)
Mar 05 17:17:46 vlovich kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/LNXVIDEO:00/input/input46
Mar 05 17:17:46 vlovich systemd[1]: Finished Create Volatile Files and Directories.
Mar 05 17:17:46 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:46 vlovich systemd[1]: Condition check resulted in Rebuild Journal Catalog being skipped.
Mar 05 17:17:46 vlovich systemd[1]: Starting Network Time Synchronization...
Mar 05 17:17:46 vlovich systemd[1]: Condition check resulted in Update is Completed being skipped.
Mar 05 17:17:46 vlovich systemd[1]: Starting Update UTMP about System Boot/Shutdown...
Mar 05 17:17:46 vlovich kernel: ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
Mar 05 17:17:46 vlovich kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input47
Mar 05 17:17:46 vlovich audit[577]: SYSTEM_BOOT pid=577 uid=0 auid=4294967295 ses=4294967295 msg=' comm="systemd-update-utmp" exe="/usr/lib/systemd/systemd-update-utmp" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:46 vlovich systemd[1]: Finished Update UTMP about System Boot/Shutdown.
Mar 05 17:17:46 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-update-utmp comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:46 vlovich kernel: fbcon: i915drmfb (fb0) is primary device
Mar 05 17:17:46 vlovich systemd-udevd[459]: ethtool: autonegotiation is unset or enabled, the speed and duplex are not writable.
Mar 05 17:17:46 vlovich systemd[1]: Starting LVM event activation on device 254:0...
Mar 05 17:17:46 vlovich lvm[585]:   pvscan[585] PV /dev/mapper/cryptlvm online, VG Arch is complete.
Mar 05 17:17:46 vlovich lvm[585]:   pvscan[585] VG Arch skip autoactivation.
Mar 05 17:17:47 vlovich kernel: intel_rapl_common: Found RAPL domain package
Mar 05 17:17:47 vlovich kernel: intel_rapl_common: Found RAPL domain core
Mar 05 17:17:47 vlovich kernel: intel_rapl_common: Found RAPL domain uncore
Mar 05 17:17:47 vlovich kernel: intel_rapl_common: Found RAPL domain dram
Mar 05 17:17:47 vlovich kernel: intel_rapl_common: Found RAPL domain psys
Mar 05 17:17:47 vlovich kernel: iwlwifi 0000:00:14.3: Detected Intel(R) Wi-Fi 6 AX201 160MHz, REV=0x354
Mar 05 17:17:47 vlovich kernel: input: Dell WMI hotkeys as /devices/platform/PNP0C14:03/wmi_bus/wmi_bus-PNP0C14:03/9DBB5994-A997-11DA-B012-B622A1EF5492/input/input48
Mar 05 17:17:47 vlovich kernel: mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_component_ops [i915])
Mar 05 17:17:47 vlovich kernel: dw-apb-uart.2: ttyS4 at MMIO 0x4010002000 (irq = 20, base_baud = 7500000) is a 16550A
Mar 05 17:17:47 vlovich kernel: iTCO_vendor_support: vendor-support=0
Mar 05 17:17:47 vlovich kernel: iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
Mar 05 17:17:47 vlovich kernel: iTCO_wdt: Found a Intel PCH TCO device (Version=6, TCOBASE=0x0400)
Mar 05 17:17:47 vlovich kernel: iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
Mar 05 17:17:47 vlovich kernel: ee1004 2-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
Mar 05 17:17:47 vlovich kernel: ish-hid {33AECD58-B679-4E54-9BD9-A04D34F0C226}: [hid-ish]: enum_devices_done OK, num_hid_devices=1
Mar 05 17:17:47 vlovich kernel: hid-generic 001F:8087:0AC2.000A: hidraw7: <UNKNOWN> HID v2.00 Device [hid-ishtp 8087:0AC2] on 
Mar 05 17:17:47 vlovich kernel: snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
Mar 05 17:17:47 vlovich kernel: snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002)
Mar 05 17:17:47 vlovich kernel: psmouse serio1: elantech: assuming hardware version 4 (with firmware version 0x0f5002)
Mar 05 17:17:47 vlovich kernel: psmouse serio1: elantech: elantech_send_cmd query 0x02 failed.
Mar 05 17:17:47 vlovich kernel: psmouse serio1: elantech: failed to query capabilities.
Mar 05 17:17:47 vlovich kernel: iwlwifi 0000:00:14.3: base HW address: c0:3c:59:11:eb:bc
Mar 05 17:17:47 vlovich systemd-udevd[456]: Using default interface naming scheme 'v247'.
Mar 05 17:17:47 vlovich systemd-udevd[456]: ethtool: autonegotiation is unset or enabled, the speed and duplex are not writable.
Mar 05 17:17:47 vlovich kernel: thermal thermal_zone13: failed to read out thermal zone (-61)
Mar 05 17:17:47 vlovich kernel: iwlwifi 0000:00:14.3 wlp0s20f3: renamed from wlan0
Mar 05 17:17:47 vlovich kernel: input: ELAN29E2:00 04F3:29E2 as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-ELAN29E2:00/0018:04F3:29E2.0008/input/input49
Mar 05 17:17:47 vlovich systemd-udevd[456]: ethtool: autonegotiation is unset or enabled, the speed and duplex are not writable.
Mar 05 17:17:47 vlovich kernel: input: ELAN29E2:00 04F3:29E2 UNKNOWN as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-ELAN29E2:00/0018:04F3:29E2.0008/input/input50
Mar 05 17:17:47 vlovich kernel: input: ELAN29E2:00 04F3:29E2 UNKNOWN as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-ELAN29E2:00/0018:04F3:29E2.0008/input/input51
Mar 05 17:17:47 vlovich kernel: hid-multitouch 0018:04F3:29E2.0008: input,hidraw5: I2C HID v1.00 Device [ELAN29E2:00 04F3:29E2] on i2c-ELAN29E2:00
Mar 05 17:17:47 vlovich kernel: input: DELL097E:00 04F3:311C Mouse as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-DELL097E:00/0018:04F3:311C.0009/input/input53
Mar 05 17:17:47 vlovich kernel: input: DELL097E:00 04F3:311C Touchpad as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-DELL097E:00/0018:04F3:311C.0009/input/input54
Mar 05 17:17:47 vlovich kernel: hid-multitouch 0018:04F3:311C.0009: input,hidraw6: I2C HID v1.00 Mouse [DELL097E:00 04F3:311C] on i2c-DELL097E:00
Mar 05 17:17:47 vlovich kernel: nvidia: loading out-of-tree module taints kernel.
Mar 05 17:17:47 vlovich kernel: nvidia: module license 'NVIDIA' taints kernel.
Mar 05 17:17:47 vlovich kernel: Disabling lock debugging due to kernel taint
Mar 05 17:17:47 vlovich kernel: nvidia: module verification failed: signature and/or required key missing - tainting kernel
Mar 05 17:17:47 vlovich kernel: nvidia-nvlink: Nvlink Core is being initialized, major device number 511
Mar 05 17:17:47 vlovich kernel: 
Mar 05 17:17:47 vlovich kernel: nvidia 0000:01:00.0: enabling device (0000 -> 0003)
Mar 05 17:17:47 vlovich kernel: NVRM: loading NVIDIA UNIX x86_64 Kernel Module  460.56  Tue Feb 23 23:31:36 UTC 2021
Mar 05 17:17:48 vlovich kernel: Console: switching to colour frame buffer device 240x75
Mar 05 17:17:48 vlovich kernel: snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
Mar 05 17:17:48 vlovich systemd[1]: Started Network Time Synchronization.
Mar 05 17:17:48 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-timesyncd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:48 vlovich systemd[1]: Finished LVM event activation on device 254:0.
Mar 05 17:17:48 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lvm2-pvscan@254:0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:48 vlovich kernel: i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
Mar 05 17:17:48 vlovich systemd[1]: Created slice system-systemd\x2dbacklight.slice.
Mar 05 17:17:48 vlovich systemd[1]: Reached target System Time Set.
Mar 05 17:17:48 vlovich systemd[1]: Reached target System Time Synchronized.
Mar 05 17:17:48 vlovich systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
Mar 05 17:17:48 vlovich systemd[1]: Condition check resulted in Rebuild Dynamic Linker Cache being skipped.
Mar 05 17:17:48 vlovich systemd[1]: Starting Load/Save Screen Backlight Brightness of leds:dell::kbd_backlight...
Mar 05 17:17:48 vlovich systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped.
Mar 05 17:17:48 vlovich systemd[1]: Condition check resulted in First Boot Wizard being skipped.
Mar 05 17:17:48 vlovich systemd[1]: Condition check resulted in First Boot Complete being skipped.
Mar 05 17:17:48 vlovich systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
Mar 05 17:17:48 vlovich systemd[1]: Condition check resulted in Rebuild Journal Catalog being skipped.
Mar 05 17:17:48 vlovich systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped.
Mar 05 17:17:48 vlovich systemd[1]: Condition check resulted in Repartition Root Disk being skipped.
Mar 05 17:17:48 vlovich systemd[1]: Condition check resulted in Create System Users being skipped.
Mar 05 17:17:48 vlovich systemd[1]: Condition check resulted in Update is Completed being skipped.
Mar 05 17:17:48 vlovich systemd[1]: Starting Load/Save RF Kill Switch Status...
Mar 05 17:17:48 vlovich systemd[1]: Finished Load/Save Screen Backlight Brightness of leds:dell::kbd_backlight.
Mar 05 17:17:48 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-backlight@leds:dell::kbd_backlight comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:48 vlovich systemd[1]: Reached target System Initialization.
Mar 05 17:17:48 vlovich systemd[1]: Started Daily atop restart.
Mar 05 17:17:48 vlovich systemd[1]: Started Daily man-db regeneration.
Mar 05 17:17:48 vlovich systemd[1]: Started Daily verification of password and group files.
Mar 05 17:17:48 vlovich systemd[1]: Started Daily Cleanup of Temporary Directories.
Mar 05 17:17:48 vlovich systemd[1]: Reached target Timers.
Mar 05 17:17:48 vlovich systemd[1]: Listening on D-Bus System Message Bus Socket.
Mar 05 17:17:48 vlovich systemd[1]: Listening on PC/SC Smart Card Daemon Activation Socket.
Mar 05 17:17:48 vlovich systemd[1]: Reached target Sockets.
Mar 05 17:17:48 vlovich systemd[1]: Reached target Basic System.
Mar 05 17:17:48 vlovich systemd[1]: Starting Thunderbolt system service...
Mar 05 17:17:48 vlovich systemd[1]: Started D-Bus System Message Bus.
Mar 05 17:17:48 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=dbus comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:48 vlovich systemd[1]: Starting Network Manager...
Mar 05 17:17:48 vlovich systemd[1]: Started Fix Bluetooth A2DP.
Mar 05 17:17:48 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=fix-bt-a2dp comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:48 vlovich NetworkManager[624]: <info>  [1614993468.0807] NetworkManager (version 1.30.0-2) is starting... (for the first time)
Mar 05 17:17:48 vlovich NetworkManager[624]: <info>  [1614993468.0812] Read config: /etc/NetworkManager/NetworkManager.conf (lib: 20-connectivity.conf)
Mar 05 17:17:48 vlovich audit: BPF prog-id=19 op=LOAD
Mar 05 17:17:48 vlovich audit: BPF prog-id=20 op=LOAD
Mar 05 17:17:48 vlovich systemd[1]: Starting User Login Management...
Mar 05 17:17:48 vlovich systemd[1]: Started Load/Save RF Kill Switch Status.
Mar 05 17:17:48 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:48 vlovich systemd[1]: Reached target Bluetooth.
Mar 05 17:17:48 vlovich boltd[622]: bolt 0.9.1 starting up.
Mar 05 17:17:48 vlovich kernel: snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC289: line_outs=2 (0x14/0x17/0x0/0x0/0x0) type:speaker
Mar 05 17:17:48 vlovich kernel: snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
Mar 05 17:17:48 vlovich kernel: snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
Mar 05 17:17:48 vlovich kernel: snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
Mar 05 17:17:48 vlovich kernel: snd_hda_codec_realtek hdaudioC0D0:    inputs:
Mar 05 17:17:48 vlovich kernel: snd_hda_codec_realtek hdaudioC0D0:      Headset Mic=0x19
Mar 05 17:17:48 vlovich kernel: snd_hda_codec_realtek hdaudioC0D0:      Headphone Mic=0x1b
Mar 05 17:17:48 vlovich kernel: snd_hda_codec_realtek hdaudioC0D0:      Internal Mic=0x12
Mar 05 17:17:48 vlovich systemd[1]: Started Network Manager.
Mar 05 17:17:48 vlovich NetworkManager[624]: <info>  [1614993468.1021] bus-manager: acquired D-Bus service "org.freedesktop.NetworkManager"
Mar 05 17:17:48 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:48 vlovich systemd[1]: Reached target Network.
Mar 05 17:17:48 vlovich boltd[622]: manager: initializing store
Mar 05 17:17:48 vlovich boltd[622]: store: located at: /var/lib/boltd
Mar 05 17:17:48 vlovich boltd[622]: config: loading user config
Mar 05 17:17:48 vlovich boltd[622]: bouncer: initializing polkit
Mar 05 17:17:48 vlovich systemd[1]: Starting Permit User Sessions...
Mar 05 17:17:48 vlovich dbus-daemon[623]: [system] Activating via systemd: service name='org.freedesktop.PolicyKit1' unit='polkit.service' requested by ':1.3' (uid=0 pid=622 comm="/usr/lib/boltd ")
Mar 05 17:17:48 vlovich systemd[1]: Starting Authorization Manager...
Mar 05 17:17:48 vlovich systemd[1]: Finished Permit User Sessions.
Mar 05 17:17:48 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-user-sessions comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:48 vlovich NetworkManager[624]: <info>  [1614993468.1062] manager[0x5628178950c0]: monitoring kernel firmware directory '/lib/firmware'.
Mar 05 17:17:48 vlovich dbus-daemon[623]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service' requested by ':1.2' (uid=0 pid=624 comm="/usr/bin/NetworkManager --no-daemon ")
Mar 05 17:17:48 vlovich audit: BPF prog-id=21 op=LOAD
Mar 05 17:17:48 vlovich audit: BPF prog-id=22 op=LOAD
Mar 05 17:17:48 vlovich systemd[1]: Starting Hostname Service...
Mar 05 17:17:48 vlovich systemd[1]: Starting Load/Save Screen Backlight Brightness of backlight:intel_backlight...
Mar 05 17:17:48 vlovich systemd-logind[628]: New seat seat0.
Mar 05 17:17:48 vlovich systemd-logind[628]: Watching system buttons on /dev/input/event1 (Power Button)
Mar 05 17:17:48 vlovich systemd[1]: Finished Load/Save Screen Backlight Brightness of backlight:intel_backlight.
Mar 05 17:17:48 vlovich systemd-logind[628]: Watching system buttons on /dev/input/event0 (Lid Switch)
Mar 05 17:17:48 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-backlight@backlight:intel_backlight comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:48 vlovich systemd-logind[628]: Watching system buttons on /dev/input/event6 (Logitech K350)
Mar 05 17:17:48 vlovich systemd-logind[628]: Watching system buttons on /dev/input/event3 (Logitech K800)
Mar 05 17:17:48 vlovich systemd-logind[628]: Watching system buttons on /dev/input/event7 (Intel HID events)
Mar 05 17:17:48 vlovich systemd-logind[628]: Watching system buttons on /dev/input/event8 (Intel HID 5 button array)
Mar 05 17:17:48 vlovich systemd-logind[628]: Watching system buttons on /dev/input/event2 (AT Translated Set 2 keyboard)
Mar 05 17:17:48 vlovich systemd[1]: Started User Login Management.
Mar 05 17:17:48 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-logind comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:48 vlovich systemd[1]: Reached target Multi-User System.
Mar 05 17:17:48 vlovich audit[625]: USER_AUTH pid=625 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:authentication grantors=pam_rootok acct="vlovich" exe="/usr/bin/su" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:48 vlovich audit[625]: USER_ACCT pid=625 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_unix acct="vlovich" exe="/usr/bin/su" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:48 vlovich su[625]: (to vlovich) root on none
Mar 05 17:17:48 vlovich systemd[1]: Started Simple Desktop Display Manager.
Mar 05 17:17:48 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sddm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:48 vlovich systemd[1]: Starting DisplayLink Manager Service...
Mar 05 17:17:48 vlovich audit[625]: CRED_ACQ pid=625 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_rootok acct="vlovich" exe="/usr/bin/su" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:48 vlovich audit[625]: USER_START pid=625 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:session_open grantors=pam_unix acct="vlovich" exe="/usr/bin/su" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:48 vlovich su[625]: pam_unix(su:session): session opened for user vlovich(uid=1000) by (uid=0)
Mar 05 17:17:48 vlovich polkitd[636]: Started polkitd version 0.118
Mar 05 17:17:48 vlovich polkitd[636]: Loading rules from directory /etc/polkit-1/rules.d
Mar 05 17:17:48 vlovich polkitd[636]: Loading rules from directory /usr/share/polkit-1/rules.d
Mar 05 17:17:48 vlovich sddm[654]: Initializing...
Mar 05 17:17:48 vlovich polkitd[636]: Finished loading, compiling and executing 4 rules
Mar 05 17:17:48 vlovich dbus-daemon[623]: [system] Successfully activated service 'org.freedesktop.PolicyKit1'
Mar 05 17:17:48 vlovich systemd[1]: Started Authorization Manager.
Mar 05 17:17:48 vlovich polkitd[636]: Acquired the name org.freedesktop.PolicyKit1 on the system bus
Mar 05 17:17:48 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=polkit comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:48 vlovich boltd[622]: watchdog: enabled [pulse: 90s]
Mar 05 17:17:48 vlovich boltd[622]: udev: initializing udev
Mar 05 17:17:48 vlovich boltd[622]: store: loading domains
Mar 05 17:17:48 vlovich boltd[622]: [cb010000-0032-domain?                    ] store: loading domain
Mar 05 17:17:48 vlovich boltd[622]: journal: opened for 'cb010000-0032'; size: 0 bytes
Mar 05 17:17:48 vlovich boltd[622]: [cb010000-0032-domain?                    ] domain: registered (bootacl: 16/16)
Mar 05 17:17:48 vlovich boltd[622]: store: loading devices
Mar 05 17:17:48 vlovich boltd[622]: [cb010000-0032                            ] store: loading device
Mar 05 17:17:48 vlovich boltd[622]: global 'generation' set to '3'
Mar 05 17:17:48 vlovich boltd[622]: power: state located at: /run/boltd/power
Mar 05 17:17:48 vlovich sddm[654]: Starting...
Mar 05 17:17:48 vlovich sddm[654]: Logind interface found
Mar 05 17:17:48 vlovich sddm[654]: Adding new display on vt 1 ...
Mar 05 17:17:48 vlovich sddm[654]: Loading theme configuration from ""
Mar 05 17:17:48 vlovich sddm[654]: Display server starting...
Mar 05 17:17:48 vlovich sddm[654]: Adding cookie to "/var/run/sddm/{0a65e40c-8085-4a65-8788-2ed2c463eadb}"
Mar 05 17:17:48 vlovich boltd[622]: power: force power support: yes
Mar 05 17:17:48 vlovich boltd[622]: udev: found 1 domain
Mar 05 17:17:48 vlovich boltd[622]: udev: enumerating devices
Mar 05 17:17:48 vlovich boltd[622]: probing: adding /sys/devices/pci0000:00/0000:00:1c.0/0000:02:00.0 to roots
Mar 05 17:17:48 vlovich sddm[654]: Running: /usr/bin/X -nolisten tcp -background none -seat seat0 vt1 -auth /var/run/sddm/{0a65e40c-8085-4a65-8788-2ed2c463eadb} -noreset -displayfd 17
Mar 05 17:17:48 vlovich boltd[622]: [cb010000-0032-domain0                    ] bootacl: synchronizing journal
Mar 05 17:17:48 vlovich boltd[622]: security level set to 'dponly'
Mar 05 17:17:48 vlovich boltd[622]: [cb010000-0032-domain0                    ] connected: as domain0 [dponly] (/sys/devices/pci0000:00/0000:00:1c.0/0000:02:00.0/0000:03:00.0/0000:04:00.0/domain0)
Mar 05 17:17:48 vlovich boltd[622]: [cb010000-0032-Precision 15 5550          ] parent is (null)...
Mar 05 17:17:48 vlovich boltd[622]: [cb010000-0032-Precision 15 5550          ] connected: authorized (/sys/devices/pci0000:00/0000:00:1c.0/0000:02:00.0/0000:03:00.0/0000:04:00.0/domain0/0-0)
Mar 05 17:17:48 vlovich boltd[622]: [cb010000-0032-domain0                    ] dbus: exported domain at /org/freedesktop/bolt/domains/cb010000_0032_340e_838c_af8b08544902
Mar 05 17:17:48 vlovich boltd[622]: [cb010000-0032-Precision 15 5550          ] dbus: exported device at /org/freedesktop/bolt/devices/cb010000_0032...
Mar 05 17:17:48 vlovich systemd[1]: Started Thunderbolt system service.
Mar 05 17:17:48 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=bolt comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:52 vlovich kernel: nvidia-modeset: Loading NVIDIA Kernel Mode Setting Driver for UNIX platforms  460.56  Tue Feb 23 23:20:29 UTC 2021
Mar 05 17:17:52 vlovich kernel: evdi: [I] Initialising logging on level 5
Mar 05 17:17:52 vlovich systemd[1]: Started DisplayLink Manager Service.
Mar 05 17:17:52 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=displaylink comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:52 vlovich systemd[1]: Reached target Graphical Interface.
Mar 05 17:17:52 vlovich kernel: evdi: [I] Atomic driver:yes
Mar 05 17:17:52 vlovich kernel: kauditd_printk_skb: 82 callbacks suppressed
Mar 05 17:17:52 vlovich kernel: audit: type=1130 audit(1614993472.262:98): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=displaylink comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:52 vlovich kernel: [drm] [nvidia-drm] [GPU ID 0x00000100] Loading driver
Mar 05 17:17:52 vlovich kernel: input: HDA Intel PCH Headphone Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input56
Mar 05 17:17:52 vlovich kernel: input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input57
Mar 05 17:17:52 vlovich kernel: input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input58
Mar 05 17:17:52 vlovich kernel: input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input59
Mar 05 17:17:52 vlovich kernel: input: HDA Intel PCH HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input60
Mar 05 17:17:52 vlovich kernel: input: HDA Intel PCH HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input61
Mar 05 17:17:52 vlovich systemd[1]: Reached target Sound Card.
Mar 05 17:17:52 vlovich dbus-daemon[623]: [system] Successfully activated service 'org.freedesktop.hostname1'
Mar 05 17:17:52 vlovich systemd[1]: Started Hostname Service.
Mar 05 17:17:52 vlovich systemd[1]: Startup finished in 5.219s (firmware) + 1.387s (loader) + 637ms (kernel) + 27.331s (initrd) + 6.368s (userspace) = 40.943s.
Mar 05 17:17:52 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:52 vlovich kernel: audit: type=1130 audit(1614993472.279:99): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:52 vlovich kernel: ACPI Warning: \_SB.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20200925/nsarguments-61)
Mar 05 17:17:52 vlovich NetworkManager[624]: <info>  [1614993472.2995] hostname: hostname: using hostnamed
Mar 05 17:17:52 vlovich NetworkManager[624]: <info>  [1614993472.2995] hostname: hostname changed from (none) to "vlovich"
Mar 05 17:17:52 vlovich NetworkManager[624]: <info>  [1614993472.2997] dns-mgr[0x562817867110]: init: dns=default,systemd-resolved rc-manager=symlink
Mar 05 17:17:52 vlovich NetworkManager[624]: <info>  [1614993472.3001] rfkill1: found Wi-Fi radio killswitch (at /sys/devices/pci0000:00/0000:00:14.3/ieee80211/phy0/rfkill1) (driver iwlwifi)
Mar 05 17:17:52 vlovich NetworkManager[624]: <info>  [1614993472.3002] manager[0x5628178950c0]: rfkill: Wi-Fi hardware radio set enabled
Mar 05 17:17:52 vlovich NetworkManager[624]: <info>  [1614993472.3002] manager[0x5628178950c0]: rfkill: WWAN hardware radio set enabled
Mar 05 17:17:52 vlovich NetworkManager[624]: <info>  [1614993472.3080] Loaded device plugin: NMWwanFactory (/usr/lib/NetworkManager/1.30.0-2/libnm-device-plugin-wwan.so)
Mar 05 17:17:52 vlovich NetworkManager[624]: <info>  [1614993472.3137] Loaded device plugin: NMTeamFactory (/usr/lib/NetworkManager/1.30.0-2/libnm-device-plugin-team.so)
Mar 05 17:17:52 vlovich NetworkManager[624]: <info>  [1614993472.3141] Loaded device plugin: NMAtmManager (/usr/lib/NetworkManager/1.30.0-2/libnm-device-plugin-adsl.so)
Mar 05 17:17:52 vlovich NetworkManager[624]: <info>  [1614993472.3145] Loaded device plugin: NMOvsFactory (/usr/lib/NetworkManager/1.30.0-2/libnm-device-plugin-ovs.so)
Mar 05 17:17:52 vlovich NetworkManager[624]: <info>  [1614993472.3152] Loaded device plugin: NMWifiFactory (/usr/lib/NetworkManager/1.30.0-2/libnm-device-plugin-wifi.so)
Mar 05 17:17:52 vlovich NetworkManager[624]: <info>  [1614993472.3162] Loaded device plugin: NMBluezManager (/usr/lib/NetworkManager/1.30.0-2/libnm-device-plugin-bluetooth.so)
Mar 05 17:17:52 vlovich NetworkManager[624]: <info>  [1614993472.3164] manager: rfkill: Wi-Fi enabled by radio killswitch; enabled by state file
Mar 05 17:17:52 vlovich NetworkManager[624]: <info>  [1614993472.3164] manager: rfkill: WWAN enabled by radio killswitch; enabled by state file
Mar 05 17:17:52 vlovich NetworkManager[624]: <info>  [1614993472.3164] manager: Networking is enabled by state file
Mar 05 17:17:52 vlovich NetworkManager[624]: <info>  [1614993472.3167] dhcp-init: Using DHCP client 'internal'
Mar 05 17:17:52 vlovich NetworkManager[624]: <info>  [1614993472.3171] settings: Loaded settings plugin: keyfile (internal)
Mar 05 17:17:52 vlovich dbus-daemon[623]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service' requested by ':1.2' (uid=0 pid=624 comm="/usr/bin/NetworkManager --no-daemon ")
Mar 05 17:17:52 vlovich systemd[1]: Starting Network Manager Script Dispatcher Service...
Mar 05 17:17:52 vlovich NetworkManager[624]: <info>  [1614993472.3194] device (lo): carrier: link connected
Mar 05 17:17:52 vlovich NetworkManager[624]: <info>  [1614993472.3196] manager: (lo): new Generic device (/org/freedesktop/NetworkManager/Devices/1)
Mar 05 17:17:52 vlovich NetworkManager[624]: <info>  [1614993472.3200] device (wlp0s20f3): driver supports Access Point (AP) mode
Mar 05 17:17:52 vlovich NetworkManager[624]: <info>  [1614993472.3202] manager: (wlp0s20f3): new 802.11 Wi-Fi device (/org/freedesktop/NetworkManager/Devices/2)
Mar 05 17:17:52 vlovich NetworkManager[624]: <info>  [1614993472.3206] device (wlp0s20f3): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
Mar 05 17:17:52 vlovich dbus-daemon[623]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Mar 05 17:17:52 vlovich systemd[1]: Started Network Manager Script Dispatcher Service.
Mar 05 17:17:52 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:52 vlovich kernel: audit: type=1130 audit(1614993472.319:100): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:52 vlovich kernel: input: PS/2 Logitech Wheel Mouse as /devices/platform/i8042/serio1/input/input45
Mar 05 17:17:52 vlovich NetworkManager[624]: <info>  [1614993472.5250] device (wlp0s20f3): set-hw-addr: set MAC address to 72:4B:96:4D:8C:EC (scanning)
Mar 05 17:17:52 vlovich dbus-daemon[623]: [system] Activating via systemd: service name='fi.w1.wpa_supplicant1' unit='wpa_supplicant.service' requested by ':1.2' (uid=0 pid=624 comm="/usr/bin/NetworkManager --no-daemon ")
Mar 05 17:17:52 vlovich systemd[1]: Starting WPA supplicant...
Mar 05 17:17:52 vlovich NetworkManager[624]: <info>  [1614993472.7135] ovsdb: Could not connect: No such file or directory
Mar 05 17:17:52 vlovich NetworkManager[624]: <info>  [1614993472.7136] ovsdb: disconnected from ovsdb
Mar 05 17:17:52 vlovich dbus-daemon[623]: [system] Successfully activated service 'fi.w1.wpa_supplicant1'
Mar 05 17:17:52 vlovich systemd[1]: Started WPA supplicant.
Mar 05 17:17:52 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=wpa_supplicant comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:52 vlovich wpa_supplicant[718]: Successfully initialized wpa_supplicant
Mar 05 17:17:52 vlovich kernel: audit: type=1130 audit(1614993472.719:101): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=wpa_supplicant comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:52 vlovich wpa_supplicant[718]: nl80211: kernel reports: Attribute failed policy validation
Mar 05 17:17:52 vlovich wpa_supplicant[718]: Failed to create interface p2p-dev-wlp0s20f3: -22 (Invalid argument)
Mar 05 17:17:52 vlovich wpa_supplicant[718]: nl80211: Failed to create a P2P Device interface p2p-dev-wlp0s20f3
Mar 05 17:17:52 vlovich wpa_supplicant[718]: P2P: Failed to enable P2P Device interface
Mar 05 17:17:52 vlovich wpa_supplicant[718]: dbus: fill_dict_with_properties dbus_interface=fi.w1.wpa_supplicant1.Interface.P2PDevice dbus_property=P2PDeviceConfig getter failed
Mar 05 17:17:52 vlovich NetworkManager[624]: <info>  [1614993472.7817] device (wlp0s20f3): supplicant interface state: internal-starting -> disconnected
Mar 05 17:17:52 vlovich NetworkManager[624]: <info>  [1614993472.7818] Wi-Fi P2P device controlled by interface wlp0s20f3 created
Mar 05 17:17:52 vlovich NetworkManager[624]: <info>  [1614993472.7819] manager: (p2p-dev-wlp0s20f3): new 802.11 Wi-Fi P2P device (/org/freedesktop/NetworkManager/Devices/3)
Mar 05 17:17:52 vlovich NetworkManager[624]: <info>  [1614993472.7820] device (p2p-dev-wlp0s20f3): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
Mar 05 17:17:52 vlovich NetworkManager[624]: <warn>  [1614993472.7823] sup-iface[2ea393820902a5e2,0,wlp0s20f3]: call-p2p-cancel: failed with P2P cancel failed
Mar 05 17:17:52 vlovich NetworkManager[624]: <info>  [1614993472.7824] device (wlp0s20f3): state change: unavailable -> disconnected (reason 'supplicant-available', sys-iface-state: 'managed')
Mar 05 17:17:52 vlovich NetworkManager[624]: <info>  [1614993472.7827] device (p2p-dev-wlp0s20f3): state change: unavailable -> disconnected (reason 'none', sys-iface-state: 'managed')
Mar 05 17:17:52 vlovich kernel: [drm] Initialized nvidia-drm 0.0.0 20160202 for 0000:01:00.0 on minor 1
Mar 05 17:17:53 vlovich systemd[1]: systemd-rfkill.service: Succeeded.
Mar 05 17:17:53 vlovich audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:53 vlovich kernel: audit: type=1131 audit(1614993473.085:102): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:53 vlovich fix-bt-a2dp[656]: waiting for 5 seconds...
Mar 05 17:17:54 vlovich sddm[654]: Setting default cursor
Mar 05 17:17:54 vlovich sddm[654]: Running display setup script  "/usr/share/sddm/scripts/Xsetup"
Mar 05 17:17:54 vlovich sddm[654]: Display server started.
Mar 05 17:17:54 vlovich sddm[654]: Socket server starting...
Mar 05 17:17:54 vlovich sddm[654]: Socket server started.
Mar 05 17:17:54 vlovich sddm[654]: Loading theme configuration from ""
Mar 05 17:17:54 vlovich sddm[654]: Greeter starting...
Mar 05 17:17:54 vlovich sddm-helper[731]: [PAM] Starting...
Mar 05 17:17:54 vlovich audit[731]: USER_AUTH pid=731 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:authentication grantors=pam_permit acct="sddm" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:54 vlovich audit[731]: USER_ACCT pid=731 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_permit acct="sddm" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:54 vlovich sddm-helper[731]: [PAM] Authenticating...
Mar 05 17:17:54 vlovich audit[731]: CRED_ACQ pid=731 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_permit acct="sddm" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:54 vlovich sddm-helper[731]: [PAM] returning.
Mar 05 17:17:54 vlovich sddm-helper[731]: pam_unix(sddm-greeter:session): session opened for user sddm(uid=974) by (uid=0)
Mar 05 17:17:54 vlovich kernel: audit: type=1100 audit(1614993474.829:103): pid=731 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:authentication grantors=pam_permit acct="sddm" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:54 vlovich kernel: audit: type=1101 audit(1614993474.829:104): pid=731 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_permit acct="sddm" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:54 vlovich kernel: audit: type=1103 audit(1614993474.829:105): pid=731 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_permit acct="sddm" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:54 vlovich systemd[1]: Created slice User Slice of UID 974.
Mar 05 17:17:54 vlovich systemd[1]: Starting User Runtime Directory /run/user/974...
Mar 05 17:17:54 vlovich systemd-logind[628]: New session c1 of user sddm.
Mar 05 17:17:54 vlovich systemd[1]: Finished User Runtime Directory /run/user/974.
Mar 05 17:17:54 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@974 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:54 vlovich systemd[1]: Starting User Manager for UID 974...
Mar 05 17:17:54 vlovich kernel: audit: type=1130 audit(1614993474.839:106): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@974 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:54 vlovich dbus-daemon[623]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.14' (uid=0 pid=733 comm="(systemd) ")
Mar 05 17:17:54 vlovich dbus-daemon[623]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Mar 05 17:17:54 vlovich systemd[733]: pam_systemd_home(systemd-user:account): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Mar 05 17:17:54 vlovich systemd[733]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8002 service=[systemd-user] terminal=[] user=[sddm] ruser=[<unknown>] rhost=[<unknown>]
Mar 05 17:17:54 vlovich audit[733]: USER_ACCT pid=733 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_access,pam_unix,pam_permit,pam_time acct="sddm" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:54 vlovich audit[733]: CRED_ACQ pid=733 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=? acct="sddm" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
Mar 05 17:17:54 vlovich systemd[733]: pam_unix(systemd-user:session): session opened for user sddm(uid=974) by (uid=0)
Mar 05 17:17:54 vlovich systemd[733]: pam_env(systemd-user:session): deprecated reading of user environment enabled
Mar 05 17:17:54 vlovich audit[733]: USER_START pid=733 uid=0 auid=974 ses=1 msg='op=PAM:session_open grantors=pam_loginuid,pam_loginuid,pam_keyinit,pam_limits,pam_unix,pam_permit,pam_mail,pam_systemd,pam_env acct="sddm" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:54 vlovich kernel: audit: type=1101 audit(1614993474.845:107): pid=733 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_access,pam_unix,pam_permit,pam_time acct="sddm" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:54 vlovich audit: BPF prog-id=23 op=LOAD
Mar 05 17:17:54 vlovich audit: BPF prog-id=23 op=UNLOAD
Mar 05 17:17:54 vlovich systemd[733]: Queued start job for default target Main User Target.
Mar 05 17:17:54 vlovich systemd[733]: -.slice: Failed to migrate controller cgroups from /user.slice/user-974.slice/user@974.service, ignoring: Permission denied
Mar 05 17:17:54 vlovich systemd[733]: Created slice User Application Slice.
Mar 05 17:17:54 vlovich systemd[733]: Reached target Paths.
Mar 05 17:17:54 vlovich systemd[733]: Reached target Timers.
Mar 05 17:17:54 vlovich systemd[733]: Starting D-Bus User Message Bus Socket.
Mar 05 17:17:54 vlovich systemd[733]: Listening on GnuPG network certificate management daemon.
Mar 05 17:17:54 vlovich systemd[733]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
Mar 05 17:17:54 vlovich systemd[733]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
Mar 05 17:17:54 vlovich systemd[733]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
Mar 05 17:17:54 vlovich systemd[733]: Listening on GnuPG cryptographic agent and passphrase cache.
Mar 05 17:17:54 vlovich systemd[733]: Listening on p11-kit server.
Mar 05 17:17:54 vlovich systemd[733]: Listening on Multimedia System.
Mar 05 17:17:54 vlovich systemd[733]: Listening on Sound System.
Mar 05 17:17:54 vlovich systemd[733]: Listening on D-Bus User Message Bus Socket.
Mar 05 17:17:54 vlovich systemd[733]: Reached target Sockets.
Mar 05 17:17:54 vlovich systemd[733]: Reached target Basic System.
Mar 05 17:17:54 vlovich systemd[733]: Reached target Main User Target.
Mar 05 17:17:54 vlovich systemd[733]: Startup finished in 65ms.
Mar 05 17:17:54 vlovich systemd[1]: Started User Manager for UID 974.
Mar 05 17:17:54 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user@974 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:54 vlovich systemd[1]: Started Session c1 of user sddm.
Mar 05 17:17:54 vlovich audit[731]: USER_START pid=731 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:session_open grantors=pam_unix,pam_systemd acct="sddm" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=:0 res=success'
Mar 05 17:17:54 vlovich sddm[654]: Greeter session started successfully
Mar 05 17:17:54 vlovich sddm-greeter[740]: High-DPI autoscaling not Enabled
Mar 05 17:17:54 vlovich sddm-greeter[740]: Reading from "/usr/share/xsessions/plasma.desktop"
Mar 05 17:17:54 vlovich sddm-greeter[740]: Loading theme configuration from "qrc:/theme/theme.conf"
Mar 05 17:17:54 vlovich systemd[733]: Started D-Bus User Message Bus.
Mar 05 17:17:54 vlovich sddm-greeter[740]: Connected to the daemon.
Mar 05 17:17:54 vlovich sddm-greeter[740]: QFont::fromString: Invalid description '(empty)'
Mar 05 17:17:54 vlovich sddm[654]: Message received from greeter: Connect
Mar 05 17:17:55 vlovich sddm-greeter[740]: Loading qrc:/theme/Main.qml...
Mar 05 17:17:55 vlovich sddm-greeter[740]: file:///usr/lib/qt/qml/SddmComponents/LayoutBox.qml:35:5: QML Connections: Implicitly defined onFoo properties in Connections are deprecated. Use this syntax instead: function onFoo(<arguments>) { ... }
Mar 05 17:17:55 vlovich sddm-greeter[740]: qrc:/theme/Main.qml:41:5: QML Connections: Implicitly defined onFoo properties in Connections are deprecated. Use this syntax instead: function onFoo(<arguments>) { ... }
Mar 05 17:17:55 vlovich sddm-greeter[740]: Adding view for "eDP-1" QRect(0,0 3840x2400)
Mar 05 17:17:55 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-REGDOM-CHANGE init=DRIVER type=COUNTRY alpha2=US
Mar 05 17:17:55 vlovich NetworkManager[624]: <info>  [1614993475.2312] manager: startup complete
Mar 05 17:17:55 vlovich sddm-greeter[740]: Message received from daemon: Capabilities
Mar 05 17:17:55 vlovich sddm-greeter[740]: Message received from daemon: HostName
Mar 05 17:17:58 vlovich sddm-greeter[740]: Reading from "/usr/share/xsessions/plasma.desktop"
Mar 05 17:17:58 vlovich sddm[654]: Message received from greeter: Login
Mar 05 17:17:58 vlovich sddm[654]: Reading from "/usr/share/xsessions/plasma.desktop"
Mar 05 17:17:58 vlovich sddm[654]: Reading from "/usr/share/xsessions/plasma.desktop"
Mar 05 17:17:58 vlovich sddm[654]: Session "/usr/share/xsessions/plasma.desktop" selected, command: "/usr/bin/startplasma-x11"
Mar 05 17:17:58 vlovich sddm-helper[754]: [PAM] Starting...
Mar 05 17:17:58 vlovich sddm-helper[754]: [PAM] Authenticating...
Mar 05 17:17:58 vlovich sddm-helper[754]: [PAM] Preparing to converse...
Mar 05 17:17:58 vlovich sddm-helper[754]: [PAM] Conversation with 1 messages
Mar 05 17:17:58 vlovich sddm-helper[754]: pam_kwallet5(sddm:auth): (null): pam_sm_authenticate
Mar 05 17:17:58 vlovich audit[754]: USER_AUTH pid=754 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:authentication grantors=pam_shells,pam_faillock,pam_permit,pam_faillock acct="vlovich" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:58 vlovich sddm-helper[754]: [PAM] returning.
Mar 05 17:17:58 vlovich dbus-daemon[623]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.16' (uid=0 pid=754 comm="/usr/lib/sddm/sddm-helper --socket /tmp/sddm-autha")
Mar 05 17:17:58 vlovich dbus-daemon[623]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Mar 05 17:17:58 vlovich sddm-helper[754]: pam_systemd_home(sddm:account): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Mar 05 17:17:58 vlovich audit[754]: USER_ACCT pid=754 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_access,pam_unix,pam_permit,pam_time acct="vlovich" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:58 vlovich sddm[654]: Authenticated successfully
Mar 05 17:17:58 vlovich sddm-greeter[740]: Message received from daemon: LoginSucceeded
Mar 05 17:17:58 vlovich audit[754]: CRED_ACQ pid=754 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_shells,pam_faillock,pam_permit,pam_faillock acct="vlovich" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:58 vlovich sddm-helper[754]: pam_kwallet5(sddm:setcred): pam_kwallet5: pam_sm_setcred
Mar 05 17:17:58 vlovich kernel: kauditd_printk_skb: 7 callbacks suppressed
Mar 05 17:17:58 vlovich kernel: audit: type=1100 audit(1614993478.289:115): pid=754 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:authentication grantors=pam_shells,pam_faillock,pam_permit,pam_faillock acct="vlovich" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:58 vlovich kernel: audit: type=1101 audit(1614993478.289:116): pid=754 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_access,pam_unix,pam_permit,pam_time acct="vlovich" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:58 vlovich kernel: audit: type=1103 audit(1614993478.289:117): pid=754 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_shells,pam_faillock,pam_permit,pam_faillock acct="vlovich" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:58 vlovich kernel: audit: type=1006 audit(1614993478.289:118): pid=754 uid=0 old-auid=4294967295 auid=1000 tty=(none) old-ses=4294967295 ses=2 res=1
Mar 05 17:17:58 vlovich sddm-helper[754]: pam_unix(sddm:session): session opened for user vlovich(uid=1000) by (uid=0)
Mar 05 17:17:58 vlovich systemd[1]: Created slice User Slice of UID 1000.
Mar 05 17:17:58 vlovich systemd[1]: Starting User Runtime Directory /run/user/1000...
Mar 05 17:17:58 vlovich systemd-logind[628]: New session 2 of user vlovich.
Mar 05 17:17:58 vlovich systemd[1]: Finished User Runtime Directory /run/user/1000.
Mar 05 17:17:58 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@1000 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:58 vlovich systemd[1]: Starting User Manager for UID 1000...
Mar 05 17:17:58 vlovich kernel: audit: type=1130 audit(1614993478.302:119): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@1000 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:58 vlovich dbus-daemon[623]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.18' (uid=0 pid=756 comm="(systemd) ")
Mar 05 17:17:58 vlovich dbus-daemon[623]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Mar 05 17:17:58 vlovich systemd[756]: pam_systemd_home(systemd-user:account): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Mar 05 17:17:58 vlovich audit[756]: USER_ACCT pid=756 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_access,pam_unix,pam_permit,pam_time acct="vlovich" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:58 vlovich audit[756]: CRED_ACQ pid=756 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=? acct="vlovich" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
Mar 05 17:17:58 vlovich systemd[756]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8002 service=[systemd-user] terminal=[] user=[vlovich] ruser=[<unknown>] rhost=[<unknown>]
Mar 05 17:17:58 vlovich systemd[756]: pam_unix(systemd-user:session): session opened for user vlovich(uid=1000) by (uid=0)
Mar 05 17:17:58 vlovich systemd[756]: pam_env(systemd-user:session): deprecated reading of user environment enabled
Mar 05 17:17:58 vlovich audit[756]: USER_START pid=756 uid=0 auid=1000 ses=3 msg='op=PAM:session_open grantors=pam_loginuid,pam_loginuid,pam_keyinit,pam_limits,pam_unix,pam_permit,pam_mail,pam_systemd,pam_env acct="vlovich" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:58 vlovich kernel: audit: type=1101 audit(1614993478.305:120): pid=756 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_access,pam_unix,pam_permit,pam_time acct="vlovich" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:58 vlovich kernel: audit: type=1103 audit(1614993478.305:121): pid=756 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=? acct="vlovich" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
Mar 05 17:17:58 vlovich kernel: audit: type=1006 audit(1614993478.305:122): pid=756 uid=0 old-auid=4294967295 auid=1000 tty=(none) old-ses=4294967295 ses=3 res=1
Mar 05 17:17:58 vlovich kernel: audit: type=1105 audit(1614993478.305:123): pid=756 uid=0 auid=1000 ses=3 msg='op=PAM:session_open grantors=pam_loginuid,pam_loginuid,pam_keyinit,pam_limits,pam_unix,pam_permit,pam_mail,pam_systemd,pam_env acct="vlovich" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:58 vlovich audit: BPF prog-id=24 op=LOAD
Mar 05 17:17:58 vlovich audit: BPF prog-id=24 op=UNLOAD
Mar 05 17:17:58 vlovich kernel: audit: type=1334 audit(1614993478.309:124): prog-id=24 op=LOAD
Mar 05 17:17:58 vlovich sddm-helper[731]: [PAM] Closing session
Mar 05 17:17:58 vlovich sddm-helper[731]: pam_unix(sddm-greeter:session): session closed for user sddm
Mar 05 17:17:58 vlovich audit[731]: USER_END pid=731 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:session_close grantors=pam_unix,pam_systemd acct="sddm" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=:0 res=success'
Mar 05 17:17:58 vlovich audit[731]: CRED_DISP pid=731 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_permit acct="sddm" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=:0 res=success'
Mar 05 17:17:58 vlovich sddm-helper[731]: [PAM] Ended.
Mar 05 17:17:58 vlovich sddm[654]: Auth: sddm-helper exited successfully
Mar 05 17:17:58 vlovich sddm[654]: Greeter stopped.
Mar 05 17:17:58 vlovich systemd[1]: session-c1.scope: Succeeded.
Mar 05 17:17:58 vlovich systemd-logind[628]: Session c1 logged out. Waiting for processes to exit.
Mar 05 17:17:58 vlovich systemd-logind[628]: Removed session c1.
Mar 05 17:17:58 vlovich systemd[756]: Queued start job for default target Main User Target.
Mar 05 17:17:58 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user@1000 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:58 vlovich sddm-helper[754]: pam_env(sddm:session): deprecated reading of user environment enabled
Mar 05 17:17:58 vlovich systemd[756]: -.slice: Failed to migrate controller cgroups from /user.slice/user-1000.slice/user@1000.service, ignoring: Permission denied
Mar 05 17:17:58 vlovich sddm-helper[754]: pam_kwallet5(sddm:session): pam_kwallet5: pam_sm_open_session
Mar 05 17:17:58 vlovich systemd[756]: Created slice User Application Slice.
Mar 05 17:17:58 vlovich systemd[756]: Reached target Paths.
Mar 05 17:17:58 vlovich systemd[756]: Reached target Timers.
Mar 05 17:17:58 vlovich systemd[756]: Starting D-Bus User Message Bus Socket.
Mar 05 17:17:58 vlovich systemd[756]: Listening on GnuPG network certificate management daemon.
Mar 05 17:17:58 vlovich systemd[756]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
Mar 05 17:17:58 vlovich systemd[756]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
Mar 05 17:17:58 vlovich systemd[756]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
Mar 05 17:17:58 vlovich systemd[756]: Listening on GnuPG cryptographic agent and passphrase cache.
Mar 05 17:17:58 vlovich systemd[756]: Listening on p11-kit server.
Mar 05 17:17:58 vlovich systemd[756]: Listening on Multimedia System.
Mar 05 17:17:58 vlovich systemd[756]: Listening on Sound System.
Mar 05 17:17:58 vlovich systemd[756]: Listening on D-Bus User Message Bus Socket.
Mar 05 17:17:58 vlovich systemd[756]: Reached target Sockets.
Mar 05 17:17:58 vlovich systemd[756]: Reached target Basic System.
Mar 05 17:17:58 vlovich systemd[756]: Reached target Main User Target.
Mar 05 17:17:58 vlovich systemd[756]: Startup finished in 69ms.
Mar 05 17:17:58 vlovich systemd[1]: Started User Manager for UID 1000.
Mar 05 17:17:58 vlovich systemd[1]: Started Session 2 of user vlovich.
Mar 05 17:17:58 vlovich sddm-helper[765]: pam_kwallet5: final socket path: /run/user/1000/kwallet5.socket
Mar 05 17:17:58 vlovich audit[754]: USER_START pid=754 uid=0 auid=1000 ses=2 msg='op=PAM:session_open grantors=pam_keyinit,pam_loginuid,pam_keyinit,pam_limits,pam_unix,pam_permit,pam_mail,pam_systemd,pam_env,pam_kwallet5 acct="vlovich" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=:0 res=success'
Mar 05 17:17:58 vlovich sddm-helper[754]: Starting: "/usr/share/sddm/scripts/Xsession \"/usr/bin/startplasma-x11\""
Mar 05 17:17:58 vlovich sddm-helper[767]: Adding cookie to "/home/vlovich/.Xauthority"
Mar 05 17:17:58 vlovich sddm[654]: Session started
Mar 05 17:17:58 vlovich systemd[756]: Started D-Bus User Message Bus.
Mar 05 17:17:58 vlovich dbus-daemon[772]: [session uid=1000 pid=772] Activating service name='org.kde.KSplash' requested by ':1.2' (uid=1000 pid=767 comm="/usr/bin/startplasma-x11 ")
Mar 05 17:17:58 vlovich dbus-daemon[772]: [session uid=1000 pid=772] Successfully activated service 'org.kde.KSplash'
Mar 05 17:17:58 vlovich klauncher[791]: Connecting to deprecated signal QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
Mar 05 17:17:58 vlovich kcminit_startup[801]: Initializing  "kcm_style" :  "kcminit_style"
Mar 05 17:17:58 vlovich kcminit_startup[801]: QDBusConnection: error: could not send signal to service "" path "//home/vlovich/.kde4/share/config/kdeglobals" interface "org.kde.kconfig.notify" member "ConfigChanged": Invalid object path: //home/vlovich/.kde4/share/config/kdeglobals
Mar 05 17:17:58 vlovich kcminit_startup[801]: Initializing  "kcm_mouse" :  "kcminit_mouse"
Mar 05 17:17:58 vlovich plasma_session[783]: org.kde.plasma.session: process job  "kcminit_startup" finished with exit code  0
Mar 05 17:17:59 vlovich dbus-daemon[772]: [session uid=1000 pid=772] Activating service name='ca.desrt.dconf' requested by ':1.9' (uid=1000 pid=809 comm="/usr/bin/kded5 ")
Mar 05 17:17:59 vlovich dbus-daemon[772]: [session uid=1000 pid=772] Successfully activated service 'ca.desrt.dconf'
Mar 05 17:17:59 vlovich NetworkManager[624]: <info>  [1614993479.2584] policy: auto-activating connection 'i_steal_pies' (af7dc588-6901-4fc4-9ce4-b24a224c4330)
Mar 05 17:17:59 vlovich NetworkManager[624]: <info>  [1614993479.2591] device (wlp0s20f3): Activation: starting connection 'i_steal_pies' (af7dc588-6901-4fc4-9ce4-b24a224c4330)
Mar 05 17:17:59 vlovich NetworkManager[624]: <info>  [1614993479.2592] device (wlp0s20f3): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Mar 05 17:17:59 vlovich NetworkManager[624]: <info>  [1614993479.2596] manager: NetworkManager state is now CONNECTING
Mar 05 17:17:59 vlovich NetworkManager[624]: <info>  [1614993479.2744] device (wlp0s20f3): set-hw-addr: reset MAC address to C0:3C:59:11:EB:BC (preserve)
Mar 05 17:17:59 vlovich dbus-daemon[772]: [session uid=1000 pid=772] Activating via systemd: service name='org.kde.kglobalaccel' unit='plasma-kglobalaccel.service' requested by ':1.8' (uid=1000 pid=809 comm="/usr/bin/kded5 ")
Mar 05 17:17:59 vlovich systemd[756]: Created slice User Background Tasks Slice.
Mar 05 17:17:59 vlovich systemd[756]: Starting KDE Global Shortcuts Server...
Mar 05 17:17:59 vlovich NetworkManager[624]: <info>  [1614993479.4790] device (wlp0s20f3): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Mar 05 17:17:59 vlovich NetworkManager[624]: <info>  [1614993479.4794] device (wlp0s20f3): Activation: (wifi) access point 'i_steal_pies' has security, but secrets are required.
Mar 05 17:17:59 vlovich NetworkManager[624]: <info>  [1614993479.4794] device (wlp0s20f3): state change: config -> need-auth (reason 'none', sys-iface-state: 'managed')
Mar 05 17:17:59 vlovich NetworkManager[624]: <info>  [1614993479.5030] device (wlp0s20f3): supplicant interface state: disconnected -> interface_disabled
Mar 05 17:17:59 vlovich NetworkManager[624]: <info>  [1614993479.5031] device (p2p-dev-wlp0s20f3): supplicant management interface state: disconnected -> interface_disabled
Mar 05 17:17:59 vlovich NetworkManager[624]: <warn>  [1614993479.5033] device (wlp0s20f3): no secrets: No agents were available for this request.
Mar 05 17:17:59 vlovich NetworkManager[624]: <info>  [1614993479.5034] device (wlp0s20f3): state change: need-auth -> failed (reason 'no-secrets', sys-iface-state: 'managed')
Mar 05 17:17:59 vlovich NetworkManager[624]: <info>  [1614993479.5040] manager: NetworkManager state is now DISCONNECTED
Mar 05 17:17:59 vlovich NetworkManager[624]: <warn>  [1614993479.5058] device (wlp0s20f3): Activation: failed for connection 'i_steal_pies'
Mar 05 17:17:59 vlovich NetworkManager[624]: <info>  [1614993479.5062] device (wlp0s20f3): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Mar 05 17:17:59 vlovich NetworkManager[624]: <info>  [1614993479.5212] device (wlp0s20f3): set-hw-addr: set MAC address to 32:15:C8:4A:51:A4 (scanning)
Mar 05 17:17:59 vlovich dbus-daemon[772]: [session uid=1000 pid=772] Successfully activated service 'org.kde.kglobalaccel'
Mar 05 17:17:59 vlovich systemd[756]: Started KDE Global Shortcuts Server.
Mar 05 17:17:59 vlovich kwin_x11[813]: kwin_xkbcommon: XKB: /usr/share/X11/locale/en_US.UTF-8/Compose:5079:46: this compose sequence is a duplicate of another; skipping line
Mar 05 17:17:59 vlovich kwin_x11[813]: kwin_xkbcommon: XKB: /usr/share/X11/locale/en_US.UTF-8/Compose:5081:48: this compose sequence is a duplicate of another; skipping line
Mar 05 17:17:59 vlovich kwin_x11[813]: kwin_xkbcommon: XKB: /usr/share/X11/locale/en_US.UTF-8/Compose:5083:48: this compose sequence is a duplicate of another; skipping line
Mar 05 17:17:59 vlovich kwin_x11[813]: kwin_xkbcommon: XKB: /usr/share/X11/locale/en_US.UTF-8/Compose:5087:47: this compose sequence is a duplicate of another; skipping line
Mar 05 17:17:59 vlovich kwin_x11[813]: kwin_xkbcommon: XKB: /usr/share/X11/locale/en_US.UTF-8/Compose:5089:46: this compose sequence is a duplicate of another; skipping line
Mar 05 17:17:59 vlovich kwin_x11[813]: kwin_xkbcommon: XKB: /usr/share/X11/locale/en_US.UTF-8/Compose:5097:48: this compose sequence is a duplicate of another; skipping line
Mar 05 17:17:59 vlovich kwin_x11[813]: kwin_xkbcommon: XKB: /usr/share/X11/locale/en_US.UTF-8/Compose:5101:46: this compose sequence is a duplicate of another; skipping line
Mar 05 17:17:59 vlovich kwin_x11[813]: kwin_xkbcommon: XKB: /usr/share/X11/locale/en_US.UTF-8/Compose:5103:46: this compose sequence is a duplicate of another; skipping line
Mar 05 17:17:59 vlovich kwin_x11[813]: kwin_xkbcommon: XKB: /usr/share/X11/locale/en_US.UTF-8/Compose:5107:45: this compose sequence is a duplicate of another; skipping line
Mar 05 17:17:59 vlovich kwin_x11[813]: kwin_xkbcommon: XKB: /usr/share/X11/locale/en_US.UTF-8/Compose:5110:46: this compose sequence is a duplicate of another; skipping line
Mar 05 17:17:59 vlovich kwin_x11[813]: kwin_xkbcommon: XKB: Couldn't process include statement for 'us(\0)'
Mar 05 17:17:59 vlovich kwin_x11[813]: kwin_xkbcommon: XKB: Abandoning symbols file "(unnamed)"
Mar 05 17:17:59 vlovich kwin_x11[813]: kwin_xkbcommon: XKB: Failed to compile xkb_symbols
Mar 05 17:17:59 vlovich dbus-daemon[772]: [session uid=1000 pid=772] Activating via systemd: service name='org.kde.ActivityManager' unit='plasma-kactivitymanagerd.service' requested by ':1.11' (uid=1000 pid=813 comm="/usr/bin/kwin_x11 ")
Mar 05 17:17:59 vlovich kwin_x11[813]: kwin_xkbcommon: XKB: Failed to compile keymap
Mar 05 17:17:59 vlovich systemd[756]: Starting KActivityManager Activity manager Service...
Mar 05 17:17:59 vlovich dbus-daemon[772]: [session uid=1000 pid=772] Successfully activated service 'org.kde.ActivityManager'
Mar 05 17:17:59 vlovich systemd[756]: Started KActivityManager Activity manager Service.
Mar 05 17:17:59 vlovich kded5[809]: Installing the delayed initialization callback.
Mar 05 17:17:59 vlovich NetworkManager[624]: <info>  [1614993479.7817] device (wlp0s20f3): supplicant interface state: interface_disabled -> inactive
Mar 05 17:17:59 vlovich NetworkManager[624]: <info>  [1614993479.7818] device (p2p-dev-wlp0s20f3): supplicant management interface state: interface_disabled -> inactive
Mar 05 17:17:59 vlovich kded5[809]: bluedevil: Created
Mar 05 17:17:59 vlovich dbus-daemon[623]: [system] Activating via systemd: service name='org.freedesktop.UDisks2' unit='udisks2.service' requested by ':1.22' (uid=1000 pid=809 comm="/usr/bin/kded5 ")
Mar 05 17:17:59 vlovich systemd[1]: Starting Disk Manager...
Mar 05 17:17:59 vlovich udisksd[870]: udisks daemon version 2.9.2 starting
Mar 05 17:17:59 vlovich dbus-daemon[623]: [system] Successfully activated service 'org.freedesktop.UDisks2'
Mar 05 17:17:59 vlovich systemd[1]: Started Disk Manager.
Mar 05 17:17:59 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=udisks2 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:17:59 vlovich dbus-daemon[623]: [system] Activating via systemd: service name='org.freedesktop.UPower' unit='upower.service' requested by ':1.22' (uid=1000 pid=809 comm="/usr/bin/kded5 ")
Mar 05 17:17:59 vlovich audit: BPF prog-id=25 op=LOAD
Mar 05 17:17:59 vlovich audit: BPF prog-id=26 op=LOAD
Mar 05 17:17:59 vlovich systemd[1]: Starting Daemon for power management...
Mar 05 17:17:59 vlovich udisksd[870]: Acquired the name org.freedesktop.UDisks2 on the system message bus
Mar 05 17:17:59 vlovich ksmserver[868]: Qt: Session management error: networkIdsList argument is NULL
Mar 05 17:18:00 vlovich plasma_session[783]: org.kde.plasma.session: Starting autostart service  "/etc/xdg/autostart/kaccess.desktop" ("/usr/bin/kaccess")
Mar 05 17:18:00 vlovich plasma_session[783]: org.kde.plasma.session: Starting autostart service  "/etc/xdg/autostart/polkit-kde-authentication-agent-1.desktop" ("/usr/lib/polkit-kde-authentication-agent-1")
Mar 05 17:18:00 vlovich kcminit_startup[801]: Initializing  "kded_touchpad" :  "kcminit_touchpad"
Mar 05 17:18:00 vlovich kcminit_startup[801]: kcm_touchpad: Using X11 backend
Mar 05 17:18:00 vlovich plasma_session[783]: org.kde.plasma.session: Starting autostart service  "/etc/xdg/autostart/pam_kwallet_init.desktop" ("/usr/lib/pam_kwallet_init")
Mar 05 17:18:00 vlovich kcminit_startup[801]: Initializing  "kcm_kgamma" :  "kcminit_kgamma"
Mar 05 17:18:00 vlovich plasma_session[783]: org.kde.plasma.session: Starting autostart service  "/etc/xdg/autostart/org.kde.plasmashell.desktop" ("/usr/bin/plasmashell")
Mar 05 17:18:00 vlovich kwin_x11[813]: kwin_core: XCB error: 10 (BadAccess), sequence: 831, resource id: 2005, major code: 142 (Composite), minor code: 2 (RedirectSubwindows)
Mar 05 17:18:00 vlovich plasma_session[783]: org.kde.plasma.session: Starting autostart service  "/etc/xdg/autostart/baloo_file.desktop" ("/usr/bin/baloo_file")
Mar 05 17:18:00 vlovich plasma_session[783]: org.kde.plasma.session: Starting autostart service  "/etc/xdg/autostart/xembedsniproxy.desktop" ("/usr/bin/xembedsniproxy")
Mar 05 17:18:00 vlovich kaccess[894]: Xlib XKB extension major= 1  minor= 0
Mar 05 17:18:00 vlovich plasma_session[783]: org.kde.plasma.session: Starting autostart service  "/etc/xdg/autostart/gmenudbusmenuproxy.desktop" ("/usr/bin/gmenudbusmenuproxy")
Mar 05 17:18:00 vlovich plasma_session[783]: org.kde.plasma.session: Starting autostart service  "/etc/xdg/autostart/org.kde.discover.notifier.desktop" ("/usr/lib/DiscoverNotifier")
Mar 05 17:18:00 vlovich plasma_session[783]: org.kde.plasma.session: Starting autostart service  "/etc/xdg/autostart/pulseaudio.desktop" ("/usr/bin/start-pulseaudio-x11")
Mar 05 17:18:00 vlovich kwin_x11[813]: kf.config.core: "\"fsrestore1\" - conversion of \"961,961,0,0\" to QRect failed"
Mar 05 17:18:00 vlovich kwin_x11[813]: kf.config.core: "\"fsrestore2\" - conversion of \"961,961,0,0\" to QRect failed"
Mar 05 17:18:00 vlovich kwin_x11[813]: kf.config.core: "\"fsrestore3\" - conversion of \"0,0,0,0\" to QRect failed"
Mar 05 17:18:00 vlovich kwin_x11[813]: kf.config.core: "\"fsrestore4\" - conversion of \"961,961,0,0\" to QRect failed"
Mar 05 17:18:00 vlovich kwin_x11[813]: kf.config.core: "\"fsrestore5\" - conversion of \"0,0,0,0\" to QRect failed"
Mar 05 17:18:00 vlovich kwin_x11[813]: kf.config.core: "\"fsrestore6\" - conversion of \"0,0,0,0\" to QRect failed"
Mar 05 17:18:00 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 875, resource id: 10485765, major code: 18 (ChangeProperty), minor code: 0
Mar 05 17:18:00 vlovich systemd[756]: Starting Sound Service...
Mar 05 17:18:00 vlovich systemd[756]: Started /usr/lib/DiscoverNotifier.
Mar 05 17:18:00 vlovich dbus-daemon[623]: [system] Activating via systemd: service name='org.freedesktop.RealtimeKit1' unit='rtkit-daemon.service' requested by ':1.27' (uid=1000 pid=930 comm="/usr/bin/pulseaudio --daemonize=no --log-target=jo")
Mar 05 17:18:00 vlovich systemd[1]: Starting RealtimeKit Scheduling Policy Service...
Mar 05 17:18:00 vlovich dbus-daemon[623]: [system] Successfully activated service 'org.freedesktop.RealtimeKit1'
Mar 05 17:18:00 vlovich systemd[1]: Started RealtimeKit Scheduling Policy Service.
Mar 05 17:18:00 vlovich rtkit-daemon[947]: Successfully called chroot.
Mar 05 17:18:00 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=rtkit-daemon comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:18:00 vlovich rtkit-daemon[947]: Successfully dropped privileges.
Mar 05 17:18:00 vlovich rtkit-daemon[947]: Successfully limited resources.
Mar 05 17:18:00 vlovich rtkit-daemon[947]: Running.
Mar 05 17:18:00 vlovich rtkit-daemon[947]: Watchdog thread running.
Mar 05 17:18:00 vlovich rtkit-daemon[947]: Canary thread running.
Mar 05 17:18:00 vlovich rtkit-daemon[947]: Successfully made thread 930 of process 930 owned by '1000' high priority at nice level -11.
Mar 05 17:18:00 vlovich rtkit-daemon[947]: Supervising 1 threads of 1 processes of 1 users.
Mar 05 17:18:00 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 1032, resource id: 44040192, major code: 18 (ChangeProperty), minor code: 0
Mar 05 17:18:00 vlovich polkit-kde-authentication-agent-1[897]: New PolkitAgentListener  0x55d428622c00
Mar 05 17:18:00 vlovich polkit-kde-authentication-agent-1[897]: Adding new listener  PolkitQt1::Agent::Listener(0x55d428649e20) for  0x55d428622c00
Mar 05 17:18:00 vlovich polkit-kde-authentication-agent-1[897]: Listener online
Mar 05 17:18:00 vlovich kaccess[894]: X server XKB extension major= 1  minor= 0
Mar 05 17:18:00 vlovich polkitd[636]: Registered Authentication Agent for unix-session:2 (system bus name :1.29 [/usr/lib/polkit-kde-authentication-agent-1], object path /org/kde/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8)
Mar 05 17:18:00 vlovich polkit-kde-authentication-agent-1[897]: Authentication agent result: true
Mar 05 17:18:00 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 1042, resource id: 44040193, major code: 18 (ChangeProperty), minor code: 0
Mar 05 17:18:00 vlovich DiscoverNotifier[920]: couldn't load "/usr/lib/qt/plugins/discover-notifier/DiscoverPackageKitNotifier.so" because "Cannot load library /usr/lib/qt/plugins/discover-notifier/DiscoverPackageKitNotifier.so: (libpackagekitqt5.so.1: cannot open shared object file: No such file or directory)"
Mar 05 17:18:00 vlovich DiscoverNotifier[920]: couldn't load "/usr/lib/qt/plugins/discover-notifier/FlatpakNotifier.so" because "Cannot load library /usr/lib/qt/plugins/discover-notifier/FlatpakNotifier.so: (libflatpak.so.0: cannot open shared object file: No such file or directory)"
Mar 05 17:18:00 vlovich DiscoverNotifier[920]: couldn't find any notifier backend ("/usr/lib/qt/plugins", "/usr/lib")
Mar 05 17:18:00 vlovich dbus-daemon[623]: [system] Successfully activated service 'org.freedesktop.UPower'
Mar 05 17:18:00 vlovich systemd[1]: Started Daemon for power management.
Mar 05 17:18:00 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=upower comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:18:00 vlovich DiscoverNotifier[920]: kf.notifications: env says KDE is running but SNI unavailable -- check KDE_FULL_SESSION and XDG_CURRENT_DESKTOP
Mar 05 17:18:00 vlovich DiscoverNotifier[928]: couldn't load "/usr/lib/qt/plugins/discover-notifier/DiscoverPackageKitNotifier.so" because "Cannot load library /usr/lib/qt/plugins/discover-notifier/DiscoverPackageKitNotifier.so: (libpackagekitqt5.so.1: cannot open shared object file: No such file or directory)"
Mar 05 17:18:00 vlovich DiscoverNotifier[928]: couldn't load "/usr/lib/qt/plugins/discover-notifier/FlatpakNotifier.so" because "Cannot load library /usr/lib/qt/plugins/discover-notifier/FlatpakNotifier.so: (libflatpak.so.0: cannot open shared object file: No such file or directory)"
Mar 05 17:18:00 vlovich DiscoverNotifier[928]: couldn't find any notifier backend ("/usr/lib/qt/plugins", "/usr/lib")
Mar 05 17:18:00 vlovich systemd[756]: Started KWalletManager - KDE Wallet Management Tool.
Mar 05 17:18:00 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 1082, resource id: 23068679, major code: 18 (ChangeProperty), minor code: 0
Mar 05 17:18:00 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 1086, resource id: 23068680, major code: 18 (ChangeProperty), minor code: 0
Mar 05 17:18:00 vlovich systemd[756]: app-\x2fusr\x2flib\x2fDiscoverNotifier-c75b1ff7525042a0beb086f0ee88dd18.scope: Succeeded.
Mar 05 17:18:00 vlovich NetworkManager[624]: <info>  [1614993480.6871] agent-manager: agent[dd08970072901686,:1.22/org.kde.plasma.networkmanagement/1000]: agent registered
Mar 05 17:18:00 vlovich kded5[809]: kcm_touchpad: Using X11 backend
Mar 05 17:18:00 vlovich systemd[756]: Started Konsole - Terminal.
Mar 05 17:18:00 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 1188, resource id: 23068681, major code: 18 (ChangeProperty), minor code: 0
Mar 05 17:18:00 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 1192, resource id: 23068682, major code: 18 (ChangeProperty), minor code: 0
Mar 05 17:18:00 vlovich rtkit-daemon[947]: Supervising 1 threads of 1 processes of 1 users.
Mar 05 17:18:00 vlovich rtkit-daemon[947]: Successfully made thread 984 of process 930 owned by '1000' RT at priority 5.
Mar 05 17:18:00 vlovich rtkit-daemon[947]: Supervising 2 threads of 1 processes of 1 users.
Mar 05 17:18:00 vlovich rtkit-daemon[947]: Supervising 2 threads of 1 processes of 1 users.
Mar 05 17:18:00 vlovich rtkit-daemon[947]: Successfully made thread 985 of process 930 owned by '1000' RT at priority 5.
Mar 05 17:18:00 vlovich rtkit-daemon[947]: Supervising 3 threads of 1 processes of 1 users.
Mar 05 17:18:00 vlovich dbus-daemon[623]: [system] Activating via systemd: service name='org.bluez' unit='dbus-org.bluez.service' requested by ':1.34' (uid=1000 pid=930 comm="/usr/bin/pulseaudio --daemonize=no --log-target=jo")
Mar 05 17:18:00 vlovich dbus-daemon[623]: [system] Activation via systemd failed for unit 'dbus-org.bluez.service': Unit dbus-org.bluez.service not found.
Mar 05 17:18:00 vlovich kded5[809]: QDBusConnection: name 'org.kde.kglobalaccel' had owner '' but we thought it was ':1.12'
Mar 05 17:18:00 vlovich kded5[809]: Delayed initialization.
Mar 05 17:18:00 vlovich kded5[809]: QDBusConnection: name 'org.freedesktop.UDisks2' had owner '' but we thought it was ':1.23'
Mar 05 17:18:00 vlovich kded5[809]: Reloading the khotkeys configuration
Mar 05 17:18:00 vlovich kded5[809]: Version 2 File!
Mar 05 17:18:00 vlovich kded5[809]: true
Mar 05 17:18:00 vlovich kded5[809]: Imported file "/usr/share/khotkeys/defaults.khotkeys"
Mar 05 17:18:00 vlovich kded5[809]: Imported file "/usr/share/khotkeys/kde32b1.khotkeys"
Mar 05 17:18:00 vlovich kded5[809]: Imported file "/usr/share/khotkeys/konqueror_gestures_kde321.khotkeys"
Mar 05 17:18:00 vlovich kded5[809]: Imported file "/usr/share/khotkeys/konsole.khotkeys"
Mar 05 17:18:00 vlovich systemd[756]: Started Sound Service.
Mar 05 17:18:00 vlovich pulseaudio[930]: GetManagedObjects() failed: org.freedesktop.systemd1.NoSuchUnit: Unit dbus-org.bluez.service not found.
Mar 05 17:18:00 vlovich kded5[809]: 
Mar 05 17:18:00 vlovich dbus-daemon[623]: [system] Activating service name='org.kde.kded.smart' requested by ':1.22' (uid=1000 pid=809 comm="/usr/bin/kded5 ") (using servicehelper)
Mar 05 17:18:00 vlovich dbus-daemon[623]: [system] Successfully activated service 'org.kde.kded.smart'
Mar 05 17:18:00 vlovich dbus-daemon[623]: [system] Activating via systemd: service name='org.freedesktop.ModemManager1' unit='dbus-org.freedesktop.ModemManager1.service' requested by ':1.22' (uid=1000 pid=809 comm="/usr/bin/kded5 ")
Mar 05 17:18:00 vlovich dbus-daemon[623]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.ModemManager1.service': Unit dbus-org.freedesktop.ModemManager1.service not found.
Mar 05 17:18:01 vlovich dbus-daemon[623]: [system] Activating via systemd: service name='org.freedesktop.ModemManager1' unit='dbus-org.freedesktop.ModemManager1.service' requested by ':1.22' (uid=1000 pid=809 comm="/usr/bin/kded5 ")
Mar 05 17:18:01 vlovich dbus-daemon[623]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.ModemManager1.service': Unit dbus-org.freedesktop.ModemManager1.service not found.
Mar 05 17:18:01 vlovich kded5[809]: kf.modemmanagerqt: Failed enumerating MM objects: "org.freedesktop.systemd1.NoSuchUnit" 
                                               "Unit dbus-org.freedesktop.ModemManager1.service not found."
Mar 05 17:18:01 vlovich kded5[809]: Known activities: ("3bc6c685-63b3-4d68-b9c3-2e4c9687758b")
Mar 05 17:18:01 vlovich dbus-daemon[772]: [session uid=1000 pid=772] Activating service name='org.kde.KScreen' requested by ':1.8' (uid=1000 pid=809 comm="/usr/bin/kded5 ")
Mar 05 17:18:01 vlovich kded5[809]: bluedevil: Bluetooth operational changed false
Mar 05 17:18:01 vlovich kded5[809]: bluedevil: ObexManager operational changed false
Mar 05 17:18:01 vlovich dbus-daemon[772]: [session uid=1000 pid=772] Activating via systemd: service name='org.bluez.obex' unit='dbus-org.bluez.obex.service' requested by ':1.8' (uid=1000 pid=809 comm="/usr/bin/kded5 ")
Mar 05 17:18:01 vlovich dbus-daemon[623]: [system] Activating via systemd: service name='org.bluez' unit='dbus-org.bluez.service' requested by ':1.22' (uid=1000 pid=809 comm="/usr/bin/kded5 ")
Mar 05 17:18:01 vlovich dbus-daemon[623]: [system] Activation via systemd failed for unit 'dbus-org.bluez.service': Unit dbus-org.bluez.service not found.
Mar 05 17:18:01 vlovich kded5[809]: kf.bluezqt: PendingCall Error: "Unit dbus-org.bluez.service not found."
Mar 05 17:18:01 vlovich kded5[809]: Registering ":1.25/StatusNotifierItem" to system tray
Mar 05 17:18:01 vlovich systemd[756]: Starting Bluetooth OBEX service...
Mar 05 17:18:01 vlovich obexd[1008]: OBEX daemon 5.56
Mar 05 17:18:01 vlovich dbus-daemon[772]: [session uid=1000 pid=772] Successfully activated service 'org.bluez.obex'
Mar 05 17:18:01 vlovich systemd[756]: Started Bluetooth OBEX service.
Mar 05 17:18:01 vlovich dbus-daemon[772]: [session uid=1000 pid=772] Successfully activated service 'org.kde.KScreen'
Mar 05 17:18:01 vlovich kscreen_backend_launcher[1007]: kscreen.xrandr: Connected output 66 to CRTC 63
Mar 05 17:18:01 vlovich kscreen_backend_launcher[1007]: kscreen.xcb.helper: Detected XRandR 1.6
Mar 05 17:18:01 vlovich kscreen_backend_launcher[1007]: kscreen.xcb.helper: Event Base:  89
Mar 05 17:18:01 vlovich kscreen_backend_launcher[1007]: kscreen.xcb.helper: Event Error:  147
Mar 05 17:18:01 vlovich systemd[756]: Started Konsole - Terminal.
Mar 05 17:18:01 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 1324, resource id: 23068683, major code: 18 (ChangeProperty), minor code: 0
Mar 05 17:18:01 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 1328, resource id: 23068684, major code: 18 (ChangeProperty), minor code: 0
Mar 05 17:18:01 vlovich kded5[809]: kscreen.kded: PowerDevil SuspendSession action not available!
Mar 05 17:18:01 vlovich kscreen_backend_launcher[1007]: kscreen.xrandr: XRandR::setConfig
Mar 05 17:18:01 vlovich kscreen_backend_launcher[1007]: kscreen.xrandr: Requested screen size is QSize(3840, 2400)
Mar 05 17:18:01 vlovich kscreen_backend_launcher[1007]: kscreen.xrandr: Needed CRTCs:  1
Mar 05 17:18:01 vlovich kscreen_backend_launcher[1007]: kscreen.xrandr: Actions to perform: 
                                                                           Primary Output: false
Mar 05 17:18:01 vlovich kscreen_backend_launcher[1007]: kscreen.xrandr:         Change Screen Size: false
Mar 05 17:18:01 vlovich kscreen_backend_launcher[1007]: kscreen.xrandr:         Disable outputs: false
Mar 05 17:18:01 vlovich kscreen_backend_launcher[1007]: kscreen.xrandr:         Change outputs: true
Mar 05 17:18:01 vlovich kscreen_backend_launcher[1007]: kscreen.xrandr:                  (66)
Mar 05 17:18:01 vlovich kscreen_backend_launcher[1007]: kscreen.xrandr:         Enable outputs: false
Mar 05 17:18:01 vlovich kscreen_backend_launcher[1007]: kscreen.xrandr: RRSetCrtcConfig (change output) 
                                                                           Output: 66 ( "eDP-1" ) 
                                                                           CRTC: 63 
                                                                           Pos: QPoint(0,0) 
                                                                           Mode: 71 KScreen::Mode(Id: "71" , Size: QSize(3840, 2400) @ 59.9939 ) 
                                                                           Rotation: KScreen::Output::None
Mar 05 17:18:01 vlovich kscreen_backend_launcher[1007]: kscreen.xrandr:         Result:  0
Mar 05 17:18:01 vlovich kscreen_backend_launcher[1007]: kscreen.xrandr: XRandROutput 66 update 
                                                                           m_connected: 0 
                                                                           m_crtc XRandRCrtc(0x560dcd7638d0) 
                                                                           CRTC: 63 
                                                                           MODE: 71 
                                                                           Connection: 0 
                                                                           Primary: true
Mar 05 17:18:01 vlovich kscreen_backend_launcher[1007]: kscreen.xrandr: XRandR::setConfig done!
Mar 05 17:18:01 vlovich plasmashell[901]: kf.plasma.quick: Applet preload policy set to 1
Mar 05 17:18:01 vlovich dbus-daemon[772]: [session uid=1000 pid=772] Activating service name='org.kde.ksystemstats' requested by ':1.23' (uid=1000 pid=901 comm="/usr/bin/plasmashell ")
Mar 05 17:18:01 vlovich systemd[756]: app-org.kde.kwalletmanager5-ab9c09a9e4d146f3a48e45ea1a7d4d5a.scope: Succeeded.
Mar 05 17:18:01 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 1376, resource id: 23068685, major code: 18 (ChangeProperty), minor code: 0
Mar 05 17:18:01 vlovich kwalletmanager5[956]: Connecting to deprecated signal QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
Mar 05 17:18:01 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 1460, resource id: 23068686, major code: 18 (ChangeProperty), minor code: 0
Mar 05 17:18:01 vlovich systemd[756]: Started Konsole - Terminal.
Mar 05 17:18:01 vlovich kded5[809]: Registering ":1.33/StatusNotifierItem" to system tray
Mar 05 17:18:01 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 1465, resource id: 23068687, major code: 18 (ChangeProperty), minor code: 0
Mar 05 17:18:01 vlovich kded5[809]: bluedevil: ObexManager operational changed true
Mar 05 17:18:01 vlovich kded5[809]: bluedevil: ObexAgent registered
Mar 05 17:18:01 vlovich plasmashell[901]: file:///usr/share/plasma/plasmoids/org.kde.plasma.systemmonitor/contents/ui/main.qml:54: TypeError: Cannot read property 'length' of undefined
Mar 05 17:18:01 vlovich plasmashell[901]: file:///usr/share/plasma/plasmoids/org.kde.plasma.systemmonitor/contents/ui/main.qml:54: TypeError: Cannot read property 'length' of undefined
Mar 05 17:18:01 vlovich plasmashell[901]: file:///usr/share/plasma/plasmoids/org.kde.plasma.systemmonitor/contents/ui/main.qml:54: TypeError: Cannot read property 'length' of undefined
Mar 05 17:18:01 vlovich plasmashell[901]: file:///usr/share/plasma/plasmoids/org.kde.plasma.systemmonitor/contents/ui/main.qml:54: TypeError: Cannot read property 'length' of undefined
Mar 05 17:18:01 vlovich systemd[756]: Started Dropbox.
Mar 05 17:18:01 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 1612, resource id: 23068688, major code: 18 (ChangeProperty), minor code: 0
Mar 05 17:18:01 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 1622, resource id: 23068689, major code: 18 (ChangeProperty), minor code: 0
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:02 vlovich plasmashell[901]: file:///usr/share/ksysguard/sensorfaces/org.kde.ksysguard.linechart/contents/ui/LineChart.qml:72:9: Unable to assign [undefined] to bool
Mar 05 17:18:02 vlovich plasmashell[901]: file:///usr/share/ksysguard/sensorfaces/org.kde.ksysguard.linechart/contents/ui/LineChart.qml:72:9: Unable to assign [undefined] to bool
Mar 05 17:18:02 vlovich plasmashell[901]: file:///usr/share/ksysguard/sensorfaces/org.kde.ksysguard.linechart/contents/ui/LineChart.qml:72:9: Unable to assign [undefined] to bool
Mar 05 17:18:02 vlovich plasmashell[901]: qt.svg: <input>:406:376: Could not add child element to parent element because the types are incorrect.
Mar 05 17:18:02 vlovich plasmashell[901]: qt.svg: <input>:407:130: Could not add child element to parent element because the types are incorrect.
Mar 05 17:18:02 vlovich plasmashell[901]: qt.svg: <input>:408:130: Could not add child element to parent element because the types are incorrect.
Mar 05 17:18:02 vlovich plasmashell[901]: qt.svg: <input>:408:393: Could not add child element to parent element because the types are incorrect.
Mar 05 17:18:02 vlovich plasmashell[901]: qt.svg: <input>:409:130: Could not add child element to parent element because the types are incorrect.
Mar 05 17:18:02 vlovich plasmashell[901]: qt.svg: <input>:410:129: Could not add child element to parent element because the types are incorrect.
Mar 05 17:18:02 vlovich plasmashell[901]: qt.svg: <input>:411:129: Could not add child element to parent element because the types are incorrect.
Mar 05 17:18:02 vlovich plasmashell[901]: qt.svg: <input>:412:129: Could not add child element to parent element because the types are incorrect.
Mar 05 17:18:02 vlovich plasmashell[901]: qt.svg: <input>:413:129: Could not add child element to parent element because the types are incorrect.
Mar 05 17:18:02 vlovich plasmashell[901]: qt.svg: <input>:413:379: Could not add child element to parent element because the types are incorrect.
Mar 05 17:18:02 vlovich plasmashell[901]: qt.svg: <input>:413:631: Could not add child element to parent element because the types are incorrect.
Mar 05 17:18:02 vlovich plasmashell[901]: trying to show an empty dialog
Mar 05 17:18:02 vlovich plasmashell[901]: file:///usr/share/plasma/shells/org.kde.plasma.desktop/contents/views/Desktop.qml:146:19: QML Loader: Binding loop detected for property "height"
Mar 05 17:18:02 vlovich plasmashell[901]: file:///usr/share/plasma/shells/org.kde.plasma.desktop/contents/views/Desktop.qml:146:19: QML Loader: Binding loop detected for property "height"
Mar 05 17:18:02 vlovich systemd[1]: NetworkManager-dispatcher.service: Succeeded.
Mar 05 17:18:02 vlovich audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:18:03 vlovich plasmashell[901]: Both point size and pixel size set. Using pixel size.
Mar 05 17:18:03 vlovich plasmashell[901]: Both point size and pixel size set. Using pixel size.
Mar 05 17:18:03 vlovich plasmashell[901]: Both point size and pixel size set. Using pixel size.
Mar 05 17:18:03 vlovich ksystemstats[1028]: Found unsupported GPU: /sys/devices/pci0000:00/0000:00:02.0
Mar 05 17:18:03 vlovich systemd[756]: Started System Settings - System Settings.
Mar 05 17:18:03 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 3396, resource id: 23068690, major code: 18 (ChangeProperty), minor code: 0
Mar 05 17:18:03 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 3410, resource id: 23068691, major code: 18 (ChangeProperty), minor code: 0
Mar 05 17:18:03 vlovich plasmashell[901]: file:///usr/share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/ui/DigitalClock.qml:534:9: QML Label: Binding loop detected for property "height"
Mar 05 17:18:03 vlovich plasmashell[901]: file:///usr/share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/ui/DigitalClock.qml:493:13: QML Label: Binding loop detected for property "height"
Mar 05 17:18:03 vlovich audit[624]: USYS_CONFIG pid=624 uid=0 auid=4294967295 ses=4294967295 msg='op=statistics arg="refresh-rate-ms" pid=1028 uid=1000 result=success exe="/usr/bin/NetworkManager" hostname=? addr=? terminal=? res=success'
Mar 05 17:18:03 vlovich kernel: kauditd_printk_skb: 11 callbacks suppressed
Mar 05 17:18:03 vlovich kernel: audit: type=1111 audit(1614993483.912:136): pid=624 uid=0 auid=4294967295 ses=4294967295 msg='op=statistics arg="refresh-rate-ms" pid=1028 uid=1000 result=success exe="/usr/bin/NetworkManager" hostname=? addr=? terminal=? res=success'
Mar 05 17:18:03 vlovich NetworkManager[624]: <info>  [1614993483.9188] audit: op="statistics" arg="refresh-rate-ms" pid=1028 uid=1000 result="success"
Mar 05 17:18:03 vlovich dbus-daemon[772]: [session uid=1000 pid=772] Successfully activated service 'org.kde.ksystemstats'
Mar 05 17:18:03 vlovich plasmashell[901]: trying to show an empty dialog
Mar 05 17:18:04 vlovich plasma_session[783]: org.kde.plasma.session: Starting autostart service  "/home/vlovich/.config/autostart/dropbox.desktop" ("/usr/bin/dropbox")
Mar 05 17:18:04 vlovich plasma_session[783]: org.kde.plasma.session: Starting autostart service  "/etc/xdg/autostart/pkcs11-register.desktop" ("/usr/bin/pkcs11-register")
Mar 05 17:18:04 vlovich plasma_session[783]: org.kde.plasma.session: Starting autostart service  "/etc/xdg/autostart/blueman.desktop" ("/usr/bin/blueman-applet")
Mar 05 17:18:04 vlovich plasma_session[783]: org.kde.plasma.session: Starting autostart service  "/etc/xdg/autostart/powerdevil.desktop" ("/usr/lib/org_kde_powerdevil")
Mar 05 17:18:04 vlovich plasma_session[783]: org.kde.plasma.session: Starting autostart service  "/etc/xdg/autostart/knemo.desktop" ("/usr/bin/knemo")
Mar 05 17:18:04 vlovich systemd[1]: Started PC/SC Smart Card Daemon.
Mar 05 17:18:04 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=pcscd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:18:04 vlovich kernel: audit: type=1130 audit(1614993484.175:137): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=pcscd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:18:04 vlovich org_kde_powerdevil[1496]: org.kde.powerdevil: No outputs have backlight property
Mar 05 17:18:04 vlovich org_kde_powerdevil[1496]: org.kde.powerdevil: Xrandr not supported, trying ddc, helper
Mar 05 17:18:04 vlovich dbus-daemon[623]: [system] Activating service name='org.kde.powerdevil.discretegpuhelper' requested by ':1.41' (uid=1000 pid=1496 comm="/usr/lib/org_kde_powerdevil ") (using servicehelper)
Mar 05 17:18:04 vlovich plasmashell[901]: file:///usr/share/plasma/plasmoids/org.kde.panel/contents/ui/main.qml:30:1: QML DropArea (parent or ancestor of QQuickLayoutAttached): Binding loop detected for property "minimumWidth"
Mar 05 17:18:04 vlovich dbus-daemon[623]: [system] Successfully activated service 'org.kde.powerdevil.discretegpuhelper'
Mar 05 17:18:04 vlovich dbus-daemon[623]: [system] Activating service name='org.kde.powerdevil.chargethresholdhelper' requested by ':1.41' (uid=1000 pid=1496 comm="/usr/lib/org_kde_powerdevil ") (using servicehelper)
Mar 05 17:18:04 vlovich plasmashell[901]: file:///usr/share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/ui/DigitalClock.qml:493:13: QML Label: Binding loop detected for property "height"
Mar 05 17:18:04 vlovich plasmashell[901]: file:///usr/share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/ui/DigitalClock.qml:534:9: QML Label: Binding loop detected for property "height"
Mar 05 17:18:04 vlovich plasmashell[901]: file:///usr/share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/ui/DigitalClock.qml:554:5: QML Label: Binding loop detected for property "height"
Mar 05 17:18:04 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-REGDOM-CHANGE init=DRIVER type=COUNTRY alpha2=US
Mar 05 17:18:04 vlovich plasmashell[901]: trying to show an empty dialog
Mar 05 17:18:04 vlovich plasmashell[901]: Plasma Shell startup completed
Mar 05 17:18:04 vlovich knemo[1500]: QCommandLineParser: already having an option named "h"
Mar 05 17:18:04 vlovich knemo[1500]: QCommandLineParser: already having an option named "help-all"
Mar 05 17:18:04 vlovich knemo[1500]: QCommandLineParser: already having an option named "v"
Mar 05 17:18:04 vlovich NetworkManager[624]: <info>  [1614993484.6203] policy: auto-activating connection 'i_steal_pies' (af7dc588-6901-4fc4-9ce4-b24a224c4330)
Mar 05 17:18:04 vlovich NetworkManager[624]: <info>  [1614993484.6217] device (wlp0s20f3): Activation: starting connection 'i_steal_pies' (af7dc588-6901-4fc4-9ce4-b24a224c4330)
Mar 05 17:18:04 vlovich NetworkManager[624]: <info>  [1614993484.6220] device (wlp0s20f3): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Mar 05 17:18:04 vlovich NetworkManager[624]: <info>  [1614993484.6231] manager: NetworkManager state is now CONNECTING
Mar 05 17:18:04 vlovich plasmashell[901]: kf.quickcharts.datasource: ModelSource: Invalid column 1
Mar 05 17:18:04 vlovich dbus-daemon[623]: [system] Successfully activated service 'org.kde.powerdevil.chargethresholdhelper'
Mar 05 17:18:04 vlovich dbus-daemon[623]: [system] Activating service name='org.kde.powerdevil.backlighthelper' requested by ':1.41' (uid=1000 pid=1496 comm="/usr/lib/org_kde_powerdevil ") (using servicehelper)
Mar 05 17:18:04 vlovich NetworkManager[624]: <info>  [1614993484.6394] device (wlp0s20f3): set-hw-addr: reset MAC address to C0:3C:59:11:EB:BC (preserve)
Mar 05 17:18:04 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 3774, resource id: 4194349, major code: 18 (ChangeProperty), minor code: 0
Mar 05 17:18:04 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:04 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:04 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:04 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:04 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:04 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:04 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:04 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:04 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:04 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:04 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:04 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:04 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:04 vlovich dbus-daemon[623]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
Mar 05 17:18:04 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:04 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:04 vlovich org_kde_powerdevil[1496]: Warning from helper: Failed to open "/sys/class/power_supply/BAT0/charge_start_threshold" for reading
Mar 05 17:18:04 vlovich org_kde_powerdevil[1496]: Warning from helper: Failed to open "/sys/class/power_supply/BAT0/charge_stop_threshold" for reading
Mar 05 17:18:04 vlovich org_kde_powerdevil[1496]: org.kde.powerdevil: org.kde.powerdevil.chargethresholdhelper.getthreshold failed "Charge thresholds not supported"
Mar 05 17:18:04 vlovich plasmashell[901]: Cyclic dependency detected between "file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/global/Globals.qml" and "file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/NotificationHeader.qml"
Mar 05 17:18:04 vlovich org_kde_powerdevil[1496]: org.kde.powerdevil: Handle button events action could not check for screen configuration
Mar 05 17:18:04 vlovich org_kde_powerdevil[1496]: Warning from helper: Failed to open "/sys/class/power_supply/BAT0/charge_start_threshold" for reading
Mar 05 17:18:04 vlovich org_kde_powerdevil[1496]: Warning from helper: Failed to open "/sys/class/power_supply/BAT0/charge_stop_threshold" for reading
Mar 05 17:18:04 vlovich org_kde_powerdevil[1496]: org.kde.powerdevil: org.kde.powerdevil.chargethresholdhelper.getthreshold failed "Charge thresholds not supported"
Mar 05 17:18:04 vlovich NetworkManager[624]: <info>  [1614993484.8381] device (wlp0s20f3): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Mar 05 17:18:04 vlovich NetworkManager[624]: <info>  [1614993484.8384] device (wlp0s20f3): Activation: (wifi) access point 'i_steal_pies' has security, but secrets are required.
Mar 05 17:18:04 vlovich NetworkManager[624]: <info>  [1614993484.8384] device (wlp0s20f3): state change: config -> need-auth (reason 'none', sys-iface-state: 'managed')
Mar 05 17:18:04 vlovich NetworkManager[624]: <info>  [1614993484.8501] device (wlp0s20f3): supplicant interface state: inactive -> interface_disabled
Mar 05 17:18:04 vlovich NetworkManager[624]: <info>  [1614993484.8502] device (p2p-dev-wlp0s20f3): supplicant management interface state: inactive -> interface_disabled
Mar 05 17:18:04 vlovich NetworkManager[624]: <info>  [1614993484.8683] device (wlp0s20f3): supplicant interface state: interface_disabled -> inactive
Mar 05 17:18:04 vlovich NetworkManager[624]: <info>  [1614993484.8683] device (p2p-dev-wlp0s20f3): supplicant management interface state: interface_disabled -> inactive
Mar 05 17:18:04 vlovich kded5[809]: plasma-nm: Unhandled active connection state change:  1
Mar 05 17:18:04 vlovich kded5[809]: plasma-nm: virtual NMVariantMapMap SecretAgent::GetSecrets(const NMVariantMapMap&, const QDBusObjectPath&, const QString&, const QStringList&, uint)
Mar 05 17:18:04 vlovich kded5[809]: plasma-nm: Path: "/org/freedesktop/NetworkManager/Settings/2"
Mar 05 17:18:04 vlovich kded5[809]: plasma-nm: Setting name: "802-11-wireless-security"
Mar 05 17:18:04 vlovich kded5[809]: plasma-nm: Hints: ()
Mar 05 17:18:04 vlovich kded5[809]: plasma-nm: Flags: 1
Mar 05 17:18:04 vlovich systemsettings5[1486]: file:///usr/share/kpackage/genericqml/org.kde.systemsettings.sidebar/contents/ui/SubCategoryPage.qml:157:9: QML Connections: Implicitly defined onFoo properties in Connections are deprecated. Use this syntax instead: function onFoo(<arguments>) { ... }
Mar 05 17:18:04 vlovich systemsettings5[1486]: file:///usr/share/kpackage/genericqml/org.kde.systemsettings.sidebar/contents/ui/SubCategoryPage.qml:147:9: QML Connections: Implicitly defined onFoo properties in Connections are deprecated. Use this syntax instead: function onFoo(<arguments>) { ... }
Mar 05 17:18:04 vlovich kded5[809]: plasma-nm: bool SecretAgent::processGetSecrets(SecretsRequest&) const Waiting for the wallet to open
Mar 05 17:18:04 vlovich NetworkManager[624]: <info>  [1614993484.9428] device (wlp0s20f3): state change: need-auth -> prepare (reason 'none', sys-iface-state: 'managed')
Mar 05 17:18:04 vlovich NetworkManager[624]: <info>  [1614993484.9436] device (wlp0s20f3): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Mar 05 17:18:04 vlovich NetworkManager[624]: <info>  [1614993484.9443] device (wlp0s20f3): Activation: (wifi) connection 'i_steal_pies' has security, and secrets exist.  No new secrets needed.
Mar 05 17:18:04 vlovich NetworkManager[624]: <info>  [1614993484.9444] Config: added 'ssid' value 'i_steal_pies'
Mar 05 17:18:04 vlovich NetworkManager[624]: <info>  [1614993484.9444] Config: added 'scan_ssid' value '1'
Mar 05 17:18:04 vlovich NetworkManager[624]: <info>  [1614993484.9444] Config: added 'bgscan' value 'simple:30:-70:86400'
Mar 05 17:18:04 vlovich NetworkManager[624]: <info>  [1614993484.9445] Config: added 'key_mgmt' value 'WPA-PSK WPA-PSK-SHA256 FT-PSK'
Mar 05 17:18:04 vlovich NetworkManager[624]: <info>  [1614993484.9445] Config: added 'auth_alg' value 'OPEN'
Mar 05 17:18:04 vlovich NetworkManager[624]: <info>  [1614993484.9445] Config: added 'psk' value '<hidden>'
Mar 05 17:18:04 vlovich NetworkManager[624]: <info>  [1614993484.9603] device (wlp0s20f3): supplicant interface state: inactive -> scanning
Mar 05 17:18:04 vlovich NetworkManager[624]: <info>  [1614993484.9604] device (p2p-dev-wlp0s20f3): supplicant management interface state: inactive -> scanning
Mar 05 17:18:05 vlovich kded5[809]: Registering "org.kde.StatusNotifierHost-901" as system tray
Mar 05 17:18:05 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:05 vlovich plasmashell[901]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 05 17:18:05 vlovich plasmashell[901]: trying to show an empty dialog
Mar 05 17:18:05 vlovich plasmashell[901]: file:///usr/share/plasma/shells/org.kde.plasma.desktop/contents/views/Desktop.qml:146:19: QML Loader: Binding loop detected for property "height"
Mar 05 17:18:05 vlovich plasmashell[901]: file:///usr/share/plasma/shells/org.kde.plasma.desktop/contents/views/Desktop.qml:146:19: QML Loader: Binding loop detected for property "height"
Mar 05 17:18:05 vlovich systemsettings5[1486]: file:///usr/share/kpackage/genericqml/org.kde.systemsettings.sidebar/contents/ui/introPage.qml:109:27: QML IntroIcon (parent or ancestor of QQuickLayoutAttached): Binding loop detected for property "minimumHeight"
Mar 05 17:18:05 vlovich dbus-daemon[772]: [session uid=1000 pid=772] Activating via systemd: service name='org.a11y.Bus' unit='at-spi-dbus-bus.service' requested by ':1.43' (uid=1000 pid=1494 comm="/usr/bin/python /usr/bin/blueman-applet ")
Mar 05 17:18:05 vlovich systemd[756]: Starting Accessibility services bus...
Mar 05 17:18:05 vlovich dbus-daemon[772]: [session uid=1000 pid=772] Successfully activated service 'org.a11y.Bus'
Mar 05 17:18:05 vlovich systemd[756]: Started Accessibility services bus.
Mar 05 17:18:05 vlovich dbus-daemon[623]: [system] Activating via systemd: service name='org.blueman.Mechanism' unit='blueman-mechanism.service' requested by ':1.53' (uid=1000 pid=1494 comm="/usr/bin/python /usr/bin/blueman-applet ")
Mar 05 17:18:05 vlovich systemd[1]: Starting Bluetooth management mechanism...
Mar 05 17:18:05 vlovich plasmashell[901]: kf.i18n: "0 instead of 2 arguments to message {%1 — %2} supplied before conversion."
Mar 05 17:18:05 vlovich plasmashell[901]: Both point size and pixel size set. Using pixel size.
Mar 05 17:18:05 vlovich plasmashell[901]: Entry is not valid "kontact.desktop" QSharedPointer(0x55d0b8c44e60)
Mar 05 17:18:05 vlovich plasmashell[901]: Entry is not valid "ktp-contactlist.desktop" QSharedPointer(0x55d0b8c3fc60)
Mar 05 17:18:05 vlovich plasmashell[901]: Entry is not valid "org.kde.kate.desktop" QSharedPointer(0x55d0b8c3fdd0)
Mar 05 17:18:05 vlovich plasmashell[901]: Entry is not valid "kontact.desktop" QSharedPointer(0x55d0b8c45050)
Mar 05 17:18:05 vlovich plasmashell[901]: Entry is not valid "ktp-contactlist.desktop" QSharedPointer(0x55d0b8c3fdd0)
Mar 05 17:18:05 vlovich plasmashell[901]: Entry is not valid "org.kde.kate.desktop" QSharedPointer(0x55d0b8c44c40)
Mar 05 17:18:05 vlovich blueman-mechanism[1574]: Unable to init server: Could not connect: Connection refused
Mar 05 17:18:05 vlovich plasmashell[901]: trying to show an empty dialog
Mar 05 17:18:06 vlovich blueman-mechanism[1574]: Unable to init server: Could not connect: Connection refused
Mar 05 17:18:06 vlovich plasmashell[901]: file:///usr/share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/LeaveButtons.qml:69:5: QML ToolButton: Binding loop detected for property "display"
Mar 05 17:18:06 vlovich blueman-mechani[1574]: gtk_icon_theme_get_for_screen: assertion 'GDK_IS_SCREEN (screen)' failed
Mar 05 17:18:06 vlovich dbus-daemon[623]: [system] Successfully activated service 'org.blueman.Mechanism'
Mar 05 17:18:06 vlovich systemd[1]: Started Bluetooth management mechanism.
Mar 05 17:18:06 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=blueman-mechanism comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:18:06 vlovich kernel: audit: type=1130 audit(1614993486.019:138): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=blueman-mechanism comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:18:06 vlovich at-spi-bus-launcher[1565]: dbus-daemon[1565]: Activating service name='org.a11y.atspi.Registry' requested by ':1.0' (uid=1000 pid=1494 comm="/usr/bin/python /usr/bin/blueman-applet ")
Mar 05 17:18:06 vlovich dbus-daemon[623]: [system] Activating via systemd: service name='org.bluez' unit='dbus-org.bluez.service' requested by ':1.53' (uid=1000 pid=1494 comm="/usr/bin/python /usr/bin/blueman-applet ")
Mar 05 17:18:06 vlovich dbus-daemon[623]: [system] Activation via systemd failed for unit 'dbus-org.bluez.service': Unit dbus-org.bluez.service not found.
Mar 05 17:18:06 vlovich at-spi-bus-launcher[1565]: dbus-daemon[1565]: Successfully activated service 'org.a11y.atspi.Registry'
Mar 05 17:18:06 vlovich at-spi-bus-launcher[1585]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
Mar 05 17:18:06 vlovich kded5[809]: Registering ":1.47/org/ayatana/NotificationItem/blueman" to system tray
Mar 05 17:18:07 vlovich wpa_supplicant[718]: wlp0s20f3: SME: Trying to authenticate with 70:3a:cb:26:cd:9d (SSID='i_steal_pies' freq=5745 MHz)
Mar 05 17:18:07 vlovich kernel: wlp0s20f3: authenticate with 70:3a:cb:26:cd:9d
Mar 05 17:18:07 vlovich NetworkManager[624]: <info>  [1614993487.5667] device (wlp0s20f3): supplicant interface state: scanning -> authenticating
Mar 05 17:18:07 vlovich NetworkManager[624]: <info>  [1614993487.5668] device (p2p-dev-wlp0s20f3): supplicant management interface state: scanning -> authenticating
Mar 05 17:18:07 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-REGDOM-CHANGE init=DRIVER type=COUNTRY alpha2=US
Mar 05 17:18:07 vlovich kernel: wlp0s20f3: send auth to 70:3a:cb:26:cd:9d (try 1/3)
Mar 05 17:18:07 vlovich wpa_supplicant[718]: wlp0s20f3: Trying to associate with 70:3a:cb:26:cd:9d (SSID='i_steal_pies' freq=5745 MHz)
Mar 05 17:18:07 vlovich NetworkManager[624]: <info>  [1614993487.6009] device (wlp0s20f3): supplicant interface state: authenticating -> associating
Mar 05 17:18:07 vlovich NetworkManager[624]: <info>  [1614993487.6009] device (p2p-dev-wlp0s20f3): supplicant management interface state: authenticating -> associating
Mar 05 17:18:07 vlovich kernel: wlp0s20f3: authenticated
Mar 05 17:18:07 vlovich kernel: wlp0s20f3: associate with 70:3a:cb:26:cd:9d (try 1/3)
Mar 05 17:18:07 vlovich kernel: wlp0s20f3: RX AssocResp from 70:3a:cb:26:cd:9d (capab=0x1011 status=0 aid=2)
Mar 05 17:18:07 vlovich wpa_supplicant[718]: wlp0s20f3: Associated with 70:3a:cb:26:cd:9d
Mar 05 17:18:07 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
Mar 05 17:18:07 vlovich kernel: wlp0s20f3: associated
Mar 05 17:18:07 vlovich NetworkManager[624]: <info>  [1614993487.6231] device (wlp0s20f3): supplicant interface state: associating -> associated
Mar 05 17:18:07 vlovich NetworkManager[624]: <info>  [1614993487.6231] device (p2p-dev-wlp0s20f3): supplicant management interface state: associating -> associated
Mar 05 17:18:07 vlovich wpa_supplicant[718]: wlp0s20f3: WPA: Key negotiation completed with 70:3a:cb:26:cd:9d [PTK=CCMP GTK=CCMP]
Mar 05 17:18:07 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-CONNECTED - Connection to 70:3a:cb:26:cd:9d completed [id=0 id_str=]
Mar 05 17:18:07 vlovich kernel: IPv6: ADDRCONF(NETDEV_CHANGE): wlp0s20f3: link becomes ready
Mar 05 17:18:07 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-53 noise=9999 txrate=26000
Mar 05 17:18:07 vlovich NetworkManager[624]: <info>  [1614993487.6494] device (wlp0s20f3): supplicant interface state: associated -> completed
Mar 05 17:18:07 vlovich NetworkManager[624]: <info>  [1614993487.6494] device (wlp0s20f3): Activation: (wifi) Stage 2 of 5 (Device Configure) successful. Connected to wireless network "i_steal_pies"
Mar 05 17:18:07 vlovich NetworkManager[624]: <info>  [1614993487.6494] device (p2p-dev-wlp0s20f3): supplicant management interface state: associated -> completed
Mar 05 17:18:07 vlovich NetworkManager[624]: <info>  [1614993487.6495] device (wlp0s20f3): state change: config -> ip-config (reason 'none', sys-iface-state: 'managed')
Mar 05 17:18:07 vlovich NetworkManager[624]: <info>  [1614993487.6498] dhcp4 (wlp0s20f3): activation: beginning transaction (timeout in 45 seconds)
Mar 05 17:18:07 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-53 noise=9999 txrate=234000
Mar 05 17:18:07 vlovich kernel: wlp0s20f3: Limiting TX power to 30 (30 - 0) dBm as advertised by 70:3a:cb:26:cd:9d
Mar 05 17:18:07 vlovich NetworkManager[624]: <info>  [1614993487.7003] dhcp4 (wlp0s20f3): state changed unknown -> bound, address=192.168.1.67
Mar 05 17:18:07 vlovich NetworkManager[624]: <info>  [1614993487.7026] device (wlp0s20f3): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'managed')
Mar 05 17:18:07 vlovich dbus-daemon[623]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service' requested by ':1.2' (uid=0 pid=624 comm="/usr/bin/NetworkManager --no-daemon ")
Mar 05 17:18:07 vlovich systemd[1]: Starting Network Manager Script Dispatcher Service...
Mar 05 17:18:07 vlovich dbus-daemon[623]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Mar 05 17:18:07 vlovich systemd[1]: Started Network Manager Script Dispatcher Service.
Mar 05 17:18:07 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:18:07 vlovich NetworkManager[624]: <info>  [1614993487.7120] device (wlp0s20f3): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'managed')
Mar 05 17:18:07 vlovich NetworkManager[624]: <info>  [1614993487.7122] device (wlp0s20f3): state change: secondaries -> activated (reason 'none', sys-iface-state: 'managed')
Mar 05 17:18:07 vlovich kernel: audit: type=1130 audit(1614993487.705:139): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:18:07 vlovich NetworkManager[624]: <info>  [1614993487.7127] manager: NetworkManager state is now CONNECTED_LOCAL
Mar 05 17:18:07 vlovich NetworkManager[624]: <info>  [1614993487.7144] manager: NetworkManager state is now CONNECTED_SITE
Mar 05 17:18:07 vlovich NetworkManager[624]: <info>  [1614993487.7145] policy: set 'i_steal_pies' (wlp0s20f3) as default for IPv4 routing and DNS
Mar 05 17:18:07 vlovich dbus-daemon[623]: [system] Activating via systemd: service name='org.freedesktop.resolve1' unit='dbus-org.freedesktop.resolve1.service' requested by ':1.2' (uid=0 pid=624 comm="/usr/bin/NetworkManager --no-daemon ")
Mar 05 17:18:07 vlovich dbus-daemon[623]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.resolve1.service': Unit dbus-org.freedesktop.resolve1.service not found.
Mar 05 17:18:07 vlovich NetworkManager[624]: <info>  [1614993487.7212] device (wlp0s20f3): Activation: successful, device activated.
Mar 05 17:18:07 vlovich plasmashell[901]: file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/NotificationPopup.qml:116:15: QML QQuickItem: Binding loop detected for property "height"
Mar 05 17:18:07 vlovich kded5[809]: plasma-nm: Network connectivity limited, scheduling notification
Mar 05 17:18:07 vlovich plasmashell[901]: file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/NotificationPopup.qml:116:15: QML QQuickItem: Binding loop detected for property "height"
Mar 05 17:18:08 vlovich NetworkManager[624]: <info>  [1614993488.1413] manager: NetworkManager state is now CONNECTED_GLOBAL
Mar 05 17:18:08 vlovich systemd[1]: Stopping User Manager for UID 974...
Mar 05 17:18:08 vlovich systemd[733]: Stopped target Main User Target.
Mar 05 17:18:08 vlovich systemd[733]: Stopping D-Bus User Message Bus...
Mar 05 17:18:08 vlovich systemd[733]: dbus.service: Succeeded.
Mar 05 17:18:08 vlovich systemd[733]: Stopped D-Bus User Message Bus.
Mar 05 17:18:08 vlovich systemd[733]: Stopped target Basic System.
Mar 05 17:18:08 vlovich systemd[733]: Stopped target Paths.
Mar 05 17:18:08 vlovich systemd[733]: Stopped target Sockets.
Mar 05 17:18:08 vlovich systemd[733]: Stopped target Timers.
Mar 05 17:18:08 vlovich systemd[733]: dbus.socket: Succeeded.
Mar 05 17:18:08 vlovich systemd[733]: Closed D-Bus User Message Bus Socket.
Mar 05 17:18:08 vlovich systemd[733]: dirmngr.socket: Succeeded.
Mar 05 17:18:08 vlovich systemd[733]: Closed GnuPG network certificate management daemon.
Mar 05 17:18:08 vlovich systemd[733]: gpg-agent-browser.socket: Succeeded.
Mar 05 17:18:08 vlovich systemd[733]: Closed GnuPG cryptographic agent and passphrase cache (access for web browsers).
Mar 05 17:18:08 vlovich systemd[733]: gpg-agent-extra.socket: Succeeded.
Mar 05 17:18:08 vlovich systemd[733]: Closed GnuPG cryptographic agent and passphrase cache (restricted).
Mar 05 17:18:08 vlovich systemd[733]: gpg-agent-ssh.socket: Succeeded.
Mar 05 17:18:08 vlovich systemd[733]: Closed GnuPG cryptographic agent (ssh-agent emulation).
Mar 05 17:18:08 vlovich systemd[733]: gpg-agent.socket: Succeeded.
Mar 05 17:18:08 vlovich systemd[733]: Closed GnuPG cryptographic agent and passphrase cache.
Mar 05 17:18:08 vlovich systemd[733]: p11-kit-server.socket: Succeeded.
Mar 05 17:18:08 vlovich systemd[733]: Closed p11-kit server.
Mar 05 17:18:08 vlovich systemd[733]: pipewire.socket: Succeeded.
Mar 05 17:18:08 vlovich systemd[733]: Closed Multimedia System.
Mar 05 17:18:08 vlovich systemd[733]: pulseaudio.socket: Succeeded.
Mar 05 17:18:08 vlovich systemd[733]: Closed Sound System.
Mar 05 17:18:08 vlovich systemd[733]: Removed slice User Application Slice.
Mar 05 17:18:08 vlovich systemd[733]: Reached target Shutdown.
Mar 05 17:18:08 vlovich systemd[733]: systemd-exit.service: Succeeded.
Mar 05 17:18:08 vlovich systemd[733]: Finished Exit the Session.
Mar 05 17:18:08 vlovich systemd[733]: Reached target Exit the Session.
Mar 05 17:18:08 vlovich systemd[734]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8004 service=[systemd-user] terminal=[] user=[sddm] ruser=[<unknown>] rhost=[<unknown>]
Mar 05 17:18:08 vlovich systemd[1]: user@974.service: Succeeded.
Mar 05 17:18:08 vlovich audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user@974 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:18:08 vlovich systemd[1]: Stopped User Manager for UID 974.
Mar 05 17:18:08 vlovich systemd[1]: Stopping User Runtime Directory /run/user/974...
Mar 05 17:18:08 vlovich kernel: audit: type=1131 audit(1614993488.379:140): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user@974 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:18:08 vlovich systemd[756]: run-user-974.mount: Succeeded.
Mar 05 17:18:08 vlovich systemd[1]: run-user-974.mount: Succeeded.
Mar 05 17:18:08 vlovich systemd[1]: user-runtime-dir@974.service: Succeeded.
Mar 05 17:18:08 vlovich systemd[1]: Stopped User Runtime Directory /run/user/974.
Mar 05 17:18:08 vlovich audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@974 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:18:08 vlovich kernel: audit: type=1131 audit(1614993488.382:141): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@974 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:18:08 vlovich systemd[1]: Removed slice User Slice of UID 974.
Mar 05 17:18:08 vlovich kded5[809]: Registering ":1.49/org/ayatana/NotificationItem/dropbox_client_1060" to system tray
Mar 05 17:18:09 vlovich NetworkManager[624]: <info>  [1614993489.5237] dhcp6 (wlp0s20f3): activation: beginning transaction (timeout in 45 seconds)
Mar 05 17:18:09 vlovich NetworkManager[624]: <info>  [1614993489.5244] policy: set 'i_steal_pies' (wlp0s20f3) as default for IPv6 routing and DNS
Mar 05 17:18:09 vlovich NetworkManager[624]: <info>  [1614993489.5310] dhcp6 (wlp0s20f3): state changed unknown -> bound
Mar 05 17:18:11 vlovich kded5[809]: Service  ":1.49" unregistered
Mar 05 17:18:11 vlovich systemd[756]: app-dropbox-a7b3f7cc363147f7a599127358380ada.scope: Succeeded.
Mar 05 17:18:11 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 8659, resource id: 23068692, major code: 18 (ChangeProperty), minor code: 0
Mar 05 17:18:11 vlovich kded5[809]: Registering ":1.51/org/ayatana/NotificationItem/dropbox_client_1680" to system tray
Mar 05 17:18:17 vlovich systemd-timesyncd[576]: Initial synchronization to time server [2001:6a8:2500:100::153]:123 (2.arch.pool.ntp.org).
Mar 05 17:18:17 vlovich systemd[1]: NetworkManager-dispatcher.service: Succeeded.
Mar 05 17:18:17 vlovich audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:18:17 vlovich kernel: audit: type=1131 audit(1614993497.952:142): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:18:31 vlovich systemd[1]: systemd-hostnamed.service: Succeeded.
Mar 05 17:18:31 vlovich audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:18:31 vlovich kernel: audit: type=1131 audit(1614993511.461:143): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:18:31 vlovich audit: BPF prog-id=22 op=UNLOAD
Mar 05 17:18:31 vlovich audit: BPF prog-id=21 op=UNLOAD
Mar 05 17:18:31 vlovich kernel: audit: type=1334 audit(1614993511.621:144): prog-id=22 op=UNLOAD
Mar 05 17:18:31 vlovich kernel: audit: type=1334 audit(1614993511.621:145): prog-id=21 op=UNLOAD
Mar 05 17:18:36 vlovich systemd[1]: blueman-mechanism.service: Succeeded.
Mar 05 17:18:36 vlovich audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=blueman-mechanism comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:18:36 vlovich kernel: audit: type=1131 audit(1614993516.046:146): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=blueman-mechanism comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:19:02 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-55 noise=9999 txrate=433300
Mar 05 17:19:05 vlovich systemd[1]: pcscd.service: Succeeded.
Mar 05 17:19:05 vlovich audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=pcscd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:19:05 vlovich kernel: audit: type=1131 audit(1614993545.204:147): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=pcscd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:19:06 vlovich audit[1977]: USER_AUTH pid=1977 uid=1000 auid=1000 ses=2 msg='op=PAM:authentication grantors=pam_faillock,pam_permit,pam_faillock acct="vlovich" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 05 17:19:06 vlovich dbus-daemon[623]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.57' (uid=0 pid=1977 comm="sudo vi /usr/share/X11/xorg.conf.d/20-displaylink.")
Mar 05 17:19:06 vlovich dbus-daemon[623]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Mar 05 17:19:06 vlovich sudo[1977]: pam_systemd_home(sudo:account): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Mar 05 17:19:06 vlovich audit[1977]: USER_ACCT pid=1977 uid=1000 auid=1000 ses=2 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="vlovich" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 05 17:19:06 vlovich sudo[1977]:  vlovich : TTY=pts/6 ; PWD=/home/vlovich ; USER=root ; COMMAND=/usr/bin/vi /usr/share/X11/xorg.conf.d/20-displaylink.conf
Mar 05 17:19:06 vlovich audit[1977]: CRED_REFR pid=1977 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 05 17:19:06 vlovich kernel: audit: type=1100 audit(1614993546.745:148): pid=1977 uid=1000 auid=1000 ses=2 msg='op=PAM:authentication grantors=pam_faillock,pam_permit,pam_faillock acct="vlovich" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 05 17:19:06 vlovich kernel: audit: type=1101 audit(1614993546.745:149): pid=1977 uid=1000 auid=1000 ses=2 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="vlovich" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 05 17:19:06 vlovich kernel: audit: type=1110 audit(1614993546.745:150): pid=1977 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 05 17:19:06 vlovich sudo[1977]: pam_unix(sudo:session): session opened for user root(uid=0) by vlovich(uid=1000)
Mar 05 17:19:06 vlovich audit[1977]: USER_START pid=1977 uid=1000 auid=1000 ses=2 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 05 17:19:06 vlovich kernel: audit: type=1105 audit(1614993546.749:151): pid=1977 uid=1000 auid=1000 ses=2 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 05 17:19:08 vlovich plasmashell[901]: file:///usr/share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/main.qml:464: TypeError: Cannot read property 'length' of undefined
Mar 05 17:19:08 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 12411, resource id: 39846058, major code: 18 (ChangeProperty), minor code: 0
Mar 05 17:19:08 vlovich systemd[756]: Started Google Chrome - Web Browser.
Mar 05 17:19:08 vlovich plasmashell[901]: file:///usr/share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/Task.qml:379: Unable to assign [undefined] to QString
Mar 05 17:19:09 vlovich dbus-daemon[623]: [system] Activating via systemd: service name='org.bluez' unit='dbus-org.bluez.service' requested by ':1.58' (uid=1000 pid=1979 comm="/opt/google/chrome/chrome --password-store=kwallet")
Mar 05 17:19:09 vlovich dbus-daemon[623]: [system] Activation via systemd failed for unit 'dbus-org.bluez.service': Unit dbus-org.bluez.service not found.
Mar 05 17:19:09 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-59 noise=9999 txrate=433300
Mar 05 17:19:09 vlovich systemd[1]: Started PC/SC Smart Card Daemon.
Mar 05 17:19:09 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=pcscd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:19:09 vlovich kernel: audit: type=1130 audit(1614993549.612:152): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=pcscd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:19:10 vlovich audit[2013]: ANOM_ABEND auid=1000 uid=1000 gid=1000 ses=2 pid=2013 comm="chrome" exe="/opt/google/chrome/chrome" sig=8 res=1
Mar 05 17:19:10 vlovich kernel: traps: chrome[2013] trap divide error ip:7f77050adb27 sp:7ffdf9366ac0 error:0 in vdpau_drv_video.so[7f77050ad000+f000]
Mar 05 17:19:10 vlovich kernel: audit: type=1701 audit(1614993550.870:153): auid=1000 uid=1000 gid=1000 ses=2 pid=2013 comm="chrome" exe="/opt/google/chrome/chrome" sig=8 res=1
Mar 05 17:19:10 vlovich systemd[1]: Created slice system-systemd\x2dcoredump.slice.
Mar 05 17:19:10 vlovich audit: BPF prog-id=27 op=LOAD
Mar 05 17:19:10 vlovich audit: BPF prog-id=28 op=LOAD
Mar 05 17:19:10 vlovich kernel: audit: type=1334 audit(1614993550.880:154): prog-id=27 op=LOAD
Mar 05 17:19:10 vlovich kernel: audit: type=1334 audit(1614993550.880:155): prog-id=28 op=LOAD
Mar 05 17:19:10 vlovich systemd[1]: Started Process Core Dump (PID 2436/UID 0).
Mar 05 17:19:10 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-coredump@0-2436-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:19:10 vlovich kernel: audit: type=1130 audit(1614993550.883:156): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-coredump@0-2436-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:19:11 vlovich systemd-coredump[2464]: Process 2013 (chrome) of user 1000 dumped core.
                                                          
                                                          Stack trace of thread 2013:
                                                          #0  0x00007f77050adb27 n/a (vdpau_drv_video.so + 0x3b27)
                                                          #1  0x00007f77050b0989 n/a (vdpau_drv_video.so + 0x6989)
                                                          #2  0x00007f77050b0e1f __vaDriverInit_1_10 (vdpau_drv_video.so + 0x6e1f)
                                                          #3  0x00007f77050d5c39 n/a (libva.so.2 + 0x3c39)
                                                          #4  0x00007f77050d8caf vaInitialize (libva.so.2 + 0x6caf)
                                                          #5  0x0000563a6a0989a4 n/a (chrome + 0x2bc39a4)
                                                          #6  0x0000563a6a098086 n/a (chrome + 0x2bc3086)
                                                          #7  0x0000563a6a090323 n/a (chrome + 0x2bbb323)
                                                          #8  0x0000563a6a0976d3 n/a (chrome + 0x2bc26d3)
                                                          #9  0x0000563a705349ad n/a (chrome + 0x905f9ad)
                                                          #10 0x0000563a6d8c662d n/a (chrome + 0x63f162d)
                                                          #11 0x0000563a705343e9 n/a (chrome + 0x905f3e9)
                                                          #12 0x0000563a6bd5ca88 n/a (chrome + 0x4887a88)
                                                          #13 0x0000563a6bd5adaa n/a (chrome + 0x4885daa)
                                                          #14 0x0000563a695394c4 ChromeMain (chrome + 0x20644c4)
                                                          #15 0x00007f77151c5b25 __libc_start_main (libc.so.6 + 0x27b25)
                                                          #16 0x0000563a691fb46a _start (chrome + 0x1d2646a)
                                                          
                                                          Stack trace of thread 2045:
                                                          #0  0x00007f77168f59ba __futex_abstimed_wait_common64 (libpthread.so.0 + 0x159ba)
                                                          #1  0x00007f77168ef260 pthread_cond_wait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf260)
                                                          #2  0x00007f770f52fcec n/a (iris_dri.so + 0x4edcec)
                                                          #3  0x00007f770f52e4c8 n/a (iris_dri.so + 0x4ec4c8)
                                                          #4  0x00007f77168e9299 start_thread (libpthread.so.0 + 0x9299)
                                                          #5  0x00007f771529d053 __clone (libc.so.6 + 0xff053)
                                                          
                                                          Stack trace of thread 2018:
                                                          #0  0x00007f77168f59ba __futex_abstimed_wait_common64 (libpthread.so.0 + 0x159ba)
                                                          #1  0x00007f77168ef574 pthread_cond_timedwait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf574)
                                                          #2  0x0000563a6be574e8 n/a (chrome + 0x49824e8)
                                                          #3  0x0000563a6be57b73 n/a (chrome + 0x4982b73)
                                                          #4  0x0000563a6bdc8e0f n/a (chrome + 0x48f3e0f)
                                                          #5  0x0000563a6be1b1fc n/a (chrome + 0x49461fc)
                                                          #6  0x0000563a6bdef861 n/a (chrome + 0x491a861)
                                                          #7  0x0000563a6be34669 n/a (chrome + 0x495f669)
                                                          #8  0x0000563a6be5b4e4 n/a (chrome + 0x49864e4)
                                                          #9  0x00007f77168e9299 start_thread (libpthread.so.0 + 0x9299)
                                                          #10 0x00007f771529d053 __clone (libc.so.6 + 0xff053)
                                                          
                                                          Stack trace of thread 2046:
                                                          #0  0x00007f77168f59ba __futex_abstimed_wait_common64 (libpthread.so.0 + 0x159ba)
                                                          #1  0x00007f77168ef260 pthread_cond_wait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf260)
                                                          #2  0x00007f770f52fcec n/a (iris_dri.so + 0x4edcec)
                                                          #3  0x00007f770f52e4c8 n/a (iris_dri.so + 0x4ec4c8)
                                                          #4  0x00007f77168e9299 start_thread (libpthread.so.0 + 0x9299)
                                                          #5  0x00007f771529d053 __clone (libc.so.6 + 0xff053)
                                                          
                                                          Stack trace of thread 2047:
                                                          #0  0x00007f77168f59ba __futex_abstimed_wait_common64 (libpthread.so.0 + 0x159ba)
                                                          #1  0x00007f77168ef260 pthread_cond_wait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf260)
                                                          #2  0x00007f770f52fcec n/a (iris_dri.so + 0x4edcec)
                                                          #3  0x00007f770f52e4c8 n/a (iris_dri.so + 0x4ec4c8)
                                                          #4  0x00007f77168e9299 start_thread (libpthread.so.0 + 0x9299)
                                                          #5  0x00007f771529d053 __clone (libc.so.6 + 0xff053)
                                                          
                                                          Stack trace of thread 2048:
                                                          #0  0x00007f77168f59ba __futex_abstimed_wait_common64 (libpthread.so.0 + 0x159ba)
                                                          #1  0x00007f77168ef260 pthread_cond_wait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf260)
                                                          #2  0x00007f770f52fcec n/a (iris_dri.so + 0x4edcec)
                                                          #3  0x00007f770f52e4c8 n/a (iris_dri.so + 0x4ec4c8)
                                                          #4  0x00007f77168e9299 start_thread (libpthread.so.0 + 0x9299)
                                                          #5  0x00007f771529d053 __clone (libc.so.6 + 0xff053)
Mar 05 17:19:11 vlovich systemd[1]: systemd-coredump@0-2436-0.service: Succeeded.
Mar 05 17:19:11 vlovich kernel: audit: type=1131 audit(1614993551.140:157): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-coredump@0-2436-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:19:11 vlovich audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-coredump@0-2436-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:19:11 vlovich audit[2551]: ANOM_ABEND auid=1000 uid=1000 gid=1000 ses=2 pid=2551 comm="chrome" exe="/opt/google/chrome/chrome" sig=8 res=1
Mar 05 17:19:11 vlovich kernel: traps: chrome[2551] trap divide error ip:7f770509db27 sp:7ffdf9366ac0 error:0 in vdpau_drv_video.so[7f770509d000+f000]
Mar 05 17:19:11 vlovich kernel: audit: type=1701 audit(1614993551.226:158): auid=1000 uid=1000 gid=1000 ses=2 pid=2551 comm="chrome" exe="/opt/google/chrome/chrome" sig=8 res=1
Mar 05 17:19:11 vlovich audit: BPF prog-id=29 op=LOAD
Mar 05 17:19:11 vlovich audit: BPF prog-id=30 op=LOAD
Mar 05 17:19:11 vlovich systemd[1]: Started Process Core Dump (PID 2557/UID 0).
Mar 05 17:19:11 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-coredump@1-2557-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:19:11 vlovich kernel: audit: type=1334 audit(1614993551.233:159): prog-id=29 op=LOAD
Mar 05 17:19:11 vlovich kernel: audit: type=1334 audit(1614993551.233:160): prog-id=30 op=LOAD
Mar 05 17:19:11 vlovich audit: BPF prog-id=28 op=UNLOAD
Mar 05 17:19:11 vlovich audit: BPF prog-id=27 op=UNLOAD
Mar 05 17:19:11 vlovich systemd-coredump[2558]: Process 2551 (chrome) of user 1000 dumped core.
                                                          
                                                          Stack trace of thread 2551:
                                                          #0  0x00007f770509db27 n/a (vdpau_drv_video.so + 0x3b27)
                                                          #1  0x00007f77050a0989 n/a (vdpau_drv_video.so + 0x6989)
                                                          #2  0x00007f77050a0e1f __vaDriverInit_1_10 (vdpau_drv_video.so + 0x6e1f)
                                                          #3  0x00007f77050c5c39 n/a (libva.so.2 + 0x3c39)
                                                          #4  0x00007f77050c8caf vaInitialize (libva.so.2 + 0x6caf)
                                                          #5  0x0000563a6a0989a4 n/a (chrome + 0x2bc39a4)
                                                          #6  0x0000563a6a098086 n/a (chrome + 0x2bc3086)
                                                          #7  0x0000563a6a090323 n/a (chrome + 0x2bbb323)
                                                          #8  0x0000563a6a0976d3 n/a (chrome + 0x2bc26d3)
                                                          #9  0x0000563a705349ad n/a (chrome + 0x905f9ad)
                                                          #10 0x0000563a6d8c662d n/a (chrome + 0x63f162d)
                                                          #11 0x0000563a705343e9 n/a (chrome + 0x905f3e9)
                                                          #12 0x0000563a6bd5ca88 n/a (chrome + 0x4887a88)
                                                          #13 0x0000563a6bd5adaa n/a (chrome + 0x4885daa)
                                                          #14 0x0000563a695394c4 ChromeMain (chrome + 0x20644c4)
                                                          #15 0x00007f77151c5b25 __libc_start_main (libc.so.6 + 0x27b25)
                                                          #16 0x0000563a691fb46a _start (chrome + 0x1d2646a)
                                                          
                                                          Stack trace of thread 2554:
                                                          #0  0x00007f77168f59ba __futex_abstimed_wait_common64 (libpthread.so.0 + 0x159ba)
                                                          #1  0x00007f77168ef260 pthread_cond_wait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf260)
                                                          #2  0x00007f770f52fcec n/a (iris_dri.so + 0x4edcec)
                                                          #3  0x00007f770f52e4c8 n/a (iris_dri.so + 0x4ec4c8)
                                                          #4  0x00007f77168e9299 start_thread (libpthread.so.0 + 0x9299)
                                                          #5  0x00007f771529d053 __clone (libc.so.6 + 0xff053)
                                                          
                                                          Stack trace of thread 2556:
                                                          #0  0x00007f77168f59ba __futex_abstimed_wait_common64 (libpthread.so.0 + 0x159ba)
                                                          #1  0x00007f77168ef260 pthread_cond_wait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf260)
                                                          #2  0x00007f770f52fcec n/a (iris_dri.so + 0x4edcec)
                                                          #3  0x00007f770f52e4c8 n/a (iris_dri.so + 0x4ec4c8)
                                                          #4  0x00007f77168e9299 start_thread (libpthread.so.0 + 0x9299)
                                                          #5  0x00007f771529d053 __clone (libc.so.6 + 0xff053)
                                                          
                                                          Stack trace of thread 2552:
                                                          #0  0x00007f77168f59ba __futex_abstimed_wait_common64 (libpthread.so.0 + 0x159ba)
                                                          #1  0x00007f77168ef574 pthread_cond_timedwait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf574)
                                                          #2  0x0000563a6be574e8 n/a (chrome + 0x49824e8)
                                                          #3  0x0000563a6be57b73 n/a (chrome + 0x4982b73)
                                                          #4  0x0000563a6bdc8e0f n/a (chrome + 0x48f3e0f)
                                                          #5  0x0000563a6be1b1fc n/a (chrome + 0x49461fc)
                                                          #6  0x0000563a6bdef861 n/a (chrome + 0x491a861)
                                                          #7  0x0000563a6be34669 n/a (chrome + 0x495f669)
                                                          #8  0x0000563a6be5b4e4 n/a (chrome + 0x49864e4)
                                                          #9  0x00007f77168e9299 start_thread (libpthread.so.0 + 0x9299)
                                                          #10 0x00007f771529d053 __clone (libc.so.6 + 0xff053)
                                                          
                                                          Stack trace of thread 2553:
                                                          #0  0x00007f77168f59ba __futex_abstimed_wait_common64 (libpthread.so.0 + 0x159ba)
                                                          #1  0x00007f77168ef260 pthread_cond_wait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf260)
                                                          #2  0x00007f770f52fcec n/a (iris_dri.so + 0x4edcec)
                                                          #3  0x00007f770f52e4c8 n/a (iris_dri.so + 0x4ec4c8)
                                                          #4  0x00007f77168e9299 start_thread (libpthread.so.0 + 0x9299)
                                                          #5  0x00007f771529d053 __clone (libc.so.6 + 0xff053)
                                                          
                                                          Stack trace of thread 2555:
                                                          #0  0x00007f77168f59ba __futex_abstimed_wait_common64 (libpthread.so.0 + 0x159ba)
                                                          #1  0x00007f77168ef260 pthread_cond_wait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf260)
                                                          #2  0x00007f770f52fcec n/a (iris_dri.so + 0x4edcec)
                                                          #3  0x00007f770f52e4c8 n/a (iris_dri.so + 0x4ec4c8)
                                                          #4  0x00007f77168e9299 start_thread (libpthread.so.0 + 0x9299)
                                                          #5  0x00007f771529d053 __clone (libc.so.6 + 0xff053)
Mar 05 17:19:11 vlovich systemd[1]: systemd-coredump@1-2557-0.service: Succeeded.
Mar 05 17:19:11 vlovich audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-coredump@1-2557-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:19:11 vlovich audit[2564]: ANOM_ABEND auid=1000 uid=1000 gid=1000 ses=2 pid=2564 comm="chrome" exe="/opt/google/chrome/chrome" sig=8 res=1
Mar 05 17:19:11 vlovich audit: BPF prog-id=31 op=LOAD
Mar 05 17:19:11 vlovich audit: BPF prog-id=32 op=LOAD
Mar 05 17:19:11 vlovich systemd[1]: Started Process Core Dump (PID 2570/UID 0).
Mar 05 17:19:11 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-coredump@2-2570-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:19:11 vlovich audit: BPF prog-id=30 op=UNLOAD
Mar 05 17:19:11 vlovich audit: BPF prog-id=29 op=UNLOAD
Mar 05 17:19:11 vlovich systemd-coredump[2571]: Process 2564 (chrome) of user 1000 dumped core.
                                                          
                                                          Stack trace of thread 2564:
                                                          #0  0x00007f77050adb27 n/a (vdpau_drv_video.so + 0x3b27)
                                                          #1  0x00007f77050b0989 n/a (vdpau_drv_video.so + 0x6989)
                                                          #2  0x00007f77050b0e1f __vaDriverInit_1_10 (vdpau_drv_video.so + 0x6e1f)
                                                          #3  0x00007f77050d5c39 n/a (libva.so.2 + 0x3c39)
                                                          #4  0x00007f77050d8caf vaInitialize (libva.so.2 + 0x6caf)
                                                          #5  0x0000563a6a0989a4 n/a (chrome + 0x2bc39a4)
                                                          #6  0x0000563a6a098086 n/a (chrome + 0x2bc3086)
                                                          #7  0x0000563a6a090323 n/a (chrome + 0x2bbb323)
                                                          #8  0x0000563a6a0976d3 n/a (chrome + 0x2bc26d3)
                                                          #9  0x0000563a705349ad n/a (chrome + 0x905f9ad)
                                                          #10 0x0000563a6d8c662d n/a (chrome + 0x63f162d)
                                                          #11 0x0000563a705343e9 n/a (chrome + 0x905f3e9)
                                                          #12 0x0000563a6bd5ca88 n/a (chrome + 0x4887a88)
                                                          #13 0x0000563a6bd5adaa n/a (chrome + 0x4885daa)
                                                          #14 0x0000563a695394c4 ChromeMain (chrome + 0x20644c4)
                                                          #15 0x00007f77151c5b25 __libc_start_main (libc.so.6 + 0x27b25)
                                                          #16 0x0000563a691fb46a _start (chrome + 0x1d2646a)
                                                          
                                                          Stack trace of thread 2567:
                                                          #0  0x00007f77168f59ba __futex_abstimed_wait_common64 (libpthread.so.0 + 0x159ba)
                                                          #1  0x00007f77168ef260 pthread_cond_wait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf260)
                                                          #2  0x00007f770f52fcec n/a (iris_dri.so + 0x4edcec)
                                                          #3  0x00007f770f52e4c8 n/a (iris_dri.so + 0x4ec4c8)
                                                          #4  0x00007f77168e9299 start_thread (libpthread.so.0 + 0x9299)
                                                          #5  0x00007f771529d053 __clone (libc.so.6 + 0xff053)
                                                          
                                                          Stack trace of thread 2569:
                                                          #0  0x00007f77168f59ba __futex_abstimed_wait_common64 (libpthread.so.0 + 0x159ba)
                                                          #1  0x00007f77168ef260 pthread_cond_wait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf260)
                                                          #2  0x00007f770f52fcec n/a (iris_dri.so + 0x4edcec)
                                                          #3  0x00007f770f52e4c8 n/a (iris_dri.so + 0x4ec4c8)
                                                          #4  0x00007f77168e9299 start_thread (libpthread.so.0 + 0x9299)
                                                          #5  0x00007f771529d053 __clone (libc.so.6 + 0xff053)
                                                          
                                                          Stack trace of thread 2568:
                                                          #0  0x00007f77168f59ba __futex_abstimed_wait_common64 (libpthread.so.0 + 0x159ba)
                                                          #1  0x00007f77168ef260 pthread_cond_wait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf260)
                                                          #2  0x00007f770f52fcec n/a (iris_dri.so + 0x4edcec)
                                                          #3  0x00007f770f52e4c8 n/a (iris_dri.so + 0x4ec4c8)
                                                          #4  0x00007f77168e9299 start_thread (libpthread.so.0 + 0x9299)
                                                          #5  0x00007f771529d053 __clone (libc.so.6 + 0xff053)
                                                          
                                                          Stack trace of thread 2566:
                                                          #0  0x00007f77168f59ba __futex_abstimed_wait_common64 (libpthread.so.0 + 0x159ba)
                                                          #1  0x00007f77168ef260 pthread_cond_wait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf260)
                                                          #2  0x00007f770f52fcec n/a (iris_dri.so + 0x4edcec)
                                                          #3  0x00007f770f52e4c8 n/a (iris_dri.so + 0x4ec4c8)
                                                          #4  0x00007f77168e9299 start_thread (libpthread.so.0 + 0x9299)
                                                          #5  0x00007f771529d053 __clone (libc.so.6 + 0xff053)
                                                          
                                                          Stack trace of thread 2565:
                                                          #0  0x00007f77168f59ba __futex_abstimed_wait_common64 (libpthread.so.0 + 0x159ba)
                                                          #1  0x00007f77168ef574 pthread_cond_timedwait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf574)
                                                          #2  0x0000563a6be574e8 n/a (chrome + 0x49824e8)
                                                          #3  0x0000563a6be57b73 n/a (chrome + 0x4982b73)
                                                          #4  0x0000563a6bdc8e0f n/a (chrome + 0x48f3e0f)
                                                          #5  0x0000563a6be1b1fc n/a (chrome + 0x49461fc)
                                                          #6  0x0000563a6bdef861 n/a (chrome + 0x491a861)
                                                          #7  0x0000563a6be34669 n/a (chrome + 0x495f669)
                                                          #8  0x0000563a6be5b4e4 n/a (chrome + 0x49864e4)
                                                          #9  0x00007f77168e9299 start_thread (libpthread.so.0 + 0x9299)
                                                          #10 0x00007f771529d053 __clone (libc.so.6 + 0xff053)
Mar 05 17:19:11 vlovich systemd[1]: systemd-coredump@2-2570-0.service: Succeeded.
Mar 05 17:19:11 vlovich audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-coredump@2-2570-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:19:11 vlovich audit[2578]: ANOM_ABEND auid=1000 uid=1000 gid=1000 ses=2 pid=2578 comm="chrome" exe="/opt/google/chrome/chrome" sig=11 res=1
Mar 05 17:19:11 vlovich audit: BPF prog-id=33 op=LOAD
Mar 05 17:19:11 vlovich audit: BPF prog-id=34 op=LOAD
Mar 05 17:19:11 vlovich systemd[1]: Started Process Core Dump (PID 2580/UID 0).
Mar 05 17:19:11 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-coredump@3-2580-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:19:11 vlovich audit: BPF prog-id=32 op=UNLOAD
Mar 05 17:19:11 vlovich audit: BPF prog-id=31 op=UNLOAD
Mar 05 17:19:11 vlovich systemd-coredump[2581]: Process 2578 (chrome) of user 1000 dumped core.
                                                          
                                                          Stack trace of thread 2578:
                                                          #0  0x00007f7715f98250 XDisplayString (libX11.so.6 + 0x2f250)
                                                          #1  0x00007f7711460c07 __vaDriverInit_1_10 (vdpau_drv_video.so + 0x6c07)
                                                          #2  0x00007f7711485c39 n/a (libva.so.2 + 0x3c39)
                                                          #3  0x00007f7711488caf vaInitialize (libva.so.2 + 0x6caf)
                                                          #4  0x0000563a6a0989a4 n/a (chrome + 0x2bc39a4)
                                                          #5  0x0000563a6a098086 n/a (chrome + 0x2bc3086)
                                                          #6  0x0000563a6a090323 n/a (chrome + 0x2bbb323)
                                                          #7  0x0000563a6a0976d3 n/a (chrome + 0x2bc26d3)
                                                          #8  0x0000563a705349ad n/a (chrome + 0x905f9ad)
                                                          #9  0x0000563a6d8c662d n/a (chrome + 0x63f162d)
                                                          #10 0x0000563a705343e9 n/a (chrome + 0x905f3e9)
                                                          #11 0x0000563a6bd5ca88 n/a (chrome + 0x4887a88)
                                                          #12 0x0000563a6bd5adaa n/a (chrome + 0x4885daa)
                                                          #13 0x0000563a695394c4 ChromeMain (chrome + 0x20644c4)
                                                          #14 0x00007f77151c5b25 __libc_start_main (libc.so.6 + 0x27b25)
                                                          #15 0x0000563a691fb46a _start (chrome + 0x1d2646a)
                                                          
                                                          Stack trace of thread 2579:
                                                          #0  0x00007f77168f59ba __futex_abstimed_wait_common64 (libpthread.so.0 + 0x159ba)
                                                          #1  0x00007f77168ef574 pthread_cond_timedwait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf574)
                                                          #2  0x0000563a6be574e8 n/a (chrome + 0x49824e8)
                                                          #3  0x0000563a6be57b73 n/a (chrome + 0x4982b73)
                                                          #4  0x0000563a6bdc8e0f n/a (chrome + 0x48f3e0f)
                                                          #5  0x0000563a6be1b1fc n/a (chrome + 0x49461fc)
                                                          #6  0x0000563a6bdef861 n/a (chrome + 0x491a861)
                                                          #7  0x0000563a6be34669 n/a (chrome + 0x495f669)
                                                          #8  0x0000563a6be5b4e4 n/a (chrome + 0x49864e4)
                                                          #9  0x00007f77168e9299 start_thread (libpthread.so.0 + 0x9299)
                                                          #10 0x00007f771529d053 __clone (libc.so.6 + 0xff053)
Mar 05 17:19:11 vlovich systemd[1]: systemd-coredump@3-2580-0.service: Succeeded.
Mar 05 17:19:11 vlovich audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-coredump@3-2580-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:19:11 vlovich audit[2587]: ANOM_ABEND auid=1000 uid=1000 gid=1000 ses=2 pid=2587 comm="chrome" exe="/opt/google/chrome/chrome" sig=11 res=1
Mar 05 17:19:12 vlovich audit: BPF prog-id=35 op=LOAD
Mar 05 17:19:12 vlovich audit: BPF prog-id=36 op=LOAD
Mar 05 17:19:12 vlovich systemd[1]: Started Process Core Dump (PID 2589/UID 0).
Mar 05 17:19:12 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-coredump@4-2589-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:19:12 vlovich audit: BPF prog-id=34 op=UNLOAD
Mar 05 17:19:12 vlovich audit: BPF prog-id=33 op=UNLOAD
Mar 05 17:19:12 vlovich systemd-coredump[2590]: Process 2587 (chrome) of user 1000 dumped core.
                                                          
                                                          Stack trace of thread 2587:
                                                          #0  0x00007f7715f98250 XDisplayString (libX11.so.6 + 0x2f250)
                                                          #1  0x00007f7711460c07 __vaDriverInit_1_10 (vdpau_drv_video.so + 0x6c07)
                                                          #2  0x00007f7711485c39 n/a (libva.so.2 + 0x3c39)
                                                          #3  0x00007f7711488caf vaInitialize (libva.so.2 + 0x6caf)
                                                          #4  0x0000563a6a0989a4 n/a (chrome + 0x2bc39a4)
                                                          #5  0x0000563a6a098086 n/a (chrome + 0x2bc3086)
                                                          #6  0x0000563a6a090323 n/a (chrome + 0x2bbb323)
                                                          #7  0x0000563a6a0976d3 n/a (chrome + 0x2bc26d3)
                                                          #8  0x0000563a705349ad n/a (chrome + 0x905f9ad)
                                                          #9  0x0000563a6d8c662d n/a (chrome + 0x63f162d)
                                                          #10 0x0000563a705343e9 n/a (chrome + 0x905f3e9)
                                                          #11 0x0000563a6bd5ca88 n/a (chrome + 0x4887a88)
                                                          #12 0x0000563a6bd5adaa n/a (chrome + 0x4885daa)
                                                          #13 0x0000563a695394c4 ChromeMain (chrome + 0x20644c4)
                                                          #14 0x00007f77151c5b25 __libc_start_main (libc.so.6 + 0x27b25)
                                                          #15 0x0000563a691fb46a _start (chrome + 0x1d2646a)
                                                          
                                                          Stack trace of thread 2588:
                                                          #0  0x00007f77168f59ba __futex_abstimed_wait_common64 (libpthread.so.0 + 0x159ba)
                                                          #1  0x00007f77168ef574 pthread_cond_timedwait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf574)
                                                          #2  0x0000563a6be574e8 n/a (chrome + 0x49824e8)
                                                          #3  0x0000563a6be57b73 n/a (chrome + 0x4982b73)
                                                          #4  0x0000563a6bdc8e0f n/a (chrome + 0x48f3e0f)
                                                          #5  0x0000563a6be1b1fc n/a (chrome + 0x49461fc)
                                                          #6  0x0000563a6bdef861 n/a (chrome + 0x491a861)
                                                          #7  0x0000563a6be34669 n/a (chrome + 0x495f669)
                                                          #8  0x0000563a6be5b4e4 n/a (chrome + 0x49864e4)
                                                          #9  0x00007f77168e9299 start_thread (libpthread.so.0 + 0x9299)
                                                          #10 0x00007f771529d053 __clone (libc.so.6 + 0xff053)
Mar 05 17:19:12 vlovich systemd[1]: systemd-coredump@4-2589-0.service: Succeeded.
Mar 05 17:19:12 vlovich audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-coredump@4-2589-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:19:12 vlovich audit[2596]: ANOM_ABEND auid=1000 uid=1000 gid=1000 ses=2 pid=2596 comm="chrome" exe="/opt/google/chrome/chrome" sig=11 res=1
Mar 05 17:19:12 vlovich audit: BPF prog-id=37 op=LOAD
Mar 05 17:19:12 vlovich audit: BPF prog-id=38 op=LOAD
Mar 05 17:19:12 vlovich systemd[1]: Started Process Core Dump (PID 2598/UID 0).
Mar 05 17:19:12 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-coredump@5-2598-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:19:12 vlovich audit: BPF prog-id=36 op=UNLOAD
Mar 05 17:19:12 vlovich audit: BPF prog-id=35 op=UNLOAD
Mar 05 17:19:12 vlovich systemd-coredump[2599]: Process 2596 (chrome) of user 1000 dumped core.
                                                          
                                                          Stack trace of thread 2596:
                                                          #0  0x00007f7715f98250 XDisplayString (libX11.so.6 + 0x2f250)
                                                          #1  0x00007f7711460c07 __vaDriverInit_1_10 (vdpau_drv_video.so + 0x6c07)
                                                          #2  0x00007f7711485c39 n/a (libva.so.2 + 0x3c39)
                                                          #3  0x00007f7711488caf vaInitialize (libva.so.2 + 0x6caf)
                                                          #4  0x0000563a6a0989a4 n/a (chrome + 0x2bc39a4)
                                                          #5  0x0000563a6a098086 n/a (chrome + 0x2bc3086)
                                                          #6  0x0000563a6a090323 n/a (chrome + 0x2bbb323)
                                                          #7  0x0000563a6a0976d3 n/a (chrome + 0x2bc26d3)
                                                          #8  0x0000563a705349ad n/a (chrome + 0x905f9ad)
                                                          #9  0x0000563a6d8c662d n/a (chrome + 0x63f162d)
                                                          #10 0x0000563a705343e9 n/a (chrome + 0x905f3e9)
                                                          #11 0x0000563a6bd5ca88 n/a (chrome + 0x4887a88)
                                                          #12 0x0000563a6bd5adaa n/a (chrome + 0x4885daa)
                                                          #13 0x0000563a695394c4 ChromeMain (chrome + 0x20644c4)
                                                          #14 0x00007f77151c5b25 __libc_start_main (libc.so.6 + 0x27b25)
                                                          #15 0x0000563a691fb46a _start (chrome + 0x1d2646a)
                                                          
                                                          Stack trace of thread 2597:
                                                          #0  0x00007f77168f59ba __futex_abstimed_wait_common64 (libpthread.so.0 + 0x159ba)
                                                          #1  0x00007f77168ef574 pthread_cond_timedwait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf574)
                                                          #2  0x0000563a6be574e8 n/a (chrome + 0x49824e8)
                                                          #3  0x0000563a6be57b73 n/a (chrome + 0x4982b73)
                                                          #4  0x0000563a6bdc8e0f n/a (chrome + 0x48f3e0f)
                                                          #5  0x0000563a6be1b1fc n/a (chrome + 0x49461fc)
                                                          #6  0x0000563a6bdef861 n/a (chrome + 0x491a861)
                                                          #7  0x0000563a6be34669 n/a (chrome + 0x495f669)
                                                          #8  0x0000563a6be5b4e4 n/a (chrome + 0x49864e4)
                                                          #9  0x00007f77168e9299 start_thread (libpthread.so.0 + 0x9299)
                                                          #10 0x00007f771529d053 __clone (libc.so.6 + 0xff053)
Mar 05 17:19:12 vlovich systemd[1]: systemd-coredump@5-2598-0.service: Succeeded.
Mar 05 17:19:12 vlovich audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-coredump@5-2598-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:19:12 vlovich audit: BPF prog-id=38 op=UNLOAD
Mar 05 17:19:12 vlovich audit: BPF prog-id=37 op=UNLOAD
Mar 05 17:19:15 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 15922, resource id: 14681325, major code: 3 (GetWindowAttributes), minor code: 0
Mar 05 17:19:15 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 15923, resource id: 14681325, major code: 14 (GetGeometry), minor code: 0
Mar 05 17:19:36 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-59 noise=9999 txrate=585100
Mar 05 17:20:48 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-62 noise=9999 txrate=585100
Mar 05 17:20:50 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-57 noise=9999 txrate=585100
Mar 05 17:20:54 vlovich kwin_x11[813]: kwin_core: XCB error: 152 (BadDamage), sequence: 49096, resource id: 14683722, major code: 143 (DAMAGE), minor code: 2 (Destroy)
Mar 05 17:20:54 vlovich kwin_x11[813]: kwin_core: XCB error: 3 (BadWindow), sequence: 49097, resource id: 77594677, major code: 129 (SHAPE), minor code: 6 (Input)
Mar 05 17:20:54 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 49098, resource id: 77594677, major code: 2 (ChangeWindowAttributes), minor code: 0
Mar 05 17:20:56 vlovich kwin_x11[813]: kwin_core: XCB error: 152 (BadDamage), sequence: 49738, resource id: 14683738, major code: 143 (DAMAGE), minor code: 2 (Destroy)
Mar 05 17:20:56 vlovich kwin_x11[813]: kwin_core: XCB error: 3 (BadWindow), sequence: 49739, resource id: 77594678, major code: 129 (SHAPE), minor code: 6 (Input)
Mar 05 17:20:56 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 49740, resource id: 77594678, major code: 2 (ChangeWindowAttributes), minor code: 0
Mar 05 17:21:04 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-59 noise=9999 txrate=468000
Mar 05 17:25:57 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-58 noise=9999 txrate=351000
Mar 05 17:25:58 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-58 noise=9999 txrate=351000
Mar 05 17:25:59 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-56 noise=9999 txrate=292500
Mar 05 17:26:33 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 38428, resource id: 14687860, major code: 3 (GetWindowAttributes), minor code: 0
Mar 05 17:26:33 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 38429, resource id: 14687860, major code: 14 (GetGeometry), minor code: 0
Mar 05 17:28:26 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 57394, resource id: 14689359, major code: 20 (GetProperty), minor code: 0
Mar 05 17:28:35 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 60632, resource id: 14689665, major code: 20 (GetProperty), minor code: 0
Mar 05 17:28:36 vlovich plasmashell[901]: kf.sonnet.core: Sonnet: Unable to load plugin "/usr/lib/qt/plugins/kf5/sonnet/sonnet_aspell.so" Error: "Cannot load library /usr/lib/qt/plugins/kf5/sonnet/sonnet_aspell.so: (libaspell.so.15: cannot open shared object file: No such file or directory)"
Mar 05 17:28:36 vlovich plasmashell[901]: kf.sonnet.core: Sonnet: Unable to load plugin "/usr/lib/qt/plugins/kf5/sonnet/sonnet_hspell.so" Error: "Cannot load library /usr/lib/qt/plugins/kf5/sonnet/sonnet_hspell.so: (libhspell.so.0: cannot open shared object file: No such file or directory)"
Mar 05 17:28:36 vlovich plasmashell[901]: kf.sonnet.core: Sonnet: Unable to load plugin "/usr/lib/qt/plugins/kf5/sonnet/sonnet_hunspell.so" Error: "Cannot load library /usr/lib/qt/plugins/kf5/sonnet/sonnet_hunspell.so: (libhunspell-1.7.so.0: cannot open shared object file: No such file or directory)"
Mar 05 17:28:36 vlovich plasmashell[901]: kf.sonnet.core: Sonnet: Unable to load plugin "/usr/lib/qt/plugins/kf5/sonnet/sonnet_voikko.so" Error: "Cannot load library /usr/lib/qt/plugins/kf5/sonnet/sonnet_voikko.so: (libvoikko.so.1: cannot open shared object file: No such file or directory)"
Mar 05 17:28:36 vlovich plasmashell[901]: kf.sonnet.core: No language dictionaries for the language: "en_US" trying to load en_US as default
Mar 05 17:28:36 vlovich plasmashell[901]: kf.sonnet.core: No language dictionaries for the language: "en_US"
Mar 05 17:28:37 vlovich dbus-daemon[772]: [session uid=1000 pid=772] Activating via systemd: service name='org.kde.runners.baloo' unit='plasma-baloorunner.service' requested by ':1.23' (uid=1000 pid=901 comm="/usr/bin/plasmashell ")
Mar 05 17:28:37 vlovich plasmashell[901]: Connecting to deprecated signal QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
Mar 05 17:28:37 vlovich systemd[756]: /usr/lib/systemd/user/plasma-baloorunner.service:12: Failed to parse service restart specifier, ignoring: no #as we're dbus activated anyway
Mar 05 17:28:37 vlovich systemd[756]: Starting KRunner provider for baloo file indexer...
Mar 05 17:28:37 vlovich dbus-daemon[772]: [session uid=1000 pid=772] Successfully activated service 'org.kde.runners.baloo'
Mar 05 17:28:37 vlovich systemd[756]: Started KRunner provider for baloo file indexer.
Mar 05 17:28:37 vlovich systemd[756]: Started Google Chat Linux.
Mar 05 17:28:38 vlovich dbus-daemon[623]: [system] Activating via systemd: service name='org.bluez' unit='dbus-org.bluez.service' requested by ':1.60' (uid=1000 pid=4124 comm="Google Chat Linux (Unofficial)           ")
Mar 05 17:28:38 vlovich dbus-daemon[623]: [system] Activation via systemd failed for unit 'dbus-org.bluez.service': Unit dbus-org.bluez.service not found.
Mar 05 17:28:38 vlovich kded5[809]: Registering ":1.61/StatusNotifierItem" to system tray
Mar 05 17:28:38 vlovich xembedsniproxy[907]: Container window visible, stack below
Mar 05 17:29:14 vlovich kwin_x11[813]: kwin_core: XCB error: 152 (BadDamage), sequence: 8333, resource id: 14690593, major code: 143 (DAMAGE), minor code: 2 (Destroy)
Mar 05 17:29:14 vlovich kwin_x11[813]: kwin_core: XCB error: 3 (BadWindow), sequence: 8334, resource id: 77594682, major code: 129 (SHAPE), minor code: 6 (Input)
Mar 05 17:29:14 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 8335, resource id: 77594682, major code: 2 (ChangeWindowAttributes), minor code: 0
Mar 05 17:30:50 vlovich kwin_x11[813]: kwin_core: XCB error: 152 (BadDamage), sequence: 23993, resource id: 14691727, major code: 143 (DAMAGE), minor code: 2 (Destroy)
Mar 05 17:30:50 vlovich kwin_x11[813]: kwin_core: XCB error: 3 (BadWindow), sequence: 23994, resource id: 77594688, major code: 129 (SHAPE), minor code: 6 (Input)
Mar 05 17:30:50 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 23995, resource id: 77594688, major code: 2 (ChangeWindowAttributes), minor code: 0
Mar 05 17:31:53 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 37957, resource id: 14692644, major code: 3 (GetWindowAttributes), minor code: 0
Mar 05 17:31:53 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 37958, resource id: 14692644, major code: 14 (GetGeometry), minor code: 0
Mar 05 17:32:00 vlovich kwin_x11[813]: kwin_core: XCB error: 152 (BadDamage), sequence: 40922, resource id: 14692825, major code: 143 (DAMAGE), minor code: 2 (Destroy)
Mar 05 17:32:00 vlovich kwin_x11[813]: kwin_core: XCB error: 3 (BadWindow), sequence: 40923, resource id: 77594694, major code: 129 (SHAPE), minor code: 6 (Input)
Mar 05 17:32:00 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 40924, resource id: 77594694, major code: 2 (ChangeWindowAttributes), minor code: 0
Mar 05 17:32:34 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-63 noise=9999 txrate=351000
Mar 05 17:32:38 vlovich systemd[1]: Starting Cleanup of Temporary Directories...
Mar 05 17:32:38 vlovich systemd[1]: systemd-tmpfiles-clean.service: Succeeded.
Mar 05 17:32:38 vlovich systemd[1]: Finished Cleanup of Temporary Directories.
Mar 05 17:32:38 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-clean comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:32:38 vlovich audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-clean comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:32:38 vlovich kernel: kauditd_printk_skb: 38 callbacks suppressed
Mar 05 17:32:38 vlovich kernel: audit: type=1130 audit(1614994358.155:195): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-clean comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:32:38 vlovich kernel: audit: type=1131 audit(1614994358.155:196): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-clean comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:32:38 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-62 noise=9999 txrate=520000
Mar 05 17:33:04 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-62 noise=9999 txrate=468000
Mar 05 17:34:17 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 65226, resource id: 14689706, major code: 20 (GetProperty), minor code: 0
Mar 05 17:35:31 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-63 noise=9999 txrate=468000
Mar 05 17:35:38 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-64 noise=9999 txrate=468000
Mar 05 17:36:16 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 21687, resource id: 14696331, major code: 3 (GetWindowAttributes), minor code: 0
Mar 05 17:36:43 vlovich kwin_x11[813]: kwin_core: XCB error: 152 (BadDamage), sequence: 30728, resource id: 14697021, major code: 143 (DAMAGE), minor code: 2 (Destroy)
Mar 05 17:36:43 vlovich kwin_x11[813]: kwin_core: XCB error: 3 (BadWindow), sequence: 30729, resource id: 77594702, major code: 129 (SHAPE), minor code: 6 (Input)
Mar 05 17:36:43 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 30730, resource id: 77594702, major code: 2 (ChangeWindowAttributes), minor code: 0
Mar 05 17:36:44 vlovich kwin_x11[813]: kwin_core: XCB error: 152 (BadDamage), sequence: 31021, resource id: 14697032, major code: 143 (DAMAGE), minor code: 2 (Destroy)
Mar 05 17:36:44 vlovich kwin_x11[813]: kwin_core: XCB error: 3 (BadWindow), sequence: 31022, resource id: 77594703, major code: 129 (SHAPE), minor code: 6 (Input)
Mar 05 17:36:44 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 31023, resource id: 77594703, major code: 2 (ChangeWindowAttributes), minor code: 0
Mar 05 17:36:56 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 33941, resource id: 14697199, major code: 3 (GetWindowAttributes), minor code: 0
Mar 05 17:36:56 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 33942, resource id: 14697199, major code: 14 (GetGeometry), minor code: 0
Mar 05 17:37:02 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 37166, resource id: 14697397, major code: 3 (GetWindowAttributes), minor code: 0
Mar 05 17:37:02 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 37167, resource id: 14697397, major code: 14 (GetGeometry), minor code: 0
Mar 05 17:37:04 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 38898, resource id: 14697526, major code: 3 (GetWindowAttributes), minor code: 0
Mar 05 17:37:04 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 38899, resource id: 14697526, major code: 14 (GetGeometry), minor code: 0
Mar 05 17:37:10 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 42029, resource id: 14696153, major code: 20 (GetProperty), minor code: 0
Mar 05 17:37:26 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 45265, resource id: 14697903, major code: 3 (GetWindowAttributes), minor code: 0
Mar 05 17:37:26 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 45266, resource id: 14697903, major code: 14 (GetGeometry), minor code: 0
Mar 05 17:37:32 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-62 noise=9999 txrate=468000
Mar 05 17:37:34 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-63 noise=9999 txrate=468000
Mar 05 17:37:43 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-61 noise=9999 txrate=390000
Mar 05 17:40:13 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 10565, resource id: 14700368, major code: 3 (GetWindowAttributes), minor code: 0
Mar 05 17:40:13 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 10566, resource id: 14700368, major code: 14 (GetGeometry), minor code: 0
Mar 05 17:40:32 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-60 noise=9999 txrate=351000
Mar 05 17:40:37 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-60 noise=9999 txrate=351000
Mar 05 17:41:04 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-62 noise=9999 txrate=585100
Mar 05 17:41:36 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-58 noise=9999 txrate=390000
Mar 05 17:41:52 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-59 noise=9999 txrate=520000
Mar 05 17:42:05 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-55 noise=9999 txrate=390000
Mar 05 17:42:22 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-58 noise=9999 txrate=390000
Mar 05 17:43:28 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-61 noise=9999 txrate=351000
Mar 05 17:43:35 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-55 noise=9999 txrate=351000
Mar 05 17:43:54 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-60 noise=9999 txrate=390000
Mar 05 17:43:56 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-58 noise=9999 txrate=468000
Mar 05 17:43:59 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 6742, resource id: 77594713, major code: 3 (GetWindowAttributes), minor code: 0
Mar 05 17:43:59 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 6743, resource id: 77594713, major code: 14 (GetGeometry), minor code: 0
Mar 05 17:44:06 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-60 noise=9999 txrate=390000
Mar 05 17:44:09 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-58 noise=9999 txrate=390000
Mar 05 17:44:11 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-59 noise=9999 txrate=390000
Mar 05 17:44:13 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-56 noise=9999 txrate=390000
Mar 05 17:44:29 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-54 noise=9999 txrate=390000
Mar 05 17:47:32 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-62 noise=9999 txrate=468000
Mar 05 17:47:43 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-54 noise=9999 txrate=468000
Mar 05 17:51:38 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-57 noise=9999 txrate=433300
Mar 05 17:51:52 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 30517, resource id: 14712311, major code: 3 (GetWindowAttributes), minor code: 0
Mar 05 17:51:52 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 30518, resource id: 14712311, major code: 14 (GetGeometry), minor code: 0
Mar 05 17:52:05 vlovich kwin_x11[813]: kwin_core: XCB error: 152 (BadDamage), sequence: 35483, resource id: 14712704, major code: 143 (DAMAGE), minor code: 2 (Destroy)
Mar 05 17:52:05 vlovich kwin_x11[813]: kwin_core: XCB error: 3 (BadWindow), sequence: 35484, resource id: 77594715, major code: 129 (SHAPE), minor code: 6 (Input)
Mar 05 17:52:05 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 35485, resource id: 77594715, major code: 2 (ChangeWindowAttributes), minor code: 0
Mar 05 17:54:25 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 58293, resource id: 14714530, major code: 3 (GetWindowAttributes), minor code: 0
Mar 05 17:54:25 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 58294, resource id: 14714530, major code: 14 (GetGeometry), minor code: 0
Mar 05 17:55:53 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-61 noise=9999 txrate=520000
Mar 05 17:55:57 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-57 noise=9999 txrate=520000
Mar 05 17:58:01 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 46537, resource id: 14697685, major code: 20 (GetProperty), minor code: 0
Mar 05 17:58:03 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 47352, resource id: 14718305, major code: 20 (GetProperty), minor code: 0
Mar 05 17:58:09 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-50 noise=9999 txrate=468000
Mar 05 17:58:25 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 52102, resource id: 14718653, major code: 3 (GetWindowAttributes), minor code: 0
Mar 05 17:58:25 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 52103, resource id: 14718653, major code: 14 (GetGeometry), minor code: 0
Mar 05 17:58:32 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 55256, resource id: 14718654, major code: 20 (GetProperty), minor code: 0
Mar 05 17:58:35 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 56334, resource id: 14718839, major code: 20 (GetProperty), minor code: 0
Mar 05 17:58:36 vlovich audit[2073]: ANOM_ABEND auid=1000 uid=1000 gid=1000 ses=2 pid=2073 comm="Chrome_ChildIOT" exe="/opt/google/chrome/chrome" sig=5 res=1
Mar 05 17:58:36 vlovich kernel: traps: Chrome_ChildIOT[2084] trap int3 ip:55c50a95b1db sp:7f1d30b324a0 error:0 in chrome[55c504da8000+7ccd000]
Mar 05 17:58:36 vlovich kernel: audit: type=1701 audit(1614995916.334:197): auid=1000 uid=1000 gid=1000 ses=2 pid=2073 comm="Chrome_ChildIOT" exe="/opt/google/chrome/chrome" sig=5 res=1
Mar 05 17:58:36 vlovich audit: BPF prog-id=39 op=LOAD
Mar 05 17:58:36 vlovich audit: BPF prog-id=40 op=LOAD
Mar 05 17:58:36 vlovich kernel: audit: type=1334 audit(1614995916.341:198): prog-id=39 op=LOAD
Mar 05 17:58:36 vlovich kernel: audit: type=1334 audit(1614995916.341:199): prog-id=40 op=LOAD
Mar 05 17:58:36 vlovich systemd[1]: Started Process Core Dump (PID 8839/UID 0).
Mar 05 17:58:36 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-coredump@6-8839-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:58:36 vlovich kernel: audit: type=1130 audit(1614995916.344:200): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-coredump@6-8839-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:58:36 vlovich systemd-coredump[8840]: Process 2073 (chrome) of user 1000 dumped core.
                                                          
                                                          Stack trace of thread 4:
                                                          #0  0x000055c50a95b1db n/a (chrome + 0x78d91db)
                                                          #1  0x000055c505b6565f n/a (chrome + 0x2ae365f)
                                                          #2  0x000055c5080ccd7d n/a (chrome + 0x504ad7d)
                                                          #3  0x000055c5080d5276 n/a (chrome + 0x5053276)
                                                          #4  0x000055c5080d4a8f n/a (chrome + 0x5052a8f)
                                                          #5  0x000055c5080cb5a5 n/a (chrome + 0x50495a5)
                                                          #6  0x000055c5080cbe7b n/a (chrome + 0x5049e7b)
                                                          #7  0x000055c5080e7196 n/a (chrome + 0x5065196)
                                                          #8  0x000055c5080e6816 n/a (chrome + 0x5064816)
                                                          #9  0x000055c505dae27c n/a (chrome + 0x2d2c27c)
                                                          #10 0x000055c505dadaf0 n/a (chrome + 0x2d2baf0)
                                                          #11 0x000055c505daa255 n/a (chrome + 0x2d28255)
                                                          #12 0x000055c505d9e416 n/a (chrome + 0x2d1c416)
                                                          #13 0x000055c505d8cd6a n/a (chrome + 0x2d0ad6a)
                                                          #14 0x000055c505db2a0f n/a (chrome + 0x2d30a0f)
                                                          #15 0x000055c507a14edb n/a (chrome + 0x4992edb)
                                                          #16 0x000055c507b31654 n/a (chrome + 0x4aaf654)
                                                          #17 0x000055c507a151ef n/a (chrome + 0x49931ef)
                                                          #18 0x000055c5079c81fc n/a (chrome + 0x49461fc)
                                                          #19 0x000055c50799c861 n/a (chrome + 0x491a861)
                                                          #20 0x000055c5079e1669 n/a (chrome + 0x495f669)
                                                          #21 0x000055c507a084e4 n/a (chrome + 0x49864e4)
                                                          #22 0x00007f1d36460299 start_thread (libpthread.so.0 + 0x9299)
                                                          #23 0x00007f1d34e14053 __clone (libc.so.6 + 0xff053)
                                                          
                                                          Stack trace of thread 1:
                                                          #0  0x00007f1d3646c9ba __futex_abstimed_wait_common64 (libpthread.so.0 + 0x159ba)
                                                          #1  0x00007f1d36466260 pthread_cond_wait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf260)
                                                          #2  0x000055c507a0434d n/a (chrome + 0x498234d)
                                                          #3  0x000055c507a04cc6 n/a (chrome + 0x4982cc6)
                                                          #4  0x000055c507a0493e n/a (chrome + 0x498293e)
                                                          #5  0x000055c50661fc05 n/a (chrome + 0x359dc05)
                                                          #6  0x000055c50c960614 n/a (chrome + 0x98de614)
                                                          #7  0x000055c50c971be9 n/a (chrome + 0x98efbe9)
                                                          #8  0x000055c50b77f31a n/a (chrome + 0x86fd31a)
                                                          #9  0x000055c50b785601 n/a (chrome + 0x8703601)
                                                          #10 0x000055c5079b49e8 n/a (chrome + 0x49329e8)
                                                          #11 0x000055c5079c7629 n/a (chrome + 0x4945629)
                                                          #12 0x000055c507975dc8 n/a (chrome + 0x48f3dc8)
                                                          #13 0x000055c5079c81fc n/a (chrome + 0x49461fc)
                                                          #14 0x000055c50799c861 n/a (chrome + 0x491a861)
                                                          #15 0x000055c50c974b19 n/a (chrome + 0x98f2b19)
                                                          #16 0x000055c507909a88 n/a (chrome + 0x4887a88)
                                                          #17 0x000055c507907daa n/a (chrome + 0x4885daa)
                                                          #18 0x000055c5050e64c4 ChromeMain (chrome + 0x20644c4)
                                                          #19 0x00007f1d34d3cb25 __libc_start_main (libc.so.6 + 0x27b25)
                                                          #20 0x000055c504da846a _start (chrome + 0x1d2646a)
                                                          
                                                          Stack trace of thread 5:
                                                          #0  0x00007f1d3646c9ba __futex_abstimed_wait_common64 (libpthread.so.0 + 0x159ba)
                                                          #1  0x00007f1d36466260 pthread_cond_wait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf260)
                                                          #2  0x000055c507a0434d n/a (chrome + 0x498234d)
                                                          #3  0x000055c507a04cc6 n/a (chrome + 0x4982cc6)
                                                          #4  0x000055c507a0493e n/a (chrome + 0x498293e)
                                                          #5  0x000055c507975e37 n/a (chrome + 0x48f3e37)
                                                          #6  0x000055c5079c81fc n/a (chrome + 0x49461fc)
                                                          #7  0x000055c50799c861 n/a (chrome + 0x491a861)
                                                          #8  0x000055c5079e1669 n/a (chrome + 0x495f669)
                                                          #9  0x000055c507a084e4 n/a (chrome + 0x49864e4)
                                                          #10 0x00007f1d36460299 start_thread (libpthread.so.0 + 0x9299)
                                                          #11 0x00007f1d34e14053 __clone (libc.so.6 + 0xff053)
                                                          
                                                          Stack trace of thread 3:
                                                          #0  0x00007f1d3646c9ba __futex_abstimed_wait_common64 (libpthread.so.0 + 0x159ba)
                                                          #1  0x00007f1d36466574 pthread_cond_timedwait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf574)
                                                          #2  0x000055c507a044e8 n/a (chrome + 0x49824e8)
                                                          #3  0x000055c507a04b73 n/a (chrome + 0x4982b73)
                                                          #4  0x000055c5079db66e n/a (chrome + 0x495966e)
                                                          #5  0x000055c5079db26d n/a (chrome + 0x495926d)
                                                          #6  0x000055c507a084e4 n/a (chrome + 0x49864e4)
                                                          #7  0x00007f1d36460299 start_thread (libpthread.so.0 + 0x9299)
                                                          #8  0x00007f1d34e14053 __clone (libc.so.6 + 0xff053)
                                                          
                                                          Stack trace of thread 8:
                                                          #0  0x00007f1d3646c9ba __futex_abstimed_wait_common64 (libpthread.so.0 + 0x159ba)
                                                          #1  0x00007f1d36466260 pthread_cond_wait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf260)
                                                          #2  0x000055c507a0434d n/a (chrome + 0x498234d)
                                                          #3  0x000055c507a04cc6 n/a (chrome + 0x4982cc6)
                                                          #4  0x000055c507a0493e n/a (chrome + 0x498293e)
                                                          #5  0x000055c5079db767 n/a (chrome + 0x4959767)
                                                          #6  0x000055c5079db29d n/a (chrome + 0x495929d)
                                                          #7  0x000055c507a084e4 n/a (chrome + 0x49864e4)
                                                          #8  0x00007f1d36460299 start_thread (libpthread.so.0 + 0x9299)
                                                          #9  0x00007f1d34e14053 __clone (libc.so.6 + 0xff053)
                                                          
                                                          Stack trace of thread 2:
                                                          #0  0x00007f1d34e1439e epoll_wait (libc.so.6 + 0xff39e)
                                                          #1  0x000055c507b33b0b n/a (chrome + 0x4ab1b0b)
                                                          #2  0x000055c507b314eb n/a (chrome + 0x4aaf4eb)
                                                          #3  0x000055c507a152f3 n/a (chrome + 0x49932f3)
                                                          #4  0x000055c5079c81fc n/a (chrome + 0x49461fc)
                                                          #5  0x000055c50799c861 n/a (chrome + 0x491a861)
                                                          #6  0x000055c5079da56d n/a (chrome + 0x495856d)
                                                          #7  0x000055c5079e1669 n/a (chrome + 0x495f669)
                                                          #8  0x000055c507a084e4 n/a (chrome + 0x49864e4)
                                                          #9  0x00007f1d36460299 start_thread (libpthread.so.0 + 0x9299)
                                                          #10 0x00007f1d34e14053 __clone (libc.so.6 + 0xff053)
                                                          
                                                          Stack trace of thread 9:
                                                          #0  0x00007f1d3646c9ba __futex_abstimed_wait_common64 (libpthread.so.0 + 0x159ba)
                                                          #1  0x00007f1d36466260 pthread_cond_wait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf260)
                                                          #2  0x000055c507a0434d n/a (chrome + 0x498234d)
                                                          #3  0x000055c50c96639d n/a (chrome + 0x98e439d)
                                                          #4  0x000055c507a084e4 n/a (chrome + 0x49864e4)
                                                          #5  0x00007f1d36460299 start_thread (libpthread.so.0 + 0x9299)
                                                          #6  0x00007f1d34e14053 __clone (libc.so.6 + 0xff053)
                                                          
                                                          Stack trace of thread 11:
                                                          #0  0x00007f1d3646c9ba __futex_abstimed_wait_common64 (libpthread.so.0 + 0x159ba)
                                                          #1  0x00007f1d36466260 pthread_cond_wait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf260)
                                                          #2  0x000055c507a0434d n/a (chrome + 0x498234d)
                                                          #3  0x000055c50c96639d n/a (chrome + 0x98e439d)
                                                          #4  0x000055c507a084e4 n/a (chrome + 0x49864e4)
                                                          #5  0x00007f1d36460299 start_thread (libpthread.so.0 + 0x9299)
                                                          #6  0x00007f1d34e14053 __clone (libc.so.6 + 0xff053)
                                                          
                                                          Stack trace of thread 7:
                                                          #0  0x00007f1d3646c9ba __futex_abstimed_wait_common64 (libpthread.so.0 + 0x159ba)
                                                          #1  0x00007f1d36466260 pthread_cond_wait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf260)
                                                          #2  0x000055c507a0434d n/a (chrome + 0x498234d)
                                                          #3  0x000055c507a04cc6 n/a (chrome + 0x4982cc6)
                                                          #4  0x000055c507a0493e n/a (chrome + 0x498293e)
                                                          #5  0x000055c507975e37 n/a (chrome + 0x48f3e37)
                                                          #6  0x000055c5079c81fc n/a (chrome + 0x49461fc)
                                                          #7  0x000055c50799c861 n/a (chrome + 0x491a861)
                                                          #8  0x000055c5075423b4 n/a (chrome + 0x44c03b4)
                                                          #9  0x000055c507a084e4 n/a (chrome + 0x49864e4)
                                                          #10 0x00007f1d36460299 start_thread (libpthread.so.0 + 0x9299)
                                                          #11 0x00007f1d34e14053 __clone (libc.so.6 + 0xff053)
                                                          
                                                          Stack trace of thread 10:
                                                          #0  0x00007f1d3646c9ba __futex_abstimed_wait_common64 (libpthread.so.0 + 0x159ba)
                                                          #1  0x00007f1d36466260 pthread_cond_wait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf260)
                                                          #2  0x000055c507a0434d n/a (chrome + 0x498234d)
                                                          #3  0x000055c50c96639d n/a (chrome + 0x98e439d)
                                                          #4  0x000055c507a084e4 n/a (chrome + 0x49864e4)
                                                          #5  0x00007f1d36460299 start_thread (libpthread.so.0 + 0x9299)
                                                          #6  0x00007f1d34e14053 __clone (libc.so.6 + 0xff053)
                                                          
                                                          Stack trace of thread 12:
                                                          #0  0x00007f1d3646c9ba __futex_abstimed_wait_common64 (libpthread.so.0 + 0x159ba)
                                                          #1  0x00007f1d36466260 pthread_cond_wait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf260)
                                                          #2  0x000055c507a0434d n/a (chrome + 0x498234d)
                                                          #3  0x000055c50c96639d n/a (chrome + 0x98e439d)
                                                          #4  0x000055c507a084e4 n/a (chrome + 0x49864e4)
                                                          #5  0x00007f1d36460299 start_thread (libpthread.so.0 + 0x9299)
                                                          #6  0x00007f1d34e14053 __clone (libc.so.6 + 0xff053)
                                                          
                                                          Stack trace of thread 13:
                                                          #0  0x00007f1d3646c9ba __futex_abstimed_wait_common64 (libpthread.so.0 + 0x159ba)
                                                          #1  0x00007f1d36466260 pthread_cond_wait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf260)
                                                          #2  0x000055c507a0434d n/a (chrome + 0x498234d)
                                                          #3  0x000055c50c96639d n/a (chrome + 0x98e439d)
                                                          #4  0x000055c507a084e4 n/a (chrome + 0x49864e4)
                                                          #5  0x00007f1d36460299 start_thread (libpthread.so.0 + 0x9299)
                                                          #6  0x00007f1d34e14053 __clone (libc.so.6 + 0xff053)
Mar 05 17:58:36 vlovich systemd[1]: systemd-coredump@6-8839-0.service: Succeeded.
Mar 05 17:58:36 vlovich audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-coredump@6-8839-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:58:36 vlovich kernel: audit: type=1131 audit(1614995916.694:201): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-coredump@6-8839-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 17:58:36 vlovich audit: BPF prog-id=40 op=UNLOAD
Mar 05 17:58:36 vlovich audit: BPF prog-id=39 op=UNLOAD
Mar 05 17:58:36 vlovich kernel: audit: type=1334 audit(1614995916.821:202): prog-id=40 op=UNLOAD
Mar 05 17:58:36 vlovich kernel: audit: type=1334 audit(1614995916.821:203): prog-id=39 op=UNLOAD
Mar 05 17:58:37 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 58338, resource id: 14718927, major code: 20 (GetProperty), minor code: 0
Mar 05 17:59:00 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 62626, resource id: 14719203, major code: 3 (GetWindowAttributes), minor code: 0
Mar 05 17:59:00 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 62627, resource id: 14719203, major code: 14 (GetGeometry), minor code: 0
Mar 05 18:04:45 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 61912, resource id: 14724207, major code: 3 (GetWindowAttributes), minor code: 0
Mar 05 18:04:45 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 61913, resource id: 14724207, major code: 14 (GetGeometry), minor code: 0
Mar 05 18:07:16 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 26878, resource id: 14726494, major code: 3 (GetWindowAttributes), minor code: 0
Mar 05 18:07:16 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 26879, resource id: 14726494, major code: 14 (GetGeometry), minor code: 0
Mar 05 18:12:36 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 19163, resource id: 14719204, major code: 20 (GetProperty), minor code: 0
Mar 05 18:12:39 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 21266, resource id: 14730821, major code: 20 (GetProperty), minor code: 0
Mar 05 18:13:14 vlovich baloo_file[905]: 36035763455983106 "/home/vlovich/Downloads/Stateful Bandit V2 Architecture.pptx" renaming "Unconfirmed 525121.crdownload" to "Stateful Bandit V2 Architecture.pptx"
Mar 05 18:13:15 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 30896, resource id: 102760453, major code: 18 (ChangeProperty), minor code: 0
Mar 05 18:13:15 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 30901, resource id: 102760454, major code: 18 (ChangeProperty), minor code: 0
Mar 05 18:13:15 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 30905, resource id: 102760455, major code: 18 (ChangeProperty), minor code: 0
Mar 05 18:13:15 vlovich systemd[756]: Started Ark - Archiving Tool.
Mar 05 18:13:19 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 32563, resource id: 102760563, major code: 18 (ChangeProperty), minor code: 0
Mar 05 18:13:19 vlovich systemd[756]: app-org.kde.ark-58524fbc035043359b0d2b04128f3808.scope: Succeeded.
Mar 05 18:14:09 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 53424, resource id: 14731652, major code: 20 (GetProperty), minor code: 0
Mar 05 18:14:10 vlovich sudo[1977]: pam_unix(sudo:session): session closed for user root
Mar 05 18:14:10 vlovich audit[1977]: USER_END pid=1977 uid=1000 auid=1000 ses=2 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 05 18:14:10 vlovich kernel: audit: type=1106 audit(1614996850.967:204): pid=1977 uid=1000 auid=1000 ses=2 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 05 18:14:10 vlovich kernel: audit: type=1104 audit(1614996850.967:205): pid=1977 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 05 18:14:10 vlovich audit[1977]: CRED_DISP pid=1977 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 05 18:14:21 vlovich dbus-daemon[772]: [session uid=1000 pid=772] Activating service name='org.flameshot.Flameshot' requested by ':1.68' (uid=1000 pid=10760 comm="flameshot gui ")
Mar 05 18:14:21 vlovich flameshot[10763]: QSettings::value: Empty key passed
Mar 05 18:14:21 vlovich flameshot[10763]: QSettings::value: Empty key passed
Mar 05 18:14:21 vlovich flameshot[10763]: QSettings::setValue: Empty key passed
Mar 05 18:14:21 vlovich flameshot[10763]: QSettings::value: Empty key passed
Mar 05 18:14:21 vlovich flameshot[10763]: QSettings::setValue: Empty key passed
Mar 05 18:14:21 vlovich dbus-daemon[772]: [session uid=1000 pid=772] Successfully activated service 'org.flameshot.Flameshot'
Mar 05 18:14:21 vlovich kded5[809]: Registering ":1.70/StatusNotifierItem" to system tray
Mar 05 18:14:21 vlovich plasmashell[901]: file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/SelectableLabel.qml:59:9: QML QQuickTextEdit: Binding loop detected for property "width"
Mar 05 18:14:21 vlovich plasmashell[901]: file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/NotificationPopup.qml:116:15: QML QQuickItem: Binding loop detected for property "height"
Mar 05 18:14:22 vlovich org.flameshot.Flameshot[10763]: ATTENTION: default value of option vblank_mode overridden by environment.
Mar 05 18:14:22 vlovich flameshot[10763]: QPainter::begin: Paint device returned engine == 0, type: 2
Mar 05 18:14:22 vlovich flameshot[10763]: QPainter::setRenderHint: Painter must be active to set rendering hints
Mar 05 18:14:22 vlovich flameshot[10763]: QPainter::setCompositionMode: Painter not active
Mar 05 18:14:22 vlovich flameshot[10763]: QPainter::translate: Painter not active
Mar 05 18:14:22 vlovich flameshot[10763]: QPainter::setPen: Painter not active
Mar 05 18:14:22 vlovich flameshot[10763]: QPainter::setBrush: Painter not active
Mar 05 18:14:22 vlovich flameshot[10763]: QPainter::setBrush: Painter not active
Mar 05 18:14:36 vlovich plasmashell[901]: file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/NotificationPopup.qml:116:15: QML QQuickItem: Binding loop detected for property "height"
Mar 05 18:14:55 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 6785, resource id: 14733569, major code: 20 (GetProperty), minor code: 0
Mar 05 18:14:57 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 7721, resource id: 14734587, major code: 20 (GetProperty), minor code: 0
Mar 05 18:14:59 vlovich flameshot[10763]: QPainter::begin: Paint device returned engine == 0, type: 2
Mar 05 18:14:59 vlovich flameshot[10763]: QPainter::setRenderHint: Painter must be active to set rendering hints
Mar 05 18:14:59 vlovich flameshot[10763]: QPainter::setCompositionMode: Painter not active
Mar 05 18:14:59 vlovich flameshot[10763]: QPainter::translate: Painter not active
Mar 05 18:14:59 vlovich flameshot[10763]: QPainter::setPen: Painter not active
Mar 05 18:14:59 vlovich flameshot[10763]: QPainter::setBrush: Painter not active
Mar 05 18:14:59 vlovich flameshot[10763]: QPainter::setBrush: Painter not active
Mar 05 18:15:12 vlovich kernel: logitech-hidpp-device 0003:046D:406D.0006: HID++ 4.5 device connected.
Mar 05 18:15:12 vlovich upowerd[886]: treating change event as add on /sys/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:406D.0006/power_supply/hidpp_battery_0
Mar 05 18:15:15 vlovich plasmashell[901]: file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/NotificationPopup.qml:116:15: QML QQuickItem: Binding loop detected for property "height"
Mar 05 18:20:57 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 39533, resource id: 14742008, major code: 3 (GetWindowAttributes), minor code: 0
Mar 05 18:20:57 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 39534, resource id: 14742008, major code: 14 (GetGeometry), minor code: 0
Mar 05 18:28:17 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 63227, resource id: 14748957, major code: 3 (GetWindowAttributes), minor code: 0
Mar 05 18:28:17 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 63228, resource id: 14748957, major code: 14 (GetGeometry), minor code: 0
Mar 05 18:28:56 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-64 noise=9999 txrate=520000
Mar 05 18:29:00 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-62 noise=9999 txrate=520000
Mar 05 18:29:05 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-61 noise=9999 txrate=520000
Mar 05 18:29:46 vlovich kwin_x11[813]: kwin_core: XCB error: 152 (BadDamage), sequence: 18789, resource id: 14750462, major code: 143 (DAMAGE), minor code: 2 (Destroy)
Mar 05 18:29:46 vlovich kwin_x11[813]: kwin_core: XCB error: 3 (BadWindow), sequence: 18790, resource id: 77594742, major code: 129 (SHAPE), minor code: 6 (Input)
Mar 05 18:29:46 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 18791, resource id: 77594742, major code: 2 (ChangeWindowAttributes), minor code: 0
Mar 05 18:29:59 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 20823, resource id: 14750601, major code: 3 (GetWindowAttributes), minor code: 0
Mar 05 18:29:59 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 20824, resource id: 14750601, major code: 14 (GetGeometry), minor code: 0
Mar 05 18:32:21 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 50518, resource id: 14752637, major code: 3 (GetWindowAttributes), minor code: 0
Mar 05 18:32:21 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 50519, resource id: 14752637, major code: 14 (GetGeometry), minor code: 0
Mar 05 18:32:25 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-62 noise=9999 txrate=325000
Mar 05 18:32:46 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-60 noise=9999 txrate=468000
Mar 05 18:32:55 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 59354, resource id: 14753226, major code: 3 (GetWindowAttributes), minor code: 0
Mar 05 18:32:55 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 59355, resource id: 14753226, major code: 14 (GetGeometry), minor code: 0
Mar 05 18:32:58 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-63 noise=9999 txrate=351000
Mar 05 18:33:26 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-63 noise=9999 txrate=468000
Mar 05 18:33:29 vlovich wpa_supplicant[718]: wlp0s20f3: SME: Trying to authenticate with 70:3a:cb:26:cd:92 (SSID='i_steal_pies' freq=5745 MHz)
Mar 05 18:33:29 vlovich kernel: wlp0s20f3: disconnect from AP 70:3a:cb:26:cd:9d for new auth to 70:3a:cb:26:cd:92
Mar 05 18:33:29 vlovich kernel: wlp0s20f3: authenticate with 70:3a:cb:26:cd:92
Mar 05 18:33:29 vlovich kernel: wlp0s20f3: send auth to 70:3a:cb:26:cd:92 (try 1/3)
Mar 05 18:33:29 vlovich NetworkManager[624]: <info>  [1614998009.5389] device (wlp0s20f3): supplicant interface state: completed -> authenticating
Mar 05 18:33:29 vlovich NetworkManager[624]: <info>  [1614998009.5389] device (p2p-dev-wlp0s20f3): supplicant management interface state: completed -> authenticating
Mar 05 18:33:29 vlovich NetworkManager[624]: <info>  [1614998009.5389] device (wlp0s20f3): DHCPv4 lease renewal requested
Mar 05 18:33:29 vlovich NetworkManager[624]: <info>  [1614998009.5653] dhcp4 (wlp0s20f3): canceled DHCP transaction
Mar 05 18:33:29 vlovich NetworkManager[624]: <info>  [1614998009.5654] dhcp4 (wlp0s20f3): state changed bound -> done
Mar 05 18:33:29 vlovich NetworkManager[624]: <info>  [1614998009.5658] dhcp4 (wlp0s20f3): activation: beginning transaction (timeout in 45 seconds)
Mar 05 18:33:29 vlovich NetworkManager[624]: <info>  [1614998009.5659] device (wlp0s20f3): DHCPv6 lease renewal requested
Mar 05 18:33:29 vlovich NetworkManager[624]: <info>  [1614998009.5659] dhcp6 (wlp0s20f3): canceled DHCP transaction
Mar 05 18:33:29 vlovich NetworkManager[624]: <info>  [1614998009.5659] dhcp6 (wlp0s20f3): state changed bound -> done
Mar 05 18:33:29 vlovich NetworkManager[624]: <info>  [1614998009.5662] dhcp6 (wlp0s20f3): activation: beginning transaction (timeout in 45 seconds)
Mar 05 18:33:29 vlovich wpa_supplicant[718]: wlp0s20f3: Trying to associate with 70:3a:cb:26:cd:92 (SSID='i_steal_pies' freq=5745 MHz)
Mar 05 18:33:29 vlovich kernel: wlp0s20f3: authenticated
Mar 05 18:33:29 vlovich kernel: wlp0s20f3: associate with 70:3a:cb:26:cd:92 (try 1/3)
Mar 05 18:33:29 vlovich NetworkManager[624]: <info>  [1614998009.5728] device (wlp0s20f3): supplicant interface state: authenticating -> associating
Mar 05 18:33:29 vlovich NetworkManager[624]: <info>  [1614998009.5728] device (p2p-dev-wlp0s20f3): supplicant management interface state: authenticating -> associating
Mar 05 18:33:29 vlovich kernel: wlp0s20f3: RX ReassocResp from 70:3a:cb:26:cd:92 (capab=0x1011 status=0 aid=1)
Mar 05 18:33:29 vlovich wpa_supplicant[718]: wlp0s20f3: Associated with 70:3a:cb:26:cd:92
Mar 05 18:33:29 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
Mar 05 18:33:29 vlovich kernel: wlp0s20f3: associated
Mar 05 18:33:29 vlovich NetworkManager[624]: <info>  [1614998009.5881] device (wlp0s20f3): supplicant interface state: associating -> associated
Mar 05 18:33:29 vlovich NetworkManager[624]: <info>  [1614998009.5881] device (p2p-dev-wlp0s20f3): supplicant management interface state: associating -> associated
Mar 05 18:33:29 vlovich kernel: wlp0s20f3: Limiting TX power to 30 (30 - 0) dBm as advertised by 70:3a:cb:26:cd:92
Mar 05 18:33:29 vlovich wpa_supplicant[718]: wlp0s20f3: WPA: Key negotiation completed with 70:3a:cb:26:cd:92 [PTK=CCMP GTK=CCMP]
Mar 05 18:33:29 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-CONNECTED - Connection to 70:3a:cb:26:cd:92 completed [id=0 id_str=]
Mar 05 18:33:29 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-68 noise=9999 txrate=26000
Mar 05 18:33:29 vlovich NetworkManager[624]: <info>  [1614998009.6007] device (wlp0s20f3): supplicant interface state: associated -> completed
Mar 05 18:33:29 vlovich NetworkManager[624]: <info>  [1614998009.6011] device (p2p-dev-wlp0s20f3): supplicant management interface state: associated -> completed
Mar 05 18:33:30 vlovich NetworkManager[624]: <info>  [1614998010.5571] dhcp6 (wlp0s20f3): state changed unknown -> bound
Mar 05 18:33:30 vlovich dbus-daemon[623]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service' requested by ':1.2' (uid=0 pid=624 comm="/usr/bin/NetworkManager --no-daemon ")
Mar 05 18:33:30 vlovich systemd[1]: Starting Network Manager Script Dispatcher Service...
Mar 05 18:33:30 vlovich dbus-daemon[623]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Mar 05 18:33:30 vlovich systemd[1]: Started Network Manager Script Dispatcher Service.
Mar 05 18:33:30 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 18:33:30 vlovich kernel: audit: type=1130 audit(1614998010.561:206): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 18:33:31 vlovich NetworkManager[624]: <info>  [1614998011.5940] dhcp4 (wlp0s20f3): state changed unknown -> bound, address=192.168.1.67
Mar 05 18:33:40 vlovich systemd[1]: NetworkManager-dispatcher.service: Succeeded.
Mar 05 18:33:40 vlovich audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 18:33:40 vlovich kernel: audit: type=1131 audit(1614998020.953:207): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 18:34:03 vlovich wpa_supplicant[718]: wlp0s20f3: SME: Trying to authenticate with 70:3a:cb:26:cd:9d (SSID='i_steal_pies' freq=5745 MHz)
Mar 05 18:34:03 vlovich kernel: wlp0s20f3: disconnect from AP 70:3a:cb:26:cd:92 for new auth to 70:3a:cb:26:cd:9d
Mar 05 18:34:03 vlovich kernel: wlp0s20f3: authenticate with 70:3a:cb:26:cd:9d
Mar 05 18:34:03 vlovich NetworkManager[624]: <info>  [1614998043.6747] device (wlp0s20f3): supplicant interface state: completed -> authenticating
Mar 05 18:34:03 vlovich NetworkManager[624]: <info>  [1614998043.6747] device (p2p-dev-wlp0s20f3): supplicant management interface state: completed -> authenticating
Mar 05 18:34:03 vlovich NetworkManager[624]: <info>  [1614998043.6747] device (wlp0s20f3): DHCPv4 lease renewal requested
Mar 05 18:34:03 vlovich kernel: wlp0s20f3: send auth to 70:3a:cb:26:cd:9d (try 1/3)
Mar 05 18:34:03 vlovich NetworkManager[624]: <info>  [1614998043.6885] dhcp4 (wlp0s20f3): canceled DHCP transaction
Mar 05 18:34:03 vlovich NetworkManager[624]: <info>  [1614998043.6886] dhcp4 (wlp0s20f3): state changed bound -> done
Mar 05 18:34:03 vlovich NetworkManager[624]: <info>  [1614998043.6889] dhcp4 (wlp0s20f3): activation: beginning transaction (timeout in 45 seconds)
Mar 05 18:34:03 vlovich NetworkManager[624]: <info>  [1614998043.6889] device (wlp0s20f3): DHCPv6 lease renewal requested
Mar 05 18:34:03 vlovich NetworkManager[624]: <info>  [1614998043.6890] dhcp6 (wlp0s20f3): canceled DHCP transaction
Mar 05 18:34:03 vlovich NetworkManager[624]: <info>  [1614998043.6890] dhcp6 (wlp0s20f3): state changed bound -> done
Mar 05 18:34:03 vlovich NetworkManager[624]: <info>  [1614998043.6892] dhcp6 (wlp0s20f3): activation: beginning transaction (timeout in 45 seconds)
Mar 05 18:34:03 vlovich wpa_supplicant[718]: wlp0s20f3: Trying to associate with 70:3a:cb:26:cd:9d (SSID='i_steal_pies' freq=5745 MHz)
Mar 05 18:34:03 vlovich NetworkManager[624]: <info>  [1614998043.7050] device (wlp0s20f3): supplicant interface state: authenticating -> associating
Mar 05 18:34:03 vlovich kernel: wlp0s20f3: authenticated
Mar 05 18:34:03 vlovich kernel: wlp0s20f3: associate with 70:3a:cb:26:cd:9d (try 1/3)
Mar 05 18:34:03 vlovich NetworkManager[624]: <info>  [1614998043.7051] device (p2p-dev-wlp0s20f3): supplicant management interface state: authenticating -> associating
Mar 05 18:34:03 vlovich kernel: wlp0s20f3: RX ReassocResp from 70:3a:cb:26:cd:9d (capab=0x1011 status=0 aid=2)
Mar 05 18:34:03 vlovich wpa_supplicant[718]: wlp0s20f3: Associated with 70:3a:cb:26:cd:9d
Mar 05 18:34:03 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
Mar 05 18:34:03 vlovich kernel: wlp0s20f3: associated
Mar 05 18:34:03 vlovich NetworkManager[624]: <info>  [1614998043.7298] device (wlp0s20f3): supplicant interface state: associating -> associated
Mar 05 18:34:03 vlovich NetworkManager[624]: <info>  [1614998043.7298] device (p2p-dev-wlp0s20f3): supplicant management interface state: associating -> associated
Mar 05 18:34:03 vlovich wpa_supplicant[718]: wlp0s20f3: WPA: Key negotiation completed with 70:3a:cb:26:cd:9d [PTK=CCMP GTK=CCMP]
Mar 05 18:34:03 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-CONNECTED - Connection to 70:3a:cb:26:cd:9d completed [id=0 id_str=]
Mar 05 18:34:03 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-58 noise=9999 txrate=26000
Mar 05 18:34:03 vlovich NetworkManager[624]: <info>  [1614998043.7456] device (wlp0s20f3): supplicant interface state: associated -> completed
Mar 05 18:34:03 vlovich NetworkManager[624]: <info>  [1614998043.7459] device (p2p-dev-wlp0s20f3): supplicant management interface state: associated -> completed
Mar 05 18:34:03 vlovich kernel: wlp0s20f3: Limiting TX power to 30 (30 - 0) dBm as advertised by 70:3a:cb:26:cd:9d
Mar 05 18:34:03 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-56 noise=9999 txrate=26000
Mar 05 18:34:04 vlovich NetworkManager[624]: <info>  [1614998044.6322] dhcp6 (wlp0s20f3): state changed unknown -> bound
Mar 05 18:34:04 vlovich dbus-daemon[623]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service' requested by ':1.2' (uid=0 pid=624 comm="/usr/bin/NetworkManager --no-daemon ")
Mar 05 18:34:04 vlovich systemd[1]: Starting Network Manager Script Dispatcher Service...
Mar 05 18:34:04 vlovich dbus-daemon[623]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Mar 05 18:34:04 vlovich systemd[1]: Started Network Manager Script Dispatcher Service.
Mar 05 18:34:04 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 18:34:04 vlovich kernel: audit: type=1130 audit(1614998044.645:208): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 18:34:05 vlovich NetworkManager[624]: <info>  [1614998045.7673] dhcp4 (wlp0s20f3): state changed unknown -> bound, address=192.168.1.67
Mar 05 18:34:14 vlovich systemd[1]: NetworkManager-dispatcher.service: Succeeded.
Mar 05 18:34:14 vlovich audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 18:34:14 vlovich kernel: audit: type=1131 audit(1614998054.954:209): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 05 18:35:04 vlovich kwin_x11[813]: kwin_core: XCB error: 152 (BadDamage), sequence: 23961, resource id: 14755401, major code: 143 (DAMAGE), minor code: 2 (Destroy)
Mar 05 18:35:04 vlovich kwin_x11[813]: kwin_core: XCB error: 3 (BadWindow), sequence: 23962, resource id: 77594747, major code: 129 (SHAPE), minor code: 6 (Input)
Mar 05 18:35:04 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 23963, resource id: 77594747, major code: 2 (ChangeWindowAttributes), minor code: 0
Mar 05 18:42:05 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 46595, resource id: 14734643, major code: 20 (GetProperty), minor code: 0
Mar 05 18:44:24 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-63 noise=9999 txrate=390000
Mar 05 18:44:35 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-63 noise=9999 txrate=390000
Mar 05 18:44:58 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-60 noise=9999 txrate=325000
Mar 05 18:45:12 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-63 noise=9999 txrate=351000
Mar 05 18:45:17 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-62 noise=9999 txrate=263300
Mar 05 18:45:23 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-62 noise=9999 txrate=526600
Mar 05 18:45:38 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 25623, resource id: 14762382, major code: 20 (GetProperty), minor code: 0
Mar 05 18:46:48 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-60 noise=9999 txrate=390000
Mar 05 18:47:08 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-60 noise=9999 txrate=351000
Mar 05 18:47:52 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-61 noise=9999 txrate=351000
Mar 05 18:47:59 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-58 noise=9999 txrate=351000
Mar 05 18:48:00 vlovich kwin_x11[813]: kwin_core: XCB error: 152 (BadDamage), sequence: 58732, resource id: 14767819, major code: 143 (DAMAGE), minor code: 3 (Subtract)
Mar 05 18:48:00 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 58737, resource id: 77594752, major code: 3 (GetWindowAttributes), minor code: 0
Mar 05 18:48:00 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 58738, resource id: 77594752, major code: 14 (GetGeometry), minor code: 0
Mar 05 18:48:00 vlovich kwin_x11[813]: kwin_core: XCB error: 3 (BadWindow), sequence: 58740, resource id: 77594752, major code: 129 (SHAPE), minor code: 8 (GetRectangles)
Mar 05 18:48:17 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-65 noise=9999 txrate=390000
Mar 05 18:48:29 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-59 noise=9999 txrate=585100
Mar 05 18:48:51 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-63 noise=9999 txrate=292500
Mar 05 18:49:13 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-58 noise=9999 txrate=390000
Mar 05 18:49:28 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-58 noise=9999 txrate=390000
Mar 05 18:50:17 vlovich kscreenlocker_greet[14379]: Qt: Session management error: networkIdsList argument is NULL
Mar 05 18:50:18 vlovich kscreenlocker_greet[14379]: qt.svg: <input>:406:376: Could not add child element to parent element because the types are incorrect.
Mar 05 18:50:18 vlovich kscreenlocker_greet[14379]: qt.svg: <input>:407:130: Could not add child element to parent element because the types are incorrect.
Mar 05 18:50:18 vlovich kscreenlocker_greet[14379]: qt.svg: <input>:408:130: Could not add child element to parent element because the types are incorrect.
Mar 05 18:50:18 vlovich kscreenlocker_greet[14379]: qt.svg: <input>:408:393: Could not add child element to parent element because the types are incorrect.
Mar 05 18:50:18 vlovich kscreenlocker_greet[14379]: qt.svg: <input>:409:130: Could not add child element to parent element because the types are incorrect.
Mar 05 18:50:18 vlovich kscreenlocker_greet[14379]: qt.svg: <input>:410:129: Could not add child element to parent element because the types are incorrect.
Mar 05 18:50:18 vlovich kscreenlocker_greet[14379]: qt.svg: <input>:411:129: Could not add child element to parent element because the types are incorrect.
Mar 05 18:50:18 vlovich kscreenlocker_greet[14379]: qt.svg: <input>:412:129: Could not add child element to parent element because the types are incorrect.
Mar 05 18:50:18 vlovich kscreenlocker_greet[14379]: qt.svg: <input>:413:129: Could not add child element to parent element because the types are incorrect.
Mar 05 18:50:18 vlovich kscreenlocker_greet[14379]: qt.svg: <input>:413:379: Could not add child element to parent element because the types are incorrect.
Mar 05 18:50:18 vlovich kscreenlocker_greet[14379]: qt.svg: <input>:413:631: Could not add child element to parent element because the types are incorrect.
Mar 05 18:50:18 vlovich kscreenlocker_greet[14379]: file:///usr/share/plasma/look-and-feel/org.kde.breeze.desktop/contents/components/VirtualKeyboard.qml:20:1: module "QtQuick.VirtualKeyboard" is not installed
Mar 05 18:52:48 vlovich dbus-daemon[623]: [system] Activating service name='org.kde.powerdevil.backlighthelper' requested by ':1.41' (uid=1000 pid=1496 comm="/usr/lib/org_kde_powerdevil ") (using servicehelper)
Mar 05 18:52:48 vlovich dbus-daemon[623]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
Mar 05 18:54:03 vlovich dbus-daemon[623]: [system] Activating service name='org.kde.powerdevil.backlighthelper' requested by ':1.41' (uid=1000 pid=1496 comm="/usr/lib/org_kde_powerdevil ") (using servicehelper)
Mar 05 18:54:03 vlovich dbus-daemon[623]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
Mar 05 18:55:18 vlovich dbus-daemon[623]: [system] Activating service name='org.kde.powerdevil.backlighthelper' requested by ':1.41' (uid=1000 pid=1496 comm="/usr/lib/org_kde_powerdevil ") (using servicehelper)
Mar 05 18:55:18 vlovich dbus-daemon[623]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
Mar 05 19:03:13 vlovich plasmashell[901]: org.kde.plasma.notifications: Trying to replace notification with id 1640 which doesn't exist, creating a new one. This is an application bug!
Mar 05 19:03:13 vlovich plasmashell[901]: file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/NotificationPopup.qml:116:15: QML QQuickItem: Binding loop detected for property "height"
Mar 05 19:03:29 vlovich plasmashell[901]: qrc:/plasma/plasmoids/org.kde.plasma.volume/contents/ui/ListItemBase.qml:231: TypeError: Cannot read property 'visible' of null
Mar 05 19:03:34 vlovich plasmashell[901]: qrc:/plasma/plasmoids/org.kde.plasma.volume/contents/ui/ListItemBase.qml:231: TypeError: Cannot read property 'visible' of null
Mar 05 19:32:48 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-55 noise=9999 txrate=585100
Mar 05 19:42:46 vlovich wpa_supplicant[718]: wlp0s20f3: WPA: Group rekeying completed with 70:3a:cb:26:cd:9d [GTK=CCMP]
Mar 05 21:15:41 vlovich plasmashell[901]: org.kde.plasma.notifications: Trying to replace notification with id 1641 which doesn't exist, creating a new one. This is an application bug!
Mar 05 21:15:58 vlovich plasmashell[901]: qrc:/plasma/plasmoids/org.kde.plasma.volume/contents/ui/ListItemBase.qml:231: TypeError: Cannot read property 'visible' of null
Mar 05 21:16:03 vlovich plasmashell[901]: qrc:/plasma/plasmoids/org.kde.plasma.volume/contents/ui/ListItemBase.qml:231: TypeError: Cannot read property 'visible' of null
Mar 05 23:39:34 vlovich kernel: perf: interrupt took too long (2511 > 2500), lowering kernel.perf_event_max_sample_rate to 79500
Mar 05 23:47:31 vlovich plasmashell[901]: org.kde.plasma.notifications: Trying to replace notification with id 1642 which doesn't exist, creating a new one. This is an application bug!
Mar 05 23:47:47 vlovich plasmashell[901]: qrc:/plasma/plasmoids/org.kde.plasma.volume/contents/ui/ListItemBase.qml:231: TypeError: Cannot read property 'visible' of null
Mar 05 23:47:52 vlovich plasmashell[901]: qrc:/plasma/plasmoids/org.kde.plasma.volume/contents/ui/ListItemBase.qml:231: TypeError: Cannot read property 'visible' of null
Mar 05 23:54:03 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-BEACON-LOSS
Mar 05 23:54:03 vlovich wpa_supplicant[718]: wlp0s20f3: CTRL-EVENT-BEACON-LOSS
Mar 06 00:00:20 vlovich systemd[1]: Starting Restart atop daemon to rotate logs...
Mar 06 00:00:20 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=shadow comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 00:00:20 vlovich kernel: audit: type=1130 audit(1615017620.186:210): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=shadow comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 00:00:20 vlovich systemd[1]: Starting Daily man-db regeneration...
Mar 06 00:00:20 vlovich systemd[1]: Started Verify integrity of password and group files.
Mar 06 00:00:20 vlovich systemd[1]: atop-rotate.service: Succeeded.
Mar 06 00:00:20 vlovich systemd[1]: Finished Restart atop daemon to rotate logs.
Mar 06 00:00:20 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=atop-rotate comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 00:00:20 vlovich audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=atop-rotate comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 00:00:20 vlovich kernel: audit: type=1130 audit(1615017620.193:211): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=atop-rotate comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 00:00:20 vlovich kernel: audit: type=1131 audit(1615017620.193:212): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=atop-rotate comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 00:00:20 vlovich systemd[1]: shadow.service: Succeeded.
Mar 06 00:00:20 vlovich audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=shadow comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 00:00:20 vlovich kernel: audit: type=1131 audit(1615017620.199:213): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=shadow comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 00:00:45 vlovich systemd[1]: man-db.service: Succeeded.
Mar 06 00:00:45 vlovich systemd[1]: Finished Daily man-db regeneration.
Mar 06 00:00:45 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=man-db comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 00:00:45 vlovich audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=man-db comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 00:00:45 vlovich kernel: audit: type=1130 audit(1615017645.896:214): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=man-db comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 00:00:45 vlovich kernel: audit: type=1131 audit(1615017645.896:215): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=man-db comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 05:22:18 vlovich plasmashell[901]: qrc:/plasma/plasmoids/org.kde.plasma.volume/contents/ui/ListItemBase.qml:231: TypeError: Cannot read property 'visible' of null
Mar 06 05:31:30 vlovich plasmashell[901]: qrc:/plasma/plasmoids/org.kde.plasma.volume/contents/ui/ListItemBase.qml:231: TypeError: Cannot read property 'visible' of null
Mar 06 06:34:05 vlovich NetworkManager[624]: <info>  [1615041245.7432] dhcp4 (wlp0s20f3): state changed bound -> extended, address=192.168.1.67
Mar 06 06:34:05 vlovich dbus-daemon[623]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service' requested by ':1.2' (uid=0 pid=624 comm="/usr/bin/NetworkManager --no-daemon ")
Mar 06 06:34:05 vlovich systemd[1]: Starting Network Manager Script Dispatcher Service...
Mar 06 06:34:05 vlovich dbus-daemon[623]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Mar 06 06:34:05 vlovich systemd[1]: Started Network Manager Script Dispatcher Service.
Mar 06 06:34:05 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 06:34:05 vlovich kernel: audit: type=1130 audit(1615041245.756:216): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 06:34:15 vlovich systemd[1]: NetworkManager-dispatcher.service: Succeeded.
Mar 06 06:34:15 vlovich audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 06:34:15 vlovich kernel: audit: type=1131 audit(1615041255.952:217): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:24:43 vlovich dbus-daemon[623]: [system] Activating service name='org.kde.powerdevil.backlighthelper' requested by ':1.41' (uid=1000 pid=1496 comm="/usr/lib/org_kde_powerdevil ") (using servicehelper)
Mar 06 08:24:43 vlovich dbus-daemon[623]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
Mar 06 08:24:46 vlovich audit[58478]: USER_AUTH pid=58478 uid=1000 auid=1000 ses=2 msg='op=PAM:unix_chkpwd acct="vlovich" exe="/usr/bin/unix_chkpwd" hostname=? addr=? terminal=? res=success'
Mar 06 08:24:46 vlovich kernel: audit: type=1100 audit(1615047886.647:218): pid=58478 uid=1000 auid=1000 ses=2 msg='op=PAM:unix_chkpwd acct="vlovich" exe="/usr/bin/unix_chkpwd" hostname=? addr=? terminal=? res=success'
Mar 06 08:24:46 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 38476, resource id: 102760506, major code: 18 (ChangeProperty), minor code: 0
Mar 06 08:24:51 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 40187, resource id: 14765746, major code: 20 (GetProperty), minor code: 0
Mar 06 08:25:17 vlovich audit[58488]: USER_AUTH pid=58488 uid=1000 auid=1000 ses=2 msg='op=PAM:authentication grantors=pam_faillock,pam_permit,pam_faillock acct="vlovich" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 06 08:25:17 vlovich dbus-daemon[623]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.145' (uid=0 pid=58488 comm="sudo pacman -S linux-lts linux-lts-headers ")
Mar 06 08:25:17 vlovich kernel: audit: type=1100 audit(1615047917.650:219): pid=58488 uid=1000 auid=1000 ses=2 msg='op=PAM:authentication grantors=pam_faillock,pam_permit,pam_faillock acct="vlovich" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 06 08:25:17 vlovich dbus-daemon[623]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Mar 06 08:25:17 vlovich sudo[58488]: pam_systemd_home(sudo:account): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Mar 06 08:25:17 vlovich audit[58488]: USER_ACCT pid=58488 uid=1000 auid=1000 ses=2 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="vlovich" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 06 08:25:17 vlovich sudo[58488]:  vlovich : TTY=pts/6 ; PWD=/home/vlovich ; USER=root ; COMMAND=/usr/bin/pacman -S linux-lts linux-lts-headers
Mar 06 08:25:17 vlovich audit[58488]: CRED_REFR pid=58488 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 06 08:25:17 vlovich sudo[58488]: pam_unix(sudo:session): session opened for user root(uid=0) by vlovich(uid=1000)
Mar 06 08:25:17 vlovich audit[58488]: USER_START pid=58488 uid=1000 auid=1000 ses=2 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 06 08:25:17 vlovich kernel: audit: type=1101 audit(1615047917.653:220): pid=58488 uid=1000 auid=1000 ses=2 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="vlovich" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 06 08:25:17 vlovich kernel: audit: type=1110 audit(1615047917.653:221): pid=58488 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 06 08:25:17 vlovich kernel: audit: type=1105 audit(1615047917.653:222): pid=58488 uid=1000 auid=1000 ses=2 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 06 08:26:39 vlovich sudo[58488]: pam_unix(sudo:session): session closed for user root
Mar 06 08:26:39 vlovich audit[58488]: USER_END pid=58488 uid=1000 auid=1000 ses=2 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 06 08:26:39 vlovich audit[58488]: CRED_DISP pid=58488 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 06 08:26:39 vlovich kernel: audit: type=1106 audit(1615047999.939:223): pid=58488 uid=1000 auid=1000 ses=2 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 06 08:26:39 vlovich kernel: audit: type=1104 audit(1615047999.939:224): pid=58488 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 06 08:28:14 vlovich kernel: logitech-hidpp-device 0003:046D:200A.0007: HID++ 1.0 device connected.
Mar 06 08:28:14 vlovich upowerd[886]: treating change event as add on /sys/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:200A.0007/power_supply/hidpp_battery_1
Mar 06 08:28:14 vlovich kwin_x11[813]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 13239, resource id: 15066869, major code: 20 (GetProperty), minor code: 0
Mar 06 08:28:43 vlovich dbus-daemon[623]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.146' (uid=0 pid=71442 comm="sudo journalctl -b ")
Mar 06 08:28:43 vlovich dbus-daemon[623]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Mar 06 08:28:43 vlovich sudo[71442]: pam_systemd_home(sudo:account): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Mar 06 08:28:43 vlovich audit[71442]: USER_ACCT pid=71442 uid=1000 auid=1000 ses=2 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="vlovich" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 06 08:28:43 vlovich sudo[71442]:  vlovich : TTY=pts/6 ; PWD=/home/vlovich ; USER=root ; COMMAND=/usr/bin/journalctl -b
Mar 06 08:28:43 vlovich kernel: audit: type=1101 audit(1615048123.872:225): pid=71442 uid=1000 auid=1000 ses=2 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="vlovich" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 06 08:28:43 vlovich kernel: audit: type=1110 audit(1615048123.876:226): pid=71442 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 06 08:28:43 vlovich audit[71442]: CRED_REFR pid=71442 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 06 08:28:43 vlovich sudo[71442]: pam_unix(sudo:session): session opened for user root(uid=0) by vlovich(uid=1000)
Mar 06 08:28:43 vlovich audit[71442]: USER_START pid=71442 uid=1000 auid=1000 ses=2 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 06 08:28:43 vlovich kernel: audit: type=1105 audit(1615048123.879:227): pid=71442 uid=1000 auid=1000 ses=2 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 06 08:28:44 vlovich sudo[71442]: pam_unix(sudo:session): session closed for user root
Mar 06 08:28:44 vlovich audit[71442]: USER_END pid=71442 uid=1000 auid=1000 ses=2 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 06 08:28:44 vlovich audit[71442]: CRED_DISP pid=71442 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 06 08:28:44 vlovich kernel: audit: type=1106 audit(1615048124.856:228): pid=71442 uid=1000 auid=1000 ses=2 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 06 08:28:44 vlovich kernel: audit: type=1104 audit(1615048124.856:229): pid=71442 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 06 08:28:50 vlovich dbus-daemon[623]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.147' (uid=0 pid=71465 comm="sudo journalctl -b ")
Mar 06 08:28:50 vlovich dbus-daemon[623]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Mar 06 08:28:50 vlovich sudo[71465]: pam_systemd_home(sudo:account): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Mar 06 08:28:50 vlovich audit[71465]: USER_ACCT pid=71465 uid=1000 auid=1000 ses=2 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="vlovich" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 06 08:28:50 vlovich sudo[71465]:  vlovich : TTY=pts/6 ; PWD=/home/vlovich ; USER=root ; COMMAND=/usr/bin/journalctl -b
Mar 06 08:28:50 vlovich audit[71465]: CRED_REFR pid=71465 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 06 08:28:50 vlovich audit[71465]: USER_START pid=71465 uid=1000 auid=1000 ses=2 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 06 08:28:50 vlovich sudo[71465]: pam_unix(sudo:session): session opened for user root(uid=0) by vlovich(uid=1000)
Mar 06 08:28:50 vlovich kernel: audit: type=1101 audit(1615048130.212:230): pid=71465 uid=1000 auid=1000 ses=2 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="vlovich" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 06 08:28:50 vlovich kernel: audit: type=1110 audit(1615048130.212:231): pid=71465 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 06 08:28:50 vlovich kernel: audit: type=1105 audit(1615048130.212:232): pid=71465 uid=1000 auid=1000 ses=2 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
$ cat /var/log/Xorg.0.log
[    30.250] (--) Log file renamed from "/var/log/Xorg.pid-675.log" to "/var/log/Xorg.0.log"
[    34.317] 
X.Org X Server 1.20.10
X Protocol Version 11, Revision 0
[    34.317] Build Operating System: Linux Arch Linux
[    34.317] Current Operating System: Linux vlovich 5.10.16-arch1-1 #1 SMP PREEMPT Sat, 13 Feb 2021 20:50:18 +0000 x86_64
[    34.317] Kernel command line: initrd=\intel-ucode.img initrd=\initramfs-linux.img rd.luks.name=4833f4ef-725f-47aa-897f-d5e672fb236b=cryptlvm root=/dev/Arch/OS rw nvidia-drm.modeset=1
[    34.317] Build Date: 14 December 2020  12:10:29PM
[    34.317]  
[    34.317] Current version of pixman: 0.40.0
[    34.317] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[    34.317] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    34.317] (==) Log file: "/var/log/Xorg.0.log", Time: Fri Mar  5 17:17:52 2021
[    34.318] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[    34.319] (==) No Layout section.  Using the first Screen section.
[    34.319] (==) No screen section available. Using defaults.
[    34.319] (**) |-->Screen "Default Screen Section" (0)
[    34.319] (**) |   |-->Monitor "<default monitor>"
[    34.319] (==) No device specified for screen "Default Screen Section".
	Using the first device section listed.
[    34.319] (**) |   |-->Device "DisplayLink"
[    34.320] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[    34.320] (==) Automatically adding devices
[    34.320] (==) Automatically enabling devices
[    34.320] (==) Automatically adding GPU devices
[    34.320] (==) Automatically binding GPU devices
[    34.320] (==) Max clients allowed: 256, resource mask: 0x1fffff
[    34.321] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/misc".
[    34.321] 	Entry deleted from font path.
[    34.321] 	(Run 'mkfontdir' on "/usr/share/fonts/misc").
[    34.321] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/TTF".
[    34.321] 	Entry deleted from font path.
[    34.321] 	(Run 'mkfontdir' on "/usr/share/fonts/TTF").
[    34.321] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/OTF".
[    34.321] 	Entry deleted from font path.
[    34.321] 	(Run 'mkfontdir' on "/usr/share/fonts/OTF").
[    34.321] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[    34.321] 	Entry deleted from font path.
[    34.321] (WW) The directory "/usr/share/fonts/100dpi" does not exist.
[    34.321] 	Entry deleted from font path.
[    34.321] (WW) The directory "/usr/share/fonts/75dpi" does not exist.
[    34.321] 	Entry deleted from font path.
[    34.321] (==) FontPath set to:
	
[    34.321] (==) ModulePath set to "/usr/lib/xorg/modules"
[    34.321] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[    34.321] (II) Module ABI versions:
[    34.321] 	X.Org ANSI C Emulation: 0.4
[    34.321] 	X.Org Video Driver: 24.1
[    34.321] 	X.Org XInput driver : 24.1
[    34.321] 	X.Org Server Extension : 10.0
[    34.321] (++) using VT number 1

[    34.321] (II) systemd-logind: logind integration requires -keeptty and -keeptty was not provided, disabling logind integration
[    34.322] (II) xfree86: Adding drm device (/dev/dri/card1)
[    34.928] (II) xfree86: Adding drm device (/dev/dri/card0)
[    34.953] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[    34.956] (--) PCI:*(0@0:2:0) 8086:9bc4:1028:097e rev 5, Mem @ 0x604a000000/16777216, 0x4000000000/268435456, I/O @ 0x00004000/64, BIOS @ 0x????????/131072
[    34.956] (--) PCI: (1@0:0:0) 10de:1fb8:1028:097e rev 161, Mem @ 0xb3000000/16777216, 0x70000000/268435456, 0x80000000/33554432, I/O @ 0x00003000/128
[    34.956] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[    34.956] (II) LoadModule: "glx"
[    34.957] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[    34.962] (II) Module glx: vendor="X.Org Foundation"
[    34.962] 	compiled for 1.20.10, module version = 1.0.0
[    34.962] 	ABI class: X.Org Server Extension, version 10.0
[    34.962] (II) LoadModule: "modesetting"
[    34.963] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[    34.964] (II) Module modesetting: vendor="X.Org Foundation"
[    34.964] 	compiled for 1.20.10, module version = 1.20.10
[    34.964] 	Module class: X.Org Video Driver
[    34.964] 	ABI class: X.Org Video Driver, version 24.1
[    34.964] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[    34.967] (II) modeset(0): using drv /dev/dri/card0
[    34.967] (II) modeset(G0): using drv /dev/dri/card1
[    34.967] (II) modeset(0): Creating default Display subsection in Screen section
	"Default Screen Section" for depth/fbbpp 24/32
[    34.967] (==) modeset(0): Depth 24, (==) framebuffer bpp 32
[    34.967] (**) modeset(0): Option "PageFlip" "false"
[    34.967] (==) modeset(0): RGB weight 888
[    34.967] (==) modeset(0): Default visual is TrueColor
[    34.967] (II) Loading sub module "glamoregl"
[    34.967] (II) LoadModule: "glamoregl"
[    34.967] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[    34.971] (II) Module glamoregl: vendor="X.Org Foundation"
[    34.971] 	compiled for 1.20.10, module version = 1.0.1
[    34.971] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    35.105] (II) modeset(0): glamor X acceleration enabled on Mesa Intel(R) UHD Graphics (CML GT2)
[    35.105] (II) modeset(0): glamor initialized
[    35.106] (II) modeset(0): Output eDP-1 has no monitor section
[    35.106] (II) modeset(0): Output DP-1 has no monitor section
[    35.106] (II) modeset(0): Output DP-2 has no monitor section
[    35.106] (II) modeset(0): Output DP-3 has no monitor section
[    35.108] (II) modeset(0): EDID for output eDP-1
[    35.108] (II) modeset(0): Manufacturer: SHP  Model: 14d0  Serial#: 0
[    35.108] (II) modeset(0): Year: 2020  Week: 3
[    35.108] (II) modeset(0): EDID Version: 1.4
[    35.108] (II) modeset(0): Digital Display Input
[    35.108] (II) modeset(0): 10 bits per channel
[    35.108] (II) modeset(0): Digital interface is DisplayPort
[    35.108] (II) modeset(0): Max Image Size [cm]: horiz.: 34  vert.: 21
[    35.108] (II) modeset(0): Gamma: 2.20
[    35.108] (II) modeset(0): No DPMS capabilities specified
[    35.108] (II) modeset(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
[    35.108] (II) modeset(0): First detailed timing is preferred mode
[    35.108] (II) modeset(0): Preferred mode is native pixel format and refresh rate
[    35.108] (II) modeset(0): redX: 0.660 redY: 0.327   greenX: 0.201 greenY: 0.730
[    35.108] (II) modeset(0): blueX: 0.145 blueY: 0.054   whiteX: 0.311 whiteY: 0.331
[    35.108] (II) modeset(0): Manufacturer's mask: 0
[    35.108] (II) modeset(0): Supported detailed timing:
[    35.108] (II) modeset(0): clock: 592.5 MHz   Image Size:  336 x 210 mm
[    35.108] (II) modeset(0): h_active: 3840  h_sync: 3888  h_sync_end 3920 h_blank_end 4000 h_border: 0
[    35.108] (II) modeset(0): v_active: 2400  v_sync: 2403  v_sync_end 2409 v_blanking: 2469 v_border: 0
[    35.108] (II) modeset(0): Supported detailed timing:
[    35.108] (II) modeset(0): clock: 474.0 MHz   Image Size:  336 x 210 mm
[    35.108] (II) modeset(0): h_active: 3840  h_sync: 3888  h_sync_end 3920 h_blank_end 4000 h_border: 0
[    35.108] (II) modeset(0): v_active: 2400  v_sync: 2403  v_sync_end 2409 v_blanking: 2469 v_border: 0
[    35.108] (II) modeset(0):  90T02LQ156R1
[    35.108] (II) modeset(0): Unknown vendor-specific block 0
[    35.108] (II) modeset(0): Number of EDID sections to follow: 1
[    35.108] (II) modeset(0): EDID (in hex):
[    35.108] (II) modeset(0): 	00ffffffffffff004d10d01400000000
[    35.108] (II) modeset(0): 	031e0104b52215780a383ba95333bb25
[    35.108] (II) modeset(0): 	0d4f5400000001010101010101010101
[    35.108] (II) modeset(0): 	01010101010172e700a0f06045903020
[    35.108] (II) modeset(0): 	360050d21000001828b900a0f0604590
[    35.108] (II) modeset(0): 	3020360050d210000018000000fe0039
[    35.108] (II) modeset(0): 	30543032814c51313536523100000000
[    35.108] (II) modeset(0): 	0002410332011200000b010a2020014f
[    35.108] (II) modeset(0): 	02030f00e3058000e606050160602800
[    35.108] (II) modeset(0): 	00000000000000000000000000000000
[    35.108] (II) modeset(0): 	00000000000000000000000000000000
[    35.108] (II) modeset(0): 	00000000000000000000000000000000
[    35.108] (II) modeset(0): 	00000000000000000000000000000000
[    35.108] (II) modeset(0): 	00000000000000000000000000000000
[    35.108] (II) modeset(0): 	00000000000000000000000000000000
[    35.108] (II) modeset(0): 	000000000000000000000000000000aa
[    35.108] (II) modeset(0): Printing probed modes for output eDP-1
[    35.108] (II) modeset(0): Modeline "3840x2400"x60.0  592.50  3840 3888 3920 4000  2400 2403 2409 2469 -hsync -vsync (148.1 kHz eP)
[    35.108] (II) modeset(0): Modeline "3840x2400"x48.0  474.00  3840 3888 3920 4000  2400 2403 2409 2469 -hsync -vsync (118.5 kHz e)
[    35.108] (II) modeset(0): Modeline "3840x2160"x120.0  1446.25  3840 4188 4616 5392  2160 2161 2164 2235 doublescan -hsync +vsync (268.2 kHz d)
[    35.108] (II) modeset(0): Modeline "3840x2160"x120.0  1044.88  3840 3864 3880 3920  2160 2161 2164 2221 doublescan +hsync -vsync (266.5 kHz d)
[    35.108] (II) modeset(0): Modeline "3840x2160"x60.0  712.75  3840 4160 4576 5312  2160 2163 2168 2237 -hsync +vsync (134.2 kHz d)
[    35.108] (II) modeset(0): Modeline "3840x2160"x60.0  533.00  3840 3888 3920 4000  2160 2163 2168 2222 +hsync -vsync (133.2 kHz d)
[    35.108] (II) modeset(0): Modeline "3200x1800"x60.0  492.00  3200 3456 3800 4400  1800 1803 1808 1865 -hsync +vsync (111.8 kHz d)
[    35.108] (II) modeset(0): Modeline "3200x1800"x59.9  373.00  3200 3248 3280 3360  1800 1803 1808 1852 +hsync -vsync (111.0 kHz d)
[    35.108] (II) modeset(0): Modeline "2880x1620"x60.0  396.25  2880 3096 3408 3936  1620 1623 1628 1679 -hsync +vsync (100.7 kHz d)
[    35.108] (II) modeset(0): Modeline "2880x1620"x60.0  303.75  2880 2928 2960 3040  1620 1623 1628 1666 +hsync -vsync (99.9 kHz d)
[    35.108] (II) modeset(0): Modeline "2560x1600"x60.0  348.50  2560 2760 3032 3504  1600 1603 1609 1658 -hsync +vsync (99.5 kHz d)
[    35.108] (II) modeset(0): Modeline "2560x1600"x60.0  268.50  2560 2608 2640 2720  1600 1603 1609 1646 +hsync -vsync (98.7 kHz d)
[    35.108] (II) modeset(0): Modeline "2560x1440"x120.0  638.25  2560 2780 3064 3568  1440 1441 1444 1491 doublescan -hsync +vsync (178.9 kHz d)
[    35.108] (II) modeset(0): Modeline "2560x1440"x120.0  469.12  2560 2584 2600 2640  1440 1441 1444 1481 doublescan +hsync -vsync (177.7 kHz d)
[    35.108] (II) modeset(0): Modeline "2560x1440"x60.0  312.25  2560 2752 3024 3488  1440 1443 1448 1493 -hsync +vsync (89.5 kHz d)
[    35.108] (II) modeset(0): Modeline "2560x1440"x60.0  241.50  2560 2608 2640 2720  1440 1443 1448 1481 +hsync -vsync (88.8 kHz d)
[    35.108] (II) modeset(0): Modeline "2048x1536"x60.0  266.95  2048 2200 2424 2800  1536 1537 1540 1589 -hsync +vsync (95.3 kHz d)
[    35.108] (II) modeset(0): Modeline "1920x1440"x60.0  234.00  1920 2048 2256 2600  1440 1441 1444 1500 -hsync +vsync (90.0 kHz d)
[    35.108] (II) modeset(0): Modeline "1856x1392"x60.0  218.30  1856 1952 2176 2528  1392 1393 1396 1439 -hsync +vsync (86.4 kHz d)
[    35.108] (II) modeset(0): Modeline "1792x1344"x60.0  204.80  1792 1920 2120 2448  1344 1345 1348 1394 -hsync +vsync (83.7 kHz d)
[    35.108] (II) modeset(0): Modeline "2048x1152"x120.0  406.50  2048 2220 2444 2840  1152 1153 1156 1193 doublescan -hsync +vsync (143.1 kHz d)
[    35.108] (II) modeset(0): Modeline "2048x1152"x120.0  302.50  2048 2072 2088 2128  1152 1153 1156 1185 doublescan +hsync -vsync (142.2 kHz d)
[    35.108] (II) modeset(0): Modeline "2048x1152"x59.9  197.00  2048 2184 2400 2752  1152 1155 1160 1195 -hsync +vsync (71.6 kHz d)
[    35.108] (II) modeset(0): Modeline "2048x1152"x59.9  156.75  2048 2096 2128 2208  1152 1155 1160 1185 +hsync -vsync (71.0 kHz d)
[    35.108] (II) modeset(0): Modeline "1920x1200"x59.9  193.25  1920 2056 2256 2592  1200 1203 1209 1245 -hsync +vsync (74.6 kHz d)
[    35.108] (II) modeset(0): Modeline "1920x1200"x60.0  154.00  1920 1968 2000 2080  1200 1203 1209 1235 +hsync -vsync (74.0 kHz d)
[    35.108] (II) modeset(0): Modeline "1920x1080"x120.0  356.38  1920 2080 2288 2656  1080 1081 1084 1118 doublescan -hsync +vsync (134.2 kHz d)
[    35.108] (II) modeset(0): Modeline "1920x1080"x119.9  266.50  1920 1944 1960 2000  1080 1081 1084 1111 doublescan +hsync -vsync (133.2 kHz d)
[    35.108] (II) modeset(0): Modeline "1920x1080"x60.0  173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync (67.2 kHz d)
[    35.108] (II) modeset(0): Modeline "1920x1080"x59.9  138.50  1920 1968 2000 2080  1080 1083 1088 1111 +hsync -vsync (66.6 kHz d)
[    35.108] (II) modeset(0): Modeline "1600x1200"x60.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz d)
[    35.108] (II) modeset(0): Modeline "1680x1050"x60.0  146.25  1680 1784 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz d)
[    35.108] (II) modeset(0): Modeline "1680x1050"x59.9  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz d)
[    35.108] (II) modeset(0): Modeline "1400x1050"x60.0  122.00  1400 1488 1640 1880  1050 1052 1064 1082 +hsync +vsync (64.9 kHz d)
[    35.108] (II) modeset(0): Modeline "1600x900"x120.0  246.00  1600 1728 1900 2200  900 901 904 932 doublescan -hsync +vsync (111.8 kHz d)
[    35.108] (II) modeset(0): Modeline "1600x900"x119.9  186.50  1600 1624 1640 1680  900 901 904 926 doublescan +hsync -vsync (111.0 kHz d)
[    35.108] (II) modeset(0): Modeline "1600x900"x59.9  118.25  1600 1696 1856 2112  900 903 908 934 -hsync +vsync (56.0 kHz d)
[    35.108] (II) modeset(0): Modeline "1600x900"x59.8   97.50  1600 1648 1680 1760  900 903 908 926 +hsync -vsync (55.4 kHz d)
[    35.108] (II) modeset(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz d)
[    35.108] (II) modeset(0): Modeline "1400x900"x60.0  103.50  1400 1480 1624 1848  900 903 913 934 -hsync +vsync (56.0 kHz d)
[    35.108] (II) modeset(0): Modeline "1400x900"x59.9   86.50  1400 1448 1480 1560  900 903 913 926 +hsync -vsync (55.4 kHz d)
[    35.108] (II) modeset(0): Modeline "1280x960"x60.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz d)
[    35.108] (II) modeset(0): Modeline "1440x810"x120.0  198.12  1440 1548 1704 1968  810 811 814 839 doublescan -hsync +vsync (100.7 kHz d)
[    35.108] (II) modeset(0): Modeline "1440x810"x119.9  151.88  1440 1464 1480 1520  810 811 814 833 doublescan +hsync -vsync (99.9 kHz d)
[    35.108] (II) modeset(0): Modeline "1368x768"x59.9   85.25  1368 1440 1576 1784  768 771 781 798 -hsync +vsync (47.8 kHz d)
[    35.108] (II) modeset(0): Modeline "1368x768"x59.9   72.25  1368 1416 1448 1528  768 771 781 790 +hsync -vsync (47.3 kHz d)
[    35.108] (II) modeset(0): Modeline "1280x800"x120.0  174.25  1280 1380 1516 1752  800 801 804 829 doublescan -hsync +vsync (99.5 kHz d)
[    35.108] (II) modeset(0): Modeline "1280x800"x119.9  134.25  1280 1304 1320 1360  800 801 804 823 doublescan +hsync -vsync (98.7 kHz d)
[    35.108] (II) modeset(0): Modeline "1280x800"x59.8   83.50  1280 1352 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz d)
[    35.108] (II) modeset(0): Modeline "1280x800"x59.9   71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz d)
[    35.108] (II) modeset(0): Modeline "1280x720"x120.0  156.12  1280 1376 1512 1744  720 721 724 746 doublescan -hsync +vsync (89.5 kHz d)
[    35.108] (II) modeset(0): Modeline "1280x720"x120.0  120.75  1280 1304 1320 1360  720 721 724 740 doublescan +hsync -vsync (88.8 kHz d)
[    35.108] (II) modeset(0): Modeline "1280x720"x59.9   74.50  1280 1344 1472 1664  720 723 728 748 -hsync +vsync (44.8 kHz d)
[    35.108] (II) modeset(0): Modeline "1280x720"x59.7   63.75  1280 1328 1360 1440  720 723 728 741 +hsync -vsync (44.3 kHz d)
[    35.108] (II) modeset(0): Modeline "1024x768"x120.1  133.47  1024 1100 1212 1400  768 768 770 794 doublescan -hsync +vsync (95.3 kHz d)
[    35.108] (II) modeset(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz d)
[    35.108] (II) modeset(0): Modeline "960x720"x120.0  117.00  960 1024 1128 1300  720 720 722 750 doublescan -hsync +vsync (90.0 kHz d)
[    35.108] (II) modeset(0): Modeline "928x696"x120.1  109.15  928 976 1088 1264  696 696 698 719 doublescan -hsync +vsync (86.4 kHz d)
[    35.108] (II) modeset(0): Modeline "896x672"x120.0  102.40  896 960 1060 1224  672 672 674 697 doublescan -hsync +vsync (83.7 kHz d)
[    35.108] (II) modeset(0): Modeline "1024x576"x119.9   98.50  1024 1092 1200 1376  576 577 580 597 doublescan -hsync +vsync (71.6 kHz d)
[    35.108] (II) modeset(0): Modeline "1024x576"x119.9   78.38  1024 1048 1064 1104  576 577 580 592 doublescan +hsync -vsync (71.0 kHz d)
[    35.108] (II) modeset(0): Modeline "1024x576"x59.9   46.50  1024 1064 1160 1296  576 579 584 599 -hsync +vsync (35.9 kHz d)
[    35.108] (II) modeset(0): Modeline "1024x576"x59.8   42.00  1024 1072 1104 1184  576 579 584 593 +hsync -vsync (35.5 kHz d)
[    35.108] (II) modeset(0): Modeline "960x600"x119.9   96.62  960 1028 1128 1296  600 601 604 622 doublescan -hsync +vsync (74.6 kHz d)
[    35.108] (II) modeset(0): Modeline "960x600"x120.0   77.00  960 984 1000 1040  600 601 604 617 doublescan +hsync -vsync (74.0 kHz d)
[    35.108] (II) modeset(0): Modeline "960x540"x119.9   86.50  960 1024 1124 1288  540 541 544 560 doublescan -hsync +vsync (67.2 kHz d)
[    35.108] (II) modeset(0): Modeline "960x540"x120.0   69.25  960 984 1000 1040  540 541 544 555 doublescan +hsync -vsync (66.6 kHz d)
[    35.108] (II) modeset(0): Modeline "960x540"x59.6   40.75  960 992 1088 1216  540 543 548 562 -hsync +vsync (33.5 kHz d)
[    35.108] (II) modeset(0): Modeline "960x540"x59.8   37.25  960 1008 1040 1120  540 543 548 556 +hsync -vsync (33.3 kHz d)
[    35.108] (II) modeset(0): Modeline "800x600"x120.0   81.00  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync (75.0 kHz d)
[    35.108] (II) modeset(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz d)
[    35.108] (II) modeset(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz d)
[    35.108] (II) modeset(0): Modeline "840x525"x120.0   73.12  840 892 980 1120  525 526 529 544 doublescan -hsync +vsync (65.3 kHz d)
[    35.108] (II) modeset(0): Modeline "840x525"x119.8   59.50  840 864 880 920  525 526 529 540 doublescan +hsync -vsync (64.7 kHz d)
[    35.108] (II) modeset(0): Modeline "864x486"x59.9   32.50  864 888 968 1072  486 489 494 506 -hsync +vsync (30.3 kHz d)
[    35.108] (II) modeset(0): Modeline "864x486"x59.6   30.50  864 912 944 1024  486 489 494 500 +hsync -vsync (29.8 kHz d)
[    35.108] (II) modeset(0): Modeline "700x525"x120.0   61.00  700 744 820 940  525 526 532 541 doublescan +hsync +vsync (64.9 kHz d)
[    35.108] (II) modeset(0): Modeline "800x450"x119.9   59.12  800 848 928 1056  450 451 454 467 doublescan -hsync +vsync (56.0 kHz d)
[    35.108] (II) modeset(0): Modeline "800x450"x119.6   48.75  800 824 840 880  450 451 454 463 doublescan +hsync -vsync (55.4 kHz d)
[    35.108] (II) modeset(0): Modeline "640x512"x120.0   54.00  640 664 720 844  512 512 514 533 doublescan +hsync +vsync (64.0 kHz d)
[    35.108] (II) modeset(0): Modeline "700x450"x119.9   51.75  700 740 812 924  450 451 456 467 doublescan -hsync +vsync (56.0 kHz d)
[    35.108] (II) modeset(0): Modeline "700x450"x119.8   43.25  700 724 740 780  450 451 456 463 doublescan +hsync -vsync (55.4 kHz d)
[    35.108] (II) modeset(0): Modeline "640x480"x120.0   54.00  640 688 744 900  480 480 482 500 doublescan +hsync +vsync (60.0 kHz d)
[    35.108] (II) modeset(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz d)
[    35.108] (II) modeset(0): Modeline "720x405"x59.5   22.50  720 744 808 896  405 408 413 422 -hsync +vsync (25.1 kHz d)
[    35.108] (II) modeset(0): Modeline "720x405"x59.0   21.75  720 768 800 880  405 408 413 419 +hsync -vsync (24.7 kHz d)
[    35.108] (II) modeset(0): Modeline "684x384"x119.8   42.62  684 720 788 892  384 385 390 399 doublescan -hsync +vsync (47.8 kHz d)
[    35.108] (II) modeset(0): Modeline "684x384"x119.7   36.12  684 708 724 764  384 385 390 395 doublescan +hsync -vsync (47.3 kHz d)
[    35.108] (II) modeset(0): Modeline "640x400"x119.8   41.75  640 676 740 840  400 401 404 415 doublescan -hsync +vsync (49.7 kHz d)
[    35.108] (II) modeset(0): Modeline "640x400"x120.0   35.50  640 664 680 720  400 401 404 411 doublescan +hsync -vsync (49.3 kHz d)
[    35.108] (II) modeset(0): Modeline "640x360"x119.7   37.25  640 672 736 832  360 361 364 374 doublescan -hsync +vsync (44.8 kHz d)
[    35.108] (II) modeset(0): Modeline "640x360"x119.7   31.88  640 664 680 720  360 361 364 370 doublescan +hsync -vsync (44.3 kHz d)
[    35.108] (II) modeset(0): Modeline "640x360"x59.8   18.00  640 664 720 800  360 363 368 376 -hsync +vsync (22.5 kHz d)
[    35.108] (II) modeset(0): Modeline "640x360"x59.3   17.75  640 688 720 800  360 363 368 374 +hsync -vsync (22.2 kHz d)
[    35.108] (II) modeset(0): Modeline "512x384"x120.0   32.50  512 524 592 672  384 385 388 403 doublescan -hsync -vsync (48.4 kHz d)
[    35.108] (II) modeset(0): Modeline "512x288"x120.0   23.25  512 532 580 648  288 289 292 299 doublescan -hsync +vsync (35.9 kHz d)
[    35.108] (II) modeset(0): Modeline "512x288"x119.8   21.00  512 536 552 592  288 289 292 296 doublescan +hsync -vsync (35.5 kHz d)
[    35.108] (II) modeset(0): Modeline "480x270"x119.3   20.38  480 496 544 608  270 271 274 281 doublescan -hsync +vsync (33.5 kHz d)
[    35.108] (II) modeset(0): Modeline "480x270"x119.6   18.62  480 504 520 560  270 271 274 278 doublescan +hsync -vsync (33.3 kHz d)
[    35.108] (II) modeset(0): Modeline "400x300"x120.6   20.00  400 420 484 528  300 300 302 314 doublescan +hsync +vsync (37.9 kHz d)
[    35.108] (II) modeset(0): Modeline "400x300"x112.7   18.00  400 412 448 512  300 300 301 312 doublescan +hsync +vsync (35.2 kHz d)
[    35.108] (II) modeset(0): Modeline "432x243"x119.8   16.25  432 444 484 536  243 244 247 253 doublescan -hsync +vsync (30.3 kHz d)
[    35.108] (II) modeset(0): Modeline "432x243"x119.1   15.25  432 456 472 512  243 244 247 250 doublescan +hsync -vsync (29.8 kHz d)
[    35.108] (II) modeset(0): Modeline "320x240"x120.1   12.59  320 328 376 400  240 245 246 262 doublescan -hsync -vsync (31.5 kHz d)
[    35.108] (II) modeset(0): Modeline "360x202"x119.0   11.25  360 372 404 448  202 204 206 211 doublescan -hsync +vsync (25.1 kHz d)
[    35.108] (II) modeset(0): Modeline "360x202"x118.3   10.88  360 384 400 440  202 204 206 209 doublescan +hsync -vsync (24.7 kHz d)
[    35.108] (II) modeset(0): Modeline "320x180"x119.7    9.00  320 332 360 400  180 181 184 188 doublescan -hsync +vsync (22.5 kHz d)
[    35.108] (II) modeset(0): Modeline "320x180"x118.6    8.88  320 344 360 400  180 181 184 187 doublescan +hsync -vsync (22.2 kHz d)
[    35.108] (II) modeset(0): EDID for output DP-1
[    35.108] (II) modeset(0): EDID for output DP-2
[    35.108] (II) modeset(0): EDID for output DP-3
[    35.108] (II) modeset(0): Output eDP-1 connected
[    35.108] (II) modeset(0): Output DP-1 disconnected
[    35.108] (II) modeset(0): Output DP-2 disconnected
[    35.108] (II) modeset(0): Output DP-3 disconnected
[    35.108] (II) modeset(0): Using exact sizes for initial modes
[    35.108] (II) modeset(0): Output eDP-1 using initial mode 3840x2400 +0+0
[    35.108] (==) modeset(0): Using gamma correction (1.0, 1.0, 1.0)
[    35.108] (==) modeset(0): DPI set to (96, 96)
[    35.108] (II) Loading sub module "fb"
[    35.108] (II) LoadModule: "fb"
[    35.108] (II) Loading /usr/lib/xorg/modules/libfb.so
[    35.109] (II) Module fb: vendor="X.Org Foundation"
[    35.109] 	compiled for 1.20.10, module version = 1.0.0
[    35.109] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    35.109] (II) modeset(G0): Using 24bpp hw front buffer with 32bpp shadow
[    35.109] (==) modeset(G0): Depth 24, (==) framebuffer bpp 32
[    35.109] (II) Applying OutputClass "nvidia" options to /dev/dri/card1
[    35.109] (==) modeset(G0): RGB weight 888
[    35.109] (==) modeset(G0): Default visual is TrueColor
[    35.109] (**) modeset(G0): Cannot use glamor with 24bpp packed fb
[    35.109] (II) modeset(G0): ShadowFB: preferred YES, enabled FORCE
[    35.109] (II) modeset(G0): Double-buffered shadow updates: off
[    35.109] (==) modeset(G0): Using gamma correction (1.0, 1.0, 1.0)
[    35.109] (==) modeset(G0): DPI set to (96, 96)
[    35.109] (II) Loading sub module "fb"
[    35.109] (II) LoadModule: "fb"
[    35.109] (II) Loading /usr/lib/xorg/modules/libfb.so
[    35.109] (II) Module fb: vendor="X.Org Foundation"
[    35.109] 	compiled for 1.20.10, module version = 1.0.0
[    35.109] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    35.109] (II) Loading sub module "shadow"
[    35.109] (II) LoadModule: "shadow"
[    35.109] (II) Loading /usr/lib/xorg/modules/libshadow.so
[    35.110] (II) Module shadow: vendor="X.Org Foundation"
[    35.110] 	compiled for 1.20.10, module version = 1.1.0
[    35.110] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    35.125] (==) modeset(0): Backing store enabled
[    35.125] (==) modeset(0): Silken mouse disabled
[    35.201] (II) modeset(0): Initializing kms color map for depth 24, 8 bpc.
[    35.201] (==) modeset(0): DPMS enabled
[    35.201] (II) modeset(0): [DRI2] Setup complete
[    35.201] (II) modeset(0): [DRI2]   DRI driver: iris
[    35.201] (II) modeset(0): [DRI2]   VDPAU driver: va_gl
[    35.203] (==) modeset(G0): Backing store enabled
[    35.203] (==) modeset(G0): Silken mouse disabled
[    35.203] (II) modeset(G0): Initializing kms color map for depth 24, 8 bpc.
[    35.203] (==) modeset(G0): DPMS enabled
[    35.203] (WW) modeset(G0): Option "AllowEmptyInitialConfiguration" is not used
[    35.203] (II) Initializing extension Generic Event Extension
[    35.204] (II) Initializing extension SHAPE
[    35.204] (II) Initializing extension MIT-SHM
[    35.204] (II) Initializing extension XInputExtension
[    35.204] (II) Initializing extension XTEST
[    35.205] (II) Initializing extension BIG-REQUESTS
[    35.205] (II) Initializing extension SYNC
[    35.205] (II) Initializing extension XKEYBOARD
[    35.205] (II) Initializing extension XC-MISC
[    35.206] (II) Initializing extension SECURITY
[    35.206] (II) Initializing extension XFIXES
[    35.206] (II) Initializing extension RENDER
[    35.206] (II) Initializing extension RANDR
[    35.207] (II) Initializing extension COMPOSITE
[    35.207] (II) Initializing extension DAMAGE
[    35.207] (II) Initializing extension MIT-SCREEN-SAVER
[    35.207] (II) Initializing extension DOUBLE-BUFFER
[    35.208] (II) Initializing extension RECORD
[    35.208] (II) Initializing extension DPMS
[    35.208] (II) Initializing extension Present
[    35.208] (II) Initializing extension DRI3
[    35.209] (II) Initializing extension X-Resource
[    35.209] (II) Initializing extension XVideo
[    35.209] (II) Initializing extension XVideo-MotionCompensation
[    35.209] (II) Initializing extension GLX
[    35.227] (II) AIGLX: Loaded and initialized iris
[    35.227] (II) GLX: Initialized DRI2 GL provider for screen 0
[    35.227] (II) Initializing extension XFree86-VidModeExtension
[    35.227] (II) Initializing extension XFree86-DGA
[    35.227] (II) Initializing extension XFree86-DRI
[    35.227] (II) Initializing extension DRI2
[    35.228] (II) modeset(G0): Damage tracking initialized
[    35.235] (II) modeset(0): Damage tracking initialized
[    35.235] (II) modeset(0): Setting screen physical size to 1016 x 635
[    35.271] (II) config/udev: Adding input device Video Bus (/dev/input/event18)
[    35.271] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[    35.271] (II) LoadModule: "libinput"
[    35.271] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[    35.274] (II) Module libinput: vendor="X.Org Foundation"
[    35.274] 	compiled for 1.20.8, module version = 0.30.0
[    35.274] 	Module class: X.Org XInput Driver
[    35.274] 	ABI class: X.Org XInput driver, version 24.1
[    35.274] (II) Using input driver 'libinput' for 'Video Bus'
[    35.274] (**) Video Bus: always reports core events
[    35.274] (**) Option "Device" "/dev/input/event18"
[    35.274] (**) Option "_source" "server/udev"
[    35.278] (II) event18 - Video Bus: is tagged by udev as: Keyboard
[    35.278] (II) event18 - Video Bus: device is a keyboard
[    35.278] (II) event18 - Video Bus: device removed
[    35.356] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input47/event18"
[    35.356] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 6)
[    35.358] (II) event18 - Video Bus: is tagged by udev as: Keyboard
[    35.358] (II) event18 - Video Bus: device is a keyboard
[    35.359] (II) config/udev: Adding input device Video Bus (/dev/input/event17)
[    35.359] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[    35.359] (II) Using input driver 'libinput' for 'Video Bus'
[    35.359] (**) Video Bus: always reports core events
[    35.359] (**) Option "Device" "/dev/input/event17"
[    35.359] (**) Option "_source" "server/udev"
[    35.360] (II) event17 - Video Bus: is tagged by udev as: Keyboard
[    35.360] (II) event17 - Video Bus: device is a keyboard
[    35.361] (II) event17 - Video Bus: device removed
[    35.423] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/LNXVIDEO:00/input/input46/event17"
[    35.423] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
[    35.424] (II) event17 - Video Bus: is tagged by udev as: Keyboard
[    35.425] (II) event17 - Video Bus: device is a keyboard
[    35.426] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[    35.426] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[    35.426] (II) Using input driver 'libinput' for 'Power Button'
[    35.426] (**) Power Button: always reports core events
[    35.426] (**) Option "Device" "/dev/input/event1"
[    35.426] (**) Option "_source" "server/udev"
[    35.426] (II) event1  - Power Button: is tagged by udev as: Keyboard
[    35.426] (II) event1  - Power Button: device is a keyboard
[    35.426] (II) event1  - Power Button: device removed
[    35.459] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1/event1"
[    35.459] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
[    35.461] (II) event1  - Power Button: is tagged by udev as: Keyboard
[    35.461] (II) event1  - Power Button: device is a keyboard
[    35.462] (II) config/udev: Adding input device Lid Switch (/dev/input/event0)
[    35.462] (II) No input driver specified, ignoring this device.
[    35.462] (II) This device may have been added with another device file.
[    35.464] (II) config/udev: Adding input device Integrated_Webcam_HD: Integrate (/dev/input/event9)
[    35.464] (**) Integrated_Webcam_HD: Integrate: Applying InputClass "libinput keyboard catchall"
[    35.464] (II) Using input driver 'libinput' for 'Integrated_Webcam_HD: Integrate'
[    35.464] (**) Integrated_Webcam_HD: Integrate: always reports core events
[    35.464] (**) Option "Device" "/dev/input/event9"
[    35.464] (**) Option "_source" "server/udev"
[    35.466] (II) event9  - Integrated_Webcam_HD: Integrate: is tagged by udev as: Keyboard
[    35.466] (II) event9  - Integrated_Webcam_HD: Integrate: device is a keyboard
[    35.466] (II) event9  - Integrated_Webcam_HD: Integrate: device removed
[    35.546] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-11/1-11:1.0/input/input35/event9"
[    35.546] (II) XINPUT: Adding extended input device "Integrated_Webcam_HD: Integrate" (type: KEYBOARD, id 9)
[    35.548] (II) event9  - Integrated_Webcam_HD: Integrate: is tagged by udev as: Keyboard
[    35.548] (II) event9  - Integrated_Webcam_HD: Integrate: device is a keyboard
[    35.550] (II) config/udev: Adding input device Integrated_Webcam_HD: Integrate (/dev/input/event10)
[    35.550] (**) Integrated_Webcam_HD: Integrate: Applying InputClass "libinput keyboard catchall"
[    35.550] (II) Using input driver 'libinput' for 'Integrated_Webcam_HD: Integrate'
[    35.550] (**) Integrated_Webcam_HD: Integrate: always reports core events
[    35.550] (**) Option "Device" "/dev/input/event10"
[    35.550] (**) Option "_source" "server/udev"
[    35.552] (II) event10 - Integrated_Webcam_HD: Integrate: is tagged by udev as: Keyboard
[    35.552] (II) event10 - Integrated_Webcam_HD: Integrate: device is a keyboard
[    35.552] (II) event10 - Integrated_Webcam_HD: Integrate: device removed
[    35.603] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-11/1-11:1.2/input/input36/event10"
[    35.603] (II) XINPUT: Adding extended input device "Integrated_Webcam_HD: Integrate" (type: KEYBOARD, id 10)
[    35.603] (II) event10 - Integrated_Webcam_HD: Integrate: is tagged by udev as: Keyboard
[    35.603] (II) event10 - Integrated_Webcam_HD: Integrate: device is a keyboard
[    35.604] (II) config/udev: Adding input device Logitech Performance MX (/dev/input/event4)
[    35.604] (**) Logitech Performance MX: Applying InputClass "libinput pointer catchall"
[    35.604] (II) Using input driver 'libinput' for 'Logitech Performance MX'
[    35.604] (**) Logitech Performance MX: always reports core events
[    35.604] (**) Option "Device" "/dev/input/event4"
[    35.604] (**) Option "_source" "server/udev"
[    35.605] (II) event4  - Logitech Performance MX: is tagged by udev as: Mouse
[    35.605] (II) event4  - Logitech Performance MX: device set to 1000 DPI
[    35.605] (II) event4  - Logitech Performance MX: device is a pointer
[    35.605] (II) event4  - Logitech Performance MX: device removed
[    35.689] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:101A.0005/input/input30/event4"
[    35.689] (II) XINPUT: Adding extended input device "Logitech Performance MX" (type: MOUSE, id 11)
[    35.689] (**) Option "AccelerationScheme" "none"
[    35.690] (**) Logitech Performance MX: (accel) selected scheme none/0
[    35.690] (**) Logitech Performance MX: (accel) acceleration factor: 2.000
[    35.690] (**) Logitech Performance MX: (accel) acceleration threshold: 4
[    35.692] (II) event4  - Logitech Performance MX: is tagged by udev as: Mouse
[    35.692] (II) event4  - Logitech Performance MX: device set to 1000 DPI
[    35.692] (II) event4  - Logitech Performance MX: device is a pointer
[    35.694] (II) config/udev: Adding input device Logitech Performance MX (/dev/input/mouse0)
[    35.694] (II) No input driver specified, ignoring this device.
[    35.694] (II) This device may have been added with another device file.
[    35.695] (II) config/udev: Adding input device Logitech K350 (/dev/input/event6)
[    35.695] (**) Logitech K350: Applying InputClass "libinput keyboard catchall"
[    35.695] (II) Using input driver 'libinput' for 'Logitech K350'
[    35.695] (**) Logitech K350: always reports core events
[    35.695] (**) Option "Device" "/dev/input/event6"
[    35.695] (**) Option "_source" "server/udev"
[    35.697] (II) event6  - Logitech K350: is tagged by udev as: Keyboard
[    35.697] (II) event6  - Logitech K350: device is a keyboard
[    35.698] (II) event6  - Logitech K350: device removed
[    35.729] (II) libinput: Logitech K350: needs a virtual subdevice
[    35.729] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:200A.0007/input/input32/event6"
[    35.729] (II) XINPUT: Adding extended input device "Logitech K350" (type: MOUSE, id 12)
[    35.729] (**) Option "AccelerationScheme" "none"
[    35.730] (**) Logitech K350: (accel) selected scheme none/0
[    35.730] (**) Logitech K350: (accel) acceleration factor: 2.000
[    35.730] (**) Logitech K350: (accel) acceleration threshold: 4
[    35.732] (II) event6  - Logitech K350: is tagged by udev as: Keyboard
[    35.732] (II) event6  - Logitech K350: device is a keyboard
[    35.734] (II) config/udev: Adding input device Logitech K800 (/dev/input/event3)
[    35.734] (**) Logitech K800: Applying InputClass "libinput keyboard catchall"
[    35.734] (II) Using input driver 'libinput' for 'Logitech K800'
[    35.734] (**) Logitech K800: always reports core events
[    35.734] (**) Option "Device" "/dev/input/event3"
[    35.734] (**) Option "_source" "server/udev"
[    35.736] (II) event3  - Logitech K800: is tagged by udev as: Keyboard
[    35.736] (II) event3  - Logitech K800: device is a keyboard
[    35.736] (II) event3  - Logitech K800: device removed
[    35.769] (II) libinput: Logitech K800: needs a virtual subdevice
[    35.769] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:2010.0004/input/input29/event3"
[    35.769] (II) XINPUT: Adding extended input device "Logitech K800" (type: MOUSE, id 13)
[    35.769] (**) Option "AccelerationScheme" "none"
[    35.769] (**) Logitech K800: (accel) selected scheme none/0
[    35.769] (**) Logitech K800: (accel) acceleration factor: 2.000
[    35.770] (**) Logitech K800: (accel) acceleration threshold: 4
[    35.772] (II) event3  - Logitech K800: is tagged by udev as: Keyboard
[    35.772] (II) event3  - Logitech K800: device is a keyboard
[    35.774] (II) config/udev: Adding input device Logitech M705 (/dev/input/event5)
[    35.774] (**) Logitech M705: Applying InputClass "libinput pointer catchall"
[    35.774] (II) Using input driver 'libinput' for 'Logitech M705'
[    35.774] (**) Logitech M705: always reports core events
[    35.774] (**) Option "Device" "/dev/input/event5"
[    35.774] (**) Option "_source" "server/udev"
[    35.776] (II) event5  - Logitech M705: is tagged by udev as: Mouse
[    35.776] (II) event5  - Logitech M705: device set to 1000 DPI
[    35.776] (II) event5  - Logitech M705: device is a pointer
[    35.776] (II) event5  - Logitech M705: device removed
[    35.836] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:406D.0006/input/input31/event5"
[    35.836] (II) XINPUT: Adding extended input device "Logitech M705" (type: MOUSE, id 14)
[    35.836] (**) Option "AccelerationScheme" "none"
[    35.836] (**) Logitech M705: (accel) selected scheme none/0
[    35.836] (**) Logitech M705: (accel) acceleration factor: 2.000
[    35.836] (**) Logitech M705: (accel) acceleration threshold: 4
[    35.839] (II) event5  - Logitech M705: is tagged by udev as: Mouse
[    35.839] (II) event5  - Logitech M705: device set to 1000 DPI
[    35.839] (II) event5  - Logitech M705: device is a pointer
[    35.840] (II) config/udev: Adding input device Logitech M705 (/dev/input/mouse1)
[    35.840] (II) No input driver specified, ignoring this device.
[    35.840] (II) This device may have been added with another device file.
[    35.842] (II) config/udev: Adding input device ELAN29E2:00 04F3:29E2 (/dev/input/event11)
[    35.842] (**) ELAN29E2:00 04F3:29E2: Applying InputClass "libinput touchscreen catchall"
[    35.842] (II) Using input driver 'libinput' for 'ELAN29E2:00 04F3:29E2'
[    35.842] (**) ELAN29E2:00 04F3:29E2: always reports core events
[    35.842] (**) Option "Device" "/dev/input/event11"
[    35.842] (**) Option "_source" "server/udev"
[    35.844] (II) event11 - ELAN29E2:00 04F3:29E2: is tagged by udev as: Touchscreen
[    35.844] (II) event11 - ELAN29E2:00 04F3:29E2: device is a touch device
[    35.844] (II) event11 - ELAN29E2:00 04F3:29E2: device removed
[    35.929] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-ELAN29E2:00/0018:04F3:29E2.0008/input/input49/event11"
[    35.929] (II) XINPUT: Adding extended input device "ELAN29E2:00 04F3:29E2" (type: TOUCHSCREEN, id 15)
[    35.929] (**) Option "AccelerationScheme" "none"
[    35.929] (**) ELAN29E2:00 04F3:29E2: (accel) selected scheme none/0
[    35.929] (**) ELAN29E2:00 04F3:29E2: (accel) acceleration factor: 2.000
[    35.929] (**) ELAN29E2:00 04F3:29E2: (accel) acceleration threshold: 4
[    35.932] (II) event11 - ELAN29E2:00 04F3:29E2: is tagged by udev as: Touchscreen
[    35.932] (II) event11 - ELAN29E2:00 04F3:29E2: device is a touch device
[    35.933] (II) config/udev: Adding input device ELAN29E2:00 04F3:29E2 (/dev/input/mouse2)
[    35.933] (II) No input driver specified, ignoring this device.
[    35.933] (II) This device may have been added with another device file.
[    35.934] (II) config/udev: Adding input device ELAN29E2:00 04F3:29E2 UNKNOWN (/dev/input/event12)
[    35.934] (II) No input driver specified, ignoring this device.
[    35.934] (II) This device may have been added with another device file.
[    35.935] (II) config/udev: Adding input device ELAN29E2:00 04F3:29E2 UNKNOWN (/dev/input/event13)
[    35.935] (II) No input driver specified, ignoring this device.
[    35.935] (II) This device may have been added with another device file.
[    35.936] (II) config/udev: Adding input device DELL097E:00 04F3:311C Mouse (/dev/input/event14)
[    35.936] (**) DELL097E:00 04F3:311C Mouse: Applying InputClass "libinput pointer catchall"
[    35.936] (II) Using input driver 'libinput' for 'DELL097E:00 04F3:311C Mouse'
[    35.936] (**) DELL097E:00 04F3:311C Mouse: always reports core events
[    35.936] (**) Option "Device" "/dev/input/event14"
[    35.936] (**) Option "_source" "server/udev"
[    35.938] (II) event14 - DELL097E:00 04F3:311C Mouse: is tagged by udev as: Mouse Pointingstick
[    35.939] (II) event14 - DELL097E:00 04F3:311C Mouse: device is a pointer
[    35.940] (II) event14 - DELL097E:00 04F3:311C Mouse: device removed
[    36.009] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-DELL097E:00/0018:04F3:311C.0009/input/input53/event14"
[    36.009] (II) XINPUT: Adding extended input device "DELL097E:00 04F3:311C Mouse" (type: MOUSE, id 16)
[    36.009] (**) Option "AccelerationScheme" "none"
[    36.010] (**) DELL097E:00 04F3:311C Mouse: (accel) selected scheme none/0
[    36.010] (**) DELL097E:00 04F3:311C Mouse: (accel) acceleration factor: 2.000
[    36.010] (**) DELL097E:00 04F3:311C Mouse: (accel) acceleration threshold: 4
[    36.011] (II) event14 - DELL097E:00 04F3:311C Mouse: is tagged by udev as: Mouse Pointingstick
[    36.012] (II) event14 - DELL097E:00 04F3:311C Mouse: device is a pointer
[    36.015] (II) config/udev: Adding input device DELL097E:00 04F3:311C Mouse (/dev/input/mouse3)
[    36.015] (II) No input driver specified, ignoring this device.
[    36.015] (II) This device may have been added with another device file.
[    36.016] (II) config/udev: Adding input device DELL097E:00 04F3:311C Touchpad (/dev/input/event15)
[    36.016] (**) DELL097E:00 04F3:311C Touchpad: Applying InputClass "libinput touchpad catchall"
[    36.016] (II) Using input driver 'libinput' for 'DELL097E:00 04F3:311C Touchpad'
[    36.016] (**) DELL097E:00 04F3:311C Touchpad: always reports core events
[    36.016] (**) Option "Device" "/dev/input/event15"
[    36.016] (**) Option "_source" "server/udev"
[    36.018] (II) event15 - DELL097E:00 04F3:311C Touchpad: is tagged by udev as: Touchpad
[    36.020] (II) event15 - DELL097E:00 04F3:311C Touchpad: device is a touchpad
[    36.020] (II) event15 - DELL097E:00 04F3:311C Touchpad: device removed
[    36.076] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-DELL097E:00/0018:04F3:311C.0009/input/input54/event15"
[    36.077] (II) XINPUT: Adding extended input device "DELL097E:00 04F3:311C Touchpad" (type: TOUCHPAD, id 17)
[    36.079] (**) Option "AccelerationScheme" "none"
[    36.079] (**) DELL097E:00 04F3:311C Touchpad: (accel) selected scheme none/0
[    36.079] (**) DELL097E:00 04F3:311C Touchpad: (accel) acceleration factor: 2.000
[    36.079] (**) DELL097E:00 04F3:311C Touchpad: (accel) acceleration threshold: 4
[    36.081] (II) event15 - DELL097E:00 04F3:311C Touchpad: is tagged by udev as: Touchpad
[    36.084] (II) event15 - DELL097E:00 04F3:311C Touchpad: device is a touchpad
[    36.085] (II) config/udev: Adding input device DELL097E:00 04F3:311C Touchpad (/dev/input/mouse4)
[    36.085] (II) No input driver specified, ignoring this device.
[    36.085] (II) This device may have been added with another device file.
[    36.086] (II) config/udev: Adding input device HDA Intel PCH Headphone Mic (/dev/input/event20)
[    36.086] (II) No input driver specified, ignoring this device.
[    36.086] (II) This device may have been added with another device file.
[    36.087] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event21)
[    36.087] (II) No input driver specified, ignoring this device.
[    36.087] (II) This device may have been added with another device file.
[    36.087] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=7 (/dev/input/event22)
[    36.087] (II) No input driver specified, ignoring this device.
[    36.087] (II) This device may have been added with another device file.
[    36.088] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=8 (/dev/input/event23)
[    36.088] (II) No input driver specified, ignoring this device.
[    36.088] (II) This device may have been added with another device file.
[    36.089] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=9 (/dev/input/event24)
[    36.089] (II) No input driver specified, ignoring this device.
[    36.089] (II) This device may have been added with another device file.
[    36.089] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=10 (/dev/input/event25)
[    36.089] (II) No input driver specified, ignoring this device.
[    36.089] (II) This device may have been added with another device file.
[    36.090] (II) config/udev: Adding input device Intel HID events (/dev/input/event7)
[    36.090] (**) Intel HID events: Applying InputClass "libinput keyboard catchall"
[    36.090] (II) Using input driver 'libinput' for 'Intel HID events'
[    36.090] (**) Intel HID events: always reports core events
[    36.090] (**) Option "Device" "/dev/input/event7"
[    36.090] (**) Option "_source" "server/udev"
[    36.091] (II) event7  - Intel HID events: is tagged by udev as: Keyboard
[    36.091] (II) event7  - Intel HID events: device is a keyboard
[    36.091] (II) event7  - Intel HID events: device removed
[    36.116] (**) Option "config_info" "udev:/sys/devices/platform/INT33D5:00/input/input33/event7"
[    36.116] (II) XINPUT: Adding extended input device "Intel HID events" (type: KEYBOARD, id 18)
[    36.117] (II) event7  - Intel HID events: is tagged by udev as: Keyboard
[    36.118] (II) event7  - Intel HID events: device is a keyboard
[    36.119] (II) config/udev: Adding input device Intel HID 5 button array (/dev/input/event8)
[    36.119] (**) Intel HID 5 button array: Applying InputClass "libinput keyboard catchall"
[    36.119] (II) Using input driver 'libinput' for 'Intel HID 5 button array'
[    36.119] (**) Intel HID 5 button array: always reports core events
[    36.119] (**) Option "Device" "/dev/input/event8"
[    36.119] (**) Option "_source" "server/udev"
[    36.120] (II) event8  - Intel HID 5 button array: is tagged by udev as: Keyboard
[    36.120] (II) event8  - Intel HID 5 button array: device is a keyboard
[    36.120] (II) event8  - Intel HID 5 button array: device removed
[    36.156] (**) Option "config_info" "udev:/sys/devices/platform/INT33D5:00/input/input34/event8"
[    36.156] (II) XINPUT: Adding extended input device "Intel HID 5 button array" (type: KEYBOARD, id 19)
[    36.157] (II) event8  - Intel HID 5 button array: is tagged by udev as: Keyboard
[    36.157] (II) event8  - Intel HID 5 button array: device is a keyboard
[    36.159] (II) config/udev: Adding input device Dell WMI hotkeys (/dev/input/event19)
[    36.159] (**) Dell WMI hotkeys: Applying InputClass "libinput keyboard catchall"
[    36.159] (II) Using input driver 'libinput' for 'Dell WMI hotkeys'
[    36.159] (**) Dell WMI hotkeys: always reports core events
[    36.159] (**) Option "Device" "/dev/input/event19"
[    36.159] (**) Option "_source" "server/udev"
[    36.160] (II) event19 - Dell WMI hotkeys: is tagged by udev as: Keyboard
[    36.160] (II) event19 - Dell WMI hotkeys: device is a keyboard
[    36.161] (II) event19 - Dell WMI hotkeys: device removed
[    36.223] (**) Option "config_info" "udev:/sys/devices/platform/PNP0C14:03/wmi_bus/wmi_bus-PNP0C14:03/9DBB5994-A997-11DA-B012-B622A1EF5492/input/input48/event19"
[    36.223] (II) XINPUT: Adding extended input device "Dell WMI hotkeys" (type: KEYBOARD, id 20)
[    36.225] (II) event19 - Dell WMI hotkeys: is tagged by udev as: Keyboard
[    36.225] (II) event19 - Dell WMI hotkeys: device is a keyboard
[    36.226] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event2)
[    36.226] (**) AT Translated Set 2 keyboard: Applying InputClass "libinput keyboard catchall"
[    36.226] (II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard'
[    36.227] (**) AT Translated Set 2 keyboard: always reports core events
[    36.227] (**) Option "Device" "/dev/input/event2"
[    36.227] (**) Option "_source" "server/udev"
[    36.228] (II) event2  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[    36.228] (II) event2  - AT Translated Set 2 keyboard: device is a keyboard
[    36.230] (II) event2  - AT Translated Set 2 keyboard: device removed
[    36.263] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input2/event2"
[    36.263] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 21)
[    36.264] (II) event2  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[    36.265] (II) event2  - AT Translated Set 2 keyboard: device is a keyboard
[    36.268] (II) config/udev: Adding input device PS/2 Logitech Wheel Mouse (/dev/input/event26)
[    36.268] (**) PS/2 Logitech Wheel Mouse: Applying InputClass "libinput pointer catchall"
[    36.268] (II) Using input driver 'libinput' for 'PS/2 Logitech Wheel Mouse'
[    36.268] (**) PS/2 Logitech Wheel Mouse: always reports core events
[    36.268] (**) Option "Device" "/dev/input/event26"
[    36.268] (**) Option "_source" "server/udev"
[    36.269] (II) event26 - PS/2 Logitech Wheel Mouse: is tagged by udev as: Mouse
[    36.269] (II) event26 - PS/2 Logitech Wheel Mouse: device is a pointer
[    36.270] (II) event26 - PS/2 Logitech Wheel Mouse: device removed
[    36.329] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input45/event26"
[    36.329] (II) XINPUT: Adding extended input device "PS/2 Logitech Wheel Mouse" (type: MOUSE, id 22)
[    36.329] (**) Option "AccelerationScheme" "none"
[    36.329] (**) PS/2 Logitech Wheel Mouse: (accel) selected scheme none/0
[    36.329] (**) PS/2 Logitech Wheel Mouse: (accel) acceleration factor: 2.000
[    36.330] (**) PS/2 Logitech Wheel Mouse: (accel) acceleration threshold: 4
[    36.331] (II) event26 - PS/2 Logitech Wheel Mouse: is tagged by udev as: Mouse
[    36.331] (II) event26 - PS/2 Logitech Wheel Mouse: device is a pointer
[    36.332] (II) config/udev: Adding input device PS/2 Logitech Wheel Mouse (/dev/input/mouse5)
[    36.332] (II) No input driver specified, ignoring this device.
[    36.332] (II) This device may have been added with another device file.
[    36.333] (II) config/udev: Adding input device PC Speaker (/dev/input/event16)
[    36.333] (II) No input driver specified, ignoring this device.
[    36.333] (II) This device may have been added with another device file.
[    36.351] (**) Logitech K350: Applying InputClass "libinput keyboard catchall"
[    36.351] (II) Using input driver 'libinput' for 'Logitech K350'
[    36.351] (**) Logitech K350: always reports core events
[    36.351] (**) Option "Device" "/dev/input/event6"
[    36.351] (**) Option "_source" "_driver/libinput"
[    36.351] (II) libinput: Logitech K350: is a virtual subdevice
[    36.351] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:200A.0007/input/input32/event6"
[    36.351] (II) XINPUT: Adding extended input device "Logitech K350" (type: KEYBOARD, id 23)
[    36.352] (**) Logitech K800: Applying InputClass "libinput keyboard catchall"
[    36.352] (II) Using input driver 'libinput' for 'Logitech K800'
[    36.352] (**) Logitech K800: always reports core events
[    36.352] (**) Option "Device" "/dev/input/event3"
[    36.352] (**) Option "_source" "_driver/libinput"
[    36.352] (II) libinput: Logitech K800: is a virtual subdevice
[    36.352] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:2010.0004/input/input29/event3"
[    36.352] (II) XINPUT: Adding extended input device "Logitech K800" (type: KEYBOARD, id 24)
[    36.402] (II) config/udev: removing device ELAN29E2:00 04F3:29E2
[    36.402] (II) event11 - ELAN29E2:00 04F3:29E2: device removed
[    36.489] (II) UnloadModule: "libinput"
[    36.490] (II) config/udev: Adding input device ELAN29E2:00 04F3:29E2 (/dev/input/event11)
[    36.490] (**) ELAN29E2:00 04F3:29E2: Applying InputClass "libinput touchscreen catchall"
[    36.490] (II) Using input driver 'libinput' for 'ELAN29E2:00 04F3:29E2'
[    36.490] (**) ELAN29E2:00 04F3:29E2: always reports core events
[    36.490] (**) Option "Device" "/dev/input/event11"
[    36.490] (**) Option "_source" "server/udev"
[    36.492] (II) event11 - ELAN29E2:00 04F3:29E2: is tagged by udev as: Touchscreen
[    36.493] (II) event11 - ELAN29E2:00 04F3:29E2: device is a touch device
[    36.493] (II) event11 - ELAN29E2:00 04F3:29E2: device removed
[    36.556] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-ELAN29E2:00/0018:04F3:29E2.0008/input/input49/event11"
[    36.556] (II) XINPUT: Adding extended input device "ELAN29E2:00 04F3:29E2" (type: TOUCHSCREEN, id 15)
[    36.556] (**) Option "AccelerationScheme" "none"
[    36.556] (**) ELAN29E2:00 04F3:29E2: (accel) selected scheme none/0
[    36.556] (**) ELAN29E2:00 04F3:29E2: (accel) acceleration factor: 2.000
[    36.556] (**) ELAN29E2:00 04F3:29E2: (accel) acceleration threshold: 4
[    36.558] (II) event11 - ELAN29E2:00 04F3:29E2: is tagged by udev as: Touchscreen
[    36.559] (II) event11 - ELAN29E2:00 04F3:29E2: device is a touch device
[    36.560] (II) config/udev: removing device DELL097E:00 04F3:311C Touchpad
[    36.560] (II) event15 - DELL097E:00 04F3:311C Touchpad: device removed
[    36.622] (II) UnloadModule: "libinput"
[    36.623] (II) config/udev: Adding input device DELL097E:00 04F3:311C Touchpad (/dev/input/event15)
[    36.623] (**) DELL097E:00 04F3:311C Touchpad: Applying InputClass "libinput touchpad catchall"
[    36.623] (II) Using input driver 'libinput' for 'DELL097E:00 04F3:311C Touchpad'
[    36.623] (**) DELL097E:00 04F3:311C Touchpad: always reports core events
[    36.624] (**) Option "Device" "/dev/input/event15"
[    36.624] (**) Option "_source" "server/udev"
[    36.626] (II) event15 - DELL097E:00 04F3:311C Touchpad: is tagged by udev as: Touchpad
[    36.629] (II) event15 - DELL097E:00 04F3:311C Touchpad: device is a touchpad
[    36.629] (II) event15 - DELL097E:00 04F3:311C Touchpad: device removed
[    36.690] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-DELL097E:00/0018:04F3:311C.0009/input/input54/event15"
[    36.690] (II) XINPUT: Adding extended input device "DELL097E:00 04F3:311C Touchpad" (type: TOUCHPAD, id 17)
[    36.693] (**) Option "AccelerationScheme" "none"
[    36.693] (**) DELL097E:00 04F3:311C Touchpad: (accel) selected scheme none/0
[    36.693] (**) DELL097E:00 04F3:311C Touchpad: (accel) acceleration factor: 2.000
[    36.693] (**) DELL097E:00 04F3:311C Touchpad: (accel) acceleration threshold: 4
[    36.695] (II) event15 - DELL097E:00 04F3:311C Touchpad: is tagged by udev as: Touchpad
[    36.698] (II) event15 - DELL097E:00 04F3:311C Touchpad: device is a touchpad
[    36.699] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=9 (/dev/input/event24)
[    36.699] (II) No input driver specified, ignoring this device.
[    36.699] (II) This device may have been added with another device file.
[    36.700] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=7 (/dev/input/event22)
[    36.700] (II) No input driver specified, ignoring this device.
[    36.700] (II) This device may have been added with another device file.
[    36.701] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=8 (/dev/input/event23)
[    36.701] (II) No input driver specified, ignoring this device.
[    36.701] (II) This device may have been added with another device file.
[    36.701] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event21)
[    36.701] (II) No input driver specified, ignoring this device.
[    36.701] (II) This device may have been added with another device file.
[    36.702] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=10 (/dev/input/event25)
[    36.702] (II) No input driver specified, ignoring this device.
[    36.702] (II) This device may have been added with another device file.
[    36.702] (II) config/udev: Adding input device HDA Intel PCH Headphone Mic (/dev/input/event20)
[    36.702] (II) No input driver specified, ignoring this device.
[    36.702] (II) This device may have been added with another device file.
[    36.703] (II) config/udev: Adding input device PS/2 Logitech Wheel Mouse (/dev/input/mouse5)
[    36.703] (II) No input driver specified, ignoring this device.
[    36.703] (II) This device may have been added with another device file.
[    36.703] (II) config/udev: removing device PS/2 Logitech Wheel Mouse
[    36.703] (II) event26 - PS/2 Logitech Wheel Mouse: device removed
[    36.769] (II) UnloadModule: "libinput"
[    36.770] (II) config/udev: Adding input device PS/2 Logitech Wheel Mouse (/dev/input/event26)
[    36.770] (**) PS/2 Logitech Wheel Mouse: Applying InputClass "libinput pointer catchall"
[    36.770] (II) Using input driver 'libinput' for 'PS/2 Logitech Wheel Mouse'
[    36.770] (**) PS/2 Logitech Wheel Mouse: always reports core events
[    36.770] (**) Option "Device" "/dev/input/event26"
[    36.770] (**) Option "_source" "server/udev"
[    36.771] (II) event26 - PS/2 Logitech Wheel Mouse: is tagged by udev as: Mouse
[    36.772] (II) event26 - PS/2 Logitech Wheel Mouse: device is a pointer
[    36.772] (II) event26 - PS/2 Logitech Wheel Mouse: device removed
[    36.836] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input45/event26"
[    36.836] (II) XINPUT: Adding extended input device "PS/2 Logitech Wheel Mouse" (type: MOUSE, id 22)
[    36.836] (**) Option "AccelerationScheme" "none"
[    36.836] (**) PS/2 Logitech Wheel Mouse: (accel) selected scheme none/0
[    36.836] (**) PS/2 Logitech Wheel Mouse: (accel) acceleration factor: 2.000
[    36.836] (**) PS/2 Logitech Wheel Mouse: (accel) acceleration threshold: 4
[    36.838] (II) event26 - PS/2 Logitech Wheel Mouse: is tagged by udev as: Mouse
[    36.838] (II) event26 - PS/2 Logitech Wheel Mouse: device is a pointer
[    36.839] (II) config/udev: removing GPU device /sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0/drm/card1 /dev/dri/card1
[    36.839] xf86: remove device 0 /sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0/drm/card1
[    36.840] (II) UnloadModule: "modesetting"
[    36.840] (II) UnloadSubModule: "shadow"
[    36.840] (II) Unloading shadow
[    36.840] (II) UnloadSubModule: "fb"
[    36.840] (II) Unloading fb
[    36.840] (II) config/udev: Adding drm device (/dev/dri/card1)
[    36.840] (II) xfree86: Adding drm device (/dev/dri/card1)
[    36.840] (II) LoadModule: "modesetting"
[    36.840] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[    36.840] (II) Module modesetting: vendor="X.Org Foundation"
[    36.840] 	compiled for 1.20.10, module version = 1.20.10
[    36.841] 	Module class: X.Org Video Driver
[    36.841] 	ABI class: X.Org Video Driver, version 24.1
[    36.841] (II) UnloadModule: "modesetting"
[    36.841] (II) Unloading modesetting
[    36.841] (II) Failed to load module "modesetting" (already loaded, 0)
[    36.841] xf86: found device 1
[    41.690] (II) modeset(0): EDID vendor "SHP", prod id 5328
[    41.690] (II) modeset(0): Printing DDC gathered Modelines:
[    41.690] (II) modeset(0): Modeline "3840x2400"x0.0  592.50  3840 3888 3920 4000  2400 2403 2409 2469 -hsync -vsync (148.1 kHz eP)
[    41.690] (II) modeset(0): Modeline "3840x2400"x0.0  474.00  3840 3888 3920 4000  2400 2403 2409 2469 -hsync -vsync (118.5 kHz e)
[    43.135] (II) modeset(0): EDID vendor "SHP", prod id 5328
[    43.135] (II) modeset(0): Printing DDC gathered Modelines:
[    43.135] (II) modeset(0): Modeline "3840x2400"x0.0  592.50  3840 3888 3920 4000  2400 2403 2409 2469 -hsync -vsync (148.1 kHz eP)
[    43.135] (II) modeset(0): Modeline "3840x2400"x0.0  474.00  3840 3888 3920 4000  2400 2403 2409 2469 -hsync -vsync (118.5 kHz e)
[    54.349] (II) modeset(0): EDID vendor "SHP", prod id 5328
[    54.349] (II) modeset(0): Printing DDC gathered Modelines:
[    54.349] (II) modeset(0): Modeline "3840x2400"x0.0  592.50  3840 3888 3920 4000  2400 2403 2409 2469 -hsync -vsync (148.1 kHz eP)
[    54.349] (II) modeset(0): Modeline "3840x2400"x0.0  474.00  3840 3888 3920 4000  2400 2403 2409 2469 -hsync -vsync (118.5 kHz e)
[    54.350] (II) modeset(0): EDID vendor "SHP", prod id 5328
[    54.350] (II) modeset(0): Printing DDC gathered Modelines:
[    54.350] (II) modeset(0): Modeline "3840x2400"x0.0  592.50  3840 3888 3920 4000  2400 2403 2409 2469 -hsync -vsync (148.1 kHz eP)
[    54.350] (II) modeset(0): Modeline "3840x2400"x0.0  474.00  3840 3888 3920 4000  2400 2403 2409 2469 -hsync -vsync (118.5 kHz e)
[    56.581] (II) modeset(0): EDID vendor "SHP", prod id 5328
[    56.581] (II) modeset(0): Printing DDC gathered Modelines:
[    56.581] (II) modeset(0): Modeline "3840x2400"x0.0  592.50  3840 3888 3920 4000  2400 2403 2409 2469 -hsync -vsync (148.1 kHz eP)
[    56.581] (II) modeset(0): Modeline "3840x2400"x0.0  474.00  3840 3888 3920 4000  2400 2403 2409 2469 -hsync -vsync (118.5 kHz e)
[    56.584] (II) modeset(0): EDID vendor "SHP", prod id 5328
[    56.585] (II) modeset(0): Printing DDC gathered Modelines:
[    56.585] (II) modeset(0): Modeline "3840x2400"x0.0  592.50  3840 3888 3920 4000  2400 2403 2409 2469 -hsync -vsync (148.1 kHz eP)
[    56.585] (II) modeset(0): Modeline "3840x2400"x0.0  474.00  3840 3888 3920 4000  2400 2403 2409 2469 -hsync -vsync (118.5 kHz e)
[   129.056] (EE) event15 - DELL097E:00 04F3:311C Touchpad: client bug: event processing lagging behind by 19ms, your system is too slow
[   136.526] (EE) event15 - DELL097E:00 04F3:311C Touchpad: client bug: event processing lagging behind by 20ms, your system is too slow
[   142.165] (EE) event15 - DELL097E:00 04F3:311C Touchpad: client bug: event processing lagging behind by 14ms, your system is too slow
[   166.525] (EE) event15 - DELL097E:00 04F3:311C Touchpad: client bug: event processing lagging behind by 11ms, your system is too slow
[   180.531] (EE) event15 - DELL097E:00 04F3:311C Touchpad: client bug: event processing lagging behind by 12ms, your system is too slow
[   180.531] (EE) event15 - DELL097E:00 04F3:311C Touchpad: WARNING: log rate limit exceeded (5 msgs per 60min). Discarding future messages.
[  2387.366] (EE) event15 - DELL097E:00 04F3:311C Touchpad: kernel bug: Touch jump detected and discarded.
See https://wayland.freedesktop.org/libinput/doc/1.17.0/touchpad-jumping-cursors.html for details
[  2693.521] (EE) event2  - AT Translated Set 2 keyboard: client bug: event processing lagging behind by 11ms, your system is too slow
[  2706.037] (EE) event2  - AT Translated Set 2 keyboard: client bug: event processing lagging behind by 18ms, your system is too slow
[  4072.691] (EE) event15 - DELL097E:00 04F3:311C Touchpad: client bug: event processing lagging behind by 11ms, your system is too slow
[  4158.843] (EE) event15 - DELL097E:00 04F3:311C Touchpad: client bug: event processing lagging behind by 14ms, your system is too slow
[  4267.647] (EE) event15 - DELL097E:00 04F3:311C Touchpad: client bug: event processing lagging behind by 17ms, your system is too slow
[  4297.269] (EE) event15 - DELL097E:00 04F3:311C Touchpad: client bug: event processing lagging behind by 33ms, your system is too slow
[  4299.425] (EE) event15 - DELL097E:00 04F3:311C Touchpad: client bug: event processing lagging behind by 17ms, your system is too slow
[  4299.425] (EE) event15 - DELL097E:00 04F3:311C Touchpad: WARNING: log rate limit exceeded (5 msgs per 60min). Discarding future messages.
[  4681.099] (EE) event2  - AT Translated Set 2 keyboard: client bug: event processing lagging behind by 11ms, your system is too slow
[  4946.791] (EE) event15 - DELL097E:00 04F3:311C Touchpad: kernel bug: Touch jump detected and discarded.
See https://wayland.freedesktop.org/libinput/doc/1.17.0/touchpad-jumping-cursors.html for details
[  4946.791] (EE) event15 - DELL097E:00 04F3:311C Touchpad: kernel bug: Touch jump detected and discarded.
See https://wayland.freedesktop.org/libinput/doc/1.17.0/touchpad-jumping-cursors.html for details
[ 54681.829] (II) modeset(0): EDID vendor "SHP", prod id 5328
[ 54681.830] (II) modeset(0): Printing DDC gathered Modelines:
[ 54681.830] (II) modeset(0): Modeline "3840x2400"x0.0  592.50  3840 3888 3920 4000  2400 2403 2409 2469 -hsync -vsync (148.1 kHz eP)
[ 54681.830] (II) modeset(0): Modeline "3840x2400"x0.0  474.00  3840 3888 3920 4000  2400 2403 2409 2469 -hsync -vsync (118.5 kHz e)
[ 54681.832] (II) modeset(0): EDID vendor "SHP", prod id 5328
[ 54681.832] (II) modeset(0): Printing DDC gathered Modelines:
[ 54681.832] (II) modeset(0): Modeline "3840x2400"x0.0  592.50  3840 3888 3920 4000  2400 2403 2409 2469 -hsync -vsync (148.1 kHz eP)
[ 54681.832] (II) modeset(0): Modeline "3840x2400"x0.0  474.00  3840 3888 3920 4000  2400 2403 2409 2469 -hsync -vsync (118.5 kHz e)
$ sudo dmesg
[    0.000000] microcode: microcode updated early to revision 0xe0, date = 2020-07-08
[    0.000000] Linux version 5.10.16-arch1-1 (linux@archlinux) (gcc (GCC) 10.2.0, GNU ld (GNU Binutils) 2.36) #1 SMP PREEMPT Sat, 13 Feb 2021 20:50:18 +0000
[    0.000000] Command line: initrd=\intel-ucode.img initrd=\initramfs-linux.img rd.luks.name=4833f4ef-725f-47aa-897f-d5e672fb236b=cryptlvm root=/dev/Arch/OS rw nvidia-drm.modeset=1
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: xstate_offset[3]:  832, xstate_sizes[3]:   64
[    0.000000] x86/fpu: xstate_offset[4]:  896, xstate_sizes[4]:   64
[    0.000000] x86/fpu: xstate_offset[9]:  960, xstate_sizes[9]:    8
[    0.000000] x86/fpu: Enabled xstate features 0x21f, context size is 968 bytes, using 'compacted' format.
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000040000000-0x00000000403fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000040400000-0x000000004ea08fff] usable
[    0.000000] BIOS-e820: [mem 0x000000004ea09000-0x000000004ea09fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000004ea0a000-0x0000000051031fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000051032000-0x0000000051032fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000051033000-0x0000000051033fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000051034000-0x0000000062825fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000062826000-0x00000000658b4fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000658b5000-0x0000000065f24fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000065f25000-0x0000000065ffefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x0000000065fff000-0x0000000065ffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000066000000-0x000000006e7fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000088d7fffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] e820: update [mem 0x6270e018-0x6271d057] usable ==> usable
[    0.000000] e820: update [mem 0x6270e018-0x6271d057] usable ==> usable
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000009efff] usable
[    0.000000] reserve setup_data: [mem 0x000000000009f000-0x00000000000fffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x000000003fffffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000040000000-0x00000000403fffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000040400000-0x000000004ea08fff] usable
[    0.000000] reserve setup_data: [mem 0x000000004ea09000-0x000000004ea09fff] reserved
[    0.000000] reserve setup_data: [mem 0x000000004ea0a000-0x0000000051031fff] usable
[    0.000000] reserve setup_data: [mem 0x0000000051032000-0x0000000051032fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x0000000051033000-0x0000000051033fff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000051034000-0x000000006270e017] usable
[    0.000000] reserve setup_data: [mem 0x000000006270e018-0x000000006271d057] usable
[    0.000000] reserve setup_data: [mem 0x000000006271d058-0x0000000062825fff] usable
[    0.000000] reserve setup_data: [mem 0x0000000062826000-0x00000000658b4fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000658b5000-0x0000000065f24fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x0000000065f25000-0x0000000065ffefff] ACPI data
[    0.000000] reserve setup_data: [mem 0x0000000065fff000-0x0000000065ffffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000066000000-0x000000006e7fffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000088d7fffff] usable
[    0.000000] efi: EFI v2.70 by Dell
[    0.000000] efi: SMBIOS=0x63263000 TPMFinalLog=0x65f1d000 ACPI=0x65ffe000 ACPI 2.0=0x65ffe014 ESRT=0x6314cb98 MEMATTR=0x5f869018 PROP=0x4fe12130 RNG=0x6314dc98 TPMEventLog=0x6271e018 
[    0.000000] efi: seeding entropy pool
[    0.000000] SMBIOS 3.2 present.
[    0.000000] DMI: Dell Inc. Precision 5550/0MCFW2, BIOS 1.5.3 11/20/2020
[    0.000000] tsc: Detected 2600.000 MHz processor
[    0.000000] tsc: Detected 2599.992 MHz TSC
[    0.000701] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000703] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000706] last_pfn = 0x88d800 max_arch_pfn = 0x400000000
[    0.000709] MTRR default type: write-back
[    0.000709] MTRR fixed ranges enabled:
[    0.000710]   00000-9FFFF write-back
[    0.000710]   A0000-BFFFF uncachable
[    0.000711]   C0000-FFFFF write-protect
[    0.000711] MTRR variable ranges enabled:
[    0.000712]   0 base 0080000000 mask 7F80000000 uncachable
[    0.000713]   1 base 0070000000 mask 7FF0000000 uncachable
[    0.000714]   2 base 006C000000 mask 7FFC000000 uncachable
[    0.000714]   3 base 006A000000 mask 7FFE000000 uncachable
[    0.000715]   4 base 4000000000 mask 4000000000 uncachable
[    0.000715]   5 disabled
[    0.000715]   6 disabled
[    0.000716]   7 disabled
[    0.000716]   8 disabled
[    0.000716]   9 disabled
[    0.001062] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.001327] last_pfn = 0x66000 max_arch_pfn = 0x400000000
[    0.010514] esrt: Reserving ESRT space from 0x000000006314cb98 to 0x000000006314cc20.
[    0.010529] check: Scanning 1 areas for low memory corruption
[    0.010532] Using GB pages for direct mapping
[    0.011138] Secure boot disabled
[    0.011139] RAMDISK: [mem 0x4d33a000-0x4ea08fff]
[    0.011147] ACPI: Early table checksum verification disabled
[    0.011154] ACPI: RSDP 0x0000000065FFE014 000024 (v02 DELL  )
[    0.011156] ACPI: XSDT 0x0000000065F93188 0000F4 (v01 DELL   Dell Inc 20170001 INTL 20160422)
[    0.011159] ACPI: FACP 0x0000000065FF0000 000114 (v06 DELL   Dell Inc 20170001 INTL 20160422)
[    0.011162] ACPI: DSDT 0x0000000065FA3000 049DC8 (v02 DELL   Dell Inc 20170001 INTL 20160422)
[    0.011164] ACPI: FACS 0x0000000065EA5000 000040
[    0.011166] ACPI: SSDT 0x0000000065FFA000 00203C (v02 CpuRef CpuSsdt  00003000 INTL 20160527)
[    0.011168] ACPI: SSDT 0x0000000065FF3000 0063E5 (v02 INTEL  DptfTabl 00001000 INTL 20160527)
[    0.011170] ACPI: SSDT 0x0000000065FF1000 00134A (v02 SaSsdt SaSsdt   00003000 INTL 20160527)
[    0.011171] ACPI: HPET 0x0000000065FEF000 000038 (v01 DELL   Dell Inc 20170001 INTL 20160422)
[    0.011173] ACPI: APIC 0x0000000065FEE000 000164 (v03 DELL   Dell Inc 20170001 INTL 20160422)
[    0.011175] ACPI: MCFG 0x0000000065FED000 00003C (v01 DELL   Dell Inc 20170001 INTL 20160422)
[    0.011176] ACPI: SSDT 0x0000000065FA1000 001749 (v02 DELL   DellRtd3 00001000 INTL 20160527)
[    0.011178] ACPI: SSDT 0x0000000065FA0000 000CB0 (v02 DELL   xh_Dell_ 00000000 INTL 20160527)
[    0.011180] ACPI: NHLT 0x0000000065F9F000 00002D (v00 DELL   Dell Inc 20170001 INTL 20160422)
[    0.011182] ACPI: SSDT 0x0000000065F9E000 000C78 (v02 DELL   UsbCTabl 00001000 INTL 20160527)
[    0.011184] ACPI: LPIT 0x0000000065F9D000 000094 (v01 DELL   Dell Inc 20170001 INTL 20160422)
[    0.011185] ACPI: WSMT 0x0000000065F9C000 000028 (v01 DELL   Dell Inc 20170001 INTL 20160422)
[    0.011187] ACPI: SSDT 0x0000000065F9B000 000B75 (v02 DELL   PtidDevc 00001000 INTL 20160527)
[    0.011189] ACPI: DBGP 0x0000000065F9A000 000034 (v01 DELL   Dell Inc 20170001 INTL 20160422)
[    0.011190] ACPI: DBG2 0x0000000065F99000 000054 (v00 DELL   Dell Inc 20170001 INTL 20160422)
[    0.011192] ACPI: SSDT 0x0000000065F98000 00060E (v02 DELL   Tpm2Tabl 00001000 INTL 20160527)
[    0.011194] ACPI: TPM2 0x0000000065F97000 000034 (v04 DELL   Dell Inc 20170001 INTL 20160422)
[    0.011195] ACPI: SLIC 0x0000000065F96000 000176 (v03 DELL   CBX3     06222004 MSFT 00010013)
[    0.011197] ACPI: BOOT 0x0000000065F95000 000028 (v01 DELL   CBX3     20170001 INTL 20160422)
[    0.011199] ACPI: MSDM 0x0000000065F94000 000055 (v03 DELL   CBX3     06222004 AMI  00010013)
[    0.011201] ACPI: SSDT 0x0000000065F8E000 0041A0 (v01 DELL   NvdTable 00001000 INTL 20160527)
[    0.011202] ACPI: SSDT 0x0000000065FFD000 000156 (v02 Dell   ADebTabl 00001000 INTL 20160527)
[    0.011204] ACPI: ASF! 0x0000000065F8D000 000074 (v32 DELL   Dell Inc 20170001 INTL 20160422)
[    0.011206] ACPI: BGRT 0x0000000065F8C000 000038 (v01 DELL   Dell Inc 20170001 INTL 20160422)
[    0.011208] ACPI: FPDT 0x0000000065F8B000 000034 (v01 DELL   Dell Inc 20170001 INTL 20160422)
[    0.011213] ACPI: Local APIC address 0xfee00000
[    0.011394] No NUMA configuration found
[    0.011395] Faking a node at [mem 0x0000000000000000-0x000000088d7fffff]
[    0.011397] NODE_DATA(0) allocated [mem 0x88d7fc000-0x88d7fffff]
[    0.044157] Zone ranges:
[    0.044157]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.044158]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.044159]   Normal   [mem 0x0000000100000000-0x000000088d7fffff]
[    0.044160]   Device   empty
[    0.044161] Movable zone start for each node
[    0.044161] Early memory node ranges
[    0.044161]   node   0: [mem 0x0000000000001000-0x000000000009efff]
[    0.044162]   node   0: [mem 0x0000000000100000-0x000000003fffffff]
[    0.044163]   node   0: [mem 0x0000000040400000-0x000000004ea08fff]
[    0.044163]   node   0: [mem 0x000000004ea0a000-0x0000000051031fff]
[    0.044163]   node   0: [mem 0x0000000051034000-0x0000000062825fff]
[    0.044164]   node   0: [mem 0x0000000065fff000-0x0000000065ffffff]
[    0.044164]   node   0: [mem 0x0000000100000000-0x000000088d7fffff]
[    0.044382] Zeroed struct page in unavailable ranges: 33854 pages
[    0.044383] Initmem setup node 0 [mem 0x0000000000001000-0x000000088d7fffff]
[    0.044384] On node 0 totalpages: 8321986
[    0.044385]   DMA zone: 64 pages used for memmap
[    0.044385]   DMA zone: 22 pages reserved
[    0.044386]   DMA zone: 3998 pages, LIFO batch:0
[    0.044400]   DMA32 zone: 6225 pages used for memmap
[    0.044401]   DMA32 zone: 398372 pages, LIFO batch:63
[    0.045802]   Normal zone: 123744 pages used for memmap
[    0.045802]   Normal zone: 7919616 pages, LIFO batch:63
[    0.078072] Reserving Intel graphics memory at [mem 0x6a800000-0x6e7fffff]
[    0.078632] ACPI: PM-Timer IO Port: 0x1808
[    0.078633] ACPI: Local APIC address 0xfee00000
[    0.078639] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.078640] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.078640] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.078641] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.078641] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.078641] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.078642] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.078642] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.078642] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[    0.078643] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[    0.078643] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[    0.078644] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[    0.078644] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[    0.078644] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[    0.078645] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[    0.078645] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[    0.078646] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
[    0.078646] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
[    0.078646] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
[    0.078647] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
[    0.078679] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[    0.078680] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.078681] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.078682] ACPI: IRQ0 used by override.
[    0.078682] ACPI: IRQ9 used by override.
[    0.078683] Using ACPI (MADT) for SMP configuration information
[    0.078684] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.078689] e820: update [mem 0x5f6f7000-0x5f773fff] usable ==> reserved
[    0.078694] TSC deadline timer available
[    0.078695] smpboot: Allowing 12 CPUs, 0 hotplug CPUs
[    0.078706] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.078707] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
[    0.078708] PM: hibernation: Registered nosave memory: [mem 0x40000000-0x403fffff]
[    0.078709] PM: hibernation: Registered nosave memory: [mem 0x4ea09000-0x4ea09fff]
[    0.078710] PM: hibernation: Registered nosave memory: [mem 0x51032000-0x51032fff]
[    0.078711] PM: hibernation: Registered nosave memory: [mem 0x51033000-0x51033fff]
[    0.078712] PM: hibernation: Registered nosave memory: [mem 0x5f6f7000-0x5f773fff]
[    0.078713] PM: hibernation: Registered nosave memory: [mem 0x6270e000-0x6270efff]
[    0.078714] PM: hibernation: Registered nosave memory: [mem 0x6271d000-0x6271dfff]
[    0.078715] PM: hibernation: Registered nosave memory: [mem 0x62826000-0x658b4fff]
[    0.078715] PM: hibernation: Registered nosave memory: [mem 0x658b5000-0x65f24fff]
[    0.078715] PM: hibernation: Registered nosave memory: [mem 0x65f25000-0x65ffefff]
[    0.078716] PM: hibernation: Registered nosave memory: [mem 0x66000000-0x6e7fffff]
[    0.078717] PM: hibernation: Registered nosave memory: [mem 0x6e800000-0xdfffffff]
[    0.078717] PM: hibernation: Registered nosave memory: [mem 0xe0000000-0xefffffff]
[    0.078718] PM: hibernation: Registered nosave memory: [mem 0xf0000000-0xfeffffff]
[    0.078718] PM: hibernation: Registered nosave memory: [mem 0xff000000-0xffffffff]
[    0.078719] [mem 0x6e800000-0xdfffffff] available for PCI devices
[    0.078720] Booting paravirtualized kernel on bare hardware
[    0.078721] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
[    0.081941] setup_percpu: NR_CPUS:320 nr_cpumask_bits:320 nr_cpu_ids:12 nr_node_ids:1
[    0.082125] percpu: Embedded 56 pages/cpu s192512 r8192 d28672 u262144
[    0.082130] pcpu-alloc: s192512 r8192 d28672 u262144 alloc=1*2097152
[    0.082130] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 -- -- -- -- 
[    0.082147] Built 1 zonelists, mobility grouping on.  Total pages: 8191931
[    0.082148] Policy zone: Normal
[    0.082149] Kernel command line: initrd=\intel-ucode.img initrd=\initramfs-linux.img rd.luks.name=4833f4ef-725f-47aa-897f-d5e672fb236b=cryptlvm root=/dev/Arch/OS rw nvidia-drm.modeset=1
[    0.083218] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[    0.083731] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[    0.083791] mem auto-init: stack:byref_all(zero), heap alloc:on, heap free:off
[    0.130804] Memory: 32465040K/33287944K available (14344K kernel code, 2034K rwdata, 8808K rodata, 1704K init, 4332K bss, 822644K reserved, 0K cma-reserved)
[    0.130810] random: get_random_u64 called from __kmem_cache_create+0x26/0x520 with crng_init=0
[    0.130882] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=12, Nodes=1
[    0.130889] ftrace: allocating 41612 entries in 163 pages
[    0.140107] ftrace: allocated 163 pages with 4 groups
[    0.140179] rcu: Preemptible hierarchical RCU implementation.
[    0.140179] rcu: 	RCU dyntick-idle grace-period acceleration is enabled.
[    0.140180] rcu: 	RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=12.
[    0.140180] rcu: 	RCU priority boosting: priority 1 delay 500 ms.
[    0.140181] 	Trampoline variant of Tasks RCU enabled.
[    0.140181] 	Rude variant of Tasks RCU enabled.
[    0.140181] 	Tracing variant of Tasks RCU enabled.
[    0.140182] rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
[    0.140182] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=12
[    0.142385] NR_IRQS: 20736, nr_irqs: 2152, preallocated irqs: 16
[    0.142803] Console: colour dummy device 80x25
[    0.142814] printk: console [tty0] enabled
[    0.142825] ACPI: Core revision 20200925
[    0.143147] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635855245 ns
[    0.143276] APIC: Switch to symmetric I/O mode setup
[    0.144566] x2apic: IRQ remapping doesn't support X2APIC mode
[    0.144844] Switched APIC routing to physical flat.
[    0.149558] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.163142] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x257a34a6eea, max_idle_ns: 440795264358 ns
[    0.163145] Calibrating delay loop (skipped), value calculated using timer frequency.. 5202.65 BogoMIPS (lpj=8666640)
[    0.163146] pid_max: default: 32768 minimum: 301
[    0.165714] LSM: Security Framework initializing
[    0.165717] Yama: becoming mindful.
[    0.165722] LSM support for eBPF active
[    0.165783] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.165815] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.165969] x86/cpu: VMX (outside TXT) disabled by BIOS
[    0.165981] mce: CPU0: Thermal monitoring enabled (TM1)
[    0.165996] process: using mwait in idle threads
[    0.165997] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
[    0.165998] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[    0.165999] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.166001] Spectre V2 : Mitigation: Enhanced IBRS
[    0.166001] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.166002] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.166002] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
[    0.166150] Freeing SMP alternatives memory: 36K
[    0.167850] smpboot: CPU0: Intel(R) Core(TM) i7-10750H CPU @ 2.60GHz (family: 0x6, model: 0xa5, stepping: 0x2)
[    0.167911] Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
[    0.167917] ... version:                4
[    0.167918] ... bit width:              48
[    0.167918] ... generic registers:      4
[    0.167918] ... value mask:             0000ffffffffffff
[    0.167919] ... max period:             00007fffffffffff
[    0.167919] ... fixed-purpose events:   3
[    0.167919] ... event mask:             000000070000000f
[    0.167971] rcu: Hierarchical SRCU implementation.
[    0.168453] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    0.168510] smp: Bringing up secondary CPUs ...
[    0.168562] x86: Booting SMP configuration:
[    0.168563] .... node  #0, CPUs:        #1  #2  #3  #4  #5  #6  #7  #8  #9 #10 #11
[    0.176995] smp: Brought up 1 node, 12 CPUs
[    0.176995] smpboot: Max logical packages: 1
[    0.176995] smpboot: Total of 12 processors activated (62424.80 BogoMIPS)
[    0.180397] devtmpfs: initialized
[    0.180397] x86/mm: Memory block size: 128MB
[    0.180799] PM: Registering ACPI NVS region [mem 0x51032000-0x51032fff] (4096 bytes)
[    0.180799] PM: Registering ACPI NVS region [mem 0x658b5000-0x65f24fff] (6750208 bytes)
[    0.180799] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[    0.180799] futex hash table entries: 4096 (order: 6, 262144 bytes, linear)
[    0.180799] pinctrl core: initialized pinctrl subsystem
[    0.180799] PM: RTC time: 01:17:17, date: 2021-03-06
[    0.180799] NET: Registered protocol family 16
[    0.180799] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    0.180799] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.180799] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.180799] audit: initializing netlink subsys (disabled)
[    0.180799] audit: type=2000 audit(1614993437.036:1): state=initialized audit_enabled=0 res=1
[    0.180799] thermal_sys: Registered thermal governor 'fair_share'
[    0.180799] thermal_sys: Registered thermal governor 'bang_bang'
[    0.180799] thermal_sys: Registered thermal governor 'step_wise'
[    0.180799] thermal_sys: Registered thermal governor 'user_space'
[    0.180799] thermal_sys: Registered thermal governor 'power_allocator'
[    0.180799] cpuidle: using governor ladder
[    0.180799] cpuidle: using governor menu
[    0.180799] Simple Boot Flag at 0x47 set to 0x80
[    0.180799] ACPI: bus type PCI registered
[    0.180799] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.180799] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.180799] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[    0.180799] PCI: Using configuration type 1 for base access
[    0.180799] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.183610] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.183610] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.183610] fbcon: Taking over console
[    0.183610] ACPI: Added _OSI(Module Device)
[    0.183610] ACPI: Added _OSI(Processor Device)
[    0.183610] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.183610] ACPI: Added _OSI(Processor Aggregator Device)
[    0.183610] ACPI: Added _OSI(Linux-Dell-Video)
[    0.183610] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.183610] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    0.221854] ACPI: 11 ACPI AML tables successfully acquired and loaded
[    0.290101] ACPI: Dynamic OEM Table Load:
[    0.290111] ACPI: SSDT 0xFFFF958C81294F00 0000FC (v02 PmRef  Cpu0Psd  00003000 INTL 20160527)
[    0.291611] ACPI: \_SB_.PR00: _OSC native thermal LVT Acked
[    0.293097] ACPI: Dynamic OEM Table Load:
[    0.293104] ACPI: SSDT 0xFFFF958C81374000 000502 (v02 PmRef  Cpu0Cst  00003001 INTL 20160527)
[    0.294742] ACPI: Dynamic OEM Table Load:
[    0.294749] ACPI: SSDT 0xFFFF958C81376800 000581 (v02 PmRef  Cpu0Ist  00003000 INTL 20160527)
[    0.296464] ACPI: Dynamic OEM Table Load:
[    0.296470] ACPI: SSDT 0xFFFF958C812A8C00 00016C (v02 PmRef  Cpu0Hwp  00003000 INTL 20160527)
[    0.298003] ACPI: Dynamic OEM Table Load:
[    0.298010] ACPI: SSDT 0xFFFF958C8132D000 000BEA (v02 PmRef  HwpLvt   00003000 INTL 20160527)
[    0.299607] ACPI: Dynamic OEM Table Load:
[    0.299613] ACPI: SSDT 0xFFFF958C81373800 000778 (v02 PmRef  ApIst    00003000 INTL 20160527)
[    0.301150] ACPI: Dynamic OEM Table Load:
[    0.301155] ACPI: SSDT 0xFFFF958C812A6000 0003D7 (v02 PmRef  ApHwp    00003000 INTL 20160527)
[    0.302692] ACPI: Dynamic OEM Table Load:
[    0.302698] ACPI: SSDT 0xFFFF958C8132E000 000D22 (v02 PmRef  ApPsd    00003000 INTL 20160527)
[    0.304686] ACPI: Dynamic OEM Table Load:
[    0.304691] ACPI: SSDT 0xFFFF958C812A4400 0003CA (v02 PmRef  ApCst    00003000 INTL 20160527)
[    0.309862] ACPI: EC: EC started
[    0.309863] ACPI: EC: interrupt blocked
[    0.312390] ACPI: EC: EC_CMD/EC_SC=0x934, EC_DATA=0x930
[    0.312391] ACPI: \_SB_.PCI0.LPCB.ECDV: Boot DSDT EC used to handle transactions
[    0.312391] ACPI: Interpreter enabled
[    0.312429] ACPI: (supports S0 S3 S4 S5)
[    0.312430] ACPI: Using IOAPIC for interrupt routing
[    0.312457] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.313143] ACPI: Enabled 9 GPEs in block 00 to 7F
[    0.313898] ACPI: Power Resource [PG00] (on)
[    0.319174] ACPI: Power Resource [USBC] (on)
[    0.321301] ACPI: Power Resource [PXP] (on)
[    0.327371] ACPI: Power Resource [V0PR] (on)
[    0.327501] ACPI: Power Resource [V1PR] (on)
[    0.327627] ACPI: Power Resource [V2PR] (on)
[    0.330479] ACPI: Power Resource [WRST] (on)
[    0.338985] ACPI: Power Resource [PIN] (off)
[    0.339283] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
[    0.339287] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    0.340438] acpi PNP0A08:00: _OSC: platform does not support [AER]
[    0.342596] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability LTR DPC]
[    0.344878] PCI host bridge to bus 0000:00
[    0.344880] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.344881] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.344881] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.344882] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff window]
[    0.344883] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff window]
[    0.344883] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff window]
[    0.344884] pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff window]
[    0.344884] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff window]
[    0.344885] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window]
[    0.344885] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]
[    0.344886] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff window]
[    0.344887] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff window]
[    0.344887] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff window]
[    0.344888] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff window]
[    0.344888] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff window]
[    0.344889] pci_bus 0000:00: root bus resource [mem 0x000f0000-0x000fffff window]
[    0.344890] pci_bus 0000:00: root bus resource [mem 0x6e800000-0xdfffffff window]
[    0.344890] pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
[    0.344891] pci_bus 0000:00: root bus resource [mem 0xfc800000-0xfe7fffff window]
[    0.344892] pci_bus 0000:00: root bus resource [bus 00-fe]
[    0.344907] pci 0000:00:00.0: [8086:9b54] type 00 class 0x060000
[    0.345857] pci 0000:00:01.0: [8086:1901] type 01 class 0x060400
[    0.345886] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.346814] pci 0000:00:02.0: [8086:9bc4] type 00 class 0x030000
[    0.346820] pci 0000:00:02.0: reg 0x10: [mem 0x604a000000-0x604affffff 64bit]
[    0.346823] pci 0000:00:02.0: reg 0x18: [mem 0x4000000000-0x400fffffff 64bit pref]
[    0.346825] pci 0000:00:02.0: reg 0x20: [io  0x4000-0x403f]
[    0.346836] pci 0000:00:02.0: BAR 2: assigned to efifb
[    0.347605] pci 0000:00:04.0: [8086:1903] type 00 class 0x118000
[    0.347611] pci 0000:00:04.0: reg 0x10: [mem 0x604b110000-0x604b117fff 64bit]
[    0.348425] pci 0000:00:08.0: [8086:1911] type 00 class 0x088000
[    0.348431] pci 0000:00:08.0: reg 0x10: [mem 0x604b12b000-0x604b12bfff 64bit]
[    0.349226] pci 0000:00:12.0: [8086:06f9] type 00 class 0x118000
[    0.349238] pci 0000:00:12.0: reg 0x10: [mem 0x604b12a000-0x604b12afff 64bit]
[    0.350059] pci 0000:00:13.0: [8086:06fc] type 00 class 0x070000
[    0.350074] pci 0000:00:13.0: reg 0x10: [mem 0x604b122000-0x604b123fff 64bit]
[    0.350128] pci 0000:00:13.0: PME# supported from D0 D3hot
[    0.350967] pci 0000:00:14.0: [8086:06ed] type 00 class 0x0c0330
[    0.350979] pci 0000:00:14.0: reg 0x10: [mem 0x604b100000-0x604b10ffff 64bit]
[    0.351028] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.351842] pci 0000:00:14.2: [8086:06ef] type 00 class 0x050000
[    0.351856] pci 0000:00:14.2: reg 0x10: [mem 0x604b120000-0x604b121fff 64bit]
[    0.351864] pci 0000:00:14.2: reg 0x18: [mem 0x604b129000-0x604b129fff 64bit]
[    0.352696] pci 0000:00:14.3: [8086:06f0] type 00 class 0x028000
[    0.352710] pci 0000:00:14.3: reg 0x10: [mem 0x604b11c000-0x604b11ffff 64bit]
[    0.352851] pci 0000:00:14.3: PME# supported from D0 D3hot D3cold
[    0.353698] pci 0000:00:15.0: [8086:06e8] type 00 class 0x0c8000
[    0.353748] pci 0000:00:15.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[    0.354660] pci 0000:00:15.1: [8086:06e9] type 00 class 0x0c8000
[    0.354710] pci 0000:00:15.1: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[    0.355620] pci 0000:00:16.0: [8086:06e0] type 00 class 0x078000
[    0.355637] pci 0000:00:16.0: reg 0x10: [mem 0x604b126000-0x604b126fff 64bit]
[    0.355704] pci 0000:00:16.0: PME# supported from D3hot
[    0.356615] pci 0000:00:1c.0: [8086:06b8] type 01 class 0x060400
[    0.357388] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.357411] pci 0000:00:1c.0: PTM enabled (root), 4ns granularity
[    0.357662] pci 0000:00:1d.0: [8086:06b0] type 01 class 0x060400
[    0.357730] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.357752] pci 0000:00:1d.0: PTM enabled (root), 4ns granularity
[    0.358741] pci 0000:00:1e.0: [8086:06a8] type 00 class 0x078000
[    0.358791] pci 0000:00:1e.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[    0.359718] pci 0000:00:1f.0: [8086:068e] type 00 class 0x060100
[    0.360582] pci 0000:00:1f.3: [8086:06c8] type 00 class 0x040380
[    0.360612] pci 0000:00:1f.3: reg 0x10: [mem 0x604b118000-0x604b11bfff 64bit]
[    0.360648] pci 0000:00:1f.3: reg 0x20: [mem 0x604b000000-0x604b0fffff 64bit]
[    0.360724] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[    0.361639] pci 0000:00:1f.4: [8086:06a3] type 00 class 0x0c0500
[    0.361660] pci 0000:00:1f.4: reg 0x10: [mem 0x604b124000-0x604b1240ff 64bit]
[    0.361681] pci 0000:00:1f.4: reg 0x20: [io  0xefa0-0xefbf]
[    0.362486] pci 0000:00:1f.5: [8086:06a4] type 00 class 0x0c8000
[    0.362499] pci 0000:00:1f.5: reg 0x10: [mem 0xfe010000-0xfe010fff]
[    0.363349] pci 0000:01:00.0: [10de:1fb8] type 00 class 0x030200
[    0.363366] pci 0000:01:00.0: reg 0x10: [mem 0xb3000000-0xb3ffffff]
[    0.363379] pci 0000:01:00.0: reg 0x14: [mem 0x70000000-0x7fffffff 64bit pref]
[    0.363393] pci 0000:01:00.0: reg 0x1c: [mem 0x80000000-0x81ffffff 64bit pref]
[    0.363401] pci 0000:01:00.0: reg 0x24: [io  0x3000-0x307f]
[    0.363409] pci 0000:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    0.363486] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[    0.363533] pci 0000:01:00.0: 63.008 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x8 link at 0000:00:01.0 (capable of 126.016 Gb/s with 8.0 GT/s PCIe x16 link)
[    0.363608] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.363610] pci 0000:00:01.0:   bridge window [io  0x3000-0x3fff]
[    0.363611] pci 0000:00:01.0:   bridge window [mem 0xb3000000-0xb3ffffff]
[    0.363613] pci 0000:00:01.0:   bridge window [mem 0x70000000-0x81ffffff 64bit pref]
[    0.363672] pci 0000:02:00.0: [8086:15ea] type 01 class 0x060400
[    0.363717] pci 0000:02:00.0: enabling Extended Tags
[    0.363809] pci 0000:02:00.0: supports D1 D2
[    0.363810] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.363887] pci 0000:02:00.0: PTM enabled, 4ns granularity
[    0.363945] pci 0000:00:1c.0: PCI bridge to [bus 02-6b]
[    0.363948] pci 0000:00:1c.0:   bridge window [mem 0x84000000-0xb20fffff]
[    0.363951] pci 0000:00:1c.0:   bridge window [mem 0x6000000000-0x6049ffffff 64bit pref]
[    0.364024] pci 0000:03:00.0: [8086:15ea] type 01 class 0x060400
[    0.364072] pci 0000:03:00.0: enabling Extended Tags
[    0.364164] pci 0000:03:00.0: supports D1 D2
[    0.364165] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.364283] pci 0000:03:01.0: [8086:15ea] type 01 class 0x060400
[    0.364331] pci 0000:03:01.0: enabling Extended Tags
[    0.364424] pci 0000:03:01.0: supports D1 D2
[    0.364425] pci 0000:03:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.364542] pci 0000:03:02.0: [8086:15ea] type 01 class 0x060400
[    0.364589] pci 0000:03:02.0: enabling Extended Tags
[    0.364679] pci 0000:03:02.0: supports D1 D2
[    0.364680] pci 0000:03:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.364799] pci 0000:03:04.0: [8086:15ea] type 01 class 0x060400
[    0.364846] pci 0000:03:04.0: enabling Extended Tags
[    0.364940] pci 0000:03:04.0: supports D1 D2
[    0.364940] pci 0000:03:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.365065] pci 0000:02:00.0: PCI bridge to [bus 03-6b]
[    0.365072] pci 0000:02:00.0:   bridge window [mem 0x84000000-0xb1ffffff]
[    0.365077] pci 0000:02:00.0:   bridge window [mem 0x6000000000-0x6049ffffff 64bit pref]
[    0.365136] pci 0000:04:00.0: [8086:15eb] type 00 class 0x088000
[    0.365151] pci 0000:04:00.0: reg 0x10: [mem 0xb1f00000-0xb1f3ffff]
[    0.365158] pci 0000:04:00.0: reg 0x14: [mem 0xb1f40000-0xb1f40fff]
[    0.365200] pci 0000:04:00.0: enabling Extended Tags
[    0.365301] pci 0000:04:00.0: supports D1 D2
[    0.365301] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.365418] pci 0000:03:00.0: PCI bridge to [bus 04]
[    0.365425] pci 0000:03:00.0:   bridge window [mem 0xb1f00000-0xb1ffffff]
[    0.365465] pci 0000:03:01.0: PCI bridge to [bus 05-37]
[    0.365472] pci 0000:03:01.0:   bridge window [mem 0x9b000000-0xb1efffff]
[    0.365477] pci 0000:03:01.0:   bridge window [mem 0x6025000000-0x6049ffffff 64bit pref]
[    0.365546] pci 0000:38:00.0: [8086:15ec] type 00 class 0x0c0330
[    0.365566] pci 0000:38:00.0: reg 0x10: [mem 0x9af00000-0x9af0ffff]
[    0.365636] pci 0000:38:00.0: enabling Extended Tags
[    0.365750] pci 0000:38:00.0: supports D1 D2
[    0.365751] pci 0000:38:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.365842] pci 0000:38:00.0: 8.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s PCIe x4 link at 0000:03:02.0 (capable of 31.504 Gb/s with 8.0 GT/s PCIe x4 link)
[    0.365904] pci 0000:03:02.0: PCI bridge to [bus 38]
[    0.365911] pci 0000:03:02.0:   bridge window [mem 0x9af00000-0x9affffff]
[    0.365950] pci 0000:03:04.0: PCI bridge to [bus 39-6b]
[    0.365957] pci 0000:03:04.0:   bridge window [mem 0x84000000-0x9aefffff]
[    0.365962] pci 0000:03:04.0:   bridge window [mem 0x6000000000-0x6024ffffff 64bit pref]
[    0.366033] pci 0000:6c:00.0: [1179:011a] type 00 class 0x010802
[    0.366051] pci 0000:6c:00.0: reg 0x10: [mem 0xb4000000-0xb4003fff 64bit]
[    0.366243] pci 0000:00:1d.0: PCI bridge to [bus 6c]
[    0.366246] pci 0000:00:1d.0:   bridge window [mem 0xb4000000-0xb40fffff]
[    0.379272] ACPI: EC: interrupt unblocked
[    0.379273] ACPI: EC: event unblocked
[    0.379280] ACPI: EC: EC_CMD/EC_SC=0x934, EC_DATA=0x930
[    0.379280] ACPI: EC: GPE=0x6e
[    0.379281] ACPI: \_SB_.PCI0.LPCB.ECDV: Boot DSDT EC initialization complete
[    0.379282] ACPI: \_SB_.PCI0.LPCB.ECDV: EC: Used to handle transactions and events
[    0.379337] iommu: Default domain type: Translated 
[    0.379346] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    0.379346] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.379346] pci 0000:00:02.0: vgaarb: bridge control possible
[    0.379346] vgaarb: loaded
[    0.379346] SCSI subsystem initialized
[    0.379346] libata version 3.00 loaded.
[    0.379346] ACPI: bus type USB registered
[    0.379346] usbcore: registered new interface driver usbfs
[    0.379346] usbcore: registered new interface driver hub
[    0.379346] usbcore: registered new device driver usb
[    0.379346] pps_core: LinuxPPS API ver. 1 registered
[    0.379346] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.379346] PTP clock support registered
[    0.379346] EDAC MC: Ver: 3.0.0
[    0.379822] Registered efivars operations
[    0.379890] NetLabel: Initializing
[    0.379890] NetLabel:  domain hash size = 128
[    0.379891] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.379899] NetLabel:  unlabeled traffic allowed by default
[    0.379901] PCI: Using ACPI for IRQ routing
[    0.409379] PCI: pci_cache_line_size set to 64 bytes
[    0.409689] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
[    0.409690] e820: reserve RAM buffer [mem 0x4ea09000-0x4fffffff]
[    0.409690] e820: reserve RAM buffer [mem 0x51032000-0x53ffffff]
[    0.409691] e820: reserve RAM buffer [mem 0x5f6f7000-0x5fffffff]
[    0.409692] e820: reserve RAM buffer [mem 0x6270e018-0x63ffffff]
[    0.409692] e820: reserve RAM buffer [mem 0x62826000-0x63ffffff]
[    0.409693] e820: reserve RAM buffer [mem 0x66000000-0x67ffffff]
[    0.409693] e820: reserve RAM buffer [mem 0x88d800000-0x88fffffff]
[    0.410220] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.410224] hpet0: 8 comparators, 64-bit 24.000000 MHz counter
[    0.412279] clocksource: Switched to clocksource tsc-early
[    0.414011] VFS: Disk quotas dquot_6.6.0
[    0.414011] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.414011] pnp: PnP ACPI init
[    0.414011] system 00:00: [mem 0x40000000-0x403fffff] has been reserved
[    0.414011] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.414011] system 00:01: [io  0x1800-0x18fe] has been reserved
[    0.414011] system 00:01: [mem 0xfd000000-0xfd69ffff] has been reserved
[    0.414011] system 00:01: [mem 0xfd6c0000-0xfd6cffff] has been reserved
[    0.414011] system 00:01: [mem 0xfd6f0000-0xfdffffff] has been reserved
[    0.414011] system 00:01: [mem 0xfe000000-0xfe01ffff] could not be reserved
[    0.414011] system 00:01: [mem 0xfe200000-0xfe7fffff] has been reserved
[    0.414011] system 00:01: [mem 0xff000000-0xffffffff] has been reserved
[    0.414011] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.416658] system 00:02: [io  0x2000-0x20fe] has been reserved
[    0.416661] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.416752] system 00:03: [io  0x0680-0x069f] has been reserved
[    0.416753] system 00:03: [io  0x164e-0x164f] has been reserved
[    0.416755] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.416766] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.416830] system 00:05: [io  0x1854-0x1857] has been reserved
[    0.416832] system 00:05: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    0.416931] pnp 00:06: Plug and Play ACPI device, IDs PNP0303 (active)
[    0.416940] pnp 00:07: Plug and Play ACPI device, IDs DLL097e PNP0f13 (active)
[    0.417817] system 00:08: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.417818] system 00:08: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.417819] system 00:08: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.417820] system 00:08: [mem 0xe0000000-0xefffffff] has been reserved
[    0.417820] system 00:08: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.417821] system 00:08: [mem 0xfed90000-0xfed93fff] has been reserved
[    0.417822] system 00:08: [mem 0xfed45000-0xfed8ffff] has been reserved
[    0.417822] system 00:08: [mem 0xfee00000-0xfeefffff] has been reserved
[    0.417824] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.418096] system 00:09: [mem 0xfe038000-0xfe038fff] has been reserved
[    0.418098] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.421077] pnp: PnP ACPI: found 10 devices
[    0.426176] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.426210] NET: Registered protocol family 2
[    0.426301] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
[    0.426406] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.426594] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[    0.426638] TCP: Hash tables configured (established 262144 bind 65536)
[    0.426702] MPTCP token hash table entries: 32768 (order: 7, 786432 bytes, linear)
[    0.426766] UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    0.426824] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    0.426889] NET: Registered protocol family 1
[    0.426892] NET: Registered protocol family 44
[    0.426895] pci 0000:01:00.0: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
[    0.426898] pci 0000:03:01.0: bridge window [io  0x1000-0x0fff] to [bus 05-37] add_size 1000
[    0.426899] pci 0000:03:04.0: bridge window [io  0x1000-0x0fff] to [bus 39-6b] add_size 1000
[    0.426900] pci 0000:02:00.0: bridge window [io  0x1000-0x0fff] to [bus 03-6b] add_size 2000
[    0.426901] pci 0000:00:1c.0: bridge window [io  0x1000-0x0fff] to [bus 02-6b] add_size 3000
[    0.426909] pci 0000:00:15.0: BAR 0: assigned [mem 0x4010000000-0x4010000fff 64bit]
[    0.426953] pci 0000:00:15.1: BAR 0: assigned [mem 0x4010001000-0x4010001fff 64bit]
[    0.426996] pci 0000:00:1c.0: BAR 13: assigned [io  0x5000-0x7fff]
[    0.426998] pci 0000:00:1e.0: BAR 0: assigned [mem 0x4010002000-0x4010002fff 64bit]
[    0.427040] pci 0000:01:00.0: BAR 6: no space for [mem size 0x00080000 pref]
[    0.427041] pci 0000:01:00.0: BAR 6: failed to assign [mem size 0x00080000 pref]
[    0.427042] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.427043] pci 0000:00:01.0:   bridge window [io  0x3000-0x3fff]
[    0.427045] pci 0000:00:01.0:   bridge window [mem 0xb3000000-0xb3ffffff]
[    0.427046] pci 0000:00:01.0:   bridge window [mem 0x70000000-0x81ffffff 64bit pref]
[    0.427049] pci 0000:02:00.0: BAR 13: assigned [io  0x5000-0x6fff]
[    0.427050] pci 0000:03:01.0: BAR 13: assigned [io  0x5000-0x5fff]
[    0.427051] pci 0000:03:04.0: BAR 13: assigned [io  0x6000-0x6fff]
[    0.427052] pci 0000:03:00.0: PCI bridge to [bus 04]
[    0.427058] pci 0000:03:00.0:   bridge window [mem 0xb1f00000-0xb1ffffff]
[    0.427065] pci 0000:03:01.0: PCI bridge to [bus 05-37]
[    0.427066] pci 0000:03:01.0:   bridge window [io  0x5000-0x5fff]
[    0.427070] pci 0000:03:01.0:   bridge window [mem 0x9b000000-0xb1efffff]
[    0.427073] pci 0000:03:01.0:   bridge window [mem 0x6025000000-0x6049ffffff 64bit pref]
[    0.427078] pci 0000:03:02.0: PCI bridge to [bus 38]
[    0.427082] pci 0000:03:02.0:   bridge window [mem 0x9af00000-0x9affffff]
[    0.427089] pci 0000:03:04.0: PCI bridge to [bus 39-6b]
[    0.427090] pci 0000:03:04.0:   bridge window [io  0x6000-0x6fff]
[    0.427094] pci 0000:03:04.0:   bridge window [mem 0x84000000-0x9aefffff]
[    0.427097] pci 0000:03:04.0:   bridge window [mem 0x6000000000-0x6024ffffff 64bit pref]
[    0.427101] pci 0000:02:00.0: PCI bridge to [bus 03-6b]
[    0.427103] pci 0000:02:00.0:   bridge window [io  0x5000-0x6fff]
[    0.427107] pci 0000:02:00.0:   bridge window [mem 0x84000000-0xb1ffffff]
[    0.427109] pci 0000:02:00.0:   bridge window [mem 0x6000000000-0x6049ffffff 64bit pref]
[    0.427114] pci 0000:00:1c.0: PCI bridge to [bus 02-6b]
[    0.427115] pci 0000:00:1c.0:   bridge window [io  0x5000-0x7fff]
[    0.427117] pci 0000:00:1c.0:   bridge window [mem 0x84000000-0xb20fffff]
[    0.427119] pci 0000:00:1c.0:   bridge window [mem 0x6000000000-0x6049ffffff 64bit pref]
[    0.427122] pci 0000:00:1d.0: PCI bridge to [bus 6c]
[    0.427125] pci 0000:00:1d.0:   bridge window [mem 0xb4000000-0xb40fffff]
[    0.427130] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.427130] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.427131] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.427132] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff window]
[    0.427132] pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff window]
[    0.427133] pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff window]
[    0.427134] pci_bus 0000:00: resource 10 [mem 0x000cc000-0x000cffff window]
[    0.427134] pci_bus 0000:00: resource 11 [mem 0x000d0000-0x000d3fff window]
[    0.427135] pci_bus 0000:00: resource 12 [mem 0x000d4000-0x000d7fff window]
[    0.427135] pci_bus 0000:00: resource 13 [mem 0x000d8000-0x000dbfff window]
[    0.427136] pci_bus 0000:00: resource 14 [mem 0x000dc000-0x000dffff window]
[    0.427137] pci_bus 0000:00: resource 15 [mem 0x000e0000-0x000e3fff window]
[    0.427137] pci_bus 0000:00: resource 16 [mem 0x000e4000-0x000e7fff window]
[    0.427138] pci_bus 0000:00: resource 17 [mem 0x000e8000-0x000ebfff window]
[    0.427138] pci_bus 0000:00: resource 18 [mem 0x000ec000-0x000effff window]
[    0.427139] pci_bus 0000:00: resource 19 [mem 0x000f0000-0x000fffff window]
[    0.427140] pci_bus 0000:00: resource 20 [mem 0x6e800000-0xdfffffff window]
[    0.427140] pci_bus 0000:00: resource 21 [mem 0x4000000000-0x7fffffffff window]
[    0.427141] pci_bus 0000:00: resource 22 [mem 0xfc800000-0xfe7fffff window]
[    0.427142] pci_bus 0000:01: resource 0 [io  0x3000-0x3fff]
[    0.427142] pci_bus 0000:01: resource 1 [mem 0xb3000000-0xb3ffffff]
[    0.427143] pci_bus 0000:01: resource 2 [mem 0x70000000-0x81ffffff 64bit pref]
[    0.427143] pci_bus 0000:02: resource 0 [io  0x5000-0x7fff]
[    0.427144] pci_bus 0000:02: resource 1 [mem 0x84000000-0xb20fffff]
[    0.427145] pci_bus 0000:02: resource 2 [mem 0x6000000000-0x6049ffffff 64bit pref]
[    0.427145] pci_bus 0000:03: resource 0 [io  0x5000-0x6fff]
[    0.427146] pci_bus 0000:03: resource 1 [mem 0x84000000-0xb1ffffff]
[    0.427146] pci_bus 0000:03: resource 2 [mem 0x6000000000-0x6049ffffff 64bit pref]
[    0.427147] pci_bus 0000:04: resource 1 [mem 0xb1f00000-0xb1ffffff]
[    0.427148] pci_bus 0000:05: resource 0 [io  0x5000-0x5fff]
[    0.427148] pci_bus 0000:05: resource 1 [mem 0x9b000000-0xb1efffff]
[    0.427149] pci_bus 0000:05: resource 2 [mem 0x6025000000-0x6049ffffff 64bit pref]
[    0.427150] pci_bus 0000:38: resource 1 [mem 0x9af00000-0x9affffff]
[    0.427150] pci_bus 0000:39: resource 0 [io  0x6000-0x6fff]
[    0.427151] pci_bus 0000:39: resource 1 [mem 0x84000000-0x9aefffff]
[    0.427152] pci_bus 0000:39: resource 2 [mem 0x6000000000-0x6024ffffff 64bit pref]
[    0.427153] pci_bus 0000:6c: resource 1 [mem 0xb4000000-0xb40fffff]
[    0.427274] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.427930] PCI: CLS 0 bytes, default 64
[    0.427952] Trying to unpack rootfs image as initramfs...
[    0.520139] Freeing initrd memory: 23356K
[    0.520156] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.520158] software IO TLB: mapped [mem 0x000000005b6f7000-0x000000005f6f7000] (64MB)
[    0.520721] check: Scanning for low memory corruption every 60 seconds
[    0.520924] Initialise system trusted keyrings
[    0.520930] Key type blacklist registered
[    0.520962] workingset: timestamp_bits=41 max_order=23 bucket_order=0
[    0.521546] zbud: loaded
[    0.526952] Key type asymmetric registered
[    0.526953] Asymmetric key parser 'x509' registered
[    0.526956] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
[    0.526975] io scheduler mq-deadline registered
[    0.526976] io scheduler kyber registered
[    0.526989] io scheduler bfq registered
[    0.527057] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[    0.529247] pcieport 0000:00:01.0: PME: Signaling with IRQ 120
[    0.529309] pcieport 0000:00:1c.0: PME: Signaling with IRQ 121
[    0.529322] pcieport 0000:00:1c.0: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    0.529508] pcieport 0000:00:1d.0: PME: Signaling with IRQ 122
[    0.529900] pcieport 0000:03:01.0: pciehp: Slot #1 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    0.530240] pcieport 0000:03:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    0.530371] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    0.530392] efifb: probing for efifb
[    0.530399] efifb: framebuffer at 0x4000000000, using 36000k, total 36000k
[    0.530400] efifb: mode is 3840x2400x32, linelength=15360, pages=1
[    0.530400] efifb: scrolling: redraw
[    0.530401] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    0.530443] Console: switching to colour frame buffer device 240x75
[    0.539897] fb0: EFI VGA frame buffer device
[    0.539902] intel_idle: MWAIT substates: 0x11142120
[    0.540094] Monitor-Mwait will be used to enter C-1 state
[    0.540121] Monitor-Mwait will be used to enter C-2 state
[    0.540125] Monitor-Mwait will be used to enter C-3 state
[    0.540128] ACPI: \_SB_.PR00: Found 3 idle states
[    0.540129] intel_idle: v0.5.1 model 0xA5
[    0.540315] intel_idle: Local APIC timer is reliable in all C-states
[    0.541099] ACPI: AC Adapter [AC] (on-line)
[    0.541135] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
[    0.543201] ACPI: Lid Switch [LID0]
[    0.543234] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[    0.543265] ACPI: Power Button [PBTN]
[    0.546017] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    0.546810] serial 0000:00:13.0: enabling device (0000 -> 0002)
[    0.547853] Non-volatile memory driver v1.3
[    0.547854] AMD-Vi: AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
[    0.547854] AMD-Vi: AMD IOMMUv2 functionality not available on this system
[    0.548802] nvme 0000:6c:00.0: platform quirk: setting simple suspend
[    0.548817] nvme nvme0: pci function 0000:6c:00.0
[    0.548842] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.548844] ehci-pci: EHCI PCI platform driver
[    0.548848] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    0.548849] ohci-pci: OHCI PCI platform driver
[    0.548853] uhci_hcd: USB Universal Host Controller Interface driver
[    0.548901] usbcore: registered new interface driver usbserial_generic
[    0.548903] usbserial: USB Serial support registered for generic
[    0.548936] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[    0.549378] i8042: Warning: Keylock active
[    0.552465] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.552491] serio: i8042 AUX port at 0x60,0x64 irq 12
[    0.552712] rtc_cmos 00:04: RTC can wake from S4
[    0.553855] rtc_cmos 00:04: registered as rtc0
[    0.554237] rtc_cmos 00:04: setting system clock to 2021-03-06T01:17:18 UTC (1614993438)
[    0.554244] rtc_cmos 00:04: alarms up to one month, y3k, 242 bytes nvram
[    0.554295] intel_pstate: Intel P-state driver initializing
[    0.554882] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
[    0.555285] intel_pstate: HWP enabled
[    0.555390] ledtrig-cpu: registered to indicate activity on CPUs
[    0.576597] nvme nvme0: 12/0/0 default/read/poll queues
[    0.586364]  nvme0n1: p1 p2 p5
[    0.587194] pstore: Registered efi as persistent store backend
[    0.587201] hid: raw HID events driver (C) Jiri Kosina
[    0.587249] intel_pmc_core INT33A1:00:  initialized
[    0.587312] drop_monitor: Initializing network drop monitor service
[    0.587348] Initializing XFRM netlink socket
[    0.587405] NET: Registered protocol family 10
[    0.590020] Segment Routing with IPv6
[    0.590021] RPL Segment Routing with IPv6
[    0.590031] NET: Registered protocol family 17
[    0.590452] microcode: sig=0xa0652, pf=0x20, revision=0xe0
[    0.590607] microcode: Microcode Update Driver: v2.2.
[    0.590610] IPI shorthand broadcast: enabled
[    0.590615] sched_clock: Marking stable (590018778, 379655)->(595085037, -4686604)
[    0.590664] registered taskstats version 1
[    0.590669] Loading compiled-in X.509 certificates
[    0.592144] Loaded X.509 cert 'Build time autogenerated kernel key: 298c74e799b1da1e04953d75dc402ed94591c68e'
[    0.592207] zswap: loaded using pool lz4/z3fold
[    0.592318] Key type ._fscrypt registered
[    0.592319] Key type .fscrypt registered
[    0.592319] Key type fscrypt-provisioning registered
[    0.592422] pstore: Using crash dump compression: zstd
[    0.600391] PM:   Magic number: 13:253:255
[    0.600438] acpi device:94: hash matches
[    0.600470] memory memory129: hash matches
[    0.600533] RAS: Correctable Errors collector initialized.
[    0.602032] battery: ACPI: Battery Slot [BAT0] (battery present)
[    0.602577] Freeing unused decrypted memory: 2036K
[    0.602728] Freeing unused kernel image (initmem) memory: 1704K
[    0.626597] Write protecting the kernel read-only data: 26624k
[    0.627094] Freeing unused kernel image (text/rodata gap) memory: 2036K
[    0.627280] Freeing unused kernel image (rodata/data gap) memory: 1432K
[    0.635862] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    0.635865] rodata_test: all tests were successful
[    0.635868] Run /init as init process
[    0.635868]   with arguments:
[    0.635869]     /init
[    0.635870]   with environment:
[    0.635870]     HOME=/
[    0.635870]     TERM=linux
[    0.710278] random: crng init done
[    0.710283] systemd[1]: Successfully credited entropy passed from boot loader.
[    0.711278] systemd[1]: systemd 247.3-1-arch running in system mode. (+PAM +AUDIT -SELINUX -IMA -APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +ZSTD +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=hybrid)
[    0.711342] systemd[1]: Detected architecture x86-64.
[    0.711343] systemd[1]: Running in initial RAM disk.
[    0.737174] systemd[1]: Initializing machine ID from random generator.
[    0.759096] systemd[1]: Queued start job for default target Initrd Default Target.
[    0.764760] systemd[1]: Created slice system-systemd\x2dcryptsetup.slice.
[    0.764878] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[    0.764970] systemd[1]: Reached target Local File Systems.
[    0.765026] systemd[1]: Reached target Paths.
[    0.765074] systemd[1]: Reached target Slices.
[    0.765121] systemd[1]: Reached target Swap.
[    0.765166] systemd[1]: Reached target Timers.
[    0.765275] systemd[1]: Listening on Journal Audit Socket.
[    0.765370] systemd[1]: Listening on Journal Socket (/dev/log).
[    0.765471] systemd[1]: Listening on Journal Socket.
[    0.765561] systemd[1]: Listening on udev Control Socket.
[    0.765640] systemd[1]: Listening on udev Kernel Socket.
[    0.765703] systemd[1]: Reached target Sockets.
[    0.766147] systemd[1]: Starting Create list of static device nodes for the current kernel...
[    0.767126] systemd[1]: Starting Journal Service...
[    0.767645] systemd[1]: Starting Load Kernel Modules...
[    0.768137] systemd[1]: Starting Coldplug All udev Devices...
[    0.768602] systemd[1]: Finished Create list of static device nodes for the current kernel.
[    0.769103] systemd[1]: Starting Create Static Device Nodes in /dev...
[    0.771075] usbcore: registered new interface driver usbhid
[    0.771076] usbhid: USB HID core driver
[    0.771601] systemd[1]: Finished Load Kernel Modules.
[    0.771938] systemd[1]: Finished Create Static Device Nodes in /dev.
[    0.772624] systemd[1]: Starting Rule-based Manager for Device Events and Files...
[    0.792871] systemd[1]: Started Rule-based Manager for Device Events and Files.
[    0.792998] audit: type=1130 audit(1614993438.733:2): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udevd comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
[    0.807455] systemd[1]: Started Journal Service.
[    0.807543] audit: type=1130 audit(1614993438.749:3): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journald comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
[    0.818824] audit: type=1130 audit(1614993438.759:4): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udev-trigger comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
[    0.822579] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    0.822583] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[    0.823653] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x110 quirks 0x0000000000009810
[    0.823657] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    0.823818] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[    0.823819] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.823820] usb usb1: Product: xHCI Host Controller
[    0.823821] usb usb1: Manufacturer: Linux 5.10.16-arch1-1 xhci-hcd
[    0.823821] usb usb1: SerialNumber: 0000:00:14.0
[    0.823892] hub 1-0:1.0: USB hub found
[    0.823909] hub 1-0:1.0: 16 ports detected
[    0.825274] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    0.825276] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[    0.825278] xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
[    0.825316] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
[    0.825317] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.825318] usb usb2: Product: xHCI Host Controller
[    0.825318] usb usb2: Manufacturer: Linux 5.10.16-arch1-1 xhci-hcd
[    0.825319] usb usb2: SerialNumber: 0000:00:14.0
[    0.825373] hub 2-0:1.0: USB hub found
[    0.825386] hub 2-0:1.0: 10 ports detected
[    0.825618] usb: port power management may be unreliable
[    0.826355] xhci_hcd 0000:38:00.0: xHCI Host Controller
[    0.826361] xhci_hcd 0000:38:00.0: new USB bus registered, assigned bus number 3
[    0.827491] xhci_hcd 0000:38:00.0: hcc params 0x200077c1 hci version 0x110 quirks 0x0000000200009810
[    0.827684] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[    0.827685] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.827687] usb usb3: Product: xHCI Host Controller
[    0.827688] usb usb3: Manufacturer: Linux 5.10.16-arch1-1 xhci-hcd
[    0.827689] usb usb3: SerialNumber: 0000:38:00.0
[    0.827780] hub 3-0:1.0: USB hub found
[    0.827792] hub 3-0:1.0: 2 ports detected
[    0.828173] xhci_hcd 0000:38:00.0: xHCI Host Controller
[    0.828175] xhci_hcd 0000:38:00.0: new USB bus registered, assigned bus number 4
[    0.828177] xhci_hcd 0000:38:00.0: Host supports USB 3.1 Enhanced SuperSpeed
[    0.828213] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
[    0.828214] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.828215] usb usb4: Product: xHCI Host Controller
[    0.828216] usb usb4: Manufacturer: Linux 5.10.16-arch1-1 xhci-hcd
[    0.828217] usb usb4: SerialNumber: 0000:38:00.0
[    0.828285] hub 4-0:1.0: USB hub found
[    0.828297] hub 4-0:1.0: 2 ports detected
[    0.829315] cryptd: max_cpu_qlen set to 1000
[    0.832256] AVX2 version of gcm_enc/dec engaged.
[    0.832257] AES CTR mode by8 optimization enabled
[    0.853870] device-mapper: uevent: version 1.0.3
[    0.853908] device-mapper: ioctl: 4.43.0-ioctl (2020-10-01) initialised: dm-devel@redhat.com
[    0.860478] audit: type=1130 audit(1614993438.803:5): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-ask-password-console comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
[    1.153282] usb 1-3: new full-speed USB device number 2 using xhci_hcd
[    1.296910] usb 1-3: New USB device found, idVendor=046d, idProduct=c52b, bcdDevice=12.03
[    1.296915] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.296920] usb 1-3: Product: USB Receiver
[    1.296923] usb 1-3: Manufacturer: Logitech
[    1.299796] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.0/0003:046D:C52B.0001/input/input4
[    1.353794] hid-generic 0003:046D:C52B.0001: input,hidraw0: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:00:14.0-3/input0
[    1.356399] input: Logitech USB Receiver Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.1/0003:046D:C52B.0002/input/input5
[    1.356628] input: Logitech USB Receiver Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.1/0003:046D:C52B.0002/input/input6
[    1.413614] input: Logitech USB Receiver System Control as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.1/0003:046D:C52B.0002/input/input7
[    1.413972] hid-generic 0003:046D:C52B.0002: input,hiddev96,hidraw1: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:00:14.0-3/input1
[    1.415863] hid-generic 0003:046D:C52B.0003: hiddev97,hidraw2: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:14.0-3/input2
[    1.530017] tsc: Refined TSC clocksource calibration: 2591.993 MHz
[    1.530035] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x255cb052b3b, max_idle_ns: 440795338616 ns
[    1.530114] clocksource: Switched to clocksource tsc
[    1.536579] usb 1-10: new full-speed USB device number 3 using xhci_hcd
[    1.679412] usb 1-10: New USB device found, idVendor=27c6, idProduct=533c, bcdDevice= 1.00
[    1.679419] usb 1-10: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.679422] usb 1-10: Product: FingerPrint
[    1.679425] usb 1-10: Manufacturer: Goodix
[    1.731789] logitech-djreceiver 0003:046D:C52B.0003: hiddev96,hidraw0: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:14.0-3/input2
[    1.803351] usb 1-11: new high-speed USB device number 4 using xhci_hcd
[    1.845727] input: Logitech Wireless Device PID:2010 Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:2010.0004/input/input9
[    1.846129] input: Logitech Wireless Device PID:2010 Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:2010.0004/input/input10
[    1.846265] input: Logitech Wireless Device PID:2010 System Control as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:2010.0004/input/input11
[    1.846404] hid-generic 0003:046D:2010.0004: input,hidraw1: USB HID v1.11 Keyboard [Logitech Wireless Device PID:2010] on usb-0000:00:14.0-3/input2:1
[    1.846896] input: Logitech Wireless Device PID:101a Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:101A.0005/input/input15
[    1.847263] hid-generic 0003:046D:101A.0005: input,hidraw2: USB HID v1.11 Mouse [Logitech Wireless Device PID:101a] on usb-0000:00:14.0-3/input2:2
[    1.848826] input: Logitech Wireless Device PID:406d Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:406D.0006/input/input19
[    1.849020] hid-generic 0003:046D:406D.0006: input,hidraw3: USB HID v1.11 Mouse [Logitech Wireless Device PID:406d] on usb-0000:00:14.0-3/input2:3
[    1.850438] input: Logitech Wireless Device PID:200a Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:200A.0007/input/input23
[    1.850589] input: Logitech Wireless Device PID:200a Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:200A.0007/input/input24
[    1.850633] input: Logitech Wireless Device PID:200a System Control as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:200A.0007/input/input25
[    1.850681] hid-generic 0003:046D:200A.0007: input,hidraw4: USB HID v1.11 Keyboard [Logitech Wireless Device PID:200a] on usb-0000:00:14.0-3/input2:4
[    1.946523] usb 1-11: New USB device found, idVendor=0bda, idProduct=5510, bcdDevice=91.79
[    1.946534] usb 1-11: New USB device strings: Mfr=3, Product=1, SerialNumber=2
[    1.946538] usb 1-11: Product: Integrated_Webcam_HD
[    1.946541] usb 1-11: Manufacturer: CN02FP438LG0009GA9B8A02
[    1.946543] usb 1-11: SerialNumber: 200901010001
[    2.056770] input: Logitech K800 as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:2010.0004/input/input29
[    2.057325] logitech-hidpp-device 0003:046D:2010.0004: input,hidraw1: USB HID v1.11 Keyboard [Logitech K800] on usb-0000:00:14.0-3/input2:1
[    2.069989] usb 1-14: new full-speed USB device number 5 using xhci_hcd
[    2.096561] input: Logitech Performance MX as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:101A.0005/input/input30
[    2.096928] logitech-hidpp-device 0003:046D:101A.0005: input,hidraw2: USB HID v1.11 Mouse [Logitech Performance MX] on usb-0000:00:14.0-3/input2:2
[    2.136505] input: Logitech M705 as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:406D.0006/input/input31
[    2.136912] logitech-hidpp-device 0003:046D:406D.0006: input,hidraw3: USB HID v1.11 Mouse [Logitech M705] on usb-0000:00:14.0-3/input2:3
[    2.212597] usb 1-14: New USB device found, idVendor=8087, idProduct=0026, bcdDevice= 0.02
[    2.212603] usb 1-14: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.322767] input: Logitech K350 as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:200A.0007/input/input32
[    2.323211] logitech-hidpp-device 0003:046D:200A.0007: input,hidraw4: USB HID v1.11 Keyboard [Logitech K350] on usb-0000:00:14.0-3/input2:4
[   27.691367] Key type encrypted registered
[   27.701251] audit: type=1130 audit(1614993465.642:6): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-cryptsetup@cryptlvm comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
[   27.731211] audit: type=1130 audit(1614993465.672:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck-root comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
[   27.756983] EXT4-fs (dm-2): mounted filesystem with ordered data mode. Opts: (null)
[   27.762438] audit: type=1334 audit(1614993465.702:8): prog-id=4 op=UNLOAD
[   27.762440] audit: type=1334 audit(1614993465.702:9): prog-id=3 op=UNLOAD
[   27.762823] audit: type=1334 audit(1614993465.702:10): prog-id=6 op=UNLOAD
[   27.762922] audit: type=1334 audit(1614993465.702:11): prog-id=5 op=UNLOAD
[   27.808497] audit: type=1334 audit(1614993465.749:12): prog-id=7 op=LOAD
[   27.808884] audit: type=1334 audit(1614993465.749:13): prog-id=8 op=LOAD
[   27.813230] audit: type=1334 audit(1614993465.755:14): prog-id=9 op=LOAD
[   27.813328] audit: type=1334 audit(1614993465.755:15): prog-id=10 op=LOAD
[   27.928971] systemd-journald[193]: Received SIGTERM from PID 1 (systemd).
[   27.989355] systemd[1]: systemd 247.3-1-arch running in system mode. (+PAM +AUDIT -SELINUX -IMA -APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +ZSTD +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=hybrid)
[   28.003343] systemd[1]: Detected architecture x86-64.
[   28.010500] systemd[1]: Set hostname to <vlovich>.
[   28.112136] systemd[1]: initrd-switch-root.service: Succeeded.
[   28.112341] systemd[1]: Stopped Switch Root.
[   28.114349] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
[   28.114521] systemd[1]: Created slice system-getty.slice.
[   28.116588] systemd[1]: Created slice system-modprobe.slice.
[   28.118638] systemd[1]: Created slice system-systemd\x2dfsck.slice.
[   28.120681] systemd[1]: Created slice User and Session Slice.
[   28.122617] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[   28.124609] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[   28.126653] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[   28.128661] systemd[1]: Reached target Local Encrypted Volumes.
[   28.130638] systemd[1]: Reached target Login Prompts.
[   28.132597] systemd[1]: Stopped target Switch Root.
[   28.134945] systemd[1]: Stopped target Initrd File Systems.
[   28.136899] systemd[1]: Stopped target Initrd Root File System.
[   28.138825] systemd[1]: Reached target Paths.
[   28.140705] systemd[1]: Reached target Remote File Systems.
[   28.142530] systemd[1]: Reached target Slices.
[   28.144345] systemd[1]: Reached target Swap.
[   28.146142] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[   28.148219] systemd[1]: Listening on LVM2 poll daemon socket.
[   28.150904] systemd[1]: Listening on Process Core Dump Socket.
[   28.152804] systemd[1]: Listening on udev Control Socket.
[   28.154640] systemd[1]: Listening on udev Kernel Socket.
[   28.156934] systemd[1]: Mounting Huge Pages File System...
[   28.159105] systemd[1]: Mounting POSIX Message Queue File System...
[   28.161254] systemd[1]: Mounting Kernel Debug File System...
[   28.163378] systemd[1]: Mounting Kernel Trace File System...
[   28.166499] systemd[1]: Mounting Temporary Directory (/tmp)...
[   28.168708] systemd[1]: Starting Create list of static device nodes for the current kernel...
[   28.170903] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[   28.173080] systemd[1]: Starting Load Kernel Module configfs...
[   28.175254] systemd[1]: Starting Load Kernel Module drm...
[   28.177423] systemd[1]: Starting Load Kernel Module fuse...
[   28.179664] Linux agpgart interface v0.103
[   28.179842] systemd[1]: Starting Set Up Additional Binary Formats...
[   28.181628] systemd[1]: systemd-cryptsetup@cryptlvm.service: Succeeded.
[   28.181735] systemd[1]: Stopped systemd-cryptsetup@cryptlvm.service.
[   28.183513] systemd[1]: Stopped Journal Service.
[   28.186163] systemd[1]: Starting Journal Service...
[   28.186462] fuse: init (API version 7.32)
[   28.188745] systemd[1]: Starting Load Kernel Modules...
[   28.190887] systemd[1]: Starting Remount Root and Kernel File Systems...
[   28.192591] systemd[1]: Condition check resulted in Repartition Root Disk being skipped.
[   28.193071] systemd[1]: Starting Coldplug All udev Devices...
[   28.194444] EXT4-fs (dm-2): re-mounted. Opts: (null)
[   28.195229] systemd[1]: sysroot.mount: Succeeded.
[   28.195679] systemd[1]: Mounted Huge Pages File System.
[   28.197419] systemd[1]: Mounted POSIX Message Queue File System.
[   28.198300] usbcore: registered new device driver usbip-host
[   28.199174] systemd[1]: Mounted Kernel Debug File System.
[   28.201027] systemd[1]: Mounted Kernel Trace File System.
[   28.202707] systemd[1]: Mounted Temporary Directory (/tmp).
[   28.204652] systemd[1]: Finished Create list of static device nodes for the current kernel.
[   28.206544] systemd[1]: modprobe@configfs.service: Succeeded.
[   28.206739] systemd[1]: Finished Load Kernel Module configfs.
[   28.208502] systemd[1]: Started Journal Service.
[   28.229712] systemd-journald[441]: Received client request to flush runtime journal.
[   28.330112] input: Intel HID events as /devices/platform/INT33D5:00/input/input33
[   28.330245] intel-hid INT33D5:00: platform supports 5 button array
[   28.330264] input: Intel HID 5 button array as /devices/platform/INT33D5:00/input/input34
[   28.394837] acpi PNP0C14:02: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:01)
[   28.394875] wmi_bus wmi_bus-PNP0C14:03: WQBC data block query control method not found
[   28.394876] acpi PNP0C14:03: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:01)
[   28.405296] acpi PNP0C14:04: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:01)
[   28.409891] acpi PNP0C14:05: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:01)
[   28.410183] acpi PNP0C14:06: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:01)
[   28.410232] acpi PNP0C14:07: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:01)
[   28.531095] intel_pch_thermal 0000:00:12.0: enabling device (0000 -> 0002)
[   28.534994] tpm_tis STM0125:00: 2.0 TPM (device-id 0x0, rev-id 78)
[   28.535653] proc_thermal 0000:00:04.0: enabling device (0000 -> 0002)
[   28.540354] intel_rapl_common: Found RAPL domain package
[   28.540356] intel_rapl_common: Found RAPL domain dram
[   28.540471] proc_thermal 0000:00:04.0: Creating sysfs group for PROC_THERMAL_PCI
[   28.545757] mei_me 0000:00:16.0: enabling device (0000 -> 0002)
[   28.549823] intel-lpss 0000:00:15.0: enabling device (0000 -> 0002)
[   28.550102] idma64 idma64.0: Found Intel integrated DMA 64-bit
[   28.550680] mc: Linux media interface: v0.10
[   28.557543] i2c_hid i2c-ELAN29E2:00: supply vdd not found, using dummy regulator
[   28.557560] i2c_hid i2c-ELAN29E2:00: supply vddl not found, using dummy regulator
[   28.573195] intel-lpss 0000:00:15.1: enabling device (0000 -> 0002)
[   28.573485] idma64 idma64.1: Found Intel integrated DMA 64-bit
[   28.580770] i2c_hid i2c-DELL097E:00: supply vdd not found, using dummy regulator
[   28.580799] i2c_hid i2c-DELL097E:00: supply vddl not found, using dummy regulator
[   28.596487] intel-lpss 0000:00:1e.0: enabling device (0000 -> 0002)
[   28.596722] idma64 idma64.2: Found Intel integrated DMA 64-bit
[   28.623470] ioremap error for 0x65e93000-0x65e94000, requested 0x2, got 0x0
[   28.626565] ucsi_acpi: probe of USBC000:00 failed with error -12
[   28.657199] mousedev: PS/2 mouse device common for all mice
[   28.660140] videodev: Linux video capture interface: v2.00
[   28.661178] Bluetooth: Core ver 2.22
[   28.661193] NET: Registered protocol family 31
[   28.661194] Bluetooth: HCI device and connection manager initialized
[   28.661196] Bluetooth: HCI socket layer initialized
[   28.661198] Bluetooth: L2CAP socket layer initialized
[   28.661201] Bluetooth: SCO socket layer initialized
[   28.668705] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[   28.669836] thunderbolt 0000:04:00.0: enabling device (0000 -> 0002)
[   28.670953] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[   28.671747] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[   28.671749] cfg80211: failed to load regulatory.db
[   28.680233] uvcvideo: Found UVC 1.10 device Integrated_Webcam_HD (0bda:5510)
[   28.681046] input: Integrated_Webcam_HD: Integrate as /devices/pci0000:00/0000:00:14.0/usb1/1-11/1-11:1.0/input/input35
[   28.681287] uvcvideo: Found UVC 1.50 device Integrated_Webcam_HD (0bda:5510)
[   28.681545] input: Integrated_Webcam_HD: Integrate as /devices/pci0000:00/0000:00:14.0/usb1/1-11/1-11:1.2/input/input36
[   28.681574] usbcore: registered new interface driver uvcvideo
[   28.681575] USB Video Class driver (1.1.1)
[   28.704786] input: ELAN29E2:00 04F3:29E2 Touchscreen as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-ELAN29E2:00/0018:04F3:29E2.0008/input/input37
[   28.704857] input: ELAN29E2:00 04F3:29E2 as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-ELAN29E2:00/0018:04F3:29E2.0008/input/input38
[   28.704882] input: ELAN29E2:00 04F3:29E2 as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-ELAN29E2:00/0018:04F3:29E2.0008/input/input39
[   28.704910] hid-generic 0018:04F3:29E2.0008: input,hidraw5: I2C HID v1.00 Device [ELAN29E2:00 04F3:29E2] on i2c-ELAN29E2:00
[   28.727287] input: DELL097E:00 04F3:311C Mouse as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-DELL097E:00/0018:04F3:311C.0009/input/input41
[   28.727369] input: DELL097E:00 04F3:311C Touchpad as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-DELL097E:00/0018:04F3:311C.0009/input/input42
[   28.727522] hid-generic 0018:04F3:311C.0009: input,hidraw6: I2C HID v1.00 Mouse [DELL097E:00 04F3:311C] on i2c-DELL097E:00
[   28.783486] usbcore: registered new interface driver btusb
[   28.784291] Bluetooth: hci0: Firmware revision 0.0 build 26 week 3 2021
[   28.823447] input: PC Speaker as /devices/platform/pcspkr/input/input44
[   28.824675] i801_smbus 0000:00:1f.4: enabling device (0000 -> 0003)
[   28.824861] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[   28.824913] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[   28.829567] Intel(R) Wireless WiFi driver for Linux
[   28.829610] iwlwifi 0000:00:14.3: enabling device (0000 -> 0002)
[   28.835200] iwlwifi 0000:00:14.3: api flags index 2 larger than supported by driver
[   28.835210] iwlwifi 0000:00:14.3: TLV_FW_FSEQ_VERSION: FSEQ Version: 65.3.35.22
[   28.835471] iwlwifi 0000:00:14.3: loaded firmware version 59.601f3a66.0 QuZ-a0-hr-b0-59.ucode op_mode iwlmvm
[   28.835593] RAPL PMU: API unit is 2^-32 Joules, 5 fixed counters, 655360 ms ovfl timer
[   28.835594] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[   28.835594] RAPL PMU: hw unit of domain package 2^-14 Joules
[   28.835595] RAPL PMU: hw unit of domain dram 2^-14 Joules
[   28.835595] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
[   28.835595] RAPL PMU: hw unit of domain psys 2^-14 Joules
[   28.838299] i2c i2c-2: 2/2 memory slots populated (from DMI)
[   28.838712] i2c i2c-2: Successfully instantiated SPD at 0x50
[   28.908369] Setting dangerous option enable_fbc - tainting kernel
[   28.909396] checking generic (4000000000 2328000) vs hw (604a000000 1000000)
[   28.909397] checking generic (4000000000 2328000) vs hw (4000000000 10000000)
[   28.909398] fb0: switching to inteldrmfb from EFI VGA
[   28.909442] Console: switching to colour dummy device 80x25
[   28.909467] i915 0000:00:02.0: vgaarb: deactivate vga console
[   28.914398] i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
[   28.915415] i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/kbl_dmc_ver1_04.bin (v1.4)
[   28.931651] [drm] Initialized i915 1.6.0 20200917 for 0000:00:02.0 on minor 0
[   28.932393] ACPI: Video Device [PEGP] (multi-head: no  rom: yes  post: no)
[   28.932610] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/LNXVIDEO:00/input/input46
[   28.934364] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[   28.934880] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input47
[   28.942905] fbcon: i915drmfb (fb0) is primary device
[   29.183799] intel_rapl_common: Found RAPL domain package
[   29.183800] intel_rapl_common: Found RAPL domain core
[   29.183800] intel_rapl_common: Found RAPL domain uncore
[   29.183801] intel_rapl_common: Found RAPL domain dram
[   29.183802] intel_rapl_common: Found RAPL domain psys
[   29.187219] iwlwifi 0000:00:14.3: Detected Intel(R) Wi-Fi 6 AX201 160MHz, REV=0x354
[   29.187985] input: Dell WMI hotkeys as /devices/platform/PNP0C14:03/wmi_bus/wmi_bus-PNP0C14:03/9DBB5994-A997-11DA-B012-B622A1EF5492/input/input48
[   29.188423] mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_component_ops [i915])
[   29.200034] dw-apb-uart.2: ttyS4 at MMIO 0x4010002000 (irq = 20, base_baud = 7500000) is a 16550A
[   29.202323] iTCO_vendor_support: vendor-support=0
[   29.204662] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[   29.204714] iTCO_wdt: Found a Intel PCH TCO device (Version=6, TCOBASE=0x0400)
[   29.204777] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[   29.207519] ee1004 2-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
[   29.288125] ish-hid {33AECD58-B679-4E54-9BD9-A04D34F0C226}: [hid-ish]: enum_devices_done OK, num_hid_devices=1
[   29.289224] hid-generic 001F:8087:0AC2.000A: hidraw7: <UNKNOWN> HID v2.00 Device [hid-ishtp 8087:0AC2] on 
[   29.294686] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
[   29.294719] snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002)
[   29.337645] psmouse serio1: elantech: assuming hardware version 4 (with firmware version 0x0f5002)
[   29.338092] psmouse serio1: elantech: elantech_send_cmd query 0x02 failed.
[   29.338093] psmouse serio1: elantech: failed to query capabilities.
[   29.371555] iwlwifi 0000:00:14.3: base HW address: c0:3c:59:11:eb:bc
[   29.383484] thermal thermal_zone13: failed to read out thermal zone (-61)
[   29.385025] iwlwifi 0000:00:14.3 wlp0s20f3: renamed from wlan0
[   29.420478] input: ELAN29E2:00 04F3:29E2 as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-ELAN29E2:00/0018:04F3:29E2.0008/input/input49
[   29.476683] input: ELAN29E2:00 04F3:29E2 UNKNOWN as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-ELAN29E2:00/0018:04F3:29E2.0008/input/input50
[   29.476754] input: ELAN29E2:00 04F3:29E2 UNKNOWN as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-ELAN29E2:00/0018:04F3:29E2.0008/input/input51
[   29.476793] hid-multitouch 0018:04F3:29E2.0008: input,hidraw5: I2C HID v1.00 Device [ELAN29E2:00 04F3:29E2] on i2c-ELAN29E2:00
[   29.485570] input: DELL097E:00 04F3:311C Mouse as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-DELL097E:00/0018:04F3:311C.0009/input/input53
[   29.485655] input: DELL097E:00 04F3:311C Touchpad as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-DELL097E:00/0018:04F3:311C.0009/input/input54
[   29.485812] hid-multitouch 0018:04F3:311C.0009: input,hidraw6: I2C HID v1.00 Mouse [DELL097E:00 04F3:311C] on i2c-DELL097E:00
[   29.495622] nvidia: loading out-of-tree module taints kernel.
[   29.495631] nvidia: module license 'NVIDIA' taints kernel.
[   29.495632] Disabling lock debugging due to kernel taint
[   29.503501] nvidia: module verification failed: signature and/or required key missing - tainting kernel
[   29.512645] nvidia-nvlink: Nvlink Core is being initialized, major device number 511

[   29.512927] nvidia 0000:01:00.0: enabling device (0000 -> 0003)
[   29.555261] NVRM: loading NVIDIA UNIX x86_64 Kernel Module  460.56  Tue Feb 23 23:31:36 UTC 2021
[   30.053770] Console: switching to colour frame buffer device 240x75
[   30.053821] snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[   30.080228] i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
[   30.147224] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC289: line_outs=2 (0x14/0x17/0x0/0x0/0x0) type:speaker
[   30.147226] snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[   30.147227] snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[   30.147228] snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
[   30.147229] snd_hda_codec_realtek hdaudioC0D0:    inputs:
[   30.147230] snd_hda_codec_realtek hdaudioC0D0:      Headset Mic=0x19
[   30.147231] snd_hda_codec_realtek hdaudioC0D0:      Headphone Mic=0x1b
[   30.147232] snd_hda_codec_realtek hdaudioC0D0:      Internal Mic=0x12
[   34.318880] nvidia-modeset: Loading NVIDIA Kernel Mode Setting Driver for UNIX platforms  460.56  Tue Feb 23 23:20:29 UTC 2021
[   34.319182] evdi: [I] Initialising logging on level 5
[   34.319183] evdi: [I] Atomic driver:yes
[   34.320445] kauditd_printk_skb: 82 callbacks suppressed
[   34.320446] audit: type=1130 audit(1614993472.262:98): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=displaylink comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   34.322013] [drm] [nvidia-drm] [GPU ID 0x00000100] Loading driver
[   34.329410] input: HDA Intel PCH Headphone Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input56
[   34.329444] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input57
[   34.329471] input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input58
[   34.329501] input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input59
[   34.329528] input: HDA Intel PCH HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input60
[   34.329555] input: HDA Intel PCH HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input61
[   34.337358] audit: type=1130 audit(1614993472.279:99): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   34.345072] ACPI Warning: \_SB.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20200925/nsarguments-61)
[   34.377295] audit: type=1130 audit(1614993472.319:100): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   34.489117] input: PS/2 Logitech Wheel Mouse as /devices/platform/i8042/serio1/input/input45
[   34.776974] audit: type=1130 audit(1614993472.719:101): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=wpa_supplicant comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   34.928260] [drm] Initialized nvidia-drm 0.0.0 20160202 for 0000:01:00.0 on minor 1
[   35.144100] audit: type=1131 audit(1614993473.085:102): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   36.887431] audit: type=1100 audit(1614993474.829:103): pid=731 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:authentication grantors=pam_permit acct="sddm" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
[   36.887433] audit: type=1101 audit(1614993474.829:104): pid=731 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_permit acct="sddm" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
[   36.887972] audit: type=1103 audit(1614993474.829:105): pid=731 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_permit acct="sddm" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
[   36.897817] audit: type=1130 audit(1614993474.839:106): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@974 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   36.904819] audit: type=1101 audit(1614993474.845:107): pid=733 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_access,pam_unix,pam_permit,pam_time acct="sddm" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   40.348573] kauditd_printk_skb: 7 callbacks suppressed
[   40.348574] audit: type=1100 audit(1614993478.289:115): pid=754 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:authentication grantors=pam_shells,pam_faillock,pam_permit,pam_faillock acct="vlovich" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
[   40.349374] audit: type=1101 audit(1614993478.289:116): pid=754 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_access,pam_unix,pam_permit,pam_time acct="vlovich" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
[   40.349605] audit: type=1103 audit(1614993478.289:117): pid=754 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_shells,pam_faillock,pam_permit,pam_faillock acct="vlovich" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
[   40.349687] audit: type=1006 audit(1614993478.289:118): pid=754 uid=0 old-auid=4294967295 auid=1000 tty=(none) old-ses=4294967295 ses=2 res=1
[   40.360585] audit: type=1130 audit(1614993478.302:119): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@1000 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   40.364788] audit: type=1101 audit(1614993478.305:120): pid=756 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_access,pam_unix,pam_permit,pam_time acct="vlovich" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   40.364791] audit: type=1103 audit(1614993478.305:121): pid=756 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=? acct="vlovich" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
[   40.364803] audit: type=1006 audit(1614993478.305:122): pid=756 uid=0 old-auid=4294967295 auid=1000 tty=(none) old-ses=4294967295 ses=3 res=1
[   40.365716] audit: type=1105 audit(1614993478.305:123): pid=756 uid=0 auid=1000 ses=3 msg='op=PAM:session_open grantors=pam_loginuid,pam_loginuid,pam_keyinit,pam_limits,pam_unix,pam_permit,pam_mail,pam_systemd,pam_env acct="vlovich" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   40.369437] audit: type=1334 audit(1614993478.309:124): prog-id=24 op=LOAD
[   45.972973] kauditd_printk_skb: 11 callbacks suppressed
[   45.972974] audit: type=1111 audit(1614993483.912:136): pid=624 uid=0 auid=4294967295 ses=4294967295 msg='op=statistics arg="refresh-rate-ms" pid=1028 uid=1000 result=success exe="/usr/bin/NetworkManager" hostname=? addr=? terminal=? res=success'
[   46.238480] audit: type=1130 audit(1614993484.175:137): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=pcscd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   48.078546] audit: type=1130 audit(1614993486.019:138): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=blueman-mechanism comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   49.616940] wlp0s20f3: authenticate with 70:3a:cb:26:cd:9d
[   49.620200] wlp0s20f3: send auth to 70:3a:cb:26:cd:9d (try 1/3)
[   49.654732] wlp0s20f3: authenticated
[   49.659555] wlp0s20f3: associate with 70:3a:cb:26:cd:9d (try 1/3)
[   49.668029] wlp0s20f3: RX AssocResp from 70:3a:cb:26:cd:9d (capab=0x1011 status=0 aid=2)
[   49.671676] wlp0s20f3: associated
[   49.701162] IPv6: ADDRCONF(NETDEV_CHANGE): wlp0s20f3: link becomes ready
[   49.730275] wlp0s20f3: Limiting TX power to 30 (30 - 0) dBm as advertised by 70:3a:cb:26:cd:9d
[   49.765352] audit: type=1130 audit(1614993487.705:139): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   50.437254] audit: type=1131 audit(1614993488.379:140): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user@974 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   50.442787] audit: type=1131 audit(1614993488.382:141): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@974 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   60.010989] audit: type=1131 audit(1614993497.952:142): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   73.619629] audit: type=1131 audit(1614993511.461:143): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   73.777898] audit: type=1334 audit(1614993511.621:144): prog-id=22 op=UNLOAD
[   73.777907] audit: type=1334 audit(1614993511.621:145): prog-id=21 op=UNLOAD
[   78.215564] audit: type=1131 audit(1614993516.046:146): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=blueman-mechanism comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  107.414741] audit: type=1131 audit(1614993545.204:147): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=pcscd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  108.960179] audit: type=1100 audit(1614993546.745:148): pid=1977 uid=1000 auid=1000 ses=2 msg='op=PAM:authentication grantors=pam_faillock,pam_permit,pam_faillock acct="vlovich" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
[  108.961326] audit: type=1101 audit(1614993546.745:149): pid=1977 uid=1000 auid=1000 ses=2 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="vlovich" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
[  108.961852] audit: type=1110 audit(1614993546.745:150): pid=1977 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
[  108.963996] audit: type=1105 audit(1614993546.749:151): pid=1977 uid=1000 auid=1000 ses=2 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
[  111.829239] audit: type=1130 audit(1614993549.612:152): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=pcscd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  113.091019] traps: chrome[2013] trap divide error ip:7f77050adb27 sp:7ffdf9366ac0 error:0 in vdpau_drv_video.so[7f77050ad000+f000]
[  113.091044] audit: type=1701 audit(1614993550.870:153): auid=1000 uid=1000 gid=1000 ses=2 pid=2013 comm="chrome" exe="/opt/google/chrome/chrome" sig=8 res=1
[  113.101027] audit: type=1334 audit(1614993550.880:154): prog-id=27 op=LOAD
[  113.101064] audit: type=1334 audit(1614993550.880:155): prog-id=28 op=LOAD
[  113.102238] audit: type=1130 audit(1614993550.883:156): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-coredump@0-2436-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  113.361867] audit: type=1131 audit(1614993551.140:157): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-coredump@0-2436-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  113.447879] traps: chrome[2551] trap divide error ip:7f770509db27 sp:7ffdf9366ac0 error:0 in vdpau_drv_video.so[7f770509d000+f000]
[  113.447903] audit: type=1701 audit(1614993551.226:158): auid=1000 uid=1000 gid=1000 ses=2 pid=2551 comm="chrome" exe="/opt/google/chrome/chrome" sig=8 res=1
[  113.454824] audit: type=1334 audit(1614993551.233:159): prog-id=29 op=LOAD
[  113.454893] audit: type=1334 audit(1614993551.233:160): prog-id=30 op=LOAD
[  920.371483] kauditd_printk_skb: 38 callbacks suppressed
[  920.371484] audit: type=1130 audit(1614994358.155:195): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-clean comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  920.371487] audit: type=1131 audit(1614994358.155:196): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-clean comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 2478.509737] traps: Chrome_ChildIOT[2084] trap int3 ip:55c50a95b1db sp:7f1d30b324a0 error:0 in chrome[55c504da8000+7ccd000]
[ 2478.509765] audit: type=1701 audit(1614995916.334:197): auid=1000 uid=1000 gid=1000 ses=2 pid=2073 comm="Chrome_ChildIOT" exe="/opt/google/chrome/chrome" sig=5 res=1
[ 2478.517159] audit: type=1334 audit(1614995916.341:198): prog-id=39 op=LOAD
[ 2478.517182] audit: type=1334 audit(1614995916.341:199): prog-id=40 op=LOAD
[ 2478.517791] audit: type=1130 audit(1614995916.344:200): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-coredump@6-8839-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 2478.867683] audit: type=1131 audit(1614995916.694:201): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-coredump@6-8839-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 2478.994174] audit: type=1334 audit(1614995916.821:202): prog-id=40 op=UNLOAD
[ 2478.994183] audit: type=1334 audit(1614995916.821:203): prog-id=39 op=UNLOAD
[ 3413.148585] audit: type=1106 audit(1614996850.967:204): pid=1977 uid=1000 auid=1000 ses=2 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
[ 3413.148678] audit: type=1104 audit(1614996850.967:205): pid=1977 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
[ 3474.895804] logitech-hidpp-device 0003:046D:406D.0006: HID++ 4.5 device connected.
[ 4571.716231] wlp0s20f3: disconnect from AP 70:3a:cb:26:cd:9d for new auth to 70:3a:cb:26:cd:92
[ 4571.722702] wlp0s20f3: authenticate with 70:3a:cb:26:cd:92
[ 4571.725627] wlp0s20f3: send auth to 70:3a:cb:26:cd:92 (try 1/3)
[ 4571.757854] wlp0s20f3: authenticated
[ 4571.760138] wlp0s20f3: associate with 70:3a:cb:26:cd:92 (try 1/3)
[ 4571.767578] wlp0s20f3: RX ReassocResp from 70:3a:cb:26:cd:92 (capab=0x1011 status=0 aid=1)
[ 4571.770629] wlp0s20f3: associated
[ 4571.778977] wlp0s20f3: Limiting TX power to 30 (30 - 0) dBm as advertised by 70:3a:cb:26:cd:92
[ 4572.751889] audit: type=1130 audit(1614998010.561:206): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 4583.145703] audit: type=1131 audit(1614998020.953:207): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 4605.858030] wlp0s20f3: disconnect from AP 70:3a:cb:26:cd:92 for new auth to 70:3a:cb:26:cd:9d
[ 4605.862244] wlp0s20f3: authenticate with 70:3a:cb:26:cd:9d
[ 4605.864848] wlp0s20f3: send auth to 70:3a:cb:26:cd:9d (try 1/3)
[ 4605.895448] wlp0s20f3: authenticated
[ 4605.896007] wlp0s20f3: associate with 70:3a:cb:26:cd:9d (try 1/3)
[ 4605.910606] wlp0s20f3: RX ReassocResp from 70:3a:cb:26:cd:9d (capab=0x1011 status=0 aid=2)
[ 4605.914853] wlp0s20f3: associated
[ 4605.945575] wlp0s20f3: Limiting TX power to 30 (30 - 0) dBm as advertised by 70:3a:cb:26:cd:9d
[ 4606.839917] audit: type=1130 audit(1614998044.645:208): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 4617.148551] audit: type=1131 audit(1614998054.954:209): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[22936.833925] perf: interrupt took too long (2511 > 2500), lowering kernel.perf_event_max_sample_rate to 79500
[24182.480175] audit: type=1130 audit(1615017620.186:210): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=shadow comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[24182.485213] audit: type=1130 audit(1615017620.193:211): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=atop-rotate comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[24182.485217] audit: type=1131 audit(1615017620.193:212): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=atop-rotate comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[24182.493232] audit: type=1131 audit(1615017620.199:213): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=shadow comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[24208.191419] audit: type=1130 audit(1615017645.896:214): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=man-db comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[24208.191422] audit: type=1131 audit(1615017645.896:215): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=man-db comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[47808.162974] audit: type=1130 audit(1615041245.756:216): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[47818.359581] audit: type=1131 audit(1615041255.952:217): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[54449.117652] audit: type=1100 audit(1615047886.647:218): pid=58478 uid=1000 auid=1000 ses=2 msg='op=PAM:unix_chkpwd acct="vlovich" exe="/usr/bin/unix_chkpwd" hostname=? addr=? terminal=? res=success'
[54480.121908] audit: type=1100 audit(1615047917.650:219): pid=58488 uid=1000 auid=1000 ses=2 msg='op=PAM:authentication grantors=pam_faillock,pam_permit,pam_faillock acct="vlovich" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
[54480.122762] audit: type=1101 audit(1615047917.653:220): pid=58488 uid=1000 auid=1000 ses=2 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="vlovich" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
[54480.123289] audit: type=1110 audit(1615047917.653:221): pid=58488 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
[54480.125183] audit: type=1105 audit(1615047917.653:222): pid=58488 uid=1000 auid=1000 ses=2 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
[54562.406135] audit: type=1106 audit(1615047999.939:223): pid=58488 uid=1000 auid=1000 ses=2 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
[54562.406208] audit: type=1104 audit(1615047999.939:224): pid=58488 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
[54656.665809] logitech-hidpp-device 0003:046D:200A.0007: HID++ 1.0 device connected.
[54686.342499] audit: type=1101 audit(1615048123.872:225): pid=71442 uid=1000 auid=1000 ses=2 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="vlovich" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
[54686.343367] audit: type=1110 audit(1615048123.876:226): pid=71442 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
[54686.347820] audit: type=1105 audit(1615048123.879:227): pid=71442 uid=1000 auid=1000 ses=2 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
[54687.325301] audit: type=1106 audit(1615048124.856:228): pid=71442 uid=1000 auid=1000 ses=2 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
[54687.325484] audit: type=1104 audit(1615048124.856:229): pid=71442 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
[54692.680545] audit: type=1101 audit(1615048130.212:230): pid=71465 uid=1000 auid=1000 ses=2 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="vlovich" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
[54692.680963] audit: type=1110 audit(1615048130.212:231): pid=71465 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
[54692.682915] audit: type=1105 audit(1615048130.212:232): pid=71465 uid=1000 auid=1000 ses=2 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
[54692.709185] audit: type=1106 audit(1615048130.239:233): pid=71465 uid=1000 auid=1000 ses=2 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
[54692.709237] audit: type=1104 audit(1615048130.239:234): pid=71465 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
[54803.138977] audit: type=1101 audit(1615048240.668:235): pid=71620 uid=1000 auid=1000 ses=2 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="vlovich" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
[54803.139634] audit: type=1110 audit(1615048240.668:236): pid=71620 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
[54803.142427] audit: type=1105 audit(1615048240.672:237): pid=71620 uid=1000 auid=1000 ses=2 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
[54803.144218] audit: type=1106 audit(1615048240.675:238): pid=71620 uid=1000 auid=1000 ses=2 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
[54803.144292] audit: type=1104 audit(1615048240.675:239): pid=71620 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
[54853.523930] audit: type=1101 audit(1615048291.052:240): pid=71716 uid=1000 auid=1000 ses=2 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="vlovich" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
[54853.524467] audit: type=1110 audit(1615048291.055:241): pid=71716 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
[54853.526619] audit: type=1105 audit(1615048291.055:242): pid=71716 uid=1000 auid=1000 ses=2 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
[54853.529957] audit: type=1106 audit(1615048291.058:243): pid=71716 uid=1000 auid=1000 ses=2 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
[54853.530018] audit: type=1104 audit(1615048291.058:244): pid=71716 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
[54893.741712] audit: type=1101 audit(1615048331.271:245): pid=71753 uid=1000 auid=1000 ses=2 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="vlovich" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
[54893.742207] audit: type=1110 audit(1615048331.271:246): pid=71753 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
[54893.744286] audit: type=1105 audit(1615048331.275:247): pid=71753 uid=1000 auid=1000 ses=2 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success' 

Please use pacman for repo packages.

I'm new to Arch so please forgive my ignorance. It seemed like yay acts like a passthrough to Pacman for non-AUR packages. I would love to learn the reason behind this correction if you'd be willing to share.

P.S. the package is called displaylink , not displayport .

Sorry about that. I think I was explaining the difference between the two to someone else at the time & typo'ed in the package name without thinking.

Offline

#4 2021-03-06 16:46:04

vlovich
Member
Registered: 2021-03-05
Posts: 21

Re: [Resolved] DisplayLink not working w/ Dell D6000 + Precision 5550

When I have both xrandr providers:

xrandr --listproviders
Providers: number : 2
Provider 0: id: 0x46 cap: 0xf, Source Output, Sink Output, Source Offload, Sink Offload crtcs: 3 outputs: 4 associated providers: 0 name:modesetting
Provider 1: id: 0x2bb cap: 0x0 crtcs: 0 outputs: 0 associated providers: 0 name:NVIDIA-G0

The logs are:

$ sudo journalctl -b
-- Journal begins at Wed 2021-02-10 19:17:20 PST, ends at Sat 2021-03-06 08:41:39 PST. --
Mar 06 08:40:11 archlinux kernel: microcode: microcode updated early to revision 0xe0, date = 2020-07-08
Mar 06 08:40:11 archlinux kernel: Linux version 5.10.16-arch1-1 (linux@archlinux) (gcc (GCC) 10.2.0, GNU ld (GNU Binutils) 2.36) #1 SMP PREEMPT Sat, 13 Feb 2021 20:50:18 +0000
Mar 06 08:40:11 archlinux kernel: Command line: initrd=\intel-ucode.img initrd=\initramfs-linux.img rd.luks.name=4833f4ef-725f-47aa-897f-d5e672fb236b=cryptlvm root=/dev/Arch/OS rw nvidia-drm.modeset=1
Mar 06 08:40:11 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Mar 06 08:40:11 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Mar 06 08:40:11 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Mar 06 08:40:11 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
Mar 06 08:40:11 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
Mar 06 08:40:11 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
Mar 06 08:40:11 archlinux kernel: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
Mar 06 08:40:11 archlinux kernel: x86/fpu: xstate_offset[3]:  832, xstate_sizes[3]:   64
Mar 06 08:40:11 archlinux kernel: x86/fpu: xstate_offset[4]:  896, xstate_sizes[4]:   64
Mar 06 08:40:11 archlinux kernel: x86/fpu: xstate_offset[9]:  960, xstate_sizes[9]:    8
Mar 06 08:40:11 archlinux kernel: x86/fpu: Enabled xstate features 0x21f, context size is 968 bytes, using 'compacted' format.
Mar 06 08:40:11 archlinux kernel: BIOS-provided physical RAM map:
Mar 06 08:40:11 archlinux kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
Mar 06 08:40:11 archlinux kernel: BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
Mar 06 08:40:11 archlinux kernel: BIOS-e820: [mem 0x0000000000100000-0x000000003fffffff] usable
Mar 06 08:40:11 archlinux kernel: BIOS-e820: [mem 0x0000000040000000-0x00000000403fffff] reserved
Mar 06 08:40:11 archlinux kernel: BIOS-e820: [mem 0x0000000040400000-0x000000004ea08fff] usable
Mar 06 08:40:11 archlinux kernel: BIOS-e820: [mem 0x000000004ea09000-0x000000004ea09fff] reserved
Mar 06 08:40:11 archlinux kernel: BIOS-e820: [mem 0x000000004ea0a000-0x0000000051031fff] usable
Mar 06 08:40:11 archlinux kernel: BIOS-e820: [mem 0x0000000051032000-0x0000000051032fff] ACPI NVS
Mar 06 08:40:11 archlinux kernel: BIOS-e820: [mem 0x0000000051033000-0x0000000051033fff] reserved
Mar 06 08:40:11 archlinux kernel: BIOS-e820: [mem 0x0000000051034000-0x0000000062825fff] usable
Mar 06 08:40:11 archlinux kernel: BIOS-e820: [mem 0x0000000062826000-0x00000000658b4fff] reserved
Mar 06 08:40:11 archlinux kernel: BIOS-e820: [mem 0x00000000658b5000-0x0000000065f24fff] ACPI NVS
Mar 06 08:40:11 archlinux kernel: BIOS-e820: [mem 0x0000000065f25000-0x0000000065ffefff] ACPI data
Mar 06 08:40:11 archlinux kernel: BIOS-e820: [mem 0x0000000065fff000-0x0000000065ffffff] usable
Mar 06 08:40:11 archlinux kernel: BIOS-e820: [mem 0x0000000066000000-0x000000006e7fffff] reserved
Mar 06 08:40:11 archlinux kernel: BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
Mar 06 08:40:11 archlinux kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
Mar 06 08:40:11 archlinux kernel: BIOS-e820: [mem 0x0000000100000000-0x000000088d7fffff] usable
Mar 06 08:40:11 archlinux kernel: NX (Execute Disable) protection: active
Mar 06 08:40:11 archlinux kernel: e820: update [mem 0x6270e018-0x6271d057] usable ==> usable
Mar 06 08:40:11 archlinux kernel: e820: update [mem 0x6270e018-0x6271d057] usable ==> usable
Mar 06 08:40:11 archlinux kernel: extended physical RAM map:
Mar 06 08:40:11 archlinux kernel: reserve setup_data: [mem 0x0000000000000000-0x000000000009efff] usable
Mar 06 08:40:11 archlinux kernel: reserve setup_data: [mem 0x000000000009f000-0x00000000000fffff] reserved
Mar 06 08:40:11 archlinux kernel: reserve setup_data: [mem 0x0000000000100000-0x000000003fffffff] usable
Mar 06 08:40:11 archlinux kernel: reserve setup_data: [mem 0x0000000040000000-0x00000000403fffff] reserved
Mar 06 08:40:11 archlinux kernel: reserve setup_data: [mem 0x0000000040400000-0x000000004ea08fff] usable
Mar 06 08:40:11 archlinux kernel: reserve setup_data: [mem 0x000000004ea09000-0x000000004ea09fff] reserved
Mar 06 08:40:11 archlinux kernel: reserve setup_data: [mem 0x000000004ea0a000-0x0000000051031fff] usable
Mar 06 08:40:11 archlinux kernel: reserve setup_data: [mem 0x0000000051032000-0x0000000051032fff] ACPI NVS
Mar 06 08:40:11 archlinux kernel: reserve setup_data: [mem 0x0000000051033000-0x0000000051033fff] reserved
Mar 06 08:40:11 archlinux kernel: reserve setup_data: [mem 0x0000000051034000-0x000000006270e017] usable
Mar 06 08:40:11 archlinux kernel: reserve setup_data: [mem 0x000000006270e018-0x000000006271d057] usable
Mar 06 08:40:11 archlinux kernel: reserve setup_data: [mem 0x000000006271d058-0x0000000062825fff] usable
Mar 06 08:40:11 archlinux kernel: reserve setup_data: [mem 0x0000000062826000-0x00000000658b4fff] reserved
Mar 06 08:40:11 archlinux kernel: reserve setup_data: [mem 0x00000000658b5000-0x0000000065f24fff] ACPI NVS
Mar 06 08:40:11 archlinux kernel: reserve setup_data: [mem 0x0000000065f25000-0x0000000065ffefff] ACPI data
Mar 06 08:40:11 archlinux kernel: reserve setup_data: [mem 0x0000000065fff000-0x0000000065ffffff] usable
Mar 06 08:40:11 archlinux kernel: reserve setup_data: [mem 0x0000000066000000-0x000000006e7fffff] reserved
Mar 06 08:40:11 archlinux kernel: reserve setup_data: [mem 0x00000000e0000000-0x00000000efffffff] reserved
Mar 06 08:40:11 archlinux kernel: reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
Mar 06 08:40:11 archlinux kernel: reserve setup_data: [mem 0x0000000100000000-0x000000088d7fffff] usable
Mar 06 08:40:11 archlinux kernel: efi: EFI v2.70 by Dell
Mar 06 08:40:11 archlinux kernel: efi: SMBIOS=0x63263000 TPMFinalLog=0x65f1d000 ACPI=0x65ffe000 ACPI 2.0=0x65ffe014 ESRT=0x6314cb98 MEMATTR=0x5f83c018 PROP=0x4fe12130 RNG=0x6314dc98 TPMEventLog=0x6271e018 
Mar 06 08:40:11 archlinux kernel: efi: seeding entropy pool
Mar 06 08:40:11 archlinux kernel: SMBIOS 3.2 present.
Mar 06 08:40:11 archlinux kernel: DMI: Dell Inc. Precision 5550/0MCFW2, BIOS 1.5.3 11/20/2020
Mar 06 08:40:11 archlinux kernel: tsc: Detected 2600.000 MHz processor
Mar 06 08:40:11 archlinux kernel: tsc: Detected 2599.992 MHz TSC
Mar 06 08:40:11 archlinux kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Mar 06 08:40:11 archlinux kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
Mar 06 08:40:11 archlinux kernel: last_pfn = 0x88d800 max_arch_pfn = 0x400000000
Mar 06 08:40:11 archlinux kernel: MTRR default type: write-back
Mar 06 08:40:11 archlinux kernel: MTRR fixed ranges enabled:
Mar 06 08:40:11 archlinux kernel:   00000-9FFFF write-back
Mar 06 08:40:11 archlinux kernel:   A0000-BFFFF uncachable
Mar 06 08:40:11 archlinux kernel:   C0000-FFFFF write-protect
Mar 06 08:40:11 archlinux kernel: MTRR variable ranges enabled:
Mar 06 08:40:11 archlinux kernel:   0 base 0080000000 mask 7F80000000 uncachable
Mar 06 08:40:11 archlinux kernel:   1 base 0070000000 mask 7FF0000000 uncachable
Mar 06 08:40:11 archlinux kernel:   2 base 006C000000 mask 7FFC000000 uncachable
Mar 06 08:40:11 archlinux kernel:   3 base 006A000000 mask 7FFE000000 uncachable
Mar 06 08:40:11 archlinux kernel:   4 base 4000000000 mask 4000000000 uncachable
Mar 06 08:40:11 archlinux kernel:   5 disabled
Mar 06 08:40:11 archlinux kernel:   6 disabled
Mar 06 08:40:11 archlinux kernel:   7 disabled
Mar 06 08:40:11 archlinux kernel:   8 disabled
Mar 06 08:40:11 archlinux kernel:   9 disabled
Mar 06 08:40:11 archlinux kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Mar 06 08:40:11 archlinux kernel: last_pfn = 0x66000 max_arch_pfn = 0x400000000
Mar 06 08:40:11 archlinux kernel: esrt: Reserving ESRT space from 0x000000006314cb98 to 0x000000006314cc20.
Mar 06 08:40:11 archlinux kernel: check: Scanning 1 areas for low memory corruption
Mar 06 08:40:11 archlinux kernel: Using GB pages for direct mapping
Mar 06 08:40:11 archlinux kernel: Secure boot disabled
Mar 06 08:40:11 archlinux kernel: RAMDISK: [mem 0x4d33a000-0x4ea08fff]
Mar 06 08:40:11 archlinux kernel: ACPI: Early table checksum verification disabled
Mar 06 08:40:11 archlinux kernel: ACPI: RSDP 0x0000000065FFE014 000024 (v02 DELL  )
Mar 06 08:40:11 archlinux kernel: ACPI: XSDT 0x0000000065F93188 0000F4 (v01 DELL   Dell Inc 20170001 INTL 20160422)
Mar 06 08:40:11 archlinux kernel: ACPI: FACP 0x0000000065FF0000 000114 (v06 DELL   Dell Inc 20170001 INTL 20160422)
Mar 06 08:40:11 archlinux kernel: ACPI: DSDT 0x0000000065FA3000 049DC8 (v02 DELL   Dell Inc 20170001 INTL 20160422)
Mar 06 08:40:11 archlinux kernel: ACPI: FACS 0x0000000065EA5000 000040
Mar 06 08:40:11 archlinux kernel: ACPI: SSDT 0x0000000065FFA000 00203C (v02 CpuRef CpuSsdt  00003000 INTL 20160527)
Mar 06 08:40:11 archlinux kernel: ACPI: SSDT 0x0000000065FF3000 0063E5 (v02 INTEL  DptfTabl 00001000 INTL 20160527)
Mar 06 08:40:11 archlinux kernel: ACPI: SSDT 0x0000000065FF1000 00134A (v02 SaSsdt SaSsdt   00003000 INTL 20160527)
Mar 06 08:40:11 archlinux kernel: ACPI: HPET 0x0000000065FEF000 000038 (v01 DELL   Dell Inc 20170001 INTL 20160422)
Mar 06 08:40:11 archlinux kernel: ACPI: APIC 0x0000000065FEE000 000164 (v03 DELL   Dell Inc 20170001 INTL 20160422)
Mar 06 08:40:11 archlinux kernel: ACPI: MCFG 0x0000000065FED000 00003C (v01 DELL   Dell Inc 20170001 INTL 20160422)
Mar 06 08:40:11 archlinux kernel: ACPI: SSDT 0x0000000065FA1000 001749 (v02 DELL   DellRtd3 00001000 INTL 20160527)
Mar 06 08:40:11 archlinux kernel: ACPI: SSDT 0x0000000065FA0000 000CB0 (v02 DELL   xh_Dell_ 00000000 INTL 20160527)
Mar 06 08:40:11 archlinux kernel: ACPI: NHLT 0x0000000065F9F000 00002D (v00 DELL   Dell Inc 20170001 INTL 20160422)
Mar 06 08:40:11 archlinux kernel: ACPI: SSDT 0x0000000065F9E000 000C78 (v02 DELL   UsbCTabl 00001000 INTL 20160527)
Mar 06 08:40:11 archlinux kernel: ACPI: LPIT 0x0000000065F9D000 000094 (v01 DELL   Dell Inc 20170001 INTL 20160422)
Mar 06 08:40:11 archlinux kernel: ACPI: WSMT 0x0000000065F9C000 000028 (v01 DELL   Dell Inc 20170001 INTL 20160422)
Mar 06 08:40:11 archlinux kernel: ACPI: SSDT 0x0000000065F9B000 000B75 (v02 DELL   PtidDevc 00001000 INTL 20160527)
Mar 06 08:40:11 archlinux kernel: ACPI: DBGP 0x0000000065F9A000 000034 (v01 DELL   Dell Inc 20170001 INTL 20160422)
Mar 06 08:40:11 archlinux kernel: ACPI: DBG2 0x0000000065F99000 000054 (v00 DELL   Dell Inc 20170001 INTL 20160422)
Mar 06 08:40:11 archlinux kernel: ACPI: SSDT 0x0000000065F98000 00060E (v02 DELL   Tpm2Tabl 00001000 INTL 20160527)
Mar 06 08:40:11 archlinux kernel: ACPI: TPM2 0x0000000065F97000 000034 (v04 DELL   Dell Inc 20170001 INTL 20160422)
Mar 06 08:40:11 archlinux kernel: ACPI: SLIC 0x0000000065F96000 000176 (v03 DELL   CBX3     06222004 MSFT 00010013)
Mar 06 08:40:11 archlinux kernel: ACPI: BOOT 0x0000000065F95000 000028 (v01 DELL   CBX3     20170001 INTL 20160422)
Mar 06 08:40:11 archlinux kernel: ACPI: MSDM 0x0000000065F94000 000055 (v03 DELL   CBX3     06222004 AMI  00010013)
Mar 06 08:40:11 archlinux kernel: ACPI: SSDT 0x0000000065F8E000 0041A0 (v01 DELL   NvdTable 00001000 INTL 20160527)
Mar 06 08:40:11 archlinux kernel: ACPI: SSDT 0x0000000065FFD000 000156 (v02 Dell   ADebTabl 00001000 INTL 20160527)
Mar 06 08:40:11 archlinux kernel: ACPI: ASF! 0x0000000065F8D000 000074 (v32 DELL   Dell Inc 20170001 INTL 20160422)
Mar 06 08:40:11 archlinux kernel: ACPI: BGRT 0x0000000065F8C000 000038 (v01 DELL   Dell Inc 20170001 INTL 20160422)
Mar 06 08:40:11 archlinux kernel: ACPI: FPDT 0x0000000065F8B000 000034 (v01 DELL   Dell Inc 20170001 INTL 20160422)
Mar 06 08:40:11 archlinux kernel: ACPI: Local APIC address 0xfee00000
Mar 06 08:40:11 archlinux kernel: No NUMA configuration found
Mar 06 08:40:11 archlinux kernel: Faking a node at [mem 0x0000000000000000-0x000000088d7fffff]
Mar 06 08:40:11 archlinux kernel: NODE_DATA(0) allocated [mem 0x88d7fc000-0x88d7fffff]
Mar 06 08:40:11 archlinux kernel: Zone ranges:
Mar 06 08:40:11 archlinux kernel:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
Mar 06 08:40:11 archlinux kernel:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
Mar 06 08:40:11 archlinux kernel:   Normal   [mem 0x0000000100000000-0x000000088d7fffff]
Mar 06 08:40:11 archlinux kernel:   Device   empty
Mar 06 08:40:11 archlinux kernel: Movable zone start for each node
Mar 06 08:40:11 archlinux kernel: Early memory node ranges
Mar 06 08:40:11 archlinux kernel:   node   0: [mem 0x0000000000001000-0x000000000009efff]
Mar 06 08:40:11 archlinux kernel:   node   0: [mem 0x0000000000100000-0x000000003fffffff]
Mar 06 08:40:11 archlinux kernel:   node   0: [mem 0x0000000040400000-0x000000004ea08fff]
Mar 06 08:40:11 archlinux kernel:   node   0: [mem 0x000000004ea0a000-0x0000000051031fff]
Mar 06 08:40:11 archlinux kernel:   node   0: [mem 0x0000000051034000-0x0000000062825fff]
Mar 06 08:40:11 archlinux kernel:   node   0: [mem 0x0000000065fff000-0x0000000065ffffff]
Mar 06 08:40:11 archlinux kernel:   node   0: [mem 0x0000000100000000-0x000000088d7fffff]
Mar 06 08:40:11 archlinux kernel: Zeroed struct page in unavailable ranges: 33854 pages
Mar 06 08:40:11 archlinux kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000088d7fffff]
Mar 06 08:40:11 archlinux kernel: On node 0 totalpages: 8321986
Mar 06 08:40:11 archlinux kernel:   DMA zone: 64 pages used for memmap
Mar 06 08:40:11 archlinux kernel:   DMA zone: 22 pages reserved
Mar 06 08:40:11 archlinux kernel:   DMA zone: 3998 pages, LIFO batch:0
Mar 06 08:40:11 archlinux kernel:   DMA32 zone: 6225 pages used for memmap
Mar 06 08:40:11 archlinux kernel:   DMA32 zone: 398372 pages, LIFO batch:63
Mar 06 08:40:11 archlinux kernel:   Normal zone: 123744 pages used for memmap
Mar 06 08:40:11 archlinux kernel:   Normal zone: 7919616 pages, LIFO batch:63
Mar 06 08:40:11 archlinux kernel: Reserving Intel graphics memory at [mem 0x6a800000-0x6e7fffff]
Mar 06 08:40:11 archlinux kernel: ACPI: PM-Timer IO Port: 0x1808
Mar 06 08:40:11 archlinux kernel: ACPI: Local APIC address 0xfee00000
Mar 06 08:40:11 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
Mar 06 08:40:11 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
Mar 06 08:40:11 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
Mar 06 08:40:11 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
Mar 06 08:40:11 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
Mar 06 08:40:11 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
Mar 06 08:40:11 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
Mar 06 08:40:11 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
Mar 06 08:40:11 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
Mar 06 08:40:11 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
Mar 06 08:40:11 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
Mar 06 08:40:11 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
Mar 06 08:40:11 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
Mar 06 08:40:11 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
Mar 06 08:40:11 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
Mar 06 08:40:11 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
Mar 06 08:40:11 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
Mar 06 08:40:11 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
Mar 06 08:40:11 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
Mar 06 08:40:11 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
Mar 06 08:40:11 archlinux kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
Mar 06 08:40:11 archlinux kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Mar 06 08:40:11 archlinux kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Mar 06 08:40:11 archlinux kernel: ACPI: IRQ0 used by override.
Mar 06 08:40:11 archlinux kernel: ACPI: IRQ9 used by override.
Mar 06 08:40:11 archlinux kernel: Using ACPI (MADT) for SMP configuration information
Mar 06 08:40:11 archlinux kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
Mar 06 08:40:11 archlinux kernel: e820: update [mem 0x5f6f7000-0x5f773fff] usable ==> reserved
Mar 06 08:40:11 archlinux kernel: TSC deadline timer available
Mar 06 08:40:11 archlinux kernel: smpboot: Allowing 12 CPUs, 0 hotplug CPUs
Mar 06 08:40:11 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
Mar 06 08:40:11 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
Mar 06 08:40:11 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x40000000-0x403fffff]
Mar 06 08:40:11 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x4ea09000-0x4ea09fff]
Mar 06 08:40:11 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x51032000-0x51032fff]
Mar 06 08:40:11 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x51033000-0x51033fff]
Mar 06 08:40:11 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x5f6f7000-0x5f773fff]
Mar 06 08:40:11 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x6270e000-0x6270efff]
Mar 06 08:40:11 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x6271d000-0x6271dfff]
Mar 06 08:40:11 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x62826000-0x658b4fff]
Mar 06 08:40:11 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x658b5000-0x65f24fff]
Mar 06 08:40:11 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x65f25000-0x65ffefff]
Mar 06 08:40:11 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x66000000-0x6e7fffff]
Mar 06 08:40:11 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x6e800000-0xdfffffff]
Mar 06 08:40:11 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xe0000000-0xefffffff]
Mar 06 08:40:11 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xf0000000-0xfeffffff]
Mar 06 08:40:11 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xff000000-0xffffffff]
Mar 06 08:40:11 archlinux kernel: [mem 0x6e800000-0xdfffffff] available for PCI devices
Mar 06 08:40:11 archlinux kernel: Booting paravirtualized kernel on bare hardware
Mar 06 08:40:11 archlinux kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
Mar 06 08:40:11 archlinux kernel: setup_percpu: NR_CPUS:320 nr_cpumask_bits:320 nr_cpu_ids:12 nr_node_ids:1
Mar 06 08:40:11 archlinux kernel: percpu: Embedded 56 pages/cpu s192512 r8192 d28672 u262144
Mar 06 08:40:11 archlinux kernel: pcpu-alloc: s192512 r8192 d28672 u262144 alloc=1*2097152
Mar 06 08:40:11 archlinux kernel: pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 -- -- -- -- 
Mar 06 08:40:11 archlinux kernel: Built 1 zonelists, mobility grouping on.  Total pages: 8191931
Mar 06 08:40:11 archlinux kernel: Policy zone: Normal
Mar 06 08:40:11 archlinux kernel: Kernel command line: initrd=\intel-ucode.img initrd=\initramfs-linux.img rd.luks.name=4833f4ef-725f-47aa-897f-d5e672fb236b=cryptlvm root=/dev/Arch/OS rw nvidia-drm.modeset=1
Mar 06 08:40:11 archlinux kernel: Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
Mar 06 08:40:11 archlinux kernel: Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
Mar 06 08:40:11 archlinux kernel: mem auto-init: stack:byref_all(zero), heap alloc:on, heap free:off
Mar 06 08:40:11 archlinux kernel: Memory: 32465116K/33287944K available (14344K kernel code, 2034K rwdata, 8808K rodata, 1704K init, 4332K bss, 822568K reserved, 0K cma-reserved)
Mar 06 08:40:11 archlinux kernel: random: get_random_u64 called from __kmem_cache_create+0x26/0x520 with crng_init=0
Mar 06 08:40:11 archlinux kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=12, Nodes=1
Mar 06 08:40:11 archlinux kernel: ftrace: allocating 41612 entries in 163 pages
Mar 06 08:40:11 archlinux kernel: ftrace: allocated 163 pages with 4 groups
Mar 06 08:40:11 archlinux kernel: rcu: Preemptible hierarchical RCU implementation.
Mar 06 08:40:11 archlinux kernel: rcu:         RCU dyntick-idle grace-period acceleration is enabled.
Mar 06 08:40:11 archlinux kernel: rcu:         RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=12.
Mar 06 08:40:11 archlinux kernel: rcu:         RCU priority boosting: priority 1 delay 500 ms.
Mar 06 08:40:11 archlinux kernel:         Trampoline variant of Tasks RCU enabled.
Mar 06 08:40:11 archlinux kernel:         Rude variant of Tasks RCU enabled.
Mar 06 08:40:11 archlinux kernel:         Tracing variant of Tasks RCU enabled.
Mar 06 08:40:11 archlinux kernel: rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
Mar 06 08:40:11 archlinux kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=12
Mar 06 08:40:11 archlinux kernel: NR_IRQS: 20736, nr_irqs: 2152, preallocated irqs: 16
Mar 06 08:40:11 archlinux kernel: Console: colour dummy device 80x25
Mar 06 08:40:11 archlinux kernel: printk: console [tty0] enabled
Mar 06 08:40:11 archlinux kernel: ACPI: Core revision 20200925
Mar 06 08:40:11 archlinux kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635855245 ns
Mar 06 08:40:11 archlinux kernel: APIC: Switch to symmetric I/O mode setup
Mar 06 08:40:11 archlinux kernel: x2apic: IRQ remapping doesn't support X2APIC mode
Mar 06 08:40:11 archlinux kernel: Switched APIC routing to physical flat.
Mar 06 08:40:11 archlinux kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Mar 06 08:40:11 archlinux kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x257a34a6eea, max_idle_ns: 440795264358 ns
Mar 06 08:40:11 archlinux kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 5202.65 BogoMIPS (lpj=8666640)
Mar 06 08:40:11 archlinux kernel: pid_max: default: 32768 minimum: 301
Mar 06 08:40:11 archlinux kernel: LSM: Security Framework initializing
Mar 06 08:40:11 archlinux kernel: Yama: becoming mindful.
Mar 06 08:40:11 archlinux kernel: LSM support for eBPF active
Mar 06 08:40:11 archlinux kernel: Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
Mar 06 08:40:11 archlinux kernel: Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
Mar 06 08:40:11 archlinux kernel: x86/cpu: VMX (outside TXT) disabled by BIOS
Mar 06 08:40:11 archlinux kernel: mce: CPU0: Thermal monitoring enabled (TM1)
Mar 06 08:40:11 archlinux kernel: process: using mwait in idle threads
Mar 06 08:40:11 archlinux kernel: Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
Mar 06 08:40:11 archlinux kernel: Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
Mar 06 08:40:11 archlinux kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
Mar 06 08:40:11 archlinux kernel: Spectre V2 : Mitigation: Enhanced IBRS
Mar 06 08:40:11 archlinux kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
Mar 06 08:40:11 archlinux kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
Mar 06 08:40:11 archlinux kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
Mar 06 08:40:11 archlinux kernel: Freeing SMP alternatives memory: 36K
Mar 06 08:40:11 archlinux kernel: smpboot: CPU0: Intel(R) Core(TM) i7-10750H CPU @ 2.60GHz (family: 0x6, model: 0xa5, stepping: 0x2)
Mar 06 08:40:11 archlinux kernel: Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
Mar 06 08:40:11 archlinux kernel: ... version:                4
Mar 06 08:40:11 archlinux kernel: ... bit width:              48
Mar 06 08:40:11 archlinux kernel: ... generic registers:      4
Mar 06 08:40:11 archlinux kernel: ... value mask:             0000ffffffffffff
Mar 06 08:40:11 archlinux kernel: ... max period:             00007fffffffffff
Mar 06 08:40:11 archlinux kernel: ... fixed-purpose events:   3
Mar 06 08:40:11 archlinux kernel: ... event mask:             000000070000000f
Mar 06 08:40:11 archlinux kernel: rcu: Hierarchical SRCU implementation.
Mar 06 08:40:11 archlinux kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
Mar 06 08:40:11 archlinux kernel: smp: Bringing up secondary CPUs ...
Mar 06 08:40:11 archlinux kernel: x86: Booting SMP configuration:
Mar 06 08:40:11 archlinux kernel: .... node  #0, CPUs:        #1  #2  #3  #4  #5  #6  #7  #8  #9 #10 #11
Mar 06 08:40:11 archlinux kernel: smp: Brought up 1 node, 12 CPUs
Mar 06 08:40:11 archlinux kernel: smpboot: Max logical packages: 1
Mar 06 08:40:11 archlinux kernel: smpboot: Total of 12 processors activated (62424.80 BogoMIPS)
Mar 06 08:40:11 archlinux kernel: devtmpfs: initialized
Mar 06 08:40:11 archlinux kernel: x86/mm: Memory block size: 128MB
Mar 06 08:40:11 archlinux kernel: PM: Registering ACPI NVS region [mem 0x51032000-0x51032fff] (4096 bytes)
Mar 06 08:40:11 archlinux kernel: PM: Registering ACPI NVS region [mem 0x658b5000-0x65f24fff] (6750208 bytes)
Mar 06 08:40:11 archlinux kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
Mar 06 08:40:11 archlinux kernel: futex hash table entries: 4096 (order: 6, 262144 bytes, linear)
Mar 06 08:40:11 archlinux kernel: pinctrl core: initialized pinctrl subsystem
Mar 06 08:40:11 archlinux kernel: PM: RTC time: 16:40:10, date: 2021-03-06
Mar 06 08:40:11 archlinux kernel: NET: Registered protocol family 16
Mar 06 08:40:11 archlinux kernel: DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
Mar 06 08:40:11 archlinux kernel: DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
Mar 06 08:40:11 archlinux kernel: DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
Mar 06 08:40:11 archlinux kernel: audit: initializing netlink subsys (disabled)
Mar 06 08:40:11 archlinux kernel: audit: type=2000 audit(1615048810.036:1): state=initialized audit_enabled=0 res=1
Mar 06 08:40:11 archlinux kernel: thermal_sys: Registered thermal governor 'fair_share'
Mar 06 08:40:11 archlinux kernel: thermal_sys: Registered thermal governor 'bang_bang'
Mar 06 08:40:11 archlinux kernel: thermal_sys: Registered thermal governor 'step_wise'
Mar 06 08:40:11 archlinux kernel: thermal_sys: Registered thermal governor 'user_space'
Mar 06 08:40:11 archlinux kernel: thermal_sys: Registered thermal governor 'power_allocator'
Mar 06 08:40:11 archlinux kernel: cpuidle: using governor ladder
Mar 06 08:40:11 archlinux kernel: cpuidle: using governor menu
Mar 06 08:40:11 archlinux kernel: Simple Boot Flag at 0x47 set to 0x80
Mar 06 08:40:11 archlinux kernel: ACPI: bus type PCI registered
Mar 06 08:40:11 archlinux kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Mar 06 08:40:11 archlinux kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
Mar 06 08:40:11 archlinux kernel: PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
Mar 06 08:40:11 archlinux kernel: PCI: Using configuration type 1 for base access
Mar 06 08:40:11 archlinux kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
Mar 06 08:40:11 archlinux kernel: HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
Mar 06 08:40:11 archlinux kernel: HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
Mar 06 08:40:11 archlinux kernel: fbcon: Taking over console
Mar 06 08:40:11 archlinux kernel: ACPI: Added _OSI(Module Device)
Mar 06 08:40:11 archlinux kernel: ACPI: Added _OSI(Processor Device)
Mar 06 08:40:11 archlinux kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Mar 06 08:40:11 archlinux kernel: ACPI: Added _OSI(Processor Aggregator Device)
Mar 06 08:40:11 archlinux kernel: ACPI: Added _OSI(Linux-Dell-Video)
Mar 06 08:40:11 archlinux kernel: ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
Mar 06 08:40:11 archlinux kernel: ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
Mar 06 08:40:11 archlinux kernel: ACPI: 11 ACPI AML tables successfully acquired and loaded
Mar 06 08:40:11 archlinux kernel: ACPI: Dynamic OEM Table Load:
Mar 06 08:40:11 archlinux kernel: ACPI: SSDT 0xFFFF9991012D5800 0000FC (v02 PmRef  Cpu0Psd  00003000 INTL 20160527)
Mar 06 08:40:11 archlinux kernel: ACPI: \_SB_.PR00: _OSC native thermal LVT Acked
Mar 06 08:40:11 archlinux kernel: ACPI: Dynamic OEM Table Load:
Mar 06 08:40:11 archlinux kernel: ACPI: SSDT 0xFFFF9991013B0800 000502 (v02 PmRef  Cpu0Cst  00003001 INTL 20160527)
Mar 06 08:40:11 archlinux kernel: ACPI: Dynamic OEM Table Load:
Mar 06 08:40:11 archlinux kernel: ACPI: SSDT 0xFFFF9991013B4000 000581 (v02 PmRef  Cpu0Ist  00003000 INTL 20160527)
Mar 06 08:40:11 archlinux kernel: ACPI: Dynamic OEM Table Load:
Mar 06 08:40:11 archlinux kernel: ACPI: SSDT 0xFFFF9991012EA600 00016C (v02 PmRef  Cpu0Hwp  00003000 INTL 20160527)
Mar 06 08:40:11 archlinux kernel: ACPI: Dynamic OEM Table Load:
Mar 06 08:40:11 archlinux kernel: ACPI: SSDT 0xFFFF99910136F000 000BEA (v02 PmRef  HwpLvt   00003000 INTL 20160527)
Mar 06 08:40:11 archlinux kernel: ACPI: Dynamic OEM Table Load:
Mar 06 08:40:11 archlinux kernel: ACPI: SSDT 0xFFFF9991013B5000 000778 (v02 PmRef  ApIst    00003000 INTL 20160527)
Mar 06 08:40:11 archlinux kernel: ACPI: Dynamic OEM Table Load:
Mar 06 08:40:11 archlinux kernel: ACPI: SSDT 0xFFFF9991012E0C00 0003D7 (v02 PmRef  ApHwp    00003000 INTL 20160527)
Mar 06 08:40:11 archlinux kernel: ACPI: Dynamic OEM Table Load:
Mar 06 08:40:11 archlinux kernel: ACPI: SSDT 0xFFFF99910136D000 000D22 (v02 PmRef  ApPsd    00003000 INTL 20160527)
Mar 06 08:40:11 archlinux kernel: ACPI: Dynamic OEM Table Load:
Mar 06 08:40:11 archlinux kernel: ACPI: SSDT 0xFFFF9991012E2000 0003CA (v02 PmRef  ApCst    00003000 INTL 20160527)
Mar 06 08:40:11 archlinux kernel: ACPI: EC: EC started
Mar 06 08:40:11 archlinux kernel: ACPI: EC: interrupt blocked
Mar 06 08:40:11 archlinux kernel: ACPI: EC: EC_CMD/EC_SC=0x934, EC_DATA=0x930
Mar 06 08:40:11 archlinux kernel: ACPI: \_SB_.PCI0.LPCB.ECDV: Boot DSDT EC used to handle transactions
Mar 06 08:40:11 archlinux kernel: ACPI: Interpreter enabled
Mar 06 08:40:11 archlinux kernel: ACPI: (supports S0 S3 S4 S5)
Mar 06 08:40:11 archlinux kernel: ACPI: Using IOAPIC for interrupt routing
Mar 06 08:40:11 archlinux kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Mar 06 08:40:11 archlinux kernel: ACPI: Enabled 9 GPEs in block 00 to 7F
Mar 06 08:40:11 archlinux kernel: ACPI: Power Resource [PG00] (on)
Mar 06 08:40:11 archlinux kernel: ACPI: Power Resource [USBC] (on)
Mar 06 08:40:11 archlinux kernel: ACPI: Power Resource [PXP] (on)
Mar 06 08:40:11 archlinux kernel: ACPI: Power Resource [V0PR] (on)
Mar 06 08:40:11 archlinux kernel: ACPI: Power Resource [V1PR] (on)
Mar 06 08:40:11 archlinux kernel: ACPI: Power Resource [V2PR] (on)
Mar 06 08:40:11 archlinux kernel: ACPI: Power Resource [WRST] (on)
Mar 06 08:40:11 archlinux kernel: ACPI: Power Resource [PIN] (off)
Mar 06 08:40:11 archlinux kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
Mar 06 08:40:11 archlinux kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
Mar 06 08:40:11 archlinux kernel: acpi PNP0A08:00: _OSC: platform does not support [AER]
Mar 06 08:40:11 archlinux kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability LTR DPC]
Mar 06 08:40:11 archlinux kernel: PCI host bridge to bus 0000:00
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff window]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff window]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff window]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff window]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff window]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff window]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff window]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff window]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff window]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff window]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x000f0000-0x000fffff window]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x6e800000-0xdfffffff window]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0xfc800000-0xfe7fffff window]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:00: root bus resource [bus 00-fe]
Mar 06 08:40:11 archlinux kernel: pci 0000:00:00.0: [8086:9b54] type 00 class 0x060000
Mar 06 08:40:11 archlinux kernel: pci 0000:00:01.0: [8086:1901] type 01 class 0x060400
Mar 06 08:40:11 archlinux kernel: pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
Mar 06 08:40:11 archlinux kernel: pci 0000:00:02.0: [8086:9bc4] type 00 class 0x030000
Mar 06 08:40:11 archlinux kernel: pci 0000:00:02.0: reg 0x10: [mem 0x604a000000-0x604affffff 64bit]
Mar 06 08:40:11 archlinux kernel: pci 0000:00:02.0: reg 0x18: [mem 0x4000000000-0x400fffffff 64bit pref]
Mar 06 08:40:11 archlinux kernel: pci 0000:00:02.0: reg 0x20: [io  0x4000-0x403f]
Mar 06 08:40:11 archlinux kernel: pci 0000:00:02.0: BAR 2: assigned to efifb
Mar 06 08:40:11 archlinux kernel: pci 0000:00:04.0: [8086:1903] type 00 class 0x118000
Mar 06 08:40:11 archlinux kernel: pci 0000:00:04.0: reg 0x10: [mem 0x604b110000-0x604b117fff 64bit]
Mar 06 08:40:11 archlinux kernel: pci 0000:00:08.0: [8086:1911] type 00 class 0x088000
Mar 06 08:40:11 archlinux kernel: pci 0000:00:08.0: reg 0x10: [mem 0x604b12b000-0x604b12bfff 64bit]
Mar 06 08:40:11 archlinux kernel: pci 0000:00:12.0: [8086:06f9] type 00 class 0x118000
Mar 06 08:40:11 archlinux kernel: pci 0000:00:12.0: reg 0x10: [mem 0x604b12a000-0x604b12afff 64bit]
Mar 06 08:40:11 archlinux kernel: pci 0000:00:13.0: [8086:06fc] type 00 class 0x070000
Mar 06 08:40:11 archlinux kernel: pci 0000:00:13.0: reg 0x10: [mem 0x604b122000-0x604b123fff 64bit]
Mar 06 08:40:11 archlinux kernel: pci 0000:00:13.0: PME# supported from D0 D3hot
Mar 06 08:40:11 archlinux kernel: pci 0000:00:14.0: [8086:06ed] type 00 class 0x0c0330
Mar 06 08:40:11 archlinux kernel: pci 0000:00:14.0: reg 0x10: [mem 0x604b100000-0x604b10ffff 64bit]
Mar 06 08:40:11 archlinux kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
Mar 06 08:40:11 archlinux kernel: pci 0000:00:14.2: [8086:06ef] type 00 class 0x050000
Mar 06 08:40:11 archlinux kernel: pci 0000:00:14.2: reg 0x10: [mem 0x604b120000-0x604b121fff 64bit]
Mar 06 08:40:11 archlinux kernel: pci 0000:00:14.2: reg 0x18: [mem 0x604b129000-0x604b129fff 64bit]
Mar 06 08:40:11 archlinux kernel: pci 0000:00:14.3: [8086:06f0] type 00 class 0x028000
Mar 06 08:40:11 archlinux kernel: pci 0000:00:14.3: reg 0x10: [mem 0x604b11c000-0x604b11ffff 64bit]
Mar 06 08:40:11 archlinux kernel: pci 0000:00:14.3: PME# supported from D0 D3hot D3cold
Mar 06 08:40:11 archlinux kernel: pci 0000:00:15.0: [8086:06e8] type 00 class 0x0c8000
Mar 06 08:40:11 archlinux kernel: pci 0000:00:15.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
Mar 06 08:40:11 archlinux kernel: pci 0000:00:15.1: [8086:06e9] type 00 class 0x0c8000
Mar 06 08:40:11 archlinux kernel: pci 0000:00:15.1: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
Mar 06 08:40:11 archlinux kernel: pci 0000:00:16.0: [8086:06e0] type 00 class 0x078000
Mar 06 08:40:11 archlinux kernel: pci 0000:00:16.0: reg 0x10: [mem 0x604b126000-0x604b126fff 64bit]
Mar 06 08:40:11 archlinux kernel: pci 0000:00:16.0: PME# supported from D3hot
Mar 06 08:40:11 archlinux kernel: pci 0000:00:1c.0: [8086:06b8] type 01 class 0x060400
Mar 06 08:40:11 archlinux kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
Mar 06 08:40:11 archlinux kernel: pci 0000:00:1c.0: PTM enabled (root), 4ns granularity
Mar 06 08:40:11 archlinux kernel: pci 0000:00:1d.0: [8086:06b0] type 01 class 0x060400
Mar 06 08:40:11 archlinux kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
Mar 06 08:40:11 archlinux kernel: pci 0000:00:1d.0: PTM enabled (root), 4ns granularity
Mar 06 08:40:11 archlinux kernel: pci 0000:00:1e.0: [8086:06a8] type 00 class 0x078000
Mar 06 08:40:11 archlinux kernel: pci 0000:00:1e.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
Mar 06 08:40:11 archlinux kernel: pci 0000:00:1f.0: [8086:068e] type 00 class 0x060100
Mar 06 08:40:11 archlinux kernel: pci 0000:00:1f.3: [8086:06c8] type 00 class 0x040380
Mar 06 08:40:11 archlinux kernel: pci 0000:00:1f.3: reg 0x10: [mem 0x604b118000-0x604b11bfff 64bit]
Mar 06 08:40:11 archlinux kernel: pci 0000:00:1f.3: reg 0x20: [mem 0x604b000000-0x604b0fffff 64bit]
Mar 06 08:40:11 archlinux kernel: pci 0000:00:1f.3: PME# supported from D3hot D3cold
Mar 06 08:40:11 archlinux kernel: pci 0000:00:1f.4: [8086:06a3] type 00 class 0x0c0500
Mar 06 08:40:11 archlinux kernel: pci 0000:00:1f.4: reg 0x10: [mem 0x604b124000-0x604b1240ff 64bit]
Mar 06 08:40:11 archlinux kernel: pci 0000:00:1f.4: reg 0x20: [io  0xefa0-0xefbf]
Mar 06 08:40:11 archlinux kernel: pci 0000:00:1f.5: [8086:06a4] type 00 class 0x0c8000
Mar 06 08:40:11 archlinux kernel: pci 0000:00:1f.5: reg 0x10: [mem 0xfe010000-0xfe010fff]
Mar 06 08:40:11 archlinux kernel: pci 0000:01:00.0: [10de:1fb8] type 00 class 0x030200
Mar 06 08:40:11 archlinux kernel: pci 0000:01:00.0: reg 0x10: [mem 0xb3000000-0xb3ffffff]
Mar 06 08:40:11 archlinux kernel: pci 0000:01:00.0: reg 0x14: [mem 0x70000000-0x7fffffff 64bit pref]
Mar 06 08:40:11 archlinux kernel: pci 0000:01:00.0: reg 0x1c: [mem 0x80000000-0x81ffffff 64bit pref]
Mar 06 08:40:11 archlinux kernel: pci 0000:01:00.0: reg 0x24: [io  0x3000-0x307f]
Mar 06 08:40:11 archlinux kernel: pci 0000:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
Mar 06 08:40:11 archlinux kernel: pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
Mar 06 08:40:11 archlinux kernel: pci 0000:01:00.0: 63.008 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x8 link at 0000:00:01.0 (capable of 126.016 Gb/s with 8.0 GT/s PCIe x16 link)
Mar 06 08:40:11 archlinux kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
Mar 06 08:40:11 archlinux kernel: pci 0000:00:01.0:   bridge window [io  0x3000-0x3fff]
Mar 06 08:40:11 archlinux kernel: pci 0000:00:01.0:   bridge window [mem 0xb3000000-0xb3ffffff]
Mar 06 08:40:11 archlinux kernel: pci 0000:00:01.0:   bridge window [mem 0x70000000-0x81ffffff 64bit pref]
Mar 06 08:40:11 archlinux kernel: pci 0000:02:00.0: [8086:15ea] type 01 class 0x060400
Mar 06 08:40:11 archlinux kernel: pci 0000:02:00.0: enabling Extended Tags
Mar 06 08:40:11 archlinux kernel: pci 0000:02:00.0: supports D1 D2
Mar 06 08:40:11 archlinux kernel: pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Mar 06 08:40:11 archlinux kernel: pci 0000:02:00.0: PTM enabled, 4ns granularity
Mar 06 08:40:11 archlinux kernel: pci 0000:00:1c.0: PCI bridge to [bus 02-6b]
Mar 06 08:40:11 archlinux kernel: pci 0000:00:1c.0:   bridge window [mem 0x84000000-0xb20fffff]
Mar 06 08:40:11 archlinux kernel: pci 0000:00:1c.0:   bridge window [mem 0x6000000000-0x6049ffffff 64bit pref]
Mar 06 08:40:11 archlinux kernel: pci 0000:03:00.0: [8086:15ea] type 01 class 0x060400
Mar 06 08:40:11 archlinux kernel: pci 0000:03:00.0: enabling Extended Tags
Mar 06 08:40:11 archlinux kernel: pci 0000:03:00.0: supports D1 D2
Mar 06 08:40:11 archlinux kernel: pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Mar 06 08:40:11 archlinux kernel: pci 0000:03:01.0: [8086:15ea] type 01 class 0x060400
Mar 06 08:40:11 archlinux kernel: pci 0000:03:01.0: enabling Extended Tags
Mar 06 08:40:11 archlinux kernel: pci 0000:03:01.0: supports D1 D2
Mar 06 08:40:11 archlinux kernel: pci 0000:03:01.0: PME# supported from D0 D1 D2 D3hot D3cold
Mar 06 08:40:11 archlinux kernel: pci 0000:03:02.0: [8086:15ea] type 01 class 0x060400
Mar 06 08:40:11 archlinux kernel: pci 0000:03:02.0: enabling Extended Tags
Mar 06 08:40:11 archlinux kernel: pci 0000:03:02.0: supports D1 D2
Mar 06 08:40:11 archlinux kernel: pci 0000:03:02.0: PME# supported from D0 D1 D2 D3hot D3cold
Mar 06 08:40:11 archlinux kernel: pci 0000:03:04.0: [8086:15ea] type 01 class 0x060400
Mar 06 08:40:11 archlinux kernel: pci 0000:03:04.0: enabling Extended Tags
Mar 06 08:40:11 archlinux kernel: pci 0000:03:04.0: supports D1 D2
Mar 06 08:40:11 archlinux kernel: pci 0000:03:04.0: PME# supported from D0 D1 D2 D3hot D3cold
Mar 06 08:40:11 archlinux kernel: pci 0000:02:00.0: PCI bridge to [bus 03-6b]
Mar 06 08:40:11 archlinux kernel: pci 0000:02:00.0:   bridge window [mem 0x84000000-0xb1ffffff]
Mar 06 08:40:11 archlinux kernel: pci 0000:02:00.0:   bridge window [mem 0x6000000000-0x6049ffffff 64bit pref]
Mar 06 08:40:11 archlinux kernel: pci 0000:04:00.0: [8086:15eb] type 00 class 0x088000
Mar 06 08:40:11 archlinux kernel: pci 0000:04:00.0: reg 0x10: [mem 0xb1f00000-0xb1f3ffff]
Mar 06 08:40:11 archlinux kernel: pci 0000:04:00.0: reg 0x14: [mem 0xb1f40000-0xb1f40fff]
Mar 06 08:40:11 archlinux kernel: pci 0000:04:00.0: enabling Extended Tags
Mar 06 08:40:11 archlinux kernel: pci 0000:04:00.0: supports D1 D2
Mar 06 08:40:11 archlinux kernel: pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Mar 06 08:40:11 archlinux kernel: pci 0000:03:00.0: PCI bridge to [bus 04]
Mar 06 08:40:11 archlinux kernel: pci 0000:03:00.0:   bridge window [mem 0xb1f00000-0xb1ffffff]
Mar 06 08:40:11 archlinux kernel: pci 0000:03:01.0: PCI bridge to [bus 05-37]
Mar 06 08:40:11 archlinux kernel: pci 0000:03:01.0:   bridge window [mem 0x9b000000-0xb1efffff]
Mar 06 08:40:11 archlinux kernel: pci 0000:03:01.0:   bridge window [mem 0x6025000000-0x6049ffffff 64bit pref]
Mar 06 08:40:11 archlinux kernel: pci 0000:38:00.0: [8086:15ec] type 00 class 0x0c0330
Mar 06 08:40:11 archlinux kernel: pci 0000:38:00.0: reg 0x10: [mem 0x9af00000-0x9af0ffff]
Mar 06 08:40:11 archlinux kernel: pci 0000:38:00.0: enabling Extended Tags
Mar 06 08:40:11 archlinux kernel: pci 0000:38:00.0: supports D1 D2
Mar 06 08:40:11 archlinux kernel: pci 0000:38:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Mar 06 08:40:11 archlinux kernel: pci 0000:38:00.0: 8.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s PCIe x4 link at 0000:03:02.0 (capable of 31.504 Gb/s with 8.0 GT/s PCIe x4 link)
Mar 06 08:40:11 archlinux kernel: pci 0000:03:02.0: PCI bridge to [bus 38]
Mar 06 08:40:11 archlinux kernel: pci 0000:03:02.0:   bridge window [mem 0x9af00000-0x9affffff]
Mar 06 08:40:11 archlinux kernel: pci 0000:03:04.0: PCI bridge to [bus 39-6b]
Mar 06 08:40:11 archlinux kernel: pci 0000:03:04.0:   bridge window [mem 0x84000000-0x9aefffff]
Mar 06 08:40:11 archlinux kernel: pci 0000:03:04.0:   bridge window [mem 0x6000000000-0x6024ffffff 64bit pref]
Mar 06 08:40:11 archlinux kernel: pci 0000:6c:00.0: [1179:011a] type 00 class 0x010802
Mar 06 08:40:11 archlinux kernel: pci 0000:6c:00.0: reg 0x10: [mem 0xb4000000-0xb4003fff 64bit]
Mar 06 08:40:11 archlinux kernel: pci 0000:00:1d.0: PCI bridge to [bus 6c]
Mar 06 08:40:11 archlinux kernel: pci 0000:00:1d.0:   bridge window [mem 0xb4000000-0xb40fffff]
Mar 06 08:40:11 archlinux kernel: ACPI: EC: interrupt unblocked
Mar 06 08:40:11 archlinux kernel: ACPI: EC: event unblocked
Mar 06 08:40:11 archlinux kernel: ACPI: EC: EC_CMD/EC_SC=0x934, EC_DATA=0x930
Mar 06 08:40:11 archlinux kernel: ACPI: EC: GPE=0x6e
Mar 06 08:40:11 archlinux kernel: ACPI: \_SB_.PCI0.LPCB.ECDV: Boot DSDT EC initialization complete
Mar 06 08:40:11 archlinux kernel: ACPI: \_SB_.PCI0.LPCB.ECDV: EC: Used to handle transactions and events
Mar 06 08:40:11 archlinux kernel: iommu: Default domain type: Translated 
Mar 06 08:40:11 archlinux kernel: pci 0000:00:02.0: vgaarb: setting as boot VGA device
Mar 06 08:40:11 archlinux kernel: pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
Mar 06 08:40:11 archlinux kernel: pci 0000:00:02.0: vgaarb: bridge control possible
Mar 06 08:40:11 archlinux kernel: vgaarb: loaded
Mar 06 08:40:11 archlinux kernel: SCSI subsystem initialized
Mar 06 08:40:11 archlinux kernel: libata version 3.00 loaded.
Mar 06 08:40:11 archlinux kernel: ACPI: bus type USB registered
Mar 06 08:40:11 archlinux kernel: usbcore: registered new interface driver usbfs
Mar 06 08:40:11 archlinux kernel: usbcore: registered new interface driver hub
Mar 06 08:40:11 archlinux kernel: usbcore: registered new device driver usb
Mar 06 08:40:11 archlinux kernel: pps_core: LinuxPPS API ver. 1 registered
Mar 06 08:40:11 archlinux kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Mar 06 08:40:11 archlinux kernel: PTP clock support registered
Mar 06 08:40:11 archlinux kernel: EDAC MC: Ver: 3.0.0
Mar 06 08:40:11 archlinux kernel: Registered efivars operations
Mar 06 08:40:11 archlinux kernel: NetLabel: Initializing
Mar 06 08:40:11 archlinux kernel: NetLabel:  domain hash size = 128
Mar 06 08:40:11 archlinux kernel: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
Mar 06 08:40:11 archlinux kernel: NetLabel:  unlabeled traffic allowed by default
Mar 06 08:40:11 archlinux kernel: PCI: Using ACPI for IRQ routing
Mar 06 08:40:11 archlinux kernel: PCI: pci_cache_line_size set to 64 bytes
Mar 06 08:40:11 archlinux kernel: e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
Mar 06 08:40:11 archlinux kernel: e820: reserve RAM buffer [mem 0x4ea09000-0x4fffffff]
Mar 06 08:40:11 archlinux kernel: e820: reserve RAM buffer [mem 0x51032000-0x53ffffff]
Mar 06 08:40:11 archlinux kernel: e820: reserve RAM buffer [mem 0x5f6f7000-0x5fffffff]
Mar 06 08:40:11 archlinux kernel: e820: reserve RAM buffer [mem 0x6270e018-0x63ffffff]
Mar 06 08:40:11 archlinux kernel: e820: reserve RAM buffer [mem 0x62826000-0x63ffffff]
Mar 06 08:40:11 archlinux kernel: e820: reserve RAM buffer [mem 0x66000000-0x67ffffff]
Mar 06 08:40:11 archlinux kernel: e820: reserve RAM buffer [mem 0x88d800000-0x88fffffff]
Mar 06 08:40:11 archlinux kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
Mar 06 08:40:11 archlinux kernel: hpet0: 8 comparators, 64-bit 24.000000 MHz counter
Mar 06 08:40:11 archlinux kernel: clocksource: Switched to clocksource tsc-early
Mar 06 08:40:11 archlinux kernel: VFS: Disk quotas dquot_6.6.0
Mar 06 08:40:11 archlinux kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Mar 06 08:40:11 archlinux kernel: pnp: PnP ACPI init
Mar 06 08:40:11 archlinux kernel: system 00:00: [mem 0x40000000-0x403fffff] has been reserved
Mar 06 08:40:11 archlinux kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
Mar 06 08:40:11 archlinux kernel: system 00:01: [io  0x1800-0x18fe] has been reserved
Mar 06 08:40:11 archlinux kernel: system 00:01: [mem 0xfd000000-0xfd69ffff] has been reserved
Mar 06 08:40:11 archlinux kernel: system 00:01: [mem 0xfd6c0000-0xfd6cffff] has been reserved
Mar 06 08:40:11 archlinux kernel: system 00:01: [mem 0xfd6f0000-0xfdffffff] has been reserved
Mar 06 08:40:11 archlinux kernel: system 00:01: [mem 0xfe000000-0xfe01ffff] could not be reserved
Mar 06 08:40:11 archlinux kernel: system 00:01: [mem 0xfe200000-0xfe7fffff] has been reserved
Mar 06 08:40:11 archlinux kernel: system 00:01: [mem 0xff000000-0xffffffff] has been reserved
Mar 06 08:40:11 archlinux kernel: system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
Mar 06 08:40:11 archlinux kernel: system 00:02: [io  0x2000-0x20fe] has been reserved
Mar 06 08:40:11 archlinux kernel: system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
Mar 06 08:40:11 archlinux kernel: system 00:03: [io  0x0680-0x069f] has been reserved
Mar 06 08:40:11 archlinux kernel: system 00:03: [io  0x164e-0x164f] has been reserved
Mar 06 08:40:11 archlinux kernel: system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
Mar 06 08:40:11 archlinux kernel: pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
Mar 06 08:40:11 archlinux kernel: system 00:05: [io  0x1854-0x1857] has been reserved
Mar 06 08:40:11 archlinux kernel: system 00:05: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
Mar 06 08:40:11 archlinux kernel: pnp 00:06: Plug and Play ACPI device, IDs PNP0303 (active)
Mar 06 08:40:11 archlinux kernel: pnp 00:07: Plug and Play ACPI device, IDs DLL097e PNP0f13 (active)
Mar 06 08:40:11 archlinux kernel: system 00:08: [mem 0xfed10000-0xfed17fff] has been reserved
Mar 06 08:40:11 archlinux kernel: system 00:08: [mem 0xfed18000-0xfed18fff] has been reserved
Mar 06 08:40:11 archlinux kernel: system 00:08: [mem 0xfed19000-0xfed19fff] has been reserved
Mar 06 08:40:11 archlinux kernel: system 00:08: [mem 0xe0000000-0xefffffff] has been reserved
Mar 06 08:40:11 archlinux kernel: system 00:08: [mem 0xfed20000-0xfed3ffff] has been reserved
Mar 06 08:40:11 archlinux kernel: system 00:08: [mem 0xfed90000-0xfed93fff] has been reserved
Mar 06 08:40:11 archlinux kernel: system 00:08: [mem 0xfed45000-0xfed8ffff] has been reserved
Mar 06 08:40:11 archlinux kernel: system 00:08: [mem 0xfee00000-0xfeefffff] has been reserved
Mar 06 08:40:11 archlinux kernel: system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
Mar 06 08:40:11 archlinux kernel: system 00:09: [mem 0xfe038000-0xfe038fff] has been reserved
Mar 06 08:40:11 archlinux kernel: system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
Mar 06 08:40:11 archlinux kernel: pnp: PnP ACPI: found 10 devices
Mar 06 08:40:11 archlinux kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Mar 06 08:40:11 archlinux kernel: NET: Registered protocol family 2
Mar 06 08:40:11 archlinux kernel: tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
Mar 06 08:40:11 archlinux kernel: TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
Mar 06 08:40:11 archlinux kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
Mar 06 08:40:11 archlinux kernel: TCP: Hash tables configured (established 262144 bind 65536)
Mar 06 08:40:11 archlinux kernel: MPTCP token hash table entries: 32768 (order: 7, 786432 bytes, linear)
Mar 06 08:40:11 archlinux kernel: UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
Mar 06 08:40:11 archlinux kernel: UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
Mar 06 08:40:11 archlinux kernel: NET: Registered protocol family 1
Mar 06 08:40:11 archlinux kernel: NET: Registered protocol family 44
Mar 06 08:40:11 archlinux kernel: pci 0000:01:00.0: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
Mar 06 08:40:11 archlinux kernel: pci 0000:03:01.0: bridge window [io  0x1000-0x0fff] to [bus 05-37] add_size 1000
Mar 06 08:40:11 archlinux kernel: pci 0000:03:04.0: bridge window [io  0x1000-0x0fff] to [bus 39-6b] add_size 1000
Mar 06 08:40:11 archlinux kernel: pci 0000:02:00.0: bridge window [io  0x1000-0x0fff] to [bus 03-6b] add_size 2000
Mar 06 08:40:11 archlinux kernel: pci 0000:00:1c.0: bridge window [io  0x1000-0x0fff] to [bus 02-6b] add_size 3000
Mar 06 08:40:11 archlinux kernel: pci 0000:00:15.0: BAR 0: assigned [mem 0x4010000000-0x4010000fff 64bit]
Mar 06 08:40:11 archlinux kernel: pci 0000:00:15.1: BAR 0: assigned [mem 0x4010001000-0x4010001fff 64bit]
Mar 06 08:40:11 archlinux kernel: pci 0000:00:1c.0: BAR 13: assigned [io  0x5000-0x7fff]
Mar 06 08:40:11 archlinux kernel: pci 0000:00:1e.0: BAR 0: assigned [mem 0x4010002000-0x4010002fff 64bit]
Mar 06 08:40:11 archlinux kernel: pci 0000:01:00.0: BAR 6: no space for [mem size 0x00080000 pref]
Mar 06 08:40:11 archlinux kernel: pci 0000:01:00.0: BAR 6: failed to assign [mem size 0x00080000 pref]
Mar 06 08:40:11 archlinux kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
Mar 06 08:40:11 archlinux kernel: pci 0000:00:01.0:   bridge window [io  0x3000-0x3fff]
Mar 06 08:40:11 archlinux kernel: pci 0000:00:01.0:   bridge window [mem 0xb3000000-0xb3ffffff]
Mar 06 08:40:11 archlinux kernel: pci 0000:00:01.0:   bridge window [mem 0x70000000-0x81ffffff 64bit pref]
Mar 06 08:40:11 archlinux kernel: pci 0000:02:00.0: BAR 13: assigned [io  0x5000-0x6fff]
Mar 06 08:40:11 archlinux kernel: pci 0000:03:01.0: BAR 13: assigned [io  0x5000-0x5fff]
Mar 06 08:40:11 archlinux kernel: pci 0000:03:04.0: BAR 13: assigned [io  0x6000-0x6fff]
Mar 06 08:40:11 archlinux kernel: pci 0000:03:00.0: PCI bridge to [bus 04]
Mar 06 08:40:11 archlinux kernel: pci 0000:03:00.0:   bridge window [mem 0xb1f00000-0xb1ffffff]
Mar 06 08:40:11 archlinux kernel: pci 0000:03:01.0: PCI bridge to [bus 05-37]
Mar 06 08:40:11 archlinux kernel: pci 0000:03:01.0:   bridge window [io  0x5000-0x5fff]
Mar 06 08:40:11 archlinux kernel: pci 0000:03:01.0:   bridge window [mem 0x9b000000-0xb1efffff]
Mar 06 08:40:11 archlinux kernel: pci 0000:03:01.0:   bridge window [mem 0x6025000000-0x6049ffffff 64bit pref]
Mar 06 08:40:11 archlinux kernel: pci 0000:03:02.0: PCI bridge to [bus 38]
Mar 06 08:40:11 archlinux kernel: pci 0000:03:02.0:   bridge window [mem 0x9af00000-0x9affffff]
Mar 06 08:40:11 archlinux kernel: pci 0000:03:04.0: PCI bridge to [bus 39-6b]
Mar 06 08:40:11 archlinux kernel: pci 0000:03:04.0:   bridge window [io  0x6000-0x6fff]
Mar 06 08:40:11 archlinux kernel: pci 0000:03:04.0:   bridge window [mem 0x84000000-0x9aefffff]
Mar 06 08:40:11 archlinux kernel: pci 0000:03:04.0:   bridge window [mem 0x6000000000-0x6024ffffff 64bit pref]
Mar 06 08:40:11 archlinux kernel: pci 0000:02:00.0: PCI bridge to [bus 03-6b]
Mar 06 08:40:11 archlinux kernel: pci 0000:02:00.0:   bridge window [io  0x5000-0x6fff]
Mar 06 08:40:11 archlinux kernel: pci 0000:02:00.0:   bridge window [mem 0x84000000-0xb1ffffff]
Mar 06 08:40:11 archlinux kernel: pci 0000:02:00.0:   bridge window [mem 0x6000000000-0x6049ffffff 64bit pref]
Mar 06 08:40:11 archlinux kernel: pci 0000:00:1c.0: PCI bridge to [bus 02-6b]
Mar 06 08:40:11 archlinux kernel: pci 0000:00:1c.0:   bridge window [io  0x5000-0x7fff]
Mar 06 08:40:11 archlinux kernel: pci 0000:00:1c.0:   bridge window [mem 0x84000000-0xb20fffff]
Mar 06 08:40:11 archlinux kernel: pci 0000:00:1c.0:   bridge window [mem 0x6000000000-0x6049ffffff 64bit pref]
Mar 06 08:40:11 archlinux kernel: pci 0000:00:1d.0: PCI bridge to [bus 6c]
Mar 06 08:40:11 archlinux kernel: pci 0000:00:1d.0:   bridge window [mem 0xb4000000-0xb40fffff]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff window]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff window]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff window]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:00: resource 10 [mem 0x000cc000-0x000cffff window]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:00: resource 11 [mem 0x000d0000-0x000d3fff window]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:00: resource 12 [mem 0x000d4000-0x000d7fff window]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:00: resource 13 [mem 0x000d8000-0x000dbfff window]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:00: resource 14 [mem 0x000dc000-0x000dffff window]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:00: resource 15 [mem 0x000e0000-0x000e3fff window]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:00: resource 16 [mem 0x000e4000-0x000e7fff window]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:00: resource 17 [mem 0x000e8000-0x000ebfff window]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:00: resource 18 [mem 0x000ec000-0x000effff window]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:00: resource 19 [mem 0x000f0000-0x000fffff window]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:00: resource 20 [mem 0x6e800000-0xdfffffff window]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:00: resource 21 [mem 0x4000000000-0x7fffffffff window]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:00: resource 22 [mem 0xfc800000-0xfe7fffff window]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:01: resource 0 [io  0x3000-0x3fff]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:01: resource 1 [mem 0xb3000000-0xb3ffffff]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:01: resource 2 [mem 0x70000000-0x81ffffff 64bit pref]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:02: resource 0 [io  0x5000-0x7fff]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:02: resource 1 [mem 0x84000000-0xb20fffff]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:02: resource 2 [mem 0x6000000000-0x6049ffffff 64bit pref]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:03: resource 0 [io  0x5000-0x6fff]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:03: resource 1 [mem 0x84000000-0xb1ffffff]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:03: resource 2 [mem 0x6000000000-0x6049ffffff 64bit pref]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:04: resource 1 [mem 0xb1f00000-0xb1ffffff]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:05: resource 0 [io  0x5000-0x5fff]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:05: resource 1 [mem 0x9b000000-0xb1efffff]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:05: resource 2 [mem 0x6025000000-0x6049ffffff 64bit pref]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:38: resource 1 [mem 0x9af00000-0x9affffff]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:39: resource 0 [io  0x6000-0x6fff]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:39: resource 1 [mem 0x84000000-0x9aefffff]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:39: resource 2 [mem 0x6000000000-0x6024ffffff 64bit pref]
Mar 06 08:40:11 archlinux kernel: pci_bus 0000:6c: resource 1 [mem 0xb4000000-0xb40fffff]
Mar 06 08:40:11 archlinux kernel: pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
Mar 06 08:40:11 archlinux kernel: PCI: CLS 0 bytes, default 64
Mar 06 08:40:11 archlinux kernel: Trying to unpack rootfs image as initramfs...
Mar 06 08:40:11 archlinux kernel: Freeing initrd memory: 23356K
Mar 06 08:40:11 archlinux kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Mar 06 08:40:11 archlinux kernel: software IO TLB: mapped [mem 0x000000005b6f7000-0x000000005f6f7000] (64MB)
Mar 06 08:40:11 archlinux kernel: check: Scanning for low memory corruption every 60 seconds
Mar 06 08:40:11 archlinux kernel: Initialise system trusted keyrings
Mar 06 08:40:11 archlinux kernel: Key type blacklist registered
Mar 06 08:40:11 archlinux kernel: workingset: timestamp_bits=41 max_order=23 bucket_order=0
Mar 06 08:40:11 archlinux kernel: zbud: loaded
Mar 06 08:40:11 archlinux kernel: Key type asymmetric registered
Mar 06 08:40:11 archlinux kernel: Asymmetric key parser 'x509' registered
Mar 06 08:40:11 archlinux kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
Mar 06 08:40:11 archlinux kernel: io scheduler mq-deadline registered
Mar 06 08:40:11 archlinux kernel: io scheduler kyber registered
Mar 06 08:40:11 archlinux kernel: io scheduler bfq registered
Mar 06 08:40:11 archlinux kernel: atomic64_test: passed for x86-64 platform with CX8 and with SSE
Mar 06 08:40:11 archlinux kernel: pcieport 0000:00:01.0: PME: Signaling with IRQ 120
Mar 06 08:40:11 archlinux kernel: pcieport 0000:00:1c.0: PME: Signaling with IRQ 121
Mar 06 08:40:11 archlinux kernel: pcieport 0000:00:1c.0: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
Mar 06 08:40:11 archlinux kernel: pcieport 0000:00:1d.0: PME: Signaling with IRQ 122
Mar 06 08:40:11 archlinux kernel: pcieport 0000:03:01.0: pciehp: Slot #1 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
Mar 06 08:40:11 archlinux kernel: pcieport 0000:03:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
Mar 06 08:40:11 archlinux kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Mar 06 08:40:11 archlinux kernel: efifb: probing for efifb
Mar 06 08:40:11 archlinux kernel: efifb: framebuffer at 0x4000000000, using 36000k, total 36000k
Mar 06 08:40:11 archlinux kernel: efifb: mode is 3840x2400x32, linelength=15360, pages=1
Mar 06 08:40:11 archlinux kernel: efifb: scrolling: redraw
Mar 06 08:40:11 archlinux kernel: efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
Mar 06 08:40:11 archlinux kernel: Console: switching to colour frame buffer device 240x75
Mar 06 08:40:11 archlinux kernel: fb0: EFI VGA frame buffer device
Mar 06 08:40:11 archlinux kernel: intel_idle: MWAIT substates: 0x11142120
Mar 06 08:40:11 archlinux kernel: Monitor-Mwait will be used to enter C-1 state
Mar 06 08:40:11 archlinux kernel: Monitor-Mwait will be used to enter C-2 state
Mar 06 08:40:11 archlinux kernel: Monitor-Mwait will be used to enter C-3 state
Mar 06 08:40:11 archlinux kernel: ACPI: \_SB_.PR00: Found 3 idle states
Mar 06 08:40:11 archlinux kernel: intel_idle: v0.5.1 model 0xA5
Mar 06 08:40:11 archlinux kernel: intel_idle: Local APIC timer is reliable in all C-states
Mar 06 08:40:11 archlinux kernel: ACPI: AC Adapter [AC] (on-line)
Mar 06 08:40:11 archlinux kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
Mar 06 08:40:11 archlinux kernel: ACPI: Lid Switch [LID0]
Mar 06 08:40:11 archlinux kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
Mar 06 08:40:11 archlinux kernel: ACPI: Power Button [PBTN]
Mar 06 08:40:11 archlinux kernel: Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Mar 06 08:40:11 archlinux kernel: serial 0000:00:13.0: enabling device (0000 -> 0002)
Mar 06 08:40:11 archlinux kernel: Non-volatile memory driver v1.3
Mar 06 08:40:11 archlinux kernel: AMD-Vi: AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
Mar 06 08:40:11 archlinux kernel: AMD-Vi: AMD IOMMUv2 functionality not available on this system
Mar 06 08:40:11 archlinux kernel: nvme 0000:6c:00.0: platform quirk: setting simple suspend
Mar 06 08:40:11 archlinux kernel: nvme nvme0: pci function 0000:6c:00.0
Mar 06 08:40:11 archlinux kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Mar 06 08:40:11 archlinux kernel: ehci-pci: EHCI PCI platform driver
Mar 06 08:40:11 archlinux kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Mar 06 08:40:11 archlinux kernel: ohci-pci: OHCI PCI platform driver
Mar 06 08:40:11 archlinux kernel: uhci_hcd: USB Universal Host Controller Interface driver
Mar 06 08:40:11 archlinux kernel: usbcore: registered new interface driver usbserial_generic
Mar 06 08:40:11 archlinux kernel: usbserial: USB Serial support registered for generic
Mar 06 08:40:11 archlinux kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
Mar 06 08:40:11 archlinux kernel: i8042: Warning: Keylock active
Mar 06 08:40:11 archlinux kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Mar 06 08:40:11 archlinux kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
Mar 06 08:40:11 archlinux kernel: rtc_cmos 00:04: RTC can wake from S4
Mar 06 08:40:11 archlinux kernel: rtc_cmos 00:04: registered as rtc0
Mar 06 08:40:11 archlinux kernel: rtc_cmos 00:04: setting system clock to 2021-03-06T16:40:11 UTC (1615048811)
Mar 06 08:40:11 archlinux kernel: rtc_cmos 00:04: alarms up to one month, y3k, 242 bytes nvram
Mar 06 08:40:11 archlinux kernel: intel_pstate: Intel P-state driver initializing
Mar 06 08:40:11 archlinux kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
Mar 06 08:40:11 archlinux kernel: intel_pstate: HWP enabled
Mar 06 08:40:11 archlinux kernel: ledtrig-cpu: registered to indicate activity on CPUs
Mar 06 08:40:11 archlinux kernel: nvme nvme0: 12/0/0 default/read/poll queues
Mar 06 08:40:11 archlinux kernel: pstore: Registered efi as persistent store backend
Mar 06 08:40:11 archlinux kernel: hid: raw HID events driver (C) Jiri Kosina
Mar 06 08:40:11 archlinux kernel: intel_pmc_core INT33A1:00:  initialized
Mar 06 08:40:11 archlinux kernel: drop_monitor: Initializing network drop monitor service
Mar 06 08:40:11 archlinux kernel: Initializing XFRM netlink socket
Mar 06 08:40:11 archlinux kernel: NET: Registered protocol family 10
Mar 06 08:40:11 archlinux kernel: Segment Routing with IPv6
Mar 06 08:40:11 archlinux kernel: RPL Segment Routing with IPv6
Mar 06 08:40:11 archlinux kernel: NET: Registered protocol family 17
Mar 06 08:40:11 archlinux kernel:  nvme0n1: p1 p2 p5
Mar 06 08:40:11 archlinux kernel: microcode: sig=0xa0652, pf=0x20, revision=0xe0
Mar 06 08:40:11 archlinux kernel: microcode: Microcode Update Driver: v2.2.
Mar 06 08:40:11 archlinux kernel: IPI shorthand broadcast: enabled
Mar 06 08:40:11 archlinux kernel: sched_clock: Marking stable (600319442, 384159)->(603449479, -2745878)
Mar 06 08:40:11 archlinux kernel: registered taskstats version 1
Mar 06 08:40:11 archlinux kernel: Loading compiled-in X.509 certificates
Mar 06 08:40:11 archlinux kernel: Loaded X.509 cert 'Build time autogenerated kernel key: 298c74e799b1da1e04953d75dc402ed94591c68e'
Mar 06 08:40:11 archlinux kernel: zswap: loaded using pool lz4/z3fold
Mar 06 08:40:11 archlinux kernel: Key type ._fscrypt registered
Mar 06 08:40:11 archlinux kernel: Key type .fscrypt registered
Mar 06 08:40:11 archlinux kernel: Key type fscrypt-provisioning registered
Mar 06 08:40:11 archlinux kernel: pstore: Using crash dump compression: zstd
Mar 06 08:40:11 archlinux kernel: PM:   Magic number: 13:261:691
Mar 06 08:40:11 archlinux kernel: RAS: Correctable Errors collector initialized.
Mar 06 08:40:11 archlinux kernel: battery: ACPI: Battery Slot [BAT0] (battery present)
Mar 06 08:40:11 archlinux kernel: Freeing unused decrypted memory: 2036K
Mar 06 08:40:11 archlinux kernel: Freeing unused kernel image (initmem) memory: 1704K
Mar 06 08:40:11 archlinux kernel: Write protecting the kernel read-only data: 26624k
Mar 06 08:40:11 archlinux kernel: Freeing unused kernel image (text/rodata gap) memory: 2036K
Mar 06 08:40:11 archlinux kernel: Freeing unused kernel image (rodata/data gap) memory: 1432K
Mar 06 08:40:11 archlinux kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Mar 06 08:40:11 archlinux kernel: rodata_test: all tests were successful
Mar 06 08:40:11 archlinux kernel: Run /init as init process
Mar 06 08:40:11 archlinux kernel:   with arguments:
Mar 06 08:40:11 archlinux kernel:     /init
Mar 06 08:40:11 archlinux kernel:   with environment:
Mar 06 08:40:11 archlinux kernel:     HOME=/
Mar 06 08:40:11 archlinux kernel:     TERM=linux
Mar 06 08:40:11 archlinux kernel: random: crng init done
Mar 06 08:40:11 archlinux systemd[1]: Successfully credited entropy passed from boot loader.
Mar 06 08:40:11 archlinux systemd[1]: systemd 247.3-1-arch running in system mode. (+PAM +AUDIT -SELINUX -IMA -APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +ZSTD +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=hybrid)
Mar 06 08:40:11 archlinux systemd[1]: Detected architecture x86-64.
Mar 06 08:40:11 archlinux systemd[1]: Running in initial RAM disk.
Mar 06 08:40:11 archlinux systemd[1]: Initializing machine ID from random generator.
Mar 06 08:40:11 archlinux systemd[1]: Queued start job for default target Initrd Default Target.
Mar 06 08:40:11 archlinux systemd[1]: Created slice system-systemd\x2dcryptsetup.slice.
Mar 06 08:40:11 archlinux systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
Mar 06 08:40:11 archlinux systemd[1]: Reached target Local File Systems.
Mar 06 08:40:11 archlinux systemd[1]: Reached target Paths.
Mar 06 08:40:11 archlinux systemd[1]: Reached target Slices.
Mar 06 08:40:11 archlinux systemd[1]: Reached target Swap.
Mar 06 08:40:11 archlinux systemd[1]: Reached target Timers.
Mar 06 08:40:11 archlinux systemd[1]: Listening on Journal Audit Socket.
Mar 06 08:40:11 archlinux systemd[1]: Listening on Journal Socket (/dev/log).
Mar 06 08:40:11 archlinux systemd[1]: Listening on Journal Socket.
Mar 06 08:40:11 archlinux systemd[1]: Listening on udev Control Socket.
Mar 06 08:40:11 archlinux systemd[1]: Listening on udev Kernel Socket.
Mar 06 08:40:11 archlinux systemd[1]: Reached target Sockets.
Mar 06 08:40:11 archlinux systemd[1]: Starting Create list of static device nodes for the current kernel...
Mar 06 08:40:11 archlinux systemd[1]: Starting Journal Service...
Mar 06 08:40:11 archlinux systemd[1]: Starting Load Kernel Modules...
Mar 06 08:40:11 archlinux systemd[1]: Starting Coldplug All udev Devices...
Mar 06 08:40:11 archlinux systemd[1]: Finished Create list of static device nodes for the current kernel.
Mar 06 08:40:11 archlinux systemd[1]: Starting Create Static Device Nodes in /dev...
Mar 06 08:40:11 archlinux kernel: usbcore: registered new interface driver usbhid
Mar 06 08:40:11 archlinux kernel: usbhid: USB HID core driver
Mar 06 08:40:11 archlinux systemd[1]: Finished Load Kernel Modules.
Mar 06 08:40:11 archlinux systemd[1]: Finished Create Static Device Nodes in /dev.
Mar 06 08:40:11 archlinux systemd[1]: Starting Rule-based Manager for Device Events and Files...
Mar 06 08:40:11 archlinux systemd[1]: Started Rule-based Manager for Device Events and Files.
Mar 06 08:40:11 archlinux kernel: audit: type=1130 audit(1615048811.743:2): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udevd comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:11 archlinux systemd-journald[192]: Journal started
Mar 06 08:40:11 archlinux systemd-journald[192]: Runtime Journal (/run/log/journal/f8dbb2aa498a4247b37a76e3c10e3441) is 8.0M, max 637.0M, 629.0M free.
Mar 06 08:40:11 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udevd comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:11 archlinux systemd-modules-load[193]: Inserted module 'usbhid'
Mar 06 08:40:11 archlinux systemd-modules-load[193]: Failed to find module 'xhci_hcd'
Mar 06 08:40:11 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journald comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:11 archlinux systemd[1]: Started Journal Service.
Mar 06 08:40:11 archlinux kernel: audit: type=1130 audit(1615048811.756:3): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journald comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:11 archlinux systemd[1]: Finished Coldplug All udev Devices.
Mar 06 08:40:11 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udev-trigger comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:11 archlinux kernel: audit: type=1130 audit(1615048811.766:4): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udev-trigger comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:11 archlinux kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Mar 06 08:40:11 archlinux kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
Mar 06 08:40:11 archlinux kernel: xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x110 quirks 0x0000000000009810
Mar 06 08:40:11 archlinux kernel: xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
Mar 06 08:40:11 archlinux kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
Mar 06 08:40:11 archlinux kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Mar 06 08:40:11 archlinux kernel: usb usb1: Product: xHCI Host Controller
Mar 06 08:40:11 archlinux kernel: usb usb1: Manufacturer: Linux 5.10.16-arch1-1 xhci-hcd
Mar 06 08:40:11 archlinux kernel: usb usb1: SerialNumber: 0000:00:14.0
Mar 06 08:40:11 archlinux kernel: hub 1-0:1.0: USB hub found
Mar 06 08:40:11 archlinux kernel: hub 1-0:1.0: 16 ports detected
Mar 06 08:40:11 archlinux kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Mar 06 08:40:11 archlinux kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
Mar 06 08:40:11 archlinux kernel: xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
Mar 06 08:40:11 archlinux kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
Mar 06 08:40:11 archlinux kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Mar 06 08:40:11 archlinux kernel: usb usb2: Product: xHCI Host Controller
Mar 06 08:40:11 archlinux kernel: usb usb2: Manufacturer: Linux 5.10.16-arch1-1 xhci-hcd
Mar 06 08:40:11 archlinux kernel: usb usb2: SerialNumber: 0000:00:14.0
Mar 06 08:40:11 archlinux kernel: hub 2-0:1.0: USB hub found
Mar 06 08:40:11 archlinux kernel: hub 2-0:1.0: 10 ports detected
Mar 06 08:40:11 archlinux kernel: usb: port power management may be unreliable
Mar 06 08:40:11 archlinux kernel: xhci_hcd 0000:38:00.0: xHCI Host Controller
Mar 06 08:40:11 archlinux kernel: xhci_hcd 0000:38:00.0: new USB bus registered, assigned bus number 3
Mar 06 08:40:11 archlinux kernel: xhci_hcd 0000:38:00.0: hcc params 0x200077c1 hci version 0x110 quirks 0x0000000200009810
Mar 06 08:40:11 archlinux kernel: usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
Mar 06 08:40:11 archlinux kernel: usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Mar 06 08:40:11 archlinux kernel: usb usb3: Product: xHCI Host Controller
Mar 06 08:40:11 archlinux kernel: usb usb3: Manufacturer: Linux 5.10.16-arch1-1 xhci-hcd
Mar 06 08:40:11 archlinux kernel: usb usb3: SerialNumber: 0000:38:00.0
Mar 06 08:40:11 archlinux kernel: hub 3-0:1.0: USB hub found
Mar 06 08:40:11 archlinux kernel: hub 3-0:1.0: 2 ports detected
Mar 06 08:40:11 archlinux kernel: xhci_hcd 0000:38:00.0: xHCI Host Controller
Mar 06 08:40:11 archlinux kernel: xhci_hcd 0000:38:00.0: new USB bus registered, assigned bus number 4
Mar 06 08:40:11 archlinux kernel: xhci_hcd 0000:38:00.0: Host supports USB 3.1 Enhanced SuperSpeed
Mar 06 08:40:11 archlinux kernel: usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
Mar 06 08:40:11 archlinux kernel: usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Mar 06 08:40:11 archlinux kernel: usb usb4: Product: xHCI Host Controller
Mar 06 08:40:11 archlinux kernel: usb usb4: Manufacturer: Linux 5.10.16-arch1-1 xhci-hcd
Mar 06 08:40:11 archlinux kernel: usb usb4: SerialNumber: 0000:38:00.0
Mar 06 08:40:11 archlinux kernel: hub 4-0:1.0: USB hub found
Mar 06 08:40:11 archlinux kernel: hub 4-0:1.0: 2 ports detected
Mar 06 08:40:11 archlinux kernel: cryptd: max_cpu_qlen set to 1000
Mar 06 08:40:11 archlinux kernel: AVX2 version of gcm_enc/dec engaged.
Mar 06 08:40:11 archlinux kernel: AES CTR mode by8 optimization enabled
Mar 06 08:40:11 archlinux systemd[1]: Found device KXG60ZNV512G NVMe KIOXIA 512GB 2.
Mar 06 08:40:11 archlinux systemd[1]: Starting Cryptography Setup for cryptlvm...
Mar 06 08:40:11 archlinux kernel: device-mapper: uevent: version 1.0.3
Mar 06 08:40:11 archlinux kernel: device-mapper: ioctl: 4.43.0-ioctl (2020-10-01) initialised: dm-devel@redhat.com
Mar 06 08:40:11 archlinux systemd-cryptsetup[253]: WARNING: Locking directory /run/cryptsetup is missing!
Mar 06 08:40:11 archlinux systemd[1]: Started Dispatch Password Requests to Console.
Mar 06 08:40:11 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-ask-password-console comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:11 archlinux kernel: audit: type=1130 audit(1615048811.823:5): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-ask-password-console comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:12 archlinux kernel: usb 1-3: new full-speed USB device number 2 using xhci_hcd
Mar 06 08:40:12 archlinux kernel: usb 1-3: New USB device found, idVendor=046d, idProduct=c52b, bcdDevice=12.03
Mar 06 08:40:12 archlinux kernel: usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Mar 06 08:40:12 archlinux kernel: usb 1-3: Product: USB Receiver
Mar 06 08:40:12 archlinux kernel: usb 1-3: Manufacturer: Logitech
Mar 06 08:40:12 archlinux kernel: input: Logitech USB Receiver as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.0/0003:046D:C52B.0001/input/input4
Mar 06 08:40:12 archlinux kernel: hid-generic 0003:046D:C52B.0001: input,hidraw0: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:00:14.0-3/input0
Mar 06 08:40:12 archlinux kernel: input: Logitech USB Receiver Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.1/0003:046D:C52B.0002/input/input5
Mar 06 08:40:12 archlinux kernel: input: Logitech USB Receiver Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.1/0003:046D:C52B.0002/input/input6
Mar 06 08:40:12 archlinux kernel: input: Logitech USB Receiver System Control as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.1/0003:046D:C52B.0002/input/input7
Mar 06 08:40:12 archlinux kernel: hid-generic 0003:046D:C52B.0002: input,hiddev96,hidraw1: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:00:14.0-3/input1
Mar 06 08:40:12 archlinux kernel: hid-generic 0003:046D:C52B.0003: hiddev97,hidraw2: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:14.0-3/input2
Mar 06 08:40:12 archlinux kernel: usb 1-10: new full-speed USB device number 3 using xhci_hcd
Mar 06 08:40:12 archlinux kernel: tsc: Refined TSC clocksource calibration: 2591.992 MHz
Mar 06 08:40:12 archlinux kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x255caf4cf76, max_idle_ns: 440795231078 ns
Mar 06 08:40:12 archlinux kernel: clocksource: Switched to clocksource tsc
Mar 06 08:40:12 archlinux kernel: logitech-djreceiver 0003:046D:C52B.0003: hiddev96,hidraw0: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:14.0-3/input2
Mar 06 08:40:12 archlinux kernel: usb 1-10: New USB device found, idVendor=27c6, idProduct=533c, bcdDevice= 1.00
Mar 06 08:40:12 archlinux kernel: usb 1-10: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Mar 06 08:40:12 archlinux kernel: usb 1-10: Product: FingerPrint
Mar 06 08:40:12 archlinux kernel: usb 1-10: Manufacturer: Goodix
Mar 06 08:40:12 archlinux kernel: input: Logitech Wireless Device PID:2010 Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:2010.0004/input/input9
Mar 06 08:40:12 archlinux kernel: input: Logitech Wireless Device PID:2010 Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:2010.0004/input/input10
Mar 06 08:40:12 archlinux kernel: input: Logitech Wireless Device PID:2010 System Control as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:2010.0004/input/input11
Mar 06 08:40:12 archlinux kernel: hid-generic 0003:046D:2010.0004: input,hidraw1: USB HID v1.11 Keyboard [Logitech Wireless Device PID:2010] on usb-0000:00:14.0-3/input2:1
Mar 06 08:40:12 archlinux kernel: input: Logitech Wireless Device PID:101a Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:101A.0005/input/input15
Mar 06 08:40:12 archlinux kernel: hid-generic 0003:046D:101A.0005: input,hidraw2: USB HID v1.11 Mouse [Logitech Wireless Device PID:101a] on usb-0000:00:14.0-3/input2:2
Mar 06 08:40:12 archlinux kernel: input: Logitech Wireless Device PID:406d Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:406D.0006/input/input19
Mar 06 08:40:12 archlinux kernel: hid-generic 0003:046D:406D.0006: input,hidraw3: USB HID v1.11 Mouse [Logitech Wireless Device PID:406d] on usb-0000:00:14.0-3/input2:3
Mar 06 08:40:12 archlinux kernel: input: Logitech Wireless Device PID:200a Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:200A.0007/input/input23
Mar 06 08:40:12 archlinux kernel: input: Logitech Wireless Device PID:200a Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:200A.0007/input/input24
Mar 06 08:40:12 archlinux kernel: input: Logitech Wireless Device PID:200a System Control as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:200A.0007/input/input25
Mar 06 08:40:12 archlinux kernel: hid-generic 0003:046D:200A.0007: input,hidraw4: USB HID v1.11 Keyboard [Logitech Wireless Device PID:200a] on usb-0000:00:14.0-3/input2:4
Mar 06 08:40:12 archlinux kernel: usb 1-11: new high-speed USB device number 4 using xhci_hcd
Mar 06 08:40:12 archlinux kernel: usb 1-11: New USB device found, idVendor=0bda, idProduct=5510, bcdDevice=91.79
Mar 06 08:40:12 archlinux kernel: usb 1-11: New USB device strings: Mfr=3, Product=1, SerialNumber=2
Mar 06 08:40:12 archlinux kernel: usb 1-11: Product: Integrated_Webcam_HD
Mar 06 08:40:12 archlinux kernel: usb 1-11: Manufacturer: CN02FP438LG0009GA9B8A02
Mar 06 08:40:12 archlinux kernel: usb 1-11: SerialNumber: 200901010001
Mar 06 08:40:12 archlinux kernel: input: Logitech K800 as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:2010.0004/input/input29
Mar 06 08:40:12 archlinux kernel: logitech-hidpp-device 0003:046D:2010.0004: input,hidraw1: USB HID v1.11 Keyboard [Logitech K800] on usb-0000:00:14.0-3/input2:1
Mar 06 08:40:12 archlinux kernel: input: Logitech Performance MX as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:101A.0005/input/input30
Mar 06 08:40:12 archlinux kernel: logitech-hidpp-device 0003:046D:101A.0005: input,hidraw2: USB HID v1.11 Mouse [Logitech Performance MX] on usb-0000:00:14.0-3/input2:2
Mar 06 08:40:12 archlinux kernel: input: Logitech M705 as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:406D.0006/input/input31
Mar 06 08:40:12 archlinux kernel: logitech-hidpp-device 0003:046D:406D.0006: input,hidraw3: USB HID v1.11 Mouse [Logitech M705] on usb-0000:00:14.0-3/input2:3
Mar 06 08:40:13 archlinux kernel: usb 1-14: new full-speed USB device number 5 using xhci_hcd
Mar 06 08:40:13 archlinux kernel: usb 1-14: New USB device found, idVendor=8087, idProduct=0026, bcdDevice= 0.02
Mar 06 08:40:13 archlinux kernel: usb 1-14: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Mar 06 08:40:13 archlinux kernel: input: Logitech K350 as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:200A.0007/input/input32
Mar 06 08:40:13 archlinux kernel: logitech-hidpp-device 0003:046D:200A.0007: input,hidraw4: USB HID v1.11 Keyboard [Logitech K350] on usb-0000:00:14.0-3/input2:4
Mar 06 08:40:16 archlinux kernel: logitech-hidpp-device 0003:046D:200A.0007: HID++ 1.0 device connected.
Mar 06 08:40:19 archlinux systemd-cryptsetup[253]: Set cipher aes, mode xts-plain64, key size 512 bits for device /dev/disk/by-uuid/4833f4ef-725f-47aa-897f-d5e672fb236b.
Mar 06 08:40:21 archlinux kernel: Key type encrypted registered
Mar 06 08:40:21 archlinux systemd[1]: Created slice system-lvm2\x2dpvscan.slice.
Mar 06 08:40:21 archlinux systemd[1]: Starting LVM event activation on device 254:0...
Mar 06 08:40:21 archlinux systemd[1]: Finished Cryptography Setup for cryptlvm.
Mar 06 08:40:21 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-cryptsetup@cryptlvm comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:21 archlinux systemd[1]: Reached target Local Encrypted Volumes.
Mar 06 08:40:21 archlinux systemd[1]: Reached target System Initialization.
Mar 06 08:40:21 archlinux systemd[1]: Reached target Basic System.
Mar 06 08:40:21 archlinux kernel: audit: type=1130 audit(1615048821.252:6): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-cryptsetup@cryptlvm comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:21 archlinux lvm[382]:   pvscan[382] PV /dev/mapper/cryptlvm online, VG Arch is complete.
Mar 06 08:40:21 archlinux lvm[382]:   pvscan[382] VG Arch run autoactivation.
Mar 06 08:40:21 archlinux lvm[382]:   2 logical volume(s) in volume group "Arch" now active
Mar 06 08:40:21 archlinux systemd[1]: Found device /dev/Arch/OS.
Mar 06 08:40:21 archlinux systemd[1]: Reached target Initrd Root Device.
Mar 06 08:40:21 archlinux systemd[1]: Starting File System Check on /dev/Arch/OS...
Mar 06 08:40:21 archlinux systemd-fsck[394]: /dev/mapper/Arch-OS: clean, 706470/30629888 files, 11701031/122514432 blocks
Mar 06 08:40:21 archlinux systemd[1]: Finished File System Check on /dev/Arch/OS.
Mar 06 08:40:21 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck-root comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:21 archlinux systemd[1]: Mounting /sysroot...
Mar 06 08:40:21 archlinux kernel: audit: type=1130 audit(1615048821.282:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck-root comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:21 archlinux systemd[1]: Finished LVM event activation on device 254:0.
Mar 06 08:40:21 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lvm2-pvscan@254:0 comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:21 archlinux kernel: audit: type=1130 audit(1615048821.299:8): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lvm2-pvscan@254:0 comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:21 archlinux systemd[1]: Mounted /sysroot.
Mar 06 08:40:21 archlinux systemd[1]: Reached target Initrd Root File System.
Mar 06 08:40:21 archlinux systemd[1]: Starting Reload Configuration from the Real Root...
Mar 06 08:40:21 archlinux kernel: EXT4-fs (dm-2): mounted filesystem with ordered data mode. Opts: (null)
Mar 06 08:40:21 archlinux systemd[1]: Reloading.
Mar 06 08:40:21 archlinux audit: BPF prog-id=6 op=UNLOAD
Mar 06 08:40:21 archlinux audit: BPF prog-id=5 op=UNLOAD
Mar 06 08:40:21 archlinux kernel: audit: type=1334 audit(1615048821.312:9): prog-id=6 op=UNLOAD
Mar 06 08:40:21 archlinux kernel: audit: type=1334 audit(1615048821.312:10): prog-id=5 op=UNLOAD
Mar 06 08:40:21 archlinux audit: BPF prog-id=4 op=UNLOAD
Mar 06 08:40:21 archlinux audit: BPF prog-id=3 op=UNLOAD
Mar 06 08:40:21 archlinux kernel: audit: type=1334 audit(1615048821.316:11): prog-id=4 op=UNLOAD
Mar 06 08:40:21 archlinux kernel: audit: type=1334 audit(1615048821.316:12): prog-id=3 op=UNLOAD
Mar 06 08:40:21 archlinux audit: BPF prog-id=7 op=LOAD
Mar 06 08:40:21 archlinux audit: BPF prog-id=8 op=LOAD
Mar 06 08:40:21 archlinux kernel: audit: type=1334 audit(1615048821.346:13): prog-id=7 op=LOAD
Mar 06 08:40:21 archlinux kernel: audit: type=1334 audit(1615048821.346:14): prog-id=8 op=LOAD
Mar 06 08:40:21 archlinux audit: BPF prog-id=9 op=LOAD
Mar 06 08:40:21 archlinux audit: BPF prog-id=10 op=LOAD
Mar 06 08:40:21 archlinux kernel: audit: type=1334 audit(1615048821.349:15): prog-id=9 op=LOAD
Mar 06 08:40:21 archlinux systemd[1]: initrd-parse-etc.service: Succeeded.
Mar 06 08:40:21 archlinux systemd[1]: Finished Reload Configuration from the Real Root.
Mar 06 08:40:21 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=initrd-parse-etc comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:21 archlinux audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=initrd-parse-etc comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:21 archlinux systemd[1]: Reached target Initrd File Systems.
Mar 06 08:40:21 archlinux systemd[1]: Reached target Initrd Default Target.
Mar 06 08:40:21 archlinux systemd[1]: Starting Cleaning Up and Shutting Down Daemons...
Mar 06 08:40:21 archlinux systemd[1]: Stopped target Initrd Default Target.
Mar 06 08:40:21 archlinux systemd[1]: Stopped target Basic System.
Mar 06 08:40:21 archlinux systemd[1]: Stopped target Initrd Root Device.
Mar 06 08:40:21 archlinux systemd[1]: Stopped target Paths.
Mar 06 08:40:21 archlinux systemd[1]: Stopped target Slices.
Mar 06 08:40:21 archlinux systemd[1]: Stopped target Sockets.
Mar 06 08:40:21 archlinux systemd[1]: Stopped target System Initialization.
Mar 06 08:40:21 archlinux systemd[1]: Stopped target Local Encrypted Volumes.
Mar 06 08:40:21 archlinux systemd[1]: Stopped target Local File Systems.
Mar 06 08:40:21 archlinux systemd[1]: Stopped target Swap.
Mar 06 08:40:21 archlinux systemd[1]: Stopped target Timers.
Mar 06 08:40:21 archlinux systemd[1]: Stopping LVM event activation on device 254:0...
Mar 06 08:40:21 archlinux systemd[1]: Stopping Dispatch Password Requests to Console...
Mar 06 08:40:21 archlinux systemd[1]: systemd-modules-load.service: Succeeded.
Mar 06 08:40:21 archlinux systemd[1]: Stopped Load Kernel Modules.
Mar 06 08:40:21 archlinux audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-modules-load comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:21 archlinux systemd[1]: systemd-udev-trigger.service: Succeeded.
Mar 06 08:40:21 archlinux systemd[1]: Stopped Coldplug All udev Devices.
Mar 06 08:40:21 archlinux audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udev-trigger comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:21 archlinux systemd[1]: systemd-ask-password-console.service: Succeeded.
Mar 06 08:40:21 archlinux systemd[1]: Stopped Dispatch Password Requests to Console.
Mar 06 08:40:21 archlinux audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-ask-password-console comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:21 archlinux systemd[1]: systemd-ask-password-console.path: Succeeded.
Mar 06 08:40:21 archlinux lvm[414]:   pvscan[414] PV /dev/mapper/cryptlvm online.
Mar 06 08:40:21 archlinux systemd[1]: Stopped Dispatch Password Requests to Console Directory Watch.
Mar 06 08:40:21 archlinux systemd[1]: initrd-cleanup.service: Succeeded.
Mar 06 08:40:21 archlinux systemd[1]: Finished Cleaning Up and Shutting Down Daemons.
Mar 06 08:40:21 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=initrd-cleanup comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:21 archlinux audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=initrd-cleanup comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:21 archlinux systemd[1]: lvm2-pvscan@254:0.service: Succeeded.
Mar 06 08:40:21 archlinux systemd[1]: Stopped LVM event activation on device 254:0.
Mar 06 08:40:21 archlinux audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lvm2-pvscan@254:0 comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:21 archlinux systemd[1]: Stopping Rule-based Manager for Device Events and Files...
Mar 06 08:40:21 archlinux systemd[1]: systemd-udevd.service: Succeeded.
Mar 06 08:40:21 archlinux systemd[1]: Stopped Rule-based Manager for Device Events and Files.
Mar 06 08:40:21 archlinux audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udevd comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:21 archlinux systemd[1]: systemd-udevd-control.socket: Succeeded.
Mar 06 08:40:21 archlinux systemd[1]: Closed udev Control Socket.
Mar 06 08:40:21 archlinux systemd[1]: systemd-udevd-kernel.socket: Succeeded.
Mar 06 08:40:21 archlinux systemd[1]: Closed udev Kernel Socket.
Mar 06 08:40:21 archlinux systemd[1]: Starting Cleanup udev Database...
Mar 06 08:40:21 archlinux systemd[1]: systemd-tmpfiles-setup-dev.service: Succeeded.
Mar 06 08:40:21 archlinux systemd[1]: Stopped Create Static Device Nodes in /dev.
Mar 06 08:40:21 archlinux audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:21 archlinux systemd[1]: kmod-static-nodes.service: Succeeded.
Mar 06 08:40:21 archlinux systemd[1]: Stopped Create list of static device nodes for the current kernel.
Mar 06 08:40:21 archlinux audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=kmod-static-nodes comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:21 archlinux systemd[1]: initrd-udevadm-cleanup-db.service: Succeeded.
Mar 06 08:40:21 archlinux systemd[1]: Finished Cleanup udev Database.
Mar 06 08:40:21 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=initrd-udevadm-cleanup-db comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:21 archlinux audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=initrd-udevadm-cleanup-db comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:21 archlinux systemd[1]: Reached target Switch Root.
Mar 06 08:40:21 archlinux systemd[1]: Starting Switch Root...
Mar 06 08:40:21 archlinux systemd[1]: Switching root.
Mar 06 08:40:21 archlinux audit: BPF prog-id=10 op=UNLOAD
Mar 06 08:40:21 archlinux audit: BPF prog-id=9 op=UNLOAD
Mar 06 08:40:21 archlinux audit: BPF prog-id=8 op=UNLOAD
Mar 06 08:40:21 archlinux audit: BPF prog-id=7 op=UNLOAD
Mar 06 08:40:21 archlinux systemd-journald[192]: Journal stopped
Mar 06 08:40:21 vlovich systemd-journald[192]: Received SIGTERM from PID 1 (systemd).
Mar 06 08:40:21 vlovich systemd[1]: systemd 247.3-1-arch running in system mode. (+PAM +AUDIT -SELINUX -IMA -APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +ZSTD +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=hybrid)
Mar 06 08:40:21 vlovich systemd[1]: Detected architecture x86-64.
Mar 06 08:40:21 vlovich systemd[1]: Set hostname to <vlovich>.
Mar 06 08:40:21 vlovich systemd[1]: initrd-switch-root.service: Succeeded.
Mar 06 08:40:21 vlovich systemd[1]: Stopped Switch Root.
Mar 06 08:40:21 vlovich systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
Mar 06 08:40:21 vlovich systemd[1]: Created slice system-getty.slice.
Mar 06 08:40:21 vlovich systemd[1]: Created slice system-modprobe.slice.
Mar 06 08:40:21 vlovich systemd[1]: Created slice system-systemd\x2dfsck.slice.
Mar 06 08:40:21 vlovich systemd[1]: Created slice User and Session Slice.
Mar 06 08:40:21 vlovich systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
Mar 06 08:40:21 vlovich systemd[1]: Started Forward Password Requests to Wall Directory Watch.
Mar 06 08:40:21 vlovich systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
Mar 06 08:40:21 vlovich systemd[1]: Reached target Local Encrypted Volumes.
Mar 06 08:40:21 vlovich systemd[1]: Reached target Login Prompts.
Mar 06 08:40:21 vlovich systemd[1]: Stopped target Switch Root.
Mar 06 08:40:21 vlovich systemd[1]: Stopped target Initrd File Systems.
Mar 06 08:40:21 vlovich systemd[1]: Stopped target Initrd Root File System.
Mar 06 08:40:21 vlovich systemd[1]: Reached target Paths.
Mar 06 08:40:21 vlovich systemd[1]: Reached target Remote File Systems.
Mar 06 08:40:21 vlovich systemd[1]: Reached target Slices.
Mar 06 08:40:21 vlovich systemd[1]: Reached target Swap.
Mar 06 08:40:21 vlovich systemd[1]: Listening on Device-mapper event daemon FIFOs.
Mar 06 08:40:21 vlovich systemd[1]: Listening on LVM2 poll daemon socket.
Mar 06 08:40:21 vlovich systemd[1]: Listening on Process Core Dump Socket.
Mar 06 08:40:21 vlovich systemd[1]: Listening on udev Control Socket.
Mar 06 08:40:21 vlovich systemd[1]: Listening on udev Kernel Socket.
Mar 06 08:40:21 vlovich systemd[1]: Mounting Huge Pages File System...
Mar 06 08:40:21 vlovich systemd[1]: Mounting POSIX Message Queue File System...
Mar 06 08:40:21 vlovich systemd[1]: Mounting Kernel Debug File System...
Mar 06 08:40:21 vlovich systemd[1]: Mounting Kernel Trace File System...
Mar 06 08:40:21 vlovich systemd[1]: Mounting Temporary Directory (/tmp)...
Mar 06 08:40:21 vlovich systemd[1]: Starting Create list of static device nodes for the current kernel...
Mar 06 08:40:21 vlovich systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
Mar 06 08:40:21 vlovich systemd[1]: Starting Load Kernel Module configfs...
Mar 06 08:40:21 vlovich systemd[1]: Starting Load Kernel Module drm...
Mar 06 08:40:21 vlovich systemd[1]: Starting Load Kernel Module fuse...
Mar 06 08:40:21 vlovich kernel: Linux agpgart interface v0.103
Mar 06 08:40:21 vlovich systemd[1]: Starting Set Up Additional Binary Formats...
Mar 06 08:40:21 vlovich systemd[1]: systemd-cryptsetup@cryptlvm.service: Succeeded.
Mar 06 08:40:21 vlovich systemd[1]: Stopped systemd-cryptsetup@cryptlvm.service.
Mar 06 08:40:21 vlovich systemd[1]: Stopped Journal Service.
Mar 06 08:40:21 vlovich systemd[1]: Starting Journal Service...
Mar 06 08:40:21 vlovich kernel: fuse: init (API version 7.32)
Mar 06 08:40:21 vlovich systemd[1]: Starting Load Kernel Modules...
Mar 06 08:40:21 vlovich systemd[1]: Starting Remount Root and Kernel File Systems...
Mar 06 08:40:21 vlovich systemd[1]: Condition check resulted in Repartition Root Disk being skipped.
Mar 06 08:40:21 vlovich systemd[1]: Starting Coldplug All udev Devices...
Mar 06 08:40:21 vlovich kernel: EXT4-fs (dm-2): re-mounted. Opts: (null)
Mar 06 08:40:21 vlovich systemd[1]: sysroot.mount: Succeeded.
Mar 06 08:40:21 vlovich systemd[1]: Mounted Huge Pages File System.
Mar 06 08:40:21 vlovich systemd[1]: Mounted POSIX Message Queue File System.
Mar 06 08:40:21 vlovich kernel: usbcore: registered new device driver usbip-host
Mar 06 08:40:21 vlovich systemd[1]: Mounted Kernel Debug File System.
Mar 06 08:40:21 vlovich systemd[1]: Mounted Kernel Trace File System.
Mar 06 08:40:21 vlovich systemd[1]: Mounted Temporary Directory (/tmp).
Mar 06 08:40:21 vlovich systemd[1]: Finished Create list of static device nodes for the current kernel.
Mar 06 08:40:21 vlovich systemd[1]: modprobe@configfs.service: Succeeded.
Mar 06 08:40:21 vlovich systemd[1]: Finished Load Kernel Module configfs.
Mar 06 08:40:21 vlovich systemd-journald[445]: Journal started
Mar 06 08:40:21 vlovich systemd-journald[445]: Runtime Journal (/run/log/journal/037a6641b94b4c69ad0ad3ad2ce07c63) is 8.0M, max 637.0M, 629.0M free.
Mar 06 08:40:21 vlovich audit: BPF prog-id=11 op=LOAD
Mar 06 08:40:21 vlovich audit: BPF prog-id=11 op=UNLOAD
Mar 06 08:40:21 vlovich audit: BPF prog-id=12 op=LOAD
Mar 06 08:40:21 vlovich audit: BPF prog-id=12 op=UNLOAD
Mar 06 08:40:21 vlovich audit: BPF prog-id=13 op=LOAD
Mar 06 08:40:21 vlovich audit: BPF prog-id=14 op=LOAD
Mar 06 08:40:21 vlovich audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:21 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=initrd-switch-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:21 vlovich audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=initrd-switch-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:21 vlovich audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-cryptsetup@cryptlvm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:21 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:21 vlovich audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:21 vlovich audit: BPF prog-id=13 op=UNLOAD
Mar 06 08:40:21 vlovich audit: BPF prog-id=14 op=UNLOAD
Mar 06 08:40:21 vlovich audit: BPF prog-id=15 op=LOAD
Mar 06 08:40:21 vlovich audit: BPF prog-id=16 op=LOAD
Mar 06 08:40:21 vlovich audit: CONFIG_CHANGE op=set audit_enabled=1 old=1 auid=4294967295 ses=4294967295 res=1
Mar 06 08:40:21 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=kmod-static-nodes comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:21 vlovich systemd[1]: Queued start job for default target Graphical Interface.
Mar 06 08:40:21 vlovich systemd[1]: systemd-journald.service: Succeeded.
Mar 06 08:40:21 vlovich systemd-modules-load[446]: Inserted module 'crypto_user'
Mar 06 08:40:21 vlovich systemd-modules-load[446]: Inserted module 'usbip_core'
Mar 06 08:40:21 vlovich systemd-modules-load[446]: Inserted module 'usbip_host'
Mar 06 08:40:21 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@configfs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:21 vlovich audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@configfs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:21 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:21 vlovich systemd[1]: modprobe@drm.service: Succeeded.
Mar 06 08:40:21 vlovich systemd[1]: Finished Load Kernel Module drm.
Mar 06 08:40:21 vlovich systemd[1]: Started Journal Service.
Mar 06 08:40:21 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@drm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:21 vlovich audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@drm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:21 vlovich systemd[1]: modprobe@fuse.service: Succeeded.
Mar 06 08:40:21 vlovich systemd[1]: Finished Load Kernel Module fuse.
Mar 06 08:40:21 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@fuse comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:21 vlovich audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@fuse comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:21 vlovich systemd[1]: Finished Load Kernel Modules.
Mar 06 08:40:21 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-modules-load comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:21 vlovich systemd[1]: Finished Remount Root and Kernel File Systems.
Mar 06 08:40:21 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-remount-fs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:21 vlovich systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 444 (systemd-binfmt)
Mar 06 08:40:21 vlovich systemd[1]: Mounting Arbitrary Executable File Formats File System...
Mar 06 08:40:21 vlovich systemd[1]: Mounting FUSE Control File System...
Mar 06 08:40:21 vlovich systemd[1]: Mounting Kernel Configuration File System...
Mar 06 08:40:21 vlovich systemd[1]: Condition check resulted in First Boot Wizard being skipped.
Mar 06 08:40:21 vlovich systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
Mar 06 08:40:21 vlovich systemd[1]: Starting Flush Journal to Persistent Storage...
Mar 06 08:40:21 vlovich systemd[1]: Starting Load/Save Random Seed...
Mar 06 08:40:21 vlovich systemd-journald[445]: Time spent on flushing to /var/log/journal/037a6641b94b4c69ad0ad3ad2ce07c63 is 123.440ms for 1125 entries.
Mar 06 08:40:21 vlovich systemd-journald[445]: System Journal (/var/log/journal/037a6641b94b4c69ad0ad3ad2ce07c63) is 512.0M, max 4.0G, 3.4G free.
Mar 06 08:40:21 vlovich kernel: input: Intel HID events as /devices/platform/INT33D5:00/input/input33
Mar 06 08:40:21 vlovich kernel: intel-hid INT33D5:00: platform supports 5 button array
Mar 06 08:40:21 vlovich kernel: input: Intel HID 5 button array as /devices/platform/INT33D5:00/input/input34
Mar 06 08:40:21 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-binfmt comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:21 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-random-seed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:21 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:21 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-sysusers comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:21 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:21 vlovich audit: BPF prog-id=17 op=LOAD
Mar 06 08:40:21 vlovich audit: BPF prog-id=18 op=LOAD
Mar 06 08:40:21 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udev-trigger comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:21 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udevd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:21 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@configfs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:21 vlovich audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@configfs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:21 vlovich systemd[1]: Starting Apply Kernel Variables...
Mar 06 08:40:21 vlovich systemd[1]: Starting Create System Users...
Mar 06 08:40:21 vlovich systemd-sysctl[458]: Not setting net/ipv4/conf/all/rp_filter (explicit setting exists).
Mar 06 08:40:21 vlovich systemd-sysctl[458]: Not setting net/ipv4/conf/default/rp_filter (explicit setting exists).
Mar 06 08:40:21 vlovich systemd-sysctl[458]: Not setting net/ipv4/conf/all/accept_source_route (explicit setting exists).
Mar 06 08:40:21 vlovich systemd-sysctl[458]: Not setting net/ipv4/conf/default/accept_source_route (explicit setting exists).
Mar 06 08:40:21 vlovich systemd-sysctl[458]: Not setting net/ipv4/conf/all/promote_secondaries (explicit setting exists).
Mar 06 08:40:21 vlovich systemd-sysctl[458]: Not setting net/ipv4/conf/default/promote_secondaries (explicit setting exists).
Mar 06 08:40:21 vlovich systemd[1]: Mounted Arbitrary Executable File Formats File System.
Mar 06 08:40:21 vlovich systemd[1]: Mounted FUSE Control File System.
Mar 06 08:40:21 vlovich systemd[1]: Finished Set Up Additional Binary Formats.
Mar 06 08:40:21 vlovich systemd[1]: Mounted Kernel Configuration File System.
Mar 06 08:40:21 vlovich systemd[1]: Finished Load/Save Random Seed.
Mar 06 08:40:21 vlovich systemd[1]: Finished Apply Kernel Variables.
Mar 06 08:40:21 vlovich systemd[1]: Finished Create System Users.
Mar 06 08:40:21 vlovich systemd[1]: Condition check resulted in First Boot Complete being skipped.
Mar 06 08:40:21 vlovich systemd[1]: Starting Create Static Device Nodes in /dev...
Mar 06 08:40:21 vlovich systemd[1]: Finished Create Static Device Nodes in /dev.
Mar 06 08:40:21 vlovich systemd[1]: Starting Rule-based Manager for Device Events and Files...
Mar 06 08:40:21 vlovich systemd[1]: Finished Coldplug All udev Devices.
Mar 06 08:40:21 vlovich systemd[1]: Started Rule-based Manager for Device Events and Files.
Mar 06 08:40:21 vlovich systemd[1]: Starting Load Kernel Module configfs...
Mar 06 08:40:21 vlovich systemd[1]: modprobe@configfs.service: Succeeded.
Mar 06 08:40:21 vlovich systemd[1]: Finished Load Kernel Module configfs.
Mar 06 08:40:21 vlovich systemd[1]: Finished Flush Journal to Persistent Storage.
Mar 06 08:40:21 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journal-flush comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:22 vlovich kernel: acpi PNP0C14:02: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:01)
Mar 06 08:40:22 vlovich kernel: wmi_bus wmi_bus-PNP0C14:03: WQBC data block query control method not found
Mar 06 08:40:22 vlovich kernel: acpi PNP0C14:03: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:01)
Mar 06 08:40:22 vlovich kernel: acpi PNP0C14:04: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:01)
Mar 06 08:40:22 vlovich kernel: tpm_tis STM0125:00: 2.0 TPM (device-id 0x0, rev-id 78)
Mar 06 08:40:22 vlovich kernel: acpi PNP0C14:05: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:01)
Mar 06 08:40:22 vlovich kernel: acpi PNP0C14:06: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:01)
Mar 06 08:40:22 vlovich kernel: acpi PNP0C14:07: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:01)
Mar 06 08:40:22 vlovich kernel: intel_pch_thermal 0000:00:12.0: enabling device (0000 -> 0002)
Mar 06 08:40:22 vlovich mtp-probe[505]: checking bus 1, device 3: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-10"
Mar 06 08:40:22 vlovich mtp-probe[506]: checking bus 1, device 4: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-11"
Mar 06 08:40:22 vlovich mtp-probe[505]: bus: 1, device: 3 was not an MTP device
Mar 06 08:40:22 vlovich mtp-probe[506]: bus: 1, device: 4 was not an MTP device
Mar 06 08:40:22 vlovich mtp-probe[509]: checking bus 1, device 2: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-3"
Mar 06 08:40:22 vlovich mtp-probe[509]: bus: 1, device: 2 was not an MTP device
Mar 06 08:40:22 vlovich kernel: mc: Linux media interface: v0.10
Mar 06 08:40:22 vlovich kernel: proc_thermal 0000:00:04.0: enabling device (0000 -> 0002)
Mar 06 08:40:22 vlovich kernel: mousedev: PS/2 mouse device common for all mice
Mar 06 08:40:22 vlovich kernel: intel_rapl_common: Found RAPL domain package
Mar 06 08:40:22 vlovich kernel: intel_rapl_common: Found RAPL domain dram
Mar 06 08:40:22 vlovich kernel: proc_thermal 0000:00:04.0: Creating sysfs group for PROC_THERMAL_PCI
Mar 06 08:40:22 vlovich kernel: intel-lpss 0000:00:15.0: enabling device (0000 -> 0002)
Mar 06 08:40:22 vlovich kernel: idma64 idma64.0: Found Intel integrated DMA 64-bit
Mar 06 08:40:22 vlovich kernel: i2c_hid i2c-ELAN29E2:00: supply vdd not found, using dummy regulator
Mar 06 08:40:22 vlovich kernel: i2c_hid i2c-ELAN29E2:00: supply vddl not found, using dummy regulator
Mar 06 08:40:22 vlovich kernel: intel-lpss 0000:00:15.1: enabling device (0000 -> 0002)
Mar 06 08:40:22 vlovich kernel: idma64 idma64.1: Found Intel integrated DMA 64-bit
Mar 06 08:40:22 vlovich kernel: videodev: Linux video capture interface: v2.00
Mar 06 08:40:22 vlovich kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
Mar 06 08:40:22 vlovich kernel: cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
Mar 06 08:40:22 vlovich kernel: platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
Mar 06 08:40:22 vlovich kernel: cfg80211: failed to load regulatory.db
Mar 06 08:40:22 vlovich kernel: i2c_hid i2c-DELL097E:00: supply vdd not found, using dummy regulator
Mar 06 08:40:22 vlovich kernel: i2c_hid i2c-DELL097E:00: supply vddl not found, using dummy regulator
Mar 06 08:40:22 vlovich kernel: intel-lpss 0000:00:1e.0: enabling device (0000 -> 0002)
Mar 06 08:40:22 vlovich kernel: idma64 idma64.2: Found Intel integrated DMA 64-bit
Mar 06 08:40:22 vlovich kernel: thunderbolt 0000:04:00.0: enabling device (0000 -> 0002)
Mar 06 08:40:22 vlovich kernel: i801_smbus 0000:00:1f.4: enabling device (0000 -> 0003)
Mar 06 08:40:22 vlovich kernel: mei_me 0000:00:16.0: enabling device (0000 -> 0002)
Mar 06 08:40:22 vlovich kernel: Bluetooth: Core ver 2.22
Mar 06 08:40:22 vlovich kernel: NET: Registered protocol family 31
Mar 06 08:40:22 vlovich kernel: Bluetooth: HCI device and connection manager initialized
Mar 06 08:40:22 vlovich kernel: Bluetooth: HCI socket layer initialized
Mar 06 08:40:22 vlovich kernel: Bluetooth: L2CAP socket layer initialized
Mar 06 08:40:22 vlovich kernel: Bluetooth: SCO socket layer initialized
Mar 06 08:40:22 vlovich kernel: i801_smbus 0000:00:1f.4: SPD Write Disable is set
Mar 06 08:40:22 vlovich kernel: i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
Mar 06 08:40:22 vlovich lvm[439]:   2 logical volume(s) in volume group "Arch" monitored
Mar 06 08:40:22 vlovich kernel: input: ELAN29E2:00 04F3:29E2 Touchscreen as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-ELAN29E2:00/0018:04F3:29E2.0008/input/input35
Mar 06 08:40:22 vlovich kernel: input: ELAN29E2:00 04F3:29E2 as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-ELAN29E2:00/0018:04F3:29E2.0008/input/input36
Mar 06 08:40:22 vlovich kernel: input: ELAN29E2:00 04F3:29E2 as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-ELAN29E2:00/0018:04F3:29E2.0008/input/input37
Mar 06 08:40:22 vlovich kernel: hid-generic 0018:04F3:29E2.0008: input,hidraw5: I2C HID v1.00 Device [ELAN29E2:00 04F3:29E2] on i2c-ELAN29E2:00
Mar 06 08:40:22 vlovich systemd[1]: Finished Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
Mar 06 08:40:22 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lvm2-monitor comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:22 vlovich systemd[1]: Reached target Local File Systems (Pre).
Mar 06 08:40:22 vlovich systemd[1]: Condition check resulted in Virtual Machine and Container Storage (Compatibility) being skipped.
Mar 06 08:40:22 vlovich systemd[1]: Starting File System Check on /dev/disk/by-uuid/4999-6E77...
Mar 06 08:40:22 vlovich kernel: i2c i2c-2: 2/2 memory slots populated (from DMI)
Mar 06 08:40:22 vlovich kernel: i2c i2c-2: Successfully instantiated SPD at 0x50
Mar 06 08:40:22 vlovich kernel: input: DELL097E:00 04F3:311C Mouse as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-DELL097E:00/0018:04F3:311C.0009/input/input39
Mar 06 08:40:22 vlovich kernel: input: DELL097E:00 04F3:311C Touchpad as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-DELL097E:00/0018:04F3:311C.0009/input/input40
Mar 06 08:40:22 vlovich kernel: hid-generic 0018:04F3:311C.0009: input,hidraw6: I2C HID v1.00 Mouse [DELL097E:00 04F3:311C] on i2c-DELL097E:00
Mar 06 08:40:22 vlovich systemd-fsck[558]: fsck.fat 4.2 (2021-01-31)
Mar 06 08:40:22 vlovich systemd-fsck[558]: /dev/nvme0n1p1: 21 files, 266473/383102 clusters
Mar 06 08:40:22 vlovich systemd[1]: Finished File System Check on /dev/disk/by-uuid/4999-6E77.
Mar 06 08:40:22 vlovich kernel: input: PC Speaker as /devices/platform/pcspkr/input/input42
Mar 06 08:40:22 vlovich kernel: uvcvideo: Found UVC 1.10 device Integrated_Webcam_HD (0bda:5510)
Mar 06 08:40:22 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-4999\x2d6E77 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:22 vlovich systemd[1]: Mounting /boot...
Mar 06 08:40:22 vlovich kernel: input: Integrated_Webcam_HD: Integrate as /devices/pci0000:00/0000:00:14.0/usb1/1-11/1-11:1.0/input/input44
Mar 06 08:40:22 vlovich kernel: uvcvideo: Found UVC 1.50 device Integrated_Webcam_HD (0bda:5510)
Mar 06 08:40:22 vlovich kernel: input: Integrated_Webcam_HD: Integrate as /devices/pci0000:00/0000:00:14.0/usb1/1-11/1-11:1.2/input/input45
Mar 06 08:40:22 vlovich kernel: usbcore: registered new interface driver uvcvideo
Mar 06 08:40:22 vlovich kernel: USB Video Class driver (1.1.1)
Mar 06 08:40:22 vlovich kernel: Intel(R) Wireless WiFi driver for Linux
Mar 06 08:40:22 vlovich kernel: iwlwifi 0000:00:14.3: enabling device (0000 -> 0002)
Mar 06 08:40:22 vlovich kernel: iwlwifi 0000:00:14.3: api flags index 2 larger than supported by driver
Mar 06 08:40:22 vlovich kernel: iwlwifi 0000:00:14.3: TLV_FW_FSEQ_VERSION: FSEQ Version: 65.3.35.22
Mar 06 08:40:22 vlovich kernel: iwlwifi 0000:00:14.3: loaded firmware version 59.601f3a66.0 QuZ-a0-hr-b0-59.ucode op_mode iwlmvm
Mar 06 08:40:22 vlovich systemd[1]: Mounted /boot.
Mar 06 08:40:22 vlovich systemd[1]: Reached target Local File Systems.
Mar 06 08:40:22 vlovich kernel: Setting dangerous option enable_fbc - tainting kernel
Mar 06 08:40:22 vlovich systemd[1]: Starting Rebuild Dynamic Linker Cache...
Mar 06 08:40:22 vlovich systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped.
Mar 06 08:40:22 vlovich systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped.
Mar 06 08:40:22 vlovich systemd[1]: Starting Create Volatile Files and Directories...
Mar 06 08:40:22 vlovich systemd[1]: Finished Create Volatile Files and Directories.
Mar 06 08:40:22 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:22 vlovich systemd[1]: Starting Rebuild Journal Catalog...
Mar 06 08:40:22 vlovich kernel: usbcore: registered new interface driver btusb
Mar 06 08:40:22 vlovich kernel: Bluetooth: hci0: Firmware revision 0.0 build 26 week 3 2021
Mar 06 08:40:22 vlovich systemd[1]: Starting Network Time Synchronization...
Mar 06 08:40:22 vlovich systemd[1]: Starting Update UTMP about System Boot/Shutdown...
Mar 06 08:40:22 vlovich audit[586]: SYSTEM_BOOT pid=586 uid=0 auid=4294967295 ses=4294967295 msg=' comm="systemd-update-utmp" exe="/usr/lib/systemd/systemd-update-utmp" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:22 vlovich systemd[1]: Finished Update UTMP about System Boot/Shutdown.
Mar 06 08:40:22 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-update-utmp comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:22 vlovich systemd[1]: Finished Rebuild Journal Catalog.
Mar 06 08:40:22 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journal-catalog-update comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:22 vlovich kernel: checking generic (4000000000 2328000) vs hw (604a000000 1000000)
Mar 06 08:40:22 vlovich kernel: checking generic (4000000000 2328000) vs hw (4000000000 10000000)
Mar 06 08:40:22 vlovich kernel: fb0: switching to inteldrmfb from EFI VGA
Mar 06 08:40:22 vlovich kernel: Console: switching to colour dummy device 80x25
Mar 06 08:40:22 vlovich kernel: i915 0000:00:02.0: vgaarb: deactivate vga console
Mar 06 08:40:22 vlovich kernel: RAPL PMU: API unit is 2^-32 Joules, 5 fixed counters, 655360 ms ovfl timer
Mar 06 08:40:22 vlovich kernel: RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
Mar 06 08:40:22 vlovich kernel: RAPL PMU: hw unit of domain package 2^-14 Joules
Mar 06 08:40:22 vlovich kernel: RAPL PMU: hw unit of domain dram 2^-14 Joules
Mar 06 08:40:22 vlovich kernel: RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
Mar 06 08:40:22 vlovich kernel: RAPL PMU: hw unit of domain psys 2^-14 Joules
Mar 06 08:40:22 vlovich kernel: i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
Mar 06 08:40:22 vlovich kernel: i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/kbl_dmc_ver1_04.bin (v1.4)
Mar 06 08:40:22 vlovich systemd[1]: Finished Rebuild Dynamic Linker Cache.
Mar 06 08:40:22 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=ldconfig comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:22 vlovich kernel: [drm] Initialized i915 1.6.0 20200917 for 0000:00:02.0 on minor 0
Mar 06 08:40:22 vlovich systemd[1]: Starting Update is Completed...
Mar 06 08:40:22 vlovich systemd[1]: Finished Update is Completed.
Mar 06 08:40:22 vlovich kernel: ACPI: Video Device [PEGP] (multi-head: no  rom: yes  post: no)
Mar 06 08:40:22 vlovich kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/LNXVIDEO:00/input/input46
Mar 06 08:40:22 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-update-done comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:22 vlovich systemd[1]: Started Network Time Synchronization.
Mar 06 08:40:22 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-timesyncd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:22 vlovich systemd[1]: Reached target System Initialization.
Mar 06 08:40:22 vlovich systemd[1]: Started Daily Cleanup of Temporary Directories.
Mar 06 08:40:22 vlovich systemd[1]: Reached target System Time Set.
Mar 06 08:40:22 vlovich systemd[1]: Reached target System Time Synchronized.
Mar 06 08:40:22 vlovich systemd[1]: Started Daily atop restart.
Mar 06 08:40:22 vlovich systemd[1]: Started Daily man-db regeneration.
Mar 06 08:40:22 vlovich systemd[1]: Started Daily verification of password and group files.
Mar 06 08:40:22 vlovich systemd[1]: Reached target Timers.
Mar 06 08:40:22 vlovich systemd[1]: Listening on D-Bus System Message Bus Socket.
Mar 06 08:40:22 vlovich systemd[1]: Listening on PC/SC Smart Card Daemon Activation Socket.
Mar 06 08:40:22 vlovich systemd[1]: Reached target Sockets.
Mar 06 08:40:22 vlovich systemd[1]: Reached target Basic System.
Mar 06 08:40:22 vlovich systemd[1]: Started D-Bus System Message Bus.
Mar 06 08:40:22 vlovich kernel: ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
Mar 06 08:40:22 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=dbus comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:22 vlovich systemd[1]: Starting Network Manager...
Mar 06 08:40:22 vlovich audit: BPF prog-id=19 op=LOAD
Mar 06 08:40:22 vlovich audit: BPF prog-id=20 op=LOAD
Mar 06 08:40:22 vlovich systemd[1]: Starting User Login Management...
Mar 06 08:40:22 vlovich kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input47
Mar 06 08:40:22 vlovich kernel: fbcon: i915drmfb (fb0) is primary device
Mar 06 08:40:22 vlovich NetworkManager[594]: <info>  [1615048822.6074] NetworkManager (version 1.30.0-2) is starting... (for the first time)
Mar 06 08:40:22 vlovich NetworkManager[594]: <info>  [1615048822.6075] Read config: /etc/NetworkManager/NetworkManager.conf (lib: 20-connectivity.conf)
Mar 06 08:40:22 vlovich systemd[1]: Started Network Manager.
Mar 06 08:40:22 vlovich NetworkManager[594]: <info>  [1615048822.6094] bus-manager: acquired D-Bus service "org.freedesktop.NetworkManager"
Mar 06 08:40:22 vlovich systemd-logind[595]: Watching system buttons on /dev/input/event1 (Power Button)
Mar 06 08:40:22 vlovich kernel: iwlwifi 0000:00:14.3: Detected Intel(R) Wi-Fi 6 AX201 160MHz, REV=0x354
Mar 06 08:40:22 vlovich NetworkManager[594]: <info>  [1615048822.6134] manager[0x564c00e290c0]: monitoring kernel firmware directory '/lib/firmware'.
Mar 06 08:40:22 vlovich dbus-daemon[593]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service' requested by ':1.2' (uid=0 pid=594 comm="/usr/bin/NetworkManager --no-daemon ")
Mar 06 08:40:22 vlovich systemd-logind[595]: Watching system buttons on /dev/input/event0 (Lid Switch)
Mar 06 08:40:22 vlovich systemd-logind[595]: Watching system buttons on /dev/input/event6 (Logitech K350)
Mar 06 08:40:22 vlovich systemd-logind[595]: Watching system buttons on /dev/input/event3 (Logitech K800)
Mar 06 08:40:22 vlovich systemd-logind[595]: Watching system buttons on /dev/input/event2 (AT Translated Set 2 keyboard)
Mar 06 08:40:22 vlovich systemd-udevd[465]: ethtool: autonegotiation is unset or enabled, the speed and duplex are not writable.
Mar 06 08:40:22 vlovich kernel: snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
Mar 06 08:40:22 vlovich kernel: intel_rapl_common: Found RAPL domain package
Mar 06 08:40:22 vlovich kernel: intel_rapl_common: Found RAPL domain core
Mar 06 08:40:22 vlovich kernel: intel_rapl_common: Found RAPL domain uncore
Mar 06 08:40:22 vlovich kernel: intel_rapl_common: Found RAPL domain dram
Mar 06 08:40:22 vlovich kernel: intel_rapl_common: Found RAPL domain psys
Mar 06 08:40:22 vlovich kernel: iTCO_vendor_support: vendor-support=0
Mar 06 08:40:22 vlovich kernel: snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002)
Mar 06 08:40:22 vlovich kernel: input: Dell WMI hotkeys as /devices/platform/PNP0C14:03/wmi_bus/wmi_bus-PNP0C14:03/9DBB5994-A997-11DA-B012-B622A1EF5492/input/input48
Mar 06 08:40:22 vlovich kernel: iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
Mar 06 08:40:22 vlovich kernel: iTCO_wdt: Found a Intel PCH TCO device (Version=6, TCOBASE=0x0400)
Mar 06 08:40:22 vlovich kernel: ee1004 2-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
Mar 06 08:40:22 vlovich kernel: iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
Mar 06 08:40:22 vlovich kernel: iwlwifi 0000:00:14.3: base HW address: c0:3c:59:11:eb:bc
Mar 06 08:40:22 vlovich kernel: dw-apb-uart.2: ttyS4 at MMIO 0x4010002000 (irq = 20, base_baud = 7500000) is a 16550A
Mar 06 08:40:22 vlovich kernel: thermal thermal_zone13: failed to read out thermal zone (-61)
Mar 06 08:40:22 vlovich kernel: ish-hid {33AECD58-B679-4E54-9BD9-A04D34F0C226}: [hid-ish]: enum_devices_done OK, num_hid_devices=1
Mar 06 08:40:22 vlovich kernel: hid-generic 001F:8087:0AC2.000A: hidraw7: <UNKNOWN> HID v2.00 Device [hid-ishtp 8087:0AC2] on 
Mar 06 08:40:22 vlovich systemd-udevd[484]: Using default interface naming scheme 'v247'.
Mar 06 08:40:22 vlovich systemd-udevd[484]: ethtool: autonegotiation is unset or enabled, the speed and duplex are not writable.
Mar 06 08:40:22 vlovich kernel: iwlwifi 0000:00:14.3 wlp0s20f3: renamed from wlan0
Mar 06 08:40:22 vlovich systemd-udevd[466]: Using default interface naming scheme 'v247'.
Mar 06 08:40:22 vlovich systemd-udevd[466]: ethtool: autonegotiation is unset or enabled, the speed and duplex are not writable.
Mar 06 08:40:22 vlovich kernel: input: ELAN29E2:00 04F3:29E2 as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-ELAN29E2:00/0018:04F3:29E2.0008/input/input49
Mar 06 08:40:22 vlovich kernel: psmouse serio1: elantech: assuming hardware version 4 (with firmware version 0x0f5002)
Mar 06 08:40:22 vlovich kernel: psmouse serio1: elantech: elantech_send_cmd query 0x02 failed.
Mar 06 08:40:22 vlovich kernel: psmouse serio1: elantech: failed to query capabilities.
Mar 06 08:40:22 vlovich kernel: input: ELAN29E2:00 04F3:29E2 UNKNOWN as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-ELAN29E2:00/0018:04F3:29E2.0008/input/input50
Mar 06 08:40:22 vlovich kernel: input: ELAN29E2:00 04F3:29E2 UNKNOWN as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-ELAN29E2:00/0018:04F3:29E2.0008/input/input51
Mar 06 08:40:23 vlovich kernel: hid-multitouch 0018:04F3:29E2.0008: input,hidraw5: I2C HID v1.00 Device [ELAN29E2:00 04F3:29E2] on i2c-ELAN29E2:00
Mar 06 08:40:23 vlovich kernel: input: DELL097E:00 04F3:311C Mouse as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-DELL097E:00/0018:04F3:311C.0009/input/input53
Mar 06 08:40:23 vlovich kernel: input: DELL097E:00 04F3:311C Touchpad as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-DELL097E:00/0018:04F3:311C.0009/input/input54
Mar 06 08:40:23 vlovich kernel: hid-multitouch 0018:04F3:311C.0009: input,hidraw6: I2C HID v1.00 Mouse [DELL097E:00 04F3:311C] on i2c-DELL097E:00
Mar 06 08:40:23 vlovich kernel: nvidia: loading out-of-tree module taints kernel.
Mar 06 08:40:23 vlovich kernel: nvidia: module license 'NVIDIA' taints kernel.
Mar 06 08:40:23 vlovich kernel: Disabling lock debugging due to kernel taint
Mar 06 08:40:23 vlovich kernel: Console: switching to colour frame buffer device 240x75
Mar 06 08:40:23 vlovich kernel: nvidia: module verification failed: signature and/or required key missing - tainting kernel
Mar 06 08:40:23 vlovich kernel: nvidia-nvlink: Nvlink Core is being initialized, major device number 511
Mar 06 08:40:23 vlovich kernel: 
Mar 06 08:40:23 vlovich kernel: nvidia 0000:01:00.0: enabling device (0000 -> 0003)
Mar 06 08:40:23 vlovich kernel: snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
Mar 06 08:40:23 vlovich kernel: mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_component_ops [i915])
Mar 06 08:40:23 vlovich systemd-logind[595]: New seat seat0.
Mar 06 08:40:23 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:23 vlovich systemd-logind[595]: Watching system buttons on /dev/input/event7 (Intel HID events)
Mar 06 08:40:23 vlovich systemd-logind[595]: Watching system buttons on /dev/input/event8 (Intel HID 5 button array)
Mar 06 08:40:23 vlovich kernel: i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
Mar 06 08:40:23 vlovich systemd[1]: Started User Login Management.
Mar 06 08:40:23 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-logind comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:23 vlovich systemd[1]: Created slice system-systemd\x2dbacklight.slice.
Mar 06 08:40:23 vlovich systemd[1]: Reached target Network.
Mar 06 08:40:23 vlovich systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
Mar 06 08:40:23 vlovich kernel: NVRM: loading NVIDIA UNIX x86_64 Kernel Module  460.56  Tue Feb 23 23:31:36 UTC 2021
Mar 06 08:40:24 vlovich kernel: snd_hda_intel 0000:00:1f.3: azx_get_response timeout, switching to polling mode: last cmd=0x001f000f
Mar 06 08:40:24 vlovich systemd[1]: Starting Thunderbolt system service...
Mar 06 08:40:24 vlovich systemd[1]: Started Fix Bluetooth A2DP.
Mar 06 08:40:24 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=fix-bt-a2dp comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:24 vlovich systemd[1]: Starting LVM event activation on device 254:0...
Mar 06 08:40:24 vlovich systemd[1]: Starting Load/Save Screen Backlight Brightness of leds:dell::kbd_backlight...
Mar 06 08:40:24 vlovich lvm[647]:   pvscan[647] PV /dev/mapper/cryptlvm online, VG Arch is complete.
Mar 06 08:40:24 vlovich lvm[647]:   pvscan[647] VG Arch skip autoactivation.
Mar 06 08:40:24 vlovich audit[645]: USER_AUTH pid=645 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:authentication grantors=pam_rootok acct="vlovich" exe="/usr/bin/su" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:24 vlovich audit[645]: USER_ACCT pid=645 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_unix acct="vlovich" exe="/usr/bin/su" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:24 vlovich su[645]: (to vlovich) root on none
Mar 06 08:40:26 vlovich audit: BPF prog-id=21 op=LOAD
Mar 06 08:40:27 vlovich audit: BPF prog-id=22 op=LOAD
Mar 06 08:40:27 vlovich kernel: kauditd_printk_skb: 75 callbacks suppressed
Mar 06 08:40:27 vlovich kernel: audit: type=1334 audit(1615048827.886:91): prog-id=22 op=LOAD
Mar 06 08:40:27 vlovich systemd[1]: Starting Hostname Service...
Mar 06 08:40:27 vlovich systemd[1]: Starting Permit User Sessions...
Mar 06 08:40:27 vlovich systemd[1]: Finished Load/Save Screen Backlight Brightness of leds:dell::kbd_backlight.
Mar 06 08:40:27 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-backlight@leds:dell::kbd_backlight comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:27 vlovich systemd[1]: Finished Permit User Sessions.
Mar 06 08:40:27 vlovich kernel: audit: type=1130 audit(1615048827.892:92): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-backlight@leds:dell::kbd_backlight comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:27 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-user-sessions comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:27 vlovich audit[645]: CRED_ACQ pid=645 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_rootok acct="vlovich" exe="/usr/bin/su" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:27 vlovich audit[645]: USER_START pid=645 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:session_open grantors=pam_unix acct="vlovich" exe="/usr/bin/su" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:27 vlovich su[645]: pam_unix(su:session): session opened for user vlovich(uid=1000) by (uid=0)
Mar 06 08:40:27 vlovich systemd[1]: Reached target Bluetooth.
Mar 06 08:40:27 vlovich systemd[1]: Reached target Multi-User System.
Mar 06 08:40:27 vlovich systemd[1]: Started Simple Desktop Display Manager.
Mar 06 08:40:27 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sddm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:27 vlovich systemd[1]: Starting DisplayLink Manager Service...
Mar 06 08:40:27 vlovich kernel: audit: type=1130 audit(1615048827.896:93): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-user-sessions comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:27 vlovich kernel: audit: type=1103 audit(1615048827.896:94): pid=645 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_rootok acct="vlovich" exe="/usr/bin/su" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:27 vlovich kernel: audit: type=1105 audit(1615048827.896:95): pid=645 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:session_open grantors=pam_unix acct="vlovich" exe="/usr/bin/su" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:27 vlovich kernel: audit: type=1130 audit(1615048827.896:96): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sddm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:27 vlovich kernel: snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC289: line_outs=2 (0x14/0x17/0x0/0x0/0x0) type:speaker
Mar 06 08:40:27 vlovich kernel: snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
Mar 06 08:40:27 vlovich kernel: snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
Mar 06 08:40:27 vlovich kernel: snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
Mar 06 08:40:27 vlovich kernel: snd_hda_codec_realtek hdaudioC0D0:    inputs:
Mar 06 08:40:27 vlovich kernel: snd_hda_codec_realtek hdaudioC0D0:      Headset Mic=0x19
Mar 06 08:40:27 vlovich kernel: snd_hda_codec_realtek hdaudioC0D0:      Headphone Mic=0x1b
Mar 06 08:40:27 vlovich kernel: snd_hda_codec_realtek hdaudioC0D0:      Internal Mic=0x12
Mar 06 08:40:27 vlovich systemd[1]: Starting Load/Save RF Kill Switch Status...
Mar 06 08:40:27 vlovich boltd[643]: bolt 0.9.1 starting up.
Mar 06 08:40:27 vlovich boltd[643]: manager: initializing store
Mar 06 08:40:27 vlovich boltd[643]: store: located at: /var/lib/boltd
Mar 06 08:40:27 vlovich boltd[643]: config: loading user config
Mar 06 08:40:27 vlovich boltd[643]: bouncer: initializing polkit
Mar 06 08:40:27 vlovich dbus-daemon[593]: [system] Activating via systemd: service name='org.freedesktop.PolicyKit1' unit='polkit.service' requested by ':1.4' (uid=0 pid=643 comm="/usr/lib/boltd ")
Mar 06 08:40:27 vlovich systemd[1]: Started Load/Save RF Kill Switch Status.
Mar 06 08:40:27 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:27 vlovich kernel: audit: type=1130 audit(1615048827.902:97): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:27 vlovich kernel: evdi: [I] Initialising logging on level 5
Mar 06 08:40:27 vlovich systemd[1]: Starting Authorization Manager...
Mar 06 08:40:27 vlovich systemd[1]: Starting Load/Save Screen Backlight Brightness of backlight:intel_backlight...
Mar 06 08:40:27 vlovich systemd[1]: Started DisplayLink Manager Service.
Mar 06 08:40:27 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=displaylink comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:27 vlovich systemd[1]: Reached target Graphical Interface.
Mar 06 08:40:27 vlovich systemd[1]: Finished LVM event activation on device 254:0.
Mar 06 08:40:27 vlovich kernel: evdi: [I] Atomic driver:yes
Mar 06 08:40:27 vlovich kernel: audit: type=1130 audit(1615048827.906:98): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=displaylink comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:27 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lvm2-pvscan@254:0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:27 vlovich systemd[1]: Finished Load/Save Screen Backlight Brightness of backlight:intel_backlight.
Mar 06 08:40:27 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-backlight@backlight:intel_backlight comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:27 vlovich kernel: audit: type=1130 audit(1615048827.909:99): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lvm2-pvscan@254:0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:27 vlovich kernel: audit: type=1130 audit(1615048827.909:100): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-backlight@backlight:intel_backlight comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:27 vlovich polkitd[670]: Started polkitd version 0.118
Mar 06 08:40:27 vlovich dbus-daemon[593]: [system] Successfully activated service 'org.freedesktop.hostname1'
Mar 06 08:40:27 vlovich sddm[663]: Initializing...
Mar 06 08:40:27 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:27 vlovich systemd[1]: Started Hostname Service.
Mar 06 08:40:27 vlovich sddm[663]: Starting...
Mar 06 08:40:27 vlovich sddm[663]: Logind interface found
Mar 06 08:40:27 vlovich sddm[663]: Adding new display on vt 1 ...
Mar 06 08:40:27 vlovich sddm[663]: Loading theme configuration from ""
Mar 06 08:40:27 vlovich sddm[663]: Display server starting...
Mar 06 08:40:27 vlovich sddm[663]: Adding cookie to "/var/run/sddm/{dfd6a306-a302-4ec9-a369-9700fa62fbd1}"
Mar 06 08:40:27 vlovich sddm[663]: Running: /usr/bin/X -nolisten tcp -background none -seat seat0 vt1 -auth /var/run/sddm/{dfd6a306-a302-4ec9-a369-9700fa62fbd1} -noreset -displayfd 17
Mar 06 08:40:27 vlovich kernel: nvidia-modeset: Loading NVIDIA Kernel Mode Setting Driver for UNIX platforms  460.56  Tue Feb 23 23:20:29 UTC 2021
Mar 06 08:40:27 vlovich NetworkManager[594]: <info>  [1615048827.9596] hostname: hostname: using hostnamed
Mar 06 08:40:27 vlovich NetworkManager[594]: <info>  [1615048827.9596] hostname: hostname changed from (none) to "vlovich"
Mar 06 08:40:27 vlovich NetworkManager[594]: <info>  [1615048827.9599] dns-mgr[0x564c00dfd110]: init: dns=default,systemd-resolved rc-manager=symlink
Mar 06 08:40:27 vlovich NetworkManager[594]: <info>  [1615048827.9606] rfkill1: found Wi-Fi radio killswitch (at /sys/devices/pci0000:00/0000:00:14.3/ieee80211/phy0/rfkill1) (driver iwlwifi)
Mar 06 08:40:27 vlovich NetworkManager[594]: <info>  [1615048827.9607] manager[0x564c00e290c0]: rfkill: Wi-Fi hardware radio set enabled
Mar 06 08:40:27 vlovich NetworkManager[594]: <info>  [1615048827.9607] manager[0x564c00e290c0]: rfkill: WWAN hardware radio set enabled
Mar 06 08:40:27 vlovich kernel: [drm] [nvidia-drm] [GPU ID 0x00000100] Loading driver
Mar 06 08:40:27 vlovich polkitd[670]: Loading rules from directory /etc/polkit-1/rules.d
Mar 06 08:40:27 vlovich polkitd[670]: Loading rules from directory /usr/share/polkit-1/rules.d
Mar 06 08:40:27 vlovich polkitd[670]: Finished loading, compiling and executing 4 rules
Mar 06 08:40:27 vlovich dbus-daemon[593]: [system] Successfully activated service 'org.freedesktop.PolicyKit1'
Mar 06 08:40:27 vlovich systemd[1]: Started Authorization Manager.
Mar 06 08:40:27 vlovich polkitd[670]: Acquired the name org.freedesktop.PolicyKit1 on the system bus
Mar 06 08:40:27 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=polkit comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:27 vlovich boltd[643]: watchdog: enabled [pulse: 90s]
Mar 06 08:40:27 vlovich boltd[643]: udev: initializing udev
Mar 06 08:40:27 vlovich boltd[643]: store: loading domains
Mar 06 08:40:27 vlovich boltd[643]: [cb010000-0032-domain?                    ] store: loading domain
Mar 06 08:40:27 vlovich boltd[643]: journal: opened for 'cb010000-0032'; size: 0 bytes
Mar 06 08:40:27 vlovich boltd[643]: [cb010000-0032-domain?                    ] domain: registered (bootacl: 16/16)
Mar 06 08:40:27 vlovich boltd[643]: store: loading devices
Mar 06 08:40:27 vlovich boltd[643]: [cb010000-0032                            ] store: loading device
Mar 06 08:40:27 vlovich kernel: input: HDA Intel PCH Headphone Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input56
Mar 06 08:40:27 vlovich kernel: input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input57
Mar 06 08:40:27 vlovich kernel: input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input58
Mar 06 08:40:27 vlovich kernel: input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input59
Mar 06 08:40:27 vlovich kernel: input: HDA Intel PCH HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input60
Mar 06 08:40:27 vlovich kernel: input: HDA Intel PCH HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input61
Mar 06 08:40:27 vlovich boltd[643]: global 'generation' set to '3'
Mar 06 08:40:27 vlovich boltd[643]: power: state located at: /run/boltd/power
Mar 06 08:40:27 vlovich systemd[1]: Reached target Sound Card.
Mar 06 08:40:27 vlovich boltd[643]: power: force power support: yes
Mar 06 08:40:27 vlovich NetworkManager[594]: <info>  [1615048827.9737] Loaded device plugin: NMWwanFactory (/usr/lib/NetworkManager/1.30.0-2/libnm-device-plugin-wwan.so)
Mar 06 08:40:27 vlovich boltd[643]: udev: found 1 domain
Mar 06 08:40:27 vlovich boltd[643]: udev: enumerating devices
Mar 06 08:40:27 vlovich boltd[643]: probing: adding /sys/devices/pci0000:00/0000:00:1c.0/0000:02:00.0 to roots
Mar 06 08:40:27 vlovich NetworkManager[594]: <info>  [1615048827.9837] Loaded device plugin: NMTeamFactory (/usr/lib/NetworkManager/1.30.0-2/libnm-device-plugin-team.so)
Mar 06 08:40:27 vlovich NetworkManager[594]: <info>  [1615048827.9847] Loaded device plugin: NMAtmManager (/usr/lib/NetworkManager/1.30.0-2/libnm-device-plugin-adsl.so)
Mar 06 08:40:27 vlovich NetworkManager[594]: <info>  [1615048827.9853] Loaded device plugin: NMOvsFactory (/usr/lib/NetworkManager/1.30.0-2/libnm-device-plugin-ovs.so)
Mar 06 08:40:27 vlovich NetworkManager[594]: <info>  [1615048827.9865] Loaded device plugin: NMWifiFactory (/usr/lib/NetworkManager/1.30.0-2/libnm-device-plugin-wifi.so)
Mar 06 08:40:27 vlovich boltd[643]: [cb010000-0032-domain0                    ] bootacl: synchronizing journal
Mar 06 08:40:27 vlovich NetworkManager[594]: <info>  [1615048827.9890] Loaded device plugin: NMBluezManager (/usr/lib/NetworkManager/1.30.0-2/libnm-device-plugin-bluetooth.so)
Mar 06 08:40:27 vlovich kernel: ACPI Warning: \_SB.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20200925/nsarguments-61)
Mar 06 08:40:27 vlovich NetworkManager[594]: <info>  [1615048827.9892] manager: rfkill: Wi-Fi enabled by radio killswitch; enabled by state file
Mar 06 08:40:27 vlovich NetworkManager[594]: <info>  [1615048827.9892] manager: rfkill: WWAN enabled by radio killswitch; enabled by state file
Mar 06 08:40:27 vlovich NetworkManager[594]: <info>  [1615048827.9893] manager: Networking is enabled by state file
Mar 06 08:40:27 vlovich NetworkManager[594]: <info>  [1615048827.9896] dhcp-init: Using DHCP client 'internal'
Mar 06 08:40:27 vlovich dbus-daemon[593]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service' requested by ':1.2' (uid=0 pid=594 comm="/usr/bin/NetworkManager --no-daemon ")
Mar 06 08:40:27 vlovich NetworkManager[594]: <info>  [1615048827.9899] settings: Loaded settings plugin: keyfile (internal)
Mar 06 08:40:27 vlovich systemd[1]: Starting Network Manager Script Dispatcher Service...
Mar 06 08:40:27 vlovich NetworkManager[594]: <info>  [1615048827.9927] device (lo): carrier: link connected
Mar 06 08:40:27 vlovich NetworkManager[594]: <info>  [1615048827.9929] manager: (lo): new Generic device (/org/freedesktop/NetworkManager/Devices/1)
Mar 06 08:40:27 vlovich NetworkManager[594]: <info>  [1615048827.9934] device (wlp0s20f3): driver supports Access Point (AP) mode
Mar 06 08:40:27 vlovich NetworkManager[594]: <info>  [1615048827.9937] manager: (wlp0s20f3): new 802.11 Wi-Fi device (/org/freedesktop/NetworkManager/Devices/2)
Mar 06 08:40:27 vlovich NetworkManager[594]: <info>  [1615048827.9957] ovsdb: Could not connect: No such file or directory
Mar 06 08:40:27 vlovich NetworkManager[594]: <info>  [1615048827.9957] ovsdb: disconnected from ovsdb
Mar 06 08:40:27 vlovich NetworkManager[594]: <info>  [1615048827.9960] device (wlp0s20f3): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
Mar 06 08:40:27 vlovich dbus-daemon[593]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Mar 06 08:40:27 vlovich systemd[1]: Started Network Manager Script Dispatcher Service.
Mar 06 08:40:27 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:28 vlovich boltd[643]: security level set to 'dponly'
Mar 06 08:40:28 vlovich boltd[643]: [cb010000-0032-domain0                    ] connected: as domain0 [dponly] (/sys/devices/pci0000:00/0000:00:1c.0/0000:02:00.0/0000:03:00.0/0000:04:00.0/domain0)
Mar 06 08:40:28 vlovich boltd[643]: [cb010000-0032-Precision 15 5550          ] parent is (null)...
Mar 06 08:40:28 vlovich boltd[643]: [cb010000-0032-Precision 15 5550          ] connected: authorized (/sys/devices/pci0000:00/0000:00:1c.0/0000:02:00.0/0000:03:00.0/0000:04:00.0/domain0/0-0)
Mar 06 08:40:28 vlovich boltd[643]: [cb010000-0032-domain0                    ] dbus: exported domain at /org/freedesktop/bolt/domains/cb010000_0032_340e_838c_af8b08544902
Mar 06 08:40:28 vlovich boltd[643]: [cb010000-0032-Precision 15 5550          ] dbus: exported device at /org/freedesktop/bolt/devices/cb010000_0032...
Mar 06 08:40:28 vlovich systemd[1]: Started Thunderbolt system service.
Mar 06 08:40:28 vlovich systemd[1]: Startup finished in 5.205s (firmware) + 2.577s (loader) + 655ms (kernel) + 9.972s (initrd) + 6.477s (userspace) = 24.888s.
Mar 06 08:40:28 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=bolt comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:28 vlovich kernel: input: PS/2 Logitech Wheel Mouse as /devices/platform/i8042/serio1/input/input43
Mar 06 08:40:28 vlovich NetworkManager[594]: <info>  [1615048828.2194] device (wlp0s20f3): set-hw-addr: set MAC address to C6:39:FC:E2:55:D0 (scanning)
Mar 06 08:40:28 vlovich dbus-daemon[593]: [system] Activating via systemd: service name='fi.w1.wpa_supplicant1' unit='wpa_supplicant.service' requested by ':1.2' (uid=0 pid=594 comm="/usr/bin/NetworkManager --no-daemon ")
Mar 06 08:40:28 vlovich systemd[1]: Starting WPA supplicant...
Mar 06 08:40:28 vlovich dbus-daemon[593]: [system] Successfully activated service 'fi.w1.wpa_supplicant1'
Mar 06 08:40:28 vlovich systemd[1]: Started WPA supplicant.
Mar 06 08:40:28 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=wpa_supplicant comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:28 vlovich wpa_supplicant[732]: Successfully initialized wpa_supplicant
Mar 06 08:40:28 vlovich wpa_supplicant[732]: nl80211: kernel reports: Attribute failed policy validation
Mar 06 08:40:28 vlovich wpa_supplicant[732]: Failed to create interface p2p-dev-wlp0s20f3: -22 (Invalid argument)
Mar 06 08:40:28 vlovich wpa_supplicant[732]: nl80211: Failed to create a P2P Device interface p2p-dev-wlp0s20f3
Mar 06 08:40:28 vlovich wpa_supplicant[732]: P2P: Failed to enable P2P Device interface
Mar 06 08:40:28 vlovich wpa_supplicant[732]: dbus: fill_dict_with_properties dbus_interface=fi.w1.wpa_supplicant1.Interface.P2PDevice dbus_property=P2PDeviceConfig getter failed
Mar 06 08:40:28 vlovich NetworkManager[594]: <info>  [1615048828.5093] device (wlp0s20f3): supplicant interface state: internal-starting -> disconnected
Mar 06 08:40:28 vlovich NetworkManager[594]: <info>  [1615048828.5094] Wi-Fi P2P device controlled by interface wlp0s20f3 created
Mar 06 08:40:28 vlovich NetworkManager[594]: <info>  [1615048828.5100] manager: (p2p-dev-wlp0s20f3): new 802.11 Wi-Fi P2P device (/org/freedesktop/NetworkManager/Devices/3)
Mar 06 08:40:28 vlovich NetworkManager[594]: <info>  [1615048828.5102] device (p2p-dev-wlp0s20f3): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
Mar 06 08:40:28 vlovich NetworkManager[594]: <warn>  [1615048828.5110] sup-iface[53765580f5e4f1e6,0,wlp0s20f3]: call-p2p-cancel: failed with P2P cancel failed
Mar 06 08:40:28 vlovich NetworkManager[594]: <info>  [1615048828.5112] device (wlp0s20f3): state change: unavailable -> disconnected (reason 'supplicant-available', sys-iface-state: 'managed')
Mar 06 08:40:28 vlovich NetworkManager[594]: <info>  [1615048828.5121] device (p2p-dev-wlp0s20f3): state change: unavailable -> disconnected (reason 'none', sys-iface-state: 'managed')
Mar 06 08:40:28 vlovich kernel: [drm] Initialized nvidia-drm 0.0.0 20160202 for 0000:01:00.0 on minor 1
Mar 06 08:40:30 vlovich sddm[663]: Setting default cursor
Mar 06 08:40:30 vlovich audit[705]: ANOM_ABEND auid=4294967295 uid=0 gid=0 ses=4294967295 pid=705 comm="Xorg" exe="/usr/lib/Xorg" sig=6 res=1
Mar 06 08:40:30 vlovich systemd[1]: Created slice system-systemd\x2dcoredump.slice.
Mar 06 08:40:30 vlovich audit: BPF prog-id=23 op=LOAD
Mar 06 08:40:30 vlovich audit: BPF prog-id=24 op=LOAD
Mar 06 08:40:30 vlovich systemd[1]: Started Process Core Dump (PID 743/UID 0).
Mar 06 08:40:30 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-coredump@0-743-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:31 vlovich systemd-coredump[744]: Process 705 (Xorg) of user 0 dumped core.
                                                         
                                                         Stack trace of thread 705:
                                                         #0  0x00007ff72e01aef5 raise (libc.so.6 + 0x3cef5)
                                                         #1  0x00007ff72e004862 abort (libc.so.6 + 0x26862)
                                                         #2  0x0000555df18806ea OsAbort (Xorg + 0x14a6ea)
                                                         #3  0x0000555df18821b1 FatalError (Xorg + 0x14c1b1)
                                                         #4  0x0000555df1887e09 n/a (Xorg + 0x151e09)
                                                         #5  0x00007ff72e01af80 __restore_rt (libc.so.6 + 0x3cf80)
                                                         #6  0x0000555df17e93d9 RRTellChanged (Xorg + 0xb33d9)
                                                         #7  0x0000555df18f19d4 n/a (Xorg + 0x1bb9d4)
                                                         #8  0x0000555df18f1b0a n/a (Xorg + 0x1bbb0a)
                                                         #9  0x0000555df1880331 n/a (Xorg + 0x14a331)
                                                         #10 0x0000555df187bc00 WaitForSomething (Xorg + 0x145c00)
                                                         #11 0x0000555df176f914 n/a (Xorg + 0x39914)
                                                         #12 0x00007ff72e005b25 __libc_start_main (libc.so.6 + 0x27b25)
                                                         #13 0x0000555df17705de _start (Xorg + 0x3a5de)
                                                         
                                                         Stack trace of thread 734:
                                                         #0  0x00007ff72ded89ba __futex_abstimed_wait_common64 (libpthread.so.0 + 0x159ba)
                                                         #1  0x00007ff72ded2260 pthread_cond_wait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf260)
                                                         #2  0x00007ff72b518cec n/a (iris_dri.so + 0x4edcec)
                                                         #3  0x00007ff72b5174c8 n/a (iris_dri.so + 0x4ec4c8)
                                                         #4  0x00007ff72decc299 start_thread (libpthread.so.0 + 0x9299)
                                                         #5  0x00007ff72e0dd053 __clone (libc.so.6 + 0xff053)
                                                         
                                                         Stack trace of thread 740:
                                                         #0  0x00007ff72ded89ba __futex_abstimed_wait_common64 (libpthread.so.0 + 0x159ba)
                                                         #1  0x00007ff72ded2260 pthread_cond_wait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf260)
                                                         #2  0x00007ff72b518cec n/a (iris_dri.so + 0x4edcec)
                                                         #3  0x00007ff72b5174c8 n/a (iris_dri.so + 0x4ec4c8)
                                                         #4  0x00007ff72decc299 start_thread (libpthread.so.0 + 0x9299)
                                                         #5  0x00007ff72e0dd053 __clone (libc.so.6 + 0xff053)
                                                         
                                                         Stack trace of thread 737:
                                                         #0  0x00007ff72ded89ba __futex_abstimed_wait_common64 (libpthread.so.0 + 0x159ba)
                                                         #1  0x00007ff72ded2260 pthread_cond_wait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf260)
                                                         #2  0x00007ff72b518cec n/a (iris_dri.so + 0x4edcec)
                                                         #3  0x00007ff72b5174c8 n/a (iris_dri.so + 0x4ec4c8)
                                                         #4  0x00007ff72decc299 start_thread (libpthread.so.0 + 0x9299)
                                                         #5  0x00007ff72e0dd053 __clone (libc.so.6 + 0xff053)
                                                         
                                                         Stack trace of thread 733:
                                                         #0  0x00007ff72ded89ba __futex_abstimed_wait_common64 (libpthread.so.0 + 0x159ba)
                                                         #1  0x00007ff72ded2260 pthread_cond_wait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf260)
                                                         #2  0x00007ff72b518cec n/a (iris_dri.so + 0x4edcec)
                                                         #3  0x00007ff72b5174c8 n/a (iris_dri.so + 0x4ec4c8)
                                                         #4  0x00007ff72decc299 start_thread (libpthread.so.0 + 0x9299)
                                                         #5  0x00007ff72e0dd053 __clone (libc.so.6 + 0xff053)
                                                         
                                                         Stack trace of thread 735:
                                                         #0  0x00007ff72ded89ba __futex_abstimed_wait_common64 (libpthread.so.0 + 0x159ba)
                                                         #1  0x00007ff72ded2260 pthread_cond_wait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf260)
                                                         #2  0x00007ff72b518cec n/a (iris_dri.so + 0x4edcec)
                                                         #3  0x00007ff72b5174c8 n/a (iris_dri.so + 0x4ec4c8)
                                                         #4  0x00007ff72decc299 start_thread (libpthread.so.0 + 0x9299)
                                                         #5  0x00007ff72e0dd053 __clone (libc.so.6 + 0xff053)
                                                         
                                                         Stack trace of thread 736:
                                                         #0  0x00007ff72ded89ba __futex_abstimed_wait_common64 (libpthread.so.0 + 0x159ba)
                                                         #1  0x00007ff72ded2260 pthread_cond_wait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf260)
                                                         #2  0x00007ff72b518cec n/a (iris_dri.so + 0x4edcec)
                                                         #3  0x00007ff72b5174c8 n/a (iris_dri.so + 0x4ec4c8)
                                                         #4  0x00007ff72decc299 start_thread (libpthread.so.0 + 0x9299)
                                                         #5  0x00007ff72e0dd053 __clone (libc.so.6 + 0xff053)
                                                         
                                                         Stack trace of thread 738:
                                                         #0  0x00007ff72ded89ba __futex_abstimed_wait_common64 (libpthread.so.0 + 0x159ba)
                                                         #1  0x00007ff72ded2260 pthread_cond_wait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf260)
                                                         #2  0x00007ff72b518cec n/a (iris_dri.so + 0x4edcec)
                                                         #3  0x00007ff72b5174c8 n/a (iris_dri.so + 0x4ec4c8)
                                                         #4  0x00007ff72decc299 start_thread (libpthread.so.0 + 0x9299)
                                                         #5  0x00007ff72e0dd053 __clone (libc.so.6 + 0xff053)
                                                         
                                                         Stack trace of thread 739:
                                                         #0  0x00007ff72ded89ba __futex_abstimed_wait_common64 (libpthread.so.0 + 0x159ba)
                                                         #1  0x00007ff72ded2260 pthread_cond_wait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf260)
                                                         #2  0x00007ff72b518cec n/a (iris_dri.so + 0x4edcec)
                                                         #3  0x00007ff72b5174c8 n/a (iris_dri.so + 0x4ec4c8)
                                                         #4  0x00007ff72decc299 start_thread (libpthread.so.0 + 0x9299)
                                                         #5  0x00007ff72e0dd053 __clone (libc.so.6 + 0xff053)
Mar 06 08:40:31 vlovich systemd[1]: systemd-coredump@0-743-0.service: Succeeded.
Mar 06 08:40:31 vlovich audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-coredump@0-743-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:31 vlovich sddm[663]: Running display setup script  "/usr/share/sddm/scripts/Xsetup"
Mar 06 08:40:31 vlovich sddm[663]: Display server started.
Mar 06 08:40:31 vlovich sddm[663]: Socket server starting...
Mar 06 08:40:31 vlovich sddm[663]: Socket server started.
Mar 06 08:40:31 vlovich sddm[663]: Loading theme configuration from ""
Mar 06 08:40:31 vlovich sddm[663]: Greeter starting...
Mar 06 08:40:31 vlovich sddm-helper[750]: [PAM] Starting...
Mar 06 08:40:31 vlovich audit[750]: USER_AUTH pid=750 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:authentication grantors=pam_permit acct="sddm" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:31 vlovich audit[750]: USER_ACCT pid=750 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_permit acct="sddm" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:31 vlovich sddm-helper[750]: [PAM] Authenticating...
Mar 06 08:40:31 vlovich sddm-helper[750]: [PAM] returning.
Mar 06 08:40:31 vlovich audit[750]: CRED_ACQ pid=750 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_permit acct="sddm" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:31 vlovich sddm-helper[750]: pam_unix(sddm-greeter:session): session opened for user sddm(uid=974) by (uid=0)
Mar 06 08:40:31 vlovich systemd[1]: Created slice User Slice of UID 974.
Mar 06 08:40:31 vlovich systemd[1]: Starting User Runtime Directory /run/user/974...
Mar 06 08:40:31 vlovich systemd-logind[595]: New session c1 of user sddm.
Mar 06 08:40:31 vlovich systemd[1]: Finished User Runtime Directory /run/user/974.
Mar 06 08:40:31 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@974 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:31 vlovich systemd[1]: Starting User Manager for UID 974...
Mar 06 08:40:31 vlovich dbus-daemon[593]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.13' (uid=0 pid=752 comm="(systemd) ")
Mar 06 08:40:31 vlovich dbus-daemon[593]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Mar 06 08:40:31 vlovich systemd[752]: pam_systemd_home(systemd-user:account): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Mar 06 08:40:31 vlovich audit[752]: USER_ACCT pid=752 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_access,pam_unix,pam_permit,pam_time acct="sddm" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:31 vlovich audit[752]: CRED_ACQ pid=752 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=? acct="sddm" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
Mar 06 08:40:31 vlovich systemd[752]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8002 service=[systemd-user] terminal=[] user=[sddm] ruser=[<unknown>] rhost=[<unknown>]
Mar 06 08:40:31 vlovich systemd[752]: pam_unix(systemd-user:session): session opened for user sddm(uid=974) by (uid=0)
Mar 06 08:40:31 vlovich systemd[752]: pam_env(systemd-user:session): deprecated reading of user environment enabled
Mar 06 08:40:31 vlovich audit[752]: USER_START pid=752 uid=0 auid=974 ses=1 msg='op=PAM:session_open grantors=pam_loginuid,pam_loginuid,pam_keyinit,pam_limits,pam_unix,pam_permit,pam_mail,pam_systemd,pam_env acct="sddm" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:31 vlovich audit: BPF prog-id=25 op=LOAD
Mar 06 08:40:31 vlovich audit: BPF prog-id=25 op=UNLOAD
Mar 06 08:40:31 vlovich systemd[752]: Queued start job for default target Main User Target.
Mar 06 08:40:31 vlovich systemd[752]: -.slice: Failed to migrate controller cgroups from /user.slice/user-974.slice/user@974.service, ignoring: Permission denied
Mar 06 08:40:31 vlovich systemd[752]: Created slice User Application Slice.
Mar 06 08:40:31 vlovich systemd[752]: Reached target Paths.
Mar 06 08:40:31 vlovich systemd[752]: Reached target Timers.
Mar 06 08:40:31 vlovich systemd[752]: Starting D-Bus User Message Bus Socket.
Mar 06 08:40:31 vlovich systemd[752]: Listening on GnuPG network certificate management daemon.
Mar 06 08:40:31 vlovich systemd[752]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
Mar 06 08:40:31 vlovich systemd[752]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
Mar 06 08:40:31 vlovich systemd[752]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
Mar 06 08:40:31 vlovich systemd[752]: Listening on GnuPG cryptographic agent and passphrase cache.
Mar 06 08:40:31 vlovich systemd[752]: Listening on p11-kit server.
Mar 06 08:40:31 vlovich systemd[752]: Listening on Multimedia System.
Mar 06 08:40:31 vlovich systemd[752]: Listening on Sound System.
Mar 06 08:40:31 vlovich systemd[752]: Listening on D-Bus User Message Bus Socket.
Mar 06 08:40:31 vlovich systemd[752]: Reached target Sockets.
Mar 06 08:40:31 vlovich systemd[752]: Reached target Basic System.
Mar 06 08:40:31 vlovich systemd[752]: Reached target Main User Target.
Mar 06 08:40:31 vlovich systemd[752]: Startup finished in 57ms.
Mar 06 08:40:31 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user@974 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:31 vlovich systemd[1]: Started User Manager for UID 974.
Mar 06 08:40:31 vlovich systemd[1]: Started Session c1 of user sddm.
Mar 06 08:40:31 vlovich audit[750]: USER_START pid=750 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:session_open grantors=pam_unix,pam_systemd acct="sddm" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=:0 res=success'
Mar 06 08:40:31 vlovich sddm[663]: Greeter session started successfully
Mar 06 08:40:31 vlovich sddm-greeter[759]: High-DPI autoscaling not Enabled
Mar 06 08:40:31 vlovich sddm-greeter[759]: could not connect to display :0
Mar 06 08:40:31 vlovich sddm-greeter[759]: Could not load the Qt platform plugin "xcb" in "" even though it was found.
Mar 06 08:40:31 vlovich sddm-greeter[759]: This application failed to start because no Qt platform plugin could be initialized. Reinstalling the application may fix this problem.
                                                     
                                                     Available platform plugins are: eglfs, linuxfb, minimal, minimalegl, offscreen, vnc, wayland-egl, wayland, wayland-xcomposite-egl, wayland-xcomposite-glx, xcb.
Mar 06 08:40:31 vlovich audit[759]: ANOM_ABEND auid=4294967295 uid=974 gid=974 ses=4294967295 pid=759 comm="sddm-greeter" exe="/usr/bin/sddm-greeter" sig=6 res=1
Mar 06 08:40:31 vlovich audit: BPF prog-id=26 op=LOAD
Mar 06 08:40:31 vlovich audit: BPF prog-id=27 op=LOAD
Mar 06 08:40:31 vlovich systemd[1]: Started Process Core Dump (PID 760/UID 0).
Mar 06 08:40:31 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-coredump@1-760-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:31 vlovich audit: BPF prog-id=24 op=UNLOAD
Mar 06 08:40:31 vlovich audit: BPF prog-id=23 op=UNLOAD
Mar 06 08:40:31 vlovich systemd-coredump[762]: Process 759 (sddm-greeter) of user 974 dumped core.
                                                         
                                                         Stack trace of thread 759:
                                                         #0  0x00007fbb94b1cef5 raise (libc.so.6 + 0x3cef5)
                                                         #1  0x00007fbb94b06862 abort (libc.so.6 + 0x26862)
                                                         #2  0x00007fbb94f349ac _ZNK14QMessageLogger5fatalEPKcz (libQt5Core.so.5 + 0x909ac)
                                                         #3  0x00007fbb9552a646 _ZN22QGuiApplicationPrivate25createPlatformIntegrationEv (libQt5Gui.so.5 + 0x131646)
                                                         #4  0x00007fbb9552aae1 _ZN22QGuiApplicationPrivate21createEventDispatcherEv (libQt5Gui.so.5 + 0x131ae1)
                                                         #5  0x00007fbb95160686 _ZN23QCoreApplicationPrivate4initEv (libQt5Core.so.5 + 0x2bc686)
                                                         #6  0x00007fbb9552db20 _ZN22QGuiApplicationPrivate4initEv (libQt5Gui.so.5 + 0x134b20)
                                                         #7  0x00007fbb9552ea88 _ZN15QGuiApplicationC1ERiPPci (libQt5Gui.so.5 + 0x135a88)
                                                         #8  0x00005559d71a6a77 main (sddm-greeter + 0x19a77)
                                                         #9  0x00007fbb94b07b25 __libc_start_main (libc.so.6 + 0x27b25)
                                                         #10 0x00005559d71a707e _start (sddm-greeter + 0x1a07e)
Mar 06 08:40:31 vlovich systemd[1]: systemd-coredump@1-760-0.service: Succeeded.
Mar 06 08:40:31 vlovich audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-coredump@1-760-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:31 vlovich audit[750]: USER_END pid=750 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:session_close grantors=pam_unix,pam_systemd acct="sddm" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=:0 res=success'
Mar 06 08:40:31 vlovich audit[750]: CRED_DISP pid=750 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_permit acct="sddm" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=:0 res=success'
Mar 06 08:40:31 vlovich sddm-helper[750]: [PAM] Closing session
Mar 06 08:40:31 vlovich sddm-helper[750]: pam_unix(sddm-greeter:session): session closed for user sddm
Mar 06 08:40:31 vlovich sddm-helper[750]: [PAM] Ended.
Mar 06 08:40:31 vlovich systemd[1]: session-c1.scope: Succeeded.
Mar 06 08:40:31 vlovich sddm[663]: Auth: sddm-helper exited with 6
Mar 06 08:40:31 vlovich sddm[663]: Greeter stopped.
Mar 06 08:40:31 vlovich systemd-logind[595]: Session c1 logged out. Waiting for processes to exit.
Mar 06 08:40:31 vlovich systemd-logind[595]: Removed session c1.
Mar 06 08:40:31 vlovich audit: BPF prog-id=27 op=UNLOAD
Mar 06 08:40:31 vlovich audit: BPF prog-id=26 op=UNLOAD
Mar 06 08:40:31 vlovich wpa_supplicant[732]: wlp0s20f3: CTRL-EVENT-REGDOM-CHANGE init=DRIVER type=COUNTRY alpha2=US
Mar 06 08:40:31 vlovich NetworkManager[594]: <info>  [1615048831.5447] manager: startup complete
Mar 06 08:40:31 vlovich sddm[663]: Display server stopped.
Mar 06 08:40:31 vlovich sddm[663]: Running display stop script  "/usr/share/sddm/scripts/Xstop"
Mar 06 08:40:31 vlovich sddm[663]: Socket server stopping...
Mar 06 08:40:31 vlovich sddm[663]: Socket server stopped.
Mar 06 08:40:31 vlovich sddm[663]: Removing display ":0" ...
Mar 06 08:40:31 vlovich sddm[663]: Adding new display on vt 1 ...
Mar 06 08:40:31 vlovich sddm[663]: Loading theme configuration from ""
Mar 06 08:40:31 vlovich sddm[663]: Display server starting...
Mar 06 08:40:31 vlovich sddm[663]: Adding cookie to "/var/run/sddm/{7493cd1a-10ab-4fe6-aa20-d24a109f1a4a}"
Mar 06 08:40:31 vlovich sddm[663]: Running: /usr/bin/X -nolisten tcp -background none -seat seat0 vt1 -auth /var/run/sddm/{7493cd1a-10ab-4fe6-aa20-d24a109f1a4a} -noreset -displayfd 18
Mar 06 08:40:32 vlovich systemd[1]: systemd-rfkill.service: Succeeded.
Mar 06 08:40:32 vlovich audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:32 vlovich kernel: kauditd_printk_skb: 33 callbacks suppressed
Mar 06 08:40:32 vlovich kernel: audit: type=1131 audit(1615048832.909:134): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:32 vlovich fix-bt-a2dp[661]: waiting for 5 seconds...
Mar 06 08:40:33 vlovich sddm[663]: Setting default cursor
Mar 06 08:40:33 vlovich sddm[663]: Running display setup script  "/usr/share/sddm/scripts/Xsetup"
Mar 06 08:40:33 vlovich sddm[663]: Display server started.
Mar 06 08:40:33 vlovich sddm[663]: Socket server starting...
Mar 06 08:40:33 vlovich sddm[663]: Socket server started.
Mar 06 08:40:33 vlovich sddm[663]: Loading theme configuration from ""
Mar 06 08:40:33 vlovich sddm[663]: Greeter starting...
Mar 06 08:40:33 vlovich sddm-helper[782]: [PAM] Starting...
Mar 06 08:40:33 vlovich audit[782]: USER_AUTH pid=782 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:authentication grantors=pam_permit acct="sddm" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:33 vlovich audit[782]: USER_ACCT pid=782 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_permit acct="sddm" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:33 vlovich audit[782]: CRED_ACQ pid=782 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_permit acct="sddm" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:33 vlovich sddm-helper[782]: [PAM] Authenticating...
Mar 06 08:40:33 vlovich sddm-helper[782]: pam_unix(sddm-greeter:session): session opened for user sddm(uid=974) by (uid=0)
Mar 06 08:40:33 vlovich sddm-helper[782]: [PAM] returning.
Mar 06 08:40:33 vlovich systemd-logind[595]: New session c2 of user sddm.
Mar 06 08:40:33 vlovich kernel: audit: type=1100 audit(1615048833.442:135): pid=782 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:authentication grantors=pam_permit acct="sddm" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:33 vlovich kernel: audit: type=1101 audit(1615048833.442:136): pid=782 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_permit acct="sddm" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:33 vlovich kernel: audit: type=1103 audit(1615048833.442:137): pid=782 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_permit acct="sddm" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:33 vlovich systemd[1]: Started Session c2 of user sddm.
Mar 06 08:40:33 vlovich audit[782]: USER_START pid=782 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:session_open grantors=pam_unix,pam_systemd acct="sddm" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=:0 res=success'
Mar 06 08:40:33 vlovich sddm[663]: Greeter session started successfully
Mar 06 08:40:33 vlovich kernel: audit: type=1105 audit(1615048833.449:138): pid=782 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:session_open grantors=pam_unix,pam_systemd acct="sddm" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=:0 res=success'
Mar 06 08:40:33 vlovich sddm-greeter[783]: High-DPI autoscaling not Enabled
Mar 06 08:40:33 vlovich sddm-greeter[783]: Reading from "/usr/share/xsessions/plasma.desktop"
Mar 06 08:40:33 vlovich sddm-greeter[783]: Loading theme configuration from "qrc:/theme/theme.conf"
Mar 06 08:40:33 vlovich systemd[752]: Started D-Bus User Message Bus.
Mar 06 08:40:33 vlovich sddm-greeter[783]: Connected to the daemon.
Mar 06 08:40:33 vlovich sddm-greeter[783]: QFont::fromString: Invalid description '(empty)'
Mar 06 08:40:33 vlovich sddm[663]: Message received from greeter: Connect
Mar 06 08:40:33 vlovich sddm-greeter[783]: Loading qrc:/theme/Main.qml...
Mar 06 08:40:33 vlovich sddm-greeter[783]: file:///usr/lib/qt/qml/SddmComponents/LayoutBox.qml:35:5: QML Connections: Implicitly defined onFoo properties in Connections are deprecated. Use this syntax instead: function onFoo(<arguments>) { ... }
Mar 06 08:40:33 vlovich sddm-greeter[783]: qrc:/theme/Main.qml:41:5: QML Connections: Implicitly defined onFoo properties in Connections are deprecated. Use this syntax instead: function onFoo(<arguments>) { ... }
Mar 06 08:40:33 vlovich sddm-greeter[783]: Adding view for "eDP-1" QRect(0,0 3840x2400)
Mar 06 08:40:33 vlovich sddm-greeter[783]: Message received from daemon: Capabilities
Mar 06 08:40:33 vlovich sddm-greeter[783]: Message received from daemon: HostName
Mar 06 08:40:36 vlovich sddm-greeter[783]: Reading from "/usr/share/xsessions/plasma.desktop"
Mar 06 08:40:36 vlovich sddm[663]: Message received from greeter: Login
Mar 06 08:40:36 vlovich sddm[663]: Reading from "/usr/share/xsessions/plasma.desktop"
Mar 06 08:40:36 vlovich sddm[663]: Reading from "/usr/share/xsessions/plasma.desktop"
Mar 06 08:40:36 vlovich sddm[663]: Session "/usr/share/xsessions/plasma.desktop" selected, command: "/usr/bin/startplasma-x11"
Mar 06 08:40:36 vlovich sddm-helper[797]: [PAM] Starting...
Mar 06 08:40:36 vlovich sddm-helper[797]: [PAM] Authenticating...
Mar 06 08:40:36 vlovich sddm-helper[797]: [PAM] Preparing to converse...
Mar 06 08:40:36 vlovich sddm-helper[797]: [PAM] Conversation with 1 messages
Mar 06 08:40:36 vlovich sddm-helper[797]: pam_kwallet5(sddm:auth): (null): pam_sm_authenticate
Mar 06 08:40:36 vlovich audit[797]: USER_AUTH pid=797 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:authentication grantors=pam_shells,pam_faillock,pam_permit,pam_faillock acct="vlovich" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:36 vlovich sddm-helper[797]: [PAM] returning.
Mar 06 08:40:36 vlovich dbus-daemon[593]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.19' (uid=0 pid=797 comm="/usr/lib/sddm/sddm-helper --socket /tmp/sddm-auth6")
Mar 06 08:40:36 vlovich dbus-daemon[593]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Mar 06 08:40:36 vlovich sddm-helper[797]: pam_systemd_home(sddm:account): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Mar 06 08:40:36 vlovich audit[797]: USER_ACCT pid=797 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_access,pam_unix,pam_permit,pam_time acct="vlovich" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:36 vlovich sddm[663]: Authenticated successfully
Mar 06 08:40:36 vlovich sddm-greeter[783]: Message received from daemon: LoginSucceeded
Mar 06 08:40:36 vlovich audit[797]: CRED_ACQ pid=797 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_shells,pam_faillock,pam_permit,pam_faillock acct="vlovich" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:36 vlovich sddm-helper[797]: pam_kwallet5(sddm:setcred): pam_kwallet5: pam_sm_setcred
Mar 06 08:40:36 vlovich kernel: audit: type=1100 audit(1615048836.856:139): pid=797 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:authentication grantors=pam_shells,pam_faillock,pam_permit,pam_faillock acct="vlovich" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:36 vlovich kernel: audit: type=1101 audit(1615048836.856:140): pid=797 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_access,pam_unix,pam_permit,pam_time acct="vlovich" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:36 vlovich kernel: audit: type=1103 audit(1615048836.856:141): pid=797 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_shells,pam_faillock,pam_permit,pam_faillock acct="vlovich" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:36 vlovich kernel: audit: type=1006 audit(1615048836.856:142): pid=797 uid=0 old-auid=4294967295 auid=1000 tty=(none) old-ses=4294967295 ses=2 res=1
Mar 06 08:40:36 vlovich sddm-helper[797]: pam_unix(sddm:session): session opened for user vlovich(uid=1000) by (uid=0)
Mar 06 08:40:36 vlovich NetworkManager[594]: <info>  [1615048836.8660] policy: auto-activating connection 'i_steal_pies' (af7dc588-6901-4fc4-9ce4-b24a224c4330)
Mar 06 08:40:36 vlovich NetworkManager[594]: <info>  [1615048836.8666] device (wlp0s20f3): Activation: starting connection 'i_steal_pies' (af7dc588-6901-4fc4-9ce4-b24a224c4330)
Mar 06 08:40:36 vlovich NetworkManager[594]: <info>  [1615048836.8667] device (wlp0s20f3): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Mar 06 08:40:36 vlovich NetworkManager[594]: <info>  [1615048836.8671] manager: NetworkManager state is now CONNECTING
Mar 06 08:40:36 vlovich systemd[1]: Created slice User Slice of UID 1000.
Mar 06 08:40:36 vlovich systemd[1]: Starting User Runtime Directory /run/user/1000...
Mar 06 08:40:36 vlovich systemd-logind[595]: New session 2 of user vlovich.
Mar 06 08:40:36 vlovich systemd[1]: Finished User Runtime Directory /run/user/1000.
Mar 06 08:40:36 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@1000 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:36 vlovich systemd[1]: Starting User Manager for UID 1000...
Mar 06 08:40:36 vlovich kernel: audit: type=1130 audit(1615048836.869:143): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@1000 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:36 vlovich dbus-daemon[593]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.21' (uid=0 pid=799 comm="(systemd) ")
Mar 06 08:40:36 vlovich dbus-daemon[593]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Mar 06 08:40:36 vlovich systemd[799]: pam_systemd_home(systemd-user:account): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Mar 06 08:40:36 vlovich audit[799]: USER_ACCT pid=799 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_access,pam_unix,pam_permit,pam_time acct="vlovich" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:36 vlovich audit[799]: CRED_ACQ pid=799 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=? acct="vlovich" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
Mar 06 08:40:36 vlovich systemd[799]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8002 service=[systemd-user] terminal=[] user=[vlovich] ruser=[<unknown>] rhost=[<unknown>]
Mar 06 08:40:36 vlovich systemd[799]: pam_unix(systemd-user:session): session opened for user vlovich(uid=1000) by (uid=0)
Mar 06 08:40:36 vlovich systemd[799]: pam_env(systemd-user:session): deprecated reading of user environment enabled
Mar 06 08:40:36 vlovich audit[799]: USER_START pid=799 uid=0 auid=1000 ses=3 msg='op=PAM:session_open grantors=pam_loginuid,pam_loginuid,pam_keyinit,pam_limits,pam_unix,pam_permit,pam_mail,pam_systemd,pam_env acct="vlovich" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:36 vlovich NetworkManager[594]: <info>  [1615048836.8812] device (wlp0s20f3): set-hw-addr: reset MAC address to C0:3C:59:11:EB:BC (preserve)
Mar 06 08:40:36 vlovich audit: BPF prog-id=28 op=LOAD
Mar 06 08:40:36 vlovich audit: BPF prog-id=28 op=UNLOAD
Mar 06 08:40:36 vlovich sddm-helper[782]: [PAM] Closing session
Mar 06 08:40:36 vlovich sddm-helper[782]: pam_unix(sddm-greeter:session): session closed for user sddm
Mar 06 08:40:36 vlovich audit[782]: USER_END pid=782 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:session_close grantors=pam_unix,pam_systemd acct="sddm" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=:0 res=success'
Mar 06 08:40:36 vlovich audit[782]: CRED_DISP pid=782 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_permit acct="sddm" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=:0 res=success'
Mar 06 08:40:36 vlovich sddm-helper[782]: [PAM] Ended.
Mar 06 08:40:36 vlovich sddm[663]: Auth: sddm-helper exited successfully
Mar 06 08:40:36 vlovich sddm[663]: Greeter stopped.
Mar 06 08:40:36 vlovich systemd[1]: session-c2.scope: Succeeded.
Mar 06 08:40:36 vlovich systemd-logind[595]: Session c2 logged out. Waiting for processes to exit.
Mar 06 08:40:36 vlovich systemd-logind[595]: Removed session c2.
Mar 06 08:40:36 vlovich systemd[799]: Queued start job for default target Main User Target.
Mar 06 08:40:36 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user@1000 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:36 vlovich sddm-helper[797]: pam_env(sddm:session): deprecated reading of user environment enabled
Mar 06 08:40:36 vlovich systemd[799]: -.slice: Failed to migrate controller cgroups from /user.slice/user-1000.slice/user@1000.service, ignoring: Permission denied
Mar 06 08:40:36 vlovich sddm-helper[797]: pam_kwallet5(sddm:session): pam_kwallet5: pam_sm_open_session
Mar 06 08:40:36 vlovich systemd[799]: Created slice User Application Slice.
Mar 06 08:40:36 vlovich systemd[799]: Reached target Paths.
Mar 06 08:40:36 vlovich systemd[799]: Reached target Timers.
Mar 06 08:40:36 vlovich systemd[799]: Starting D-Bus User Message Bus Socket.
Mar 06 08:40:36 vlovich systemd[799]: Listening on GnuPG network certificate management daemon.
Mar 06 08:40:36 vlovich systemd[799]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
Mar 06 08:40:36 vlovich systemd[799]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
Mar 06 08:40:36 vlovich systemd[799]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
Mar 06 08:40:36 vlovich systemd[799]: Listening on GnuPG cryptographic agent and passphrase cache.
Mar 06 08:40:36 vlovich systemd[799]: Listening on p11-kit server.
Mar 06 08:40:36 vlovich systemd[799]: Listening on Multimedia System.
Mar 06 08:40:36 vlovich systemd[799]: Listening on Sound System.
Mar 06 08:40:36 vlovich systemd[799]: Listening on D-Bus User Message Bus Socket.
Mar 06 08:40:36 vlovich systemd[799]: Reached target Sockets.
Mar 06 08:40:36 vlovich systemd[799]: Reached target Basic System.
Mar 06 08:40:36 vlovich systemd[799]: Reached target Main User Target.
Mar 06 08:40:36 vlovich systemd[799]: Startup finished in 57ms.
Mar 06 08:40:36 vlovich systemd[1]: Started User Manager for UID 1000.
Mar 06 08:40:36 vlovich systemd[1]: Started Session 2 of user vlovich.
Mar 06 08:40:36 vlovich sddm-helper[808]: pam_kwallet5: final socket path: /run/user/1000/kwallet5.socket
Mar 06 08:40:36 vlovich audit[797]: USER_START pid=797 uid=0 auid=1000 ses=2 msg='op=PAM:session_open grantors=pam_keyinit,pam_loginuid,pam_keyinit,pam_limits,pam_unix,pam_permit,pam_mail,pam_systemd,pam_env,pam_kwallet5 acct="vlovich" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=:0 res=success'
Mar 06 08:40:36 vlovich sddm-helper[797]: Starting: "/usr/share/sddm/scripts/Xsession \"/usr/bin/startplasma-x11\""
Mar 06 08:40:36 vlovich sddm-helper[810]: Adding cookie to "/home/vlovich/.Xauthority"
Mar 06 08:40:36 vlovich sddm[663]: Session started
Mar 06 08:40:36 vlovich systemd[799]: Started D-Bus User Message Bus.
Mar 06 08:40:37 vlovich dbus-daemon[815]: [session uid=1000 pid=815] Activating service name='org.kde.KSplash' requested by ':1.2' (uid=1000 pid=810 comm="/usr/bin/startplasma-x11 ")
Mar 06 08:40:37 vlovich NetworkManager[594]: <info>  [1615048837.0660] device (wlp0s20f3): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Mar 06 08:40:37 vlovich NetworkManager[594]: <info>  [1615048837.0662] device (wlp0s20f3): Activation: (wifi) access point 'i_steal_pies' has security, but secrets are required.
Mar 06 08:40:37 vlovich NetworkManager[594]: <info>  [1615048837.0662] device (wlp0s20f3): state change: config -> need-auth (reason 'none', sys-iface-state: 'managed')
Mar 06 08:40:37 vlovich NetworkManager[594]: <warn>  [1615048837.0755] device (wlp0s20f3): no secrets: No agents were available for this request.
Mar 06 08:40:37 vlovich NetworkManager[594]: <info>  [1615048837.0755] device (wlp0s20f3): state change: need-auth -> failed (reason 'no-secrets', sys-iface-state: 'managed')
Mar 06 08:40:37 vlovich NetworkManager[594]: <info>  [1615048837.0757] manager: NetworkManager state is now DISCONNECTED
Mar 06 08:40:37 vlovich NetworkManager[594]: <info>  [1615048837.0887] device (wlp0s20f3): set-hw-addr: set MAC address to 56:3B:F2:CF:20:C5 (scanning)
Mar 06 08:40:37 vlovich dbus-daemon[815]: [session uid=1000 pid=815] Successfully activated service 'org.kde.KSplash'
Mar 06 08:40:37 vlovich klauncher[834]: Connecting to deprecated signal QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
Mar 06 08:40:37 vlovich kcminit_startup[844]: Initializing  "kcm_style" :  "kcminit_style"
Mar 06 08:40:37 vlovich NetworkManager[594]: <warn>  [1615048837.2777] device (wlp0s20f3): Activation: failed for connection 'i_steal_pies'
Mar 06 08:40:37 vlovich NetworkManager[594]: <info>  [1615048837.2780] device (wlp0s20f3): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Mar 06 08:40:37 vlovich wpa_supplicant[732]: wlp0s20f3: CTRL-EVENT-REGDOM-CHANGE init=DRIVER type=WORLD
Mar 06 08:40:37 vlovich wpa_supplicant[732]: wlp0s20f3: CTRL-EVENT-REGDOM-CHANGE init=DRIVER type=WORLD
Mar 06 08:40:37 vlovich NetworkManager[594]: <info>  [1615048837.3094] device (wlp0s20f3): supplicant interface state: disconnected -> inactive
Mar 06 08:40:37 vlovich NetworkManager[594]: <info>  [1615048837.3094] device (p2p-dev-wlp0s20f3): supplicant management interface state: disconnected -> inactive
Mar 06 08:40:37 vlovich kcminit_startup[844]: QDBusConnection: error: could not send signal to service "" path "//home/vlovich/.kde4/share/config/kdeglobals" interface "org.kde.kconfig.notify" member "ConfigChanged": Invalid object path: //home/vlovich/.kde4/share/config/kdeglobals
Mar 06 08:40:37 vlovich kcminit_startup[844]: Initializing  "kcm_mouse" :  "kcminit_mouse"
Mar 06 08:40:37 vlovich plasma_session[827]: org.kde.plasma.session: process job  "kcminit_startup" finished with exit code  0
Mar 06 08:40:37 vlovich kernel: logitech-hidpp-device 0003:046D:406D.0006: HID++ 4.5 device connected.
Mar 06 08:40:37 vlovich dbus-daemon[815]: [session uid=1000 pid=815] Activating service name='ca.desrt.dconf' requested by ':1.9' (uid=1000 pid=852 comm="/usr/bin/kded5 ")
Mar 06 08:40:37 vlovich dbus-daemon[815]: [session uid=1000 pid=815] Successfully activated service 'ca.desrt.dconf'
Mar 06 08:40:37 vlovich systemd[1]: NetworkManager-dispatcher.service: Succeeded.
Mar 06 08:40:37 vlovich audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:37 vlovich kernel: kauditd_printk_skb: 10 callbacks suppressed
Mar 06 08:40:37 vlovich kernel: audit: type=1131 audit(1615048837.942:154): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:37 vlovich dbus-daemon[815]: [session uid=1000 pid=815] Activating via systemd: service name='org.kde.kglobalaccel' unit='plasma-kglobalaccel.service' requested by ':1.8' (uid=1000 pid=852 comm="/usr/bin/kded5 ")
Mar 06 08:40:37 vlovich systemd[799]: Created slice User Background Tasks Slice.
Mar 06 08:40:37 vlovich systemd[799]: Starting KDE Global Shortcuts Server...
Mar 06 08:40:38 vlovich kwin_x11[856]: kwin_xkbcommon: XKB: /usr/share/X11/locale/en_US.UTF-8/Compose:5079:46: this compose sequence is a duplicate of another; skipping line
Mar 06 08:40:38 vlovich kwin_x11[856]: kwin_xkbcommon: XKB: /usr/share/X11/locale/en_US.UTF-8/Compose:5081:48: this compose sequence is a duplicate of another; skipping line
Mar 06 08:40:38 vlovich dbus-daemon[815]: [session uid=1000 pid=815] Successfully activated service 'org.kde.kglobalaccel'
Mar 06 08:40:38 vlovich kwin_x11[856]: kwin_xkbcommon: XKB: /usr/share/X11/locale/en_US.UTF-8/Compose:5083:48: this compose sequence is a duplicate of another; skipping line
Mar 06 08:40:38 vlovich kwin_x11[856]: kwin_xkbcommon: XKB: /usr/share/X11/locale/en_US.UTF-8/Compose:5087:47: this compose sequence is a duplicate of another; skipping line
Mar 06 08:40:38 vlovich kwin_x11[856]: kwin_xkbcommon: XKB: /usr/share/X11/locale/en_US.UTF-8/Compose:5089:46: this compose sequence is a duplicate of another; skipping line
Mar 06 08:40:38 vlovich kwin_x11[856]: kwin_xkbcommon: XKB: /usr/share/X11/locale/en_US.UTF-8/Compose:5097:48: this compose sequence is a duplicate of another; skipping line
Mar 06 08:40:38 vlovich kwin_x11[856]: kwin_xkbcommon: XKB: /usr/share/X11/locale/en_US.UTF-8/Compose:5101:46: this compose sequence is a duplicate of another; skipping line
Mar 06 08:40:38 vlovich kwin_x11[856]: kwin_xkbcommon: XKB: /usr/share/X11/locale/en_US.UTF-8/Compose:5103:46: this compose sequence is a duplicate of another; skipping line
Mar 06 08:40:38 vlovich kwin_x11[856]: kwin_xkbcommon: XKB: /usr/share/X11/locale/en_US.UTF-8/Compose:5107:45: this compose sequence is a duplicate of another; skipping line
Mar 06 08:40:38 vlovich kwin_x11[856]: kwin_xkbcommon: XKB: /usr/share/X11/locale/en_US.UTF-8/Compose:5110:46: this compose sequence is a duplicate of another; skipping line
Mar 06 08:40:38 vlovich systemd[799]: Started KDE Global Shortcuts Server.
Mar 06 08:40:38 vlovich kwin_x11[856]: kwin_xkbcommon: XKB: Couldn't process include statement for 'us(\0)'
Mar 06 08:40:38 vlovich kwin_x11[856]: kwin_xkbcommon: XKB: Abandoning symbols file "(unnamed)"
Mar 06 08:40:38 vlovich kwin_x11[856]: kwin_xkbcommon: XKB: Failed to compile xkb_symbols
Mar 06 08:40:38 vlovich kwin_x11[856]: kwin_xkbcommon: XKB: Failed to compile keymap
Mar 06 08:40:38 vlovich systemd[799]: Starting KActivityManager Activity manager Service...
Mar 06 08:40:38 vlovich dbus-daemon[815]: [session uid=1000 pid=815] Activating via systemd: service name='org.kde.ActivityManager' unit='plasma-kactivitymanagerd.service' requested by ':1.11' (uid=1000 pid=856 comm="/usr/bin/kwin_x11 ")
Mar 06 08:40:38 vlovich dbus-daemon[815]: [session uid=1000 pid=815] Successfully activated service 'org.kde.ActivityManager'
Mar 06 08:40:38 vlovich systemd[799]: Started KActivityManager Activity manager Service.
Mar 06 08:40:38 vlovich kded5[852]: Installing the delayed initialization callback.
Mar 06 08:40:38 vlovich kded5[852]: bluedevil: Created
Mar 06 08:40:38 vlovich dbus-daemon[593]: [system] Activating via systemd: service name='org.freedesktop.UDisks2' unit='udisks2.service' requested by ':1.25' (uid=1000 pid=852 comm="/usr/bin/kded5 ")
Mar 06 08:40:38 vlovich systemd[1]: Starting Disk Manager...
Mar 06 08:40:38 vlovich udisksd[913]: udisks daemon version 2.9.2 starting
Mar 06 08:40:38 vlovich dbus-daemon[593]: [system] Successfully activated service 'org.freedesktop.UDisks2'
Mar 06 08:40:38 vlovich systemd[1]: Started Disk Manager.
Mar 06 08:40:38 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=udisks2 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:38 vlovich dbus-daemon[593]: [system] Activating via systemd: service name='org.freedesktop.UPower' unit='upower.service' requested by ':1.25' (uid=1000 pid=852 comm="/usr/bin/kded5 ")
Mar 06 08:40:38 vlovich kernel: audit: type=1130 audit(1615048838.419:155): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=udisks2 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:38 vlovich audit: BPF prog-id=29 op=LOAD
Mar 06 08:40:38 vlovich audit: BPF prog-id=30 op=LOAD
Mar 06 08:40:38 vlovich udisksd[913]: Acquired the name org.freedesktop.UDisks2 on the system message bus
Mar 06 08:40:38 vlovich kernel: audit: type=1334 audit(1615048838.422:156): prog-id=29 op=LOAD
Mar 06 08:40:38 vlovich kernel: audit: type=1334 audit(1615048838.422:157): prog-id=30 op=LOAD
Mar 06 08:40:38 vlovich systemd[1]: Starting Daemon for power management...
Mar 06 08:40:38 vlovich ksmserver[911]: Qt: Session management error: networkIdsList argument is NULL
Mar 06 08:40:38 vlovich plasma_session[827]: org.kde.plasma.session: Starting autostart service  "/etc/xdg/autostart/polkit-kde-authentication-agent-1.desktop" ("/usr/lib/polkit-kde-authentication-agent-1")
Mar 06 08:40:38 vlovich kcminit_startup[844]: Initializing  "kded_touchpad" :  "kcminit_touchpad"
Mar 06 08:40:38 vlovich kcminit_startup[844]: kcm_touchpad: Using X11 backend
Mar 06 08:40:38 vlovich plasma_session[827]: org.kde.plasma.session: Starting autostart service  "/etc/xdg/autostart/kaccess.desktop" ("/usr/bin/kaccess")
Mar 06 08:40:38 vlovich plasma_session[827]: org.kde.plasma.session: Starting autostart service  "/etc/xdg/autostart/baloo_file.desktop" ("/usr/bin/baloo_file")
Mar 06 08:40:38 vlovich kcminit_startup[844]: Initializing  "kcm_kgamma" :  "kcminit_kgamma"
Mar 06 08:40:38 vlovich kwin_x11[856]: kwin_core: XCB error: 10 (BadAccess), sequence: 826, resource id: 2478, major code: 142 (Composite), minor code: 2 (RedirectSubwindows)
Mar 06 08:40:38 vlovich plasma_session[827]: org.kde.plasma.session: Starting autostart service  "/etc/xdg/autostart/xembedsniproxy.desktop" ("/usr/bin/xembedsniproxy")
Mar 06 08:40:38 vlovich plasma_session[827]: org.kde.plasma.session: Starting autostart service  "/etc/xdg/autostart/pam_kwallet_init.desktop" ("/usr/lib/pam_kwallet_init")
Mar 06 08:40:38 vlovich plasma_session[827]: org.kde.plasma.session: Starting autostart service  "/etc/xdg/autostart/org.kde.plasmashell.desktop" ("/usr/bin/plasmashell")
Mar 06 08:40:38 vlovich kaccess[940]: Xlib XKB extension major= 1  minor= 0
Mar 06 08:40:38 vlovich upowerd[924]: did not recognise USB path /sys/devices/platform/USBC000:00/power_supply/ucsi-source-psy-USBC000:001, please report
Mar 06 08:40:38 vlovich upowerd[924]: did not recognise USB path /sys/devices/platform/USBC000:00/power_supply/ucsi-source-psy-USBC000:002, please report
Mar 06 08:40:38 vlovich upowerd[924]: did not recognise USB path /sys/devices/platform/USBC000:00/power_supply/ucsi-source-psy-USBC000:003, please report
Mar 06 08:40:38 vlovich plasma_session[827]: org.kde.plasma.session: Starting autostart service  "/etc/xdg/autostart/org.kde.discover.notifier.desktop" ("/usr/lib/DiscoverNotifier")
Mar 06 08:40:38 vlovich plasma_session[827]: org.kde.plasma.session: Starting autostart service  "/etc/xdg/autostart/pulseaudio.desktop" ("/usr/bin/start-pulseaudio-x11")
Mar 06 08:40:38 vlovich plasma_session[827]: org.kde.plasma.session: Starting autostart service  "/etc/xdg/autostart/gmenudbusmenuproxy.desktop" ("/usr/bin/gmenudbusmenuproxy")
Mar 06 08:40:38 vlovich systemd[799]: Starting Sound Service...
Mar 06 08:40:38 vlovich kwin_x11[856]: kf.config.core: "\"fsrestore1\" - conversion of \"961,961,0,0\" to QRect failed"
Mar 06 08:40:38 vlovich kwin_x11[856]: kf.config.core: "\"fsrestore2\" - conversion of \"961,961,0,0\" to QRect failed"
Mar 06 08:40:38 vlovich kwin_x11[856]: kf.config.core: "\"fsrestore3\" - conversion of \"0,0,0,0\" to QRect failed"
Mar 06 08:40:38 vlovich kwin_x11[856]: kf.config.core: "\"fsrestore4\" - conversion of \"961,961,0,0\" to QRect failed"
Mar 06 08:40:38 vlovich kwin_x11[856]: kf.config.core: "\"fsrestore5\" - conversion of \"0,0,0,0\" to QRect failed"
Mar 06 08:40:38 vlovich kwin_x11[856]: kf.config.core: "\"fsrestore6\" - conversion of \"0,0,0,0\" to QRect failed"
Mar 06 08:40:38 vlovich systemd[799]: Started /usr/lib/DiscoverNotifier.
Mar 06 08:40:38 vlovich kwin_x11[856]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 878, resource id: 10485765, major code: 18 (ChangeProperty), minor code: 0
Mar 06 08:40:38 vlovich dbus-daemon[593]: [system] Activating via systemd: service name='org.freedesktop.RealtimeKit1' unit='rtkit-daemon.service' requested by ':1.30' (uid=1000 pid=970 comm="/usr/bin/pulseaudio --daemonize=no --log-target=jo")
Mar 06 08:40:38 vlovich systemd[1]: Starting RealtimeKit Scheduling Policy Service...
Mar 06 08:40:38 vlovich dbus-daemon[593]: [system] Successfully activated service 'org.freedesktop.RealtimeKit1'
Mar 06 08:40:38 vlovich systemd[1]: Started RealtimeKit Scheduling Policy Service.
Mar 06 08:40:38 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=rtkit-daemon comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:38 vlovich rtkit-daemon[985]: Successfully called chroot.
Mar 06 08:40:38 vlovich rtkit-daemon[985]: Successfully dropped privileges.
Mar 06 08:40:38 vlovich rtkit-daemon[985]: Successfully limited resources.
Mar 06 08:40:38 vlovich rtkit-daemon[985]: Canary thread running.
Mar 06 08:40:38 vlovich rtkit-daemon[985]: Watchdog thread running.
Mar 06 08:40:38 vlovich rtkit-daemon[985]: Running.
Mar 06 08:40:38 vlovich kernel: audit: type=1130 audit(1615048838.822:158): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=rtkit-daemon comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:38 vlovich rtkit-daemon[985]: Successfully made thread 970 of process 970 owned by '1000' high priority at nice level -11.
Mar 06 08:40:38 vlovich rtkit-daemon[985]: Supervising 1 threads of 1 processes of 1 users.
Mar 06 08:40:38 vlovich polkit-kde-authentication-agent-1[938]: New PolkitAgentListener  0x564af7c3bc00
Mar 06 08:40:38 vlovich polkit-kde-authentication-agent-1[938]: Adding new listener  PolkitQt1::Agent::Listener(0x564af7c62cc0) for  0x564af7c3bc00
Mar 06 08:40:38 vlovich polkit-kde-authentication-agent-1[938]: Listener online
Mar 06 08:40:38 vlovich polkitd[670]: Registered Authentication Agent for unix-session:2 (system bus name :1.32 [/usr/lib/polkit-kde-authentication-agent-1], object path /org/kde/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8)
Mar 06 08:40:38 vlovich polkit-kde-authentication-agent-1[938]: Authentication agent result: true
Mar 06 08:40:38 vlovich kaccess[940]: X server XKB extension major= 1  minor= 0
Mar 06 08:40:38 vlovich kwin_x11[856]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 1043, resource id: 44040192, major code: 18 (ChangeProperty), minor code: 0
Mar 06 08:40:38 vlovich kwin_x11[856]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 1047, resource id: 44040193, major code: 18 (ChangeProperty), minor code: 0
Mar 06 08:40:38 vlovich dbus-daemon[593]: [system] Successfully activated service 'org.freedesktop.UPower'
Mar 06 08:40:38 vlovich systemd[1]: Started Daemon for power management.
Mar 06 08:40:38 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=upower comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:38 vlovich kernel: audit: type=1130 audit(1615048838.982:159): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=upower comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:39 vlovich DiscoverNotifier[971]: couldn't load "/usr/lib/qt/plugins/discover-notifier/DiscoverPackageKitNotifier.so" because "Cannot load library /usr/lib/qt/plugins/discover-notifier/DiscoverPackageKitNotifier.so: (libpackagekitqt5.so.1: cannot open shared object file: No such file or directory)"
Mar 06 08:40:39 vlovich DiscoverNotifier[971]: couldn't load "/usr/lib/qt/plugins/discover-notifier/FlatpakNotifier.so" because "Cannot load library /usr/lib/qt/plugins/discover-notifier/FlatpakNotifier.so: (libflatpak.so.0: cannot open shared object file: No such file or directory)"
Mar 06 08:40:39 vlovich DiscoverNotifier[971]: couldn't find any notifier backend ("/usr/lib/qt/plugins", "/usr/lib")
Mar 06 08:40:39 vlovich systemd[799]: Started KWalletManager - KDE Wallet Management Tool.
Mar 06 08:40:39 vlovich kwin_x11[856]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 1091, resource id: 23068679, major code: 18 (ChangeProperty), minor code: 0
Mar 06 08:40:39 vlovich DiscoverNotifier[960]: couldn't load "/usr/lib/qt/plugins/discover-notifier/DiscoverPackageKitNotifier.so" because "Cannot load library /usr/lib/qt/plugins/discover-notifier/DiscoverPackageKitNotifier.so: (libpackagekitqt5.so.1: cannot open shared object file: No such file or directory)"
Mar 06 08:40:39 vlovich kwin_x11[856]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 1095, resource id: 23068680, major code: 18 (ChangeProperty), minor code: 0
Mar 06 08:40:39 vlovich DiscoverNotifier[960]: couldn't load "/usr/lib/qt/plugins/discover-notifier/FlatpakNotifier.so" because "Cannot load library /usr/lib/qt/plugins/discover-notifier/FlatpakNotifier.so: (libflatpak.so.0: cannot open shared object file: No such file or directory)"
Mar 06 08:40:39 vlovich DiscoverNotifier[960]: couldn't find any notifier backend ("/usr/lib/qt/plugins", "/usr/lib")
Mar 06 08:40:39 vlovich DiscoverNotifier[971]: kf.notifications: env says KDE is running but SNI unavailable -- check KDE_FULL_SESSION and XDG_CURRENT_DESKTOP
Mar 06 08:40:39 vlovich NetworkManager[594]: <info>  [1615048839.1998] agent-manager: agent[31e56c33f2c170d2,:1.25/org.kde.plasma.networkmanagement/1000]: agent registered
Mar 06 08:40:39 vlovich rtkit-daemon[985]: Supervising 1 threads of 1 processes of 1 users.
Mar 06 08:40:39 vlovich rtkit-daemon[985]: Successfully made thread 1020 of process 970 owned by '1000' RT at priority 5.
Mar 06 08:40:39 vlovich rtkit-daemon[985]: Supervising 2 threads of 1 processes of 1 users.
Mar 06 08:40:39 vlovich rtkit-daemon[985]: Supervising 2 threads of 1 processes of 1 users.
Mar 06 08:40:39 vlovich rtkit-daemon[985]: Successfully made thread 1021 of process 970 owned by '1000' RT at priority 5.
Mar 06 08:40:39 vlovich rtkit-daemon[985]: Supervising 3 threads of 1 processes of 1 users.
Mar 06 08:40:39 vlovich kded5[852]: kcm_touchpad: Using X11 backend
Mar 06 08:40:39 vlovich dbus-daemon[593]: [system] Activating via systemd: service name='org.bluez' unit='dbus-org.bluez.service' requested by ':1.37' (uid=1000 pid=970 comm="/usr/bin/pulseaudio --daemonize=no --log-target=jo")
Mar 06 08:40:39 vlovich dbus-daemon[593]: [system] Activation via systemd failed for unit 'dbus-org.bluez.service': Unit dbus-org.bluez.service not found.
Mar 06 08:40:39 vlovich systemd[799]: Started Konsole - Terminal.
Mar 06 08:40:39 vlovich kwin_x11[856]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 1201, resource id: 23068681, major code: 18 (ChangeProperty), minor code: 0
Mar 06 08:40:39 vlovich kded5[852]: QDBusConnection: name 'org.kde.kglobalaccel' had owner '' but we thought it was ':1.12'
Mar 06 08:40:39 vlovich kded5[852]: Delayed initialization.
Mar 06 08:40:39 vlovich kded5[852]: QDBusConnection: name 'org.freedesktop.UDisks2' had owner '' but we thought it was ':1.26'
Mar 06 08:40:39 vlovich kded5[852]: Reloading the khotkeys configuration
Mar 06 08:40:39 vlovich systemd[799]: Started Sound Service.
Mar 06 08:40:39 vlovich kded5[852]: Version 2 File!
Mar 06 08:40:39 vlovich pulseaudio[970]: GetManagedObjects() failed: org.freedesktop.systemd1.NoSuchUnit: Unit dbus-org.bluez.service not found.
Mar 06 08:40:39 vlovich kwin_x11[856]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 1211, resource id: 23068682, major code: 18 (ChangeProperty), minor code: 0
Mar 06 08:40:39 vlovich kded5[852]: true
Mar 06 08:40:39 vlovich kded5[852]: Imported file "/usr/share/khotkeys/defaults.khotkeys"
Mar 06 08:40:39 vlovich kded5[852]: Imported file "/usr/share/khotkeys/kde32b1.khotkeys"
Mar 06 08:40:39 vlovich kded5[852]: Imported file "/usr/share/khotkeys/konqueror_gestures_kde321.khotkeys"
Mar 06 08:40:39 vlovich kded5[852]: Imported file "/usr/share/khotkeys/konsole.khotkeys"
Mar 06 08:40:39 vlovich kded5[852]: 
Mar 06 08:40:39 vlovich dbus-daemon[593]: [system] Activating service name='org.kde.kded.smart' requested by ':1.25' (uid=1000 pid=852 comm="/usr/bin/kded5 ") (using servicehelper)
Mar 06 08:40:39 vlovich dbus-daemon[593]: [system] Successfully activated service 'org.kde.kded.smart'
Mar 06 08:40:39 vlovich dbus-daemon[593]: [system] Activating via systemd: service name='org.freedesktop.ModemManager1' unit='dbus-org.freedesktop.ModemManager1.service' requested by ':1.25' (uid=1000 pid=852 comm="/usr/bin/kded5 ")
Mar 06 08:40:39 vlovich dbus-daemon[593]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.ModemManager1.service': Unit dbus-org.freedesktop.ModemManager1.service not found.
Mar 06 08:40:39 vlovich dbus-daemon[593]: [system] Activating via systemd: service name='org.freedesktop.ModemManager1' unit='dbus-org.freedesktop.ModemManager1.service' requested by ':1.25' (uid=1000 pid=852 comm="/usr/bin/kded5 ")
Mar 06 08:40:39 vlovich dbus-daemon[593]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.ModemManager1.service': Unit dbus-org.freedesktop.ModemManager1.service not found.
Mar 06 08:40:39 vlovich kded5[852]: kf.modemmanagerqt: Failed enumerating MM objects: "org.freedesktop.systemd1.NoSuchUnit" 
                                               "Unit dbus-org.freedesktop.ModemManager1.service not found."
Mar 06 08:40:39 vlovich kded5[852]: Known activities: ("3bc6c685-63b3-4d68-b9c3-2e4c9687758b")
Mar 06 08:40:39 vlovich kded5[852]: bluedevil: Bluetooth operational changed false
Mar 06 08:40:39 vlovich dbus-daemon[815]: [session uid=1000 pid=815] Activating service name='org.kde.KScreen' requested by ':1.8' (uid=1000 pid=852 comm="/usr/bin/kded5 ")
Mar 06 08:40:39 vlovich kded5[852]: bluedevil: ObexManager operational changed false
Mar 06 08:40:39 vlovich dbus-daemon[593]: [system] Activating via systemd: service name='org.bluez' unit='dbus-org.bluez.service' requested by ':1.25' (uid=1000 pid=852 comm="/usr/bin/kded5 ")
Mar 06 08:40:39 vlovich dbus-daemon[815]: [session uid=1000 pid=815] Activating via systemd: service name='org.bluez.obex' unit='dbus-org.bluez.obex.service' requested by ':1.8' (uid=1000 pid=852 comm="/usr/bin/kded5 ")
Mar 06 08:40:39 vlovich kded5[852]: kf.bluezqt: PendingCall Error: "Unit dbus-org.bluez.service not found."
Mar 06 08:40:39 vlovich dbus-daemon[593]: [system] Activation via systemd failed for unit 'dbus-org.bluez.service': Unit dbus-org.bluez.service not found.
Mar 06 08:40:39 vlovich kded5[852]: Registering ":1.26/StatusNotifierItem" to system tray
Mar 06 08:40:39 vlovich systemd[799]: Starting Bluetooth OBEX service...
Mar 06 08:40:39 vlovich obexd[1047]: OBEX daemon 5.56
Mar 06 08:40:39 vlovich dbus-daemon[815]: [session uid=1000 pid=815] Successfully activated service 'org.bluez.obex'
Mar 06 08:40:39 vlovich systemd[799]: Started Bluetooth OBEX service.
Mar 06 08:40:39 vlovich dbus-daemon[815]: [session uid=1000 pid=815] Successfully activated service 'org.kde.KScreen'
Mar 06 08:40:39 vlovich kscreen_backend_launcher[1046]: kscreen.xrandr: Connected output 66 to CRTC 63
Mar 06 08:40:39 vlovich kscreen_backend_launcher[1046]: kscreen.xcb.helper: Detected XRandR 1.6
Mar 06 08:40:39 vlovich kscreen_backend_launcher[1046]: kscreen.xcb.helper: Event Base:  89
Mar 06 08:40:39 vlovich kscreen_backend_launcher[1046]: kscreen.xcb.helper: Event Error:  147
Mar 06 08:40:39 vlovich kded5[852]: kscreen.kded: PowerDevil SuspendSession action not available!
Mar 06 08:40:39 vlovich kscreen_backend_launcher[1046]: kscreen.xrandr: XRandR::setConfig
Mar 06 08:40:39 vlovich kscreen_backend_launcher[1046]: kscreen.xrandr: Requested screen size is QSize(3840, 2400)
Mar 06 08:40:39 vlovich kscreen_backend_launcher[1046]: kscreen.xrandr: Needed CRTCs:  1
Mar 06 08:40:39 vlovich kscreen_backend_launcher[1046]: kscreen.xrandr: Actions to perform: 
                                                                           Primary Output: false
Mar 06 08:40:39 vlovich kscreen_backend_launcher[1046]: kscreen.xrandr:         Change Screen Size: false
Mar 06 08:40:39 vlovich kscreen_backend_launcher[1046]: kscreen.xrandr:         Disable outputs: false
Mar 06 08:40:39 vlovich kscreen_backend_launcher[1046]: kscreen.xrandr:         Change outputs: true
Mar 06 08:40:39 vlovich kscreen_backend_launcher[1046]: kscreen.xrandr:                  (66)
Mar 06 08:40:39 vlovich kscreen_backend_launcher[1046]: kscreen.xrandr:         Enable outputs: false
Mar 06 08:40:39 vlovich kscreen_backend_launcher[1046]: kscreen.xrandr: RRSetCrtcConfig (change output) 
                                                                           Output: 66 ( "eDP-1" ) 
                                                                           CRTC: 63 
                                                                           Pos: QPoint(0,0) 
                                                                           Mode: 71 KScreen::Mode(Id: "71" , Size: QSize(3840, 2400) @ 59.9939 ) 
                                                                           Rotation: KScreen::Output::None
Mar 06 08:40:39 vlovich kscreen_backend_launcher[1046]: kscreen.xrandr:         Result:  0
Mar 06 08:40:39 vlovich kscreen_backend_launcher[1046]: kscreen.xrandr: XRandROutput 66 update 
                                                                           m_connected: 0 
                                                                           m_crtc XRandRCrtc(0x561550a0e770) 
                                                                           CRTC: 63 
                                                                           MODE: 71 
                                                                           Connection: 0 
                                                                           Primary: true
Mar 06 08:40:39 vlovich kscreen_backend_launcher[1046]: kscreen.xrandr: XRandR::setConfig done!
Mar 06 08:40:39 vlovich kwin_x11[856]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 1359, resource id: 23068683, major code: 18 (ChangeProperty), minor code: 0
Mar 06 08:40:39 vlovich systemd[799]: Started Konsole - Terminal.
Mar 06 08:40:39 vlovich kwin_x11[856]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 1363, resource id: 23068684, major code: 18 (ChangeProperty), minor code: 0
Mar 06 08:40:39 vlovich plasmashell[948]: kf.plasma.quick: Applet preload policy set to 1
Mar 06 08:40:39 vlovich dbus-daemon[815]: [session uid=1000 pid=815] Activating service name='org.kde.ksystemstats' requested by ':1.23' (uid=1000 pid=948 comm="/usr/bin/plasmashell ")
Mar 06 08:40:39 vlovich systemd[799]: app-org.kde.kwalletmanager5-1d2fbaaffb1f4c089cbaf5cf6e8c576b.scope: Succeeded.
Mar 06 08:40:39 vlovich kwin_x11[856]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 1409, resource id: 23068685, major code: 18 (ChangeProperty), minor code: 0
Mar 06 08:40:40 vlovich kwalletmanager5[1003]: Connecting to deprecated signal QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
Mar 06 08:40:40 vlovich kded5[852]: Registering ":1.35/StatusNotifierItem" to system tray
Mar 06 08:40:40 vlovich systemd[799]: Started Konsole - Terminal.
Mar 06 08:40:40 vlovich kwin_x11[856]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 1500, resource id: 23068686, major code: 18 (ChangeProperty), minor code: 0
Mar 06 08:40:40 vlovich kded5[852]: bluedevil: ObexManager operational changed true
Mar 06 08:40:40 vlovich kded5[852]: bluedevil: ObexAgent registered
Mar 06 08:40:40 vlovich kwin_x11[856]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 1504, resource id: 23068687, major code: 18 (ChangeProperty), minor code: 0
Mar 06 08:40:40 vlovich plasmashell[948]: file:///usr/share/plasma/plasmoids/org.kde.plasma.systemmonitor/contents/ui/main.qml:54: TypeError: Cannot read property 'length' of undefined
Mar 06 08:40:40 vlovich plasmashell[948]: file:///usr/share/plasma/plasmoids/org.kde.plasma.systemmonitor/contents/ui/main.qml:54: TypeError: Cannot read property 'length' of undefined
Mar 06 08:40:40 vlovich plasmashell[948]: file:///usr/share/plasma/plasmoids/org.kde.plasma.systemmonitor/contents/ui/main.qml:54: TypeError: Cannot read property 'length' of undefined
Mar 06 08:40:40 vlovich plasmashell[948]: file:///usr/share/plasma/plasmoids/org.kde.plasma.systemmonitor/contents/ui/main.qml:54: TypeError: Cannot read property 'length' of undefined
Mar 06 08:40:40 vlovich wpa_supplicant[732]: wlp0s20f3: CTRL-EVENT-REGDOM-CHANGE init=DRIVER type=COUNTRY alpha2=US
Mar 06 08:40:40 vlovich kwin_x11[856]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 1623, resource id: 23068688, major code: 18 (ChangeProperty), minor code: 0
Mar 06 08:40:40 vlovich systemd[799]: Started Dropbox.
Mar 06 08:40:40 vlovich NetworkManager[594]: <info>  [1615048840.4108] policy: auto-activating connection 'i_steal_pies' (af7dc588-6901-4fc4-9ce4-b24a224c4330)
Mar 06 08:40:40 vlovich NetworkManager[594]: <info>  [1615048840.4121] device (wlp0s20f3): Activation: starting connection 'i_steal_pies' (af7dc588-6901-4fc4-9ce4-b24a224c4330)
Mar 06 08:40:40 vlovich NetworkManager[594]: <info>  [1615048840.4125] device (wlp0s20f3): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Mar 06 08:40:40 vlovich NetworkManager[594]: <info>  [1615048840.4131] manager: NetworkManager state is now CONNECTING
Mar 06 08:40:40 vlovich NetworkManager[594]: <info>  [1615048840.4280] device (wlp0s20f3): set-hw-addr: reset MAC address to C0:3C:59:11:EB:BC (preserve)
Mar 06 08:40:40 vlovich NetworkManager[594]: <info>  [1615048840.6315] device (wlp0s20f3): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Mar 06 08:40:40 vlovich NetworkManager[594]: <info>  [1615048840.6326] device (wlp0s20f3): Activation: (wifi) access point 'i_steal_pies' has security, but secrets are required.
Mar 06 08:40:40 vlovich NetworkManager[594]: <info>  [1615048840.6327] device (wlp0s20f3): state change: config -> need-auth (reason 'none', sys-iface-state: 'managed')
Mar 06 08:40:40 vlovich NetworkManager[594]: <info>  [1615048840.6730] device (wlp0s20f3): supplicant interface state: inactive -> interface_disabled
Mar 06 08:40:40 vlovich NetworkManager[594]: <info>  [1615048840.6732] device (p2p-dev-wlp0s20f3): supplicant management interface state: inactive -> interface_disabled
Mar 06 08:40:40 vlovich NetworkManager[594]: <info>  [1615048840.7019] device (wlp0s20f3): supplicant interface state: interface_disabled -> inactive
Mar 06 08:40:40 vlovich NetworkManager[594]: <info>  [1615048840.7020] device (p2p-dev-wlp0s20f3): supplicant management interface state: interface_disabled -> inactive
Mar 06 08:40:40 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:40 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:40 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:40 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:40 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:40 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:40 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:40 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:40 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:40 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:40 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:40 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:40 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:40 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:40 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:40 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:40 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:40 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:40 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:40 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:40 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:40 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:40 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:40 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:40 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:40 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:40 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:40 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:40 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:40 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:40 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:40 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:40 vlovich kded5[852]: plasma-nm: Unhandled active connection state change:  1
Mar 06 08:40:40 vlovich kded5[852]: plasma-nm: virtual NMVariantMapMap SecretAgent::GetSecrets(const NMVariantMapMap&, const QDBusObjectPath&, const QString&, const QStringList&, uint)
Mar 06 08:40:40 vlovich kded5[852]: plasma-nm: Path: "/org/freedesktop/NetworkManager/Settings/2"
Mar 06 08:40:40 vlovich kded5[852]: plasma-nm: Setting name: "802-11-wireless-security"
Mar 06 08:40:40 vlovich kded5[852]: plasma-nm: Hints: ()
Mar 06 08:40:40 vlovich kded5[852]: plasma-nm: Flags: 1
Mar 06 08:40:40 vlovich kded5[852]: plasma-nm: bool SecretAgent::processGetSecrets(SecretsRequest&) const Waiting for the wallet to open
Mar 06 08:40:40 vlovich NetworkManager[594]: <info>  [1615048840.9266] device (wlp0s20f3): state change: need-auth -> prepare (reason 'none', sys-iface-state: 'managed')
Mar 06 08:40:40 vlovich NetworkManager[594]: <info>  [1615048840.9272] device (wlp0s20f3): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Mar 06 08:40:40 vlovich NetworkManager[594]: <info>  [1615048840.9276] device (wlp0s20f3): Activation: (wifi) connection 'i_steal_pies' has security, and secrets exist.  No new secrets needed.
Mar 06 08:40:40 vlovich NetworkManager[594]: <info>  [1615048840.9277] Config: added 'ssid' value 'i_steal_pies'
Mar 06 08:40:40 vlovich NetworkManager[594]: <info>  [1615048840.9277] Config: added 'scan_ssid' value '1'
Mar 06 08:40:40 vlovich NetworkManager[594]: <info>  [1615048840.9277] Config: added 'bgscan' value 'simple:30:-70:86400'
Mar 06 08:40:40 vlovich NetworkManager[594]: <info>  [1615048840.9278] Config: added 'key_mgmt' value 'WPA-PSK WPA-PSK-SHA256 FT-PSK'
Mar 06 08:40:40 vlovich NetworkManager[594]: <info>  [1615048840.9278] Config: added 'auth_alg' value 'OPEN'
Mar 06 08:40:40 vlovich NetworkManager[594]: <info>  [1615048840.9278] Config: added 'psk' value '<hidden>'
Mar 06 08:40:40 vlovich NetworkManager[594]: <info>  [1615048840.9459] device (wlp0s20f3): supplicant interface state: inactive -> scanning
Mar 06 08:40:40 vlovich NetworkManager[594]: <info>  [1615048840.9460] device (p2p-dev-wlp0s20f3): supplicant management interface state: inactive -> scanning
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:41 vlovich plasmashell[948]: file:///usr/share/ksysguard/sensorfaces/org.kde.ksysguard.linechart/contents/ui/LineChart.qml:72:9: Unable to assign [undefined] to bool
Mar 06 08:40:41 vlovich plasmashell[948]: file:///usr/share/ksysguard/sensorfaces/org.kde.ksysguard.linechart/contents/ui/LineChart.qml:72:9: Unable to assign [undefined] to bool
Mar 06 08:40:41 vlovich plasmashell[948]: file:///usr/share/ksysguard/sensorfaces/org.kde.ksysguard.linechart/contents/ui/LineChart.qml:72:9: Unable to assign [undefined] to bool
Mar 06 08:40:41 vlovich plasmashell[948]: qt.svg: <input>:406:376: Could not add child element to parent element because the types are incorrect.
Mar 06 08:40:41 vlovich plasmashell[948]: qt.svg: <input>:407:130: Could not add child element to parent element because the types are incorrect.
Mar 06 08:40:41 vlovich plasmashell[948]: qt.svg: <input>:408:130: Could not add child element to parent element because the types are incorrect.
Mar 06 08:40:41 vlovich plasmashell[948]: qt.svg: <input>:408:393: Could not add child element to parent element because the types are incorrect.
Mar 06 08:40:41 vlovich plasmashell[948]: qt.svg: <input>:409:130: Could not add child element to parent element because the types are incorrect.
Mar 06 08:40:41 vlovich plasmashell[948]: qt.svg: <input>:410:129: Could not add child element to parent element because the types are incorrect.
Mar 06 08:40:41 vlovich plasmashell[948]: qt.svg: <input>:411:129: Could not add child element to parent element because the types are incorrect.
Mar 06 08:40:41 vlovich plasmashell[948]: qt.svg: <input>:412:129: Could not add child element to parent element because the types are incorrect.
Mar 06 08:40:41 vlovich plasmashell[948]: qt.svg: <input>:413:129: Could not add child element to parent element because the types are incorrect.
Mar 06 08:40:41 vlovich plasmashell[948]: qt.svg: <input>:413:379: Could not add child element to parent element because the types are incorrect.
Mar 06 08:40:41 vlovich plasmashell[948]: qt.svg: <input>:413:631: Could not add child element to parent element because the types are incorrect.
Mar 06 08:40:41 vlovich plasmashell[948]: trying to show an empty dialog
Mar 06 08:40:41 vlovich plasmashell[948]: file:///usr/share/plasma/shells/org.kde.plasma.desktop/contents/views/Desktop.qml:146:19: QML Loader: Binding loop detected for property "height"
Mar 06 08:40:41 vlovich plasmashell[948]: file:///usr/share/plasma/shells/org.kde.plasma.desktop/contents/views/Desktop.qml:146:19: QML Loader: Binding loop detected for property "height"
Mar 06 08:40:42 vlovich ksystemstats[1063]: Found unsupported GPU: /sys/devices/pci0000:00/0000:00:02.0
Mar 06 08:40:42 vlovich audit[594]: USYS_CONFIG pid=594 uid=0 auid=4294967295 ses=4294967295 msg='op=statistics arg="refresh-rate-ms" pid=1063 uid=1000 result=success exe="/usr/bin/NetworkManager" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:42 vlovich NetworkManager[594]: <info>  [1615048842.2734] audit: op="statistics" arg="refresh-rate-ms" pid=1063 uid=1000 result="success"
Mar 06 08:40:42 vlovich kernel: audit: type=1111 audit(1615048842.269:160): pid=594 uid=0 auid=4294967295 ses=4294967295 msg='op=statistics arg="refresh-rate-ms" pid=1063 uid=1000 result=success exe="/usr/bin/NetworkManager" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:42 vlovich dbus-daemon[815]: [session uid=1000 pid=815] Successfully activated service 'org.kde.ksystemstats'
Mar 06 08:40:42 vlovich systemd[799]: Started System Settings - System Settings.
Mar 06 08:40:42 vlovich kwin_x11[856]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 3372, resource id: 23068690, major code: 18 (ChangeProperty), minor code: 0
Mar 06 08:40:42 vlovich plasmashell[948]: Both point size and pixel size set. Using pixel size.
Mar 06 08:40:42 vlovich plasmashell[948]: Both point size and pixel size set. Using pixel size.
Mar 06 08:40:42 vlovich kwin_x11[856]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 3386, resource id: 23068691, major code: 18 (ChangeProperty), minor code: 0
Mar 06 08:40:42 vlovich plasmashell[948]: Both point size and pixel size set. Using pixel size.
Mar 06 08:40:42 vlovich plasmashell[948]: file:///usr/share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/ui/DigitalClock.qml:534:9: QML Label: Binding loop detected for property "height"
Mar 06 08:40:42 vlovich plasmashell[948]: file:///usr/share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/ui/DigitalClock.qml:493:13: QML Label: Binding loop detected for property "height"
Mar 06 08:40:42 vlovich plasmashell[948]: trying to show an empty dialog
Mar 06 08:40:42 vlovich plasma_session[827]: org.kde.plasma.session: Starting autostart service  "/home/vlovich/.config/autostart/dropbox.desktop" ("/usr/bin/dropbox")
Mar 06 08:40:42 vlovich plasma_session[827]: org.kde.plasma.session: Starting autostart service  "/etc/xdg/autostart/blueman.desktop" ("/usr/bin/blueman-applet")
Mar 06 08:40:42 vlovich plasma_session[827]: org.kde.plasma.session: Starting autostart service  "/etc/xdg/autostart/pkcs11-register.desktop" ("/usr/bin/pkcs11-register")
Mar 06 08:40:42 vlovich plasma_session[827]: org.kde.plasma.session: Starting autostart service  "/etc/xdg/autostart/powerdevil.desktop" ("/usr/lib/org_kde_powerdevil")
Mar 06 08:40:42 vlovich plasma_session[827]: org.kde.plasma.session: Starting autostart service  "/etc/xdg/autostart/knemo.desktop" ("/usr/bin/knemo")
Mar 06 08:40:42 vlovich systemd[1]: Started PC/SC Smart Card Daemon.
Mar 06 08:40:42 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=pcscd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:42 vlovich kernel: audit: type=1130 audit(1615048842.729:161): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=pcscd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:42 vlovich org_kde_powerdevil[1537]: org.kde.powerdevil: Xrandr not supported, trying ddc, helper
Mar 06 08:40:42 vlovich dbus-daemon[593]: [system] Activating service name='org.kde.powerdevil.discretegpuhelper' requested by ':1.44' (uid=1000 pid=1537 comm="/usr/lib/org_kde_powerdevil ") (using servicehelper)
Mar 06 08:40:43 vlovich dbus-daemon[593]: [system] Successfully activated service 'org.kde.powerdevil.discretegpuhelper'
Mar 06 08:40:43 vlovich dbus-daemon[593]: [system] Activating service name='org.kde.powerdevil.chargethresholdhelper' requested by ':1.44' (uid=1000 pid=1537 comm="/usr/lib/org_kde_powerdevil ") (using servicehelper)
Mar 06 08:40:43 vlovich knemo[1540]: QCommandLineParser: already having an option named "h"
Mar 06 08:40:43 vlovich knemo[1540]: QCommandLineParser: already having an option named "help-all"
Mar 06 08:40:43 vlovich knemo[1540]: QCommandLineParser: already having an option named "v"
Mar 06 08:40:43 vlovich dbus-daemon[593]: [system] Successfully activated service 'org.kde.powerdevil.chargethresholdhelper'
Mar 06 08:40:43 vlovich dbus-daemon[593]: [system] Activating service name='org.kde.powerdevil.backlighthelper' requested by ':1.44' (uid=1000 pid=1537 comm="/usr/lib/org_kde_powerdevil ") (using servicehelper)
Mar 06 08:40:43 vlovich dbus-daemon[593]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
Mar 06 08:40:43 vlovich org_kde_powerdevil[1537]: Warning from helper: Failed to open "/sys/class/power_supply/BAT0/charge_start_threshold" for reading
Mar 06 08:40:43 vlovich org_kde_powerdevil[1537]: Warning from helper: Failed to open "/sys/class/power_supply/BAT0/charge_stop_threshold" for reading
Mar 06 08:40:43 vlovich org_kde_powerdevil[1537]: org.kde.powerdevil: org.kde.powerdevil.chargethresholdhelper.getthreshold failed "Charge thresholds not supported"
Mar 06 08:40:43 vlovich plasmashell[948]: file:///usr/share/plasma/plasmoids/org.kde.panel/contents/ui/main.qml:30:1: QML DropArea (parent or ancestor of QQuickLayoutAttached): Binding loop detected for property "minimumWidth"
Mar 06 08:40:43 vlovich plasmashell[948]: file:///usr/share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/ui/DigitalClock.qml:493:13: QML Label: Binding loop detected for property "height"
Mar 06 08:40:43 vlovich plasmashell[948]: file:///usr/share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/ui/DigitalClock.qml:534:9: QML Label: Binding loop detected for property "height"
Mar 06 08:40:43 vlovich plasmashell[948]: file:///usr/share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/ui/DigitalClock.qml:554:5: QML Label: Binding loop detected for property "height"
Mar 06 08:40:43 vlovich plasmashell[948]: trying to show an empty dialog
Mar 06 08:40:43 vlovich plasmashell[948]: Plasma Shell startup completed
Mar 06 08:40:43 vlovich plasmashell[948]: kf.quickcharts.datasource: ModelSource: Invalid column 1
Mar 06 08:40:43 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:43 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:43 vlovich kwin_x11[856]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 3803, resource id: 4194349, major code: 18 (ChangeProperty), minor code: 0
Mar 06 08:40:43 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:43 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:43 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:43 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:43 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:43 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:43 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:43 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:43 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:43 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:43 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:43 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:43 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:43 vlovich plasmashell[948]: Cyclic dependency detected between "file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/global/Globals.qml" and "file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/NotificationHeader.qml"
Mar 06 08:40:43 vlovich org_kde_powerdevil[1537]: org.kde.powerdevil: Handle button events action could not check for screen configuration
Mar 06 08:40:43 vlovich org_kde_powerdevil[1537]: Warning from helper: Failed to open "/sys/class/power_supply/BAT0/charge_start_threshold" for reading
Mar 06 08:40:43 vlovich org_kde_powerdevil[1537]: Warning from helper: Failed to open "/sys/class/power_supply/BAT0/charge_stop_threshold" for reading
Mar 06 08:40:43 vlovich org_kde_powerdevil[1537]: org.kde.powerdevil: org.kde.powerdevil.chargethresholdhelper.getthreshold failed "Charge thresholds not supported"
Mar 06 08:40:43 vlovich org_kde_powerdevil[1537]: org.kde.powerdevil: Handle button events action could not check for screen configuration
Mar 06 08:40:43 vlovich org_kde_powerdevil[1537]: Warning from helper: Failed to open "/sys/class/power_supply/BAT0/charge_start_threshold" for reading
Mar 06 08:40:43 vlovich org_kde_powerdevil[1537]: Warning from helper: Failed to open "/sys/class/power_supply/BAT0/charge_stop_threshold" for reading
Mar 06 08:40:43 vlovich org_kde_powerdevil[1537]: org.kde.powerdevil: org.kde.powerdevil.chargethresholdhelper.getthreshold failed "Charge thresholds not supported"
Mar 06 08:40:43 vlovich systemsettings5[1527]: file:///usr/share/kpackage/genericqml/org.kde.systemsettings.sidebar/contents/ui/SubCategoryPage.qml:157:9: QML Connections: Implicitly defined onFoo properties in Connections are deprecated. Use this syntax instead: function onFoo(<arguments>) { ... }
Mar 06 08:40:43 vlovich systemsettings5[1527]: file:///usr/share/kpackage/genericqml/org.kde.systemsettings.sidebar/contents/ui/SubCategoryPage.qml:147:9: QML Connections: Implicitly defined onFoo properties in Connections are deprecated. Use this syntax instead: function onFoo(<arguments>) { ... }
Mar 06 08:40:43 vlovich systemsettings5[1527]: file:///usr/share/kpackage/genericqml/org.kde.systemsettings.sidebar/contents/ui/introPage.qml:109:27: QML IntroIcon (parent or ancestor of QQuickLayoutAttached): Binding loop detected for property "minimumHeight"
Mar 06 08:40:43 vlovich kded5[852]: Registering "org.kde.StatusNotifierHost-948" as system tray
Mar 06 08:40:44 vlovich wpa_supplicant[732]: wlp0s20f3: CTRL-EVENT-REGDOM-CHANGE init=DRIVER type=COUNTRY alpha2=US
Mar 06 08:40:44 vlovich wpa_supplicant[732]: wlp0s20f3: SME: Trying to authenticate with 70:3a:cb:26:d0:b5 (SSID='i_steal_pies' freq=5745 MHz)
Mar 06 08:40:44 vlovich kernel: wlp0s20f3: authenticate with 70:3a:cb:26:d0:b5
Mar 06 08:40:44 vlovich kernel: wlp0s20f3: send auth to 70:3a:cb:26:d0:b5 (try 1/3)
Mar 06 08:40:44 vlovich NetworkManager[594]: <info>  [1615048844.0513] device (wlp0s20f3): supplicant interface state: scanning -> authenticating
Mar 06 08:40:44 vlovich NetworkManager[594]: <info>  [1615048844.0513] device (p2p-dev-wlp0s20f3): supplicant management interface state: scanning -> authenticating
Mar 06 08:40:44 vlovich wpa_supplicant[732]: wlp0s20f3: Trying to associate with 70:3a:cb:26:d0:b5 (SSID='i_steal_pies' freq=5745 MHz)
Mar 06 08:40:44 vlovich kernel: wlp0s20f3: authenticated
Mar 06 08:40:44 vlovich kernel: wlp0s20f3: associate with 70:3a:cb:26:d0:b5 (try 1/3)
Mar 06 08:40:44 vlovich NetworkManager[594]: <info>  [1615048844.0815] device (wlp0s20f3): supplicant interface state: authenticating -> associating
Mar 06 08:40:44 vlovich NetworkManager[594]: <info>  [1615048844.0816] device (p2p-dev-wlp0s20f3): supplicant management interface state: authenticating -> associating
Mar 06 08:40:44 vlovich kernel: wlp0s20f3: RX AssocResp from 70:3a:cb:26:d0:b5 (capab=0x1011 status=0 aid=1)
Mar 06 08:40:44 vlovich kernel: wlp0s20f3: associated
Mar 06 08:40:44 vlovich wpa_supplicant[732]: wlp0s20f3: Associated with 70:3a:cb:26:d0:b5
Mar 06 08:40:44 vlovich wpa_supplicant[732]: wlp0s20f3: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
Mar 06 08:40:44 vlovich NetworkManager[594]: <info>  [1615048844.1022] device (wlp0s20f3): supplicant interface state: associating -> associated
Mar 06 08:40:44 vlovich NetworkManager[594]: <info>  [1615048844.1023] device (p2p-dev-wlp0s20f3): supplicant management interface state: associating -> associated
Mar 06 08:40:44 vlovich NetworkManager[594]: <info>  [1615048844.1169] device (wlp0s20f3): supplicant interface state: associated -> 4way_handshake
Mar 06 08:40:44 vlovich NetworkManager[594]: <info>  [1615048844.1170] device (p2p-dev-wlp0s20f3): supplicant management interface state: associated -> 4way_handshake
Mar 06 08:40:44 vlovich wpa_supplicant[732]: wlp0s20f3: WPA: Key negotiation completed with 70:3a:cb:26:d0:b5 [PTK=CCMP GTK=CCMP]
Mar 06 08:40:44 vlovich wpa_supplicant[732]: wlp0s20f3: CTRL-EVENT-CONNECTED - Connection to 70:3a:cb:26:d0:b5 completed [id=0 id_str=]
Mar 06 08:40:44 vlovich kernel: IPv6: ADDRCONF(NETDEV_CHANGE): wlp0s20f3: link becomes ready
Mar 06 08:40:44 vlovich NetworkManager[594]: <info>  [1615048844.1494] device (wlp0s20f3): supplicant interface state: 4way_handshake -> completed
Mar 06 08:40:44 vlovich NetworkManager[594]: <info>  [1615048844.1495] device (wlp0s20f3): Activation: (wifi) Stage 2 of 5 (Device Configure) successful. Connected to wireless network "i_steal_pies"
Mar 06 08:40:44 vlovich NetworkManager[594]: <info>  [1615048844.1495] device (p2p-dev-wlp0s20f3): supplicant management interface state: 4way_handshake -> completed
Mar 06 08:40:44 vlovich NetworkManager[594]: <info>  [1615048844.1500] device (wlp0s20f3): state change: config -> ip-config (reason 'none', sys-iface-state: 'managed')
Mar 06 08:40:44 vlovich NetworkManager[594]: <info>  [1615048844.1506] dhcp4 (wlp0s20f3): activation: beginning transaction (timeout in 45 seconds)
Mar 06 08:40:44 vlovich kernel: wlp0s20f3: Limiting TX power to 30 (30 - 0) dBm as advertised by 70:3a:cb:26:d0:b5
Mar 06 08:40:44 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:44 vlovich plasmashell[948]: qt.core.qabstractitemmodel.checkindex: Index QModelIndex(-1,-1,0x0,QObject(0x0)) is not valid (expected valid)
Mar 06 08:40:44 vlovich dbus-daemon[815]: [session uid=1000 pid=815] Activating via systemd: service name='org.a11y.Bus' unit='at-spi-dbus-bus.service' requested by ':1.43' (uid=1000 pid=1533 comm="/usr/bin/python /usr/bin/blueman-applet ")
Mar 06 08:40:44 vlovich systemd[799]: Starting Accessibility services bus...
Mar 06 08:40:44 vlovich dbus-daemon[815]: [session uid=1000 pid=815] Successfully activated service 'org.a11y.Bus'
Mar 06 08:40:44 vlovich systemd[799]: Started Accessibility services bus.
Mar 06 08:40:44 vlovich plasmashell[948]: trying to show an empty dialog
Mar 06 08:40:44 vlovich plasmashell[948]: file:///usr/share/plasma/shells/org.kde.plasma.desktop/contents/views/Desktop.qml:146:19: QML Loader: Binding loop detected for property "height"
Mar 06 08:40:44 vlovich plasmashell[948]: file:///usr/share/plasma/shells/org.kde.plasma.desktop/contents/views/Desktop.qml:146:19: QML Loader: Binding loop detected for property "height"
Mar 06 08:40:44 vlovich dbus-daemon[593]: [system] Activating via systemd: service name='org.blueman.Mechanism' unit='blueman-mechanism.service' requested by ':1.56' (uid=1000 pid=1533 comm="/usr/bin/python /usr/bin/blueman-applet ")
Mar 06 08:40:44 vlovich systemd[1]: Starting Bluetooth management mechanism...
Mar 06 08:40:44 vlovich blueman-mechanism[1628]: Unable to init server: Could not connect: Connection refused
Mar 06 08:40:44 vlovich blueman-mechanism[1628]: Unable to init server: Could not connect: Connection refused
Mar 06 08:40:44 vlovich wpa_supplicant[732]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-72 noise=9999 txrate=26000
Mar 06 08:40:44 vlovich blueman-mechani[1628]: gtk_icon_theme_get_for_screen: assertion 'GDK_IS_SCREEN (screen)' failed
Mar 06 08:40:44 vlovich dbus-daemon[593]: [system] Successfully activated service 'org.blueman.Mechanism'
Mar 06 08:40:44 vlovich systemd[1]: Started Bluetooth management mechanism.
Mar 06 08:40:44 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=blueman-mechanism comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:44 vlovich kernel: audit: type=1130 audit(1615048844.592:162): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=blueman-mechanism comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:44 vlovich at-spi-bus-launcher[1618]: dbus-daemon[1618]: Activating service name='org.a11y.atspi.Registry' requested by ':1.0' (uid=1000 pid=1533 comm="/usr/bin/python /usr/bin/blueman-applet ")
Mar 06 08:40:44 vlovich dbus-daemon[593]: [system] Activating via systemd: service name='org.bluez' unit='dbus-org.bluez.service' requested by ':1.56' (uid=1000 pid=1533 comm="/usr/bin/python /usr/bin/blueman-applet ")
Mar 06 08:40:44 vlovich dbus-daemon[593]: [system] Activation via systemd failed for unit 'dbus-org.bluez.service': Unit dbus-org.bluez.service not found.
Mar 06 08:40:44 vlovich at-spi-bus-launcher[1618]: dbus-daemon[1618]: Successfully activated service 'org.a11y.atspi.Registry'
Mar 06 08:40:44 vlovich at-spi-bus-launcher[1638]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
Mar 06 08:40:44 vlovich plasmashell[948]: kf.i18n: "0 instead of 2 arguments to message {%1 — %2} supplied before conversion."
Mar 06 08:40:44 vlovich plasmashell[948]: Both point size and pixel size set. Using pixel size.
Mar 06 08:40:44 vlovich plasmashell[948]: Entry is not valid "kontact.desktop" QSharedPointer(0x557cbaeef0d0)
Mar 06 08:40:44 vlovich plasmashell[948]: Entry is not valid "ktp-contactlist.desktop" QSharedPointer(0x557cbaf17140)
Mar 06 08:40:44 vlovich plasmashell[948]: Entry is not valid "org.kde.kate.desktop" QSharedPointer(0x557cbaf172b0)
Mar 06 08:40:44 vlovich plasmashell[948]: Entry is not valid "kontact.desktop" QSharedPointer(0x557cbaeef270)
Mar 06 08:40:44 vlovich plasmashell[948]: Entry is not valid "ktp-contactlist.desktop" QSharedPointer(0x557cbaf172b0)
Mar 06 08:40:44 vlovich plasmashell[948]: Entry is not valid "org.kde.kate.desktop" QSharedPointer(0x557cbaeeeeb0)
Mar 06 08:40:44 vlovich plasmashell[948]: trying to show an empty dialog
Mar 06 08:40:44 vlovich plasmashell[948]: file:///usr/share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/LeaveButtons.qml:69:5: QML ToolButton: Binding loop detected for property "display"
Mar 06 08:40:44 vlovich kded5[852]: Registering ":1.47/org/ayatana/NotificationItem/blueman" to system tray
Mar 06 08:40:46 vlovich NetworkManager[594]: <info>  [1615048846.2362] dhcp4 (wlp0s20f3): state changed unknown -> bound, address=192.168.1.67
Mar 06 08:40:46 vlovich NetworkManager[594]: <info>  [1615048846.2390] device (wlp0s20f3): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'managed')
Mar 06 08:40:46 vlovich dbus-daemon[593]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service' requested by ':1.2' (uid=0 pid=594 comm="/usr/bin/NetworkManager --no-daemon ")
Mar 06 08:40:46 vlovich systemd[1]: Starting Network Manager Script Dispatcher Service...
Mar 06 08:40:46 vlovich dbus-daemon[593]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Mar 06 08:40:46 vlovich systemd[1]: Started Network Manager Script Dispatcher Service.
Mar 06 08:40:46 vlovich audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:46 vlovich kernel: audit: type=1130 audit(1615048846.249:163): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:46 vlovich NetworkManager[594]: <info>  [1615048846.2568] device (wlp0s20f3): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'managed')
Mar 06 08:40:46 vlovich NetworkManager[594]: <info>  [1615048846.2571] device (wlp0s20f3): state change: secondaries -> activated (reason 'none', sys-iface-state: 'managed')
Mar 06 08:40:46 vlovich NetworkManager[594]: <info>  [1615048846.2577] manager: NetworkManager state is now CONNECTED_LOCAL
Mar 06 08:40:46 vlovich NetworkManager[594]: <info>  [1615048846.2606] manager: NetworkManager state is now CONNECTED_SITE
Mar 06 08:40:46 vlovich NetworkManager[594]: <info>  [1615048846.2608] policy: set 'i_steal_pies' (wlp0s20f3) as default for IPv4 routing and DNS
Mar 06 08:40:46 vlovich NetworkManager[594]: <info>  [1615048846.2657] device (wlp0s20f3): Activation: successful, device activated.
Mar 06 08:40:46 vlovich dbus-daemon[593]: [system] Activating via systemd: service name='org.freedesktop.resolve1' unit='dbus-org.freedesktop.resolve1.service' requested by ':1.2' (uid=0 pid=594 comm="/usr/bin/NetworkManager --no-daemon ")
Mar 06 08:40:46 vlovich dbus-daemon[593]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.resolve1.service': Unit dbus-org.freedesktop.resolve1.service not found.
Mar 06 08:40:46 vlovich kded5[852]: plasma-nm: Network connectivity limited, scheduling notification
Mar 06 08:40:46 vlovich plasmashell[948]: file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/NotificationPopup.qml:116:15: QML QQuickItem: Binding loop detected for property "height"
Mar 06 08:40:46 vlovich NetworkManager[594]: <info>  [1615048846.3557] dhcp6 (wlp0s20f3): activation: beginning transaction (timeout in 45 seconds)
Mar 06 08:40:46 vlovich NetworkManager[594]: <info>  [1615048846.3581] policy: set 'i_steal_pies' (wlp0s20f3) as default for IPv6 routing and DNS
Mar 06 08:40:46 vlovich NetworkManager[594]: <info>  [1615048846.3655] dhcp6 (wlp0s20f3): state changed unknown -> bound
Mar 06 08:40:46 vlovich NetworkManager[594]: <info>  [1615048846.6713] manager: NetworkManager state is now CONNECTED_GLOBAL
Mar 06 08:40:47 vlovich systemd[799]: app-dropbox-b58b63945fdf415a9f8a1ff0d88a47f1.scope: Succeeded.
Mar 06 08:40:47 vlovich kwin_x11[856]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 8127, resource id: 23068692, major code: 18 (ChangeProperty), minor code: 0
Mar 06 08:40:47 vlovich systemd[1]: Stopping User Manager for UID 974...
Mar 06 08:40:47 vlovich systemd[752]: Stopped target Main User Target.
Mar 06 08:40:47 vlovich systemd[752]: Stopping D-Bus User Message Bus...
Mar 06 08:40:47 vlovich systemd[752]: dbus.service: Succeeded.
Mar 06 08:40:47 vlovich systemd[752]: Stopped D-Bus User Message Bus.
Mar 06 08:40:47 vlovich systemd[752]: Stopped target Basic System.
Mar 06 08:40:47 vlovich systemd[752]: Stopped target Paths.
Mar 06 08:40:47 vlovich systemd[752]: Stopped target Sockets.
Mar 06 08:40:47 vlovich systemd[752]: Stopped target Timers.
Mar 06 08:40:47 vlovich systemd[752]: dbus.socket: Succeeded.
Mar 06 08:40:47 vlovich systemd[752]: Closed D-Bus User Message Bus Socket.
Mar 06 08:40:47 vlovich systemd[752]: dirmngr.socket: Succeeded.
Mar 06 08:40:47 vlovich systemd[752]: Closed GnuPG network certificate management daemon.
Mar 06 08:40:47 vlovich systemd[752]: gpg-agent-browser.socket: Succeeded.
Mar 06 08:40:47 vlovich systemd[752]: Closed GnuPG cryptographic agent and passphrase cache (access for web browsers).
Mar 06 08:40:47 vlovich systemd[752]: gpg-agent-extra.socket: Succeeded.
Mar 06 08:40:47 vlovich systemd[752]: Closed GnuPG cryptographic agent and passphrase cache (restricted).
Mar 06 08:40:47 vlovich systemd[752]: gpg-agent-ssh.socket: Succeeded.
Mar 06 08:40:47 vlovich systemd[752]: Closed GnuPG cryptographic agent (ssh-agent emulation).
Mar 06 08:40:47 vlovich systemd[752]: gpg-agent.socket: Succeeded.
Mar 06 08:40:47 vlovich systemd[752]: Closed GnuPG cryptographic agent and passphrase cache.
Mar 06 08:40:47 vlovich systemd[752]: p11-kit-server.socket: Succeeded.
Mar 06 08:40:47 vlovich systemd[752]: Closed p11-kit server.
Mar 06 08:40:47 vlovich systemd[752]: pipewire.socket: Succeeded.
Mar 06 08:40:47 vlovich systemd[752]: Closed Multimedia System.
Mar 06 08:40:47 vlovich systemd[752]: pulseaudio.socket: Succeeded.
Mar 06 08:40:47 vlovich systemd[752]: Closed Sound System.
Mar 06 08:40:47 vlovich systemd[752]: Removed slice User Application Slice.
Mar 06 08:40:47 vlovich systemd[752]: Reached target Shutdown.
Mar 06 08:40:47 vlovich systemd[752]: systemd-exit.service: Succeeded.
Mar 06 08:40:47 vlovich systemd[752]: Finished Exit the Session.
Mar 06 08:40:47 vlovich systemd[752]: Reached target Exit the Session.
Mar 06 08:40:47 vlovich systemd[753]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8004 service=[systemd-user] terminal=[] user=[sddm] ruser=[<unknown>] rhost=[<unknown>]
Mar 06 08:40:47 vlovich systemd[1]: user@974.service: Succeeded.
Mar 06 08:40:47 vlovich audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user@974 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:47 vlovich systemd[1]: Stopped User Manager for UID 974.
Mar 06 08:40:47 vlovich systemd[1]: Stopping User Runtime Directory /run/user/974...
Mar 06 08:40:47 vlovich kernel: audit: type=1131 audit(1615048847.156:164): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user@974 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:47 vlovich systemd[799]: run-user-974.mount: Succeeded.
Mar 06 08:40:47 vlovich systemd[1]: run-user-974.mount: Succeeded.
Mar 06 08:40:47 vlovich systemd[1]: user-runtime-dir@974.service: Succeeded.
Mar 06 08:40:47 vlovich systemd[1]: Stopped User Runtime Directory /run/user/974.
Mar 06 08:40:47 vlovich audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@974 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:47 vlovich systemd[1]: Removed slice User Slice of UID 974.
Mar 06 08:40:47 vlovich kernel: audit: type=1131 audit(1615048847.159:165): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@974 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:48 vlovich baloo_file_extractor[1732]: Invalid encoding. Ignoring "/home/vlovich/Xorg.0.log"
Mar 06 08:40:50 vlovich kded5[852]: Registering ":1.50/org/ayatana/NotificationItem/dropbox_client_1716" to system tray
Mar 06 08:40:52 vlovich systemd-timesyncd[585]: Initial synchronization to time server [2001:470:e8dc:10::123]:123 (2.arch.pool.ntp.org).
Mar 06 08:40:53 vlovich wpa_supplicant[732]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-75 noise=9999 txrate=86700
Mar 06 08:40:56 vlovich systemd[1]: NetworkManager-dispatcher.service: Succeeded.
Mar 06 08:40:56 vlovich audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:40:56 vlovich kernel: audit: type=1131 audit(1615048856.942:166): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:41:10 vlovich systemd[1]: systemd-hostnamed.service: Succeeded.
Mar 06 08:41:10 vlovich audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:41:10 vlovich kernel: audit: type=1131 audit(1615048870.041:167): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:41:10 vlovich audit: BPF prog-id=22 op=UNLOAD
Mar 06 08:41:10 vlovich audit: BPF prog-id=21 op=UNLOAD
Mar 06 08:41:10 vlovich kernel: audit: type=1334 audit(1615048870.223:168): prog-id=22 op=UNLOAD
Mar 06 08:41:10 vlovich kernel: audit: type=1334 audit(1615048870.223:169): prog-id=21 op=UNLOAD
Mar 06 08:41:13 vlovich audit[1852]: USER_AUTH pid=1852 uid=1000 auid=1000 ses=2 msg='op=PAM:authentication grantors=pam_faillock,pam_permit,pam_faillock acct="vlovich" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 06 08:41:13 vlovich kernel: audit: type=1100 audit(1615048873.325:170): pid=1852 uid=1000 auid=1000 ses=2 msg='op=PAM:authentication grantors=pam_faillock,pam_permit,pam_faillock acct="vlovich" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 06 08:41:13 vlovich dbus-daemon[593]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.62' (uid=0 pid=1852 comm="sudo dmesg ")
Mar 06 08:41:13 vlovich dbus-daemon[593]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Mar 06 08:41:13 vlovich sudo[1852]: pam_systemd_home(sudo:account): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Mar 06 08:41:13 vlovich kernel: audit: type=1101 audit(1615048873.328:171): pid=1852 uid=1000 auid=1000 ses=2 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="vlovich" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 06 08:41:13 vlovich kernel: audit: type=1110 audit(1615048873.332:172): pid=1852 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 06 08:41:13 vlovich audit[1852]: USER_ACCT pid=1852 uid=1000 auid=1000 ses=2 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="vlovich" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 06 08:41:13 vlovich audit[1852]: CRED_REFR pid=1852 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 06 08:41:13 vlovich sudo[1852]:  vlovich : TTY=pts/6 ; PWD=/home/vlovich ; USER=root ; COMMAND=/usr/bin/dmesg
Mar 06 08:41:13 vlovich sudo[1852]: pam_unix(sudo:session): session opened for user root(uid=0) by vlovich(uid=1000)
Mar 06 08:41:13 vlovich audit[1852]: USER_START pid=1852 uid=1000 auid=1000 ses=2 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 06 08:41:13 vlovich kernel: audit: type=1105 audit(1615048873.338:173): pid=1852 uid=1000 auid=1000 ses=2 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 06 08:41:13 vlovich sudo[1852]: pam_unix(sudo:session): session closed for user root
Mar 06 08:41:13 vlovich audit[1852]: USER_END pid=1852 uid=1000 auid=1000 ses=2 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 06 08:41:13 vlovich audit[1852]: CRED_DISP pid=1852 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 06 08:41:13 vlovich kernel: audit: type=1106 audit(1615048873.348:174): pid=1852 uid=1000 auid=1000 ses=2 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 06 08:41:13 vlovich kernel: audit: type=1104 audit(1615048873.348:175): pid=1852 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 06 08:41:14 vlovich systemd[1]: blueman-mechanism.service: Succeeded.
Mar 06 08:41:14 vlovich audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=blueman-mechanism comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:41:14 vlovich kernel: audit: type=1131 audit(1615048874.618:176): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=blueman-mechanism comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 06 08:41:24 vlovich baloo_file_extractor[1891]: Invalid encoding. Ignoring "/home/vlovich/Xorg.0.log"
Mar 06 08:41:39 vlovich dbus-daemon[593]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.65' (uid=0 pid=1897 comm="sudo journalctl -b ")
Mar 06 08:41:39 vlovich dbus-daemon[593]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Mar 06 08:41:39 vlovich sudo[1897]: pam_systemd_home(sudo:account): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Mar 06 08:41:39 vlovich audit[1897]: USER_ACCT pid=1897 uid=1000 auid=1000 ses=2 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="vlovich" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 06 08:41:39 vlovich sudo[1897]:  vlovich : TTY=pts/6 ; PWD=/home/vlovich ; USER=root ; COMMAND=/usr/bin/journalctl -b
Mar 06 08:41:39 vlovich kernel: audit: type=1101 audit(1615048899.080:177): pid=1897 uid=1000 auid=1000 ses=2 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="vlovich" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 06 08:41:39 vlovich kernel: audit: type=1110 audit(1615048899.083:178): pid=1897 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 06 08:41:39 vlovich audit[1897]: CRED_REFR pid=1897 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 06 08:41:39 vlovich sudo[1897]: pam_unix(sudo:session): session opened for user root(uid=0) by vlovich(uid=1000)
Mar 06 08:41:39 vlovich audit[1897]: USER_START pid=1897 uid=1000 auid=1000 ses=2 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
Mar 06 08:41:39 vlovich kernel: audit: type=1105 audit(1615048899.083:179): pid=1897 uid=1000 auid=1000 ses=2 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
$ cat /var/log/Xorg.0.log
[    21.062] (--) Log file renamed from "/var/log/Xorg.pid-769.log" to "/var/log/Xorg.0.log"
[    21.062] 
X.Org X Server 1.20.10
X Protocol Version 11, Revision 0
[    21.062] Build Operating System: Linux Arch Linux
[    21.062] Current Operating System: Linux vlovich 5.10.16-arch1-1 #1 SMP PREEMPT Sat, 13 Feb 2021 20:50:18 +0000 x86_64
[    21.062] Kernel command line: initrd=\intel-ucode.img initrd=\initramfs-linux.img rd.luks.name=4833f4ef-725f-47aa-897f-d5e672fb236b=cryptlvm root=/dev/Arch/OS rw nvidia-drm.modeset=1
[    21.062] Build Date: 14 December 2020  12:10:29PM
[    21.062]  
[    21.062] Current version of pixman: 0.40.0
[    21.062] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[    21.062] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    21.062] (==) Log file: "/var/log/Xorg.0.log", Time: Sat Mar  6 08:40:31 2021
[    21.063] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[    21.063] (==) No Layout section.  Using the first Screen section.
[    21.063] (==) No screen section available. Using defaults.
[    21.063] (**) |-->Screen "Default Screen Section" (0)
[    21.063] (**) |   |-->Monitor "<default monitor>"
[    21.063] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[    21.063] (==) Automatically adding devices
[    21.063] (==) Automatically enabling devices
[    21.063] (==) Automatically adding GPU devices
[    21.063] (==) Automatically binding GPU devices
[    21.063] (==) Max clients allowed: 256, resource mask: 0x1fffff
[    21.063] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/misc".
[    21.063] 	Entry deleted from font path.
[    21.063] 	(Run 'mkfontdir' on "/usr/share/fonts/misc").
[    21.063] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/TTF".
[    21.063] 	Entry deleted from font path.
[    21.063] 	(Run 'mkfontdir' on "/usr/share/fonts/TTF").
[    21.063] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/OTF".
[    21.063] 	Entry deleted from font path.
[    21.063] 	(Run 'mkfontdir' on "/usr/share/fonts/OTF").
[    21.063] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[    21.063] 	Entry deleted from font path.
[    21.063] (WW) The directory "/usr/share/fonts/100dpi" does not exist.
[    21.063] 	Entry deleted from font path.
[    21.063] (WW) The directory "/usr/share/fonts/75dpi" does not exist.
[    21.063] 	Entry deleted from font path.
[    21.063] (==) FontPath set to:
	
[    21.063] (==) ModulePath set to "/usr/lib/xorg/modules"
[    21.063] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[    21.063] (II) Module ABI versions:
[    21.063] 	X.Org ANSI C Emulation: 0.4
[    21.063] 	X.Org Video Driver: 24.1
[    21.063] 	X.Org XInput driver : 24.1
[    21.063] 	X.Org Server Extension : 10.0
[    21.064] (++) using VT number 1

[    21.064] (II) systemd-logind: logind integration requires -keeptty and -keeptty was not provided, disabling logind integration
[    21.064] (II) xfree86: Adding drm device (/dev/dri/card1)
[    21.064] (II) xfree86: Adding drm device (/dev/dri/card0)
[    21.078] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[    21.082] (--) PCI:*(0@0:2:0) 8086:9bc4:1028:097e rev 5, Mem @ 0x604a000000/16777216, 0x4000000000/268435456, I/O @ 0x00004000/64, BIOS @ 0x????????/131072
[    21.082] (--) PCI: (1@0:0:0) 10de:1fb8:1028:097e rev 161, Mem @ 0xb3000000/16777216, 0x70000000/268435456, 0x80000000/33554432, I/O @ 0x00003000/128
[    21.082] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[    21.082] (II) LoadModule: "glx"
[    21.082] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[    21.085] (II) Module glx: vendor="X.Org Foundation"
[    21.085] 	compiled for 1.20.10, module version = 1.0.0
[    21.085] 	ABI class: X.Org Server Extension, version 10.0
[    21.085] (II) Applying OutputClass "nvidia" to /dev/dri/card1
[    21.086] 	loading driver: nvidia
[    21.086] (==) Matched intel as autoconfigured driver 0
[    21.086] (==) Matched nvidia as autoconfigured driver 1
[    21.086] (==) Matched nouveau as autoconfigured driver 2
[    21.086] (==) Matched nv as autoconfigured driver 3
[    21.086] (==) Matched modesetting as autoconfigured driver 4
[    21.086] (==) Matched fbdev as autoconfigured driver 5
[    21.086] (==) Matched vesa as autoconfigured driver 6
[    21.086] (==) Assigned the driver to the xf86ConfigLayout
[    21.086] (II) LoadModule: "intel"
[    21.086] (WW) Warning, couldn't open module intel
[    21.086] (EE) Failed to load module "intel" (module does not exist, 0)
[    21.086] (II) LoadModule: "nvidia"
[    21.086] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[    21.087] (II) Module nvidia: vendor="NVIDIA Corporation"
[    21.087] 	compiled for 1.6.99.901, module version = 1.0.0
[    21.087] 	Module class: X.Org Video Driver
[    21.087] (II) LoadModule: "nouveau"
[    21.087] (WW) Warning, couldn't open module nouveau
[    21.087] (EE) Failed to load module "nouveau" (module does not exist, 0)
[    21.087] (II) LoadModule: "nv"
[    21.088] (WW) Warning, couldn't open module nv
[    21.088] (EE) Failed to load module "nv" (module does not exist, 0)
[    21.088] (II) LoadModule: "modesetting"
[    21.088] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[    21.089] (II) Module modesetting: vendor="X.Org Foundation"
[    21.089] 	compiled for 1.20.10, module version = 1.20.10
[    21.089] 	Module class: X.Org Video Driver
[    21.089] 	ABI class: X.Org Video Driver, version 24.1
[    21.089] (II) LoadModule: "fbdev"
[    21.089] (WW) Warning, couldn't open module fbdev
[    21.090] (EE) Failed to load module "fbdev" (module does not exist, 0)
[    21.090] (II) LoadModule: "vesa"
[    21.090] (WW) Warning, couldn't open module vesa
[    21.090] (EE) Failed to load module "vesa" (module does not exist, 0)
[    21.090] (II) NVIDIA dlloader X Driver  460.56  Tue Feb 23 23:25:58 UTC 2021
[    21.090] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[    21.090] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[    21.091] (II) modeset(0): using drv /dev/dri/card0
[    21.091] (II) Loading sub module "fb"
[    21.091] (II) LoadModule: "fb"
[    21.092] (II) Loading /usr/lib/xorg/modules/libfb.so
[    21.092] (II) Module fb: vendor="X.Org Foundation"
[    21.092] 	compiled for 1.20.10, module version = 1.0.0
[    21.092] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    21.092] (II) Loading sub module "wfb"
[    21.092] (II) LoadModule: "wfb"
[    21.092] (II) Loading /usr/lib/xorg/modules/libwfb.so
[    21.093] (II) Module wfb: vendor="X.Org Foundation"
[    21.093] 	compiled for 1.20.10, module version = 1.0.0
[    21.093] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    21.093] (II) Loading sub module "ramdac"
[    21.093] (II) LoadModule: "ramdac"
[    21.093] (II) Module "ramdac" already built-in
[    21.094] (II) modeset(0): Creating default Display subsection in Screen section
	"Default Screen Section" for depth/fbbpp 24/32
[    21.094] (==) modeset(0): Depth 24, (==) framebuffer bpp 32
[    21.094] (==) modeset(0): RGB weight 888
[    21.094] (==) modeset(0): Default visual is TrueColor
[    21.094] (II) Loading sub module "glamoregl"
[    21.094] (II) LoadModule: "glamoregl"
[    21.094] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[    21.102] (II) Module glamoregl: vendor="X.Org Foundation"
[    21.102] 	compiled for 1.20.10, module version = 1.0.1
[    21.102] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    21.151] (II) modeset(0): glamor X acceleration enabled on Mesa Intel(R) UHD Graphics (CML GT2)
[    21.151] (II) modeset(0): glamor initialized
[    21.152] (II) modeset(0): Output eDP-1 has no monitor section
[    21.152] (II) modeset(0): Output DP-1 has no monitor section
[    21.152] (II) modeset(0): Output DP-2 has no monitor section
[    21.152] (II) modeset(0): Output DP-3 has no monitor section
[    21.153] (II) modeset(0): EDID for output eDP-1
[    21.153] (II) modeset(0): Manufacturer: SHP  Model: 14d0  Serial#: 0
[    21.153] (II) modeset(0): Year: 2020  Week: 3
[    21.153] (II) modeset(0): EDID Version: 1.4
[    21.153] (II) modeset(0): Digital Display Input
[    21.153] (II) modeset(0): 10 bits per channel
[    21.153] (II) modeset(0): Digital interface is DisplayPort
[    21.153] (II) modeset(0): Max Image Size [cm]: horiz.: 34  vert.: 21
[    21.153] (II) modeset(0): Gamma: 2.20
[    21.153] (II) modeset(0): No DPMS capabilities specified
[    21.153] (II) modeset(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
[    21.153] (II) modeset(0): First detailed timing is preferred mode
[    21.153] (II) modeset(0): Preferred mode is native pixel format and refresh rate
[    21.153] (II) modeset(0): redX: 0.660 redY: 0.327   greenX: 0.201 greenY: 0.730
[    21.153] (II) modeset(0): blueX: 0.145 blueY: 0.054   whiteX: 0.311 whiteY: 0.331
[    21.153] (II) modeset(0): Manufacturer's mask: 0
[    21.153] (II) modeset(0): Supported detailed timing:
[    21.153] (II) modeset(0): clock: 592.5 MHz   Image Size:  336 x 210 mm
[    21.153] (II) modeset(0): h_active: 3840  h_sync: 3888  h_sync_end 3920 h_blank_end 4000 h_border: 0
[    21.153] (II) modeset(0): v_active: 2400  v_sync: 2403  v_sync_end 2409 v_blanking: 2469 v_border: 0
[    21.154] (II) modeset(0): Supported detailed timing:
[    21.154] (II) modeset(0): clock: 474.0 MHz   Image Size:  336 x 210 mm
[    21.154] (II) modeset(0): h_active: 3840  h_sync: 3888  h_sync_end 3920 h_blank_end 4000 h_border: 0
[    21.154] (II) modeset(0): v_active: 2400  v_sync: 2403  v_sync_end 2409 v_blanking: 2469 v_border: 0
[    21.154] (II) modeset(0):  90T02LQ156R1
[    21.154] (II) modeset(0): Unknown vendor-specific block 0
[    21.154] (II) modeset(0): Number of EDID sections to follow: 1
[    21.154] (II) modeset(0): EDID (in hex):
[    21.154] (II) modeset(0): 	00ffffffffffff004d10d01400000000
[    21.154] (II) modeset(0): 	031e0104b52215780a383ba95333bb25
[    21.154] (II) modeset(0): 	0d4f5400000001010101010101010101
[    21.154] (II) modeset(0): 	01010101010172e700a0f06045903020
[    21.154] (II) modeset(0): 	360050d21000001828b900a0f0604590
[    21.154] (II) modeset(0): 	3020360050d210000018000000fe0039
[    21.154] (II) modeset(0): 	30543032814c51313536523100000000
[    21.154] (II) modeset(0): 	0002410332011200000b010a2020014f
[    21.154] (II) modeset(0): 	02030f00e3058000e606050160602800
[    21.154] (II) modeset(0): 	00000000000000000000000000000000
[    21.154] (II) modeset(0): 	00000000000000000000000000000000
[    21.154] (II) modeset(0): 	00000000000000000000000000000000
[    21.154] (II) modeset(0): 	00000000000000000000000000000000
[    21.154] (II) modeset(0): 	00000000000000000000000000000000
[    21.154] (II) modeset(0): 	00000000000000000000000000000000
[    21.154] (II) modeset(0): 	000000000000000000000000000000aa
[    21.154] (II) modeset(0): Printing probed modes for output eDP-1
[    21.154] (II) modeset(0): Modeline "3840x2400"x60.0  592.50  3840 3888 3920 4000  2400 2403 2409 2469 -hsync -vsync (148.1 kHz eP)
[    21.154] (II) modeset(0): Modeline "3840x2400"x48.0  474.00  3840 3888 3920 4000  2400 2403 2409 2469 -hsync -vsync (118.5 kHz e)
[    21.154] (II) modeset(0): Modeline "3840x2160"x120.0  1446.25  3840 4188 4616 5392  2160 2161 2164 2235 doublescan -hsync +vsync (268.2 kHz d)
[    21.154] (II) modeset(0): Modeline "3840x2160"x120.0  1044.88  3840 3864 3880 3920  2160 2161 2164 2221 doublescan +hsync -vsync (266.5 kHz d)
[    21.154] (II) modeset(0): Modeline "3840x2160"x60.0  712.75  3840 4160 4576 5312  2160 2163 2168 2237 -hsync +vsync (134.2 kHz d)
[    21.154] (II) modeset(0): Modeline "3840x2160"x60.0  533.00  3840 3888 3920 4000  2160 2163 2168 2222 +hsync -vsync (133.2 kHz d)
[    21.154] (II) modeset(0): Modeline "3200x1800"x60.0  492.00  3200 3456 3800 4400  1800 1803 1808 1865 -hsync +vsync (111.8 kHz d)
[    21.154] (II) modeset(0): Modeline "3200x1800"x59.9  373.00  3200 3248 3280 3360  1800 1803 1808 1852 +hsync -vsync (111.0 kHz d)
[    21.154] (II) modeset(0): Modeline "2880x1620"x60.0  396.25  2880 3096 3408 3936  1620 1623 1628 1679 -hsync +vsync (100.7 kHz d)
[    21.154] (II) modeset(0): Modeline "2880x1620"x60.0  303.75  2880 2928 2960 3040  1620 1623 1628 1666 +hsync -vsync (99.9 kHz d)
[    21.154] (II) modeset(0): Modeline "2560x1600"x60.0  348.50  2560 2760 3032 3504  1600 1603 1609 1658 -hsync +vsync (99.5 kHz d)
[    21.154] (II) modeset(0): Modeline "2560x1600"x60.0  268.50  2560 2608 2640 2720  1600 1603 1609 1646 +hsync -vsync (98.7 kHz d)
[    21.154] (II) modeset(0): Modeline "2560x1440"x120.0  638.25  2560 2780 3064 3568  1440 1441 1444 1491 doublescan -hsync +vsync (178.9 kHz d)
[    21.154] (II) modeset(0): Modeline "2560x1440"x120.0  469.12  2560 2584 2600 2640  1440 1441 1444 1481 doublescan +hsync -vsync (177.7 kHz d)
[    21.154] (II) modeset(0): Modeline "2560x1440"x60.0  312.25  2560 2752 3024 3488  1440 1443 1448 1493 -hsync +vsync (89.5 kHz d)
[    21.154] (II) modeset(0): Modeline "2560x1440"x60.0  241.50  2560 2608 2640 2720  1440 1443 1448 1481 +hsync -vsync (88.8 kHz d)
[    21.154] (II) modeset(0): Modeline "2048x1536"x60.0  266.95  2048 2200 2424 2800  1536 1537 1540 1589 -hsync +vsync (95.3 kHz d)
[    21.154] (II) modeset(0): Modeline "1920x1440"x60.0  234.00  1920 2048 2256 2600  1440 1441 1444 1500 -hsync +vsync (90.0 kHz d)
[    21.154] (II) modeset(0): Modeline "1856x1392"x60.0  218.30  1856 1952 2176 2528  1392 1393 1396 1439 -hsync +vsync (86.4 kHz d)
[    21.154] (II) modeset(0): Modeline "1792x1344"x60.0  204.80  1792 1920 2120 2448  1344 1345 1348 1394 -hsync +vsync (83.7 kHz d)
[    21.154] (II) modeset(0): Modeline "2048x1152"x120.0  406.50  2048 2220 2444 2840  1152 1153 1156 1193 doublescan -hsync +vsync (143.1 kHz d)
[    21.154] (II) modeset(0): Modeline "2048x1152"x120.0  302.50  2048 2072 2088 2128  1152 1153 1156 1185 doublescan +hsync -vsync (142.2 kHz d)
[    21.154] (II) modeset(0): Modeline "2048x1152"x59.9  197.00  2048 2184 2400 2752  1152 1155 1160 1195 -hsync +vsync (71.6 kHz d)
[    21.154] (II) modeset(0): Modeline "2048x1152"x59.9  156.75  2048 2096 2128 2208  1152 1155 1160 1185 +hsync -vsync (71.0 kHz d)
[    21.154] (II) modeset(0): Modeline "1920x1200"x59.9  193.25  1920 2056 2256 2592  1200 1203 1209 1245 -hsync +vsync (74.6 kHz d)
[    21.154] (II) modeset(0): Modeline "1920x1200"x60.0  154.00  1920 1968 2000 2080  1200 1203 1209 1235 +hsync -vsync (74.0 kHz d)
[    21.154] (II) modeset(0): Modeline "1920x1080"x120.0  356.38  1920 2080 2288 2656  1080 1081 1084 1118 doublescan -hsync +vsync (134.2 kHz d)
[    21.154] (II) modeset(0): Modeline "1920x1080"x119.9  266.50  1920 1944 1960 2000  1080 1081 1084 1111 doublescan +hsync -vsync (133.2 kHz d)
[    21.154] (II) modeset(0): Modeline "1920x1080"x60.0  173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync (67.2 kHz d)
[    21.154] (II) modeset(0): Modeline "1920x1080"x59.9  138.50  1920 1968 2000 2080  1080 1083 1088 1111 +hsync -vsync (66.6 kHz d)
[    21.154] (II) modeset(0): Modeline "1600x1200"x60.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz d)
[    21.154] (II) modeset(0): Modeline "1680x1050"x60.0  146.25  1680 1784 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz d)
[    21.154] (II) modeset(0): Modeline "1680x1050"x59.9  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz d)
[    21.154] (II) modeset(0): Modeline "1400x1050"x60.0  122.00  1400 1488 1640 1880  1050 1052 1064 1082 +hsync +vsync (64.9 kHz d)
[    21.154] (II) modeset(0): Modeline "1600x900"x120.0  246.00  1600 1728 1900 2200  900 901 904 932 doublescan -hsync +vsync (111.8 kHz d)
[    21.154] (II) modeset(0): Modeline "1600x900"x119.9  186.50  1600 1624 1640 1680  900 901 904 926 doublescan +hsync -vsync (111.0 kHz d)
[    21.154] (II) modeset(0): Modeline "1600x900"x59.9  118.25  1600 1696 1856 2112  900 903 908 934 -hsync +vsync (56.0 kHz d)
[    21.154] (II) modeset(0): Modeline "1600x900"x59.8   97.50  1600 1648 1680 1760  900 903 908 926 +hsync -vsync (55.4 kHz d)
[    21.154] (II) modeset(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz d)
[    21.154] (II) modeset(0): Modeline "1400x900"x60.0  103.50  1400 1480 1624 1848  900 903 913 934 -hsync +vsync (56.0 kHz d)
[    21.154] (II) modeset(0): Modeline "1400x900"x59.9   86.50  1400 1448 1480 1560  900 903 913 926 +hsync -vsync (55.4 kHz d)
[    21.154] (II) modeset(0): Modeline "1280x960"x60.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz d)
[    21.154] (II) modeset(0): Modeline "1440x810"x120.0  198.12  1440 1548 1704 1968  810 811 814 839 doublescan -hsync +vsync (100.7 kHz d)
[    21.154] (II) modeset(0): Modeline "1440x810"x119.9  151.88  1440 1464 1480 1520  810 811 814 833 doublescan +hsync -vsync (99.9 kHz d)
[    21.154] (II) modeset(0): Modeline "1368x768"x59.9   85.25  1368 1440 1576 1784  768 771 781 798 -hsync +vsync (47.8 kHz d)
[    21.154] (II) modeset(0): Modeline "1368x768"x59.9   72.25  1368 1416 1448 1528  768 771 781 790 +hsync -vsync (47.3 kHz d)
[    21.154] (II) modeset(0): Modeline "1280x800"x120.0  174.25  1280 1380 1516 1752  800 801 804 829 doublescan -hsync +vsync (99.5 kHz d)
[    21.154] (II) modeset(0): Modeline "1280x800"x119.9  134.25  1280 1304 1320 1360  800 801 804 823 doublescan +hsync -vsync (98.7 kHz d)
[    21.154] (II) modeset(0): Modeline "1280x800"x59.8   83.50  1280 1352 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz d)
[    21.154] (II) modeset(0): Modeline "1280x800"x59.9   71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz d)
[    21.154] (II) modeset(0): Modeline "1280x720"x120.0  156.12  1280 1376 1512 1744  720 721 724 746 doublescan -hsync +vsync (89.5 kHz d)
[    21.154] (II) modeset(0): Modeline "1280x720"x120.0  120.75  1280 1304 1320 1360  720 721 724 740 doublescan +hsync -vsync (88.8 kHz d)
[    21.154] (II) modeset(0): Modeline "1280x720"x59.9   74.50  1280 1344 1472 1664  720 723 728 748 -hsync +vsync (44.8 kHz d)
[    21.154] (II) modeset(0): Modeline "1280x720"x59.7   63.75  1280 1328 1360 1440  720 723 728 741 +hsync -vsync (44.3 kHz d)
[    21.154] (II) modeset(0): Modeline "1024x768"x120.1  133.47  1024 1100 1212 1400  768 768 770 794 doublescan -hsync +vsync (95.3 kHz d)
[    21.154] (II) modeset(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz d)
[    21.154] (II) modeset(0): Modeline "960x720"x120.0  117.00  960 1024 1128 1300  720 720 722 750 doublescan -hsync +vsync (90.0 kHz d)
[    21.154] (II) modeset(0): Modeline "928x696"x120.1  109.15  928 976 1088 1264  696 696 698 719 doublescan -hsync +vsync (86.4 kHz d)
[    21.154] (II) modeset(0): Modeline "896x672"x120.0  102.40  896 960 1060 1224  672 672 674 697 doublescan -hsync +vsync (83.7 kHz d)
[    21.154] (II) modeset(0): Modeline "1024x576"x119.9   98.50  1024 1092 1200 1376  576 577 580 597 doublescan -hsync +vsync (71.6 kHz d)
[    21.154] (II) modeset(0): Modeline "1024x576"x119.9   78.38  1024 1048 1064 1104  576 577 580 592 doublescan +hsync -vsync (71.0 kHz d)
[    21.154] (II) modeset(0): Modeline "1024x576"x59.9   46.50  1024 1064 1160 1296  576 579 584 599 -hsync +vsync (35.9 kHz d)
[    21.154] (II) modeset(0): Modeline "1024x576"x59.8   42.00  1024 1072 1104 1184  576 579 584 593 +hsync -vsync (35.5 kHz d)
[    21.154] (II) modeset(0): Modeline "960x600"x119.9   96.62  960 1028 1128 1296  600 601 604 622 doublescan -hsync +vsync (74.6 kHz d)
[    21.154] (II) modeset(0): Modeline "960x600"x120.0   77.00  960 984 1000 1040  600 601 604 617 doublescan +hsync -vsync (74.0 kHz d)
[    21.154] (II) modeset(0): Modeline "960x540"x119.9   86.50  960 1024 1124 1288  540 541 544 560 doublescan -hsync +vsync (67.2 kHz d)
[    21.154] (II) modeset(0): Modeline "960x540"x120.0   69.25  960 984 1000 1040  540 541 544 555 doublescan +hsync -vsync (66.6 kHz d)
[    21.154] (II) modeset(0): Modeline "960x540"x59.6   40.75  960 992 1088 1216  540 543 548 562 -hsync +vsync (33.5 kHz d)
[    21.154] (II) modeset(0): Modeline "960x540"x59.8   37.25  960 1008 1040 1120  540 543 548 556 +hsync -vsync (33.3 kHz d)
[    21.154] (II) modeset(0): Modeline "800x600"x120.0   81.00  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync (75.0 kHz d)
[    21.154] (II) modeset(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz d)
[    21.154] (II) modeset(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz d)
[    21.154] (II) modeset(0): Modeline "840x525"x120.0   73.12  840 892 980 1120  525 526 529 544 doublescan -hsync +vsync (65.3 kHz d)
[    21.154] (II) modeset(0): Modeline "840x525"x119.8   59.50  840 864 880 920  525 526 529 540 doublescan +hsync -vsync (64.7 kHz d)
[    21.154] (II) modeset(0): Modeline "864x486"x59.9   32.50  864 888 968 1072  486 489 494 506 -hsync +vsync (30.3 kHz d)
[    21.154] (II) modeset(0): Modeline "864x486"x59.6   30.50  864 912 944 1024  486 489 494 500 +hsync -vsync (29.8 kHz d)
[    21.154] (II) modeset(0): Modeline "700x525"x120.0   61.00  700 744 820 940  525 526 532 541 doublescan +hsync +vsync (64.9 kHz d)
[    21.154] (II) modeset(0): Modeline "800x450"x119.9   59.12  800 848 928 1056  450 451 454 467 doublescan -hsync +vsync (56.0 kHz d)
[    21.154] (II) modeset(0): Modeline "800x450"x119.6   48.75  800 824 840 880  450 451 454 463 doublescan +hsync -vsync (55.4 kHz d)
[    21.154] (II) modeset(0): Modeline "640x512"x120.0   54.00  640 664 720 844  512 512 514 533 doublescan +hsync +vsync (64.0 kHz d)
[    21.154] (II) modeset(0): Modeline "700x450"x119.9   51.75  700 740 812 924  450 451 456 467 doublescan -hsync +vsync (56.0 kHz d)
[    21.154] (II) modeset(0): Modeline "700x450"x119.8   43.25  700 724 740 780  450 451 456 463 doublescan +hsync -vsync (55.4 kHz d)
[    21.154] (II) modeset(0): Modeline "640x480"x120.0   54.00  640 688 744 900  480 480 482 500 doublescan +hsync +vsync (60.0 kHz d)
[    21.154] (II) modeset(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz d)
[    21.154] (II) modeset(0): Modeline "720x405"x59.5   22.50  720 744 808 896  405 408 413 422 -hsync +vsync (25.1 kHz d)
[    21.154] (II) modeset(0): Modeline "720x405"x59.0   21.75  720 768 800 880  405 408 413 419 +hsync -vsync (24.7 kHz d)
[    21.154] (II) modeset(0): Modeline "684x384"x119.8   42.62  684 720 788 892  384 385 390 399 doublescan -hsync +vsync (47.8 kHz d)
[    21.154] (II) modeset(0): Modeline "684x384"x119.7   36.12  684 708 724 764  384 385 390 395 doublescan +hsync -vsync (47.3 kHz d)
[    21.154] (II) modeset(0): Modeline "640x400"x119.8   41.75  640 676 740 840  400 401 404 415 doublescan -hsync +vsync (49.7 kHz d)
[    21.154] (II) modeset(0): Modeline "640x400"x120.0   35.50  640 664 680 720  400 401 404 411 doublescan +hsync -vsync (49.3 kHz d)
[    21.154] (II) modeset(0): Modeline "640x360"x119.7   37.25  640 672 736 832  360 361 364 374 doublescan -hsync +vsync (44.8 kHz d)
[    21.154] (II) modeset(0): Modeline "640x360"x119.7   31.88  640 664 680 720  360 361 364 370 doublescan +hsync -vsync (44.3 kHz d)
[    21.154] (II) modeset(0): Modeline "640x360"x59.8   18.00  640 664 720 800  360 363 368 376 -hsync +vsync (22.5 kHz d)
[    21.154] (II) modeset(0): Modeline "640x360"x59.3   17.75  640 688 720 800  360 363 368 374 +hsync -vsync (22.2 kHz d)
[    21.154] (II) modeset(0): Modeline "512x384"x120.0   32.50  512 524 592 672  384 385 388 403 doublescan -hsync -vsync (48.4 kHz d)
[    21.154] (II) modeset(0): Modeline "512x288"x120.0   23.25  512 532 580 648  288 289 292 299 doublescan -hsync +vsync (35.9 kHz d)
[    21.154] (II) modeset(0): Modeline "512x288"x119.8   21.00  512 536 552 592  288 289 292 296 doublescan +hsync -vsync (35.5 kHz d)
[    21.154] (II) modeset(0): Modeline "480x270"x119.3   20.38  480 496 544 608  270 271 274 281 doublescan -hsync +vsync (33.5 kHz d)
[    21.154] (II) modeset(0): Modeline "480x270"x119.6   18.62  480 504 520 560  270 271 274 278 doublescan +hsync -vsync (33.3 kHz d)
[    21.154] (II) modeset(0): Modeline "400x300"x120.6   20.00  400 420 484 528  300 300 302 314 doublescan +hsync +vsync (37.9 kHz d)
[    21.154] (II) modeset(0): Modeline "400x300"x112.7   18.00  400 412 448 512  300 300 301 312 doublescan +hsync +vsync (35.2 kHz d)
[    21.154] (II) modeset(0): Modeline "432x243"x119.8   16.25  432 444 484 536  243 244 247 253 doublescan -hsync +vsync (30.3 kHz d)
[    21.154] (II) modeset(0): Modeline "432x243"x119.1   15.25  432 456 472 512  243 244 247 250 doublescan +hsync -vsync (29.8 kHz d)
[    21.154] (II) modeset(0): Modeline "320x240"x120.1   12.59  320 328 376 400  240 245 246 262 doublescan -hsync -vsync (31.5 kHz d)
[    21.154] (II) modeset(0): Modeline "360x202"x119.0   11.25  360 372 404 448  202 204 206 211 doublescan -hsync +vsync (25.1 kHz d)
[    21.154] (II) modeset(0): Modeline "360x202"x118.3   10.88  360 384 400 440  202 204 206 209 doublescan +hsync -vsync (24.7 kHz d)
[    21.154] (II) modeset(0): Modeline "320x180"x119.7    9.00  320 332 360 400  180 181 184 188 doublescan -hsync +vsync (22.5 kHz d)
[    21.154] (II) modeset(0): Modeline "320x180"x118.6    8.88  320 344 360 400  180 181 184 187 doublescan +hsync -vsync (22.2 kHz d)
[    21.154] (II) modeset(0): EDID for output DP-1
[    21.154] (II) modeset(0): EDID for output DP-2
[    21.154] (II) modeset(0): EDID for output DP-3
[    21.154] (II) modeset(0): Output eDP-1 connected
[    21.154] (II) modeset(0): Output DP-1 disconnected
[    21.154] (II) modeset(0): Output DP-2 disconnected
[    21.154] (II) modeset(0): Output DP-3 disconnected
[    21.154] (II) modeset(0): Using exact sizes for initial modes
[    21.154] (II) modeset(0): Output eDP-1 using initial mode 3840x2400 +0+0
[    21.154] (==) modeset(0): Using gamma correction (1.0, 1.0, 1.0)
[    21.154] (==) modeset(0): DPI set to (96, 96)
[    21.154] (II) Loading sub module "fb"
[    21.154] (II) LoadModule: "fb"
[    21.154] (II) Loading /usr/lib/xorg/modules/libfb.so
[    21.154] (II) Module fb: vendor="X.Org Foundation"
[    21.154] 	compiled for 1.20.10, module version = 1.0.0
[    21.154] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    21.154] (==) NVIDIA(G0): Depth 24, (==) framebuffer bpp 32
[    21.154] (==) NVIDIA(G0): RGB weight 888
[    21.154] (==) NVIDIA(G0): Default visual is TrueColor
[    21.154] (==) NVIDIA(G0): Using gamma correction (1.0, 1.0, 1.0)
[    21.154] (II) Applying OutputClass "nvidia" options to /dev/dri/card1
[    21.154] (**) NVIDIA(G0): Option "AllowEmptyInitialConfiguration"
[    21.154] (**) NVIDIA(G0): Enabling 2D acceleration
[    21.154] (II) Loading sub module "glxserver_nvidia"
[    21.154] (II) LoadModule: "glxserver_nvidia"
[    21.154] (II) Loading /usr/lib/nvidia/xorg/libglxserver_nvidia.so
[    21.159] (II) Module glxserver_nvidia: vendor="NVIDIA Corporation"
[    21.159] 	compiled for 1.6.99.901, module version = 1.0.0
[    21.159] 	Module class: X.Org Server Extension
[    21.159] (II) NVIDIA GLX Module  460.56  Tue Feb 23 23:23:21 UTC 2021
[    21.159] (II) NVIDIA: The X server supports PRIME Render Offload.
[    21.160] (II) NVIDIA(G0): NVIDIA GPU Quadro T2000 with Max-Q Design (TU117GL-A) at
[    21.160] (II) NVIDIA(G0):     PCI:1:0:0 (GPU-0)
[    21.160] (--) NVIDIA(G0): Memory: 4194304 kBytes
[    21.160] (--) NVIDIA(G0): VideoBIOS: 90.17.42.00.3c
[    21.160] (II) NVIDIA(G0): Detected PCI Express Link width: 16X
[    21.160] (II) NVIDIA(G0): Validated MetaModes:
[    21.160] (II) NVIDIA(G0):     "NULL"
[    21.160] (II) NVIDIA(G0): Virtual screen size determined to be 640 x 480
[    21.160] (WW) NVIDIA(G0): Unable to get display device for DPI computation.
[    21.160] (==) NVIDIA(G0): DPI set to (75, 75); computed from built-in default
[    21.170] (==) modeset(0): Backing store enabled
[    21.170] (==) modeset(0): Silken mouse disabled
[    21.242] (II) modeset(0): Initializing kms color map for depth 24, 8 bpc.
[    21.242] (==) modeset(0): DPMS enabled
[    21.242] (II) modeset(0): [DRI2] Setup complete
[    21.242] (II) modeset(0): [DRI2]   DRI driver: iris
[    21.242] (II) modeset(0): [DRI2]   VDPAU driver: va_gl
[    21.242] (II) NVIDIA: Using 24576.00 MB of virtual memory for indirect memory
[    21.242] (II) NVIDIA:     access.
[    21.255] (II) NVIDIA(G0): ACPI: failed to connect to the ACPI event daemon; the daemon
[    21.255] (II) NVIDIA(G0):     may not be running or the "AcpidSocketPath" X
[    21.255] (II) NVIDIA(G0):     configuration option may not be set correctly.  When the
[    21.255] (II) NVIDIA(G0):     ACPI event daemon is available, the NVIDIA X driver will
[    21.255] (II) NVIDIA(G0):     try to use it to receive ACPI event notifications.  For
[    21.255] (II) NVIDIA(G0):     details, please see the "ConnectToAcpid" and
[    21.255] (II) NVIDIA(G0):     "AcpidSocketPath" X configuration options in Appendix B: X
[    21.255] (II) NVIDIA(G0):     Config Options in the README.
[    21.293] (II) NVIDIA(G0): Setting mode "NULL"
[    21.297] (==) NVIDIA(G0): Disabling shared memory pixmaps
[    21.297] (==) NVIDIA(G0): Backing store enabled
[    21.297] (==) NVIDIA(G0): Silken mouse disabled
[    21.297] (==) NVIDIA(G0): DPMS enabled
[    21.297] (II) Loading sub module "dri2"
[    21.297] (II) LoadModule: "dri2"
[    21.297] (II) Module "dri2" already built-in
[    21.297] (II) NVIDIA(G0): [DRI2] Setup complete
[    21.297] (II) NVIDIA(G0): [DRI2]   VDPAU driver: nvidia
[    21.297] (II) Initializing extension Generic Event Extension
[    21.297] (II) Initializing extension SHAPE
[    21.297] (II) Initializing extension MIT-SHM
[    21.297] (II) Initializing extension XInputExtension
[    21.297] (II) Initializing extension XTEST
[    21.297] (II) Initializing extension BIG-REQUESTS
[    21.298] (II) Initializing extension SYNC
[    21.298] (II) Initializing extension XKEYBOARD
[    21.298] (II) Initializing extension XC-MISC
[    21.298] (II) Initializing extension SECURITY
[    21.298] (II) Initializing extension XFIXES
[    21.298] (II) Initializing extension RENDER
[    21.298] (II) Initializing extension RANDR
[    21.298] (II) Initializing extension COMPOSITE
[    21.298] (II) Initializing extension DAMAGE
[    21.298] (II) Initializing extension MIT-SCREEN-SAVER
[    21.298] (II) Initializing extension DOUBLE-BUFFER
[    21.299] (II) Initializing extension RECORD
[    21.299] (II) Initializing extension DPMS
[    21.299] (II) Initializing extension Present
[    21.299] (II) Initializing extension DRI3
[    21.299] (II) Initializing extension X-Resource
[    21.299] (II) Initializing extension XVideo
[    21.299] (II) Initializing extension XVideo-MotionCompensation
[    21.299] (II) Initializing extension GLX
[    21.299] (II) Initializing extension GLX
[    21.299] (II) Indirect GLX disabled.
[    21.305] (II) AIGLX: Loaded and initialized iris
[    21.305] (II) GLX: Initialized DRI2 GL provider for screen 0
[    21.305] (II) Initializing extension XFree86-VidModeExtension
[    21.306] (II) Initializing extension XFree86-DGA
[    21.306] (II) Initializing extension XFree86-DRI
[    21.306] (II) Initializing extension DRI2
[    21.306] (II) Initializing extension NV-GLX
[    21.306] (II) Initializing extension NV-CONTROL
[    21.307] (II) modeset(0): Damage tracking initialized
[    21.307] (II) modeset(0): Setting screen physical size to 1016 x 635
[    21.329] (II) config/udev: Adding input device Video Bus (/dev/input/event18)
[    21.329] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[    21.329] (II) LoadModule: "libinput"
[    21.329] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[    21.330] (II) Module libinput: vendor="X.Org Foundation"
[    21.331] 	compiled for 1.20.8, module version = 0.30.0
[    21.331] 	Module class: X.Org XInput Driver
[    21.331] 	ABI class: X.Org XInput driver, version 24.1
[    21.331] (II) Using input driver 'libinput' for 'Video Bus'
[    21.331] (**) Video Bus: always reports core events
[    21.331] (**) Option "Device" "/dev/input/event18"
[    21.331] (**) Option "_source" "server/udev"
[    21.331] (II) event18 - Video Bus: is tagged by udev as: Keyboard
[    21.331] (II) event18 - Video Bus: device is a keyboard
[    21.332] (II) event18 - Video Bus: device removed
[    21.396] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input47/event18"
[    21.396] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 6)
[    21.397] (II) event18 - Video Bus: is tagged by udev as: Keyboard
[    21.397] (II) event18 - Video Bus: device is a keyboard
[    21.398] (II) config/udev: Adding input device Video Bus (/dev/input/event17)
[    21.398] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[    21.398] (II) Using input driver 'libinput' for 'Video Bus'
[    21.398] (**) Video Bus: always reports core events
[    21.398] (**) Option "Device" "/dev/input/event17"
[    21.398] (**) Option "_source" "server/udev"
[    21.399] (II) event17 - Video Bus: is tagged by udev as: Keyboard
[    21.399] (II) event17 - Video Bus: device is a keyboard
[    21.399] (II) event17 - Video Bus: device removed
[    21.449] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/LNXVIDEO:00/input/input46/event17"
[    21.449] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
[    21.451] (II) event17 - Video Bus: is tagged by udev as: Keyboard
[    21.452] (II) event17 - Video Bus: device is a keyboard
[    21.452] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[    21.452] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[    21.452] (II) Using input driver 'libinput' for 'Power Button'
[    21.452] (**) Power Button: always reports core events
[    21.452] (**) Option "Device" "/dev/input/event1"
[    21.452] (**) Option "_source" "server/udev"
[    21.453] (II) event1  - Power Button: is tagged by udev as: Keyboard
[    21.453] (II) event1  - Power Button: device is a keyboard
[    21.453] (II) event1  - Power Button: device removed
[    21.489] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1/event1"
[    21.489] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
[    21.490] (II) event1  - Power Button: is tagged by udev as: Keyboard
[    21.490] (II) event1  - Power Button: device is a keyboard
[    21.491] (II) config/udev: Adding input device Lid Switch (/dev/input/event0)
[    21.491] (II) No input driver specified, ignoring this device.
[    21.491] (II) This device may have been added with another device file.
[    21.492] (II) config/udev: Adding input device Integrated_Webcam_HD: Integrate (/dev/input/event15)
[    21.492] (**) Integrated_Webcam_HD: Integrate: Applying InputClass "libinput keyboard catchall"
[    21.492] (II) Using input driver 'libinput' for 'Integrated_Webcam_HD: Integrate'
[    21.492] (**) Integrated_Webcam_HD: Integrate: always reports core events
[    21.492] (**) Option "Device" "/dev/input/event15"
[    21.492] (**) Option "_source" "server/udev"
[    21.494] (II) event15 - Integrated_Webcam_HD: Integrate: is tagged by udev as: Keyboard
[    21.494] (II) event15 - Integrated_Webcam_HD: Integrate: device is a keyboard
[    21.494] (II) event15 - Integrated_Webcam_HD: Integrate: device removed
[    21.556] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-11/1-11:1.0/input/input44/event15"
[    21.556] (II) XINPUT: Adding extended input device "Integrated_Webcam_HD: Integrate" (type: KEYBOARD, id 9)
[    21.558] (II) event15 - Integrated_Webcam_HD: Integrate: is tagged by udev as: Keyboard
[    21.558] (II) event15 - Integrated_Webcam_HD: Integrate: device is a keyboard
[    21.560] (II) config/udev: Adding input device Integrated_Webcam_HD: Integrate (/dev/input/event16)
[    21.560] (**) Integrated_Webcam_HD: Integrate: Applying InputClass "libinput keyboard catchall"
[    21.560] (II) Using input driver 'libinput' for 'Integrated_Webcam_HD: Integrate'
[    21.560] (**) Integrated_Webcam_HD: Integrate: always reports core events
[    21.560] (**) Option "Device" "/dev/input/event16"
[    21.560] (**) Option "_source" "server/udev"
[    21.562] (II) event16 - Integrated_Webcam_HD: Integrate: is tagged by udev as: Keyboard
[    21.562] (II) event16 - Integrated_Webcam_HD: Integrate: device is a keyboard
[    21.563] (II) event16 - Integrated_Webcam_HD: Integrate: device removed
[    21.622] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-11/1-11:1.2/input/input45/event16"
[    21.622] (II) XINPUT: Adding extended input device "Integrated_Webcam_HD: Integrate" (type: KEYBOARD, id 10)
[    21.625] (II) event16 - Integrated_Webcam_HD: Integrate: is tagged by udev as: Keyboard
[    21.625] (II) event16 - Integrated_Webcam_HD: Integrate: device is a keyboard
[    21.627] (II) config/udev: Adding input device Logitech Performance MX (/dev/input/event4)
[    21.627] (**) Logitech Performance MX: Applying InputClass "libinput pointer catchall"
[    21.627] (II) Using input driver 'libinput' for 'Logitech Performance MX'
[    21.627] (**) Logitech Performance MX: always reports core events
[    21.627] (**) Option "Device" "/dev/input/event4"
[    21.627] (**) Option "_source" "server/udev"
[    21.630] (II) event4  - Logitech Performance MX: is tagged by udev as: Mouse
[    21.630] (II) event4  - Logitech Performance MX: device set to 1000 DPI
[    21.630] (II) event4  - Logitech Performance MX: device is a pointer
[    21.630] (II) event4  - Logitech Performance MX: device removed
[    21.689] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:101A.0005/input/input30/event4"
[    21.689] (II) XINPUT: Adding extended input device "Logitech Performance MX" (type: MOUSE, id 11)
[    21.689] (**) Option "AccelerationScheme" "none"
[    21.689] (**) Logitech Performance MX: (accel) selected scheme none/0
[    21.689] (**) Logitech Performance MX: (accel) acceleration factor: 2.000
[    21.689] (**) Logitech Performance MX: (accel) acceleration threshold: 4
[    21.692] (II) event4  - Logitech Performance MX: is tagged by udev as: Mouse
[    21.692] (II) event4  - Logitech Performance MX: device set to 1000 DPI
[    21.693] (II) event4  - Logitech Performance MX: device is a pointer
[    21.694] (II) config/udev: Adding input device Logitech Performance MX (/dev/input/mouse0)
[    21.694] (II) No input driver specified, ignoring this device.
[    21.694] (II) This device may have been added with another device file.
[    21.696] (II) config/udev: Adding input device Logitech K350 (/dev/input/event6)
[    21.696] (**) Logitech K350: Applying InputClass "libinput keyboard catchall"
[    21.696] (II) Using input driver 'libinput' for 'Logitech K350'
[    21.696] (**) Logitech K350: always reports core events
[    21.696] (**) Option "Device" "/dev/input/event6"
[    21.696] (**) Option "_source" "server/udev"
[    21.699] (II) event6  - Logitech K350: is tagged by udev as: Keyboard
[    21.699] (II) event6  - Logitech K350: device is a keyboard
[    21.699] (II) event6  - Logitech K350: device removed
[    21.729] (II) libinput: Logitech K350: needs a virtual subdevice
[    21.729] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:200A.0007/input/input32/event6"
[    21.729] (II) XINPUT: Adding extended input device "Logitech K350" (type: MOUSE, id 12)
[    21.729] (**) Option "AccelerationScheme" "none"
[    21.729] (**) Logitech K350: (accel) selected scheme none/0
[    21.729] (**) Logitech K350: (accel) acceleration factor: 2.000
[    21.729] (**) Logitech K350: (accel) acceleration threshold: 4
[    21.732] (II) event6  - Logitech K350: is tagged by udev as: Keyboard
[    21.732] (II) event6  - Logitech K350: device is a keyboard
[    21.734] (II) config/udev: Adding input device Logitech K800 (/dev/input/event3)
[    21.734] (**) Logitech K800: Applying InputClass "libinput keyboard catchall"
[    21.734] (II) Using input driver 'libinput' for 'Logitech K800'
[    21.734] (**) Logitech K800: always reports core events
[    21.735] (**) Option "Device" "/dev/input/event3"
[    21.735] (**) Option "_source" "server/udev"
[    21.737] (II) event3  - Logitech K800: is tagged by udev as: Keyboard
[    21.737] (II) event3  - Logitech K800: device is a keyboard
[    21.738] (II) event3  - Logitech K800: device removed
[    21.783] (II) libinput: Logitech K800: needs a virtual subdevice
[    21.783] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:2010.0004/input/input29/event3"
[    21.783] (II) XINPUT: Adding extended input device "Logitech K800" (type: MOUSE, id 13)
[    21.783] (**) Option "AccelerationScheme" "none"
[    21.783] (**) Logitech K800: (accel) selected scheme none/0
[    21.783] (**) Logitech K800: (accel) acceleration factor: 2.000
[    21.783] (**) Logitech K800: (accel) acceleration threshold: 4
[    21.786] (II) event3  - Logitech K800: is tagged by udev as: Keyboard
[    21.786] (II) event3  - Logitech K800: device is a keyboard
[    21.788] (II) config/udev: Adding input device Logitech M705 (/dev/input/event5)
[    21.788] (**) Logitech M705: Applying InputClass "libinput pointer catchall"
[    21.788] (II) Using input driver 'libinput' for 'Logitech M705'
[    21.788] (**) Logitech M705: always reports core events
[    21.788] (**) Option "Device" "/dev/input/event5"
[    21.788] (**) Option "_source" "server/udev"
[    21.790] (II) event5  - Logitech M705: is tagged by udev as: Mouse
[    21.791] (II) event5  - Logitech M705: device set to 1000 DPI
[    21.791] (II) event5  - Logitech M705: device is a pointer
[    21.791] (II) event5  - Logitech M705: device removed
[    21.876] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:406D.0006/input/input31/event5"
[    21.876] (II) XINPUT: Adding extended input device "Logitech M705" (type: MOUSE, id 14)
[    21.876] (**) Option "AccelerationScheme" "none"
[    21.876] (**) Logitech M705: (accel) selected scheme none/0
[    21.876] (**) Logitech M705: (accel) acceleration factor: 2.000
[    21.876] (**) Logitech M705: (accel) acceleration threshold: 4
[    21.879] (II) event5  - Logitech M705: is tagged by udev as: Mouse
[    21.879] (II) event5  - Logitech M705: device set to 1000 DPI
[    21.879] (II) event5  - Logitech M705: device is a pointer
[    21.881] (II) config/udev: Adding input device Logitech M705 (/dev/input/mouse1)
[    21.881] (II) No input driver specified, ignoring this device.
[    21.881] (II) This device may have been added with another device file.
[    21.882] (II) config/udev: Adding input device ELAN29E2:00 04F3:29E2 (/dev/input/event10)
[    21.882] (**) ELAN29E2:00 04F3:29E2: Applying InputClass "libinput touchscreen catchall"
[    21.882] (II) Using input driver 'libinput' for 'ELAN29E2:00 04F3:29E2'
[    21.882] (**) ELAN29E2:00 04F3:29E2: always reports core events
[    21.882] (**) Option "Device" "/dev/input/event10"
[    21.882] (**) Option "_source" "server/udev"
[    21.884] (II) event10 - ELAN29E2:00 04F3:29E2: is tagged by udev as: Touchscreen
[    21.885] (II) event10 - ELAN29E2:00 04F3:29E2: device is a touch device
[    21.885] (II) event10 - ELAN29E2:00 04F3:29E2: device removed
[    21.942] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-ELAN29E2:00/0018:04F3:29E2.0008/input/input49/event10"
[    21.942] (II) XINPUT: Adding extended input device "ELAN29E2:00 04F3:29E2" (type: TOUCHSCREEN, id 15)
[    21.943] (**) Option "AccelerationScheme" "none"
[    21.943] (**) ELAN29E2:00 04F3:29E2: (accel) selected scheme none/0
[    21.943] (**) ELAN29E2:00 04F3:29E2: (accel) acceleration factor: 2.000
[    21.943] (**) ELAN29E2:00 04F3:29E2: (accel) acceleration threshold: 4
[    21.945] (II) event10 - ELAN29E2:00 04F3:29E2: is tagged by udev as: Touchscreen
[    21.945] (II) event10 - ELAN29E2:00 04F3:29E2: device is a touch device
[    21.947] (II) config/udev: Adding input device ELAN29E2:00 04F3:29E2 (/dev/input/mouse2)
[    21.947] (II) No input driver specified, ignoring this device.
[    21.947] (II) This device may have been added with another device file.
[    21.948] (II) config/udev: Adding input device ELAN29E2:00 04F3:29E2 UNKNOWN (/dev/input/event11)
[    21.948] (II) No input driver specified, ignoring this device.
[    21.948] (II) This device may have been added with another device file.
[    21.949] (II) config/udev: Adding input device ELAN29E2:00 04F3:29E2 UNKNOWN (/dev/input/event12)
[    21.949] (II) No input driver specified, ignoring this device.
[    21.949] (II) This device may have been added with another device file.
[    21.950] (II) config/udev: Adding input device DELL097E:00 04F3:311C Mouse (/dev/input/event13)
[    21.950] (**) DELL097E:00 04F3:311C Mouse: Applying InputClass "libinput pointer catchall"
[    21.950] (II) Using input driver 'libinput' for 'DELL097E:00 04F3:311C Mouse'
[    21.950] (**) DELL097E:00 04F3:311C Mouse: always reports core events
[    21.950] (**) Option "Device" "/dev/input/event13"
[    21.950] (**) Option "_source" "server/udev"
[    21.952] (II) event13 - DELL097E:00 04F3:311C Mouse: is tagged by udev as: Mouse Pointingstick
[    21.953] (II) event13 - DELL097E:00 04F3:311C Mouse: device is a pointer
[    21.955] (II) event13 - DELL097E:00 04F3:311C Mouse: device removed
[    22.043] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-DELL097E:00/0018:04F3:311C.0009/input/input53/event13"
[    22.043] (II) XINPUT: Adding extended input device "DELL097E:00 04F3:311C Mouse" (type: MOUSE, id 16)
[    22.043] (**) Option "AccelerationScheme" "none"
[    22.043] (**) DELL097E:00 04F3:311C Mouse: (accel) selected scheme none/0
[    22.043] (**) DELL097E:00 04F3:311C Mouse: (accel) acceleration factor: 2.000
[    22.043] (**) DELL097E:00 04F3:311C Mouse: (accel) acceleration threshold: 4
[    22.045] (II) event13 - DELL097E:00 04F3:311C Mouse: is tagged by udev as: Mouse Pointingstick
[    22.046] (II) event13 - DELL097E:00 04F3:311C Mouse: device is a pointer
[    22.048] (II) config/udev: Adding input device DELL097E:00 04F3:311C Mouse (/dev/input/mouse3)
[    22.048] (II) No input driver specified, ignoring this device.
[    22.048] (II) This device may have been added with another device file.
[    22.049] (II) config/udev: Adding input device DELL097E:00 04F3:311C Touchpad (/dev/input/event19)
[    22.049] (**) DELL097E:00 04F3:311C Touchpad: Applying InputClass "libinput touchpad catchall"
[    22.049] (II) Using input driver 'libinput' for 'DELL097E:00 04F3:311C Touchpad'
[    22.049] (**) DELL097E:00 04F3:311C Touchpad: always reports core events
[    22.049] (**) Option "Device" "/dev/input/event19"
[    22.049] (**) Option "_source" "server/udev"
[    22.049] (II) event19 - DELL097E:00 04F3:311C Touchpad: is tagged by udev as: Touchpad
[    22.050] (II) event19 - DELL097E:00 04F3:311C Touchpad: device is a touchpad
[    22.050] (II) event19 - DELL097E:00 04F3:311C Touchpad: device removed
[    22.116] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-DELL097E:00/0018:04F3:311C.0009/input/input54/event19"
[    22.116] (II) XINPUT: Adding extended input device "DELL097E:00 04F3:311C Touchpad" (type: TOUCHPAD, id 17)
[    22.119] (**) Option "AccelerationScheme" "none"
[    22.119] (**) DELL097E:00 04F3:311C Touchpad: (accel) selected scheme none/0
[    22.119] (**) DELL097E:00 04F3:311C Touchpad: (accel) acceleration factor: 2.000
[    22.119] (**) DELL097E:00 04F3:311C Touchpad: (accel) acceleration threshold: 4
[    22.121] (II) event19 - DELL097E:00 04F3:311C Touchpad: is tagged by udev as: Touchpad
[    22.124] (II) event19 - DELL097E:00 04F3:311C Touchpad: device is a touchpad
[    22.126] (II) config/udev: Adding input device DELL097E:00 04F3:311C Touchpad (/dev/input/mouse4)
[    22.126] (II) No input driver specified, ignoring this device.
[    22.126] (II) This device may have been added with another device file.
[    22.127] (II) config/udev: Adding input device HDA Intel PCH Headphone Mic (/dev/input/event20)
[    22.127] (II) No input driver specified, ignoring this device.
[    22.127] (II) This device may have been added with another device file.
[    22.128] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event21)
[    22.128] (II) No input driver specified, ignoring this device.
[    22.128] (II) This device may have been added with another device file.
[    22.129] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=7 (/dev/input/event22)
[    22.129] (II) No input driver specified, ignoring this device.
[    22.129] (II) This device may have been added with another device file.
[    22.129] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=8 (/dev/input/event23)
[    22.129] (II) No input driver specified, ignoring this device.
[    22.130] (II) This device may have been added with another device file.
[    22.130] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=9 (/dev/input/event24)
[    22.130] (II) No input driver specified, ignoring this device.
[    22.130] (II) This device may have been added with another device file.
[    22.131] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=10 (/dev/input/event25)
[    22.131] (II) No input driver specified, ignoring this device.
[    22.131] (II) This device may have been added with another device file.
[    22.132] (II) config/udev: Adding input device Intel HID events (/dev/input/event7)
[    22.132] (**) Intel HID events: Applying InputClass "libinput keyboard catchall"
[    22.132] (II) Using input driver 'libinput' for 'Intel HID events'
[    22.132] (**) Intel HID events: always reports core events
[    22.132] (**) Option "Device" "/dev/input/event7"
[    22.132] (**) Option "_source" "server/udev"
[    22.133] (II) event7  - Intel HID events: is tagged by udev as: Keyboard
[    22.133] (II) event7  - Intel HID events: device is a keyboard
[    22.134] (II) event7  - Intel HID events: device removed
[    22.169] (**) Option "config_info" "udev:/sys/devices/platform/INT33D5:00/input/input33/event7"
[    22.169] (II) XINPUT: Adding extended input device "Intel HID events" (type: KEYBOARD, id 18)
[    22.171] (II) event7  - Intel HID events: is tagged by udev as: Keyboard
[    22.171] (II) event7  - Intel HID events: device is a keyboard
[    22.172] (II) config/udev: Adding input device Intel HID 5 button array (/dev/input/event8)
[    22.172] (**) Intel HID 5 button array: Applying InputClass "libinput keyboard catchall"
[    22.172] (II) Using input driver 'libinput' for 'Intel HID 5 button array'
[    22.172] (**) Intel HID 5 button array: always reports core events
[    22.172] (**) Option "Device" "/dev/input/event8"
[    22.172] (**) Option "_source" "server/udev"
[    22.174] (II) event8  - Intel HID 5 button array: is tagged by udev as: Keyboard
[    22.174] (II) event8  - Intel HID 5 button array: device is a keyboard
[    22.174] (II) event8  - Intel HID 5 button array: device removed
[    22.209] (**) Option "config_info" "udev:/sys/devices/platform/INT33D5:00/input/input34/event8"
[    22.209] (II) XINPUT: Adding extended input device "Intel HID 5 button array" (type: KEYBOARD, id 19)
[    22.211] (II) event8  - Intel HID 5 button array: is tagged by udev as: Keyboard
[    22.211] (II) event8  - Intel HID 5 button array: device is a keyboard
[    22.212] (II) config/udev: Adding input device Dell WMI hotkeys (/dev/input/event9)
[    22.213] (**) Dell WMI hotkeys: Applying InputClass "libinput keyboard catchall"
[    22.213] (II) Using input driver 'libinput' for 'Dell WMI hotkeys'
[    22.213] (**) Dell WMI hotkeys: always reports core events
[    22.213] (**) Option "Device" "/dev/input/event9"
[    22.213] (**) Option "_source" "server/udev"
[    22.214] (II) event9  - Dell WMI hotkeys: is tagged by udev as: Keyboard
[    22.215] (II) event9  - Dell WMI hotkeys: device is a keyboard
[    22.215] (II) event9  - Dell WMI hotkeys: device removed
[    22.276] (**) Option "config_info" "udev:/sys/devices/platform/PNP0C14:03/wmi_bus/wmi_bus-PNP0C14:03/9DBB5994-A997-11DA-B012-B622A1EF5492/input/input48/event9"
[    22.276] (II) XINPUT: Adding extended input device "Dell WMI hotkeys" (type: KEYBOARD, id 20)
[    22.278] (II) event9  - Dell WMI hotkeys: is tagged by udev as: Keyboard
[    22.278] (II) event9  - Dell WMI hotkeys: device is a keyboard
[    22.280] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event2)
[    22.280] (**) AT Translated Set 2 keyboard: Applying InputClass "libinput keyboard catchall"
[    22.280] (II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard'
[    22.280] (**) AT Translated Set 2 keyboard: always reports core events
[    22.280] (**) Option "Device" "/dev/input/event2"
[    22.280] (**) Option "_source" "server/udev"
[    22.282] (II) event2  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[    22.282] (II) event2  - AT Translated Set 2 keyboard: device is a keyboard
[    22.285] (II) event2  - AT Translated Set 2 keyboard: device removed
[    22.316] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input2/event2"
[    22.316] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 21)
[    22.318] (II) event2  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[    22.318] (II) event2  - AT Translated Set 2 keyboard: device is a keyboard
[    22.322] (II) config/udev: Adding input device PS/2 Logitech Wheel Mouse (/dev/input/event26)
[    22.322] (**) PS/2 Logitech Wheel Mouse: Applying InputClass "libinput pointer catchall"
[    22.322] (II) Using input driver 'libinput' for 'PS/2 Logitech Wheel Mouse'
[    22.322] (**) PS/2 Logitech Wheel Mouse: always reports core events
[    22.322] (**) Option "Device" "/dev/input/event26"
[    22.322] (**) Option "_source" "server/udev"
[    22.323] (II) event26 - PS/2 Logitech Wheel Mouse: is tagged by udev as: Mouse
[    22.324] (II) event26 - PS/2 Logitech Wheel Mouse: device is a pointer
[    22.324] (II) event26 - PS/2 Logitech Wheel Mouse: device removed
[    22.382] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input43/event26"
[    22.383] (II) XINPUT: Adding extended input device "PS/2 Logitech Wheel Mouse" (type: MOUSE, id 22)
[    22.383] (**) Option "AccelerationScheme" "none"
[    22.383] (**) PS/2 Logitech Wheel Mouse: (accel) selected scheme none/0
[    22.383] (**) PS/2 Logitech Wheel Mouse: (accel) acceleration factor: 2.000
[    22.383] (**) PS/2 Logitech Wheel Mouse: (accel) acceleration threshold: 4
[    22.384] (II) event26 - PS/2 Logitech Wheel Mouse: is tagged by udev as: Mouse
[    22.385] (II) event26 - PS/2 Logitech Wheel Mouse: device is a pointer
[    22.386] (II) config/udev: Adding input device PS/2 Logitech Wheel Mouse (/dev/input/mouse5)
[    22.386] (II) No input driver specified, ignoring this device.
[    22.386] (II) This device may have been added with another device file.
[    22.387] (II) config/udev: Adding input device PC Speaker (/dev/input/event14)
[    22.387] (II) No input driver specified, ignoring this device.
[    22.387] (II) This device may have been added with another device file.
[    22.424] (**) Logitech K350: Applying InputClass "libinput keyboard catchall"
[    22.424] (II) Using input driver 'libinput' for 'Logitech K350'
[    22.424] (**) Logitech K350: always reports core events
[    22.424] (**) Option "Device" "/dev/input/event6"
[    22.424] (**) Option "_source" "_driver/libinput"
[    22.424] (II) libinput: Logitech K350: is a virtual subdevice
[    22.424] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:200A.0007/input/input32/event6"
[    22.424] (II) XINPUT: Adding extended input device "Logitech K350" (type: KEYBOARD, id 23)
[    22.424] (**) Logitech K800: Applying InputClass "libinput keyboard catchall"
[    22.424] (II) Using input driver 'libinput' for 'Logitech K800'
[    22.424] (**) Logitech K800: always reports core events
[    22.424] (**) Option "Device" "/dev/input/event3"
[    22.424] (**) Option "_source" "_driver/libinput"
[    22.424] (II) libinput: Logitech K800: is a virtual subdevice
[    22.424] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:2010.0004/input/input29/event3"
[    22.424] (II) XINPUT: Adding extended input device "Logitech K800" (type: KEYBOARD, id 24)
[    27.247] (II) modeset(0): EDID vendor "SHP", prod id 5328
[    27.247] (II) modeset(0): Printing DDC gathered Modelines:
[    27.247] (II) modeset(0): Modeline "3840x2400"x0.0  592.50  3840 3888 3920 4000  2400 2403 2409 2469 -hsync -vsync (148.1 kHz eP)
[    27.247] (II) modeset(0): Modeline "3840x2400"x0.0  474.00  3840 3888 3920 4000  2400 2403 2409 2469 -hsync -vsync (118.5 kHz e)
[    28.691] (II) modeset(0): EDID vendor "SHP", prod id 5328
[    28.691] (II) modeset(0): Printing DDC gathered Modelines:
[    28.691] (II) modeset(0): Modeline "3840x2400"x0.0  592.50  3840 3888 3920 4000  2400 2403 2409 2469 -hsync -vsync (148.1 kHz eP)
[    28.691] (II) modeset(0): Modeline "3840x2400"x0.0  474.00  3840 3888 3920 4000  2400 2403 2409 2469 -hsync -vsync (118.5 kHz e)
[    33.399] (EE) event5  - Logitech M705: client bug: event processing lagging behind by 13ms, your system is too slow
[    36.496] (II) modeset(0): EDID vendor "SHP", prod id 5328
[    36.496] (II) modeset(0): Printing DDC gathered Modelines:
[    36.496] (II) modeset(0): Modeline "3840x2400"x0.0  592.50  3840 3888 3920 4000  2400 2403 2409 2469 -hsync -vsync (148.1 kHz eP)
[    36.496] (II) modeset(0): Modeline "3840x2400"x0.0  474.00  3840 3888 3920 4000  2400 2403 2409 2469 -hsync -vsync (118.5 kHz e)
[    36.497] (II) modeset(0): EDID vendor "SHP", prod id 5328
[    36.497] (II) modeset(0): Printing DDC gathered Modelines:
[    36.497] (II) modeset(0): Modeline "3840x2400"x0.0  592.50  3840 3888 3920 4000  2400 2403 2409 2469 -hsync -vsync (148.1 kHz eP)
[    36.497] (II) modeset(0): Modeline "3840x2400"x0.0  474.00  3840 3888 3920 4000  2400 2403 2409 2469 -hsync -vsync (118.5 kHz e)
$ sudo dmesg
[    0.000000] microcode: microcode updated early to revision 0xe0, date = 2020-07-08
[    0.000000] Linux version 5.10.16-arch1-1 (linux@archlinux) (gcc (GCC) 10.2.0, GNU ld (GNU Binutils) 2.36) #1 SMP PREEMPT Sat, 13 Feb 2021 20:50:18 +0000
[    0.000000] Command line: initrd=\intel-ucode.img initrd=\initramfs-linux.img rd.luks.name=4833f4ef-725f-47aa-897f-d5e672fb236b=cryptlvm root=/dev/Arch/OS rw nvidia-drm.modeset=1
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: xstate_offset[3]:  832, xstate_sizes[3]:   64
[    0.000000] x86/fpu: xstate_offset[4]:  896, xstate_sizes[4]:   64
[    0.000000] x86/fpu: xstate_offset[9]:  960, xstate_sizes[9]:    8
[    0.000000] x86/fpu: Enabled xstate features 0x21f, context size is 968 bytes, using 'compacted' format.
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000040000000-0x00000000403fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000040400000-0x000000004ea08fff] usable
[    0.000000] BIOS-e820: [mem 0x000000004ea09000-0x000000004ea09fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000004ea0a000-0x0000000051031fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000051032000-0x0000000051032fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000051033000-0x0000000051033fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000051034000-0x0000000062825fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000062826000-0x00000000658b4fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000658b5000-0x0000000065f24fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000065f25000-0x0000000065ffefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x0000000065fff000-0x0000000065ffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000066000000-0x000000006e7fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000088d7fffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] e820: update [mem 0x6270e018-0x6271d057] usable ==> usable
[    0.000000] e820: update [mem 0x6270e018-0x6271d057] usable ==> usable
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000009efff] usable
[    0.000000] reserve setup_data: [mem 0x000000000009f000-0x00000000000fffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x000000003fffffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000040000000-0x00000000403fffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000040400000-0x000000004ea08fff] usable
[    0.000000] reserve setup_data: [mem 0x000000004ea09000-0x000000004ea09fff] reserved
[    0.000000] reserve setup_data: [mem 0x000000004ea0a000-0x0000000051031fff] usable
[    0.000000] reserve setup_data: [mem 0x0000000051032000-0x0000000051032fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x0000000051033000-0x0000000051033fff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000051034000-0x000000006270e017] usable
[    0.000000] reserve setup_data: [mem 0x000000006270e018-0x000000006271d057] usable
[    0.000000] reserve setup_data: [mem 0x000000006271d058-0x0000000062825fff] usable
[    0.000000] reserve setup_data: [mem 0x0000000062826000-0x00000000658b4fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000658b5000-0x0000000065f24fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x0000000065f25000-0x0000000065ffefff] ACPI data
[    0.000000] reserve setup_data: [mem 0x0000000065fff000-0x0000000065ffffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000066000000-0x000000006e7fffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000088d7fffff] usable
[    0.000000] efi: EFI v2.70 by Dell
[    0.000000] efi: SMBIOS=0x63263000 TPMFinalLog=0x65f1d000 ACPI=0x65ffe000 ACPI 2.0=0x65ffe014 ESRT=0x6314cb98 MEMATTR=0x5f83c018 PROP=0x4fe12130 RNG=0x6314dc98 TPMEventLog=0x6271e018 
[    0.000000] efi: seeding entropy pool
[    0.000000] SMBIOS 3.2 present.
[    0.000000] DMI: Dell Inc. Precision 5550/0MCFW2, BIOS 1.5.3 11/20/2020
[    0.000000] tsc: Detected 2600.000 MHz processor
[    0.000000] tsc: Detected 2599.992 MHz TSC
[    0.000792] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000793] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000797] last_pfn = 0x88d800 max_arch_pfn = 0x400000000
[    0.000799] MTRR default type: write-back
[    0.000800] MTRR fixed ranges enabled:
[    0.000800]   00000-9FFFF write-back
[    0.000801]   A0000-BFFFF uncachable
[    0.000801]   C0000-FFFFF write-protect
[    0.000802] MTRR variable ranges enabled:
[    0.000803]   0 base 0080000000 mask 7F80000000 uncachable
[    0.000803]   1 base 0070000000 mask 7FF0000000 uncachable
[    0.000804]   2 base 006C000000 mask 7FFC000000 uncachable
[    0.000804]   3 base 006A000000 mask 7FFE000000 uncachable
[    0.000805]   4 base 4000000000 mask 4000000000 uncachable
[    0.000805]   5 disabled
[    0.000806]   6 disabled
[    0.000806]   7 disabled
[    0.000806]   8 disabled
[    0.000807]   9 disabled
[    0.001150] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.001415] last_pfn = 0x66000 max_arch_pfn = 0x400000000
[    0.010603] esrt: Reserving ESRT space from 0x000000006314cb98 to 0x000000006314cc20.
[    0.010612] check: Scanning 1 areas for low memory corruption
[    0.010615] Using GB pages for direct mapping
[    0.011219] Secure boot disabled
[    0.011220] RAMDISK: [mem 0x4d33a000-0x4ea08fff]
[    0.011227] ACPI: Early table checksum verification disabled
[    0.011229] ACPI: RSDP 0x0000000065FFE014 000024 (v02 DELL  )
[    0.011231] ACPI: XSDT 0x0000000065F93188 0000F4 (v01 DELL   Dell Inc 20170001 INTL 20160422)
[    0.011234] ACPI: FACP 0x0000000065FF0000 000114 (v06 DELL   Dell Inc 20170001 INTL 20160422)
[    0.011238] ACPI: DSDT 0x0000000065FA3000 049DC8 (v02 DELL   Dell Inc 20170001 INTL 20160422)
[    0.011240] ACPI: FACS 0x0000000065EA5000 000040
[    0.011241] ACPI: SSDT 0x0000000065FFA000 00203C (v02 CpuRef CpuSsdt  00003000 INTL 20160527)
[    0.011243] ACPI: SSDT 0x0000000065FF3000 0063E5 (v02 INTEL  DptfTabl 00001000 INTL 20160527)
[    0.011245] ACPI: SSDT 0x0000000065FF1000 00134A (v02 SaSsdt SaSsdt   00003000 INTL 20160527)
[    0.011247] ACPI: HPET 0x0000000065FEF000 000038 (v01 DELL   Dell Inc 20170001 INTL 20160422)
[    0.011248] ACPI: APIC 0x0000000065FEE000 000164 (v03 DELL   Dell Inc 20170001 INTL 20160422)
[    0.011250] ACPI: MCFG 0x0000000065FED000 00003C (v01 DELL   Dell Inc 20170001 INTL 20160422)
[    0.011254] ACPI: SSDT 0x0000000065FA1000 001749 (v02 DELL   DellRtd3 00001000 INTL 20160527)
[    0.011256] ACPI: SSDT 0x0000000065FA0000 000CB0 (v02 DELL   xh_Dell_ 00000000 INTL 20160527)
[    0.011259] ACPI: NHLT 0x0000000065F9F000 00002D (v00 DELL   Dell Inc 20170001 INTL 20160422)
[    0.011261] ACPI: SSDT 0x0000000065F9E000 000C78 (v02 DELL   UsbCTabl 00001000 INTL 20160527)
[    0.011263] ACPI: LPIT 0x0000000065F9D000 000094 (v01 DELL   Dell Inc 20170001 INTL 20160422)
[    0.011265] ACPI: WSMT 0x0000000065F9C000 000028 (v01 DELL   Dell Inc 20170001 INTL 20160422)
[    0.011266] ACPI: SSDT 0x0000000065F9B000 000B75 (v02 DELL   PtidDevc 00001000 INTL 20160527)
[    0.011268] ACPI: DBGP 0x0000000065F9A000 000034 (v01 DELL   Dell Inc 20170001 INTL 20160422)
[    0.011270] ACPI: DBG2 0x0000000065F99000 000054 (v00 DELL   Dell Inc 20170001 INTL 20160422)
[    0.011272] ACPI: SSDT 0x0000000065F98000 00060E (v02 DELL   Tpm2Tabl 00001000 INTL 20160527)
[    0.011273] ACPI: TPM2 0x0000000065F97000 000034 (v04 DELL   Dell Inc 20170001 INTL 20160422)
[    0.011275] ACPI: SLIC 0x0000000065F96000 000176 (v03 DELL   CBX3     06222004 MSFT 00010013)
[    0.011277] ACPI: BOOT 0x0000000065F95000 000028 (v01 DELL   CBX3     20170001 INTL 20160422)
[    0.011279] ACPI: MSDM 0x0000000065F94000 000055 (v03 DELL   CBX3     06222004 AMI  00010013)
[    0.011281] ACPI: SSDT 0x0000000065F8E000 0041A0 (v01 DELL   NvdTable 00001000 INTL 20160527)
[    0.011282] ACPI: SSDT 0x0000000065FFD000 000156 (v02 Dell   ADebTabl 00001000 INTL 20160527)
[    0.011284] ACPI: ASF! 0x0000000065F8D000 000074 (v32 DELL   Dell Inc 20170001 INTL 20160422)
[    0.011286] ACPI: BGRT 0x0000000065F8C000 000038 (v01 DELL   Dell Inc 20170001 INTL 20160422)
[    0.011288] ACPI: FPDT 0x0000000065F8B000 000034 (v01 DELL   Dell Inc 20170001 INTL 20160422)
[    0.011293] ACPI: Local APIC address 0xfee00000
[    0.011474] No NUMA configuration found
[    0.011475] Faking a node at [mem 0x0000000000000000-0x000000088d7fffff]
[    0.011477] NODE_DATA(0) allocated [mem 0x88d7fc000-0x88d7fffff]
[    0.044416] Zone ranges:
[    0.044417]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.044418]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.044419]   Normal   [mem 0x0000000100000000-0x000000088d7fffff]
[    0.044419]   Device   empty
[    0.044420] Movable zone start for each node
[    0.044420] Early memory node ranges
[    0.044421]   node   0: [mem 0x0000000000001000-0x000000000009efff]
[    0.044422]   node   0: [mem 0x0000000000100000-0x000000003fffffff]
[    0.044423]   node   0: [mem 0x0000000040400000-0x000000004ea08fff]
[    0.044424]   node   0: [mem 0x000000004ea0a000-0x0000000051031fff]
[    0.044424]   node   0: [mem 0x0000000051034000-0x0000000062825fff]
[    0.044424]   node   0: [mem 0x0000000065fff000-0x0000000065ffffff]
[    0.044425]   node   0: [mem 0x0000000100000000-0x000000088d7fffff]
[    0.044657] Zeroed struct page in unavailable ranges: 33854 pages
[    0.044657] Initmem setup node 0 [mem 0x0000000000001000-0x000000088d7fffff]
[    0.044659] On node 0 totalpages: 8321986
[    0.044659]   DMA zone: 64 pages used for memmap
[    0.044660]   DMA zone: 22 pages reserved
[    0.044660]   DMA zone: 3998 pages, LIFO batch:0
[    0.044675]   DMA32 zone: 6225 pages used for memmap
[    0.044675]   DMA32 zone: 398372 pages, LIFO batch:63
[    0.046087]   Normal zone: 123744 pages used for memmap
[    0.046087]   Normal zone: 7919616 pages, LIFO batch:63
[    0.078046] Reserving Intel graphics memory at [mem 0x6a800000-0x6e7fffff]
[    0.078607] ACPI: PM-Timer IO Port: 0x1808
[    0.078608] ACPI: Local APIC address 0xfee00000
[    0.078612] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.078613] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.078613] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.078613] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.078614] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.078614] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.078615] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.078615] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.078615] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[    0.078616] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[    0.078616] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[    0.078616] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[    0.078617] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[    0.078617] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[    0.078618] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[    0.078618] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[    0.078618] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
[    0.078619] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
[    0.078619] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
[    0.078620] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
[    0.078652] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[    0.078653] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.078654] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.078654] ACPI: IRQ0 used by override.
[    0.078655] ACPI: IRQ9 used by override.
[    0.078656] Using ACPI (MADT) for SMP configuration information
[    0.078657] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.078662] e820: update [mem 0x5f6f7000-0x5f773fff] usable ==> reserved
[    0.078667] TSC deadline timer available
[    0.078668] smpboot: Allowing 12 CPUs, 0 hotplug CPUs
[    0.078680] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.078681] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
[    0.078682] PM: hibernation: Registered nosave memory: [mem 0x40000000-0x403fffff]
[    0.078683] PM: hibernation: Registered nosave memory: [mem 0x4ea09000-0x4ea09fff]
[    0.078684] PM: hibernation: Registered nosave memory: [mem 0x51032000-0x51032fff]
[    0.078684] PM: hibernation: Registered nosave memory: [mem 0x51033000-0x51033fff]
[    0.078685] PM: hibernation: Registered nosave memory: [mem 0x5f6f7000-0x5f773fff]
[    0.078686] PM: hibernation: Registered nosave memory: [mem 0x6270e000-0x6270efff]
[    0.078687] PM: hibernation: Registered nosave memory: [mem 0x6271d000-0x6271dfff]
[    0.078688] PM: hibernation: Registered nosave memory: [mem 0x62826000-0x658b4fff]
[    0.078688] PM: hibernation: Registered nosave memory: [mem 0x658b5000-0x65f24fff]
[    0.078689] PM: hibernation: Registered nosave memory: [mem 0x65f25000-0x65ffefff]
[    0.078690] PM: hibernation: Registered nosave memory: [mem 0x66000000-0x6e7fffff]
[    0.078691] PM: hibernation: Registered nosave memory: [mem 0x6e800000-0xdfffffff]
[    0.078691] PM: hibernation: Registered nosave memory: [mem 0xe0000000-0xefffffff]
[    0.078692] PM: hibernation: Registered nosave memory: [mem 0xf0000000-0xfeffffff]
[    0.078692] PM: hibernation: Registered nosave memory: [mem 0xff000000-0xffffffff]
[    0.078694] [mem 0x6e800000-0xdfffffff] available for PCI devices
[    0.078695] Booting paravirtualized kernel on bare hardware
[    0.078697] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
[    0.081879] setup_percpu: NR_CPUS:320 nr_cpumask_bits:320 nr_cpu_ids:12 nr_node_ids:1
[    0.082065] percpu: Embedded 56 pages/cpu s192512 r8192 d28672 u262144
[    0.082069] pcpu-alloc: s192512 r8192 d28672 u262144 alloc=1*2097152
[    0.082070] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 -- -- -- -- 
[    0.082088] Built 1 zonelists, mobility grouping on.  Total pages: 8191931
[    0.082088] Policy zone: Normal
[    0.082089] Kernel command line: initrd=\intel-ucode.img initrd=\initramfs-linux.img rd.luks.name=4833f4ef-725f-47aa-897f-d5e672fb236b=cryptlvm root=/dev/Arch/OS rw nvidia-drm.modeset=1
[    0.083162] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[    0.083675] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[    0.083735] mem auto-init: stack:byref_all(zero), heap alloc:on, heap free:off
[    0.130725] Memory: 32465116K/33287944K available (14344K kernel code, 2034K rwdata, 8808K rodata, 1704K init, 4332K bss, 822568K reserved, 0K cma-reserved)
[    0.130738] random: get_random_u64 called from __kmem_cache_create+0x26/0x520 with crng_init=0
[    0.130807] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=12, Nodes=1
[    0.130814] ftrace: allocating 41612 entries in 163 pages
[    0.140002] ftrace: allocated 163 pages with 4 groups
[    0.140070] rcu: Preemptible hierarchical RCU implementation.
[    0.140070] rcu: 	RCU dyntick-idle grace-period acceleration is enabled.
[    0.140071] rcu: 	RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=12.
[    0.140071] rcu: 	RCU priority boosting: priority 1 delay 500 ms.
[    0.140072] 	Trampoline variant of Tasks RCU enabled.
[    0.140072] 	Rude variant of Tasks RCU enabled.
[    0.140072] 	Tracing variant of Tasks RCU enabled.
[    0.140073] rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
[    0.140073] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=12
[    0.142285] NR_IRQS: 20736, nr_irqs: 2152, preallocated irqs: 16
[    0.142707] Console: colour dummy device 80x25
[    0.142717] printk: console [tty0] enabled
[    0.142728] ACPI: Core revision 20200925
[    0.143053] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635855245 ns
[    0.143170] APIC: Switch to symmetric I/O mode setup
[    0.144450] x2apic: IRQ remapping doesn't support X2APIC mode
[    0.144727] Switched APIC routing to physical flat.
[    0.149414] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.163045] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x257a34a6eea, max_idle_ns: 440795264358 ns
[    0.163048] Calibrating delay loop (skipped), value calculated using timer frequency.. 5202.65 BogoMIPS (lpj=8666640)
[    0.163049] pid_max: default: 32768 minimum: 301
[    0.165646] LSM: Security Framework initializing
[    0.165649] Yama: becoming mindful.
[    0.165667] LSM support for eBPF active
[    0.165722] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.165762] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.165906] x86/cpu: VMX (outside TXT) disabled by BIOS
[    0.165918] mce: CPU0: Thermal monitoring enabled (TM1)
[    0.165934] process: using mwait in idle threads
[    0.165935] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
[    0.165936] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[    0.165937] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.165938] Spectre V2 : Mitigation: Enhanced IBRS
[    0.165939] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.165939] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.165940] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
[    0.166098] Freeing SMP alternatives memory: 36K
[    0.167827] smpboot: CPU0: Intel(R) Core(TM) i7-10750H CPU @ 2.60GHz (family: 0x6, model: 0xa5, stepping: 0x2)
[    0.167894] Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
[    0.167900] ... version:                4
[    0.167900] ... bit width:              48
[    0.167901] ... generic registers:      4
[    0.167901] ... value mask:             0000ffffffffffff
[    0.167901] ... max period:             00007fffffffffff
[    0.167902] ... fixed-purpose events:   3
[    0.167902] ... event mask:             000000070000000f
[    0.167962] rcu: Hierarchical SRCU implementation.
[    0.168460] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    0.168517] smp: Bringing up secondary CPUs ...
[    0.168570] x86: Booting SMP configuration:
[    0.168571] .... node  #0, CPUs:        #1  #2  #3  #4  #5  #6  #7  #8  #9 #10 #11
[    0.176799] smp: Brought up 1 node, 12 CPUs
[    0.176799] smpboot: Max logical packages: 1
[    0.176799] smpboot: Total of 12 processors activated (62424.80 BogoMIPS)
[    0.180303] devtmpfs: initialized
[    0.180303] x86/mm: Memory block size: 128MB
[    0.180705] PM: Registering ACPI NVS region [mem 0x51032000-0x51032fff] (4096 bytes)
[    0.180705] PM: Registering ACPI NVS region [mem 0x658b5000-0x65f24fff] (6750208 bytes)
[    0.180705] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[    0.180705] futex hash table entries: 4096 (order: 6, 262144 bytes, linear)
[    0.180705] pinctrl core: initialized pinctrl subsystem
[    0.180705] PM: RTC time: 16:40:10, date: 2021-03-06
[    0.180705] NET: Registered protocol family 16
[    0.180705] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    0.180705] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.180705] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.180705] audit: initializing netlink subsys (disabled)
[    0.180705] audit: type=2000 audit(1615048810.036:1): state=initialized audit_enabled=0 res=1
[    0.180705] thermal_sys: Registered thermal governor 'fair_share'
[    0.180705] thermal_sys: Registered thermal governor 'bang_bang'
[    0.180705] thermal_sys: Registered thermal governor 'step_wise'
[    0.180705] thermal_sys: Registered thermal governor 'user_space'
[    0.180705] thermal_sys: Registered thermal governor 'power_allocator'
[    0.180705] cpuidle: using governor ladder
[    0.180705] cpuidle: using governor menu
[    0.180705] Simple Boot Flag at 0x47 set to 0x80
[    0.180705] ACPI: bus type PCI registered
[    0.180705] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.180705] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.180705] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[    0.180705] PCI: Using configuration type 1 for base access
[    0.180705] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.183544] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.183544] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.183544] fbcon: Taking over console
[    0.183544] ACPI: Added _OSI(Module Device)
[    0.183544] ACPI: Added _OSI(Processor Device)
[    0.183544] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.183544] ACPI: Added _OSI(Processor Aggregator Device)
[    0.183544] ACPI: Added _OSI(Linux-Dell-Video)
[    0.183544] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.183544] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    0.222715] ACPI: 11 ACPI AML tables successfully acquired and loaded
[    0.293592] ACPI: Dynamic OEM Table Load:
[    0.293601] ACPI: SSDT 0xFFFF9991012D5800 0000FC (v02 PmRef  Cpu0Psd  00003000 INTL 20160527)
[    0.295098] ACPI: \_SB_.PR00: _OSC native thermal LVT Acked
[    0.296613] ACPI: Dynamic OEM Table Load:
[    0.296621] ACPI: SSDT 0xFFFF9991013B0800 000502 (v02 PmRef  Cpu0Cst  00003001 INTL 20160527)
[    0.298261] ACPI: Dynamic OEM Table Load:
[    0.298268] ACPI: SSDT 0xFFFF9991013B4000 000581 (v02 PmRef  Cpu0Ist  00003000 INTL 20160527)
[    0.299993] ACPI: Dynamic OEM Table Load:
[    0.299999] ACPI: SSDT 0xFFFF9991012EA600 00016C (v02 PmRef  Cpu0Hwp  00003000 INTL 20160527)
[    0.301565] ACPI: Dynamic OEM Table Load:
[    0.301573] ACPI: SSDT 0xFFFF99910136F000 000BEA (v02 PmRef  HwpLvt   00003000 INTL 20160527)
[    0.303401] ACPI: Dynamic OEM Table Load:
[    0.303407] ACPI: SSDT 0xFFFF9991013B5000 000778 (v02 PmRef  ApIst    00003000 INTL 20160527)
[    0.304944] ACPI: Dynamic OEM Table Load:
[    0.304949] ACPI: SSDT 0xFFFF9991012E0C00 0003D7 (v02 PmRef  ApHwp    00003000 INTL 20160527)
[    0.306507] ACPI: Dynamic OEM Table Load:
[    0.306514] ACPI: SSDT 0xFFFF99910136D000 000D22 (v02 PmRef  ApPsd    00003000 INTL 20160527)
[    0.308696] ACPI: Dynamic OEM Table Load:
[    0.308701] ACPI: SSDT 0xFFFF9991012E2000 0003CA (v02 PmRef  ApCst    00003000 INTL 20160527)
[    0.314132] ACPI: EC: EC started
[    0.314133] ACPI: EC: interrupt blocked
[    0.316494] ACPI: EC: EC_CMD/EC_SC=0x934, EC_DATA=0x930
[    0.316496] ACPI: \_SB_.PCI0.LPCB.ECDV: Boot DSDT EC used to handle transactions
[    0.316496] ACPI: Interpreter enabled
[    0.316532] ACPI: (supports S0 S3 S4 S5)
[    0.316533] ACPI: Using IOAPIC for interrupt routing
[    0.316561] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.317304] ACPI: Enabled 9 GPEs in block 00 to 7F
[    0.317597] ACPI: Power Resource [PG00] (on)
[    0.323486] ACPI: Power Resource [USBC] (on)
[    0.325607] ACPI: Power Resource [PXP] (on)
[    0.331820] ACPI: Power Resource [V0PR] (on)
[    0.331950] ACPI: Power Resource [V1PR] (on)
[    0.332077] ACPI: Power Resource [V2PR] (on)
[    0.334966] ACPI: Power Resource [WRST] (on)
[    0.343494] ACPI: Power Resource [PIN] (off)
[    0.343800] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
[    0.343804] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    0.344964] acpi PNP0A08:00: _OSC: platform does not support [AER]
[    0.347125] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability LTR DPC]
[    0.349505] PCI host bridge to bus 0000:00
[    0.349506] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.349507] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.349508] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.349508] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff window]
[    0.349509] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff window]
[    0.349509] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff window]
[    0.349510] pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff window]
[    0.349510] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff window]
[    0.349511] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window]
[    0.349512] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]
[    0.349512] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff window]
[    0.349513] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff window]
[    0.349513] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff window]
[    0.349514] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff window]
[    0.349514] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff window]
[    0.349515] pci_bus 0000:00: root bus resource [mem 0x000f0000-0x000fffff window]
[    0.349516] pci_bus 0000:00: root bus resource [mem 0x6e800000-0xdfffffff window]
[    0.349516] pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
[    0.349517] pci_bus 0000:00: root bus resource [mem 0xfc800000-0xfe7fffff window]
[    0.349518] pci_bus 0000:00: root bus resource [bus 00-fe]
[    0.349534] pci 0000:00:00.0: [8086:9b54] type 00 class 0x060000
[    0.350552] pci 0000:00:01.0: [8086:1901] type 01 class 0x060400
[    0.350582] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.351548] pci 0000:00:02.0: [8086:9bc4] type 00 class 0x030000
[    0.351553] pci 0000:00:02.0: reg 0x10: [mem 0x604a000000-0x604affffff 64bit]
[    0.351556] pci 0000:00:02.0: reg 0x18: [mem 0x4000000000-0x400fffffff 64bit pref]
[    0.351559] pci 0000:00:02.0: reg 0x20: [io  0x4000-0x403f]
[    0.351570] pci 0000:00:02.0: BAR 2: assigned to efifb
[    0.352386] pci 0000:00:04.0: [8086:1903] type 00 class 0x118000
[    0.352391] pci 0000:00:04.0: reg 0x10: [mem 0x604b110000-0x604b117fff 64bit]
[    0.353257] pci 0000:00:08.0: [8086:1911] type 00 class 0x088000
[    0.353263] pci 0000:00:08.0: reg 0x10: [mem 0x604b12b000-0x604b12bfff 64bit]
[    0.354106] pci 0000:00:12.0: [8086:06f9] type 00 class 0x118000
[    0.354118] pci 0000:00:12.0: reg 0x10: [mem 0x604b12a000-0x604b12afff 64bit]
[    0.354980] pci 0000:00:13.0: [8086:06fc] type 00 class 0x070000
[    0.354995] pci 0000:00:13.0: reg 0x10: [mem 0x604b122000-0x604b123fff 64bit]
[    0.355048] pci 0000:00:13.0: PME# supported from D0 D3hot
[    0.355939] pci 0000:00:14.0: [8086:06ed] type 00 class 0x0c0330
[    0.355951] pci 0000:00:14.0: reg 0x10: [mem 0x604b100000-0x604b10ffff 64bit]
[    0.356000] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.356870] pci 0000:00:14.2: [8086:06ef] type 00 class 0x050000
[    0.356883] pci 0000:00:14.2: reg 0x10: [mem 0x604b120000-0x604b121fff 64bit]
[    0.356892] pci 0000:00:14.2: reg 0x18: [mem 0x604b129000-0x604b129fff 64bit]
[    0.357766] pci 0000:00:14.3: [8086:06f0] type 00 class 0x028000
[    0.357781] pci 0000:00:14.3: reg 0x10: [mem 0x604b11c000-0x604b11ffff 64bit]
[    0.357921] pci 0000:00:14.3: PME# supported from D0 D3hot D3cold
[    0.358803] pci 0000:00:15.0: [8086:06e8] type 00 class 0x0c8000
[    0.358853] pci 0000:00:15.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[    0.359817] pci 0000:00:15.1: [8086:06e9] type 00 class 0x0c8000
[    0.359867] pci 0000:00:15.1: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[    0.360859] pci 0000:00:16.0: [8086:06e0] type 00 class 0x078000
[    0.360876] pci 0000:00:16.0: reg 0x10: [mem 0x604b126000-0x604b126fff 64bit]
[    0.360943] pci 0000:00:16.0: PME# supported from D3hot
[    0.361901] pci 0000:00:1c.0: [8086:06b8] type 01 class 0x060400
[    0.362717] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.362740] pci 0000:00:1c.0: PTM enabled (root), 4ns granularity
[    0.362998] pci 0000:00:1d.0: [8086:06b0] type 01 class 0x060400
[    0.363067] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.363088] pci 0000:00:1d.0: PTM enabled (root), 4ns granularity
[    0.364130] pci 0000:00:1e.0: [8086:06a8] type 00 class 0x078000
[    0.364180] pci 0000:00:1e.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[    0.365155] pci 0000:00:1f.0: [8086:068e] type 00 class 0x060100
[    0.366062] pci 0000:00:1f.3: [8086:06c8] type 00 class 0x040380
[    0.366092] pci 0000:00:1f.3: reg 0x10: [mem 0x604b118000-0x604b11bfff 64bit]
[    0.366128] pci 0000:00:1f.3: reg 0x20: [mem 0x604b000000-0x604b0fffff 64bit]
[    0.366204] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[    0.367191] pci 0000:00:1f.4: [8086:06a3] type 00 class 0x0c0500
[    0.367212] pci 0000:00:1f.4: reg 0x10: [mem 0x604b124000-0x604b1240ff 64bit]
[    0.367233] pci 0000:00:1f.4: reg 0x20: [io  0xefa0-0xefbf]
[    0.368083] pci 0000:00:1f.5: [8086:06a4] type 00 class 0x0c8000
[    0.368095] pci 0000:00:1f.5: reg 0x10: [mem 0xfe010000-0xfe010fff]
[    0.368968] pci 0000:01:00.0: [10de:1fb8] type 00 class 0x030200
[    0.368986] pci 0000:01:00.0: reg 0x10: [mem 0xb3000000-0xb3ffffff]
[    0.369000] pci 0000:01:00.0: reg 0x14: [mem 0x70000000-0x7fffffff 64bit pref]
[    0.369013] pci 0000:01:00.0: reg 0x1c: [mem 0x80000000-0x81ffffff 64bit pref]
[    0.369021] pci 0000:01:00.0: reg 0x24: [io  0x3000-0x307f]
[    0.369030] pci 0000:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    0.369107] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[    0.369153] pci 0000:01:00.0: 63.008 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x8 link at 0000:00:01.0 (capable of 126.016 Gb/s with 8.0 GT/s PCIe x16 link)
[    0.369226] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.369227] pci 0000:00:01.0:   bridge window [io  0x3000-0x3fff]
[    0.369229] pci 0000:00:01.0:   bridge window [mem 0xb3000000-0xb3ffffff]
[    0.369231] pci 0000:00:01.0:   bridge window [mem 0x70000000-0x81ffffff 64bit pref]
[    0.369290] pci 0000:02:00.0: [8086:15ea] type 01 class 0x060400
[    0.369335] pci 0000:02:00.0: enabling Extended Tags
[    0.369427] pci 0000:02:00.0: supports D1 D2
[    0.369427] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.369505] pci 0000:02:00.0: PTM enabled, 4ns granularity
[    0.369562] pci 0000:00:1c.0: PCI bridge to [bus 02-6b]
[    0.369566] pci 0000:00:1c.0:   bridge window [mem 0x84000000-0xb20fffff]
[    0.369569] pci 0000:00:1c.0:   bridge window [mem 0x6000000000-0x6049ffffff 64bit pref]
[    0.369642] pci 0000:03:00.0: [8086:15ea] type 01 class 0x060400
[    0.369689] pci 0000:03:00.0: enabling Extended Tags
[    0.369782] pci 0000:03:00.0: supports D1 D2
[    0.369783] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.369903] pci 0000:03:01.0: [8086:15ea] type 01 class 0x060400
[    0.369951] pci 0000:03:01.0: enabling Extended Tags
[    0.370045] pci 0000:03:01.0: supports D1 D2
[    0.370046] pci 0000:03:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.370163] pci 0000:03:02.0: [8086:15ea] type 01 class 0x060400
[    0.370210] pci 0000:03:02.0: enabling Extended Tags
[    0.370300] pci 0000:03:02.0: supports D1 D2
[    0.370301] pci 0000:03:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.370419] pci 0000:03:04.0: [8086:15ea] type 01 class 0x060400
[    0.370467] pci 0000:03:04.0: enabling Extended Tags
[    0.370560] pci 0000:03:04.0: supports D1 D2
[    0.370561] pci 0000:03:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.370679] pci 0000:02:00.0: PCI bridge to [bus 03-6b]
[    0.370686] pci 0000:02:00.0:   bridge window [mem 0x84000000-0xb1ffffff]
[    0.370691] pci 0000:02:00.0:   bridge window [mem 0x6000000000-0x6049ffffff 64bit pref]
[    0.370749] pci 0000:04:00.0: [8086:15eb] type 00 class 0x088000
[    0.370765] pci 0000:04:00.0: reg 0x10: [mem 0xb1f00000-0xb1f3ffff]
[    0.370772] pci 0000:04:00.0: reg 0x14: [mem 0xb1f40000-0xb1f40fff]
[    0.370814] pci 0000:04:00.0: enabling Extended Tags
[    0.370914] pci 0000:04:00.0: supports D1 D2
[    0.370915] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.371032] pci 0000:03:00.0: PCI bridge to [bus 04]
[    0.371039] pci 0000:03:00.0:   bridge window [mem 0xb1f00000-0xb1ffffff]
[    0.371079] pci 0000:03:01.0: PCI bridge to [bus 05-37]
[    0.371086] pci 0000:03:01.0:   bridge window [mem 0x9b000000-0xb1efffff]
[    0.371091] pci 0000:03:01.0:   bridge window [mem 0x6025000000-0x6049ffffff 64bit pref]
[    0.371166] pci 0000:38:00.0: [8086:15ec] type 00 class 0x0c0330
[    0.371186] pci 0000:38:00.0: reg 0x10: [mem 0x9af00000-0x9af0ffff]
[    0.371257] pci 0000:38:00.0: enabling Extended Tags
[    0.371370] pci 0000:38:00.0: supports D1 D2
[    0.371371] pci 0000:38:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.371463] pci 0000:38:00.0: 8.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s PCIe x4 link at 0000:03:02.0 (capable of 31.504 Gb/s with 8.0 GT/s PCIe x4 link)
[    0.371523] pci 0000:03:02.0: PCI bridge to [bus 38]
[    0.371530] pci 0000:03:02.0:   bridge window [mem 0x9af00000-0x9affffff]
[    0.371568] pci 0000:03:04.0: PCI bridge to [bus 39-6b]
[    0.371575] pci 0000:03:04.0:   bridge window [mem 0x84000000-0x9aefffff]
[    0.371580] pci 0000:03:04.0:   bridge window [mem 0x6000000000-0x6024ffffff 64bit pref]
[    0.371652] pci 0000:6c:00.0: [1179:011a] type 00 class 0x010802
[    0.371670] pci 0000:6c:00.0: reg 0x10: [mem 0xb4000000-0xb4003fff 64bit]
[    0.371861] pci 0000:00:1d.0: PCI bridge to [bus 6c]
[    0.371865] pci 0000:00:1d.0:   bridge window [mem 0xb4000000-0xb40fffff]
[    0.384941] ACPI: EC: interrupt unblocked
[    0.384942] ACPI: EC: event unblocked
[    0.384950] ACPI: EC: EC_CMD/EC_SC=0x934, EC_DATA=0x930
[    0.384950] ACPI: EC: GPE=0x6e
[    0.384951] ACPI: \_SB_.PCI0.LPCB.ECDV: Boot DSDT EC initialization complete
[    0.384952] ACPI: \_SB_.PCI0.LPCB.ECDV: EC: Used to handle transactions and events
[    0.385006] iommu: Default domain type: Translated 
[    0.385013] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    0.385013] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.385013] pci 0000:00:02.0: vgaarb: bridge control possible
[    0.385013] vgaarb: loaded
[    0.385013] SCSI subsystem initialized
[    0.385013] libata version 3.00 loaded.
[    0.385013] ACPI: bus type USB registered
[    0.385013] usbcore: registered new interface driver usbfs
[    0.385013] usbcore: registered new interface driver hub
[    0.385013] usbcore: registered new device driver usb
[    0.385013] pps_core: LinuxPPS API ver. 1 registered
[    0.385013] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.385013] PTP clock support registered
[    0.385013] EDAC MC: Ver: 3.0.0
[    0.385013] Registered efivars operations
[    0.385013] NetLabel: Initializing
[    0.385013] NetLabel:  domain hash size = 128
[    0.385013] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.385013] NetLabel:  unlabeled traffic allowed by default
[    0.385013] PCI: Using ACPI for IRQ routing
[    0.415134] PCI: pci_cache_line_size set to 64 bytes
[    0.415444] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
[    0.415445] e820: reserve RAM buffer [mem 0x4ea09000-0x4fffffff]
[    0.415446] e820: reserve RAM buffer [mem 0x51032000-0x53ffffff]
[    0.415446] e820: reserve RAM buffer [mem 0x5f6f7000-0x5fffffff]
[    0.415447] e820: reserve RAM buffer [mem 0x6270e018-0x63ffffff]
[    0.415447] e820: reserve RAM buffer [mem 0x62826000-0x63ffffff]
[    0.415448] e820: reserve RAM buffer [mem 0x66000000-0x67ffffff]
[    0.415448] e820: reserve RAM buffer [mem 0x88d800000-0x88fffffff]
[    0.415451] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.415451] hpet0: 8 comparators, 64-bit 24.000000 MHz counter
[    0.419762] clocksource: Switched to clocksource tsc-early
[    0.426031] VFS: Disk quotas dquot_6.6.0
[    0.426040] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.426079] pnp: PnP ACPI init
[    0.426154] system 00:00: [mem 0x40000000-0x403fffff] has been reserved
[    0.426157] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.426333] system 00:01: [io  0x1800-0x18fe] has been reserved
[    0.426334] system 00:01: [mem 0xfd000000-0xfd69ffff] has been reserved
[    0.426335] system 00:01: [mem 0xfd6c0000-0xfd6cffff] has been reserved
[    0.426336] system 00:01: [mem 0xfd6f0000-0xfdffffff] has been reserved
[    0.426337] system 00:01: [mem 0xfe000000-0xfe01ffff] could not be reserved
[    0.426338] system 00:01: [mem 0xfe200000-0xfe7fffff] has been reserved
[    0.426339] system 00:01: [mem 0xff000000-0xffffffff] has been reserved
[    0.426341] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.426578] system 00:02: [io  0x2000-0x20fe] has been reserved
[    0.426580] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.426678] system 00:03: [io  0x0680-0x069f] has been reserved
[    0.426679] system 00:03: [io  0x164e-0x164f] has been reserved
[    0.426680] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.426691] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.426757] system 00:05: [io  0x1854-0x1857] has been reserved
[    0.426759] system 00:05: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    0.426859] pnp 00:06: Plug and Play ACPI device, IDs PNP0303 (active)
[    0.426871] pnp 00:07: Plug and Play ACPI device, IDs DLL097e PNP0f13 (active)
[    0.427760] system 00:08: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.427761] system 00:08: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.427762] system 00:08: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.427763] system 00:08: [mem 0xe0000000-0xefffffff] has been reserved
[    0.427764] system 00:08: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.427764] system 00:08: [mem 0xfed90000-0xfed93fff] has been reserved
[    0.427765] system 00:08: [mem 0xfed45000-0xfed8ffff] has been reserved
[    0.427766] system 00:08: [mem 0xfee00000-0xfeefffff] has been reserved
[    0.427768] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.428050] system 00:09: [mem 0xfe038000-0xfe038fff] has been reserved
[    0.428051] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.431032] pnp: PnP ACPI: found 10 devices
[    0.436194] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.436225] NET: Registered protocol family 2
[    0.436315] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
[    0.436435] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.436612] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[    0.436656] TCP: Hash tables configured (established 262144 bind 65536)
[    0.436728] MPTCP token hash table entries: 32768 (order: 7, 786432 bytes, linear)
[    0.436791] UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    0.436841] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    0.436912] NET: Registered protocol family 1
[    0.436915] NET: Registered protocol family 44
[    0.436918] pci 0000:01:00.0: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
[    0.436921] pci 0000:03:01.0: bridge window [io  0x1000-0x0fff] to [bus 05-37] add_size 1000
[    0.436922] pci 0000:03:04.0: bridge window [io  0x1000-0x0fff] to [bus 39-6b] add_size 1000
[    0.436923] pci 0000:02:00.0: bridge window [io  0x1000-0x0fff] to [bus 03-6b] add_size 2000
[    0.436924] pci 0000:00:1c.0: bridge window [io  0x1000-0x0fff] to [bus 02-6b] add_size 3000
[    0.436932] pci 0000:00:15.0: BAR 0: assigned [mem 0x4010000000-0x4010000fff 64bit]
[    0.436976] pci 0000:00:15.1: BAR 0: assigned [mem 0x4010001000-0x4010001fff 64bit]
[    0.437019] pci 0000:00:1c.0: BAR 13: assigned [io  0x5000-0x7fff]
[    0.437021] pci 0000:00:1e.0: BAR 0: assigned [mem 0x4010002000-0x4010002fff 64bit]
[    0.437063] pci 0000:01:00.0: BAR 6: no space for [mem size 0x00080000 pref]
[    0.437064] pci 0000:01:00.0: BAR 6: failed to assign [mem size 0x00080000 pref]
[    0.437065] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.437066] pci 0000:00:01.0:   bridge window [io  0x3000-0x3fff]
[    0.437068] pci 0000:00:01.0:   bridge window [mem 0xb3000000-0xb3ffffff]
[    0.437069] pci 0000:00:01.0:   bridge window [mem 0x70000000-0x81ffffff 64bit pref]
[    0.437072] pci 0000:02:00.0: BAR 13: assigned [io  0x5000-0x6fff]
[    0.437073] pci 0000:03:01.0: BAR 13: assigned [io  0x5000-0x5fff]
[    0.437073] pci 0000:03:04.0: BAR 13: assigned [io  0x6000-0x6fff]
[    0.437074] pci 0000:03:00.0: PCI bridge to [bus 04]
[    0.437081] pci 0000:03:00.0:   bridge window [mem 0xb1f00000-0xb1ffffff]
[    0.437088] pci 0000:03:01.0: PCI bridge to [bus 05-37]
[    0.437090] pci 0000:03:01.0:   bridge window [io  0x5000-0x5fff]
[    0.437094] pci 0000:03:01.0:   bridge window [mem 0x9b000000-0xb1efffff]
[    0.437096] pci 0000:03:01.0:   bridge window [mem 0x6025000000-0x6049ffffff 64bit pref]
[    0.437101] pci 0000:03:02.0: PCI bridge to [bus 38]
[    0.437105] pci 0000:03:02.0:   bridge window [mem 0x9af00000-0x9affffff]
[    0.437112] pci 0000:03:04.0: PCI bridge to [bus 39-6b]
[    0.437114] pci 0000:03:04.0:   bridge window [io  0x6000-0x6fff]
[    0.437117] pci 0000:03:04.0:   bridge window [mem 0x84000000-0x9aefffff]
[    0.437120] pci 0000:03:04.0:   bridge window [mem 0x6000000000-0x6024ffffff 64bit pref]
[    0.437125] pci 0000:02:00.0: PCI bridge to [bus 03-6b]
[    0.437126] pci 0000:02:00.0:   bridge window [io  0x5000-0x6fff]
[    0.437130] pci 0000:02:00.0:   bridge window [mem 0x84000000-0xb1ffffff]
[    0.437133] pci 0000:02:00.0:   bridge window [mem 0x6000000000-0x6049ffffff 64bit pref]
[    0.437137] pci 0000:00:1c.0: PCI bridge to [bus 02-6b]
[    0.437138] pci 0000:00:1c.0:   bridge window [io  0x5000-0x7fff]
[    0.437141] pci 0000:00:1c.0:   bridge window [mem 0x84000000-0xb20fffff]
[    0.437143] pci 0000:00:1c.0:   bridge window [mem 0x6000000000-0x6049ffffff 64bit pref]
[    0.437146] pci 0000:00:1d.0: PCI bridge to [bus 6c]
[    0.437148] pci 0000:00:1d.0:   bridge window [mem 0xb4000000-0xb40fffff]
[    0.437153] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.437153] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.437154] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.437155] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff window]
[    0.437155] pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff window]
[    0.437156] pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff window]
[    0.437156] pci_bus 0000:00: resource 10 [mem 0x000cc000-0x000cffff window]
[    0.437157] pci_bus 0000:00: resource 11 [mem 0x000d0000-0x000d3fff window]
[    0.437158] pci_bus 0000:00: resource 12 [mem 0x000d4000-0x000d7fff window]
[    0.437158] pci_bus 0000:00: resource 13 [mem 0x000d8000-0x000dbfff window]
[    0.437159] pci_bus 0000:00: resource 14 [mem 0x000dc000-0x000dffff window]
[    0.437159] pci_bus 0000:00: resource 15 [mem 0x000e0000-0x000e3fff window]
[    0.437160] pci_bus 0000:00: resource 16 [mem 0x000e4000-0x000e7fff window]
[    0.437161] pci_bus 0000:00: resource 17 [mem 0x000e8000-0x000ebfff window]
[    0.437161] pci_bus 0000:00: resource 18 [mem 0x000ec000-0x000effff window]
[    0.437162] pci_bus 0000:00: resource 19 [mem 0x000f0000-0x000fffff window]
[    0.437162] pci_bus 0000:00: resource 20 [mem 0x6e800000-0xdfffffff window]
[    0.437163] pci_bus 0000:00: resource 21 [mem 0x4000000000-0x7fffffffff window]
[    0.437164] pci_bus 0000:00: resource 22 [mem 0xfc800000-0xfe7fffff window]
[    0.437164] pci_bus 0000:01: resource 0 [io  0x3000-0x3fff]
[    0.437165] pci_bus 0000:01: resource 1 [mem 0xb3000000-0xb3ffffff]
[    0.437166] pci_bus 0000:01: resource 2 [mem 0x70000000-0x81ffffff 64bit pref]
[    0.437166] pci_bus 0000:02: resource 0 [io  0x5000-0x7fff]
[    0.437167] pci_bus 0000:02: resource 1 [mem 0x84000000-0xb20fffff]
[    0.437167] pci_bus 0000:02: resource 2 [mem 0x6000000000-0x6049ffffff 64bit pref]
[    0.437168] pci_bus 0000:03: resource 0 [io  0x5000-0x6fff]
[    0.437169] pci_bus 0000:03: resource 1 [mem 0x84000000-0xb1ffffff]
[    0.437169] pci_bus 0000:03: resource 2 [mem 0x6000000000-0x6049ffffff 64bit pref]
[    0.437170] pci_bus 0000:04: resource 1 [mem 0xb1f00000-0xb1ffffff]
[    0.437171] pci_bus 0000:05: resource 0 [io  0x5000-0x5fff]
[    0.437171] pci_bus 0000:05: resource 1 [mem 0x9b000000-0xb1efffff]
[    0.437172] pci_bus 0000:05: resource 2 [mem 0x6025000000-0x6049ffffff 64bit pref]
[    0.437172] pci_bus 0000:38: resource 1 [mem 0x9af00000-0x9affffff]
[    0.437173] pci_bus 0000:39: resource 0 [io  0x6000-0x6fff]
[    0.437174] pci_bus 0000:39: resource 1 [mem 0x84000000-0x9aefffff]
[    0.437175] pci_bus 0000:39: resource 2 [mem 0x6000000000-0x6024ffffff 64bit pref]
[    0.437175] pci_bus 0000:6c: resource 1 [mem 0xb4000000-0xb40fffff]
[    0.437298] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.437971] PCI: CLS 0 bytes, default 64
[    0.437994] Trying to unpack rootfs image as initramfs...
[    0.530296] Freeing initrd memory: 23356K
[    0.530320] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.530321] software IO TLB: mapped [mem 0x000000005b6f7000-0x000000005f6f7000] (64MB)
[    0.530879] check: Scanning for low memory corruption every 60 seconds
[    0.531078] Initialise system trusted keyrings
[    0.531084] Key type blacklist registered
[    0.531111] workingset: timestamp_bits=41 max_order=23 bucket_order=0
[    0.531690] zbud: loaded
[    0.537038] Key type asymmetric registered
[    0.537039] Asymmetric key parser 'x509' registered
[    0.537043] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
[    0.537062] io scheduler mq-deadline registered
[    0.537063] io scheduler kyber registered
[    0.537077] io scheduler bfq registered
[    0.537141] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[    0.539351] pcieport 0000:00:01.0: PME: Signaling with IRQ 120
[    0.539414] pcieport 0000:00:1c.0: PME: Signaling with IRQ 121
[    0.539426] pcieport 0000:00:1c.0: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    0.539608] pcieport 0000:00:1d.0: PME: Signaling with IRQ 122
[    0.540003] pcieport 0000:03:01.0: pciehp: Slot #1 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    0.540317] pcieport 0000:03:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    0.540446] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    0.540465] efifb: probing for efifb
[    0.540473] efifb: framebuffer at 0x4000000000, using 36000k, total 36000k
[    0.540474] efifb: mode is 3840x2400x32, linelength=15360, pages=1
[    0.540474] efifb: scrolling: redraw
[    0.540475] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    0.540518] Console: switching to colour frame buffer device 240x75
[    0.550006] fb0: EFI VGA frame buffer device
[    0.550011] intel_idle: MWAIT substates: 0x11142120
[    0.550200] Monitor-Mwait will be used to enter C-1 state
[    0.550204] Monitor-Mwait will be used to enter C-2 state
[    0.550207] Monitor-Mwait will be used to enter C-3 state
[    0.550210] ACPI: \_SB_.PR00: Found 3 idle states
[    0.550211] intel_idle: v0.5.1 model 0xA5
[    0.550394] intel_idle: Local APIC timer is reliable in all C-states
[    0.551236] ACPI: AC Adapter [AC] (on-line)
[    0.551271] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
[    0.553107] ACPI: Lid Switch [LID0]
[    0.553157] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[    0.553347] ACPI: Power Button [PBTN]
[    0.555914] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    0.556759] serial 0000:00:13.0: enabling device (0000 -> 0002)
[    0.557911] Non-volatile memory driver v1.3
[    0.557911] AMD-Vi: AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
[    0.557912] AMD-Vi: AMD IOMMUv2 functionality not available on this system
[    0.559009] nvme 0000:6c:00.0: platform quirk: setting simple suspend
[    0.559025] nvme nvme0: pci function 0000:6c:00.0
[    0.559047] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.559049] ehci-pci: EHCI PCI platform driver
[    0.559053] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    0.559054] ohci-pci: OHCI PCI platform driver
[    0.559057] uhci_hcd: USB Universal Host Controller Interface driver
[    0.559075] usbcore: registered new interface driver usbserial_generic
[    0.559077] usbserial: USB Serial support registered for generic
[    0.559088] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[    0.559513] i8042: Warning: Keylock active
[    0.562210] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.562227] serio: i8042 AUX port at 0x60,0x64 irq 12
[    0.562309] rtc_cmos 00:04: RTC can wake from S4
[    0.563603] rtc_cmos 00:04: registered as rtc0
[    0.564197] rtc_cmos 00:04: setting system clock to 2021-03-06T16:40:11 UTC (1615048811)
[    0.564203] rtc_cmos 00:04: alarms up to one month, y3k, 242 bytes nvram
[    0.564224] intel_pstate: Intel P-state driver initializing
[    0.564511] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
[    0.565120] intel_pstate: HWP enabled
[    0.565188] ledtrig-cpu: registered to indicate activity on CPUs
[    0.596458] nvme nvme0: 12/0/0 default/read/poll queues
[    0.597455] pstore: Registered efi as persistent store backend
[    0.597463] hid: raw HID events driver (C) Jiri Kosina
[    0.597612] intel_pmc_core INT33A1:00:  initialized
[    0.597667] drop_monitor: Initializing network drop monitor service
[    0.597702] Initializing XFRM netlink socket
[    0.597756] NET: Registered protocol family 10
[    0.600216] Segment Routing with IPv6
[    0.600216] RPL Segment Routing with IPv6
[    0.600229] NET: Registered protocol family 17
[    0.600265]  nvme0n1: p1 p2 p5
[    0.600743] microcode: sig=0xa0652, pf=0x20, revision=0xe0
[    0.600768] microcode: Microcode Update Driver: v2.2.
[    0.600771] IPI shorthand broadcast: enabled
[    0.600775] sched_clock: Marking stable (600319442, 384159)->(603449479, -2745878)
[    0.600825] registered taskstats version 1
[    0.600830] Loading compiled-in X.509 certificates
[    0.602402] Loaded X.509 cert 'Build time autogenerated kernel key: 298c74e799b1da1e04953d75dc402ed94591c68e'
[    0.602456] zswap: loaded using pool lz4/z3fold
[    0.602615] Key type ._fscrypt registered
[    0.602615] Key type .fscrypt registered
[    0.602615] Key type fscrypt-provisioning registered
[    0.602715] pstore: Using crash dump compression: zstd
[    0.611465] PM:   Magic number: 13:261:691
[    0.611640] RAS: Correctable Errors collector initialized.
[    0.613335] battery: ACPI: Battery Slot [BAT0] (battery present)
[    0.614068] Freeing unused decrypted memory: 2036K
[    0.614260] Freeing unused kernel image (initmem) memory: 1704K
[    0.643462] Write protecting the kernel read-only data: 26624k
[    0.643989] Freeing unused kernel image (text/rodata gap) memory: 2036K
[    0.644232] Freeing unused kernel image (rodata/data gap) memory: 1432K
[    0.653912] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    0.653915] rodata_test: all tests were successful
[    0.653918] Run /init as init process
[    0.653919]   with arguments:
[    0.653920]     /init
[    0.653920]   with environment:
[    0.653920]     HOME=/
[    0.653921]     TERM=linux
[    0.729534] random: crng init done
[    0.729539] systemd[1]: Successfully credited entropy passed from boot loader.
[    0.730554] systemd[1]: systemd 247.3-1-arch running in system mode. (+PAM +AUDIT -SELINUX -IMA -APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +ZSTD +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=hybrid)
[    0.730617] systemd[1]: Detected architecture x86-64.
[    0.730619] systemd[1]: Running in initial RAM disk.
[    0.753940] systemd[1]: Initializing machine ID from random generator.
[    0.775427] systemd[1]: Queued start job for default target Initrd Default Target.
[    0.781174] systemd[1]: Created slice system-systemd\x2dcryptsetup.slice.
[    0.781296] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[    0.781389] systemd[1]: Reached target Local File Systems.
[    0.781446] systemd[1]: Reached target Paths.
[    0.781493] systemd[1]: Reached target Slices.
[    0.781541] systemd[1]: Reached target Swap.
[    0.781586] systemd[1]: Reached target Timers.
[    0.781693] systemd[1]: Listening on Journal Audit Socket.
[    0.781791] systemd[1]: Listening on Journal Socket (/dev/log).
[    0.781892] systemd[1]: Listening on Journal Socket.
[    0.781984] systemd[1]: Listening on udev Control Socket.
[    0.782066] systemd[1]: Listening on udev Kernel Socket.
[    0.782124] systemd[1]: Reached target Sockets.
[    0.782580] systemd[1]: Starting Create list of static device nodes for the current kernel...
[    0.783424] systemd[1]: Starting Journal Service...
[    0.783977] systemd[1]: Starting Load Kernel Modules...
[    0.784449] systemd[1]: Starting Coldplug All udev Devices...
[    0.784940] systemd[1]: Finished Create list of static device nodes for the current kernel.
[    0.785439] systemd[1]: Starting Create Static Device Nodes in /dev...
[    0.787359] usbcore: registered new interface driver usbhid
[    0.787360] usbhid: USB HID core driver
[    0.787859] systemd[1]: Finished Load Kernel Modules.
[    0.788183] systemd[1]: Finished Create Static Device Nodes in /dev.
[    0.788871] systemd[1]: Starting Rule-based Manager for Device Events and Files...
[    0.810527] systemd[1]: Started Rule-based Manager for Device Events and Files.
[    0.810692] audit: type=1130 audit(1615048811.743:2): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udevd comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
[    0.825366] systemd[1]: Started Journal Service.
[    0.825496] audit: type=1130 audit(1615048811.756:3): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journald comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
[    0.835826] audit: type=1130 audit(1615048811.766:4): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udev-trigger comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
[    0.840159] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    0.840164] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[    0.841224] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x110 quirks 0x0000000000009810
[    0.841228] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    0.841387] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[    0.841388] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.841389] usb usb1: Product: xHCI Host Controller
[    0.841390] usb usb1: Manufacturer: Linux 5.10.16-arch1-1 xhci-hcd
[    0.841390] usb usb1: SerialNumber: 0000:00:14.0
[    0.841491] hub 1-0:1.0: USB hub found
[    0.841506] hub 1-0:1.0: 16 ports detected
[    0.842610] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    0.842614] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[    0.842618] xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
[    0.842665] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
[    0.842667] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.842668] usb usb2: Product: xHCI Host Controller
[    0.842669] usb usb2: Manufacturer: Linux 5.10.16-arch1-1 xhci-hcd
[    0.842670] usb usb2: SerialNumber: 0000:00:14.0
[    0.842750] hub 2-0:1.0: USB hub found
[    0.842765] hub 2-0:1.0: 10 ports detected
[    0.843165] usb: port power management may be unreliable
[    0.844188] xhci_hcd 0000:38:00.0: xHCI Host Controller
[    0.844192] xhci_hcd 0000:38:00.0: new USB bus registered, assigned bus number 3
[    0.845318] xhci_hcd 0000:38:00.0: hcc params 0x200077c1 hci version 0x110 quirks 0x0000000200009810
[    0.845520] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[    0.845522] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.845523] usb usb3: Product: xHCI Host Controller
[    0.845524] usb usb3: Manufacturer: Linux 5.10.16-arch1-1 xhci-hcd
[    0.845525] usb usb3: SerialNumber: 0000:38:00.0
[    0.845663] hub 3-0:1.0: USB hub found
[    0.845671] hub 3-0:1.0: 2 ports detected
[    0.846095] xhci_hcd 0000:38:00.0: xHCI Host Controller
[    0.846098] xhci_hcd 0000:38:00.0: new USB bus registered, assigned bus number 4
[    0.846100] xhci_hcd 0000:38:00.0: Host supports USB 3.1 Enhanced SuperSpeed
[    0.846139] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
[    0.846140] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.846141] usb usb4: Product: xHCI Host Controller
[    0.846142] usb usb4: Manufacturer: Linux 5.10.16-arch1-1 xhci-hcd
[    0.846143] usb usb4: SerialNumber: 0000:38:00.0
[    0.846223] hub 4-0:1.0: USB hub found
[    0.846235] hub 4-0:1.0: 2 ports detected
[    0.847227] cryptd: max_cpu_qlen set to 1000
[    0.852771] AVX2 version of gcm_enc/dec engaged.
[    0.852773] AES CTR mode by8 optimization enabled
[    0.872693] device-mapper: uevent: version 1.0.3
[    0.872736] device-mapper: ioctl: 4.43.0-ioctl (2020-10-01) initialised: dm-devel@redhat.com
[    0.890579] audit: type=1130 audit(1615048811.823:5): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-ask-password-console comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
[    1.169855] usb 1-3: new full-speed USB device number 2 using xhci_hcd
[    1.313393] usb 1-3: New USB device found, idVendor=046d, idProduct=c52b, bcdDevice=12.03
[    1.313400] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.313405] usb 1-3: Product: USB Receiver
[    1.313407] usb 1-3: Manufacturer: Logitech
[    1.316171] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.0/0003:046D:C52B.0001/input/input4
[    1.370452] hid-generic 0003:046D:C52B.0001: input,hidraw0: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:00:14.0-3/input0
[    1.373144] input: Logitech USB Receiver Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.1/0003:046D:C52B.0002/input/input5
[    1.373405] input: Logitech USB Receiver Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.1/0003:046D:C52B.0002/input/input6
[    1.430171] input: Logitech USB Receiver System Control as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.1/0003:046D:C52B.0002/input/input7
[    1.431043] hid-generic 0003:046D:C52B.0002: input,hiddev96,hidraw1: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:00:14.0-3/input1
[    1.432969] hid-generic 0003:046D:C52B.0003: hiddev97,hidraw2: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:14.0-3/input2
[    1.556552] usb 1-10: new full-speed USB device number 3 using xhci_hcd
[    1.556577] tsc: Refined TSC clocksource calibration: 2591.992 MHz
[    1.556598] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x255caf4cf76, max_idle_ns: 440795231078 ns
[    1.556671] clocksource: Switched to clocksource tsc
[    1.665020] logitech-djreceiver 0003:046D:C52B.0003: hiddev96,hidraw0: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:14.0-3/input2
[    1.699514] usb 1-10: New USB device found, idVendor=27c6, idProduct=533c, bcdDevice= 1.00
[    1.699521] usb 1-10: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.699527] usb 1-10: Product: FingerPrint
[    1.699529] usb 1-10: Manufacturer: Goodix
[    1.779553] input: Logitech Wireless Device PID:2010 Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:2010.0004/input/input9
[    1.779984] input: Logitech Wireless Device PID:2010 Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:2010.0004/input/input10
[    1.780193] input: Logitech Wireless Device PID:2010 System Control as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:2010.0004/input/input11
[    1.780484] hid-generic 0003:046D:2010.0004: input,hidraw1: USB HID v1.11 Keyboard [Logitech Wireless Device PID:2010] on usb-0000:00:14.0-3/input2:1
[    1.781020] input: Logitech Wireless Device PID:101a Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:101A.0005/input/input15
[    1.781219] hid-generic 0003:046D:101A.0005: input,hidraw2: USB HID v1.11 Mouse [Logitech Wireless Device PID:101a] on usb-0000:00:14.0-3/input2:2
[    1.783152] input: Logitech Wireless Device PID:406d Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:406D.0006/input/input19
[    1.783387] hid-generic 0003:046D:406D.0006: input,hidraw3: USB HID v1.11 Mouse [Logitech Wireless Device PID:406d] on usb-0000:00:14.0-3/input2:3
[    1.785006] input: Logitech Wireless Device PID:200a Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:200A.0007/input/input23
[    1.785130] input: Logitech Wireless Device PID:200a Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:200A.0007/input/input24
[    1.785191] input: Logitech Wireless Device PID:200a System Control as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:200A.0007/input/input25
[    1.785302] hid-generic 0003:046D:200A.0007: input,hidraw4: USB HID v1.11 Keyboard [Logitech Wireless Device PID:200a] on usb-0000:00:14.0-3/input2:4
[    1.823251] usb 1-11: new high-speed USB device number 4 using xhci_hcd
[    1.966331] usb 1-11: New USB device found, idVendor=0bda, idProduct=5510, bcdDevice=91.79
[    1.966337] usb 1-11: New USB device strings: Mfr=3, Product=1, SerialNumber=2
[    1.966340] usb 1-11: Product: Integrated_Webcam_HD
[    1.966343] usb 1-11: Manufacturer: CN02FP438LG0009GA9B8A02
[    1.966346] usb 1-11: SerialNumber: 200901010001
[    1.991101] input: Logitech K800 as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:2010.0004/input/input29
[    1.991642] logitech-hidpp-device 0003:046D:2010.0004: input,hidraw1: USB HID v1.11 Keyboard [Logitech K800] on usb-0000:00:14.0-3/input2:1
[    2.016914] input: Logitech Performance MX as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:101A.0005/input/input30
[    2.017198] logitech-hidpp-device 0003:046D:101A.0005: input,hidraw2: USB HID v1.11 Mouse [Logitech Performance MX] on usb-0000:00:14.0-3/input2:2
[    2.042915] input: Logitech M705 as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:406D.0006/input/input31
[    2.043196] logitech-hidpp-device 0003:046D:406D.0006: input,hidraw3: USB HID v1.11 Mouse [Logitech M705] on usb-0000:00:14.0-3/input2:3
[    2.089910] usb 1-14: new full-speed USB device number 5 using xhci_hcd
[    2.232011] usb 1-14: New USB device found, idVendor=8087, idProduct=0026, bcdDevice= 0.02
[    2.232018] usb 1-14: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.268960] input: Logitech K350 as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.2/0003:046D:C52B.0003/0003:046D:200A.0007/input/input32
[    2.269254] logitech-hidpp-device 0003:046D:200A.0007: input,hidraw4: USB HID v1.11 Keyboard [Logitech K350] on usb-0000:00:14.0-3/input2:4
[    6.044793] logitech-hidpp-device 0003:046D:200A.0007: HID++ 1.0 device connected.
[   10.312228] Key type encrypted registered
[   10.322115] audit: type=1130 audit(1615048821.252:6): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-cryptsetup@cryptlvm comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
[   10.351898] audit: type=1130 audit(1615048821.282:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck-root comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
[   10.367183] audit: type=1130 audit(1615048821.299:8): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lvm2-pvscan@254:0 comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
[   10.377370] EXT4-fs (dm-2): mounted filesystem with ordered data mode. Opts: (null)
[   10.382329] audit: type=1334 audit(1615048821.312:9): prog-id=6 op=UNLOAD
[   10.382331] audit: type=1334 audit(1615048821.312:10): prog-id=5 op=UNLOAD
[   10.383129] audit: type=1334 audit(1615048821.316:11): prog-id=4 op=UNLOAD
[   10.383230] audit: type=1334 audit(1615048821.316:12): prog-id=3 op=UNLOAD
[   10.415518] audit: type=1334 audit(1615048821.346:13): prog-id=7 op=LOAD
[   10.415827] audit: type=1334 audit(1615048821.346:14): prog-id=8 op=LOAD
[   10.418357] audit: type=1334 audit(1615048821.349:15): prog-id=9 op=LOAD
[   10.570075] systemd-journald[192]: Received SIGTERM from PID 1 (systemd).
[   10.650198] systemd[1]: systemd 247.3-1-arch running in system mode. (+PAM +AUDIT -SELINUX -IMA -APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +ZSTD +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=hybrid)
[   10.666587] systemd[1]: Detected architecture x86-64.
[   10.674539] systemd[1]: Set hostname to <vlovich>.
[   10.782198] systemd[1]: initrd-switch-root.service: Succeeded.
[   10.782402] systemd[1]: Stopped Switch Root.
[   10.784409] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
[   10.784590] systemd[1]: Created slice system-getty.slice.
[   10.786673] systemd[1]: Created slice system-modprobe.slice.
[   10.788737] systemd[1]: Created slice system-systemd\x2dfsck.slice.
[   10.790795] systemd[1]: Created slice User and Session Slice.
[   10.792739] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[   10.794729] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[   10.796777] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[   10.798793] systemd[1]: Reached target Local Encrypted Volumes.
[   10.800790] systemd[1]: Reached target Login Prompts.
[   10.802741] systemd[1]: Stopped target Switch Root.
[   10.804705] systemd[1]: Stopped target Initrd File Systems.
[   10.806647] systemd[1]: Stopped target Initrd Root File System.
[   10.808523] systemd[1]: Reached target Paths.
[   10.810731] systemd[1]: Reached target Remote File Systems.
[   10.812556] systemd[1]: Reached target Slices.
[   10.814371] systemd[1]: Reached target Swap.
[   10.816163] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[   10.818148] systemd[1]: Listening on LVM2 poll daemon socket.
[   10.820526] systemd[1]: Listening on Process Core Dump Socket.
[   10.822315] systemd[1]: Listening on udev Control Socket.
[   10.824089] systemd[1]: Listening on udev Kernel Socket.
[   10.826215] systemd[1]: Mounting Huge Pages File System...
[   10.828279] systemd[1]: Mounting POSIX Message Queue File System...
[   10.830332] systemd[1]: Mounting Kernel Debug File System...
[   10.832361] systemd[1]: Mounting Kernel Trace File System...
[   10.834854] systemd[1]: Mounting Temporary Directory (/tmp)...
[   10.836941] systemd[1]: Starting Create list of static device nodes for the current kernel...
[   10.839021] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[   10.841220] systemd[1]: Starting Load Kernel Module configfs...
[   10.843497] systemd[1]: Starting Load Kernel Module drm...
[   10.845683] systemd[1]: Starting Load Kernel Module fuse...
[   10.847746] Linux agpgart interface v0.103
[   10.848199] systemd[1]: Starting Set Up Additional Binary Formats...
[   10.849992] systemd[1]: systemd-cryptsetup@cryptlvm.service: Succeeded.
[   10.850112] systemd[1]: Stopped systemd-cryptsetup@cryptlvm.service.
[   10.851875] systemd[1]: Stopped Journal Service.
[   10.854562] systemd[1]: Starting Journal Service...
[   10.854971] fuse: init (API version 7.32)
[   10.857143] systemd[1]: Starting Load Kernel Modules...
[   10.859279] systemd[1]: Starting Remount Root and Kernel File Systems...
[   10.860990] systemd[1]: Condition check resulted in Repartition Root Disk being skipped.
[   10.861473] systemd[1]: Starting Coldplug All udev Devices...
[   10.862767] EXT4-fs (dm-2): re-mounted. Opts: (null)
[   10.863661] systemd[1]: sysroot.mount: Succeeded.
[   10.864072] systemd[1]: Mounted Huge Pages File System.
[   10.865829] systemd[1]: Mounted POSIX Message Queue File System.
[   10.866826] usbcore: registered new device driver usbip-host
[   10.867604] systemd[1]: Mounted Kernel Debug File System.
[   10.869396] systemd[1]: Mounted Kernel Trace File System.
[   10.871100] systemd[1]: Mounted Temporary Directory (/tmp).
[   10.872998] systemd[1]: Finished Create list of static device nodes for the current kernel.
[   10.874889] systemd[1]: modprobe@configfs.service: Succeeded.
[   10.875092] systemd[1]: Finished Load Kernel Module configfs.
[   10.876903] systemd[1]: Started Journal Service.
[   10.898350] systemd-journald[445]: Received client request to flush runtime journal.
[   11.005893] input: Intel HID events as /devices/platform/INT33D5:00/input/input33
[   11.006076] intel-hid INT33D5:00: platform supports 5 button array
[   11.006105] input: Intel HID 5 button array as /devices/platform/INT33D5:00/input/input34
[   11.066925] acpi PNP0C14:02: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:01)
[   11.066985] wmi_bus wmi_bus-PNP0C14:03: WQBC data block query control method not found
[   11.066987] acpi PNP0C14:03: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:01)
[   11.071292] acpi PNP0C14:04: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:01)
[   11.071995] tpm_tis STM0125:00: 2.0 TPM (device-id 0x0, rev-id 78)
[   11.072950] acpi PNP0C14:05: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:01)
[   11.073004] acpi PNP0C14:06: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:01)
[   11.073058] acpi PNP0C14:07: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:01)
[   11.076408] intel_pch_thermal 0000:00:12.0: enabling device (0000 -> 0002)
[   11.211163] mc: Linux media interface: v0.10
[   11.213373] proc_thermal 0000:00:04.0: enabling device (0000 -> 0002)
[   11.213742] mousedev: PS/2 mouse device common for all mice
[   11.219790] intel_rapl_common: Found RAPL domain package
[   11.219792] intel_rapl_common: Found RAPL domain dram
[   11.220150] proc_thermal 0000:00:04.0: Creating sysfs group for PROC_THERMAL_PCI
[   11.229733] intel-lpss 0000:00:15.0: enabling device (0000 -> 0002)
[   11.230069] idma64 idma64.0: Found Intel integrated DMA 64-bit
[   11.241802] i2c_hid i2c-ELAN29E2:00: supply vdd not found, using dummy regulator
[   11.241827] i2c_hid i2c-ELAN29E2:00: supply vddl not found, using dummy regulator
[   11.259726] intel-lpss 0000:00:15.1: enabling device (0000 -> 0002)
[   11.260905] idma64 idma64.1: Found Intel integrated DMA 64-bit
[   11.270104] videodev: Linux video capture interface: v2.00
[   11.270259] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[   11.272244] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[   11.272989] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[   11.272991] cfg80211: failed to load regulatory.db
[   11.279620] i2c_hid i2c-DELL097E:00: supply vdd not found, using dummy regulator
[   11.279639] i2c_hid i2c-DELL097E:00: supply vddl not found, using dummy regulator
[   11.296442] intel-lpss 0000:00:1e.0: enabling device (0000 -> 0002)
[   11.296752] idma64 idma64.2: Found Intel integrated DMA 64-bit
[   11.343176] thunderbolt 0000:04:00.0: enabling device (0000 -> 0002)
[   11.345028] i801_smbus 0000:00:1f.4: enabling device (0000 -> 0003)
[   11.345030] mei_me 0000:00:16.0: enabling device (0000 -> 0002)
[   11.345035] Bluetooth: Core ver 2.22
[   11.345066] NET: Registered protocol family 31
[   11.345067] Bluetooth: HCI device and connection manager initialized
[   11.345069] Bluetooth: HCI socket layer initialized
[   11.345071] Bluetooth: L2CAP socket layer initialized
[   11.345073] Bluetooth: SCO socket layer initialized
[   11.345446] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[   11.345510] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[   11.391106] input: ELAN29E2:00 04F3:29E2 Touchscreen as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-ELAN29E2:00/0018:04F3:29E2.0008/input/input35
[   11.391153] input: ELAN29E2:00 04F3:29E2 as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-ELAN29E2:00/0018:04F3:29E2.0008/input/input36
[   11.391176] input: ELAN29E2:00 04F3:29E2 as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-ELAN29E2:00/0018:04F3:29E2.0008/input/input37
[   11.391206] hid-generic 0018:04F3:29E2.0008: input,hidraw5: I2C HID v1.00 Device [ELAN29E2:00 04F3:29E2] on i2c-ELAN29E2:00
[   11.420358] i2c i2c-2: 2/2 memory slots populated (from DMI)
[   11.420759] i2c i2c-2: Successfully instantiated SPD at 0x50
[   11.423998] input: DELL097E:00 04F3:311C Mouse as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-DELL097E:00/0018:04F3:311C.0009/input/input39
[   11.424073] input: DELL097E:00 04F3:311C Touchpad as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-DELL097E:00/0018:04F3:311C.0009/input/input40
[   11.424122] hid-generic 0018:04F3:311C.0009: input,hidraw6: I2C HID v1.00 Mouse [DELL097E:00 04F3:311C] on i2c-DELL097E:00
[   11.451157] input: PC Speaker as /devices/platform/pcspkr/input/input42
[   11.452992] uvcvideo: Found UVC 1.10 device Integrated_Webcam_HD (0bda:5510)
[   11.453945] input: Integrated_Webcam_HD: Integrate as /devices/pci0000:00/0000:00:14.0/usb1/1-11/1-11:1.0/input/input44
[   11.454222] uvcvideo: Found UVC 1.50 device Integrated_Webcam_HD (0bda:5510)
[   11.454527] input: Integrated_Webcam_HD: Integrate as /devices/pci0000:00/0000:00:14.0/usb1/1-11/1-11:1.2/input/input45
[   11.454555] usbcore: registered new interface driver uvcvideo
[   11.454555] USB Video Class driver (1.1.1)
[   11.455704] Intel(R) Wireless WiFi driver for Linux
[   11.455786] iwlwifi 0000:00:14.3: enabling device (0000 -> 0002)
[   11.459651] iwlwifi 0000:00:14.3: api flags index 2 larger than supported by driver
[   11.459665] iwlwifi 0000:00:14.3: TLV_FW_FSEQ_VERSION: FSEQ Version: 65.3.35.22
[   11.459905] iwlwifi 0000:00:14.3: loaded firmware version 59.601f3a66.0 QuZ-a0-hr-b0-59.ucode op_mode iwlmvm
[   11.537785] Setting dangerous option enable_fbc - tainting kernel
[   11.563302] usbcore: registered new interface driver btusb
[   11.563609] Bluetooth: hci0: Firmware revision 0.0 build 26 week 3 2021
[   11.582761] checking generic (4000000000 2328000) vs hw (604a000000 1000000)
[   11.582762] checking generic (4000000000 2328000) vs hw (4000000000 10000000)
[   11.582763] fb0: switching to inteldrmfb from EFI VGA
[   11.582834] Console: switching to colour dummy device 80x25
[   11.582870] i915 0000:00:02.0: vgaarb: deactivate vga console
[   11.583745] RAPL PMU: API unit is 2^-32 Joules, 5 fixed counters, 655360 ms ovfl timer
[   11.583746] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[   11.583746] RAPL PMU: hw unit of domain package 2^-14 Joules
[   11.583747] RAPL PMU: hw unit of domain dram 2^-14 Joules
[   11.583747] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
[   11.583748] RAPL PMU: hw unit of domain psys 2^-14 Joules
[   11.605538] i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
[   11.607012] i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/kbl_dmc_ver1_04.bin (v1.4)
[   11.628595] [drm] Initialized i915 1.6.0 20200917 for 0000:00:02.0 on minor 0
[   11.631275] ACPI: Video Device [PEGP] (multi-head: no  rom: yes  post: no)
[   11.631458] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/LNXVIDEO:00/input/input46
[   11.635621] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[   11.639562] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input47
[   11.649325] fbcon: i915drmfb (fb0) is primary device
[   11.675512] iwlwifi 0000:00:14.3: Detected Intel(R) Wi-Fi 6 AX201 160MHz, REV=0x354
[   11.846561] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
[   11.846565] intel_rapl_common: Found RAPL domain package
[   11.846566] intel_rapl_common: Found RAPL domain core
[   11.846567] intel_rapl_common: Found RAPL domain uncore
[   11.846568] intel_rapl_common: Found RAPL domain dram
[   11.846569] intel_rapl_common: Found RAPL domain psys
[   11.846809] iTCO_vendor_support: vendor-support=0
[   11.847018] snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002)
[   11.848046] input: Dell WMI hotkeys as /devices/platform/PNP0C14:03/wmi_bus/wmi_bus-PNP0C14:03/9DBB5994-A997-11DA-B012-B622A1EF5492/input/input48
[   11.850343] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[   11.850371] iTCO_wdt: Found a Intel PCH TCO device (Version=6, TCOBASE=0x0400)
[   11.850461] ee1004 2-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
[   11.850503] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[   11.859332] iwlwifi 0000:00:14.3: base HW address: c0:3c:59:11:eb:bc
[   11.863278] dw-apb-uart.2: ttyS4 at MMIO 0x4010002000 (irq = 20, base_baud = 7500000) is a 16550A
[   11.871874] thermal thermal_zone13: failed to read out thermal zone (-61)
[   11.907924] ish-hid {33AECD58-B679-4E54-9BD9-A04D34F0C226}: [hid-ish]: enum_devices_done OK, num_hid_devices=1
[   11.909039] hid-generic 001F:8087:0AC2.000A: hidraw7: <UNKNOWN> HID v2.00 Device [hid-ishtp 8087:0AC2] on 
[   11.922133] iwlwifi 0000:00:14.3 wlp0s20f3: renamed from wlan0
[   11.963586] input: ELAN29E2:00 04F3:29E2 as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-ELAN29E2:00/0018:04F3:29E2.0008/input/input49
[   11.970595] psmouse serio1: elantech: assuming hardware version 4 (with firmware version 0x0f5002)
[   11.971371] psmouse serio1: elantech: elantech_send_cmd query 0x02 failed.
[   11.971371] psmouse serio1: elantech: failed to query capabilities.
[   12.049834] input: ELAN29E2:00 04F3:29E2 UNKNOWN as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-ELAN29E2:00/0018:04F3:29E2.0008/input/input50
[   12.049868] input: ELAN29E2:00 04F3:29E2 UNKNOWN as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-ELAN29E2:00/0018:04F3:29E2.0008/input/input51
[   12.129944] hid-multitouch 0018:04F3:29E2.0008: input,hidraw5: I2C HID v1.00 Device [ELAN29E2:00 04F3:29E2] on i2c-ELAN29E2:00
[   12.138859] input: DELL097E:00 04F3:311C Mouse as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-DELL097E:00/0018:04F3:311C.0009/input/input53
[   12.138919] input: DELL097E:00 04F3:311C Touchpad as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-DELL097E:00/0018:04F3:311C.0009/input/input54
[   12.139240] hid-multitouch 0018:04F3:311C.0009: input,hidraw6: I2C HID v1.00 Mouse [DELL097E:00 04F3:311C] on i2c-DELL097E:00
[   12.266064] nvidia: loading out-of-tree module taints kernel.
[   12.266071] nvidia: module license 'NVIDIA' taints kernel.
[   12.266071] Disabling lock debugging due to kernel taint
[   12.773869] Console: switching to colour frame buffer device 240x75
[   12.783157] nvidia: module verification failed: signature and/or required key missing - tainting kernel
[   12.796546] nvidia-nvlink: Nvlink Core is being initialized, major device number 511

[   12.796958] nvidia 0000:01:00.0: enabling device (0000 -> 0003)
[   12.799797] snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[   12.799872] mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_component_ops [i915])
[   12.803468] i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
[   12.845284] NVRM: loading NVIDIA UNIX x86_64 Kernel Module  460.56  Tue Feb 23 23:31:36 UTC 2021
[   13.819747] snd_hda_intel 0000:00:1f.3: azx_get_response timeout, switching to polling mode: last cmd=0x001f000f
[   16.954863] kauditd_printk_skb: 75 callbacks suppressed
[   16.954864] audit: type=1334 audit(1615048827.886:91): prog-id=22 op=LOAD
[   16.960636] audit: type=1130 audit(1615048827.892:92): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-backlight@leds:dell::kbd_backlight comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   16.963146] audit: type=1130 audit(1615048827.896:93): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-user-sessions comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   16.963396] audit: type=1103 audit(1615048827.896:94): pid=645 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_rootok acct="vlovich" exe="/usr/bin/su" hostname=? addr=? terminal=? res=success'
[   16.963488] audit: type=1105 audit(1615048827.896:95): pid=645 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:session_open grantors=pam_unix acct="vlovich" exe="/usr/bin/su" hostname=? addr=? terminal=? res=success'
[   16.964823] audit: type=1130 audit(1615048827.896:96): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sddm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   16.966245] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC289: line_outs=2 (0x14/0x17/0x0/0x0/0x0) type:speaker
[   16.966247] snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[   16.966249] snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[   16.966250] snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
[   16.966250] snd_hda_codec_realtek hdaudioC0D0:    inputs:
[   16.966252] snd_hda_codec_realtek hdaudioC0D0:      Headset Mic=0x19
[   16.966253] snd_hda_codec_realtek hdaudioC0D0:      Headphone Mic=0x1b
[   16.966254] snd_hda_codec_realtek hdaudioC0D0:      Internal Mic=0x12
[   16.971964] audit: type=1130 audit(1615048827.902:97): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   16.972097] evdi: [I] Initialising logging on level 5
[   16.972098] evdi: [I] Atomic driver:yes
[   16.974931] audit: type=1130 audit(1615048827.906:98): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=displaylink comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   16.976582] audit: type=1130 audit(1615048827.909:99): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lvm2-pvscan@254:0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   16.978790] audit: type=1130 audit(1615048827.909:100): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-backlight@backlight:intel_backlight comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   17.020805] nvidia-modeset: Loading NVIDIA Kernel Mode Setting Driver for UNIX platforms  460.56  Tue Feb 23 23:20:29 UTC 2021
[   17.024521] [drm] [nvidia-drm] [GPU ID 0x00000100] Loading driver
[   17.032672] input: HDA Intel PCH Headphone Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input56
[   17.032700] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input57
[   17.032727] input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input58
[   17.032754] input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input59
[   17.032781] input: HDA Intel PCH HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input60
[   17.032811] input: HDA Intel PCH HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input61
[   17.050855] ACPI Warning: \_SB.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20200925/nsarguments-61)
[   17.128506] input: PS/2 Logitech Wheel Mouse as /devices/platform/i8042/serio1/input/input43
[   17.739417] [drm] Initialized nvidia-drm 0.0.0 20160202 for 0000:01:00.0 on minor 1
[   21.978852] kauditd_printk_skb: 33 callbacks suppressed
[   21.978856] audit: type=1131 audit(1615048832.909:134): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   22.510362] audit: type=1100 audit(1615048833.442:135): pid=782 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:authentication grantors=pam_permit acct="sddm" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
[   22.510364] audit: type=1101 audit(1615048833.442:136): pid=782 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_permit acct="sddm" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
[   22.510541] audit: type=1103 audit(1615048833.442:137): pid=782 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_permit acct="sddm" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
[   22.517970] audit: type=1105 audit(1615048833.449:138): pid=782 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:session_open grantors=pam_unix,pam_systemd acct="sddm" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=:0 res=success'
[   25.924911] audit: type=1100 audit(1615048836.856:139): pid=797 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:authentication grantors=pam_shells,pam_faillock,pam_permit,pam_faillock acct="vlovich" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
[   25.925680] audit: type=1101 audit(1615048836.856:140): pid=797 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_access,pam_unix,pam_permit,pam_time acct="vlovich" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
[   25.925974] audit: type=1103 audit(1615048836.856:141): pid=797 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_shells,pam_faillock,pam_permit,pam_faillock acct="vlovich" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
[   25.926063] audit: type=1006 audit(1615048836.856:142): pid=797 uid=0 old-auid=4294967295 auid=1000 tty=(none) old-ses=4294967295 ses=2 res=1
[   25.937877] audit: type=1130 audit(1615048836.869:143): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@1000 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   26.678822] logitech-hidpp-device 0003:046D:406D.0006: HID++ 4.5 device connected.
[   27.012616] kauditd_printk_skb: 10 callbacks suppressed
[   27.012618] audit: type=1131 audit(1615048837.942:154): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   27.486993] audit: type=1130 audit(1615048838.419:155): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=udisks2 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   27.491326] audit: type=1334 audit(1615048838.422:156): prog-id=29 op=LOAD
[   27.491411] audit: type=1334 audit(1615048838.422:157): prog-id=30 op=LOAD
[   27.890925] audit: type=1130 audit(1615048838.822:158): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=rtkit-daemon comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   28.053193] audit: type=1130 audit(1615048838.982:159): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=upower comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   31.337391] audit: type=1111 audit(1615048842.269:160): pid=594 uid=0 auid=4294967295 ses=4294967295 msg='op=statistics arg="refresh-rate-ms" pid=1063 uid=1000 result=success exe="/usr/bin/NetworkManager" hostname=? addr=? terminal=? res=success'
[   31.799389] audit: type=1130 audit(1615048842.729:161): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=pcscd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   33.097038] wlp0s20f3: authenticate with 70:3a:cb:26:d0:b5
[   33.100520] wlp0s20f3: send auth to 70:3a:cb:26:d0:b5 (try 1/3)
[   33.141209] wlp0s20f3: authenticated
[   33.143112] wlp0s20f3: associate with 70:3a:cb:26:d0:b5 (try 1/3)
[   33.156393] wlp0s20f3: RX AssocResp from 70:3a:cb:26:d0:b5 (capab=0x1011 status=0 aid=1)
[   33.159535] wlp0s20f3: associated
[   33.207750] IPv6: ADDRCONF(NETDEV_CHANGE): wlp0s20f3: link becomes ready
[   33.221612] wlp0s20f3: Limiting TX power to 30 (30 - 0) dBm as advertised by 70:3a:cb:26:d0:b5
[   33.661481] audit: type=1130 audit(1615048844.592:162): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=blueman-mechanism comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   35.319562] audit: type=1130 audit(1615048846.249:163): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   36.224137] audit: type=1131 audit(1615048847.156:164): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user@974 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   36.228954] audit: type=1131 audit(1615048847.159:165): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@974 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   46.154647] audit: type=1131 audit(1615048856.942:166): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   59.419697] audit: type=1131 audit(1615048870.041:167): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   59.602147] audit: type=1334 audit(1615048870.223:168): prog-id=22 op=UNLOAD
[   59.602156] audit: type=1334 audit(1615048870.223:169): prog-id=21 op=UNLOAD
[   62.716601] audit: type=1100 audit(1615048873.325:170): pid=1852 uid=1000 auid=1000 ses=2 msg='op=PAM:authentication grantors=pam_faillock,pam_permit,pam_faillock acct="vlovich" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
[   62.719602] audit: type=1101 audit(1615048873.328:171): pid=1852 uid=1000 auid=1000 ses=2 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="vlovich" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
[   62.721187] audit: type=1110 audit(1615048873.332:172): pid=1852 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'
[   62.727800] audit: type=1105 audit(1615048873.338:173): pid=1852 uid=1000 auid=1000 ses=2 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/6 res=success'

Offline

#5 2021-03-06 18:00:43

vlovich
Member
Registered: 2021-03-05
Posts: 21

Re: [Resolved] DisplayLink not working w/ Dell D6000 + Precision 5550

I've tried updating to the LTS kernel but that didn't help.

Offline

#6 2021-03-07 15:40:27

Lone_Wolf
Forum Moderator
From: Netherlands, Europe
Registered: 2005-10-04
Posts: 11,925

Re: [Resolved] DisplayLink not working w/ Dell D6000 + Precision 5550

vlovich wrote:
Lone_Wolf wrote:

Please use pacman for repo packages.

I'm new to Arch so please forgive my ignorance. It seemed like yay acts like a passthrough to Pacman for non-AUR packages. I would love to learn the reason behind this correction if you'd be willing to share.

Check [1] and you'll see there are several categories of aur helpers, yay falls under pacman wrappers.
The pacman wrappers are often considered to be worst kind of helper as they blur the distinction between repo and aur packages and tend to decrease the understanding of and control over user systems .

A less visible downside all aur helpers suffer from is they break when pacman / makepkg are upgraded .
In past pacman / makepkg upgrades some aur helpers were broken for weeks until their maintainers had adjusted to the changes .

It became clear that many users relying on pacman wrappers hadn't developed the skill (and lacked the experience) to perform the updates with archlinux offical tools  pacman / makepkg !
pacman 6 is currently in alpha status and I expect it will be released sometime later this year.
When that happens every aur helper will break and users unable to update with pacman will simply be stuck .
Lots of them will probably blame arch devs and leave archlinux.

The consensus on this forum is that new users should stay away from ALL aur helpers until they understand and can use archlinux standard method.
ONCE users are confident they know what they are doing, they can then decide whether or not they need an aur helper and if so which one suits their needs best.


I'd prefer if you didn't use any aur helper at all until you are familiar with archlinux and our tools, but can't stop you.
IF you feel the need to use yay, only use it's aur package options .



back to displaylink

workaround 1 relies on using xf86-video-intel installed. For newer systems that is  a bad idea .
workaround 2 might have some effect , but will definitely hamper performance.

The logs show some coredumps with sddm and with xorg, hard to tell if they have to do with the issue.

[   16.972097] evdi: [I] Initialising logging on level 5
[   16.972098] evdi: [I] Atomic driver:yes

2 messages from evdi seems a bit low.
evdi doc states it uses printf and there's things like kauditd_printk_skb: 75 callbacks suppressed in the log .
Maybe disabling audit messages will help to get more info , see [2]

If you can figure out how to increase evdi loglevel it may also help .



[1] https://wiki.archlinux.org/index.php/AUR_helpers
[2] https://wiki.archlinux.org/index.php/Au … stallation


Disliking systemd intensely, but not satisfied with alternatives so focusing on taming systemd.


(A works at time B)  && (time C > time B ) ≠  (A works at time C)

Offline

#7 2021-03-07 19:19:09

vlovich
Member
Registered: 2021-03-05
Posts: 21

Re: [Resolved] DisplayLink not working w/ Dell D6000 + Precision 5550

It’s a bit embarrassing but I found the problem by noticing that dmesg didn’t show any activity when I plugged in the USBC cable. Turns out that it just wasn’t plugged in. Should have checked that first. I did notice that performance is quite bad (super high latency on display link) and flickering mouse pointer on the laptop screen. The latter resolved once I used the function key to swap the output but the high latency remains (+ high cpu from displaylinkmanager) - maybe the page flipping setting is the issue there.

Last edited by vlovich (2021-03-07 19:19:44)

Offline

#8 2021-03-07 20:47:41

seth
Member
Registered: 2012-09-03
Posts: 51,319

Re: [Resolved] DisplayLink not working w/ Dell D6000 + Precision 5550

Rule #1: it's *always* the cable ;-)

Please always remember to mark resolved threads by editing your initial posts subject - so others will know that there's no task left, but maybe a solution to find.
Thanks.

Offline

#9 2021-03-09 18:15:13

vlovich
Member
Registered: 2021-03-05
Posts: 21

Re: [Resolved] DisplayLink not working w/ Dell D6000 + Precision 5550

I had to rewrite the subject due to length limitations. Hope the new one still follows the rules of the forum/community.

Offline

Board footer

Powered by FluxBB