You are not logged in.

#1 2023-01-24 00:00:32

celticsamurai
Member
Registered: 2022-06-11
Posts: 62

Hangs at "Reached Target Graphical Interface" with LTS 5.4

With the regular kernel and the AMD kernel, my system is able to boot perfectly fine. However, when I attempt to boot into the Linux LTS 5.4 kernel, it hangs at "Reached Target Graphical Interface," and this is if "quiet" is removed from the kernel line in the grub.cfg file. This is what it gets stuck at if it's left there. I use Xfce and SDDM.
https://imgur.com/a/1PaBy36

Here's what my Xorg log looks like:
https://gist.github.com/celticsamurai/5 … 6eb49bbeb7

I sniffed around the forums and found issues similar to this, but a commonality is with NVIDIA drivers. I shouldn't have them, as my GPU is an AMD.

Ryzen 5800X
RX 6900XT
64GB DDR4 RAM

Last edited by celticsamurai (2023-01-24 00:39:46)

Offline

#2 2023-01-24 00:17:30

celticsamurai
Member
Registered: 2022-06-11
Posts: 62

Re: Hangs at "Reached Target Graphical Interface" with LTS 5.4

I should probably post what my actual grub.cfg looks like:

#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
insmod part_gpt
insmod part_msdos
if [ -s $prefix/grubenv ]; then
  load_env
fi
if [ "${next_entry}" ] ; then
   set default="${next_entry}"
   set next_entry=
   save_env next_entry
   set boot_once=true
else
   set default="Advanced options for Arch Linux>Arch Linux, with Linux linux-lts54"
fi

if [ x"${feature_menuentry_id}" = xy ]; then
  menuentry_id_option="--id"
else
  menuentry_id_option=""
fi

export menuentry_id_option

if [ "${prev_saved_entry}" ]; then
  set saved_entry="${prev_saved_entry}"
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
  fi
}

function load_video {
  if [ x$feature_all_video_module = xy ]; then
    insmod all_video
  else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
  fi
}

if [ x$feature_default_font_path = xy ] ; then
   font=unicode
else
insmod part_msdos
insmod ext2
search --no-floppy --fs-uuid --set=root 9abdd89b-7694-4757-8552-c20de7354cf1
    font="/usr/share/grub/unicode.pf2"
fi

if loadfont $font ; then
  set gfxmode=auto
  load_video
  insmod gfxterm
  set locale_dir=$prefix/locale
  set lang=en_US
  insmod gettext
fi
terminal_input console
terminal_output gfxterm
insmod part_msdos
insmod fat
search --no-floppy --fs-uuid --set=root A289-F4F5
insmod gfxmenu
loadfont ($root)/grub/themes/starfield/dejavu_10.pf2
loadfont ($root)/grub/themes/starfield/dejavu_12.pf2
loadfont ($root)/grub/themes/starfield/dejavu_14.pf2
loadfont ($root)/grub/themes/starfield/dejavu_16.pf2
loadfont ($root)/grub/themes/starfield/dejavu_bold_14.pf2
insmod png
set theme=($root)/grub/themes/starfield/theme.txt
export theme
if [ x$feature_timeout_style = xy ] ; then
  set timeout_style=menu
  set timeout=5
# Fallback normal timeout code in case the timeout_style feature is
# unavailable.
else
  set timeout=5
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/06_grub-customizer_menu_color_helper ###
### END /etc/grub.d/06_grub-customizer_menu_color_helper ###

### BEGIN /etc/grub.d/10_linux ###
menuentry 'Arch Linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-9abdd89b-7694-4757-8552-c20de7354cf1' {
	load_video
	set gfxpayload=keep
	insmod gzio
	insmod part_msdos
	insmod fat
	search --no-floppy --fs-uuid --set=root A289-F4F5
	echo	'Loading Linux linux-lts54 ...'
	linux	/vmlinuz-linux-lts54 root=UUID=9abdd89b-7694-4757-8552-c20de7354cf1 rw rootfstype=ext4 loglevel=3 quiet
	echo	'Loading initial ramdisk ...'
	initrd	/initramfs-linux-lts54.img
}
submenu 'Advanced options for Arch Linux' $menuentry_id_option 'gnulinux-advanced-9abdd89b-7694-4757-8552-c20de7354cf1' {
	menuentry 'Arch Linux, with Linux linux-lts54' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-lts54-advanced-9abdd89b-7694-4757-8552-c20de7354cf1' {
		load_video
		set gfxpayload=keep
		insmod gzio
		insmod part_msdos
		insmod fat
		search --no-floppy --fs-uuid --set=root A289-F4F5
		echo	'Loading Linux linux-lts54 ...'
		linux	/vmlinuz-linux-lts54 root=UUID=9abdd89b-7694-4757-8552-c20de7354cf1 rw rootfstype=ext4 loglevel=3 quiet
		echo	'Loading initial ramdisk ...'
		initrd	/initramfs-linux-lts54.img
	}
	menuentry 'Arch Linux, with Linux linux-lts54 (fallback initramfs)' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-lts54-fallback-9abdd89b-7694-4757-8552-c20de7354cf1' {
		load_video
		set gfxpayload=keep
		insmod gzio
		insmod part_msdos
		insmod fat
		search --no-floppy --fs-uuid --set=root A289-F4F5
		echo	'Loading Linux linux-lts54 ...'
		linux	/vmlinuz-linux-lts54 root=UUID=9abdd89b-7694-4757-8552-c20de7354cf1 rw rootfstype=ext4 loglevel=3 quiet
		echo	'Loading initial ramdisk ...'
		initrd	/initramfs-linux-lts54-fallback.img
	}
	menuentry 'Arch Linux, with Linux linux-amd' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-amd-advanced-9abdd89b-7694-4757-8552-c20de7354cf1' {
		load_video
		set gfxpayload=keep
		insmod gzio
		insmod part_msdos
		insmod fat
		search --no-floppy --fs-uuid --set=root A289-F4F5
		echo	'Loading Linux linux-amd ...'
		linux	/vmlinuz-linux-amd root=UUID=9abdd89b-7694-4757-8552-c20de7354cf1 rw rootfstype=ext4 loglevel=3 quiet
		echo	'Loading initial ramdisk ...'
		initrd	/initramfs-linux-amd.img
	}
	menuentry 'Arch Linux, with Linux linux-amd (fallback initramfs)' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-amd-fallback-9abdd89b-7694-4757-8552-c20de7354cf1' {
		load_video
		set gfxpayload=keep
		insmod gzio
		insmod part_msdos
		insmod fat
		search --no-floppy --fs-uuid --set=root A289-F4F5
		echo	'Loading Linux linux-amd ...'
		linux	/vmlinuz-linux-amd root=UUID=9abdd89b-7694-4757-8552-c20de7354cf1 rw rootfstype=ext4 loglevel=3 quiet
		echo	'Loading initial ramdisk ...'
		initrd	/initramfs-linux-amd-fallback.img
	}
	menuentry 'Arch Linux, with Linux linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-advanced-9abdd89b-7694-4757-8552-c20de7354cf1' {
		load_video
		set gfxpayload=keep
		insmod gzio
		insmod part_msdos
		insmod fat
		search --no-floppy --fs-uuid --set=root A289-F4F5
		echo	'Loading Linux linux ...'
		linux	/vmlinuz-linux root=UUID=9abdd89b-7694-4757-8552-c20de7354cf1 rw rootfstype=ext4 loglevel=3 quiet
		echo	'Loading initial ramdisk ...'
		initrd	/initramfs-linux.img
	}
	menuentry 'Arch Linux, with Linux linux (fallback initramfs)' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-fallback-9abdd89b-7694-4757-8552-c20de7354cf1' {
		load_video
		set gfxpayload=keep
		insmod gzio
		insmod part_msdos
		insmod fat
		search --no-floppy --fs-uuid --set=root A289-F4F5
		echo	'Loading Linux linux ...'
		linux	/vmlinuz-linux root=UUID=9abdd89b-7694-4757-8552-c20de7354cf1 rw rootfstype=ext4 loglevel=3 quiet
		echo	'Loading initial ramdisk ...'
		initrd	/initramfs-linux-fallback.img
	}
}

### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/30_uefi-firmware ###
if [ "$grub_platform" = "efi" ]; then
	fwsetup --is-supported
	if [ "$?" = 0 ]; then
		menuentry 'UEFI Firmware Settings' $menuentry_id_option 'uefi-firmware' {
			fwsetup
		}
	fi
fi
### END /etc/grub.d/30_uefi-firmware ###

### BEGIN /etc/grub.d/35_fwupd ###
### END /etc/grub.d/35_fwupd ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###

### BEGIN /etc/grub.d/41_custom ###
if [ -f  ${config_directory}/custom.cfg ]; then
  source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f  $prefix/custom.cfg ]; then
  source $prefix/custom.cfg
fi
### END /etc/grub.d/41_custom ###

Offline

#3 2023-01-24 00:37:13

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 25,258

Re: Hangs at "Reached Target Graphical Interface" with LTS 5.4

You are trying to boot that why exactly? That kernel is from 2019 and does not yet have the necessary bits and pieces to support this graphics hardware that was released 3 years later. The point of the LTS is to remain fairly unchanging in terms of new features and only integrating bug/security fixes.

Last edited by V1del (2023-01-24 00:40:30)

Offline

#4 2023-01-24 00:39:21

celticsamurai
Member
Registered: 2022-06-11
Posts: 62

Re: Hangs at "Reached Target Graphical Interface" with LTS 5.4

V1del wrote:

You are trying to boot that why exactly? That kernel is from 2019 and does not yet have the necessary bits and pieces to support this graphics hardware that was released 3 years later.

I've been having issues with Blender crashing me into the log screen when I use Cycles for an extended period of time. I've tried removing libraries like ProRender that supposedly conflict with it, but it doesn't work. I've read that LTS 5.4 is better for that reason.

Offline

#5 2023-01-24 00:44:59

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 25,258

Re: Hangs at "Reached Target Graphical Interface" with LTS 5.4

There are many other stipulations to blender and AMD than that. Like whether you are running a compatible HIP implementation like the one provided by the rocm packages are you doing that? Is there an actual kernel crash or does xorg just die? Journal/Xorg logs from when the issue happens? Are you running out of (V)RAM?

But this is OT here. I strongly suggest you make a new thread with the information about your issues on the current kernel/the actual programs you have an issue with, rather than trying to workaround by using a kernel that's 3 years old and not even supporting your GPU.

Last edited by V1del (2023-01-24 00:46:27)

Offline

#6 2023-01-24 00:59:36

celticsamurai
Member
Registered: 2022-06-11
Posts: 62

Re: Hangs at "Reached Target Graphical Interface" with LTS 5.4

V1del wrote:

There are many other stipulations to blender and AMD than that. Like whether you are running a compatible HIP implementation like the one provided by the rocm packages are you doing that? Is there an actual kernel crash or does xorg just die? Journal/Xorg logs from when the issue happens? Are you running out of (V)RAM?

But this is OT here. I strongly suggest you make a new thread with the information about your issues on the current kernel/the actual programs you have an issue with, rather than trying to workaround by using a kernel that's 3 years old and not even supporting your GPU.

Okay. I'll see if I can find help in the Blender forums.

Offline

#7 2023-01-24 01:04:36

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 25,258

Re: Hangs at "Reached Target Graphical Interface" with LTS 5.4

You can also ask for help here, but this kernel will not boot on this hardware. If you land at the login screen instead of things getting frozen or stuck then chances that it's simply a xorg crash due to resource starvation or so are fairly higher than a kernel issue, but we'd need more logs for that.

Offline

#8 2023-01-24 01:13:27

celticsamurai
Member
Registered: 2022-06-11
Posts: 62

Re: Hangs at "Reached Target Graphical Interface" with LTS 5.4

V1del wrote:

You can also ask for help here, but this kernel will not boot on this hardware. If you land at the login screen instead of things getting frozen or stuck then chances that it's simply a xorg crash due to resource starvation or so are fairly higher than a kernel issue, but we'd need more logs for that.

Sure thing. The issue's pretty easy to reproduce. Here's what dmesg gave me:

[    0.413691] pci 0000:03:00.0:   bridge window [mem 0xdf200000-0xef3fffff]
[    0.413694] pci 0000:03:00.0:   bridge window [mem 0xd0300000-0xd42fffff 64bit pref]
[    0.413699] pci 0000:03:04.0: PCI bridge to [bus 4c]
[    0.413703] pci 0000:03:04.0:   bridge window [mem 0xef700000-0xef7fffff]
[    0.413710] pci 0000:4e:01.0: PCI bridge to [bus 4f]
[    0.413727] pci 0000:4e:03.0: PCI bridge to [bus 50]
[    0.413743] pci 0000:4e:05.0: PCI bridge to [bus 51]
[    0.413746] pci 0000:4e:05.0:   bridge window [io  0xe000-0xefff]
[    0.413752] pci 0000:4e:05.0:   bridge window [mem 0xef500000-0xef5fffff]
[    0.413763] pci 0000:4e:07.0: PCI bridge to [bus 52]
[    0.413765] pci 0000:4e:07.0:   bridge window [io  0xd000-0xdfff]
[    0.413771] pci 0000:4e:07.0:   bridge window [mem 0xef400000-0xef4fffff]
[    0.413782] pci 0000:4d:00.0: PCI bridge to [bus 4e-52]
[    0.413784] pci 0000:4d:00.0:   bridge window [io  0xd000-0xefff]
[    0.413790] pci 0000:4d:00.0:   bridge window [mem 0xef400000-0xef5fffff]
[    0.413801] pci 0000:03:08.0: PCI bridge to [bus 4d-52]
[    0.413802] pci 0000:03:08.0:   bridge window [io  0xd000-0xefff]
[    0.413806] pci 0000:03:08.0:   bridge window [mem 0xef400000-0xef5fffff]
[    0.413814] pci 0000:03:09.0: PCI bridge to [bus 53]
[    0.413817] pci 0000:03:09.0:   bridge window [mem 0xef600000-0xef6fffff]
[    0.413825] pci 0000:02:00.2: PCI bridge to [bus 03-53]
[    0.413826] pci 0000:02:00.2:   bridge window [io  0xd000-0xefff]
[    0.413830] pci 0000:02:00.2:   bridge window [mem 0xdf200000-0xef7fffff]
[    0.413833] pci 0000:02:00.2:   bridge window [mem 0xd0300000-0xd42fffff 64bit pref]
[    0.413838] pci 0000:00:01.2: PCI bridge to [bus 02-53]
[    0.413839] pci 0000:00:01.2:   bridge window [io  0xd000-0xefff]
[    0.413841] pci 0000:00:01.2:   bridge window [mem 0xdf200000-0xef8fffff]
[    0.413843] pci 0000:00:01.2:   bridge window [mem 0xd0300000-0xd42fffff 64bit pref]
[    0.413847] pci 0000:55:00.0: PCI bridge to [bus 56]
[    0.413849] pci 0000:55:00.0:   bridge window [io  0xf000-0xffff]
[    0.413852] pci 0000:55:00.0:   bridge window [mem 0xefc00000-0xefdfffff]
[    0.413855] pci 0000:55:00.0:   bridge window [mem 0xc0000000-0xd01fffff 64bit pref]
[    0.413859] pci 0000:54:00.0: PCI bridge to [bus 55-56]
[    0.413861] pci 0000:54:00.0:   bridge window [io  0xf000-0xffff]
[    0.413864] pci 0000:54:00.0:   bridge window [mem 0xefc00000-0xefdfffff]
[    0.413867] pci 0000:54:00.0:   bridge window [mem 0xc0000000-0xd01fffff 64bit pref]
[    0.413871] pci 0000:00:03.1: PCI bridge to [bus 54-56]
[    0.413872] pci 0000:00:03.1:   bridge window [io  0xf000-0xffff]
[    0.413874] pci 0000:00:03.1:   bridge window [mem 0xefc00000-0xefefffff]
[    0.413876] pci 0000:00:03.1:   bridge window [mem 0xc0000000-0xd01fffff 64bit pref]
[    0.413879] pci 0000:00:07.1: PCI bridge to [bus 57]
[    0.413885] pci 0000:00:08.1: PCI bridge to [bus 58]
[    0.413887] pci 0000:00:08.1:   bridge window [mem 0xef900000-0xefbfffff]
[    0.413892] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    0.413893] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    0.413893] pci_bus 0000:00: resource 6 [io  0x03b0-0x03df window]
[    0.413894] pci_bus 0000:00: resource 7 [io  0x0d00-0xffff window]
[    0.413894] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000dffff window]
[    0.413895] pci_bus 0000:00: resource 9 [mem 0xc0000000-0xefffffff window]
[    0.413896] pci_bus 0000:01: resource 1 [mem 0xeff00000-0xefffffff]
[    0.413896] pci_bus 0000:02: resource 0 [io  0xd000-0xefff]
[    0.413897] pci_bus 0000:02: resource 1 [mem 0xdf200000-0xef8fffff]
[    0.413897] pci_bus 0000:02: resource 2 [mem 0xd0300000-0xd42fffff 64bit pref]
[    0.413898] pci_bus 0000:03: resource 0 [io  0xd000-0xefff]
[    0.413899] pci_bus 0000:03: resource 1 [mem 0xdf200000-0xef7fffff]
[    0.413899] pci_bus 0000:03: resource 2 [mem 0xd0300000-0xd42fffff 64bit pref]
[    0.413900] pci_bus 0000:04: resource 1 [mem 0xdf200000-0xef3fffff]
[    0.413900] pci_bus 0000:04: resource 2 [mem 0xd0300000-0xd42fffff 64bit pref]
[    0.413901] pci_bus 0000:05: resource 1 [mem 0xdf200000-0xef3fffff]
[    0.413901] pci_bus 0000:05: resource 2 [mem 0xd0300000-0xd42fffff 64bit pref]
[    0.413902] pci_bus 0000:06: resource 1 [mem 0xef300000-0xef3fffff]
[    0.413902] pci_bus 0000:07: resource 1 [mem 0xe7200000-0xef1fffff]
[    0.413903] pci_bus 0000:07: resource 2 [mem 0xd2300000-0xd42fffff 64bit pref]
[    0.413903] pci_bus 0000:29: resource 1 [mem 0xef200000-0xef2fffff]
[    0.413904] pci_bus 0000:2a: resource 1 [mem 0xdf200000-0xe71fffff]
[    0.413904] pci_bus 0000:2a: resource 2 [mem 0xd0300000-0xd22fffff 64bit pref]
[    0.413905] pci_bus 0000:4c: resource 1 [mem 0xef700000-0xef7fffff]
[    0.413906] pci_bus 0000:4d: resource 0 [io  0xd000-0xefff]
[    0.413906] pci_bus 0000:4d: resource 1 [mem 0xef400000-0xef5fffff]
[    0.413907] pci_bus 0000:4e: resource 0 [io  0xd000-0xefff]
[    0.413907] pci_bus 0000:4e: resource 1 [mem 0xef400000-0xef5fffff]
[    0.413908] pci_bus 0000:51: resource 0 [io  0xe000-0xefff]
[    0.413908] pci_bus 0000:51: resource 1 [mem 0xef500000-0xef5fffff]
[    0.413909] pci_bus 0000:52: resource 0 [io  0xd000-0xdfff]
[    0.413909] pci_bus 0000:52: resource 1 [mem 0xef400000-0xef4fffff]
[    0.413910] pci_bus 0000:53: resource 1 [mem 0xef600000-0xef6fffff]
[    0.413910] pci_bus 0000:54: resource 0 [io  0xf000-0xffff]
[    0.413911] pci_bus 0000:54: resource 1 [mem 0xefc00000-0xefefffff]
[    0.413911] pci_bus 0000:54: resource 2 [mem 0xc0000000-0xd01fffff 64bit pref]
[    0.413912] pci_bus 0000:55: resource 0 [io  0xf000-0xffff]
[    0.413912] pci_bus 0000:55: resource 1 [mem 0xefc00000-0xefdfffff]
[    0.413913] pci_bus 0000:55: resource 2 [mem 0xc0000000-0xd01fffff 64bit pref]
[    0.413913] pci_bus 0000:56: resource 0 [io  0xf000-0xffff]
[    0.413914] pci_bus 0000:56: resource 1 [mem 0xefc00000-0xefdfffff]
[    0.413914] pci_bus 0000:56: resource 2 [mem 0xc0000000-0xd01fffff 64bit pref]
[    0.413915] pci_bus 0000:58: resource 1 [mem 0xef900000-0xefbfffff]
[    0.414178] pci 0000:55:00.0: CLS mismatch (64 != 548), using 64 bytes
[    0.414187] pci 0000:56:00.1: D0 power state depends on 0000:56:00.0
[    0.414294] pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
[    0.414307] Trying to unpack rootfs image as initramfs...
[    0.414313] pci 0000:00:01.0: Adding to iommu group 0
[    0.414318] pci 0000:00:01.1: Adding to iommu group 1
[    0.414324] pci 0000:00:01.2: Adding to iommu group 2
[    0.414329] pci 0000:00:02.0: Adding to iommu group 3
[    0.414336] pci 0000:00:03.0: Adding to iommu group 4
[    0.414341] pci 0000:00:03.1: Adding to iommu group 5
[    0.414347] pci 0000:00:04.0: Adding to iommu group 6
[    0.414354] pci 0000:00:05.0: Adding to iommu group 7
[    0.414361] pci 0000:00:07.0: Adding to iommu group 8
[    0.414368] pci 0000:00:07.1: Adding to iommu group 9
[    0.414375] pci 0000:00:08.0: Adding to iommu group 10
[    0.414380] pci 0000:00:08.1: Adding to iommu group 11
[    0.414387] pci 0000:00:14.0: Adding to iommu group 12
[    0.414391] pci 0000:00:14.3: Adding to iommu group 12
[    0.414408] pci 0000:00:18.0: Adding to iommu group 13
[    0.414411] pci 0000:00:18.1: Adding to iommu group 13
[    0.414415] pci 0000:00:18.2: Adding to iommu group 13
[    0.414420] pci 0000:00:18.3: Adding to iommu group 13
[    0.414423] pci 0000:00:18.4: Adding to iommu group 13
[    0.414427] pci 0000:00:18.5: Adding to iommu group 13
[    0.414431] pci 0000:00:18.6: Adding to iommu group 13
[    0.414434] pci 0000:00:18.7: Adding to iommu group 13
[    0.414440] pci 0000:01:00.0: Adding to iommu group 14
[    0.414451] pci 0000:02:00.0: Adding to iommu group 15
[    0.414456] pci 0000:02:00.1: Adding to iommu group 15
[    0.414461] pci 0000:02:00.2: Adding to iommu group 15
[    0.414463] pci 0000:03:00.0: Adding to iommu group 15
[    0.414465] pci 0000:03:04.0: Adding to iommu group 15
[    0.414467] pci 0000:03:08.0: Adding to iommu group 15
[    0.414468] pci 0000:03:09.0: Adding to iommu group 15
[    0.414471] pci 0000:04:00.0: Adding to iommu group 15
[    0.414473] pci 0000:05:00.0: Adding to iommu group 15
[    0.414474] pci 0000:05:01.0: Adding to iommu group 15
[    0.414476] pci 0000:05:02.0: Adding to iommu group 15
[    0.414479] pci 0000:05:04.0: Adding to iommu group 15
[    0.414484] pci 0000:06:00.0: Adding to iommu group 15
[    0.414489] pci 0000:29:00.0: Adding to iommu group 15
[    0.414491] pci 0000:4c:00.0: Adding to iommu group 15
[    0.414493] pci 0000:4d:00.0: Adding to iommu group 15
[    0.414495] pci 0000:4e:01.0: Adding to iommu group 15
[    0.414497] pci 0000:4e:03.0: Adding to iommu group 15
[    0.414499] pci 0000:4e:05.0: Adding to iommu group 15
[    0.414502] pci 0000:4e:07.0: Adding to iommu group 15
[    0.414504] pci 0000:51:00.0: Adding to iommu group 15
[    0.414506] pci 0000:52:00.0: Adding to iommu group 15
[    0.414508] pci 0000:53:00.0: Adding to iommu group 15
[    0.414514] pci 0000:54:00.0: Adding to iommu group 16
[    0.414519] pci 0000:55:00.0: Adding to iommu group 17
[    0.414529] pci 0000:56:00.0: Adding to iommu group 18
[    0.414537] pci 0000:56:00.1: Adding to iommu group 19
[    0.414543] pci 0000:57:00.0: Adding to iommu group 20
[    0.414550] pci 0000:58:00.0: Adding to iommu group 21
[    0.414556] pci 0000:58:00.1: Adding to iommu group 22
[    0.414562] pci 0000:58:00.3: Adding to iommu group 23
[    0.414569] pci 0000:58:00.4: Adding to iommu group 24
[    0.415043] pci 0000:00:00.2: AMD-Vi: Found IOMMU cap 0x40
[    0.415044] AMD-Vi: Extended features (0x58f77ef22294ade, 0x0): PPR X2APIC NX GT IA GA PC GA_vAPIC
[    0.415047] AMD-Vi: Interrupt remapping enabled
[    0.415047] AMD-Vi: X2APIC enabled
[    0.415055] AMD-Vi: Virtual APIC enabled
[    0.415095] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.415097] software IO TLB: mapped [mem 0x00000000b83d5000-0x00000000bc3d5000] (64MB)
[    0.415155] RAPL PMU: API unit is 2^-32 Joules, 1 fixed counters, 163840 ms ovfl timer
[    0.415156] RAPL PMU: hw unit of domain package 2^-16 Joules
[    0.415158] LVT offset 0 assigned for vector 0x400
[    0.415202] perf: AMD IBS detected (0x000003ff)
[    0.415205] amd_uncore: 4  amd_df counters detected
[    0.415209] amd_uncore: 6  amd_l3 counters detected
[    0.415288] perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
[    0.415548] Initialise system trusted keyrings
[    0.415553] Key type blacklist registered
[    0.415570] workingset: timestamp_bits=41 max_order=24 bucket_order=0
[    0.415976] zbud: loaded
[    0.416015] ntfs3: Max link count 4000
[    0.418229] Key type asymmetric registered
[    0.418230] Asymmetric key parser 'x509' registered
[    0.432513] Freeing initrd memory: 13572K
[    0.433953] alg: self-tests for CTR-KDF (hmac(sha256)) passed
[    0.433964] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[    0.433983] io scheduler mq-deadline registered
[    0.433984] io scheduler kyber registered
[    0.434004] io scheduler bfq registered
[    0.434916] pcieport 0000:00:01.1: PME: Signaling with IRQ 28
[    0.434953] pcieport 0000:00:01.1: AER: enabled with IRQ 28
[    0.435056] pcieport 0000:00:01.2: PME: Signaling with IRQ 29
[    0.435137] pcieport 0000:00:01.2: AER: enabled with IRQ 29
[    0.435231] pcieport 0000:00:03.1: PME: Signaling with IRQ 30
[    0.435261] pcieport 0000:00:03.1: AER: enabled with IRQ 30
[    0.435392] pcieport 0000:00:07.1: PME: Signaling with IRQ 32
[    0.435421] pcieport 0000:00:07.1: AER: enabled with IRQ 32
[    0.435498] pcieport 0000:00:08.1: PME: Signaling with IRQ 33
[    0.435530] pcieport 0000:00:08.1: AER: enabled with IRQ 33
[    0.436526] pcieport 0000:05:01.0: pciehp: Slot #1 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    0.436952] pcieport 0000:05:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    0.438096] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    0.440331] Estimated ratio of average max frequency by base frequency (times 1024): 1165
[    0.440340] Monitor-Mwait will be used to enter C-1 state
[    0.440344] ACPI: \_SB_.PLTF.C000: Found 2 idle states
[    0.440416] ACPI: \_SB_.PLTF.C002: Found 2 idle states
[    0.440479] ACPI: \_SB_.PLTF.C004: Found 2 idle states
[    0.440538] ACPI: \_SB_.PLTF.C006: Found 2 idle states
[    0.440593] ACPI: \_SB_.PLTF.C008: Found 2 idle states
[    0.440634] ACPI: \_SB_.PLTF.C00A: Found 2 idle states
[    0.440690] ACPI: \_SB_.PLTF.C00C: Found 2 idle states
[    0.440747] ACPI: \_SB_.PLTF.C00E: Found 2 idle states
[    0.440805] ACPI: \_SB_.PLTF.C001: Found 2 idle states
[    0.440864] ACPI: \_SB_.PLTF.C003: Found 2 idle states
[    0.440920] ACPI: \_SB_.PLTF.C005: Found 2 idle states
[    0.440976] ACPI: \_SB_.PLTF.C007: Found 2 idle states
[    0.441037] ACPI: \_SB_.PLTF.C009: Found 2 idle states
[    0.441094] ACPI: \_SB_.PLTF.C00B: Found 2 idle states
[    0.441155] ACPI: \_SB_.PLTF.C00D: Found 2 idle states
[    0.441201] ACPI: \_SB_.PLTF.C00F: Found 2 idle states
[    0.441292] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.441345] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    0.442096] AMD-Vi: AMD IOMMUv2 loaded and initialized
[    0.442507] wireguard: WireGuard 1.0.0 loaded. See www.wireguard.com for information.
[    0.442507] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
[    0.442514] rtc_cmos 00:02: RTC can wake from S4
[    0.442681] rtc_cmos 00:02: registered as rtc0
[    0.442708] rtc_cmos 00:02: setting system clock to 2023-01-23T22:57:13 UTC (1674514633)
[    0.442724] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    0.442767] ledtrig-cpu: registered to indicate activity on CPUs
[    0.442777] vesafb: mode is 1920x1080x32, linelength=7680, pages=0
[    0.442778] vesafb: scrolling: redraw
[    0.442779] vesafb: Truecolor: size=0:8:8:8, shift=0:16:8:0
[    0.442784] vesafb: framebuffer at 0xc0000000, mapped to 0x00000000eb40729b, using 8128k, total 8128k
[    0.442818] Console: switching to colour frame buffer device 240x67
[    0.497043] fb0: VESA VGA frame buffer device
[    0.497060] drop_monitor: Initializing network drop monitor service
[    0.497119] NET: Registered PF_INET6 protocol family
[    0.498521] Segment Routing with IPv6
[    0.498524] In-situ OAM (IOAM) with IPv6
[    0.498533] NET: Registered PF_PACKET protocol family
[    0.499017] microcode: CPU0: patch_level=0x0a201009
[    0.499020] microcode: CPU1: patch_level=0x0a201009
[    0.499024] microcode: CPU2: patch_level=0x0a201009
[    0.499028] microcode: CPU3: patch_level=0x0a201009
[    0.499032] microcode: CPU4: patch_level=0x0a201009
[    0.499034] microcode: CPU5: patch_level=0x0a201009
[    0.499037] microcode: CPU6: patch_level=0x0a201009
[    0.499041] microcode: CPU7: patch_level=0x0a201009
[    0.499044] microcode: CPU8: patch_level=0x0a201009
[    0.499046] microcode: CPU9: patch_level=0x0a201009
[    0.499049] microcode: CPU10: patch_level=0x0a201009
[    0.499051] microcode: CPU11: patch_level=0x0a201009
[    0.499054] microcode: CPU12: patch_level=0x0a201009
[    0.499056] microcode: CPU13: patch_level=0x0a201009
[    0.499059] microcode: CPU14: patch_level=0x0a201009
[    0.499062] microcode: CPU15: patch_level=0x0a201009
[    0.499063] microcode: Microcode Update Driver: v2.2.
[    0.499065] IPI shorthand broadcast: enabled
[    0.499076] sched_clock: Marking stable (498777988, 216361)->(654280234, -155285885)
[    0.499246] registered taskstats version 1
[    0.499306] Loading compiled-in X.509 certificates
[    0.500796] Loaded X.509 cert 'Build time autogenerated kernel key: a8e7f9ada698a429bbcb2f1d1acced85e30489ab'
[    0.500877] zswap: loaded using pool lz4/zbud
[    0.500934] Key type .fscrypt registered
[    0.500935] Key type fscrypt-provisioning registered
[    0.500940] Key type big_key registered
[    0.501548] PM:   Magic number: 7:475:1008
[    0.501624] RAS: Correctable Errors collector initialized.
[    0.502648] Freeing unused decrypted memory: 2036K
[    0.502811] Freeing unused kernel image (initmem) memory: 1760K
[    0.521482] Write protecting the kernel read-only data: 18432k
[    0.521748] Freeing unused kernel image (text/rodata gap) memory: 2040K
[    0.521809] Freeing unused kernel image (rodata/data gap) memory: 508K
[    0.521812] Run /init as init process
[    0.521813]   with arguments:
[    0.521813]     /init
[    0.521814]   with environment:
[    0.521814]     HOME=/
[    0.521815]     TERM=linux
[    0.521815]     BOOT_IMAGE=/vmlinuz-linux-amd
[    0.565549] SCSI subsystem initialized
[    0.567870] ACPI: bus type USB registered
[    0.567881] usbcore: registered new interface driver usbfs
[    0.567886] usbcore: registered new interface driver hub
[    0.567899] usbcore: registered new device driver usb
[    0.570701] libata version 3.00 loaded.
[    0.572794] nvme nvme0: pci function 0000:01:00.0
[    0.572832] nvme nvme1: pci function 0000:4c:00.0
[    0.573299] xhci_hcd 0000:02:00.0: xHCI Host Controller
[    0.573303] xhci_hcd 0000:02:00.0: new USB bus registered, assigned bus number 1
[    0.573433] ahci 0000:02:00.1: version 3.0
[    0.573516] ahci 0000:02:00.1: SSS flag set, parallel bus scan disabled
[    0.573567] ahci 0000:02:00.1: AHCI 0001.0301 32 slots 6 ports 6 Gbps 0x3f impl SATA mode
[    0.573568] ahci 0000:02:00.1: flags: 64bit ncq sntf stag pm led clo only pmp pio slum part sxs deso sadm sds apst 
[    0.573796] scsi host0: ahci
[    0.573850] scsi host1: ahci
[    0.573885] scsi host2: ahci
[    0.573918] scsi host3: ahci
[    0.573951] scsi host4: ahci
[    0.573984] scsi host5: ahci
[    0.573999] ata1: SATA max UDMA/133 abar m131072@0xef880000 port 0xef880100 irq 57
[    0.574001] ata2: SATA max UDMA/133 abar m131072@0xef880000 port 0xef880180 irq 57
[    0.574002] ata3: SATA max UDMA/133 abar m131072@0xef880000 port 0xef880200 irq 57
[    0.574004] ata4: SATA max UDMA/133 abar m131072@0xef880000 port 0xef880280 irq 57
[    0.574005] ata5: SATA max UDMA/133 abar m131072@0xef880000 port 0xef880300 irq 57
[    0.574006] ata6: SATA max UDMA/133 abar m131072@0xef880000 port 0xef880380 irq 57
[    0.581874] nvme nvme0: missing or invalid SUBNQN field.
[    0.581888] nvme nvme0: Shutdown timeout set to 8 seconds
[    0.589626] nvme nvme1: Shutdown timeout set to 8 seconds
[    0.608174] nvme nvme0: 32/0/0 default/read/poll queues
[    0.608551] nvme nvme1: allocated 64 MiB host memory buffer.
[    0.612421]  nvme0n1: p1 p2 p3 p4 p5
[    0.655438] nvme nvme1: 12/0/0 default/read/poll queues
[    0.662251]  nvme1n1: p1 p2 p3
[    0.670375] xhci_hcd 0000:02:00.0: hcc params 0x0200ef81 hci version 0x110 quirks 0x0000000000000410
[    0.670670] xhci_hcd 0000:02:00.0: xHCI Host Controller
[    0.670672] xhci_hcd 0000:02:00.0: new USB bus registered, assigned bus number 2
[    0.670673] xhci_hcd 0000:02:00.0: Host supports USB 3.1 Enhanced SuperSpeed
[    0.670755] hub 1-0:1.0: USB hub found
[    0.670777] hub 1-0:1.0: 10 ports detected
[    0.670915] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    0.670951] hub 2-0:1.0: USB hub found
[    0.670957] hub 2-0:1.0: 4 ports detected
[    0.671054] xhci_hcd 0000:29:00.0: xHCI Host Controller
[    0.671057] xhci_hcd 0000:29:00.0: new USB bus registered, assigned bus number 3
[    0.672209] xhci_hcd 0000:29:00.0: hcc params 0x200077c1 hci version 0x110 quirks 0x0000000200009810
[    0.672515] xhci_hcd 0000:29:00.0: xHCI Host Controller
[    0.672517] xhci_hcd 0000:29:00.0: new USB bus registered, assigned bus number 4
[    0.672518] xhci_hcd 0000:29:00.0: Host supports USB 3.1 Enhanced SuperSpeed
[    0.672568] hub 3-0:1.0: USB hub found
[    0.672574] hub 3-0:1.0: 2 ports detected
[    0.672659] hub 4-0:1.0: USB hub found
[    0.672666] hub 4-0:1.0: 2 ports detected
[    0.672744] xhci_hcd 0000:58:00.3: xHCI Host Controller
[    0.672747] xhci_hcd 0000:58:00.3: new USB bus registered, assigned bus number 5
[    0.672845] xhci_hcd 0000:58:00.3: hcc params 0x0278ffe5 hci version 0x110 quirks 0x0000000000000410
[    0.673096] xhci_hcd 0000:58:00.3: xHCI Host Controller
[    0.673097] xhci_hcd 0000:58:00.3: new USB bus registered, assigned bus number 6
[    0.673099] xhci_hcd 0000:58:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[    0.673152] hub 5-0:1.0: USB hub found
[    0.673157] hub 5-0:1.0: 4 ports detected
[    0.673252] usb usb6: We don't know the algorithms for LPM for this host, disabling LPM.
[    0.673290] hub 6-0:1.0: USB hub found
[    0.673295] hub 6-0:1.0: 4 ports detected
[    0.889161] ata1: SATA link down (SStatus 0 SControl 300)
[    0.923804] usb 5-1: new full-speed USB device number 2 using xhci_hcd
[    0.923809] usb 1-2: new full-speed USB device number 2 using xhci_hcd
[    1.197236] usb 6-2: new SuperSpeed USB device number 2 using xhci_hcd
[    1.206850] ata2: SATA link down (SStatus 0 SControl 300)
[    1.249244] hub 6-2:1.0: USB hub found
[    1.249511] hub 6-2:1.0: 2 ports detected
[    1.250181] usb usb6-port3: config error
[    1.338773] usb 5-2: new high-speed USB device number 3 using xhci_hcd
[    1.415528] tsc: Refined TSC clocksource calibration: 3792.874 MHz
[    1.415533] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x6d5818a734c, max_idle_ns: 881590694765 ns
[    1.415777] clocksource: Switched to clocksource tsc
[    1.478870] usb 1-5: new full-speed USB device number 3 using xhci_hcd
[    1.537625] hub 5-2:1.0: USB hub found
[    1.538127] hub 5-2:1.0: 2 ports detected
[    1.678873] ata3: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    1.679609] ata3.00: ATA-11: ST10000NM001G-2MW103, SN03, max UDMA/133
[    1.721479] ata3.00: 19532873728 sectors, multi 16: LBA48 NCQ (depth 32), AA
[    1.722040] ata3.00: Features: NCQ-sndrcv
[    1.755367] ata3.00: configured for UDMA/133
[    1.755436] scsi 2:0:0:0: Direct-Access     ATA      ST10000NM001G-2M SN03 PQ: 0 ANSI: 5
[    1.905534] usb 5-2.2: new full-speed USB device number 4 using xhci_hcd
[    2.008865] usb 1-6: new high-speed USB device number 4 using xhci_hcd
[    2.180378] hub 1-6:1.0: USB hub found
[    2.184356] hub 1-6:1.0: 4 ports detected
[    2.228877] ata4: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    2.230896] ata4.00: ATAPI: ASUS    BW-16D1HT, 3.10, max UDMA/133
[    2.233845] ata4.00: configured for UDMA/133
[    2.238946] scsi 3:0:0:0: CD-ROM            ASUS     BW-16D1HT        3.10 PQ: 0 ANSI: 5
[    2.325532] usb 1-7: new full-speed USB device number 5 using xhci_hcd
[    2.638865] usb 1-6.1: new full-speed USB device number 6 using xhci_hcd
[    2.978863] usb 1-8: new full-speed USB device number 7 using xhci_hcd
[    3.148865] usb 5-3: new high-speed USB device number 5 using xhci_hcd
[    3.318864] ata5: failed to resume link (SControl 0)
[    3.318882] ata5: SATA link down (SStatus 0 SControl 0)
[    3.345532] usb 1-6.3: new full-speed USB device number 8 using xhci_hcd
[    3.633057] ata6: SATA link down (SStatus 0 SControl 330)
[    3.637070] sd 2:0:0:0: [sda] 19532873728 512-byte logical blocks: (10.0 TB/9.10 TiB)
[    3.637072] sd 2:0:0:0: [sda] 4096-byte physical blocks
[    3.637076] sd 2:0:0:0: [sda] Write Protect is off
[    3.637076] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    3.637082] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.637088] sd 2:0:0:0: [sda] Preferred minimum I/O size 4096 bytes
[    3.652094] usb 1-10: new high-speed USB device number 9 using xhci_hcd
[    3.721710]  sda: sda1 sda2 sda3 sda4
[    3.721818] sd 2:0:0:0: [sda] Attached SCSI disk
[    3.794073] sr 3:0:0:0: [sr0] scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
[    3.794075] cdrom: Uniform CD-ROM driver Revision: 3.20
[    3.829207] hub 1-10:1.0: USB hub found
[    3.833184] hub 1-10:1.0: 4 ports detected
[    3.840561] sr 3:0:0:0: Attached scsi CD-ROM sr0
[    3.856109] hid: raw HID events driver (C) Jiri Kosina
[    4.030114] usbcore: registered new interface driver usbhid
[    4.030115] usbhid: USB HID core driver
[    4.031045] hid-generic 0003:256C:006D.0001: hiddev0,hidraw0: USB HID v1.11 Device [Tablet Monitor] on usb-0000:02:00.0-2/input0
[    4.031108] input: Tablet Monitor Stylus as /devices/pci0000:00/0000:00:01.2/0000:02:00.0/usb1/1-2/1-2:1.1/0003:256C:006D.0002/input/input0
[    4.031118] input: Tablet Monitor Touchscreen as /devices/pci0000:00/0000:00:01.2/0000:02:00.0/usb1/1-2/1-2:1.1/0003:256C:006D.0002/input/input1
[    4.031129] hid-generic 0003:256C:006D.0002: input,hidraw1: USB HID v1.11 Device [Tablet Monitor] on usb-0000:02:00.0-2/input1
[    4.031184] input: Tablet Monitor Keyboard as /devices/pci0000:00/0000:00:01.2/0000:02:00.0/usb1/1-2/1-2:1.2/0003:256C:006D.0003/input/input2
[    4.085453] hid-generic 0003:256C:006D.0003: input,hidraw2: USB HID v1.0b Keyboard [Tablet Monitor] on usb-0000:02:00.0-2/input2
[    4.085500] input: SOAI USB Gaming Mouse as /devices/pci0000:00/0000:00:01.2/0000:02:00.0/usb1/1-5/1-5:1.0/0003:12C9:2003.0004/input/input3
[    4.085519] hid-generic 0003:12C9:2003.0004: input,hidraw3: USB HID v1.10 Mouse [SOAI USB Gaming Mouse] on usb-0000:02:00.0-5/input0
[    4.085606] input: SOAI USB Gaming Mouse Keyboard as /devices/pci0000:00/0000:00:01.2/0000:02:00.0/usb1/1-5/1-5:1.1/0003:12C9:2003.0005/input/input4
[    4.142216] input: SOAI USB Gaming Mouse as /devices/pci0000:00/0000:00:01.2/0000:02:00.0/usb1/1-5/1-5:1.1/0003:12C9:2003.0005/input/input5
[    4.142254] hid-generic 0003:12C9:2003.0005: input,hiddev1,hidraw4: USB HID v1.10 Keyboard [SOAI USB Gaming Mouse] on usb-0000:02:00.0-5/input1
[    4.142316] hid-generic 0003:12C9:2003.0006: hiddev2,hidraw5: USB HID v1.10 Device [SOAI USB Gaming Mouse] on usb-0000:02:00.0-5/input2
[    4.142412] hid-generic 0003:057E:0337.0007: hiddev3,hidraw6: USB HID v1.10 Device [Nintendo WUP-028] on usb-0000:58:00.3-2.2/input0
[    4.142456] hid-generic 0003:048D:5702.0008: hiddev4,hidraw7: USB HID v1.12 Device [ITE Tech. Inc. ITE Device] on usb-0000:02:00.0-7/input0
[    4.142491] input: Synaptics Hi-Res Audio as /devices/pci0000:00/0000:00:01.2/0000:02:00.0/usb1/1-8/1-8:1.2/0003:0572:1B09.0009/input/input6
[    4.168761] usb 1-10.1: new high-speed USB device number 10 using xhci_hcd
[    4.198798] hid-generic 0003:0572:1B09.0009: input,hidraw8: USB HID v1.11 Device [Synaptics Hi-Res Audio] on usb-0000:02:00.0-8/input2
[    4.198864] input: SEMITEK USB-HID Gaming Keyboard as /devices/pci0000:00/0000:00:01.2/0000:02:00.0/usb1/1-6/1-6.3/1-6.3:1.0/0003:1EA7:0907.000A/input/input7
[    4.255559] hid-generic 0003:1EA7:0907.000A: input,hidraw9: USB HID v1.11 Keyboard [SEMITEK USB-HID Gaming Keyboard] on usb-0000:02:00.0-6.3/input0
[    4.255620] hid-generic 0003:1EA7:0907.000B: hiddev5,hidraw10: USB HID v1.11 Device [SEMITEK USB-HID Gaming Keyboard] on usb-0000:02:00.0-6.3/input1
[    4.255687] input: SEMITEK USB-HID Gaming Keyboard System Control as /devices/pci0000:00/0000:00:01.2/0000:02:00.0/usb1/1-6/1-6.3/1-6.3:1.2/0003:1EA7:0907.000C/input/input8
[    4.294188] hub 1-10.1:1.0: USB hub found
[    4.297165] hub 1-10.1:1.0: 4 ports detected
[    4.312110] input: SEMITEK USB-HID Gaming Keyboard Consumer Control as /devices/pci0000:00/0000:00:01.2/0000:02:00.0/usb1/1-6/1-6.3/1-6.3:1.2/0003:1EA7:0907.000C/input/input9
[    4.312124] input: SEMITEK USB-HID Gaming Keyboard as /devices/pci0000:00/0000:00:01.2/0000:02:00.0/usb1/1-6/1-6.3/1-6.3:1.2/0003:1EA7:0907.000C/input/input10
[    4.312136] input: SEMITEK USB-HID Gaming Keyboard Mouse as /devices/pci0000:00/0000:00:01.2/0000:02:00.0/usb1/1-6/1-6.3/1-6.3:1.2/0003:1EA7:0907.000C/input/input11
[    4.312155] hid-generic 0003:1EA7:0907.000C: input,hidraw11: USB HID v1.11 Keyboard [SEMITEK USB-HID Gaming Keyboard] on usb-0000:02:00.0-6.3/input2
[    4.313305] input: Tablet Monitor as /devices/pci0000:00/0000:00:01.2/0000:02:00.0/usb1/1-2/1-2:1.1/0003:256C:006D.0002/input/input13
[    4.313319] uclogic 0003:256C:006D.0002: input,hidraw0: USB HID v1.11 Device [Tablet Monitor] on usb-0000:02:00.0-2/input1
[    4.326752] input: Tablet Monitor Pen as /devices/pci0000:00/0000:00:01.2/0000:02:00.0/usb1/1-2/1-2:1.0/0003:256C:006D.0001/input/input14
[    4.349029] input: Tablet Monitor Pad as /devices/pci0000:00/0000:00:01.2/0000:02:00.0/usb1/1-2/1-2:1.0/0003:256C:006D.0001/input/input15
[    4.349050] input: Tablet Monitor Touch Strip as /devices/pci0000:00/0000:00:01.2/0000:02:00.0/usb1/1-2/1-2:1.0/0003:256C:006D.0001/input/input16
[    4.349060] input: Tablet Monitor Dial as /devices/pci0000:00/0000:00:01.2/0000:02:00.0/usb1/1-2/1-2:1.0/0003:256C:006D.0001/input/input17
[    4.349067] uclogic 0003:256C:006D.0003: interface is invalid, ignoring
[    4.349092] uclogic 0003:256C:006D.0001: input,hiddev0,hidraw1: USB HID v1.11 Keypad [Tablet Monitor] on usb-0000:02:00.0-2/input0
[    4.402200] usb 1-10.3: new full-speed USB device number 11 using xhci_hcd
[    4.772166] usb 1-10.1.1: new high-speed USB device number 12 using xhci_hcd
[    8.472117] usb 5-3: device descriptor read/64, error -110
[    9.015472] usb 6-4: new SuperSpeed USB device number 3 using xhci_hcd
[    9.202494] usb usb6-port3: config error
[    9.204998] usb-storage 6-4:1.0: USB Mass Storage device detected
[    9.205051] scsi host6: usb-storage 6-4:1.0
[    9.205079] usbcore: registered new interface driver usb-storage
[    9.205705] usbcore: registered new interface driver uas
[    9.847542] usb 1-10.3: can't set config #1, error -110
[    9.893915] EXT4-fs (nvme1n1p2): mounted filesystem with ordered data mode. Quota mode: none.
[    9.951238] systemd[1]: systemd 252.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 +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +XKBCOMMON +UTMP -SYSVINIT default-hierarchy=unified)
[    9.951242] systemd[1]: Detected architecture x86-64.
[    9.952219] systemd[1]: Hostname set to <wayne>.
[   10.004726] systemd[1]: bpf-lsm: BPF LSM hook not enabled in the kernel, BPF LSM not supported
[   10.018810] usb 1-10.1.1: device descriptor read/64, error -110
[   10.021184] systemd-fstab-generator[363]: Mount point  is not a valid path, ignoring.
[   10.022095] systemd-fstab-generator[363]: Mount point  is not a valid path, ignoring.
[   10.022727] systemd-fstab-generator[363]: Mount point  is not a valid path, ignoring.
[   10.022814] systemd-fstab-generator[363]: Failed to create unit file '/run/systemd/generator/-.mount', as it already exists. Duplicate entry in '/etc/fstab'?
[   10.023516] systemd-fstab-generator[363]: Mount point  is not a valid path, ignoring.
[   10.026343] zram: Added device: zram0
[   10.026532] systemd[358]: /usr/lib/systemd/system-generators/systemd-fstab-generator failed with exit status 1.
[   10.081977] systemd[1]: Queued start job for default target Graphical Interface.
[   10.112363] systemd[1]: Created slice Slice /system/getty.
[   10.112550] systemd[1]: Created slice Slice /system/modprobe.
[   10.112705] systemd[1]: Created slice Slice /system/systemd-fsck.
[   10.112861] systemd[1]: Created slice Slice /system/systemd-zram-setup.
[   10.112972] systemd[1]: Created slice User and Session Slice.
[   10.113007] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[   10.113030] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[   10.113109] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[   10.113139] systemd[1]: Reached target Local Encrypted Volumes.
[   10.113147] systemd[1]: Reached target Login Prompts.
[   10.113154] systemd[1]: Reached target Local Integrity Protected Volumes.
[   10.113165] systemd[1]: Reached target Path Units.
[   10.113173] systemd[1]: Reached target Remote File Systems.
[   10.113179] systemd[1]: Reached target Slice Units.
[   10.113193] systemd[1]: Reached target Local Verity Protected Volumes.
[   10.113229] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[   10.113506] systemd[1]: Listening on LVM2 poll daemon socket.
[   10.113921] systemd[1]: Listening on Process Core Dump Socket.
[   10.114635] systemd[1]: Journal Audit Socket was skipped because of an unmet condition check (ConditionSecurity=audit).
[   10.114683] systemd[1]: Listening on Journal Socket (/dev/log).
[   10.114723] systemd[1]: Listening on Journal Socket.
[   10.114946] systemd[1]: Listening on udev Control Socket.
[   10.114979] systemd[1]: Listening on udev Kernel Socket.
[   10.115564] systemd[1]: Mounting Huge Pages File System...
[   10.115893] systemd[1]: Mounting POSIX Message Queue File System...
[   10.116221] systemd[1]: Mounting Kernel Debug File System...
[   10.116541] systemd[1]: Mounting Kernel Trace File System...
[   10.116951] systemd[1]: Starting Create List of Static Device Nodes...
[   10.117286] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[   10.117662] systemd[1]: Starting Load Kernel Module configfs...
[   10.118010] systemd[1]: Starting Load Kernel Module drm...
[   10.118356] systemd[1]: Starting Load Kernel Module fuse...
[   10.118384] systemd[1]: File System Check on Root Device was skipped because of an unmet condition check (ConditionPathIsReadWrite=!/).
[   10.118994] systemd[1]: Starting Journal Service...
[   10.120496] systemd[1]: Starting Load Kernel Modules...
[   10.120928] systemd[1]: Starting Remount Root and Kernel File Systems...
[   10.120961] systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
[   10.121370] systemd[1]: Starting Coldplug All udev Devices...
[   10.121922] systemd[1]: Mounted Huge Pages File System.
[   10.121957] systemd[1]: Mounted POSIX Message Queue File System.
[   10.121989] systemd[1]: Mounted Kernel Debug File System.
[   10.122017] systemd[1]: Mounted Kernel Trace File System.
[   10.122097] systemd[1]: Finished Create List of Static Device Nodes.
[   10.122751] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[   10.122801] systemd[1]: Finished Load Kernel Module configfs.
[   10.123149] systemd[1]: Mounting Kernel Configuration File System...
[   10.123553] EXT4-fs (nvme1n1p2): re-mounted. Quota mode: none.
[   10.123606] EXT4-fs (nvme1n1p2): re-mounted. Quota mode: none.
[   10.123889] systemd[1]: Finished Remount Root and Kernel File Systems.
[   10.123934] systemd[1]: Mounted Kernel Configuration File System.
[   10.123957] systemd[1]: First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
[   10.124701] systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
[   10.125043] systemd[1]: Starting Load/Save Random Seed...
[   10.125067] systemd[1]: Create System Users was skipped because no trigger condition checks were met.
[   10.125406] Asymmetric key parser 'pkcs8' registered
[   10.125434] systemd[1]: Starting Create Static Device Nodes in /dev...
[   10.126356] fuse: init (API version 7.37)
[   10.126616] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[   10.126671] systemd[1]: Finished Load Kernel Module fuse.
[   10.127101] systemd[1]: Mounting FUSE Control File System...
[   10.127963] systemd[1]: Mounted FUSE Control File System.
[   10.128200] systemd[1]: Finished Load Kernel Modules.
[   10.128589] systemd[1]: Starting Apply Kernel Variables...
[   10.131385] systemd[1]: Finished Load/Save Random Seed.
[   10.131430] systemd[1]: First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes).
[   10.139565] ACPI: bus type drm_connector registered
[   10.139868] systemd[1]: Finished Apply Kernel Variables.
[   10.140079] systemd[1]: modprobe@drm.service: Deactivated successfully.
[   10.140134] systemd[1]: Finished Load Kernel Module drm.
[   10.144610] systemd[1]: Finished Create Static Device Nodes in /dev.
[   10.145034] systemd[1]: Starting Rule-based Manager for Device Events and Files...
[   10.153915] systemd[1]: Started Journal Service.
[   10.156248] systemd-journald[385]: Received client request to flush runtime journal.
[   10.197769] zram0: detected capacity change from 0 to 8388608
[   10.200513] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input18
[   10.200564] ACPI: button: Power Button [PWRB]
[   10.200640] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input19
[   10.212129] ACPI: button: Power Button [PWRF]
[   10.215825] scsi 6:0:0:0: Direct-Access     WD       My Book 25EE     4009 PQ: 0 ANSI: 6
[   10.216140] scsi 6:0:0:1: Enclosure         WD       SES Device       4009 PQ: 0 ANSI: 6
[   10.221543] sd 6:0:0:0: [sdb] Very big device. Trying to use READ CAPACITY(16).
[   10.221662] sd 6:0:0:0: [sdb] 19532873728 512-byte logical blocks: (10.0 TB/9.10 TiB)
[   10.221664] sd 6:0:0:0: [sdb] 4096-byte physical blocks
[   10.221942] sd 6:0:0:0: [sdb] Write Protect is off
[   10.221943] sd 6:0:0:0: [sdb] Mode Sense: 47 00 10 08
[   10.222224] sd 6:0:0:0: [sdb] No Caching mode page found
[   10.222226] sd 6:0:0:0: [sdb] Assuming drive cache: write through
[   10.228630] ACPI Warning: SystemIO range 0x0000000000000B00-0x0000000000000B08 conflicts with OpRegion 0x0000000000000B00-0x0000000000000B0F (\GSA1.SMBI) (20220331/utaddress-204)
[   10.228635] ACPI: OSL: Resource conflict; ACPI support missing from driver?
[   10.229999]  sdb: sdb1 sdb2
[   10.231096] Adding 8388604k swap on /dev/nvme1n1p3.  Priority:-2 extents:1 across:8388604k SSFS
[   10.235151] sd 6:0:0:0: [sdb] Attached SCSI disk
[   10.236746] Adding 4194300k swap on /dev/zram0.  Priority:100 extents:1 across:4194300k SSDscFS
[   10.244149] ccp 0000:58:00.1: ccp: unable to access the device: you might be running a broken BIOS.
[   10.244173] ccp 0000:58:00.1: psp enabled
[   10.244456] input: PC Speaker as /devices/platform/pcspkr/input/input20
[   10.245361] igb: Intel(R) Gigabit Ethernet Network Driver
[   10.245363] igb: Copyright (c) 2007-2014 Intel Corporation.
[   10.259758] cryptd: max_cpu_qlen set to 1000
[   10.275433] raid6: avx2x4   gen() 29121 MB/s
[   10.279144] AVX2 version of gcm_enc/dec engaged.
[   10.279418] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[   10.279706] AES CTR mode by8 optimization enabled
[   10.279713] pps pps0: new PPS source ptp0
[   10.279749] igb 0000:51:00.0: added PHC on eth0
[   10.279751] igb 0000:51:00.0: Intel(R) Gigabit Ethernet Network Connection
[   10.279752] igb 0000:51:00.0: eth0: (PCIe:2.5Gb/s:Width x1) 18:c0:4d:36:be:51
[   10.279755] igb 0000:51:00.0: eth0: PBA No: FFFFFF-0FF
[   10.279756] igb 0000:51:00.0: Using MSI-X interrupts. 2 rx queue(s), 2 tx queue(s)
[   10.281781] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[   10.283686] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[   10.283690] cfg80211: failed to load regulatory.db
[   10.294308] mousedev: PS/2 mouse device common for all mice
[   10.301680] Intel(R) Wireless WiFi driver for Linux
[   10.301885] snd_hda_intel 0000:56:00.1: Handle vga_switcheroo audio client
[   10.301887] snd_hda_intel 0000:56:00.1: Force to non-snoop mode
[   10.334453] raid6: avx2x2   gen() 22273 MB/s
[   10.356249] Bluetooth: Core ver 2.22
[   10.356281] NET: Registered PF_BLUETOOTH protocol family
[   10.356282] Bluetooth: HCI device and connection manager initialized
[   10.356286] Bluetooth: HCI socket layer initialized
[   10.356288] Bluetooth: L2CAP socket layer initialized
[   10.356294] Bluetooth: SCO socket layer initialized
[   10.359244] pps pps1: new PPS source ptp1
[   10.359305] igb 0000:52:00.0: added PHC on eth1
[   10.359307] igb 0000:52:00.0: Intel(R) Gigabit Ethernet Network Connection
[   10.359309] igb 0000:52:00.0: eth1: (PCIe:2.5Gb/s:Width x1) 18:c0:4d:36:be:52
[   10.359311] igb 0000:52:00.0: eth1: PBA No: FFFFFF-0FF
[   10.359312] igb 0000:52:00.0: Using MSI-X interrupts. 2 rx queue(s), 2 tx queue(s)
[   10.379400] iwlwifi 0000:53:00.0: api flags index 2 larger than supported by driver
[   10.379430] iwlwifi 0000:53:00.0: TLV_FW_FSEQ_VERSION: FSEQ Version: 89.3.35.37
[   10.379933] iwlwifi 0000:53:00.0: loaded firmware version 72.daa05125.0 cc-a0-72.ucode op_mode iwlmvm
[   10.388761] raid6: avx2x1   gen() 16641 MB/s
[   10.388764] raid6: using algorithm avx2x4 gen() 29121 MB/s
[   10.395964] usb-storage 1-10.1.1:1.0: USB Mass Storage device detected
[   10.396087] scsi host7: usb-storage 1-10.1.1:1.0
[   10.445447] raid6: .... xor() 6165 MB/s, rmw enabled
[   10.445452] raid6: using avx2x2 recovery algorithm
[   10.460689] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.1/0000:54:00.0/0000:55:00.0/0000:56:00.1/sound/card0/input21
[   10.460728] input: HDA ATI HDMI HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.1/0000:54:00.0/0000:55:00.0/0000:56:00.1/sound/card0/input22
[   10.460760] input: HDA ATI HDMI HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:03.1/0000:54:00.0/0000:55:00.0/0000:56:00.1/sound/card0/input23
[   10.460790] input: HDA ATI HDMI HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:03.1/0000:54:00.0/0000:55:00.0/0000:56:00.1/sound/card0/input24
[   10.460820] input: HDA ATI HDMI HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:03.1/0000:54:00.0/0000:55:00.0/0000:56:00.1/sound/card0/input25
[   10.460850] input: HDA ATI HDMI HDMI/DP,pcm=11 as /devices/pci0000:00/0000:00:03.1/0000:54:00.0/0000:55:00.0/0000:56:00.1/sound/card0/input26
[   10.462102] usb 1-10.4: new full-speed USB device number 13 using xhci_hcd
[   10.463453] input: Microsoft X-Box One pad (Firmware 2015) as /devices/pci0000:00/0000:00:08.1/0000:58:00.3/usb5/5-1/5-1:1.0/input/input27
[   10.463540] usbcore: registered new interface driver xpad
[   10.483885] mc: Linux media interface: v0.10
[   10.488436] SVM: TSC scaling supported
[   10.488438] kvm: Nested Virtualization enabled
[   10.488439] SVM: kvm: Nested Paging enabled
[   10.488453] SVM: Virtual VMLOAD VMSAVE supported
[   10.488454] SVM: Virtual GIF supported
[   10.488454] SVM: LBR virtualization supported
[   10.530635] xor: automatically using best checksumming function   avx       
[   10.532153] snd_hda_codec_realtek hdaudioC1D0: autoconfig for ALC1220: line_outs=3 (0x14/0x15/0x16/0x0/0x0) type:line
[   10.532156] snd_hda_codec_realtek hdaudioC1D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[   10.532158] snd_hda_codec_realtek hdaudioC1D0:    hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
[   10.532160] snd_hda_codec_realtek hdaudioC1D0:    mono: mono_out=0x0
[   10.532166] snd_hda_codec_realtek hdaudioC1D0:    dig-out=0x1e/0x0
[   10.532167] snd_hda_codec_realtek hdaudioC1D0:    inputs:
[   10.532168] snd_hda_codec_realtek hdaudioC1D0:      Front Mic=0x19
[   10.532169] snd_hda_codec_realtek hdaudioC1D0:      Rear Mic=0x18
[   10.532170] snd_hda_codec_realtek hdaudioC1D0:      Line=0x1a
[   10.532386] usbcore: registered new interface driver btusb
[   10.533306] Bluetooth: hci0: Firmware revision 0.0 build 250 week 17 2020
[   10.535555] scsi 6:0:0:1: Wrong diagnostic page; asked for 1 got 8
[   10.535875] scsi 6:0:0:1: Failed to get diagnostic page 0x1
[   10.536160] scsi 6:0:0:1: Failed to bind enclosure -19
[   10.536439] ses 6:0:0:1: Attached Enclosure device
[   10.537027] MCE: In-kernel MCE decoding enabled.
[   10.544879] input: HD-Audio Generic Front Mic as /devices/pci0000:00/0000:00:08.1/0000:58:00.4/sound/card1/input28
[   10.544919] input: HD-Audio Generic Rear Mic as /devices/pci0000:00/0000:00:08.1/0000:58:00.4/sound/card1/input29
[   10.544946] input: HD-Audio Generic Line as /devices/pci0000:00/0000:00:08.1/0000:58:00.4/sound/card1/input30
[   10.544974] input: HD-Audio Generic Line Out Front as /devices/pci0000:00/0000:00:08.1/0000:58:00.4/sound/card1/input31
[   10.544999] input: HD-Audio Generic Line Out Surround as /devices/pci0000:00/0000:00:08.1/0000:58:00.4/sound/card1/input32
[   10.545024] input: HD-Audio Generic Line Out CLFE as /devices/pci0000:00/0000:00:08.1/0000:58:00.4/sound/card1/input33
[   10.545049] input: HD-Audio Generic Front Headphone as /devices/pci0000:00/0000:00:08.1/0000:58:00.4/sound/card1/input34
[   10.665570] usbcore: registered new interface driver snd-usb-audio
[   10.679404] Btrfs loaded, crc32c=crc32c-intel, zoned=yes, fsverity=no
[   10.685057] iwlwifi 0000:53:00.0: Detected Intel(R) Wi-Fi 6 AX200 160MHz, REV=0x340
[   10.685104] thermal thermal_zone0: failed to read out thermal zone (-61)
[   10.686720] BTRFS: device label root devid 1 transid 3480 /dev/nvme0n1p2 scanned by systemd-udevd (454)
[   10.810399] iwlwifi 0000:53:00.0: Detected RF HR B3, rfid=0x10a100
[   10.874906] iwlwifi 0000:53:00.0: base HW address: 34:cf:f6:b3:d1:98
[   10.888991] igb 0000:52:00.0 enp82s0: renamed from eth1
[   11.052095] usb 1-10.1.4: new high-speed USB device number 14 using xhci_hcd
[   11.122287] igb 0000:51:00.0 enp81s0: renamed from eth0
[   11.282345] usb-storage 1-10.1.4:1.0: USB Mass Storage device detected
[   11.282394] scsi host8: usb-storage 1-10.1.4:1.0
[   11.385838] EXT4-fs (sda3): mounted filesystem with ordered data mode. Quota mode: none.
[   11.415643] scsi 7:0:0:0: Direct-Access     General  UDisk            5.00 PQ: 0 ANSI: 2
[   11.416051] sd 7:0:0:0: [sdc] 61440000 512-byte logical blocks: (31.5 GB/29.3 GiB)
[   11.416170] sd 7:0:0:0: [sdc] Write Protect is off
[   11.416172] sd 7:0:0:0: [sdc] Mode Sense: 0b 00 00 08
[   11.416291] sd 7:0:0:0: [sdc] No Caching mode page found
[   11.416292] sd 7:0:0:0: [sdc] Assuming drive cache: write through
[   11.467580]  sdc: sdc1 sdc2
[   11.467781] sd 7:0:0:0: [sdc] Attached SCSI removable disk
[   11.873041] loop: module loaded
[   11.873593] loop0: detected capacity change from 0 to 238992
[   11.873734] loop1: detected capacity change from 0 to 129584
[   11.873814] loop2: detected capacity change from 0 to 129496
[   11.873926] loop3: detected capacity change from 0 to 19272
[   11.875691] [drm] amdgpu kernel modesetting enabled.
[   11.876380] loop4: detected capacity change from 0 to 448512
[   11.876491] loop5: detected capacity change from 0 to 33136
[   11.876633] loop6: detected capacity change from 0 to 19272
[   11.876672] loop7: detected capacity change from 0 to 40
[   11.877270] loop10: detected capacity change from 0 to 113832
[   11.877302] loop9: detected capacity change from 0 to 710760
[   11.877585] loop11: detected capacity change from 0 to 187776
[   11.877653] loop15: detected capacity change from 0 to 113888
[   11.878435] loop8: detected capacity change from 0 to 238984
[   11.878775] loop14: detected capacity change from 0 to 661400
[   11.879084] loop17: detected capacity change from 0 to 927864
[   11.879371] loop16: detected capacity change from 0 to 925648
[   11.879658] loop18: detected capacity change from 0 to 337424
[   11.879968] loop19: detected capacity change from 0 to 166424
[   11.880261] loop13: detected capacity change from 0 to 710768
[   11.880654] loop22: detected capacity change from 0 to 8
[   11.880975] loop21: detected capacity change from 0 to 953840
[   11.882334] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[   11.883042] loop20: detected capacity change from 0 to 948568
[   11.889461] amdgpu: Ignoring ACPI CRAT on non-APU system
[   11.889467] amdgpu: Virtual CRAT table created for CPU
[   11.889483] amdgpu: Topology: Add CPU node
[   11.889927] loop12: detected capacity change from 0 to 709280
[   11.895597] Console: switching to colour dummy device 80x25
[   11.895665] amdgpu 0000:56:00.0: vgaarb: deactivate vga console
[   11.895800] [drm] initializing kernel modesetting (SIENNA_CICHLID 0x1002:0x73BF 0x1462:0x3952 0xC0).
[   11.895817] [drm] register mmio base: 0xEFC00000
[   11.895818] [drm] register mmio size: 1048576
[   11.900726] [drm] add ip block number 0 <nv_common>
[   11.900730] [drm] add ip block number 1 <gmc_v10_0>
[   11.900731] [drm] add ip block number 2 <navi10_ih>
[   11.900732] [drm] add ip block number 3 <psp>
[   11.900733] [drm] add ip block number 4 <smu>
[   11.900735] [drm] add ip block number 5 <dm>
[   11.900736] [drm] add ip block number 6 <gfx_v10_0>
[   11.900737] [drm] add ip block number 7 <sdma_v5_2>
[   11.900738] [drm] add ip block number 8 <vcn_v3_0>
[   11.900739] [drm] add ip block number 9 <jpeg_v3_0>
[   11.900790] amdgpu 0000:56:00.0: No more image in the PCI ROM
[   11.900817] amdgpu 0000:56:00.0: amdgpu: Fetched VBIOS from ROM BAR
[   11.900819] amdgpu: ATOM BIOS: 113-V395TRIO-4OC
[   11.900835] [drm] VCN(0) decode is enabled in VM mode
[   11.900837] [drm] VCN(1) decode is enabled in VM mode
[   11.900837] [drm] VCN(0) encode is enabled in VM mode
[   11.900839] [drm] VCN(1) encode is enabled in VM mode
[   11.900841] [drm] JPEG decode is enabled in VM mode
[   11.900842] amdgpu 0000:56:00.0: amdgpu: Trusted Memory Zone (TMZ) feature disabled as experimental (default)
[   11.900882] amdgpu 0000:56:00.0: amdgpu: MEM ECC is not presented.
[   11.900883] amdgpu 0000:56:00.0: amdgpu: SRAM ECC is not presented.
[   11.900899] [drm] vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit
[   11.900906] amdgpu 0000:56:00.0: amdgpu: VRAM: 16368M 0x0000008000000000 - 0x00000083FEFFFFFF (16368M used)
[   11.900908] amdgpu 0000:56:00.0: amdgpu: GART: 512M 0x0000000000000000 - 0x000000001FFFFFFF
[   11.900910] amdgpu 0000:56:00.0: amdgpu: AGP: 267894784M 0x0000008400000000 - 0x0000FFFFFFFFFFFF
[   11.900920] [drm] Detected VRAM RAM=16368M, BAR=256M
[   11.900921] [drm] RAM width 256bits GDDR6
[   11.900979] [drm] amdgpu: 16368M of VRAM memory ready
[   11.900982] [drm] amdgpu: 32131M of GTT memory ready.
[   11.900994] [drm] GART: num cpu pages 131072, num gpu pages 131072
[   11.901156] [drm] PCIE GART of 512M enabled (table at 0x0000008000800000).
[   11.910665] amdgpu 0000:56:00.0: amdgpu: PSP runtime database doesn't exist
[   11.910672] amdgpu 0000:56:00.0: amdgpu: PSP runtime database doesn't exist
[   12.227422] cdc_acm 1-10.4:1.0: ttyACM0: USB ACM device
[   12.227452] usbcore: registered new interface driver cdc_acm
[   12.227453] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
[   12.299121] scsi 8:0:0:0: Direct-Access     Multiple Card  Reader     1.00 PQ: 0 ANSI: 0
[   12.299602] sd 8:0:0:0: [sdd] Media removed, stopped polling
[   12.299939] sd 8:0:0:0: [sdd] Attached SCSI removable disk
[   13.336365] ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001)
[   13.336369] ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001)
[   13.336370] ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001)
[   13.336371] ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001)
[   13.336372] ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001)
[   13.336373] ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001)
[   13.336374] ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001)
[   13.552103] ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001)
[   13.552108] ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001)
[   13.552110] ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001)
[   13.552111] ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001)
[   13.552111] ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001)
[   13.552112] ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001)
[   13.552113] ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001)
[   14.230638] amdgpu 0000:56:00.0: amdgpu: STB initialized to 2048 entries
[   14.233813] [drm] Loading DMUB firmware via PSP: version=0x02020017
[   14.244270] [drm] use_doorbell being set to: [true]
[   14.244281] [drm] use_doorbell being set to: [true]
[   14.244289] [drm] use_doorbell being set to: [true]
[   14.244298] [drm] use_doorbell being set to: [true]
[   14.259825] [drm] Found VCN firmware Version ENC: 1.26 DEC: 2 VEP: 0 Revision: 0
[   14.259834] amdgpu 0000:56:00.0: amdgpu: Will use PSP to load VCN firmware
[   14.326464] [drm] reserve 0xa00000 from 0x8001000000 for PSP TMR
[   14.471255] amdgpu 0000:56:00.0: amdgpu: SECUREDISPLAY: securedisplay ta ucode is not available
[   14.471276] amdgpu 0000:56:00.0: amdgpu: smu driver if version = 0x00000040, smu fw if version = 0x00000041, smu fw program = 0, version = 0x003a5600 (58.86.0)
[   14.471279] amdgpu 0000:56:00.0: amdgpu: SMU driver if version not matched
[   14.471310] amdgpu 0000:56:00.0: amdgpu: use vbios provided pptable
[   14.545682] amdgpu 0000:56:00.0: amdgpu: SMU is initialized successfully!
[   14.545916] [drm] Display Core initialized with v3.2.207!
[   14.547182] [drm] DMUB hardware initialized: version=0x02020017
[   14.550153] snd_hda_intel 0000:56:00.1: bound 0000:56:00.0 (ops amdgpu_dm_audio_component_bind_ops [amdgpu])
[   14.800171] [drm] kiq ring mec 2 pipe 1 q 0
[   14.807792] [drm] VCN decode and encode initialized successfully(under DPG Mode).
[   14.808024] [drm] JPEG decode initialized successfully.
[   14.809082] kfd kfd: amdgpu: Allocated 3969056 bytes on gart
[   14.809183] amdgpu: sdma_bitmap: ffff
[   14.849734] memmap_init_zone_device initialised 4194304 pages in 20ms
[   14.849740] amdgpu: HMM registered 16368MB device memory
[   14.849794] amdgpu: SRAT table not found
[   14.849795] amdgpu: Virtual CRAT table created for GPU
[   14.849950] amdgpu: Topology: Add dGPU node [0x73bf:0x1002]
[   14.849952] kfd kfd: amdgpu: added device 1002:73bf
[   14.849979] amdgpu 0000:56:00.0: amdgpu: SE 4, SH per SE 2, CU per SH 10, active_cu_number 80
[   14.850036] amdgpu 0000:56:00.0: amdgpu: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
[   14.850038] amdgpu 0000:56:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0
[   14.850038] amdgpu 0000:56:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0
[   14.850039] amdgpu 0000:56:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 5 on hub 0
[   14.850039] amdgpu 0000:56:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 6 on hub 0
[   14.850040] amdgpu 0000:56:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 7 on hub 0
[   14.850040] amdgpu 0000:56:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 8 on hub 0
[   14.850041] amdgpu 0000:56:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 9 on hub 0
[   14.850042] amdgpu 0000:56:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 10 on hub 0
[   14.850042] amdgpu 0000:56:00.0: amdgpu: ring kiq_2.1.0 uses VM inv eng 11 on hub 0
[   14.850043] amdgpu 0000:56:00.0: amdgpu: ring sdma0 uses VM inv eng 12 on hub 0
[   14.850044] amdgpu 0000:56:00.0: amdgpu: ring sdma1 uses VM inv eng 13 on hub 0
[   14.850044] amdgpu 0000:56:00.0: amdgpu: ring sdma2 uses VM inv eng 14 on hub 0
[   14.850045] amdgpu 0000:56:00.0: amdgpu: ring sdma3 uses VM inv eng 15 on hub 0
[   14.850045] amdgpu 0000:56:00.0: amdgpu: ring vcn_dec_0 uses VM inv eng 0 on hub 1
[   14.850046] amdgpu 0000:56:00.0: amdgpu: ring vcn_enc_0.0 uses VM inv eng 1 on hub 1
[   14.850046] amdgpu 0000:56:00.0: amdgpu: ring vcn_enc_0.1 uses VM inv eng 4 on hub 1
[   14.850047] amdgpu 0000:56:00.0: amdgpu: ring vcn_dec_1 uses VM inv eng 5 on hub 1
[   14.850047] amdgpu 0000:56:00.0: amdgpu: ring vcn_enc_1.0 uses VM inv eng 6 on hub 1
[   14.850048] amdgpu 0000:56:00.0: amdgpu: ring vcn_enc_1.1 uses VM inv eng 7 on hub 1
[   14.850048] amdgpu 0000:56:00.0: amdgpu: ring jpeg_dec uses VM inv eng 8 on hub 1
[   14.851368] amdgpu 0000:56:00.0: amdgpu: Using BACO for runtime pm
[   14.851628] [drm] Initialized amdgpu 3.49.0 20150101 for 0000:56:00.0 on minor 0
[   14.862512] fbcon: amdgpudrmfb (fb0) is primary device
[   14.862655] [drm] DSC precompute is not needed.
[   15.043051] Console: switching to colour frame buffer device 240x67
[   15.055155] amdgpu 0000:56:00.0: [drm] fb0: amdgpudrmfb frame buffer device
[   16.186053] igb 0000:52:00.0 enp82s0: igb: enp82s0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX/TX
[   16.292387] IPv6: ADDRCONF(NETDEV_CHANGE): enp82s0: link becomes ready
[   42.068738] input: Huion Tablet as /devices/virtual/misc/uhid/0003:256C:FFFF.000D/input/input35
[   42.068739] input: Huion Tablet as /devices/virtual/misc/uhid/0003:256C:FFFF.000E/input/input36
[   42.068901] input: HUION 256C PEN STYLUS as /devices/virtual/misc/uhid/0003:256C:FFFF.000F/input/input37
[   42.068992] input: Huion keyboard as /devices/virtual/input/input38
[   42.070161] hid-generic 0003:256C:FFFF.000E: input,hidraw2: USB HID v0.00 Device [Huion Tablet] on 
[   42.071121] hid-generic 0003:256C:FFFF.000D: input,hidraw12: USB HID v0.00 Device [Huion Tablet] on 
[   42.071150] hid-generic 0003:256C:FFFF.000F: input,hidraw13: USB HID v0.00 Device [HUION 256C PEN STYLUS] on 
[   42.072591] input: Huion mouse as /devices/virtual/input/input39
[   42.150670] input: HUION 256C PEN STYLUS as /devices/virtual/misc/uhid/0003:256C:FFFF.0010/input/input40
[   42.150745] hid-generic 0003:256C:FFFF.0010: input,hidraw13: USB HID v0.00 Device [HUION 256C PEN STYLUS] on 
[   42.243265] loop23: detected capacity change from 0 to 8
[   43.774515] systemd-journald[385]: Time jumped backwards, rotating.
[   45.040363] input: input-remapper mouse as /devices/virtual/input/input41
[   45.171588] input: input-remapper SOAI USB Gaming Mouse Keyboard forwarded as /devices/virtual/input/input42
[   46.902332] input: HUION 256C PEN STYLUS as /devices/virtual/misc/uhid/0003:256C:FFFF.0011/input/input43
[   46.902390] hid-generic 0003:256C:FFFF.0011: input,hidraw1: USB HID v0.00 Device [HUION 256C PEN STYLUS] on 
[  258.019614] sr 3:0:0:0: [sr0] tag#24 UNKNOWN(0x2003) Result: hostbyte=0x00 driverbyte=DRIVER_OK cmd_age=0s
[  258.019619] sr 3:0:0:0: [sr0] tag#24 Sense Key : 0x2 [current] 
[  258.019620] sr 3:0:0:0: [sr0] tag#24 ASC=0x3a ASCQ=0x1 
[  258.019621] sr 3:0:0:0: [sr0] tag#24 CDB: opcode=0x28 28 00 00 00 00 00 00 00 08 00
[  258.019622] I/O error, dev sr0, sector 0 op 0x0:(READ) flags 0x80700 phys_seg 1 prio class 2
[  258.019643] sr 3:0:0:0: [sr0] tag#25 unaligned transfer
[  258.019646] I/O error, dev sr0, sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 2
[  258.019649] Buffer I/O error on dev sr0, logical block 0, async page read
[  258.019657] sr 3:0:0:0: [sr0] tag#26 unaligned transfer
[  258.019658] I/O error, dev sr0, sector 1 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 2
[  258.019659] Buffer I/O error on dev sr0, logical block 1, async page read
[  258.019663] sr 3:0:0:0: [sr0] tag#27 unaligned transfer
[  258.019664] I/O error, dev sr0, sector 2 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 2
[  258.019665] Buffer I/O error on dev sr0, logical block 2, async page read
[  258.019669] sr 3:0:0:0: [sr0] tag#28 unaligned transfer
[  258.019669] I/O error, dev sr0, sector 3 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 2
[  258.019670] Buffer I/O error on dev sr0, logical block 3, async page read
[  258.019674] sr 3:0:0:0: [sr0] tag#29 unaligned transfer
[  258.019674] I/O error, dev sr0, sector 4 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 2
[  258.019675] Buffer I/O error on dev sr0, logical block 4, async page read
[  258.019678] sr 3:0:0:0: [sr0] tag#30 unaligned transfer
[  258.019679] I/O error, dev sr0, sector 5 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 2
[  258.019680] Buffer I/O error on dev sr0, logical block 5, async page read
[  258.019683] sr 3:0:0:0: [sr0] tag#0 unaligned transfer
[  258.019684] I/O error, dev sr0, sector 6 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 2
[  258.019685] Buffer I/O error on dev sr0, logical block 6, async page read
[  258.019688] sr 3:0:0:0: [sr0] tag#1 unaligned transfer
[  258.019689] I/O error, dev sr0, sector 7 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 2
[  258.019690] Buffer I/O error on dev sr0, logical block 7, async page read
[  270.856049] sr 3:0:0:0: [sr0] tag#5 UNKNOWN(0x2003) Result: hostbyte=0x00 driverbyte=DRIVER_OK cmd_age=0s
[  270.856053] sr 3:0:0:0: [sr0] tag#5 Sense Key : 0x2 [current] 
[  270.856055] sr 3:0:0:0: [sr0] tag#5 ASC=0x3a ASCQ=0x1 
[  270.856057] sr 3:0:0:0: [sr0] tag#5 CDB: opcode=0x28 28 00 00 00 00 00 00 00 08 00
[  270.856058] I/O error, dev sr0, sector 0 op 0x0:(READ) flags 0x80700 phys_seg 3 prio class 2
[  270.856085] sr 3:0:0:0: [sr0] tag#6 unaligned transfer
[  270.856087] I/O error, dev sr0, sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 2
[  270.856090] Buffer I/O error on dev sr0, logical block 0, async page read
[  270.856097] sr 3:0:0:0: [sr0] tag#7 unaligned transfer
[  270.856098] I/O error, dev sr0, sector 1 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 2
[  270.856100] Buffer I/O error on dev sr0, logical block 1, async page read
[  270.856103] sr 3:0:0:0: [sr0] tag#8 unaligned transfer
[  270.856104] I/O error, dev sr0, sector 2 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 2
[  270.856105] Buffer I/O error on dev sr0, logical block 2, async page read
[  270.856108] sr 3:0:0:0: [sr0] tag#9 unaligned transfer
[  270.856109] I/O error, dev sr0, sector 3 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 2
[  270.856110] Buffer I/O error on dev sr0, logical block 3, async page read
[  270.856113] sr 3:0:0:0: [sr0] tag#10 unaligned transfer
[  270.856114] I/O error, dev sr0, sector 4 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 2
[  270.856115] Buffer I/O error on dev sr0, logical block 4, async page read
[  270.856118] sr 3:0:0:0: [sr0] tag#11 unaligned transfer
[  270.856118] I/O error, dev sr0, sector 5 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 2
[  270.856119] Buffer I/O error on dev sr0, logical block 5, async page read
[  270.856122] sr 3:0:0:0: [sr0] tag#12 unaligned transfer
[  270.856123] I/O error, dev sr0, sector 6 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 2
[  270.856124] Buffer I/O error on dev sr0, logical block 6, async page read
[  270.856127] sr 3:0:0:0: [sr0] tag#13 unaligned transfer
[  270.856127] I/O error, dev sr0, sector 7 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 2
[  270.856128] Buffer I/O error on dev sr0, logical block 7, async page read
[  280.782187] sr 3:0:0:0: [sr0] tag#25 UNKNOWN(0x2003) Result: hostbyte=0x00 driverbyte=DRIVER_OK cmd_age=9s
[  280.782190] sr 3:0:0:0: [sr0] tag#25 Sense Key : 0x2 [current] 
[  280.782191] sr 3:0:0:0: [sr0] tag#25 ASC=0x3a ASCQ=0x1 
[  280.782193] sr 3:0:0:0: [sr0] tag#25 CDB: opcode=0x28 28 00 00 00 00 00 00 00 08 00
[  280.782193] I/O error, dev sr0, sector 0 op 0x0:(READ) flags 0x80700 phys_seg 4 prio class 2
[  280.782215] sr 3:0:0:0: [sr0] tag#26 unaligned transfer
[  280.782217] I/O error, dev sr0, sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 2
[  280.782222] Buffer I/O error on dev sr0, logical block 0, async page read
[  280.782230] sr 3:0:0:0: [sr0] tag#27 unaligned transfer
[  280.782230] I/O error, dev sr0, sector 1 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 2
[  280.782232] Buffer I/O error on dev sr0, logical block 1, async page read
[  280.782237] sr 3:0:0:0: [sr0] tag#28 unaligned transfer
[  280.782237] I/O error, dev sr0, sector 2 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 2
[  280.782238] Buffer I/O error on dev sr0, logical block 2, async page read
[  280.782242] sr 3:0:0:0: [sr0] tag#29 unaligned transfer
[  280.782242] I/O error, dev sr0, sector 3 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 2
[  280.782243] Buffer I/O error on dev sr0, logical block 3, async page read
[  280.782246] sr 3:0:0:0: [sr0] tag#30 unaligned transfer
[  280.782247] I/O error, dev sr0, sector 4 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 2
[  280.782248] Buffer I/O error on dev sr0, logical block 4, async page read
[  280.782251] sr 3:0:0:0: [sr0] tag#2 unaligned transfer
[  280.782252] I/O error, dev sr0, sector 5 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 2
[  280.782253] Buffer I/O error on dev sr0, logical block 5, async page read
[  280.782256] sr 3:0:0:0: [sr0] tag#3 unaligned transfer
[  280.782256] I/O error, dev sr0, sector 6 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 2
[  280.782257] Buffer I/O error on dev sr0, logical block 6, async page read
[  280.782260] sr 3:0:0:0: [sr0] tag#4 unaligned transfer
[  280.782261] I/O error, dev sr0, sector 7 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 2
[  280.782262] Buffer I/O error on dev sr0, logical block 7, async page read
[  300.174615] sr 3:0:0:0: [sr0] tag#1 UNKNOWN(0x2003) Result: hostbyte=0x00 driverbyte=DRIVER_OK cmd_age=0s
[  300.174619] sr 3:0:0:0: [sr0] tag#1 Sense Key : 0x2 [current] 
[  300.174620] sr 3:0:0:0: [sr0] tag#1 ASC=0x3a ASCQ=0x1 
[  300.174621] sr 3:0:0:0: [sr0] tag#1 CDB: opcode=0x28 28 00 00 00 00 00 00 00 08 00
[  300.174622] I/O error, dev sr0, sector 0 op 0x0:(READ) flags 0x80700 phys_seg 1 prio class 2
[  300.174640] sr 3:0:0:0: [sr0] tag#4 unaligned transfer
[  300.174642] I/O error, dev sr0, sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 2
[  300.174645] Buffer I/O error on dev sr0, logical block 0, async page read
[  300.174651] sr 3:0:0:0: [sr0] tag#5 unaligned transfer
[  300.174652] I/O error, dev sr0, sector 1 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 2
[  300.174653] Buffer I/O error on dev sr0, logical block 1, async page read
[  300.174657] sr 3:0:0:0: [sr0] tag#6 unaligned transfer
[  300.174658] I/O error, dev sr0, sector 2 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 2
[  300.174659] Buffer I/O error on dev sr0, logical block 2, async page read
[  300.174662] sr 3:0:0:0: [sr0] tag#7 unaligned transfer
[  300.174663] I/O error, dev sr0, sector 3 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 2
[  300.174664] Buffer I/O error on dev sr0, logical block 3, async page read
[  300.174667] sr 3:0:0:0: [sr0] tag#8 unaligned transfer
[  300.174667] I/O error, dev sr0, sector 4 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 2
[  300.174668] Buffer I/O error on dev sr0, logical block 4, async page read
[  300.174671] sr 3:0:0:0: [sr0] tag#9 unaligned transfer
[  300.174672] I/O error, dev sr0, sector 5 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 2
[  300.174673] Buffer I/O error on dev sr0, logical block 5, async page read
[  300.174676] sr 3:0:0:0: [sr0] tag#11 unaligned transfer
[  300.174676] I/O error, dev sr0, sector 6 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 2
[  300.174677] Buffer I/O error on dev sr0, logical block 6, async page read
[  300.174680] sr 3:0:0:0: [sr0] tag#12 unaligned transfer
[  300.174681] I/O error, dev sr0, sector 7 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 2
[  300.174682] Buffer I/O error on dev sr0, logical block 7, async page read
[ 1702.501194] usb 5-2: USB disconnect, device number 3
[ 1702.501197] usb 5-2.2: USB disconnect, device number 4
[ 1702.890786] usb 5-2: new high-speed USB device number 6 using xhci_hcd
[ 1703.073962] hub 5-2:1.0: USB hub found
[ 1703.074546] hub 5-2:1.0: 2 ports detected
[ 1703.440778] usb 5-2.2: new full-speed USB device number 7 using xhci_hcd
[ 1703.657747] hid-generic 0003:057E:0337.0012: hiddev0,hidraw6: USB HID v1.10 Device [Nintendo WUP-028] on usb-0000:58:00.3-2.2/input0
[ 2031.715568] usb 5-2.2: usbfs: process 11675 (GC Adapter Scan) did not claim interface 0 before use
[ 2085.256313] usb 1-9: new full-speed USB device number 15 using xhci_hcd
[ 2085.409685] usb 1-9: device descriptor read/64, error -71
[ 2085.777617] usb-storage 1-9:1.0: USB Mass Storage device detected
[ 2085.777692] scsi host9: usb-storage 1-9:1.0
[ 2086.804786] scsi 9:0:0:0: Direct-Access     RPI      RP2              3    PQ: 0 ANSI: 2
[ 2086.805253] sd 9:0:0:0: [sde] 262144 512-byte logical blocks: (134 MB/128 MiB)
[ 2086.807696] sd 9:0:0:0: [sde] Write Protect is off
[ 2086.807697] sd 9:0:0:0: [sde] Mode Sense: 03 00 00 00
[ 2086.809700] sd 9:0:0:0: [sde] No Caching mode page found
[ 2086.809701] sd 9:0:0:0: [sde] Assuming drive cache: write through
[ 2086.819654]  sde: sde1
[ 2086.819844] sd 9:0:0:0: [sde] Attached SCSI removable disk
[ 2114.337552] usb 1-9: USB disconnect, device number 15
[ 2120.489232] usb 1-9: new full-speed USB device number 16 using xhci_hcd
[ 2120.645938] usb 1-9: device descriptor read/64, error -71
[ 2121.016089] usb-storage 1-9:1.0: USB Mass Storage device detected
[ 2121.016156] scsi host9: usb-storage 1-9:1.0
[ 2122.027281] scsi 9:0:0:0: Direct-Access     RPI      RP2              3    PQ: 0 ANSI: 2
[ 2122.027745] sd 9:0:0:0: [sde] 262144 512-byte logical blocks: (134 MB/128 MiB)
[ 2122.030142] sd 9:0:0:0: [sde] Write Protect is off
[ 2122.030144] sd 9:0:0:0: [sde] Mode Sense: 03 00 00 00
[ 2122.032140] sd 9:0:0:0: [sde] No Caching mode page found
[ 2122.032141] sd 9:0:0:0: [sde] Assuming drive cache: write through
[ 2122.041509]  sde: sde1
[ 2122.041693] sd 9:0:0:0: [sde] Attached SCSI removable disk
[ 2151.457632] usb 1-9: USB disconnect, device number 16
[ 2612.180148] usb 1-9: new full-speed USB device number 17 using xhci_hcd
[ 2612.566593] input: Generic X-Box pad as /devices/pci0000:00/0000:00:01.2/0000:02:00.0/usb1/1-9/1-9:1.0/input/input44
[ 2612.572556] cdc_acm 1-9:1.1: ttyACM1: USB ACM device
[ 2628.260452] usb 1-9: USB disconnect, device number 17
[ 2628.263482] xpad 1-9:1.0: xpad_try_sending_next_out_packet - usb_submit_urb failed with result -19
[ 2928.949151] usb 5-2.2: usbfs: process 13890 (GC Adapter Scan) did not claim interface 0 before use
[ 2939.647749] usb 5-2.2: usbfs: process 14066 (GC Adapter Scan) did not claim interface 0 before use
[ 8083.495704] [drm:amdgpu_job_timedout [amdgpu]] *ERROR* ring gfx_0.0.0 timeout, signaled seq=4494762, emitted seq=4494764
[ 8083.495848] [drm:amdgpu_job_timedout [amdgpu]] *ERROR* Process information: process blender pid 18410 thread blender:cs0 pid 18446
[ 8083.495957] amdgpu 0000:56:00.0: amdgpu: GPU reset begin!
[ 8083.495976] amdgpu: Failed to suspend process 0x8022
[ 8083.742681] amdgpu 0000:56:00.0: amdgpu: free PSP TMR buffer
[ 8083.791367] amdgpu 0000:56:00.0: amdgpu: MODE1 reset
[ 8083.791370] amdgpu 0000:56:00.0: amdgpu: GPU mode1 reset
[ 8083.791440] amdgpu 0000:56:00.0: amdgpu: GPU smu mode1 reset
[ 8084.312481] amdgpu 0000:56:00.0: amdgpu: GPU reset succeeded, trying to resume
[ 8084.312686] [drm] PCIE GART of 512M enabled (table at 0x0000008000800000).
[ 8084.312746] [drm] VRAM is lost due to GPU reset!
[ 8084.312747] [drm] PSP is resuming...
[ 8084.393902] [drm] reserve 0xa00000 from 0x8001000000 for PSP TMR
[ 8084.531296] amdgpu 0000:56:00.0: amdgpu: SECUREDISPLAY: securedisplay ta ucode is not available
[ 8084.531300] amdgpu 0000:56:00.0: amdgpu: SMU is resuming...
[ 8084.531303] amdgpu 0000:56:00.0: amdgpu: smu driver if version = 0x00000040, smu fw if version = 0x00000041, smu fw program = 0, version = 0x003a5600 (58.86.0)
[ 8084.531306] amdgpu 0000:56:00.0: amdgpu: SMU driver if version not matched
[ 8084.531337] amdgpu 0000:56:00.0: amdgpu: use vbios provided pptable
[ 8084.552348] [drm:amdgpu_dm_atomic_check [amdgpu]] *ERROR* [CRTC:77:crtc-0] hw_done or flip_done timed out
[ 8084.608352] amdgpu 0000:56:00.0: amdgpu: SMU is resumed successfully!
[ 8084.609623] [drm] DMUB hardware initialized: version=0x02020017
[ 8084.881499] [drm] kiq ring mec 2 pipe 1 q 0
[ 8084.887346] [drm] VCN decode and encode initialized successfully(under DPG Mode).
[ 8084.887604] [drm] JPEG decode initialized successfully.
[ 8084.887618] amdgpu 0000:56:00.0: amdgpu: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
[ 8084.887620] amdgpu 0000:56:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0
[ 8084.887621] amdgpu 0000:56:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0
[ 8084.887621] amdgpu 0000:56:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 5 on hub 0
[ 8084.887622] amdgpu 0000:56:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 6 on hub 0
[ 8084.887622] amdgpu 0000:56:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 7 on hub 0
[ 8084.887623] amdgpu 0000:56:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 8 on hub 0
[ 8084.887623] amdgpu 0000:56:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 9 on hub 0
[ 8084.887624] amdgpu 0000:56:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 10 on hub 0
[ 8084.887624] amdgpu 0000:56:00.0: amdgpu: ring kiq_2.1.0 uses VM inv eng 11 on hub 0
[ 8084.887625] amdgpu 0000:56:00.0: amdgpu: ring sdma0 uses VM inv eng 12 on hub 0
[ 8084.887625] amdgpu 0000:56:00.0: amdgpu: ring sdma1 uses VM inv eng 13 on hub 0
[ 8084.887626] amdgpu 0000:56:00.0: amdgpu: ring sdma2 uses VM inv eng 14 on hub 0
[ 8084.887626] amdgpu 0000:56:00.0: amdgpu: ring sdma3 uses VM inv eng 15 on hub 0
[ 8084.887627] amdgpu 0000:56:00.0: amdgpu: ring vcn_dec_0 uses VM inv eng 0 on hub 1
[ 8084.887627] amdgpu 0000:56:00.0: amdgpu: ring vcn_enc_0.0 uses VM inv eng 1 on hub 1
[ 8084.887628] amdgpu 0000:56:00.0: amdgpu: ring vcn_enc_0.1 uses VM inv eng 4 on hub 1
[ 8084.887629] amdgpu 0000:56:00.0: amdgpu: ring vcn_dec_1 uses VM inv eng 5 on hub 1
[ 8084.887629] amdgpu 0000:56:00.0: amdgpu: ring vcn_enc_1.0 uses VM inv eng 6 on hub 1
[ 8084.887630] amdgpu 0000:56:00.0: amdgpu: ring vcn_enc_1.1 uses VM inv eng 7 on hub 1
[ 8084.887630] amdgpu 0000:56:00.0: amdgpu: ring jpeg_dec uses VM inv eng 8 on hub 1
[ 8084.894347] amdgpu 0000:56:00.0: amdgpu: recover vram bo from shadow start
[ 8084.894442] amdgpu 0000:56:00.0: amdgpu: recover vram bo from shadow done
[ 8084.894444] [drm] Skip scheduling IBs!
[ 8084.894445] [drm] Skip scheduling IBs!
[ 8084.894465] [drm] Skip scheduling IBs!
[ 8084.894467] amdgpu 0000:56:00.0: amdgpu: GPU reset(2) succeeded!
[ 8084.894472] [drm] Skip scheduling IBs!
[ 8084.894476] [drm] Skip scheduling IBs!
[ 8084.894483] [drm] Skip scheduling IBs!
[ 8084.894485] [drm] Skip scheduling IBs!
[ 8084.894489] [drm] Skip scheduling IBs!
[ 8084.894491] [drm] Skip scheduling IBs!
[ 8084.894494] [drm] Skip scheduling IBs!
[ 8084.894496] [drm] Skip scheduling IBs!
[ 8084.894498] [drm] Skip scheduling IBs!
[ 8084.894500] [drm] Skip scheduling IBs!
[ 8084.894502] [drm] Skip scheduling IBs!
[ 8084.894504] [drm] Skip scheduling IBs!
[ 8084.894507] [drm] Skip scheduling IBs!
[ 8084.894517] [drm] Skip scheduling IBs!
[ 8084.894520] [drm] Skip scheduling IBs!
[ 8084.894523] [drm] Skip scheduling IBs!
[ 8084.894525] [drm] Skip scheduling IBs!
[ 8084.894527] [drm] Skip scheduling IBs!
[ 8084.894531] [drm] Skip scheduling IBs!
[ 8084.894532] [drm] Skip scheduling IBs!
[ 8084.894535] [drm] Skip scheduling IBs!
[ 8084.894535] [drm] Skip scheduling IBs!
[ 8084.894542] [drm] Skip scheduling IBs!
[ 8086.112445] traps: xfsettingsd[28304] trap int3 ip:7fa6836b6f11 sp:7fff813f54e0 error:0 in libglib-2.0.so.0.7400.4[7fa683673000+93000]
[ 8093.168707] input: Huion Tablet as /devices/virtual/misc/uhid/0003:256C:FFFF.0013/input/input45
[ 8093.169214] input: Huion Tablet as /devices/virtual/misc/uhid/0003:256C:FFFF.0014/input/input46
[ 8093.169376] input: Huion keyboard as /devices/virtual/input/input47
[ 8093.171303] input: HUION 256C PEN STYLUS as /devices/virtual/misc/uhid/0003:256C:FFFF.0015/input/input48
[ 8093.225804] hid-generic 0003:256C:FFFF.0013: input,hidraw6: USB HID v0.00 Device [Huion Tablet] on 
[ 8093.225890] hid-generic 0003:256C:FFFF.0014: input,hidraw13: USB HID v0.00 Device [Huion Tablet] on 
[ 8093.226483] hid-generic 0003:256C:FFFF.0015: input,hidraw14: USB HID v0.00 Device [HUION 256C PEN STYLUS] on 
[ 8093.226501] input: Huion mouse as /devices/virtual/input/input49
[ 8093.476593] input: HUION 256C PEN STYLUS as /devices/virtual/misc/uhid/0003:256C:FFFF.0016/input/input50
[ 8093.592799] hid-generic 0003:256C:FFFF.0016: input,hidraw14: USB HID v0.00 Device [HUION 256C PEN STYLUS] on 
[ 8096.217467] input: input-remapper SOAI USB Gaming Mouse Keyboard forwarded as /devices/virtual/input/input51
[ 8097.848994] input: HUION 256C PEN STYLUS as /devices/virtual/misc/uhid/0003:256C:FFFF.0017/input/input52
[ 8097.849064] hid-generic 0003:256C:FFFF.0017: input,hidraw1: USB HID v0.00 Device [HUION 256C PEN STYLUS] on 

Offline

#9 2023-01-24 08:45:06

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 76,393

Re: Hangs at "Reached Target Graphical Interface" with LTS 5.4

That's only part of the ringbuffer and does not identify the kernel. However

[    0.521815]     BOOT_IMAGE=/vmlinuz-linux-amd

Which of https://aur.archlinux.org/packages?O=0&K=linux-amd is that and why?
Tried the vanilla kernel?

Edit: the only other relevant information in that dmesg

[ 8083.495704] [drm:amdgpu_job_timedout [amdgpu]] *ERROR* ring gfx_0.0.0 timeout, signaled seq=4494762, emitted seq=4494764
[ 8083.495848] [drm:amdgpu_job_timedout [amdgpu]] *ERROR* Process information: process blender pid 18410 thread blender:cs0 pid 18446
[ 8083.495957] amdgpu 0000:56:00.0: amdgpu: GPU reset begin!

We'll still need far more informations, notably pot. blender errors and your xorg log (and whether you're running X11 or wayland), maybe the specific DE.

Edit #2:
https://www.google.com/search?q=%22drm% … blender%22

Last edited by seth (2023-01-24 08:50:50)

Offline

#10 2023-01-24 09:18:27

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 25,258

Re: Hangs at "Reached Target Graphical Interface" with LTS 5.4

That is a crash in amdgpu indeed. I'd say if anything you'd want to test the current LTS 5.15 or rather than going backwards and hoping it's fixed there somewhere, go forwards and test e.g. the mainline kernel or https://aur.archlinux.org/packages/linu … m-next-git

Are you using mesa or amdgpu pro for the GL implementation? Does changing here make a difference on behaviour?

Offline

#12 2023-01-24 19:55:34

celticsamurai
Member
Registered: 2022-06-11
Posts: 62

Re: Hangs at "Reached Target Graphical Interface" with LTS 5.4

Yeah I've seen these. I was hoping I would get better help here, but it's looking more like we'll have to wait until we get some decent drivers for AMD cards.

Offline

#13 2023-01-24 21:59:53

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 76,393

Re: Hangs at "Reached Target Graphical Interface" with LTS 5.4

https://bugs.archlinux.org/task/75302#comment209511 wrote:

Found the issue was caused by AMD Radeon ProRender Blender Plugin.
The plugin brings in its hip stack, conflicting with the ROCM 5.2 HIP from AUR

Does this meet your situation? (Do you use the "AMD Radeon ProRender Blender Plugin"?)

Offline

#14 2023-01-25 21:09:16

celticsamurai
Member
Registered: 2022-06-11
Posts: 62

Re: Hangs at "Reached Target Graphical Interface" with LTS 5.4

We've had the exact same error

ERROR Failed to initialize parser -125!

but unfortunately removing ProRender's not made much of a difference. In KDE, the whole screen would freeze, if that helps.

Last edited by celticsamurai (2023-01-25 21:11:44)

Offline

Board footer

Powered by FluxBB