You are not logged in.

#1 2022-04-28 17:38:17

leopseft
Member
Registered: 2018-09-05
Posts: 29

[SOLVED] Yellow artifacts on tty during shutdown or reboot

Hello everyone. I own the MSI 15 A11 laptop (https://wiki.archlinux.org/title/MSI_Modern_15_A11M)
The cpu is an 11th Gen Intel i7-1165G7 (@2.80GHz) with the intel Iris xe Graphics, I use grub loader (efi), the latest KDE, the latest kernel and the system is always up to date.
For the intel Graphics I have installed: mesa, lib32-mesa, xf86-video-intel and intel-media-driver. No config in /etc/X11/xorg.conf.d/ no parameters for Early KMS

The problem:
On reboot or shutdown a yellow line flashes on tty screen after kde is killed as you can see on this video: https://youtube.com/shorts/f8mAnjatspA?feature=share
It happens both on X11 and Wayland. (The line appears/flashes over the text "version xxx.x-x-arch" twice for milliseconds at the 4th second of the video)
Note: If I boot with init 3 and just login and then reboot the issue doesn't appear at all, since i dont see the version xxx.x-x-arch message on tty, just the double watchdog messages. So the issue appears only after terminating the graphical environment when the system automatically returns on tty.

What I have tried:
1. Installing/Removing the xf86-video-intel package
2. Enabling/Disabling Early KMS
3. Different configs on grub config:
a. Different supported resolutions in grub including the deprecated vga method
b. Disabling GRUB_GFXPAYLOAD_LINUX="keep"
c. Disabling intel.fastboot

lspci

00:00.0 Host bridge: Intel Corporation 11th Gen Core Processor Host Bridge/DRAM Registers (rev 01)
00:02.0 VGA compatible controller: Intel Corporation TigerLake-LP GT2 [Iris Xe Graphics] (rev 01)
00:04.0 Signal processing controller: Intel Corporation TigerLake-LP Dynamic Tuning Processor Participant (rev 01)
00:06.0 PCI bridge: Intel Corporation 11th Gen Core Processor PCIe Controller (rev 01)
00:07.0 PCI bridge: Intel Corporation Tiger Lake-LP Thunderbolt 4 PCI Express Root Port #0 (rev 01)
00:08.0 System peripheral: Intel Corporation GNA Scoring Accelerator module (rev 01)
00:0a.0 Signal processing controller: Intel Corporation Tigerlake Telemetry Aggregator Driver (rev 01)
00:0d.0 USB controller: Intel Corporation Tiger Lake-LP Thunderbolt 4 USB Controller (rev 01)
00:0d.2 USB controller: Intel Corporation Tiger Lake-LP Thunderbolt 4 NHI #0 (rev 01)
00:14.0 USB controller: Intel Corporation Tiger Lake-LP USB 3.2 Gen 2x1 xHCI Host Controller (rev 20)
00:14.2 RAM memory: Intel Corporation Tiger Lake-LP Shared SRAM (rev 20)
00:14.3 Network controller: Intel Corporation Wi-Fi 6 AX201 (rev 20)
00:15.0 Serial bus controller: Intel Corporation Tiger Lake-LP Serial IO I2C Controller #0 (rev 20)
00:16.0 Communication controller: Intel Corporation Tiger Lake-LP Management Engine Interface (rev 20)
00:1c.0 PCI bridge: Intel Corporation Device a0b8 (rev 20)
00:1c.3 PCI bridge: Intel Corporation Device a0bb (rev 20)
00:1f.0 ISA bridge: Intel Corporation Tiger Lake-LP LPC Controller (rev 20)
00:1f.3 Multimedia audio controller: Intel Corporation Tiger Lake-LP Smart Sound Technology Audio Controller (rev 20)
00:1f.4 SMBus: Intel Corporation Tiger Lake-LP SMBus Controller (rev 20)
00:1f.5 Serial bus controller: Intel Corporation Tiger Lake-LP SPI Controller (rev 20)
01:00.0 Non-Volatile memory controller: Kingston Technology Company, Inc. Device 500c (rev 01)
2e:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. RTS525A PCI Express Card Reader (rev 01)

lspci -v

00:02.0 VGA compatible controller: Intel Corporation TigerLake-LP GT2 [Iris Xe Graphics] (rev 01) (prog-if 00 [VGA controller])
        DeviceName: Onboard - Video
        Subsystem: Micro-Star International Co., Ltd. [MSI] Device 12e1
        Flags: bus master, fast devsel, latency 0, IRQ 140, IOMMU group 1
        Memory at 601c000000 (64-bit, non-prefetchable) [size=16M]
        Memory at 4000000000 (64-bit, prefetchable) [size=256M]
        I/O ports at 3000 [size=64]
        Expansion ROM at 000c0000 [virtual] [disabled] [size=128K]
        Capabilities: <access denied>
        Kernel driver in use: i915
        Kernel modules: i915

My grub config

# GRUB boot loader configuration

GRUB_DEFAULT="0"
GRUB_TIMEOUT="3"
GRUB_DISTRIBUTOR="Arch"
GRUB_CMDLINE_LINUX_DEFAULT="zswap.enabled=1 zswap.compressor=lz4 zswap.zpool=z3fold quiet loglevel=3"
GRUB_CMDLINE_LINUX=""

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

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

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

# Uncomment to use basic console
GRUB_TERMINAL_INPUT="console"

# Uncomment to disable graphical terminal
#GRUB_TERMINAL_OUTPUT="console"

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

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

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

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

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

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

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

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

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

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

journalctl -k

Απρ 28 19:52:06 vampyre kernel: microcode: microcode updated early to revision 0x9a, date = 2021-08-06
Απρ 28 19:52:06 vampyre kernel: Linux version 5.17.5-arch1-1 (linux@archlinux) (gcc (GCC) 11.2.0, GNU ld (GNU Binutils) 2.38) #1 SMP PREEMPT Wed, 27 Apr 2022 20:56:11 +0000
Απρ 28 19:52:06 vampyre kernel: Command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=562b6173-e5e1-4285-8498-8ec9205ff207 rw zswap.enabled=1 zswap.compressor=lz4 zswap.zpool=z3fold quiet loglevel=3
Απρ 28 19:52:06 vampyre kernel: x86/split lock detection: #AC: crashing the kernel on kernel split_locks and warning on user-space split_locks
Απρ 28 19:52:06 vampyre kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Απρ 28 19:52:06 vampyre kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Απρ 28 19:52:06 vampyre kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Απρ 28 19:52:06 vampyre kernel: x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask'
Απρ 28 19:52:06 vampyre kernel: x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'
Απρ 28 19:52:06 vampyre kernel: x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'
Απρ 28 19:52:06 vampyre kernel: x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
Απρ 28 19:52:06 vampyre kernel: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
Απρ 28 19:52:06 vampyre kernel: x86/fpu: xstate_offset[5]:  832, xstate_sizes[5]:   64
Απρ 28 19:52:06 vampyre kernel: x86/fpu: xstate_offset[6]:  896, xstate_sizes[6]:  512
Απρ 28 19:52:06 vampyre kernel: x86/fpu: xstate_offset[7]: 1408, xstate_sizes[7]: 1024
Απρ 28 19:52:06 vampyre kernel: x86/fpu: xstate_offset[9]: 2432, xstate_sizes[9]:    8
Απρ 28 19:52:06 vampyre kernel: x86/fpu: Enabled xstate features 0x2e7, context size is 2440 bytes, using 'compacted' format.
Απρ 28 19:52:06 vampyre kernel: signal: max sigframe size: 3632
Απρ 28 19:52:06 vampyre kernel: BIOS-provided physical RAM map:
Απρ 28 19:52:06 vampyre kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
Απρ 28 19:52:06 vampyre kernel: BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
Απρ 28 19:52:06 vampyre kernel: BIOS-e820: [mem 0x0000000000100000-0x0000000061a83fff] usable
Απρ 28 19:52:06 vampyre kernel: BIOS-e820: [mem 0x0000000061a84000-0x0000000064b83fff] reserved
Απρ 28 19:52:06 vampyre kernel: BIOS-e820: [mem 0x0000000064b84000-0x0000000064c4ffff] ACPI data
Απρ 28 19:52:06 vampyre kernel: BIOS-e820: [mem 0x0000000064c50000-0x0000000064d05fff] ACPI NVS
Απρ 28 19:52:06 vampyre kernel: BIOS-e820: [mem 0x0000000064d06000-0x0000000067e3afff] reserved
Απρ 28 19:52:06 vampyre kernel: BIOS-e820: [mem 0x0000000067e3b000-0x0000000067efefff] type 20
Απρ 28 19:52:06 vampyre kernel: BIOS-e820: [mem 0x0000000067eff000-0x0000000067efffff] usable
Απρ 28 19:52:06 vampyre kernel: BIOS-e820: [mem 0x0000000067f00000-0x000000006dffffff] reserved
Απρ 28 19:52:06 vampyre kernel: BIOS-e820: [mem 0x000000006e800000-0x000000006e9fffff] reserved
Απρ 28 19:52:06 vampyre kernel: BIOS-e820: [mem 0x000000006f000000-0x00000000743fffff] reserved
Απρ 28 19:52:06 vampyre kernel: BIOS-e820: [mem 0x00000000c0000000-0x00000000cfffffff] reserved
Απρ 28 19:52:06 vampyre kernel: BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
Απρ 28 19:52:06 vampyre kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
Απρ 28 19:52:06 vampyre kernel: BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
Απρ 28 19:52:06 vampyre kernel: BIOS-e820: [mem 0x00000000fed20000-0x00000000fed7ffff] reserved
Απρ 28 19:52:06 vampyre kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Απρ 28 19:52:06 vampyre kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
Απρ 28 19:52:06 vampyre kernel: BIOS-e820: [mem 0x0000000100000000-0x000000048bbfffff] usable
Απρ 28 19:52:06 vampyre kernel: NX (Execute Disable) protection: active
Απρ 28 19:52:06 vampyre kernel: efi: EFI v2.70 by American Megatrends
Απρ 28 19:52:06 vampyre kernel: efi: ACPI=0x64c4f000 ACPI 2.0=0x64c4f014 TPMFinalLog=0x64c93000 SMBIOS=0x67ca7000 SMBIOS 3.0=0x67ca6000 MEMATTR=0x5c1d4018 ESRT=0x5ffb9e18 
Απρ 28 19:52:06 vampyre kernel: SMBIOS 3.3.0 present.
Απρ 28 19:52:06 vampyre kernel: DMI: Micro-Star International Co., Ltd. Modern 15 A11M/MS-1552, BIOS E1552IMS.118 07/30/2021
Απρ 28 19:52:06 vampyre kernel: tsc: Detected 2800.000 MHz processor
Απρ 28 19:52:06 vampyre kernel: tsc: Detected 2803.200 MHz TSC
Απρ 28 19:52:06 vampyre kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Απρ 28 19:52:06 vampyre kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
Απρ 28 19:52:06 vampyre kernel: last_pfn = 0x48bc00 max_arch_pfn = 0x400000000
Απρ 28 19:52:06 vampyre kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Απρ 28 19:52:06 vampyre kernel: last_pfn = 0x67f00 max_arch_pfn = 0x400000000
Απρ 28 19:52:06 vampyre kernel: esrt: Reserving ESRT space from 0x000000005ffb9e18 to 0x000000005ffb9ea0.
Απρ 28 19:52:06 vampyre kernel: e820: update [mem 0x5ffb9000-0x5ffb9fff] usable ==> reserved
Απρ 28 19:52:06 vampyre kernel: Using GB pages for direct mapping
Απρ 28 19:52:06 vampyre kernel: Secure boot disabled
Απρ 28 19:52:06 vampyre kernel: RAMDISK: [mem 0x36587000-0x372bafff]
Απρ 28 19:52:06 vampyre kernel: ACPI: Early table checksum verification disabled
Απρ 28 19:52:06 vampyre kernel: ACPI: RSDP 0x0000000064C4F014 000024 (v02 MSI_NB)
Απρ 28 19:52:06 vampyre kernel: ACPI: XSDT 0x0000000064C4E728 0000FC (v01 MSI_NB MEGABOOK 01072009 AMI  01000013)
Απρ 28 19:52:06 vampyre kernel: ACPI: FACP 0x0000000064C49000 000114 (v06 MSI_NB MEGABOOK 01072009 AMI  00010013)
Απρ 28 19:52:06 vampyre kernel: ACPI: DSDT 0x0000000064BF0000 058604 (v02 MSI_NB MEGABOOK 01072009 INTL 20191018)
Απρ 28 19:52:06 vampyre kernel: ACPI: FACS 0x0000000064D04000 000040
Απρ 28 19:52:06 vampyre kernel: ACPI: MCFG 0x0000000064C4D000 00003C (v01 MSI_NB MEGABOOK 01072009 MSFT 00000097)
Απρ 28 19:52:06 vampyre kernel: ACPI: SSDT 0x0000000064C4A000 0025CF (v02 CpuRef CpuSsdt  00003000 INTL 20191018)
Απρ 28 19:52:06 vampyre kernel: ACPI: FIDT 0x0000000064BEF000 00009C (v01 MSI_NB MEGABOOK 01072009 AMI  00010013)
Απρ 28 19:52:06 vampyre kernel: ACPI: MSDM 0x0000000064BEE000 000055 (v03 MSI_NB MEGABOOK 01072009 AMI  01000013)
Απρ 28 19:52:06 vampyre kernel: ACPI: SLIC 0x0000000064BED000 000176 (v01 MSI_NB MEGABOOK 01072009 AMI  01000013)
Απρ 28 19:52:06 vampyre kernel: ACPI: SSDT 0x0000000064BE9000 003CA0 (v02 DptfTb DptfTabl 00001000 INTL 20191018)
Απρ 28 19:52:06 vampyre kernel: ACPI: SSDT 0x0000000064BE7000 0017E9 (v02 SaSsdt SaSsdt   00003000 INTL 20191018)
Απρ 28 19:52:06 vampyre kernel: ACPI: SSDT 0x0000000064BE3000 003350 (v02 INTEL  IgfxSsdt 00003000 INTL 20191018)
Απρ 28 19:52:06 vampyre kernel: ACPI: SSDT 0x0000000064BD7000 00B192 (v02 INTEL  TcssSsdt 00001000 INTL 20191018)
Απρ 28 19:52:06 vampyre kernel: ACPI: HPET 0x0000000064BD6000 000038 (v01 MSI_NB MEGABOOK 01072009 AMI  01000013)
Απρ 28 19:52:06 vampyre kernel: ACPI: APIC 0x0000000064BD5000 00012C (v04 MSI_NB MEGABOOK 01072009 AMI  01000013)
Απρ 28 19:52:06 vampyre kernel: ACPI: SSDT 0x0000000064BCE000 006F0E (v02 MSI_NB TglU_Rvp 00001000 INTL 20191018)
Απρ 28 19:52:06 vampyre kernel: ACPI: NHLT 0x0000000064BCC000 001B50 (v00 MSI_NB MEGABOOK 01072009 AMI  01000013)
Απρ 28 19:52:06 vampyre kernel: ACPI: LPIT 0x0000000064BCB000 0000CC (v01 MSI_NB MEGABOOK 01072009 AMI  01000013)
Απρ 28 19:52:06 vampyre kernel: ACPI: SSDT 0x0000000064BC7000 002720 (v02 MSI_NB PtidDevc 00001000 INTL 20191018)
Απρ 28 19:52:06 vampyre kernel: ACPI: SSDT 0x0000000064BC6000 00012A (v02 MSI_NB TbtTypeC 00000000 INTL 20191018)
Απρ 28 19:52:06 vampyre kernel: ACPI: DBGP 0x0000000064BC5000 000034 (v01 MSI_NB MEGABOOK 01072009 AMI  01000013)
Απρ 28 19:52:06 vampyre kernel: ACPI: DBG2 0x0000000064BC4000 000054 (v00 MSI_NB MEGABOOK 01072009 AMI  01000013)
Απρ 28 19:52:06 vampyre kernel: ACPI: DMAR 0x0000000064BC3000 0000A0 (v02 INTEL  EDK2     00000002      01000013)
Απρ 28 19:52:06 vampyre kernel: ACPI: SSDT 0x0000000064BC2000 000905 (v02 INTEL  xh_tudd4 00000000 INTL 20191018)
Απρ 28 19:52:06 vampyre kernel: ACPI: SSDT 0x0000000064BC1000 000144 (v02 Intel  ADebTabl 00001000 INTL 20191018)
Απρ 28 19:52:06 vampyre kernel: ACPI: BGRT 0x0000000064BC0000 000038 (v01 MSI_NB MEGABOOK 01072009 AMI  00010013)
Απρ 28 19:52:06 vampyre kernel: ACPI: TPM2 0x0000000064BBF000 00004C (v04 MSI_NB MEGABOOK 00000001 AMI  00000000)
Απρ 28 19:52:06 vampyre kernel: ACPI: PTDT 0x0000000064BBE000 000CFE (v00 MSI_NB MEGABOOK 00000005 MSFT 0100000D)
Απρ 28 19:52:06 vampyre kernel: ACPI: WSMT 0x0000000064BCA000 000028 (v01 MSI_NB MEGABOOK 01072009 AMI  00010013)
Απρ 28 19:52:06 vampyre kernel: ACPI: FPDT 0x0000000064BBD000 000044 (v01 MSI_NB A M I    01072009 AMI  01000013)
Απρ 28 19:52:06 vampyre kernel: ACPI: Reserving FACP table memory at [mem 0x64c49000-0x64c49113]
Απρ 28 19:52:06 vampyre kernel: ACPI: Reserving DSDT table memory at [mem 0x64bf0000-0x64c48603]
Απρ 28 19:52:06 vampyre kernel: ACPI: Reserving FACS table memory at [mem 0x64d04000-0x64d0403f]
Απρ 28 19:52:06 vampyre kernel: ACPI: Reserving MCFG table memory at [mem 0x64c4d000-0x64c4d03b]
Απρ 28 19:52:06 vampyre kernel: ACPI: Reserving SSDT table memory at [mem 0x64c4a000-0x64c4c5ce]
Απρ 28 19:52:06 vampyre kernel: ACPI: Reserving FIDT table memory at [mem 0x64bef000-0x64bef09b]
Απρ 28 19:52:06 vampyre kernel: ACPI: Reserving MSDM table memory at [mem 0x64bee000-0x64bee054]
Απρ 28 19:52:06 vampyre kernel: ACPI: Reserving SLIC table memory at [mem 0x64bed000-0x64bed175]
Απρ 28 19:52:06 vampyre kernel: ACPI: Reserving SSDT table memory at [mem 0x64be9000-0x64becc9f]
Απρ 28 19:52:06 vampyre kernel: ACPI: Reserving SSDT table memory at [mem 0x64be7000-0x64be87e8]
Απρ 28 19:52:06 vampyre kernel: ACPI: Reserving SSDT table memory at [mem 0x64be3000-0x64be634f]
Απρ 28 19:52:06 vampyre kernel: ACPI: Reserving SSDT table memory at [mem 0x64bd7000-0x64be2191]
Απρ 28 19:52:06 vampyre kernel: ACPI: Reserving HPET table memory at [mem 0x64bd6000-0x64bd6037]
Απρ 28 19:52:06 vampyre kernel: ACPI: Reserving APIC table memory at [mem 0x64bd5000-0x64bd512b]
Απρ 28 19:52:06 vampyre kernel: ACPI: Reserving SSDT table memory at [mem 0x64bce000-0x64bd4f0d]
Απρ 28 19:52:06 vampyre kernel: ACPI: Reserving NHLT table memory at [mem 0x64bcc000-0x64bcdb4f]
Απρ 28 19:52:06 vampyre kernel: ACPI: Reserving LPIT table memory at [mem 0x64bcb000-0x64bcb0cb]
Απρ 28 19:52:06 vampyre kernel: ACPI: Reserving SSDT table memory at [mem 0x64bc7000-0x64bc971f]
Απρ 28 19:52:06 vampyre kernel: ACPI: Reserving SSDT table memory at [mem 0x64bc6000-0x64bc6129]
Απρ 28 19:52:06 vampyre kernel: ACPI: Reserving DBGP table memory at [mem 0x64bc5000-0x64bc5033]
Απρ 28 19:52:06 vampyre kernel: ACPI: Reserving DBG2 table memory at [mem 0x64bc4000-0x64bc4053]
Απρ 28 19:52:06 vampyre kernel: ACPI: Reserving DMAR table memory at [mem 0x64bc3000-0x64bc309f]
Απρ 28 19:52:06 vampyre kernel: ACPI: Reserving SSDT table memory at [mem 0x64bc2000-0x64bc2904]
Απρ 28 19:52:06 vampyre kernel: ACPI: Reserving SSDT table memory at [mem 0x64bc1000-0x64bc1143]
Απρ 28 19:52:06 vampyre kernel: ACPI: Reserving BGRT table memory at [mem 0x64bc0000-0x64bc0037]
Απρ 28 19:52:06 vampyre kernel: ACPI: Reserving TPM2 table memory at [mem 0x64bbf000-0x64bbf04b]
Απρ 28 19:52:06 vampyre kernel: ACPI: Reserving PTDT table memory at [mem 0x64bbe000-0x64bbecfd]
Απρ 28 19:52:06 vampyre kernel: ACPI: Reserving WSMT table memory at [mem 0x64bca000-0x64bca027]
Απρ 28 19:52:06 vampyre kernel: ACPI: Reserving FPDT table memory at [mem 0x64bbd000-0x64bbd043]
Απρ 28 19:52:06 vampyre kernel: No NUMA configuration found
Απρ 28 19:52:06 vampyre kernel: Faking a node at [mem 0x0000000000000000-0x000000048bbfffff]
Απρ 28 19:52:06 vampyre kernel: NODE_DATA(0) allocated [mem 0x48bbfa000-0x48bbfdfff]
Απρ 28 19:52:06 vampyre kernel: Zone ranges:
Απρ 28 19:52:06 vampyre kernel:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
Απρ 28 19:52:06 vampyre kernel:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
Απρ 28 19:52:06 vampyre kernel:   Normal   [mem 0x0000000100000000-0x000000048bbfffff]
Απρ 28 19:52:06 vampyre kernel:   Device   empty
Απρ 28 19:52:06 vampyre kernel: Movable zone start for each node
Απρ 28 19:52:06 vampyre kernel: Early memory node ranges
Απρ 28 19:52:06 vampyre kernel:   node   0: [mem 0x0000000000001000-0x000000000009efff]
Απρ 28 19:52:06 vampyre kernel:   node   0: [mem 0x0000000000100000-0x0000000061a83fff]
Απρ 28 19:52:06 vampyre kernel:   node   0: [mem 0x0000000067eff000-0x0000000067efffff]
Απρ 28 19:52:06 vampyre kernel:   node   0: [mem 0x0000000100000000-0x000000048bbfffff]
Απρ 28 19:52:06 vampyre kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000048bbfffff]
Απρ 28 19:52:06 vampyre kernel: On node 0, zone DMA: 1 pages in unavailable ranges
Απρ 28 19:52:06 vampyre kernel: On node 0, zone DMA: 97 pages in unavailable ranges
Απρ 28 19:52:06 vampyre kernel: On node 0, zone DMA32: 25723 pages in unavailable ranges
Απρ 28 19:52:06 vampyre kernel: On node 0, zone Normal: 256 pages in unavailable ranges
Απρ 28 19:52:06 vampyre kernel: On node 0, zone Normal: 17408 pages in unavailable ranges
Απρ 28 19:52:06 vampyre kernel: Reserving Intel graphics memory at [mem 0x70800000-0x743fffff]
Απρ 28 19:52:06 vampyre kernel: ACPI: PM-Timer IO Port: 0x1808
Απρ 28 19:52:06 vampyre kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
Απρ 28 19:52:06 vampyre kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
Απρ 28 19:52:06 vampyre kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
Απρ 28 19:52:06 vampyre kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
Απρ 28 19:52:06 vampyre kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
Απρ 28 19:52:06 vampyre kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
Απρ 28 19:52:06 vampyre kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
Απρ 28 19:52:06 vampyre kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
Απρ 28 19:52:06 vampyre kernel: ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
Απρ 28 19:52:06 vampyre kernel: ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
Απρ 28 19:52:06 vampyre kernel: ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
Απρ 28 19:52:06 vampyre kernel: ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
Απρ 28 19:52:06 vampyre kernel: ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
Απρ 28 19:52:06 vampyre kernel: ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
Απρ 28 19:52:06 vampyre kernel: ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
Απρ 28 19:52:06 vampyre kernel: ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
Απρ 28 19:52:06 vampyre kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
Απρ 28 19:52:06 vampyre kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Απρ 28 19:52:06 vampyre kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Απρ 28 19:52:06 vampyre kernel: ACPI: Using ACPI (MADT) for SMP configuration information
Απρ 28 19:52:06 vampyre kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
Απρ 28 19:52:06 vampyre kernel: e820: update [mem 0x5c026000-0x5c119fff] usable ==> reserved
Απρ 28 19:52:06 vampyre kernel: TSC deadline timer available
Απρ 28 19:52:06 vampyre kernel: smpboot: Allowing 8 CPUs, 0 hotplug CPUs
Απρ 28 19:52:06 vampyre kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
Απρ 28 19:52:06 vampyre kernel: PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
Απρ 28 19:52:06 vampyre kernel: PM: hibernation: Registered nosave memory: [mem 0x5c026000-0x5c119fff]
Απρ 28 19:52:06 vampyre kernel: PM: hibernation: Registered nosave memory: [mem 0x5ffb9000-0x5ffb9fff]
Απρ 28 19:52:06 vampyre kernel: PM: hibernation: Registered nosave memory: [mem 0x61a84000-0x64b83fff]
Απρ 28 19:52:06 vampyre kernel: PM: hibernation: Registered nosave memory: [mem 0x64b84000-0x64c4ffff]
Απρ 28 19:52:06 vampyre kernel: PM: hibernation: Registered nosave memory: [mem 0x64c50000-0x64d05fff]
Απρ 28 19:52:06 vampyre kernel: PM: hibernation: Registered nosave memory: [mem 0x64d06000-0x67e3afff]
Απρ 28 19:52:06 vampyre kernel: PM: hibernation: Registered nosave memory: [mem 0x67e3b000-0x67efefff]
Απρ 28 19:52:06 vampyre kernel: PM: hibernation: Registered nosave memory: [mem 0x67f00000-0x6dffffff]
Απρ 28 19:52:06 vampyre kernel: PM: hibernation: Registered nosave memory: [mem 0x6e000000-0x6e7fffff]
Απρ 28 19:52:06 vampyre kernel: PM: hibernation: Registered nosave memory: [mem 0x6e800000-0x6e9fffff]
Απρ 28 19:52:06 vampyre kernel: PM: hibernation: Registered nosave memory: [mem 0x6ea00000-0x6effffff]
Απρ 28 19:52:06 vampyre kernel: PM: hibernation: Registered nosave memory: [mem 0x6f000000-0x743fffff]
Απρ 28 19:52:06 vampyre kernel: PM: hibernation: Registered nosave memory: [mem 0x74400000-0xbfffffff]
Απρ 28 19:52:06 vampyre kernel: PM: hibernation: Registered nosave memory: [mem 0xc0000000-0xcfffffff]
Απρ 28 19:52:06 vampyre kernel: PM: hibernation: Registered nosave memory: [mem 0xd0000000-0xfdffffff]
Απρ 28 19:52:06 vampyre kernel: PM: hibernation: Registered nosave memory: [mem 0xfe000000-0xfe010fff]
Απρ 28 19:52:06 vampyre kernel: PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xfebfffff]
Απρ 28 19:52:06 vampyre kernel: PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
Απρ 28 19:52:06 vampyre kernel: PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
Απρ 28 19:52:06 vampyre kernel: PM: hibernation: Registered nosave memory: [mem 0xfed00000-0xfed00fff]
Απρ 28 19:52:06 vampyre kernel: PM: hibernation: Registered nosave memory: [mem 0xfed01000-0xfed1ffff]
Απρ 28 19:52:06 vampyre kernel: PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xfed7ffff]
Απρ 28 19:52:06 vampyre kernel: PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xfedfffff]
Απρ 28 19:52:06 vampyre kernel: PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
Απρ 28 19:52:06 vampyre kernel: PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xfeffffff]
Απρ 28 19:52:06 vampyre kernel: PM: hibernation: Registered nosave memory: [mem 0xff000000-0xffffffff]
Απρ 28 19:52:06 vampyre kernel: [mem 0x74400000-0xbfffffff] available for PCI devices
Απρ 28 19:52:06 vampyre kernel: Booting paravirtualized kernel on bare hardware
Απρ 28 19:52:06 vampyre kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
Απρ 28 19:52:06 vampyre kernel: setup_percpu: NR_CPUS:320 nr_cpumask_bits:320 nr_cpu_ids:8 nr_node_ids:1
Απρ 28 19:52:06 vampyre kernel: percpu: Embedded 62 pages/cpu s217088 r8192 d28672 u262144
Απρ 28 19:52:06 vampyre kernel: pcpu-alloc: s217088 r8192 d28672 u262144 alloc=1*2097152
Απρ 28 19:52:06 vampyre kernel: pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
Απρ 28 19:52:06 vampyre kernel: Fallback order for Node 0: 0 
Απρ 28 19:52:06 vampyre kernel: Built 1 zonelists, mobility grouping on.  Total pages: 4053546
Απρ 28 19:52:06 vampyre kernel: Policy zone: Normal
Απρ 28 19:52:06 vampyre kernel: Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=562b6173-e5e1-4285-8498-8ec9205ff207 rw zswap.enabled=1 zswap.compressor=lz4 zswap.zpool=z3fold quiet loglevel=3
Απρ 28 19:52:06 vampyre kernel: Unknown kernel command line parameters "BOOT_IMAGE=/vmlinuz-linux", will be passed to user space.
Απρ 28 19:52:06 vampyre kernel: Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
Απρ 28 19:52:06 vampyre kernel: Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
Απρ 28 19:52:06 vampyre kernel: mem auto-init: stack:byref_all(zero), heap alloc:on, heap free:off
Απρ 28 19:52:06 vampyre kernel: Memory: 15970212K/16472204K available (14343K kernel code, 2092K rwdata, 10940K rodata, 1796K init, 3844K bss, 501732K reserved, 0K cma-reserved)
Απρ 28 19:52:06 vampyre kernel: random: get_random_u64 called from __kmem_cache_create+0x2a/0x550 with crng_init=0
Απρ 28 19:52:06 vampyre kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
Απρ 28 19:52:06 vampyre kernel: ftrace: allocating 44938 entries in 176 pages
Απρ 28 19:52:06 vampyre kernel: ftrace: allocated 176 pages with 3 groups
Απρ 28 19:52:06 vampyre kernel: Dynamic Preempt: full
Απρ 28 19:52:06 vampyre kernel: rcu: Preemptible hierarchical RCU implementation.
Απρ 28 19:52:06 vampyre kernel: rcu:         RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=8.
Απρ 28 19:52:06 vampyre kernel: rcu:         RCU priority boosting: priority 1 delay 500 ms.
Απρ 28 19:52:06 vampyre kernel:         Trampoline variant of Tasks RCU enabled.
Απρ 28 19:52:06 vampyre kernel:         Rude variant of Tasks RCU enabled.
Απρ 28 19:52:06 vampyre kernel:         Tracing variant of Tasks RCU enabled.
Απρ 28 19:52:06 vampyre kernel: rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
Απρ 28 19:52:06 vampyre kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
Απρ 28 19:52:06 vampyre kernel: NR_IRQS: 20736, nr_irqs: 2048, preallocated irqs: 16
Απρ 28 19:52:06 vampyre kernel: kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
Απρ 28 19:52:06 vampyre kernel: random: crng init done (trusting CPU's manufacturer)
Απρ 28 19:52:06 vampyre kernel: Console: colour dummy device 80x25
Απρ 28 19:52:06 vampyre kernel: printk: console [tty0] enabled
Απρ 28 19:52:06 vampyre kernel: ACPI: Core revision 20211217
Απρ 28 19:52:06 vampyre kernel: hpet: HPET dysfunctional in PC10. Force disabled.
Απρ 28 19:52:06 vampyre kernel: APIC: Switch to symmetric I/O mode setup
Απρ 28 19:52:06 vampyre kernel: DMAR: Host address width 39
Απρ 28 19:52:06 vampyre kernel: DMAR: DRHD base: 0x000000fed90000 flags: 0x0
Απρ 28 19:52:06 vampyre kernel: DMAR: dmar0: reg_base_addr fed90000 ver 4:0 cap 1c0000c40660462 ecap 69e2ff0505e
Απρ 28 19:52:06 vampyre kernel: DMAR: DRHD base: 0x000000fed84000 flags: 0x0
Απρ 28 19:52:06 vampyre kernel: DMAR: dmar1: reg_base_addr fed84000 ver 1:0 cap d2008c40660462 ecap f050da
Απρ 28 19:52:06 vampyre kernel: DMAR: DRHD base: 0x000000fed91000 flags: 0x1
Απρ 28 19:52:06 vampyre kernel: DMAR: dmar2: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
Απρ 28 19:52:06 vampyre kernel: DMAR: RMRR base: 0x00000070000000 end: 0x000000743fffff
Απρ 28 19:52:06 vampyre kernel: DMAR-IR: IOAPIC id 2 under DRHD base  0xfed91000 IOMMU 2
Απρ 28 19:52:06 vampyre kernel: DMAR-IR: HPET id 0 under DRHD base 0xfed91000
Απρ 28 19:52:06 vampyre kernel: DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
Απρ 28 19:52:06 vampyre kernel: DMAR-IR: Enabled IRQ remapping in x2apic mode
Απρ 28 19:52:06 vampyre kernel: x2apic enabled
Απρ 28 19:52:06 vampyre kernel: Switched APIC routing to cluster x2apic.
Απρ 28 19:52:06 vampyre kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x28680fa287f, max_idle_ns: 440795281151 ns
Απρ 28 19:52:06 vampyre kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 5608.00 BogoMIPS (lpj=9344000)
Απρ 28 19:52:06 vampyre kernel: pid_max: default: 32768 minimum: 301
Απρ 28 19:52:06 vampyre kernel: LSM: Security Framework initializing
Απρ 28 19:52:06 vampyre kernel: landlock: Up and running.
Απρ 28 19:52:06 vampyre kernel: Yama: becoming mindful.
Απρ 28 19:52:06 vampyre kernel: LSM support for eBPF active
Απρ 28 19:52:06 vampyre kernel: Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
Απρ 28 19:52:06 vampyre kernel: Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
Απρ 28 19:52:06 vampyre kernel: CPU0: Thermal monitoring enabled (TM1)
Απρ 28 19:52:06 vampyre kernel: x86/cpu: User Mode Instruction Prevention (UMIP) activated
Απρ 28 19:52:06 vampyre kernel: process: using mwait in idle threads
Απρ 28 19:52:06 vampyre kernel: Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
Απρ 28 19:52:06 vampyre kernel: Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
Απρ 28 19:52:06 vampyre kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
Απρ 28 19:52:06 vampyre kernel: Spectre V2 : Mitigation: Enhanced IBRS
Απρ 28 19:52:06 vampyre kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
Απρ 28 19:52:06 vampyre kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
Απρ 28 19:52:06 vampyre kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
Απρ 28 19:52:06 vampyre kernel: Freeing SMP alternatives memory: 36K
Απρ 28 19:52:06 vampyre kernel: smpboot: Estimated ratio of average max frequency by base frequency (times 1024): 1499
Απρ 28 19:52:06 vampyre kernel: smpboot: CPU0: 11th Gen Intel(R) Core(TM) i7-1165G7 @ 2.80GHz (family: 0x6, model: 0x8c, stepping: 0x1)
Απρ 28 19:52:06 vampyre kernel: cblist_init_generic: Setting adjustable number of callback queues.
Απρ 28 19:52:06 vampyre kernel: cblist_init_generic: Setting shift to 3 and lim to 1.
Απρ 28 19:52:06 vampyre kernel: cblist_init_generic: Setting shift to 3 and lim to 1.
Απρ 28 19:52:06 vampyre kernel: cblist_init_generic: Setting shift to 3 and lim to 1.
Απρ 28 19:52:06 vampyre kernel: Performance Events: PEBS fmt4+-baseline,  AnyThread deprecated, Icelake events, 32-deep LBR, full-width counters, Intel PMU driver.
Απρ 28 19:52:06 vampyre kernel: ... version:                5
Απρ 28 19:52:06 vampyre kernel: ... bit width:              48
Απρ 28 19:52:06 vampyre kernel: ... generic registers:      8
Απρ 28 19:52:06 vampyre kernel: ... value mask:             0000ffffffffffff
Απρ 28 19:52:06 vampyre kernel: ... max period:             00007fffffffffff
Απρ 28 19:52:06 vampyre kernel: ... fixed-purpose events:   4
Απρ 28 19:52:06 vampyre kernel: ... event mask:             0001000f000000ff
Απρ 28 19:52:06 vampyre kernel: rcu: Hierarchical SRCU implementation.
Απρ 28 19:52:06 vampyre kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
Απρ 28 19:52:06 vampyre kernel: smp: Bringing up secondary CPUs ...
Απρ 28 19:52:06 vampyre kernel: x86: Booting SMP configuration:
Απρ 28 19:52:06 vampyre kernel: .... node  #0, CPUs:      #1 #2 #3 #4 #5 #6 #7
Απρ 28 19:52:06 vampyre kernel: smp: Brought up 1 node, 8 CPUs
Απρ 28 19:52:06 vampyre kernel: smpboot: Max logical packages: 1
Απρ 28 19:52:06 vampyre kernel: smpboot: Total of 8 processors activated (44869.00 BogoMIPS)
Απρ 28 19:52:06 vampyre kernel: devtmpfs: initialized
Απρ 28 19:52:06 vampyre kernel: x86/mm: Memory block size: 128MB
Απρ 28 19:52:06 vampyre kernel: ACPI: PM: Registering ACPI NVS region [mem 0x64c50000-0x64d05fff] (745472 bytes)
Απρ 28 19:52:06 vampyre kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
Απρ 28 19:52:06 vampyre kernel: futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
Απρ 28 19:52:06 vampyre kernel: pinctrl core: initialized pinctrl subsystem
Απρ 28 19:52:06 vampyre kernel: PM: RTC time: 19:52:04, date: 2022-04-28
Απρ 28 19:52:06 vampyre kernel: NET: Registered PF_NETLINK/PF_ROUTE protocol family
Απρ 28 19:52:06 vampyre kernel: DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations
Απρ 28 19:52:06 vampyre kernel: DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
Απρ 28 19:52:06 vampyre kernel: DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
Απρ 28 19:52:06 vampyre kernel: audit: initializing netlink subsys (disabled)
Απρ 28 19:52:06 vampyre kernel: audit: type=2000 audit(1651175524.013:1): state=initialized audit_enabled=0 res=1
Απρ 28 19:52:06 vampyre kernel: thermal_sys: Registered thermal governor 'fair_share'
Απρ 28 19:52:06 vampyre kernel: thermal_sys: Registered thermal governor 'bang_bang'
Απρ 28 19:52:06 vampyre kernel: thermal_sys: Registered thermal governor 'step_wise'
Απρ 28 19:52:06 vampyre kernel: thermal_sys: Registered thermal governor 'user_space'
Απρ 28 19:52:06 vampyre kernel: thermal_sys: Registered thermal governor 'power_allocator'
Απρ 28 19:52:06 vampyre kernel: cpuidle: using governor ladder
Απρ 28 19:52:06 vampyre kernel: cpuidle: using governor menu
Απρ 28 19:52:06 vampyre kernel: HugeTLB: can free 4094 vmemmap pages for hugepages-1048576kB
Απρ 28 19:52:06 vampyre kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Απρ 28 19:52:06 vampyre kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xc0000000-0xcfffffff] (base 0xc0000000)
Απρ 28 19:52:06 vampyre kernel: PCI: MMCONFIG at [mem 0xc0000000-0xcfffffff] reserved in E820
Απρ 28 19:52:06 vampyre kernel: PCI: Using configuration type 1 for base access
Απρ 28 19:52:06 vampyre kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
Απρ 28 19:52:06 vampyre kernel: kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
Απρ 28 19:52:06 vampyre kernel: HugeTLB: can free 6 vmemmap pages for hugepages-2048kB
Απρ 28 19:52:06 vampyre kernel: HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
Απρ 28 19:52:06 vampyre kernel: HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
Απρ 28 19:52:06 vampyre kernel: ACPI: Added _OSI(Module Device)
Απρ 28 19:52:06 vampyre kernel: ACPI: Added _OSI(Processor Device)
Απρ 28 19:52:06 vampyre kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Απρ 28 19:52:06 vampyre kernel: ACPI: Added _OSI(Processor Aggregator Device)
Απρ 28 19:52:06 vampyre kernel: ACPI: Added _OSI(Linux-Dell-Video)
Απρ 28 19:52:06 vampyre kernel: ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
Απρ 28 19:52:06 vampyre kernel: ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
Απρ 28 19:52:06 vampyre kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.PEG0.PEGP._DSD], AE_ALREADY_EXISTS (20211217/dswload2-326)
Απρ 28 19:52:06 vampyre kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20211217/psobject-220)
Απρ 28 19:52:06 vampyre kernel: ACPI: Skipping parse of AML opcode: Method (0x0014)
Απρ 28 19:52:06 vampyre kernel: ACPI: 11 ACPI AML tables successfully acquired and loaded
Απρ 28 19:52:06 vampyre kernel: ACPI: Dynamic OEM Table Load:
Απρ 28 19:52:06 vampyre kernel: ACPI: SSDT 0xFFFF96368029E200 0001B8 (v02 PmRef  Cpu0Psd  00003000 INTL 20191018)
Απρ 28 19:52:06 vampyre kernel: ACPI: \_SB_.PR00: _OSC native thermal LVT Acked
Απρ 28 19:52:06 vampyre kernel: ACPI: Dynamic OEM Table Load:
Απρ 28 19:52:06 vampyre kernel: ACPI: SSDT 0xFFFF9636814FC000 000394 (v02 PmRef  Cpu0Cst  00003001 INTL 20191018)
Απρ 28 19:52:06 vampyre kernel: ACPI: Dynamic OEM Table Load:
Απρ 28 19:52:06 vampyre kernel: ACPI: SSDT 0xFFFF9636815A2000 000647 (v02 PmRef  Cpu0Ist  00003000 INTL 20191018)
Απρ 28 19:52:06 vampyre kernel: ACPI: Dynamic OEM Table Load:
Απρ 28 19:52:06 vampyre kernel: ACPI: SSDT 0xFFFF96368029F600 000128 (v02 PmRef  Cpu0Hwp  00003000 INTL 20191018)
Απρ 28 19:52:06 vampyre kernel: ACPI: Dynamic OEM Table Load:
Απρ 28 19:52:06 vampyre kernel: ACPI: SSDT 0xFFFF96368012A000 0008E7 (v02 PmRef  ApIst    00003000 INTL 20191018)
Απρ 28 19:52:06 vampyre kernel: ACPI: Dynamic OEM Table Load:
Απρ 28 19:52:06 vampyre kernel: ACPI: SSDT 0xFFFF9636815A7800 00048A (v02 PmRef  ApHwp    00003000 INTL 20191018)
Απρ 28 19:52:06 vampyre kernel: ACPI: Dynamic OEM Table Load:
Απρ 28 19:52:06 vampyre kernel: ACPI: SSDT 0xFFFF9636815A5000 0004D2 (v02 PmRef  ApPsd    00003000 INTL 20191018)
Απρ 28 19:52:06 vampyre kernel: ACPI: Dynamic OEM Table Load:
Απρ 28 19:52:06 vampyre kernel: ACPI: SSDT 0xFFFF9636815A6000 00048A (v02 PmRef  ApCst    00003000 INTL 20191018)
Απρ 28 19:52:06 vampyre kernel: ACPI: EC: EC started
Απρ 28 19:52:06 vampyre kernel: ACPI: EC: interrupt blocked
Απρ 28 19:52:06 vampyre kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
Απρ 28 19:52:06 vampyre kernel: ACPI: \_SB_.PC00.LPCB.EC__: Boot DSDT EC used to handle transactions
Απρ 28 19:52:06 vampyre kernel: ACPI: Interpreter enabled
Απρ 28 19:52:06 vampyre kernel: ACPI: PM: (supports S0 S3 S4 S5)
Απρ 28 19:52:06 vampyre kernel: ACPI: Using IOAPIC for interrupt routing
Απρ 28 19:52:06 vampyre kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Απρ 28 19:52:06 vampyre kernel: ACPI: Enabled 7 GPEs in block 00 to 7F
Απρ 28 19:52:06 vampyre kernel: ACPI: PM: Power Resource [PXP]
Απρ 28 19:52:06 vampyre kernel: ACPI: PM: Power Resource [PXP]
Απρ 28 19:52:06 vampyre kernel: ACPI: PM: Power Resource [PXP]
Απρ 28 19:52:06 vampyre kernel: ACPI: PM: Power Resource [BTPR]
Απρ 28 19:52:06 vampyre kernel: ACPI: PM: Power Resource [PAUD]
Απρ 28 19:52:06 vampyre kernel: ACPI: PM: Power Resource [V0PR]
Απρ 28 19:52:06 vampyre kernel: ACPI: PM: Power Resource [V1PR]
Απρ 28 19:52:06 vampyre kernel: ACPI: PM: Power Resource [V2PR]
Απρ 28 19:52:06 vampyre kernel: ACPI: PM: Power Resource [PXTC]
Απρ 28 19:52:06 vampyre kernel: ACPI: PM: Power Resource [PTPL]
Απρ 28 19:52:06 vampyre kernel: ACPI: PM: Power Resource [PXTC]
Απρ 28 19:52:06 vampyre kernel: ACPI: PM: Power Resource [PXTC]
Απρ 28 19:52:06 vampyre kernel: ACPI: PM: Power Resource [WRST]
Απρ 28 19:52:06 vampyre kernel: ACPI: PM: Power Resource [TBT0]
Απρ 28 19:52:06 vampyre kernel: ACPI: PM: Power Resource [TBT1]
Απρ 28 19:52:06 vampyre kernel: ACPI: PM: Power Resource [D3C]
Απρ 28 19:52:06 vampyre kernel: ACPI: PM: Power Resource [PIN]
Απρ 28 19:52:06 vampyre kernel: ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-fe])
Απρ 28 19:52:06 vampyre kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
Απρ 28 19:52:06 vampyre kernel: acpi PNP0A08:00: _OSC: platform does not support [AER]
Απρ 28 19:52:06 vampyre kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability LTR DPC]
Απρ 28 19:52:06 vampyre kernel: PCI host bridge to bus 0000:00
Απρ 28 19:52:06 vampyre kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
Απρ 28 19:52:06 vampyre kernel: pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
Απρ 28 19:52:06 vampyre kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Απρ 28 19:52:06 vampyre kernel: pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000fffff window]
Απρ 28 19:52:06 vampyre kernel: pci_bus 0000:00: root bus resource [mem 0x74400000-0xbfffffff window]
Απρ 28 19:52:06 vampyre kernel: pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
Απρ 28 19:52:06 vampyre kernel: pci_bus 0000:00: root bus resource [bus 00-fe]
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:00.0: [8086:9a14] type 00 class 0x060000
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:02.0: [8086:9a49] type 00 class 0x030000
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:02.0: reg 0x10: [mem 0x601c000000-0x601cffffff 64bit]
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:02.0: reg 0x18: [mem 0x4000000000-0x400fffffff 64bit pref]
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:02.0: reg 0x20: [io  0x3000-0x303f]
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:02.0: BAR 2: assigned to efifb
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:02.0: DMAR: Skip IOMMU disabling for graphics
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:02.0: reg 0x344: [mem 0x00000000-0x00ffffff 64bit]
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:02.0: VF(n) BAR0 space: [mem 0x00000000-0x06ffffff 64bit] (contains BAR0 for 7 VFs)
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:02.0: reg 0x34c: [mem 0x00000000-0x1fffffff 64bit pref]
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:02.0: VF(n) BAR2 space: [mem 0x00000000-0xdfffffff 64bit pref] (contains BAR2 for 7 VFs)
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:04.0: [8086:9a03] type 00 class 0x118000
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:04.0: reg 0x10: [mem 0x601d140000-0x601d15ffff 64bit]
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:06.0: [8086:9a09] type 01 class 0x060400
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:06.0: PTM enabled (root), 4ns granularity
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:07.0: [8086:9a23] type 01 class 0x060400
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:07.0: PME# supported from D0 D3hot D3cold
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:07.0: DPC: RP PIO log size 0 is invalid
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:08.0: [8086:9a11] type 00 class 0x088000
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:08.0: reg 0x10: [mem 0x601d199000-0x601d199fff 64bit]
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:0a.0: [8086:9a0d] type 00 class 0x118000
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:0a.0: reg 0x10: [mem 0x601d180000-0x601d187fff 64bit]
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:0a.0: enabling Extended Tags
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:0d.0: [8086:9a13] type 00 class 0x0c0330
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:0d.0: reg 0x10: [mem 0x601d170000-0x601d17ffff 64bit]
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:0d.0: PME# supported from D3hot D3cold
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:0d.2: [8086:9a1b] type 00 class 0x0c0340
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:0d.2: reg 0x10: [mem 0x601d100000-0x601d13ffff 64bit]
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:0d.2: reg 0x18: [mem 0x601d198000-0x601d198fff 64bit]
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:0d.2: supports D1 D2
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:0d.2: PME# supported from D0 D1 D2 D3hot D3cold
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:14.0: [8086:a0ed] type 00 class 0x0c0330
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:14.0: reg 0x10: [mem 0x601d160000-0x601d16ffff 64bit]
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:14.2: [8086:a0ef] type 00 class 0x050000
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:14.2: reg 0x10: [mem 0x601d190000-0x601d193fff 64bit]
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:14.2: reg 0x18: [mem 0x601d197000-0x601d197fff 64bit]
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:14.3: [8086:a0f0] type 00 class 0x028000
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:14.3: reg 0x10: [mem 0x601d18c000-0x601d18ffff 64bit]
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:14.3: PME# supported from D0 D3hot D3cold
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:15.0: [8086:a0e8] type 00 class 0x0c8000
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:15.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:16.0: [8086:a0e0] type 00 class 0x078000
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:16.0: reg 0x10: [mem 0x601d195000-0x601d195fff 64bit]
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:16.0: PME# supported from D3hot
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:1c.0: [8086:a0b8] type 01 class 0x060400
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:1c.3: [8086:a0bb] type 01 class 0x060400
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:1c.3: PTM enabled (root), 4ns granularity
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:1f.0: [8086:a082] type 00 class 0x060100
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:1f.3: [8086:a0c8] type 00 class 0x040100
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:1f.3: reg 0x10: [mem 0x601d188000-0x601d18bfff 64bit]
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:1f.3: reg 0x20: [mem 0x601d000000-0x601d0fffff 64bit]
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:1f.3: PME# supported from D3hot D3cold
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:1f.4: [8086:a0a3] type 00 class 0x0c0500
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:1f.4: reg 0x10: [mem 0x601d194000-0x601d1940ff 64bit]
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:1f.4: reg 0x20: [io  0xefa0-0xefbf]
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:1f.5: [8086:a0a4] type 00 class 0x0c8000
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:1f.5: reg 0x10: [mem 0xfe010000-0xfe010fff]
Απρ 28 19:52:06 vampyre kernel: pci 0000:01:00.0: [2646:500c] type 00 class 0x010802
Απρ 28 19:52:06 vampyre kernel: pci 0000:01:00.0: reg 0x10: [mem 0x82400000-0x82403fff 64bit]
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:06.0: PCI bridge to [bus 01]
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:06.0:   bridge window [mem 0x82400000-0x824fffff]
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:07.0: PCI bridge to [bus 02-2c]
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:07.0:   bridge window [mem 0x76000000-0x821fffff]
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:07.0:   bridge window [mem 0x6000000000-0x601bffffff 64bit pref]
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:1c.0: PCI bridge to [bus 2d]
Απρ 28 19:52:06 vampyre kernel: pci 0000:2e:00.0: [10ec:525a] type 00 class 0xff0000
Απρ 28 19:52:06 vampyre kernel: pci 0000:2e:00.0: reg 0x14: [mem 0x82300000-0x82300fff]
Απρ 28 19:52:06 vampyre kernel: pci 0000:2e:00.0: supports D1 D2
Απρ 28 19:52:06 vampyre kernel: pci 0000:2e:00.0: PME# supported from D1 D2 D3hot D3cold
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:1c.3: PCI bridge to [bus 2e]
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:1c.3:   bridge window [mem 0x82300000-0x823fffff]
Απρ 28 19:52:06 vampyre kernel: ACPI: PCI: Interrupt link LNKA configured for IRQ 0
Απρ 28 19:52:06 vampyre kernel: ACPI: PCI: Interrupt link LNKB configured for IRQ 1
Απρ 28 19:52:06 vampyre kernel: ACPI: PCI: Interrupt link LNKC configured for IRQ 0
Απρ 28 19:52:06 vampyre kernel: ACPI: PCI: Interrupt link LNKD configured for IRQ 0
Απρ 28 19:52:06 vampyre kernel: ACPI: PCI: Interrupt link LNKE configured for IRQ 0
Απρ 28 19:52:06 vampyre kernel: ACPI: PCI: Interrupt link LNKF configured for IRQ 0
Απρ 28 19:52:06 vampyre kernel: ACPI: PCI: Interrupt link LNKG configured for IRQ 0
Απρ 28 19:52:06 vampyre kernel: ACPI: PCI: Interrupt link LNKH configured for IRQ 0
Απρ 28 19:52:06 vampyre kernel: ACPI: EC: interrupt unblocked
Απρ 28 19:52:06 vampyre kernel: ACPI: EC: event unblocked
Απρ 28 19:52:06 vampyre kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
Απρ 28 19:52:06 vampyre kernel: ACPI: EC: GPE=0x6e
Απρ 28 19:52:06 vampyre kernel: ACPI: \_SB_.PC00.LPCB.EC__: Boot DSDT EC initialization complete
Απρ 28 19:52:06 vampyre kernel: ACPI: \_SB_.PC00.LPCB.EC__: EC: Used to handle transactions and events
Απρ 28 19:52:06 vampyre kernel: iommu: Default domain type: Translated 
Απρ 28 19:52:06 vampyre kernel: iommu: DMA domain TLB invalidation policy: lazy mode 
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:02.0: vgaarb: setting as boot VGA device
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:02.0: vgaarb: bridge control possible
Απρ 28 19:52:06 vampyre kernel: vgaarb: loaded
Απρ 28 19:52:06 vampyre kernel: SCSI subsystem initialized
Απρ 28 19:52:06 vampyre kernel: libata version 3.00 loaded.
Απρ 28 19:52:06 vampyre kernel: ACPI: bus type USB registered
Απρ 28 19:52:06 vampyre kernel: usbcore: registered new interface driver usbfs
Απρ 28 19:52:06 vampyre kernel: usbcore: registered new interface driver hub
Απρ 28 19:52:06 vampyre kernel: usbcore: registered new device driver usb
Απρ 28 19:52:06 vampyre kernel: pps_core: LinuxPPS API ver. 1 registered
Απρ 28 19:52:06 vampyre kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Απρ 28 19:52:06 vampyre kernel: PTP clock support registered
Απρ 28 19:52:06 vampyre kernel: EDAC MC: Ver: 3.0.0
Απρ 28 19:52:06 vampyre kernel: Registered efivars operations
Απρ 28 19:52:06 vampyre kernel: NetLabel: Initializing
Απρ 28 19:52:06 vampyre kernel: NetLabel:  domain hash size = 128
Απρ 28 19:52:06 vampyre kernel: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
Απρ 28 19:52:06 vampyre kernel: NetLabel:  unlabeled traffic allowed by default
Απρ 28 19:52:06 vampyre kernel: mctp: management component transport protocol core
Απρ 28 19:52:06 vampyre kernel: NET: Registered PF_MCTP protocol family
Απρ 28 19:52:06 vampyre kernel: PCI: Using ACPI for IRQ routing
Απρ 28 19:52:06 vampyre kernel: PCI: pci_cache_line_size set to 64 bytes
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:1f.5: can't claim BAR 0 [mem 0xfe010000-0xfe010fff]: no compatible bridge window
Απρ 28 19:52:06 vampyre kernel: e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
Απρ 28 19:52:06 vampyre kernel: e820: reserve RAM buffer [mem 0x5c026000-0x5fffffff]
Απρ 28 19:52:06 vampyre kernel: e820: reserve RAM buffer [mem 0x5ffb9000-0x5fffffff]
Απρ 28 19:52:06 vampyre kernel: e820: reserve RAM buffer [mem 0x61a84000-0x63ffffff]
Απρ 28 19:52:06 vampyre kernel: e820: reserve RAM buffer [mem 0x67f00000-0x67ffffff]
Απρ 28 19:52:06 vampyre kernel: e820: reserve RAM buffer [mem 0x48bc00000-0x48bffffff]
Απρ 28 19:52:06 vampyre kernel: clocksource: Switched to clocksource tsc-early
Απρ 28 19:52:06 vampyre kernel: VFS: Disk quotas dquot_6.6.0
Απρ 28 19:52:06 vampyre kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Απρ 28 19:52:06 vampyre kernel: pnp: PnP ACPI init
Απρ 28 19:52:06 vampyre kernel: system 00:02: [io  0x0680-0x069f] has been reserved
Απρ 28 19:52:06 vampyre kernel: system 00:02: [io  0x164e-0x164f] has been reserved
Απρ 28 19:52:06 vampyre kernel: system 00:03: [io  0x1854-0x1857] has been reserved
Απρ 28 19:52:06 vampyre kernel: pnp 00:04: disabling [mem 0xc0000000-0xcfffffff] because it overlaps 0000:00:02.0 BAR 9 [mem 0x00000000-0xdfffffff 64bit pref]
Απρ 28 19:52:06 vampyre kernel: system 00:04: [mem 0xfedc0000-0xfedc7fff] has been reserved
Απρ 28 19:52:06 vampyre kernel: system 00:04: [mem 0xfeda0000-0xfeda0fff] has been reserved
Απρ 28 19:52:06 vampyre kernel: system 00:04: [mem 0xfeda1000-0xfeda1fff] has been reserved
Απρ 28 19:52:06 vampyre kernel: system 00:04: [mem 0xfed20000-0xfed7ffff] could not be reserved
Απρ 28 19:52:06 vampyre kernel: system 00:04: [mem 0xfed90000-0xfed93fff] could not be reserved
Απρ 28 19:52:06 vampyre kernel: system 00:04: [mem 0xfed45000-0xfed8ffff] could not be reserved
Απρ 28 19:52:06 vampyre kernel: system 00:04: [mem 0xfee00000-0xfeefffff] could not be reserved
Απρ 28 19:52:06 vampyre kernel: system 00:05: [io  0x1800-0x18fe] could not be reserved
Απρ 28 19:52:06 vampyre kernel: system 00:05: [mem 0xfe000000-0xfe01ffff] could not be reserved
Απρ 28 19:52:06 vampyre kernel: system 00:05: [mem 0xfe04c000-0xfe04ffff] has been reserved
Απρ 28 19:52:06 vampyre kernel: system 00:05: [mem 0xfe050000-0xfe0affff] has been reserved
Απρ 28 19:52:06 vampyre kernel: system 00:05: [mem 0xfe0d0000-0xfe0fffff] has been reserved
Απρ 28 19:52:06 vampyre kernel: system 00:05: [mem 0xfe200000-0xfe7fffff] has been reserved
Απρ 28 19:52:06 vampyre kernel: system 00:05: [mem 0xff000000-0xffffffff] has been reserved
Απρ 28 19:52:06 vampyre kernel: system 00:05: [mem 0xfd000000-0xfd68ffff] has been reserved
Απρ 28 19:52:06 vampyre kernel: system 00:05: [mem 0xfd6b0000-0xfd6cffff] has been reserved
Απρ 28 19:52:06 vampyre kernel: system 00:05: [mem 0xfd6f0000-0xfdffffff] has been reserved
Απρ 28 19:52:06 vampyre kernel: system 00:06: [io  0x2000-0x20fe] has been reserved
Απρ 28 19:52:06 vampyre kernel: pnp: PnP ACPI: found 8 devices
Απρ 28 19:52:06 vampyre kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Απρ 28 19:52:06 vampyre kernel: NET: Registered PF_INET protocol family
Απρ 28 19:52:06 vampyre kernel: IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
Απρ 28 19:52:06 vampyre kernel: tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
Απρ 28 19:52:06 vampyre kernel: TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
Απρ 28 19:52:06 vampyre kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
Απρ 28 19:52:06 vampyre kernel: TCP: Hash tables configured (established 131072 bind 65536)
Απρ 28 19:52:06 vampyre kernel: MPTCP token hash table entries: 16384 (order: 6, 393216 bytes, linear)
Απρ 28 19:52:06 vampyre kernel: UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
Απρ 28 19:52:06 vampyre kernel: UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
Απρ 28 19:52:06 vampyre kernel: NET: Registered PF_UNIX/PF_LOCAL protocol family
Απρ 28 19:52:06 vampyre kernel: NET: Registered PF_XDP protocol family
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:07.0: bridge window [io  0x1000-0x0fff] to [bus 02-2c] add_size 1000
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:02.0: BAR 9: assigned [mem 0x4020000000-0x40ffffffff 64bit pref]
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:02.0: BAR 7: assigned [mem 0x4010000000-0x4016ffffff 64bit]
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:07.0: BAR 13: assigned [io  0x4000-0x4fff]
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:15.0: BAR 0: assigned [mem 0x4017000000-0x4017000fff 64bit]
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:1f.5: BAR 0: assigned [mem 0x74400000-0x74400fff]
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:06.0: PCI bridge to [bus 01]
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:06.0:   bridge window [mem 0x82400000-0x824fffff]
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:07.0: PCI bridge to [bus 02-2c]
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:07.0:   bridge window [io  0x4000-0x4fff]
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:07.0:   bridge window [mem 0x76000000-0x821fffff]
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:07.0:   bridge window [mem 0x6000000000-0x601bffffff 64bit pref]
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:1c.0: PCI bridge to [bus 2d]
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:1c.3: PCI bridge to [bus 2e]
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:1c.3:   bridge window [mem 0x82300000-0x823fffff]
Απρ 28 19:52:06 vampyre kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
Απρ 28 19:52:06 vampyre kernel: pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
Απρ 28 19:52:06 vampyre kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
Απρ 28 19:52:06 vampyre kernel: pci_bus 0000:00: resource 7 [mem 0x000e0000-0x000fffff window]
Απρ 28 19:52:06 vampyre kernel: pci_bus 0000:00: resource 8 [mem 0x74400000-0xbfffffff window]
Απρ 28 19:52:06 vampyre kernel: pci_bus 0000:00: resource 9 [mem 0x4000000000-0x7fffffffff window]
Απρ 28 19:52:06 vampyre kernel: pci_bus 0000:01: resource 1 [mem 0x82400000-0x824fffff]
Απρ 28 19:52:06 vampyre kernel: pci_bus 0000:02: resource 0 [io  0x4000-0x4fff]
Απρ 28 19:52:06 vampyre kernel: pci_bus 0000:02: resource 1 [mem 0x76000000-0x821fffff]
Απρ 28 19:52:06 vampyre kernel: pci_bus 0000:02: resource 2 [mem 0x6000000000-0x601bffffff 64bit pref]
Απρ 28 19:52:06 vampyre kernel: pci_bus 0000:2e: resource 1 [mem 0x82300000-0x823fffff]
Απρ 28 19:52:06 vampyre kernel: PCI: CLS 64 bytes, default 64
Απρ 28 19:52:06 vampyre kernel: DMAR: Intel-IOMMU force enabled due to platform opt in
Απρ 28 19:52:06 vampyre kernel: DMAR: No ATSR found
Απρ 28 19:52:06 vampyre kernel: DMAR: No SATC found
Απρ 28 19:52:06 vampyre kernel: DMAR: IOMMU feature fl1gp_support inconsistent
Απρ 28 19:52:06 vampyre kernel: DMAR: IOMMU feature pgsel_inv inconsistent
Απρ 28 19:52:06 vampyre kernel: DMAR: IOMMU feature nwfs inconsistent
Απρ 28 19:52:06 vampyre kernel: DMAR: IOMMU feature pds inconsistent
Απρ 28 19:52:06 vampyre kernel: DMAR: IOMMU feature dit inconsistent
Απρ 28 19:52:06 vampyre kernel: DMAR: IOMMU feature eafs inconsistent
Απρ 28 19:52:06 vampyre kernel: DMAR: IOMMU feature prs inconsistent
Απρ 28 19:52:06 vampyre kernel: DMAR: IOMMU feature nest inconsistent
Απρ 28 19:52:06 vampyre kernel: DMAR: IOMMU feature mts inconsistent
Απρ 28 19:52:06 vampyre kernel: DMAR: IOMMU feature sc_support inconsistent
Απρ 28 19:52:06 vampyre kernel: DMAR: IOMMU feature dev_iotlb_support inconsistent
Απρ 28 19:52:06 vampyre kernel: DMAR: dmar1: Using Queued invalidation
Απρ 28 19:52:06 vampyre kernel: DMAR: dmar0: Using Queued invalidation
Απρ 28 19:52:06 vampyre kernel: DMAR: dmar2: Using Queued invalidation
Απρ 28 19:52:06 vampyre kernel: Trying to unpack rootfs image as initramfs...
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:00.0: Adding to iommu group 0
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:02.0: Adding to iommu group 1
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:04.0: Adding to iommu group 2
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:06.0: Adding to iommu group 3
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:07.0: Adding to iommu group 4
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:08.0: Adding to iommu group 5
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:0a.0: Adding to iommu group 6
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:0d.0: Adding to iommu group 7
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:0d.2: Adding to iommu group 7
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:14.0: Adding to iommu group 8
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:14.2: Adding to iommu group 8
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:14.3: Adding to iommu group 9
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:15.0: Adding to iommu group 10
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:16.0: Adding to iommu group 11
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:1c.0: Adding to iommu group 12
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:1c.3: Adding to iommu group 13
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:1f.0: Adding to iommu group 14
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:1f.3: Adding to iommu group 14
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:1f.4: Adding to iommu group 14
Απρ 28 19:52:06 vampyre kernel: pci 0000:00:1f.5: Adding to iommu group 14
Απρ 28 19:52:06 vampyre kernel: pci 0000:01:00.0: Adding to iommu group 15
Απρ 28 19:52:06 vampyre kernel: pci 0000:2e:00.0: Adding to iommu group 16
Απρ 28 19:52:06 vampyre kernel: DMAR: Intel(R) Virtualization Technology for Directed I/O
Απρ 28 19:52:06 vampyre kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Απρ 28 19:52:06 vampyre kernel: software IO TLB: mapped [mem 0x0000000057ba5000-0x000000005bba5000] (64MB)
Απρ 28 19:52:06 vampyre kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x28680fa287f, max_idle_ns: 440795281151 ns
Απρ 28 19:52:06 vampyre kernel: clocksource: Switched to clocksource tsc
Απρ 28 19:52:06 vampyre kernel: platform rtc_cmos: registered platform RTC device (no PNP device found)
Απρ 28 19:52:06 vampyre kernel: Initialise system trusted keyrings
Απρ 28 19:52:06 vampyre kernel: Key type blacklist registered
Απρ 28 19:52:06 vampyre kernel: workingset: timestamp_bits=41 max_order=22 bucket_order=0
Απρ 28 19:52:06 vampyre kernel: zbud: loaded
Απρ 28 19:52:06 vampyre kernel: Key type asymmetric registered
Απρ 28 19:52:06 vampyre kernel: Asymmetric key parser 'x509' registered
Απρ 28 19:52:06 vampyre kernel: Freeing initrd memory: 13520K
Απρ 28 19:52:06 vampyre kernel: alg: self-tests for CTR-KDF (hmac(sha256)) passed
Απρ 28 19:52:06 vampyre kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 242)
Απρ 28 19:52:06 vampyre kernel: io scheduler mq-deadline registered
Απρ 28 19:52:06 vampyre kernel: io scheduler kyber registered
Απρ 28 19:52:06 vampyre kernel: io scheduler bfq registered
Απρ 28 19:52:06 vampyre kernel: pcieport 0000:00:06.0: PME: Signaling with IRQ 123
Απρ 28 19:52:06 vampyre kernel: pcieport 0000:00:07.0: PME: Signaling with IRQ 124
Απρ 28 19:52:06 vampyre kernel: pcieport 0000:00:07.0: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
Απρ 28 19:52:06 vampyre kernel: pcieport 0000:00:1c.0: PME: Signaling with IRQ 125
Απρ 28 19:52:06 vampyre kernel: pcieport 0000:00:1c.3: PME: Signaling with IRQ 126
Απρ 28 19:52:06 vampyre kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Απρ 28 19:52:06 vampyre kernel: Monitor-Mwait will be used to enter C-1 state
Απρ 28 19:52:06 vampyre kernel: Monitor-Mwait will be used to enter C-2 state
Απρ 28 19:52:06 vampyre kernel: Monitor-Mwait will be used to enter C-3 state
Απρ 28 19:52:06 vampyre kernel: ACPI: \_SB_.PR00: Found 3 idle states
Απρ 28 19:52:06 vampyre kernel: ACPI: AC: AC Adapter [ADP1] (on-line)
Απρ 28 19:52:06 vampyre kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:09/PNP0C09:00/PNP0C0D:00/input/input0
Απρ 28 19:52:06 vampyre kernel: ACPI: button: Lid Switch [LID0]
Απρ 28 19:52:06 vampyre kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1
Απρ 28 19:52:06 vampyre kernel: ACPI: button: Sleep Button [SLPB]
Απρ 28 19:52:06 vampyre kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2
Απρ 28 19:52:06 vampyre kernel: ACPI: button: Power Button [PWRB]
Απρ 28 19:52:06 vampyre kernel: smpboot: Estimated ratio of average max frequency by base frequency (times 1024): 1499
Απρ 28 19:52:06 vampyre kernel: thermal LNXTHERM:00: registered as thermal_zone0
Απρ 28 19:52:06 vampyre kernel: ACPI: thermal: Thermal Zone [THRM] (60 C)
Απρ 28 19:52:06 vampyre kernel: Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Απρ 28 19:52:06 vampyre kernel: hpet_acpi_add: no address or irqs in _CRS
Απρ 28 19:52:06 vampyre kernel: Non-volatile memory driver v1.3
Απρ 28 19:52:06 vampyre kernel: Linux agpgart interface v0.103
Απρ 28 19:52:06 vampyre kernel: AMD-Vi: AMD IOMMUv2 functionality not available on this system - This is not a bug.
Απρ 28 19:52:06 vampyre kernel: ACPI: bus type drm_connector registered
Απρ 28 19:52:06 vampyre kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Απρ 28 19:52:06 vampyre kernel: ehci-pci: EHCI PCI platform driver
Απρ 28 19:52:06 vampyre kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Απρ 28 19:52:06 vampyre kernel: ohci-pci: OHCI PCI platform driver
Απρ 28 19:52:06 vampyre kernel: uhci_hcd: USB Universal Host Controller Interface driver
Απρ 28 19:52:06 vampyre kernel: usbcore: registered new interface driver usbserial_generic
Απρ 28 19:52:06 vampyre kernel: usbserial: USB Serial support registered for generic
Απρ 28 19:52:06 vampyre kernel: rtc_cmos rtc_cmos: RTC can wake from S4
Απρ 28 19:52:06 vampyre kernel: rtc_cmos rtc_cmos: registered as rtc0
Απρ 28 19:52:06 vampyre kernel: rtc_cmos rtc_cmos: setting system clock to 2022-04-28T19:52:05 UTC (1651175525)
Απρ 28 19:52:06 vampyre kernel: rtc_cmos rtc_cmos: alarms up to one month, y3k, 114 bytes nvram
Απρ 28 19:52:06 vampyre kernel: intel_pstate: Intel P-state driver initializing
Απρ 28 19:52:06 vampyre kernel: intel_pstate: HWP enabled
Απρ 28 19:52:06 vampyre kernel: ledtrig-cpu: registered to indicate activity on CPUs
Απρ 28 19:52:06 vampyre kernel: efifb: probing for efifb
Απρ 28 19:52:06 vampyre kernel: efifb: framebuffer at 0x4000000000, using 8128k, total 8128k
Απρ 28 19:52:06 vampyre kernel: efifb: mode is 1920x1080x32, linelength=7680, pages=1
Απρ 28 19:52:06 vampyre kernel: efifb: scrolling: redraw
Απρ 28 19:52:06 vampyre kernel: efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
Απρ 28 19:52:06 vampyre kernel: fbcon: Deferring console take-over
Απρ 28 19:52:06 vampyre kernel: fb0: EFI VGA frame buffer device
Απρ 28 19:52:06 vampyre kernel: hid: raw HID events driver (C) Jiri Kosina
Απρ 28 19:52:06 vampyre kernel: intel_pmc_core INT33A1:00:  initialized
Απρ 28 19:52:06 vampyre kernel: drop_monitor: Initializing network drop monitor service
Απρ 28 19:52:06 vampyre kernel: Initializing XFRM netlink socket
Απρ 28 19:52:06 vampyre kernel: NET: Registered PF_INET6 protocol family
Απρ 28 19:52:06 vampyre kernel: Segment Routing with IPv6
Απρ 28 19:52:06 vampyre kernel: RPL Segment Routing with IPv6
Απρ 28 19:52:06 vampyre kernel: In-situ OAM (IOAM) with IPv6
Απρ 28 19:52:06 vampyre kernel: NET: Registered PF_PACKET protocol family
Απρ 28 19:52:06 vampyre kernel: microcode: sig=0x806c1, pf=0x80, revision=0x9a
Απρ 28 19:52:06 vampyre kernel: microcode: Microcode Update Driver: v2.2.
Απρ 28 19:52:06 vampyre kernel: resctrl: L2 allocation detected
Απρ 28 19:52:06 vampyre kernel: IPI shorthand broadcast: enabled
Απρ 28 19:52:06 vampyre kernel: sched_clock: Marking stable (591536883, 6644440)->(607933713, -9752390)
Απρ 28 19:52:06 vampyre kernel: registered taskstats version 1
Απρ 28 19:52:06 vampyre kernel: Loading compiled-in X.509 certificates
Απρ 28 19:52:06 vampyre kernel: Loaded X.509 cert 'Build time autogenerated kernel key: b95bd5b1e828b0c60c527c660fe5f22c306d645a'
Απρ 28 19:52:06 vampyre kernel: zswap: loaded using pool lz4/z3fold
Απρ 28 19:52:06 vampyre kernel: Key type ._fscrypt registered
Απρ 28 19:52:06 vampyre kernel: Key type .fscrypt registered
Απρ 28 19:52:06 vampyre kernel: Key type fscrypt-provisioning registered
Απρ 28 19:52:06 vampyre kernel: PM:   Magic number: 2:448:901
Απρ 28 19:52:06 vampyre kernel: clocksource clocksource0: hash matches
Απρ 28 19:52:06 vampyre kernel: RAS: Correctable Errors collector initialized.
Απρ 28 19:52:06 vampyre kernel: ACPI: battery: Slot [BAT1] (battery present)
Απρ 28 19:52:06 vampyre kernel: Freeing unused decrypted memory: 2036K
Απρ 28 19:52:06 vampyre kernel: Freeing unused kernel image (initmem) memory: 1796K
Απρ 28 19:52:06 vampyre kernel: Write protecting the kernel read-only data: 28672k
Απρ 28 19:52:06 vampyre kernel: Freeing unused kernel image (text/rodata gap) memory: 2040K
Απρ 28 19:52:06 vampyre kernel: Freeing unused kernel image (rodata/data gap) memory: 1348K
Απρ 28 19:52:06 vampyre kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Απρ 28 19:52:06 vampyre kernel: rodata_test: all tests were successful
Απρ 28 19:52:06 vampyre kernel: Run /init as init process
Απρ 28 19:52:06 vampyre kernel:   with arguments:
Απρ 28 19:52:06 vampyre kernel:     /init
Απρ 28 19:52:06 vampyre kernel:   with environment:
Απρ 28 19:52:06 vampyre kernel:     HOME=/
Απρ 28 19:52:06 vampyre kernel:     TERM=linux
Απρ 28 19:52:06 vampyre kernel:     BOOT_IMAGE=/vmlinuz-linux
Απρ 28 19:52:06 vampyre kernel: fbcon: Taking over console
Απρ 28 19:52:06 vampyre kernel: Console: switching to colour frame buffer device 240x67
Απρ 28 19:52:06 vampyre kernel: rtsx_pci 0000:2e:00.0: enabling device (0000 -> 0002)
Απρ 28 19:52:06 vampyre kernel: xhci_hcd 0000:00:0d.0: xHCI Host Controller
Απρ 28 19:52:06 vampyre kernel: xhci_hcd 0000:00:0d.0: new USB bus registered, assigned bus number 1
Απρ 28 19:52:06 vampyre kernel: xhci_hcd 0000:00:0d.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000200009810
Απρ 28 19:52:06 vampyre kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.17
Απρ 28 19:52:06 vampyre kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Απρ 28 19:52:06 vampyre kernel: usb usb1: Product: xHCI Host Controller
Απρ 28 19:52:06 vampyre kernel: usb usb1: Manufacturer: Linux 5.17.5-arch1-1 xhci-hcd
Απρ 28 19:52:06 vampyre kernel: usb usb1: SerialNumber: 0000:00:0d.0
Απρ 28 19:52:06 vampyre kernel: hub 1-0:1.0: USB hub found
Απρ 28 19:52:06 vampyre kernel: hub 1-0:1.0: 1 port detected
Απρ 28 19:52:06 vampyre kernel: xhci_hcd 0000:00:0d.0: xHCI Host Controller
Απρ 28 19:52:06 vampyre kernel: xhci_hcd 0000:00:0d.0: new USB bus registered, assigned bus number 2
Απρ 28 19:52:06 vampyre kernel: xhci_hcd 0000:00:0d.0: Host supports USB 3.1 Enhanced SuperSpeed
Απρ 28 19:52:06 vampyre kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.17
Απρ 28 19:52:06 vampyre kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Απρ 28 19:52:06 vampyre kernel: usb usb2: Product: xHCI Host Controller
Απρ 28 19:52:06 vampyre kernel: usb usb2: Manufacturer: Linux 5.17.5-arch1-1 xhci-hcd
Απρ 28 19:52:06 vampyre kernel: usb usb2: SerialNumber: 0000:00:0d.0
Απρ 28 19:52:06 vampyre kernel: hub 2-0:1.0: USB hub found
Απρ 28 19:52:06 vampyre kernel: hub 2-0:1.0: 4 ports detected
Απρ 28 19:52:06 vampyre kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Απρ 28 19:52:06 vampyre kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
Απρ 28 19:52:06 vampyre kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
Απρ 28 19:52:06 vampyre kernel: xhci_hcd 0000:00:14.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000000009810
Απρ 28 19:52:06 vampyre kernel: usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.17
Απρ 28 19:52:06 vampyre kernel: usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Απρ 28 19:52:06 vampyre kernel: usb usb3: Product: xHCI Host Controller
Απρ 28 19:52:06 vampyre kernel: usb usb3: Manufacturer: Linux 5.17.5-arch1-1 xhci-hcd
Απρ 28 19:52:06 vampyre kernel: usb usb3: SerialNumber: 0000:00:14.0
Απρ 28 19:52:06 vampyre kernel: hub 3-0:1.0: USB hub found
Απρ 28 19:52:06 vampyre kernel: hub 3-0:1.0: 12 ports detected
Απρ 28 19:52:06 vampyre kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Απρ 28 19:52:06 vampyre kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
Απρ 28 19:52:06 vampyre kernel: xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
Απρ 28 19:52:06 vampyre kernel: usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.17
Απρ 28 19:52:06 vampyre kernel: usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Απρ 28 19:52:06 vampyre kernel: usb usb4: Product: xHCI Host Controller
Απρ 28 19:52:06 vampyre kernel: usb usb4: Manufacturer: Linux 5.17.5-arch1-1 xhci-hcd
Απρ 28 19:52:06 vampyre kernel: usb usb4: SerialNumber: 0000:00:14.0
Απρ 28 19:52:06 vampyre kernel: hub 4-0:1.0: USB hub found
Απρ 28 19:52:06 vampyre kernel: hub 4-0:1.0: 4 ports detected
Απρ 28 19:52:06 vampyre kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Απρ 28 19:52:06 vampyre kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
Απρ 28 19:52:06 vampyre kernel: nvme 0000:01:00.0: platform quirk: setting simple suspend
Απρ 28 19:52:06 vampyre kernel: nvme nvme0: pci function 0000:01:00.0
Απρ 28 19:52:06 vampyre kernel: nvme nvme0: missing or invalid SUBNQN field.
Απρ 28 19:52:06 vampyre kernel: nvme nvme0: Shutdown timeout set to 10 seconds
Απρ 28 19:52:06 vampyre kernel: nvme nvme0: 8/0/0 default/read/poll queues
Απρ 28 19:52:06 vampyre kernel:  nvme0n1: p1 p2 p3 p4 p5 p6 p7 p8
Απρ 28 19:52:06 vampyre kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
Απρ 28 19:52:06 vampyre kernel: EXT4-fs (nvme0n1p6): mounted filesystem with ordered data mode. Quota mode: none.
Απρ 28 19:52:06 vampyre kernel: usb 3-1: new low-speed USB device number 2 using xhci_hcd
Απρ 28 19:52:06 vampyre systemd[1]: RTC configured in localtime, applying delta of 180 minutes to system time.
Απρ 28 19:52:06 vampyre systemd[1]: systemd 250.4-2-arch running in system mode (+PAM +AUDIT -SELINUX -APPARMOR -IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT -QRENCODE +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK +XKBCOMMON +UTMP -SYSVINIT default-hierarchy=unified)
Απρ 28 19:52:06 vampyre systemd[1]: Detected architecture x86-64.
Απρ 28 19:52:06 vampyre systemd[1]: Hostname set to <vampyre>.
Απρ 28 19:52:06 vampyre kernel: usb 3-1: New USB device found, idVendor=045e, idProduct=0040, bcdDevice= 3.00
Απρ 28 19:52:06 vampyre kernel: usb 3-1: New USB device strings: Mfr=1, Product=3, SerialNumber=0
Απρ 28 19:52:06 vampyre kernel: usb 3-1: Product: Microsoft 3-Button Mouse with IntelliEye(TM)
Απρ 28 19:52:06 vampyre kernel: usb 3-1: Manufacturer: Microsoft
Απρ 28 19:52:06 vampyre systemd[1]: Queued start job for default target Graphical Interface.
Απρ 28 19:52:06 vampyre systemd[1]: Created slice Slice /system/getty.
Απρ 28 19:52:06 vampyre systemd[1]: Created slice Slice /system/isw.
Απρ 28 19:52:06 vampyre systemd[1]: Created slice Slice /system/modprobe.
Απρ 28 19:52:06 vampyre systemd[1]: Created slice Slice /system/systemd-fsck.
Απρ 28 19:52:06 vampyre systemd[1]: Created slice User and Session Slice.
Απρ 28 19:52:06 vampyre systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
Απρ 28 19:52:06 vampyre systemd[1]: Started Forward Password Requests to Wall Directory Watch.
Απρ 28 19:52:06 vampyre systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
Απρ 28 19:52:06 vampyre systemd[1]: Reached target Local Encrypted Volumes.
Απρ 28 19:52:06 vampyre systemd[1]: Reached target Login Prompts.
Απρ 28 19:52:06 vampyre systemd[1]: Reached target Local Integrity Protected Volumes.
Απρ 28 19:52:06 vampyre systemd[1]: Reached target Path Units.
Απρ 28 19:52:06 vampyre systemd[1]: Reached target Remote Encrypted Volumes.
Απρ 28 19:52:06 vampyre systemd[1]: Reached target Remote File Systems.
Απρ 28 19:52:06 vampyre systemd[1]: Reached target Slice Units.
Απρ 28 19:52:06 vampyre systemd[1]: Reached target Local Verity Protected Volumes.
Απρ 28 19:52:06 vampyre systemd[1]: Listening on Device-mapper event daemon FIFOs.
Απρ 28 19:52:06 vampyre systemd[1]: Listening on LVM2 poll daemon socket.
Απρ 28 19:52:06 vampyre systemd[1]: Listening on Process Core Dump Socket.
Απρ 28 19:52:06 vampyre systemd[1]: Listening on Journal Audit Socket.
Απρ 28 19:52:06 vampyre systemd[1]: Listening on Journal Socket (/dev/log).
Απρ 28 19:52:06 vampyre systemd[1]: Listening on Journal Socket.
Απρ 28 19:52:06 vampyre systemd[1]: Listening on Network Service Netlink Socket.
Απρ 28 19:52:06 vampyre systemd[1]: Listening on udev Control Socket.
Απρ 28 19:52:06 vampyre systemd[1]: Listening on udev Kernel Socket.
Απρ 28 19:52:06 vampyre systemd[1]: Listening on User Database Manager Socket.
Απρ 28 19:52:06 vampyre systemd[1]: Mounting Huge Pages File System...
Απρ 28 19:52:06 vampyre systemd[1]: Mounting POSIX Message Queue File System...
Απρ 28 19:52:06 vampyre systemd[1]: Mounting Kernel Debug File System...
Απρ 28 19:52:06 vampyre systemd[1]: Mounting Kernel Trace File System...
Απρ 28 19:52:06 vampyre systemd[1]: Starting Create List of Static Device Nodes...
Απρ 28 19:52:06 vampyre systemd[1]: Starting Load Kernel Module configfs...
Απρ 28 19:52:06 vampyre systemd[1]: Starting Load Kernel Module drm...
Απρ 28 19:52:06 vampyre systemd[1]: Starting Load Kernel Module fuse...
Απρ 28 19:52:06 vampyre systemd[1]: File System Check on Root Device was skipped because of a failed condition check (ConditionPathIsReadWrite=!/).
Απρ 28 19:52:06 vampyre systemd[1]: Starting Journal Service...
Απρ 28 19:52:06 vampyre systemd[1]: Starting Load Kernel Modules...
Απρ 28 19:52:06 vampyre systemd[1]: Starting Remount Root and Kernel File Systems...
Απρ 28 19:52:06 vampyre systemd[1]: Repartition Root Disk was skipped because all trigger condition checks failed.
Απρ 28 19:52:06 vampyre systemd[1]: Starting Coldplug All udev Devices...
Απρ 28 19:52:06 vampyre systemd[1]: Mounted Huge Pages File System.
Απρ 28 19:52:06 vampyre systemd[1]: Mounted POSIX Message Queue File System.
Απρ 28 19:52:06 vampyre systemd[1]: Mounted Kernel Debug File System.
Απρ 28 19:52:06 vampyre systemd[1]: Mounted Kernel Trace File System.
Απρ 28 19:52:06 vampyre systemd[1]: Finished Create List of Static Device Nodes.
Απρ 28 19:52:06 vampyre systemd[1]: modprobe@configfs.service: Deactivated successfully.
Απρ 28 19:52:06 vampyre systemd[1]: Finished Load Kernel Module configfs.
Απρ 28 19:52:06 vampyre systemd[1]: modprobe@drm.service: Deactivated successfully.
Απρ 28 19:52:06 vampyre systemd[1]: Finished Load Kernel Module drm.
Απρ 28 19:52:06 vampyre systemd[1]: Mounting Kernel Configuration File System...
Απρ 28 19:52:06 vampyre kernel: EXT4-fs (nvme0n1p6): re-mounted. Quota mode: none.
Απρ 28 19:52:06 vampyre systemd[1]: Finished Remount Root and Kernel File Systems.
Απρ 28 19:52:06 vampyre systemd[1]: First Boot Wizard was skipped because of a failed condition check (ConditionFirstBoot=yes).
Απρ 28 19:52:06 vampyre kernel: fuse: init (API version 7.36)
Απρ 28 19:52:06 vampyre systemd[1]: Rebuild Hardware Database was skipped because of a failed condition check (ConditionNeedsUpdate=/etc).
Απρ 28 19:52:06 vampyre systemd[1]: Platform Persistent Storage Archival was skipped because of a failed condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).
Απρ 28 19:52:06 vampyre systemd[1]: Starting Load/Save Random Seed...
Απρ 28 19:52:06 vampyre systemd[1]: Create System Users was skipped because of a failed condition check (ConditionNeedsUpdate=/etc).
Απρ 28 19:52:06 vampyre systemd[1]: Starting Create Static Device Nodes in /dev...
Απρ 28 19:52:06 vampyre systemd[1]: modprobe@fuse.service: Deactivated successfully.
Απρ 28 19:52:06 vampyre systemd[1]: Finished Load Kernel Module fuse.
Απρ 28 19:52:06 vampyre systemd[1]: Mounted Kernel Configuration File System.
Απρ 28 19:52:06 vampyre systemd[1]: Mounting FUSE Control File System...
Απρ 28 19:52:06 vampyre systemd[1]: Mounted FUSE Control File System.
Απρ 28 19:52:06 vampyre systemd[1]: Finished Load/Save Random Seed.
Απρ 28 19:52:06 vampyre kernel: audit: type=1130 audit(1651164726.236:2): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-random-seed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Απρ 28 19:52:06 vampyre systemd[1]: First Boot Complete was skipped because of a failed condition check (ConditionFirstBoot=yes).
Απρ 28 19:52:06 vampyre kernel: audit: type=1334 audit(1651164726.246:3): prog-id=13 op=LOAD
Απρ 28 19:52:06 vampyre kernel: audit: type=1334 audit(1651164726.246:4): prog-id=14 op=LOAD
Απρ 28 19:52:06 vampyre kernel: audit: type=1334 audit(1651164726.246:5): prog-id=15 op=LOAD
Απρ 28 19:52:06 vampyre systemd[1]: Starting User Database Manager...
Απρ 28 19:52:06 vampyre kernel: IPMI message handler: version 39.2
Απρ 28 19:52:06 vampyre kernel: usb 3-7: new high-speed USB device number 3 using xhci_hcd
Απρ 28 19:52:06 vampyre systemd[1]: Started Journal Service.
Απρ 28 19:52:06 vampyre kernel: audit: type=1130 audit(1651164726.253:6): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Απρ 28 19:52:06 vampyre kernel: ipmi device interface
Απρ 28 19:52:06 vampyre systemd-journald[262]: Received client request to flush runtime journal.
Απρ 28 19:52:06 vampyre kernel: audit: type=1130 audit(1651164726.263:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-userdbd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Απρ 28 19:52:06 vampyre kernel: Guest personality initialized and is inactive
Απρ 28 19:52:06 vampyre kernel: VMCI host device registered (name=vmci, major=10, minor=124)
Απρ 28 19:52:06 vampyre kernel: Initialized host personality
Απρ 28 19:52:06 vampyre kernel: audit: type=1130 audit(1651164726.266:8): 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'
Απρ 28 19:52:06 vampyre kernel: vmmon: loading out-of-tree module taints kernel.
Απρ 28 19:52:06 vampyre kernel: vmmon: module verification failed: signature and/or required key missing - tainting kernel
Απρ 28 19:52:06 vampyre kernel: /dev/vmmon[263]: Module vmmon: registered as misc device
Απρ 28 19:52:06 vampyre kernel: /dev/vmmon[263]: Using tsc_khz as TSC frequency: 2803200
Απρ 28 19:52:06 vampyre kernel: /dev/vmmon[263]: Module vmmon: initialized
Απρ 28 19:52:06 vampyre kernel: audit: type=1130 audit(1651164726.269:9): 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'
Απρ 28 19:52:06 vampyre kernel: audit: type=1130 audit(1651164726.276:10): 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'
Απρ 28 19:52:06 vampyre kernel: soc_button_array ACPI0011:00: Unknown button index 0 upage 01 usage c6, ignoring
Απρ 28 19:52:06 vampyre kernel: Userspace governor deprecated: use thermal netlink notification instead
Απρ 28 19:52:06 vampyre kernel: input: Intel HID events as /devices/platform/INTC1051:00/input/input5
Απρ 28 19:52:06 vampyre kernel: intel-hid INTC1051:00: platform supports 5 button array
Απρ 28 19:52:06 vampyre kernel: input: Intel HID 5 button array as /devices/platform/INTC1051:00/input/input6
Απρ 28 19:52:06 vampyre kernel: usb 3-7: New USB device found, idVendor=5986, idProduct=211c, bcdDevice= 3.11
Απρ 28 19:52:06 vampyre kernel: usb 3-7: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Απρ 28 19:52:06 vampyre kernel: usb 3-7: Product: HD Webcam
Απρ 28 19:52:06 vampyre kernel: usb 3-7: Manufacturer: SunplusIT Inc
Απρ 28 19:52:06 vampyre kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
Απρ 28 19:52:06 vampyre kernel: cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
Απρ 28 19:52:06 vampyre kernel: wmi_bus wmi_bus-PNP0C14:00: WQAK data block query control method not found
Απρ 28 19:52:06 vampyre kernel: wmi_bus wmi_bus-PNP0C14:00: WQAL data block query control method not found
Απρ 28 19:52:06 vampyre kernel: acpi PNP0C14:02: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:01)
Απρ 28 19:52:06 vampyre kernel: usb 3-10: new full-speed USB device number 4 using xhci_hcd
Απρ 28 19:52:06 vampyre kernel: EDAC igen6: v2.5
Απρ 28 19:52:06 vampyre kernel: proc_thermal 0000:00:04.0: enabling device (0000 -> 0002)
Απρ 28 19:52:06 vampyre kernel: intel_rapl_common: Found RAPL domain package
Απρ 28 19:52:06 vampyre kernel: usb 3-10: New USB device found, idVendor=8087, idProduct=0026, bcdDevice= 0.02
Απρ 28 19:52:06 vampyre kernel: usb 3-10: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Απρ 28 19:52:06 vampyre kernel: ACPI: bus type thunderbolt registered
Απρ 28 19:52:06 vampyre kernel: thunderbolt 0000:00:0d.2: enabling device (0000 -> 0002)
Απρ 28 19:52:06 vampyre kernel: Adding 4194300k swap on /dev/nvme0n1p8.  Priority:-2 extents:1 across:4194300k SSDscFS
Απρ 28 19:52:06 vampyre kernel: i915 0000:00:02.0: [drm] VT-d active for gfx access
Απρ 28 19:52:06 vampyre kernel: checking generic (4000000000 7f0000) vs hw (601c000000 1000000)
Απρ 28 19:52:06 vampyre kernel: checking generic (4000000000 7f0000) vs hw (4000000000 10000000)
Απρ 28 19:52:06 vampyre kernel: fb0: switching to i915 from EFI VGA
Απρ 28 19:52:06 vampyre kernel: Console: switching to colour dummy device 80x25
Απρ 28 19:52:06 vampyre kernel: i915 0000:00:02.0: vgaarb: deactivate vga console
Απρ 28 19:52:06 vampyre kernel: i915 0000:00:02.0: [drm] Transparent Hugepage mode 'huge=within_size'
Απρ 28 19:52:06 vampyre kernel: i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
Απρ 28 19:52:06 vampyre kernel: i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/tgl_dmc_ver2_12.bin (v2.12)
Απρ 28 19:52:06 vampyre kernel: intel-lpss 0000:00:15.0: enabling device (0004 -> 0006)
Απρ 28 19:52:06 vampyre kernel: idma64 idma64.0: Found Intel integrated DMA 64-bit
Απρ 28 19:52:06 vampyre kernel: mei_me 0000:00:16.0: enabling device (0000 -> 0002)
Απρ 28 19:52:06 vampyre kernel: Intel(R) Wireless WiFi driver for Linux
Απρ 28 19:52:06 vampyre kernel: iwlwifi 0000:00:14.3: enabling device (0000 -> 0002)
Απρ 28 19:52:06 vampyre kernel: iwlwifi 0000:00:14.3: Direct firmware load for iwlwifi-QuZ-a0-hr-b0-69.ucode failed with error -2
Απρ 28 19:52:06 vampyre kernel: input: PNP0C50:00 04F3:30AA Mouse as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-9/i2c-PNP0C50:00/0018:04F3:30AA.0001/input/input7
Απρ 28 19:52:06 vampyre kernel: input: PNP0C50:00 04F3:30AA Touchpad as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-9/i2c-PNP0C50:00/0018:04F3:30AA.0001/input/input9
Απρ 28 19:52:06 vampyre kernel: hid-generic 0018:04F3:30AA.0001: input,hidraw0: I2C HID v1.00 Mouse [PNP0C50:00 04F3:30AA] on i2c-PNP0C50:00
Απρ 28 19:52:06 vampyre kernel: iwlwifi 0000:00:14.3: api flags index 2 larger than supported by driver
Απρ 28 19:52:06 vampyre kernel: iwlwifi 0000:00:14.3: TLV_FW_FSEQ_VERSION: FSEQ Version: 89.3.35.37
Απρ 28 19:52:06 vampyre kernel: iwlwifi 0000:00:14.3: loaded firmware version 68.01d30b0c.0 QuZ-a0-hr-b0-68.ucode op_mode iwlmvm
Απρ 28 19:52:06 vampyre kernel: i915 0000:00:02.0: [drm] Protected Xe Path (PXP) protected content support initialized
Απρ 28 19:52:06 vampyre kernel: [drm] Initialized i915 1.6.0 20201103 for 0000:00:02.0 on minor 0
Απρ 28 19:52:06 vampyre kernel: ACPI: video: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
Απρ 28 19:52:06 vampyre kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input10
Απρ 28 19:52:06 vampyre kernel: fbcon: i915drmfb (fb0) is primary device
Απρ 28 19:52:06 vampyre kernel: Console: switching to colour frame buffer device 240x67
Απρ 28 19:52:06 vampyre kernel: i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
Απρ 28 19:52:06 vampyre kernel: input: PC Speaker as /devices/platform/pcspkr/input/input12
Απρ 28 19:52:07 vampyre kernel: resource sanity check: requesting [mem 0xfedc0000-0xfedcdfff], which spans more than pnp 00:04 [mem 0xfedc0000-0xfedc7fff]
Απρ 28 19:52:07 vampyre kernel: caller __uncore_imc_init_box+0xc9/0x100 [intel_uncore] mapping multiple BARs
Απρ 28 19:52:07 vampyre kernel: i801_smbus 0000:00:1f.4: SPD Write Disable is set
Απρ 28 19:52:07 vampyre kernel: i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
Απρ 28 19:52:07 vampyre kernel: i2c i2c-15: 2/2 memory slots populated (from DMI)
Απρ 28 19:52:07 vampyre kernel: i2c i2c-15: Successfully instantiated SPD at 0x50
Απρ 28 19:52:07 vampyre kernel: intel-spi 0000:00:1f.5: mx25l25635e (32768 Kbytes)
Απρ 28 19:52:07 vampyre kernel: cryptd: max_cpu_qlen set to 1000
Απρ 28 19:52:07 vampyre kernel: Creating 1 MTD partitions on "0000:00:1f.5":
Απρ 28 19:52:07 vampyre kernel: 0x000000000000-0x000002000000 : "BIOS"
Απρ 28 19:52:07 vampyre kernel: AVX2 version of gcm_enc/dec engaged.
Απρ 28 19:52:07 vampyre kernel: AES CTR mode by8 optimization enabled
Απρ 28 19:52:07 vampyre kernel: iwlwifi 0000:00:14.3: Detected Intel(R) Wi-Fi 6 AX201 160MHz, REV=0x351
Απρ 28 19:52:07 vampyre kernel: thermal thermal_zone5: failed to read out thermal zone (-61)
Απρ 28 19:52:07 vampyre kernel: EXT4-fs (nvme0n1p7): mounted filesystem with ordered data mode. Quota mode: none.
Απρ 28 19:52:07 vampyre kernel: snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040100
Απρ 28 19:52:07 vampyre kernel: snd_hda_intel 0000:00:1f.3: Digital mics found on Skylake+ platform, using SOF driver
Απρ 28 19:52:07 vampyre kernel: input: gpio-keys as /devices/platform/ACPI0011:00/gpio-keys.1.auto/input/input13
Απρ 28 19:52:07 vampyre kernel: iwlwifi 0000:00:14.3: Detected RF HR B3, rfid=0x10a100
Απρ 28 19:52:07 vampyre kernel: input: MSI WMI hotkeys as /devices/virtual/input/input14
Απρ 28 19:52:07 vampyre kernel: intel_rapl_msr: PL4 support detected.
Απρ 28 19:52:07 vampyre kernel: intel_rapl_common: Found RAPL domain package
Απρ 28 19:52:07 vampyre kernel: intel_rapl_common: Found RAPL domain core
Απρ 28 19:52:07 vampyre kernel: intel_rapl_common: Found RAPL domain uncore
Απρ 28 19:52:07 vampyre kernel: intel_rapl_common: Found RAPL domain psys
Απρ 28 19:52:07 vampyre kernel: mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_component_ops [i915])
Απρ 28 19:52:07 vampyre kernel: iwlwifi 0000:00:14.3: base HW address: 94:e7:0b:0e:a7:b3
Απρ 28 19:52:07 vampyre kernel: mei_pxp 0000:00:16.0-fbf6fcf1-96cf-4e2e-a6a6-1bab8cbe36b1: bound 0000:00:02.0 (ops i915_pxp_tee_component_ops [i915])
Απρ 28 19:52:07 vampyre kernel: intel_tcc_cooling: Programmable TCC Offset detected
Απρ 28 19:52:07 vampyre kernel: iwlwifi 0000:00:14.3 wlo1: renamed from wlan0
Απρ 28 19:52:07 vampyre kernel: input: PNP0C50:00 04F3:30AA Mouse as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-9/i2c-PNP0C50:00/0018:04F3:30AA.0001/input/input15
Απρ 28 19:52:07 vampyre kernel: input: PNP0C50:00 04F3:30AA Touchpad as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-9/i2c-PNP0C50:00/0018:04F3:30AA.0001/input/input17
Απρ 28 19:52:07 vampyre kernel: hid-multitouch 0018:04F3:30AA.0001: input,hidraw0: I2C HID v1.00 Mouse [PNP0C50:00 04F3:30AA] on i2c-PNP0C50:00
Απρ 28 19:52:07 vampyre kernel: iTCO_vendor_support: vendor-support=0
Απρ 28 19:52:07 vampyre kernel: ee1004 15-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
Απρ 28 19:52:07 vampyre kernel: iTCO_wdt iTCO_wdt: Found a Intel PCH TCO device (Version=6, TCOBASE=0x0400)
Απρ 28 19:52:07 vampyre kernel: mousedev: PS/2 mouse device common for all mice
Απρ 28 19:52:07 vampyre kernel: iTCO_wdt iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
Απρ 28 19:52:07 vampyre kernel: psmouse serio1: elantech: assuming hardware version 4 (with firmware version 0x4d5f01)
Απρ 28 19:52:07 vampyre kernel: psmouse serio1: elantech: Synaptics capabilities query result 0x11, 0x15, 0x0d.
Απρ 28 19:52:07 vampyre kernel: psmouse serio1: elantech: Elan sample query result 03, c0, 76
Απρ 28 19:52:07 vampyre kernel: input: ETPS/2 Elantech Touchpad as /devices/platform/i8042/serio1/input/input11
Απρ 28 19:52:07 vampyre kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040100
Απρ 28 19:52:07 vampyre kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: Digital mics found on Skylake+ platform, using SOF driver
Απρ 28 19:52:07 vampyre kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: enabling device (0000 -> 0002)
Απρ 28 19:52:07 vampyre kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if 0x040100
Απρ 28 19:52:07 vampyre kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
Απρ 28 19:52:07 vampyre kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: use msi interrupt mode
Απρ 28 19:52:07 vampyre kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: hda codecs found, mask 5
Απρ 28 19:52:07 vampyre kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: using HDA machine driver skl_hda_dsp_generic now
Απρ 28 19:52:07 vampyre kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: DMICs detected in NHLT tables: 2
Απρ 28 19:52:07 vampyre kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: Firmware info: version 2:1:1-3964a
Απρ 28 19:52:07 vampyre kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: Firmware: ABI 3:21:0 Kernel ABI 3:18:0
Απρ 28 19:52:07 vampyre kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: warn: FW ABI is more recent than kernel
Απρ 28 19:52:07 vampyre kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: unknown sof_ext_man header type 3 size 0x30
Απρ 28 19:52:07 vampyre kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: Firmware info: version 2:1:1-3964a
Απρ 28 19:52:07 vampyre kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: Firmware: ABI 3:21:0 Kernel ABI 3:18:0
Απρ 28 19:52:07 vampyre kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: warn: FW ABI is more recent than kernel
Απρ 28 19:52:07 vampyre kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: Topology: ABI 3:21:0 Kernel ABI 3:18:0
Απρ 28 19:52:07 vampyre kernel: sof-audio-pci-intel-tgl 0000:00:1f.3: warn: topology ABI is more recent than kernel
Απρ 28 19:52:07 vampyre kernel: skl_hda_dsp_generic skl_hda_dsp_generic: ASoC: Parent card not yet available, widget card binding deferred
Απρ 28 19:52:07 vampyre kernel: snd_hda_codec_realtek ehdaudio0D0: autoconfig for ALC233: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
Απρ 28 19:52:07 vampyre kernel: snd_hda_codec_realtek ehdaudio0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
Απρ 28 19:52:07 vampyre kernel: snd_hda_codec_realtek ehdaudio0D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
Απρ 28 19:52:07 vampyre kernel: snd_hda_codec_realtek ehdaudio0D0:    mono: mono_out=0x0
Απρ 28 19:52:07 vampyre kernel: snd_hda_codec_realtek ehdaudio0D0:    inputs:
Απρ 28 19:52:07 vampyre kernel: snd_hda_codec_realtek ehdaudio0D0:      Mic=0x19
Απρ 28 19:52:07 vampyre kernel: snd_hda_codec_realtek ehdaudio0D0: ASoC: sink widget AIF1TX overwritten
Απρ 28 19:52:07 vampyre kernel: snd_hda_codec_realtek ehdaudio0D0: ASoC: source widget AIF1RX overwritten
Απρ 28 19:52:07 vampyre kernel: skl_hda_dsp_generic skl_hda_dsp_generic: ASoC: sink widget hifi3 overwritten
Απρ 28 19:52:07 vampyre kernel: skl_hda_dsp_generic skl_hda_dsp_generic: ASoC: sink widget hifi2 overwritten
Απρ 28 19:52:07 vampyre kernel: skl_hda_dsp_generic skl_hda_dsp_generic: ASoC: sink widget hifi1 overwritten
Απρ 28 19:52:07 vampyre kernel: skl_hda_dsp_generic skl_hda_dsp_generic: ASoC: source widget Codec Output Pin1 overwritten
Απρ 28 19:52:07 vampyre kernel: skl_hda_dsp_generic skl_hda_dsp_generic: ASoC: sink widget Codec Input Pin1 overwritten
Απρ 28 19:52:07 vampyre kernel: skl_hda_dsp_generic skl_hda_dsp_generic: ASoC: sink widget Analog Codec Playback overwritten
Απρ 28 19:52:07 vampyre kernel: skl_hda_dsp_generic skl_hda_dsp_generic: ASoC: sink widget Digital Codec Playback overwritten
Απρ 28 19:52:07 vampyre kernel: skl_hda_dsp_generic skl_hda_dsp_generic: ASoC: sink widget Alt Analog Codec Playback overwritten
Απρ 28 19:52:07 vampyre kernel: skl_hda_dsp_generic skl_hda_dsp_generic: ASoC: source widget Analog Codec Capture overwritten
Απρ 28 19:52:07 vampyre kernel: skl_hda_dsp_generic skl_hda_dsp_generic: ASoC: source widget Digital Codec Capture overwritten
Απρ 28 19:52:07 vampyre kernel: skl_hda_dsp_generic skl_hda_dsp_generic: ASoC: source widget Alt Analog Codec Capture overwritten
Απρ 28 19:52:07 vampyre kernel: skl_hda_dsp_generic skl_hda_dsp_generic: hda_dsp_hdmi_build_controls: no PCM in topology for HDMI converter 3
Απρ 28 19:52:07 vampyre kernel: mc: Linux media interface: v0.10
Απρ 28 19:52:07 vampyre kernel: input: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM) as /devices/pci0000:00/0000:00:14.0/usb3/3-1/3-1:1.0/0003:045E:0040.0002/input/input23
Απρ 28 19:52:07 vampyre kernel: hid-generic 0003:045E:0040.0002: input,hidraw1: USB HID v1.10 Mouse [Microsoft Microsoft 3-Button Mouse with IntelliEye(TM)] on usb-0000:00:14.0-1/input0
Απρ 28 19:52:07 vampyre kernel: usbcore: registered new interface driver usbhid
Απρ 28 19:52:07 vampyre kernel: usbhid: USB HID core driver
Απρ 28 19:52:07 vampyre kernel: input: sof-hda-dsp Mic as /devices/pci0000:00/0000:00:1f.3/skl_hda_dsp_generic/sound/card0/input18
Απρ 28 19:52:07 vampyre kernel: input: sof-hda-dsp Headphone as /devices/pci0000:00/0000:00:1f.3/skl_hda_dsp_generic/sound/card0/input19
Απρ 28 19:52:07 vampyre kernel: input: sof-hda-dsp HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/skl_hda_dsp_generic/sound/card0/input20
Απρ 28 19:52:07 vampyre kernel: input: sof-hda-dsp HDMI/DP,pcm=4 as /devices/pci0000:00/0000:00:1f.3/skl_hda_dsp_generic/sound/card0/input21
Απρ 28 19:52:07 vampyre kernel: input: sof-hda-dsp HDMI/DP,pcm=5 as /devices/pci0000:00/0000:00:1f.3/skl_hda_dsp_generic/sound/card0/input22
Απρ 28 19:52:07 vampyre kernel: videodev: Linux video capture interface: v2.00
Απρ 28 19:52:07 vampyre kernel: vmnet1: Current addr:  00 50 56 c0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
Απρ 28 19:52:07 vampyre kernel: vmnet1: Expected addr: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
Απρ 28 19:52:07 vampyre kernel: ------------[ cut here ]------------
Απρ 28 19:52:07 vampyre kernel: netdevice: vmnet1: Incorrect netdev->dev_addr
Απρ 28 19:52:07 vampyre kernel: WARNING: CPU: 2 PID: 600 at net/core/dev_addr_lists.c:517 dev_addr_check.cold+0x43/0x7d
Απρ 28 19:52:07 vampyre kernel: Modules linked in: videobuf2_v4l2 videobuf2_common videodev mc usbhid snd_soc_skl_hda_dsp snd_soc_intel_hda_dsp_common snd_soc_hdac_hdmi snd_hda_codec_hdmi snd_hda_codec_realtek snd_hda_codec_generic snd_soc_dmic snd_sof_pci_intel_tgl snd_sof_intel_hda_common soundwire_intel soundwire_generic_allocation soundwire_cadence snd_sof_intel_hda snd_sof_pci snd_sof_xtensa_dsp snd_sof snd_soc_hdac_hda snd_hda_ext_core snd_soc_acpi_intel_match joydev snd_soc_acpi mousedev iTCO_wdt intel_pmc_bxt iTCO_vendor_support ee1004 soundwire_bus intel_tcc_cooling ledtrig_audio x86_pkg_temp_thermal intel_powerclamp hid_multitouch snd_soc_core mei_pxp mei_hdcp coretemp snd_compress pmt_telemetry intel_rapl_msr pmt_class vmnet(OE) wmi_bmof msi_wmi kvm_intel ac97_bus snd_pcm_dmaengine kvm gpio_keys snd_hda_intel snd_intel_dspcfg irqbypass snd_intel_sdw_acpi crct10dif_pclmul crc32_pclmul snd_hda_codec ghash_clmulni_intel aesni_intel iwlmvm snd_hda_core crypto_simd snd_hwdep cryptd intel_spi_pci
Απρ 28 19:52:07 vampyre kernel:  snd_pcm intel_spi intel_cstate spi_nor i2c_i801 mac80211 intel_uncore snd_timer pcspkr psmouse mtd i2c_smbus snd libarc4 soundcore mei_me iwlwifi intel_lpss_pci iwlmei intel_lpss mei idma64 vfat fat thunderbolt i915 processor_thermal_device_pci_legacy processor_thermal_device processor_thermal_rfim processor_thermal_mbox processor_thermal_rapl ttm intel_rapl_common intel_vsec intel_soc_dts_iosf intel_gtt igen6_edac ip6t_REJECT i2c_hid_acpi mac_hid i2c_hid nf_reject_ipv6 tpm_crb xt_hl wmi tpm_tis int3403_thermal ip6t_rt int340x_thermal_zone tpm_tis_core video tpm intel_hid rng_core cfg80211 ipt_REJECT sparse_keymap nf_reject_ipv4 int3400_thermal soc_button_array acpi_thermal_rel acpi_tad acpi_pad rfkill xt_LOG nf_log_syslog xt_multiport xt_limit xt_addrtype xt_tcpudp xt_conntrack nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 libcrc32c ip6table_filter ip6_tables iptable_filter vmmon(OE) vmw_vmci ec_sys ipmi_devintf ipmi_msghandler sg crypto_user fuse bpf_preload ip_tables
Απρ 28 19:52:07 vampyre kernel:  x_tables ext4 crc32c_generic crc16 mbcache jbd2 rtsx_pci_sdmmc serio_raw mmc_core atkbd libps2 nvme i8042 xhci_pci crc32c_intel nvme_core rtsx_pci xhci_pci_renesas serio
Απρ 28 19:52:07 vampyre kernel: CPU: 2 PID: 600 Comm: vmware-networks Tainted: G           OE     5.17.5-arch1-1 #1 bff91b48f6c3cb8d3bfd68f772f9c0a96e684769
Απρ 28 19:52:07 vampyre kernel: Hardware name: Micro-Star International Co., Ltd. Modern 15 A11M/MS-1552, BIOS E1552IMS.118 07/30/2021
Απρ 28 19:52:07 vampyre kernel: RIP: 0010:dev_addr_check.cold+0x43/0x7d
Απρ 28 19:52:07 vampyre kernel: Code: 01 e8 03 0c fb ff 0f 0b 49 c7 c4 cb f2 8c 96 80 3b 00 75 30 48 c7 c6 d6 f2 8c 96 4c 89 e2 48 c7 c7 40 dd 95 96 e8 df 0b fb ff <0f> 0b e9 be 0a dc ff 49 c7 c4 cb f2 8c 96 eb d5 4c 8b 24 d5 80 c4
Απρ 28 19:52:07 vampyre kernel: RSP: 0018:ffffb765c0d93b10 EFLAGS: 00010282
Απρ 28 19:52:07 vampyre kernel: RAX: 0000000000000000 RBX: ffff963685abf000 RCX: 0000000000000027
Απρ 28 19:52:07 vampyre kernel: RDX: ffff9639fbaa16e8 RSI: 0000000000000001 RDI: ffff9639fbaa16e0
Απρ 28 19:52:07 vampyre kernel: RBP: ffffffffc136a3e0 R08: 0000000000000000 R09: ffffb765c0d93940
Απρ 28 19:52:07 vampyre kernel: R10: ffffb765c0d93938 R11: ffffffff970cab88 R12: ffffffff968931e1
Απρ 28 19:52:07 vampyre kernel: R13: 0000000000000000 R14: 0000000000000001 R15: 0000000000000000
Απρ 28 19:52:07 vampyre kernel: FS:  00007f513de8a4c0(0000) GS:ffff9639fba80000(0000) knlGS:0000000000000000
Απρ 28 19:52:07 vampyre kernel: CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
Απρ 28 19:52:07 vampyre kernel: CR2: 00007ffc64cb3fe8 CR3: 0000000107360006 CR4: 0000000000770ee0
Απρ 28 19:52:07 vampyre kernel: PKRU: 55555554
Απρ 28 19:52:07 vampyre kernel: Call Trace:
Απρ 28 19:52:07 vampyre kernel:  <TASK>
Απρ 28 19:52:07 vampyre kernel:  __dev_open+0x50/0x1c0
Απρ 28 19:52:07 vampyre kernel:  __dev_change_flags+0x1d7/0x240
Απρ 28 19:52:07 vampyre kernel:  ? __rtnl_unlock+0x24/0x50
Απρ 28 19:52:07 vampyre kernel:  dev_change_flags+0x21/0x60
Απρ 28 19:52:07 vampyre kernel:  devinet_ioctl+0x608/0x820
Απρ 28 19:52:07 vampyre kernel:  ? _copy_from_user+0x28/0x60
Απρ 28 19:52:07 vampyre kernel:  inet_ioctl+0x1b1/0x1e0
Απρ 28 19:52:07 vampyre kernel:  sock_do_ioctl+0x7f/0x130
Απρ 28 19:52:07 vampyre kernel:  sock_ioctl+0x12a/0x340
Απρ 28 19:52:07 vampyre kernel:  ? put_user_ifreq+0x48/0x60
Απρ 28 19:52:07 vampyre kernel:  __x64_sys_ioctl+0x7f/0xb0
Απρ 28 19:52:07 vampyre kernel:  do_syscall_64+0x59/0x80
Απρ 28 19:52:07 vampyre kernel:  ? syscall_exit_to_user_mode+0x23/0x40
Απρ 28 19:52:07 vampyre kernel:  ? do_syscall_64+0x69/0x80
Απρ 28 19:52:07 vampyre kernel:  ? exc_page_fault+0x72/0x170
Απρ 28 19:52:07 vampyre kernel:  entry_SYSCALL_64_after_hwframe+0x44/0xae
Απρ 28 19:52:07 vampyre kernel: RIP: 0033:0x7f513df92e6f
Απρ 28 19:52:07 vampyre kernel: Code: 00 48 89 44 24 18 31 c0 48 8d 44 24 60 c7 04 24 10 00 00 00 48 89 44 24 08 48 8d 44 24 20 48 89 44 24 10 b8 10 00 00 00 0f 05 <41> 89 c0 3d 00 f0 ff ff 77 1f 48 8b 44 24 18 64 48 2b 04 25 28 00
Απρ 28 19:52:07 vampyre kernel: RSP: 002b:00007ffc64cb4990 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
Απρ 28 19:52:07 vampyre kernel: RAX: ffffffffffffffda RBX: 00007ffc64cb4a40 RCX: 00007f513df92e6f
Απρ 28 19:52:07 vampyre kernel: RDX: 00007ffc64cb4a40 RSI: 0000000000008914 RDI: 0000000000000005
Απρ 28 19:52:07 vampyre kernel: RBP: 0000000000000005 R08: 00007ffc64cb4a00 R09: 0000000000000004
Απρ 28 19:52:07 vampyre kernel: R10: 0000000000000019 R11: 0000000000000246 R12: 00007ffc64cb4a00
Απρ 28 19:52:07 vampyre kernel: R13: 00007ffc64cb4a10 R14: 00007ffc64cb4a20 R15: 0000000000000000
Απρ 28 19:52:07 vampyre kernel:  </TASK>
Απρ 28 19:52:07 vampyre kernel: ---[ end trace 0000000000000000 ]---
Απρ 28 19:52:07 vampyre kernel: [UFW BLOCK] IN=vmnet1 OUT= MAC= SRC=192.168.30.1 DST=224.0.0.252 LEN=53 TOS=0x00 PREC=0x00 TTL=255 ID=62899 PROTO=UDP SPT=5355 DPT=5355 LEN=33 
Απρ 28 19:52:07 vampyre kernel: vmnet8: Current addr:  00 50 56 c0 00 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
Απρ 28 19:52:07 vampyre kernel: vmnet8: Expected addr: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
Απρ 28 19:52:07 vampyre kernel: ------------[ cut here ]------------
Απρ 28 19:52:07 vampyre kernel: netdevice: vmnet8: Incorrect netdev->dev_addr
Απρ 28 19:52:07 vampyre kernel: WARNING: CPU: 4 PID: 600 at net/core/dev_addr_lists.c:517 dev_addr_check.cold+0x43/0x7d
Απρ 28 19:52:07 vampyre kernel: Modules linked in: uvcvideo(+) videobuf2_vmalloc pcc_cpufreq(-) acpi_cpufreq(-) ecdh_generic videobuf2_memops videobuf2_v4l2 videobuf2_common videodev mc usbhid snd_soc_skl_hda_dsp snd_soc_intel_hda_dsp_common snd_soc_hdac_hdmi snd_hda_codec_hdmi snd_hda_codec_realtek snd_hda_codec_generic snd_soc_dmic snd_sof_pci_intel_tgl snd_sof_intel_hda_common soundwire_intel soundwire_generic_allocation soundwire_cadence snd_sof_intel_hda snd_sof_pci snd_sof_xtensa_dsp snd_sof snd_soc_hdac_hda snd_hda_ext_core snd_soc_acpi_intel_match joydev snd_soc_acpi mousedev iTCO_wdt intel_pmc_bxt iTCO_vendor_support ee1004 soundwire_bus intel_tcc_cooling ledtrig_audio x86_pkg_temp_thermal intel_powerclamp hid_multitouch snd_soc_core mei_pxp mei_hdcp coretemp snd_compress pmt_telemetry intel_rapl_msr pmt_class vmnet(OE) wmi_bmof msi_wmi kvm_intel ac97_bus snd_pcm_dmaengine kvm gpio_keys snd_hda_intel snd_intel_dspcfg irqbypass snd_intel_sdw_acpi crct10dif_pclmul crc32_pclmul snd_hda_codec
Απρ 28 19:52:07 vampyre kernel:  ghash_clmulni_intel aesni_intel iwlmvm snd_hda_core crypto_simd snd_hwdep cryptd intel_spi_pci snd_pcm intel_spi intel_cstate spi_nor i2c_i801 mac80211 intel_uncore snd_timer pcspkr psmouse mtd i2c_smbus snd libarc4 soundcore mei_me iwlwifi intel_lpss_pci iwlmei intel_lpss mei idma64 vfat fat thunderbolt i915 processor_thermal_device_pci_legacy processor_thermal_device processor_thermal_rfim processor_thermal_mbox processor_thermal_rapl ttm intel_rapl_common intel_vsec intel_soc_dts_iosf intel_gtt igen6_edac ip6t_REJECT i2c_hid_acpi mac_hid i2c_hid nf_reject_ipv6 tpm_crb xt_hl wmi tpm_tis int3403_thermal ip6t_rt int340x_thermal_zone tpm_tis_core video tpm intel_hid rng_core cfg80211 ipt_REJECT sparse_keymap nf_reject_ipv4 int3400_thermal soc_button_array acpi_thermal_rel acpi_tad acpi_pad rfkill xt_LOG nf_log_syslog xt_multiport xt_limit xt_addrtype xt_tcpudp xt_conntrack nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 libcrc32c ip6table_filter ip6_tables iptable_filter
Απρ 28 19:52:07 vampyre kernel:  vmmon(OE) vmw_vmci ec_sys ipmi_devintf ipmi_msghandler sg crypto_user fuse bpf_preload ip_tables x_tables ext4 crc32c_generic crc16 mbcache jbd2 rtsx_pci_sdmmc serio_raw mmc_core atkbd libps2 nvme i8042 xhci_pci crc32c_intel nvme_core rtsx_pci xhci_pci_renesas serio
Απρ 28 19:52:07 vampyre kernel: CPU: 4 PID: 600 Comm: vmware-networks Tainted: G        W  OE     5.17.5-arch1-1 #1 bff91b48f6c3cb8d3bfd68f772f9c0a96e684769
Απρ 28 19:52:07 vampyre kernel: Hardware name: Micro-Star International Co., Ltd. Modern 15 A11M/MS-1552, BIOS E1552IMS.118 07/30/2021
Απρ 28 19:52:07 vampyre kernel: RIP: 0010:dev_addr_check.cold+0x43/0x7d
Απρ 28 19:52:07 vampyre kernel: Code: 01 e8 03 0c fb ff 0f 0b 49 c7 c4 cb f2 8c 96 80 3b 00 75 30 48 c7 c6 d6 f2 8c 96 4c 89 e2 48 c7 c7 40 dd 95 96 e8 df 0b fb ff <0f> 0b e9 be 0a dc ff 49 c7 c4 cb f2 8c 96 eb d5 4c 8b 24 d5 80 c4
Απρ 28 19:52:07 vampyre kernel: RSP: 0018:ffffb765c0d93b70 EFLAGS: 00010282
Απρ 28 19:52:07 vampyre kernel: RAX: 0000000000000000 RBX: ffff96368134c000 RCX: 0000000000000027
Απρ 28 19:52:07 vampyre kernel: RDX: ffff9639fbb216e8 RSI: 0000000000000001 RDI: ffff9639fbb216e0
Απρ 28 19:52:07 vampyre kernel: RBP: ffffffffc136a3e0 R08: 0000000000000000 R09: ffffb765c0d939a0
Απρ 28 19:52:07 vampyre kernel: R10: ffffb765c0d93998 R11: ffffffff970cab88 R12: ffffffff968931e1
Απρ 28 19:52:07 vampyre kernel: R13: 0000000000000000 R14: 0000000000000001 R15: 0000000000000000
Απρ 28 19:52:07 vampyre kernel: FS:  00007f513de8a4c0(0000) GS:ffff9639fbb00000(0000) knlGS:0000000000000000
Απρ 28 19:52:07 vampyre kernel: CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
Απρ 28 19:52:07 vampyre kernel: CR2: 00007ffc64cb3fe8 CR3: 0000000107360003 CR4: 0000000000770ee0
Απρ 28 19:52:07 vampyre kernel: PKRU: 55555554
Απρ 28 19:52:07 vampyre kernel: Call Trace:
Απρ 28 19:52:07 vampyre kernel:  <TASK>
Απρ 28 19:52:07 vampyre kernel:  __dev_open+0x50/0x1c0
Απρ 28 19:52:07 vampyre kernel:  __dev_change_flags+0x1d7/0x240
Απρ 28 19:52:07 vampyre kernel:  ? __inet_insert_ifa+0x213/0x2f0
Απρ 28 19:52:07 vampyre kernel:  dev_change_flags+0x21/0x60
Απρ 28 19:52:07 vampyre kernel:  devinet_ioctl+0x608/0x820
Απρ 28 19:52:07 vampyre kernel:  ? _copy_from_user+0x28/0x60
Απρ 28 19:52:07 vampyre kernel:  inet_ioctl+0x1b1/0x1e0
Απρ 28 19:52:07 vampyre kernel:  sock_do_ioctl+0x7f/0x130
Απρ 28 19:52:07 vampyre kernel:  sock_ioctl+0x12a/0x340
Απρ 28 19:52:07 vampyre kernel:  __x64_sys_ioctl+0x7f/0xb0
Απρ 28 19:52:07 vampyre kernel:  do_syscall_64+0x59/0x80
Απρ 28 19:52:07 vampyre kernel:  ? syscall_exit_to_user_mode+0x23/0x40
Απρ 28 19:52:07 vampyre kernel:  ? do_syscall_64+0x69/0x80
Απρ 28 19:52:07 vampyre kernel:  ? do_syscall_64+0x69/0x80
Απρ 28 19:52:07 vampyre kernel:  ? exc_page_fault+0x72/0x170
Απρ 28 19:52:07 vampyre kernel:  entry_SYSCALL_64_after_hwframe+0x44/0xae
Απρ 28 19:52:07 vampyre kernel: RIP: 0033:0x7f513df92e6f
Απρ 28 19:52:07 vampyre kernel: Code: 00 48 89 44 24 18 31 c0 48 8d 44 24 60 c7 04 24 10 00 00 00 48 89 44 24 08 48 8d 44 24 20 48 89 44 24 10 b8 10 00 00 00 0f 05 <41> 89 c0 3d 00 f0 ff ff 77 1f 48 8b 44 24 18 64 48 2b 04 25 28 00
Απρ 28 19:52:07 vampyre kernel: RSP: 002b:00007ffc64cb4990 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
Απρ 28 19:52:07 vampyre kernel: RAX: ffffffffffffffda RBX: 00007ffc64cb4a40 RCX: 00007f513df92e6f
Απρ 28 19:52:07 vampyre kernel: RDX: 00007ffc64cb4a40 RSI: 0000000000008914 RDI: 0000000000000005
Απρ 28 19:52:07 vampyre kernel: RBP: 0000000000000005 R08: 00007ffc64cb4a00 R09: 0000000000000004
Απρ 28 19:52:07 vampyre kernel: R10: 0000000000000019 R11: 0000000000000246 R12: 00007ffc64cb4a00
Απρ 28 19:52:07 vampyre kernel: R13: 00007ffc64cb4a10 R14: 00007ffc64cb4a20 R15: 0000000000000000
Απρ 28 19:52:07 vampyre kernel:  </TASK>
Απρ 28 19:52:07 vampyre kernel: ---[ end trace 0000000000000000 ]---
Απρ 28 19:52:07 vampyre kernel: usb 3-7: Found UVC 1.00 device HD Webcam (5986:211c)
Απρ 28 19:52:07 vampyre kernel: Bluetooth: Core ver 2.22
Απρ 28 19:52:07 vampyre kernel: NET: Registered PF_BLUETOOTH protocol family
Απρ 28 19:52:07 vampyre kernel: Bluetooth: HCI device and connection manager initialized
Απρ 28 19:52:07 vampyre kernel: Bluetooth: HCI socket layer initialized
Απρ 28 19:52:07 vampyre kernel: Bluetooth: L2CAP socket layer initialized
Απρ 28 19:52:07 vampyre kernel: Bluetooth: SCO socket layer initialized
Απρ 28 19:52:07 vampyre kernel: input: HD Webcam: HD Webcam as /devices/pci0000:00/0000:00:14.0/usb3/3-7/3-7:1.0/input/input24
Απρ 28 19:52:07 vampyre kernel: usbcore: registered new interface driver uvcvideo
Απρ 28 19:52:08 vampyre kernel: usbcore: registered new interface driver btusb
Απρ 28 19:52:08 vampyre kernel: Bluetooth: hci0: Bootloader revision 0.4 build 0 week 30 2018
Απρ 28 19:52:08 vampyre kernel: Bluetooth: hci0: Device revision is 2
Απρ 28 19:52:08 vampyre kernel: Bluetooth: hci0: Secure boot is enabled
Απρ 28 19:52:08 vampyre kernel: Bluetooth: hci0: OTP lock is enabled
Απρ 28 19:52:08 vampyre kernel: Bluetooth: hci0: API lock is enabled
Απρ 28 19:52:08 vampyre kernel: Bluetooth: hci0: Debug lock is disabled
Απρ 28 19:52:08 vampyre kernel: Bluetooth: hci0: Minimum firmware build 1 week 10 2014
Απρ 28 19:52:08 vampyre kernel: Bluetooth: hci0: Found device firmware: intel/ibt-19-0-4.sfi
Απρ 28 19:52:08 vampyre kernel: Bluetooth: hci0: Boot Address: 0x24800
Απρ 28 19:52:08 vampyre kernel: Bluetooth: hci0: Firmware Version: 50-12.22
Απρ 28 19:52:08 vampyre kernel: Bluetooth: BNEP (Ethernet Emulation) ver 1.3
Απρ 28 19:52:08 vampyre kernel: Bluetooth: BNEP filters: protocol multicast
Απρ 28 19:52:08 vampyre kernel: Bluetooth: BNEP socket layer initialized
Απρ 28 19:52:08 vampyre kernel: [UFW BLOCK] IN=vmnet8 OUT= MAC= SRC=192.168.240.1 DST=224.0.0.252 LEN=53 TOS=0x00 PREC=0x00 TTL=255 ID=6891 PROTO=UDP SPT=5355 DPT=5355 LEN=33 
Απρ 28 19:52:08 vampyre kernel: [UFW BLOCK] IN=vmnet1 OUT= MAC= SRC=192.168.30.1 DST=224.0.0.252 LEN=53 TOS=0x00 PREC=0x00 TTL=255 ID=62937 PROTO=UDP SPT=5355 DPT=5355 LEN=33 
Απρ 28 19:52:08 vampyre kernel: [UFW BLOCK] IN=vmnet8 OUT= MAC= SRC=192.168.240.1 DST=224.0.0.252 LEN=53 TOS=0x00 PREC=0x00 TTL=255 ID=6950 PROTO=UDP SPT=5355 DPT=5355 LEN=33 
Απρ 28 19:52:08 vampyre kernel: [UFW BLOCK] IN=vmnet1 OUT= MAC= SRC=192.168.30.1 DST=224.0.0.252 LEN=53 TOS=0x00 PREC=0x00 TTL=255 ID=63023 PROTO=UDP SPT=5355 DPT=5355 LEN=33 
Απρ 28 19:52:08 vampyre kernel: [UFW BLOCK] IN=vmnet8 OUT= MAC= SRC=192.168.240.1 DST=224.0.0.252 LEN=53 TOS=0x00 PREC=0x00 TTL=255 ID=7067 PROTO=UDP SPT=5355 DPT=5355 LEN=33 
Απρ 28 19:52:09 vampyre kernel: [UFW BLOCK] IN=vmnet1 OUT= MAC= SRC=fe80:0000:0000:0000:0250:56ff:fec0:0001 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=73 TC=0 HOPLIMIT=255 FLOWLBL=564516 PROTO=UDP SPT=5355 DPT=5355 LEN=33 
Απρ 28 19:52:09 vampyre kernel: [UFW BLOCK] IN=vmnet8 OUT= MAC= SRC=fe80:0000:0000:0000:0250:56ff:fec0:0008 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=73 TC=0 HOPLIMIT=255 FLOWLBL=6624 PROTO=UDP SPT=5355 DPT=5355 LEN=33 
Απρ 28 19:52:09 vampyre kernel: [UFW BLOCK] IN=vmnet1 OUT= MAC= SRC=fe80:0000:0000:0000:0250:56ff:fec0:0001 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=73 TC=0 HOPLIMIT=255 FLOWLBL=564516 PROTO=UDP SPT=5355 DPT=5355 LEN=33 
Απρ 28 19:52:09 vampyre kernel: [UFW BLOCK] IN=vmnet8 OUT= MAC= SRC=fe80:0000:0000:0000:0250:56ff:fec0:0008 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=73 TC=0 HOPLIMIT=255 FLOWLBL=6624 PROTO=UDP SPT=5355 DPT=5355 LEN=33 
Απρ 28 19:52:09 vampyre kernel: [UFW BLOCK] IN=vmnet1 OUT= MAC= SRC=fe80:0000:0000:0000:0250:56ff:fec0:0001 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=73 TC=0 HOPLIMIT=255 FLOWLBL=564516 PROTO=UDP SPT=5355 DPT=5355 LEN=33 
Απρ 28 19:52:09 vampyre kernel: Bluetooth: hci0: Waiting for firmware download to complete
Απρ 28 19:52:09 vampyre kernel: Bluetooth: hci0: Firmware loaded in 1780128 usecs
Απρ 28 19:52:09 vampyre kernel: Bluetooth: hci0: Waiting for device to boot
Απρ 28 19:52:09 vampyre kernel: Bluetooth: hci0: Device booted in 14642 usecs
Απρ 28 19:52:09 vampyre kernel: Bluetooth: hci0: Found Intel DDC parameters: intel/ibt-19-0-4.ddc
Απρ 28 19:52:09 vampyre kernel: Bluetooth: hci0: Applying Intel DDC parameters completed
Απρ 28 19:52:09 vampyre kernel: Bluetooth: hci0: Firmware revision 0.4 build 50 week 12 2022
Απρ 28 19:52:09 vampyre kernel: NET: Registered PF_ALG protocol family
Απρ 28 19:52:09 vampyre kernel: [UFW BLOCK] IN=vmnet8 OUT= MAC= SRC=fe80:0000:0000:0000:0250:56ff:fec0:0008 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=73 TC=0 HOPLIMIT=255 FLOWLBL=6624 PROTO=UDP SPT=5355 DPT=5355 LEN=33 
Απρ 28 19:52:10 vampyre kernel: kauditd_printk_skb: 129 callbacks suppressed
Απρ 28 19:52:10 vampyre kernel: audit: type=1130 audit(1651164730.139:92): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=upower comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Απρ 28 19:52:10 vampyre kernel: Bluetooth: RFCOMM TTY layer initialized
Απρ 28 19:52:10 vampyre kernel: Bluetooth: RFCOMM socket layer initialized
Απρ 28 19:52:10 vampyre kernel: Bluetooth: RFCOMM ver 1.11
Απρ 28 19:52:10 vampyre kernel: audit: type=1130 audit(1651164730.896:93): 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 19:52:11 vampyre kernel: wlo1: authenticate with 7c:8f:de:ca:6d:3e
Απρ 28 19:52:11 vampyre kernel: wlo1: send auth to 7c:8f:de:ca:6d:3e (try 1/3)
Απρ 28 19:52:11 vampyre kernel: wlo1: authenticated
Απρ 28 19:52:11 vampyre kernel: wlo1: associate with 7c:8f:de:ca:6d:3e (try 1/3)
Απρ 28 19:52:11 vampyre kernel: wlo1: RX AssocResp from 7c:8f:de:ca:6d:3e (capab=0xc11 status=0 aid=2)
Απρ 28 19:52:11 vampyre kernel: wlo1: associated
Απρ 28 19:52:11 vampyre kernel: IPv6: ADDRCONF(NETDEV_CHANGE): wlo1: link becomes ready
Απρ 28 19:52:11 vampyre kernel: wlo1: Limiting TX power to 30 (30 - 0) dBm as advertised by 7c:8f:de:ca:6d:3e
Απρ 28 19:52:12 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC= SRC=192.168.2.11 DST=224.0.0.252 LEN=53 TOS=0x00 PREC=0x00 TTL=255 ID=4225 PROTO=UDP SPT=5355 DPT=5355 LEN=33 
Απρ 28 19:52:12 vampyre kernel: userif-3: sent link up event.
Απρ 28 19:52:12 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC= SRC=192.168.2.11 DST=224.0.0.252 LEN=53 TOS=0x00 PREC=0x00 TTL=255 ID=4289 PROTO=UDP SPT=5355 DPT=5355 LEN=33 
Απρ 28 19:52:12 vampyre kernel: userif-3: sent link up event.
Απρ 28 19:52:12 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC= SRC=192.168.2.11 DST=224.0.0.252 LEN=53 TOS=0x00 PREC=0x00 TTL=255 ID=4297 PROTO=UDP SPT=5355 DPT=5355 LEN=33 
Απρ 28 19:52:12 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=6900 DF PROTO=2 
Απρ 28 19:52:13 vampyre kernel: audit: type=1131 audit(1651164733.059:94): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Απρ 28 19:52:13 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC= SRC=fe80:0000:0000:0000:d953:fe3c:659c:c0c4 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=73 TC=0 HOPLIMIT=255 FLOWLBL=246956 PROTO=UDP SPT=5355 DPT=5355 LEN=33 
Απρ 28 19:52:14 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC= SRC=fe80:0000:0000:0000:d953:fe3c:659c:c0c4 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=73 TC=0 HOPLIMIT=255 FLOWLBL=246956 PROTO=UDP SPT=5355 DPT=5355 LEN=33 
Απρ 28 19:52:14 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC= SRC=fe80:0000:0000:0000:d953:fe3c:659c:c0c4 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=73 TC=0 HOPLIMIT=255 FLOWLBL=246956 PROTO=UDP SPT=5355 DPT=5355 LEN=33 
Απρ 28 19:52:17 vampyre kernel: audit: type=1131 audit(1651164737.523:95): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Απρ 28 19:52:37 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=8379 DF PROTO=2 
Απρ 28 19:52:38 vampyre kernel: audit: type=1131 audit(1651164758.133:96): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Απρ 28 19:52:38 vampyre kernel: audit: type=1334 audit(1651164758.229:97): prog-id=0 op=UNLOAD
Απρ 28 19:52:38 vampyre kernel: audit: type=1334 audit(1651164758.229:98): prog-id=0 op=UNLOAD
Απρ 28 19:52:38 vampyre kernel: audit: type=1334 audit(1651164758.229:99): prog-id=0 op=UNLOAD
Απρ 28 19:52:50 vampyre kernel: userif-3: sent link up event.
Απρ 28 19:52:53 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=9013 DF PROTO=2 
Απρ 28 19:53:17 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=10138 DF PROTO=2 
Απρ 28 19:53:20 vampyre kernel: userif-3: sent link up event.
Απρ 28 19:53:41 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=11297 DF PROTO=2 
Απρ 28 19:53:50 vampyre kernel: userif-3: sent link up event.
Απρ 28 19:53:53 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=12022 DF PROTO=2 
Απρ 28 19:54:18 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=12690 DF PROTO=2 
Απρ 28 19:54:20 vampyre kernel: userif-3: sent link up event.
Απρ 28 19:54:42 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=13927 DF PROTO=2 
Απρ 28 19:54:50 vampyre kernel: userif-3: sent link up event.
Απρ 28 19:54:54 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=15002 DF PROTO=2 
Απρ 28 19:55:18 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=16366 DF PROTO=2 
Απρ 28 19:55:20 vampyre kernel: userif-3: sent link up event.
Απρ 28 19:55:42 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=17595 DF PROTO=2 
Απρ 28 19:55:50 vampyre kernel: userif-3: sent link up event.
Απρ 28 19:55:54 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=17990 DF PROTO=2 
Απρ 28 19:56:18 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=18979 DF PROTO=2 
Απρ 28 19:56:20 vampyre kernel: userif-3: sent link up event.
Απρ 28 19:56:42 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=20135 DF PROTO=2 
Απρ 28 19:56:50 vampyre kernel: userif-3: sent link up event.
Απρ 28 19:56:54 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=20780 DF PROTO=2 
Απρ 28 19:57:18 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=22312 DF PROTO=2 
Απρ 28 19:57:20 vampyre kernel: userif-3: sent link up event.
Απρ 28 19:57:43 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=23233 DF PROTO=2 
Απρ 28 19:57:50 vampyre kernel: userif-3: sent link up event.
Απρ 28 19:57:55 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=24075 DF PROTO=2 
Απρ 28 19:58:19 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=24600 DF PROTO=2 
Απρ 28 19:58:20 vampyre kernel: userif-3: sent link up event.
Απρ 28 19:58:43 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=24761 DF PROTO=2 
Απρ 28 19:58:50 vampyre kernel: userif-3: sent link up event.
Απρ 28 19:58:53 vampyre kernel: [UFW BLOCK] IN=vmnet1 OUT= MAC= SRC=192.168.30.1 DST=224.0.0.252 LEN=52 TOS=0x00 PREC=0x00 TTL=255 ID=1143 PROTO=UDP SPT=5355 DPT=5355 LEN=32 
Απρ 28 19:58:53 vampyre kernel: [UFW BLOCK] IN=vmnet1 OUT= MAC= SRC=fe80:0000:0000:0000:0250:56ff:fec0:0001 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=72 TC=0 HOPLIMIT=255 FLOWLBL=564516 PROTO=UDP SPT=5355 DPT=5355 LEN=32 
Απρ 28 19:58:53 vampyre kernel: [UFW BLOCK] IN=vmnet8 OUT= MAC= SRC=fe80:0000:0000:0000:0250:56ff:fec0:0008 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=72 TC=0 HOPLIMIT=255 FLOWLBL=6624 PROTO=UDP SPT=5355 DPT=5355 LEN=32 
Απρ 28 19:58:53 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC= SRC=fe80:0000:0000:0000:d953:fe3c:659c:c0c4 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=72 TC=0 HOPLIMIT=255 FLOWLBL=246956 PROTO=UDP SPT=5355 DPT=5355 LEN=32 
Απρ 28 19:58:54 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC= SRC=fe80:0000:0000:0000:d953:fe3c:659c:c0c4 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=72 TC=0 HOPLIMIT=255 FLOWLBL=246956 PROTO=UDP SPT=5355 DPT=5355 LEN=32 
Απρ 28 19:58:54 vampyre kernel: [UFW BLOCK] IN=vmnet8 OUT= MAC= SRC=fe80:0000:0000:0000:0250:56ff:fec0:0008 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=72 TC=0 HOPLIMIT=255 FLOWLBL=6624 PROTO=UDP SPT=5355 DPT=5355 LEN=32 
Απρ 28 19:58:54 vampyre kernel: [UFW BLOCK] IN=vmnet1 OUT= MAC= SRC=fe80:0000:0000:0000:0250:56ff:fec0:0001 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=72 TC=0 HOPLIMIT=255 FLOWLBL=564516 PROTO=UDP SPT=5355 DPT=5355 LEN=32 
Απρ 28 19:58:55 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC= SRC=fe80:0000:0000:0000:d953:fe3c:659c:c0c4 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=72 TC=0 HOPLIMIT=255 FLOWLBL=246956 PROTO=UDP SPT=5355 DPT=5355 LEN=32 
Απρ 28 19:58:55 vampyre kernel: [UFW BLOCK] IN=vmnet1 OUT= MAC= SRC=fe80:0000:0000:0000:0250:56ff:fec0:0001 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=72 TC=0 HOPLIMIT=255 FLOWLBL=564516 PROTO=UDP SPT=5355 DPT=5355 LEN=32 
Απρ 28 19:58:55 vampyre kernel: [UFW BLOCK] IN=vmnet8 OUT= MAC= SRC=fe80:0000:0000:0000:0250:56ff:fec0:0008 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=72 TC=0 HOPLIMIT=255 FLOWLBL=6624 PROTO=UDP SPT=5355 DPT=5355 LEN=32 
Απρ 28 19:58:56 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC= SRC=fe80:0000:0000:0000:d953:fe3c:659c:c0c4 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=72 TC=0 HOPLIMIT=255 FLOWLBL=246956 PROTO=UDP SPT=5355 DPT=5355 LEN=32 
Απρ 28 19:59:19 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=26278 DF PROTO=2 
Απρ 28 19:59:20 vampyre kernel: userif-3: sent link up event.
Απρ 28 19:59:43 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=28173 DF PROTO=2 
Απρ 28 19:59:50 vampyre kernel: userif-3: sent link up event.
Απρ 28 19:59:55 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=28864 DF PROTO=2 
Απρ 28 20:00:02 vampyre kernel: audit: type=1334 audit(1651165202.843:100): prog-id=31 op=LOAD
Απρ 28 20:00:02 vampyre kernel: audit: type=1334 audit(1651165202.843:101): prog-id=32 op=LOAD
Απρ 28 20:00:02 vampyre kernel: audit: type=1334 audit(1651165202.843:102): prog-id=33 op=LOAD
Απρ 28 20:00:02 vampyre kernel: audit: type=1130 audit(1651165202.873:103): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Απρ 28 20:00:19 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=29873 DF PROTO=2 
Απρ 28 20:00:20 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:00:40 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=30314 DF PROTO=2 
Απρ 28 20:00:47 vampyre kernel: audit: type=1131 audit(1651165247.151:104): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Απρ 28 20:00:47 vampyre kernel: audit: type=1334 audit(1651165247.257:105): prog-id=0 op=UNLOAD
Απρ 28 20:00:47 vampyre kernel: audit: type=1334 audit(1651165247.257:106): prog-id=0 op=UNLOAD
Απρ 28 20:00:47 vampyre kernel: audit: type=1334 audit(1651165247.257:107): prog-id=0 op=UNLOAD
Απρ 28 20:00:50 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:00:55 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=31056 DF PROTO=2 
Απρ 28 20:01:19 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=32541 DF PROTO=2 
Απρ 28 20:01:20 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:01:32 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=32548 DF PROTO=2 
Απρ 28 20:01:50 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:01:56 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=33931 DF PROTO=2 
Απρ 28 20:02:16 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=35095 DF PROTO=2 
Απρ 28 20:02:20 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:02:32 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=36022 DF PROTO=2 
Απρ 28 20:02:50 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:02:56 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=37691 DF PROTO=2 
Απρ 28 20:03:17 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=39107 DF PROTO=2 
Απρ 28 20:03:20 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:03:32 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=39687 DF PROTO=2 
Απρ 28 20:03:50 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:03:56 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=41643 DF PROTO=2 
Απρ 28 20:04:20 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:04:20 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=43063 DF PROTO=2 
Απρ 28 20:04:32 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=43986 DF PROTO=2 
Απρ 28 20:04:50 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:04:56 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=45569 DF PROTO=2 
Απρ 28 20:05:20 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:05:21 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=47655 DF PROTO=2 
Απρ 28 20:05:33 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=47936 DF PROTO=2 
Απρ 28 20:05:50 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:05:57 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=48461 DF PROTO=2 
Απρ 28 20:06:20 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:06:21 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=49826 DF PROTO=2 
Απρ 28 20:06:33 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=49992 DF PROTO=2 
Απρ 28 20:06:50 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:06:57 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=50852 DF PROTO=2 
Απρ 28 20:07:12 vampyre kernel: audit: type=1130 audit(1651165632.066:108): 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'
Απρ 28 20:07:12 vampyre kernel: audit: type=1131 audit(1651165632.066:109): 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'
Απρ 28 20:07:20 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:07:21 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=51402 DF PROTO=2 
Απρ 28 20:07:33 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=51723 DF PROTO=2 
Απρ 28 20:07:50 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:07:57 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=52643 DF PROTO=2 
Απρ 28 20:08:20 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:08:22 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=52852 DF PROTO=2 
Απρ 28 20:08:34 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=53677 DF PROTO=2 
Απρ 28 20:08:50 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:08:58 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=55409 DF PROTO=2 
Απρ 28 20:09:19 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=56414 DF PROTO=2 
Απρ 28 20:09:20 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:09:34 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=56897 DF PROTO=2 
Απρ 28 20:09:50 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:09:58 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=57584 DF PROTO=2 
Απρ 28 20:10:20 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:10:22 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=58845 DF PROTO=2 
Απρ 28 20:10:34 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=58992 DF PROTO=2 
Απρ 28 20:10:50 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:10:58 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=61149 DF PROTO=2 
Απρ 28 20:11:20 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:11:23 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=61634 DF PROTO=2 
Απρ 28 20:11:35 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=62752 DF PROTO=2 
Απρ 28 20:11:50 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:11:59 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=64339 DF PROTO=2 
Απρ 28 20:12:12 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=64810 DF PROTO=2 
Απρ 28 20:12:20 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:12:32 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=140 DF PROTO=2 
Απρ 28 20:12:50 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:12:59 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=1584 DF PROTO=2 
Απρ 28 20:13:20 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:13:23 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=2520 DF PROTO=2 
Απρ 28 20:13:35 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=3609 DF PROTO=2 
Απρ 28 20:13:50 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:13:59 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=4583 DF PROTO=2 
Απρ 28 20:14:20 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:14:23 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=5749 DF PROTO=2 
Απρ 28 20:14:35 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=5840 DF PROTO=2 
Απρ 28 20:14:50 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:15:00 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=6625 DF PROTO=2 
Απρ 28 20:15:12 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=7793 DF PROTO=2 
Απρ 28 20:15:20 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:15:36 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=9659 DF PROTO=2 
Απρ 28 20:15:50 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:15:56 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=10665 DF PROTO=2 
Απρ 28 20:16:12 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=11947 DF PROTO=2 
Απρ 28 20:16:20 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:16:35 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=12862 DF PROTO=2 
Απρ 28 20:16:50 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:17:00 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=13543 DF PROTO=2 
Απρ 28 20:17:12 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=13907 DF PROTO=2 
Απρ 28 20:17:20 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:17:36 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=15887 DF PROTO=2 
Απρ 28 20:17:50 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:17:58 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=17224 DF PROTO=2 
Απρ 28 20:18:13 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=18467 DF PROTO=2 
Απρ 28 20:18:20 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:18:37 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=19215 DF PROTO=2 
Απρ 28 20:18:50 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:19:01 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=20169 DF PROTO=2 
Απρ 28 20:19:13 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=20794 DF PROTO=2 
Απρ 28 20:19:20 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:19:37 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=22421 DF PROTO=2 
Απρ 28 20:19:50 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:20:01 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=24344 DF PROTO=2 
Απρ 28 20:20:13 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=24407 DF PROTO=2 
Απρ 28 20:20:20 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:20:38 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=24868 DF PROTO=2 
Απρ 28 20:20:40 vampyre kernel: audit: type=1100 audit(1651166440.359:110): pid=5714 uid=1000 auid=1000 ses=2 msg='op=PAM:authentication grantors=? acct="leopseft" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=failed'
Απρ 28 20:20:46 vampyre kernel: audit: type=1100 audit(1651166446.096:111): pid=5714 uid=1000 auid=1000 ses=2 msg='op=PAM:authentication grantors=pam_faillock,pam_permit,pam_faillock acct="leopseft" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Απρ 28 20:20:46 vampyre kernel: audit: type=1101 audit(1651166446.096:112): pid=5714 uid=1000 auid=1000 ses=2 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="leopseft" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Απρ 28 20:20:46 vampyre kernel: audit: type=1110 audit(1651166446.096:113): pid=5714 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/1 res=success'
Απρ 28 20:20:46 vampyre kernel: audit: type=1105 audit(1651166446.099:114): pid=5714 uid=1000 auid=1000 ses=2 msg='op=PAM:session_open grantors=pam_systemd_home,pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Απρ 28 20:20:46 vampyre kernel: audit: type=1106 audit(1651166446.109:115): pid=5714 uid=1000 auid=1000 ses=2 msg='op=PAM:session_close grantors=pam_systemd_home,pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Απρ 28 20:20:46 vampyre kernel: audit: type=1104 audit(1651166446.109:116): pid=5714 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/1 res=success'
Απρ 28 20:20:50 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:20:53 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=25606 DF PROTO=2 
Απρ 28 20:21:14 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=26872 DF PROTO=2 
Απρ 28 20:21:20 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:21:38 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=28584 DF PROTO=2 
Απρ 28 20:21:50 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:21:57 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=29001 DF PROTO=2 
Απρ 28 20:22:14 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=29604 DF PROTO=2 
Απρ 28 20:22:20 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:22:38 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=31536 DF PROTO=2 
Απρ 28 20:22:50 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:23:02 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=32806 DF PROTO=2 
Απρ 28 20:23:14 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=33495 DF PROTO=2 
Απρ 28 20:23:20 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:23:37 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=34856 DF PROTO=2 
Απρ 28 20:23:50 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:24:03 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=36291 DF PROTO=2 
Απρ 28 20:24:15 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=37021 DF PROTO=2 
Απρ 28 20:24:20 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:24:39 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=38401 DF PROTO=2 
Απρ 28 20:24:50 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:25:03 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=39106 DF PROTO=2 
Απρ 28 20:25:15 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=39866 DF PROTO=2 
Απρ 28 20:25:20 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:25:39 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=41337 DF PROTO=2 
Απρ 28 20:25:50 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:26:03 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=43023 DF PROTO=2 
Απρ 28 20:26:15 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=44149 DF PROTO=2 
Απρ 28 20:26:20 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:26:40 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=45812 DF PROTO=2 
Απρ 28 20:26:50 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:26:52 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=46624 DF PROTO=2 
Απρ 28 20:27:16 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=46987 DF PROTO=2 
Απρ 28 20:27:20 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:27:40 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=48053 DF PROTO=2 
Απρ 28 20:27:50 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:27:52 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=48953 DF PROTO=2 
Απρ 28 20:28:16 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=50030 DF PROTO=2 
Απρ 28 20:28:20 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:28:40 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=51441 DF PROTO=2 
Απρ 28 20:28:50 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:28:52 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=51970 DF PROTO=2 
Απρ 28 20:29:16 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=53227 DF PROTO=2 
Απρ 28 20:29:20 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:29:41 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=53346 DF PROTO=2 
Απρ 28 20:29:50 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:29:53 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=54382 DF PROTO=2 
Απρ 28 20:30:17 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=55836 DF PROTO=2 
Απρ 28 20:30:20 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:30:41 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=57080 DF PROTO=2 
Απρ 28 20:30:50 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:30:53 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=57491 DF PROTO=2 
Απρ 28 20:31:17 vampyre kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=58093 DF PROTO=2 
Απρ 28 20:31:20 vampyre kernel: userif-3: sent link up event.
Απρ 28 20:31:33 vampyre kernel: audit: type=1100 audit(1651167093.584:117): pid=7076 uid=1000 auid=1000 ses=2 msg='op=PAM:authentication grantors=pam_faillock,pam_permit,pam_faillock acct="leopseft" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Απρ 28 20:31:33 vampyre kernel: audit: type=1101 audit(1651167093.584:118): pid=7076 uid=1000 auid=1000 ses=2 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="leopseft" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Απρ 28 20:31:33 vampyre kernel: audit: type=1110 audit(1651167093.584:119): pid=7076 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/1 res=success'
Απρ 28 20:31:33 vampyre kernel: audit: type=1105 audit(1651167093.584:120): pid=7076 uid=1000 auid=1000 ses=2 msg='op=PAM:session_open grantors=pam_systemd_home,pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Απρ 28 20:31:33 vampyre kernel: audit: type=1101 audit(1651167093.591:121): pid=7087 uid=0 auid=1000 ses=2 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Απρ 28 20:31:33 vampyre kernel: audit: type=1110 audit(1651167093.591:122): pid=7087 uid=0 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/1 res=success'
Απρ 28 20:31:33 vampyre kernel: audit: type=1105 audit(1651167093.591:123): pid=7087 uid=0 auid=1000 ses=2 msg='op=PAM:session_open grantors=pam_systemd_home,pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'

dmesg

[    0.000000] microcode: microcode updated early to revision 0x9a, date = 2021-08-06
[    0.000000] Linux version 5.17.5-arch1-1 (linux@archlinux) (gcc (GCC) 11.2.0, GNU ld (GNU Binutils) 2.38) #1 SMP PREEMPT Wed, 27 Apr 2022 20:56:11 +0000
[    0.000000] Command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=562b6173-e5e1-4285-8498-8ec9205ff207 rw zswap.enabled=1 zswap.compressor=lz4 zswap.zpool=z3fold quiet loglevel=3
[    0.000000] x86/split lock detection: #AC: crashing the kernel on kernel split_locks and warning on user-space split_locks
[    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 0x020: 'AVX-512 opmask'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'
[    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[5]:  832, xstate_sizes[5]:   64
[    0.000000] x86/fpu: xstate_offset[6]:  896, xstate_sizes[6]:  512
[    0.000000] x86/fpu: xstate_offset[7]: 1408, xstate_sizes[7]: 1024
[    0.000000] x86/fpu: xstate_offset[9]: 2432, xstate_sizes[9]:    8
[    0.000000] x86/fpu: Enabled xstate features 0x2e7, context size is 2440 bytes, using 'compacted' format.
[    0.000000] signal: max sigframe size: 3632
[    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-0x0000000061a83fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000061a84000-0x0000000064b83fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000064b84000-0x0000000064c4ffff] ACPI data
[    0.000000] BIOS-e820: [mem 0x0000000064c50000-0x0000000064d05fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000064d06000-0x0000000067e3afff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000067e3b000-0x0000000067efefff] type 20
[    0.000000] BIOS-e820: [mem 0x0000000067eff000-0x0000000067efffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000067f00000-0x000000006dffffff] reserved
[    0.000000] BIOS-e820: [mem 0x000000006e800000-0x000000006e9fffff] reserved
[    0.000000] BIOS-e820: [mem 0x000000006f000000-0x00000000743fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000c0000000-0x00000000cfffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed20000-0x00000000fed7ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000048bbfffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: EFI v2.70 by American Megatrends
[    0.000000] efi: ACPI=0x64c4f000 ACPI 2.0=0x64c4f014 TPMFinalLog=0x64c93000 SMBIOS=0x67ca7000 SMBIOS 3.0=0x67ca6000 MEMATTR=0x5c1d4018 ESRT=0x5ffb9e18 
[    0.000000] SMBIOS 3.3.0 present.
[    0.000000] DMI: Micro-Star International Co., Ltd. Modern 15 A11M/MS-1552, BIOS E1552IMS.118 07/30/2021
[    0.000000] tsc: Detected 2800.000 MHz processor
[    0.000000] tsc: Detected 2803.200 MHz TSC
[    0.001011] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.001013] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.001016] last_pfn = 0x48bc00 max_arch_pfn = 0x400000000
[    0.001144] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.001904] last_pfn = 0x67f00 max_arch_pfn = 0x400000000
[    0.016729] esrt: Reserving ESRT space from 0x000000005ffb9e18 to 0x000000005ffb9ea0.
[    0.016732] e820: update [mem 0x5ffb9000-0x5ffb9fff] usable ==> reserved
[    0.016741] Using GB pages for direct mapping
[    0.016948] Secure boot disabled
[    0.016949] RAMDISK: [mem 0x36587000-0x372bafff]
[    0.016952] ACPI: Early table checksum verification disabled
[    0.016954] ACPI: RSDP 0x0000000064C4F014 000024 (v02 MSI_NB)
[    0.016957] ACPI: XSDT 0x0000000064C4E728 0000FC (v01 MSI_NB MEGABOOK 01072009 AMI  01000013)
[    0.016960] ACPI: FACP 0x0000000064C49000 000114 (v06 MSI_NB MEGABOOK 01072009 AMI  00010013)
[    0.016964] ACPI: DSDT 0x0000000064BF0000 058604 (v02 MSI_NB MEGABOOK 01072009 INTL 20191018)
[    0.016966] ACPI: FACS 0x0000000064D04000 000040
[    0.016967] ACPI: MCFG 0x0000000064C4D000 00003C (v01 MSI_NB MEGABOOK 01072009 MSFT 00000097)
[    0.016969] ACPI: SSDT 0x0000000064C4A000 0025CF (v02 CpuRef CpuSsdt  00003000 INTL 20191018)
[    0.016971] ACPI: FIDT 0x0000000064BEF000 00009C (v01 MSI_NB MEGABOOK 01072009 AMI  00010013)
[    0.016973] ACPI: MSDM 0x0000000064BEE000 000055 (v03 MSI_NB MEGABOOK 01072009 AMI  01000013)
[    0.016975] ACPI: SLIC 0x0000000064BED000 000176 (v01 MSI_NB MEGABOOK 01072009 AMI  01000013)
[    0.016976] ACPI: SSDT 0x0000000064BE9000 003CA0 (v02 DptfTb DptfTabl 00001000 INTL 20191018)
[    0.016978] ACPI: SSDT 0x0000000064BE7000 0017E9 (v02 SaSsdt SaSsdt   00003000 INTL 20191018)
[    0.016980] ACPI: SSDT 0x0000000064BE3000 003350 (v02 INTEL  IgfxSsdt 00003000 INTL 20191018)
[    0.016981] ACPI: SSDT 0x0000000064BD7000 00B192 (v02 INTEL  TcssSsdt 00001000 INTL 20191018)
[    0.016983] ACPI: HPET 0x0000000064BD6000 000038 (v01 MSI_NB MEGABOOK 01072009 AMI  01000013)
[    0.016985] ACPI: APIC 0x0000000064BD5000 00012C (v04 MSI_NB MEGABOOK 01072009 AMI  01000013)
[    0.016987] ACPI: SSDT 0x0000000064BCE000 006F0E (v02 MSI_NB TglU_Rvp 00001000 INTL 20191018)
[    0.016988] ACPI: NHLT 0x0000000064BCC000 001B50 (v00 MSI_NB MEGABOOK 01072009 AMI  01000013)
[    0.016990] ACPI: LPIT 0x0000000064BCB000 0000CC (v01 MSI_NB MEGABOOK 01072009 AMI  01000013)
[    0.016992] ACPI: SSDT 0x0000000064BC7000 002720 (v02 MSI_NB PtidDevc 00001000 INTL 20191018)
[    0.016994] ACPI: SSDT 0x0000000064BC6000 00012A (v02 MSI_NB TbtTypeC 00000000 INTL 20191018)
[    0.016995] ACPI: DBGP 0x0000000064BC5000 000034 (v01 MSI_NB MEGABOOK 01072009 AMI  01000013)
[    0.016997] ACPI: DBG2 0x0000000064BC4000 000054 (v00 MSI_NB MEGABOOK 01072009 AMI  01000013)
[    0.016999] ACPI: DMAR 0x0000000064BC3000 0000A0 (v02 INTEL  EDK2     00000002      01000013)
[    0.017001] ACPI: SSDT 0x0000000064BC2000 000905 (v02 INTEL  xh_tudd4 00000000 INTL 20191018)
[    0.017002] ACPI: SSDT 0x0000000064BC1000 000144 (v02 Intel  ADebTabl 00001000 INTL 20191018)
[    0.017004] ACPI: BGRT 0x0000000064BC0000 000038 (v01 MSI_NB MEGABOOK 01072009 AMI  00010013)
[    0.017006] ACPI: TPM2 0x0000000064BBF000 00004C (v04 MSI_NB MEGABOOK 00000001 AMI  00000000)
[    0.017007] ACPI: PTDT 0x0000000064BBE000 000CFE (v00 MSI_NB MEGABOOK 00000005 MSFT 0100000D)
[    0.017009] ACPI: WSMT 0x0000000064BCA000 000028 (v01 MSI_NB MEGABOOK 01072009 AMI  00010013)
[    0.017011] ACPI: FPDT 0x0000000064BBD000 000044 (v01 MSI_NB A M I    01072009 AMI  01000013)
[    0.017012] ACPI: Reserving FACP table memory at [mem 0x64c49000-0x64c49113]
[    0.017013] ACPI: Reserving DSDT table memory at [mem 0x64bf0000-0x64c48603]
[    0.017014] ACPI: Reserving FACS table memory at [mem 0x64d04000-0x64d0403f]
[    0.017014] ACPI: Reserving MCFG table memory at [mem 0x64c4d000-0x64c4d03b]
[    0.017015] ACPI: Reserving SSDT table memory at [mem 0x64c4a000-0x64c4c5ce]
[    0.017015] ACPI: Reserving FIDT table memory at [mem 0x64bef000-0x64bef09b]
[    0.017016] ACPI: Reserving MSDM table memory at [mem 0x64bee000-0x64bee054]
[    0.017016] ACPI: Reserving SLIC table memory at [mem 0x64bed000-0x64bed175]
[    0.017016] ACPI: Reserving SSDT table memory at [mem 0x64be9000-0x64becc9f]
[    0.017017] ACPI: Reserving SSDT table memory at [mem 0x64be7000-0x64be87e8]
[    0.017017] ACPI: Reserving SSDT table memory at [mem 0x64be3000-0x64be634f]
[    0.017018] ACPI: Reserving SSDT table memory at [mem 0x64bd7000-0x64be2191]
[    0.017018] ACPI: Reserving HPET table memory at [mem 0x64bd6000-0x64bd6037]
[    0.017019] ACPI: Reserving APIC table memory at [mem 0x64bd5000-0x64bd512b]
[    0.017019] ACPI: Reserving SSDT table memory at [mem 0x64bce000-0x64bd4f0d]
[    0.017019] ACPI: Reserving NHLT table memory at [mem 0x64bcc000-0x64bcdb4f]
[    0.017020] ACPI: Reserving LPIT table memory at [mem 0x64bcb000-0x64bcb0cb]
[    0.017020] ACPI: Reserving SSDT table memory at [mem 0x64bc7000-0x64bc971f]
[    0.017021] ACPI: Reserving SSDT table memory at [mem 0x64bc6000-0x64bc6129]
[    0.017021] ACPI: Reserving DBGP table memory at [mem 0x64bc5000-0x64bc5033]
[    0.017022] ACPI: Reserving DBG2 table memory at [mem 0x64bc4000-0x64bc4053]
[    0.017022] ACPI: Reserving DMAR table memory at [mem 0x64bc3000-0x64bc309f]
[    0.017023] ACPI: Reserving SSDT table memory at [mem 0x64bc2000-0x64bc2904]
[    0.017023] ACPI: Reserving SSDT table memory at [mem 0x64bc1000-0x64bc1143]
[    0.017023] ACPI: Reserving BGRT table memory at [mem 0x64bc0000-0x64bc0037]
[    0.017024] ACPI: Reserving TPM2 table memory at [mem 0x64bbf000-0x64bbf04b]
[    0.017024] ACPI: Reserving PTDT table memory at [mem 0x64bbe000-0x64bbecfd]
[    0.017025] ACPI: Reserving WSMT table memory at [mem 0x64bca000-0x64bca027]
[    0.017025] ACPI: Reserving FPDT table memory at [mem 0x64bbd000-0x64bbd043]
[    0.017193] No NUMA configuration found
[    0.017194] Faking a node at [mem 0x0000000000000000-0x000000048bbfffff]
[    0.017196] NODE_DATA(0) allocated [mem 0x48bbfa000-0x48bbfdfff]
[    0.017210] Zone ranges:
[    0.017211]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.017212]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.017213]   Normal   [mem 0x0000000100000000-0x000000048bbfffff]
[    0.017214]   Device   empty
[    0.017214] Movable zone start for each node
[    0.017215] Early memory node ranges
[    0.017215]   node   0: [mem 0x0000000000001000-0x000000000009efff]
[    0.017216]   node   0: [mem 0x0000000000100000-0x0000000061a83fff]
[    0.017217]   node   0: [mem 0x0000000067eff000-0x0000000067efffff]
[    0.017217]   node   0: [mem 0x0000000100000000-0x000000048bbfffff]
[    0.017218] Initmem setup node 0 [mem 0x0000000000001000-0x000000048bbfffff]
[    0.017221] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.017234] On node 0, zone DMA: 97 pages in unavailable ranges
[    0.019010] On node 0, zone DMA32: 25723 pages in unavailable ranges
[    0.035387] On node 0, zone Normal: 256 pages in unavailable ranges
[    0.035487] On node 0, zone Normal: 17408 pages in unavailable ranges
[    0.035508] Reserving Intel graphics memory at [mem 0x70800000-0x743fffff]
[    0.035829] ACPI: PM-Timer IO Port: 0x1808
[    0.035834] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.035835] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.035836] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.035836] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.035837] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.035837] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.035838] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.035838] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.035838] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[    0.035839] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[    0.035839] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[    0.035839] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[    0.035840] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[    0.035840] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[    0.035840] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[    0.035841] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[    0.035876] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[    0.035878] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.035879] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.035881] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.035882] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.035887] e820: update [mem 0x5c026000-0x5c119fff] usable ==> reserved
[    0.035892] TSC deadline timer available
[    0.035893] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
[    0.035903] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.035905] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
[    0.035905] PM: hibernation: Registered nosave memory: [mem 0x5c026000-0x5c119fff]
[    0.035906] PM: hibernation: Registered nosave memory: [mem 0x5ffb9000-0x5ffb9fff]
[    0.035907] PM: hibernation: Registered nosave memory: [mem 0x61a84000-0x64b83fff]
[    0.035908] PM: hibernation: Registered nosave memory: [mem 0x64b84000-0x64c4ffff]
[    0.035908] PM: hibernation: Registered nosave memory: [mem 0x64c50000-0x64d05fff]
[    0.035909] PM: hibernation: Registered nosave memory: [mem 0x64d06000-0x67e3afff]
[    0.035909] PM: hibernation: Registered nosave memory: [mem 0x67e3b000-0x67efefff]
[    0.035910] PM: hibernation: Registered nosave memory: [mem 0x67f00000-0x6dffffff]
[    0.035910] PM: hibernation: Registered nosave memory: [mem 0x6e000000-0x6e7fffff]
[    0.035911] PM: hibernation: Registered nosave memory: [mem 0x6e800000-0x6e9fffff]
[    0.035911] PM: hibernation: Registered nosave memory: [mem 0x6ea00000-0x6effffff]
[    0.035911] PM: hibernation: Registered nosave memory: [mem 0x6f000000-0x743fffff]
[    0.035912] PM: hibernation: Registered nosave memory: [mem 0x74400000-0xbfffffff]
[    0.035912] PM: hibernation: Registered nosave memory: [mem 0xc0000000-0xcfffffff]
[    0.035912] PM: hibernation: Registered nosave memory: [mem 0xd0000000-0xfdffffff]
[    0.035913] PM: hibernation: Registered nosave memory: [mem 0xfe000000-0xfe010fff]
[    0.035913] PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xfebfffff]
[    0.035914] PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[    0.035914] PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
[    0.035914] PM: hibernation: Registered nosave memory: [mem 0xfed00000-0xfed00fff]
[    0.035915] PM: hibernation: Registered nosave memory: [mem 0xfed01000-0xfed1ffff]
[    0.035915] PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xfed7ffff]
[    0.035915] PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xfedfffff]
[    0.035916] PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[    0.035916] PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xfeffffff]
[    0.035917] PM: hibernation: Registered nosave memory: [mem 0xff000000-0xffffffff]
[    0.035917] [mem 0x74400000-0xbfffffff] available for PCI devices
[    0.035918] Booting paravirtualized kernel on bare hardware
[    0.035920] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
[    0.039097] setup_percpu: NR_CPUS:320 nr_cpumask_bits:320 nr_cpu_ids:8 nr_node_ids:1
[    0.039209] percpu: Embedded 62 pages/cpu s217088 r8192 d28672 u262144
[    0.039213] pcpu-alloc: s217088 r8192 d28672 u262144 alloc=1*2097152
[    0.039214] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
[    0.039227] Fallback order for Node 0: 0 
[    0.039229] Built 1 zonelists, mobility grouping on.  Total pages: 4053546
[    0.039230] Policy zone: Normal
[    0.039231] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=562b6173-e5e1-4285-8498-8ec9205ff207 rw zswap.enabled=1 zswap.compressor=lz4 zswap.zpool=z3fold quiet loglevel=3
[    0.039262] Unknown kernel command line parameters "BOOT_IMAGE=/vmlinuz-linux", will be passed to user space.
[    0.039682] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[    0.039882] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[    0.039985] mem auto-init: stack:byref_all(zero), heap alloc:on, heap free:off
[    0.066727] Memory: 15970212K/16472204K available (14343K kernel code, 2092K rwdata, 10940K rodata, 1796K init, 3844K bss, 501732K reserved, 0K cma-reserved)
[    0.066731] random: get_random_u64 called from __kmem_cache_create+0x2a/0x550 with crng_init=0
[    0.066823] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[    0.066830] ftrace: allocating 44938 entries in 176 pages
[    0.071686] ftrace: allocated 176 pages with 3 groups
[    0.071732] Dynamic Preempt: full
[    0.071751] rcu: Preemptible hierarchical RCU implementation.
[    0.071751] rcu: 	RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=8.
[    0.071752] rcu: 	RCU priority boosting: priority 1 delay 500 ms.
[    0.071752] 	Trampoline variant of Tasks RCU enabled.
[    0.071753] 	Rude variant of Tasks RCU enabled.
[    0.071753] 	Tracing variant of Tasks RCU enabled.
[    0.071754] rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
[    0.071754] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
[    0.073868] NR_IRQS: 20736, nr_irqs: 2048, preallocated irqs: 16
[    0.074282] kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
[    0.074353] random: crng init done (trusting CPU's manufacturer)
[    0.074370] Console: colour dummy device 80x25
[    0.074378] printk: console [tty0] enabled
[    0.074390] ACPI: Core revision 20211217
[    0.074583] hpet: HPET dysfunctional in PC10. Force disabled.
[    0.074583] APIC: Switch to symmetric I/O mode setup
[    0.074585] DMAR: Host address width 39
[    0.074585] DMAR: DRHD base: 0x000000fed90000 flags: 0x0
[    0.074588] DMAR: dmar0: reg_base_addr fed90000 ver 4:0 cap 1c0000c40660462 ecap 69e2ff0505e
[    0.074590] DMAR: DRHD base: 0x000000fed84000 flags: 0x0
[    0.074593] DMAR: dmar1: reg_base_addr fed84000 ver 1:0 cap d2008c40660462 ecap f050da
[    0.074594] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
[    0.074598] DMAR: dmar2: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
[    0.074599] DMAR: RMRR base: 0x00000070000000 end: 0x000000743fffff
[    0.074601] DMAR-IR: IOAPIC id 2 under DRHD base  0xfed91000 IOMMU 2
[    0.074602] DMAR-IR: HPET id 0 under DRHD base 0xfed91000
[    0.074603] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[    0.076357] DMAR-IR: Enabled IRQ remapping in x2apic mode
[    0.076359] x2apic enabled
[    0.076387] Switched APIC routing to cluster x2apic.
[    0.080859] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x28680fa287f, max_idle_ns: 440795281151 ns
[    0.080863] Calibrating delay loop (skipped), value calculated using timer frequency.. 5608.00 BogoMIPS (lpj=9344000)
[    0.080865] pid_max: default: 32768 minimum: 301
[    0.082592] LSM: Security Framework initializing
[    0.082596] landlock: Up and running.
[    0.082597] Yama: becoming mindful.
[    0.082600] LSM support for eBPF active
[    0.082633] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[    0.082663] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[    0.082802] CPU0: Thermal monitoring enabled (TM1)
[    0.082804] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[    0.082890] process: using mwait in idle threads
[    0.082892] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
[    0.082892] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
[    0.082895] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.082896] Spectre V2 : Mitigation: Enhanced IBRS
[    0.082896] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.082897] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.082898] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    0.084195] Freeing SMP alternatives memory: 36K
[    0.084195] smpboot: Estimated ratio of average max frequency by base frequency (times 1024): 1499
[    0.084195] smpboot: CPU0: 11th Gen Intel(R) Core(TM) i7-1165G7 @ 2.80GHz (family: 0x6, model: 0x8c, stepping: 0x1)
[    0.084195] cblist_init_generic: Setting adjustable number of callback queues.
[    0.084195] cblist_init_generic: Setting shift to 3 and lim to 1.
[    0.084195] cblist_init_generic: Setting shift to 3 and lim to 1.
[    0.084195] cblist_init_generic: Setting shift to 3 and lim to 1.
[    0.084195] Performance Events: PEBS fmt4+-baseline,  AnyThread deprecated, Icelake events, 32-deep LBR, full-width counters, Intel PMU driver.
[    0.084195] ... version:                5
[    0.084195] ... bit width:              48
[    0.084195] ... generic registers:      8
[    0.084195] ... value mask:             0000ffffffffffff
[    0.084195] ... max period:             00007fffffffffff
[    0.084195] ... fixed-purpose events:   4
[    0.084195] ... event mask:             0001000f000000ff
[    0.084195] rcu: Hierarchical SRCU implementation.
[    0.084195] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    0.084195] smp: Bringing up secondary CPUs ...
[    0.084195] x86: Booting SMP configuration:
[    0.084195] .... node  #0, CPUs:      #1 #2 #3 #4 #5 #6 #7
[    0.091398] smp: Brought up 1 node, 8 CPUs
[    0.091398] smpboot: Max logical packages: 1
[    0.091398] smpboot: Total of 8 processors activated (44869.00 BogoMIPS)
[    0.094655] devtmpfs: initialized
[    0.094655] x86/mm: Memory block size: 128MB
[    0.094685] ACPI: PM: Registering ACPI NVS region [mem 0x64c50000-0x64d05fff] (745472 bytes)
[    0.094685] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[    0.094685] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
[    0.094685] pinctrl core: initialized pinctrl subsystem
[    0.094685] PM: RTC time: 19:52:04, date: 2022-04-28
[    0.094685] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.094751] DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations
[    0.094853] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.094958] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.094966] audit: initializing netlink subsys (disabled)
[    0.094970] audit: type=2000 audit(1651175524.013:1): state=initialized audit_enabled=0 res=1
[    0.094970] thermal_sys: Registered thermal governor 'fair_share'
[    0.094970] thermal_sys: Registered thermal governor 'bang_bang'
[    0.094970] thermal_sys: Registered thermal governor 'step_wise'
[    0.094970] thermal_sys: Registered thermal governor 'user_space'
[    0.094970] thermal_sys: Registered thermal governor 'power_allocator'
[    0.094970] cpuidle: using governor ladder
[    0.094970] cpuidle: using governor menu
[    0.094970] HugeTLB: can free 4094 vmemmap pages for hugepages-1048576kB
[    0.094970] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.094970] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xc0000000-0xcfffffff] (base 0xc0000000)
[    0.094970] PCI: MMCONFIG at [mem 0xc0000000-0xcfffffff] reserved in E820
[    0.094970] PCI: Using configuration type 1 for base access
[    0.094970] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.094970] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    0.094970] HugeTLB: can free 6 vmemmap pages for hugepages-2048kB
[    0.094970] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.094970] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.094970] ACPI: Added _OSI(Module Device)
[    0.094970] ACPI: Added _OSI(Processor Device)
[    0.094970] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.094970] ACPI: Added _OSI(Processor Aggregator Device)
[    0.094970] ACPI: Added _OSI(Linux-Dell-Video)
[    0.094970] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.094970] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    0.150164] ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.PEG0.PEGP._DSD], AE_ALREADY_EXISTS (20211217/dswload2-326)
[    0.150168] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20211217/psobject-220)
[    0.150170] ACPI: Skipping parse of AML opcode: Method (0x0014)
[    0.152884] ACPI: 11 ACPI AML tables successfully acquired and loaded
[    0.161765] ACPI: Dynamic OEM Table Load:
[    0.161771] ACPI: SSDT 0xFFFF96368029E200 0001B8 (v02 PmRef  Cpu0Psd  00003000 INTL 20191018)
[    0.162443] ACPI: \_SB_.PR00: _OSC native thermal LVT Acked
[    0.164328] ACPI: Dynamic OEM Table Load:
[    0.164332] ACPI: SSDT 0xFFFF9636814FC000 000394 (v02 PmRef  Cpu0Cst  00003001 INTL 20191018)
[    0.165133] ACPI: Dynamic OEM Table Load:
[    0.165136] ACPI: SSDT 0xFFFF9636815A2000 000647 (v02 PmRef  Cpu0Ist  00003000 INTL 20191018)
[    0.165992] ACPI: Dynamic OEM Table Load:
[    0.165996] ACPI: SSDT 0xFFFF96368029F600 000128 (v02 PmRef  Cpu0Hwp  00003000 INTL 20191018)
[    0.166923] ACPI: Dynamic OEM Table Load:
[    0.166927] ACPI: SSDT 0xFFFF96368012A000 0008E7 (v02 PmRef  ApIst    00003000 INTL 20191018)
[    0.167840] ACPI: Dynamic OEM Table Load:
[    0.167843] ACPI: SSDT 0xFFFF9636815A7800 00048A (v02 PmRef  ApHwp    00003000 INTL 20191018)
[    0.168676] ACPI: Dynamic OEM Table Load:
[    0.168679] ACPI: SSDT 0xFFFF9636815A5000 0004D2 (v02 PmRef  ApPsd    00003000 INTL 20191018)
[    0.169502] ACPI: Dynamic OEM Table Load:
[    0.169505] ACPI: SSDT 0xFFFF9636815A6000 00048A (v02 PmRef  ApCst    00003000 INTL 20191018)
[    0.173605] ACPI: EC: EC started
[    0.173606] ACPI: EC: interrupt blocked
[    0.177687] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.177688] ACPI: \_SB_.PC00.LPCB.EC__: Boot DSDT EC used to handle transactions
[    0.177689] ACPI: Interpreter enabled
[    0.177726] ACPI: PM: (supports S0 S3 S4 S5)
[    0.177727] ACPI: Using IOAPIC for interrupt routing
[    0.177758] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.179324] ACPI: Enabled 7 GPEs in block 00 to 7F
[    0.180921] ACPI: PM: Power Resource [PXP]
[    0.302656] ACPI: PM: Power Resource [PXP]
[    0.303984] ACPI: PM: Power Resource [PXP]
[    0.313117] ACPI: PM: Power Resource [BTPR]
[    0.313728] ACPI: PM: Power Resource [PAUD]
[    0.315813] ACPI: PM: Power Resource [V0PR]
[    0.315911] ACPI: PM: Power Resource [V1PR]
[    0.316006] ACPI: PM: Power Resource [V2PR]
[    0.317813] ACPI: PM: Power Resource [PXTC]
[    0.318726] ACPI: PM: Power Resource [PTPL]
[    0.319177] ACPI: PM: Power Resource [PXTC]
[    0.319687] ACPI: PM: Power Resource [PXTC]
[    0.321204] ACPI: PM: Power Resource [WRST]
[    0.323368] ACPI: PM: Power Resource [TBT0]
[    0.323587] ACPI: PM: Power Resource [TBT1]
[    0.323797] ACPI: PM: Power Resource [D3C]
[    0.469376] ACPI: PM: Power Resource [PIN]
[    0.469602] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-fe])
[    0.469606] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    0.471209] acpi PNP0A08:00: _OSC: platform does not support [AER]
[    0.474348] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability LTR DPC]
[    0.475783] PCI host bridge to bus 0000:00
[    0.475784] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.475785] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.475786] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.475787] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000fffff window]
[    0.475787] pci_bus 0000:00: root bus resource [mem 0x74400000-0xbfffffff window]
[    0.475788] pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
[    0.475789] pci_bus 0000:00: root bus resource [bus 00-fe]
[    0.475881] pci 0000:00:00.0: [8086:9a14] type 00 class 0x060000
[    0.475980] pci 0000:00:02.0: [8086:9a49] type 00 class 0x030000
[    0.475987] pci 0000:00:02.0: reg 0x10: [mem 0x601c000000-0x601cffffff 64bit]
[    0.475992] pci 0000:00:02.0: reg 0x18: [mem 0x4000000000-0x400fffffff 64bit pref]
[    0.475995] pci 0000:00:02.0: reg 0x20: [io  0x3000-0x303f]
[    0.476008] pci 0000:00:02.0: BAR 2: assigned to efifb
[    0.476009] pci 0000:00:02.0: DMAR: Skip IOMMU disabling for graphics
[    0.476011] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.476034] pci 0000:00:02.0: reg 0x344: [mem 0x00000000-0x00ffffff 64bit]
[    0.476035] pci 0000:00:02.0: VF(n) BAR0 space: [mem 0x00000000-0x06ffffff 64bit] (contains BAR0 for 7 VFs)
[    0.476038] pci 0000:00:02.0: reg 0x34c: [mem 0x00000000-0x1fffffff 64bit pref]
[    0.476039] pci 0000:00:02.0: VF(n) BAR2 space: [mem 0x00000000-0xdfffffff 64bit pref] (contains BAR2 for 7 VFs)
[    0.476153] pci 0000:00:04.0: [8086:9a03] type 00 class 0x118000
[    0.476168] pci 0000:00:04.0: reg 0x10: [mem 0x601d140000-0x601d15ffff 64bit]
[    0.476427] pci 0000:00:06.0: [8086:9a09] type 01 class 0x060400
[    0.476513] pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
[    0.476551] pci 0000:00:06.0: PTM enabled (root), 4ns granularity
[    0.476968] pci 0000:00:07.0: [8086:9a23] type 01 class 0x060400
[    0.477037] pci 0000:00:07.0: PME# supported from D0 D3hot D3cold
[    0.477059] pci 0000:00:07.0: DPC: RP PIO log size 0 is invalid
[    0.478593] pci 0000:00:08.0: [8086:9a11] type 00 class 0x088000
[    0.478600] pci 0000:00:08.0: reg 0x10: [mem 0x601d199000-0x601d199fff 64bit]
[    0.478671] pci 0000:00:0a.0: [8086:9a0d] type 00 class 0x118000
[    0.478678] pci 0000:00:0a.0: reg 0x10: [mem 0x601d180000-0x601d187fff 64bit]
[    0.478697] pci 0000:00:0a.0: enabling Extended Tags
[    0.478764] pci 0000:00:0d.0: [8086:9a13] type 00 class 0x0c0330
[    0.478776] pci 0000:00:0d.0: reg 0x10: [mem 0x601d170000-0x601d17ffff 64bit]
[    0.478827] pci 0000:00:0d.0: PME# supported from D3hot D3cold
[    0.480184] pci 0000:00:0d.2: [8086:9a1b] type 00 class 0x0c0340
[    0.480194] pci 0000:00:0d.2: reg 0x10: [mem 0x601d100000-0x601d13ffff 64bit]
[    0.480200] pci 0000:00:0d.2: reg 0x18: [mem 0x601d198000-0x601d198fff 64bit]
[    0.480229] pci 0000:00:0d.2: supports D1 D2
[    0.480230] pci 0000:00:0d.2: PME# supported from D0 D1 D2 D3hot D3cold
[    0.480378] pci 0000:00:14.0: [8086:a0ed] type 00 class 0x0c0330
[    0.480399] pci 0000:00:14.0: reg 0x10: [mem 0x601d160000-0x601d16ffff 64bit]
[    0.480483] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.481874] pci 0000:00:14.2: [8086:a0ef] type 00 class 0x050000
[    0.481894] pci 0000:00:14.2: reg 0x10: [mem 0x601d190000-0x601d193fff 64bit]
[    0.481907] pci 0000:00:14.2: reg 0x18: [mem 0x601d197000-0x601d197fff 64bit]
[    0.482052] pci 0000:00:14.3: [8086:a0f0] type 00 class 0x028000
[    0.482073] pci 0000:00:14.3: reg 0x10: [mem 0x601d18c000-0x601d18ffff 64bit]
[    0.482198] pci 0000:00:14.3: PME# supported from D0 D3hot D3cold
[    0.482376] pci 0000:00:15.0: [8086:a0e8] type 00 class 0x0c8000
[    0.482404] pci 0000:00:15.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[    0.482750] pci 0000:00:16.0: [8086:a0e0] type 00 class 0x078000
[    0.482773] pci 0000:00:16.0: reg 0x10: [mem 0x601d195000-0x601d195fff 64bit]
[    0.482860] pci 0000:00:16.0: PME# supported from D3hot
[    0.483194] pci 0000:00:1c.0: [8086:a0b8] type 01 class 0x060400
[    0.483275] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.483766] pci 0000:00:1c.3: [8086:a0bb] type 01 class 0x060400
[    0.483865] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[    0.483901] pci 0000:00:1c.3: PTM enabled (root), 4ns granularity
[    0.484395] pci 0000:00:1f.0: [8086:a082] type 00 class 0x060100
[    0.484688] pci 0000:00:1f.3: [8086:a0c8] type 00 class 0x040100
[    0.484730] pci 0000:00:1f.3: reg 0x10: [mem 0x601d188000-0x601d18bfff 64bit]
[    0.484784] pci 0000:00:1f.3: reg 0x20: [mem 0x601d000000-0x601d0fffff 64bit]
[    0.484889] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[    0.485229] pci 0000:00:1f.4: [8086:a0a3] type 00 class 0x0c0500
[    0.485254] pci 0000:00:1f.4: reg 0x10: [mem 0x601d194000-0x601d1940ff 64bit]
[    0.485283] pci 0000:00:1f.4: reg 0x20: [io  0xefa0-0xefbf]
[    0.485480] pci 0000:00:1f.5: [8086:a0a4] type 00 class 0x0c8000
[    0.485498] pci 0000:00:1f.5: reg 0x10: [mem 0xfe010000-0xfe010fff]
[    0.485987] pci 0000:01:00.0: [2646:500c] type 00 class 0x010802
[    0.486029] pci 0000:01:00.0: reg 0x10: [mem 0x82400000-0x82403fff 64bit]
[    0.486694] pci 0000:00:06.0: PCI bridge to [bus 01]
[    0.486697] pci 0000:00:06.0:   bridge window [mem 0x82400000-0x824fffff]
[    0.486728] pci 0000:00:07.0: PCI bridge to [bus 02-2c]
[    0.486731] pci 0000:00:07.0:   bridge window [mem 0x76000000-0x821fffff]
[    0.486735] pci 0000:00:07.0:   bridge window [mem 0x6000000000-0x601bffffff 64bit pref]
[    0.486770] pci 0000:00:1c.0: PCI bridge to [bus 2d]
[    0.486833] pci 0000:2e:00.0: [10ec:525a] type 00 class 0xff0000
[    0.486858] pci 0000:2e:00.0: reg 0x14: [mem 0x82300000-0x82300fff]
[    0.486984] pci 0000:2e:00.0: supports D1 D2
[    0.486985] pci 0000:2e:00.0: PME# supported from D1 D2 D3hot D3cold
[    0.487121] pci 0000:00:1c.3: PCI bridge to [bus 2e]
[    0.487125] pci 0000:00:1c.3:   bridge window [mem 0x82300000-0x823fffff]
[    0.493659] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[    0.493734] ACPI: PCI: Interrupt link LNKB configured for IRQ 1
[    0.493807] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[    0.493893] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[    0.493966] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    0.494038] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    0.494111] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    0.494183] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[    0.516790] ACPI: EC: interrupt unblocked
[    0.516791] ACPI: EC: event unblocked
[    0.516814] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.516815] ACPI: EC: GPE=0x6e
[    0.516816] ACPI: \_SB_.PC00.LPCB.EC__: Boot DSDT EC initialization complete
[    0.516817] ACPI: \_SB_.PC00.LPCB.EC__: EC: Used to handle transactions and events
[    0.516870] iommu: Default domain type: Translated 
[    0.516871] iommu: DMA domain TLB invalidation policy: lazy mode 
[    0.516879] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    0.516879] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.516879] pci 0000:00:02.0: vgaarb: bridge control possible
[    0.516879] vgaarb: loaded
[    0.516879] SCSI subsystem initialized
[    0.516879] libata version 3.00 loaded.
[    0.516879] ACPI: bus type USB registered
[    0.516879] usbcore: registered new interface driver usbfs
[    0.516879] usbcore: registered new interface driver hub
[    0.516879] usbcore: registered new device driver usb
[    0.516879] pps_core: LinuxPPS API ver. 1 registered
[    0.516879] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.516879] PTP clock support registered
[    0.516879] EDAC MC: Ver: 3.0.0
[    0.517557] Registered efivars operations
[    0.517607] NetLabel: Initializing
[    0.517607] NetLabel:  domain hash size = 128
[    0.517608] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.517616] NetLabel:  unlabeled traffic allowed by default
[    0.517619] mctp: management component transport protocol core
[    0.517619] NET: Registered PF_MCTP protocol family
[    0.517621] PCI: Using ACPI for IRQ routing
[    0.537568] PCI: pci_cache_line_size set to 64 bytes
[    0.538007] pci 0000:00:1f.5: can't claim BAR 0 [mem 0xfe010000-0xfe010fff]: no compatible bridge window
[    0.538440] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
[    0.538441] e820: reserve RAM buffer [mem 0x5c026000-0x5fffffff]
[    0.538441] e820: reserve RAM buffer [mem 0x5ffb9000-0x5fffffff]
[    0.538442] e820: reserve RAM buffer [mem 0x61a84000-0x63ffffff]
[    0.538443] e820: reserve RAM buffer [mem 0x67f00000-0x67ffffff]
[    0.538443] e820: reserve RAM buffer [mem 0x48bc00000-0x48bffffff]
[    0.538447] clocksource: Switched to clocksource tsc-early
[    0.541952] VFS: Disk quotas dquot_6.6.0
[    0.541960] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.542000] pnp: PnP ACPI init
[    0.543418] system 00:02: [io  0x0680-0x069f] has been reserved
[    0.543420] system 00:02: [io  0x164e-0x164f] has been reserved
[    0.543507] system 00:03: [io  0x1854-0x1857] has been reserved
[    0.545166] pnp 00:04: disabling [mem 0xc0000000-0xcfffffff] because it overlaps 0000:00:02.0 BAR 9 [mem 0x00000000-0xdfffffff 64bit pref]
[    0.545179] system 00:04: [mem 0xfedc0000-0xfedc7fff] has been reserved
[    0.545180] system 00:04: [mem 0xfeda0000-0xfeda0fff] has been reserved
[    0.545181] system 00:04: [mem 0xfeda1000-0xfeda1fff] has been reserved
[    0.545182] system 00:04: [mem 0xfed20000-0xfed7ffff] could not be reserved
[    0.545183] system 00:04: [mem 0xfed90000-0xfed93fff] could not be reserved
[    0.545184] system 00:04: [mem 0xfed45000-0xfed8ffff] could not be reserved
[    0.545185] system 00:04: [mem 0xfee00000-0xfeefffff] could not be reserved
[    0.547366] system 00:05: [io  0x1800-0x18fe] could not be reserved
[    0.547368] system 00:05: [mem 0xfe000000-0xfe01ffff] could not be reserved
[    0.547369] system 00:05: [mem 0xfe04c000-0xfe04ffff] has been reserved
[    0.547370] system 00:05: [mem 0xfe050000-0xfe0affff] has been reserved
[    0.547371] system 00:05: [mem 0xfe0d0000-0xfe0fffff] has been reserved
[    0.547372] system 00:05: [mem 0xfe200000-0xfe7fffff] has been reserved
[    0.547373] system 00:05: [mem 0xff000000-0xffffffff] has been reserved
[    0.547374] system 00:05: [mem 0xfd000000-0xfd68ffff] has been reserved
[    0.547375] system 00:05: [mem 0xfd6b0000-0xfd6cffff] has been reserved
[    0.547375] system 00:05: [mem 0xfd6f0000-0xfdffffff] has been reserved
[    0.547616] system 00:06: [io  0x2000-0x20fe] has been reserved
[    0.547926] pnp: PnP ACPI: found 8 devices
[    0.553014] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.553043] NET: Registered PF_INET protocol family
[    0.553166] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.554140] tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
[    0.554223] TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    0.554349] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[    0.554389] TCP: Hash tables configured (established 131072 bind 65536)
[    0.554445] MPTCP token hash table entries: 16384 (order: 6, 393216 bytes, linear)
[    0.554488] UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
[    0.554515] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
[    0.554548] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.554553] NET: Registered PF_XDP protocol family
[    0.554556] pci 0000:00:07.0: bridge window [io  0x1000-0x0fff] to [bus 02-2c] add_size 1000
[    0.554562] pci 0000:00:02.0: BAR 9: assigned [mem 0x4020000000-0x40ffffffff 64bit pref]
[    0.554566] pci 0000:00:02.0: BAR 7: assigned [mem 0x4010000000-0x4016ffffff 64bit]
[    0.554567] pci 0000:00:07.0: BAR 13: assigned [io  0x4000-0x4fff]
[    0.554569] pci 0000:00:15.0: BAR 0: assigned [mem 0x4017000000-0x4017000fff 64bit]
[    0.554629] pci 0000:00:1f.5: BAR 0: assigned [mem 0x74400000-0x74400fff]
[    0.554640] pci 0000:00:06.0: PCI bridge to [bus 01]
[    0.554648] pci 0000:00:06.0:   bridge window [mem 0x82400000-0x824fffff]
[    0.554657] pci 0000:00:07.0: PCI bridge to [bus 02-2c]
[    0.554658] pci 0000:00:07.0:   bridge window [io  0x4000-0x4fff]
[    0.554661] pci 0000:00:07.0:   bridge window [mem 0x76000000-0x821fffff]
[    0.554663] pci 0000:00:07.0:   bridge window [mem 0x6000000000-0x601bffffff 64bit pref]
[    0.554667] pci 0000:00:1c.0: PCI bridge to [bus 2d]
[    0.554678] pci 0000:00:1c.3: PCI bridge to [bus 2e]
[    0.554681] pci 0000:00:1c.3:   bridge window [mem 0x82300000-0x823fffff]
[    0.554688] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.554689] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.554689] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.554690] pci_bus 0000:00: resource 7 [mem 0x000e0000-0x000fffff window]
[    0.554691] pci_bus 0000:00: resource 8 [mem 0x74400000-0xbfffffff window]
[    0.554691] pci_bus 0000:00: resource 9 [mem 0x4000000000-0x7fffffffff window]
[    0.554692] pci_bus 0000:01: resource 1 [mem 0x82400000-0x824fffff]
[    0.554693] pci_bus 0000:02: resource 0 [io  0x4000-0x4fff]
[    0.554694] pci_bus 0000:02: resource 1 [mem 0x76000000-0x821fffff]
[    0.554694] pci_bus 0000:02: resource 2 [mem 0x6000000000-0x601bffffff 64bit pref]
[    0.554695] pci_bus 0000:2e: resource 1 [mem 0x82300000-0x823fffff]
[    0.555477] PCI: CLS 64 bytes, default 64
[    0.555484] DMAR: Intel-IOMMU force enabled due to platform opt in
[    0.555490] DMAR: No ATSR found
[    0.555490] DMAR: No SATC found
[    0.555492] DMAR: IOMMU feature fl1gp_support inconsistent
[    0.555492] DMAR: IOMMU feature pgsel_inv inconsistent
[    0.555493] DMAR: IOMMU feature nwfs inconsistent
[    0.555493] DMAR: IOMMU feature pds inconsistent
[    0.555494] DMAR: IOMMU feature dit inconsistent
[    0.555494] DMAR: IOMMU feature eafs inconsistent
[    0.555494] DMAR: IOMMU feature prs inconsistent
[    0.555495] DMAR: IOMMU feature nest inconsistent
[    0.555495] DMAR: IOMMU feature mts inconsistent
[    0.555495] DMAR: IOMMU feature sc_support inconsistent
[    0.555496] DMAR: IOMMU feature dev_iotlb_support inconsistent
[    0.555496] DMAR: dmar1: Using Queued invalidation
[    0.555499] DMAR: dmar0: Using Queued invalidation
[    0.555500] DMAR: dmar2: Using Queued invalidation
[    0.555534] Trying to unpack rootfs image as initramfs...
[    0.555619] pci 0000:00:00.0: Adding to iommu group 0
[    0.555624] pci 0000:00:02.0: Adding to iommu group 1
[    0.555629] pci 0000:00:04.0: Adding to iommu group 2
[    0.555640] pci 0000:00:06.0: Adding to iommu group 3
[    0.555646] pci 0000:00:07.0: Adding to iommu group 4
[    0.555650] pci 0000:00:08.0: Adding to iommu group 5
[    0.555654] pci 0000:00:0a.0: Adding to iommu group 6
[    0.555661] pci 0000:00:0d.0: Adding to iommu group 7
[    0.555665] pci 0000:00:0d.2: Adding to iommu group 7
[    0.555672] pci 0000:00:14.0: Adding to iommu group 8
[    0.555677] pci 0000:00:14.2: Adding to iommu group 8
[    0.555681] pci 0000:00:14.3: Adding to iommu group 9
[    0.555687] pci 0000:00:15.0: Adding to iommu group 10
[    0.555693] pci 0000:00:16.0: Adding to iommu group 11
[    0.555702] pci 0000:00:1c.0: Adding to iommu group 12
[    0.555709] pci 0000:00:1c.3: Adding to iommu group 13
[    0.555719] pci 0000:00:1f.0: Adding to iommu group 14
[    0.555723] pci 0000:00:1f.3: Adding to iommu group 14
[    0.555728] pci 0000:00:1f.4: Adding to iommu group 14
[    0.555733] pci 0000:00:1f.5: Adding to iommu group 14
[    0.555744] pci 0000:01:00.0: Adding to iommu group 15
[    0.555752] pci 0000:2e:00.0: Adding to iommu group 16
[    0.555839] DMAR: Intel(R) Virtualization Technology for Directed I/O
[    0.555840] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.555841] software IO TLB: mapped [mem 0x0000000057ba5000-0x000000005bba5000] (64MB)
[    0.555860] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x28680fa287f, max_idle_ns: 440795281151 ns
[    0.555890] clocksource: Switched to clocksource tsc
[    0.555908] platform rtc_cmos: registered platform RTC device (no PNP device found)
[    0.564688] Initialise system trusted keyrings
[    0.564694] Key type blacklist registered
[    0.564718] workingset: timestamp_bits=41 max_order=22 bucket_order=0
[    0.565291] zbud: loaded
[    0.572034] Key type asymmetric registered
[    0.572035] Asymmetric key parser 'x509' registered
[    0.584140] Freeing initrd memory: 13520K
[    0.585603] alg: self-tests for CTR-KDF (hmac(sha256)) passed
[    0.585614] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 242)
[    0.585648] io scheduler mq-deadline registered
[    0.585649] io scheduler kyber registered
[    0.585660] io scheduler bfq registered
[    0.587695] pcieport 0000:00:06.0: PME: Signaling with IRQ 123
[    0.587870] pcieport 0000:00:07.0: PME: Signaling with IRQ 124
[    0.587882] pcieport 0000:00:07.0: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    0.588003] pcieport 0000:00:1c.0: PME: Signaling with IRQ 125
[    0.588157] pcieport 0000:00:1c.3: PME: Signaling with IRQ 126
[    0.588234] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    0.588403] Monitor-Mwait will be used to enter C-1 state
[    0.588423] Monitor-Mwait will be used to enter C-2 state
[    0.588426] Monitor-Mwait will be used to enter C-3 state
[    0.588429] ACPI: \_SB_.PR00: Found 3 idle states
[    0.589027] ACPI: AC: AC Adapter [ADP1] (on-line)
[    0.589065] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:09/PNP0C09:00/PNP0C0D:00/input/input0
[    0.589105] ACPI: button: Lid Switch [LID0]
[    0.589127] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1
[    0.589137] ACPI: button: Sleep Button [SLPB]
[    0.589153] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2
[    0.589169] ACPI: button: Power Button [PWRB]
[    0.589322] smpboot: Estimated ratio of average max frequency by base frequency (times 1024): 1499
[    0.591871] thermal LNXTHERM:00: registered as thermal_zone0
[    0.591872] ACPI: thermal: Thermal Zone [THRM] (60 C)
[    0.592024] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    0.592838] hpet_acpi_add: no address or irqs in _CRS
[    0.592859] Non-volatile memory driver v1.3
[    0.592859] Linux agpgart interface v0.103
[    0.592860] AMD-Vi: AMD IOMMUv2 functionality not available on this system - This is not a bug.
[    0.593063] ACPI: bus type drm_connector registered
[    0.593514] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.593516] ehci-pci: EHCI PCI platform driver
[    0.593521] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    0.593522] ohci-pci: OHCI PCI platform driver
[    0.593526] uhci_hcd: USB Universal Host Controller Interface driver
[    0.593543] usbcore: registered new interface driver usbserial_generic
[    0.593546] usbserial: USB Serial support registered for generic
[    0.593618] rtc_cmos rtc_cmos: RTC can wake from S4
[    0.594439] rtc_cmos rtc_cmos: registered as rtc0
[    0.594605] rtc_cmos rtc_cmos: setting system clock to 2022-04-28T19:52:05 UTC (1651175525)
[    0.594612] rtc_cmos rtc_cmos: alarms up to one month, y3k, 114 bytes nvram
[    0.594949] intel_pstate: Intel P-state driver initializing
[    0.595750] intel_pstate: HWP enabled
[    0.595775] ledtrig-cpu: registered to indicate activity on CPUs
[    0.596017] efifb: probing for efifb
[    0.596022] efifb: framebuffer at 0x4000000000, using 8128k, total 8128k
[    0.596023] efifb: mode is 1920x1080x32, linelength=7680, pages=1
[    0.596024] efifb: scrolling: redraw
[    0.596024] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    0.596039] fbcon: Deferring console take-over
[    0.596040] fb0: EFI VGA frame buffer device
[    0.596053] hid: raw HID events driver (C) Jiri Kosina
[    0.596131] intel_pmc_core INT33A1:00:  initialized
[    0.596160] drop_monitor: Initializing network drop monitor service
[    0.596197] Initializing XFRM netlink socket
[    0.596242] NET: Registered PF_INET6 protocol family
[    0.597627] Segment Routing with IPv6
[    0.597628] RPL Segment Routing with IPv6
[    0.597631] In-situ OAM (IOAM) with IPv6
[    0.597642] NET: Registered PF_PACKET protocol family
[    0.598062] microcode: sig=0x806c1, pf=0x80, revision=0x9a
[    0.598078] microcode: Microcode Update Driver: v2.2.
[    0.598187] resctrl: L2 allocation detected
[    0.598190] IPI shorthand broadcast: enabled
[    0.598198] sched_clock: Marking stable (591536883, 6644440)->(607933713, -9752390)
[    0.598431] registered taskstats version 1
[    0.598605] Loading compiled-in X.509 certificates
[    0.600757] Loaded X.509 cert 'Build time autogenerated kernel key: b95bd5b1e828b0c60c527c660fe5f22c306d645a'
[    0.601134] zswap: loaded using pool lz4/z3fold
[    0.601417] Key type ._fscrypt registered
[    0.601418] Key type .fscrypt registered
[    0.601418] Key type fscrypt-provisioning registered
[    0.602214] PM:   Magic number: 2:448:901
[    0.602223] clocksource clocksource0: hash matches
[    0.602407] RAS: Correctable Errors collector initialized.
[    0.711180] ACPI: battery: Slot [BAT1] (battery present)
[    0.733727] Freeing unused decrypted memory: 2036K
[    0.734002] Freeing unused kernel image (initmem) memory: 1796K
[    0.747756] Write protecting the kernel read-only data: 28672k
[    0.748619] Freeing unused kernel image (text/rodata gap) memory: 2040K
[    0.748990] Freeing unused kernel image (rodata/data gap) memory: 1348K
[    0.757432] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    0.757435] rodata_test: all tests were successful
[    0.757438] Run /init as init process
[    0.757439]   with arguments:
[    0.757440]     /init
[    0.757440]   with environment:
[    0.757441]     HOME=/
[    0.757441]     TERM=linux
[    0.757441]     BOOT_IMAGE=/vmlinuz-linux
[    0.776280] fbcon: Taking over console
[    0.776318] Console: switching to colour frame buffer device 240x67
[    0.822530] rtsx_pci 0000:2e:00.0: enabling device (0000 -> 0002)
[    0.825738] xhci_hcd 0000:00:0d.0: xHCI Host Controller
[    0.825745] xhci_hcd 0000:00:0d.0: new USB bus registered, assigned bus number 1
[    0.826809] xhci_hcd 0000:00:0d.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000200009810
[    0.826943] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.17
[    0.826945] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.826947] usb usb1: Product: xHCI Host Controller
[    0.826948] usb usb1: Manufacturer: Linux 5.17.5-arch1-1 xhci-hcd
[    0.826949] usb usb1: SerialNumber: 0000:00:0d.0
[    0.827084] hub 1-0:1.0: USB hub found
[    0.827092] hub 1-0:1.0: 1 port detected
[    0.827277] xhci_hcd 0000:00:0d.0: xHCI Host Controller
[    0.827280] xhci_hcd 0000:00:0d.0: new USB bus registered, assigned bus number 2
[    0.827282] xhci_hcd 0000:00:0d.0: Host supports USB 3.1 Enhanced SuperSpeed
[    0.827313] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.17
[    0.827314] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.827316] usb usb2: Product: xHCI Host Controller
[    0.827317] usb usb2: Manufacturer: Linux 5.17.5-arch1-1 xhci-hcd
[    0.827318] usb usb2: SerialNumber: 0000:00:0d.0
[    0.827379] hub 2-0:1.0: USB hub found
[    0.827388] hub 2-0:1.0: 4 ports detected
[    0.828090] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    0.828094] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
[    0.828662] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[    0.829192] xhci_hcd 0000:00:14.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000000009810
[    0.829365] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.17
[    0.829367] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.829368] usb usb3: Product: xHCI Host Controller
[    0.829369] usb usb3: Manufacturer: Linux 5.17.5-arch1-1 xhci-hcd
[    0.829370] usb usb3: SerialNumber: 0000:00:14.0
[    0.829435] hub 3-0:1.0: USB hub found
[    0.829457] hub 3-0:1.0: 12 ports detected
[    0.830768] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    0.830771] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
[    0.830773] xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
[    0.830805] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.17
[    0.830807] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.830808] usb usb4: Product: xHCI Host Controller
[    0.830809] usb usb4: Manufacturer: Linux 5.17.5-arch1-1 xhci-hcd
[    0.830811] usb usb4: SerialNumber: 0000:00:14.0
[    0.830870] hub 4-0:1.0: USB hub found
[    0.830884] hub 4-0:1.0: 4 ports detected
[    0.831392] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.831439] serio: i8042 AUX port at 0x60,0x64 irq 12
[    0.831498] nvme 0000:01:00.0: platform quirk: setting simple suspend
[    0.831530] nvme nvme0: pci function 0000:01:00.0
[    0.836385] nvme nvme0: missing or invalid SUBNQN field.
[    0.836396] nvme nvme0: Shutdown timeout set to 10 seconds
[    0.837758] nvme nvme0: 8/0/0 default/read/poll queues
[    0.838726]  nvme0n1: p1 p2 p3 p4 p5 p6 p7 p8
[    0.851183] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
[    1.023245] EXT4-fs (nvme0n1p6): mounted filesystem with ordered data mode. Quota mode: none.
[    1.080880] usb 3-1: new low-speed USB device number 2 using xhci_hcd
[    1.094374] systemd[1]: RTC configured in localtime, applying delta of 180 minutes to system time.
[    1.155145] systemd[1]: systemd 250.4-2-arch running in system mode (+PAM +AUDIT -SELINUX -APPARMOR -IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT -QRENCODE +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK +XKBCOMMON +UTMP -SYSVINIT default-hierarchy=unified)
[    1.171079] systemd[1]: Detected architecture x86-64.
[    1.172528] systemd[1]: Hostname set to <vampyre>.
[    1.225802] usb 3-1: New USB device found, idVendor=045e, idProduct=0040, bcdDevice= 3.00
[    1.225804] usb 3-1: New USB device strings: Mfr=1, Product=3, SerialNumber=0
[    1.225805] usb 3-1: Product: Microsoft 3-Button Mouse with IntelliEye(TM)
[    1.225805] usb 3-1: Manufacturer: Microsoft
[    1.317482] systemd[1]: Queued start job for default target Graphical Interface.
[    1.318434] systemd[1]: Created slice Slice /system/getty.
[    1.318597] systemd[1]: Created slice Slice /system/isw.
[    1.318736] systemd[1]: Created slice Slice /system/modprobe.
[    1.318855] systemd[1]: Created slice Slice /system/systemd-fsck.
[    1.318959] systemd[1]: Created slice User and Session Slice.
[    1.318990] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[    1.319013] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    1.319089] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    1.319109] systemd[1]: Reached target Local Encrypted Volumes.
[    1.319117] systemd[1]: Reached target Login Prompts.
[    1.319124] systemd[1]: Reached target Local Integrity Protected Volumes.
[    1.319140] systemd[1]: Reached target Path Units.
[    1.319151] systemd[1]: Reached target Remote Encrypted Volumes.
[    1.319157] systemd[1]: Reached target Remote File Systems.
[    1.319163] systemd[1]: Reached target Slice Units.
[    1.319177] systemd[1]: Reached target Local Verity Protected Volumes.
[    1.319206] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[    1.319333] systemd[1]: Listening on LVM2 poll daemon socket.
[    1.319947] systemd[1]: Listening on Process Core Dump Socket.
[    1.320013] systemd[1]: Listening on Journal Audit Socket.
[    1.320057] systemd[1]: Listening on Journal Socket (/dev/log).
[    1.320104] systemd[1]: Listening on Journal Socket.
[    1.320159] systemd[1]: Listening on Network Service Netlink Socket.
[    1.320287] systemd[1]: Listening on udev Control Socket.
[    1.320326] systemd[1]: Listening on udev Kernel Socket.
[    1.320363] systemd[1]: Listening on User Database Manager Socket.
[    1.320722] systemd[1]: Mounting Huge Pages File System...
[    1.321028] systemd[1]: Mounting POSIX Message Queue File System...
[    1.321391] systemd[1]: Mounting Kernel Debug File System...
[    1.321722] systemd[1]: Mounting Kernel Trace File System...
[    1.322083] systemd[1]: Starting Create List of Static Device Nodes...
[    1.322496] systemd[1]: Starting Load Kernel Module configfs...
[    1.322826] systemd[1]: Starting Load Kernel Module drm...
[    1.323180] systemd[1]: Starting Load Kernel Module fuse...
[    1.323221] systemd[1]: File System Check on Root Device was skipped because of a failed condition check (ConditionPathIsReadWrite=!/).
[    1.323859] systemd[1]: Starting Journal Service...
[    1.324666] systemd[1]: Starting Load Kernel Modules...
[    1.325002] systemd[1]: Starting Remount Root and Kernel File Systems...
[    1.325108] systemd[1]: Repartition Root Disk was skipped because all trigger condition checks failed.
[    1.325425] systemd[1]: Starting Coldplug All udev Devices...
[    1.326236] systemd[1]: Mounted Huge Pages File System.
[    1.326270] systemd[1]: Mounted POSIX Message Queue File System.
[    1.326297] systemd[1]: Mounted Kernel Debug File System.
[    1.326321] systemd[1]: Mounted Kernel Trace File System.
[    1.326399] systemd[1]: Finished Create List of Static Device Nodes.
[    1.326574] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[    1.326652] systemd[1]: Finished Load Kernel Module configfs.
[    1.326787] systemd[1]: modprobe@drm.service: Deactivated successfully.
[    1.326856] systemd[1]: Finished Load Kernel Module drm.
[    1.327319] systemd[1]: Mounting Kernel Configuration File System...
[    1.327390] EXT4-fs (nvme0n1p6): re-mounted. Quota mode: none.
[    1.327755] systemd[1]: Finished Remount Root and Kernel File Systems.
[    1.327840] systemd[1]: First Boot Wizard was skipped because of a failed condition check (ConditionFirstBoot=yes).
[    1.329371] fuse: init (API version 7.36)
[    1.329597] systemd[1]: Rebuild Hardware Database was skipped because of a failed condition check (ConditionNeedsUpdate=/etc).
[    1.329623] systemd[1]: Platform Persistent Storage Archival was skipped because of a failed condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).
[    1.330099] systemd[1]: Starting Load/Save Random Seed...
[    1.330136] systemd[1]: Create System Users was skipped because of a failed condition check (ConditionNeedsUpdate=/etc).
[    1.330626] systemd[1]: Starting Create Static Device Nodes in /dev...
[    1.331114] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[    1.331193] systemd[1]: Finished Load Kernel Module fuse.
[    1.331274] systemd[1]: Mounted Kernel Configuration File System.
[    1.331814] systemd[1]: Mounting FUSE Control File System...
[    1.332713] systemd[1]: Mounted FUSE Control File System.
[    1.337461] systemd[1]: Finished Load/Save Random Seed.
[    1.337492] audit: type=1130 audit(1651164726.236:2): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-random-seed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    1.337567] systemd[1]: First Boot Complete was skipped because of a failed condition check (ConditionFirstBoot=yes).
[    1.346181] audit: type=1334 audit(1651164726.246:3): prog-id=13 op=LOAD
[    1.346243] audit: type=1334 audit(1651164726.246:4): prog-id=14 op=LOAD
[    1.346266] audit: type=1334 audit(1651164726.246:5): prog-id=15 op=LOAD
[    1.346528] systemd[1]: Starting User Database Manager...
[    1.349256] IPMI message handler: version 39.2
[    1.350871] usb 3-7: new high-speed USB device number 3 using xhci_hcd
[    1.351011] systemd[1]: Started Journal Service.
[    1.351067] audit: type=1130 audit(1651164726.253:6): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    1.352651] ipmi device interface
[    1.354160] systemd-journald[262]: Received client request to flush runtime journal.
[    1.361118] audit: type=1130 audit(1651164726.263:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-userdbd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    1.364528] Guest personality initialized and is inactive
[    1.364553] VMCI host device registered (name=vmci, major=10, minor=124)
[    1.364554] Initialized host personality
[    1.364775] audit: type=1130 audit(1651164726.266:8): 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'
[    1.367105] vmmon: loading out-of-tree module taints kernel.
[    1.367133] vmmon: module verification failed: signature and/or required key missing - tainting kernel
[    1.367961] /dev/vmmon[263]: Module vmmon: registered as misc device
[    1.367963] /dev/vmmon[263]: Using tsc_khz as TSC frequency: 2803200
[    1.367964] /dev/vmmon[263]: Module vmmon: initialized
[    1.368362] audit: type=1130 audit(1651164726.269:9): 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'
[    1.374429] audit: type=1130 audit(1651164726.276:10): 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'
[    1.482700] soc_button_array ACPI0011:00: Unknown button index 0 upage 01 usage c6, ignoring
[    1.497262] Userspace governor deprecated: use thermal netlink notification instead
[    1.499480] input: Intel HID events as /devices/platform/INTC1051:00/input/input5
[    1.499618] intel-hid INTC1051:00: platform supports 5 button array
[    1.499936] input: Intel HID 5 button array as /devices/platform/INTC1051:00/input/input6
[    1.502328] usb 3-7: New USB device found, idVendor=5986, idProduct=211c, bcdDevice= 3.11
[    1.502332] usb 3-7: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.502334] usb 3-7: Product: HD Webcam
[    1.502335] usb 3-7: Manufacturer: SunplusIT Inc
[    1.507821] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    1.512326] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    1.583283] wmi_bus wmi_bus-PNP0C14:00: WQAK data block query control method not found
[    1.583288] wmi_bus wmi_bus-PNP0C14:00: WQAL data block query control method not found
[    1.583491] acpi PNP0C14:02: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:01)
[    1.630922] usb 3-10: new full-speed USB device number 4 using xhci_hcd
[    1.751339] EDAC igen6: v2.5
[    1.775705] proc_thermal 0000:00:04.0: enabling device (0000 -> 0002)
[    1.776392] intel_rapl_common: Found RAPL domain package
[    1.779118] usb 3-10: New USB device found, idVendor=8087, idProduct=0026, bcdDevice= 0.02
[    1.779120] usb 3-10: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    1.873343] ACPI: bus type thunderbolt registered
[    1.873378] thunderbolt 0000:00:0d.2: enabling device (0000 -> 0002)
[    1.882028] Adding 4194300k swap on /dev/nvme0n1p8.  Priority:-2 extents:1 across:4194300k SSDscFS
[    1.891250] i915 0000:00:02.0: [drm] VT-d active for gfx access
[    1.891253] checking generic (4000000000 7f0000) vs hw (601c000000 1000000)
[    1.891254] checking generic (4000000000 7f0000) vs hw (4000000000 10000000)
[    1.891255] fb0: switching to i915 from EFI VGA
[    1.891307] Console: switching to colour dummy device 80x25
[    1.891339] i915 0000:00:02.0: vgaarb: deactivate vga console
[    1.891371] i915 0000:00:02.0: [drm] Transparent Hugepage mode 'huge=within_size'
[    1.893016] i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
[    1.896739] i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/tgl_dmc_ver2_12.bin (v2.12)
[    1.910916] intel-lpss 0000:00:15.0: enabling device (0004 -> 0006)
[    1.911263] idma64 idma64.0: Found Intel integrated DMA 64-bit
[    1.977136] mei_me 0000:00:16.0: enabling device (0000 -> 0002)
[    1.979725] Intel(R) Wireless WiFi driver for Linux
[    1.979773] iwlwifi 0000:00:14.3: enabling device (0000 -> 0002)
[    1.981256] iwlwifi 0000:00:14.3: Direct firmware load for iwlwifi-QuZ-a0-hr-b0-69.ucode failed with error -2
[    2.004356] input: PNP0C50:00 04F3:30AA Mouse as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-9/i2c-PNP0C50:00/0018:04F3:30AA.0001/input/input7
[    2.004447] input: PNP0C50:00 04F3:30AA Touchpad as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-9/i2c-PNP0C50:00/0018:04F3:30AA.0001/input/input9
[    2.004569] hid-generic 0018:04F3:30AA.0001: input,hidraw0: I2C HID v1.00 Mouse [PNP0C50:00 04F3:30AA] on i2c-PNP0C50:00
[    2.007587] iwlwifi 0000:00:14.3: api flags index 2 larger than supported by driver
[    2.007595] iwlwifi 0000:00:14.3: TLV_FW_FSEQ_VERSION: FSEQ Version: 89.3.35.37
[    2.007742] iwlwifi 0000:00:14.3: loaded firmware version 68.01d30b0c.0 QuZ-a0-hr-b0-68.ucode op_mode iwlmvm
[    2.016604] i915 0000:00:02.0: [drm] Protected Xe Path (PXP) protected content support initialized
[    2.025750] [drm] Initialized i915 1.6.0 20201103 for 0000:00:02.0 on minor 0
[    2.027376] ACPI: video: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    2.027778] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input10
[    2.029604] fbcon: i915drmfb (fb0) is primary device
[    2.041680] Console: switching to colour frame buffer device 240x67
[    2.062394] i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
[    2.068395] input: PC Speaker as /devices/platform/pcspkr/input/input12
[    2.155314] resource sanity check: requesting [mem 0xfedc0000-0xfedcdfff], which spans more than pnp 00:04 [mem 0xfedc0000-0xfedc7fff]
[    2.155325] caller __uncore_imc_init_box+0xc9/0x100 [intel_uncore] mapping multiple BARs
[    2.156332] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[    2.156516] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[    2.169067] i2c i2c-15: 2/2 memory slots populated (from DMI)
[    2.169805] i2c i2c-15: Successfully instantiated SPD at 0x50
[    2.175571] intel-spi 0000:00:1f.5: mx25l25635e (32768 Kbytes)
[    2.175912] cryptd: max_cpu_qlen set to 1000
[    2.179717] Creating 1 MTD partitions on "0000:00:1f.5":
[    2.179720] 0x000000000000-0x000002000000 : "BIOS"
[    2.254756] AVX2 version of gcm_enc/dec engaged.
[    2.254910] AES CTR mode by8 optimization enabled
[    2.267464] iwlwifi 0000:00:14.3: Detected Intel(R) Wi-Fi 6 AX201 160MHz, REV=0x351
[    2.267589] thermal thermal_zone5: failed to read out thermal zone (-61)
[    2.331461] EXT4-fs (nvme0n1p7): mounted filesystem with ordered data mode. Quota mode: none.
[    2.365766] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040100
[    2.365871] snd_hda_intel 0000:00:1f.3: Digital mics found on Skylake+ platform, using SOF driver
[    2.371165] input: gpio-keys as /devices/platform/ACPI0011:00/gpio-keys.1.auto/input/input13
[    2.393246] iwlwifi 0000:00:14.3: Detected RF HR B3, rfid=0x10a100
[    2.438541] input: MSI WMI hotkeys as /devices/virtual/input/input14
[    2.440788] intel_rapl_msr: PL4 support detected.
[    2.440808] intel_rapl_common: Found RAPL domain package
[    2.440810] intel_rapl_common: Found RAPL domain core
[    2.440811] intel_rapl_common: Found RAPL domain uncore
[    2.440813] intel_rapl_common: Found RAPL domain psys
[    2.458782] mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_component_ops [i915])
[    2.459341] iwlwifi 0000:00:14.3: base HW address: 94:e7:0b:0e:a7:b3
[    2.463422] mei_pxp 0000:00:16.0-fbf6fcf1-96cf-4e2e-a6a6-1bab8cbe36b1: bound 0000:00:02.0 (ops i915_pxp_tee_component_ops [i915])
[    2.497716] intel_tcc_cooling: Programmable TCC Offset detected
[    2.515861] iwlwifi 0000:00:14.3 wlo1: renamed from wlan0
[    2.519515] input: PNP0C50:00 04F3:30AA Mouse as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-9/i2c-PNP0C50:00/0018:04F3:30AA.0001/input/input15
[    2.519583] input: PNP0C50:00 04F3:30AA Touchpad as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-9/i2c-PNP0C50:00/0018:04F3:30AA.0001/input/input17
[    2.519611] hid-multitouch 0018:04F3:30AA.0001: input,hidraw0: I2C HID v1.00 Mouse [PNP0C50:00 04F3:30AA] on i2c-PNP0C50:00
[    2.531102] iTCO_vendor_support: vendor-support=0
[    2.535466] ee1004 15-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
[    2.539310] iTCO_wdt iTCO_wdt: Found a Intel PCH TCO device (Version=6, TCOBASE=0x0400)
[    2.539541] mousedev: PS/2 mouse device common for all mice
[    2.539607] iTCO_wdt iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[    2.595470] psmouse serio1: elantech: assuming hardware version 4 (with firmware version 0x4d5f01)
[    2.605756] psmouse serio1: elantech: Synaptics capabilities query result 0x11, 0x15, 0x0d.
[    2.616288] psmouse serio1: elantech: Elan sample query result 03, c0, 76
[    2.674875] input: ETPS/2 Elantech Touchpad as /devices/platform/i8042/serio1/input/input11
[    2.713630] sof-audio-pci-intel-tgl 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040100
[    2.713716] sof-audio-pci-intel-tgl 0000:00:1f.3: Digital mics found on Skylake+ platform, using SOF driver
[    2.713751] sof-audio-pci-intel-tgl 0000:00:1f.3: enabling device (0000 -> 0002)
[    2.713966] sof-audio-pci-intel-tgl 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if 0x040100
[    2.714049] sof-audio-pci-intel-tgl 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[    2.720947] sof-audio-pci-intel-tgl 0000:00:1f.3: use msi interrupt mode
[    2.754462] sof-audio-pci-intel-tgl 0000:00:1f.3: hda codecs found, mask 5
[    2.754465] sof-audio-pci-intel-tgl 0000:00:1f.3: using HDA machine driver skl_hda_dsp_generic now
[    2.754469] sof-audio-pci-intel-tgl 0000:00:1f.3: DMICs detected in NHLT tables: 2
[    2.756485] sof-audio-pci-intel-tgl 0000:00:1f.3: Firmware info: version 2:1:1-3964a
[    2.756487] sof-audio-pci-intel-tgl 0000:00:1f.3: Firmware: ABI 3:21:0 Kernel ABI 3:18:0
[    2.756488] sof-audio-pci-intel-tgl 0000:00:1f.3: warn: FW ABI is more recent than kernel
[    2.756490] sof-audio-pci-intel-tgl 0000:00:1f.3: unknown sof_ext_man header type 3 size 0x30
[    2.852966] sof-audio-pci-intel-tgl 0000:00:1f.3: Firmware info: version 2:1:1-3964a
[    2.852972] sof-audio-pci-intel-tgl 0000:00:1f.3: Firmware: ABI 3:21:0 Kernel ABI 3:18:0
[    2.852975] sof-audio-pci-intel-tgl 0000:00:1f.3: warn: FW ABI is more recent than kernel
[    2.878579] sof-audio-pci-intel-tgl 0000:00:1f.3: Topology: ABI 3:21:0 Kernel ABI 3:18:0
[    2.878582] sof-audio-pci-intel-tgl 0000:00:1f.3: warn: topology ABI is more recent than kernel
[    2.878783] skl_hda_dsp_generic skl_hda_dsp_generic: ASoC: Parent card not yet available, widget card binding deferred
[    2.903521] snd_hda_codec_realtek ehdaudio0D0: autoconfig for ALC233: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[    2.903523] snd_hda_codec_realtek ehdaudio0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    2.903524] snd_hda_codec_realtek ehdaudio0D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[    2.903525] snd_hda_codec_realtek ehdaudio0D0:    mono: mono_out=0x0
[    2.903525] snd_hda_codec_realtek ehdaudio0D0:    inputs:
[    2.903526] snd_hda_codec_realtek ehdaudio0D0:      Mic=0x19
[    2.956606] snd_hda_codec_realtek ehdaudio0D0: ASoC: sink widget AIF1TX overwritten
[    2.956611] snd_hda_codec_realtek ehdaudio0D0: ASoC: source widget AIF1RX overwritten
[    2.956687] skl_hda_dsp_generic skl_hda_dsp_generic: ASoC: sink widget hifi3 overwritten
[    2.956690] skl_hda_dsp_generic skl_hda_dsp_generic: ASoC: sink widget hifi2 overwritten
[    2.956692] skl_hda_dsp_generic skl_hda_dsp_generic: ASoC: sink widget hifi1 overwritten
[    2.956695] skl_hda_dsp_generic skl_hda_dsp_generic: ASoC: source widget Codec Output Pin1 overwritten
[    2.956696] skl_hda_dsp_generic skl_hda_dsp_generic: ASoC: sink widget Codec Input Pin1 overwritten
[    2.956700] skl_hda_dsp_generic skl_hda_dsp_generic: ASoC: sink widget Analog Codec Playback overwritten
[    2.956702] skl_hda_dsp_generic skl_hda_dsp_generic: ASoC: sink widget Digital Codec Playback overwritten
[    2.956705] skl_hda_dsp_generic skl_hda_dsp_generic: ASoC: sink widget Alt Analog Codec Playback overwritten
[    2.956709] skl_hda_dsp_generic skl_hda_dsp_generic: ASoC: source widget Analog Codec Capture overwritten
[    2.956711] skl_hda_dsp_generic skl_hda_dsp_generic: ASoC: source widget Digital Codec Capture overwritten
[    2.956714] skl_hda_dsp_generic skl_hda_dsp_generic: ASoC: source widget Alt Analog Codec Capture overwritten
[    2.956721] skl_hda_dsp_generic skl_hda_dsp_generic: hda_dsp_hdmi_build_controls: no PCM in topology for HDMI converter 3
[    2.971503] mc: Linux media interface: v0.10
[    2.973134] input: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM) as /devices/pci0000:00/0000:00:14.0/usb3/3-1/3-1:1.0/0003:045E:0040.0002/input/input23
[    2.973199] hid-generic 0003:045E:0040.0002: input,hidraw1: USB HID v1.10 Mouse [Microsoft Microsoft 3-Button Mouse with IntelliEye(TM)] on usb-0000:00:14.0-1/input0
[    2.973228] usbcore: registered new interface driver usbhid
[    2.973229] usbhid: USB HID core driver
[    2.976982] input: sof-hda-dsp Mic as /devices/pci0000:00/0000:00:1f.3/skl_hda_dsp_generic/sound/card0/input18
[    2.977028] input: sof-hda-dsp Headphone as /devices/pci0000:00/0000:00:1f.3/skl_hda_dsp_generic/sound/card0/input19
[    2.977073] input: sof-hda-dsp HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/skl_hda_dsp_generic/sound/card0/input20
[    2.977104] input: sof-hda-dsp HDMI/DP,pcm=4 as /devices/pci0000:00/0000:00:1f.3/skl_hda_dsp_generic/sound/card0/input21
[    2.977132] input: sof-hda-dsp HDMI/DP,pcm=5 as /devices/pci0000:00/0000:00:1f.3/skl_hda_dsp_generic/sound/card0/input22
[    2.980234] videodev: Linux video capture interface: v2.00
[    3.016823] vmnet1: Current addr:  00 50 56 c0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[    3.016827] vmnet1: Expected addr: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[    3.016828] ------------[ cut here ]------------
[    3.016829] netdevice: vmnet1: Incorrect netdev->dev_addr
[    3.016839] WARNING: CPU: 2 PID: 600 at net/core/dev_addr_lists.c:517 dev_addr_check.cold+0x43/0x7d
[    3.016845] Modules linked in: videobuf2_v4l2 videobuf2_common videodev mc usbhid snd_soc_skl_hda_dsp snd_soc_intel_hda_dsp_common snd_soc_hdac_hdmi snd_hda_codec_hdmi snd_hda_codec_realtek snd_hda_codec_generic snd_soc_dmic snd_sof_pci_intel_tgl snd_sof_intel_hda_common soundwire_intel soundwire_generic_allocation soundwire_cadence snd_sof_intel_hda snd_sof_pci snd_sof_xtensa_dsp snd_sof snd_soc_hdac_hda snd_hda_ext_core snd_soc_acpi_intel_match joydev snd_soc_acpi mousedev iTCO_wdt intel_pmc_bxt iTCO_vendor_support ee1004 soundwire_bus intel_tcc_cooling ledtrig_audio x86_pkg_temp_thermal intel_powerclamp hid_multitouch snd_soc_core mei_pxp mei_hdcp coretemp snd_compress pmt_telemetry intel_rapl_msr pmt_class vmnet(OE) wmi_bmof msi_wmi kvm_intel ac97_bus snd_pcm_dmaengine kvm gpio_keys snd_hda_intel snd_intel_dspcfg irqbypass snd_intel_sdw_acpi crct10dif_pclmul crc32_pclmul snd_hda_codec ghash_clmulni_intel aesni_intel iwlmvm snd_hda_core crypto_simd snd_hwdep cryptd intel_spi_pci
[    3.016872]  snd_pcm intel_spi intel_cstate spi_nor i2c_i801 mac80211 intel_uncore snd_timer pcspkr psmouse mtd i2c_smbus snd libarc4 soundcore mei_me iwlwifi intel_lpss_pci iwlmei intel_lpss mei idma64 vfat fat thunderbolt i915 processor_thermal_device_pci_legacy processor_thermal_device processor_thermal_rfim processor_thermal_mbox processor_thermal_rapl ttm intel_rapl_common intel_vsec intel_soc_dts_iosf intel_gtt igen6_edac ip6t_REJECT i2c_hid_acpi mac_hid i2c_hid nf_reject_ipv6 tpm_crb xt_hl wmi tpm_tis int3403_thermal ip6t_rt int340x_thermal_zone tpm_tis_core video tpm intel_hid rng_core cfg80211 ipt_REJECT sparse_keymap nf_reject_ipv4 int3400_thermal soc_button_array acpi_thermal_rel acpi_tad acpi_pad rfkill xt_LOG nf_log_syslog xt_multiport xt_limit xt_addrtype xt_tcpudp xt_conntrack nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 libcrc32c ip6table_filter ip6_tables iptable_filter vmmon(OE) vmw_vmci ec_sys ipmi_devintf ipmi_msghandler sg crypto_user fuse bpf_preload ip_tables
[    3.016902]  x_tables ext4 crc32c_generic crc16 mbcache jbd2 rtsx_pci_sdmmc serio_raw mmc_core atkbd libps2 nvme i8042 xhci_pci crc32c_intel nvme_core rtsx_pci xhci_pci_renesas serio
[    3.016912] CPU: 2 PID: 600 Comm: vmware-networks Tainted: G           OE     5.17.5-arch1-1 #1 bff91b48f6c3cb8d3bfd68f772f9c0a96e684769
[    3.016915] Hardware name: Micro-Star International Co., Ltd. Modern 15 A11M/MS-1552, BIOS E1552IMS.118 07/30/2021
[    3.016916] RIP: 0010:dev_addr_check.cold+0x43/0x7d
[    3.016918] Code: 01 e8 03 0c fb ff 0f 0b 49 c7 c4 cb f2 8c 96 80 3b 00 75 30 48 c7 c6 d6 f2 8c 96 4c 89 e2 48 c7 c7 40 dd 95 96 e8 df 0b fb ff <0f> 0b e9 be 0a dc ff 49 c7 c4 cb f2 8c 96 eb d5 4c 8b 24 d5 80 c4
[    3.016920] RSP: 0018:ffffb765c0d93b10 EFLAGS: 00010282
[    3.016922] RAX: 0000000000000000 RBX: ffff963685abf000 RCX: 0000000000000027
[    3.016923] RDX: ffff9639fbaa16e8 RSI: 0000000000000001 RDI: ffff9639fbaa16e0
[    3.016924] RBP: ffffffffc136a3e0 R08: 0000000000000000 R09: ffffb765c0d93940
[    3.016925] R10: ffffb765c0d93938 R11: ffffffff970cab88 R12: ffffffff968931e1
[    3.016926] R13: 0000000000000000 R14: 0000000000000001 R15: 0000000000000000
[    3.016927] FS:  00007f513de8a4c0(0000) GS:ffff9639fba80000(0000) knlGS:0000000000000000
[    3.016928] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[    3.016930] CR2: 00007ffc64cb3fe8 CR3: 0000000107360006 CR4: 0000000000770ee0
[    3.016931] PKRU: 55555554
[    3.016932] Call Trace:
[    3.016934]  <TASK>
[    3.016936]  __dev_open+0x50/0x1c0
[    3.016940]  __dev_change_flags+0x1d7/0x240
[    3.016942]  ? __rtnl_unlock+0x24/0x50
[    3.016945]  dev_change_flags+0x21/0x60
[    3.016946]  devinet_ioctl+0x608/0x820
[    3.016949]  ? _copy_from_user+0x28/0x60
[    3.016953]  inet_ioctl+0x1b1/0x1e0
[    3.016956]  sock_do_ioctl+0x7f/0x130
[    3.016960]  sock_ioctl+0x12a/0x340
[    3.016961]  ? put_user_ifreq+0x48/0x60
[    3.016963]  __x64_sys_ioctl+0x7f/0xb0
[    3.016968]  do_syscall_64+0x59/0x80
[    3.016970]  ? syscall_exit_to_user_mode+0x23/0x40
[    3.016972]  ? do_syscall_64+0x69/0x80
[    3.016973]  ? exc_page_fault+0x72/0x170
[    3.016974]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[    3.016976] RIP: 0033:0x7f513df92e6f
[    3.016977] Code: 00 48 89 44 24 18 31 c0 48 8d 44 24 60 c7 04 24 10 00 00 00 48 89 44 24 08 48 8d 44 24 20 48 89 44 24 10 b8 10 00 00 00 0f 05 <41> 89 c0 3d 00 f0 ff ff 77 1f 48 8b 44 24 18 64 48 2b 04 25 28 00
[    3.016978] RSP: 002b:00007ffc64cb4990 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[    3.016979] RAX: ffffffffffffffda RBX: 00007ffc64cb4a40 RCX: 00007f513df92e6f
[    3.016980] RDX: 00007ffc64cb4a40 RSI: 0000000000008914 RDI: 0000000000000005
[    3.016981] RBP: 0000000000000005 R08: 00007ffc64cb4a00 R09: 0000000000000004
[    3.016981] R10: 0000000000000019 R11: 0000000000000246 R12: 00007ffc64cb4a00
[    3.016982] R13: 00007ffc64cb4a10 R14: 00007ffc64cb4a20 R15: 0000000000000000
[    3.016984]  </TASK>
[    3.016984] ---[ end trace 0000000000000000 ]---
[    3.023090] [UFW BLOCK] IN=vmnet1 OUT= MAC= SRC=192.168.30.1 DST=224.0.0.252 LEN=53 TOS=0x00 PREC=0x00 TTL=255 ID=62899 PROTO=UDP SPT=5355 DPT=5355 LEN=33 
[    3.038518] vmnet8: Current addr:  00 50 56 c0 00 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[    3.038522] vmnet8: Expected addr: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[    3.038523] ------------[ cut here ]------------
[    3.038524] netdevice: vmnet8: Incorrect netdev->dev_addr
[    3.038533] WARNING: CPU: 4 PID: 600 at net/core/dev_addr_lists.c:517 dev_addr_check.cold+0x43/0x7d
[    3.038540] Modules linked in: uvcvideo(+) videobuf2_vmalloc pcc_cpufreq(-) acpi_cpufreq(-) ecdh_generic videobuf2_memops videobuf2_v4l2 videobuf2_common videodev mc usbhid snd_soc_skl_hda_dsp snd_soc_intel_hda_dsp_common snd_soc_hdac_hdmi snd_hda_codec_hdmi snd_hda_codec_realtek snd_hda_codec_generic snd_soc_dmic snd_sof_pci_intel_tgl snd_sof_intel_hda_common soundwire_intel soundwire_generic_allocation soundwire_cadence snd_sof_intel_hda snd_sof_pci snd_sof_xtensa_dsp snd_sof snd_soc_hdac_hda snd_hda_ext_core snd_soc_acpi_intel_match joydev snd_soc_acpi mousedev iTCO_wdt intel_pmc_bxt iTCO_vendor_support ee1004 soundwire_bus intel_tcc_cooling ledtrig_audio x86_pkg_temp_thermal intel_powerclamp hid_multitouch snd_soc_core mei_pxp mei_hdcp coretemp snd_compress pmt_telemetry intel_rapl_msr pmt_class vmnet(OE) wmi_bmof msi_wmi kvm_intel ac97_bus snd_pcm_dmaengine kvm gpio_keys snd_hda_intel snd_intel_dspcfg irqbypass snd_intel_sdw_acpi crct10dif_pclmul crc32_pclmul snd_hda_codec
[    3.038579]  ghash_clmulni_intel aesni_intel iwlmvm snd_hda_core crypto_simd snd_hwdep cryptd intel_spi_pci snd_pcm intel_spi intel_cstate spi_nor i2c_i801 mac80211 intel_uncore snd_timer pcspkr psmouse mtd i2c_smbus snd libarc4 soundcore mei_me iwlwifi intel_lpss_pci iwlmei intel_lpss mei idma64 vfat fat thunderbolt i915 processor_thermal_device_pci_legacy processor_thermal_device processor_thermal_rfim processor_thermal_mbox processor_thermal_rapl ttm intel_rapl_common intel_vsec intel_soc_dts_iosf intel_gtt igen6_edac ip6t_REJECT i2c_hid_acpi mac_hid i2c_hid nf_reject_ipv6 tpm_crb xt_hl wmi tpm_tis int3403_thermal ip6t_rt int340x_thermal_zone tpm_tis_core video tpm intel_hid rng_core cfg80211 ipt_REJECT sparse_keymap nf_reject_ipv4 int3400_thermal soc_button_array acpi_thermal_rel acpi_tad acpi_pad rfkill xt_LOG nf_log_syslog xt_multiport xt_limit xt_addrtype xt_tcpudp xt_conntrack nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 libcrc32c ip6table_filter ip6_tables iptable_filter
[    3.038624]  vmmon(OE) vmw_vmci ec_sys ipmi_devintf ipmi_msghandler sg crypto_user fuse bpf_preload ip_tables x_tables ext4 crc32c_generic crc16 mbcache jbd2 rtsx_pci_sdmmc serio_raw mmc_core atkbd libps2 nvme i8042 xhci_pci crc32c_intel nvme_core rtsx_pci xhci_pci_renesas serio
[    3.038641] CPU: 4 PID: 600 Comm: vmware-networks Tainted: G        W  OE     5.17.5-arch1-1 #1 bff91b48f6c3cb8d3bfd68f772f9c0a96e684769
[    3.038643] Hardware name: Micro-Star International Co., Ltd. Modern 15 A11M/MS-1552, BIOS E1552IMS.118 07/30/2021
[    3.038644] RIP: 0010:dev_addr_check.cold+0x43/0x7d
[    3.038647] Code: 01 e8 03 0c fb ff 0f 0b 49 c7 c4 cb f2 8c 96 80 3b 00 75 30 48 c7 c6 d6 f2 8c 96 4c 89 e2 48 c7 c7 40 dd 95 96 e8 df 0b fb ff <0f> 0b e9 be 0a dc ff 49 c7 c4 cb f2 8c 96 eb d5 4c 8b 24 d5 80 c4
[    3.038648] RSP: 0018:ffffb765c0d93b70 EFLAGS: 00010282
[    3.038650] RAX: 0000000000000000 RBX: ffff96368134c000 RCX: 0000000000000027
[    3.038651] RDX: ffff9639fbb216e8 RSI: 0000000000000001 RDI: ffff9639fbb216e0
[    3.038652] RBP: ffffffffc136a3e0 R08: 0000000000000000 R09: ffffb765c0d939a0
[    3.038653] R10: ffffb765c0d93998 R11: ffffffff970cab88 R12: ffffffff968931e1
[    3.038654] R13: 0000000000000000 R14: 0000000000000001 R15: 0000000000000000
[    3.038656] FS:  00007f513de8a4c0(0000) GS:ffff9639fbb00000(0000) knlGS:0000000000000000
[    3.038657] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[    3.038658] CR2: 00007ffc64cb3fe8 CR3: 0000000107360003 CR4: 0000000000770ee0
[    3.038660] PKRU: 55555554
[    3.038661] Call Trace:
[    3.038663]  <TASK>
[    3.038665]  __dev_open+0x50/0x1c0
[    3.038669]  __dev_change_flags+0x1d7/0x240
[    3.038671]  ? __inet_insert_ifa+0x213/0x2f0
[    3.038674]  dev_change_flags+0x21/0x60
[    3.038676]  devinet_ioctl+0x608/0x820
[    3.038678]  ? _copy_from_user+0x28/0x60
[    3.038681]  inet_ioctl+0x1b1/0x1e0
[    3.038684]  sock_do_ioctl+0x7f/0x130
[    3.038687]  sock_ioctl+0x12a/0x340
[    3.038690]  __x64_sys_ioctl+0x7f/0xb0
[    3.038694]  do_syscall_64+0x59/0x80
[    3.038697]  ? syscall_exit_to_user_mode+0x23/0x40
[    3.038699]  ? do_syscall_64+0x69/0x80
[    3.038700]  ? do_syscall_64+0x69/0x80
[    3.038701]  ? exc_page_fault+0x72/0x170
[    3.038703]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[    3.038707] RIP: 0033:0x7f513df92e6f
[    3.038709] Code: 00 48 89 44 24 18 31 c0 48 8d 44 24 60 c7 04 24 10 00 00 00 48 89 44 24 08 48 8d 44 24 20 48 89 44 24 10 b8 10 00 00 00 0f 05 <41> 89 c0 3d 00 f0 ff ff 77 1f 48 8b 44 24 18 64 48 2b 04 25 28 00
[    3.038710] RSP: 002b:00007ffc64cb4990 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[    3.038712] RAX: ffffffffffffffda RBX: 00007ffc64cb4a40 RCX: 00007f513df92e6f
[    3.038713] RDX: 00007ffc64cb4a40 RSI: 0000000000008914 RDI: 0000000000000005
[    3.038714] RBP: 0000000000000005 R08: 00007ffc64cb4a00 R09: 0000000000000004
[    3.038715] R10: 0000000000000019 R11: 0000000000000246 R12: 00007ffc64cb4a00
[    3.038716] R13: 00007ffc64cb4a10 R14: 00007ffc64cb4a20 R15: 0000000000000000
[    3.038718]  </TASK>
[    3.038719] ---[ end trace 0000000000000000 ]---
[    3.038918] usb 3-7: Found UVC 1.00 device HD Webcam (5986:211c)
[    3.045280] Bluetooth: Core ver 2.22
[    3.045297] NET: Registered PF_BLUETOOTH protocol family
[    3.045297] Bluetooth: HCI device and connection manager initialized
[    3.045299] Bluetooth: HCI socket layer initialized
[    3.045301] Bluetooth: L2CAP socket layer initialized
[    3.045302] Bluetooth: SCO socket layer initialized
[    3.056861] input: HD Webcam: HD Webcam as /devices/pci0000:00/0000:00:14.0/usb3/3-7/3-7:1.0/input/input24
[    3.056902] usbcore: registered new interface driver uvcvideo
[    3.127729] usbcore: registered new interface driver btusb
[    3.128620] Bluetooth: hci0: Bootloader revision 0.4 build 0 week 30 2018
[    3.129610] Bluetooth: hci0: Device revision is 2
[    3.129615] Bluetooth: hci0: Secure boot is enabled
[    3.129620] Bluetooth: hci0: OTP lock is enabled
[    3.129624] Bluetooth: hci0: API lock is enabled
[    3.129627] Bluetooth: hci0: Debug lock is disabled
[    3.129631] Bluetooth: hci0: Minimum firmware build 1 week 10 2014
[    3.153679] Bluetooth: hci0: Found device firmware: intel/ibt-19-0-4.sfi
[    3.153736] Bluetooth: hci0: Boot Address: 0x24800
[    3.153737] Bluetooth: hci0: Firmware Version: 50-12.22
[    3.198368] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    3.198372] Bluetooth: BNEP filters: protocol multicast
[    3.198376] Bluetooth: BNEP socket layer initialized
[    3.198578] [UFW BLOCK] IN=vmnet8 OUT= MAC= SRC=192.168.240.1 DST=224.0.0.252 LEN=53 TOS=0x00 PREC=0x00 TTL=255 ID=6891 PROTO=UDP SPT=5355 DPT=5355 LEN=33 
[    3.198621] [UFW BLOCK] IN=vmnet1 OUT= MAC= SRC=192.168.30.1 DST=224.0.0.252 LEN=53 TOS=0x00 PREC=0x00 TTL=255 ID=62937 PROTO=UDP SPT=5355 DPT=5355 LEN=33 
[    3.548551] [UFW BLOCK] IN=vmnet8 OUT= MAC= SRC=192.168.240.1 DST=224.0.0.252 LEN=53 TOS=0x00 PREC=0x00 TTL=255 ID=6950 PROTO=UDP SPT=5355 DPT=5355 LEN=33 
[    3.548571] [UFW BLOCK] IN=vmnet1 OUT= MAC= SRC=192.168.30.1 DST=224.0.0.252 LEN=53 TOS=0x00 PREC=0x00 TTL=255 ID=63023 PROTO=UDP SPT=5355 DPT=5355 LEN=33 
[    3.998576] [UFW BLOCK] IN=vmnet8 OUT= MAC= SRC=192.168.240.1 DST=224.0.0.252 LEN=53 TOS=0x00 PREC=0x00 TTL=255 ID=7067 PROTO=UDP SPT=5355 DPT=5355 LEN=33 
[    4.211369] [UFW BLOCK] IN=vmnet1 OUT= MAC= SRC=fe80:0000:0000:0000:0250:56ff:fec0:0001 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=73 TC=0 HOPLIMIT=255 FLOWLBL=564516 PROTO=UDP SPT=5355 DPT=5355 LEN=33 
[    4.400581] [UFW BLOCK] IN=vmnet8 OUT= MAC= SRC=fe80:0000:0000:0000:0250:56ff:fec0:0008 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=73 TC=0 HOPLIMIT=255 FLOWLBL=6624 PROTO=UDP SPT=5355 DPT=5355 LEN=33 
[    4.400623] [UFW BLOCK] IN=vmnet1 OUT= MAC= SRC=fe80:0000:0000:0000:0250:56ff:fec0:0001 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=73 TC=0 HOPLIMIT=255 FLOWLBL=564516 PROTO=UDP SPT=5355 DPT=5355 LEN=33 
[    4.750575] [UFW BLOCK] IN=vmnet8 OUT= MAC= SRC=fe80:0000:0000:0000:0250:56ff:fec0:0008 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=73 TC=0 HOPLIMIT=255 FLOWLBL=6624 PROTO=UDP SPT=5355 DPT=5355 LEN=33 
[    4.750604] [UFW BLOCK] IN=vmnet1 OUT= MAC= SRC=fe80:0000:0000:0000:0250:56ff:fec0:0001 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=73 TC=0 HOPLIMIT=255 FLOWLBL=564516 PROTO=UDP SPT=5355 DPT=5355 LEN=33 
[    4.976423] Bluetooth: hci0: Waiting for firmware download to complete
[    4.976532] Bluetooth: hci0: Firmware loaded in 1780128 usecs
[    4.976585] Bluetooth: hci0: Waiting for device to boot
[    4.991542] Bluetooth: hci0: Device booted in 14642 usecs
[    4.993814] Bluetooth: hci0: Found Intel DDC parameters: intel/ibt-19-0-4.ddc
[    4.995546] Bluetooth: hci0: Applying Intel DDC parameters completed
[    4.996567] Bluetooth: hci0: Firmware revision 0.4 build 50 week 12 2022
[    5.076987] NET: Registered PF_ALG protocol family
[    5.085334] [UFW BLOCK] IN=vmnet8 OUT= MAC= SRC=fe80:0000:0000:0000:0250:56ff:fec0:0008 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=73 TC=0 HOPLIMIT=255 FLOWLBL=6624 PROTO=UDP SPT=5355 DPT=5355 LEN=33 
[    5.239543] kauditd_printk_skb: 129 callbacks suppressed
[    5.239546] audit: type=1130 audit(1651164730.139:92): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=upower comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    5.310635] Bluetooth: RFCOMM TTY layer initialized
[    5.310641] Bluetooth: RFCOMM socket layer initialized
[    5.310644] Bluetooth: RFCOMM ver 1.11
[    5.997415] audit: type=1130 audit(1651164730.896:93): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=rtkit-daemon comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    6.885374] wlo1: authenticate with 7c:8f:de:ca:6d:3e
[    6.892031] wlo1: send auth to 7c:8f:de:ca:6d:3e (try 1/3)
[    6.918049] wlo1: authenticated
[    6.920969] wlo1: associate with 7c:8f:de:ca:6d:3e (try 1/3)
[    6.922282] wlo1: RX AssocResp from 7c:8f:de:ca:6d:3e (capab=0xc11 status=0 aid=2)
[    6.929327] wlo1: associated
[    7.008394] IPv6: ADDRCONF(NETDEV_CHANGE): wlo1: link becomes ready
[    7.036910] wlo1: Limiting TX power to 30 (30 - 0) dBm as advertised by 7c:8f:de:ca:6d:3e
[    7.181249] [UFW BLOCK] IN=wlo1 OUT= MAC= SRC=192.168.2.11 DST=224.0.0.252 LEN=53 TOS=0x00 PREC=0x00 TTL=255 ID=4225 PROTO=UDP SPT=5355 DPT=5355 LEN=33 
[    7.208582] userif-3: sent link up event.
[    7.464907] [UFW BLOCK] IN=wlo1 OUT= MAC= SRC=192.168.2.11 DST=224.0.0.252 LEN=53 TOS=0x00 PREC=0x00 TTL=255 ID=4289 PROTO=UDP SPT=5355 DPT=5355 LEN=33 
[    7.664570] userif-3: sent link up event.
[    7.914944] [UFW BLOCK] IN=wlo1 OUT= MAC= SRC=192.168.2.11 DST=224.0.0.252 LEN=53 TOS=0x00 PREC=0x00 TTL=255 ID=4297 PROTO=UDP SPT=5355 DPT=5355 LEN=33 
[    7.958776] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=6900 DF PROTO=2 
[    8.159380] audit: type=1131 audit(1651164733.059:94): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    9.043118] [UFW BLOCK] IN=wlo1 OUT= MAC= SRC=fe80:0000:0000:0000:d953:fe3c:659c:c0c4 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=73 TC=0 HOPLIMIT=255 FLOWLBL=246956 PROTO=UDP SPT=5355 DPT=5355 LEN=33 
[    9.168908] [UFW BLOCK] IN=wlo1 OUT= MAC= SRC=fe80:0000:0000:0000:d953:fe3c:659c:c0c4 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=73 TC=0 HOPLIMIT=255 FLOWLBL=246956 PROTO=UDP SPT=5355 DPT=5355 LEN=33 
[    9.369276] [UFW BLOCK] IN=wlo1 OUT= MAC= SRC=fe80:0000:0000:0000:d953:fe3c:659c:c0c4 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=73 TC=0 HOPLIMIT=255 FLOWLBL=246956 PROTO=UDP SPT=5355 DPT=5355 LEN=33 
[   12.622660] audit: type=1131 audit(1651164737.523:95): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   32.638791] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=8379 DF PROTO=2 
[   33.232059] audit: type=1131 audit(1651164758.133:96): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   33.327595] audit: type=1334 audit(1651164758.229:97): prog-id=0 op=UNLOAD
[   33.327606] audit: type=1334 audit(1651164758.229:98): prog-id=0 op=UNLOAD
[   33.327611] audit: type=1334 audit(1651164758.229:99): prog-id=0 op=UNLOAD
[   41.209518] userif-3: sent link up event.
[   44.721358] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=9013 DF PROTO=2 
[   68.785374] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=10138 DF PROTO=2 
[   71.209804] userif-3: sent link up event.
[   92.822518] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=11297 DF PROTO=2 
[  101.271451] userif-3: sent link up event.
[  104.932512] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=12022 DF PROTO=2 
[  129.098872] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=12690 DF PROTO=2 
[  131.195715] userif-3: sent link up event.
[  153.142670] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=13927 DF PROTO=2 
[  161.199507] userif-3: sent link up event.
[  165.246387] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=15002 DF PROTO=2 
[  189.412919] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=16366 DF PROTO=2 
[  191.190871] userif-3: sent link up event.
[  213.476881] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=17595 DF PROTO=2 
[  221.193220] userif-3: sent link up event.
[  225.559551] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=17990 DF PROTO=2 
[  249.726475] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=18979 DF PROTO=2 
[  251.192162] userif-3: sent link up event.
[  273.790453] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=20135 DF PROTO=2 
[  281.186651] userif-3: sent link up event.
[  285.873627] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=20780 DF PROTO=2 
[  309.884442] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=22312 DF PROTO=2 
[  311.179243] userif-3: sent link up event.
[  334.104470] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=23233 DF PROTO=2 
[  341.177853] userif-3: sent link up event.
[  346.084310] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=24075 DF PROTO=2 
[  370.251219] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=24600 DF PROTO=2 
[  371.182345] userif-3: sent link up event.
[  394.418885] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=24761 DF PROTO=2 
[  401.182297] userif-3: sent link up event.
[  404.612185] [UFW BLOCK] IN=vmnet1 OUT= MAC= SRC=192.168.30.1 DST=224.0.0.252 LEN=52 TOS=0x00 PREC=0x00 TTL=255 ID=1143 PROTO=UDP SPT=5355 DPT=5355 LEN=32 
[  404.616288] [UFW BLOCK] IN=vmnet1 OUT= MAC= SRC=fe80:0000:0000:0000:0250:56ff:fec0:0001 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=72 TC=0 HOPLIMIT=255 FLOWLBL=564516 PROTO=UDP SPT=5355 DPT=5355 LEN=32 
[  404.721501] [UFW BLOCK] IN=vmnet8 OUT= MAC= SRC=fe80:0000:0000:0000:0250:56ff:fec0:0008 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=72 TC=0 HOPLIMIT=255 FLOWLBL=6624 PROTO=UDP SPT=5355 DPT=5355 LEN=32 
[  404.721546] [UFW BLOCK] IN=wlo1 OUT= MAC= SRC=fe80:0000:0000:0000:d953:fe3c:659c:c0c4 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=72 TC=0 HOPLIMIT=255 FLOWLBL=246956 PROTO=UDP SPT=5355 DPT=5355 LEN=32 
[  405.550576] [UFW BLOCK] IN=wlo1 OUT= MAC= SRC=fe80:0000:0000:0000:d953:fe3c:659c:c0c4 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=72 TC=0 HOPLIMIT=255 FLOWLBL=246956 PROTO=UDP SPT=5355 DPT=5355 LEN=32 
[  405.550638] [UFW BLOCK] IN=vmnet8 OUT= MAC= SRC=fe80:0000:0000:0000:0250:56ff:fec0:0008 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=72 TC=0 HOPLIMIT=255 FLOWLBL=6624 PROTO=UDP SPT=5355 DPT=5355 LEN=32 
[  405.550714] [UFW BLOCK] IN=vmnet1 OUT= MAC= SRC=fe80:0000:0000:0000:0250:56ff:fec0:0001 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=72 TC=0 HOPLIMIT=255 FLOWLBL=564516 PROTO=UDP SPT=5355 DPT=5355 LEN=32 
[  406.565875] [UFW BLOCK] IN=wlo1 OUT= MAC= SRC=fe80:0000:0000:0000:d953:fe3c:659c:c0c4 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=72 TC=0 HOPLIMIT=255 FLOWLBL=246956 PROTO=UDP SPT=5355 DPT=5355 LEN=32 
[  406.565954] [UFW BLOCK] IN=vmnet1 OUT= MAC= SRC=fe80:0000:0000:0000:0250:56ff:fec0:0001 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=72 TC=0 HOPLIMIT=255 FLOWLBL=564516 PROTO=UDP SPT=5355 DPT=5355 LEN=32 
[  406.566019] [UFW BLOCK] IN=vmnet8 OUT= MAC= SRC=fe80:0000:0000:0000:0250:56ff:fec0:0008 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=72 TC=0 HOPLIMIT=255 FLOWLBL=6624 PROTO=UDP SPT=5355 DPT=5355 LEN=32 
[  407.685890] [UFW BLOCK] IN=wlo1 OUT= MAC= SRC=fe80:0000:0000:0000:d953:fe3c:659c:c0c4 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=72 TC=0 HOPLIMIT=255 FLOWLBL=246956 PROTO=UDP SPT=5355 DPT=5355 LEN=32 
[  430.124317] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=26278 DF PROTO=2 
[  431.180016] userif-3: sent link up event.
[  454.750070] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=28173 DF PROTO=2 
[  461.176146] userif-3: sent link up event.
[  466.813963] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=28864 DF PROTO=2 
[  473.822471] audit: type=1334 audit(1651165202.843:100): prog-id=31 op=LOAD
[  473.822554] audit: type=1334 audit(1651165202.843:101): prog-id=32 op=LOAD
[  473.822578] audit: type=1334 audit(1651165202.843:102): prog-id=33 op=LOAD
[  473.850860] audit: type=1130 audit(1651165202.873:103): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  490.775476] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=29873 DF PROTO=2 
[  491.171416] userif-3: sent link up event.
[  511.664597] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=30314 DF PROTO=2 
[  518.121810] audit: type=1131 audit(1651165247.151:104): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  518.226112] audit: type=1334 audit(1651165247.257:105): prog-id=0 op=UNLOAD
[  518.226123] audit: type=1334 audit(1651165247.257:106): prog-id=0 op=UNLOAD
[  518.226128] audit: type=1334 audit(1651165247.257:107): prog-id=0 op=UNLOAD
[  521.162573] userif-3: sent link up event.
[  526.923111] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=31056 DF PROTO=2 
[  550.924819] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=32541 DF PROTO=2 
[  551.160162] userif-3: sent link up event.
[  563.070011] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=32548 DF PROTO=2 
[  581.154191] userif-3: sent link up event.
[  587.133673] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=33931 DF PROTO=2 
[  607.407323] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=35095 DF PROTO=2 
[  611.165608] userif-3: sent link up event.
[  623.281601] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=36022 DF PROTO=2 
[  641.179504] userif-3: sent link up event.
[  647.447350] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=37691 DF PROTO=2 
[  668.746761] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=39107 DF PROTO=2 
[  671.185339] userif-3: sent link up event.
[  683.595029] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=39687 DF PROTO=2 
[  701.187713] userif-3: sent link up event.
[  707.761030] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=41643 DF PROTO=2 
[  731.187715] userif-3: sent link up event.
[  731.824985] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=43063 DF PROTO=2 
[  743.908574] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=43986 DF PROTO=2 
[  761.186277] userif-3: sent link up event.
[  767.972125] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=45569 DF PROTO=2 
[  791.183772] userif-3: sent link up event.
[  792.042064] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=47655 DF PROTO=2 
[  804.119231] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=47936 DF PROTO=2 
[  821.181877] userif-3: sent link up event.
[  828.186718] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=48461 DF PROTO=2 
[  851.180891] userif-3: sent link up event.
[  852.353224] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=49826 DF PROTO=2 
[  864.436802] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=49992 DF PROTO=2 
[  881.183655] userif-3: sent link up event.
[  888.609246] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=50852 DF PROTO=2 
[  903.054616] audit: type=1130 audit(1651165632.066:108): 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'
[  903.054624] audit: type=1131 audit(1651165632.066:109): 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'
[  911.185401] userif-3: sent link up event.
[  912.666296] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=51402 DF PROTO=2 
[  924.746909] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=51723 DF PROTO=2 
[  941.185809] userif-3: sent link up event.
[  948.913373] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=52643 DF PROTO=2 
[  971.186611] userif-3: sent link up event.
[  973.079769] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=52852 DF PROTO=2 
[  985.060660] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=53677 DF PROTO=2 
[ 1001.185706] userif-3: sent link up event.
[ 1009.226911] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=55409 DF PROTO=2 
[ 1030.526146] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=56414 DF PROTO=2 
[ 1031.184826] userif-3: sent link up event.
[ 1045.373699] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=56897 DF PROTO=2 
[ 1061.183516] userif-3: sent link up event.
[ 1069.540308] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=57584 DF PROTO=2 
[ 1091.182069] userif-3: sent link up event.
[ 1093.749567] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=58845 DF PROTO=2 
[ 1105.790194] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=58992 DF PROTO=2 
[ 1121.180474] userif-3: sent link up event.
[ 1129.854244] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=61149 DF PROTO=2 
[ 1151.178895] userif-3: sent link up event.
[ 1154.020599] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=61634 DF PROTO=2 
[ 1166.113735] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=62752 DF PROTO=2 
[ 1181.176657] userif-3: sent link up event.
[ 1190.270196] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=64339 DF PROTO=2 
[ 1203.069828] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=64810 DF PROTO=2 
[ 1211.174076] userif-3: sent link up event.
[ 1223.694447] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=140 DF PROTO=2 
[ 1241.171801] userif-3: sent link up event.
[ 1250.481017] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=1584 DF PROTO=2 
[ 1271.169933] userif-3: sent link up event.
[ 1274.579290] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=2520 DF PROTO=2 
[ 1286.628255] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=3609 DF PROTO=2 
[ 1301.167565] userif-3: sent link up event.
[ 1310.692305] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=4583 DF PROTO=2 
[ 1331.165557] userif-3: sent link up event.
[ 1334.858991] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=5749 DF PROTO=2 
[ 1346.839898] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=5840 DF PROTO=2 
[ 1361.163815] userif-3: sent link up event.
[ 1371.108089] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=6625 DF PROTO=2 
[ 1383.191455] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=7793 DF PROTO=2 
[ 1391.166068] userif-3: sent link up event.
[ 1407.255698] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=9659 DF PROTO=2 
[ 1421.168628] userif-3: sent link up event.
[ 1427.646460] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=10665 DF PROTO=2 
[ 1443.408588] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=11947 DF PROTO=2 
[ 1451.169833] userif-3: sent link up event.
[ 1466.033364] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=12862 DF PROTO=2 
[ 1481.171325] userif-3: sent link up event.
[ 1491.735415] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=13543 DF PROTO=2 
[ 1503.818955] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=13907 DF PROTO=2 
[ 1511.171845] userif-3: sent link up event.
[ 1527.884093] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=15887 DF PROTO=2 
[ 1541.173268] userif-3: sent link up event.
[ 1549.797762] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=17224 DF PROTO=2 
[ 1564.132698] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=18467 DF PROTO=2 
[ 1571.172985] userif-3: sent link up event.
[ 1588.298612] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=19215 DF PROTO=2 
[ 1601.173196] userif-3: sent link up event.
[ 1612.465345] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=20169 DF PROTO=2 
[ 1624.548361] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=20794 DF PROTO=2 
[ 1631.172709] userif-3: sent link up event.
[ 1648.681247] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=22421 DF PROTO=2 
[ 1661.172067] userif-3: sent link up event.
[ 1672.884108] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=24344 DF PROTO=2 
[ 1684.964734] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=24407 DF PROTO=2 
[ 1691.172271] userif-3: sent link up event.
[ 1709.131199] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=24868 DF PROTO=2 
[ 1711.335370] audit: type=1100 audit(1651166440.359:110): pid=5714 uid=1000 auid=1000 ses=2 msg='op=PAM:authentication grantors=? acct="leopseft" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=failed'
[ 1717.073226] audit: type=1100 audit(1651166446.096:111): pid=5714 uid=1000 auid=1000 ses=2 msg='op=PAM:authentication grantors=pam_faillock,pam_permit,pam_faillock acct="leopseft" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
[ 1717.073229] audit: type=1101 audit(1651166446.096:112): pid=5714 uid=1000 auid=1000 ses=2 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="leopseft" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
[ 1717.073711] audit: type=1110 audit(1651166446.096:113): pid=5714 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/1 res=success'
[ 1717.074425] audit: type=1105 audit(1651166446.099:114): pid=5714 uid=1000 auid=1000 ses=2 msg='op=PAM:session_open grantors=pam_systemd_home,pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
[ 1717.085466] audit: type=1106 audit(1651166446.109:115): pid=5714 uid=1000 auid=1000 ses=2 msg='op=PAM:session_close grantors=pam_systemd_home,pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
[ 1717.085495] audit: type=1104 audit(1651166446.109:116): pid=5714 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/1 res=success'
[ 1721.171593] userif-3: sent link up event.
[ 1724.811935] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=25606 DF PROTO=2 
[ 1745.277833] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=26872 DF PROTO=2 
[ 1751.171090] userif-3: sent link up event.
[ 1769.444488] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=28584 DF PROTO=2 
[ 1781.169387] userif-3: sent link up event.
[ 1788.286444] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=29001 DF PROTO=2 
[ 1805.694392] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=29604 DF PROTO=2 
[ 1811.165030] userif-3: sent link up event.
[ 1829.758003] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=31536 DF PROTO=2 
[ 1841.167255] userif-3: sent link up event.
[ 1853.927399] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=32806 DF PROTO=2 
[ 1865.923526] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=33495 DF PROTO=2 
[ 1871.166370] userif-3: sent link up event.
[ 1888.536037] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=34856 DF PROTO=2 
[ 1901.164449] userif-3: sent link up event.
[ 1914.324149] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=36291 DF PROTO=2 
[ 1926.321607] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=37021 DF PROTO=2 
[ 1931.163209] userif-3: sent link up event.
[ 1950.385633] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=38401 DF PROTO=2 
[ 1961.162157] userif-3: sent link up event.
[ 1974.449644] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=39106 DF PROTO=2 
[ 1986.532851] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=39866 DF PROTO=2 
[ 1991.160592] userif-3: sent link up event.
[ 2010.699269] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=41337 DF PROTO=2 
[ 2021.159355] userif-3: sent link up event.
[ 2034.763238] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=43023 DF PROTO=2 
[ 2046.948911] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=44149 DF PROTO=2 
[ 2051.158276] userif-3: sent link up event.
[ 2071.012476] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=45812 DF PROTO=2 
[ 2081.155639] userif-3: sent link up event.
[ 2083.095743] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=46624 DF PROTO=2 
[ 2107.194706] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=46987 DF PROTO=2 
[ 2111.153985] userif-3: sent link up event.
[ 2131.326062] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=48053 DF PROTO=2 
[ 2141.152983] userif-3: sent link up event.
[ 2143.409723] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=48953 DF PROTO=2 
[ 2167.371335] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=50030 DF PROTO=2 
[ 2171.150867] userif-3: sent link up event.
[ 2191.537761] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=51441 DF PROTO=2 
[ 2201.149529] userif-3: sent link up event.
[ 2203.620998] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=51970 DF PROTO=2 
[ 2227.786770] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=53227 DF PROTO=2 
[ 2231.147225] userif-3: sent link up event.
[ 2251.953789] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=53346 DF PROTO=2 
[ 2261.145765] userif-3: sent link up event.
[ 2264.036964] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=54382 DF PROTO=2 
[ 2288.203402] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=55836 DF PROTO=2 
[ 2291.144217] userif-3: sent link up event.
[ 2312.369467] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=57080 DF PROTO=2 
[ 2321.141616] userif-3: sent link up event.
[ 2324.350069] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=57491 DF PROTO=2 
[ 2348.415093] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=58093 DF PROTO=2 
[ 2351.140258] userif-3: sent link up event.
[ 2364.526134] audit: type=1100 audit(1651167093.584:117): pid=7076 uid=1000 auid=1000 ses=2 msg='op=PAM:authentication grantors=pam_faillock,pam_permit,pam_faillock acct="leopseft" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
[ 2364.526138] audit: type=1101 audit(1651167093.584:118): pid=7076 uid=1000 auid=1000 ses=2 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="leopseft" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
[ 2364.526798] audit: type=1110 audit(1651167093.584:119): pid=7076 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/1 res=success'
[ 2364.527450] audit: type=1105 audit(1651167093.584:120): pid=7076 uid=1000 auid=1000 ses=2 msg='op=PAM:session_open grantors=pam_systemd_home,pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
[ 2364.534017] audit: type=1101 audit(1651167093.591:121): pid=7087 uid=0 auid=1000 ses=2 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
[ 2364.534398] audit: type=1110 audit(1651167093.591:122): pid=7087 uid=0 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/1 res=success'
[ 2364.535026] audit: type=1105 audit(1651167093.591:123): pid=7087 uid=0 auid=1000 ses=2 msg='op=PAM:session_open grantors=pam_systemd_home,pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
[ 2364.554134] audit: type=1106 audit(1651167093.611:124): pid=7087 uid=0 auid=1000 ses=2 msg='op=PAM:session_close grantors=pam_systemd_home,pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
[ 2364.554162] audit: type=1104 audit(1651167093.611:125): pid=7087 uid=0 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/1 res=success'
[ 2364.554930] audit: type=1106 audit(1651167093.611:126): pid=7076 uid=1000 auid=1000 ses=2 msg='op=PAM:session_close grantors=pam_systemd_home,pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
[ 2368.280319] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=59677 DF PROTO=2 
[ 2381.139486] userif-3: sent link up event.
[ 2384.561832] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=60941 DF PROTO=2 
[ 2405.244235] [UFW BLOCK] IN=wlo1 OUT= MAC= SRC=192.168.2.11 DST=224.0.0.252 LEN=52 TOS=0x00 PREC=0x00 TTL=255 ID=58555 PROTO=UDP SPT=5355 DPT=5355 LEN=32 
[ 2405.244351] [UFW BLOCK] IN=vmnet1 OUT= MAC= SRC=fe80:0000:0000:0000:0250:56ff:fec0:0001 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=72 TC=0 HOPLIMIT=255 FLOWLBL=564516 PROTO=UDP SPT=5355 DPT=5355 LEN=32 
[ 2405.244394] [UFW BLOCK] IN=wlo1 OUT= MAC= SRC=fe80:0000:0000:0000:d953:fe3c:659c:c0c4 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=72 TC=0 HOPLIMIT=255 FLOWLBL=246956 PROTO=UDP SPT=5355 DPT=5355 LEN=32 
[ 2405.244428] [UFW BLOCK] IN=vmnet8 OUT= MAC= SRC=fe80:0000:0000:0000:0250:56ff:fec0:0008 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=72 TC=0 HOPLIMIT=255 FLOWLBL=6624 PROTO=UDP SPT=5355 DPT=5355 LEN=32 
[ 2406.262315] [UFW BLOCK] IN=vmnet8 OUT= MAC= SRC=fe80:0000:0000:0000:0250:56ff:fec0:0008 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=72 TC=0 HOPLIMIT=255 FLOWLBL=6624 PROTO=UDP SPT=5355 DPT=5355 LEN=32 
[ 2406.262351] [UFW BLOCK] IN=wlo1 OUT= MAC= SRC=fe80:0000:0000:0000:d953:fe3c:659c:c0c4 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=72 TC=0 HOPLIMIT=255 FLOWLBL=246956 PROTO=UDP SPT=5355 DPT=5355 LEN=32 
[ 2406.262379] [UFW BLOCK] IN=vmnet1 OUT= MAC= SRC=fe80:0000:0000:0000:0250:56ff:fec0:0001 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=72 TC=0 HOPLIMIT=255 FLOWLBL=564516 PROTO=UDP SPT=5355 DPT=5355 LEN=32 
[ 2407.512411] [UFW BLOCK] IN=vmnet1 OUT= MAC= SRC=fe80:0000:0000:0000:0250:56ff:fec0:0001 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=72 TC=0 HOPLIMIT=255 FLOWLBL=564516 PROTO=UDP SPT=5355 DPT=5355 LEN=32 
[ 2407.512445] [UFW BLOCK] IN=wlo1 OUT= MAC= SRC=fe80:0000:0000:0000:d953:fe3c:659c:c0c4 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=72 TC=0 HOPLIMIT=255 FLOWLBL=246956 PROTO=UDP SPT=5355 DPT=5355 LEN=32 
[ 2407.512470] [UFW BLOCK] IN=vmnet8 OUT= MAC= SRC=fe80:0000:0000:0000:0250:56ff:fec0:0008 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=72 TC=0 HOPLIMIT=255 FLOWLBL=6624 PROTO=UDP SPT=5355 DPT=5355 LEN=32 
[ 2408.888617] [UFW BLOCK] IN=vmnet8 OUT= MAC= SRC=fe80:0000:0000:0000:0250:56ff:fec0:0008 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=72 TC=0 HOPLIMIT=255 FLOWLBL=6624 PROTO=UDP SPT=5355 DPT=5355 LEN=32 
[ 2411.145052] userif-3: sent link up event.
[ 2414.233457] kauditd_printk_skb: 1 callbacks suppressed
[ 2414.233462] audit: type=1101 audit(1651167143.282:128): pid=7234 uid=1000 auid=1000 ses=2 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="leopseft" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
[ 2414.234663] audit: type=1110 audit(1651167143.285:129): pid=7234 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/1 res=success'
[ 2414.236430] audit: type=1105 audit(1651167143.285:130): pid=7234 uid=1000 auid=1000 ses=2 msg='op=PAM:session_open grantors=pam_systemd_home,pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
[ 2414.249900] audit: type=1106 audit(1651167143.298:131): pid=7234 uid=1000 auid=1000 ses=2 msg='op=PAM:session_close grantors=pam_systemd_home,pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
[ 2414.249928] audit: type=1104 audit(1651167143.298:132): pid=7234 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/1 res=success'
[ 2432.792279] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=63073 DF PROTO=2 
[ 2441.150275] userif-3: sent link up event.
[ 2444.875374] [UFW BLOCK] IN=wlo1 OUT= MAC=94:e7:0b:0e:a7:b3:7c:8f:de:ca:6d:38:08:00 SRC=192.168.2.1 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=63649 DF PROTO=2 
[ 2446.308303] audit: type=1101 audit(1651167175.353:133): pid=7294 uid=1000 auid=1000 ses=2 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="leopseft" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
[ 2446.308745] audit: type=1110 audit(1651167175.353:134): pid=7294 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/1 res=success'
[ 2446.309283] audit: type=1105 audit(1651167175.353:135): pid=7294 uid=1000 auid=1000 ses=2 msg='op=PAM:session_open grantors=pam_systemd_home,pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'

Do you have any ideas how could i address this issue and where Should I look for?
Thanks in advance!!

Last edited by leopseft (2022-05-03 22:57:15)

Offline

#2 2022-04-30 19:09:42

leopseft
Member
Registered: 2018-09-05
Posts: 29

Re: [SOLVED] Yellow artifacts on tty during shutdown or reboot

I "solved" the issue by completely hiding the systemd version number, by passing the udev.log_level=3 kernel parameter. So the "line" went away along with the systemd version messages.

Offline

Board footer

Powered by FluxBB