Manjaro - root on encrypted ZFS

Hi everyone,

I have become a huge fan of ZFS and after migrating all my data to ZFS, I had planned on migrating my system as well and also writing a nice little tutorial for Manjaro. However this does not seem to be as simple as I had hoped. I am using Manjaro and the Archwiki is incomplete and indistinct. Following this text I will post instructions of what I have done so far.

I am currently able to boot up to the password prompt. After that the screen shows output from the boot log and I can’t really identify anything wrong except the message that /boot/efi failed to mount.
I do not know if this is really the reason why I cannot boot. I also don’t know why it fails since it is a pretty simple entry of a regual old fat formatted partition in /etc/fstab:

What I have done to reach this point:

#boot a Manjaro Gnome livecd

# create a short handle to reference the ssd by id
DISK=/dev/disk/by-id/ata-Samsung_SSD_850_EVO_500GB_S33JNGIGB12345R    

# format the disk into:
# 512M EFI, 2GB zfs boot pool, zfs root pool filling everything but the last 8GB, 8GB swap partition at the end of the disk
sudo sgdisk --zap-all $DISK
sudo sgdisk -n1:0:+512M -t1:EF00 $DISK
sudo sgdisk -n2:0:+2G $DISK   
sudo sgdisk -n3:0:-8G $DISK     
sudo sgdisk -n4:0:0 $DISK

# create random UUID to append to the zfs pool names so that importing the pools on other computers e.g. for rescue or backing them up won't result into name conflicts
poolUUID=$(dd if=/dev/urandom of=/dev/stdout bs=1 count=100 2>/dev/null |tr -dc 'a-z0-9' | cut -c-6)

# The boot-pool called bpool will be created with the following features enabled after checking
# https://wiki.archlinux.org/index.php/ZFS#GRUB-compatible_pool_creation
sudo zpool create \
    -o ashift=12 -o autotrim=on -d \
    -o feature@allocation_classes=enabled \
    -o feature@async_destroy=enabled \
    -o feature@bookmarks=enabled \
    -o feature@embedded_data=enabled \
    -o feature@empty_bpobj=enabled \
    -o feature@enabled_txg=enabled \
    -o feature@extensible_dataset=enabled \
    -o feature@filesystem_limits=enabled \
    -o feature@hole_birth=enabled \
    -o feature@large_blocks=enabled \
    -o feature@lz4_compress=enabled \
    -o feature@project_quota=enabled      \
    -o feature@resilver_defer=enabled     \
    -o feature@spacemap_histogram=enabled \
    -o feature@spacemap_v2=enabled        \
    -o feature@userobj_accounting=enabled \
    -o feature@zpool_checkpoint=enabled   \
    -O acltype=posixacl -O canmount=off -O compression=lz4 \
    -O devices=off -O normalization=formD -O relatime=on -O xattr=sa \
    -O mountpoint=/boot -R /mnt \
    bpool_$poolUUID ${DISK}-part2

# create root-pool following settings list from:
# https://wiki.archlinux.org/index.php/Install_Arch_Linux_on_ZFS#Setup_the_ZFS_filesystem
# For root pool all available features are enabled by default
sudo zpool create \
	-f -o ashift=12 -o autotrim=on \
	-O acltype=posixacl       \
    -O relatime=on            \
    -O xattr=sa               \
    -O dnodesize=legacy       \
    -O normalization=formD    \
    -O mountpoint=none        \
    -O canmount=off           \
    -O devices=off            \
    -R /mnt                   \
    -O compression=lz4        \
    -O encryption=aes-256-gcm \
    -O keyformat=passphrase   \
    -O keylocation=prompt     \
    rpool_$poolUUID ${DISK}-part3
Password: password

# creating datasets. Nothing is stored directly under bpool and rpool, hence: canmount=off!
# canmount is set to noauto as mentioned here: https://wiki.archlinux.org/index.php/Install_Arch_Linux_on_ZFS#Create_your_datasets
sudo zfs create -o canmount=off -o mountpoint=none rpool_$poolUUID/HOME
sudo zfs create -o canmount=off -o mountpoint=none rpool_$poolUUID/ROOT
sudo zfs create -o canmount=off -o mountpoint=none bpool_$poolUUID/BOOT
sudo zfs create -o mountpoint=/ -o canmount=noauto rpool_$poolUUID/ROOT/default
sudo zfs create -o mountpoint=/boot -o canmount=noauto bpool_$poolUUID/BOOT/default
sudo zfs mount rpool_$poolUUID/ROOT/default
sudo zfs mount bpool_$poolUUID/BOOT/default
sudo zfs create -o mountpoint=/home rpool_$poolUUID/HOME/default
sudo zfs create -o mountpoint=/root rpool_$poolUUID/HOME/default/root

# exporting and reimporting the pools and mounting the datasets as advised:
# https://wiki.archlinux.org/index.php/Install_Arch_Linux_on_ZFS#Export/Import_your_datasets
sudo zpool export bpool_$poolUUID
sudo zpool export rpool_$poolUUID
sudo zpool import -R /mnt rpool_$poolUUID
sudo zfs load-key rpool_$poolUUID
sudo zpool import -R /mnt bpool_$poolUUID
sudo zfs mount rpool_$poolUUID/ROOT/default
sudo zfs mount bpool_$poolUUID/BOOT/default
sudo zfs mount -a

# formatting and mounting the EFI partition
sudo mkfs.vfat -n EFI $DISK-part1
sudo mkdir /mnt/boot/efi
sudo mount $DISK-part1 /mnt/boot/efi

# configuring the root filesystem as advised here:
# https://wiki.archlinux.org/index.php/Install_Arch_Linux_on_ZFS#Configure_the_root_filesystem
sudo zpool set bootfs=rpool_$poolUUID/ROOT/default rpool_$poolUUID
# check if /etc/zfs/zpool.cache exists
# if it doesn't exist run:
sudo zpool set cachefile=/etc/zfs/zpool.cache rpool_$poolUUID
# then run:
sudo mkdir -p /mnt/etc/zfs
sudo cp /etc/zfs/zpool.cache /mnt/etc/zfs/zpool.cache

# Now install the base Manjaro system using the "setup" command from the livecd
# don't forget to add additional packages to the installation needed are:
1. linux510-headers
2. linux54-headers
3. zfs-dmks
4. cryptsetup
# use the installer to setup system/configure base and generate the fstab

# chroot into installation at /mnt
# comment out all non-legacy datasets in the /etc/fstab apart from the boot/EFI partition.
# check /etc/mkinitcpio.conf to include in the following order "keyboard zfs filesystems"
# and regenerate the initramfs with:
mkinitcpio -P
# exit chroot

# add encrypted swap partition to the system
echo swap $DISK-part4 /dev/urandom swap,cipher=aes-cbc-essiv:sha256,size=256 >> /mnt/etc/crypttab
echo /dev/mapper/swap none swap defaults 0 0 >> /mnt/etc/fstab

# chroot into installation at /mnt to install grub
sudo pacman -S grub efibootmgr
ZPOOL_VDEV_NAME_PATH=1 grub-install --target=x86_64-efi --efi-directory=/boot/efi --bootloader-id=Manjaro
ZPOOL_VDEV_NAME_PATH=1 grub-mkconfig -o /boot/grub/grub.cfg

# now we need to fix some issues in regards to grub

# 1. first we need to apply a fix as mentioned here: https://wiki.archlinux.org/index.php/Install_Arch_Linux_on_ZFS#Root_pool_missing_from_grub.cfg
# to do this edit /mnt/etc/grub.d/10_linux and replace the line starting with "rpool=" with the following string
rpool=`${grub_probe} --device ${GRUB_DEVICE} --target=fs_label 
2>/dev/null || zdb -l ${GRUB_DEVICE} | awk -F \' '/ name/ { print $2 }'`

# 2. chroot into installation at /mnt and run
ZPOOL_VDEV_NAME_PATH=1 grub-mkconfig -o /boot/grub/grub.cfg

# following the configure systemd ZFS mounts section at:
# https://wiki.archlinux.org/index.php/Install_Arch_Linux_on_ZFS#Configure_systemd_ZFS_mounts
sudo zpool set cachefile=/etc/zfs/zpool.cache rpool_$poolUUID
sudo systemctl enable zfs.target --root=/mnt
sudo systemctl enable zfs-import-cache --root=/mnt
sudo systemctl enable zfs-mount --root=/mnt
sudo systemctl enable zfs-import.target --root=/mnt
manjaro-chroot /mnt zgenhostid 19841984 
manjaro-chroot /mnt mkinitcpio -P

sudo umount /mnt/boot/efi
sudo zfs umount bpool_$poolUUID/BOOT/default
sudo zfs umount rpool_$poolUUID/ROOT/default
sudo zfs umount -a
sudo zpool export bpool_$poolUUID
sudo zpool export rpool_$poolUUID

Could you post your full boot log?

Enter your root password and then try to mount /boot/efi and see if it gives details on the error? (e.g. /boot/efi directory contains files/folders or /boot/efi folder not found)

Could you also post your cachefile? ( looks like you are using /etc/zfs/zpool.cache)

I’m not seeing a step that removes the /mnt/ prefix from the cachefile that is established during install, but maybe that step is not needed for your install (I’ve done some zfs root installs but not on manjaro and not with grub).
I’ve used the zfs-mount-generator instead of the zfs-import-cache.service and you are typically required to remove the /mnt/ prefix from the cache file for it to work or reboot.

If there is a /mnt/ before all your mountpoints in the cachefile just do:
sed -Ei "s|/mnt/?|/|" /etc/zfs/zpool.cache
and then check again.

The arch wiki has some information on the the two methods but it isn’t really specific about root pools
https://wiki.archlinux.org/index.php/ZFS#Automatic_Start

1 Like

What I forgot to write I needed to remove the /etc/zfs/zpool.cache and run:

zpool set cachefile=none bpool_$pool_UUID

Before I was even able to get this far. Before I had done that I got an error that the cachefile has an error. This may be due to the /mnt/ prefix. I will check that in the coming days.

I also investigated why /boot/efi could not be mounted and it turns out it can be mounted because the folder for it to be mounted in does not exist since /boot is not mounted. When I run sudo zfs list -o name,mounted,mountpoint I can see that zfs does not list the bootpool at all. Only thing listed as mounted is the stuff in the rootpool.

Edit: sudo zpool list also only shows the rpool!

@ChuckH Ok I diagnosed it a bit further. It is definitely that the bpool is not getting mounted. After entering the password for the rpool I land in the emergency shell and have to zpool import bpool_$poolUUID and zfs mount bpool_$poolUUID/BOOT/default and then mount /dev/sda1 /boot/efi before all mounts have been successful.

After that I try to exit the emergency shell by running systemctl default but the notebook just gets stuck there.

Edit: I managed to get the journalctl -e off of the computer:

-- Journal begins at Wed 2021-01-13 21:52:39 CET, ends at Wed 2021-01-13 21:53:37 CET. --
Jan 13 21:52:39 computer kernel: microcode: microcode updated early to revision 0xe2, date = 2020-07-14
Jan 13 21:52:39 computer kernel: Linux version 5.10.2-2-MANJARO (builduser@LEGION) (gcc (GCC) 10.2.0, GNU ld (GNU Binutils) 2.35.1) #1 SMP PREEMPT Tue Dec 22 08:14:42 UTC 2020
Jan 13 21:52:39 computer kernel: Command line: BOOT_IMAGE=/BOOT/default@/vmlinuz-5.10-x86_64 root=ZFS=rpool_nsf0bw/ROOT/default ro quiet udev.log_priority=3
Jan 13 21:52:39 computer kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Jan 13 21:52:39 computer kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Jan 13 21:52:39 computer kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Jan 13 21:52:39 computer kernel: x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
Jan 13 21:52:39 computer kernel: x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
Jan 13 21:52:39 computer kernel: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
Jan 13 21:52:39 computer kernel: x86/fpu: xstate_offset[3]:  832, xstate_sizes[3]:   64
Jan 13 21:52:39 computer kernel: x86/fpu: xstate_offset[4]:  896, xstate_sizes[4]:   64
Jan 13 21:52:39 computer kernel: x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format.
Jan 13 21:52:39 computer kernel: BIOS-provided physical RAM map:
Jan 13 21:52:39 computer kernel: BIOS-e820: [mem 0x0000000000000000-0x0000000000057fff] usable
Jan 13 21:52:39 computer kernel: BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] reserved
Jan 13 21:52:39 computer kernel: BIOS-e820: [mem 0x0000000000059000-0x000000000009cfff] usable
Jan 13 21:52:39 computer kernel: BIOS-e820: [mem 0x000000000009d000-0x00000000000fffff] reserved
Jan 13 21:52:39 computer kernel: BIOS-e820: [mem 0x0000000000100000-0x00000000b7250fff] usable
Jan 13 21:52:39 computer kernel: BIOS-e820: [mem 0x00000000b7251000-0x00000000b7252fff] reserved
Jan 13 21:52:39 computer kernel: BIOS-e820: [mem 0x00000000b7253000-0x00000000b7f77fff] usable
Jan 13 21:52:39 computer kernel: BIOS-e820: [mem 0x00000000b7f78000-0x00000000b7f78fff] reserved
Jan 13 21:52:39 computer kernel: BIOS-e820: [mem 0x00000000b7f79000-0x00000000cbed7fff] usable
Jan 13 21:52:39 computer kernel: BIOS-e820: [mem 0x00000000cbed8000-0x00000000cbed8fff] ACPI NVS
Jan 13 21:52:39 computer kernel: BIOS-e820: [mem 0x00000000cbed9000-0x00000000cbf02fff] reserved
Jan 13 21:52:39 computer kernel: BIOS-e820: [mem 0x00000000cbf03000-0x00000000d5809fff] usable
Jan 13 21:52:39 computer kernel: BIOS-e820: [mem 0x00000000d580a000-0x00000000d585afff] type 20
Jan 13 21:52:39 computer kernel: BIOS-e820: [mem 0x00000000d585b000-0x00000000d7f75fff] reserved
Jan 13 21:52:39 computer kernel: BIOS-e820: [mem 0x00000000d7f76000-0x00000000d7fc5fff] ACPI NVS
Jan 13 21:52:39 computer kernel: BIOS-e820: [mem 0x00000000d7fc6000-0x00000000d7ffdfff] ACPI data
Jan 13 21:52:39 computer kernel: BIOS-e820: [mem 0x00000000d7ffe000-0x00000000d7ffefff] usable
Jan 13 21:52:39 computer kernel: BIOS-e820: [mem 0x00000000d7fff000-0x00000000d80fffff] reserved
Jan 13 21:52:39 computer kernel: BIOS-e820: [mem 0x00000000d8600000-0x00000000dc7fffff] reserved
Jan 13 21:52:39 computer kernel: BIOS-e820: [mem 0x00000000f80fa000-0x00000000f80fafff] reserved
Jan 13 21:52:39 computer kernel: BIOS-e820: [mem 0x00000000f80fd000-0x00000000f80fdfff] reserved
Jan 13 21:52:39 computer kernel: BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
Jan 13 21:52:39 computer kernel: BIOS-e820: [mem 0x0000000100000000-0x00000004227fffff] usable
Jan 13 21:52:39 computer kernel: NX (Execute Disable) protection: active
Jan 13 21:52:39 computer kernel: efi: EFI v2.40 by Lenovo
Jan 13 21:52:39 computer kernel: efi: SMBIOS=0xd7057000 ACPI=0xd7ffd000 ACPI 2.0=0xd7ffd014 ESRT=0xd6ee6000 
Jan 13 21:52:39 computer kernel: SMBIOS 2.8 present.
Jan 13 21:52:39 computer kernel: DMI: LENOVO 20F5S1A600/20F5S1A600, BIOS R02ET74W (1.47 ) 09/15/2020
Jan 13 21:52:39 computer kernel: tsc: Detected 2400.000 MHz processor
Jan 13 21:52:39 computer kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Jan 13 21:52:39 computer kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
Jan 13 21:52:39 computer kernel: last_pfn = 0x422800 max_arch_pfn = 0x400000000
Jan 13 21:52:39 computer kernel: MTRR default type: write-back
Jan 13 21:52:39 computer kernel: MTRR fixed ranges enabled:
Jan 13 21:52:39 computer kernel:   00000-9FFFF write-back
Jan 13 21:52:39 computer kernel:   A0000-BFFFF uncachable
Jan 13 21:52:39 computer kernel:   C0000-FFFFF write-protect
Jan 13 21:52:39 computer kernel: MTRR variable ranges enabled:
Jan 13 21:52:39 computer kernel:   0 base 00E0000000 mask 7FE0000000 uncachable
Jan 13 21:52:39 computer kernel:   1 base 00DC000000 mask 7FFC000000 uncachable
Jan 13 21:52:39 computer kernel:   2 base 00DA000000 mask 7FFE000000 uncachable
Jan 13 21:52:39 computer kernel:   3 disabled
Jan 13 21:52:39 computer kernel:   4 disabled
Jan 13 21:52:39 computer kernel:   5 disabled
Jan 13 21:52:39 computer kernel:   6 disabled
Jan 13 21:52:39 computer kernel:   7 disabled
Jan 13 21:52:39 computer kernel:   8 disabled
Jan 13 21:52:39 computer kernel:   9 disabled
Jan 13 21:52:39 computer kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Jan 13 21:52:39 computer kernel: last_pfn = 0xd7fff max_arch_pfn = 0x400000000
Jan 13 21:52:39 computer kernel: esrt: Reserving ESRT space from 0x00000000d6ee6000 to 0x00000000d6ee6088.
Jan 13 21:52:39 computer kernel: check: Scanning 1 areas for low memory corruption
Jan 13 21:52:39 computer kernel: Using GB pages for direct mapping
Jan 13 21:52:39 computer kernel: Secure boot disabled
Jan 13 21:52:39 computer kernel: RAMDISK: [mem 0x360a1000-0x37047fff]
Jan 13 21:52:39 computer kernel: ACPI: Early table checksum verification disabled
Jan 13 21:52:39 computer kernel: ACPI: RSDP 0x00000000D7FFD014 000024 (v02 LENOVO)
Jan 13 21:52:39 computer kernel: ACPI: XSDT 0x00000000D7FCF188 0000F4 (v01 LENOVO TP-R02   00000000 PTEC 00000002)
Jan 13 21:52:39 computer kernel: ACPI: FACP 0x00000000D7FF1000 0000F4 (v05 LENOVO TP-R02   00001470 PTEC 00000002)
Jan 13 21:52:39 computer kernel: ACPI: DSDT 0x00000000D7FDA000 012402 (v02 LENOVO TP-R02   00001470 INTL 20141107)
Jan 13 21:52:39 computer kernel: ACPI: FACS 0x00000000D7F91000 000040
Jan 13 21:52:39 computer kernel: ACPI: TCPA 0x00000000D7FFB000 000032 (v02 LENOVO TP-R02   00000002 PTEC 00000002)
Jan 13 21:52:39 computer kernel: ACPI: SSDT 0x00000000D7FFA000 0004B7 (v02 LENOVO Tpm2Tabl 00001000 INTL 20141107)
Jan 13 21:52:39 computer kernel: ACPI: SSDT 0x00000000D7FF9000 00004B (v02 LENOVO MeSsdt   00003000 INTL 20141107)
Jan 13 21:52:39 computer kernel: ACPI: TPM2 0x00000000D7FF8000 000034 (v03 LENOVO TP-R02   00001470 PTEC 00000002)
Jan 13 21:52:39 computer kernel: ACPI: UEFI 0x00000000D7FA7000 000042 (v01 LENOVO TP-R02   00001470 PTEC 00000002)
Jan 13 21:52:39 computer kernel: ACPI: SSDT 0x00000000D7FF3000 004E75 (v02 LENOVO SaSsdt   00003000 INTL 20141107)
Jan 13 21:52:39 computer kernel: ACPI: SSDT 0x00000000D7FF2000 0005C5 (v02 LENOVO PerfTune 00001000 INTL 20141107)
Jan 13 21:52:39 computer kernel: ACPI: ECDT 0x00000000D7FF0000 000052 (v01 LENOVO TP-R02   00001470 PTEC 00000002)
Jan 13 21:52:39 computer kernel: ACPI: HPET 0x00000000D7FEF000 000038 (v01 LENOVO TP-R02   00001470 PTEC 00000002)
Jan 13 21:52:39 computer kernel: ACPI: APIC 0x00000000D7FEE000 0000BC (v03 LENOVO TP-R02   00001470 PTEC 00000002)
Jan 13 21:52:39 computer kernel: ACPI: MCFG 0x00000000D7FED000 00003C (v01 LENOVO TP-R02   00001470 PTEC 00000002)
Jan 13 21:52:39 computer kernel: ACPI: SSDT 0x00000000D7FD8000 0018D2 (v01 LENOVO SataAhci 00001000 INTL 20141107)
Jan 13 21:52:39 computer kernel: ACPI: SSDT 0x00000000D7FD7000 000152 (v01 LENOVO Rmv_Batt 00001000 INTL 20141107)
Jan 13 21:52:39 computer kernel: ACPI: DBGP 0x00000000D7FD6000 000034 (v01 LENOVO TP-R02   00001470 PTEC 00000002)
Jan 13 21:52:39 computer kernel: ACPI: DBG2 0x00000000D7FD5000 000054 (v00 LENOVO TP-R02   00001470 PTEC 00000002)
Jan 13 21:52:39 computer kernel: ACPI: BOOT 0x00000000D7FD4000 000028 (v01 LENOVO TP-R02   00001470 PTEC 00000002)
Jan 13 21:52:39 computer kernel: ACPI: BATB 0x00000000D7FD3000 00004A (v02 LENOVO TP-R02   00001470 PTEC 00000002)
Jan 13 21:52:39 computer kernel: ACPI: SSDT 0x00000000D7FD2000 000E73 (v02 LENOVO CpuSsdt  00003000 INTL 20141107)
Jan 13 21:52:39 computer kernel: ACPI: SSDT 0x00000000D7FD1000 0003D9 (v02 LENOVO CtdpB    00001000 INTL 20141107)
Jan 13 21:52:39 computer kernel: ACPI: POAT 0x00000000D7FD0000 000055 (v03 LENOVO TP-R02   00001470 PTEC 00000002)
Jan 13 21:52:39 computer kernel: ACPI: DMAR 0x00000000D7FFC000 0000A8 (v01 LENOVO TP-R02   00001470 PTEC 00000002)
Jan 13 21:52:39 computer kernel: ACPI: ASF! 0x00000000D7FCE000 0000A5 (v32 LENOVO TP-R02   00001470 PTEC 00000002)
Jan 13 21:52:39 computer kernel: ACPI: FPDT 0x00000000D7FCD000 000044 (v01 LENOVO TP-R02   00001470 PTEC 00000002)
Jan 13 21:52:39 computer kernel: ACPI: BGRT 0x00000000D7FCC000 000038 (v01 LENOVO TP-R02   00001470 PTEC 00000002)
Jan 13 21:52:39 computer kernel: ACPI: UEFI 0x00000000D7F8F000 00013E (v01 LENOVO TP-R02   00001470 PTEC 00000002)
Jan 13 21:52:39 computer kernel: ACPI: Local APIC address 0xfee00000
Jan 13 21:52:39 computer kernel: No NUMA configuration found
Jan 13 21:52:39 computer kernel: Faking a node at [mem 0x0000000000000000-0x00000004227fffff]
Jan 13 21:52:39 computer kernel: NODE_DATA(0) allocated [mem 0x4227fc000-0x4227fffff]
Jan 13 21:52:39 computer kernel: Zone ranges:
Jan 13 21:52:39 computer kernel:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
Jan 13 21:52:39 computer kernel:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
Jan 13 21:52:39 computer kernel:   Normal   [mem 0x0000000100000000-0x00000004227fffff]
Jan 13 21:52:39 computer kernel:   Device   empty
Jan 13 21:52:39 computer kernel: Movable zone start for each node
Jan 13 21:52:39 computer kernel: Early memory node ranges
Jan 13 21:52:39 computer kernel:   node   0: [mem 0x0000000000001000-0x0000000000057fff]
Jan 13 21:52:39 computer kernel:   node   0: [mem 0x0000000000059000-0x000000000009cfff]
Jan 13 21:52:39 computer kernel:   node   0: [mem 0x0000000000100000-0x00000000b7250fff]
Jan 13 21:52:39 computer kernel:   node   0: [mem 0x00000000b7253000-0x00000000b7f77fff]
Jan 13 21:52:39 computer kernel:   node   0: [mem 0x00000000b7f79000-0x00000000cbed7fff]
Jan 13 21:52:39 computer kernel:   node   0: [mem 0x00000000cbf03000-0x00000000d5809fff]
Jan 13 21:52:39 computer kernel:   node   0: [mem 0x00000000d7ffe000-0x00000000d7ffefff]
Jan 13 21:52:39 computer kernel:   node   0: [mem 0x0000000100000000-0x00000004227fffff]
Jan 13 21:52:39 computer kernel: Zeroed struct page in unavailable ranges: 32904 pages
Jan 13 21:52:39 computer kernel: Initmem setup node 0 [mem 0x0000000000001000-0x00000004227fffff]
Jan 13 21:52:39 computer kernel: On node 0 totalpages: 4161400
Jan 13 21:52:39 computer kernel:   DMA zone: 64 pages used for memmap
Jan 13 21:52:39 computer kernel:   DMA zone: 22 pages reserved
Jan 13 21:52:39 computer kernel:   DMA zone: 3995 pages, LIFO batch:0
Jan 13 21:52:39 computer kernel:   DMA32 zone: 13600 pages used for memmap
Jan 13 21:52:39 computer kernel:   DMA32 zone: 870365 pages, LIFO batch:63
Jan 13 21:52:39 computer kernel:   Normal zone: 51360 pages used for memmap
Jan 13 21:52:39 computer kernel:   Normal zone: 3287040 pages, LIFO batch:63
Jan 13 21:52:39 computer kernel: Reserving Intel graphics memory at [mem 0xda800000-0xdc7fffff]
Jan 13 21:52:39 computer kernel: ACPI: PM-Timer IO Port: 0x1808
Jan 13 21:52:39 computer kernel: ACPI: Local APIC address 0xfee00000
Jan 13 21:52:39 computer kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
Jan 13 21:52:39 computer kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
Jan 13 21:52:39 computer kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
Jan 13 21:52:39 computer kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
Jan 13 21:52:39 computer kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
Jan 13 21:52:39 computer kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
Jan 13 21:52:39 computer kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
Jan 13 21:52:39 computer kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
Jan 13 21:52:39 computer kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
Jan 13 21:52:39 computer kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Jan 13 21:52:39 computer kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Jan 13 21:52:39 computer kernel: ACPI: IRQ0 used by override.
Jan 13 21:52:39 computer kernel: ACPI: IRQ9 used by override.
Jan 13 21:52:39 computer kernel: Using ACPI (MADT) for SMP configuration information
Jan 13 21:52:39 computer kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
Jan 13 21:52:39 computer kernel: e820: update [mem 0xcfd5a000-0xcfdeafff] usable ==> reserved
Jan 13 21:52:39 computer kernel: TSC deadline timer available
Jan 13 21:52:39 computer kernel: smpboot: Allowing 4 CPUs, 0 hotplug CPUs
Jan 13 21:52:39 computer kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
Jan 13 21:52:39 computer kernel: PM: hibernation: Registered nosave memory: [mem 0x00058000-0x00058fff]
Jan 13 21:52:39 computer kernel: PM: hibernation: Registered nosave memory: [mem 0x0009d000-0x000fffff]
Jan 13 21:52:39 computer kernel: PM: hibernation: Registered nosave memory: [mem 0xb7251000-0xb7252fff]
Jan 13 21:52:39 computer kernel: PM: hibernation: Registered nosave memory: [mem 0xb7f78000-0xb7f78fff]
Jan 13 21:52:39 computer kernel: PM: hibernation: Registered nosave memory: [mem 0xcbed8000-0xcbed8fff]
Jan 13 21:52:39 computer kernel: PM: hibernation: Registered nosave memory: [mem 0xcbed9000-0xcbf02fff]
Jan 13 21:52:39 computer kernel: PM: hibernation: Registered nosave memory: [mem 0xcfd5a000-0xcfdeafff]
Jan 13 21:52:39 computer kernel: PM: hibernation: Registered nosave memory: [mem 0xd580a000-0xd585afff]
Jan 13 21:52:39 computer kernel: PM: hibernation: Registered nosave memory: [mem 0xd585b000-0xd7f75fff]
Jan 13 21:52:39 computer kernel: PM: hibernation: Registered nosave memory: [mem 0xd7f76000-0xd7fc5fff]
Jan 13 21:52:39 computer kernel: PM: hibernation: Registered nosave memory: [mem 0xd7fc6000-0xd7ffdfff]
Jan 13 21:52:39 computer kernel: PM: hibernation: Registered nosave memory: [mem 0xd7fff000-0xd80fffff]
Jan 13 21:52:39 computer kernel: PM: hibernation: Registered nosave memory: [mem 0xd8100000-0xd85fffff]
Jan 13 21:52:39 computer kernel: PM: hibernation: Registered nosave memory: [mem 0xd8600000-0xdc7fffff]
Jan 13 21:52:39 computer kernel: PM: hibernation: Registered nosave memory: [mem 0xdc800000-0xf80f9fff]
Jan 13 21:52:39 computer kernel: PM: hibernation: Registered nosave memory: [mem 0xf80fa000-0xf80fafff]
Jan 13 21:52:39 computer kernel: PM: hibernation: Registered nosave memory: [mem 0xf80fb000-0xf80fcfff]
Jan 13 21:52:39 computer kernel: PM: hibernation: Registered nosave memory: [mem 0xf80fd000-0xf80fdfff]
Jan 13 21:52:39 computer kernel: PM: hibernation: Registered nosave memory: [mem 0xf80fe000-0xfdffffff]
Jan 13 21:52:39 computer kernel: PM: hibernation: Registered nosave memory: [mem 0xfe000000-0xfe010fff]
Jan 13 21:52:39 computer kernel: PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xffffffff]
Jan 13 21:52:39 computer kernel: [mem 0xdc800000-0xf80f9fff] available for PCI devices
Jan 13 21:52:39 computer kernel: Booting paravirtualized kernel on bare hardware
Jan 13 21:52:39 computer kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
Jan 13 21:52:39 computer kernel: setup_percpu: NR_CPUS:320 nr_cpumask_bits:320 nr_cpu_ids:4 nr_node_ids:1
Jan 13 21:52:39 computer kernel: percpu: Embedded 56 pages/cpu s192512 r8192 d28672 u524288
Jan 13 21:52:39 computer kernel: pcpu-alloc: s192512 r8192 d28672 u524288 alloc=1*2097152
Jan 13 21:52:39 computer kernel: pcpu-alloc: [0] 0 1 2 3 
Jan 13 21:52:39 computer kernel: Built 1 zonelists, mobility grouping on.  Total pages: 4096354
Jan 13 21:52:39 computer kernel: Policy zone: Normal
Jan 13 21:52:39 computer kernel: Kernel command line: BOOT_IMAGE=/BOOT/default@/vmlinuz-5.10-x86_64 root=ZFS=rpool_nsf0bw/ROOT/default ro quiet udev.log_priority=3
Jan 13 21:52:39 computer kernel: Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
Jan 13 21:52:39 computer kernel: Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
Jan 13 21:52:39 computer kernel: mem auto-init: stack:byref_all(zero), heap alloc:on, heap free:off
Jan 13 21:52:39 computer kernel: Memory: 16160624K/16645600K available (14344K kernel code, 2065K rwdata, 4832K rodata, 1720K init, 4232K bss, 484716K reserved, 0K cma-reserved)
Jan 13 21:52:39 computer kernel: random: get_random_u64 called from __kmem_cache_create+0x26/0x520 with crng_init=0
Jan 13 21:52:39 computer kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
Jan 13 21:52:39 computer kernel: Kernel/User page tables isolation: enabled
Jan 13 21:52:39 computer kernel: ftrace: allocating 42041 entries in 165 pages
Jan 13 21:52:39 computer kernel: ftrace: allocated 165 pages with 4 groups
Jan 13 21:52:39 computer kernel: rcu: Preemptible hierarchical RCU implementation.
Jan 13 21:52:39 computer kernel: rcu:         RCU dyntick-idle grace-period acceleration is enabled.
Jan 13 21:52:39 computer kernel: rcu:         RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=4.
Jan 13 21:52:39 computer kernel: rcu:         RCU priority boosting: priority 1 delay 500 ms.
Jan 13 21:52:39 computer kernel:         Trampoline variant of Tasks RCU enabled.
Jan 13 21:52:39 computer kernel:         Rude variant of Tasks RCU enabled.
Jan 13 21:52:39 computer kernel:         Tracing variant of Tasks RCU enabled.
Jan 13 21:52:39 computer kernel: rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
Jan 13 21:52:39 computer kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
Jan 13 21:52:39 computer kernel: NR_IRQS: 20736, nr_irqs: 1024, preallocated irqs: 16
Jan 13 21:52:39 computer kernel: Console: colour dummy device 80x25
Jan 13 21:52:39 computer kernel: printk: console [tty0] enabled
Jan 13 21:52:39 computer kernel: ACPI: Core revision 20200925
Jan 13 21:52:39 computer kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635855245 ns
Jan 13 21:52:39 computer kernel: APIC: Switch to symmetric I/O mode setup
Jan 13 21:52:39 computer kernel: DMAR: Host address width 39
Jan 13 21:52:39 computer kernel: DMAR: DRHD base: 0x000000fed90000 flags: 0x0
Jan 13 21:52:39 computer kernel: DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap 1c0000c40660462 ecap 7e3ff0505e
Jan 13 21:52:39 computer kernel: DMAR: DRHD base: 0x000000fed91000 flags: 0x1
Jan 13 21:52:39 computer kernel: DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
Jan 13 21:52:39 computer kernel: DMAR: RMRR base: 0x000000d751f000 end: 0x000000d753efff
Jan 13 21:52:39 computer kernel: DMAR: RMRR base: 0x000000da000000 end: 0x000000dc7fffff
Jan 13 21:52:39 computer kernel: DMAR-IR: IOAPIC id 2 under DRHD base  0xfed91000 IOMMU 1
Jan 13 21:52:39 computer kernel: DMAR-IR: HPET id 0 under DRHD base 0xfed91000
Jan 13 21:52:39 computer kernel: DMAR-IR: x2apic is disabled because BIOS sets x2apic opt out bit.
Jan 13 21:52:39 computer kernel: DMAR-IR: Use 'intremap=no_x2apic_optout' to override the BIOS setting.
Jan 13 21:52:39 computer kernel: DMAR-IR: Enabled IRQ remapping in xapic mode
Jan 13 21:52:39 computer kernel: x2apic: IRQ remapping doesn't support X2APIC mode
Jan 13 21:52:39 computer kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Jan 13 21:52:39 computer kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x22983777dd9, max_idle_ns: 440795300422 ns
Jan 13 21:52:39 computer kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 4801.00 BogoMIPS (lpj=8000000)
Jan 13 21:52:39 computer kernel: pid_max: default: 32768 minimum: 301
Jan 13 21:52:39 computer kernel: LSM: Security Framework initializing
Jan 13 21:52:39 computer kernel: Yama: becoming mindful.
Jan 13 21:52:39 computer kernel: Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
Jan 13 21:52:39 computer kernel: Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
Jan 13 21:52:39 computer kernel: mce: CPU0: Thermal monitoring enabled (TM1)
Jan 13 21:52:39 computer kernel: process: using mwait in idle threads
Jan 13 21:52:39 computer kernel: Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
Jan 13 21:52:39 computer kernel: Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
Jan 13 21:52:39 computer kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
Jan 13 21:52:39 computer kernel: Spectre V2 : Mitigation: Full generic retpoline
Jan 13 21:52:39 computer kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
Jan 13 21:52:39 computer kernel: Spectre V2 : Enabling Restricted Speculation for firmware calls
Jan 13 21:52:39 computer kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
Jan 13 21:52:39 computer kernel: Spectre V2 : User space: Mitigation: STIBP via seccomp and prctl
Jan 13 21:52:39 computer kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
Jan 13 21:52:39 computer kernel: SRBDS: Mitigation: Microcode
Jan 13 21:52:39 computer kernel: MDS: Mitigation: Clear CPU buffers
Jan 13 21:52:39 computer kernel: Freeing SMP alternatives memory: 36K
Jan 13 21:52:39 computer kernel: smpboot: CPU0: Intel(R) Core(TM) i5-6200U CPU @ 2.30GHz (family: 0x6, model: 0x4e, stepping: 0x3)
Jan 13 21:52:39 computer kernel: Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
Jan 13 21:52:39 computer kernel: ... version:                4
Jan 13 21:52:39 computer kernel: ... bit width:              48
Jan 13 21:52:39 computer kernel: ... generic registers:      4
Jan 13 21:52:39 computer kernel: ... value mask:             0000ffffffffffff
Jan 13 21:52:39 computer kernel: ... max period:             00007fffffffffff
Jan 13 21:52:39 computer kernel: ... fixed-purpose events:   3
Jan 13 21:52:39 computer kernel: ... event mask:             000000070000000f
Jan 13 21:52:39 computer kernel: rcu: Hierarchical SRCU implementation.
Jan 13 21:52:39 computer kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
Jan 13 21:52:39 computer kernel: smp: Bringing up secondary CPUs ...
Jan 13 21:52:39 computer kernel: x86: Booting SMP configuration:
Jan 13 21:52:39 computer kernel: .... node  #0, CPUs:      #1 #2
Jan 13 21:52:39 computer kernel: MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
Jan 13 21:52:39 computer kernel:  #3
Jan 13 21:52:39 computer kernel: smp: Brought up 1 node, 4 CPUs
Jan 13 21:52:39 computer kernel: smpboot: Max logical packages: 1
Jan 13 21:52:39 computer kernel: smpboot: Total of 4 processors activated (19207.00 BogoMIPS)
Jan 13 21:52:39 computer kernel: devtmpfs: initialized
Jan 13 21:52:39 computer kernel: x86/mm: Memory block size: 128MB
Jan 13 21:52:39 computer kernel: PM: Registering ACPI NVS region [mem 0xcbed8000-0xcbed8fff] (4096 bytes)
Jan 13 21:52:39 computer kernel: PM: Registering ACPI NVS region [mem 0xd7f76000-0xd7fc5fff] (327680 bytes)
Jan 13 21:52:39 computer kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
Jan 13 21:52:39 computer kernel: futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
Jan 13 21:52:39 computer kernel: pinctrl core: initialized pinctrl subsystem
Jan 13 21:52:39 computer kernel: PM: RTC time: 20:52:32, date: 2021-01-13
Jan 13 21:52:39 computer kernel: NET: Registered protocol family 16
Jan 13 21:52:39 computer kernel: DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations
Jan 13 21:52:39 computer kernel: DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
Jan 13 21:52:39 computer kernel: DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
Jan 13 21:52:39 computer kernel: audit: initializing netlink subsys (disabled)
Jan 13 21:52:39 computer kernel: audit: type=2000 audit(1610571151.029:1): state=initialized audit_enabled=0 res=1
Jan 13 21:52:39 computer kernel: thermal_sys: Registered thermal governor 'fair_share'
Jan 13 21:52:39 computer kernel: thermal_sys: Registered thermal governor 'bang_bang'
Jan 13 21:52:39 computer kernel: thermal_sys: Registered thermal governor 'step_wise'
Jan 13 21:52:39 computer kernel: thermal_sys: Registered thermal governor 'user_space'
Jan 13 21:52:39 computer kernel: thermal_sys: Registered thermal governor 'power_allocator'
Jan 13 21:52:39 computer kernel: cpuidle: using governor ladder
Jan 13 21:52:39 computer kernel: cpuidle: using governor menu
Jan 13 21:52:39 computer kernel: Simple Boot Flag at 0x47 set to 0x1
Jan 13 21:52:39 computer kernel: ACPI: bus type PCI registered
Jan 13 21:52:39 computer kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Jan 13 21:52:39 computer kernel: PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
Jan 13 21:52:39 computer kernel: PCI: not using MMCONFIG
Jan 13 21:52:39 computer kernel: PCI: Using configuration type 1 for base access
Jan 13 21:52:39 computer kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
Jan 13 21:52:39 computer kernel: HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
Jan 13 21:52:39 computer kernel: HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
Jan 13 21:52:39 computer kernel: ACPI: Added _OSI(Module Device)
Jan 13 21:52:39 computer kernel: ACPI: Added _OSI(Processor Device)
Jan 13 21:52:39 computer kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Jan 13 21:52:39 computer kernel: ACPI: Added _OSI(Processor Aggregator Device)
Jan 13 21:52:39 computer kernel: ACPI: Added _OSI(Linux-Dell-Video)
Jan 13 21:52:39 computer kernel: ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
Jan 13 21:52:39 computer kernel: ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
Jan 13 21:52:39 computer kernel: ACPI: 9 ACPI AML tables successfully acquired and loaded
Jan 13 21:52:39 computer kernel: ACPI: EC: EC started
Jan 13 21:52:39 computer kernel: ACPI: EC: interrupt blocked
Jan 13 21:52:39 computer kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
Jan 13 21:52:39 computer kernel: ACPI: EC: Boot ECDT EC used to handle transactions
Jan 13 21:52:39 computer kernel: ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
Jan 13 21:52:39 computer kernel: ACPI: Dynamic OEM Table Load:
Jan 13 21:52:39 computer kernel: ACPI: SSDT 0xFFFF9F0B81114800 00068B (v02 PmRef  Cpu0Ist  00003000 INTL 20141107)
Jan 13 21:52:39 computer kernel: ACPI: \_PR_.CPU0: _OSC native thermal LVT Acked
Jan 13 21:52:39 computer kernel: ACPI: Dynamic OEM Table Load:
Jan 13 21:52:39 computer kernel: ACPI: SSDT 0xFFFF9F0B80DD3000 0003CF (v02 PmRef  Cpu0Cst  00003001 INTL 20141107)
Jan 13 21:52:39 computer kernel: ACPI: Dynamic OEM Table Load:
Jan 13 21:52:39 computer kernel: ACPI: SSDT 0xFFFF9F0B80DC7CC0 00008E (v02 PmRef  Cpu0Hwp  00003000 INTL 20141107)
Jan 13 21:52:39 computer kernel: ACPI: Dynamic OEM Table Load:
Jan 13 21:52:39 computer kernel: ACPI: SSDT 0xFFFF9F0B81153600 000130 (v02 PmRef  HwpLvt   00003000 INTL 20141107)
Jan 13 21:52:39 computer kernel: ACPI: Dynamic OEM Table Load:
Jan 13 21:52:39 computer kernel: ACPI: SSDT 0xFFFF9F0B81117800 0005AA (v02 PmRef  ApIst    00003000 INTL 20141107)
Jan 13 21:52:39 computer kernel: ACPI: Dynamic OEM Table Load:
Jan 13 21:52:39 computer kernel: ACPI: SSDT 0xFFFF9F0B81152800 000119 (v02 PmRef  ApHwp    00003000 INTL 20141107)
Jan 13 21:52:39 computer kernel: ACPI: Dynamic OEM Table Load:
Jan 13 21:52:39 computer kernel: ACPI: SSDT 0xFFFF9F0B81153A00 000119 (v02 PmRef  ApCst    00003000 INTL 20141107)
Jan 13 21:52:39 computer kernel: ACPI: Interpreter enabled
Jan 13 21:52:39 computer kernel: ACPI: (supports S0 S3 S4 S5)
Jan 13 21:52:39 computer kernel: ACPI: Using IOAPIC for interrupt routing
Jan 13 21:52:39 computer kernel: PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
Jan 13 21:52:39 computer kernel: PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in ACPI motherboard resources
Jan 13 21:52:39 computer kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Jan 13 21:52:39 computer kernel: ACPI: Enabled 5 GPEs in block 00 to 7F
Jan 13 21:52:39 computer kernel: ACPI: Power Resource [PUBS] (on)
Jan 13 21:52:39 computer kernel: acpi PNP0C0A:01: ACPI dock station (docks/bays count: 1)
Jan 13 21:52:39 computer kernel: ACPI: Power Resource [PG00] (on)
Jan 13 21:52:39 computer kernel: ACPI: Power Resource [PG01] (on)
Jan 13 21:52:39 computer kernel: ACPI: Power Resource [PG02] (on)
Jan 13 21:52:39 computer kernel: ACPI: Power Resource [WRST] (off)
Jan 13 21:52:39 computer kernel: ACPI: Power Resource [WRST] (off)
Jan 13 21:52:39 computer kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 *11)
Jan 13 21:52:39 computer kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 *10 11)
Jan 13 21:52:39 computer kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 *11)
Jan 13 21:52:39 computer kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 *11)
Jan 13 21:52:39 computer kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 *11)
Jan 13 21:52:39 computer kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 10 *11)
Jan 13 21:52:39 computer kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 9 10 *11)
Jan 13 21:52:39 computer kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 9 10 *11)
Jan 13 21:52:39 computer kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3f])
Jan 13 21:52:39 computer kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
Jan 13 21:52:39 computer kernel: acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug PCIeCapability LTR DPC]
Jan 13 21:52:39 computer kernel: acpi PNP0A08:00: _OSC: not requesting control; platform does not support [PCIeCapability]
Jan 13 21:52:39 computer kernel: acpi PNP0A08:00: _OSC: OS requested [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
Jan 13 21:52:39 computer kernel: acpi PNP0A08:00: _OSC: platform willing to grant [PCIeHotplug PME AER]
Jan 13 21:52:39 computer kernel: acpi PNP0A08:00: _OSC failed (AE_SUPPORT); disabling ASPM
Jan 13 21:52:39 computer kernel: PCI host bridge to bus 0000:00
Jan 13 21:52:39 computer kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
Jan 13 21:52:39 computer kernel: pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
Jan 13 21:52:39 computer kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Jan 13 21:52:39 computer kernel: pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff window]
Jan 13 21:52:39 computer kernel: pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff window]
Jan 13 21:52:39 computer kernel: pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff window]
Jan 13 21:52:39 computer kernel: pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff window]
Jan 13 21:52:39 computer kernel: pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff window]
Jan 13 21:52:39 computer kernel: pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window]
Jan 13 21:52:39 computer kernel: pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]
Jan 13 21:52:39 computer kernel: pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff window]
Jan 13 21:52:39 computer kernel: pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff window]
Jan 13 21:52:39 computer kernel: pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff window]
Jan 13 21:52:39 computer kernel: pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff window]
Jan 13 21:52:39 computer kernel: pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff window]
Jan 13 21:52:39 computer kernel: pci_bus 0000:00: root bus resource [mem 0xdc800000-0xfebfffff window]
Jan 13 21:52:39 computer kernel: pci_bus 0000:00: root bus resource [bus 00-3f]
Jan 13 21:52:39 computer kernel: pci 0000:00:00.0: [8086:1904] type 00 class 0x060000
Jan 13 21:52:39 computer kernel: pci 0000:00:02.0: [8086:1916] type 00 class 0x030000
Jan 13 21:52:39 computer kernel: pci 0000:00:02.0: reg 0x10: [mem 0xf0000000-0xf0ffffff 64bit]
Jan 13 21:52:39 computer kernel: pci 0000:00:02.0: reg 0x18: [mem 0xe0000000-0xefffffff 64bit pref]
Jan 13 21:52:39 computer kernel: pci 0000:00:02.0: reg 0x20: [io  0xe000-0xe03f]
Jan 13 21:52:39 computer kernel: pci 0000:00:02.0: BAR 2: assigned to efifb
Jan 13 21:52:39 computer kernel: pci 0000:00:14.0: [8086:9d2f] type 00 class 0x0c0330
Jan 13 21:52:39 computer kernel: pci 0000:00:14.0: reg 0x10: [mem 0xf1220000-0xf122ffff 64bit]
Jan 13 21:52:39 computer kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
Jan 13 21:52:39 computer kernel: pci 0000:00:14.2: [8086:9d31] type 00 class 0x118000
Jan 13 21:52:39 computer kernel: pci 0000:00:14.2: reg 0x10: [mem 0xf124a000-0xf124afff 64bit]
Jan 13 21:52:39 computer kernel: pci 0000:00:16.0: [8086:9d3a] type 00 class 0x078000
Jan 13 21:52:39 computer kernel: pci 0000:00:16.0: reg 0x10: [mem 0xf124b000-0xf124bfff 64bit]
Jan 13 21:52:39 computer kernel: pci 0000:00:16.0: PME# supported from D3hot
Jan 13 21:52:39 computer kernel: pci 0000:00:17.0: [8086:9d03] type 00 class 0x010601
Jan 13 21:52:39 computer kernel: pci 0000:00:17.0: reg 0x10: [mem 0xf1248000-0xf1249fff]
Jan 13 21:52:39 computer kernel: pci 0000:00:17.0: reg 0x14: [mem 0xf124e000-0xf124e0ff]
Jan 13 21:52:39 computer kernel: pci 0000:00:17.0: reg 0x18: [io  0xe080-0xe087]
Jan 13 21:52:39 computer kernel: pci 0000:00:17.0: reg 0x1c: [io  0xe088-0xe08b]
Jan 13 21:52:39 computer kernel: pci 0000:00:17.0: reg 0x20: [io  0xe060-0xe07f]
Jan 13 21:52:39 computer kernel: pci 0000:00:17.0: reg 0x24: [mem 0xf124c000-0xf124c7ff]
Jan 13 21:52:39 computer kernel: pci 0000:00:17.0: PME# supported from D3hot
Jan 13 21:52:39 computer kernel: pci 0000:00:1c.0: [8086:9d10] type 01 class 0x060400
Jan 13 21:52:39 computer kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
Jan 13 21:52:39 computer kernel: pci 0000:00:1c.2: [8086:9d12] type 01 class 0x060400
Jan 13 21:52:39 computer kernel: pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
Jan 13 21:52:39 computer kernel: pci 0000:00:1f.0: [8086:9d48] type 00 class 0x060100
Jan 13 21:52:39 computer kernel: pci 0000:00:1f.2: [8086:9d21] type 00 class 0x058000
Jan 13 21:52:39 computer kernel: pci 0000:00:1f.2: reg 0x10: [mem 0xf1244000-0xf1247fff]
Jan 13 21:52:39 computer kernel: pci 0000:00:1f.3: [8086:9d70] type 00 class 0x040300
Jan 13 21:52:39 computer kernel: pci 0000:00:1f.3: reg 0x10: [mem 0xf1240000-0xf1243fff 64bit]
Jan 13 21:52:39 computer kernel: pci 0000:00:1f.3: reg 0x20: [mem 0xf1230000-0xf123ffff 64bit]
Jan 13 21:52:39 computer kernel: pci 0000:00:1f.3: PME# supported from D3hot D3cold
Jan 13 21:52:39 computer kernel: pci 0000:00:1f.4: [8086:9d23] type 00 class 0x0c0500
Jan 13 21:52:39 computer kernel: pci 0000:00:1f.4: reg 0x10: [mem 0xf124d000-0xf124d0ff 64bit]
Jan 13 21:52:39 computer kernel: pci 0000:00:1f.4: reg 0x20: [io  0xefa0-0xefbf]
Jan 13 21:52:39 computer kernel: pci 0000:00:1f.6: [8086:1570] type 00 class 0x020000
Jan 13 21:52:39 computer kernel: pci 0000:00:1f.6: reg 0x10: [mem 0xf1200000-0xf121ffff]
Jan 13 21:52:39 computer kernel: pci 0000:00:1f.6: PME# supported from D0 D3hot D3cold
Jan 13 21:52:39 computer kernel: pci 0000:02:00.0: [10ec:522a] type 00 class 0xff0000
Jan 13 21:52:39 computer kernel: pci 0000:02:00.0: reg 0x10: [mem 0xf1100000-0xf1100fff]
Jan 13 21:52:39 computer kernel: pci 0000:02:00.0: supports D1 D2
Jan 13 21:52:39 computer kernel: pci 0000:02:00.0: PME# supported from D1 D2 D3hot D3cold
Jan 13 21:52:39 computer kernel: pci 0000:00:1c.0: PCI bridge to [bus 02]
Jan 13 21:52:39 computer kernel: pci 0000:00:1c.0:   bridge window [mem 0xf1100000-0xf11fffff]
Jan 13 21:52:39 computer kernel: pci 0000:04:00.0: [8086:24f3] type 00 class 0x028000
Jan 13 21:52:39 computer kernel: pci 0000:04:00.0: reg 0x10: [mem 0xf1000000-0xf1001fff 64bit]
Jan 13 21:52:39 computer kernel: pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
Jan 13 21:52:39 computer kernel: pci 0000:00:1c.2: PCI bridge to [bus 04]
Jan 13 21:52:39 computer kernel: pci 0000:00:1c.2:   bridge window [mem 0xf1000000-0xf10fffff]
Jan 13 21:52:39 computer kernel: ACPI: EC: interrupt unblocked
Jan 13 21:52:39 computer kernel: ACPI: EC: event unblocked
Jan 13 21:52:39 computer kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
Jan 13 21:52:39 computer kernel: ACPI: EC: GPE=0x16
Jan 13 21:52:39 computer kernel: ACPI: \_SB_.PCI0.LPC_.EC__: Boot ECDT EC initialization complete
Jan 13 21:52:39 computer kernel: ACPI: \_SB_.PCI0.LPC_.EC__: EC: Used to handle transactions and events
Jan 13 21:52:39 computer kernel: iommu: Default domain type: Translated 
Jan 13 21:52:39 computer kernel: pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=mem,locks=none
Jan 13 21:52:39 computer kernel: pci 0000:00:02.0: vgaarb: bridge control possible
Jan 13 21:52:39 computer kernel: pci 0000:00:02.0: vgaarb: setting as boot device
Jan 13 21:52:39 computer kernel: vgaarb: loaded
Jan 13 21:52:39 computer kernel: SCSI subsystem initialized
Jan 13 21:52:39 computer kernel: libata version 3.00 loaded.
Jan 13 21:52:39 computer kernel: ACPI: bus type USB registered
Jan 13 21:52:39 computer kernel: usbcore: registered new interface driver usbfs
Jan 13 21:52:39 computer kernel: usbcore: registered new interface driver hub
Jan 13 21:52:39 computer kernel: usbcore: registered new device driver usb
Jan 13 21:52:39 computer kernel: pps_core: LinuxPPS API ver. 1 registered
Jan 13 21:52:39 computer kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]>
Jan 13 21:52:39 computer kernel: PTP clock support registered
Jan 13 21:52:39 computer kernel: EDAC MC: Ver: 3.0.0
Jan 13 21:52:39 computer kernel: Registered efivars operations
Jan 13 21:52:39 computer kernel: NetLabel: Initializing
Jan 13 21:52:39 computer kernel: NetLabel:  domain hash size = 128
Jan 13 21:52:39 computer kernel: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
Jan 13 21:52:39 computer kernel: NetLabel:  unlabeled traffic allowed by default
Jan 13 21:52:39 computer kernel: PCI: Using ACPI for IRQ routing
Jan 13 21:52:39 computer kernel: PCI: pci_cache_line_size set to 64 bytes
Jan 13 21:52:39 computer kernel: e820: reserve RAM buffer [mem 0x00058000-0x0005ffff]
Jan 13 21:52:39 computer kernel: e820: reserve RAM buffer [mem 0x0009d000-0x0009ffff]
Jan 13 21:52:39 computer kernel: e820: reserve RAM buffer [mem 0xb7251000-0xb7ffffff]
Jan 13 21:52:39 computer kernel: e820: reserve RAM buffer [mem 0xb7f78000-0xb7ffffff]
Jan 13 21:52:39 computer kernel: e820: reserve RAM buffer [mem 0xcbed8000-0xcbffffff]
Jan 13 21:52:39 computer kernel: e820: reserve RAM buffer [mem 0xcfd5a000-0xcfffffff]
Jan 13 21:52:39 computer kernel: e820: reserve RAM buffer [mem 0xd580a000-0xd7ffffff]
Jan 13 21:52:39 computer kernel: e820: reserve RAM buffer [mem 0xd7fff000-0xd7ffffff]
Jan 13 21:52:39 computer kernel: e820: reserve RAM buffer [mem 0x422800000-0x423ffffff]
Jan 13 21:52:39 computer kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
Jan 13 21:52:39 computer kernel: hpet0: 8 comparators, 64-bit 24.000000 MHz counter
Jan 13 21:52:39 computer kernel: clocksource: Switched to clocksource tsc-early
Jan 13 21:52:39 computer kernel: VFS: Disk quotas dquot_6.6.0
Jan 13 21:52:39 computer kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Jan 13 21:52:39 computer kernel: pnp: PnP ACPI init
Jan 13 21:52:39 computer kernel: system 00:00: [mem 0x00000000-0x0009ffff] could not be reserved
Jan 13 21:52:39 computer kernel: system 00:00: [mem 0x000f0000-0x000fffff] could not be reserved
Jan 13 21:52:39 computer kernel: system 00:00: [mem 0x00100000-0xdc7fffff] could not be reserved
Jan 13 21:52:39 computer kernel: system 00:00: [mem 0xfec00000-0xfed3ffff] could not be reserved
Jan 13 21:52:39 computer kernel: system 00:00: [mem 0xfed4c000-0xffffffff] could not be reserved
Jan 13 21:52:39 computer kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
Jan 13 21:52:39 computer kernel: system 00:01: [io  0x1800-0x189f] has been reserved
Jan 13 21:52:39 computer kernel: system 00:01: [io  0x0800-0x087f] has been reserved
Jan 13 21:52:39 computer kernel: system 00:01: [io  0x0880-0x08ff] has been reserved
Jan 13 21:52:39 computer kernel: system 00:01: [io  0x0900-0x097f] has been reserved
Jan 13 21:52:39 computer kernel: system 00:01: [io  0x0980-0x09ff] has been reserved
Jan 13 21:52:39 computer kernel: system 00:01: [io  0x0a00-0x0a7f] has been reserved
Jan 13 21:52:39 computer kernel: system 00:01: [io  0x0a80-0x0aff] has been reserved
Jan 13 21:52:39 computer kernel: system 00:01: [io  0x0b00-0x0b7f] has been reserved
Jan 13 21:52:39 computer kernel: system 00:01: [io  0x0b80-0x0bff] has been reserved
Jan 13 21:52:39 computer kernel: system 00:01: [io  0x15e0-0x15ef] has been reserved
Jan 13 21:52:39 computer kernel: system 00:01: [io  0x1600-0x167f] has been reserved
Jan 13 21:52:39 computer kernel: system 00:01: [io  0x1640-0x165f] has been reserved
Jan 13 21:52:39 computer kernel: system 00:01: [mem 0xf8000000-0xfbffffff] could not be reserved
Jan 13 21:52:39 computer kernel: system 00:01: [mem 0xfed10000-0xfed13fff] has been reserved
Jan 13 21:52:39 computer kernel: system 00:01: [mem 0xfed18000-0xfed18fff] has been reserved
Jan 13 21:52:39 computer kernel: system 00:01: [mem 0xfed19000-0xfed19fff] has been reserved
Jan 13 21:52:39 computer kernel: system 00:01: [mem 0xfeb00000-0xfebfffff] has been reserved
Jan 13 21:52:39 computer kernel: system 00:01: [mem 0xfed20000-0xfed3ffff] has been reserved
Jan 13 21:52:39 computer kernel: system 00:01: [mem 0xfed90000-0xfed93fff] could not be reserved
Jan 13 21:52:39 computer kernel: system 00:01: [mem 0xf7fe0000-0xf7ffffff] has been reserved
Jan 13 21:52:39 computer kernel: system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
Jan 13 21:52:39 computer kernel: pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
Jan 13 21:52:39 computer kernel: pnp 00:03: Plug and Play ACPI device, IDs LEN0071 PNP0303 (active)
Jan 13 21:52:39 computer kernel: pnp 00:04: Plug and Play ACPI device, IDs LEN2014 PNP0f13 (active)
Jan 13 21:52:39 computer kernel: system 00:05: [io  0x1854-0x1857] has been reserved
Jan 13 21:52:39 computer kernel: system 00:05: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
Jan 13 21:52:39 computer kernel: system 00:06: [mem 0xfd000000-0xfdabffff] has been reserved
Jan 13 21:52:39 computer kernel: system 00:06: [mem 0xfdad0000-0xfdadffff] has been reserved
Jan 13 21:52:39 computer kernel: system 00:06: [mem 0xfdb00000-0xfdffffff] has been reserved
Jan 13 21:52:39 computer kernel: system 00:06: [mem 0xfe000000-0xfe01ffff] could not be reserved
Jan 13 21:52:39 computer kernel: system 00:06: [mem 0xfe036000-0xfe03bfff] has been reserved
Jan 13 21:52:39 computer kernel: system 00:06: [mem 0xfe03d000-0xfe3fffff] has been reserved
Jan 13 21:52:39 computer kernel: system 00:06: [mem 0xfe410000-0xfe7fffff] has been reserved
Jan 13 21:52:39 computer kernel: system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
Jan 13 21:52:39 computer kernel: system 00:07: [io  0xff00-0xfffe] has been reserved
Jan 13 21:52:39 computer kernel: system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
Jan 13 21:52:39 computer kernel: pnp: PnP ACPI: found 8 devices
Jan 13 21:52:39 computer kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Jan 13 21:52:39 computer kernel: NET: Registered protocol family 2
Jan 13 21:52:39 computer kernel: tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
Jan 13 21:52:39 computer kernel: TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
Jan 13 21:52:39 computer kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
Jan 13 21:52:39 computer kernel: TCP: Hash tables configured (established 131072 bind 65536)
Jan 13 21:52:39 computer kernel: MPTCP token hash table entries: 16384 (order: 6, 393216 bytes, linear)
Jan 13 21:52:39 computer kernel: UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
Jan 13 21:52:39 computer kernel: UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
Jan 13 21:52:39 computer kernel: NET: Registered protocol family 1
Jan 13 21:52:39 computer kernel: NET: Registered protocol family 44
Jan 13 21:52:39 computer kernel: pci 0000:00:1c.0: PCI bridge to [bus 02]
Jan 13 21:52:39 computer kernel: pci 0000:00:1c.0:   bridge window [mem 0xf1100000-0xf11fffff]
Jan 13 21:52:39 computer kernel: pci 0000:00:1c.2: PCI bridge to [bus 04]
Jan 13 21:52:39 computer kernel: pci 0000:00:1c.2:   bridge window [mem 0xf1000000-0xf10fffff]
Jan 13 21:52:39 computer kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
Jan 13 21:52:39 computer kernel: pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
Jan 13 21:52:39 computer kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
Jan 13 21:52:39 computer kernel: pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff window]
Jan 13 21:52:39 computer kernel: pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff window]
Jan 13 21:52:39 computer kernel: pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff window]
Jan 13 21:52:39 computer kernel: pci_bus 0000:00: resource 10 [mem 0x000cc000-0x000cffff window]
Jan 13 21:52:39 computer kernel: pci_bus 0000:00: resource 11 [mem 0x000d0000-0x000d3fff window]
Jan 13 21:52:39 computer kernel: pci_bus 0000:00: resource 12 [mem 0x000d4000-0x000d7fff window]
Jan 13 21:52:39 computer kernel: pci_bus 0000:00: resource 13 [mem 0x000d8000-0x000dbfff window]
Jan 13 21:52:39 computer kernel: pci_bus 0000:00: resource 14 [mem 0x000dc000-0x000dffff window]
Jan 13 21:52:39 computer kernel: pci_bus 0000:00: resource 15 [mem 0x000e0000-0x000e3fff window]
Jan 13 21:52:39 computer kernel: pci_bus 0000:00: resource 16 [mem 0x000e4000-0x000e7fff window]
Jan 13 21:52:39 computer kernel: pci_bus 0000:00: resource 17 [mem 0x000e8000-0x000ebfff window]
Jan 13 21:52:39 computer kernel: pci_bus 0000:00: resource 18 [mem 0x000ec000-0x000effff window]
Jan 13 21:52:39 computer kernel: pci_bus 0000:00: resource 19 [mem 0xdc800000-0xfebfffff window]
Jan 13 21:52:39 computer kernel: pci_bus 0000:02: resource 1 [mem 0xf1100000-0xf11fffff]
Jan 13 21:52:39 computer kernel: pci_bus 0000:04: resource 1 [mem 0xf1000000-0xf10fffff]
Jan 13 21:52:39 computer kernel: pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
Jan 13 21:52:39 computer kernel: PCI: CLS 0 bytes, default 64
Jan 13 21:52:39 computer kernel: Trying to unpack rootfs image as initramfs...
Jan 13 21:52:39 computer kernel: Freeing initrd memory: 16028K
Jan 13 21:52:39 computer kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Jan 13 21:52:39 computer kernel: software IO TLB: mapped [mem 0x00000000c62f5000-0x00000000ca2f5000] (64MB)
Jan 13 21:52:39 computer kernel: check: Scanning for low memory corruption every 60 seconds
Jan 13 21:52:39 computer kernel: Initialise system trusted keyrings
Jan 13 21:52:39 computer kernel: Key type blacklist registered
Jan 13 21:52:39 computer kernel: workingset: timestamp_bits=41 max_order=22 bucket_order=0
Jan 13 21:52:39 computer kernel: zbud: loaded
Jan 13 21:52:39 computer kernel: Key type asymmetric registered
Jan 13 21:52:39 computer kernel: Asymmetric key parser 'x509' registered
Jan 13 21:52:39 computer kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
Jan 13 21:52:39 computer kernel: io scheduler mq-deadline registered
Jan 13 21:52:39 computer kernel: io scheduler kyber registered
Jan 13 21:52:39 computer kernel: io scheduler bfq registered
Jan 13 21:52:39 computer kernel: atomic64_test: passed for x86-64 platform with CX8 and with SSE
Jan 13 21:52:39 computer kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Jan 13 21:52:39 computer kernel: efifb: probing for efifb
Jan 13 21:52:39 computer kernel: efifb: showing boot graphics
Jan 13 21:52:39 computer kernel: efifb: framebuffer at 0xe0000000, using 8128k, total 8128k
Jan 13 21:52:39 computer kernel: efifb: mode is 1920x1080x32, linelength=7680, pages=1
Jan 13 21:52:39 computer kernel: efifb: scrolling: redraw
Jan 13 21:52:39 computer kernel: efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
Jan 13 21:52:39 computer kernel: fbcon: Deferring console take-over
Jan 13 21:52:39 computer kernel: fb0: EFI VGA frame buffer device
Jan 13 21:52:39 computer kernel: intel_idle: MWAIT substates: 0x11142120
Jan 13 21:52:39 computer kernel: intel_idle: v0.5.1 model 0x4E
Jan 13 21:52:39 computer kernel: intel_idle: Local APIC timer is reliable in all C-states
Jan 13 21:52:39 computer kernel: ACPI: AC Adapter [AC] (on-line)
Jan 13 21:52:39 computer kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
Jan 13 21:52:39 computer kernel: ACPI: Lid Switch [LID]
Jan 13 21:52:39 computer kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1
Jan 13 21:52:39 computer kernel: ACPI: Sleep Button [SLPB]
Jan 13 21:52:39 computer kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
Jan 13 21:52:39 computer kernel: ACPI: Power Button [PWRF]
Jan 13 21:52:39 computer kernel: thermal LNXTHERM:00: registered as thermal_zone0
Jan 13 21:52:39 computer kernel: ACPI: Thermal Zone [THM0] (46 C)
Jan 13 21:52:39 computer kernel: Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Jan 13 21:52:39 computer kernel: Non-volatile memory driver v1.3
Jan 13 21:52:39 computer kernel: AMD-Vi: AMD IOMMUv2 driver by Joerg Roedel <[email protected]>
Jan 13 21:52:39 computer kernel: AMD-Vi: AMD IOMMUv2 functionality not available on this system
Jan 13 21:52:39 computer kernel: ahci 0000:00:17.0: version 3.0
Jan 13 21:52:39 computer kernel: ahci 0000:00:17.0: AHCI 0001.0301 32 slots 1 ports 6 Gbps 0x2 impl SATA mode
Jan 13 21:52:39 computer kernel: ahci 0000:00:17.0: flags: 64bit ncq pm led clo only pio slum part deso sadm sds apst 
Jan 13 21:52:39 computer kernel: battery: ACPI: Battery Slot [BAT0] (battery present)
Jan 13 21:52:39 computer kernel: scsi host0: ahci
Jan 13 21:52:39 computer kernel: scsi host1: ahci
Jan 13 21:52:39 computer kernel: ata1: DUMMY
Jan 13 21:52:39 computer kernel: ata2: SATA max UDMA/133 abar m2048@0xf124c000 port 0xf124c180 irq 124
Jan 13 21:52:39 computer kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Jan 13 21:52:39 computer kernel: ehci-pci: EHCI PCI platform driver
Jan 13 21:52:39 computer kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Jan 13 21:52:39 computer kernel: ohci-pci: OHCI PCI platform driver
Jan 13 21:52:39 computer kernel: uhci_hcd: USB Universal Host Controller Interface driver
Jan 13 21:52:39 computer kernel: usbcore: registered new interface driver usbserial_generic
Jan 13 21:52:39 computer kernel: usbserial: USB Serial support registered for generic
Jan 13 21:52:39 computer kernel: i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
Jan 13 21:52:39 computer kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Jan 13 21:52:39 computer kernel: random: fast init done
Jan 13 21:52:39 computer kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
Jan 13 21:52:39 computer kernel: rtc_cmos 00:02: RTC can wake from S4
Jan 13 21:52:39 computer kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
Jan 13 21:52:39 computer kernel: rtc_cmos 00:02: registered as rtc0
Jan 13 21:52:39 computer kernel: rtc_cmos 00:02: setting system clock to 2021-01-13T20:52:32 UTC (1610571152)
Jan 13 21:52:39 computer kernel: rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
Jan 13 21:52:39 computer kernel: intel_pstate: Intel P-state driver initializing
Jan 13 21:52:39 computer kernel: intel_pstate: HWP enabled
Jan 13 21:52:39 computer kernel: ledtrig-cpu: registered to indicate activity on CPUs
Jan 13 21:52:39 computer kernel: battery: ACPI: Battery Slot [BAT1] (battery present)
Jan 13 21:52:39 computer kernel: pstore: Registered efi as persistent store backend
Jan 13 21:52:39 computer kernel: hid: raw HID events driver (C) Jiri Kosina
Jan 13 21:52:39 computer kernel: ashmem: initialized
Jan 13 21:52:39 computer kernel: intel_pmc_core intel_pmc_core.0:  initialized
Jan 13 21:52:39 computer kernel: drop_monitor: Initializing network drop monitor service
Jan 13 21:52:39 computer kernel: Initializing XFRM netlink socket
Jan 13 21:52:39 computer kernel: NET: Registered protocol family 10
Jan 13 21:52:39 computer kernel: Segment Routing with IPv6
Jan 13 21:52:39 computer kernel: RPL Segment Routing with IPv6
Jan 13 21:52:39 computer kernel: NET: Registered protocol family 17
Jan 13 21:52:39 computer kernel: microcode: sig=0x406e3, pf=0x80, revision=0xe2
Jan 13 21:52:39 computer kernel: microcode: Microcode Update Driver: v2.2.
Jan 13 21:52:39 computer kernel: IPI shorthand broadcast: enabled
Jan 13 21:52:39 computer kernel: sched_clock: Marking stable (728672929, 570106)->(735520624, -6277589)
Jan 13 21:52:39 computer kernel: registered taskstats version 1
Jan 13 21:52:39 computer kernel: Loading compiled-in X.509 certificates
Jan 13 21:52:39 computer kernel: Loaded X.509 cert 'Build time autogenerated kernel key: b1cdd648fec5b824279d0b7b0f9bae72f872e75a'
Jan 13 21:52:39 computer kernel: zswap: loaded using pool zstd/z3fold
Jan 13 21:52:39 computer kernel: Key type ._fscrypt registered
Jan 13 21:52:39 computer kernel: Key type .fscrypt registered
Jan 13 21:52:39 computer kernel: Key type fscrypt-provisioning registered
Jan 13 21:52:39 computer kernel: pstore: Using crash dump compression: zstd
Jan 13 21:52:39 computer kernel: PM:   Magic number: 5:407:902
Jan 13 21:52:39 computer kernel: RAS: Correctable Errors collector initialized.
Jan 13 21:52:39 computer kernel: ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
Jan 13 21:52:39 computer kernel: ata2.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
Jan 13 21:52:39 computer kernel: ata2.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
Jan 13 21:52:39 computer kernel: ata2.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
Jan 13 21:52:39 computer kernel: ata2.00: ACPI cmd ef/10:09:00:00:00:a0 (SET FEATURES) succeeded
Jan 13 21:52:39 computer kernel: ata2.00: supports DRM functions and may not be fully accessible
Jan 13 21:52:39 computer kernel: ata2.00: disabling queued TRIM support
Jan 13 21:52:39 computer kernel: ata2.00: ATA-9: Samsung SSD 850 EVO 500GB, EMT02B6Q, max UDMA/133
Jan 13 21:52:39 computer kernel: ata2.00: 976773168 sectors, multi 1: LBA48 NCQ (depth 32), AA
Jan 13 21:52:39 computer kernel: ata2.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
Jan 13 21:52:39 computer kernel: ata2.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
Jan 13 21:52:39 computer kernel: ata2.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
Jan 13 21:52:39 computer kernel: ata2.00: ACPI cmd ef/10:09:00:00:00:a0 (SET FEATURES) succeeded
Jan 13 21:52:39 computer kernel: ata2.00: supports DRM functions and may not be fully accessible
Jan 13 21:52:39 computer kernel: ata2.00: disabling queued TRIM support
Jan 13 21:52:39 computer kernel: ata2.00: configured for UDMA/133
Jan 13 21:52:39 computer kernel: scsi 1:0:0:0: Direct-Access     ATA      Samsung SSD 850  2B6Q PQ: 0 ANSI: 5
Jan 13 21:52:39 computer kernel: sd 1:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/466 GiB)
Jan 13 21:52:39 computer kernel: sd 1:0:0:0: [sda] Write Protect is off
Jan 13 21:52:39 computer kernel: sd 1:0:0:0: [sda] Mode Sense: 00 3a 00 00
Jan 13 21:52:39 computer kernel: sd 1:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Jan 13 21:52:39 computer kernel:  sda: sda1 sda2 sda3 sda4
Jan 13 21:52:39 computer kernel: sd 1:0:0:0: [sda] supports TCG Opal
Jan 13 21:52:39 computer kernel: sd 1:0:0:0: [sda] Attached SCSI disk
Jan 13 21:52:39 computer kernel: Freeing unused decrypted memory: 2036K
Jan 13 21:52:39 computer kernel: Freeing unused kernel image (initmem) memory: 1720K
Jan 13 21:52:39 computer kernel: Write protecting the kernel read-only data: 22528k
Jan 13 21:52:39 computer kernel: Freeing unused kernel image (text/rodata gap) memory: 2036K
Jan 13 21:52:39 computer kernel: Freeing unused kernel image (rodata/data gap) memory: 1312K
Jan 13 21:52:39 computer kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Jan 13 21:52:39 computer kernel: rodata_test: all tests were successful
Jan 13 21:52:39 computer kernel: x86/mm: Checking user space page tables
Jan 13 21:52:39 computer kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Jan 13 21:52:39 computer kernel: Run /init as init process
Jan 13 21:52:39 computer kernel:   with arguments:
Jan 13 21:52:39 computer kernel:     /init
Jan 13 21:52:39 computer kernel:   with environment:
Jan 13 21:52:39 computer kernel:     HOME=/
Jan 13 21:52:39 computer kernel:     TERM=linux
Jan 13 21:52:39 computer kernel:     BOOT_IMAGE=/BOOT/default@/vmlinuz-5.10-x86_64
Jan 13 21:52:39 computer kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Jan 13 21:52:39 computer kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
Jan 13 21:52:39 computer kernel: xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x0000000081109810
Jan 13 21:52:39 computer kernel: xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
Jan 13 21:52:39 computer kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
Jan 13 21:52:39 computer kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jan 13 21:52:39 computer kernel: usb usb1: Product: xHCI Host Controller
Jan 13 21:52:39 computer kernel: usb usb1: Manufacturer: Linux 5.10.2-2-MANJARO xhci-hcd
Jan 13 21:52:39 computer kernel: usb usb1: SerialNumber: 0000:00:14.0
Jan 13 21:52:39 computer kernel: hub 1-0:1.0: USB hub found
Jan 13 21:52:39 computer kernel: hub 1-0:1.0: 12 ports detected
Jan 13 21:52:39 computer kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Jan 13 21:52:39 computer kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
Jan 13 21:52:39 computer kernel: xhci_hcd 0000:00:14.0: Host supports USB 3.0 SuperSpeed
Jan 13 21:52:39 computer kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
Jan 13 21:52:39 computer kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jan 13 21:52:39 computer kernel: usb usb2: Product: xHCI Host Controller
Jan 13 21:52:39 computer kernel: usb usb2: Manufacturer: Linux 5.10.2-2-MANJARO xhci-hcd
Jan 13 21:52:39 computer kernel: usb usb2: SerialNumber: 0000:00:14.0
Jan 13 21:52:39 computer kernel: hub 2-0:1.0: USB hub found
Jan 13 21:52:39 computer kernel: hub 2-0:1.0: 6 ports detected
Jan 13 21:52:39 computer kernel: usb: port power management may be unreliable
Jan 13 21:52:39 computer kernel: rtsx_pci 0000:02:00.0: enabling device (0000 -> 0002)
Jan 13 21:52:39 computer kernel: spl: loading out-of-tree module taints kernel.
Jan 13 21:52:39 computer kernel: spl: module verification failed: signature and/or required key missing - tainting kernel
Jan 13 21:52:39 computer kernel: znvpair: module license 'CDDL' taints kernel.
Jan 13 21:52:39 computer kernel: Disabling lock debugging due to kernel taint
Jan 13 21:52:39 computer kernel: psmouse serio1: synaptics: queried max coordinates: x [..5712], y [..4780]
Jan 13 21:52:39 computer kernel: psmouse serio1: synaptics: queried min coordinates: x [1232..], y [1074..]
Jan 13 21:52:39 computer kernel: psmouse serio1: synaptics: Your touchpad (PNP: LEN2014 PNP0f13) says it can support a different bus. If i2c-hid and hid-rmi are not used, you might want to try setting psmouse.synaptics_intertouch to 1 and report this to [email protected].
Jan 13 21:52:39 computer kernel: psmouse serio1: synaptics: Touchpad model: 1, fw: 8.1, id: 0x1e2b1, caps: 0xf002a3/0x943300/0x12e800/0x10000, board id: 3075, fw id: 2560
Jan 13 21:52:39 computer kernel: psmouse serio1: synaptics: serio: Synaptics pass-through port at isa0060/serio1/input0
Jan 13 21:52:39 computer kernel: input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input5
Jan 13 21:52:39 computer kernel: tsc: Refined TSC clocksource calibration: 2399.991 MHz
Jan 13 21:52:39 computer kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x22982efeb2e, max_idle_ns: 440795282550 ns
Jan 13 21:52:39 computer kernel: clocksource: Switched to clocksource tsc
Jan 13 21:52:39 computer kernel: usb 1-7: new full-speed USB device number 2 using xhci_hcd
Jan 13 21:52:39 computer kernel: usb 1-7: New USB device found, idVendor=8087, idProduct=0a2b, bcdDevice= 0.01
Jan 13 21:52:39 computer kernel: usb 1-7: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Jan 13 21:52:39 computer kernel: usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci_hcd
Jan 13 21:52:39 computer kernel: usb 2-1: New USB device found, idVendor=0781, idProduct=5581, bcdDevice= 1.00
Jan 13 21:52:39 computer kernel: usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Jan 13 21:52:39 computer kernel: usb 2-1: Product: Ultra
Jan 13 21:52:39 computer kernel: usb 2-1: Manufacturer: SanDisk
Jan 13 21:52:39 computer kernel: usb 2-1: SerialNumber: 0501d597f686699c68cc6de11c26a98fad93a9871a42b6cc3e9980af14318f39eaaa00000000000000000000040cc985ff0c0410815581078d274468
Jan 13 21:52:39 computer kernel: usb-storage 2-1:1.0: USB Mass Storage device detected
Jan 13 21:52:39 computer kernel: scsi host2: usb-storage 2-1:1.0
Jan 13 21:52:39 computer kernel: usbcore: registered new interface driver usb-storage
Jan 13 21:52:39 computer kernel: usbcore: registered new interface driver uas
Jan 13 21:52:39 computer kernel: usb 1-9: new full-speed USB device number 3 using xhci_hcd
Jan 13 21:52:39 computer kernel: usb 1-9: New USB device found, idVendor=138a, idProduct=0017, bcdDevice= 0.78
Jan 13 21:52:39 computer kernel: usb 1-9: New USB device strings: Mfr=0, Product=0, SerialNumber=1
Jan 13 21:52:39 computer kernel: usb 1-9: SerialNumber: 27f43b3ff71f
Jan 13 21:52:39 computer kernel: psmouse serio2: trackpoint: IBM TrackPoint firmware: 0x0e, buttons: 3/3
Jan 13 21:52:39 computer kernel: input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/serio2/input/input6
Jan 13 21:52:39 computer kernel: scsi 2:0:0:0: Direct-Access     SanDisk  Ultra            1.00 PQ: 0 ANSI: 6
Jan 13 21:52:39 computer kernel: sd 2:0:0:0: [sdb] 120127488 512-byte logical blocks: (61.5 GB/57.3 GiB)
Jan 13 21:52:39 computer kernel: sd 2:0:0:0: [sdb] Write Protect is off
Jan 13 21:52:39 computer kernel: sd 2:0:0:0: [sdb] Mode Sense: 43 00 00 00
Jan 13 21:52:39 computer kernel: sd 2:0:0:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
Jan 13 21:52:39 computer kernel:  sdb: sdb1 sdb2
Jan 13 21:52:39 computer kernel: sd 2:0:0:0: [sdb] Attached SCSI removable disk
Jan 13 21:52:39 computer kernel: ZFS: Loaded module v2.0.0-1, ZFS pool version 5000, ZFS filesystem version 5
Jan 13 21:52:39 computer kernel: fbcon: Taking over console
Jan 13 21:52:39 computer kernel: Console: switching to colour frame buffer device 240x67
Jan 13 21:52:39 computer systemd[1]: systemd 247.2-1-manjaro 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)
Jan 13 21:52:39 computer systemd[1]: Detected architecture x86-64.
Jan 13 21:52:39 computer systemd[1]: Set hostname to <computer>.
Jan 13 21:52:39 computer kernel: random: crng init done
Jan 13 21:52:39 computer systemd[1]: Queued start job for default target Graphical Interface.
Jan 13 21:52:39 computer systemd[1]: Created slice system-getty.slice.
Jan 13 21:52:39 computer systemd[1]: Created slice system-modprobe.slice.
Jan 13 21:52:39 computer systemd[1]: Created slice Cryptsetup Units Slice.
Jan 13 21:52:39 computer systemd[1]: Created slice User and Session Slice.
Jan 13 21:52:39 computer systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
Jan 13 21:52:39 computer systemd[1]: Started Forward Password Requests to Wall Directory Watch.
Jan 13 21:52:39 computer systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
Jan 13 21:52:39 computer systemd[1]: Reached target Login Prompts.
Jan 13 21:52:39 computer systemd[1]: Reached target Paths.
Jan 13 21:52:39 computer systemd[1]: Reached target Remote File Systems.
Jan 13 21:52:39 computer systemd[1]: Reached target Slices.
Jan 13 21:52:39 computer systemd[1]: Listening on Device-mapper event daemon FIFOs.
Jan 13 21:52:39 computer systemd[1]: Listening on LVM2 metadata daemon socket.
Jan 13 21:52:39 computer systemd[1]: Listening on LVM2 poll daemon socket.
Jan 13 21:52:39 computer systemd[1]: Listening on Process Core Dump Socket.
Jan 13 21:52:39 computer systemd[1]: Listening on Journal Audit Socket.
Jan 13 21:52:39 computer systemd[1]: Listening on Journal Socket (/dev/log).
Jan 13 21:52:39 computer systemd[1]: Listening on Journal Socket.
Jan 13 21:52:39 computer systemd[1]: Listening on udev Control Socket.
Jan 13 21:52:39 computer systemd[1]: Listening on udev Kernel Socket.
Jan 13 21:52:39 computer systemd[1]: Mounting Huge Pages File System...
Jan 13 21:52:39 computer systemd[1]: Mounting POSIX Message Queue File System...
Jan 13 21:52:39 computer systemd[1]: Mounting Kernel Debug File System...
Jan 13 21:52:39 computer systemd[1]: Mounting Kernel Trace File System...
Jan 13 21:52:39 computer systemd[1]: Starting Create list of static device nodes for the current kernel...
Jan 13 21:52:39 computer systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
Jan 13 21:52:39 computer systemd[1]: Starting Load Kernel Module configfs...
Jan 13 21:52:39 computer systemd[1]: Starting Load Kernel Module drm...
Jan 13 21:52:39 computer systemd[1]: Starting Load Kernel Module fuse...
Jan 13 21:52:39 computer systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
Jan 13 21:52:39 computer systemd[1]: Starting Journal Service...
Jan 13 21:52:39 computer systemd[1]: Starting Load Kernel Modules...
Jan 13 21:52:39 computer systemd[1]: Starting Remount Root and Kernel File Systems...
Jan 13 21:52:39 computer systemd[1]: Condition check resulted in Repartition Root Disk being skipped.
Jan 13 21:52:39 computer systemd[1]: Starting Coldplug All udev Devices...
Jan 13 21:52:39 computer systemd[1]: Mounted Huge Pages File System.
Jan 13 21:52:39 computer systemd[1]: Mounted POSIX Message Queue File System.
Jan 13 21:52:39 computer systemd[1]: Mounted Kernel Debug File System.
Jan 13 21:52:39 computer systemd[1]: Mounted Kernel Trace File System.
Jan 13 21:52:39 computer systemd[1]: Finished Create list of static device nodes for the current kernel.
Jan 13 21:52:39 computer systemd[1]: [email protected]: Succeeded.
Jan 13 21:52:39 computer kernel: Linux agpgart interface v0.103
Jan 13 21:52:39 computer systemd[1]: Finished Load Kernel Module configfs.
Jan 13 21:52:39 computer systemd[1]: Mounting Kernel Configuration File System...
Jan 13 21:52:39 computer systemd[1]: Finished Remount Root and Kernel File Systems.
Jan 13 21:52:39 computer systemd[1]: Condition check resulted in First Boot Wizard being skipped.
Jan 13 21:52:39 computer systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
Jan 13 21:52:39 computer systemd[1]: Starting Load/Save Random Seed...
Jan 13 21:52:39 computer systemd[1]: Condition check resulted in Create System Users being skipped.
Jan 13 21:52:39 computer systemd[1]: Starting Create Static Device Nodes in /dev...
Jan 13 21:52:39 computer systemd[1]: Finished Load/Save Random Seed.
Jan 13 21:52:39 computer systemd[1]: Finished Load Kernel Modules.
Jan 13 21:52:39 computer systemd[1]: Condition check resulted in First Boot Complete being skipped.
Jan 13 21:52:39 computer systemd[1]: Starting Apply Kernel Variables...
Jan 13 21:52:39 computer systemd[1]: Mounted Kernel Configuration File System.
Jan 13 21:52:39 computer kernel: fuse: init (API version 7.32)
Jan 13 21:52:39 computer systemd[1]: [email protected]: Succeeded.
Jan 13 21:52:39 computer systemd[1]: Finished Load Kernel Module fuse.
Jan 13 21:52:39 computer systemd[1]: Mounting FUSE Control File System...
Jan 13 21:52:39 computer systemd[1]: Finished Create Static Device Nodes in /dev.
Jan 13 21:52:39 computer kernel: audit: type=1130 audit(1610571159.071:2): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 13 21:52:39 computer systemd[1]: Finished Apply Kernel Variables.
Jan 13 21:52:39 computer kernel: audit: type=1130 audit(1610571159.071:3): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 13 21:52:39 computer systemd[1]: Mounted FUSE Control File System.
Jan 13 21:52:39 computer kernel: audit: type=1334 audit(1610571159.074:4): prog-id=5 op=LOAD
Jan 13 21:52:39 computer kernel: audit: type=1334 audit(1610571159.074:5): prog-id=6 op=LOAD
Jan 13 21:52:39 computer systemd[1]: Starting Rule-based Manager for Device Events and Files...
Jan 13 21:52:39 computer systemd[1]: Starting CLI Netfilter Manager...
Jan 13 21:52:39 computer systemd[1]: [email protected]: Succeeded.
Jan 13 21:52:39 computer systemd[1]: Finished Load Kernel Module drm.
Jan 13 21:52:39 computer kernel: audit: type=1130 audit(1610571159.094:6): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@drm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 13 21:52:39 computer kernel: audit: type=1131 audit(1610571159.094:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@drm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 13 21:52:39 computer systemd[1]: Finished CLI Netfilter Manager.
Jan 13 21:52:39 computer kernel: audit: type=1130 audit(1610571159.107:8): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=ufw comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 13 21:52:39 computer systemd-journald[711]: Journal started
Jan 13 21:52:39 computer systemd-journald[711]: Runtime Journal (/run/log/journal/1235c7c4d9fe412186bd3e0692c1c5a6) is 8.0M, max 794.1M, 786.1M free.
Jan 13 21:52:39 computer audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 13 21:52:39 computer audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 13 21:52:39 computer audit: BPF prog-id=5 op=LOAD
Jan 13 21:52:39 computer audit: BPF prog-id=6 op=LOAD
Jan 13 21:52:39 computer audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@drm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 13 21:52:39 computer audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@drm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 13 21:52:39 computer audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=ufw comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 13 21:52:39 computer audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 13 21:52:39 computer systemd-modules-load[712]: Inserted module 'crypto_user'
Jan 13 21:52:39 computer systemd-modules-load[712]: Module 'msr' is built in
Jan 13 21:52:39 computer systemd-sysctl[719]: Not setting net/ipv4/conf/all/rp_filter (explicit setting exists).
Jan 13 21:52:39 computer systemd-sysctl[719]: Not setting net/ipv4/conf/default/rp_filter (explicit setting exists).
Jan 13 21:52:39 computer systemd-sysctl[719]: Not setting net/ipv4/conf/all/accept_source_route (explicit setting exists).
Jan 13 21:52:39 computer systemd[1]: Started Journal Service.
Jan 13 21:52:39 computer kernel: audit: type=1130 audit(1610571159.124:9): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 13 21:52:39 computer systemd-sysctl[719]: Not setting net/ipv4/conf/default/accept_source_route (explicit setting exists).
Jan 13 21:52:39 computer systemd-sysctl[719]: Not setting net/ipv4/conf/all/promote_secondaries (explicit setting exists).
Jan 13 21:52:39 computer systemd-sysctl[719]: Not setting net/ipv4/conf/default/promote_secondaries (explicit setting exists).
Jan 13 21:52:39 computer systemd[1]: Starting Flush Journal to Persistent Storage...
Jan 13 21:52:39 computer ufw-init[728]: Skip starting firewall: ufw (not enabled)
Jan 13 21:52:39 computer systemd-journald[711]: Runtime Journal (/run/log/journal/1235c7c4d9fe412186bd3e0692c1c5a6) is 8.0M, max 794.1M, 786.1M free.
Jan 13 21:52:39 computer systemd[1]: Finished Flush Journal to Persistent Storage.
Jan 13 21:52:39 computer audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journal-flush comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 13 21:52:39 computer kernel: audit: type=1130 audit(1610571159.137:10): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journal-flush comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 13 21:52:39 computer audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udev-trigger comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 13 21:52:39 computer systemd[1]: Finished Coldplug All udev Devices.
Jan 13 21:52:39 computer systemd[1]: Starting Wait for udev To Complete Device Initialization...
Jan 13 21:52:39 computer kernel: audit: type=1130 audit(1610571159.151:11): 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'
Jan 13 21:52:39 computer systemd[1]: Started Rule-based Manager for Device Events and Files.
Jan 13 21:52:39 computer audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udevd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 13 21:52:39 computer audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lvm2-lvmetad comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 13 21:52:39 computer systemd[1]: Started LVM2 metadata daemon.
Jan 13 21:52:39 computer kernel: acpi PNP0C14:01: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
Jan 13 21:52:39 computer kernel: acpi PNP0C14:02: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
Jan 13 21:52:39 computer kernel: mei_me 0000:00:16.0: enabling device (0000 -> 0002)
Jan 13 21:52:39 computer systemd[1]: Found device Samsung_SSD_850_EVO_500GB EFI.
Jan 13 21:52:39 computer systemd[1]: Found device Samsung_SSD_850_EVO_500GB 4.
Jan 13 21:52:39 computer systemd[1]: Starting Cryptography Setup for swap...
Jan 13 21:52:39 computer kernel: mousedev: PS/2 mouse device common for all mice
Jan 13 21:52:39 computer kernel: thinkpad_acpi: ThinkPad ACPI Extras v0.26
Jan 13 21:52:39 computer kernel: thinkpad_acpi: http://ibm-acpi.sf.net/
Jan 13 21:52:39 computer kernel: thinkpad_acpi: ThinkPad BIOS R02ET74W (1.47 ), EC R02HT33W
Jan 13 21:52:39 computer kernel: thinkpad_acpi: Lenovo ThinkPad X260, model 20F5S1A600
Jan 13 21:52:39 computer kernel: e1000e: Intel(R) PRO/1000 Network Driver
Jan 13 21:52:39 computer kernel: e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
Jan 13 21:52:39 computer kernel: e1000e 0000:00:1f.6: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
Jan 13 21:52:39 computer kernel: input: PC Speaker as /devices/platform/pcspkr/input/input7
Jan 13 21:52:39 computer kernel: thinkpad_acpi: radio switch found; radios are enabled
Jan 13 21:52:39 computer kernel: thinkpad_acpi: This ThinkPad has standard ACPI backlight brightness control, supported by the ACPI video driver
Jan 13 21:52:39 computer kernel: thinkpad_acpi: Disabling thinkpad-acpi brightness events by default...
Jan 13 21:52:39 computer kernel: thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is unblocked
Jan 13 21:52:39 computer kernel: thinkpad_acpi: battery 2 registered (start 0, stop 100)
Jan 13 21:52:39 computer kernel: thinkpad_acpi: battery 1 registered (start 0, stop 100)
Jan 13 21:52:39 computer kernel: battery: new extension: ThinkPad Battery Extension
Jan 13 21:52:39 computer kernel: input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input8
Jan 13 21:52:39 computer kernel: i801_smbus 0000:00:1f.4: enabling device (0000 -> 0003)
Jan 13 21:52:39 computer kernel: i801_smbus 0000:00:1f.4: SPD Write Disable is set
Jan 13 21:52:39 computer kernel: i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
Jan 13 21:52:39 computer kernel: i2c i2c-0: 1/1 memory slots populated (from DMI)
Jan 13 21:52:39 computer kernel: i2c i2c-0: Successfully instantiated SPD at 0x50
Jan 13 21:52:39 computer kernel: device-mapper: uevent: version 1.0.3
Jan 13 21:52:39 computer systemd-cryptsetup[809]: Set cipher aes, mode cbc-essiv:sha256, key size 256 bits for device /dev/disk/by-id/ata-Samsung_SSD_850_EVO_500GB_S21JNXAGB17328F-part4.
Jan 13 21:52:39 computer kernel: device-mapper: ioctl: 4.43.0-ioctl (2020-10-01) initialised: [email protected]
Jan 13 21:52:39 computer kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
Jan 13 21:52:39 computer kernel: resource sanity check: requesting [mem 0xfed10000-0xfed15fff], which spans more than pnp 00:01 [mem 0xfed10000-0xfed13fff]
Jan 13 21:52:39 computer kernel: caller snb_uncore_imc_init_box+0x82/0xd0 [intel_uncore] mapping multiple BARs
Jan 13 21:52:39 computer kernel: Key type trusted registered
Jan 13 21:52:39 computer kernel: cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
Jan 13 21:52:39 computer kernel: RAPL PMU: API unit is 2^-32 Joules, 5 fixed counters, 655360 ms ovfl timer
Jan 13 21:52:39 computer kernel: RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
Jan 13 21:52:39 computer kernel: RAPL PMU: hw unit of domain package 2^-14 Joules
Jan 13 21:52:39 computer kernel: RAPL PMU: hw unit of domain dram 2^-14 Joules
Jan 13 21:52:39 computer kernel: RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
Jan 13 21:52:39 computer kernel: RAPL PMU: hw unit of domain psys 2^-14 Joules
Jan 13 21:52:39 computer kernel: cryptd: max_cpu_qlen set to 1000
Jan 13 21:52:39 computer kernel: Key type encrypted registered
Jan 13 21:52:39 computer systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
Jan 13 21:52:39 computer systemd[1]: Starting Load/Save RF Kill Switch Status...
Jan 13 21:52:39 computer systemd[839]: systemd-rfkill.service: Failed to set up special execution directory in /var/lib: Read-only file system
Jan 13 21:52:39 computer systemd[839]: systemd-rfkill.service: Failed at step STATE_DIRECTORY spawning /usr/lib/systemd/systemd-rfkill: Read-only file system
Jan 13 21:52:39 computer audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
Jan 13 21:52:39 computer systemd[1]: systemd-rfkill.service: Main process exited, code=exited, status=238/STATE_DIRECTORY
Jan 13 21:52:39 computer systemd[1]: systemd-rfkill.service: Failed with result 'exit-code'.
Jan 13 21:52:39 computer systemd[1]: Failed to start Load/Save RF Kill Switch Status.
Jan 13 21:52:39 computer systemd[1]: Starting Load/Save RF Kill Switch Status...
Jan 13 21:52:39 computer systemd[841]: systemd-rfkill.service: Failed to set up special execution directory in /var/lib: Read-only file system
Jan 13 21:52:39 computer systemd[841]: systemd-rfkill.service: Failed at step STATE_DIRECTORY spawning /usr/lib/systemd/systemd-rfkill: Read-only file system
Jan 13 21:52:39 computer systemd[1]: systemd-rfkill.service: Main process exited, code=exited, status=238/STATE_DIRECTORY
Jan 13 21:52:39 computer systemd[1]: systemd-rfkill.service: Failed with result 'exit-code'.
Jan 13 21:52:39 computer systemd[1]: Failed to start Load/Save RF Kill Switch Status.
Jan 13 21:52:39 computer audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
Jan 13 21:52:39 computer systemd[1]: Starting Load/Save RF Kill Switch Status...
Jan 13 21:52:39 computer systemd[842]: systemd-rfkill.service: Failed to set up special execution directory in /var/lib: Read-only file system
Jan 13 21:52:39 computer systemd[842]: systemd-rfkill.service: Failed at step STATE_DIRECTORY spawning /usr/lib/systemd/systemd-rfkill: Read-only file system
Jan 13 21:52:39 computer systemd[1]: systemd-rfkill.service: Main process exited, code=exited, status=238/STATE_DIRECTORY
Jan 13 21:52:39 computer systemd[1]: systemd-rfkill.service: Failed with result 'exit-code'.
Jan 13 21:52:39 computer systemd[1]: Failed to start Load/Save RF Kill Switch Status.
Jan 13 21:52:39 computer audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
Jan 13 21:52:39 computer systemd[1]: Starting Load/Save RF Kill Switch Status...
Jan 13 21:52:39 computer systemd[845]: systemd-rfkill.service: Failed to set up special execution directory in /var/lib: Read-only file system
Jan 13 21:52:39 computer systemd[845]: systemd-rfkill.service: Failed at step STATE_DIRECTORY spawning /usr/lib/systemd/systemd-rfkill: Read-only file system
Jan 13 21:52:39 computer kernel: AVX2 version of gcm_enc/dec engaged.
Jan 13 21:52:39 computer kernel: AES CTR mode by8 optimization enabled
Jan 13 21:52:39 computer systemd[1]: systemd-rfkill.service: Main process exited, code=exited, status=238/STATE_DIRECTORY
Jan 13 21:52:39 computer systemd[1]: systemd-rfkill.service: Failed with result 'exit-code'.
Jan 13 21:52:39 computer kernel: Intel(R) Wireless WiFi driver for Linux
Jan 13 21:52:39 computer kernel: iwlwifi 0000:04:00.0: enabling device (0000 -> 0002)
Jan 13 21:52:39 computer systemd[1]: Failed to start Load/Save RF Kill Switch Status.
Jan 13 21:52:39 computer audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
Jan 13 21:52:39 computer systemd[847]: systemd-rfkill.service: Failed to set up special execution directory in /var/lib: Read-only file system
Jan 13 21:52:39 computer systemd[847]: systemd-rfkill.service: Failed at step STATE_DIRECTORY spawning /usr/lib/systemd/systemd-rfkill: Read-only file system
Jan 13 21:52:39 computer systemd[1]: Starting Load/Save RF Kill Switch Status...
Jan 13 21:52:39 computer systemd[1]: systemd-rfkill.service: Main process exited, code=exited, status=238/STATE_DIRECTORY
Jan 13 21:52:39 computer systemd[1]: systemd-rfkill.service: Failed with result 'exit-code'.
Jan 13 21:52:39 computer systemd[1]: Failed to start Load/Save RF Kill Switch Status.
Jan 13 21:52:39 computer audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
Jan 13 21:52:39 computer systemd[1]: systemd-rfkill.service: Start request repeated too quickly.
Jan 13 21:52:39 computer systemd[1]: systemd-rfkill.service: Failed with result 'exit-code'.
Jan 13 21:52:39 computer systemd[1]: Failed to start Load/Save RF Kill Switch Status.
Jan 13 21:52:39 computer systemd[1]: systemd-rfkill.socket: Failed with result 'service-start-limit-hit'.
Jan 13 21:52:39 computer kernel: iwlwifi 0000:04:00.0: loaded firmware version 36.ad812ee0.0 8000C-36.ucode op_mode iwlmvm
Jan 13 21:52:39 computer systemd[1]: Created slice system-systemd\x2dbacklight.slice.
Jan 13 21:52:39 computer systemd[1]: Starting Load/Save Screen Backlight Brightness of leds:tpacpi::kbd_backlight...
Jan 13 21:52:39 computer systemd[867]: systemd-backlight@leds:tpacpi::kbd_backlight.service: Failed to set up special execution directory in /var/lib: Read-only file system
Jan 13 21:52:39 computer systemd[867]: systemd-backlight@leds:tpacpi::kbd_backlight.service: Failed at step STATE_DIRECTORY spawning /usr/lib/systemd/systemd-backlight: Read-only file system
Jan 13 21:52:39 computer systemd[1]: systemd-backlight@leds:tpacpi::kbd_backlight.service: Main process exited, code=exited, status=238/STATE_DIRECTORY
Jan 13 21:52:39 computer systemd[1]: systemd-backlight@leds:tpacpi::kbd_backlight.service: Failed with result 'exit-code'.
Jan 13 21:52:39 computer systemd[1]: Failed to start Load/Save Screen Backlight Brightness of leds:tpacpi::kbd_backlight.
Jan 13 21:52:39 computer audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-backlight@leds:tpacpi::kbd_backlight comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
Jan 13 21:52:39 computer kernel: ee1004 0-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
Jan 13 21:52:39 computer udevadm[730]: systemd-udev-settle.service is deprecated. Please fix zfs-import-cache.service not to pull it in.
Jan 13 21:52:39 computer kernel: iTCO_vendor_support: vendor-support=0
Jan 13 21:52:40 computer kernel: iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
Jan 13 21:52:40 computer kernel: iTCO_wdt: Found a Intel PCH TCO device (Version=4, TCOBASE=0x0400)
Jan 13 21:52:40 computer kernel: iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
Jan 13 21:52:40 computer systemd-makefs[896]: Setting up swapspace version 1, size = 8 GiB (8588886016 bytes)
Jan 13 21:52:40 computer systemd-makefs[896]: LABEL=swap, UUID=1448cb45-4220-497d-b281-4b39ede95f7b
Jan 13 21:52:40 computer audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-cryptsetup@swap comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 13 21:52:40 computer systemd[1]: Finished Cryptography Setup for swap.
Jan 13 21:52:40 computer systemd[1]: Reached target Block Device Preparation for /dev/mapper/swap.
Jan 13 21:52:40 computer systemd[1]: Reached target Local Encrypted Volumes.
Jan 13 21:52:40 computer kernel: iwlwifi 0000:04:00.0: Detected Intel(R) Dual Band Wireless AC 8260, REV=0x208
Jan 13 21:52:40 computer systemd[1]: Found device /dev/mapper/swap.
Jan 13 21:52:40 computer systemd[1]: Activating swap /dev/mapper/swap...
Jan 13 21:52:40 computer kernel: Adding 8387584k swap on /dev/mapper/swap.  Priority:-2 extents:1 across:8387584k SSFS
Jan 13 21:52:40 computer systemd[1]: Activated swap /dev/mapper/swap.
Jan 13 21:52:40 computer systemd[1]: Reached target Swap.
Jan 13 21:52:40 computer systemd[1]: Mounting Temporary Directory (/tmp)...
Jan 13 21:52:40 computer systemd[1]: Mounted Temporary Directory (/tmp).
Jan 13 21:52:40 computer kernel: iwlwifi 0000:04:00.0: base HW address: e4:a7:a0:87:ba:c2
Jan 13 21:52:40 computer mtp-probe[913]: checking bus 1, device 3: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-9"
Jan 13 21:52:40 computer mtp-probe[913]: bus: 1, device: 3 was not an MTP device
Jan 13 21:52:40 computer mtp-probe[919]: checking bus 2, device 2: "/sys/devices/pci0000:00/0000:00:14.0/usb2/2-1"
Jan 13 21:52:40 computer mtp-probe[919]: bus: 2, device: 2 was not an MTP device
Jan 13 21:52:40 computer kernel: ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
Jan 13 21:52:40 computer kernel: thermal thermal_zone2: failed to read out thermal zone (-61)
Jan 13 21:52:40 computer kernel: iwlwifi 0000:04:00.0 wlp4s0: renamed from wlan0
Jan 13 21:52:40 computer kernel: intel_rapl_common: Found RAPL domain package
Jan 13 21:52:40 computer kernel: intel_rapl_common: Found RAPL domain core
Jan 13 21:52:40 computer kernel: intel_rapl_common: Found RAPL domain uncore
Jan 13 21:52:40 computer kernel: intel_rapl_common: Found RAPL domain dram
Jan 13 21:52:40 computer kernel: intel_rapl_common: Found RAPL domain psys
Jan 13 21:52:40 computer kernel: e1000e 0000:00:1f.6 0000:00:1f.6 (uninitialized): registered PHC clock
Jan 13 21:52:40 computer kernel: i915 0000:00:02.0: enabling device (0006 -> 0007)
Jan 13 21:52:40 computer kernel: checking generic (e0000000 7f0000) vs hw (f0000000 1000000)
Jan 13 21:52:40 computer kernel: checking generic (e0000000 7f0000) vs hw (e0000000 10000000)
Jan 13 21:52:40 computer kernel: fb0: switching to inteldrmfb from EFI VGA
Jan 13 21:52:40 computer kernel: Console: switching to colour dummy device 80x25
Jan 13 21:52:40 computer kernel: i915 0000:00:02.0: vgaarb: deactivate vga console
Jan 13 21:52:40 computer kernel: i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=mem
Jan 13 21:52:40 computer kernel: i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/skl_dmc_ver1_27.bin (v1.27)
Jan 13 21:52:40 computer kernel: [drm] Initialized i915 1.6.0 20200917 for 0000:00:02.0 on minor 0
Jan 13 21:52:40 computer kernel: ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
Jan 13 21:52:40 computer kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input9
Jan 13 21:52:40 computer kernel: snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
Jan 13 21:52:40 computer kernel: e1000e 0000:00:1f.6 eth0: (PCI Express:2.5GT/s:Width x1) c8:5b:76:6b:ca:fc
Jan 13 21:52:40 computer kernel: e1000e 0000:00:1f.6 eth0: Intel(R) PRO/1000 Network Connection
Jan 13 21:52:40 computer kernel: e1000e 0000:00:1f.6 eth0: MAC: 12, PHY: 12, PBA No: 1000FF-0FF
Jan 13 21:52:40 computer kernel: e1000e 0000:00:1f.6 enp0s31f6: renamed from eth0
Jan 13 21:52:40 computer systemd[1]: Starting Load/Save Screen Backlight Brightness of backlight:intel_backlight...
Jan 13 21:52:40 computer systemd[966]: systemd-backlight@backlight:intel_backlight.service: Failed to set up special execution directory in /var/lib: Read-only file system
Jan 13 21:52:40 computer systemd[966]: systemd-backlight@backlight:intel_backlight.service: Failed at step STATE_DIRECTORY spawning /usr/lib/systemd/systemd-backlight: Read-only file system
Jan 13 21:52:40 computer systemd[1]: systemd-backlight@backlight:intel_backlight.service: Main process exited, code=exited, status=238/STATE_DIRECTORY
Jan 13 21:52:40 computer systemd[1]: systemd-backlight@backlight:intel_backlight.service: Failed with result 'exit-code'.
Jan 13 21:52:40 computer systemd[1]: Failed to start Load/Save Screen Backlight Brightness of backlight:intel_backlight.
Jan 13 21:52:40 computer audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-backlight@backlight:intel_backlight comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
Jan 13 21:52:40 computer kernel: fbcon: i915drmfb (fb0) is primary device
Jan 13 21:52:40 computer kernel: Bluetooth: Core ver 2.22
Jan 13 21:52:40 computer kernel: NET: Registered protocol family 31
Jan 13 21:52:40 computer kernel: Bluetooth: HCI device and connection manager initialized
Jan 13 21:52:40 computer kernel: Bluetooth: HCI socket layer initialized
Jan 13 21:52:40 computer kernel: Bluetooth: L2CAP socket layer initialized
Jan 13 21:52:40 computer kernel: Bluetooth: SCO socket layer initialized
Jan 13 21:52:41 computer kernel: usbcore: registered new interface driver btusb
Jan 13 21:52:41 computer kernel: Bluetooth: hci0: Firmware revision 0.0 build 10 week 41 2018
Jan 13 21:52:41 computer systemd[1]: Finished Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
Jan 13 21:52:41 computer audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lvm2-monitor comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 13 21:52:41 computer systemd[1]: Reached target Local File Systems (Pre).
Jan 13 21:52:41 computer systemd[1]: boot-efi.mount: Failed to check directory /boot/efi: No such file or directory
Jan 13 21:52:41 computer systemd[1]: Mounting /boot/efi...
Jan 13 21:52:41 computer systemd[1]: Condition check resulted in Virtual Machine and Container Storage (Compatibility) being skipped.
Jan 13 21:52:41 computer systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
Jan 13 21:52:41 computer systemd[1]: Condition check resulted in First Boot Wizard being skipped.
Jan 13 21:52:41 computer systemd[1]: Condition check resulted in First Boot Complete being skipped.
Jan 13 21:52:41 computer systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
Jan 13 21:52:41 computer systemd[1]: Condition check resulted in Repartition Root Disk being skipped.
Jan 13 21:52:41 computer systemd[1]: Condition check resulted in Create System Users being skipped.
Jan 13 21:52:41 computer mount[994]: mount: /boot/efi: mount point does not exist.
Jan 13 21:52:41 computer systemd[1]: boot-efi.mount: Mount process exited, code=exited, status=32/n/a
Jan 13 21:52:41 computer systemd[1]: boot-efi.mount: Failed with result 'exit-code'.
Jan 13 21:52:41 computer systemd[1]: Failed to mount /boot/efi.
Jan 13 21:52:41 computer kernel: Console: switching to colour frame buffer device 240x67
Jan 13 21:52:41 computer systemd[1]: Dependency failed for Local File Systems.
Jan 13 21:52:41 computer kernel: i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
Jan 13 21:52:41 computer systemd[1]: local-fs.target: Job local-fs.target/start failed with result 'dependency'.
Jan 13 21:52:41 computer systemd[1]: local-fs.target: Triggering OnFailure= dependencies.
Jan 13 21:52:41 computer systemd[1]: systemd-ask-password-console.path: Succeeded.
Jan 13 21:52:41 computer systemd[1]: Stopped Dispatch Password Requests to Console Directory Watch.
Jan 13 21:52:41 computer systemd[1]: systemd-ask-password-wall.path: Succeeded.
Jan 13 21:52:41 computer systemd[1]: Stopped Forward Password Requests to Wall Directory Watch.
Jan 13 21:52:41 computer systemd[1]: Reached target Bluetooth.
Jan 13 21:52:41 computer systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped.
Jan 13 21:52:41 computer systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped.

I made some further progress. I chrooted into the installation and redid the setup for the cachefile and regenerated the initramfs and reinstalled grub. I also set canmount for the bpool_$poolUUID/BOOT/default from noauto to on. When I land in the emergency shell now bpool is already imported and bpool_$poolUUID/BOOT/default is also mounted.
I can also run mount /dev/sda1 /boot/efi immediatly after logging into the emergency shell without issues, however I still get thrown to the emergency shell since /boot/efi can’t be mounted by the system on boot itself. I wonder why, since in the initramfs zfs is listed prior to filesystem so I though the things in the fstab get mounted after everything ZFS related is done?

I still can not boot but I solves the mounting issue by making bpool_$poolUUID/BOOT/default a legacy mountpoint and mounting it via fstab.