You are not logged in.

#1 2021-03-01 19:52:11

Kwazar380
Member
Registered: 2013-10-06
Posts: 16

[SOLVED] Problem with boot on Dell 13 9310

Hello Ladies and Gents,
Last time I tried to install Arch on Dell XPS 13 9310 (dual boot with Win 10). This is the first time I've tried to install Arch on computer with UEFI. I followed the Installation Guide, as well as article about handling EFI system partition (which is mounted in /efi) and configured GRUB following GRUB. It seemd that instalation went good, there were no errors and everything went fine until I've tried to reboot. When trying to boot, there is an error:

Starting version 246.6-1-arch
ERROR: device 'UUID=5dcacf23-5a2e-4e6e-bd1b-681ee354428f' not found. Skipping fsck.
mount: /new_root: can't find UUID=5dcacf23-5a2e-4e6e-bd1b-681ee354428f.
You are now being dropped into an emergency shell.
sh: can't access tty; job control turned off.
[rootfs ]#

So I used chroot to access the system from installation media. I've tried
pacman -S linux
and
mkinitcpio -P
several times but it didn't work. As I've tried to STFW, I found that some similar issues were solved by downgrading systemd. So I've downgraded systemd-247 to 246, but that did't help as well, so I upgraded it again. I looked at /etc/fstab :

# Static information about the filesystems.
# See fstab(5) for details.

# <file system> <dir> <type> <options> <dump> <pass>
# /dev/nvme0n1p4
UUID=5dcacf23-5a2e-4e6e-bd1b-681ee354428f	/         	ext4      	rw,relatime	0 1

# /dev/nvme0n1p5
UUID=b62a7194-78a1-4014-a963-c9443dc8bee0	none      	swap      	defaults  	0 0

So it seems that it looks fine. Than I looked at /etc/mkinitcpio.conf :

# vim:set ft=sh
# MODULES
# The following modules are loaded before any boot hooks are
# run.  Advanced users may wish to specify all system modules
# in this array.  For instance:
#     MODULES=(piix ide_disk reiserfs)
MODULES=()

# BINARIES
# This setting includes any additional binaries a given user may
# wish into the CPIO image.  This is run last, so it may be used to
# override the actual binaries included by a given hook
# BINARIES are dependency parsed, so you may safely ignore libraries
BINARIES=()

# FILES
# This setting is similar to BINARIES above, however, files are added
# as-is and are not parsed in any way.  This is useful for config files.
FILES=()

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

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

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

So it also seems to look good. The content of /efi/loader/loader.conf :

timeout 3
#console-mode keep
default arch.conf

also looks fine, as well as content of /efi/loader/entries/arch.conf :

title	Arch Linux
linux	/vmlinuz-linux
initrd	/intel-ucode.img
initrd	/initramfs-linux.img
options	root=/dev/nvme0n1p4 rw

The /boot/grub/grub.cfg :

#
# 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="0"
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_gpt
insmod ext2
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root  5dcacf23-5a2e-4e6e-bd1b-681ee354428f
else
  search --no-floppy --fs-uuid --set=root 5dcacf23-5a2e-4e6e-bd1b-681ee354428f
fi
    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
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/10_linux ###
menuentry 'Arch Linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-5dcacf23-5a2e-4e6e-bd1b-681ee354428f' {
	load_video
	set gfxpayload=keep
	insmod gzio
	insmod part_gpt
	insmod ext2
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root  5dcacf23-5a2e-4e6e-bd1b-681ee354428f
	else
	  search --no-floppy --fs-uuid --set=root 5dcacf23-5a2e-4e6e-bd1b-681ee354428f
	fi
	echo	'Loading Linux linux ...'
	linux	/boot/vmlinuz-linux root=UUID=5dcacf23-5a2e-4e6e-bd1b-681ee354428f rw  loglevel=3 quiet
	echo	'Loading initial ramdisk ...'
	initrd	/boot/intel-ucode.img /boot/initramfs-linux.img
}
submenu 'Advanced options for Arch Linux' $menuentry_id_option 'gnulinux-advanced-5dcacf23-5a2e-4e6e-bd1b-681ee354428f' {
	menuentry 'Arch Linux, with Linux linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-advanced-5dcacf23-5a2e-4e6e-bd1b-681ee354428f' {
		load_video
		set gfxpayload=keep
		insmod gzio
		insmod part_gpt
		insmod ext2
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root  5dcacf23-5a2e-4e6e-bd1b-681ee354428f
		else
		  search --no-floppy --fs-uuid --set=root 5dcacf23-5a2e-4e6e-bd1b-681ee354428f
		fi
		echo	'Loading Linux linux ...'
		linux	/boot/vmlinuz-linux root=UUID=5dcacf23-5a2e-4e6e-bd1b-681ee354428f rw  loglevel=3 quiet
		echo	'Loading initial ramdisk ...'
		initrd	/boot/intel-ucode.img /boot/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-5dcacf23-5a2e-4e6e-bd1b-681ee354428f' {
		load_video
		set gfxpayload=keep
		insmod gzio
		insmod part_gpt
		insmod ext2
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root  5dcacf23-5a2e-4e6e-bd1b-681ee354428f
		else
		  search --no-floppy --fs-uuid --set=root 5dcacf23-5a2e-4e6e-bd1b-681ee354428f
		fi
		echo	'Loading Linux linux ...'
		linux	/boot/vmlinuz-linux root=UUID=5dcacf23-5a2e-4e6e-bd1b-681ee354428f rw  loglevel=3 quiet
		echo	'Loading initial ramdisk ...'
		initrd	/boot/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 ###
menuentry 'Windows Boot Manager (on /dev/nvme0n1p1)' --class windows --class os $menuentry_id_option 'osprober-efi-60D7-E9C6' {
	insmod part_gpt
	insmod fat
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root  60D7-E9C6
	else
	  search --no-floppy --fs-uuid --set=root 60D7-E9C6
	fi
	chainloader /EFI/Microsoft/Boot/bootmgfw.efi
}
### END /etc/grub.d/30_os-prober ###

### 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 ###

And I can't figure out what went wrong. Any hints on what else can I do to pin down the problem? I would be very grateful for any help.
Regards

Last edited by Kwazar380 (2021-05-19 15:16:54)

Offline

#2 2021-03-01 19:55:50

Slithery
Administrator
From: Norfolk, UK
Registered: 2013-12-01
Posts: 5,776

Re: [SOLVED] Problem with boot on Dell 13 9310

Why do you have both grub and systemd-boot configured?

Which one have you set up your firmware to boot from?

Why is your EFI partition not mentioned in your fstab?


No, it didn't "fix" anything. It just shifted the brokeness one space to the right. - jasonwryan
Closing -- for deletion; Banning -- for muppetry. - jasonwryan

aur - dotfiles

Offline

#3 2021-03-01 20:06:06

Kwazar380
Member
Registered: 2013-10-06
Posts: 16

Re: [SOLVED] Problem with boot on Dell 13 9310

Thanks for quick response Slithery. At some point of trying to fix the problem I've tried the systemd:

bootctl --esp-path=/efi --boot-path=/boot install

but since it didn't help, now I boot from grub.

Offline

#4 2021-03-02 08:35:53

Ferdinand
Member
From: Norway
Registered: 2020-01-02
Posts: 338

Re: [SOLVED] Problem with boot on Dell 13 9310

You have stated in your /etc/fstab that:

UUID=5dcacf23-5a2e-4e6e-bd1b-681ee354428f	/         	ext4      	rw,relatime	0 1

But upon booting your computer says:

ERROR: device 'UUID=5dcacf23-5a2e-4e6e-bd1b-681ee354428f' not found. Skipping fsck.

I think you should do a sudo blkid to see if maybe you have a typo in that UUID?

Slithery also  wrote:

Why is your EFI partition not mentioned in your fstab?

Offline

#5 2021-03-02 20:04:34

Kwazar380
Member
Registered: 2013-10-06
Posts: 16

Re: [SOLVED] Problem with boot on Dell 13 9310

Hello Ferdinand, thanks for your answer. The output of blkid:

/dev/sda1: BLOCK_SIZE="2048" UUID="2021-02-01-15-18-34-00" LABEL="ARCH_202102" TYPE="iso9660" PARTLABEL="ISO9660" PARTUUID="31323032-3230-4130-b131-303531383334"
/dev/sda2: SEC_TYPE="msdos" LABEL_FATBOOT="ARCHISO_EFI" LABEL="ARCHISO_EFI" UUID="C3B0-B855" BLOCK_SIZE="512" TYPE="vfat" PARTLABEL="Appended2" PARTUUID="31323032-3230-4130-b132-303531383334"
/dev/sda3: PARTLABEL="Gap1" PARTUUID="31323032-3230-4130-b133-303531383334"
/dev/loop0: TYPE="squashfs"
/dev/nvme0n1p1: LABEL="ESP" UUID="60D7-E9C6" BLOCK_SIZE="512" TYPE="vfat" PARTLABEL="EFI system partition" PARTUUID="1f121383-a7f0-4e50-b4ea-cfe7d1a079f1"
/dev/nvme0n1p2: PARTLABEL="Microsoft reserved partition" PARTUUID="09e74121-cfab-45c4-a6d8-7dae0ae2ac2e"
/dev/nvme0n1p3: TYPE="BitLocker" PARTLABEL="Basic data partition" PARTUUID="c7add942-51f9-47c3-aff9-150d5ccd116a"
/dev/nvme0n1p4: UUID="5dcacf23-5a2e-4e6e-bd1b-681ee354428f" BLOCK_SIZE="4096" TYPE="ext4" PARTLABEL="Basic data partition" PARTUUID="83cfbb3c-c736-40cf-a673-efd86fdb97f5"
/dev/nvme0n1p5: UUID="b62a7194-78a1-4014-a963-c9443dc8bee0" TYPE="swap" PARTLABEL="Basic data partition" PARTUUID="9c61f473-5808-4480-9081-7eaf7cca09db"
/dev/nvme0n1p6: LABEL="WINRETOOLS" BLOCK_SIZE="512" UUID="A2AAF600AAF5D0B1" TYPE="ntfs" PARTUUID="db7c74ec-ca34-4ce8-97d7-d57da0f53a78"
/dev/nvme0n1p7: LABEL="Image" BLOCK_SIZE="512" UUID="2C5EF6455EF606FC" TYPE="ntfs" PARTUUID="789a0fdd-979b-4105-9704-d8d1e9b2ae88"
/dev/nvme0n1p8: LABEL="DELLSUPPORT" BLOCK_SIZE="512" UUID="689070CD9070A2EC" TYPE="ntfs" PARTUUID="19e3d488-3a33-4669-acec-d05ae0f9beae"
/dev/sdb1: LABEL_FATBOOT="USB DISK" LABEL="USB DISK" UUID="9D7D-3114" BLOCK_SIZE="512" TYPE="vfat" PARTUUID="9d29a558-01"

So it seems that there is no typo in partition UUID.

Ferdinand wrote:
Slithery also  wrote:

Why is your EFI partition not mentioned in your fstab?

That's an excellent question, although I somehow missed it when Slithery asked it (sorry for that). Thank you Ferdinand for drawing attention to it. I don't know why it is so, according to Installation guide I used

# genfstab -U /mnt >> /mnt/etc/fstab

just after pacstrap. Should I use genfstab once again with different options (although I cannot find the proper one in genfstab manual) or do you rather think that I should add the ESP manually to /etc/fstab?

Offline

#6 2021-03-02 20:24:19

loqs
Member
Registered: 2014-03-06
Posts: 19,013

Re: [SOLVED] Problem with boot on Dell 13 9310

When you are dropped to the emergency shell do /dev/nvme0* exist?

Offline

#7 2021-03-02 20:34:05

Kwazar380
Member
Registered: 2013-10-06
Posts: 16

Re: [SOLVED] Problem with boot on Dell 13 9310

loqs wrote:

When you are dropped to the emergency shell do /dev/nvme0* exist?

No, there is no such file or directory.

Offline

#8 2021-03-02 20:40:56

loqs
Member
Registered: 2014-03-06
Posts: 19,013

Re: [SOLVED] Problem with boot on Dell 13 9310

Check the output of `dmesg` for messages relating to NVME.

Offline

#9 2021-03-02 20:50:33

Kwazar380
Member
Registered: 2013-10-06
Posts: 16

Re: [SOLVED] Problem with boot on Dell 13 9310

'dmesg | grep nvme' gives empty output.

Last edited by Kwazar380 (2021-03-02 20:50:55)

Offline

#10 2021-03-02 20:53:18

loqs
Member
Registered: 2014-03-06
Posts: 19,013

Re: [SOLVED] Problem with boot on Dell 13 9310

Offline

#11 2021-03-02 21:32:39

Kwazar380
Member
Registered: 2013-10-06
Posts: 16

Re: [SOLVED] Problem with boot on Dell 13 9310

Thank you for your responces loqs.

As I can see in this thread, the user solved the problem by installing update to nvme device using fwupd. I made arch-chroot from installation media and installed fwupd. I can only access my system using installation media and chroot and I get the error 'Unable to connect the service' while trying to do 'fwupdmgr get-devices'. Or maybe I do it wrong way?

Offline

#12 2021-03-02 21:39:23

loqs
Member
Registered: 2014-03-06
Posts: 19,013

Re: [SOLVED] Problem with boot on Dell 13 9310

Check in the system firmware the NVME device is using AHCI mode not RAID.  From the installation media install linux-lts,  update grub's config to generate an entry for linux-lts and see if that works.  Try booting with the fallback initrd.
If the above fail try using dracut to generate the initrd.

Offline

#13 2021-03-02 21:52:54

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

Re: [SOLVED] Problem with boot on Dell 13 9310

You can also try to pass either of

	rootdelay=	[KNL] Delay (in seconds) to pause before attempting to
			mount the root filesystem
…
	rootwait	[KNL] Wait (indefinitely) for root device to show up.
			Useful for devices that are detected asynchronously
			(e.g. USB and MMC devices).

to the kernel parameters, in case the device is just slow to init.

https://wiki.archlinux.org/index.php/Kernel_parameters

Offline

#14 2021-03-02 22:24:19

Kwazar380
Member
Registered: 2013-10-06
Posts: 16

Re: [SOLVED] Problem with boot on Dell 13 9310

Thank loqs and seth for replies.

loqs wrote:

Check in the system firmware the NVME device is using AHCI mode not RAID.  From the installation media install linux-lts,  update grub's config to generate an entry for linux-lts and see if that works.  Try booting with the fallback initrd.
If the above fail try using dracut to generate the initrd.

My TPV EFI tells only that NVME is "Non-RAID" device. I installed linux-lts and configured grub, than I booted with 'linux-lts (fallback initramfs)' entry, but it didn't work. Trying to use dracut now.

Offline

#15 2021-03-02 22:35:59

loqs
Member
Registered: 2014-03-06
Posts: 19,013

Re: [SOLVED] Problem with boot on Dell 13 9310

If that does not work,  boot with the fallback initrd.   When dropped to the rescue prompt can you mount a USB thumb drive,  save dmesg output to it and post that please?

Offline

#16 2021-03-02 23:17:49

Kwazar380
Member
Registered: 2013-10-06
Posts: 16

Re: [SOLVED] Problem with boot on Dell 13 9310

I cannot mout thumb drive because mount doesn't recognize 'vfat' and 'ntfs' file systems.

Offline

#17 2021-03-02 23:45:47

Kwazar380
Member
Registered: 2013-10-06
Posts: 16

Re: [SOLVED] Problem with boot on Dell 13 9310

I wonder if there is any other way I can show you 'dmesg' output?

Offline

#18 2021-03-03 07:33:40

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

Re: [SOLVED] Problem with boot on Dell 13 9310

First link in my signature.
Did you try the rootwait parameter? What happens then?

Offline

#19 2021-03-03 08:08:33

Ferdinand
Member
From: Norway
Registered: 2020-01-02
Posts: 338

Re: [SOLVED] Problem with boot on Dell 13 9310

You're getting very competent help now, so I'll just answer quickly what you asked and then your best bet is to follow their guidance smile

Kwazar380 wrote:

Should I use genfstab once again with different options (although I cannot find the proper one in genfstab manual) or do you rather think that I should add the ESP manually to /etc/fstab?

I'd say you have what you need for fstab, so just add manually:

# <file system> <dir> <type>  <options>                                                                                                 <dump>  <pass>
UUID=60D7-E9C6 /ESP  vfat    rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,utf8,errors=remount-ro   0       2

I realize that the options are extensive, but I don't recall having changed them after my initial install. Anyway, I checked them and they make sense smile

Regarding that VFAT/NTFS-problem, I'd say reformat the USB to FAT32, either on a Windows computer or in Linux (you can do it in the chroot, I think).

Also, I don't know if you tried @seth's suggestion? If that works it's a simple solution smile

seth wrote:

You can also try to pass either of rootdelay= or rootwait to the kernel parameters

That'd be to add to something like "rootdelay=10" to the line GRUB_CMDLINE_LINUX_DEFAULT= in /etc/default/grub and then do

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

If it works I guess 10 seconds is excessive, so maybe lower it a bit and see what you can get away with smile

Edit: Too slow - go with @seth smile

Last edited by Ferdinand (2021-03-03 08:10:54)

Offline

#20 2021-03-03 08:18:43

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

Re: [SOLVED] Problem with boot on Dell 13 9310

Actually I missed that the task is to dump the journal from the rescue shell, at which point you'll unlikely have a network connection.
Did you try to boot the failsafe image as loqs told you? This is important because you need to have the usbcore, storage & vfat modules in the initramfs.

Offline

#21 2021-03-03 18:00:08

Kwazar380
Member
Registered: 2013-10-06
Posts: 16

Re: [SOLVED] Problem with boot on Dell 13 9310

Thank you seth, Ferdinand and loqs for your replies. So I made arch-chroot and I went to /etc/default/grub and add rootdelay=10, so the file now looks like this:

# GRUB boot loader configuration

GRUB_DEFAULT=0
GRUB_TIMEOUT=5
GRUB_DISTRIBUTOR="Arch"
GRUB_CMDLINE_LINUX_DEFAULT="loglevel=3 quiet rootdelay=10"
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=auto

# 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

Than I did 'ls -A /usr/lib modules'. I got as follows:

5.10.19-1-lts 5.11.2-arch1-1

Next I did 'dracut --force --kver 5.10.19-1-lts /boot/initramfs-linux-lts-fallback.img' and than 'grub-mkconfig -o /boot/grub/grub.cfg' than I umonted my pendrive and rebooted. My grub has 3 entries 'Arch linux', 'Advanced options for Arch linux' and 'Windows boot manager' I chosed 'Advanced options for Arch linux' and than something like 'Linux-lts (fallback initramfs)'. And this helped. I am now logged in as root on 'Arch Linux 5.10.19-1-lts' without being dropped in emergency shell. Here is the output of 'dmesg':

[    0.000000] Linux version 5.10.19-1-lts (linux-lts@archlinux) (gcc (GCC) 10.2.0, GNU ld (GNU Binutils) 2.36.1) #1 SMP Fri, 26 Feb 2021 11:11:40 +0000
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-linux-lts root=UUID=5dcacf23-5a2e-4e6e-bd1b-681ee354428f rw loglevel=3 quiet rootdelay=10
[    0.000000] x86/split lock detection: warning about 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] 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-0x000000005e72afff] usable
[    0.000000] BIOS-e820: [mem 0x000000005e72b000-0x000000005e84dfff] type 20
[    0.000000] BIOS-e820: [mem 0x000000005e84e000-0x0000000062510fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000062511000-0x0000000062d71fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000062d72000-0x0000000062ffefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x0000000062fff000-0x0000000062ffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000063000000-0x0000000066ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000067600000-0x00000000677fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000068000000-0x00000000707fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000c0000000-0x00000000cfffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed20000-0x00000000fed7ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000028f7fffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: EFI v2.70 by Dell
[    0.000000] efi: ACPI=0x62ffe000 ACPI 2.0=0x62ffe014 SMBIOS=0x5edd7000 TPMFinalLog=0x62cd8000 ESRT=0x5edd6018 MEMATTR=0x59d19018 
[    0.000000] SMBIOS 3.2 present.
[    0.000000] DMI: Dell Inc. XPS 13 9310/0JRYYW, BIOS 1.2.5 12/10/2020
[    0.000000] tsc: Detected 2400.000 MHz processor
[    0.000000] tsc: Detected 2419.200 MHz TSC
[    0.000004] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000005] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000009] last_pfn = 0x28f800 max_arch_pfn = 0x400000000
[    0.000011] MTRR default type: write-back
[    0.000012] MTRR fixed ranges enabled:
[    0.000012]   00000-9FFFF write-back
[    0.000013]   A0000-BFFFF uncachable
[    0.000013]   C0000-FFFFF write-protect
[    0.000014] MTRR variable ranges enabled:
[    0.000015]   0 base 0080000000 mask 7F80000000 uncachable
[    0.000015]   1 base 0070000000 mask 7FF0000000 uncachable
[    0.000016]   2 base 006C000000 mask 7FFC000000 uncachable
[    0.000017]   3 base 2000000000 mask 6000000000 uncachable
[    0.000017]   4 base 1000000000 mask 7000000000 uncachable
[    0.000017]   5 base 0800000000 mask 7800000000 uncachable
[    0.000018]   6 base 0400000000 mask 7C00000000 uncachable
[    0.000018]   7 base 4000000000 mask 4000000000 uncachable
[    0.000019]   8 disabled
[    0.000019]   9 disabled
[    0.000463] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.000810] last_pfn = 0x63000 max_arch_pfn = 0x400000000
[    0.007875] esrt: Reserving ESRT space from 0x000000005edd6018 to 0x000000005edd60a0.
[    0.007884] check: Scanning 1 areas for low memory corruption
[    0.007889] Using GB pages for direct mapping
[    0.007997] Secure boot could not be determined
[    0.007997] RAMDISK: [mem 0x33a63000-0x35d28fff]
[    0.008011] ACPI: Early table checksum verification disabled
[    0.008013] ACPI: RSDP 0x0000000062FFE014 000024 (v02 DELL  )
[    0.008016] ACPI: XSDT 0x0000000062F78188 00011C (v01 DELL   Dell Inc 00000002      01000013)
[    0.008021] ACPI: FACP 0x0000000062FF5000 000114 (v06 DELL   Dell Inc 00000002      01000013)
[    0.008025] ACPI: DSDT 0x0000000062F97000 05A161 (v02 DELL   Dell Inc 00000002      01000013)
[    0.008027] ACPI: FACS 0x0000000062D1B000 000040
[    0.008029] ACPI: SSDT 0x0000000062FFA000 0024D0 (v02 CpuRef CpuSsdt  00003000 INTL 20191018)
[    0.008031] ACPI: SSDT 0x0000000062FF6000 0038EA (v02 DptfTb DptfTabl 00001000 INTL 20191018)
[    0.008033] ACPI: HPET 0x0000000062FF4000 000038 (v01 DELL   Dell Inc 00000002      01000013)
[    0.008036] ACPI: APIC 0x0000000062FF3000 00012C (v04 DELL   Dell Inc 00000002      01000013)
[    0.008038] ACPI: MCFG 0x0000000062FF2000 00003C (v01 DELL   Dell Inc 00000002      01000013)
[    0.008040] ACPI: SSDT 0x0000000062F96000 000D01 (v02 DELL   DellRtd3 00001000 INTL 20191018)
[    0.008042] ACPI: NHLT 0x0000000062F94000 001B54 (v00 DELL   Dell Inc 00000002      01000013)
[    0.008044] ACPI: SSDT 0x0000000062F91000 002CCD (v02 SaSsdt SaSsdt   00003000 INTL 20191018)
[    0.008046] ACPI: SSDT 0x0000000062F8F000 0012AA (v02 INTEL  IgfxSsdt 00003000 INTL 20191018)
[    0.008048] ACPI: SSDT 0x0000000062F83000 00B192 (v02 INTEL  TcssSsdt 00001000 INTL 20191018)
[    0.008050] ACPI: SSDT 0x0000000062F82000 000CD2 (v02 DELL   UsbCTabl 00001000 INTL 20191018)
[    0.008052] ACPI: LPIT 0x0000000062F81000 0000CC (v01 DELL   Dell Inc 00000002      01000013)
[    0.008054] ACPI: WSMT 0x0000000062F80000 000028 (v01 DELL   Dell Inc 00000002      01000013)
[    0.008056] ACPI: SSDT 0x0000000062F7F000 000B75 (v02 DELL   PtidDevc 00001000 INTL 20191018)
[    0.008058] ACPI: SSDT 0x0000000062F7E000 00012A (v02 DELL   TbtTypeC 00000000 INTL 20191018)
[    0.008060] ACPI: DBGP 0x0000000062F7D000 000034 (v01 DELL   Dell Inc 00000002      01000013)
[    0.008062] ACPI: DBG2 0x0000000062F7C000 000054 (v00 DELL   Dell Inc 00000002      01000013)
[    0.008064] ACPI: SLIC 0x0000000062F7B000 000176 (v03 DELL   CBX3     06222004 MSFT 00010013)
[    0.008066] ACPI: BOOT 0x0000000062F7A000 000028 (v01 DELL   CBX3     00000002      01000013)
[    0.008068] ACPI: SSDT 0x0000000062F79000 00060E (v02 DELL   Tpm2Tabl 00001000 INTL 20191018)
[    0.008070] ACPI: TPM2 0x0000000062FFD000 00004C (v04 DELL   Dell Inc 00000002      01000013)
[    0.008072] ACPI: MSDM 0x0000000062F77000 000055 (v03 DELL   CBX3     06222004 AMI  00010013)
[    0.008075] ACPI: DMAR 0x0000000062F76000 0000B8 (v02 INTEL  Dell Inc 00000002      01000013)
[    0.008077] ACPI: SSDT 0x0000000062F75000 000841 (v02 DELL   xh_Dell_ 00000000 INTL 20191018)
[    0.008079] ACPI: SSDT 0x0000000062F74000 000144 (v02 Intel  ADebTabl 00001000 INTL 20191018)
[    0.008081] ACPI: UEFI 0x0000000062CD3000 00063A (v01 INTEL  RstVmdE  00000000 ??   00000000)
[    0.008083] ACPI: UEFI 0x0000000062CD2000 00005C (v01 INTEL  RstVmdV  00000000 ??   00000000)
[    0.008085] ACPI: PTDT 0x0000000062F73000 000D44 (v00 DELL   Dell Inc 00000005 MSFT 0100000D)
[    0.008087] ACPI: BGRT 0x0000000062F72000 000038 (v01 DELL   Dell Inc 00000002      01000013)
[    0.008089] ACPI: FPDT 0x0000000062F71000 000034 (v01 DELL   Dell Inc 00000002      01000013)
[    0.008095] ACPI: Local APIC address 0xfee00000
[    0.008310] No NUMA configuration found
[    0.008311] Faking a node at [mem 0x0000000000000000-0x000000028f7fffff]
[    0.008313] NODE_DATA(0) allocated [mem 0x28f7fc000-0x28f7fffff]
[    0.017918] Zone ranges:
[    0.017919]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.017920]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.017921]   Normal   [mem 0x0000000100000000-0x000000028f7fffff]
[    0.017921]   Device   empty
[    0.017922] Movable zone start for each node
[    0.017923] Early memory node ranges
[    0.017923]   node   0: [mem 0x0000000000001000-0x000000000009efff]
[    0.017924]   node   0: [mem 0x0000000000100000-0x000000005e72afff]
[    0.017924]   node   0: [mem 0x0000000062fff000-0x0000000062ffffff]
[    0.017925]   node   0: [mem 0x0000000100000000-0x000000028f7fffff]
[    0.018173] Zeroed struct page in unavailable ranges: 41270 pages
[    0.018174] Initmem setup node 0 [mem 0x0000000000001000-0x000000028f7fffff]
[    0.018175] On node 0 totalpages: 2023114
[    0.018176]   DMA zone: 64 pages used for memmap
[    0.018176]   DMA zone: 24 pages reserved
[    0.018177]   DMA zone: 3998 pages, LIFO batch:0
[    0.018195]   DMA32 zone: 5981 pages used for memmap
[    0.018195]   DMA32 zone: 382764 pages, LIFO batch:63
[    0.019979]   Normal zone: 25568 pages used for memmap
[    0.019980]   Normal zone: 1636352 pages, LIFO batch:63
[    0.027596] Reserving Intel graphics memory at [mem 0x6c800000-0x707fffff]
[    0.027971] ACPI: PM-Timer IO Port: 0x1808
[    0.027972] ACPI: Local APIC address 0xfee00000
[    0.027976] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.027977] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.027977] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.027977] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.027978] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.027978] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.027978] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.027979] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.027979] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[    0.027980] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[    0.027980] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[    0.027980] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[    0.027981] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[    0.027981] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[    0.027981] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[    0.027982] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[    0.028017] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[    0.028019] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.028020] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.028020] ACPI: IRQ0 used by override.
[    0.028021] ACPI: IRQ9 used by override.
[    0.028022] Using ACPI (MADT) for SMP configuration information
[    0.028023] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.028029] e820: update [mem 0x59c86000-0x59ca3fff] usable ==> reserved
[    0.028034] TSC deadline timer available
[    0.028035] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
[    0.028043] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.028044] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
[    0.028045] PM: hibernation: Registered nosave memory: [mem 0x59c86000-0x59ca3fff]
[    0.028045] PM: hibernation: Registered nosave memory: [mem 0x5e72b000-0x5e84dfff]
[    0.028046] PM: hibernation: Registered nosave memory: [mem 0x5e84e000-0x62510fff]
[    0.028046] PM: hibernation: Registered nosave memory: [mem 0x62511000-0x62d71fff]
[    0.028047] PM: hibernation: Registered nosave memory: [mem 0x62d72000-0x62ffefff]
[    0.028047] PM: hibernation: Registered nosave memory: [mem 0x63000000-0x66ffffff]
[    0.028048] PM: hibernation: Registered nosave memory: [mem 0x67000000-0x675fffff]
[    0.028048] PM: hibernation: Registered nosave memory: [mem 0x67600000-0x677fffff]
[    0.028049] PM: hibernation: Registered nosave memory: [mem 0x67800000-0x67ffffff]
[    0.028049] PM: hibernation: Registered nosave memory: [mem 0x68000000-0x707fffff]
[    0.028049] PM: hibernation: Registered nosave memory: [mem 0x70800000-0xbfffffff]
[    0.028050] PM: hibernation: Registered nosave memory: [mem 0xc0000000-0xcfffffff]
[    0.028050] PM: hibernation: Registered nosave memory: [mem 0xd0000000-0xfed1ffff]
[    0.028050] PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xfed7ffff]
[    0.028051] PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xfeffffff]
[    0.028051] PM: hibernation: Registered nosave memory: [mem 0xff000000-0xffffffff]
[    0.028052] [mem 0x70800000-0xbfffffff] available for PCI devices
[    0.028053] Booting paravirtualized kernel on bare hardware
[    0.028054] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.031311] setup_percpu: NR_CPUS:320 nr_cpumask_bits:320 nr_cpu_ids:8 nr_node_ids:1
[    0.031419] percpu: Embedded 55 pages/cpu s188416 r8192 d28672 u262144
[    0.031422] pcpu-alloc: s188416 r8192 d28672 u262144 alloc=1*2097152
[    0.031423] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
[    0.031436] Built 1 zonelists, mobility grouping on.  Total pages: 1991477
[    0.031436] Policy zone: Normal
[    0.031437] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux-lts root=UUID=5dcacf23-5a2e-4e6e-bd1b-681ee354428f rw loglevel=3 quiet rootdelay=10
[    0.031677] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[    0.031781] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[    0.031833] mem auto-init: stack:byref_all(zero), heap alloc:on, heap free:off
[    0.043950] Memory: 7697128K/8092456K available (14344K kernel code, 2030K rwdata, 8812K rodata, 1776K init, 4284K bss, 395068K reserved, 0K cma-reserved)
[    0.043955] random: get_random_u64 called from __kmem_cache_create+0x26/0x520 with crng_init=0
[    0.044042] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[    0.044049] ftrace: allocating 41646 entries in 163 pages
[    0.053206] ftrace: allocated 163 pages with 4 groups
[    0.053274] rcu: Hierarchical RCU implementation.
[    0.053275] rcu: 	RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=8.
[    0.053276] 	Rude variant of Tasks RCU enabled.
[    0.053276] 	Tracing variant of Tasks RCU enabled.
[    0.053276] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.
[    0.053277] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
[    0.055301] NR_IRQS: 20736, nr_irqs: 2048, preallocated irqs: 16
[    0.055768] Console: colour dummy device 80x25
[    0.055777] printk: console [tty0] enabled
[    0.055791] ACPI: Core revision 20200925
[    0.056106] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 99544814920 ns
[    0.056211] APIC: Switch to symmetric I/O mode setup
[    0.056213] DMAR: Host address width 39
[    0.056213] DMAR: DRHD base: 0x000000fed90000 flags: 0x0
[    0.056217] DMAR: dmar0: reg_base_addr fed90000 ver 4:0 cap 1c0000c40660462 ecap 69e2ff0505e
[    0.056218] DMAR: DRHD base: 0x000000fed84000 flags: 0x0
[    0.056221] DMAR: dmar1: reg_base_addr fed84000 ver 1:0 cap d2008c40660462 ecap f050da
[    0.056222] DMAR: DRHD base: 0x000000fed86000 flags: 0x0
[    0.056225] DMAR: dmar2: reg_base_addr fed86000 ver 1:0 cap d2008c40660462 ecap f050da
[    0.056226] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
[    0.056230] DMAR: dmar3: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
[    0.056231] DMAR: RMRR base: 0x0000006c000000 end: 0x000000707fffff
[    0.056234] DMAR-IR: IOAPIC id 2 under DRHD base  0xfed91000 IOMMU 3
[    0.056234] DMAR-IR: HPET id 0 under DRHD base 0xfed91000
[    0.056235] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[    0.058213] DMAR-IR: Enabled IRQ remapping in x2apic mode
[    0.058215] x2apic enabled
[    0.058251] Switched APIC routing to cluster x2apic.
[    0.062881] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.106165] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x22df1149949, max_idle_ns: 440795312789 ns
[    0.106170] Calibrating delay loop (skipped), value calculated using timer frequency.. 4838.40 BogoMIPS (lpj=24192000)
[    0.106172] pid_max: default: 32768 minimum: 301
[    0.108488] LSM: Security Framework initializing
[    0.108492] Yama: becoming mindful.
[    0.108505] LSM support for eBPF active
[    0.108530] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.108544] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.108730] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[    0.108758] mce: CPU0: Thermal monitoring enabled (TM1)
[    0.108825] process: using mwait in idle threads
[    0.108827] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
[    0.108827] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
[    0.108830] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.108831] Spectre V2 : Mitigation: Enhanced IBRS
[    0.108831] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.108832] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.108833] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
[    0.109053] Freeing SMP alternatives memory: 36K
[    0.111372] smpboot: CPU0: 11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz (family: 0x6, model: 0x8c, stepping: 0x1)
[    0.111441] Performance Events: PEBS fmt4+-baseline,  AnyThread deprecated, Icelake events, 32-deep LBR, full-width counters, Intel PMU driver.
[    0.111451] ... version:                5
[    0.111451] ... bit width:              48
[    0.111451] ... generic registers:      8
[    0.111452] ... value mask:             0000ffffffffffff
[    0.111452] ... max period:             00007fffffffffff
[    0.111452] ... fixed-purpose events:   4
[    0.111453] ... event mask:             0001000f000000ff
[    0.111511] rcu: Hierarchical SRCU implementation.
[    0.112026] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    0.112083] smp: Bringing up secondary CPUs ...
[    0.112143] x86: Booting SMP configuration:
[    0.112144] .... node  #0, CPUs:      #1 #2 #3 #4 #5 #6 #7
[    0.117232] smp: Brought up 1 node, 8 CPUs
[    0.117232] smpboot: Max logical packages: 1
[    0.117232] smpboot: Total of 8 processors activated (38707.20 BogoMIPS)
[    0.121048] devtmpfs: initialized
[    0.121048] x86/mm: Memory block size: 128MB
[    0.121048] PM: Registering ACPI NVS region [mem 0x62511000-0x62d71fff] (8785920 bytes)
[    0.121048] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.121048] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
[    0.121048] pinctrl core: initialized pinctrl subsystem
[    0.121048] PM: RTC time: 19:04:43, date: 2021-03-03
[    0.121048] NET: Registered protocol family 16
[    0.121048] DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations
[    0.121048] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.121048] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.121048] audit: initializing netlink subsys (disabled)
[    0.121048] audit: type=2000 audit(1614798283.070:1): state=initialized audit_enabled=0 res=1
[    0.121048] thermal_sys: Registered thermal governor 'fair_share'
[    0.121048] thermal_sys: Registered thermal governor 'bang_bang'
[    0.121048] thermal_sys: Registered thermal governor 'step_wise'
[    0.121048] thermal_sys: Registered thermal governor 'user_space'
[    0.121048] thermal_sys: Registered thermal governor 'power_allocator'
[    0.121048] cpuidle: using governor ladder
[    0.121048] cpuidle: using governor menu
[    0.121048] Simple Boot Flag at 0x47 set to 0x80
[    0.121048] ACPI: bus type PCI registered
[    0.121048] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.121048] PCI: MMCONFIG for domain 0000 [bus 00-e0] at [mem 0xc0000000-0xce0fffff] (base 0xc0000000)
[    0.121048] PCI: MMCONFIG at [mem 0xc0000000-0xce0fffff] reserved in E820
[    0.121048] PCI: Using configuration type 1 for base access
[    0.121048] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.121048] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.121048] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.121048] ACPI: Added _OSI(Module Device)
[    0.121048] ACPI: Added _OSI(Processor Device)
[    0.121048] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.121048] ACPI: Added _OSI(Processor Aggregator Device)
[    0.121048] ACPI: Added _OSI(Linux-Dell-Video)
[    0.121048] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.121048] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    0.176184] ACPI: 13 ACPI AML tables successfully acquired and loaded
[    0.189760] ACPI: Dynamic OEM Table Load:
[    0.189767] ACPI: SSDT 0xFFFF937E8142BA00 0001CB (v02 PmRef  Cpu0Psd  00003000 INTL 20191018)
[    0.190807] ACPI: \_SB_.PR00: _OSC native thermal LVT Acked
[    0.192782] ACPI: Dynamic OEM Table Load:
[    0.192787] ACPI: SSDT 0xFFFF937E8141FC00 000394 (v02 PmRef  Cpu0Cst  00003001 INTL 20191018)
[    0.193955] ACPI: Dynamic OEM Table Load:
[    0.193959] ACPI: SSDT 0xFFFF937E81681000 0005C3 (v02 PmRef  Cpu0Ist  00003000 INTL 20191018)
[    0.195192] ACPI: Dynamic OEM Table Load:
[    0.195196] ACPI: SSDT 0xFFFF937E8141B800 000266 (v02 PmRef  Cpu0Hwp  00003000 INTL 20191018)
[    0.196508] ACPI: Dynamic OEM Table Load:
[    0.196513] ACPI: SSDT 0xFFFF937E81421000 0008E7 (v02 PmRef  ApIst    00003000 INTL 20191018)
[    0.197794] ACPI: Dynamic OEM Table Load:
[    0.197798] ACPI: SSDT 0xFFFF937E81681800 00048A (v02 PmRef  ApHwp    00003000 INTL 20191018)
[    0.199000] ACPI: Dynamic OEM Table Load:
[    0.199004] ACPI: SSDT 0xFFFF937E81684800 0004D4 (v02 PmRef  ApPsd    00003000 INTL 20191018)
[    0.200198] ACPI: Dynamic OEM Table Load:
[    0.200203] ACPI: SSDT 0xFFFF937E81685800 00048A (v02 PmRef  ApCst    00003000 INTL 20191018)
[    0.204972] ACPI: EC: EC started
[    0.204973] ACPI: EC: interrupt blocked
[    0.207507] ACPI: EC: EC_CMD/EC_SC=0x934, EC_DATA=0x930
[    0.207508] ACPI: \_SB_.PC00.LPCB.ECDV: Boot DSDT EC used to handle transactions
[    0.207509] ACPI: Interpreter enabled
[    0.207552] ACPI: (supports S0 S4 S5)
[    0.207554] ACPI: Using IOAPIC for interrupt routing
[    0.207587] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.209295] ACPI: Enabled 8 GPEs in block 00 to 7F
[    0.213294] ACPI: Power Resource [BTPR] (on)
[    0.222507] ACPI: Power Resource [V0PR] (on)
[    0.222614] ACPI: Power Resource [V1PR] (on)
[    0.222717] ACPI: Power Resource [V2PR] (on)
[    0.226359] ACPI: Power Resource [WRST] (on)
[    0.234910] ACPI: Power Resource [V0PR] (on)
[    0.234957] ACPI: Power Resource [V1PR] (on)
[    0.235003] ACPI: Power Resource [V2PR] (on)
[    0.235048] ACPI: Power Resource [V3PR] (on)
[    0.235111] ACPI: Power Resource [TBT0] (on)
[    0.235141] ACPI: Power Resource [TBT1] (on)
[    0.235168] ACPI: Power Resource [D3C] (on)
[    0.526383] ACPI: Power Resource [PIN] (off)
[    0.526693] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-e0])
[    0.526698] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    0.528398] acpi PNP0A08:00: _OSC: platform does not support [AER]
[    0.531571] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability LTR DPC]
[    0.534526] PCI host bridge to bus 0000:00
[    0.534527] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.534528] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.534529] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.534530] pci_bus 0000:00: root bus resource [mem 0x70800000-0xbfffffff window]
[    0.534531] pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
[    0.534531] pci_bus 0000:00: root bus resource [bus 00-e0]
[    0.534555] pci 0000:00:00.0: [8086:9a14] type 00 class 0x060000
[    0.535868] pci 0000:00:02.0: [8086:9a49] type 00 class 0x030000
[    0.535875] pci 0000:00:02.0: reg 0x10: [mem 0x6054000000-0x6054ffffff 64bit]
[    0.535880] pci 0000:00:02.0: reg 0x18: [mem 0x4000000000-0x400fffffff 64bit pref]
[    0.535883] pci 0000:00:02.0: reg 0x20: [io  0x3000-0x303f]
[    0.535897] pci 0000:00:02.0: BAR 2: assigned to efifb
[    0.535898] pci 0000:00:02.0: DMAR: Skip IOMMU disabling for graphics
[    0.535922] pci 0000:00:02.0: reg 0x344: [mem 0x00000000-0x00ffffff 64bit]
[    0.535923] pci 0000:00:02.0: VF(n) BAR0 space: [mem 0x00000000-0x06ffffff 64bit] (contains BAR0 for 7 VFs)
[    0.535926] pci 0000:00:02.0: reg 0x34c: [mem 0x00000000-0x1fffffff 64bit pref]
[    0.535927] pci 0000:00:02.0: VF(n) BAR2 space: [mem 0x00000000-0xdfffffff 64bit pref] (contains BAR2 for 7 VFs)
[    0.536848] pci 0000:00:04.0: [8086:9a03] type 00 class 0x118000
[    0.536863] pci 0000:00:04.0: reg 0x10: [mem 0x6055280000-0x605529ffff 64bit]
[    0.537853] pci 0000:00:06.0: [8086:09ab] type 00 class 0x088000
[    0.538887] pci 0000:00:07.0: [8086:9a23] type 01 class 0x060400
[    0.539804] pci 0000:00:07.0: PME# supported from D0 D3hot D3cold
[    0.539825] pci 0000:00:07.0: DPC: RP PIO log size 0 is invalid
[    0.540031] pci 0000:00:07.2: [8086:9a27] type 01 class 0x060400
[    0.540946] pci 0000:00:07.2: PME# supported from D0 D3hot D3cold
[    0.540966] pci 0000:00:07.2: DPC: RP PIO log size 0 is invalid
[    0.541178] pci 0000:00:0a.0: [8086:9a0d] type 00 class 0x118000
[    0.541185] pci 0000:00:0a.0: reg 0x10: [mem 0x60552d0000-0x60552d7fff 64bit]
[    0.541205] pci 0000:00:0a.0: enabling Extended Tags
[    0.542114] pci 0000:00:0d.0: [8086:9a13] type 00 class 0x0c0330
[    0.542126] pci 0000:00:0d.0: reg 0x10: [mem 0x60552c0000-0x60552cffff 64bit]
[    0.542180] pci 0000:00:0d.0: PME# supported from D3hot D3cold
[    0.543134] pci 0000:00:0d.2: [8086:9a1b] type 00 class 0x0c0340
[    0.543145] pci 0000:00:0d.2: reg 0x10: [mem 0x6055240000-0x605527ffff 64bit]
[    0.543152] pci 0000:00:0d.2: reg 0x18: [mem 0x60552ec000-0x60552ecfff 64bit]
[    0.543187] pci 0000:00:0d.2: supports D1 D2
[    0.543187] pci 0000:00:0d.2: PME# supported from D0 D1 D2 D3hot D3cold
[    0.544087] pci 0000:00:0d.3: [8086:9a1d] type 00 class 0x0c0340
[    0.544098] pci 0000:00:0d.3: reg 0x10: [mem 0x6055200000-0x605523ffff 64bit]
[    0.544105] pci 0000:00:0d.3: reg 0x18: [mem 0x60552eb000-0x60552ebfff 64bit]
[    0.544140] pci 0000:00:0d.3: supports D1 D2
[    0.544140] pci 0000:00:0d.3: PME# supported from D0 D1 D2 D3hot D3cold
[    0.545066] pci 0000:00:0e.0: [8086:9a0b] type 00 class 0x010400
[    0.545077] pci 0000:00:0e.0: reg 0x10: [mem 0x6052000000-0x6053ffffff 64bit]
[    0.545083] pci 0000:00:0e.0: reg 0x18: [mem 0xa4000000-0xa5ffffff]
[    0.545095] pci 0000:00:0e.0: reg 0x20: [mem 0x6055100000-0x60551fffff 64bit]
[    0.546059] pci 0000:00:12.0: [8086:a0fc] type 00 class 0x070000
[    0.546079] pci 0000:00:12.0: reg 0x10: [mem 0x60552b0000-0x60552bffff 64bit]
[    0.546147] pci 0000:00:12.0: PME# supported from D0 D3hot
[    0.547166] pci 0000:00:14.0: [8086:a0ed] type 00 class 0x0c0330
[    0.547187] pci 0000:00:14.0: reg 0x10: [mem 0x60552a0000-0x60552affff 64bit]
[    0.547272] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.548238] pci 0000:00:14.2: [8086:a0ef] type 00 class 0x050000
[    0.548258] pci 0000:00:14.2: reg 0x10: [mem 0x60552e0000-0x60552e3fff 64bit]
[    0.548271] pci 0000:00:14.2: reg 0x18: [mem 0x60552ea000-0x60552eafff 64bit]
[    0.549228] pci 0000:00:14.3: [8086:a0f0] type 00 class 0x028000
[    0.549249] pci 0000:00:14.3: reg 0x10: [mem 0x60552dc000-0x60552dffff 64bit]
[    0.549374] pci 0000:00:14.3: PME# supported from D0 D3hot D3cold
[    0.550357] pci 0000:00:15.0: [8086:a0e8] type 00 class 0x0c8000
[    0.550384] pci 0000:00:15.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[    0.551499] pci 0000:00:15.1: [8086:a0e9] type 00 class 0x0c8000
[    0.551527] pci 0000:00:15.1: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[    0.552628] pci 0000:00:16.0: [8086:a0e0] type 00 class 0x078000
[    0.552650] pci 0000:00:16.0: reg 0x10: [mem 0x60552e7000-0x60552e7fff 64bit]
[    0.552735] pci 0000:00:16.0: PME# supported from D3hot
[    0.553790] pci 0000:00:19.0: [8086:a0c5] type 00 class 0x0c8000
[    0.553821] pci 0000:00:19.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[    0.554894] pci 0000:00:19.1: [8086:a0c6] type 00 class 0x0c8000
[    0.554921] pci 0000:00:19.1: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[    0.556072] pci 0000:00:1d.0: [8086:a0b3] type 01 class 0x060400
[    0.556172] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.556203] pci 0000:00:1d.0: PTM enabled (root), 4ns granularity
[    0.557260] pci 0000:00:1f.0: [8086:a082] type 00 class 0x060100
[    0.558309] pci 0000:00:1f.3: [8086:a0c8] type 00 class 0x040100
[    0.558353] pci 0000:00:1f.3: reg 0x10: [mem 0x60552d8000-0x60552dbfff 64bit]
[    0.558407] pci 0000:00:1f.3: reg 0x20: [mem 0x6055000000-0x60550fffff 64bit]
[    0.558517] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[    0.559520] pci 0000:00:1f.4: [8086:a0a3] type 00 class 0x0c0500
[    0.559542] pci 0000:00:1f.4: reg 0x10: [mem 0x60552e4000-0x60552e40ff 64bit]
[    0.559563] pci 0000:00:1f.4: reg 0x20: [io  0xefa0-0xefbf]
[    0.560514] pci 0000:00:1f.5: [8086:a0a4] type 00 class 0x0c8000
[    0.560533] pci 0000:00:1f.5: reg 0x10: [mem 0xfe010000-0xfe010fff]
[    0.561506] pci 0000:00:07.0: PCI bridge to [bus 01-38]
[    0.561510] pci 0000:00:07.0:   bridge window [mem 0x8c000000-0xa23fffff]
[    0.561513] pci 0000:00:07.0:   bridge window [mem 0x6000000000-0x6021ffffff 64bit pref]
[    0.561545] pci 0000:00:07.2: PCI bridge to [bus 39-70]
[    0.561548] pci 0000:00:07.2:   bridge window [mem 0x74000000-0x8a3fffff]
[    0.561552] pci 0000:00:07.2:   bridge window [mem 0x6030000000-0x6051ffffff 64bit pref]
[    0.561614] pci 0000:71:00.0: [10ec:5260] type 00 class 0xff0000
[    0.561631] pci 0000:71:00.0: reg 0x10: [mem 0xa6000000-0xa6000fff]
[    0.561767] pci 0000:71:00.0: supports D1 D2
[    0.561767] pci 0000:71:00.0: PME# supported from D1 D2 D3hot D3cold
[    0.561913] pci 0000:00:1d.0: PCI bridge to [bus 71]
[    0.561917] pci 0000:00:1d.0:   bridge window [mem 0xa6000000-0xa60fffff]
[    0.581221] ACPI: EC: interrupt unblocked
[    0.581222] ACPI: EC: event unblocked
[    0.581229] ACPI: EC: EC_CMD/EC_SC=0x934, EC_DATA=0x930
[    0.581230] ACPI: EC: GPE=0x6e
[    0.581231] ACPI: \_SB_.PC00.LPCB.ECDV: Boot DSDT EC initialization complete
[    0.581232] ACPI: \_SB_.PC00.LPCB.ECDV: EC: Used to handle transactions and events
[    0.581305] iommu: Default domain type: Translated 
[    0.586194] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    0.586194] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.586194] pci 0000:00:02.0: vgaarb: bridge control possible
[    0.586194] vgaarb: loaded
[    0.586275] SCSI subsystem initialized
[    0.586280] libata version 3.00 loaded.
[    0.586280] ACPI: bus type USB registered
[    0.586280] usbcore: registered new interface driver usbfs
[    0.586280] usbcore: registered new interface driver hub
[    0.586280] usbcore: registered new device driver usb
[    0.586280] pps_core: LinuxPPS API ver. 1 registered
[    0.586280] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.586280] PTP clock support registered
[    0.586280] EDAC MC: Ver: 3.0.0
[    0.586410] Registered efivars operations
[    0.586410] NetLabel: Initializing
[    0.586410] NetLabel:  domain hash size = 128
[    0.586410] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.586410] NetLabel:  unlabeled traffic allowed by default
[    0.586410] PCI: Using ACPI for IRQ routing
[    0.594514] PCI: pci_cache_line_size set to 64 bytes
[    0.594663] pci 0000:00:1f.5: can't claim BAR 0 [mem 0xfe010000-0xfe010fff]: no compatible bridge window
[    0.594764] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
[    0.594764] e820: reserve RAM buffer [mem 0x59c86000-0x5bffffff]
[    0.594765] e820: reserve RAM buffer [mem 0x5e72b000-0x5fffffff]
[    0.594766] e820: reserve RAM buffer [mem 0x63000000-0x63ffffff]
[    0.594766] e820: reserve RAM buffer [mem 0x28f800000-0x28fffffff]
[    0.596828] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.596832] hpet0: 8 comparators, 64-bit 19.200000 MHz counter
[    0.598240] clocksource: Switched to clocksource tsc-early
[    0.602640] VFS: Disk quotas dquot_6.6.0
[    0.602652] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.602692] pnp: PnP ACPI init
[    0.602881] system 00:00: [io  0x0680-0x069f] has been reserved
[    0.602882] system 00:00: [io  0x164e-0x164f] has been reserved
[    0.602885] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.602895] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.602968] system 00:02: [io  0x1854-0x1857] has been reserved
[    0.602970] system 00:02: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    0.603026] pnp 00:03: Plug and Play ACPI device, IDs PNP0303 (active)
[    0.603035] pnp 00:04: Plug and Play ACPI device, IDs DLL0991 PNP0f13 (active)
[    0.603755] pnp 00:05: disabling [mem 0xc0000000-0xcfffffff] because it overlaps 0000:00:02.0 BAR 9 [mem 0x00000000-0xdfffffff 64bit pref]
[    0.603769] system 00:05: [mem 0xfedc0000-0xfedc7fff] has been reserved
[    0.603770] system 00:05: [mem 0xfeda0000-0xfeda0fff] has been reserved
[    0.603771] system 00:05: [mem 0xfeda1000-0xfeda1fff] has been reserved
[    0.603772] system 00:05: [mem 0xfed20000-0xfed7ffff] could not be reserved
[    0.603773] system 00:05: [mem 0xfed90000-0xfed93fff] could not be reserved
[    0.603773] system 00:05: [mem 0xfed45000-0xfed8ffff] could not be reserved
[    0.603774] system 00:05: [mem 0xfee00000-0xfeefffff] has been reserved
[    0.603776] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.604618] system 00:06: [io  0x1800-0x18fe] could not be reserved
[    0.604619] system 00:06: [mem 0xfe000000-0xfe01ffff] has been reserved
[    0.604619] system 00:06: [mem 0xfe04c000-0xfe04ffff] has been reserved
[    0.604620] system 00:06: [mem 0xfe050000-0xfe0affff] has been reserved
[    0.604621] system 00:06: [mem 0xfe0d0000-0xfe0fffff] has been reserved
[    0.604621] system 00:06: [mem 0xfe200000-0xfe7fffff] has been reserved
[    0.604622] system 00:06: [mem 0xff000000-0xffffffff] has been reserved
[    0.604623] system 00:06: [mem 0xfd000000-0xfd68ffff] has been reserved
[    0.604623] system 00:06: [mem 0xfd6b0000-0xfd6cffff] has been reserved
[    0.604624] system 00:06: [mem 0xfd6f0000-0xfdffffff] has been reserved
[    0.604626] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.604872] system 00:07: [io  0x2000-0x20fe] has been reserved
[    0.604873] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.605042] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.607974] pnp: PnP ACPI: found 9 devices
[    0.613170] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.613203] NET: Registered protocol family 2
[    0.613316] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
[    0.613359] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.613475] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[    0.613531] TCP: Hash tables configured (established 65536 bind 65536)
[    0.613580] MPTCP token hash table entries: 8192 (order: 5, 196608 bytes, linear)
[    0.613608] UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
[    0.613625] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
[    0.613664] NET: Registered protocol family 1
[    0.613667] NET: Registered protocol family 44
[    0.613671] pci 0000:00:07.0: bridge window [io  0x1000-0x0fff] to [bus 01-38] add_size 1000
[    0.613672] pci 0000:00:07.2: bridge window [io  0x1000-0x0fff] to [bus 39-70] add_size 1000
[    0.613681] pci 0000:00:02.0: BAR 9: assigned [mem 0x4020000000-0x40ffffffff 64bit pref]
[    0.613684] pci 0000:00:02.0: BAR 7: assigned [mem 0x4010000000-0x4016ffffff 64bit]
[    0.613686] pci 0000:00:07.0: BAR 13: assigned [io  0x4000-0x4fff]
[    0.613687] pci 0000:00:07.2: BAR 13: assigned [io  0x5000-0x5fff]
[    0.613688] pci 0000:00:15.0: BAR 0: assigned [mem 0x4017000000-0x4017000fff 64bit]
[    0.613744] pci 0000:00:15.1: BAR 0: assigned [mem 0x4017001000-0x4017001fff 64bit]
[    0.613758] pci 0000:00:19.0: BAR 0: assigned [mem 0x4017002000-0x4017002fff 64bit]
[    0.613817] pci 0000:00:19.1: BAR 0: assigned [mem 0x4017003000-0x4017003fff 64bit]
[    0.613832] pci 0000:00:1f.5: BAR 0: assigned [mem 0x70800000-0x70800fff]
[    0.613843] pci 0000:00:07.0: PCI bridge to [bus 01-38]
[    0.613845] pci 0000:00:07.0:   bridge window [io  0x4000-0x4fff]
[    0.613848] pci 0000:00:07.0:   bridge window [mem 0x8c000000-0xa23fffff]
[    0.613850] pci 0000:00:07.0:   bridge window [mem 0x6000000000-0x6021ffffff 64bit pref]
[    0.613853] pci 0000:00:07.2: PCI bridge to [bus 39-70]
[    0.613855] pci 0000:00:07.2:   bridge window [io  0x5000-0x5fff]
[    0.613857] pci 0000:00:07.2:   bridge window [mem 0x74000000-0x8a3fffff]
[    0.613860] pci 0000:00:07.2:   bridge window [mem 0x6030000000-0x6051ffffff 64bit pref]
[    0.613863] pci 0000:00:1d.0: PCI bridge to [bus 71]
[    0.613868] pci 0000:00:1d.0:   bridge window [mem 0xa6000000-0xa60fffff]
[    0.613875] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.613876] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.613876] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.613877] pci_bus 0000:00: resource 7 [mem 0x70800000-0xbfffffff window]
[    0.613878] pci_bus 0000:00: resource 8 [mem 0x4000000000-0x7fffffffff window]
[    0.613878] pci_bus 0000:01: resource 0 [io  0x4000-0x4fff]
[    0.613879] pci_bus 0000:01: resource 1 [mem 0x8c000000-0xa23fffff]
[    0.613879] pci_bus 0000:01: resource 2 [mem 0x6000000000-0x6021ffffff 64bit pref]
[    0.613880] pci_bus 0000:39: resource 0 [io  0x5000-0x5fff]
[    0.613881] pci_bus 0000:39: resource 1 [mem 0x74000000-0x8a3fffff]
[    0.613881] pci_bus 0000:39: resource 2 [mem 0x6030000000-0x6051ffffff 64bit pref]
[    0.613882] pci_bus 0000:71: resource 1 [mem 0xa6000000-0xa60fffff]
[    0.614044] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.614498] PCI: CLS 0 bytes, default 64
[    0.614519] Trying to unpack rootfs image as initramfs...
[    0.816865] Freeing initrd memory: 35608K
[    0.817030] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.817031] software IO TLB: mapped [mem 0x0000000050552000-0x0000000054552000] (64MB)
[    0.817054] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x22df1149949, max_idle_ns: 440795312789 ns
[    0.817074] clocksource: Switched to clocksource tsc
[    0.817823] check: Scanning for low memory corruption every 60 seconds
[    0.818008] Initialise system trusted keyrings
[    0.818017] Key type blacklist registered
[    0.818061] workingset: timestamp_bits=41 max_order=21 bucket_order=0
[    0.818613] zbud: loaded
[    0.825631] Key type asymmetric registered
[    0.825632] Asymmetric key parser 'x509' registered
[    0.825636] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
[    0.825680] io scheduler mq-deadline registered
[    0.825681] io scheduler kyber registered
[    0.825691] io scheduler bfq registered
[    0.825801] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[    0.827672] pcieport 0000:00:07.0: PME: Signaling with IRQ 124
[    0.827687] pcieport 0000:00:07.0: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    0.827903] pcieport 0000:00:07.2: PME: Signaling with IRQ 125
[    0.827915] pcieport 0000:00:07.2: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    0.828122] pcieport 0000:00:1d.0: PME: Signaling with IRQ 126
[    0.828200] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    0.828219] efifb: probing for efifb
[    0.828236] efifb: Ignoring BGRT: unexpected or invalid BMP data
[    0.828237] efifb: framebuffer at 0x4000000000, using 9024k, total 9024k
[    0.828238] efifb: mode is 1920x1200x32, linelength=7680, pages=1
[    0.828238] efifb: scrolling: redraw
[    0.828239] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    0.828273] fbcon: Deferring console take-over
[    0.828273] fb0: EFI VGA frame buffer device
[    0.828278] intel_idle: MWAIT substates: 0x11121020
[    0.828457] Monitor-Mwait will be used to enter C-1 state
[    0.828459] Monitor-Mwait will be used to enter C-2 state
[    0.828461] Monitor-Mwait will be used to enter C-3 state
[    0.828463] ACPI: \_SB_.PR00: Found 3 idle states
[    0.828464] intel_idle: v0.5.1 model 0x8C
[    0.828626] intel_idle: Local APIC timer is reliable in all C-states
[    0.830338] ACPI: AC Adapter [AC] (off-line)
[    0.830382] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
[    0.830397] ACPI: Lid Switch [LID0]
[    0.830408] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[    0.830418] ACPI: Power Button [PBTN]
[    0.832431] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    0.834496] serial 0000:00:12.0: enabling device (0000 -> 0002)
[    0.835983] Non-volatile memory driver v1.3
[    0.835983] AMD-Vi: AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
[    0.835984] AMD-Vi: AMD IOMMUv2 functionality not available on this system
[    0.837027] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.837031] ehci-pci: EHCI PCI platform driver
[    0.837035] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    0.837037] ohci-pci: OHCI PCI platform driver
[    0.837040] uhci_hcd: USB Universal Host Controller Interface driver
[    0.837060] usbcore: registered new interface driver usbserial_generic
[    0.837062] usbserial: USB Serial support registered for generic
[    0.837079] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[    0.837466] i8042: Warning: Keylock active
[    0.840185] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.840188] serio: i8042 AUX port at 0x60,0x64 irq 12
[    0.840280] rtc_cmos 00:01: RTC can wake from S4
[    0.840906] rtc_cmos 00:01: registered as rtc0
[    0.841033] rtc_cmos 00:01: setting system clock to 2021-03-03T19:04:44 UTC (1614798284)
[    0.841045] rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram
[    0.841076] intel_pstate: Intel P-state driver initializing
[    0.841443] intel_pstate: HWP enabled
[    0.841780] ledtrig-cpu: registered to indicate activity on CPUs
[    0.842967] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
[    0.845277] pstore: Registered efi as persistent store backend
[    0.845283] hid: raw HID events driver (C) Jiri Kosina
[    0.845322] intel_pmc_core INT33A1:00:  initialized
[    0.845368] drop_monitor: Initializing network drop monitor service
[    0.845410] Initializing XFRM netlink socket
[    0.845462] NET: Registered protocol family 10
[    0.848617] Segment Routing with IPv6
[    0.848618] RPL Segment Routing with IPv6
[    0.848632] NET: Registered protocol family 17
[    0.849239] microcode: sig=0x806c1, pf=0x80, revision=0x6e
[    0.849276] microcode: Microcode Update Driver: v2.2.
[    0.849561] resctrl: L2 allocation detected
[    0.849561] resctrl: L2DATA allocation detected
[    0.849562] resctrl: L2CODE allocation detected
[    0.849564] IPI shorthand broadcast: enabled
[    0.849569] sched_clock: Marking stable (859058128, -9504231)->(863321379, -13767482)
[    0.849711] registered taskstats version 1
[    0.849717] Loading compiled-in X.509 certificates
[    0.851292] Loaded X.509 cert 'Build time autogenerated kernel key: 1385e8f65308b61dfd9f2fef580eae98cc588794'
[    0.851384] zswap: loaded using pool lz4/z3fold
[    0.851514] Key type ._fscrypt registered
[    0.851514] Key type .fscrypt registered
[    0.851515] Key type fscrypt-provisioning registered
[    0.851658] pstore: Using crash dump compression: zstd
[    0.856800] battery: ACPI: Battery Slot [BAT0] (battery present)
[    0.858276] PM:   Magic number: 13:733:90
[    0.858311]  edac: hash matches
[    0.858446] RAS: Correctable Errors collector initialized.
[    0.862802] Freeing unused decrypted memory: 2036K
[    0.862983] Freeing unused kernel image (initmem) memory: 1776K
[    0.956300] Write protecting the kernel read-only data: 26624k
[    0.957086] Freeing unused kernel image (text/rodata gap) memory: 2036K
[    0.957450] Freeing unused kernel image (rodata/data gap) memory: 1428K
[    0.973321] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    0.973326] rodata_test: all tests were successful
[    0.973332] Run /init as init process
[    0.973333]   with arguments:
[    0.973334]     /init
[    0.973335]   with environment:
[    0.973335]     HOME=/
[    0.973336]     TERM=linux
[    0.973337]     BOOT_IMAGE=/boot/vmlinuz-linux-lts
[    0.984186] systemd[1]: systemd 247.3-1-arch running in system mode. (+PAM +AUDIT -SELINUX -IMA -APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +ZSTD +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=hybrid)
[    0.984298] systemd[1]: Detected architecture x86-64.
[    0.984299] systemd[1]: Running in initial RAM disk.
[    1.026537] systemd[1]: Initializing machine ID from random generator.
[    1.077486] systemd[1]: Queued start job for default target Initrd Default Target.
[    1.077580] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[    1.077600] systemd[1]: Reached target Local Encrypted Volumes.
[    1.077621] systemd[1]: Reached target Local File Systems.
[    1.077642] systemd[1]: Reached target Paths.
[    1.077651] systemd[1]: Reached target Slices.
[    1.077658] systemd[1]: Reached target Swap.
[    1.077666] systemd[1]: Reached target Timers.
[    1.077729] systemd[1]: Listening on Journal Audit Socket.
[    1.077759] systemd[1]: Listening on Journal Socket (/dev/log).
[    1.077787] systemd[1]: Listening on Journal Socket.
[    1.077823] systemd[1]: Listening on udev Control Socket.
[    1.077845] systemd[1]: Listening on udev Kernel Socket.
[    1.077853] systemd[1]: Reached target Sockets.
[    1.081039] systemd[1]: Starting Create list of static device nodes for the current kernel...
[    1.081663] systemd[1]: Starting Journal Service...
[    1.082037] systemd[1]: Starting Load Kernel Modules...
[    1.082417] systemd[1]: Starting Setup Virtual Console...
[    1.082784] systemd[1]: Finished Create list of static device nodes for the current kernel.
[    1.083153] systemd[1]: Starting Create Static Device Nodes in /dev...
[    1.084776] Asymmetric key parser 'pkcs8' registered
[    1.085295] systemd[1]: Finished Load Kernel Modules.
[    1.085888] systemd[1]: Starting Apply Kernel Variables...
[    1.086176] systemd[1]: Finished Create Static Device Nodes in /dev.
[    1.088271] systemd[1]: Finished Apply Kernel Variables.
[    1.089337] systemd[1]: Finished Setup Virtual Console.
[    1.089402] systemd[1]: Condition check resulted in dracut ask for additional cmdline parameters being skipped.
[    1.089863] systemd[1]: Starting dracut cmdline hook...
[    1.106941] systemd[1]: Started Journal Service.
[    1.107001] audit: type=1130 audit(1614798284.760:2): 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.110725] audit: type=1130 audit(1614798284.760:3): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    1.121941] audit: type=1130 audit(1614798284.770:4): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=dracut-cmdline comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    1.133532] device-mapper: uevent: version 1.0.3
[    1.133618] device-mapper: ioctl: 4.43.0-ioctl (2020-10-01) initialised: dm-devel@redhat.com
[    1.146157] audit: type=1130 audit(1614798284.790:5): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=dracut-pre-udev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    1.146593] audit: type=1334 audit(1614798284.800:6): prog-id=5 op=LOAD
[    1.146618] audit: type=1334 audit(1614798284.800:7): prog-id=6 op=LOAD
[    1.165177] audit: type=1130 audit(1614798284.810:8): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udevd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    1.171973] audit: type=1130 audit(1614798284.820:9): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=dracut-pre-trigger comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    1.213426] audit: type=1130 audit(1614798284.860:10): 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.220100] acpi PNP0C14:01: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
[    1.220149] wmi_bus wmi_bus-PNP0C14:02: WQBC data block query control method not found
[    1.220151] acpi PNP0C14:02: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
[    1.222518] acpi PNP0C14:03: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
[    1.224756] acpi PNP0C14:04: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
[    1.224819] acpi PNP0C14:05: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
[    1.224874] acpi PNP0C14:06: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
[    1.224898] acpi PNP0C14:07: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
[    1.226620] vmd 0000:00:0e.0: PCI host bridge to bus 10000:e0
[    1.226623] pci_bus 10000:e0: root bus resource [bus e0-ff]
[    1.226624] pci_bus 10000:e0: root bus resource [mem 0xa4000000-0xa5ffffff]
[    1.226625] pci_bus 10000:e0: root bus resource [mem 0x6055102000-0x60551fffff 64bit]
[    1.226639] pci 10000:e0:06.0: [8086:9a09] type 01 class 0x060400
[    1.226698] pci 10000:e0:06.0: PME# supported from D0 D3hot D3cold
[    1.226722] pci 10000:e0:06.0: PTM enabled (root), 4ns granularity
[    1.226779] pci 10000:e0:06.0: Primary bus is hard wired to 0
[    1.226812] pci 10000:e1:00.0: [1179:011a] type 00 class 0x010802
[    1.226833] pci 10000:e1:00.0: reg 0x10: [mem 0xa4000000-0xa4003fff 64bit]
[    1.226989] xhci_hcd 0000:00:0d.0: xHCI Host Controller
[    1.226993] xhci_hcd 0000:00:0d.0: new USB bus registered, assigned bus number 1
[    1.227022] pci 10000:e0:06.0: PCI bridge to [bus e1]
[    1.227025] pci 10000:e0:06.0:   bridge window [io  0x0000-0x0fff]
[    1.227026] pci 10000:e0:06.0:   bridge window [mem 0xa4000000-0xa40fffff]
[    1.227030] pci 10000:e0:06.0: Primary bus is hard wired to 0
[    1.227037] pci 10000:e0:06.0: BAR 14: assigned [mem 0xa4000000-0xa40fffff]
[    1.227038] pci 10000:e0:06.0: BAR 13: no space for [io  size 0x1000]
[    1.227039] pci 10000:e0:06.0: BAR 13: failed to assign [io  size 0x1000]
[    1.227042] pci 10000:e1:00.0: BAR 0: assigned [mem 0xa4000000-0xa4003fff 64bit]
[    1.227051] pci 10000:e0:06.0: PCI bridge to [bus e1]
[    1.227054] pci 10000:e0:06.0:   bridge window [mem 0xa4000000-0xa40fffff]
[    1.227072] pcieport 10000:e0:06.0: can't derive routing for PCI INT D
[    1.227072] pcieport 10000:e0:06.0: PCI INT D: no GSI
[    1.227113] pcieport 10000:e0:06.0: PME: Signaling with IRQ 146
[    1.227169] pcieport 10000:e0:06.0: AER: enabled with IRQ 146
[    1.227198] pcieport 10000:e0:06.0: DPC: enabled with IRQ 146
[    1.227199] pcieport 10000:e0:06.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
[    1.227306] nvme nvme0: pci function 10000:e1:00.0
[    1.227315] vmd 0000:00:0e.0: Bound to PCI domain 10000
[    1.227336] pcieport 10000:e0:06.0: can't derive routing for PCI INT A
[    1.227337] nvme 10000:e1:00.0: PCI INT A: no GSI
[    1.228054] xhci_hcd 0000:00:0d.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000200009810
[    1.228058] xhci_hcd 0000:00:0d.0: cache line size of 64 is not supported
[    1.228185] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[    1.228186] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.228187] usb usb1: Product: xHCI Host Controller
[    1.228187] usb usb1: Manufacturer: Linux 5.10.19-1-lts xhci-hcd
[    1.228188] usb usb1: SerialNumber: 0000:00:0d.0
[    1.228270] hub 1-0:1.0: USB hub found
[    1.228275] hub 1-0:1.0: 1 port detected
[    1.228417] xhci_hcd 0000:00:0d.0: xHCI Host Controller
[    1.228420] xhci_hcd 0000:00:0d.0: new USB bus registered, assigned bus number 2
[    1.228422] xhci_hcd 0000:00:0d.0: Host supports USB 3.1 Enhanced SuperSpeed
[    1.228455] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
[    1.228455] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.228456] usb usb2: Product: xHCI Host Controller
[    1.228456] usb usb2: Manufacturer: Linux 5.10.19-1-lts xhci-hcd
[    1.228457] usb usb2: SerialNumber: 0000:00:0d.0
[    1.228507] hub 2-0:1.0: USB hub found
[    1.228517] hub 2-0:1.0: 4 ports detected
[    1.228922] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    1.228925] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
[    1.230018] xhci_hcd 0000:00:14.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000000009810
[    1.230023] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    1.230190] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[    1.230191] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.230191] usb usb3: Product: xHCI Host Controller
[    1.230192] usb usb3: Manufacturer: Linux 5.10.19-1-lts xhci-hcd
[    1.230192] usb usb3: SerialNumber: 0000:00:14.0
[    1.230249] hub 3-0:1.0: USB hub found
[    1.230263] hub 3-0:1.0: 12 ports detected
[    1.230886] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    1.230887] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
[    1.230889] xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
[    1.230924] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
[    1.230925] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.230926] usb usb4: Product: xHCI Host Controller
[    1.230926] usb usb4: Manufacturer: Linux 5.10.19-1-lts xhci-hcd
[    1.230927] usb usb4: SerialNumber: 0000:00:14.0
[    1.230975] hub 4-0:1.0: USB hub found
[    1.230985] hub 4-0:1.0: 4 ports detected
[    1.231081] usb: port power management may be unreliable
[    1.231590] rtsx_pci 0000:71:00.0: enabling device (0000 -> 0002)
[    1.236294] nvme nvme0: 8/0/0 default/read/poll queues
[    1.238121] cryptd: max_cpu_qlen set to 1000
[    1.246646] AVX2 version of gcm_enc/dec engaged.
[    1.246648] AES CTR mode by8 optimization enabled
[    1.248908]  nvme0n1: p1 p2 p3 p4 p5 p6 p7 p8
[    1.265476] random: fast init done
[    1.596266] usb 3-3: new full-speed USB device number 2 using xhci_hcd
[    1.778969] usb 3-3: New USB device found, idVendor=27c6, idProduct=533c, bcdDevice= 1.00
[    1.778974] usb 3-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.778976] usb 3-3: Product: FingerPrint
[    1.778978] usb 3-3: Manufacturer: Goodix
[    1.917609] ish-hid {33AECD58-B679-4E54-9BD9-A04D34F0C226}: [hid-ish]: enum_devices_done OK, num_hid_devices=1
[    1.919572] hid-generic 001F:8087:0AC2.0001: hidraw0: <UNKNOWN> HID v2.00 Device [hid-ishtp 8087:0AC2] on 
[    2.016184] usb 3-4: new high-speed USB device number 3 using xhci_hcd
[    2.037692] EXT4-fs (nvme0n1p4): mounted filesystem with ordered data mode. Opts: (null)
[    2.290545] usb 3-4: New USB device found, idVendor=0951, idProduct=1607, bcdDevice= 1.00
[    2.290549] usb 3-4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    2.290551] usb 3-4: Product: DataTraveler 2.0
[    2.290552] usb 3-4: Manufacturer: Kingston
[    2.290554] usb 3-4: SerialNumber: 001CC0EC3507F06155FD2D9C
[    2.368998] systemd-journald[170]: Received SIGTERM from PID 1 (systemd).
[    2.436239] usb 3-6: new high-speed USB device number 4 using xhci_hcd
[    2.437996] systemd[1]: systemd 247.3-1-arch running in system mode. (+PAM +AUDIT -SELINUX -IMA -APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +ZSTD +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=hybrid)
[    2.466439] systemd[1]: Detected architecture x86-64.
[    2.467206] systemd[1]: Set hostname to <Quasar>.
[    2.579161] systemd[1]: initrd-switch-root.service: Succeeded.
[    2.579324] systemd[1]: Stopped Switch Root.
[    2.579409] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
[    2.579552] systemd[1]: Created slice system-getty.slice.
[    2.579670] systemd[1]: Created slice system-modprobe.slice.
[    2.579774] systemd[1]: Created slice User and Session Slice.
[    2.579800] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[    2.579817] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    2.579881] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    2.579890] systemd[1]: Reached target Local Encrypted Volumes.
[    2.579901] systemd[1]: Stopped target Switch Root.
[    2.579907] systemd[1]: Stopped target Initrd File Systems.
[    2.579910] systemd[1]: Stopped target Initrd Root File System.
[    2.579920] systemd[1]: Reached target Paths.
[    2.579927] systemd[1]: Reached target Remote File Systems.
[    2.579932] systemd[1]: Reached target Slices.
[    2.579966] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[    2.580565] systemd[1]: Listening on Process Core Dump Socket.
[    2.580608] systemd[1]: Listening on udev Control Socket.
[    2.580637] systemd[1]: Listening on udev Kernel Socket.
[    2.580978] systemd[1]: Activating swap /dev/disk/by-uuid/b62a7194-78a1-4014-a963-c9443dc8bee0...
[    2.581401] systemd[1]: Mounting Huge Pages File System...
[    2.581858] systemd[1]: Mounting POSIX Message Queue File System...
[    2.582290] systemd[1]: Mounting Kernel Debug File System...
[    2.582693] systemd[1]: Mounting Kernel Trace File System...
[    2.583231] systemd[1]: Starting Create list of static device nodes for the current kernel...
[    2.583619] systemd[1]: Starting Load Kernel Module configfs...
[    2.583992] systemd[1]: Starting Load Kernel Module drm...
[    2.584390] systemd[1]: Starting Load Kernel Module fuse...
[    2.584657] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
[    2.584696] systemd[1]: Stopped Journal Service.
[    2.585343] systemd[1]: Starting Journal Service...
[    2.586053] systemd[1]: Starting Load Kernel Modules...
[    2.586608] systemd[1]: Starting Remount Root and Kernel File Systems...
[    2.586644] systemd[1]: Condition check resulted in Repartition Root Disk being skipped.
[    2.587115] systemd[1]: Starting Coldplug All udev Devices...
[    2.587713] systemd[1]: sysroot.mount: Succeeded.
[    2.587969] Linux agpgart interface v0.103
[    2.588103] systemd[1]: Mounted Huge Pages File System.
[    2.588154] systemd[1]: Mounted POSIX Message Queue File System.
[    2.588194] systemd[1]: Mounted Kernel Debug File System.
[    2.588241] systemd[1]: Mounted Kernel Trace File System.
[    2.588540] systemd[1]: Finished Create list of static device nodes for the current kernel.
[    2.588704] systemd[1]: modprobe@configfs.service: Succeeded.
[    2.588928] systemd[1]: Finished Load Kernel Module configfs.
[    2.589501] systemd[1]: Mounting Kernel Configuration File System...
[    2.590348] EXT4-fs (nvme0n1p4): re-mounted. Opts: (null)
[    2.590959] systemd[1]: Finished Load Kernel Modules.
[    2.591179] systemd[1]: Finished Remount Root and Kernel File Systems.
[    2.591222] systemd[1]: Mounted Kernel Configuration File System.
[    2.591262] systemd[1]: Condition check resulted in First Boot Wizard being skipped.
[    2.591557] systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
[    2.591974] systemd[1]: Starting Load/Save Random Seed...
[    2.592490] systemd[1]: Starting Apply Kernel Variables...
[    2.592530] systemd[1]: Condition check resulted in Create System Users being skipped.
[    2.592851] fuse: init (API version 7.32)
[    2.593041] systemd[1]: Starting Create Static Device Nodes in /dev...
[    2.593268] systemd[1]: modprobe@fuse.service: Succeeded.
[    2.593493] systemd[1]: Finished Load Kernel Module fuse.
[    2.594076] systemd[1]: Mounting FUSE Control File System...
[    2.595451] systemd[1]: Mounted FUSE Control File System.
[    2.596297] systemd[1]: Finished Apply Kernel Variables.
[    2.603319] systemd[1]: Finished Create Static Device Nodes in /dev.
[    2.603482] systemd[1]: Reached target Local File Systems (Pre).
[    2.603512] systemd[1]: Condition check resulted in Virtual Machine and Container Storage (Compatibility) being skipped.
[    2.604416] systemd[1]: Starting Rule-based Manager for Device Events and Files...
[    2.604630] systemd[1]: Started Journal Service.
[    2.608246] systemd-journald[408]: Received client request to flush runtime journal.
[    2.618530] usb 3-6: New USB device found, idVendor=0bda, idProduct=5517, bcdDevice= 4.21
[    2.618533] usb 3-6: New USB device strings: Mfr=3, Product=1, SerialNumber=2
[    2.618534] usb 3-6: Product: Integrated_Webcam_HD
[    2.618535] usb 3-6: Manufacturer: Integrated_Webcam_HD
[    2.618536] usb 3-6: SerialNumber: 200901010001
[    2.636195] Adding 4095996k swap on /dev/nvme0n1p5.  Priority:-2 extents:1 across:4095996k SSFS
[    2.655070] input: Intel HID events as /devices/platform/INTC1051:00/input/input4
[    2.655205] intel-hid INTC1051:00: platform supports 5 button array
[    2.655223] input: Intel HID 5 button array as /devices/platform/INTC1051:00/input/input5
[    2.663628] mc: Linux media interface: v0.10
[    2.671942] random: dbus-daemon: uninitialized urandom read (12 bytes read)
[    2.678396] random: dbus-daemon: uninitialized urandom read (12 bytes read)
[    2.679069] videodev: Linux video capture interface: v2.00
[    2.692344] uvcvideo: Found UVC 1.10 device Integrated_Webcam_HD (0bda:5517)
[    2.694339] input: Integrated_Webcam_HD: Integrate as /devices/pci0000:00/0000:00:14.0/usb3/3-6/3-6:1.0/input/input6
[    2.694639] uvcvideo: Found UVC 1.50 device Integrated_Webcam_HD (0bda:5517)
[    2.695270] input: Integrated_Webcam_HD: Integrate as /devices/pci0000:00/0000:00:14.0/usb3/3-6/3-6:1.2/input/input7
[    2.695306] usbcore: registered new interface driver uvcvideo
[    2.695307] USB Video Class driver (1.1.1)
[    2.786245] usb 3-10: new full-speed USB device number 5 using xhci_hcd
[    2.839169] Bluetooth: Core ver 2.22
[    2.839181] NET: Registered protocol family 31
[    2.839181] Bluetooth: HCI device and connection manager initialized
[    2.839183] Bluetooth: HCI socket layer initialized
[    2.839185] Bluetooth: L2CAP socket layer initialized
[    2.839186] Bluetooth: SCO socket layer initialized
[    2.850962] Bluetooth: HCI UART driver ver 2.3
[    2.850963] Bluetooth: HCI UART protocol H4 registered
[    2.850964] Bluetooth: HCI UART protocol BCSP registered
[    2.850973] Bluetooth: HCI UART protocol LL registered
[    2.850974] Bluetooth: HCI UART protocol ATH3K registered
[    2.850977] Bluetooth: HCI UART protocol Three-wire (H5) registered
[    2.851013] Bluetooth: HCI UART protocol Intel registered
[    2.851029] Bluetooth: HCI UART protocol Broadcom registered
[    2.851033] Bluetooth: HCI UART protocol QCA registered
[    2.851033] Bluetooth: HCI UART protocol AG6XX registered
[    2.851036] Bluetooth: HCI UART protocol Marvell registered
[    2.977819] usb 3-10: New USB device found, idVendor=8087, idProduct=0026, bcdDevice= 0.02
[    2.977820] usb 3-10: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    3.081512] proc_thermal 0000:00:04.0: enabling device (0000 -> 0002)
[    3.085634] tpm_tis STM0125:00: 2.0 TPM (device-id 0x0, rev-id 78)
[    3.086402] intel_rapl_common: Found RAPL domain package
[    3.086497] proc_thermal 0000:00:04.0: Creating sysfs group for PROC_THERMAL_PCI
[    3.305797] checking generic (4000000000 8d0000) vs hw (6054000000 1000000)
[    3.305800] checking generic (4000000000 8d0000) vs hw (4000000000 10000000)
[    3.305801] fb0: switching to inteldrmfb from EFI VGA
[    3.305865] i915 0000:00:02.0: vgaarb: deactivate vga console
[    3.308190] i915 0000:00:02.0: [drm] Couldn't get system memory bandwidth
[    3.309210] i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
[    3.312237] i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/tgl_dmc_ver2_08.bin (v2.8)
[    3.352709] [drm] Initialized i915 1.6.0 20200917 for 0000:00:02.0 on minor 0
[    3.358334] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    3.362692] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input8
[    3.364816] fbcon: i915drmfb (fb0) is primary device
[    3.364817] fbcon: Deferring console take-over
[    3.364820] i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
[    3.528627] usb-storage 3-4:1.0: USB Mass Storage device detected
[    3.528719] scsi host0: usb-storage 3-4:1.0
[    3.528795] usbcore: registered new interface driver usb-storage
[    3.528819] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    3.529481] mei_me 0000:00:16.0: enabling device (0000 -> 0002)
[    3.531359] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    3.531512] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[    3.531513] cfg80211: failed to load regulatory.db
[    3.531654] usbcore: registered new interface driver uas
[    3.556187] intel-lpss 0000:00:15.0: enabling device (0000 -> 0002)
[    3.556540] idma64 idma64.0: Found Intel integrated DMA 64-bit
[    3.676218] intel-lpss 0000:00:15.1: enabling device (0000 -> 0002)
[    3.676886] idma64 idma64.1: Found Intel integrated DMA 64-bit
[    3.692729] Intel(R) Wireless WiFi driver for Linux
[    3.692766] i801_smbus 0000:00:1f.4: enabling device (0000 -> 0003)
[    3.692824] iwlwifi 0000:00:14.3: enabling device (0000 -> 0002)
[    3.694591] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[    3.694712] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[    3.698018] iwlwifi 0000:00:14.3: api flags index 2 larger than supported by driver
[    3.698032] iwlwifi 0000:00:14.3: TLV_FW_FSEQ_VERSION: FSEQ Version: 65.3.35.22
[    3.698272] iwlwifi 0000:00:14.3: loaded firmware version 59.601f3a66.0 QuZ-a0-hr-b0-59.ucode op_mode iwlmvm
[    3.765078] iwlwifi 0000:00:14.3: Detected Killer(R) Wi-Fi 6 AX1650s 160MHz Wireless Network Adapter (201D2W), REV=0x354
[    3.765720] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040100
[    3.765734] snd_hda_intel 0000:00:1f.3: Digital mics found on Skylake+ platform, using SOF driver
[    3.839024] i2c_hid i2c-DLL0945:00: supply vdd not found, using dummy regulator
[    3.839050] i2c_hid i2c-DLL0945:00: supply vddl not found, using dummy regulator
[    3.912874] i2c i2c-15: 8/8 memory slots populated (from DMI)
[    3.912875] i2c i2c-15: Systems with more than 4 memory slots not supported yet, not instantiating SPD
[    3.916183] intel-lpss 0000:00:19.0: enabling device (0000 -> 0002)
[    3.916522] idma64 idma64.2: Found Intel integrated DMA 64-bit
[    3.951574] iwlwifi 0000:00:14.3: base HW address: dc:41:a9:a0:7a:62
[    3.952581] input: Dell WMI hotkeys as /devices/platform/PNP0C14:02/wmi_bus/wmi_bus-PNP0C14:02/9DBB5994-A997-11DA-B012-B622A1EF5492/input/input9
[    3.964727] thermal thermal_zone7: failed to read out thermal zone (-61)
[    3.967092] sof-audio-pci 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040100
[    3.967364] sof-audio-pci 0000:00:1f.3: Digital mics found on Skylake+ platform, using SOF driver
[    3.967391] sof-audio-pci 0000:00:1f.3: enabling device (0000 -> 0002)
[    3.967617] sof-audio-pci 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if 0x040100
[    3.970162] input: PC Speaker as /devices/platform/pcspkr/input/input10
[    4.036686] input: DLL0945:00 06CB:CDE6 Mouse as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-16/i2c-DLL0945:00/0018:06CB:CDE6.0002/input/input12
[    4.036741] input: DLL0945:00 06CB:CDE6 Touchpad as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-16/i2c-DLL0945:00/0018:06CB:CDE6.0002/input/input13
[    4.036788] hid-generic 0018:06CB:CDE6.0002: input,hidraw0: I2C HID v1.00 Mouse [DLL0945:00 06CB:CDE6] on i2c-DLL0945:00
[    4.146187] intel-lpss 0000:00:19.1: enabling device (0000 -> 0002)
[    4.146566] idma64 idma64.3: Found Intel integrated DMA 64-bit
[    4.407799] resource sanity check: requesting [mem 0xfedc0000-0xfedcdfff], which spans more than pnp 00:05 [mem 0xfedc0000-0xfedc7fff]
[    4.407806] caller tgl_uncore_imc_freerunning_init_box+0xc3/0x100 [intel_uncore] mapping multiple BARs
[    4.436933] random: crng init done
[    4.460094] fbcon: Taking over console
[    4.579796] sof-audio-pci 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[    4.586346] sof-audio-pci 0000:00:1f.3: use msi interrupt mode
[    4.596365] Console: switching to colour frame buffer device 240x75
[    4.596611] scsi 0:0:0:0: Direct-Access     Kingston DataTraveler 2.0 1.00 PQ: 0 ANSI: 2
[    4.597066] sd 0:0:0:0: [sda] 7818184 512-byte logical blocks: (4.00 GB/3.73 GiB)
[    4.597209] sd 0:0:0:0: [sda] Write Protect is off
[    4.597210] sd 0:0:0:0: [sda] Mode Sense: 03 00 00 00
[    4.597329] sd 0:0:0:0: [sda] No Caching mode page found
[    4.597330] sd 0:0:0:0: [sda] Assuming drive cache: write through
[    4.662537] sof-audio-pci 0000:00:1f.3: hda codecs found, mask 5
[    4.662539] sof-audio-pci 0000:00:1f.3: using HDA machine driver skl_hda_dsp_generic now
[    4.662542] sof-audio-pci 0000:00:1f.3: DMICs detected in NHLT tables: 2
[    4.662990] sof-audio-pci 0000:00:1f.3: Direct firmware load for intel/sof/sof-tgl.ri failed with error -2
[    4.662992] sof-audio-pci 0000:00:1f.3: error: request firmware intel/sof/sof-tgl.ri failed err: -2
[    4.662993] sof-audio-pci 0000:00:1f.3: error: failed to load DSP firmware -2
[    4.663539] sof-audio-pci 0000:00:1f.3: error: sof_probe_work failed err: -2
[    4.681958]  sda: sda1 sda2 sda3
[    4.682809] sd 0:0:0:0: [sda] Attached SCSI removable disk
[    4.846899] intel_rapl_msr: PL4 support detected.
[    4.846982] intel_rapl_common: Found RAPL domain package
[    4.846983] intel_rapl_common: Found RAPL domain core
[    4.846984] intel_rapl_common: Found RAPL domain uncore
[    4.846986] intel_rapl_common: Found RAPL domain psys
[    4.847097] usbcore: registered new interface driver btusb
[    4.848040] Bluetooth: hci0: Bootloader revision 0.4 build 0 week 30 2018
[    4.849028] Bluetooth: hci0: Device revision is 2
[    4.849029] Bluetooth: hci0: Secure boot is enabled
[    4.849030] Bluetooth: hci0: OTP lock is enabled
[    4.849030] Bluetooth: hci0: API lock is enabled
[    4.849030] Bluetooth: hci0: Debug lock is disabled
[    4.849031] Bluetooth: hci0: Minimum firmware build 1 week 10 2014
[    4.849803] Bluetooth: hci0: Found device firmware: intel/ibt-19-0-4.sfi
[    4.855346] iTCO_vendor_support: vendor-support=0
[    4.858657] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[    4.858734] iTCO_wdt: Found a Intel PCH TCO device (Version=6, TCOBASE=0x0400)
[    4.858818] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[    4.866188] mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_component_ops [i915])
[    5.005127] input: DLL0945:00 06CB:CDE6 Mouse as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-16/i2c-DLL0945:00/0018:06CB:CDE6.0002/input/input15
[    5.005195] input: DLL0945:00 06CB:CDE6 Touchpad as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-16/i2c-DLL0945:00/0018:06CB:CDE6.0002/input/input16
[    5.005256] hid-multitouch 0018:06CB:CDE6.0002: input,hidraw0: I2C HID v1.00 Mouse [DLL0945:00 06CB:CDE6] on i2c-DLL0945:00
[    5.038770] mousedev: PS/2 mouse device common for all mice
[    6.598466] Bluetooth: hci0: Waiting for firmware download to complete
[    6.600080] Bluetooth: hci0: Firmware loaded in 1711855 usecs
[    6.600141] Bluetooth: hci0: Waiting for device to boot
[    6.615028] Bluetooth: hci0: Device booted in 14596 usecs
[    6.615177] Bluetooth: hci0: Found Intel DDC parameters: intel/ibt-19-0-4.ddc
[    6.618049] Bluetooth: hci0: Applying Intel DDC parameters completed
[    6.621066] Bluetooth: hci0: Firmware revision 0.0 build 26 week 3 2021
[    9.880566] kauditd_printk_skb: 81 callbacks suppressed
[    9.880568] audit: type=1131 audit(1614798293.530:92): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   22.389870] audit: type=1100 audit(1614798306.040:93): pid=463 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:authentication grantors=pam_securetty,pam_shells,pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/login" hostname=Quasar addr=? terminal=/dev/tty1 res=success'
[   22.390401] audit: type=1101 audit(1614798306.040:94): pid=463 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_access,pam_unix,pam_permit,pam_time acct="root" exe="/usr/bin/login" hostname=Quasar addr=? terminal=/dev/tty1 res=success'
[   22.390659] audit: type=1103 audit(1614798306.040:95): pid=463 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_securetty,pam_shells,pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/login" hostname=Quasar addr=? terminal=/dev/tty1 res=success'
[   22.390705] audit: type=1006 audit(1614798306.040:96): pid=463 uid=0 old-auid=4294967295 auid=0 tty=tty1 old-ses=4294967295 ses=1 res=1
[   22.403569] audit: type=1130 audit(1614798306.050:97): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   22.410176] audit: type=1101 audit(1614798306.060:98): pid=527 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_access,pam_unix,pam_permit,pam_time acct="root" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   22.410193] audit: type=1103 audit(1614798306.060:99): pid=527 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=? acct="root" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
[   22.410306] audit: type=1006 audit(1614798306.060:100): pid=527 uid=0 old-auid=4294967295 auid=0 tty=(none) old-ses=4294967295 ses=2 res=1
[   22.411856] audit: type=1105 audit(1614798306.060:101): pid=527 uid=0 auid=0 ses=2 msg='op=PAM:session_open grantors=pam_loginuid,pam_loginuid,pam_keyinit,pam_limits,pam_unix,pam_permit,pam_mail,pam_systemd,pam_env acct="root" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   22.418999] audit: type=1334 audit(1614798306.070:102): prog-id=21 op=LOAD
[  480.376326] usb 3-8: new high-speed USB device number 6 using xhci_hcd
[  480.642527] usb 3-8: New USB device found, idVendor=13fe, idProduct=4200, bcdDevice= 1.00
[  480.642531] usb 3-8: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[  480.642533] usb 3-8: Product: USB DISK 2.0
[  480.642535] usb 3-8: Manufacturer:         
[  480.642536] usb 3-8: SerialNumber: 070B55A564FD0171
[  480.644261] usb-storage 3-8:1.0: USB Mass Storage device detected
[  480.644694] scsi host1: usb-storage 3-8:1.0
[  481.718612] scsi 1:0:0:0: Direct-Access              USB DISK 2.0     PMAP PQ: 0 ANSI: 6
[  482.960905] sd 1:0:0:0: [sdb] 15133248 512-byte logical blocks: (7.75 GB/7.22 GiB)
[  482.961178] sd 1:0:0:0: [sdb] Write Protect is off
[  482.961183] sd 1:0:0:0: [sdb] Mode Sense: 23 00 00 00
[  482.961463] sd 1:0:0:0: [sdb] No Caching mode page found
[  482.961466] sd 1:0:0:0: [sdb] Assuming drive cache: write through
[  484.133344]  sdb: sdb1
[  484.135958] sd 1:0:0:0: [sdb] Attached SCSI removable disk
[  511.990470] FAT-fs (sdb1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
[  584.374731] usb 3-8: USB disconnect, device number 6
[  584.375119] blk_update_request: I/O error, dev sdb, sector 8372704 op 0x1:(WRITE) flags 0x0 phys_seg 19 prio class 0
[  584.375175] blk_update_request: I/O error, dev sdb, sector 8065 op 0x1:(WRITE) flags 0x0 phys_seg 1 prio class 0
[  584.375179] Buffer I/O error on dev sdb1, logical block 1, lost async page write
[  584.375187] blk_update_request: I/O error, dev sdb, sector 11128 op 0x1:(WRITE) flags 0x0 phys_seg 1 prio class 0
[  584.375189] Buffer I/O error on dev sdb1, logical block 3064, lost async page write
[  584.375205] blk_update_request: I/O error, dev sdb, sector 14824 op 0x1:(WRITE) flags 0x0 phys_seg 1 prio class 0
[  584.375207] Buffer I/O error on dev sdb1, logical block 6760, lost async page write
[  584.375211] blk_update_request: I/O error, dev sdb, sector 8372385 op 0x1:(WRITE) flags 0x0 phys_seg 1 prio class 0
[  584.375213] Buffer I/O error on dev sdb1, logical block 8364321, lost async page write
[  584.375220] blk_update_request: I/O error, dev sdb, sector 13417795 op 0x1:(WRITE) flags 0x0 phys_seg 1 prio class 0
[  584.375222] Buffer I/O error on dev sdb1, logical block 13409731, lost async page write
[  615.926328] usb 3-8: new high-speed USB device number 7 using xhci_hcd
[  616.112575] usb 3-8: New USB device found, idVendor=13fe, idProduct=4200, bcdDevice= 1.00
[  616.112580] usb 3-8: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[  616.112583] usb 3-8: Product: USB DISK 2.0
[  616.112585] usb 3-8: Manufacturer:         
[  616.112586] usb 3-8: SerialNumber: 070B55A564FD0171
[  616.114929] usb-storage 3-8:1.0: USB Mass Storage device detected
[  616.115324] scsi host2: usb-storage 3-8:1.0
[  617.158631] scsi 2:0:0:0: Direct-Access              USB DISK 2.0     PMAP PQ: 0 ANSI: 6
[  618.357193] sd 2:0:0:0: [sdc] 15133248 512-byte logical blocks: (7.75 GB/7.22 GiB)
[  618.357483] sd 2:0:0:0: [sdc] Write Protect is off
[  618.357487] sd 2:0:0:0: [sdc] Mode Sense: 23 00 00 00
[  618.357777] sd 2:0:0:0: [sdc] No Caching mode page found
[  618.357781] sd 2:0:0:0: [sdc] Assuming drive cache: write through
[  619.533522]  sdc: sdc1
[  619.536140] sd 2:0:0:0: [sdc] Attached SCSI removable disk
[  654.472635] FAT-fs (sdb1): Directory bread(block 8416) failed
[  654.472639] FAT-fs (sdb1): Directory bread(block 8417) failed
[  654.472641] FAT-fs (sdb1): Directory bread(block 8418) failed
[  654.472643] FAT-fs (sdb1): Directory bread(block 8419) failed
[  654.472645] FAT-fs (sdb1): Directory bread(block 8420) failed
[  654.472647] FAT-fs (sdb1): Directory bread(block 8421) failed
[  654.472650] FAT-fs (sdb1): Directory bread(block 8422) failed
[  654.472652] FAT-fs (sdb1): Directory bread(block 8423) failed
[  654.472654] FAT-fs (sdb1): Directory bread(block 8424) failed
[  654.472656] FAT-fs (sdb1): Directory bread(block 8425) failed
[  679.896308] FAT-fs (sdc1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.

Last edited by Kwazar380 (2021-03-03 18:20:32)

Offline

#22 2021-03-03 19:35:25

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

Re: [SOLVED] Problem with boot on Dell 13 9310

So yo changed

- mkinitcpio => dracut
- linux => lts
- regular initramfs => failsafe
- rootdelay => 10

at once, any of those or any combination could be the relvant change.

Try to
a) boot the default initramfs
b) the main kernel (w/ the default initramfs)
c) remove the rootdelay (you can edit the kernel parameters at grub, though that might provide the nvme the time to get up)

and see at which point it fails again.

Offline

#23 2021-03-03 21:23:06

loqs
Member
Registered: 2014-03-06
Posts: 19,013

Re: [SOLVED] Problem with boot on Dell 13 9310

If mkinitcpio is the issue check modules in the initrd,  see https://bugs.archlinux.org/task/68704

Offline

#24 2021-03-03 21:48:39

Kwazar380
Member
Registered: 2013-10-06
Posts: 16

Re: [SOLVED] Problem with boot on Dell 13 9310

seth wrote:

Try to
a) boot the default initramfs
b) the main kernel (w/ the default initramfs)
c) remove the rootdelay (you can edit the kernel parameters at grub, though that might provide the nvme the time to get up)

and see at which point it fails again.

At first I tried to boot default initramfs lts kernel and this failed. Than I tried to boot with linux kernel, and than with linux fallback and it both failed. Than I removed rootdelay and nothing changed. I could boot only and only lts fallback and I wanted to post this part of message when

loqs wrote:

If mkinitcpio is the issue check modules in the initrd,  see https://bugs.archlinux.org/task/68704

So I went to the website with bug, found that workaround is " Add vmd to mkinitcpio.conf MODULES array.", did arch-chroot, change proper line of /etc/mkinitcpio.conf adding vmd to MODULES, made 'mkinitcpio -P', than reconfigured grub and rebooted. Now when I try to boot with default 'Arch Linux' entry in grub I am dropped into lts fallback.

Offline

#25 2021-03-04 07:55:30

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

Re: [SOLVED] Problem with boot on Dell 13 9310

Now when I try to boot with default 'Arch Linux' entry in grub I am dropped into lts fallback.

GRUB_DEFAULT in /etc/default/grub controls which entry is default. The more interesting qestion is whether you can boot any initramfs/kernel w/o rootwait now.

Offline

Board footer

Powered by FluxBB