Mailing List Archive

Boot into Xen on debian11
> Hello.
>
> Is there a way to boot into Xen on debian11 installing Xen the way documented, please?
>
> Multiboot2 is not doing the trick with initrd. Is there a workaround or a way to?
>
> Do we need a patch to grub to make Xen usable on this scenario? Does anyone boot into Xen? On debian? Debian11, please?
>
> I have posted it on stackexchange:
>
> https://unix.stackexchange.com/q/710400/375983
>
> Linux xd 5.10.0-16-amd64 #1 SMP Debian 5.10.127-1 (2022-06-30) x86_64 GNU/Linux
>
> On my debian11, I have installed xen-hypervisor-4.14-amd64, xen-hypervisor-common, xen-system-amd64, and xen-utils-4.14
>
> But I cannot boot into Xen, please help.
>
> Theoretically, after installing Xen, according to https://wiki.debian.org/Xen , I should only run:
>
> dpkg-divert --divert /etc/grub.d/08_linux_xen --rename /etc/grub.d/20_linux_xen
>
> update-grub
> Unfortunately, boot breaks and grub mailing list had a very deep debate on it last March-April - apparently multiboot2 will NOT do the trick:
>
> https://www.mail-archive.com/grub-devel@gnu.org/msg32020.html
>
> I need some help, please. Is this inconclusive? Is there a work-around I could use (some partial boot on Xen and manually loading on the prompt the rest of what is needed for Xen to work)? How should I proceed? I will try to register this on grub, debian xen packages and Xen as requests/bugs - any further ideas on actions, please?
>
> The discussion on grub mailing list points to this:
>
> https://wiki.debian.org/DebianInstaller/NetbootFirmware#The_Solution:_Add_Firmware_to_Initramfs
>
> This seems very complicated and risky… is this the way forward?
>
> Did anyone patch grub2 to be able to support what’s needed for Xen, please?
>
> Note: I’m using pure Xen, NOT Eve.
>
> /etc/default/grub file contents:
>
> # If you change this file, run 'update-grub' afterwards to update
> # /boot/grub/grub.cfg.
> # For full documentation of the options in this file, see:
> # info -f grub -n 'Simple configuration'
>
> GRUB_DEFAULT=0
> GRUB_TIMEOUT=5
> GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
> GRUB_CMDLINE_LINUX_DEFAULT="quiet"
> GRUB_CMDLINE_LINUX=""
>
> # Uncomment to enable BadRAM filtering, modify to suit your needs
> # This works with Linux (no patch required) and with any kernel that obtains
> # the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
> #GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
>
> # Uncomment to disable graphical terminal (grub-pc only)
> #GRUB_TERMINAL=console
>
> # The resolution used on graphical terminal
> # note that you can use only modes which your graphic card supports via VBE
> # you can see them in real GRUB with the command `vbeinfo'
> #GRUB_GFXMODE=640x480
>
> # Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
> #GRUB_DISABLE_LINUX_UUID=true
>
> # Uncomment to disable generation of recovery mode menu entries
> #GRUB_DISABLE_RECOVERY="true"
>
> # Uncomment to get a beep at grub start
> #GRUB_INIT_TUNE="480 440 1"
> /boot/grub/grub.cfg file contents:
>
> #
> # DO NOT EDIT THIS FILE
> #
> # It is automatically generated by grub-mkconfig using templates
> # from /etc/grub.d and settings from /etc/default/grub
> #
>
> ### BEGIN /etc/grub.d/00_header ###
> if [ -s $prefix/grubenv ]; then
> set have_grubenv=true
> load_env
> fi
> if [ "${next_entry}" ] ; then
> set default="${next_entry}"
> set next_entry=
> save_env next_entry
> set boot_once=true
> else
> set default="Debian GNU/Linux, with Xen hypervisor"
> fi
>
> if [ x"${feature_menuentry_id}" = xy ]; then
> menuentry_id_option="--id"
> else
> menuentry_id_option=""
> fi
>
> export menuentry_id_option
>
> if [ "${prev_saved_entry}" ]; then
> set saved_entry="${prev_saved_entry}"
> save_env saved_entry
> set prev_saved_entry=
> save_env prev_saved_entry
> set boot_once=true
> fi
>
> function savedefault {
> if [ -z "${boot_once}" ]; then
> saved_entry="${chosen}"
> save_env saved_entry
> fi
> }
> function load_video {
> if [ x$feature_all_video_module = xy ]; then
> insmod all_video
> else
> insmod efi_gop
> insmod efi_uga
> insmod ieee1275_fb
> insmod vbe
> insmod vga
> insmod video_bochs
> insmod video_cirrus
> fi
> }
>
> if [ x$feature_default_font_path = xy ] ; then
> font=unicode
> else
> insmod part_gpt
> insmod ext2
> if [ x$feature_platform_search_hint = xy ]; then
> search --no-floppy --fs-uuid --set=root 0123abcd
> else
> search --no-floppy --fs-uuid --set=root 0123abcd
> fi
> font="/usr/share/grub/unicode.pf2"
> fi
>
> if loadfont $font ; then
> set gfxmode=auto
> load_video
> insmod gfxterm
> set locale_dir=$prefix/locale
> set lang=en_GB
> insmod gettext
> fi
> terminal_output gfxterm
> if [ "${recordfail}" = 1 ] ; then
> set timeout=30
> else
> if [ x$feature_timeout_style = xy ] ; then
> set timeout_style=menu
> set timeout=5
> # Fallback normal timeout code in case the timeout_style feature is
> # unavailable.
> else
> set timeout=5
> fi
> fi
> ### END /etc/grub.d/00_header ###
> ### BEGIN /etc/grub.d/05_debian_theme ###
> insmod part_gpt
> insmod ext2
> if [ x$feature_platform_search_hint = xy ]; then
> search --no-floppy --fs-uuid --set=root 0123abcd
> else
> search --no-floppy --fs-uuid --set=root 0123abcd
> fi
> insmod png
> if background_image /usr/share/desktop-base/homeworld-theme/grub/grub-4x3.png; then
> set color_normal=white/black
> set color_highlight=black/white
> else
> set menu_color_normal=cyan/blue
> set menu_color_highlight=white/blue
> fi
> ### END /etc/grub.d/05_debian_theme ###
>
> ### BEGIN /etc/grub.d/08_linux_xen ###
> menuentry 'Debian GNU/Linux, with Xen hypervisor' --class debian --class gnu-linux --class gnu --class os --class xen $menuentry_id_option 'xen-gnulinux-simple-0123abcd' {
> insmod part_gpt
> insmod ext2
> if [ x$feature_platform_search_hint = xy ]; then
> search --no-floppy --fs-uuid --set=root 0123abcd
> else
> search --no-floppy --fs-uuid --set=root 0123abcd
> fi
> echo 'Loading Xen 4.14-amd64 ...'
> if [ "$grub_platform" = "pc" -o "$grub_platform" = "" ]; then
> xen_rm_opts=
> else
> xen_rm_opts="no-real-mode edd=off"
> fi
> multiboot2 /xen-4.14-amd64.gz placeholder ${xen_rm_opts}
> echo 'Loading Linux 5.10.0-16-amd64 ...'
> module2 /vmlinuz-5.10.0-16-amd64 placeholder root=UUID=0123abcd ro quiet
> echo 'Loading initial ramdisk ...'
> module2 --nounzip /initrd.img-5.10.0-16-amd64
> }
> submenu 'Advanced options for Debian GNU/Linux (with Xen hypervisor)' $menuentry_id_option 'gnulinux-advanced-0123abcd' {
> submenu 'Xen hypervisor, version 4.14-amd64' $menuentry_id_option 'xen-hypervisor-4.14-amd64-0123abcd' {
> menuentry 'Debian GNU/Linux, with Xen 4.14-amd64 and Linux 5.10.0-16-amd64' --class debian --class gnu-linux --class gnu --class os --class xen $menuentry_id_option 'xen-gnulinux-5.10.0-16-amd64-advanced-0123abcd' {
> insmod part_gpt
> insmod ext2
> if [ x$feature_platform_search_hint = xy ]; then
> search --no-floppy --fs-uuid --set=root 0123abcd
> else
> search --no-floppy --fs-uuid --set=root 0123abcd
> fi
> echo 'Loading Xen 4.14-amd64 ...'
> if [ "$grub_platform" = "pc" -o "$grub_platform" = "" ]; then
> xen_rm_opts=
> else
> xen_rm_opts="no-real-mode edd=off"
> fi
> multiboot2 /xen-4.14-amd64.gz placeholder ${xen_rm_opts}
> echo 'Loading Linux 5.10.0-16-amd64 ...'
> module2 /vmlinuz-5.10.0-16-amd64 placeholder root=UUID=0123abcd ro quiet
> echo 'Loading initial ramdisk ...'
> module2 --nounzip /initrd.img-5.10.0-16-amd64
> }
> menuentry 'Debian GNU/Linux, with Xen 4.14-amd64 and Linux 5.10.0-16-amd64 (recovery mode)' --class debian --class gnu-linux --class gnu --class os --class xen $menuentry_id_option 'xen-gnulinux-5.10.0-16-amd64-recovery-0123abcd' {
> insmod part_gpt
> insmod ext2
> if [ x$feature_platform_search_hint = xy ]; then
> search --no-floppy --fs-uuid --set=root 0123abcd
> else
> search --no-floppy --fs-uuid --set=root 0123abcd
> fi
> echo 'Loading Xen 4.14-amd64 ...'
> if [ "$grub_platform" = "pc" -o "$grub_platform" = "" ]; then
> xen_rm_opts=
> else
> xen_rm_opts="no-real-mode edd=off"
> fi
> multiboot2 /xen-4.14-amd64.gz placeholder ${xen_rm_opts}
> echo 'Loading Linux 5.10.0-16-amd64 ...'
> module2 /vmlinuz-5.10.0-16-amd64 placeholder root=UUID=0123abcd ro single
> echo 'Loading initial ramdisk ...'
> module2 --nounzip /initrd.img-5.10.0-16-amd64
> }
> }
> submenu 'Xen hypervisor, version 4.14-amd64.efi' $menuentry_id_option 'xen-hypervisor-4.14-amd64.efi-0123abcd' {
> menuentry 'Debian GNU/Linux, with Xen 4.14-amd64.efi and Linux 5.10.0-16-amd64' --class debian --class gnu-linux --class gnu --class os --class xen $menuentry_id_option 'xen-gnulinux-5.10.0-16-amd64-advanced-0123abcd' {
> insmod part_gpt
> insmod ext2
> if [ x$feature_platform_search_hint = xy ]; then
> search --no-floppy --fs-uuid --set=root 0123abcd
> else
> search --no-floppy --fs-uuid --set=root 0123abcd
> fi
> echo 'Loading Xen 4.14-amd64.efi ...'
> if [ "$grub_platform" = "pc" -o "$grub_platform" = "" ]; then
> xen_rm_opts=
> else
> xen_rm_opts="no-real-mode edd=off"
> fi
> multiboot2 /xen-4.14-amd64.efi placeholder ${xen_rm_opts}
> echo 'Loading Linux 5.10.0-16-amd64 ...'
> module2 /vmlinuz-5.10.0-16-amd64 placeholder root=UUID=0123abcd ro quiet
> echo 'Loading initial ramdisk ...'
> module2 --nounzip /initrd.img-5.10.0-16-amd64
> }
> menuentry 'Debian GNU/Linux, with Xen 4.14-amd64.efi and Linux 5.10.0-16-amd64 (recovery mode)' --class debian --class gnu-linux --class gnu --class os --class xen $menuentry_id_option 'xen-gnulinux-5.10.0-16-amd64-recovery-0123abcd' {
> insmod part_gpt
> insmod ext2
> if [ x$feature_platform_search_hint = xy ]; then
> search --no-floppy --fs-uuid --set=root 0123abcd
> else
> search --no-floppy --fs-uuid --set=root 0123abcd
> fi
> echo 'Loading Xen 4.14-amd64.efi ...'
> if [ "$grub_platform" = "pc" -o "$grub_platform" = "" ]; then
> xen_rm_opts=
> else
> xen_rm_opts="no-real-mode edd=off"
> fi
> multiboot2 /xen-4.14-amd64.efi placeholder ${xen_rm_opts}
> echo 'Loading Linux 5.10.0-16-amd64 ...'
> module2 /vmlinuz-5.10.0-16-amd64 placeholder root=UUID=0123abcd ro single
> echo 'Loading initial ramdisk ...'
> module2 --nounzip /initrd.img-5.10.0-16-amd64
> }
> }
> }
>
> ### END /etc/grub.d/08_linux_xen ###
>
> ### BEGIN /etc/grub.d/10_linux ###
> function gfxmode {
> set gfxpayload="${1}"
> }
> set linux_gfx_mode=
> export linux_gfx_mode
> menuentry 'Debian GNU/Linux' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-0123abcd' {
> load_video
> insmod gzio
> if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
> insmod part_gpt
> insmod ext2
> if [ x$feature_platform_search_hint = xy ]; then
> search --no-floppy --fs-uuid --set=root 0123abcd
> else
> search --no-floppy --fs-uuid --set=root 0123abcd
> fi
> echo 'Loading Linux 5.10.0-16-amd64 ...'
> linux /vmlinuz-5.10.0-16-amd64 root=UUID=0123abcd ro quiet
> echo 'Loading initial ramdisk ...'
> initrd /initrd.img-5.10.0-16-amd64
> }
> submenu 'Advanced options for Debian GNU/Linux' $menuentry_id_option 'gnulinux-advanced-0123abcd' {
> menuentry 'Debian GNU/Linux, with Linux 5.10.0-16-amd64' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-5.10.0-16-amd64-advanced-0123abcd' {
> load_video
> insmod gzio
> if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
> insmod part_gpt
> insmod ext2
> if [ x$feature_platform_search_hint = xy ]; then
> search --no-floppy --fs-uuid --set=root 0123abcd
> else
> search --no-floppy --fs-uuid --set=root 0123abcd
> fi
> echo 'Loading Linux 5.10.0-16-amd64 ...'
> linux /vmlinuz-5.10.0-16-amd64 root=UUID=0123abcd ro quiet
> echo 'Loading initial ramdisk ...'
> initrd /initrd.img-5.10.0-16-amd64
> }
> menuentry 'Debian GNU/Linux, with Linux 5.10.0-16-amd64 (recovery mode)' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-5.10.0-16-amd64-recovery-0123abcd' {
> load_video
> insmod gzio
> if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
> insmod part_gpt
> insmod ext2
> if [ x$feature_platform_search_hint = xy ]; then
> search --no-floppy --fs-uuid --set=root 0123abcd
> else
> search --no-floppy --fs-uuid --set=root 0123abcd
> fi
> echo 'Loading Linux 5.10.0-16-amd64 ...'
> linux /vmlinuz-5.10.0-16-amd64 root=UUID=0123abcd ro single
> echo 'Loading initial ramdisk ...'
> initrd /initrd.img-5.10.0-16-amd64
> }
> }
> ### END /etc/grub.d/10_linux ###
>
> ### BEGIN /etc/grub.d/30_os-prober ###
> ### END /etc/grub.d/30_os-prober ###
>
> ### BEGIN /etc/grub.d/30_uefi-firmware ###
> menuentry 'System setup' $menuentry_id_option 'uefi-firmware' {
> fwsetup
> }
> ### END /etc/grub.d/30_uefi-firmware ###
>
> ### BEGIN /etc/grub.d/40_custom ###
> # This file provides an easy way to add custom menu entries. Simply type the
> # menu entries you want to add after this comment. Be careful not to change
> # the 'exec tail' line above.
> ### END /etc/grub.d/40_custom ###
>
> ### BEGIN /etc/grub.d/41_custom ###
> if [ -f ${config_directory}/custom.cfg ]; then
> source ${config_directory}/custom.cfg
> elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then
> source $prefix/custom.cfg;
> fi
> ### END /etc/grub.d/41_custom ###
Re: Boot into Xen on debian11 [ In reply to ]
Hi Bruno,

On 2022-07-19 15:42, Bruno wrote:
>> Hello.
>>
>> Is there a way to boot into Xen on debian11 installing Xen the way
>> documented, please?
>>
>> Multiboot2 is not doing the trick with initrd. Is there a workaround
>> or a way to?
>>
>> Do we need a patch to grub to make Xen usable on this scenario? Does
>> anyone boot into Xen? On debian? Debian11, please?

Debian 11 should work out of the box.

>> I have posted it on stackexchange:
>>
>> https://unix.stackexchange.com/q/710400/375983
>>
>> Linux xd 5.10.0-16-amd64 #1 SMP Debian 5.10.127-1 (2022-06-30) x86_64
>> GNU/Linux
>>
>> On my debian11, I have installed xen-hypervisor-4.14-amd64,
>> xen-hypervisor-common, xen-system-amd64, and xen-utils-4.14

Is xen-utils-common installed? I would expect it to be, but worth
checking.

>> But I cannot boot into Xen, please help.

What do you mean by that? Does it crash, reboot, blank screen, something
else?

>> Theoretically, after installing Xen, according to
>> https://wiki.debian.org/Xen , I should only run:
>>
>> dpkg-divert --divert /etc/grub.d/08_linux_xen --rename
>> /etc/grub.d/20_linux_xen
>>
>> update-grub

According to the Wiki, that step is only for Wheezy / Squeeze and is not
required for Debian 11. I'd undo that, and re-run update-grub.

>> Unfortunately, boot breaks and grub mailing list had a very deep
>> debate on it last March-April - apparently multiboot2 will NOT do the
>> trick:
>>
>> https://www.mail-archive.com/grub-devel@gnu.org/msg32020.html
>>
>> I need some help, please. Is this inconclusive? Is there a work-around
>> I could use (some partial boot on Xen and manually loading on the
>> prompt the rest of what is needed for Xen to work)? How should I
>> proceed? I will try to register this on grub, debian xen packages and
>> Xen as requests/bugs - any further ideas on actions, please?

It should just work, if you provide more information on what you are
seeing, it should be possible to resolve.

>> The discussion on grub mailing list points to this:
>>
>> https://wiki.debian.org/DebianInstaller/NetbootFirmware#The_Solution:_Add_Firmware_to_Initramfs
>>
>> This seems very complicated and risky... is this the way forward?
>>
>> Did anyone patch grub2 to be able to support what's needed for Xen,
>> please?

There's no need.

>> Note: I'm using pure Xen, NOT Eve.
>>
>> /etc/default/grub file contents:
>>
>> # If you change this file, run 'update-grub' afterwards to update
>> # /boot/grub/grub.cfg.
>> # For full documentation of the options in this file, see:
>> # info -f grub -n 'Simple configuration'
>>
>> GRUB_DEFAULT=0
>> GRUB_TIMEOUT=5
>> GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
>> GRUB_CMDLINE_LINUX_DEFAULT="quiet"
>> GRUB_CMDLINE_LINUX=""
>>
>> # Uncomment to enable BadRAM filtering, modify to suit your needs
>> # This works with Linux (no patch required) and with any kernel that
>> obtains
>> # the memory map information from GRUB (GNU Mach, kernel of FreeBSD
>> ...)
>> #GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
>>
>> # Uncomment to disable graphical terminal (grub-pc only)
>> #GRUB_TERMINAL=console
>>
>> # The resolution used on graphical terminal
>> # note that you can use only modes which your graphic card supports
>> via VBE
>> # you can see them in real GRUB with the command `vbeinfo'
>> #GRUB_GFXMODE=640x480
>>
>> # Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter
>> to Linux
>> #GRUB_DISABLE_LINUX_UUID=true
>>
>> # Uncomment to disable generation of recovery mode menu entries
>> #GRUB_DISABLE_RECOVERY="true"
>>
>> # Uncomment to get a beep at grub start
>> #GRUB_INIT_TUNE="480 440 1"
>>
>> /boot/grub/grub.cfg file contents:
>>
>> #
>> # DO NOT EDIT THIS FILE
>> #
>> # It is automatically generated by grub-mkconfig using templates
>> # from /etc/grub.d and settings from /etc/default/grub
>> #
>>
>> ### BEGIN /etc/grub.d/00_header ###
>> if [ -s $prefix/grubenv ]; then
>> set have_grubenv=true
>> load_env
>> fi
>> if [ "${next_entry}" ] ; then
>> set default="${next_entry}"
>> set next_entry=
>> save_env next_entry
>> set boot_once=true
>> else
>> set default="Debian GNU/Linux, with Xen hypervisor"
>> fi
>>
>> if [ x"${feature_menuentry_id}" = xy ]; then
>> menuentry_id_option="--id"
>> else
>> menuentry_id_option=""
>> fi
>>
>> export menuentry_id_option
>>
>> if [ "${prev_saved_entry}" ]; then
>> set saved_entry="${prev_saved_entry}"
>> save_env saved_entry
>> set prev_saved_entry=
>> save_env prev_saved_entry
>> set boot_once=true
>> fi
>>
>> function savedefault {
>> if [ -z "${boot_once}" ]; then
>> saved_entry="${chosen}"
>> save_env saved_entry
>> fi
>> }
>> function load_video {
>> if [ x$feature_all_video_module = xy ]; then
>> insmod all_video
>> else
>> insmod efi_gop
>> insmod efi_uga
>> insmod ieee1275_fb
>> insmod vbe
>> insmod vga
>> insmod video_bochs
>> insmod video_cirrus
>> fi
>> }
>>
>> if [ x$feature_default_font_path = xy ] ; then
>> font=unicode
>> else
>> insmod part_gpt
>> insmod ext2
>> if [ x$feature_platform_search_hint = xy ]; then
>> search --no-floppy --fs-uuid --set=root 0123abcd
>> else
>> search --no-floppy --fs-uuid --set=root 0123abcd
>> fi
>> font="/usr/share/grub/unicode.pf2"
>> fi
>>
>> if loadfont $font ; then
>> set gfxmode=auto
>> load_video
>> insmod gfxterm
>> set locale_dir=$prefix/locale
>> set lang=en_GB
>> insmod gettext
>> fi
>> terminal_output gfxterm
>> if [ "${recordfail}" = 1 ] ; then
>> set timeout=30
>> else
>> if [ x$feature_timeout_style = xy ] ; then
>> set timeout_style=menu
>> set timeout=5
>> # Fallback normal timeout code in case the timeout_style feature is
>> # unavailable.
>> else
>> set timeout=5
>> fi
>> fi
>> ### END /etc/grub.d/00_header ###
>>
>> ### BEGIN /etc/grub.d/05_debian_theme ###
>> insmod part_gpt
>> insmod ext2
>> if [ x$feature_platform_search_hint = xy ]; then
>> search --no-floppy --fs-uuid --set=root 0123abcd
>> else
>> search --no-floppy --fs-uuid --set=root 0123abcd
>> fi
>> insmod png
>> if background_image
>> /usr/share/desktop-base/homeworld-theme/grub/grub-4x3.png; then
>> set color_normal=white/black
>> set color_highlight=black/white
>> else
>> set menu_color_normal=cyan/blue
>> set menu_color_highlight=white/blue
>> fi
>> ### END /etc/grub.d/05_debian_theme ###
>>
>> ### BEGIN /etc/grub.d/08_linux_xen ###
>> menuentry 'Debian GNU/Linux, with Xen hypervisor' --class debian
>> --class gnu-linux --class gnu --class os --class xen
>> $menuentry_id_option 'xen-gnulinux-simple-0123abcd' {

So the menu entry is created - can you see it in the grub menu?

>> insmod part_gpt
>> insmod ext2
>> if [ x$feature_platform_search_hint = xy ]; then
>> search --no-floppy --fs-uuid --set=root 0123abcd
>> else
>> search --no-floppy --fs-uuid --set=root 0123abcd
>> fi
>> echo 'Loading Xen 4.14-amd64 ...'
>> if [ "$grub_platform" = "pc" -o "$grub_platform" = "" ]; then
>> xen_rm_opts=
>> else
>> xen_rm_opts="no-real-mode edd=off"
>> fi
>> multiboot2 /xen-4.14-amd64.gz placeholder ${xen_rm_opts}
>> echo 'Loading Linux 5.10.0-16-amd64 ...'
>> module2 /vmlinuz-5.10.0-16-amd64 placeholder root=UUID=0123abcd ro
>> quiet
>> echo 'Loading initial ramdisk ...'
>> module2 --nounzip /initrd.img-5.10.0-16-amd64
>> }
>> submenu 'Advanced options for Debian GNU/Linux (with Xen hypervisor)'
>> $menuentry_id_option 'gnulinux-advanced-0123abcd' {
>> submenu 'Xen hypervisor, version 4.14-amd64' $menuentry_id_option
>> 'xen-hypervisor-4.14-amd64-0123abcd' {
>> menuentry 'Debian GNU/Linux, with Xen 4.14-amd64 and Linux
>> 5.10.0-16-amd64' --class debian --class gnu-linux --class gnu --class
>> os --class xen $menuentry_id_option
>> 'xen-gnulinux-5.10.0-16-amd64-advanced-0123abcd' {
>> insmod part_gpt
>> insmod ext2
>> if [ x$feature_platform_search_hint = xy ]; then
>> search --no-floppy --fs-uuid --set=root 0123abcd
>> else
>> search --no-floppy --fs-uuid --set=root 0123abcd
>> fi
>> echo 'Loading Xen 4.14-amd64 ...'
>> if [ "$grub_platform" = "pc" -o "$grub_platform" = "" ]; then
>> xen_rm_opts=
>> else
>> xen_rm_opts="no-real-mode edd=off"
>> fi
>> multiboot2 /xen-4.14-amd64.gz placeholder ${xen_rm_opts}
>> echo 'Loading Linux 5.10.0-16-amd64 ...'
>> module2 /vmlinuz-5.10.0-16-amd64 placeholder root=UUID=0123abcd ro
>> quiet
>> echo 'Loading initial ramdisk ...'
>> module2 --nounzip /initrd.img-5.10.0-16-amd64
>> }
>> menuentry 'Debian GNU/Linux, with Xen 4.14-amd64 and Linux
>> 5.10.0-16-amd64 (recovery mode)' --class debian --class gnu-linux
>> --class gnu --class os --class xen $menuentry_id_option
>> 'xen-gnulinux-5.10.0-16-amd64-recovery-0123abcd' {
>> insmod part_gpt
>> insmod ext2
>> if [ x$feature_platform_search_hint = xy ]; then
>> search --no-floppy --fs-uuid --set=root 0123abcd
>> else
>> search --no-floppy --fs-uuid --set=root 0123abcd
>> fi
>> echo 'Loading Xen 4.14-amd64 ...'
>> if [ "$grub_platform" = "pc" -o "$grub_platform" = "" ]; then
>> xen_rm_opts=
>> else
>> xen_rm_opts="no-real-mode edd=off"
>> fi
>> multiboot2 /xen-4.14-amd64.gz placeholder ${xen_rm_opts}
>> echo 'Loading Linux 5.10.0-16-amd64 ...'
>> module2 /vmlinuz-5.10.0-16-amd64 placeholder root=UUID=0123abcd ro
>> single
>> echo 'Loading initial ramdisk ...'
>> module2 --nounzip /initrd.img-5.10.0-16-amd64
>> }
>> }
>> submenu 'Xen hypervisor, version 4.14-amd64.efi' $menuentry_id_option
>> 'xen-hypervisor-4.14-amd64.efi-0123abcd' {
>> menuentry 'Debian GNU/Linux, with Xen 4.14-amd64.efi and Linux
>> 5.10.0-16-amd64' --class debian --class gnu-linux --class gnu --class
>> os --class xen $menuentry_id_option
>> 'xen-gnulinux-5.10.0-16-amd64-advanced-0123abcd' {
>> insmod part_gpt
>> insmod ext2
>> if [ x$feature_platform_search_hint = xy ]; then
>> search --no-floppy --fs-uuid --set=root 0123abcd
>> else
>> search --no-floppy --fs-uuid --set=root 0123abcd
>> fi
>> echo 'Loading Xen 4.14-amd64.efi ...'
>> if [ "$grub_platform" = "pc" -o "$grub_platform" = "" ]; then
>> xen_rm_opts=
>> else
>> xen_rm_opts="no-real-mode edd=off"
>> fi
>> multiboot2 /xen-4.14-amd64.efi placeholder ${xen_rm_opts}
>> echo 'Loading Linux 5.10.0-16-amd64 ...'
>> module2 /vmlinuz-5.10.0-16-amd64 placeholder root=UUID=0123abcd ro
>> quiet
>> echo 'Loading initial ramdisk ...'
>> module2 --nounzip /initrd.img-5.10.0-16-amd64
>> }
>> menuentry 'Debian GNU/Linux, with Xen 4.14-amd64.efi and Linux
>> 5.10.0-16-amd64 (recovery mode)' --class debian --class gnu-linux
>> --class gnu --class os --class xen $menuentry_id_option
>> 'xen-gnulinux-5.10.0-16-amd64-recovery-0123abcd' {
>> insmod part_gpt
>> insmod ext2
>> if [ x$feature_platform_search_hint = xy ]; then
>> search --no-floppy --fs-uuid --set=root 0123abcd
>> else
>> search --no-floppy --fs-uuid --set=root 0123abcd
>> fi
>> echo 'Loading Xen 4.14-amd64.efi ...'
>> if [ "$grub_platform" = "pc" -o "$grub_platform" = "" ]; then
>> xen_rm_opts=
>> else
>> xen_rm_opts="no-real-mode edd=off"
>> fi
>> multiboot2 /xen-4.14-amd64.efi placeholder ${xen_rm_opts}
>> echo 'Loading Linux 5.10.0-16-amd64 ...'
>> module2 /vmlinuz-5.10.0-16-amd64 placeholder root=UUID=0123abcd ro
>> single
>> echo 'Loading initial ramdisk ...'
>> module2 --nounzip /initrd.img-5.10.0-16-amd64
>> }
>> }
>> }
>>
>> ### END /etc/grub.d/08_linux_xen ###
>>
>> ### BEGIN /etc/grub.d/10_linux ###
>> function gfxmode {
>> set gfxpayload="${1}"
>> }
>> set linux_gfx_mode=
>> export linux_gfx_mode
>> menuentry 'Debian GNU/Linux' --class debian --class gnu-linux --class
>> gnu --class os $menuentry_id_option 'gnulinux-simple-0123abcd' {
>> load_video
>> insmod gzio
>> if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
>> insmod part_gpt
>> insmod ext2
>> if [ x$feature_platform_search_hint = xy ]; then
>> search --no-floppy --fs-uuid --set=root 0123abcd
>> else
>> search --no-floppy --fs-uuid --set=root 0123abcd
>> fi
>> echo 'Loading Linux 5.10.0-16-amd64 ...'
>> linux /vmlinuz-5.10.0-16-amd64 root=UUID=0123abcd ro quiet
>> echo 'Loading initial ramdisk ...'
>> initrd /initrd.img-5.10.0-16-amd64
>> }
>> submenu 'Advanced options for Debian GNU/Linux' $menuentry_id_option
>> 'gnulinux-advanced-0123abcd' {
>> menuentry 'Debian GNU/Linux, with Linux 5.10.0-16-amd64' --class
>> debian --class gnu-linux --class gnu --class os $menuentry_id_option
>> 'gnulinux-5.10.0-16-amd64-advanced-0123abcd' {
>> load_video
>> insmod gzio
>> if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
>> insmod part_gpt
>> insmod ext2
>> if [ x$feature_platform_search_hint = xy ]; then
>> search --no-floppy --fs-uuid --set=root 0123abcd
>> else
>> search --no-floppy --fs-uuid --set=root 0123abcd
>> fi
>> echo 'Loading Linux 5.10.0-16-amd64 ...'
>> linux /vmlinuz-5.10.0-16-amd64 root=UUID=0123abcd ro quiet
>> echo 'Loading initial ramdisk ...'
>> initrd /initrd.img-5.10.0-16-amd64
>> }
>> menuentry 'Debian GNU/Linux, with Linux 5.10.0-16-amd64 (recovery
>> mode)' --class debian --class gnu-linux --class gnu --class os
>> $menuentry_id_option 'gnulinux-5.10.0-16-amd64-recovery-0123abcd' {
>> load_video
>> insmod gzio
>> if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
>> insmod part_gpt
>> insmod ext2
>> if [ x$feature_platform_search_hint = xy ]; then
>> search --no-floppy --fs-uuid --set=root 0123abcd
>> else
>> search --no-floppy --fs-uuid --set=root 0123abcd
>> fi
>> echo 'Loading Linux 5.10.0-16-amd64 ...'
>> linux /vmlinuz-5.10.0-16-amd64 root=UUID=0123abcd ro single
>> echo 'Loading initial ramdisk ...'
>> initrd /initrd.img-5.10.0-16-amd64
>> }
>> }
>>
>> ### END /etc/grub.d/10_linux ###
>>
>> ### BEGIN /etc/grub.d/30_os-prober ###
>> ### END /etc/grub.d/30_os-prober ###
>>
>> ### BEGIN /etc/grub.d/30_uefi-firmware ###
>> menuentry 'System setup' $menuentry_id_option 'uefi-firmware' {
>> fwsetup
>> }
>> ### END /etc/grub.d/30_uefi-firmware ###
>>
>> ### BEGIN /etc/grub.d/40_custom ###
>> # This file provides an easy way to add custom menu entries. Simply
>> type the
>> # menu entries you want to add after this comment. Be careful not to
>> change
>> # the 'exec tail' line above.
>> ### END /etc/grub.d/40_custom ###
>>
>> ### BEGIN /etc/grub.d/41_custom ###
>> if [ -f ${config_directory}/custom.cfg ]; then
>> source ${config_directory}/custom.cfg
>> elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then
>> source $prefix/custom.cfg;
>> fi
>> ### END /etc/grub.d/41_custom ###

Regards,

Leigh.
Re: Boot into Xen on debian11 [ In reply to ]
Hello Leigh.

Thank you for your message!

Yes, utils-common is installed.

I undid the divert and generated grub once more, but I am still in error.

Xen kernel loads, but then I get AE_ALREADY_EXISTS, ACPI errror.

I get timeouts on suspend/resume device and timeout on root file system device.

Then, the initramfs prompt comes to me.

I could get the journalctl output and send over. I can’t think of anything else.

Kind regards,

Bruno Schroeder

> On 19 Jul 2022, at 19:24, Leigh Brown <leigh@solinno.co.uk> wrote:
>
> ?Hi Bruno,
>
> On 2022-07-19 15:42, Bruno wrote:
>>> Hello.
>>> Is there a way to boot into Xen on debian11 installing Xen the way documented, please?
>>> Multiboot2 is not doing the trick with initrd. Is there a workaround or a way to?
>>> Do we need a patch to grub to make Xen usable on this scenario? Does anyone boot into Xen? On debian? Debian11, please?
>
> Debian 11 should work out of the box.
>
>>> I have posted it on stackexchange:
>>> https://unix.stackexchange.com/q/710400/375983
>>> Linux xd 5.10.0-16-amd64 #1 SMP Debian 5.10.127-1 (2022-06-30) x86_64 GNU/Linux
>>> On my debian11, I have installed xen-hypervisor-4.14-amd64, xen-hypervisor-common, xen-system-amd64, and xen-utils-4.14
>
> Is xen-utils-common installed? I would expect it to be, but worth checking.
>
>>> But I cannot boot into Xen, please help.
>
> What do you mean by that? Does it crash, reboot, blank screen, something else?
>
>>> Theoretically, after installing Xen, according to https://wiki.debian.org/Xen , I should only run:
>>> dpkg-divert --divert /etc/grub.d/08_linux_xen --rename /etc/grub.d/20_linux_xen
>>> update-grub
>
> According to the Wiki, that step is only for Wheezy / Squeeze and is not required for Debian 11. I'd undo that, and re-run update-grub.
>
>>> Unfortunately, boot breaks and grub mailing list had a very deep debate on it last March-April - apparently multiboot2 will NOT do the trick:
>>> https://www.mail-archive.com/grub-devel@gnu.org/msg32020.html
>>> I need some help, please. Is this inconclusive? Is there a work-around I could use (some partial boot on Xen and manually loading on the prompt the rest of what is needed for Xen to work)? How should I proceed? I will try to register this on grub, debian xen packages and Xen as requests/bugs - any further ideas on actions, please?
>
> It should just work, if you provide more information on what you are seeing, it should be possible to resolve.
>
>>> The discussion on grub mailing list points to this:
>>> https://wiki.debian.org/DebianInstaller/NetbootFirmware#The_Solution:_Add_Firmware_to_Initramfs
>>> This seems very complicated and risky... is this the way forward?
>>> Did anyone patch grub2 to be able to support what's needed for Xen, please?
>
> There's no need.
>
>>> Note: I'm using pure Xen, NOT Eve.
>>> /etc/default/grub file contents:
>>> # If you change this file, run 'update-grub' afterwards to update
>>> # /boot/grub/grub.cfg.
>>> # For full documentation of the options in this file, see:
>>> # info -f grub -n 'Simple configuration'
>>> GRUB_DEFAULT=0
>>> GRUB_TIMEOUT=5
>>> GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
>>> GRUB_CMDLINE_LINUX_DEFAULT="quiet"
>>> GRUB_CMDLINE_LINUX=""
>>> # Uncomment to enable BadRAM filtering, modify to suit your needs
>>> # This works with Linux (no patch required) and with any kernel that obtains
>>> # the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
>>> #GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
>>> # Uncomment to disable graphical terminal (grub-pc only)
>>> #GRUB_TERMINAL=console
>>> # The resolution used on graphical terminal
>>> # note that you can use only modes which your graphic card supports via VBE
>>> # you can see them in real GRUB with the command `vbeinfo'
>>> #GRUB_GFXMODE=640x480
>>> # Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
>>> #GRUB_DISABLE_LINUX_UUID=true
>>> # Uncomment to disable generation of recovery mode menu entries
>>> #GRUB_DISABLE_RECOVERY="true"
>>> # Uncomment to get a beep at grub start
>>> #GRUB_INIT_TUNE="480 440 1"
>>> /boot/grub/grub.cfg file contents:
>>> #
>>> # DO NOT EDIT THIS FILE
>>> #
>>> # It is automatically generated by grub-mkconfig using templates
>>> # from /etc/grub.d and settings from /etc/default/grub
>>> #
>>> ### BEGIN /etc/grub.d/00_header ###
>>> if [ -s $prefix/grubenv ]; then
>>> set have_grubenv=true
>>> load_env
>>> fi
>>> if [ "${next_entry}" ] ; then
>>> set default="${next_entry}"
>>> set next_entry=
>>> save_env next_entry
>>> set boot_once=true
>>> else
>>> set default="Debian GNU/Linux, with Xen hypervisor"
>>> fi
>>> if [ x"${feature_menuentry_id}" = xy ]; then
>>> menuentry_id_option="--id"
>>> else
>>> menuentry_id_option=""
>>> fi
>>> export menuentry_id_option
>>> if [ "${prev_saved_entry}" ]; then
>>> set saved_entry="${prev_saved_entry}"
>>> save_env saved_entry
>>> set prev_saved_entry=
>>> save_env prev_saved_entry
>>> set boot_once=true
>>> fi
>>> function savedefault {
>>> if [ -z "${boot_once}" ]; then
>>> saved_entry="${chosen}"
>>> save_env saved_entry
>>> fi
>>> }
>>> function load_video {
>>> if [ x$feature_all_video_module = xy ]; then
>>> insmod all_video
>>> else
>>> insmod efi_gop
>>> insmod efi_uga
>>> insmod ieee1275_fb
>>> insmod vbe
>>> insmod vga
>>> insmod video_bochs
>>> insmod video_cirrus
>>> fi
>>> }
>>> if [ x$feature_default_font_path = xy ] ; then
>>> font=unicode
>>> else
>>> insmod part_gpt
>>> insmod ext2
>>> if [ x$feature_platform_search_hint = xy ]; then
>>> search --no-floppy --fs-uuid --set=root 0123abcd
>>> else
>>> search --no-floppy --fs-uuid --set=root 0123abcd
>>> fi
>>> font="/usr/share/grub/unicode.pf2"
>>> fi
>>> if loadfont $font ; then
>>> set gfxmode=auto
>>> load_video
>>> insmod gfxterm
>>> set locale_dir=$prefix/locale
>>> set lang=en_GB
>>> insmod gettext
>>> fi
>>> terminal_output gfxterm
>>> if [ "${recordfail}" = 1 ] ; then
>>> set timeout=30
>>> else
>>> if [ x$feature_timeout_style = xy ] ; then
>>> set timeout_style=menu
>>> set timeout=5
>>> # Fallback normal timeout code in case the timeout_style feature is
>>> # unavailable.
>>> else
>>> set timeout=5
>>> fi
>>> fi
>>> ### END /etc/grub.d/00_header ###
>>> ### BEGIN /etc/grub.d/05_debian_theme ###
>>> insmod part_gpt
>>> insmod ext2
>>> if [ x$feature_platform_search_hint = xy ]; then
>>> search --no-floppy --fs-uuid --set=root 0123abcd
>>> else
>>> search --no-floppy --fs-uuid --set=root 0123abcd
>>> fi
>>> insmod png
>>> if background_image /usr/share/desktop-base/homeworld-theme/grub/grub-4x3.png; then
>>> set color_normal=white/black
>>> set color_highlight=black/white
>>> else
>>> set menu_color_normal=cyan/blue
>>> set menu_color_highlight=white/blue
>>> fi
>>> ### END /etc/grub.d/05_debian_theme ###
>>> ### BEGIN /etc/grub.d/08_linux_xen ###
>>> menuentry 'Debian GNU/Linux, with Xen hypervisor' --class debian --class gnu-linux --class gnu --class os --class xen $menuentry_id_option 'xen-gnulinux-simple-0123abcd' {
>
> So the menu entry is created - can you see it in the grub menu?
>
>>> insmod part_gpt
>>> insmod ext2
>>> if [ x$feature_platform_search_hint = xy ]; then
>>> search --no-floppy --fs-uuid --set=root 0123abcd
>>> else
>>> search --no-floppy --fs-uuid --set=root 0123abcd
>>> fi
>>> echo 'Loading Xen 4.14-amd64 ...'
>>> if [ "$grub_platform" = "pc" -o "$grub_platform" = "" ]; then
>>> xen_rm_opts=
>>> else
>>> xen_rm_opts="no-real-mode edd=off"
>>> fi
>>> multiboot2 /xen-4.14-amd64.gz placeholder ${xen_rm_opts}
>>> echo 'Loading Linux 5.10.0-16-amd64 ...'
>>> module2 /vmlinuz-5.10.0-16-amd64 placeholder root=UUID=0123abcd ro quiet
>>> echo 'Loading initial ramdisk ...'
>>> module2 --nounzip /initrd.img-5.10.0-16-amd64
>>> }
>>> submenu 'Advanced options for Debian GNU/Linux (with Xen hypervisor)' $menuentry_id_option 'gnulinux-advanced-0123abcd' {
>>> submenu 'Xen hypervisor, version 4.14-amd64' $menuentry_id_option 'xen-hypervisor-4.14-amd64-0123abcd' {
>>> menuentry 'Debian GNU/Linux, with Xen 4.14-amd64 and Linux 5.10.0-16-amd64' --class debian --class gnu-linux --class gnu --class os --class xen $menuentry_id_option 'xen-gnulinux-5.10.0-16-amd64-advanced-0123abcd' {
>>> insmod part_gpt
>>> insmod ext2
>>> if [ x$feature_platform_search_hint = xy ]; then
>>> search --no-floppy --fs-uuid --set=root 0123abcd
>>> else
>>> search --no-floppy --fs-uuid --set=root 0123abcd
>>> fi
>>> echo 'Loading Xen 4.14-amd64 ...'
>>> if [ "$grub_platform" = "pc" -o "$grub_platform" = "" ]; then
>>> xen_rm_opts=
>>> else
>>> xen_rm_opts="no-real-mode edd=off"
>>> fi
>>> multiboot2 /xen-4.14-amd64.gz placeholder ${xen_rm_opts}
>>> echo 'Loading Linux 5.10.0-16-amd64 ...'
>>> module2 /vmlinuz-5.10.0-16-amd64 placeholder root=UUID=0123abcd ro quiet
>>> echo 'Loading initial ramdisk ...'
>>> module2 --nounzip /initrd.img-5.10.0-16-amd64
>>> }
>>> menuentry 'Debian GNU/Linux, with Xen 4.14-amd64 and Linux 5.10.0-16-amd64 (recovery mode)' --class debian --class gnu-linux --class gnu --class os --class xen $menuentry_id_option 'xen-gnulinux-5.10.0-16-amd64-recovery-0123abcd' {
>>> insmod part_gpt
>>> insmod ext2
>>> if [ x$feature_platform_search_hint = xy ]; then
>>> search --no-floppy --fs-uuid --set=root 0123abcd
>>> else
>>> search --no-floppy --fs-uuid --set=root 0123abcd
>>> fi
>>> echo 'Loading Xen 4.14-amd64 ...'
>>> if [ "$grub_platform" = "pc" -o "$grub_platform" = "" ]; then
>>> xen_rm_opts=
>>> else
>>> xen_rm_opts="no-real-mode edd=off"
>>> fi
>>> multiboot2 /xen-4.14-amd64.gz placeholder ${xen_rm_opts}
>>> echo 'Loading Linux 5.10.0-16-amd64 ...'
>>> module2 /vmlinuz-5.10.0-16-amd64 placeholder root=UUID=0123abcd ro single
>>> echo 'Loading initial ramdisk ...'
>>> module2 --nounzip /initrd.img-5.10.0-16-amd64
>>> }
>>> }
>>> submenu 'Xen hypervisor, version 4.14-amd64.efi' $menuentry_id_option 'xen-hypervisor-4.14-amd64.efi-0123abcd' {
>>> menuentry 'Debian GNU/Linux, with Xen 4.14-amd64.efi and Linux 5.10.0-16-amd64' --class debian --class gnu-linux --class gnu --class os --class xen $menuentry_id_option 'xen-gnulinux-5.10.0-16-amd64-advanced-0123abcd' {
>>> insmod part_gpt
>>> insmod ext2
>>> if [ x$feature_platform_search_hint = xy ]; then
>>> search --no-floppy --fs-uuid --set=root 0123abcd
>>> else
>>> search --no-floppy --fs-uuid --set=root 0123abcd
>>> fi
>>> echo 'Loading Xen 4.14-amd64.efi ...'
>>> if [ "$grub_platform" = "pc" -o "$grub_platform" = "" ]; then
>>> xen_rm_opts=
>>> else
>>> xen_rm_opts="no-real-mode edd=off"
>>> fi
>>> multiboot2 /xen-4.14-amd64.efi placeholder ${xen_rm_opts}
>>> echo 'Loading Linux 5.10.0-16-amd64 ...'
>>> module2 /vmlinuz-5.10.0-16-amd64 placeholder root=UUID=0123abcd ro quiet
>>> echo 'Loading initial ramdisk ...'
>>> module2 --nounzip /initrd.img-5.10.0-16-amd64
>>> }
>>> menuentry 'Debian GNU/Linux, with Xen 4.14-amd64.efi and Linux 5.10.0-16-amd64 (recovery mode)' --class debian --class gnu-linux --class gnu --class os --class xen $menuentry_id_option 'xen-gnulinux-5.10.0-16-amd64-recovery-0123abcd' {
>>> insmod part_gpt
>>> insmod ext2
>>> if [ x$feature_platform_search_hint = xy ]; then
>>> search --no-floppy --fs-uuid --set=root 0123abcd
>>> else
>>> search --no-floppy --fs-uuid --set=root 0123abcd
>>> fi
>>> echo 'Loading Xen 4.14-amd64.efi ...'
>>> if [ "$grub_platform" = "pc" -o "$grub_platform" = "" ]; then
>>> xen_rm_opts=
>>> else
>>> xen_rm_opts="no-real-mode edd=off"
>>> fi
>>> multiboot2 /xen-4.14-amd64.efi placeholder ${xen_rm_opts}
>>> echo 'Loading Linux 5.10.0-16-amd64 ...'
>>> module2 /vmlinuz-5.10.0-16-amd64 placeholder root=UUID=0123abcd ro single
>>> echo 'Loading initial ramdisk ...'
>>> module2 --nounzip /initrd.img-5.10.0-16-amd64
>>> }
>>> }
>>> }
>>> ### END /etc/grub.d/08_linux_xen ###
>>> ### BEGIN /etc/grub.d/10_linux ###
>>> function gfxmode {
>>> set gfxpayload="${1}"
>>> }
>>> set linux_gfx_mode=
>>> export linux_gfx_mode
>>> menuentry 'Debian GNU/Linux' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-0123abcd' {
>>> load_video
>>> insmod gzio
>>> if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
>>> insmod part_gpt
>>> insmod ext2
>>> if [ x$feature_platform_search_hint = xy ]; then
>>> search --no-floppy --fs-uuid --set=root 0123abcd
>>> else
>>> search --no-floppy --fs-uuid --set=root 0123abcd
>>> fi
>>> echo 'Loading Linux 5.10.0-16-amd64 ...'
>>> linux /vmlinuz-5.10.0-16-amd64 root=UUID=0123abcd ro quiet
>>> echo 'Loading initial ramdisk ...'
>>> initrd /initrd.img-5.10.0-16-amd64
>>> }
>>> submenu 'Advanced options for Debian GNU/Linux' $menuentry_id_option 'gnulinux-advanced-0123abcd' {
>>> menuentry 'Debian GNU/Linux, with Linux 5.10.0-16-amd64' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-5.10.0-16-amd64-advanced-0123abcd' {
>>> load_video
>>> insmod gzio
>>> if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
>>> insmod part_gpt
>>> insmod ext2
>>> if [ x$feature_platform_search_hint = xy ]; then
>>> search --no-floppy --fs-uuid --set=root 0123abcd
>>> else
>>> search --no-floppy --fs-uuid --set=root 0123abcd
>>> fi
>>> echo 'Loading Linux 5.10.0-16-amd64 ...'
>>> linux /vmlinuz-5.10.0-16-amd64 root=UUID=0123abcd ro quiet
>>> echo 'Loading initial ramdisk ...'
>>> initrd /initrd.img-5.10.0-16-amd64
>>> }
>>> menuentry 'Debian GNU/Linux, with Linux 5.10.0-16-amd64 (recovery mode)' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-5.10.0-16-amd64-recovery-0123abcd' {
>>> load_video
>>> insmod gzio
>>> if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
>>> insmod part_gpt
>>> insmod ext2
>>> if [ x$feature_platform_search_hint = xy ]; then
>>> search --no-floppy --fs-uuid --set=root 0123abcd
>>> else
>>> search --no-floppy --fs-uuid --set=root 0123abcd
>>> fi
>>> echo 'Loading Linux 5.10.0-16-amd64 ...'
>>> linux /vmlinuz-5.10.0-16-amd64 root=UUID=0123abcd ro single
>>> echo 'Loading initial ramdisk ...'
>>> initrd /initrd.img-5.10.0-16-amd64
>>> }
>>> }
>>> ### END /etc/grub.d/10_linux ###
>>> ### BEGIN /etc/grub.d/30_os-prober ###
>>> ### END /etc/grub.d/30_os-prober ###
>>> ### BEGIN /etc/grub.d/30_uefi-firmware ###
>>> menuentry 'System setup' $menuentry_id_option 'uefi-firmware' {
>>> fwsetup
>>> }
>>> ### END /etc/grub.d/30_uefi-firmware ###
>>> ### BEGIN /etc/grub.d/40_custom ###
>>> # This file provides an easy way to add custom menu entries. Simply type the
>>> # menu entries you want to add after this comment. Be careful not to change
>>> # the 'exec tail' line above.
>>> ### END /etc/grub.d/40_custom ###
>>> ### BEGIN /etc/grub.d/41_custom ###
>>> if [ -f ${config_directory}/custom.cfg ]; then
>>> source ${config_directory}/custom.cfg
>>> elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then
>>> source $prefix/custom.cfg;
>>> fi
>>> ### END /etc/grub.d/41_custom ###
>
> Regards,
>
> Leigh.
>
Re: Boot into Xen on debian11 [ In reply to ]
Hi Bruno,

On 2022-07-19 19:34, Bruno wrote:
> Hello Leigh.
>
> Thank you for your message!
>
> Yes, utils-common is installed.
>
> I undid the divert and generated grub once more, but I am still in
> error.
>
> Xen kernel loads, but then I get AE_ALREADY_EXISTS, ACPI errror.

Okay, please send or make available output from:
dmesg (booting Xen)
dmesg (booting normally)
dmidecode
lscpu

> I get timeouts on suspend/resume device and timeout on root file system
> device.
>
> Then, the initramfs prompt comes to me.
>
> I could get the journalctl output and send over. I can’t think of
> anything else.
>
> Kind regards,
>
> Bruno Schroeder

Regards,

Leigh.
Re: Boot into Xen on debian11 [ In reply to ]
While I am figuring out how to extract the file with the output from
dmesg from the initramfs that Xen is booting into, here it goes the ones
from debian:

dmesg (debian, no Xen)

[ 35.984547] nouveau 0000:01:00.0: fifo: PBDMA0: 01000000 [] ch 0
[007f992000 DRM] subc 0 mthd 0008 data 00000000
[ 35.984565] nouveau 0000:01:00.0: fifo: PBDMA0: 01000000 [] ch 0
[007f992000 DRM] subc 0 mthd 0008 data 00000000
[ 35.984583] nouveau 0000:01:00.0: fifo: PBDMA0: 01000000 [] ch 0
[007f992000 DRM] subc 0 mthd 0008 data 00000000
...
[ 36.004046] nouveau 0000:01:00.0: fifo: PBDMA0: 01000000 [] ch 0
[007f992000 DRM] subc 0 mthd 0008 data 00000000
[ 36.004064] nouveau 0000:01:00.0: fifo: PBDMA0: 01000000 [] ch 0
[007f992000 DRM] subc 0 mthd 0008 data 00000000
[ 36.004166] ------------[ cut here ]------------
[ 36.004201] WARNING: CPU: 2 PID: 69 at
drivers/gpu/drm/nouveau/nvkm/subdev/mc/base.c:72
nvkm_mc_intr+0x14d/0x170 [nouveau]
[ 36.004202] Modules linked in: intel_rapl_msr intel_rapl_common
snd_soc_dmic mei_hdcp bnep btusb btrtl btbcm btintel bluetooth
x86_pkg_temp_thermal intel_powerclamp snd_hda_codec_hdmi coretemp
jitterentropy_rng snd_hda_codec_realtek drbg snd_hda_codec_generic
kvm_intel kvm snd_sof_pci irqbypass snd_sof_intel_byt snd_sof_intel_ipc
snd_sof_intel_hda_common snd_sof_xtensa_dsp aes_generic
ghash_clmulni_intel snd_sof snd_sof_intel_hda snd_soc_hdac_hda
snd_hda_ext_core snd_soc_acpi_intel_match aesni_intel snd_soc_acpi
ledtrig_audio intel_cstate crypto_simd intel_uncore snd_hda_intel cryptd
snd_intel_dspcfg glue_helper soundwire_intel ansi_cprng
soundwire_generic_allocation pcspkr joydev acer_wmi ecdh_generic
serio_raw efi_pstore snd_soc_core snd_compress soundwire_cadence
snd_hda_codec snd_hda_core uvcvideo snd_hwdep soundwire_bus
videobuf2_vmalloc videobuf2_memops nls_ascii videobuf2_v4l2 snd_pcm
wmi_bmof iTCO_wdt nls_cp437 videobuf2_common intel_pmc_bxt snd_timer
vfat iTCO_vendor_support fat
[ 36.004233] videodev watchdog rfkill snd mei_me ecc soundcore ee1004
mc libaes hid_multitouch mei ac evdev tpm_crb tpm_tis tpm_tis_core tpm
rng_core intel_hid acpi_pad intel_pmc_core sparse_keymap acer_wireless
msr parport_pc ppdev lp parport fuse configfs efivarfs ip_tables
x_tables autofs4 ext4 crc16 mbcache jbd2 crc32c_generic usbhid i915
nouveau ahci libahci hid_generic mxm_wmi libata ttm i2c_algo_bit nvme
scsi_mod nvme_core drm_kms_helper t10_pi crc_t10dif crct10dif_generic
xhci_pci xhci_hcd cec crct10dif_pclmul crct10dif_common r8169 drm
crc32_pclmul realtek mdio_devres crc32c_intel i2c_hid usbcore libphy
i2c_i801 hid i2c_smbus intel_lpss_pci intel_lpss vmd idma64 usb_common
fan battery button video wmi
[ 36.004268] CPU: 2 PID: 69 Comm: kworker/2:1 Not tainted
5.10.0-16-amd64 #1 Debian 5.10.127-1
[ 36.004269] Hardware name: Acer Aspire A517-52G/Jasmine_TL, BIOS
V1.26 03/14/2022
[ 36.004272] Workqueue: pm pm_runtime_work
[ 36.004298] RIP: 0010:nvkm_mc_intr+0x14d/0x170 [nouveau]
[ 36.004300] Code: 44 24 18 65 48 2b 04 25 28 00 00 00 75 2b 48 83 c4
20 5b 5d 41 5c 41 5d 41 5e 41 5f c3 41 8b 47 40 85 c0 74 ba e9 3a 9d 0a
00 <0f> 0b 45 31 e4 c6 44 24 0f 00 e9 00 ff ff ff e8 df f8 50 e5 66 66
[ 36.004301] RSP: 0018:ffffa639c01c0ef0 EFLAGS: 00010046
[ 36.004303] RAX: 00000000ffffffff RBX: ffff9197f055dd00 RCX:
000000000000080b
[ 36.004303] RDX: 0000000000000000 RSI: ffffa639c01c0f4f RDI:
ffffa639c7000104
[ 36.004304] RBP: ffff9197f06e0000 R08: ffff9197f05519c0 R09:
0000000000000000
[ 36.004305] R10: 0000000000000000 R11: 0000000000000000 R12:
00000000ffffffff
[ 36.004306] R13: ffffa639c01c0fac R14: 000000000000009e R15:
ffff9197d15e97e0
[ 36.004307] FS: 0000000000000000(0000) GS:ffff919b60480000(0000)
knlGS:0000000000000000
[ 36.004308] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 36.004309] CR2: 0000563967ba8e48 CR3: 0000000261e0a006 CR4:
0000000000770ee0
[ 36.004310] PKRU: 55555554
[ 36.004310] Call Trace:
[ 36.004312] <IRQ>
[ 36.004338] ? gp100_mc_intr_update+0x54/0x80 [nouveau]
[ 36.004364] nvkm_pci_intr+0x4d/0x90 [nouveau]
[ 36.004367] __handle_irq_event_percpu+0x3d/0x160
[ 36.004369] handle_irq_event+0x57/0xb0
[ 36.004370] handle_edge_irq+0x87/0x220
[ 36.004372] asm_call_irq_on_stack+0xf/0x20
[ 36.004373] </IRQ>
[ 36.004375] common_interrupt+0xb0/0x130
[ 36.004376] asm_common_interrupt+0x1e/0x40
[ 36.004378] RIP: 0010:_raw_spin_unlock_irqrestore+0x11/0x20
[ 36.004379] Code: e0 4c 39 f0 76 d8 80 4d 00 04 eb 92 cc cc cc cc cc
cc cc cc cc cc cc cc cc 0f 1f 44 00 00 c6 07 00 0f 1f 40 00 48 89 f7 57
9d <0f> 1f 44 00 00 c3 66 0f 1f 84 00 00 00 00 00 0f 1f 44 00 00 8b 07
[ 36.004380] RSP: 0018:ffffa639c0333cc0 EFLAGS: 00000206
[ 36.004381] RAX: 000000000000000b RBX: 0000000000000000 RCX:
0000000000000064
[ 36.004381] RDX: 0000000000000cfc RSI: 0000000000000206 RDI:
0000000000000206
[ 36.004382] RBP: 000000000000000b R08: 0000000000000002 R09:
000000000000000b
[ 36.004382] R10: ffffa639c0333a20 R11: 0000000000000001 R12:
0000000000000000
[ 36.004383] R13: 0000000000010000 R14: 0000000000000002 R15:
0000000000000000
[ 36.004386] pci_conf1_write+0xa4/0xf0
[ 36.004388] pci_raw_set_power_state+0xdb/0x210
[ 36.004391] pci_set_power_state+0x51/0x1b0
[ 36.004422] nouveau_pmops_runtime_suspend+0x63/0xb0 [nouveau]
[ 36.004425] pci_pm_runtime_suspend+0x5e/0x170
[ 36.004426] ? pci_dev_put+0x20/0x20
[ 36.004427] ? pci_dev_put+0x20/0x20
[ 36.004428] __rpm_callback+0x81/0x190
[ 36.004430] ? pci_dev_put+0x20/0x20
[ 36.004431] rpm_callback+0x1f/0x70
[ 36.004432] ? pci_dev_put+0x20/0x20
[ 36.004433] rpm_suspend+0x147/0x6f0
[ 36.004435] ? __switch_to_asm+0x42/0x70
[ 36.004438] ? __switch_to+0x114/0x450
[ 36.004439] pm_runtime_work+0x8e/0x90
[ 36.004441] process_one_work+0x1b6/0x350
[ 36.004443] worker_thread+0x53/0x3e0
[ 36.004444] ? process_one_work+0x350/0x350
[ 36.004445] kthread+0x11b/0x140
[ 36.004446] ? __kthread_bind_mask+0x60/0x60
[ 36.004447] ret_from_fork+0x1f/0x30
[ 36.004449] ---[ end trace 3e892b52f2da56b2 ]---
[ 36.004685] nouveau 0000:01:00.0: fifo: fault 0f [] at
ffffffffffffffff engine ff [] client 7f [HUB/] reason 1f [] on channel
-1 [fffffffffffff000 unknown]

dmidecode

# dmidecode 3.3
Getting SMBIOS data from sysfs.
SMBIOS 3.3.0 present.
Table at 0x429DB000.

Handle 0x0000, DMI type 0, 26 bytes
BIOS Information
Vendor: Insyde Corp.
Version: V1.26
Release Date: 03/14/2022
Address: 0xE0000
Runtime Size: 128 kB
ROM Size: 4096 MB
Characteristics:
PCI is supported
BIOS is upgradeable
BIOS shadowing is allowed
Boot from CD is supported
Selectable boot is supported
EDD is supported
Japanese floppy for NEC 9800 1.2 MB is supported (int 13h)
Japanese floppy for Toshiba 1.2 MB is supported (int 13h)
5.25"/360 kB floppy services are supported (int 13h)
5.25"/1.2 MB floppy services are supported (int 13h)
3.5"/720 kB floppy services are supported (int 13h)
3.5"/2.88 MB floppy services are supported (int 13h)
8042 keyboard services are supported (int 9h)
CGA/mono video services are supported (int 10h)
ACPI is supported
USB legacy is supported
BIOS boot specification is supported
Targeted content distribution is supported
UEFI is supported
BIOS Revision: 1.26
Firmware Revision: 1.26

Handle 0x0001, DMI type 1, 27 bytes
System Information
Manufacturer: Acer
Product Name: Aspire A517-52G
Version: V1.26
Serial Number: NXAAQEK0072122A4913400
UUID: 39eaf870-119d-ec11-80e4-088fc34f86c5
Wake-up Type: Power Switch
SKU Number: 0000000000000000
Family: Aspire 5

Handle 0x0002, DMI type 2, 17 bytes
Base Board Information
Manufacturer: TGL
Product Name: Jasmine_TL
Version: V1.26
Serial Number: NBAAP11004212C79A13400
Asset Tag: Type2 - Board Chassis Location
Features:
Board is a hosting board
Board is replaceable
Location In Chassis: Type2 - Board Chassis Location
Chassis Handle: 0x0003
Type: Motherboard
Contained Object Handles: 0

Handle 0x0003, DMI type 3, 24 bytes
Chassis Information
Manufacturer: Acer
Type: Notebook
Lock: Not Present
Version: V1.26
Serial Number: Chassis Serial Number
Asset Tag:
Boot-up State: Safe
Power Supply State: Safe
Thermal State: Safe
Security Status: None
OEM Information: 0x00000000
Height: Unspecified
Number Of Power Cords: 1
Contained Elements: 0
SKU Number: <BAD INDEX>

Handle 0x0004, DMI type 4, 48 bytes
Processor Information
Socket Designation: U3E1
Type: Central Processor
Family: Core i5
Manufacturer: Intel(R) Corporation
ID: C1 06 08 00 FF FB EB BF
Signature: Type 0, Family 6, Model 140, Stepping 1
Flags:
FPU (Floating-point unit on-chip)
VME (Virtual mode extension)
DE (Debugging extension)
PSE (Page size extension)
TSC (Time stamp counter)
MSR (Model specific registers)
PAE (Physical address extension)
MCE (Machine check exception)
CX8 (CMPXCHG8 instruction supported)
APIC (On-chip APIC hardware supported)
SEP (Fast system call)
MTRR (Memory type range registers)
PGE (Page global enable)
MCA (Machine check architecture)
CMOV (Conditional move instruction supported)
PAT (Page attribute table)
PSE-36 (36-bit page size extension)
CLFSH (CLFLUSH instruction supported)
DS (Debug store)
ACPI (ACPI supported)
MMX (MMX technology supported)
FXSR (FXSAVE and FXSTOR instructions supported)
SSE (Streaming SIMD extensions)
SSE2 (Streaming SIMD extensions 2)
SS (Self-snoop)
HTT (Multi-threading)
TM (Thermal monitor supported)
PBE (Pending break enabled)
Version: 11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz
Voltage: 0.7 V
External Clock: 100 MHz
Max Speed: 4200 MHz
Current Speed: 2400 MHz
Status: Populated, Enabled
Upgrade: Other
L1 Cache Handle: 0x0006
L2 Cache Handle: 0x0007
L3 Cache Handle: 0x0008
Serial Number: To Be Filled By O.E.M.
Asset Tag: To Be Filled By O.E.M.
Part Number: To Be Filled By O.E.M.
Core Count: 4
Core Enabled: 4
Thread Count: 8
Characteristics:
64-bit capable
Multi-Core
Hardware Thread
Execute Protection
Enhanced Virtualization
Power/Performance Control

Handle 0x0005, DMI type 7, 27 bytes
Cache Information
Socket Designation: L1 Cache
Configuration: Enabled, Not Socketed, Level 1
Operational Mode: Write Back
Location: Internal
Installed Size: 0 kB
Maximum Size: 0 kB
Supported SRAM Types:
Synchronous
Installed SRAM Type: Synchronous
Speed: Unknown
Error Correction Type: Parity
System Type: Data
Associativity: 12-way Set-associative

Handle 0x0006, DMI type 7, 27 bytes
Cache Information
Socket Designation: L1 Cache
Configuration: Enabled, Not Socketed, Level 1
Operational Mode: Write Back
Location: Internal
Installed Size: 0 kB
Maximum Size: 0 kB
Supported SRAM Types:
Synchronous
Installed SRAM Type: Synchronous
Speed: Unknown
Error Correction Type: Parity
System Type: Instruction
Associativity: 8-way Set-associative

Handle 0x0007, DMI type 7, 27 bytes
Cache Information
Socket Designation: L2 Cache
Configuration: Enabled, Not Socketed, Level 2
Operational Mode: Write Back
Location: Internal
Installed Size: 0 kB
Maximum Size: 0 kB
Supported SRAM Types:
Synchronous
Installed SRAM Type: Synchronous
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Unified
Associativity: Other

Handle 0x0008, DMI type 7, 27 bytes
Cache Information
Socket Designation: L3 Cache
Configuration: Enabled, Not Socketed, Level 3
Operational Mode: Write Back
Location: Internal
Installed Size: 0 kB
Maximum Size: 0 kB
Supported SRAM Types:
Synchronous
Installed SRAM Type: Synchronous
Speed: Unknown
Error Correction Type: Multi-bit ECC
System Type: Unified
Associativity: 8-way Set-associative

Handle 0x0009, DMI type 10, 13 bytes
On Board Device 1 Information
Type: Video
Status: Enabled
Description: Intel Video Graphics Controller
On Board Device 2 Information
Type: Sound
Status: Enabled
Description: Realtek HDA Controller
On Board Device 3 Information
Type: SATA Controller
Status: Enabled
Description: Intel RAID Controller
On Board Device 4 Information
Type: Ethernet
Status: Enabled
Description: Realtek PCIe GBE Family Controller

Handle 0x000A, DMI type 11, 5 bytes
OEM Strings
String 1: Acer System

Handle 0x000B, DMI type 12, 5 bytes
System Configuration Options
Option 1: SW2: Close to Turn Off the System Power

Handle 0x000C, DMI type 14, 8 bytes
Group Associations
Name: $MEI
Items: 1
0x0018 (OEM-specific)

Handle 0x0020, DMI type 14, 23 bytes
Group Associations
Name: Firmware Version Info
Items: 6
0x0019 (OEM-specific)
0x001A (OEM-specific)
0x001B (OEM-specific)
0x001C (OEM-specific)
0x001D (OEM-specific)
0x001E (OEM-specific)

Handle 0x000D, DMI type 16, 23 bytes
Physical Memory Array
Location: System Board Or Motherboard
Use: System Memory
Error Correction Type: None
Maximum Capacity: 64 GB
Error Information Handle: Not Provided
Number Of Devices: 2

Handle 0x000E, DMI type 17, 92 bytes
Memory Device
Array Handle: 0x000D
Error Information Handle: Not Provided
Total Width: 64 bits
Data Width: 64 bits
Size: 8 GB
Form Factor: SODIMM
Set: None
Locator: Controller0-ChannelA-DIMM0
Bank Locator: BANK 0
Type: DDR4
Type Detail: Synchronous
Speed: 3200 MT/s
Manufacturer: SK Hynix
Serial Number: 2606C4DA
Asset Tag: 9876543210
Part Number: HMA81GS6DJR8N-XN
Rank: 1
Configured Memory Speed: 3200 MT/s
Minimum Voltage: Unknown
Maximum Voltage: Unknown
Configured Voltage: 1.2 V
Memory Technology: DRAM
Memory Operating Mode Capability: Volatile memory
Firmware Version: Not Specified
Module Manufacturer ID: Bank 1, Hex 0xAD
Module Product ID: Unknown
Memory Subsystem Controller Manufacturer ID: Unknown
Memory Subsystem Controller Product ID: Unknown
Non-Volatile Size: None
Volatile Size: 8 GB
Cache Size: None
Logical Size: None

Handle 0x000F, DMI type 17, 92 bytes
Memory Device
Array Handle: 0x000D
Error Information Handle: Not Provided
Total Width: 64 bits
Data Width: 64 bits
Size: 8 GB
Form Factor: SODIMM
Set: None
Locator: Controller1-ChannelA
Bank Locator: BANK 0
Type: DDR4
Type Detail: Synchronous
Speed: 3200 MT/s
Manufacturer: Samsung
Serial Number: 00000000
Asset Tag: 9876543210
Part Number: M471A1G44BB0-CWE
Rank: 1
Configured Memory Speed: 3200 MT/s
Minimum Voltage: Unknown
Maximum Voltage: Unknown
Configured Voltage: 1.2 V
Memory Technology: DRAM
Memory Operating Mode Capability: Volatile memory
Firmware Version: Not Specified
Module Manufacturer ID: Bank 1, Hex 0xCE
Module Product ID: Unknown
Memory Subsystem Controller Manufacturer ID: Unknown
Memory Subsystem Controller Product ID: Unknown
Non-Volatile Size: None
Volatile Size: 8 GB
Cache Size: None
Logical Size: None

Handle 0x0010, DMI type 19, 31 bytes
Memory Array Mapped Address
Starting Address: 0x00000000000
Ending Address: 0x003FFFFFFFF
Range Size: 16 GB
Physical Array Handle: 0x000D
Partition Width: 2

Handle 0x0011, DMI type 20, 35 bytes
Memory Device Mapped Address
Starting Address: 0x00000000000
Ending Address: 0x001FFFFFFFF
Range Size: 8 GB
Physical Device Handle: 0x000E
Memory Array Mapped Address Handle: 0x0010
Partition Row Position: Unknown
Interleave Position: 1
Interleaved Data Depth: 1

Handle 0x0012, DMI type 20, 35 bytes
Memory Device Mapped Address
Starting Address: 0x00000000000
Ending Address: 0x001FFFFFFFF
Range Size: 8 GB
Physical Device Handle: 0x000F
Memory Array Mapped Address Handle: 0x0010
Partition Row Position: Unknown
Interleave Position: 1
Interleaved Data Depth: 1

Handle 0x0013, DMI type 131, 64 bytes
OEM-specific Type
Header and Data:
83 40 13 00 31 00 00 00 00 00 00 00 00 00 00 00
F8 00 82 A0 00 00 00 00 01 00 00 00 00 00 0F 00
F0 06 1E 00 00 00 00 00 FE 00 FF FF 00 00 00 00
00 00 00 00 22 00 00 00 76 50 72 6F 00 00 00 00

Handle 0x0014, DMI type 131, 64 bytes
OEM-specific Type
Header and Data:
83 40 14 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 76 50 72 6F 00 00 00 00

Handle 0x0015, DMI type 170, 78 bytes
Acer Hotkey Function
Function bitmap for Communication Button: 0x0801
WiFi: Yes
3G: No
WiMAX: No
Bluetooth: Yes
Function bitmap for Application Button: 0x0000
Function bitmap for Media Button: 0x007f
Function bitmap for Display Button: 0x000f
Function bitmap for Others Button: 0x0006
Communication Function Key Number: 3

Handle 0x0016, DMI type 171, 59 bytes
OEM-specific Type
Header and Data:
AB 3B 16 00 04 08 04 61 A0 06 F3 04 4F 0C 08 CA
04 02 38 15 00 00 00 00 01 86 80 49 9A 02 EC 10
68 81 05 86 80 C8 A0 07 C3 14 61 79 11 00 00 00
00 0D 00 00 00 00 16 00 00 00 00

Handle 0x0017, DMI type 172, 42 bytes
OEM-specific Type
Header and Data:
AC 2A 17 00 02 54 01 FF 00 02 03 00 03 FF 00 04
01 00 05 0F 00 06 FF 00 07 FF 00 0D FF 00 0E 01
00 0F FF 00 10 FF 00 11 FF 00

Handle 0x0018, DMI type 219, 106 bytes
OEM-specific Type
Header and Data:
DB 6A 18 00 01 04 01 45 02 00 A0 06 01 10 80 20
00 00 00 00 40 00 00 00 00 00 00 00 00 20 40 02
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
FF FF FF FF FF FF FF FF 03 00 00 00 80 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00
Strings:
MEI1
MEI2
MEI3
MEI4

Handle 0x0019, DMI type 221, 26 bytes
OEM-specific Type
Header and Data:
DD 1A 19 00 03 01 00 0A 00 54 31 00 02 00 00 00
00 8A 00 03 00 FF FF FF FF FF
Strings:
Reference Code - CPU
uCode Version
TXT ACM version

Handle 0x001A, DMI type 221, 26 bytes
OEM-specific Type
Header and Data:
DD 1A 1A 00 03 01 00 0A 00 54 31 00 02 00 00 00
00 00 00 03 04 0F 00 1E F0 06
Strings:
Reference Code - ME
MEBx version
ME Firmware Version
Consumer SKU

Handle 0x001B, DMI type 221, 47 bytes
OEM-specific Type
Header and Data:
DD 2F 1B 00 06 01 00 0A 00 54 31 00 02 03 FF FF
FF FF FF 04 00 FF FF FF 20 00 05 00 FF FF FF 20
00 06 00 02 46 00 00 00 07 00 04 00 00 00 00
Strings:
Reference Code - PCH
PCH-CRID Status
Disabled
PCH-CRID Original Value
PCH-CRID New Value
OPROM - RST - RAID
PCH Hsio Version

Handle 0x001C, DMI type 221, 82 bytes
OEM-specific Type
Header and Data:
DD 52 1C 00 0B 01 00 0A 00 54 31 00 02 00 02 00
02 06 00 03 00 0A 00 54 31 00 04 05 FF FF FF FF
FF 06 00 00 00 00 01 00 07 00 00 00 00 01 00 08
00 FF FF FF FF FF 09 00 11 01 05 00 00 0A 00 00
00 00 00 00 0B 00 00 00 00 00 00 0C 00 FF FF FF
FF FF
Strings:
Reference Code - SA - System Agent
Reference Code - MRC
SA - PCIe Version
SA-CRID Status
Disabled
SA-CRID Original Value
SA-CRID New Value
OPROM - VBIOS
IO Manageability Engine FW Version
PHY Build Version
Thunderbolt(TM) FW Version
System Agent Manageability Engine FW Version

Handle 0x001D, DMI type 221, 12 bytes
OEM-specific Type
Header and Data:
DD 0C 1D 00 01 01 00 04 00 00 00 00
Strings:
FSP Binary Version

Handle 0x001E, DMI type 221, 89 bytes
OEM-specific Type
Header and Data:
DD 59 1E 00 0C 01 00 FF FF FF FF FF 02 00 FF FF
FF FF FF 03 04 FF FF FF FF FF 05 06 FF FF FF FF
FF 07 08 FF FF FF FF FF 09 00 00 00 00 00 00 0A
00 FF FF FF FF FF 0B 00 01 1A 00 00 00 0C 00 00
17 00 64 10 0D 00 FF FF FF FF FF 0E 00 00 07 03
00 00 0F 00 00 02 00 0F 00
Strings:
Lan Phy Version
Sensor Firmware Version
Debug Mode Status
Disabled
Performance Mode Status
Disabled
Debug Use USB(Disabled:Serial)
Disabled
ICC Overclocking Version
UNDI Version
EC FW Version
GOP Version
Royal Park Version
Platform Version
Client Silicon Version

Handle 0x001F, DMI type 248, 11 bytes
OEM-specific Type
Header and Data:
F8 0B 1F 00 00 02 6C 00 00 00 00

Handle 0xFEFF, DMI type 127, 4 bytes
End Of Table

lscpu

Architecture: x86_64
CPU op-mode(s): 32-bit, 64-bit
Byte Order: Little Endian
Address sizes: 39 bits physical, 48 bits virtual
CPU(s): 8
On-line CPU(s) list: 0-7
Thread(s) per core: 2
Core(s) per socket: 4
Socket(s): 1
NUMA node(s): 1
Vendor ID: GenuineIntel
CPU family: 6
Model: 140
Model name: 11th Gen Intel(R) Core(TM) i5-1135G7 @
2.40GHz
Stepping: 1
CPU MHz: 1043.249
CPU max MHz: 4200.0000
CPU min MHz: 400.0000
BogoMIPS: 4838.40
Virtualization: VT-x
L1d cache: 192 KiB
L1i cache: 128 KiB
L2 cache: 5 MiB
L3 cache: 8 MiB
NUMA node0 CPU(s): 0-7
Vulnerability Itlb multihit: Not affected
Vulnerability L1tf: Not affected
Vulnerability Mds: Not affected
Vulnerability Meltdown: Not affected
Vulnerability Mmio stale data: Not affected
Vulnerability Spec store bypass: Mitigation; Speculative Store Bypass
disabled via prctl and seccomp
Vulnerability Spectre v1: Mitigation; usercopy/swapgs barriers
and __user pointer sanitization
Vulnerability Spectre v2: Mitigation; Enhanced IBRS, IBPB
conditional, RSB filling
Vulnerability Srbds: Not affected
Vulnerability Tsx async abort: Not affected
Flags: fpu vme de pse tsc msr pae mce cx8 apic
sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht
tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs
bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq
pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 sdbg fma cx16 xtpr
pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave
avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l2
invpcid_single cdp_l2 ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi
flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2
erms invpcid rdt_a avx512f avx512dq rdseed adx smap avx512ifma
clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt
xsavec xgetbv1 xsaves split_lock_detect dtherm ida arat pln pts hwp
hwp_notify hwp_act_window hwp_epp hwp_pkg_req avx512vbmi umip pku ospke
avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg
avx512_vpopcntdq rdpid movdiri movdir64b fsrm avx512_vp2intersect
md_clear flush_l1d arch_capabilities

On 2022-07-19 19:43, Leigh Brown wrote:

> Hi Bruno,
>
> On 2022-07-19 19:34, Bruno wrote:
>
>> Hello Leigh.
>>
>> Thank you for your message!
>>
>> Yes, utils-common is installed.
>>
>> I undid the divert and generated grub once more, but I am still in
>> error.
>>
>> Xen kernel loads, but then I get AE_ALREADY_EXISTS, ACPI errror.
>
> Okay, please send or make available output from:
> dmesg (booting Xen)
> dmesg (booting normally)
> dmidecode
> lscpu
>
>> I get timeouts on suspend/resume device and timeout on root file
>> system device.
>>
>> Then, the initramfs prompt comes to me.
>>
>> I could get the journalctl output and send over. I can't think of
>> anything else.
>>
>> Kind regards,
>>
>> Bruno Schroeder
>
> Regards,
>
> Leigh.
Re: Boot into Xen on debian11 [ In reply to ]
Hi Bruno,

On 2022-07-19 20:29, Bruno wrote:
> While I am figuring out how to extract the file with the output from
> dmesg from the initramfs that Xen is booting into, here it goes the
> ones from debian:
>
> dmesg (debian, no Xen)
>
[snip incomplete dmesg]

Thanks for the other stuff. I need the full dmesg starting from the top.
e.g.:

[ 0.000000] Linux version 5.10.0-16-amd64
(debian-kernel@lists.debian.org) (gcc-10 (Debian 10.2.1-6) 10.2.1
20210110, GNU ld (GNU Binutils for Debian) 2.35.2) #1 SMP Debian
5.10.127-1 (2022-06-30)
[ 0.000000] Command line: placeholder root=/dev/mapper/rootvg-rootlv
ro quiet
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating
point registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
[ 0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832
bytes, using 'standard' format.
[ 0.000000] Released 0 page(s)
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] Xen: [mem 0x0000000000000000-0x000000000009ffff] usable
(and so on)

Regards,

Leigh.
Re: Boot into Xen on debian11 [ In reply to ]
journalctl -r

-- Journal begins at Mon 2022-07-18 16:19:02 BST, ends at Tue 2022-07-19
20:43:04 BST. --
Jul 19 20:41:53 xd kernel: Linux version 5.10.0-16-amd64
(debian-kernel@lists.debian.org) (gcc-10 (Debian 10.2.1-6) 10.2.1
20210110, GNU ld (GNU Binutils for Debian) 2.35.2) #1 SMP Debian
5.10.127-1 (2022-06-30)
Jul 19 20:41:53 xd kernel: Command line:
BOOT_IMAGE=/vmlinuz-5.10.0-16-amd64
root=UUID=0dc2ba0c-97d5-4786-bc97-4d13279afe0f ro quiet
Jul 19 20:41:53 xd kernel: x86/split lock detection: warning about
user-space split_locks
Jul 19 20:41:53 xd kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87
floating point registers'
Jul 19 20:41:53 xd kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE
registers'
Jul 19 20:41:53 xd kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX
registers'
Jul 19 20:41:53 xd kernel: x86/fpu: Supporting XSAVE feature 0x020:
'AVX-512 opmask'
Jul 19 20:41:53 xd kernel: x86/fpu: Supporting XSAVE feature 0x040:
'AVX-512 Hi256'
Jul 19 20:41:53 xd kernel: x86/fpu: Supporting XSAVE feature 0x080:
'AVX-512 ZMM_Hi256'
Jul 19 20:41:53 xd kernel: x86/fpu: Supporting XSAVE feature 0x200:
'Protection Keys User registers'
Jul 19 20:41:53 xd kernel: x86/fpu: xstate_offset[2]: 576,
xstate_sizes[2]: 256
Jul 19 20:41:53 xd kernel: x86/fpu: xstate_offset[5]: 832,
xstate_sizes[5]: 64
Jul 19 20:41:53 xd kernel: x86/fpu: xstate_offset[6]: 896,
xstate_sizes[6]: 512
Jul 19 20:41:53 xd kernel: x86/fpu: xstate_offset[7]: 1408,
xstate_sizes[7]: 1024
Jul 19 20:41:53 xd kernel: x86/fpu: xstate_offset[9]: 2432,
xstate_sizes[9]: 8
Jul 19 20:41:53 xd kernel: x86/fpu: Enabled xstate features 0x2e7,
context size is 2440 bytes, using 'compacted' format.
Jul 19 20:41:53 xd kernel: BIOS-provided physical RAM map:
Jul 19 20:41:53 xd kernel: BIOS-e820: [mem
0x0000000000000000-0x000000000009efff] usable
Jul 19 20:41:53 xd kernel: BIOS-e820: [mem
0x000000000009f000-0x00000000000fffff] reserved
Jul 19 20:41:53 xd kernel: BIOS-e820: [mem
0x0000000000100000-0x000000003fd98fff] usable
Jul 19 20:41:53 xd kernel: BIOS-e820: [mem
0x000000003fd99000-0x0000000040698fff] reserved
Jul 19 20:41:53 xd kernel: BIOS-e820: [mem
0x0000000040699000-0x00000000424aefff] usable
Jul 19 20:41:53 xd kernel: BIOS-e820: [mem
0x00000000424af000-0x000000004287efff] type 20
Jul 19 20:41:53 xd kernel: BIOS-e820: [mem
0x000000004287f000-0x00000000442fefff] reserved
Jul 19 20:41:53 xd kernel: BIOS-e820: [mem
0x00000000442ff000-0x0000000044b2efff] ACPI NVS
Jul 19 20:41:53 xd kernel: BIOS-e820: [mem
0x0000000044b2f000-0x0000000044bfefff] ACPI data
Jul 19 20:41:53 xd kernel: BIOS-e820: [mem
0x0000000044bff000-0x0000000044bfffff] usable
Jul 19 20:41:53 xd kernel: BIOS-e820: [mem
0x0000000044c00000-0x0000000048ffffff] reserved
Jul 19 20:41:53 xd kernel: BIOS-e820: [mem
0x0000000049e00000-0x000000004f7fffff] reserved
Jul 19 20:41:53 xd kernel: BIOS-e820: [mem
0x00000000c0000000-0x00000000cfffffff] reserved
Jul 19 20:41:53 xd kernel: BIOS-e820: [mem
0x00000000fe010000-0x00000000fe010fff] reserved
Jul 19 20:41:53 xd kernel: BIOS-e820: [mem
0x00000000fed20000-0x00000000fed7ffff] reserved
Jul 19 20:41:53 xd kernel: BIOS-e820: [mem
0x00000000ff500000-0x00000000ffffffff] reserved
Jul 19 20:41:53 xd kernel: BIOS-e820: [mem
0x0000000100000000-0x00000004b07fffff] usable
Jul 19 20:41:53 xd kernel: NX (Execute Disable) protection: active
Jul 19 20:41:53 xd kernel: efi: EFI v2.70 by INSYDE Corp.
Jul 19 20:41:53 xd kernel: efi: ACPI=0x44bfe000 ACPI 2.0=0x44bfe014
TPMFinalLog=0x44ac5000 SMBIOS=0x429de000 SMBIOS 3.0=0x429dc000
ESRT=0x3bf66a98 MOKvar=0x3bee4000
Jul 19 20:41:53 xd kernel: secureboot: Secure boot could not be
determined (mode 0)
Jul 19 20:41:53 xd kernel: SMBIOS 3.3.0 present.
Jul 19 20:41:53 xd kernel: DMI: Acer Aspire A517-52G/Jasmine_TL, BIOS
V1.26 03/14/2022
Jul 19 20:41:53 xd kernel: tsc: Detected 2400.000 MHz processor
Jul 19 20:41:53 xd kernel: tsc: Detected 2419.200 MHz TSC
Jul 19 20:41:53 xd kernel: e820: update [mem 0x00000000-0x00000fff]
usable ==> reserved
Jul 19 20:41:53 xd kernel: e820: remove [mem 0x000a0000-0x000fffff]
usable
Jul 19 20:41:53 xd kernel: last_pfn = 0x4b0800 max_arch_pfn =
0x400000000
Jul 19 20:41:53 xd kernel: MTRR default type: write-back
Jul 19 20:41:53 xd kernel: MTRR fixed ranges enabled:
Jul 19 20:41:53 xd kernel: 00000-9FFFF write-back
Jul 19 20:41:53 xd kernel: A0000-BFFFF uncachable
Jul 19 20:41:53 xd kernel: C0000-FFFFF write-protect
Jul 19 20:41:53 xd kernel: MTRR variable ranges enabled:
Jul 19 20:41:53 xd kernel: 0 base 0080000000 mask 7F80000000 uncachable
Jul 19 20:41:53 xd kernel: 1 base 0060000000 mask 7FE0000000 uncachable
Jul 19 20:41:53 xd kernel: 2 base 0050000000 mask 7FF0000000 uncachable
Jul 19 20:41:53 xd kernel: 3 base 004C000000 mask 7FFC000000 uncachable
Jul 19 20:41:53 xd kernel: 4 base 004B000000 mask 7FFF000000 uncachable
Jul 19 20:41:53 xd kernel: 5 base 4000000000 mask 4000000000 uncachable
Jul 19 20:41:53 xd kernel: 6 disabled
Jul 19 20:41:53 xd kernel: 7 disabled
Jul 19 20:41:53 xd kernel: 8 disabled
Jul 19 20:41:53 xd kernel: 9 disabled
Jul 19 20:41:53 xd kernel: x86/PAT: Configuration [0-7]: WB WC UC- UC WB
WP UC- WT
Jul 19 20:41:53 xd kernel: last_pfn = 0x44c00 max_arch_pfn = 0x400000000
Jul 19 20:41:53 xd kernel: esrt: Reserving ESRT space from
0x000000003bf66a98 to 0x000000003bf66ad0.
Jul 19 20:41:53 xd kernel: e820: update [mem 0x3bf66000-0x3bf66fff]
usable ==> reserved
Jul 19 20:41:53 xd kernel: e820: update [mem 0x3bee4000-0x3bee6fff]
usable ==> reserved
Jul 19 20:41:53 xd kernel: Using GB pages for direct mapping
Jul 19 20:41:53 xd kernel: RAMDISK: [mem 0x32aa5000-0x35549fff]
Jul 19 20:41:53 xd kernel: ACPI: Early table checksum verification
disabled
Jul 19 20:41:53 xd kernel: ACPI: RSDP 0x0000000044BFE014 000024 (v02
ACRSYS)
Jul 19 20:41:53 xd kernel: ACPI: XSDT 0x0000000044BDB188 000124 (v01
ACRSYS ACRPRDCT 00000002 01000013)
Jul 19 20:41:53 xd kernel: ACPI: FACP 0x0000000044BDE000 000114 (v06
ACRSYS ACRPRDCT 00000002 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: DSDT 0x0000000044B81000 059948 (v02
ACRSYS ACRPRDCT 00000002 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: FACS 0x0000000044AA2000 000040
Jul 19 20:41:53 xd kernel: ACPI: UEFI 0x0000000044B2E000 000236 (v01
ACRSYS ACRPRDCT 00000001 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BFA000 00255C (v02
ACRSYS ACRPRDCT 00003000 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BF9000 000105 (v02
ACRSYS ACRPRDCT 00003000 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BF6000 002137 (v02
ACRSYS ACRPRDCT 00003000 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BF2000 003300 (v02
ACRSYS ACRPRDCT 00003000 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BF1000 00077B (v02
ACRSYS ACRPRDCT 00001000 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: TPM2 0x0000000044BF0000 00004C (v04
ACRSYS ACRPRDCT 00000002 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: MSDM 0x0000000044BEF000 000055 (v03
ACRSYS ACRPRDCT 00000001 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BEE000 000D02 (v02
ACRSYS ACRPRDCT 00000000 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: NHLT 0x0000000044BEC000 001B54 (v00
ACRSYS ACRPRDCT 00000002 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: LPIT 0x0000000044BEB000 0000CC (v01
ACRSYS ACRPRDCT 00000002 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: WSMT 0x0000000044BEA000 000028 (v01
ACRSYS ACRPRDCT 00000002 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BE9000 000B70 (v02
ACRSYS ACRPRDCT 00001000 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BE8000 00012A (v02
ACRSYS ACRPRDCT 00000000 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: DBGP 0x0000000044BE7000 000034 (v01
ACRSYS ACRPRDCT 00000002 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: DBG2 0x0000000044BE6000 000054 (v00
ACRSYS ACRPRDCT 00000002 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BDF000 006BA9 (v01
ACRSYS ACRPRDCT 00001000 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: HPET 0x0000000044BDD000 000038 (v01
ACRSYS ACRPRDCT 00000002 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: APIC 0x0000000044BDC000 00012C (v04
ACRSYS ACRPRDCT 00000002 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: MCFG 0x0000000044BFD000 00003C (v01
ACRSYS ACRPRDCT 00000002 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044B80000 000C78 (v02
ACRSYS ACRPRDCT 00000002 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: DMAR 0x0000000044B7F000 000088 (v02
ACRSYS ACRPRDCT 00000002 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044B7C000 0020D6 (v01
ACRSYS ACRPRDCT 00001000 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: UEFI 0x0000000044A5B000 00063A (v01
ACRSYS ACRPRDCT 00000000 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: UEFI 0x0000000044A5A000 00005C (v01
ACRSYS ACRPRDCT 00000000 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044B7B000 000985 (v02
ACRSYS ACRPRDCT 00001000 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044B7A000 0000F8 (v01
ACRSYS ACRPRDCT 00001000 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044B79000 000835 (v02
ACRSYS ACRPRDCT 00003000 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: FPDT 0x0000000044B78000 000044 (v01
ACRSYS ACRPRDCT 00000002 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: PTDT 0x0000000044B76000 000CFE (v00
ACRSYS ACRPRDCT 00000005 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: BGRT 0x0000000044B77000 000038 (v01
ACRSYS ACRPRDCT 00000001 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: Reserving FACP table memory at [mem
0x44bde000-0x44bde113]
Jul 19 20:41:53 xd kernel: ACPI: Reserving DSDT table memory at [mem
0x44b81000-0x44bda947]
Jul 19 20:41:53 xd kernel: ACPI: Reserving FACS table memory at [mem
0x44aa2000-0x44aa203f]
Jul 19 20:41:53 xd kernel: ACPI: Reserving UEFI table memory at [mem
0x44b2e000-0x44b2e235]
Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem
0x44bfa000-0x44bfc55b]
Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem
0x44bf9000-0x44bf9104]
Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem
0x44bf6000-0x44bf8136]
Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem
0x44bf2000-0x44bf52ff]
Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem
0x44bf1000-0x44bf177a]
Jul 19 20:41:53 xd kernel: ACPI: Reserving TPM2 table memory at [mem
0x44bf0000-0x44bf004b]
Jul 19 20:41:53 xd kernel: ACPI: Reserving MSDM table memory at [mem
0x44bef000-0x44bef054]
Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem
0x44bee000-0x44beed01]
Jul 19 20:41:53 xd kernel: ACPI: Reserving NHLT table memory at [mem
0x44bec000-0x44bedb53]
Jul 19 20:41:53 xd kernel: ACPI: Reserving LPIT table memory at [mem
0x44beb000-0x44beb0cb]
Jul 19 20:41:53 xd kernel: ACPI: Reserving WSMT table memory at [mem
0x44bea000-0x44bea027]
Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem
0x44be9000-0x44be9b6f]
Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem
0x44be8000-0x44be8129]
Jul 19 20:41:53 xd kernel: ACPI: Reserving DBGP table memory at [mem
0x44be7000-0x44be7033]
Jul 19 20:41:53 xd kernel: ACPI: Reserving DBG2 table memory at [mem
0x44be6000-0x44be6053]
Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem
0x44bdf000-0x44be5ba8]
Jul 19 20:41:53 xd kernel: ACPI: Reserving HPET table memory at [mem
0x44bdd000-0x44bdd037]
Jul 19 20:41:53 xd kernel: ACPI: Reserving APIC table memory at [mem
0x44bdc000-0x44bdc12b]
Jul 19 20:41:53 xd kernel: ACPI: Reserving MCFG table memory at [mem
0x44bfd000-0x44bfd03b]
Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem
0x44b80000-0x44b80c77]
Jul 19 20:41:53 xd kernel: ACPI: Reserving DMAR table memory at [mem
0x44b7f000-0x44b7f087]
Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem
0x44b7c000-0x44b7e0d5]
Jul 19 20:41:53 xd kernel: ACPI: Reserving UEFI table memory at [mem
0x44a5b000-0x44a5b639]
Jul 19 20:41:53 xd kernel: ACPI: Reserving UEFI table memory at [mem
0x44a5a000-0x44a5a05b]
Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem
0x44b7b000-0x44b7b984]
Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem
0x44b7a000-0x44b7a0f7]
Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem
0x44b79000-0x44b79834]
Jul 19 20:41:53 xd kernel: ACPI: Reserving FPDT table memory at [mem
0x44b78000-0x44b78043]
Jul 19 20:41:53 xd kernel: ACPI: Reserving PTDT table memory at [mem
0x44b76000-0x44b76cfd]
Jul 19 20:41:53 xd kernel: ACPI: Reserving BGRT table memory at [mem
0x44b77000-0x44b77037]
Jul 19 20:41:53 xd kernel: ACPI: Local APIC address 0xfee00000
Jul 19 20:41:53 xd kernel: No NUMA configuration found
Jul 19 20:41:53 xd kernel: Faking a node at [mem
0x0000000000000000-0x00000004b07fffff]
Jul 19 20:41:53 xd kernel: NODE_DATA(0) allocated [mem
0x4b07d6000-0x4b07fffff]
Jul 19 20:41:53 xd kernel: Zone ranges:
Jul 19 20:41:53 xd kernel: DMA [mem
0x0000000000001000-0x0000000000ffffff]
Jul 19 20:41:53 xd kernel: DMA32 [mem
0x0000000001000000-0x00000000ffffffff]
Jul 19 20:41:53 xd kernel: Normal [mem
0x0000000100000000-0x00000004b07fffff]
Jul 19 20:41:53 xd kernel: Device empty
Jul 19 20:41:53 xd kernel: Movable zone start for each node
Jul 19 20:41:53 xd kernel: Early memory node ranges
Jul 19 20:41:53 xd kernel: node 0: [mem
0x0000000000001000-0x000000000009efff]
Jul 19 20:41:53 xd kernel: node 0: [mem
0x0000000000100000-0x000000003fd98fff]
Jul 19 20:41:53 xd kernel: node 0: [mem
0x0000000040699000-0x00000000424aefff]
Jul 19 20:41:53 xd kernel: node 0: [mem
0x0000000044bff000-0x0000000044bfffff]
Jul 19 20:41:53 xd kernel: node 0: [mem
0x0000000100000000-0x00000004b07fffff]
Jul 19 20:41:53 xd kernel: Initmem setup node 0 [mem
0x0000000000001000-0x00000004b07fffff]
Jul 19 20:41:53 xd kernel: On node 0 totalpages: 4137806
Jul 19 20:41:53 xd kernel: DMA zone: 64 pages used for memmap
Jul 19 20:41:53 xd kernel: DMA zone: 25 pages reserved
Jul 19 20:41:53 xd kernel: DMA zone: 3998 pages, LIFO batch:0
Jul 19 20:41:53 xd kernel: DMA32 zone: 4143 pages used for memmap
Jul 19 20:41:53 xd kernel: DMA32 zone: 265136 pages, LIFO batch:63
Jul 19 20:41:53 xd kernel: Normal zone: 60448 pages used for memmap
Jul 19 20:41:53 xd kernel: Normal zone: 3868672 pages, LIFO batch:63
Jul 19 20:41:53 xd kernel: On node 0, zone DMA: 1 pages in unavailable
ranges
Jul 19 20:41:53 xd kernel: On node 0, zone DMA: 97 pages in unavailable
ranges
Jul 19 20:41:53 xd kernel: On node 0, zone DMA32: 2304 pages in
unavailable ranges
Jul 19 20:41:53 xd kernel: On node 0, zone DMA32: 10064 pages in
unavailable ranges
Jul 19 20:41:53 xd kernel: On node 0, zone Normal: 13312 pages in
unavailable ranges
Jul 19 20:41:53 xd kernel: On node 0, zone Normal: 30720 pages in
unavailable ranges
Jul 19 20:41:53 xd kernel: Reserving Intel graphics memory at [mem
0x4b800000-0x4f7fffff]
Jul 19 20:41:53 xd kernel: ACPI: PM-Timer IO Port: 0x1808
Jul 19 20:41:53 xd kernel: ACPI: Local APIC address 0xfee00000
Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge
lint[0x1])
Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge
lint[0x1])
Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge
lint[0x1])
Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge
lint[0x1])
Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge
lint[0x1])
Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge
lint[0x1])
Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge
lint[0x1])
Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge
lint[0x1])
Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x09] high edge
lint[0x1])
Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0a] high edge
lint[0x1])
Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0b] high edge
lint[0x1])
Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0c] high edge
lint[0x1])
Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0d] high edge
lint[0x1])
Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0e] high edge
lint[0x1])
Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0f] high edge
lint[0x1])
Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x10] high edge
lint[0x1])
Jul 19 20:41:53 xd kernel: IOAPIC[0]: apic_id 2, version 32, address
0xfec00000, GSI 0-119
Jul 19 20:41:53 xd kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq
2 dfl dfl)
Jul 19 20:41:53 xd kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq
9 high level)
Jul 19 20:41:53 xd kernel: ACPI: IRQ0 used by override.
Jul 19 20:41:53 xd kernel: ACPI: IRQ9 used by override.
Jul 19 20:41:53 xd kernel: Using ACPI (MADT) for SMP configuration
information
Jul 19 20:41:53 xd kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
Jul 19 20:41:53 xd kernel: e820: update [mem 0x3bf69000-0x3c05cfff]
usable ==> reserved
Jul 19 20:41:53 xd kernel: TSC deadline timer available
Jul 19 20:41:53 xd kernel: smpboot: Allowing 8 CPUs, 0 hotplug CPUs
Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0x00000000-0x00000fff]
Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0x0009f000-0x000fffff]
Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0x3bee4000-0x3bee6fff]
Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0x3bf66000-0x3bf66fff]
Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0x3bf69000-0x3c05cfff]
Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0x3fd99000-0x40698fff]
Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0x424af000-0x4287efff]
Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0x4287f000-0x442fefff]
Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0x442ff000-0x44b2efff]
Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0x44b2f000-0x44bfefff]
Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0x44c00000-0x48ffffff]
Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0x49000000-0x49dfffff]
Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0x49e00000-0x4f7fffff]
Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0x4f800000-0xbfffffff]
Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0xc0000000-0xcfffffff]
Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0xd0000000-0xfe00ffff]
Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0xfe010000-0xfe010fff]
Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0xfe011000-0xfed1ffff]
Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0xfed20000-0xfed7ffff]
Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0xfed80000-0xff4fffff]
Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0xff500000-0xffffffff]
Jul 19 20:41:53 xd kernel: [mem 0x4f800000-0xbfffffff] available for PCI
devices
Jul 19 20:41:53 xd kernel: Booting paravirtualized kernel on bare
hardware
Jul 19 20:41:53 xd kernel: clocksource: refined-jiffies: mask:
0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
Jul 19 20:41:53 xd kernel: setup_percpu: NR_CPUS:8192 nr_cpumask_bits:8
nr_cpu_ids:8 nr_node_ids:1
Jul 19 20:41:53 xd kernel: percpu: Embedded 58 pages/cpu s200664 r8192
d28712 u262144
Jul 19 20:41:53 xd kernel: pcpu-alloc: s200664 r8192 d28712 u262144
alloc=1*2097152
Jul 19 20:41:53 xd kernel: pcpu-alloc: [0] 0 1 2 3 4 5 6 7
Jul 19 20:41:53 xd kernel: Built 1 zonelists, mobility grouping on.
Total pages: 4073126
Jul 19 20:41:53 xd kernel: Policy zone: Normal
Jul 19 20:41:53 xd kernel: Kernel command line:
BOOT_IMAGE=/vmlinuz-5.10.0-16-amd64
root=UUID=0dc2ba0c-97d5-4786-bc97-4d13279afe0f ro quiet
Jul 19 20:41:53 xd kernel: Dentry cache hash table entries: 2097152
(order: 12, 16777216 bytes, linear)
Jul 19 20:41:53 xd kernel: Inode-cache hash table entries: 1048576
(order: 11, 8388608 bytes, linear)
Jul 19 20:41:53 xd kernel: mem auto-init: stack:off, heap alloc:on, heap
free:off
Jul 19 20:41:53 xd kernel: Memory: 1014224K/16551224K available (12295K
kernel code, 2536K rwdata, 7568K rodata, 2424K init, 3680K bss, 517204K
reserved, 0K cma-reserved)
Jul 19 20:41:53 xd kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0,
CPUs=8, Nodes=1
Jul 19 20:41:53 xd kernel: ftrace: allocating 36455 entries in 143 pages
Jul 19 20:41:53 xd kernel: ftrace: allocated 143 pages with 5 groups
Jul 19 20:41:53 xd kernel: rcu: Hierarchical RCU implementation.
Jul 19 20:41:53 xd kernel: rcu: RCU restricting CPUs from NR_CPUS=8192
to nr_cpu_ids=8.
Jul 19 20:41:53 xd kernel: Rude variant of Tasks RCU enabled.
Jul 19 20:41:53 xd kernel: Tracing variant of Tasks RCU enabled.
Jul 19 20:41:53 xd kernel: rcu: RCU calculated value of
scheduler-enlistment delay is 25 jiffies.
Jul 19 20:41:53 xd kernel: rcu: Adjusting geometry for
rcu_fanout_leaf=16, nr_cpu_ids=8
Jul 19 20:41:53 xd kernel: NR_IRQS: 524544, nr_irqs: 2048, preallocated
irqs: 16
Jul 19 20:41:53 xd kernel: random: crng init done
Jul 19 20:41:53 xd kernel: Console: colour dummy device 80x25
Jul 19 20:41:53 xd kernel: printk: console [tty0] enabled
Jul 19 20:41:53 xd kernel: ACPI: Core revision 20200925
Jul 19 20:41:53 xd kernel: hpet: HPET dysfunctional in PC10. Force
disabled.
Jul 19 20:41:53 xd kernel: APIC: Switch to symmetric I/O mode setup
Jul 19 20:41:53 xd kernel: DMAR: Host address width 39
Jul 19 20:41:53 xd kernel: DMAR: DRHD base: 0x000000fed90000 flags: 0x0
Jul 19 20:41:53 xd kernel: DMAR: dmar0: reg_base_addr fed90000 ver 4:0
cap 1c0000c40660462 ecap 29a00f0505e
Jul 19 20:41:53 xd kernel: DMAR: DRHD base: 0x000000fed91000 flags: 0x1
Jul 19 20:41:53 xd kernel: DMAR: dmar1: reg_base_addr fed91000 ver 1:0
cap d2008c40660462 ecap f050da
Jul 19 20:41:53 xd kernel: DMAR: RMRR base: 0x0000004b000000 end:
0x0000004f7fffff
Jul 19 20:41:53 xd kernel: DMAR-IR: IOAPIC id 2 under DRHD base
0xfed91000 IOMMU 1
Jul 19 20:41:53 xd kernel: DMAR-IR: HPET id 0 under DRHD base 0xfed91000
Jul 19 20:41:53 xd kernel: DMAR-IR: Queued invalidation will be enabled
to support x2apic and Intr-remapping.
Jul 19 20:41:53 xd kernel: DMAR-IR: Enabled IRQ remapping in x2apic mode
Jul 19 20:41:53 xd kernel: x2apic enabled
Jul 19 20:41:53 xd kernel: Switched APIC routing to cluster x2apic.
Jul 19 20:41:53 xd kernel: clocksource: tsc-early: mask:
0xffffffffffffffff max_cycles: 0x22df1149949, max_idle_ns: 440795312789
ns
Jul 19 20:41:53 xd kernel: Calibrating delay loop (skipped), value
calculated using timer frequency.. 4838.40 BogoMIPS (lpj=9676800)
Jul 19 20:41:53 xd kernel: pid_max: default: 32768 minimum: 301
Jul 19 20:41:53 xd kernel: LSM: Security Framework initializing
Jul 19 20:41:53 xd kernel: Yama: disabled by default; enable with sysctl
kernel.yama.*
Jul 19 20:41:53 xd kernel: AppArmor: AppArmor initialized
Jul 19 20:41:53 xd kernel: TOMOYO Linux initialized
Jul 19 20:41:53 xd kernel: Mount-cache hash table entries: 32768 (order:
6, 262144 bytes, linear)
Jul 19 20:41:53 xd kernel: Mountpoint-cache hash table entries: 32768
(order: 6, 262144 bytes, linear)
Jul 19 20:41:53 xd kernel: x86/cpu: User Mode Instruction Prevention
(UMIP) activated
Jul 19 20:41:53 xd kernel: mce: CPU0: Thermal monitoring enabled (TM1)
Jul 19 20:41:53 xd kernel: process: using mwait in idle threads
Jul 19 20:41:53 xd kernel: Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
Jul 19 20:41:53 xd kernel: Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0,
1GB 0
Jul 19 20:41:53 xd kernel: Spectre V1 : Mitigation: usercopy/swapgs
barriers and __user pointer sanitization
Jul 19 20:41:53 xd kernel: Spectre V2 : Mitigation: Enhanced IBRS
Jul 19 20:41:53 xd kernel: Spectre V2 : Spectre v2 / SpectreRSB
mitigation: Filling RSB on context switch
Jul 19 20:41:53 xd kernel: Spectre V2 : mitigation: Enabling conditional
Indirect Branch Prediction Barrier
Jul 19 20:41:53 xd kernel: Speculative Store Bypass: Mitigation:
Speculative Store Bypass disabled via prctl and seccomp
Jul 19 20:41:53 xd kernel: Freeing SMP alternatives memory: 32K
Jul 19 20:41:53 xd kernel: smpboot: CPU0: 11th Gen Intel(R) Core(TM)
i5-1135G7 @ 2.40GHz (family: 0x6, model: 0x8c, stepping: 0x1)
Jul 19 20:41:53 xd kernel: Performance Events: PEBS fmt4+-baseline,
AnyThread deprecated, Icelake events, 32-deep LBR, full-width counters,
Intel PMU driver.
Jul 19 20:41:53 xd kernel: ... version: 5
Jul 19 20:41:53 xd kernel: ... bit width: 48
Jul 19 20:41:53 xd kernel: ... generic registers: 8
Jul 19 20:41:53 xd kernel: ... value mask: 0000ffffffffffff
Jul 19 20:41:53 xd kernel: ... max period: 00007fffffffffff
Jul 19 20:41:53 xd kernel: ... fixed-purpose events: 4
Jul 19 20:41:53 xd kernel: ... event mask: 0001000f000000ff
Jul 19 20:41:53 xd kernel: rcu: Hierarchical SRCU implementation.
Jul 19 20:41:53 xd kernel: NMI watchdog: Enabled. Permanently consumes
one hw-PMU counter.
Jul 19 20:41:53 xd kernel: smp: Bringing up secondary CPUs ...
Jul 19 20:41:53 xd kernel: x86: Booting SMP configuration:
Jul 19 20:41:53 xd kernel: .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7
Jul 19 20:41:53 xd kernel: smp: Brought up 1 node, 8 CPUs
Jul 19 20:41:53 xd kernel: smpboot: Max logical packages: 1
Jul 19 20:41:53 xd kernel: smpboot: Total of 8 processors activated
(38707.20 BogoMIPS)
Jul 19 20:41:53 xd kernel: node 0 deferred pages initialised in 20ms
Jul 19 20:41:53 xd kernel: devtmpfs: initialized
Jul 19 20:41:53 xd kernel: x86/mm: Memory block size: 128MB
Jul 19 20:41:53 xd kernel: PM: Registering ACPI NVS region [mem
0x442ff000-0x44b2efff] (8585216 bytes)
Jul 19 20:41:53 xd kernel: clocksource: jiffies: mask: 0xffffffff
max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
Jul 19 20:41:53 xd kernel: futex hash table entries: 2048 (order: 5,
131072 bytes, linear)
Jul 19 20:41:53 xd kernel: pinctrl core: initialized pinctrl subsystem
Jul 19 20:41:53 xd kernel: NET: Registered protocol family 16
Jul 19 20:41:53 xd kernel: audit: initializing netlink subsys (disabled)
Jul 19 20:41:53 xd kernel: audit: type=2000 audit(1658259710.028:1):
state=initialized audit_enabled=0 res=1
Jul 19 20:41:53 xd kernel: thermal_sys: Registered thermal governor
'fair_share'
Jul 19 20:41:53 xd kernel: thermal_sys: Registered thermal governor
'bang_bang'
Jul 19 20:41:53 xd kernel: thermal_sys: Registered thermal governor
'step_wise'
Jul 19 20:41:53 xd kernel: thermal_sys: Registered thermal governor
'user_space'
Jul 19 20:41:53 xd kernel: thermal_sys: Registered thermal governor
'power_allocator'
Jul 19 20:41:53 xd kernel: cpuidle: using governor ladder
Jul 19 20:41:53 xd kernel: cpuidle: using governor menu
Jul 19 20:41:53 xd kernel: ACPI: bus type PCI registered
Jul 19 20:41:53 xd kernel: acpiphp: ACPI Hot Plug PCI Controller Driver
version: 0.5
Jul 19 20:41:53 xd kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at
[mem 0xc0000000-0xcfffffff] (base 0xc0000000)
Jul 19 20:41:53 xd kernel: PCI: MMCONFIG at [mem 0xc0000000-0xcfffffff]
reserved in E820
Jul 19 20:41:53 xd kernel: PCI: Using configuration type 1 for base
access
Jul 19 20:41:53 xd kernel: ENERGY_PERF_BIAS: Set to 'normal', was
'performance'
Jul 19 20:41:53 xd kernel: Kprobes globally optimized
Jul 19 20:41:53 xd kernel: HugeTLB registered 1.00 GiB page size,
pre-allocated 0 pages
Jul 19 20:41:53 xd kernel: HugeTLB registered 2.00 MiB page size,
pre-allocated 0 pages
Jul 19 20:41:53 xd kernel: ACPI: Added _OSI(Module Device)
Jul 19 20:41:53 xd kernel: ACPI: Added _OSI(Processor Device)
Jul 19 20:41:53 xd kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Jul 19 20:41:53 xd kernel: ACPI: Added _OSI(Processor Aggregator Device)
Jul 19 20:41:53 xd kernel: ACPI: Added _OSI(Linux-Dell-Video)
Jul 19 20:41:53 xd kernel: ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
Jul 19 20:41:53 xd kernel: ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS01._UPC], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS01._PLD], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS02._UPC], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS02._PLD], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS03._UPC], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS03._PLD], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS04._UPC], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS04._PLD], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS05._UPC], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS05._PLD], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS06._UPC], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS06._PLD], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS07._UPC], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS07._PLD], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS08._UPC], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS08._PLD], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS09._UPC], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS09._PLD], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS10._UPC], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS10._PLD], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.SS01._UPC], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.SS01._PLD], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.SS02._UPC], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.SS02._PLD], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.SS03._UPC], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.SS03._PLD], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.SS04._UPC], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.SS04._PLD], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.SS05._UPC], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.SS05._PLD], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.SS06._UPC], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.SS06._PLD], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI: 15 ACPI AML tables successfully
acquired and loaded
Jul 19 20:41:53 xd kernel: ACPI: Dynamic OEM Table Load:
Jul 19 20:41:53 xd kernel: ACPI: SSDT 0xFFFF997306398600 0001C6 (v02
PmRef Cpu0Psd 00003000 INTL 20160422)
Jul 19 20:41:53 xd kernel: ACPI: \_SB_.PR00: _OSC native thermal LVT
Acked
Jul 19 20:41:53 xd kernel: ACPI: Dynamic OEM Table Load:
Jul 19 20:41:53 xd kernel: ACPI: SSDT 0xFFFF9971C0F91800 000386 (v02
PmRef Cpu0Cst 00003001 INTL 20160422)
Jul 19 20:41:53 xd kernel: ACPI: Dynamic OEM Table Load:
Jul 19 20:41:53 xd kernel: ACPI: SSDT 0xFFFF9971C0C36800 0005C3 (v02
PmRef Cpu0Ist 00003000 INTL 20160422)
Jul 19 20:41:53 xd kernel: ACPI: Dynamic OEM Table Load:
Jul 19 20:41:53 xd kernel: ACPI: SSDT 0xFFFF9971C0F96800 00028B (v02
PmRef Cpu0Hwp 00003000 INTL 20160422)
Jul 19 20:41:53 xd kernel: ACPI: Dynamic OEM Table Load:
Jul 19 20:41:53 xd kernel: ACPI: SSDT 0xFFFF9971C0F87000 0008E7 (v02
PmRef ApIst 00003000 INTL 20160422)
Jul 19 20:41:53 xd kernel: ACPI: Dynamic OEM Table Load:
Jul 19 20:41:53 xd kernel: ACPI: SSDT 0xFFFF9971C0C33800 00048A (v02
PmRef ApHwp 00003000 INTL 20160422)
Jul 19 20:41:53 xd kernel: ACPI: Dynamic OEM Table Load:
Jul 19 20:41:53 xd kernel: ACPI: SSDT 0xFFFF9971C0C31000 0004D4 (v02
PmRef ApPsd 00003000 INTL 20160422)
Jul 19 20:41:53 xd kernel: ACPI: Dynamic OEM Table Load:
Jul 19 20:41:53 xd kernel: ACPI: SSDT 0xFFFF9971C0C30000 00048A (v02
PmRef ApCst 00003000 INTL 20160422)
Jul 19 20:41:53 xd kernel: ACPI: EC: EC started
Jul 19 20:41:53 xd kernel: ACPI: EC: interrupt blocked
Jul 19 20:41:53 xd kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
Jul 19 20:41:53 xd kernel: ACPI: \_SB_.PC00.LPCB.EC0_: Boot DSDT EC used
to handle transactions
Jul 19 20:41:53 xd kernel: ACPI: Interpreter enabled
Jul 19 20:41:53 xd kernel: ACPI: (supports S0 S3 S4 S5)
Jul 19 20:41:53 xd kernel: ACPI: Using IOAPIC for interrupt routing
Jul 19 20:41:53 xd kernel: PCI: Using host bridge windows from ACPI; if
necessary, use "pci=nocrs" and report a bug
Jul 19 20:41:53 xd kernel: ACPI: Enabled 7 GPEs in block 00 to 7F
Jul 19 20:41:53 xd kernel: ACPI: Power Resource [PCRP] (on)
Jul 19 20:41:53 xd kernel: ACPI: Power Resource [V0PR] (on)
Jul 19 20:41:53 xd kernel: ACPI: Power Resource [V1PR] (on)
Jul 19 20:41:53 xd kernel: ACPI: Power Resource [V2PR] (on)
Jul 19 20:41:53 xd kernel: ACPI: Power Resource [WRST] (on)
Jul 19 20:41:53 xd kernel: ACPI: Power Resource [V0PR] (on)
Jul 19 20:41:53 xd kernel: ACPI: Power Resource [V1PR] (on)
Jul 19 20:41:53 xd kernel: ACPI: Power Resource [V2PR] (on)
Jul 19 20:41:53 xd kernel: ACPI: Power Resource [V3PR] (on)
Jul 19 20:41:53 xd kernel: ACPI: Power Resource [FN00] (off)
Jul 19 20:41:53 xd kernel: ACPI: Power Resource [FN01] (off)
Jul 19 20:41:53 xd kernel: ACPI: Power Resource [FN02] (off)
Jul 19 20:41:53 xd kernel: ACPI: Power Resource [FN03] (off)
Jul 19 20:41:53 xd kernel: ACPI: Power Resource [FN04] (off)
Jul 19 20:41:53 xd kernel: ACPI: Power Resource [PIN] (off)
Jul 19 20:41:53 xd kernel: ACPI: PCI Root Bridge [PC00] (domain 0000
[bus 00-e0])
Jul 19 20:41:53 xd kernel: acpi PNP0A08:00: _OSC: OS supports
[ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
Jul 19 20:41:53 xd kernel: acpi PNP0A08:00: _OSC: OS now controls
[PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR]
Jul 19 20:41:53 xd kernel: PCI host bridge to bus 0000:00
Jul 19 20:41:53 xd kernel: pci_bus 0000:00: root bus resource [io
0x0000-0x0cf7 window]
Jul 19 20:41:53 xd kernel: pci_bus 0000:00: root bus resource [io
0x0d00-0xffff window]
Jul 19 20:41:53 xd kernel: pci_bus 0000:00: root bus resource [mem
0x000a0000-0x000bffff window]
Jul 19 20:41:53 xd kernel: pci_bus 0000:00: root bus resource [mem
0x4f800000-0xbfffffff window]
Jul 19 20:41:53 xd kernel: pci_bus 0000:00: root bus resource [mem
0x4000000000-0x7fffffffff window]
Jul 19 20:41:53 xd kernel: pci_bus 0000:00: root bus resource [bus
00-e0]
Jul 19 20:41:53 xd kernel: pci 0000:00:00.0: [8086:9a14] type 00 class
0x060000
Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: [8086:9a49] type 00 class
0x030000
Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: reg 0x10: [mem
0x6014000000-0x6014ffffff 64bit]
Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: reg 0x18: [mem
0x4000000000-0x400fffffff 64bit pref]
Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: reg 0x20: [io
0x5000-0x503f]
Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: BAR 2: assigned to efifb
Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: DMAR: Skip IOMMU disabling
for graphics
Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: reg 0x344: [mem
0x00000000-0x00ffffff 64bit]
Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: VF(n) BAR0 space: [mem
0x00000000-0x06ffffff 64bit] (contains BAR0 for 7 VFs)
Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: reg 0x34c: [mem
0x00000000-0x1fffffff 64bit pref]
Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: VF(n) BAR2 space: [mem
0x00000000-0xdfffffff 64bit pref] (contains BAR2 for 7 VFs)
Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: [8086:9a09] type 01 class
0x060400
Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: PME# supported from D0
D3hot D3cold
Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: PTM enabled (root), 4ns
granularity
Jul 19 20:41:53 xd kernel: pci 0000:00:08.0: [8086:9a11] type 00 class
0x088000
Jul 19 20:41:53 xd kernel: pci 0000:00:08.0: reg 0x10: [mem
0x601540f000-0x601540ffff 64bit]
Jul 19 20:41:53 xd kernel: pci 0000:00:0e.0: [8086:9a0b] type 00 class
0x010400
Jul 19 20:41:53 xd kernel: pci 0000:00:0e.0: reg 0x10: [mem
0x6012000000-0x6013ffffff 64bit]
Jul 19 20:41:53 xd kernel: pci 0000:00:0e.0: reg 0x18: [mem
0x50000000-0x51ffffff]
Jul 19 20:41:53 xd kernel: pci 0000:00:0e.0: reg 0x20: [mem
0x6015300000-0x60153fffff 64bit]
Jul 19 20:41:53 xd kernel: pci 0000:00:14.0: [8086:a0ed] type 00 class
0x0c0330
Jul 19 20:41:53 xd kernel: pci 0000:00:14.0: reg 0x10: [mem
0x53180000-0x5318ffff 64bit]
Jul 19 20:41:53 xd kernel: pci 0000:00:14.0: PME# supported from D3hot
D3cold
Jul 19 20:41:53 xd kernel: pci 0000:00:14.2: [8086:a0ef] type 00 class
0x050000
Jul 19 20:41:53 xd kernel: pci 0000:00:14.2: reg 0x10: [mem
0x6015404000-0x6015407fff 64bit]
Jul 19 20:41:53 xd kernel: pci 0000:00:14.2: reg 0x18: [mem
0x601540e000-0x601540efff 64bit]
Jul 19 20:41:53 xd kernel: pci 0000:00:15.0: [8086:a0e8] type 00 class
0x0c8000
Jul 19 20:41:53 xd kernel: pci 0000:00:15.0: reg 0x10: [mem
0x00000000-0x00000fff 64bit]
Jul 19 20:41:53 xd kernel: pci 0000:00:15.3: [8086:a0eb] type 00 class
0x0c8000
Jul 19 20:41:53 xd kernel: pci 0000:00:15.3: reg 0x10: [mem
0x00000000-0x00000fff 64bit]
Jul 19 20:41:53 xd kernel: pci 0000:00:16.0: [8086:a0e0] type 00 class
0x078000
Jul 19 20:41:53 xd kernel: pci 0000:00:16.0: reg 0x10: [mem
0x601540b000-0x601540bfff 64bit]
Jul 19 20:41:53 xd kernel: pci 0000:00:16.0: PME# supported from D3hot
Jul 19 20:41:53 xd kernel: pci 0000:00:17.0: [8086:09ab] type 00 class
0x088000
Jul 19 20:41:53 xd kernel: pci 0000:00:19.0: [8086:a0c5] type 00 class
0x0c8000
Jul 19 20:41:53 xd kernel: pci 0000:00:19.0: reg 0x10: [mem
0x00000000-0x00000fff 64bit]
Jul 19 20:41:53 xd kernel: pci 0000:00:19.1: [8086:a0c6] type 00 class
0x0c8000
Jul 19 20:41:53 xd kernel: pci 0000:00:19.1: reg 0x10: [mem
0x00000000-0x00000fff 64bit]
Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: [8086:a0b0] type 01 class
0x060400
Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: PME# supported from D0
D3hot D3cold
Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: PTM enabled (root), 4ns
granularity
Jul 19 20:41:53 xd kernel: pci 0000:00:1d.1: [8086:a0b1] type 01 class
0x060400
Jul 19 20:41:53 xd kernel: pci 0000:00:1d.1: PME# supported from D0
D3hot D3cold
Jul 19 20:41:53 xd kernel: pci 0000:00:1d.1: PTM enabled (root), 4ns
granularity
Jul 19 20:41:53 xd kernel: pci 0000:00:1f.0: [8086:a082] type 00 class
0x060100
Jul 19 20:41:53 xd kernel: pci 0000:00:1f.3: [8086:a0c8] type 00 class
0x040100
Jul 19 20:41:53 xd kernel: pci 0000:00:1f.3: reg 0x10: [mem
0x6015400000-0x6015403fff 64bit]
Jul 19 20:41:53 xd kernel: pci 0000:00:1f.3: reg 0x20: [mem
0x6015200000-0x60152fffff 64bit]
Jul 19 20:41:53 xd kernel: pci 0000:00:1f.3: PME# supported from D3hot
D3cold
Jul 19 20:41:53 xd kernel: pci 0000:00:1f.4: [8086:a0a3] type 00 class
0x0c0500
Jul 19 20:41:53 xd kernel: pci 0000:00:1f.4: reg 0x10: [mem
0x6015408000-0x60154080ff 64bit]
Jul 19 20:41:53 xd kernel: pci 0000:00:1f.4: reg 0x20: [io
0xefa0-0xefbf]
Jul 19 20:41:53 xd kernel: pci 0000:00:1f.5: [8086:a0a4] type 00 class
0x0c8000
Jul 19 20:41:53 xd kernel: pci 0000:00:1f.5: reg 0x10: [mem
0xfe010000-0xfe010fff]
Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: [10de:1f97] type 00 class
0x030200
Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: reg 0x10: [mem
0x52000000-0x52ffffff]
Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: reg 0x14: [mem
0x6000000000-0x600fffffff 64bit pref]
Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: reg 0x1c: [mem
0x6010000000-0x6011ffffff 64bit pref]
Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: reg 0x24: [io
0x4000-0x407f]
Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: reg 0x30: [mem
0xfff80000-0xffffffff pref]
Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: PME# supported from D0
D3hot D3cold
Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: 63.012 Gb/s available PCIe
bandwidth, limited by 16.0 GT/s PCIe x4 link at 0000:00:06.0 (capable of
252.048 Gb/s with 16.0 GT/s PCIe x16 link)
Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: PCI bridge to [bus 01]
Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: bridge window [io
0x4000-0x4fff]
Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: bridge window [mem
0x52000000-0x52ffffff]
Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: bridge window [mem
0x6000000000-0x6011ffffff 64bit pref]
Jul 19 20:41:53 xd kernel: pci 0000:02:00.0: [10ec:8168] type 00 class
0x020000
Jul 19 20:41:53 xd kernel: pci 0000:02:00.0: reg 0x10: [io
0x3000-0x30ff]
Jul 19 20:41:53 xd kernel: pci 0000:02:00.0: reg 0x18: [mem
0x53004000-0x53004fff 64bit]
Jul 19 20:41:53 xd kernel: pci 0000:02:00.0: reg 0x20: [mem
0x53000000-0x53003fff 64bit]
Jul 19 20:41:53 xd kernel: pci 0000:02:00.0: supports D1 D2
Jul 19 20:41:53 xd kernel: pci 0000:02:00.0: PME# supported from D0 D1
D2 D3hot D3cold
Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: PCI bridge to [bus 02]
Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: bridge window [io
0x3000-0x3fff]
Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: bridge window [mem
0x53000000-0x530fffff]
Jul 19 20:41:53 xd kernel: pci 0000:03:00.0: [14c3:7961] type 00 class
0x028000
Jul 19 20:41:53 xd kernel: pci 0000:03:00.0: reg 0x10: [mem
0x6015000000-0x60150fffff 64bit pref]
Jul 19 20:41:53 xd kernel: pci 0000:03:00.0: reg 0x18: [mem
0x6015100000-0x6015103fff 64bit pref]
Jul 19 20:41:53 xd kernel: pci 0000:03:00.0: reg 0x20: [mem
0x6015104000-0x6015104fff 64bit pref]
Jul 19 20:41:53 xd kernel: pci 0000:03:00.0: supports D1 D2
Jul 19 20:41:53 xd kernel: pci 0000:03:00.0: PME# supported from D0 D1
D2 D3hot D3cold
Jul 19 20:41:53 xd kernel: pci 0000:00:1d.1: PCI bridge to [bus 03]
Jul 19 20:41:53 xd kernel: pci 0000:00:1d.1: bridge window [mem
0x6015000000-0x60151fffff 64bit pref]
Jul 19 20:41:53 xd kernel: ACPI: EC: interrupt unblocked
Jul 19 20:41:53 xd kernel: ACPI: EC: event unblocked
Jul 19 20:41:53 xd kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
Jul 19 20:41:53 xd kernel: ACPI: EC: GPE=0x6e
Jul 19 20:41:53 xd kernel: ACPI: \_SB_.PC00.LPCB.EC0_: Boot DSDT EC
initialization complete
Jul 19 20:41:53 xd kernel: ACPI: \_SB_.PC00.LPCB.EC0_: EC: Used to
handle transactions and events
Jul 19 20:41:53 xd kernel: iommu: Default domain type: Translated
Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: vgaarb: setting as boot VGA
device
Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: vgaarb: VGA device added:
decodes=io+mem,owns=io+mem,locks=none
Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: vgaarb: bridge control
possible
Jul 19 20:41:53 xd kernel: vgaarb: loaded
Jul 19 20:41:53 xd kernel: EDAC MC: Ver: 3.0.0
Jul 19 20:41:53 xd kernel: Registered efivars operations
Jul 19 20:41:53 xd kernel: NetLabel: Initializing
Jul 19 20:41:53 xd kernel: NetLabel: domain hash size = 128
Jul 19 20:41:53 xd kernel: NetLabel: protocols = UNLABELED CIPSOv4
CALIPSO
Jul 19 20:41:53 xd kernel: NetLabel: unlabeled traffic allowed by
default
Jul 19 20:41:53 xd kernel: PCI: Using ACPI for IRQ routing
Jul 19 20:41:53 xd kernel: PCI: pci_cache_line_size set to 64 bytes
Jul 19 20:41:53 xd kernel: pci 0000:00:1f.5: can't claim BAR 0 [mem
0xfe010000-0xfe010fff]: no compatible bridge window
Jul 19 20:41:53 xd kernel: e820: reserve RAM buffer [mem
0x0009f000-0x0009ffff]
Jul 19 20:41:53 xd kernel: e820: reserve RAM buffer [mem
0x3bee4000-0x3bffffff]
Jul 19 20:41:53 xd kernel: e820: reserve RAM buffer [mem
0x3bf66000-0x3bffffff]
Jul 19 20:41:53 xd kernel: e820: reserve RAM buffer [mem
0x3bf69000-0x3bffffff]
Jul 19 20:41:53 xd kernel: e820: reserve RAM buffer [mem
0x3fd99000-0x3fffffff]
Jul 19 20:41:53 xd kernel: e820: reserve RAM buffer [mem
0x424af000-0x43ffffff]
Jul 19 20:41:53 xd kernel: e820: reserve RAM buffer [mem
0x44c00000-0x47ffffff]
Jul 19 20:41:53 xd kernel: e820: reserve RAM buffer [mem
0x4b0800000-0x4b3ffffff]
Jul 19 20:41:53 xd kernel: clocksource: Switched to clocksource
tsc-early
Jul 19 20:41:53 xd kernel: VFS: Disk quotas dquot_6.6.0
Jul 19 20:41:53 xd kernel: VFS: Dquot-cache hash table entries: 512
(order 0, 4096 bytes)
Jul 19 20:41:53 xd kernel: AppArmor: AppArmor Filesystem Enabled
Jul 19 20:41:53 xd kernel: pnp: PnP ACPI init
Jul 19 20:41:53 xd kernel: system 00:00: [io 0x0680-0x069f] has been
reserved
Jul 19 20:41:53 xd kernel: system 00:00: [io 0x164e-0x164f] has been
reserved
Jul 19 20:41:53 xd kernel: system 00:00: [io 0xfd60-0xfd63] has been
reserved
Jul 19 20:41:53 xd kernel: system 00:00: Plug and Play ACPI device, IDs
PNP0c02 (active)
Jul 19 20:41:53 xd kernel: pnp 00:01: Plug and Play ACPI device, IDs
PNP0b00 (active)
Jul 19 20:41:53 xd kernel: system 00:02: [io 0x1854-0x1857] has been
reserved
Jul 19 20:41:53 xd kernel: system 00:02: Plug and Play ACPI device, IDs
INT3f0d PNP0c02 (active)
Jul 19 20:41:53 xd kernel: pnp 00:03: Plug and Play ACPI device, IDs
PNP0303 (active)
Jul 19 20:41:53 xd kernel: pnp 00:04: disabling [mem
0xc0000000-0xcfffffff] because it overlaps 0000:00:02.0 BAR 9 [mem
0x00000000-0xdfffffff 64bit pref]
Jul 19 20:41:53 xd kernel: system 00:04: [mem 0xfedc0000-0xfedc7fff] has
been reserved
Jul 19 20:41:53 xd kernel: system 00:04: [mem 0xfeda0000-0xfeda0fff] has
been reserved
Jul 19 20:41:53 xd kernel: system 00:04: [mem 0xfeda1000-0xfeda1fff] has
been reserved
Jul 19 20:41:53 xd kernel: system 00:04: [mem 0xfed20000-0xfed7ffff]
could not be reserved
Jul 19 20:41:53 xd kernel: system 00:04: [mem 0xfed90000-0xfed93fff]
could not be reserved
Jul 19 20:41:53 xd kernel: system 00:04: [mem 0xfed45000-0xfed8ffff]
could not be reserved
Jul 19 20:41:53 xd kernel: system 00:04: [mem 0xfee00000-0xfeefffff] has
been reserved
Jul 19 20:41:53 xd kernel: system 00:04: Plug and Play ACPI device, IDs
PNP0c02 (active)
Jul 19 20:41:53 xd kernel: system 00:05: [io 0x1800-0x18fe] could not be
reserved
Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xfe000000-0xfe01ffff]
could not be reserved
Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xfe04c000-0xfe04ffff] has
been reserved
Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xfe050000-0xfe0affff] has
been reserved
Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xfe0d0000-0xfe0fffff] has
been reserved
Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xfe200000-0xfe7fffff] has
been reserved
Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xff000000-0xffffffff]
could not be reserved
Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xfd000000-0xfd68ffff] has
been reserved
Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xfd6b0000-0xfd6cffff] has
been reserved
Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xfd6f0000-0xfdffffff] has
been reserved
Jul 19 20:41:53 xd kernel: system 00:05: Plug and Play ACPI device, IDs
PNP0c02 (active)
Jul 19 20:41:53 xd kernel: system 00:06: [io 0x2000-0x20fe] has been
reserved
Jul 19 20:41:53 xd kernel: system 00:06: Plug and Play ACPI device, IDs
PNP0c02 (active)
Jul 19 20:41:53 xd kernel: system 00:07: Plug and Play ACPI device, IDs
PNP0c02 (active)
Jul 19 20:41:53 xd kernel: pnp: PnP ACPI: found 8 devices
Jul 19 20:41:53 xd kernel: clocksource: acpi_pm: mask: 0xffffff
max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Jul 19 20:41:53 xd kernel: NET: Registered protocol family 2
Jul 19 20:41:53 xd kernel: IP idents hash table entries: 262144 (order:
9, 2097152 bytes, linear)
Jul 19 20:41:53 xd kernel: tcp_listen_portaddr_hash hash table entries:
8192 (order: 5, 131072 bytes, linear)
Jul 19 20:41:53 xd kernel: TCP established hash table entries: 131072
(order: 8, 1048576 bytes, linear)
Jul 19 20:41:53 xd kernel: TCP bind hash table entries: 65536 (order: 8,
1048576 bytes, linear)
Jul 19 20:41:53 xd kernel: TCP: Hash tables configured (established
131072 bind 65536)
Jul 19 20:41:53 xd kernel: UDP hash table entries: 8192 (order: 6,
262144 bytes, linear)
Jul 19 20:41:53 xd kernel: UDP-Lite hash table entries: 8192 (order: 6,
262144 bytes, linear)
Jul 19 20:41:53 xd kernel: NET: Registered protocol family 1
Jul 19 20:41:53 xd kernel: NET: Registered protocol family 44
Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: can't claim BAR 6 [mem
0xfff80000-0xffffffff pref]: no compatible bridge window
Jul 19 20:41:53 xd kernel: pci_bus 0000:00: max bus depth: 1
pci_try_num: 2
Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: BAR 9: assigned [mem
0x4020000000-0x40ffffffff 64bit pref]
Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: BAR 7: assigned [mem
0x4010000000-0x4016ffffff 64bit]
Jul 19 20:41:53 xd kernel: pci 0000:00:15.0: BAR 0: assigned [mem
0x4017000000-0x4017000fff 64bit]
Jul 19 20:41:53 xd kernel: pci 0000:00:15.3: BAR 0: assigned [mem
0x4017001000-0x4017001fff 64bit]
Jul 19 20:41:53 xd kernel: pci 0000:00:19.0: BAR 0: assigned [mem
0x4017002000-0x4017002fff 64bit]
Jul 19 20:41:53 xd kernel: pci 0000:00:19.1: BAR 0: assigned [mem
0x4017003000-0x4017003fff 64bit]
Jul 19 20:41:53 xd kernel: pci 0000:00:1f.5: BAR 0: assigned [mem
0x4f800000-0x4f800fff]
Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: BAR 6: no space for [mem
size 0x00080000 pref]
Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: BAR 6: failed to assign
[mem size 0x00080000 pref]
Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: PCI bridge to [bus 01]
Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: bridge window [io
0x4000-0x4fff]
Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: bridge window [mem
0x52000000-0x52ffffff]
Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: bridge window [mem
0x6000000000-0x6011ffffff 64bit pref]
Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: PCI bridge to [bus 02]
Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: bridge window [io
0x3000-0x3fff]
Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: bridge window [mem
0x53000000-0x530fffff]
Jul 19 20:41:53 xd kernel: pci 0000:00:1d.1: PCI bridge to [bus 03]
Jul 19 20:41:53 xd kernel: pci 0000:00:1d.1: bridge window [mem
0x6015000000-0x60151fffff 64bit pref]
Jul 19 20:41:53 xd kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7
window]
Jul 19 20:41:53 xd kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff
window]
Jul 19 20:41:53 xd kernel: pci_bus 0000:00: resource 6 [mem
0x000a0000-0x000bffff window]
Jul 19 20:41:53 xd kernel: pci_bus 0000:00: resource 7 [mem
0x4f800000-0xbfffffff window]
Jul 19 20:41:53 xd kernel: pci_bus 0000:00: resource 8 [mem
0x4000000000-0x7fffffffff window]
Jul 19 20:41:53 xd kernel: pci_bus 0000:01: resource 0 [io
0x4000-0x4fff]
Jul 19 20:41:53 xd kernel: pci_bus 0000:01: resource 1 [mem
0x52000000-0x52ffffff]
Jul 19 20:41:53 xd kernel: pci_bus 0000:01: resource 2 [mem
0x6000000000-0x6011ffffff 64bit pref]
Jul 19 20:41:53 xd kernel: pci_bus 0000:02: resource 0 [io
0x3000-0x3fff]
Jul 19 20:41:53 xd kernel: pci_bus 0000:02: resource 1 [mem
0x53000000-0x530fffff]
Jul 19 20:41:53 xd kernel: pci_bus 0000:03: resource 2 [mem
0x6015000000-0x60151fffff 64bit pref]
Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: Video device with shadowed
ROM at [mem 0x000c0000-0x000dffff]
Jul 19 20:41:53 xd kernel: PCI: CLS 64 bytes, default 64
Jul 19 20:41:53 xd kernel: Trying to unpack rootfs image as initramfs...
Jul 19 20:41:53 xd kernel: Freeing initrd memory: 43668K
Jul 19 20:41:53 xd kernel: DMAR: No ATSR found
Jul 19 20:41:53 xd kernel: DMAR: dmar0: Using Queued invalidation
Jul 19 20:41:53 xd kernel: DMAR: dmar1: Using Queued invalidation
Jul 19 20:41:53 xd kernel: pci 0000:00:00.0: Adding to iommu group 0
Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: Adding to iommu group 1
Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: Adding to iommu group 2
Jul 19 20:41:53 xd kernel: pci 0000:00:08.0: Adding to iommu group 3
Jul 19 20:41:53 xd kernel: pci 0000:00:0e.0: Adding to iommu group 4
Jul 19 20:41:53 xd kernel: pci 0000:00:14.0: Adding to iommu group 5
Jul 19 20:41:53 xd kernel: pci 0000:00:14.2: Adding to iommu group 5
Jul 19 20:41:53 xd kernel: pci 0000:00:15.0: Adding to iommu group 6
Jul 19 20:41:53 xd kernel: pci 0000:00:15.3: Adding to iommu group 6
Jul 19 20:41:53 xd kernel: pci 0000:00:16.0: Adding to iommu group 7
Jul 19 20:41:53 xd kernel: pci 0000:00:17.0: Adding to iommu group 8
Jul 19 20:41:53 xd kernel: pci 0000:00:19.0: Adding to iommu group 9
Jul 19 20:41:53 xd kernel: pci 0000:00:19.1: Adding to iommu group 9
Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: Adding to iommu group 10
Jul 19 20:41:53 xd kernel: pci 0000:00:1d.1: Adding to iommu group 11
Jul 19 20:41:53 xd kernel: pci 0000:00:1f.0: Adding to iommu group 12
Jul 19 20:41:53 xd kernel: pci 0000:00:1f.3: Adding to iommu group 12
Jul 19 20:41:53 xd kernel: pci 0000:00:1f.4: Adding to iommu group 12
Jul 19 20:41:53 xd kernel: pci 0000:00:1f.5: Adding to iommu group 12
Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: Adding to iommu group 13
Jul 19 20:41:53 xd kernel: pci 0000:02:00.0: Adding to iommu group 14
Jul 19 20:41:53 xd kernel: pci 0000:03:00.0: Adding to iommu group 15
Jul 19 20:41:53 xd kernel: DMAR: Intel(R) Virtualization Technology for
Directed I/O
Jul 19 20:41:53 xd kernel: PCI-DMA: Using software bounce buffering for
IO (SWIOTLB)
Jul 19 20:41:53 xd kernel: software IO TLB: mapped [mem
0x0000000037663000-0x000000003b663000] (64MB)
Jul 19 20:41:53 xd kernel: clocksource: tsc: mask: 0xffffffffffffffff
max_cycles: 0x22df1149949, max_idle_ns: 440795312789 ns
Jul 19 20:41:53 xd kernel: clocksource: Switched to clocksource tsc
Jul 19 20:41:53 xd kernel: Initialise system trusted keyrings
Jul 19 20:41:53 xd kernel: Key type blacklist registered
Jul 19 20:41:53 xd kernel: workingset: timestamp_bits=36 max_order=22
bucket_order=0
Jul 19 20:41:53 xd kernel: zbud: loaded
Jul 19 20:41:53 xd kernel: integrity: Platform Keyring initialized
Jul 19 20:41:53 xd kernel: Key type asymmetric registered
Jul 19 20:41:53 xd kernel: Asymmetric key parser 'x509' registered
Jul 19 20:41:53 xd kernel: Block layer SCSI generic (bsg) driver version
0.4 loaded (major 251)
Jul 19 20:41:53 xd kernel: io scheduler mq-deadline registered
Jul 19 20:41:53 xd kernel: pcieport 0000:00:06.0: PME: Signaling with
IRQ 122
Jul 19 20:41:53 xd kernel: pcieport 0000:00:06.0: AER: enabled with IRQ
122
Jul 19 20:41:53 xd kernel: pcieport 0000:00:06.0: DPC: enabled with IRQ
122
Jul 19 20:41:53 xd kernel: pcieport 0000:00:06.0: DPC: error containment
capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4,
DL_ActiveErr+
Jul 19 20:41:53 xd kernel: pcieport 0000:00:1d.0: PME: Signaling with
IRQ 123
Jul 19 20:41:53 xd kernel: pcieport 0000:00:1d.0: AER: enabled with IRQ
123
Jul 19 20:41:53 xd kernel: pcieport 0000:00:1d.0: DPC: enabled with IRQ
123
Jul 19 20:41:53 xd kernel: pcieport 0000:00:1d.0: DPC: error containment
capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4,
DL_ActiveErr+
Jul 19 20:41:53 xd kernel: pcieport 0000:00:1d.1: PME: Signaling with
IRQ 124
Jul 19 20:41:53 xd kernel: pcieport 0000:00:1d.1: AER: enabled with IRQ
124
Jul 19 20:41:53 xd kernel: pcieport 0000:00:1d.1: DPC: enabled with IRQ
124
Jul 19 20:41:53 xd kernel: pcieport 0000:00:1d.1: DPC: error containment
capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4,
DL_ActiveErr+
Jul 19 20:41:53 xd kernel: shpchp: Standard Hot Plug PCI Controller
Driver version: 0.4
Jul 19 20:41:53 xd kernel: efifb: probing for efifb
Jul 19 20:41:53 xd kernel: efifb: framebuffer at 0x4000000000, using
8128k, total 8128k
Jul 19 20:41:53 xd kernel: efifb: mode is 1920x1080x32, linelength=7680,
pages=1
Jul 19 20:41:53 xd kernel: efifb: scrolling: redraw
Jul 19 20:41:53 xd kernel: efifb: Truecolor: size=8:8:8:8,
shift=24:16:8:0
Jul 19 20:41:53 xd kernel: Console: switching to colour frame buffer
device 240x67
Jul 19 20:41:53 xd kernel: fb0: EFI VGA frame buffer device
Jul 19 20:41:53 xd kernel: intel_idle: MWAIT substates: 0x11121020
Jul 19 20:41:53 xd kernel: Monitor-Mwait will be used to enter C-1 state
Jul 19 20:41:53 xd kernel: Monitor-Mwait will be used to enter C-2 state
Jul 19 20:41:53 xd kernel: Monitor-Mwait will be used to enter C-3 state
Jul 19 20:41:53 xd kernel: ACPI: \_SB_.PR00: Found 3 idle states
Jul 19 20:41:53 xd kernel: intel_idle: v0.5.1 model 0x8C
Jul 19 20:41:53 xd kernel: intel_idle: Local APIC timer is reliable in
all C-states
Jul 19 20:41:53 xd kernel: thermal LNXTHERM:00: registered as
thermal_zone0
Jul 19 20:41:53 xd kernel: ACPI: Thermal Zone [TZ00] (28 C)
Jul 19 20:41:53 xd kernel: Serial: 8250/16550 driver, 4 ports, IRQ
sharing enabled
Jul 19 20:41:53 xd kernel: hpet_acpi_add: no address or irqs in _CRS
Jul 19 20:41:53 xd kernel: Linux agpgart interface v0.103
Jul 19 20:41:53 xd kernel: AMD-Vi: AMD IOMMUv2 functionality not
available on this system - This is not a bug.
Jul 19 20:41:53 xd kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K] at
0x60,0x64 irq 1
Jul 19 20:41:53 xd kernel: i8042: PNP: PS/2 appears to have AUX port
disabled, if this is incorrect please boot with i8042.nopnp
Jul 19 20:41:53 xd kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Jul 19 20:41:53 xd kernel: mousedev: PS/2 mouse device common for all
mice
Jul 19 20:41:53 xd kernel: rtc_cmos 00:01: RTC can wake from S4
Jul 19 20:41:53 xd kernel: rtc_cmos 00:01: registered as rtc0
Jul 19 20:41:53 xd kernel: rtc_cmos 00:01: setting system clock to
2022-07-19T19:41:51 UTC (1658259711)
Jul 19 20:41:53 xd kernel: rtc_cmos 00:01: alarms up to one month, y3k,
242 bytes nvram
Jul 19 20:41:53 xd kernel: intel_pstate: Intel P-state driver
initializing
Jul 19 20:41:53 xd kernel: intel_pstate: HWP enabled
Jul 19 20:41:53 xd kernel: ledtrig-cpu: registered to indicate activity
on CPUs
Jul 19 20:41:53 xd kernel: NET: Registered protocol family 10
Jul 19 20:41:53 xd kernel: Segment Routing with IPv6
Jul 19 20:41:53 xd kernel: mip6: Mobile IPv6
Jul 19 20:41:53 xd kernel: NET: Registered protocol family 17
Jul 19 20:41:53 xd kernel: mpls_gso: MPLS GSO support
Jul 19 20:41:53 xd kernel: microcode: sig=0x806c1, pf=0x80,
revision=0x8a
Jul 19 20:41:53 xd kernel: microcode: Microcode Update Driver: v2.2.
Jul 19 20:41:53 xd kernel: resctrl: L2 allocation detected
Jul 19 20:41:53 xd kernel: resctrl: L2DATA allocation detected
Jul 19 20:41:53 xd kernel: resctrl: L2CODE allocation detected
Jul 19 20:41:53 xd kernel: IPI shorthand broadcast: enabled
Jul 19 20:41:53 xd kernel: sched_clock: Marking stable (804088381,
6362109)->(820685197, -10234707)
Jul 19 20:41:53 xd kernel: registered taskstats version 1
Jul 19 20:41:53 xd kernel: Loading compiled-in X.509 certificates
Jul 19 20:41:53 xd kernel: input: AT Translated Set 2 keyboard as
/devices/platform/i8042/serio0/input/input0
Jul 19 20:41:53 xd kernel: Loaded X.509 cert 'Debian Secure Boot CA:
6ccece7e4c6c0d1f6149f3dd27dfcc5cbb419ea1'
Jul 19 20:41:53 xd kernel: Loaded X.509 cert 'Debian Secure Boot Signer
2021 - linux: 4b6ef5abca669825178e052c84667ccbc0531f8c'
Jul 19 20:41:53 xd kernel: zswap: loaded using pool lzo/zbud
Jul 19 20:41:53 xd kernel: Key type ._fscrypt registered
Jul 19 20:41:53 xd kernel: Key type .fscrypt registered
Jul 19 20:41:53 xd kernel: Key type fscrypt-provisioning registered
Jul 19 20:41:53 xd kernel: AppArmor: AppArmor sha1 policy hashing
enabled
Jul 19 20:41:53 xd kernel: Freeing unused kernel image (initmem) memory:
2424K
Jul 19 20:41:53 xd kernel: Write protecting the kernel read-only data:
22528k
Jul 19 20:41:53 xd kernel: Freeing unused kernel image (text/rodata gap)
memory: 2040K
Jul 19 20:41:53 xd kernel: Freeing unused kernel image (rodata/data gap)
memory: 624K
Jul 19 20:41:53 xd kernel: x86/mm: Checked W+X mappings: passed, no W+X
pages found.
Jul 19 20:41:53 xd kernel: Run /init as init process
Jul 19 20:41:53 xd kernel: with arguments:
Jul 19 20:41:53 xd kernel: /init
Jul 19 20:41:53 xd kernel: with environment:
Jul 19 20:41:53 xd kernel: HOME=/
Jul 19 20:41:53 xd kernel: TERM=linux
Jul 19 20:41:53 xd kernel: BOOT_IMAGE=/vmlinuz-5.10.0-16-amd64
Jul 19 20:41:53 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block
query control method not found
Jul 19 20:41:53 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block
query control method not found
Jul 19 20:41:53 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block
query control method not found
Jul 19 20:41:53 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block
query control method not found
Jul 19 20:41:53 xd kernel: acpi PNP0C14:03: duplicate WMI GUID
05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
Jul 19 20:41:53 xd kernel: acpi PNP0C14:04: duplicate WMI GUID
05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
Jul 19 20:41:53 xd kernel: input: Lid Switch as
/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:21/PNP0C0D:00/input/input1
Jul 19 20:41:53 xd kernel: ACPI: Lid Switch [LID0]
Jul 19 20:41:53 xd kernel: input: Sleep Button as
/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2
Jul 19 20:41:53 xd kernel: ACPI: Sleep Button [SLPB]
Jul 19 20:41:53 xd kernel: input: Power Button as
/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input3
Jul 19 20:41:53 xd kernel: battery: ACPI: Battery Slot [BAT1] (battery
present)
Jul 19 20:41:53 xd kernel: vmd 0000:00:0e.0: PCI host bridge to bus
10000:e0
Jul 19 20:41:53 xd kernel: pci_bus 10000:e0: root bus resource [bus
e0-ff]
Jul 19 20:41:53 xd kernel: pci_bus 10000:e0: root bus resource [mem
0x50000000-0x51ffffff]
Jul 19 20:41:53 xd kernel: pci_bus 10000:e0: root bus resource [mem
0x6015302000-0x60153fffff 64bit]
Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: [8086:a0d3] type 00 class
0x010601
Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: reg 0x10: [mem
0x00000000-0x00001fff]
Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: reg 0x14: [mem
0x00000000-0x000000ff]
Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: reg 0x18: [io
0x0000-0x0007]
Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: reg 0x1c: [io
0x0000-0x0003]
Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: reg 0x20: [io
0x0000-0x001f]
Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: reg 0x24: [mem
0x50000000-0x500007ff]
Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: PME# supported from D3hot
Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: Adding to iommu group 4
Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.0: [8086:09ab] type 00 class
0x088000
Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.0: Adding to iommu group 4
Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: [8086:a0bc] type 01 class
0x060400
Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: PME# supported from D0
D3hot D3cold
Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: PTM enabled (root), 4ns
granularity
Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: Adding to iommu group 4
Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: Primary bus is hard wired
to 0
Jul 19 20:41:53 xd kernel: pci 10000:e1:00.0: [2646:500c] type 00 class
0x010802
Jul 19 20:41:53 xd kernel: pci 10000:e1:00.0: reg 0x10: [mem
0x50100000-0x50103fff 64bit]
Jul 19 20:41:53 xd kernel: pci 10000:e1:00.0: Adding to iommu group 4
Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: PCI bridge to [bus e1]
Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: bridge window [io
0x0000-0x0fff]
Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: bridge window [mem
0x50100000-0x501fffff]
Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: Primary bus is hard wired
to 0
Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: BAR 14: assigned [mem
0x50000000-0x500fffff]
Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 0: assigned [mem
0x50100000-0x50101fff]
Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: BAR 13: no space for [io
size 0x1000]
Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: BAR 13: failed to assign
[io size 0x1000]
Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 5: assigned [mem
0x50102000-0x501027ff]
Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 1: assigned [mem
0x50102800-0x501028ff]
Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 4: no space for [io
size 0x0020]
Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 4: failed to assign
[io size 0x0020]
Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 2: no space for [io
size 0x0008]
Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 2: failed to assign
[io size 0x0008]
Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 3: no space for [io
size 0x0004]
Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 3: failed to assign
[io size 0x0004]
Jul 19 20:41:53 xd kernel: pci 10000:e1:00.0: BAR 0: assigned [mem
0x50000000-0x50003fff 64bit]
Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: PCI bridge to [bus e1]
Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: bridge window [mem
0x50000000-0x500fffff]
Jul 19 20:41:53 xd kernel: pcieport 10000:e0:1c.4: can't derive routing
for PCI INT A
Jul 19 20:41:53 xd kernel: pcieport 10000:e0:1c.4: PCI INT A: no GSI
Jul 19 20:41:53 xd kernel: pcieport 10000:e0:1c.4: PME: Signaling with
IRQ 144
Jul 19 20:41:53 xd kernel: pcieport 10000:e0:1c.4: AER: enabled with IRQ
144
Jul 19 20:41:53 xd kernel: pcieport 10000:e0:1c.4: DPC: enabled with IRQ
144
Jul 19 20:41:53 xd kernel: pcieport 10000:e0:1c.4: DPC: error
containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP
PIO Log 4, DL_ActiveErr+
Jul 19 20:41:53 xd kernel: vmd 0000:00:0e.0: Bound to PCI domain 10000
Jul 19 20:41:53 xd kernel: i801_smbus 0000:00:1f.4: SPD Write Disable is
set
Jul 19 20:41:53 xd kernel: i801_smbus 0000:00:1f.4: SMBus using PCI
interrupt
Jul 19 20:41:53 xd kernel: i2c i2c-0: 2/2 memory slots populated (from
DMI)
Jul 19 20:41:53 xd kernel: i2c i2c-0: Successfully instantiated SPD at
0x50
Jul 19 20:41:53 xd kernel: hid: raw HID events driver (C) Jiri Kosina
Jul 19 20:41:53 xd kernel: ACPI: Power Button [PWRB]
Jul 19 20:41:53 xd kernel: ACPI: bus type USB registered
Jul 19 20:41:53 xd kernel: usbcore: registered new interface driver
usbfs
Jul 19 20:41:53 xd kernel: usbcore: registered new interface driver hub
Jul 19 20:41:53 xd kernel: usbcore: registered new device driver usb
Jul 19 20:41:53 xd kernel: SCSI subsystem initialized
Jul 19 20:41:53 xd kernel: intel-lpss 0000:00:15.0: enabling device
(0004 -> 0006)
Jul 19 20:41:53 xd kernel: idma64 idma64.0: Found Intel integrated DMA
64-bit
Jul 19 20:41:53 xd kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Jul 19 20:41:53 xd kernel: xhci_hcd 0000:00:14.0: new USB bus
registered, assigned bus number 1
Jul 19 20:41:53 xd kernel: xhci_hcd 0000:00:14.0: hcc params 0x20007fc1
hci version 0x120 quirks 0x0000000000009810
Jul 19 20:41:53 xd kernel: xhci_hcd 0000:00:14.0: cache line size of 64
is not supported
Jul 19 20:41:53 xd kernel: usb usb1: New USB device found,
idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
Jul 19 20:41:53 xd kernel: usb usb1: New USB device strings: Mfr=3,
Product=2, SerialNumber=1
Jul 19 20:41:53 xd kernel: usb usb1: Product: xHCI Host Controller
Jul 19 20:41:53 xd kernel: usb usb1: Manufacturer: Linux 5.10.0-16-amd64
xhci-hcd
Jul 19 20:41:53 xd kernel: usb usb1: SerialNumber: 0000:00:14.0
Jul 19 20:41:53 xd kernel: hub 1-0:1.0: USB hub found
Jul 19 20:41:53 xd kernel: hub 1-0:1.0: 12 ports detected
Jul 19 20:41:53 xd kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Jul 19 20:41:53 xd kernel: xhci_hcd 0000:00:14.0: new USB bus
registered, assigned bus number 2
Jul 19 20:41:53 xd kernel: xhci_hcd 0000:00:14.0: Host supports USB 3.1
Enhanced SuperSpeed
Jul 19 20:41:53 xd kernel: usb usb2: New USB device found,
idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
Jul 19 20:41:53 xd kernel: usb usb2: New USB device strings: Mfr=3,
Product=2, SerialNumber=1
Jul 19 20:41:53 xd kernel: usb usb2: Product: xHCI Host Controller
Jul 19 20:41:53 xd kernel: usb usb2: Manufacturer: Linux 5.10.0-16-amd64
xhci-hcd
Jul 19 20:41:53 xd kernel: usb usb2: SerialNumber: 0000:00:14.0
Jul 19 20:41:53 xd kernel: hub 2-0:1.0: USB hub found
Jul 19 20:41:53 xd kernel: hub 2-0:1.0: 4 ports detected
Jul 19 20:41:53 xd kernel: nvme nvme0: pci function 10000:e1:00.0
Jul 19 20:41:53 xd kernel: pcieport 10000:e0:1c.4: can't derive routing
for PCI INT A
Jul 19 20:41:53 xd kernel: nvme 10000:e1:00.0: PCI INT A: no GSI
Jul 19 20:41:53 xd kernel: libata version 3.00 loaded.
Jul 19 20:41:53 xd kernel: nvme nvme0: missing or invalid SUBNQN field.
Jul 19 20:41:53 xd kernel: nvme nvme0: Shutdown timeout set to 10
seconds
Jul 19 20:41:53 xd kernel: r8169 0000:02:00.0 eth0: RTL8168h/8111h,
08:8f:c3:4f:86:c5, XID 541, IRQ 147
Jul 19 20:41:53 xd kernel: r8169 0000:02:00.0 eth0: jumbo features
[frames: 9194 bytes, tx checksumming: ko]
Jul 19 20:41:53 xd kernel: nvme nvme0: 8/0/0 default/read/poll queues
Jul 19 20:41:53 xd kernel: nvme0n1: p1 p2 p3 p4 p5
Jul 19 20:41:53 xd kernel: intel-lpss 0000:00:15.3: enabling device
(0004 -> 0006)
Jul 19 20:41:53 xd kernel: idma64 idma64.1: Found Intel integrated DMA
64-bit
Jul 19 20:41:53 xd kernel: i2c_hid i2c-ELAN0515:01: supply vdd not
found, using dummy regulator
Jul 19 20:41:53 xd kernel: i2c_hid i2c-ELAN0515:01: supply vddl not
found, using dummy regulator
Jul 19 20:41:53 xd kernel: intel-lpss 0000:00:19.0: enabling device
(0004 -> 0006)
Jul 19 20:41:53 xd kernel: idma64 idma64.2: Found Intel integrated DMA
64-bit
Jul 19 20:41:53 xd kernel: intel-lpss 0000:00:19.1: enabling device
(0004 -> 0006)
Jul 19 20:41:53 xd kernel: idma64 idma64.3: Found Intel integrated DMA
64-bit
Jul 19 20:41:53 xd kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jul 19 20:41:53 xd kernel: input: ELAN0515:01 04F3:3142 Mouse as
/devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input4
Jul 19 20:41:53 xd kernel: input: ELAN0515:01 04F3:3142 Touchpad as
/devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input6
Jul 19 20:41:53 xd kernel: hid-generic 0018:04F3:3142.0001:
input,hidraw0: I2C HID v1.00 Mouse [ELAN0515:01 04F3:3142] on
i2c-ELAN0515:01
Jul 19 20:41:53 xd kernel: ahci 10000:e0:17.0: version 3.0
Jul 19 20:41:53 xd kernel: ahci 10000:e0:17.0: can't derive routing for
PCI INT A
Jul 19 20:41:53 xd kernel: ahci 10000:e0:17.0: PCI INT A: no GSI
Jul 19 20:41:53 xd kernel: ahci 10000:e0:17.0: AHCI 0001.0301 32 slots 2
ports 6 Gbps 0x3 impl SATA mode
Jul 19 20:41:53 xd kernel: ahci 10000:e0:17.0: flags: 64bit ncq sntf pm
clo only pio slum part deso sadm sds
Jul 19 20:41:53 xd kernel: scsi host0: ahci
Jul 19 20:41:53 xd kernel: scsi host1: ahci
Jul 19 20:41:53 xd kernel: ata1: SATA max UDMA/133 abar m2048@0x50102000
port 0x50102100 irq 157
Jul 19 20:41:53 xd kernel: ata2: SATA max UDMA/133 abar m2048@0x50102000
port 0x50102180 irq 157
Jul 19 20:41:53 xd kernel: ACPI Warning: \_SB.PC00.GFX0._DSM: Argument
#4 type mismatch - Found [Buffer], ACPI requires [Package]
(20200925/nsarguments-61)
Jul 19 20:41:53 xd kernel: ACPI Warning: \_SB.PC00.PEG0.PEGP._DSM:
Argument #4 type mismatch - Found [Buffer], ACPI requires [Package]
(20200925/nsarguments-61)
Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: optimus capabilities:
enabled, status dynamic power, hda bios codec supported
Jul 19 20:41:53 xd kernel: VGA switcheroo: detected Optimus DSM method
\_SB_.PC00.PEG0.PEGP handle
Jul 19 20:41:53 xd kernel: nouveau: detected PR support, will not use
DSM
Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: enabling device (0006
-> 0007)
Jul 19 20:41:53 xd kernel: checking generic (4000000000 7f0000) vs hw
(52000000 1000000)
Jul 19 20:41:53 xd kernel: checking generic (4000000000 7f0000) vs hw
(6000000000 10000000)
Jul 19 20:41:53 xd kernel: checking generic (4000000000 7f0000) vs hw
(6010000000 2000000)
Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: NVIDIA TU117 (167000a1)
Jul 19 20:41:53 xd kernel: i915 0000:00:02.0: [drm] VT-d active for gfx
access
Jul 19 20:41:53 xd kernel: checking generic (4000000000 7f0000) vs hw
(6014000000 1000000)
Jul 19 20:41:53 xd kernel: checking generic (4000000000 7f0000) vs hw
(4000000000 10000000)
Jul 19 20:41:53 xd kernel: fb0: switching to inteldrmfb from EFI VGA
Jul 19 20:41:53 xd kernel: Console: switching to colour dummy device
80x25
Jul 19 20:41:53 xd kernel: i915 0000:00:02.0: vgaarb: deactivate vga
console
Jul 19 20:41:53 xd kernel: i915 0000:00:02.0: vgaarb: changed VGA
decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
Jul 19 20:41:53 xd kernel: i915 0000:00:02.0: firmware: failed to load
i915/tgl_dmc_ver2_08.bin (-2)
Jul 19 20:41:53 xd kernel: firmware_class: See
https://wiki.debian.org/Firmware for information about missing firmware
Jul 19 20:41:53 xd kernel: i915 0000:00:02.0: Direct firmware load for
i915/tgl_dmc_ver2_08.bin failed with error -2
Jul 19 20:41:53 xd kernel: i915 0000:00:02.0: [drm] Failed to load DMC
firmware i915/tgl_dmc_ver2_08.bin. Disabling runtime power management.
Jul 19 20:41:53 xd kernel: i915 0000:00:02.0: [drm] DMC firmware
homepage:
https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/i915
Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: bios: version
90.17.74.00.2f
Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: firmware: failed to
load nvidia/tu117/nvdec/scrubber.bin (-2)
Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: firmware: failed to
load nvidia/tu117/acr/bl.bin (-2)
Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: firmware: failed to
load nvidia/tu117/acr/bl.bin (-2)
Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: firmware: failed to
load nvidia/tu117/acr/unload_bl.bin (-2)
Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: pmu: firmware
unavailable
Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: gr: firmware
unavailable
Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: sec2: firmware
unavailable
Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: fb: 2048 MiB GDDR5
Jul 19 20:41:53 xd kernel: [TTM] Zone kernel: Available graphics memory:
8082824 KiB
Jul 19 20:41:53 xd kernel: [TTM] Zone dma32: Available graphics memory:
2097152 KiB
Jul 19 20:41:53 xd kernel: [TTM] Initializing pool allocator
Jul 19 20:41:53 xd kernel: [TTM] Initializing DMA pool allocator
Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: DRM: VRAM: 2048 MiB
Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: DRM: GART: 536870912
MiB
Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: DRM: BIT table 'A' not
found
Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: DRM: BIT table 'L' not
found
Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: DRM: Pointer to TMDS
table not found
Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: DRM: DCB version 4.1
Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: DRM: failed to create
kernel channel, -22
Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: DRM: MM: using COPY for
buffer copies
Jul 19 20:41:53 xd kernel: usb 1-5: new low-speed USB device number 2
using xhci_hcd
Jul 19 20:41:53 xd kernel: [drm] Initialized nouveau 1.3.1 20120801 for
0000:01:00.0 on minor 1
Jul 19 20:41:53 xd kernel: usb 1-5: New USB device found, idVendor=046d,
idProduct=c077, bcdDevice=72.00
Jul 19 20:41:53 xd kernel: usb 1-5: New USB device strings: Mfr=1,
Product=2, SerialNumber=0
Jul 19 20:41:53 xd kernel: usb 1-5: Product: USB Optical Mouse
Jul 19 20:41:53 xd kernel: usb 1-5: Manufacturer: Logitech
Jul 19 20:41:53 xd kernel: ata2: SATA link down (SStatus 0 SControl 300)
Jul 19 20:41:53 xd kernel: ata1: SATA link down (SStatus 0 SControl 300)
Jul 19 20:41:53 xd kernel: input: Logitech USB Optical Mouse as
/devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.0/0003:046D:C077.0002/input/input7
Jul 19 20:41:53 xd kernel: hid-generic 0003:046D:C077.0002:
input,hidraw1: USB HID v1.11 Mouse [Logitech USB Optical Mouse] on
usb-0000:00:14.0-5/input0
Jul 19 20:41:53 xd kernel: usbcore: registered new interface driver
usbhid
Jul 19 20:41:53 xd kernel: usbhid: USB HID core driver
Jul 19 20:41:53 xd kernel: usb 1-7: new full-speed USB device number 3
using xhci_hcd
Jul 19 20:41:53 xd kernel: usb 1-7: New USB device found, idVendor=04f3,
idProduct=0c4f, bcdDevice= 1.61
Jul 19 20:41:53 xd kernel: usb 1-7: New USB device strings: Mfr=1,
Product=2, SerialNumber=0
Jul 19 20:41:53 xd kernel: usb 1-7: Product: ELAN:Fingerprint
Jul 19 20:41:53 xd kernel: usb 1-7: Manufacturer: ELAN
Jul 19 20:41:53 xd kernel: usb 1-8: new high-speed USB device number 4
using xhci_hcd
Jul 19 20:41:53 xd kernel: usb 1-8: New USB device found, idVendor=0408,
idProduct=a061, bcdDevice= 0.04
Jul 19 20:41:53 xd kernel: usb 1-8: New USB device strings: Mfr=1,
Product=2, SerialNumber=0
Jul 19 20:41:53 xd kernel: usb 1-8: Product: HD User Facing
Jul 19 20:41:53 xd kernel: usb 1-8: Manufacturer: SunplusIT Inc
Jul 19 20:41:53 xd kernel: usb 1-10: new high-speed USB device number 5
using xhci_hcd
Jul 19 20:41:53 xd kernel: usb 1-10: New USB device found,
idVendor=04ca, idProduct=3802, bcdDevice= 1.00
Jul 19 20:41:53 xd kernel: usb 1-10: New USB device strings: Mfr=5,
Product=6, SerialNumber=7
Jul 19 20:41:53 xd kernel: usb 1-10: Product: Wireless_Device
Jul 19 20:41:53 xd kernel: usb 1-10: Manufacturer: MediaTek Inc.
Jul 19 20:41:53 xd kernel: usb 1-10: SerialNumber: 000000000
Jul 19 20:41:53 xd kernel: [drm] Initialized i915 1.6.0 20200917 for
0000:00:02.0 on minor 0
Jul 19 20:41:53 xd kernel: [Firmware Bug]: ACPI(PEGP) defines _DOD but
not _DOS
Jul 19 20:41:53 xd kernel: ACPI: Video Device [PEGP] (multi-head: yes
rom: no post: no)
Jul 19 20:41:53 xd kernel: input: Video Bus as
/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/LNXVIDEO:00/input/input8
Jul 19 20:41:53 xd kernel: ACPI: Video Device [GFX0] (multi-head: yes
rom: no post: no)
Jul 19 20:41:53 xd kernel: input: Video Bus as
/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input9
Jul 19 20:41:53 xd kernel: vga_switcheroo: enabled
Jul 19 20:41:53 xd kernel: fbcon: i915drmfb (fb0) is primary device
Jul 19 20:41:53 xd kernel: Console: switching to colour frame buffer
device 240x67
Jul 19 20:41:53 xd kernel: i915 0000:00:02.0: [drm] fb0: i915drmfb frame
buffer device
Jul 19 20:41:53 xd kernel: PM: Image not found (code -22)
Jul 19 20:41:53 xd kernel: EXT4-fs (nvme0n1p3): mounting ext3 file
system using the ext4 subsystem
Jul 19 20:41:53 xd kernel: EXT4-fs (nvme0n1p3): mounted filesystem with
ordered data mode. Opts: (null)
Jul 19 20:41:53 xd kernel: Not activating Mandatory Access Control as
/sbin/tomoyo-init does not exist.
Jul 19 20:41:53 xd systemd[1]: Inserted module 'autofs4'
Jul 19 20:41:53 xd systemd[1]: systemd 247.3-7 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=unified)
Jul 19 20:41:53 xd systemd[1]: Detected architecture x86-64.
Jul 19 20:41:53 xd systemd[1]: Set hostname to <xd>.
Jul 19 20:41:53 xd systemd[1]:
/lib/systemd/system/plymouth-start.service:16: Unit configured to use
KillMode=none. This is unsafe, as it disables systemd's process
lifecycle management for the service. Please update your service to use
a safer KillMode=, such as 'mixed' or 'control-group'. Support for
KillMode=none is deprecated and will eventually be removed.
Jul 19 20:41:53 xd systemd[1]: Queued start job for default target
Graphical Interface.
Jul 19 20:41:53 xd systemd[1]: Created slice system-getty.slice.
Jul 19 20:41:53 xd systemd[1]: Created slice system-modprobe.slice.
Jul 19 20:41:53 xd systemd[1]: Created slice
system-systemd\x2dfsck.slice.
Jul 19 20:41:53 xd systemd[1]: Created slice User and Session Slice.
Jul 19 20:41:53 xd systemd[1]: Started Forward Password Requests to Wall
Directory Watch.
Jul 19 20:41:53 xd systemd[1]: Set up automount Arbitrary Executable
File Formats File System Automount Point.
Jul 19 20:41:53 xd systemd[1]: Reached target User and Group Name
Lookups.
Jul 19 20:41:53 xd systemd[1]: Reached target Remote File Systems.
Jul 19 20:41:53 xd systemd[1]: Reached target Slices.
Jul 19 20:41:53 xd systemd[1]: Listening on Device-mapper event daemon
FIFOs.
Jul 19 20:41:53 xd systemd[1]: Listening on LVM2 poll daemon socket.
Jul 19 20:41:53 xd systemd[1]: Listening on Syslog Socket.
Jul 19 20:41:53 xd systemd[1]: Listening on fsck to fsckd communication
Socket.
Jul 19 20:41:53 xd systemd[1]: Listening on initctl Compatibility Named
Pipe.
Jul 19 20:41:53 xd systemd[1]: Listening on Journal Audit Socket.
Jul 19 20:41:53 xd systemd[1]: Listening on Journal Socket (/dev/log).
Jul 19 20:41:53 xd systemd[1]: Listening on Journal Socket.
Jul 19 20:41:53 xd systemd[1]: Listening on udev Control Socket.
Jul 19 20:41:53 xd systemd[1]: Listening on udev Kernel Socket.
Jul 19 20:41:53 xd systemd[1]: Mounting Huge Pages File System...
Jul 19 20:41:53 xd systemd[1]: Mounting POSIX Message Queue File
System...
Jul 19 20:41:53 xd systemd[1]: Mounting Kernel Debug File System...
Jul 19 20:41:53 xd systemd[1]: Mounting Kernel Trace File System...
Jul 19 20:41:53 xd systemd[1]: Finished Availability of block devices.
Jul 19 20:41:53 xd systemd[1]: Starting Set the console keyboard
layout...
Jul 19 20:41:53 xd systemd[1]: Starting Create list of static device
nodes for the current kernel...
Jul 19 20:41:53 xd systemd[1]: Starting Monitoring of LVM2 mirrors,
snapshots etc. using dmeventd or progress polling...
Jul 19 20:41:53 xd systemd[1]: Starting Load Kernel Module configfs...
Jul 19 20:41:53 xd systemd[1]: Starting Load Kernel Module drm...
Jul 19 20:41:53 xd systemd[1]: Starting Load Kernel Module fuse...
Jul 19 20:41:53 xd systemd[1]: Condition check resulted in Set Up
Additional Binary Formats being skipped.
Jul 19 20:41:53 xd systemd[1]: Condition check resulted in File System
Check on Root Device being skipped.
Jul 19 20:41:53 xd systemd[1]: Starting Journal Service...
Jul 19 20:41:53 xd systemd[1]: Starting Load Kernel Modules...
Jul 19 20:41:53 xd systemd[1]: Starting Remount Root and Kernel File
Systems...
Jul 19 20:41:53 xd systemd[1]: Starting Coldplug All udev Devices...
Jul 19 20:41:53 xd systemd[1]: Mounted Huge Pages File System.
Jul 19 20:41:53 xd systemd[1]: Mounted POSIX Message Queue File System.
Jul 19 20:41:53 xd systemd[1]: Mounted Kernel Debug File System.
Jul 19 20:41:53 xd systemd[1]: Mounted Kernel Trace File System.
Jul 19 20:41:53 xd systemd[1]: Finished Create list of static device
nodes for the current kernel.
Jul 19 20:41:53 xd systemd[1]: modprobe@configfs.service: Succeeded.
Jul 19 20:41:53 xd systemd[1]: Finished Load Kernel Module configfs.
Jul 19 20:41:53 xd systemd[1]: modprobe@drm.service: Succeeded.
Jul 19 20:41:53 xd systemd[1]: Finished Load Kernel Module drm.
Jul 19 20:41:53 xd systemd[1]: Mounting Kernel Configuration File
System...
Jul 19 20:41:53 xd systemd[1]: Mounted Kernel Configuration File System.
Jul 19 20:41:53 xd kernel: fuse: init (API version 7.32)
Jul 19 20:41:53 xd systemd[1]: modprobe@fuse.service: Succeeded.
Jul 19 20:41:53 xd systemd[1]: Finished Load Kernel Module fuse.
Jul 19 20:41:53 xd systemd[1]: Mounting FUSE Control File System...
Jul 19 20:41:53 xd kernel: EXT4-fs (nvme0n1p3): re-mounted. Opts:
errors=remount-ro
Jul 19 20:41:53 xd systemd[1]: Finished Remount Root and Kernel File
Systems.
Jul 19 20:41:53 xd systemd[1]: Condition check resulted in Rebuild
Hardware Database being skipped.
Jul 19 20:41:53 xd systemd[1]: Condition check resulted in Platform
Persistent Storage Archival being skipped.
Jul 19 20:41:53 xd systemd[1]: Starting Load/Save Random Seed...
Jul 19 20:41:53 xd systemd[1]: Starting Create System Users...
Jul 19 20:41:53 xd systemd[1]: Mounted FUSE Control File System.
Jul 19 20:41:53 xd kernel: lp: driver loaded but no devices found
Jul 19 20:41:53 xd systemd[1]: Finished Load/Save Random Seed.
Jul 19 20:41:53 xd systemd[1]: Condition check resulted in First Boot
Complete being skipped.
Jul 19 20:41:53 xd kernel: ppdev: user-space parallel port driver
Jul 19 20:41:53 xd systemd[1]: Finished Create System Users.
Jul 19 20:41:53 xd systemd[1]: Starting Create Static Device Nodes in
/dev...
Jul 19 20:41:53 xd systemd[1]: Finished Load Kernel Modules.
Jul 19 20:41:53 xd systemd[1]: Starting Apply Kernel Variables...
Jul 19 20:41:53 xd systemd[1]: Finished Apply Kernel Variables.
Jul 19 20:41:53 xd systemd[1]: Finished Create Static Device Nodes in
/dev.
Jul 19 20:41:53 xd systemd[1]: Starting Rule-based Manager for Device
Events and Files...
Jul 19 20:41:53 xd systemd[1]: Finished Set the console keyboard layout.
Jul 19 20:41:53 xd systemd[1]: Started Journal Service.
Jul 19 20:41:53 xd kernel: input: Acer Wireless Radio Control as
/devices/LNXSYSTM:00/10251229:00/input/input10
Jul 19 20:41:53 xd kernel: intel_pmc_core INT33A1:00: initialized
Jul 19 20:41:53 xd kernel: input: Intel HID events as
/devices/platform/INTC1051:00/input/input11
Jul 19 20:41:53 xd kernel: intel-hid INTC1051:00: platform supports 5
button array
Jul 19 20:41:53 xd kernel: input: Intel HID 5 button array as
/devices/platform/INTC1051:00/input/input12
Jul 19 20:41:53 xd kernel: ACPI: AC Adapter [ACAD] (on-line)
Jul 19 20:41:53 xd kernel: mc: Linux media interface: v0.10
Jul 19 20:41:53 xd kernel: mei_me 0000:00:16.0: enabling device (0000 ->
0002)
Jul 19 20:41:53 xd kernel: videodev: Linux video capture interface:
v2.00
Jul 19 20:41:53 xd kernel: ee1004 0-0050: 512 byte EE1004-compliant SPD
EEPROM, read-only
Jul 19 20:41:53 xd kernel: iTCO_vendor_support: vendor-support=0
Jul 19 20:41:53 xd kernel: iTCO_wdt: Intel TCO WatchDog Timer Driver
v1.11
Jul 19 20:41:53 xd kernel: iTCO_wdt: Found a Intel PCH TCO device
(Version=6, TCOBASE=0x0400)
Jul 19 20:41:53 xd kernel: iTCO_wdt: initialized. heartbeat=30 sec
(nowayout=0)
Jul 19 20:41:53 xd kernel: EXT4-fs (nvme0n1p2): mounting ext2 file
system using the ext4 subsystem
Jul 19 20:41:53 xd kernel: EXT4-fs (nvme0n1p2): mounted filesystem
without journal. Opts: (null)
Jul 19 20:41:53 xd kernel: ext2 filesystem being mounted at /boot
supports timestamps until 2038 (0x7fffffff)
Jul 19 20:41:53 xd kernel: uvcvideo: Found UVC 1.00 device HD User
Facing (0408:a061)
Jul 19 20:41:53 xd kernel: Adding 31182844k swap on /dev/nvme0n1p4.
Priority:-2 extents:1 across:31182844k SSFS
Jul 19 20:41:53 xd kernel: input: HD User Facing: HD User Facing as
/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/input/input13
Jul 19 20:41:53 xd kernel: acer_wmi: Acer Laptop ACPI-WMI Extras
Jul 19 20:41:53 xd kernel: acer_wmi: Function bitmap for Communication
Button: 0x801
Jul 19 20:41:53 xd kernel: input: Acer WMI hotkeys as
/devices/virtual/input/input14
Jul 19 20:41:53 xd kernel: cryptd: max_cpu_qlen set to 1000
Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.900:2):
apparmor="STATUS" operation="profile_load" profile="unconfined"
name="lsb_release" pid=401 comm="apparmor_parser"
Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.900:3):
apparmor="STATUS" operation="profile_load" profile="unconfined"
name="libreoffice-oopslash" pid=402 comm="apparmor_parser"
Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.900:4):
apparmor="STATUS" operation="profile_load" profile="unconfined"
name="nvidia_modprobe" pid=405 comm="apparmor_parser"
Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.900:5):
apparmor="STATUS" operation="profile_load" profile="unconfined"
name="nvidia_modprobe//kmod" pid=405 comm="apparmor_parser"
Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.900:6):
apparmor="STATUS" operation="profile_load" profile="unconfined"
name="/usr/bin/man" pid=403 comm="apparmor_parser"
Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.900:7):
apparmor="STATUS" operation="profile_load" profile="unconfined"
name="man_filter" pid=403 comm="apparmor_parser"
Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.900:8):
apparmor="STATUS" operation="profile_load" profile="unconfined"
name="man_groff" pid=403 comm="apparmor_parser"
Jul 19 20:41:53 xd kernel: usbcore: registered new interface driver
uvcvideo
Jul 19 20:41:53 xd kernel: USB Video Class driver (1.1.1)
Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.912:9):
apparmor="STATUS" operation="profile_load" profile="unconfined"
name="libreoffice-xpdfimport" pid=412 comm="apparmor_parser"
Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.912:10):
apparmor="STATUS" operation="profile_load" profile="unconfined"
name="/usr/sbin/cups-browsed" pid=408 comm="apparmor_parser"
Jul 19 20:41:53 xd kernel: pstore: Using crash dump compression: deflate
Jul 19 20:41:53 xd kernel: input: ELAN0515:01 04F3:3142 Mouse as
/devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input15
Jul 19 20:41:53 xd kernel: input: ELAN0515:01 04F3:3142 Touchpad as
/devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input17
Jul 19 20:41:53 xd kernel: hid-multitouch 0018:04F3:3142.0001:
input,hidraw0: I2C HID v1.00 Mouse [ELAN0515:01 04F3:3142] on
i2c-ELAN0515:01
Jul 19 20:41:53 xd kernel: pstore: Registered efi as persistent store
backend
Jul 19 20:41:54 xd kernel: input: PC Speaker as
/devices/platform/pcspkr/input/input18
Jul 19 20:41:54 xd kernel: AVX2 version of gcm_enc/dec engaged.
Jul 19 20:41:54 xd kernel: AES CTR mode by8 optimization enabled
Jul 19 20:41:54 xd kernel: resource sanity check: requesting [mem
0xfedc0000-0xfedcdfff], which spans more than pnp 00:04 [mem
0xfedc0000-0xfedc7fff]
Jul 19 20:41:54 xd kernel: caller
tgl_uncore_imc_freerunning_init_box+0xbb/0x100 [intel_uncore] mapping
multiple BARs
Jul 19 20:41:54 xd kernel: snd_hda_intel 0000:00:1f.3: DSP detected with
PCI class/subclass/prog-if info 0x040100
Jul 19 20:41:54 xd kernel: snd_hda_intel 0000:00:1f.3: Digital mics
found on Skylake+ platform, using SOF driver
Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: DSP detected with
PCI class/subclass/prog-if info 0x040100
Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: Digital mics
found on Skylake+ platform, using SOF driver
Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: enabling device
(0000 -> 0002)
Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: DSP detected with
PCI class/subclass/prog-if 0x040100
Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: bound
0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
Jul 19 20:41:54 xd kernel: r8169 0000:02:00.0: firmware: failed to load
rtl_nic/rtl8168h-2.fw (-2)
Jul 19 20:41:54 xd kernel: r8169 0000:02:00.0: Direct firmware load for
rtl_nic/rtl8168h-2.fw failed with error -2
Jul 19 20:41:54 xd kernel: r8169 0000:02:00.0: Unable to load firmware
rtl_nic/rtl8168h-2.fw (-2)
Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: use msi interrupt
mode
Jul 19 20:41:54 xd kernel: Generic FE-GE Realtek PHY r8169-0-200:00:
attached PHY driver [Generic FE-GE Realtek PHY]
(mii_bus:phy_addr=r8169-0-200:00, irq=IGNORE)
Jul 19 20:41:54 xd kernel: alg: No test for fips(ansi_cprng)
(fips_ansi_cprng)
Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: hda codecs found,
mask 5
Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: using HDA machine
driver skl_hda_dsp_generic now
Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: DMICs detected in
NHLT tables: 2
Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: firmware: failed
to load intel/sof/sof-tgl.ri (-2)
Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: Direct firmware
load for intel/sof/sof-tgl.ri failed with error -2
Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: error: request
firmware intel/sof/sof-tgl.ri failed err: -2
Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: error: failed to
load DSP firmware -2
Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: error:
sof_probe_work failed err: -2
Jul 19 20:41:54 xd kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jul 19 20:41:54 xd kernel: Bluetooth: Core ver 2.22
Jul 19 20:41:54 xd kernel: NET: Registered protocol family 31
Jul 19 20:41:54 xd kernel: Bluetooth: HCI device and connection manager
initialized
Jul 19 20:41:54 xd kernel: Bluetooth: HCI socket layer initialized
Jul 19 20:41:54 xd kernel: Bluetooth: L2CAP socket layer initialized
Jul 19 20:41:54 xd kernel: Bluetooth: SCO socket layer initialized
Jul 19 20:41:54 xd kernel: usbcore: registered new interface driver
btusb
Jul 19 20:41:54 xd kernel: Bluetooth: BNEP (Ethernet Emulation) ver 1.3
Jul 19 20:41:54 xd kernel: Bluetooth: BNEP filters: protocol multicast
Jul 19 20:41:54 xd kernel: Bluetooth: BNEP socket layer initialized
Jul 19 20:41:54 xd kernel: mei_hdcp
0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0
(ops i915_hdcp_component_ops [i915])
Jul 19 20:41:54 xd kernel: intel_rapl_msr: PL4 support detected.
Jul 19 20:41:54 xd kernel: intel_rapl_common: Found RAPL domain package
Jul 19 20:41:54 xd kernel: intel_rapl_common: Found RAPL domain core
Jul 19 20:41:54 xd kernel: intel_rapl_common: Found RAPL domain uncore
Jul 19 20:41:55 xd kernel: rfkill: input handler disabled
Jul 19 20:42:03 xd kernel: nouveau 0000:01:00.0: fifo: fault 09
[PHYS_WRITE] at 000000007fef0000 engine c0 [BAR2] client 08
[HUB/HOST_CPU_NB] reason 0d [REGION_VIOLATION] on channel -1 [0000000000
unknown]
Jul 19 20:42:03 xd kernel: nouveau 0000:01:00.0: fifo: fault 09
[PHYS_WRITE] at 000000007fef0000 engine c0 [BAR2] client 08
[HUB/HOST_CPU_NB] reason 0d [REGION_VIOLATION] on channel -1 [0000000000
unknown]

...

Jul 19 20:42:26 xd kernel: nouveau 0000:01:00.0: fifo: PBDMA0: 01000000
[] ch 0 [007f992000 DRM] subc 0 mthd 0008 data 00000000
Jul 19 20:42:26 xd kernel: nouveau 0000:01:00.0: DRM: failed to idle
channel 0 [DRM]
Jul 19 20:42:26 xd kernel: nouveau 0000:01:00.0: fifo: PBDMA0: 01000000
[] ch 0 [007f992000 DRM] subc 0 mthd 0008 data 00000000
Jul 19 20:42:26 xd kernel: nouveau 0000:01:00.0: fifo: PBDMA0: 01000000
[] ch 0 [007f992000 DRM] subc 0 mthd 0008 data 00000000
Jul 19 20:42:26 xd kernel: nouveau 0000:01:00.0: fifo: PBDMA0: 01000000
[] ch 0 [007f992000 DRM] subc 0 mthd 0008 data 00000000
Jul 19 20:42:26 xd kernel: nouveau 0000:01:00.0: fifo: PBDMA0: 01000000
[] ch 0 [007f992000 DRM] subc 0 mthd 0008 data 00000000
Jul 19 20:42:26 xd kernel: ------------[ cut here ]------------
Jul 19 20:42:26 xd kernel: WARNING: CPU: 2 PID: 479 at
drivers/gpu/drm/nouveau/nvkm/subdev/mc/base.c:72
nvkm_mc_intr+0x14d/0x170 [nouveau]
Jul 19 20:42:26 xd kernel: Modules linked in: intel_rapl_msr
intel_rapl_common snd_soc_dmic mei_hdcp bnep btusb btrtl btbcm btintel
bluetooth x86_pkg_temp_thermal intel_powerclamp coretemp
jitterentropy_rng kvm_intel snd_hda_codec_hdmi snd_hda_codec_realtek
drbg snd_hda_codec_generic kvm snd_sof_pci snd_sof_intel_byt
snd_sof_intel_ipc snd_sof_intel_hda_common snd_sof_xtensa_dsp snd_sof
snd_sof_intel_hda irqbypass snd_soc_hdac_hda snd_hda_ext_core
aes_generic ghash_clmulni_intel snd_soc_acpi_intel_match snd_soc_acpi
ledtrig_audio snd_hda_intel snd_intel_dspcfg soundwire_intel
intel_cstate soundwire_generic_allocation snd_soc_core intel_uncore
joydev snd_compress soundwire_cadence aesni_intel pcspkr snd_hda_codec
crypto_simd cryptd glue_helper nls_ascii snd_hda_core ansi_cprng
nls_cp437 serio_raw snd_hwdep acer_wmi vfat ecdh_generic soundwire_bus
efi_pstore fat snd_pcm uvcvideo snd_timer videobuf2_vmalloc iTCO_wdt snd
videobuf2_memops intel_pmc_bxt wmi_bmof videobuf2_v4l2
iTCO_vendor_support watchdog
Jul 19 20:42:26 xd kernel: videobuf2_common soundcore ee1004 videodev
rfkill ecc mei_me libaes mc mei hid_multitouch evdev ac tpm_crb tpm_tis
tpm_tis_core tpm intel_hid intel_pmc_core sparse_keymap acpi_pad
rng_core acer_wireless msr parport_pc ppdev lp parport fuse configfs
efivarfs ip_tables x_tables autofs4 ext4 crc16 mbcache jbd2
crc32c_generic usbhid i915 nouveau ahci hid_generic libahci mxm_wmi ttm
i2c_algo_bit nvme libata drm_kms_helper xhci_pci nvme_core xhci_hcd
scsi_mod cec t10_pi crc_t10dif r8169 crct10dif_generic drm realtek
mdio_devres libphy usbcore crct10dif_pclmul crct10dif_common i2c_hid
crc32_pclmul crc32c_intel hid i2c_i801 i2c_smbus intel_lpss_pci
intel_lpss idma64 vmd usb_common fan button battery video wmi
Jul 19 20:42:26 xd kernel: CPU: 2 PID: 479 Comm: in:imklog Not tainted
5.10.0-16-amd64 #1 Debian 5.10.127-1
Jul 19 20:42:26 xd kernel: Hardware name: Acer Aspire
A517-52G/Jasmine_TL, BIOS V1.26 03/14/2022
Jul 19 20:42:26 xd kernel: RIP: 0010:nvkm_mc_intr+0x14d/0x170 [nouveau]
Jul 19 20:42:26 xd kernel: Code: 44 24 18 65 48 2b 04 25 28 00 00 00 75
2b 48 83 c4 20 5b 5d 41 5c 41 5d 41 5e 41 5f c3 41 8b 47 40 85 c0 74 ba
e9 3a 9d 0a 00 <0f> 0b 45 31 e4 c6 44 24 0f 00 e9 00 ff ff ff e8 df b8
d3 f9 66 66
Jul 19 20:42:26 xd kernel: RSP: 0018:ffffad10001c0ef0 EFLAGS: 00010046
Jul 19 20:42:26 xd kernel: RAX: 00000000ffffffff RBX: ffff997305c62280
RCX: 000000000000080b
Jul 19 20:42:26 xd kernel: RDX: 0000000000000000 RSI: ffffad10001c0f4f
RDI: ffffad1007000104
Jul 19 20:42:26 xd kernel: RBP: ffff9971e0b6c000 R08: ffff9971d129e900
R09: 0000000000000000
Jul 19 20:42:26 xd kernel: R10: 0000000000000000 R11: 0000000000000000
R12: 00000000ffffffff
Jul 19 20:42:26 xd kernel: R13: ffffad10001c0fac R14: 000000000000009e
R15: ffff9971e0c0a900
Jul 19 20:42:26 xd kernel: FS: 00007f586f6ae700(0000)
GS:ffff997560480000(0000) knlGS:0000000000000000
Jul 19 20:42:26 xd kernel: CS: 0010 DS: 0000 ES: 0000 CR0:
0000000080050033
Jul 19 20:42:26 xd kernel: CR2: 00007faf88013388 CR3: 0000000109b80005
CR4: 0000000000770ee0
Jul 19 20:42:26 xd kernel: PKRU: 55555554
Jul 19 20:42:26 xd kernel: Call Trace:
Jul 19 20:42:26 xd kernel: <IRQ>
Jul 19 20:42:26 xd kernel: ? gp100_mc_intr_update+0x54/0x80 [nouveau]
Jul 19 20:42:26 xd kernel: nvkm_pci_intr+0x4d/0x90 [nouveau]
Jul 19 20:42:26 xd kernel: __handle_irq_event_percpu+0x3d/0x160
Jul 19 20:42:26 xd kernel: handle_irq_event+0x57/0xb0
Jul 19 20:42:26 xd kernel: handle_edge_irq+0x87/0x220
Jul 19 20:42:26 xd kernel: asm_call_irq_on_stack+0xf/0x20
Jul 19 20:42:26 xd kernel: </IRQ>
Jul 19 20:42:26 xd kernel: common_interrupt+0xb0/0x130
Jul 19 20:42:26 xd kernel: asm_common_interrupt+0x1e/0x40
Jul 19 20:42:26 xd kernel: RIP: 0010:__check_heap_object+0x3b/0x110
Jul 19 20:42:26 xd kernel: Code: ee 00 48 89 f8 48 c1 fa 06 89 cf 48 c1
e2 0c 48 03 15 29 09 ee 00 48 39 d0 0f 82 b0 00 00 00 48 29 d0 8b 4e 18
48 99 48 f7 f9 <89> d0 0f 1f 44 00 00 8b 96 d0 00 00 00 39 c2 77 1c 41
89 c2 44 8b
Jul 19 20:42:26 xd kernel: RSP: 0018:ffffad1000adbde0 EFLAGS: 00000206
Jul 19 20:42:26 xd kernel: RAX: 000000000000001b RBX: 0000000000000077
RCX: 0000000000000400
Jul 19 20:42:26 xd kernel: RDX: 0000000000000000 RSI: ffff9971c0043500
RDI: 0000000000000001
Jul 19 20:42:26 xd kernel: RBP: ffff997242d46c77 R08: 0000000000000077
R09: 302e30303a31303a
Jul 19 20:42:26 xd kernel: R10: 0000000076756f6e R11: 0000000076756f6e
R12: ffff997242d46c00
Jul 19 20:42:26 xd kernel: R13: 0000000000000001 R14: ffff997242d46c00
R15: 0000000000000077
Jul 19 20:42:26 xd kernel: __check_object_size+0x136/0x150
Jul 19 20:42:26 xd kernel: syslog_print+0xc3/0x210
Jul 19 20:42:26 xd kernel: kmsg_read+0x3e/0x50
Jul 19 20:42:26 xd kernel: vfs_read+0x98/0x180
Jul 19 20:42:26 xd kernel: ksys_read+0x5f/0xe0
Jul 19 20:42:26 xd kernel: do_syscall_64+0x33/0x80
Jul 19 20:42:26 xd kernel: entry_SYSCALL_64_after_hwframe+0x44/0xa9
Jul 19 20:42:26 xd kernel: RIP: 0033:0x7f58700c908c
Jul 19 20:42:26 xd kernel: Code: ec 28 48 89 54 24 18 48 89 74 24 10 89
7c 24 08 e8 89 fc ff ff 48 8b 54 24 18 48 8b 74 24 10 41 89 c0 8b 7c 24
08 31 c0 0f 05 <48> 3d 00 f0 ff ff 77 34 44 89 c7 48 89 44 24 08 e8 bf
fc ff ff 48
Jul 19 20:42:26 xd kernel: RSP: 002b:00007f586f68d4d0 EFLAGS: 00000246
ORIG_RAX: 0000000000000000
Jul 19 20:42:26 xd kernel: RAX: ffffffffffffffda RBX: 0000000000000000
RCX: 00007f58700c908c
Jul 19 20:42:26 xd kernel: RDX: 0000000000001fa0 RSI: 00007f586f68dd00
RDI: 0000000000000005
Jul 19 20:42:26 xd kernel: RBP: 00005619c2c61920 R08: 0000000000000000
R09: 00005619c2c6ba38
Jul 19 20:42:26 xd kernel: R10: 0000000000000000 R11: 0000000000000246
R12: 00007f586f68dd00
Jul 19 20:42:26 xd kernel: R13: 0000000000001fa0 R14: 00007f586f68dd00
R15: 00007f586f68fc9c
Jul 19 20:42:26 xd kernel: ---[ end trace c1b76539949981fe ]---
Jul 19 20:42:26 xd kernel: nouveau 0000:01:00.0: fifo: fault 0f [] at
ffffffffffffffff engine ff [] client 7f [HUB/] reason 1f [] on channel
-1 [fffffffffffff000 unknown]
Re: Boot into Xen on debian11 [ In reply to ]
Here the ring buffer (journalctl -k -b -1) from the failed boot into
Xen.

-- Journal begins at Mon 2022-07-18 16:19:02 BST, ends at Tue 2022-07-19
20:43:04 BST. --
Jul 19 20:41:53 xd kernel: Linux version 5.10.0-16-amd64
(debian-kernel@lists.debian.org) (gcc-10 (Debian 10.2.1-6) 10.2.1
20210110, GNU ld (GNU Binutils for Debian) 2.35.2) #1 SMP Debian
5.10.127-1 (2022-06-30)
Jul 19 20:41:53 xd kernel: Command line:
BOOT_IMAGE=/vmlinuz-5.10.0-16-amd64 root=UUID=0123abcd ro quiet
Jul 19 20:41:53 xd kernel: x86/split lock detection: warning about
user-space split_locks
Jul 19 20:41:53 xd kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87
floating point registers'
Jul 19 20:41:53 xd kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE
registers'
Jul 19 20:41:53 xd kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX
registers'
Jul 19 20:41:53 xd kernel: x86/fpu: Supporting XSAVE feature 0x020:
'AVX-512 opmask'
Jul 19 20:41:53 xd kernel: x86/fpu: Supporting XSAVE feature 0x040:
'AVX-512 Hi256'
Jul 19 20:41:53 xd kernel: x86/fpu: Supporting XSAVE feature 0x080:
'AVX-512 ZMM_Hi256'
Jul 19 20:41:53 xd kernel: x86/fpu: Supporting XSAVE feature 0x200:
'Protection Keys User registers'
Jul 19 20:41:53 xd kernel: x86/fpu: xstate_offset[2]: 576,
xstate_sizes[2]: 256
Jul 19 20:41:53 xd kernel: x86/fpu: xstate_offset[5]: 832,
xstate_sizes[5]: 64
Jul 19 20:41:53 xd kernel: x86/fpu: xstate_offset[6]: 896,
xstate_sizes[6]: 512
Jul 19 20:41:53 xd kernel: x86/fpu: xstate_offset[7]: 1408,
xstate_sizes[7]: 1024
Jul 19 20:41:53 xd kernel: x86/fpu: xstate_offset[9]: 2432,
xstate_sizes[9]: 8
Jul 19 20:41:53 xd kernel: x86/fpu: Enabled xstate features 0x2e7,
context size is 2440 bytes, using 'compacted' format.
Jul 19 20:41:53 xd kernel: BIOS-provided physical RAM map:
Jul 19 20:41:53 xd kernel: BIOS-e820: [mem
0x0000000000000000-0x000000000009efff] usable
Jul 19 20:41:53 xd kernel: BIOS-e820: [mem
0x000000000009f000-0x00000000000fffff] reserved
Jul 19 20:41:53 xd kernel: BIOS-e820: [mem
0x0000000000100000-0x000000003fd98fff] usable
Jul 19 20:41:53 xd kernel: BIOS-e820: [mem
0x000000003fd99000-0x0000000040698fff] reserved
Jul 19 20:41:53 xd kernel: BIOS-e820: [mem
0x0000000040699000-0x00000000424aefff] usable
Jul 19 20:41:53 xd kernel: BIOS-e820: [mem
0x00000000424af000-0x000000004287efff] type 20
Jul 19 20:41:53 xd kernel: BIOS-e820: [mem
0x000000004287f000-0x00000000442fefff] reserved
Jul 19 20:41:53 xd kernel: BIOS-e820: [mem
0x00000000442ff000-0x0000000044b2efff] ACPI NVS
Jul 19 20:41:53 xd kernel: BIOS-e820: [mem
0x0000000044b2f000-0x0000000044bfefff] ACPI data
Jul 19 20:41:53 xd kernel: BIOS-e820: [mem
0x0000000044bff000-0x0000000044bfffff] usable
Jul 19 20:41:53 xd kernel: BIOS-e820: [mem
0x0000000044c00000-0x0000000048ffffff] reserved
Jul 19 20:41:53 xd kernel: BIOS-e820: [mem
0x0000000049e00000-0x000000004f7fffff] reserved
Jul 19 20:41:53 xd kernel: BIOS-e820: [mem
0x00000000c0000000-0x00000000cfffffff] reserved
Jul 19 20:41:53 xd kernel: BIOS-e820: [mem
0x00000000fe010000-0x00000000fe010fff] reserved
Jul 19 20:41:53 xd kernel: BIOS-e820: [mem
0x00000000fed20000-0x00000000fed7ffff] reserved
Jul 19 20:41:53 xd kernel: BIOS-e820: [mem
0x00000000ff500000-0x00000000ffffffff] reserved
Jul 19 20:41:53 xd kernel: BIOS-e820: [mem
0x0000000100000000-0x00000004b07fffff] usable
Jul 19 20:41:53 xd kernel: NX (Execute Disable) protection: active
Jul 19 20:41:53 xd kernel: efi: EFI v2.70 by INSYDE Corp.
Jul 19 20:41:53 xd kernel: efi: ACPI=0x44bfe000 ACPI 2.0=0x44bfe014
TPMFinalLog=0x44ac5000 SMBIOS=0x429de000 SMBIOS 3.0=0x429dc000
ESRT=0x3bf66a98 MOKvar=0x3bee4000
Jul 19 20:41:53 xd kernel: secureboot: Secure boot could not be
determined (mode 0)
Jul 19 20:41:53 xd kernel: SMBIOS 3.3.0 present.
Jul 19 20:41:53 xd kernel: DMI: Acer Aspire A517-52G/Jasmine_TL, BIOS
V1.26 03/14/2022
Jul 19 20:41:53 xd kernel: tsc: Detected 2400.000 MHz processor
Jul 19 20:41:53 xd kernel: tsc: Detected 2419.200 MHz TSC
Jul 19 20:41:53 xd kernel: e820: update [mem 0x00000000-0x00000fff]
usable ==> reserved
Jul 19 20:41:53 xd kernel: e820: remove [mem 0x000a0000-0x000fffff]
usable
Jul 19 20:41:53 xd kernel: last_pfn = 0x4b0800 max_arch_pfn =
0x400000000
Jul 19 20:41:53 xd kernel: MTRR default type: write-back
Jul 19 20:41:53 xd kernel: MTRR fixed ranges enabled:
Jul 19 20:41:53 xd kernel: 00000-9FFFF write-back
Jul 19 20:41:53 xd kernel: A0000-BFFFF uncachable
Jul 19 20:41:53 xd kernel: C0000-FFFFF write-protect
Jul 19 20:41:53 xd kernel: MTRR variable ranges enabled:
Jul 19 20:41:53 xd kernel: 0 base 0080000000 mask 7F80000000 uncachable
Jul 19 20:41:53 xd kernel: 1 base 0060000000 mask 7FE0000000 uncachable
Jul 19 20:41:53 xd kernel: 2 base 0050000000 mask 7FF0000000 uncachable
Jul 19 20:41:53 xd kernel: 3 base 004C000000 mask 7FFC000000 uncachable
Jul 19 20:41:53 xd kernel: 4 base 004B000000 mask 7FFF000000 uncachable
Jul 19 20:41:53 xd kernel: 5 base 4000000000 mask 4000000000 uncachable
Jul 19 20:41:53 xd kernel: 6 disabled
Jul 19 20:41:53 xd kernel: 7 disabled
Jul 19 20:41:53 xd kernel: 8 disabled
Jul 19 20:41:53 xd kernel: 9 disabled
Jul 19 20:41:53 xd kernel: x86/PAT: Configuration [0-7]: WB WC UC- UC WB
WP UC- WT
Jul 19 20:41:53 xd kernel: last_pfn = 0x44c00 max_arch_pfn = 0x400000000
Jul 19 20:41:53 xd kernel: esrt: Reserving ESRT space from
0x000000003bf66a98 to 0x000000003bf66ad0.
Jul 19 20:41:53 xd kernel: e820: update [mem 0x3bf66000-0x3bf66fff]
usable ==> reserved
Jul 19 20:41:53 xd kernel: e820: update [mem 0x3bee4000-0x3bee6fff]
usable ==> reserved
Jul 19 20:41:53 xd kernel: Using GB pages for direct mapping
Jul 19 20:41:53 xd kernel: RAMDISK: [mem 0x32aa5000-0x35549fff]
Jul 19 20:41:53 xd kernel: ACPI: Early table checksum verification
disabled
Jul 19 20:41:53 xd kernel: ACPI: RSDP 0x0000000044BFE014 000024 (v02
ACRSYS)
Jul 19 20:41:53 xd kernel: ACPI: XSDT 0x0000000044BDB188 000124 (v01
ACRSYS ACRPRDCT 00000002 01000013)
Jul 19 20:41:53 xd kernel: ACPI: FACP 0x0000000044BDE000 000114 (v06
ACRSYS ACRPRDCT 00000002 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: DSDT 0x0000000044B81000 059948 (v02
ACRSYS ACRPRDCT 00000002 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: FACS 0x0000000044AA2000 000040
Jul 19 20:41:53 xd kernel: ACPI: UEFI 0x0000000044B2E000 000236 (v01
ACRSYS ACRPRDCT 00000001 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BFA000 00255C (v02
ACRSYS ACRPRDCT 00003000 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BF9000 000105 (v02
ACRSYS ACRPRDCT 00003000 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BF6000 002137 (v02
ACRSYS ACRPRDCT 00003000 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BF2000 003300 (v02
ACRSYS ACRPRDCT 00003000 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BF1000 00077B (v02
ACRSYS ACRPRDCT 00001000 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: TPM2 0x0000000044BF0000 00004C (v04
ACRSYS ACRPRDCT 00000002 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: MSDM 0x0000000044BEF000 000055 (v03
ACRSYS ACRPRDCT 00000001 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BEE000 000D02 (v02
ACRSYS ACRPRDCT 00000000 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: NHLT 0x0000000044BEC000 001B54 (v00
ACRSYS ACRPRDCT 00000002 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: LPIT 0x0000000044BEB000 0000CC (v01
ACRSYS ACRPRDCT 00000002 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: WSMT 0x0000000044BEA000 000028 (v01
ACRSYS ACRPRDCT 00000002 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BE9000 000B70 (v02
ACRSYS ACRPRDCT 00001000 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BE8000 00012A (v02
ACRSYS ACRPRDCT 00000000 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: DBGP 0x0000000044BE7000 000034 (v01
ACRSYS ACRPRDCT 00000002 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: DBG2 0x0000000044BE6000 000054 (v00
ACRSYS ACRPRDCT 00000002 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BDF000 006BA9 (v01
ACRSYS ACRPRDCT 00001000 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: HPET 0x0000000044BDD000 000038 (v01
ACRSYS ACRPRDCT 00000002 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: APIC 0x0000000044BDC000 00012C (v04
ACRSYS ACRPRDCT 00000002 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: MCFG 0x0000000044BFD000 00003C (v01
ACRSYS ACRPRDCT 00000002 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044B80000 000C78 (v02
ACRSYS ACRPRDCT 00000002 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: DMAR 0x0000000044B7F000 000088 (v02
ACRSYS ACRPRDCT 00000002 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044B7C000 0020D6 (v01
ACRSYS ACRPRDCT 00001000 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: UEFI 0x0000000044A5B000 00063A (v01
ACRSYS ACRPRDCT 00000000 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: UEFI 0x0000000044A5A000 00005C (v01
ACRSYS ACRPRDCT 00000000 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044B7B000 000985 (v02
ACRSYS ACRPRDCT 00001000 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044B7A000 0000F8 (v01
ACRSYS ACRPRDCT 00001000 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044B79000 000835 (v02
ACRSYS ACRPRDCT 00003000 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: FPDT 0x0000000044B78000 000044 (v01
ACRSYS ACRPRDCT 00000002 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: PTDT 0x0000000044B76000 000CFE (v00
ACRSYS ACRPRDCT 00000005 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: BGRT 0x0000000044B77000 000038 (v01
ACRSYS ACRPRDCT 00000001 1025 00040000)
Jul 19 20:41:53 xd kernel: ACPI: Reserving FACP table memory at [mem
0x44bde000-0x44bde113]
Jul 19 20:41:53 xd kernel: ACPI: Reserving DSDT table memory at [mem
0x44b81000-0x44bda947]
Jul 19 20:41:53 xd kernel: ACPI: Reserving FACS table memory at [mem
0x44aa2000-0x44aa203f]
Jul 19 20:41:53 xd kernel: ACPI: Reserving UEFI table memory at [mem
0x44b2e000-0x44b2e235]
Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem
0x44bfa000-0x44bfc55b]
Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem
0x44bf9000-0x44bf9104]
Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem
0x44bf6000-0x44bf8136]
Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem
0x44bf2000-0x44bf52ff]
Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem
0x44bf1000-0x44bf177a]
Jul 19 20:41:53 xd kernel: ACPI: Reserving TPM2 table memory at [mem
0x44bf0000-0x44bf004b]
Jul 19 20:41:53 xd kernel: ACPI: Reserving MSDM table memory at [mem
0x44bef000-0x44bef054]
Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem
0x44bee000-0x44beed01]
Jul 19 20:41:53 xd kernel: ACPI: Reserving NHLT table memory at [mem
0x44bec000-0x44bedb53]
Jul 19 20:41:53 xd kernel: ACPI: Reserving LPIT table memory at [mem
0x44beb000-0x44beb0cb]
Jul 19 20:41:53 xd kernel: ACPI: Reserving WSMT table memory at [mem
0x44bea000-0x44bea027]
Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem
0x44be9000-0x44be9b6f]
Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem
0x44be8000-0x44be8129]
Jul 19 20:41:53 xd kernel: ACPI: Reserving DBGP table memory at [mem
0x44be7000-0x44be7033]
Jul 19 20:41:53 xd kernel: ACPI: Reserving DBG2 table memory at [mem
0x44be6000-0x44be6053]
Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem
0x44bdf000-0x44be5ba8]
Jul 19 20:41:53 xd kernel: ACPI: Reserving HPET table memory at [mem
0x44bdd000-0x44bdd037]
Jul 19 20:41:53 xd kernel: ACPI: Reserving APIC table memory at [mem
0x44bdc000-0x44bdc12b]
Jul 19 20:41:53 xd kernel: ACPI: Reserving MCFG table memory at [mem
0x44bfd000-0x44bfd03b]
Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem
0x44b80000-0x44b80c77]
Jul 19 20:41:53 xd kernel: ACPI: Reserving DMAR table memory at [mem
0x44b7f000-0x44b7f087]
Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem
0x44b7c000-0x44b7e0d5]
Jul 19 20:41:53 xd kernel: ACPI: Reserving UEFI table memory at [mem
0x44a5b000-0x44a5b639]
Jul 19 20:41:53 xd kernel: ACPI: Reserving UEFI table memory at [mem
0x44a5a000-0x44a5a05b]
Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem
0x44b7b000-0x44b7b984]
Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem
0x44b7a000-0x44b7a0f7]
Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem
0x44b79000-0x44b79834]
Jul 19 20:41:53 xd kernel: ACPI: Reserving FPDT table memory at [mem
0x44b78000-0x44b78043]
Jul 19 20:41:53 xd kernel: ACPI: Reserving PTDT table memory at [mem
0x44b76000-0x44b76cfd]
Jul 19 20:41:53 xd kernel: ACPI: Reserving BGRT table memory at [mem
0x44b77000-0x44b77037]
Jul 19 20:41:53 xd kernel: ACPI: Local APIC address 0xfee00000
Jul 19 20:41:53 xd kernel: No NUMA configuration found
Jul 19 20:41:53 xd kernel: Faking a node at [mem
0x0000000000000000-0x00000004b07fffff]
Jul 19 20:41:53 xd kernel: NODE_DATA(0) allocated [mem
0x4b07d6000-0x4b07fffff]
Jul 19 20:41:53 xd kernel: Zone ranges:
Jul 19 20:41:53 xd kernel: DMA [mem
0x0000000000001000-0x0000000000ffffff]
Jul 19 20:41:53 xd kernel: DMA32 [mem
0x0000000001000000-0x00000000ffffffff]
Jul 19 20:41:53 xd kernel: Normal [mem
0x0000000100000000-0x00000004b07fffff]
Jul 19 20:41:53 xd kernel: Device empty
Jul 19 20:41:53 xd kernel: Movable zone start for each node
Jul 19 20:41:53 xd kernel: Early memory node ranges
Jul 19 20:41:53 xd kernel: node 0: [mem
0x0000000000001000-0x000000000009efff]
Jul 19 20:41:53 xd kernel: node 0: [mem
0x0000000000100000-0x000000003fd98fff]
Jul 19 20:41:53 xd kernel: node 0: [mem
0x0000000040699000-0x00000000424aefff]
Jul 19 20:41:53 xd kernel: node 0: [mem
0x0000000044bff000-0x0000000044bfffff]
Jul 19 20:41:53 xd kernel: node 0: [mem
0x0000000100000000-0x00000004b07fffff]
Jul 19 20:41:53 xd kernel: Initmem setup node 0 [mem
0x0000000000001000-0x00000004b07fffff]
Jul 19 20:41:53 xd kernel: On node 0 totalpages: 4137806
Jul 19 20:41:53 xd kernel: DMA zone: 64 pages used for memmap
Jul 19 20:41:53 xd kernel: DMA zone: 25 pages reserved
Jul 19 20:41:53 xd kernel: DMA zone: 3998 pages, LIFO batch:0
Jul 19 20:41:53 xd kernel: DMA32 zone: 4143 pages used for memmap
Jul 19 20:41:53 xd kernel: DMA32 zone: 265136 pages, LIFO batch:63
Jul 19 20:41:53 xd kernel: Normal zone: 60448 pages used for memmap
Jul 19 20:41:53 xd kernel: Normal zone: 3868672 pages, LIFO batch:63
Jul 19 20:41:53 xd kernel: On node 0, zone DMA: 1 pages in unavailable
ranges
Jul 19 20:41:53 xd kernel: On node 0, zone DMA: 97 pages in unavailable
ranges
Jul 19 20:41:53 xd kernel: On node 0, zone DMA32: 2304 pages in
unavailable ranges
Jul 19 20:41:53 xd kernel: On node 0, zone DMA32: 10064 pages in
unavailable ranges
Jul 19 20:41:53 xd kernel: On node 0, zone Normal: 13312 pages in
unavailable ranges
Jul 19 20:41:53 xd kernel: On node 0, zone Normal: 30720 pages in
unavailable ranges
Jul 19 20:41:53 xd kernel: Reserving Intel graphics memory at [mem
0x4b800000-0x4f7fffff]
Jul 19 20:41:53 xd kernel: ACPI: PM-Timer IO Port: 0x1808
Jul 19 20:41:53 xd kernel: ACPI: Local APIC address 0xfee00000
Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge
lint[0x1])
Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge
lint[0x1])
Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge
lint[0x1])
Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge
lint[0x1])
Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge
lint[0x1])
Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge
lint[0x1])
Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge
lint[0x1])
Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge
lint[0x1])
Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x09] high edge
lint[0x1])
Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0a] high edge
lint[0x1])
Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0b] high edge
lint[0x1])
Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0c] high edge
lint[0x1])
Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0d] high edge
lint[0x1])
Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0e] high edge
lint[0x1])
Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0f] high edge
lint[0x1])
Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x10] high edge
lint[0x1])
Jul 19 20:41:53 xd kernel: IOAPIC[0]: apic_id 2, version 32, address
0xfec00000, GSI 0-119
Jul 19 20:41:53 xd kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq
2 dfl dfl)
Jul 19 20:41:53 xd kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq
9 high level)
Jul 19 20:41:53 xd kernel: ACPI: IRQ0 used by override.
Jul 19 20:41:53 xd kernel: ACPI: IRQ9 used by override.
Jul 19 20:41:53 xd kernel: Using ACPI (MADT) for SMP configuration
information
Jul 19 20:41:53 xd kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
Jul 19 20:41:53 xd kernel: e820: update [mem 0x3bf69000-0x3c05cfff]
usable ==> reserved
Jul 19 20:41:53 xd kernel: TSC deadline timer available
Jul 19 20:41:53 xd kernel: smpboot: Allowing 8 CPUs, 0 hotplug CPUs
Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0x00000000-0x00000fff]
Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0x0009f000-0x000fffff]
Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0x3bee4000-0x3bee6fff]
Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0x3bf66000-0x3bf66fff]
Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0x3bf69000-0x3c05cfff]
Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0x3fd99000-0x40698fff]
Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0x424af000-0x4287efff]
Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0x4287f000-0x442fefff]
Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0x442ff000-0x44b2efff]
Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0x44b2f000-0x44bfefff]
Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0x44c00000-0x48ffffff]
Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0x49000000-0x49dfffff]
Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0x49e00000-0x4f7fffff]
Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0x4f800000-0xbfffffff]
Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0xc0000000-0xcfffffff]
Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0xd0000000-0xfe00ffff]
Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0xfe010000-0xfe010fff]
Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0xfe011000-0xfed1ffff]
Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0xfed20000-0xfed7ffff]
Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0xfed80000-0xff4fffff]
Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0xff500000-0xffffffff]
Jul 19 20:41:53 xd kernel: [mem 0x4f800000-0xbfffffff] available for PCI
devices
Jul 19 20:41:53 xd kernel: Booting paravirtualized kernel on bare
hardware
Jul 19 20:41:53 xd kernel: clocksource: refined-jiffies: mask:
0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
Jul 19 20:41:53 xd kernel: setup_percpu: NR_CPUS:8192 nr_cpumask_bits:8
nr_cpu_ids:8 nr_node_ids:1
Jul 19 20:41:53 xd kernel: percpu: Embedded 58 pages/cpu s200664 r8192
d28712 u262144
Jul 19 20:41:53 xd kernel: pcpu-alloc: s200664 r8192 d28712 u262144
alloc=1*2097152
Jul 19 20:41:53 xd kernel: pcpu-alloc: [0] 0 1 2 3 4 5 6 7
Jul 19 20:41:53 xd kernel: Built 1 zonelists, mobility grouping on.
Total pages: 4073126
Jul 19 20:41:53 xd kernel: Policy zone: Normal
Jul 19 20:41:53 xd kernel: Kernel command line:
BOOT_IMAGE=/vmlinuz-5.10.0-16-amd64
root=UUID=0dc2ba0c-97d5-4786-bc97-4d13279afe0f ro quiet
Jul 19 20:41:53 xd kernel: Dentry cache hash table entries: 2097152
(order: 12, 16777216 bytes, linear)
Jul 19 20:41:53 xd kernel: Inode-cache hash table entries: 1048576
(order: 11, 8388608 bytes, linear)
Jul 19 20:41:53 xd kernel: mem auto-init: stack:off, heap alloc:on, heap
free:off
Jul 19 20:41:53 xd kernel: Memory: 1014224K/16551224K available (12295K
kernel code, 2536K rwdata, 7568K rodata, 2424K init, 3680K bss, 517204K
reserved, 0K cma-reserved)
Jul 19 20:41:53 xd kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0,
CPUs=8, Nodes=1
Jul 19 20:41:53 xd kernel: ftrace: allocating 36455 entries in 143 pages
Jul 19 20:41:53 xd kernel: ftrace: allocated 143 pages with 5 groups
Jul 19 20:41:53 xd kernel: rcu: Hierarchical RCU implementation.
Jul 19 20:41:53 xd kernel: rcu: RCU restricting CPUs from NR_CPUS=8192
to nr_cpu_ids=8.
Jul 19 20:41:53 xd kernel: Rude variant of Tasks RCU enabled.
Jul 19 20:41:53 xd kernel: Tracing variant of Tasks RCU enabled.
Jul 19 20:41:53 xd kernel: rcu: RCU calculated value of
scheduler-enlistment delay is 25 jiffies.
Jul 19 20:41:53 xd kernel: rcu: Adjusting geometry for
rcu_fanout_leaf=16, nr_cpu_ids=8
Jul 19 20:41:53 xd kernel: NR_IRQS: 524544, nr_irqs: 2048, preallocated
irqs: 16
Jul 19 20:41:53 xd kernel: random: crng init done
Jul 19 20:41:53 xd kernel: Console: colour dummy device 80x25
Jul 19 20:41:53 xd kernel: printk: console [tty0] enabled
Jul 19 20:41:53 xd kernel: ACPI: Core revision 20200925
Jul 19 20:41:53 xd kernel: hpet: HPET dysfunctional in PC10. Force
disabled.
Jul 19 20:41:53 xd kernel: APIC: Switch to symmetric I/O mode setup
Jul 19 20:41:53 xd kernel: DMAR: Host address width 39
Jul 19 20:41:53 xd kernel: DMAR: DRHD base: 0x000000fed90000 flags: 0x0
Jul 19 20:41:53 xd kernel: DMAR: dmar0: reg_base_addr fed90000 ver 4:0
cap 1c0000c40660462 ecap 29a00f0505e
Jul 19 20:41:53 xd kernel: DMAR: DRHD base: 0x000000fed91000 flags: 0x1
Jul 19 20:41:53 xd kernel: DMAR: dmar1: reg_base_addr fed91000 ver 1:0
cap d2008c40660462 ecap f050da
Jul 19 20:41:53 xd kernel: DMAR: RMRR base: 0x0000004b000000 end:
0x0000004f7fffff
Jul 19 20:41:53 xd kernel: DMAR-IR: IOAPIC id 2 under DRHD base
0xfed91000 IOMMU 1
Jul 19 20:41:53 xd kernel: DMAR-IR: HPET id 0 under DRHD base 0xfed91000
Jul 19 20:41:53 xd kernel: DMAR-IR: Queued invalidation will be enabled
to support x2apic and Intr-remapping.
Jul 19 20:41:53 xd kernel: DMAR-IR: Enabled IRQ remapping in x2apic mode
Jul 19 20:41:53 xd kernel: x2apic enabled
Jul 19 20:41:53 xd kernel: Switched APIC routing to cluster x2apic.
Jul 19 20:41:53 xd kernel: clocksource: tsc-early: mask:
0xffffffffffffffff max_cycles: 0x22df1149949, max_idle_ns: 440795312789
ns
Jul 19 20:41:53 xd kernel: Calibrating delay loop (skipped), value
calculated using timer frequency.. 4838.40 BogoMIPS (lpj=9676800)
Jul 19 20:41:53 xd kernel: pid_max: default: 32768 minimum: 301
Jul 19 20:41:53 xd kernel: LSM: Security Framework initializing
Jul 19 20:41:53 xd kernel: Yama: disabled by default; enable with sysctl
kernel.yama.*
Jul 19 20:41:53 xd kernel: AppArmor: AppArmor initialized
Jul 19 20:41:53 xd kernel: TOMOYO Linux initialized
Jul 19 20:41:53 xd kernel: Mount-cache hash table entries: 32768 (order:
6, 262144 bytes, linear)
Jul 19 20:41:53 xd kernel: Mountpoint-cache hash table entries: 32768
(order: 6, 262144 bytes, linear)
Jul 19 20:41:53 xd kernel: x86/cpu: User Mode Instruction Prevention
(UMIP) activated
Jul 19 20:41:53 xd kernel: mce: CPU0: Thermal monitoring enabled (TM1)
Jul 19 20:41:53 xd kernel: process: using mwait in idle threads
Jul 19 20:41:53 xd kernel: Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
Jul 19 20:41:53 xd kernel: Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0,
1GB 0
Jul 19 20:41:53 xd kernel: Spectre V1 : Mitigation: usercopy/swapgs
barriers and __user pointer sanitization
Jul 19 20:41:53 xd kernel: Spectre V2 : Mitigation: Enhanced IBRS
Jul 19 20:41:53 xd kernel: Spectre V2 : Spectre v2 / SpectreRSB
mitigation: Filling RSB on context switch
Jul 19 20:41:53 xd kernel: Spectre V2 : mitigation: Enabling conditional
Indirect Branch Prediction Barrier
Jul 19 20:41:53 xd kernel: Speculative Store Bypass: Mitigation:
Speculative Store Bypass disabled via prctl and seccomp
Jul 19 20:41:53 xd kernel: Freeing SMP alternatives memory: 32K
Jul 19 20:41:53 xd kernel: smpboot: CPU0: 11th Gen Intel(R) Core(TM)
i5-1135G7 @ 2.40GHz (family: 0x6, model: 0x8c, stepping: 0x1)
Jul 19 20:41:53 xd kernel: Performance Events: PEBS fmt4+-baseline,
AnyThread deprecated, Icelake events, 32-deep LBR, full-width counters,
Intel PMU driver.
Jul 19 20:41:53 xd kernel: ... version: 5
Jul 19 20:41:53 xd kernel: ... bit width: 48
Jul 19 20:41:53 xd kernel: ... generic registers: 8
Jul 19 20:41:53 xd kernel: ... value mask: 0000ffffffffffff
Jul 19 20:41:53 xd kernel: ... max period: 00007fffffffffff
Jul 19 20:41:53 xd kernel: ... fixed-purpose events: 4
Jul 19 20:41:53 xd kernel: ... event mask: 0001000f000000ff
Jul 19 20:41:53 xd kernel: rcu: Hierarchical SRCU implementation.
Jul 19 20:41:53 xd kernel: NMI watchdog: Enabled. Permanently consumes
one hw-PMU counter.
Jul 19 20:41:53 xd kernel: smp: Bringing up secondary CPUs ...
Jul 19 20:41:53 xd kernel: x86: Booting SMP configuration:
Jul 19 20:41:53 xd kernel: .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7
Jul 19 20:41:53 xd kernel: smp: Brought up 1 node, 8 CPUs
Jul 19 20:41:53 xd kernel: smpboot: Max logical packages: 1
Jul 19 20:41:53 xd kernel: smpboot: Total of 8 processors activated
(38707.20 BogoMIPS)
Jul 19 20:41:53 xd kernel: node 0 deferred pages initialised in 20ms
Jul 19 20:41:53 xd kernel: devtmpfs: initialized
Jul 19 20:41:53 xd kernel: x86/mm: Memory block size: 128MB
Jul 19 20:41:53 xd kernel: PM: Registering ACPI NVS region [mem
0x442ff000-0x44b2efff] (8585216 bytes)
Jul 19 20:41:53 xd kernel: clocksource: jiffies: mask: 0xffffffff
max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
Jul 19 20:41:53 xd kernel: futex hash table entries: 2048 (order: 5,
131072 bytes, linear)
Jul 19 20:41:53 xd kernel: pinctrl core: initialized pinctrl subsystem
Jul 19 20:41:53 xd kernel: NET: Registered protocol family 16
Jul 19 20:41:53 xd kernel: audit: initializing netlink subsys (disabled)
Jul 19 20:41:53 xd kernel: audit: type=2000 audit(1658259710.028:1):
state=initialized audit_enabled=0 res=1
Jul 19 20:41:53 xd kernel: thermal_sys: Registered thermal governor
'fair_share'
Jul 19 20:41:53 xd kernel: thermal_sys: Registered thermal governor
'bang_bang'
Jul 19 20:41:53 xd kernel: thermal_sys: Registered thermal governor
'step_wise'
Jul 19 20:41:53 xd kernel: thermal_sys: Registered thermal governor
'user_space'
Jul 19 20:41:53 xd kernel: thermal_sys: Registered thermal governor
'power_allocator'
Jul 19 20:41:53 xd kernel: cpuidle: using governor ladder
Jul 19 20:41:53 xd kernel: cpuidle: using governor menu
Jul 19 20:41:53 xd kernel: ACPI: bus type PCI registered
Jul 19 20:41:53 xd kernel: acpiphp: ACPI Hot Plug PCI Controller Driver
version: 0.5
Jul 19 20:41:53 xd kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at
[mem 0xc0000000-0xcfffffff] (base 0xc0000000)
Jul 19 20:41:53 xd kernel: PCI: MMCONFIG at [mem 0xc0000000-0xcfffffff]
reserved in E820
Jul 19 20:41:53 xd kernel: PCI: Using configuration type 1 for base
access
Jul 19 20:41:53 xd kernel: ENERGY_PERF_BIAS: Set to 'normal', was
'performance'
Jul 19 20:41:53 xd kernel: Kprobes globally optimized
Jul 19 20:41:53 xd kernel: HugeTLB registered 1.00 GiB page size,
pre-allocated 0 pages
Jul 19 20:41:53 xd kernel: HugeTLB registered 2.00 MiB page size,
pre-allocated 0 pages
Jul 19 20:41:53 xd kernel: ACPI: Added _OSI(Module Device)
Jul 19 20:41:53 xd kernel: ACPI: Added _OSI(Processor Device)
Jul 19 20:41:53 xd kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Jul 19 20:41:53 xd kernel: ACPI: Added _OSI(Processor Aggregator Device)
Jul 19 20:41:53 xd kernel: ACPI: Added _OSI(Linux-Dell-Video)
Jul 19 20:41:53 xd kernel: ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
Jul 19 20:41:53 xd kernel: ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS01._UPC], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS01._PLD], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS02._UPC], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS02._PLD], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS03._UPC], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS03._PLD], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS04._UPC], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS04._PLD], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS05._UPC], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS05._PLD], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS06._UPC], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS06._PLD], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS07._UPC], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS07._PLD], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS08._UPC], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS08._PLD], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS09._UPC], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS09._PLD], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS10._UPC], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS10._PLD], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.SS01._UPC], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.SS01._PLD], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.SS02._UPC], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.SS02._PLD], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.SS03._UPC], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.SS03._PLD], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.SS04._UPC], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.SS04._PLD], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.SS05._UPC], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.SS05._PLD], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.SS06._UPC], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.SS06._PLD], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 19 20:41:53 xd kernel: ACPI: 15 ACPI AML tables successfully
acquired and loaded
Jul 19 20:41:53 xd kernel: ACPI: Dynamic OEM Table Load:
Jul 19 20:41:53 xd kernel: ACPI: SSDT 0xFFFF997306398600 0001C6 (v02
PmRef Cpu0Psd 00003000 INTL 20160422)
Jul 19 20:41:53 xd kernel: ACPI: \_SB_.PR00: _OSC native thermal LVT
Acked
Jul 19 20:41:53 xd kernel: ACPI: Dynamic OEM Table Load:
Jul 19 20:41:53 xd kernel: ACPI: SSDT 0xFFFF9971C0F91800 000386 (v02
PmRef Cpu0Cst 00003001 INTL 20160422)
Jul 19 20:41:53 xd kernel: ACPI: Dynamic OEM Table Load:
Jul 19 20:41:53 xd kernel: ACPI: SSDT 0xFFFF9971C0C36800 0005C3 (v02
PmRef Cpu0Ist 00003000 INTL 20160422)
Jul 19 20:41:53 xd kernel: ACPI: Dynamic OEM Table Load:
Jul 19 20:41:53 xd kernel: ACPI: SSDT 0xFFFF9971C0F96800 00028B (v02
PmRef Cpu0Hwp 00003000 INTL 20160422)
Jul 19 20:41:53 xd kernel: ACPI: Dynamic OEM Table Load:
Jul 19 20:41:53 xd kernel: ACPI: SSDT 0xFFFF9971C0F87000 0008E7 (v02
PmRef ApIst 00003000 INTL 20160422)
Jul 19 20:41:53 xd kernel: ACPI: Dynamic OEM Table Load:
Jul 19 20:41:53 xd kernel: ACPI: SSDT 0xFFFF9971C0C33800 00048A (v02
PmRef ApHwp 00003000 INTL 20160422)
Jul 19 20:41:53 xd kernel: ACPI: Dynamic OEM Table Load:
Jul 19 20:41:53 xd kernel: ACPI: SSDT 0xFFFF9971C0C31000 0004D4 (v02
PmRef ApPsd 00003000 INTL 20160422)
Jul 19 20:41:53 xd kernel: ACPI: Dynamic OEM Table Load:
Jul 19 20:41:53 xd kernel: ACPI: SSDT 0xFFFF9971C0C30000 00048A (v02
PmRef ApCst 00003000 INTL 20160422)
Jul 19 20:41:53 xd kernel: ACPI: EC: EC started
Jul 19 20:41:53 xd kernel: ACPI: EC: interrupt blocked
Jul 19 20:41:53 xd kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
Jul 19 20:41:53 xd kernel: ACPI: \_SB_.PC00.LPCB.EC0_: Boot DSDT EC used
to handle transactions
Jul 19 20:41:53 xd kernel: ACPI: Interpreter enabled
Jul 19 20:41:53 xd kernel: ACPI: (supports S0 S3 S4 S5)
Jul 19 20:41:53 xd kernel: ACPI: Using IOAPIC for interrupt routing
Jul 19 20:41:53 xd kernel: PCI: Using host bridge windows from ACPI; if
necessary, use "pci=nocrs" and report a bug
Jul 19 20:41:53 xd kernel: ACPI: Enabled 7 GPEs in block 00 to 7F
Jul 19 20:41:53 xd kernel: ACPI: Power Resource [PCRP] (on)
Jul 19 20:41:53 xd kernel: ACPI: Power Resource [V0PR] (on)
Jul 19 20:41:53 xd kernel: ACPI: Power Resource [V1PR] (on)
Jul 19 20:41:53 xd kernel: ACPI: Power Resource [V2PR] (on)
Jul 19 20:41:53 xd kernel: ACPI: Power Resource [WRST] (on)
Jul 19 20:41:53 xd kernel: ACPI: Power Resource [V0PR] (on)
Jul 19 20:41:53 xd kernel: ACPI: Power Resource [V1PR] (on)
Jul 19 20:41:53 xd kernel: ACPI: Power Resource [V2PR] (on)
Jul 19 20:41:53 xd kernel: ACPI: Power Resource [V3PR] (on)
Jul 19 20:41:53 xd kernel: ACPI: Power Resource [FN00] (off)
Jul 19 20:41:53 xd kernel: ACPI: Power Resource [FN01] (off)
Jul 19 20:41:53 xd kernel: ACPI: Power Resource [FN02] (off)
Jul 19 20:41:53 xd kernel: ACPI: Power Resource [FN03] (off)
Jul 19 20:41:53 xd kernel: ACPI: Power Resource [FN04] (off)
Jul 19 20:41:53 xd kernel: ACPI: Power Resource [PIN] (off)
Jul 19 20:41:53 xd kernel: ACPI: PCI Root Bridge [PC00] (domain 0000
[bus 00-e0])
Jul 19 20:41:53 xd kernel: acpi PNP0A08:00: _OSC: OS supports
[ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
Jul 19 20:41:53 xd kernel: acpi PNP0A08:00: _OSC: OS now controls
[PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR]
Jul 19 20:41:53 xd kernel: PCI host bridge to bus 0000:00
Jul 19 20:41:53 xd kernel: pci_bus 0000:00: root bus resource [io
0x0000-0x0cf7 window]
Jul 19 20:41:53 xd kernel: pci_bus 0000:00: root bus resource [io
0x0d00-0xffff window]
Jul 19 20:41:53 xd kernel: pci_bus 0000:00: root bus resource [mem
0x000a0000-0x000bffff window]
Jul 19 20:41:53 xd kernel: pci_bus 0000:00: root bus resource [mem
0x4f800000-0xbfffffff window]
Jul 19 20:41:53 xd kernel: pci_bus 0000:00: root bus resource [mem
0x4000000000-0x7fffffffff window]
Jul 19 20:41:53 xd kernel: pci_bus 0000:00: root bus resource [bus
00-e0]
Jul 19 20:41:53 xd kernel: pci 0000:00:00.0: [8086:9a14] type 00 class
0x060000
Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: [8086:9a49] type 00 class
0x030000
Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: reg 0x10: [mem
0x6014000000-0x6014ffffff 64bit]
Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: reg 0x18: [mem
0x4000000000-0x400fffffff 64bit pref]
Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: reg 0x20: [io
0x5000-0x503f]
Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: BAR 2: assigned to efifb
Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: DMAR: Skip IOMMU disabling
for graphics
Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: reg 0x344: [mem
0x00000000-0x00ffffff 64bit]
Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: VF(n) BAR0 space: [mem
0x00000000-0x06ffffff 64bit] (contains BAR0 for 7 VFs)
Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: reg 0x34c: [mem
0x00000000-0x1fffffff 64bit pref]
Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: VF(n) BAR2 space: [mem
0x00000000-0xdfffffff 64bit pref] (contains BAR2 for 7 VFs)
Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: [8086:9a09] type 01 class
0x060400
Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: PME# supported from D0
D3hot D3cold
Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: PTM enabled (root), 4ns
granularity
Jul 19 20:41:53 xd kernel: pci 0000:00:08.0: [8086:9a11] type 00 class
0x088000
Jul 19 20:41:53 xd kernel: pci 0000:00:08.0: reg 0x10: [mem
0x601540f000-0x601540ffff 64bit]
Jul 19 20:41:53 xd kernel: pci 0000:00:0e.0: [8086:9a0b] type 00 class
0x010400
Jul 19 20:41:53 xd kernel: pci 0000:00:0e.0: reg 0x10: [mem
0x6012000000-0x6013ffffff 64bit]
Jul 19 20:41:53 xd kernel: pci 0000:00:0e.0: reg 0x18: [mem
0x50000000-0x51ffffff]
Jul 19 20:41:53 xd kernel: pci 0000:00:0e.0: reg 0x20: [mem
0x6015300000-0x60153fffff 64bit]
Jul 19 20:41:53 xd kernel: pci 0000:00:14.0: [8086:a0ed] type 00 class
0x0c0330
Jul 19 20:41:53 xd kernel: pci 0000:00:14.0: reg 0x10: [mem
0x53180000-0x5318ffff 64bit]
Jul 19 20:41:53 xd kernel: pci 0000:00:14.0: PME# supported from D3hot
D3cold
Jul 19 20:41:53 xd kernel: pci 0000:00:14.2: [8086:a0ef] type 00 class
0x050000
Jul 19 20:41:53 xd kernel: pci 0000:00:14.2: reg 0x10: [mem
0x6015404000-0x6015407fff 64bit]
Jul 19 20:41:53 xd kernel: pci 0000:00:14.2: reg 0x18: [mem
0x601540e000-0x601540efff 64bit]
Jul 19 20:41:53 xd kernel: pci 0000:00:15.0: [8086:a0e8] type 00 class
0x0c8000
Jul 19 20:41:53 xd kernel: pci 0000:00:15.0: reg 0x10: [mem
0x00000000-0x00000fff 64bit]
Jul 19 20:41:53 xd kernel: pci 0000:00:15.3: [8086:a0eb] type 00 class
0x0c8000
Jul 19 20:41:53 xd kernel: pci 0000:00:15.3: reg 0x10: [mem
0x00000000-0x00000fff 64bit]
Jul 19 20:41:53 xd kernel: pci 0000:00:16.0: [8086:a0e0] type 00 class
0x078000
Jul 19 20:41:53 xd kernel: pci 0000:00:16.0: reg 0x10: [mem
0x601540b000-0x601540bfff 64bit]
Jul 19 20:41:53 xd kernel: pci 0000:00:16.0: PME# supported from D3hot
Jul 19 20:41:53 xd kernel: pci 0000:00:17.0: [8086:09ab] type 00 class
0x088000
Jul 19 20:41:53 xd kernel: pci 0000:00:19.0: [8086:a0c5] type 00 class
0x0c8000
Jul 19 20:41:53 xd kernel: pci 0000:00:19.0: reg 0x10: [mem
0x00000000-0x00000fff 64bit]
Jul 19 20:41:53 xd kernel: pci 0000:00:19.1: [8086:a0c6] type 00 class
0x0c8000
Jul 19 20:41:53 xd kernel: pci 0000:00:19.1: reg 0x10: [mem
0x00000000-0x00000fff 64bit]
Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: [8086:a0b0] type 01 class
0x060400
Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: PME# supported from D0
D3hot D3cold
Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: PTM enabled (root), 4ns
granularity
Jul 19 20:41:53 xd kernel: pci 0000:00:1d.1: [8086:a0b1] type 01 class
0x060400
Jul 19 20:41:53 xd kernel: pci 0000:00:1d.1: PME# supported from D0
D3hot D3cold
Jul 19 20:41:53 xd kernel: pci 0000:00:1d.1: PTM enabled (root), 4ns
granularity
Jul 19 20:41:53 xd kernel: pci 0000:00:1f.0: [8086:a082] type 00 class
0x060100
Jul 19 20:41:53 xd kernel: pci 0000:00:1f.3: [8086:a0c8] type 00 class
0x040100
Jul 19 20:41:53 xd kernel: pci 0000:00:1f.3: reg 0x10: [mem
0x6015400000-0x6015403fff 64bit]
Jul 19 20:41:53 xd kernel: pci 0000:00:1f.3: reg 0x20: [mem
0x6015200000-0x60152fffff 64bit]
Jul 19 20:41:53 xd kernel: pci 0000:00:1f.3: PME# supported from D3hot
D3cold
Jul 19 20:41:53 xd kernel: pci 0000:00:1f.4: [8086:a0a3] type 00 class
0x0c0500
Jul 19 20:41:53 xd kernel: pci 0000:00:1f.4: reg 0x10: [mem
0x6015408000-0x60154080ff 64bit]
Jul 19 20:41:53 xd kernel: pci 0000:00:1f.4: reg 0x20: [io
0xefa0-0xefbf]
Jul 19 20:41:53 xd kernel: pci 0000:00:1f.5: [8086:a0a4] type 00 class
0x0c8000
Jul 19 20:41:53 xd kernel: pci 0000:00:1f.5: reg 0x10: [mem
0xfe010000-0xfe010fff]
Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: [10de:1f97] type 00 class
0x030200
Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: reg 0x10: [mem
0x52000000-0x52ffffff]
Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: reg 0x14: [mem
0x6000000000-0x600fffffff 64bit pref]
Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: reg 0x1c: [mem
0x6010000000-0x6011ffffff 64bit pref]
Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: reg 0x24: [io
0x4000-0x407f]
Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: reg 0x30: [mem
0xfff80000-0xffffffff pref]
Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: PME# supported from D0
D3hot D3cold
Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: 63.012 Gb/s available PCIe
bandwidth, limited by 16.0 GT/s PCIe x4 link at 0000:00:06.0 (capable of
252.048 Gb/s with 16.0 GT/s PCIe x16 link)
Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: PCI bridge to [bus 01]
Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: bridge window [io
0x4000-0x4fff]
Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: bridge window [mem
0x52000000-0x52ffffff]
Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: bridge window [mem
0x6000000000-0x6011ffffff 64bit pref]
Jul 19 20:41:53 xd kernel: pci 0000:02:00.0: [10ec:8168] type 00 class
0x020000
Jul 19 20:41:53 xd kernel: pci 0000:02:00.0: reg 0x10: [io
0x3000-0x30ff]
Jul 19 20:41:53 xd kernel: pci 0000:02:00.0: reg 0x18: [mem
0x53004000-0x53004fff 64bit]
Jul 19 20:41:53 xd kernel: pci 0000:02:00.0: reg 0x20: [mem
0x53000000-0x53003fff 64bit]
Jul 19 20:41:53 xd kernel: pci 0000:02:00.0: supports D1 D2
Jul 19 20:41:53 xd kernel: pci 0000:02:00.0: PME# supported from D0 D1
D2 D3hot D3cold
Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: PCI bridge to [bus 02]
Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: bridge window [io
0x3000-0x3fff]
Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: bridge window [mem
0x53000000-0x530fffff]
Jul 19 20:41:53 xd kernel: pci 0000:03:00.0: [14c3:7961] type 00 class
0x028000
Jul 19 20:41:53 xd kernel: pci 0000:03:00.0: reg 0x10: [mem
0x6015000000-0x60150fffff 64bit pref]
Jul 19 20:41:53 xd kernel: pci 0000:03:00.0: reg 0x18: [mem
0x6015100000-0x6015103fff 64bit pref]
Jul 19 20:41:53 xd kernel: pci 0000:03:00.0: reg 0x20: [mem
0x6015104000-0x6015104fff 64bit pref]
Jul 19 20:41:53 xd kernel: pci 0000:03:00.0: supports D1 D2
Jul 19 20:41:53 xd kernel: pci 0000:03:00.0: PME# supported from D0 D1
D2 D3hot D3cold
Jul 19 20:41:53 xd kernel: pci 0000:00:1d.1: PCI bridge to [bus 03]
Jul 19 20:41:53 xd kernel: pci 0000:00:1d.1: bridge window [mem
0x6015000000-0x60151fffff 64bit pref]
Jul 19 20:41:53 xd kernel: ACPI: EC: interrupt unblocked
Jul 19 20:41:53 xd kernel: ACPI: EC: event unblocked
Jul 19 20:41:53 xd kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
Jul 19 20:41:53 xd kernel: ACPI: EC: GPE=0x6e
Jul 19 20:41:53 xd kernel: ACPI: \_SB_.PC00.LPCB.EC0_: Boot DSDT EC
initialization complete
Jul 19 20:41:53 xd kernel: ACPI: \_SB_.PC00.LPCB.EC0_: EC: Used to
handle transactions and events
Jul 19 20:41:53 xd kernel: iommu: Default domain type: Translated
Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: vgaarb: setting as boot VGA
device
Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: vgaarb: VGA device added:
decodes=io+mem,owns=io+mem,locks=none
Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: vgaarb: bridge control
possible
Jul 19 20:41:53 xd kernel: vgaarb: loaded
Jul 19 20:41:53 xd kernel: EDAC MC: Ver: 3.0.0
Jul 19 20:41:53 xd kernel: Registered efivars operations
Jul 19 20:41:53 xd kernel: NetLabel: Initializing
Jul 19 20:41:53 xd kernel: NetLabel: domain hash size = 128
Jul 19 20:41:53 xd kernel: NetLabel: protocols = UNLABELED CIPSOv4
CALIPSO
Jul 19 20:41:53 xd kernel: NetLabel: unlabeled traffic allowed by
default
Jul 19 20:41:53 xd kernel: PCI: Using ACPI for IRQ routing
Jul 19 20:41:53 xd kernel: PCI: pci_cache_line_size set to 64 bytes
Jul 19 20:41:53 xd kernel: pci 0000:00:1f.5: can't claim BAR 0 [mem
0xfe010000-0xfe010fff]: no compatible bridge window
Jul 19 20:41:53 xd kernel: e820: reserve RAM buffer [mem
0x0009f000-0x0009ffff]
Jul 19 20:41:53 xd kernel: e820: reserve RAM buffer [mem
0x3bee4000-0x3bffffff]
Jul 19 20:41:53 xd kernel: e820: reserve RAM buffer [mem
0x3bf66000-0x3bffffff]
Jul 19 20:41:53 xd kernel: e820: reserve RAM buffer [mem
0x3bf69000-0x3bffffff]
Jul 19 20:41:53 xd kernel: e820: reserve RAM buffer [mem
0x3fd99000-0x3fffffff]
Jul 19 20:41:53 xd kernel: e820: reserve RAM buffer [mem
0x424af000-0x43ffffff]
Jul 19 20:41:53 xd kernel: e820: reserve RAM buffer [mem
0x44c00000-0x47ffffff]
Jul 19 20:41:53 xd kernel: e820: reserve RAM buffer [mem
0x4b0800000-0x4b3ffffff]
Jul 19 20:41:53 xd kernel: clocksource: Switched to clocksource
tsc-early
Jul 19 20:41:53 xd kernel: VFS: Disk quotas dquot_6.6.0
Jul 19 20:41:53 xd kernel: VFS: Dquot-cache hash table entries: 512
(order 0, 4096 bytes)
Jul 19 20:41:53 xd kernel: AppArmor: AppArmor Filesystem Enabled
Jul 19 20:41:53 xd kernel: pnp: PnP ACPI init
Jul 19 20:41:53 xd kernel: system 00:00: [io 0x0680-0x069f] has been
reserved
Jul 19 20:41:53 xd kernel: system 00:00: [io 0x164e-0x164f] has been
reserved
Jul 19 20:41:53 xd kernel: system 00:00: [io 0xfd60-0xfd63] has been
reserved
Jul 19 20:41:53 xd kernel: system 00:00: Plug and Play ACPI device, IDs
PNP0c02 (active)
Jul 19 20:41:53 xd kernel: pnp 00:01: Plug and Play ACPI device, IDs
PNP0b00 (active)
Jul 19 20:41:53 xd kernel: system 00:02: [io 0x1854-0x1857] has been
reserved
Jul 19 20:41:53 xd kernel: system 00:02: Plug and Play ACPI device, IDs
INT3f0d PNP0c02 (active)
Jul 19 20:41:53 xd kernel: pnp 00:03: Plug and Play ACPI device, IDs
PNP0303 (active)
Jul 19 20:41:53 xd kernel: pnp 00:04: disabling [mem
0xc0000000-0xcfffffff] because it overlaps 0000:00:02.0 BAR 9 [mem
0x00000000-0xdfffffff 64bit pref]
Jul 19 20:41:53 xd kernel: system 00:04: [mem 0xfedc0000-0xfedc7fff] has
been reserved
Jul 19 20:41:53 xd kernel: system 00:04: [mem 0xfeda0000-0xfeda0fff] has
been reserved
Jul 19 20:41:53 xd kernel: system 00:04: [mem 0xfeda1000-0xfeda1fff] has
been reserved
Jul 19 20:41:53 xd kernel: system 00:04: [mem 0xfed20000-0xfed7ffff]
could not be reserved
Jul 19 20:41:53 xd kernel: system 00:04: [mem 0xfed90000-0xfed93fff]
could not be reserved
Jul 19 20:41:53 xd kernel: system 00:04: [mem 0xfed45000-0xfed8ffff]
could not be reserved
Jul 19 20:41:53 xd kernel: system 00:04: [mem 0xfee00000-0xfeefffff] has
been reserved
Jul 19 20:41:53 xd kernel: system 00:04: Plug and Play ACPI device, IDs
PNP0c02 (active)
Jul 19 20:41:53 xd kernel: system 00:05: [io 0x1800-0x18fe] could not be
reserved
Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xfe000000-0xfe01ffff]
could not be reserved
Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xfe04c000-0xfe04ffff] has
been reserved
Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xfe050000-0xfe0affff] has
been reserved
Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xfe0d0000-0xfe0fffff] has
been reserved
Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xfe200000-0xfe7fffff] has
been reserved
Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xff000000-0xffffffff]
could not be reserved
Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xfd000000-0xfd68ffff] has
been reserved
Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xfd6b0000-0xfd6cffff] has
been reserved
Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xfd6f0000-0xfdffffff] has
been reserved
Jul 19 20:41:53 xd kernel: system 00:05: Plug and Play ACPI device, IDs
PNP0c02 (active)
Jul 19 20:41:53 xd kernel: system 00:06: [io 0x2000-0x20fe] has been
reserved
Jul 19 20:41:53 xd kernel: system 00:06: Plug and Play ACPI device, IDs
PNP0c02 (active)
Jul 19 20:41:53 xd kernel: system 00:07: Plug and Play ACPI device, IDs
PNP0c02 (active)
Jul 19 20:41:53 xd kernel: pnp: PnP ACPI: found 8 devices
Jul 19 20:41:53 xd kernel: clocksource: acpi_pm: mask: 0xffffff
max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Jul 19 20:41:53 xd kernel: NET: Registered protocol family 2
Jul 19 20:41:53 xd kernel: IP idents hash table entries: 262144 (order:
9, 2097152 bytes, linear)
Jul 19 20:41:53 xd kernel: tcp_listen_portaddr_hash hash table entries:
8192 (order: 5, 131072 bytes, linear)
Jul 19 20:41:53 xd kernel: TCP established hash table entries: 131072
(order: 8, 1048576 bytes, linear)
Jul 19 20:41:53 xd kernel: TCP bind hash table entries: 65536 (order: 8,
1048576 bytes, linear)
Jul 19 20:41:53 xd kernel: TCP: Hash tables configured (established
131072 bind 65536)
Jul 19 20:41:53 xd kernel: UDP hash table entries: 8192 (order: 6,
262144 bytes, linear)
Jul 19 20:41:53 xd kernel: UDP-Lite hash table entries: 8192 (order: 6,
262144 bytes, linear)
Jul 19 20:41:53 xd kernel: NET: Registered protocol family 1
Jul 19 20:41:53 xd kernel: NET: Registered protocol family 44
Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: can't claim BAR 6 [mem
0xfff80000-0xffffffff pref]: no compatible bridge window
Jul 19 20:41:53 xd kernel: pci_bus 0000:00: max bus depth: 1
pci_try_num: 2
Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: BAR 9: assigned [mem
0x4020000000-0x40ffffffff 64bit pref]
Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: BAR 7: assigned [mem
0x4010000000-0x4016ffffff 64bit]
Jul 19 20:41:53 xd kernel: pci 0000:00:15.0: BAR 0: assigned [mem
0x4017000000-0x4017000fff 64bit]
Jul 19 20:41:53 xd kernel: pci 0000:00:15.3: BAR 0: assigned [mem
0x4017001000-0x4017001fff 64bit]
Jul 19 20:41:53 xd kernel: pci 0000:00:19.0: BAR 0: assigned [mem
0x4017002000-0x4017002fff 64bit]
Jul 19 20:41:53 xd kernel: pci 0000:00:19.1: BAR 0: assigned [mem
0x4017003000-0x4017003fff 64bit]
Jul 19 20:41:53 xd kernel: pci 0000:00:1f.5: BAR 0: assigned [mem
0x4f800000-0x4f800fff]
Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: BAR 6: no space for [mem
size 0x00080000 pref]
Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: BAR 6: failed to assign
[mem size 0x00080000 pref]
Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: PCI bridge to [bus 01]
Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: bridge window [io
0x4000-0x4fff]
Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: bridge window [mem
0x52000000-0x52ffffff]
Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: bridge window [mem
0x6000000000-0x6011ffffff 64bit pref]
Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: PCI bridge to [bus 02]
Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: bridge window [io
0x3000-0x3fff]
Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: bridge window [mem
0x53000000-0x530fffff]
Jul 19 20:41:53 xd kernel: pci 0000:00:1d.1: PCI bridge to [bus 03]
Jul 19 20:41:53 xd kernel: pci 0000:00:1d.1: bridge window [mem
0x6015000000-0x60151fffff 64bit pref]
Jul 19 20:41:53 xd kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7
window]
Jul 19 20:41:53 xd kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff
window]
Jul 19 20:41:53 xd kernel: pci_bus 0000:00: resource 6 [mem
0x000a0000-0x000bffff window]
Jul 19 20:41:53 xd kernel: pci_bus 0000:00: resource 7 [mem
0x4f800000-0xbfffffff window]
Jul 19 20:41:53 xd kernel: pci_bus 0000:00: resource 8 [mem
0x4000000000-0x7fffffffff window]
Jul 19 20:41:53 xd kernel: pci_bus 0000:01: resource 0 [io
0x4000-0x4fff]
Jul 19 20:41:53 xd kernel: pci_bus 0000:01: resource 1 [mem
0x52000000-0x52ffffff]
Jul 19 20:41:53 xd kernel: pci_bus 0000:01: resource 2 [mem
0x6000000000-0x6011ffffff 64bit pref]
Jul 19 20:41:53 xd kernel: pci_bus 0000:02: resource 0 [io
0x3000-0x3fff]
Jul 19 20:41:53 xd kernel: pci_bus 0000:02: resource 1 [mem
0x53000000-0x530fffff]
Jul 19 20:41:53 xd kernel: pci_bus 0000:03: resource 2 [mem
0x6015000000-0x60151fffff 64bit pref]
Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: Video device with shadowed
ROM at [mem 0x000c0000-0x000dffff]
Jul 19 20:41:53 xd kernel: PCI: CLS 64 bytes, default 64
Jul 19 20:41:53 xd kernel: Trying to unpack rootfs image as initramfs...
Jul 19 20:41:53 xd kernel: Freeing initrd memory: 43668K
Jul 19 20:41:53 xd kernel: DMAR: No ATSR found
Jul 19 20:41:53 xd kernel: DMAR: dmar0: Using Queued invalidation
Jul 19 20:41:53 xd kernel: DMAR: dmar1: Using Queued invalidation
Jul 19 20:41:53 xd kernel: pci 0000:00:00.0: Adding to iommu group 0
Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: Adding to iommu group 1
Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: Adding to iommu group 2
Jul 19 20:41:53 xd kernel: pci 0000:00:08.0: Adding to iommu group 3
Jul 19 20:41:53 xd kernel: pci 0000:00:0e.0: Adding to iommu group 4
Jul 19 20:41:53 xd kernel: pci 0000:00:14.0: Adding to iommu group 5
Jul 19 20:41:53 xd kernel: pci 0000:00:14.2: Adding to iommu group 5
Jul 19 20:41:53 xd kernel: pci 0000:00:15.0: Adding to iommu group 6
Jul 19 20:41:53 xd kernel: pci 0000:00:15.3: Adding to iommu group 6
Jul 19 20:41:53 xd kernel: pci 0000:00:16.0: Adding to iommu group 7
Jul 19 20:41:53 xd kernel: pci 0000:00:17.0: Adding to iommu group 8
Jul 19 20:41:53 xd kernel: pci 0000:00:19.0: Adding to iommu group 9
Jul 19 20:41:53 xd kernel: pci 0000:00:19.1: Adding to iommu group 9
Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: Adding to iommu group 10
Jul 19 20:41:53 xd kernel: pci 0000:00:1d.1: Adding to iommu group 11
Jul 19 20:41:53 xd kernel: pci 0000:00:1f.0: Adding to iommu group 12
Jul 19 20:41:53 xd kernel: pci 0000:00:1f.3: Adding to iommu group 12
Jul 19 20:41:53 xd kernel: pci 0000:00:1f.4: Adding to iommu group 12
Jul 19 20:41:53 xd kernel: pci 0000:00:1f.5: Adding to iommu group 12
Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: Adding to iommu group 13
Jul 19 20:41:53 xd kernel: pci 0000:02:00.0: Adding to iommu group 14
Jul 19 20:41:53 xd kernel: pci 0000:03:00.0: Adding to iommu group 15
Jul 19 20:41:53 xd kernel: DMAR: Intel(R) Virtualization Technology for
Directed I/O
Jul 19 20:41:53 xd kernel: PCI-DMA: Using software bounce buffering for
IO (SWIOTLB)
Jul 19 20:41:53 xd kernel: software IO TLB: mapped [mem
0x0000000037663000-0x000000003b663000] (64MB)
Jul 19 20:41:53 xd kernel: clocksource: tsc: mask: 0xffffffffffffffff
max_cycles: 0x22df1149949, max_idle_ns: 440795312789 ns
Jul 19 20:41:53 xd kernel: clocksource: Switched to clocksource tsc
Jul 19 20:41:53 xd kernel: Initialise system trusted keyrings
Jul 19 20:41:53 xd kernel: Key type blacklist registered
Jul 19 20:41:53 xd kernel: workingset: timestamp_bits=36 max_order=22
bucket_order=0
Jul 19 20:41:53 xd kernel: zbud: loaded
Jul 19 20:41:53 xd kernel: integrity: Platform Keyring initialized
Jul 19 20:41:53 xd kernel: Key type asymmetric registered
Jul 19 20:41:53 xd kernel: Asymmetric key parser 'x509' registered
Jul 19 20:41:53 xd kernel: Block layer SCSI generic (bsg) driver version
0.4 loaded (major 251)
Jul 19 20:41:53 xd kernel: io scheduler mq-deadline registered
Jul 19 20:41:53 xd kernel: pcieport 0000:00:06.0: PME: Signaling with
IRQ 122
Jul 19 20:41:53 xd kernel: pcieport 0000:00:06.0: AER: enabled with IRQ
122
Jul 19 20:41:53 xd kernel: pcieport 0000:00:06.0: DPC: enabled with IRQ
122
Jul 19 20:41:53 xd kernel: pcieport 0000:00:06.0: DPC: error containment
capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4,
DL_ActiveErr+
Jul 19 20:41:53 xd kernel: pcieport 0000:00:1d.0: PME: Signaling with
IRQ 123
Jul 19 20:41:53 xd kernel: pcieport 0000:00:1d.0: AER: enabled with IRQ
123
Jul 19 20:41:53 xd kernel: pcieport 0000:00:1d.0: DPC: enabled with IRQ
123
Jul 19 20:41:53 xd kernel: pcieport 0000:00:1d.0: DPC: error containment
capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4,
DL_ActiveErr+
Jul 19 20:41:53 xd kernel: pcieport 0000:00:1d.1: PME: Signaling with
IRQ 124
Jul 19 20:41:53 xd kernel: pcieport 0000:00:1d.1: AER: enabled with IRQ
124
Jul 19 20:41:53 xd kernel: pcieport 0000:00:1d.1: DPC: enabled with IRQ
124
Jul 19 20:41:53 xd kernel: pcieport 0000:00:1d.1: DPC: error containment
capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4,
DL_ActiveErr+
Jul 19 20:41:53 xd kernel: shpchp: Standard Hot Plug PCI Controller
Driver version: 0.4
Jul 19 20:41:53 xd kernel: efifb: probing for efifb
Jul 19 20:41:53 xd kernel: efifb: framebuffer at 0x4000000000, using
8128k, total 8128k
Jul 19 20:41:53 xd kernel: efifb: mode is 1920x1080x32, linelength=7680,
pages=1
Jul 19 20:41:53 xd kernel: efifb: scrolling: redraw
Jul 19 20:41:53 xd kernel: efifb: Truecolor: size=8:8:8:8,
shift=24:16:8:0
Jul 19 20:41:53 xd kernel: Console: switching to colour frame buffer
device 240x67
Jul 19 20:41:53 xd kernel: fb0: EFI VGA frame buffer device
Jul 19 20:41:53 xd kernel: intel_idle: MWAIT substates: 0x11121020
Jul 19 20:41:53 xd kernel: Monitor-Mwait will be used to enter C-1 state
Jul 19 20:41:53 xd kernel: Monitor-Mwait will be used to enter C-2 state
Jul 19 20:41:53 xd kernel: Monitor-Mwait will be used to enter C-3 state
Jul 19 20:41:53 xd kernel: ACPI: \_SB_.PR00: Found 3 idle states
Jul 19 20:41:53 xd kernel: intel_idle: v0.5.1 model 0x8C
Jul 19 20:41:53 xd kernel: intel_idle: Local APIC timer is reliable in
all C-states
Jul 19 20:41:53 xd kernel: thermal LNXTHERM:00: registered as
thermal_zone0
Jul 19 20:41:53 xd kernel: ACPI: Thermal Zone [TZ00] (28 C)
Jul 19 20:41:53 xd kernel: Serial: 8250/16550 driver, 4 ports, IRQ
sharing enabled
Jul 19 20:41:53 xd kernel: hpet_acpi_add: no address or irqs in _CRS
Jul 19 20:41:53 xd kernel: Linux agpgart interface v0.103
Jul 19 20:41:53 xd kernel: AMD-Vi: AMD IOMMUv2 functionality not
available on this system - This is not a bug.
Jul 19 20:41:53 xd kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K] at
0x60,0x64 irq 1
Jul 19 20:41:53 xd kernel: i8042: PNP: PS/2 appears to have AUX port
disabled, if this is incorrect please boot with i8042.nopnp
Jul 19 20:41:53 xd kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Jul 19 20:41:53 xd kernel: mousedev: PS/2 mouse device common for all
mice
Jul 19 20:41:53 xd kernel: rtc_cmos 00:01: RTC can wake from S4
Jul 19 20:41:53 xd kernel: rtc_cmos 00:01: registered as rtc0
Jul 19 20:41:53 xd kernel: rtc_cmos 00:01: setting system clock to
2022-07-19T19:41:51 UTC (1658259711)
Jul 19 20:41:53 xd kernel: rtc_cmos 00:01: alarms up to one month, y3k,
242 bytes nvram
Jul 19 20:41:53 xd kernel: intel_pstate: Intel P-state driver
initializing
Jul 19 20:41:53 xd kernel: intel_pstate: HWP enabled
Jul 19 20:41:53 xd kernel: ledtrig-cpu: registered to indicate activity
on CPUs
Jul 19 20:41:53 xd kernel: NET: Registered protocol family 10
Jul 19 20:41:53 xd kernel: Segment Routing with IPv6
Jul 19 20:41:53 xd kernel: mip6: Mobile IPv6
Jul 19 20:41:53 xd kernel: NET: Registered protocol family 17
Jul 19 20:41:53 xd kernel: mpls_gso: MPLS GSO support
Jul 19 20:41:53 xd kernel: microcode: sig=0x806c1, pf=0x80,
revision=0x8a
Jul 19 20:41:53 xd kernel: microcode: Microcode Update Driver: v2.2.
Jul 19 20:41:53 xd kernel: resctrl: L2 allocation detected
Jul 19 20:41:53 xd kernel: resctrl: L2DATA allocation detected
Jul 19 20:41:53 xd kernel: resctrl: L2CODE allocation detected
Jul 19 20:41:53 xd kernel: IPI shorthand broadcast: enabled
Jul 19 20:41:53 xd kernel: sched_clock: Marking stable (804088381,
6362109)->(820685197, -10234707)
Jul 19 20:41:53 xd kernel: registered taskstats version 1
Jul 19 20:41:53 xd kernel: Loading compiled-in X.509 certificates
Jul 19 20:41:53 xd kernel: input: AT Translated Set 2 keyboard as
/devices/platform/i8042/serio0/input/input0
Jul 19 20:41:53 xd kernel: Loaded X.509 cert 'Debian Secure Boot CA:
6ccece7e4c6c0d1f6149f3dd27dfcc5cbb419ea1'
Jul 19 20:41:53 xd kernel: Loaded X.509 cert 'Debian Secure Boot Signer
2021 - linux: 4b6ef5abca669825178e052c84667ccbc0531f8c'
Jul 19 20:41:53 xd kernel: zswap: loaded using pool lzo/zbud
Jul 19 20:41:53 xd kernel: Key type ._fscrypt registered
Jul 19 20:41:53 xd kernel: Key type .fscrypt registered
Jul 19 20:41:53 xd kernel: Key type fscrypt-provisioning registered
Jul 19 20:41:53 xd kernel: AppArmor: AppArmor sha1 policy hashing
enabled
Jul 19 20:41:53 xd kernel: Freeing unused kernel image (initmem) memory:
2424K
Jul 19 20:41:53 xd kernel: Write protecting the kernel read-only data:
22528k
Jul 19 20:41:53 xd kernel: Freeing unused kernel image (text/rodata gap)
memory: 2040K
Jul 19 20:41:53 xd kernel: Freeing unused kernel image (rodata/data gap)
memory: 624K
Jul 19 20:41:53 xd kernel: x86/mm: Checked W+X mappings: passed, no W+X
pages found.
Jul 19 20:41:53 xd kernel: Run /init as init process
Jul 19 20:41:53 xd kernel: with arguments:
Jul 19 20:41:53 xd kernel: /init
Jul 19 20:41:53 xd kernel: with environment:
Jul 19 20:41:53 xd kernel: HOME=/
Jul 19 20:41:53 xd kernel: TERM=linux
Jul 19 20:41:53 xd kernel: BOOT_IMAGE=/vmlinuz-5.10.0-16-amd64
Jul 19 20:41:53 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block
query control method not found
Jul 19 20:41:53 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block
query control method not found
Jul 19 20:41:53 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block
query control method not found
Jul 19 20:41:53 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block
query control method not found
Jul 19 20:41:53 xd kernel: acpi PNP0C14:03: duplicate WMI GUID
05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
Jul 19 20:41:53 xd kernel: acpi PNP0C14:04: duplicate WMI GUID
05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
Jul 19 20:41:53 xd kernel: input: Lid Switch as
/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:21/PNP0C0D:00/input/input1
Jul 19 20:41:53 xd kernel: ACPI: Lid Switch [LID0]
Jul 19 20:41:53 xd kernel: input: Sleep Button as
/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2
Jul 19 20:41:53 xd kernel: ACPI: Sleep Button [SLPB]
Jul 19 20:41:53 xd kernel: input: Power Button as
/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input3
Jul 19 20:41:53 xd kernel: battery: ACPI: Battery Slot [BAT1] (battery
present)
Jul 19 20:41:53 xd kernel: vmd 0000:00:0e.0: PCI host bridge to bus
10000:e0
Jul 19 20:41:53 xd kernel: pci_bus 10000:e0: root bus resource [bus
e0-ff]
Jul 19 20:41:53 xd kernel: pci_bus 10000:e0: root bus resource [mem
0x50000000-0x51ffffff]
Jul 19 20:41:53 xd kernel: pci_bus 10000:e0: root bus resource [mem
0x6015302000-0x60153fffff 64bit]
Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: [8086:a0d3] type 00 class
0x010601
Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: reg 0x10: [mem
0x00000000-0x00001fff]
Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: reg 0x14: [mem
0x00000000-0x000000ff]
Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: reg 0x18: [io
0x0000-0x0007]
Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: reg 0x1c: [io
0x0000-0x0003]
Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: reg 0x20: [io
0x0000-0x001f]
Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: reg 0x24: [mem
0x50000000-0x500007ff]
Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: PME# supported from D3hot
Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: Adding to iommu group 4
Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.0: [8086:09ab] type 00 class
0x088000
Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.0: Adding to iommu group 4
Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: [8086:a0bc] type 01 class
0x060400
Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: PME# supported from D0
D3hot D3cold
Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: PTM enabled (root), 4ns
granularity
Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: Adding to iommu group 4
Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: Primary bus is hard wired
to 0
Jul 19 20:41:53 xd kernel: pci 10000:e1:00.0: [2646:500c] type 00 class
0x010802
Jul 19 20:41:53 xd kernel: pci 10000:e1:00.0: reg 0x10: [mem
0x50100000-0x50103fff 64bit]
Jul 19 20:41:53 xd kernel: pci 10000:e1:00.0: Adding to iommu group 4
Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: PCI bridge to [bus e1]
Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: bridge window [io
0x0000-0x0fff]
Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: bridge window [mem
0x50100000-0x501fffff]
Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: Primary bus is hard wired
to 0
Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: BAR 14: assigned [mem
0x50000000-0x500fffff]
Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 0: assigned [mem
0x50100000-0x50101fff]
Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: BAR 13: no space for [io
size 0x1000]
Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: BAR 13: failed to assign
[io size 0x1000]
Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 5: assigned [mem
0x50102000-0x501027ff]
Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 1: assigned [mem
0x50102800-0x501028ff]
Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 4: no space for [io
size 0x0020]
Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 4: failed to assign
[io size 0x0020]
Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 2: no space for [io
size 0x0008]
Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 2: failed to assign
[io size 0x0008]
Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 3: no space for [io
size 0x0004]
Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 3: failed to assign
[io size 0x0004]
Jul 19 20:41:53 xd kernel: pci 10000:e1:00.0: BAR 0: assigned [mem
0x50000000-0x50003fff 64bit]
Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: PCI bridge to [bus e1]
Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: bridge window [mem
0x50000000-0x500fffff]
Jul 19 20:41:53 xd kernel: pcieport 10000:e0:1c.4: can't derive routing
for PCI INT A
Jul 19 20:41:53 xd kernel: pcieport 10000:e0:1c.4: PCI INT A: no GSI
Jul 19 20:41:53 xd kernel: pcieport 10000:e0:1c.4: PME: Signaling with
IRQ 144
Jul 19 20:41:53 xd kernel: pcieport 10000:e0:1c.4: AER: enabled with IRQ
144
Jul 19 20:41:53 xd kernel: pcieport 10000:e0:1c.4: DPC: enabled with IRQ
144
Jul 19 20:41:53 xd kernel: pcieport 10000:e0:1c.4: DPC: error
containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP
PIO Log 4, DL_ActiveErr+
Jul 19 20:41:53 xd kernel: vmd 0000:00:0e.0: Bound to PCI domain 10000
Jul 19 20:41:53 xd kernel: i801_smbus 0000:00:1f.4: SPD Write Disable is
set
Jul 19 20:41:53 xd kernel: i801_smbus 0000:00:1f.4: SMBus using PCI
interrupt
Jul 19 20:41:53 xd kernel: i2c i2c-0: 2/2 memory slots populated (from
DMI)
Jul 19 20:41:53 xd kernel: i2c i2c-0: Successfully instantiated SPD at
0x50
Jul 19 20:41:53 xd kernel: hid: raw HID events driver (C) Jiri Kosina
Jul 19 20:41:53 xd kernel: ACPI: Power Button [PWRB]
Jul 19 20:41:53 xd kernel: ACPI: bus type USB registered
Jul 19 20:41:53 xd kernel: usbcore: registered new interface driver
usbfs
Jul 19 20:41:53 xd kernel: usbcore: registered new interface driver hub
Jul 19 20:41:53 xd kernel: usbcore: registered new device driver usb
Jul 19 20:41:53 xd kernel: SCSI subsystem initialized
Jul 19 20:41:53 xd kernel: intel-lpss 0000:00:15.0: enabling device
(0004 -> 0006)
Jul 19 20:41:53 xd kernel: idma64 idma64.0: Found Intel integrated DMA
64-bit
Jul 19 20:41:53 xd kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Jul 19 20:41:53 xd kernel: xhci_hcd 0000:00:14.0: new USB bus
registered, assigned bus number 1
Jul 19 20:41:53 xd kernel: xhci_hcd 0000:00:14.0: hcc params 0x20007fc1
hci version 0x120 quirks 0x0000000000009810
Jul 19 20:41:53 xd kernel: xhci_hcd 0000:00:14.0: cache line size of 64
is not supported
Jul 19 20:41:53 xd kernel: usb usb1: New USB device found,
idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
Jul 19 20:41:53 xd kernel: usb usb1: New USB device strings: Mfr=3,
Product=2, SerialNumber=1
Jul 19 20:41:53 xd kernel: usb usb1: Product: xHCI Host Controller
Jul 19 20:41:53 xd kernel: usb usb1: Manufacturer: Linux 5.10.0-16-amd64
xhci-hcd
Jul 19 20:41:53 xd kernel: usb usb1: SerialNumber: 0000:00:14.0
Jul 19 20:41:53 xd kernel: hub 1-0:1.0: USB hub found
Jul 19 20:41:53 xd kernel: hub 1-0:1.0: 12 ports detected
Jul 19 20:41:53 xd kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Jul 19 20:41:53 xd kernel: xhci_hcd 0000:00:14.0: new USB bus
registered, assigned bus number 2
Jul 19 20:41:53 xd kernel: xhci_hcd 0000:00:14.0: Host supports USB 3.1
Enhanced SuperSpeed
Jul 19 20:41:53 xd kernel: usb usb2: New USB device found,
idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
Jul 19 20:41:53 xd kernel: usb usb2: New USB device strings: Mfr=3,
Product=2, SerialNumber=1
Jul 19 20:41:53 xd kernel: usb usb2: Product: xHCI Host Controller
Jul 19 20:41:53 xd kernel: usb usb2: Manufacturer: Linux 5.10.0-16-amd64
xhci-hcd
Jul 19 20:41:53 xd kernel: usb usb2: SerialNumber: 0000:00:14.0
Jul 19 20:41:53 xd kernel: hub 2-0:1.0: USB hub found
Jul 19 20:41:53 xd kernel: hub 2-0:1.0: 4 ports detected
Jul 19 20:41:53 xd kernel: nvme nvme0: pci function 10000:e1:00.0
Jul 19 20:41:53 xd kernel: pcieport 10000:e0:1c.4: can't derive routing
for PCI INT A
Jul 19 20:41:53 xd kernel: nvme 10000:e1:00.0: PCI INT A: no GSI
Jul 19 20:41:53 xd kernel: libata version 3.00 loaded.
Jul 19 20:41:53 xd kernel: nvme nvme0: missing or invalid SUBNQN field.
Jul 19 20:41:53 xd kernel: nvme nvme0: Shutdown timeout set to 10
seconds
Jul 19 20:41:53 xd kernel: r8169 0000:02:00.0 eth0: RTL8168h/8111h,
08:8f:c3:4f:86:c5, XID 541, IRQ 147
Jul 19 20:41:53 xd kernel: r8169 0000:02:00.0 eth0: jumbo features
[frames: 9194 bytes, tx checksumming: ko]
Jul 19 20:41:53 xd kernel: nvme nvme0: 8/0/0 default/read/poll queues
Jul 19 20:41:53 xd kernel: nvme0n1: p1 p2 p3 p4 p5
Jul 19 20:41:53 xd kernel: intel-lpss 0000:00:15.3: enabling device
(0004 -> 0006)
Jul 19 20:41:53 xd kernel: idma64 idma64.1: Found Intel integrated DMA
64-bit
Jul 19 20:41:53 xd kernel: i2c_hid i2c-ELAN0515:01: supply vdd not
found, using dummy regulator
Jul 19 20:41:53 xd kernel: i2c_hid i2c-ELAN0515:01: supply vddl not
found, using dummy regulator
Jul 19 20:41:53 xd kernel: intel-lpss 0000:00:19.0: enabling device
(0004 -> 0006)
Jul 19 20:41:53 xd kernel: idma64 idma64.2: Found Intel integrated DMA
64-bit
Jul 19 20:41:53 xd kernel: intel-lpss 0000:00:19.1: enabling device
(0004 -> 0006)
Jul 19 20:41:53 xd kernel: idma64 idma64.3: Found Intel integrated DMA
64-bit
Jul 19 20:41:53 xd kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jul 19 20:41:53 xd kernel: input: ELAN0515:01 04F3:3142 Mouse as
/devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input4
Jul 19 20:41:53 xd kernel: input: ELAN0515:01 04F3:3142 Touchpad as
/devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input6
Jul 19 20:41:53 xd kernel: hid-generic 0018:04F3:3142.0001:
input,hidraw0: I2C HID v1.00 Mouse [ELAN0515:01 04F3:3142] on
i2c-ELAN0515:01
Jul 19 20:41:53 xd kernel: ahci 10000:e0:17.0: version 3.0
Jul 19 20:41:53 xd kernel: ahci 10000:e0:17.0: can't derive routing for
PCI INT A
Jul 19 20:41:53 xd kernel: ahci 10000:e0:17.0: PCI INT A: no GSI
Jul 19 20:41:53 xd kernel: ahci 10000:e0:17.0: AHCI 0001.0301 32 slots 2
ports 6 Gbps 0x3 impl SATA mode
Jul 19 20:41:53 xd kernel: ahci 10000:e0:17.0: flags: 64bit ncq sntf pm
clo only pio slum part deso sadm sds
Jul 19 20:41:53 xd kernel: scsi host0: ahci
Jul 19 20:41:53 xd kernel: scsi host1: ahci
Jul 19 20:41:53 xd kernel: ata1: SATA max UDMA/133 abar m2048@0x50102000
port 0x50102100 irq 157
Jul 19 20:41:53 xd kernel: ata2: SATA max UDMA/133 abar m2048@0x50102000
port 0x50102180 irq 157
Jul 19 20:41:53 xd kernel: ACPI Warning: \_SB.PC00.GFX0._DSM: Argument
#4 type mismatch - Found [Buffer], ACPI requires [Package]
(20200925/nsarguments-61)
Jul 19 20:41:53 xd kernel: ACPI Warning: \_SB.PC00.PEG0.PEGP._DSM:
Argument #4 type mismatch - Found [Buffer], ACPI requires [Package]
(20200925/nsarguments-61)
Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: optimus capabilities:
enabled, status dynamic power, hda bios codec supported
Jul 19 20:41:53 xd kernel: VGA switcheroo: detected Optimus DSM method
\_SB_.PC00.PEG0.PEGP handle
Jul 19 20:41:53 xd kernel: nouveau: detected PR support, will not use
DSM
Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: enabling device (0006
-> 0007)
Jul 19 20:41:53 xd kernel: checking generic (4000000000 7f0000) vs hw
(52000000 1000000)
Jul 19 20:41:53 xd kernel: checking generic (4000000000 7f0000) vs hw
(6000000000 10000000)
Jul 19 20:41:53 xd kernel: checking generic (4000000000 7f0000) vs hw
(6010000000 2000000)
Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: NVIDIA TU117 (167000a1)
Jul 19 20:41:53 xd kernel: i915 0000:00:02.0: [drm] VT-d active for gfx
access
Jul 19 20:41:53 xd kernel: checking generic (4000000000 7f0000) vs hw
(6014000000 1000000)
Jul 19 20:41:53 xd kernel: checking generic (4000000000 7f0000) vs hw
(4000000000 10000000)
Jul 19 20:41:53 xd kernel: fb0: switching to inteldrmfb from EFI VGA
Jul 19 20:41:53 xd kernel: Console: switching to colour dummy device
80x25
Jul 19 20:41:53 xd kernel: i915 0000:00:02.0: vgaarb: deactivate vga
console
Jul 19 20:41:53 xd kernel: i915 0000:00:02.0: vgaarb: changed VGA
decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
Jul 19 20:41:53 xd kernel: i915 0000:00:02.0: firmware: failed to load
i915/tgl_dmc_ver2_08.bin (-2)
Jul 19 20:41:53 xd kernel: firmware_class: See
https://wiki.debian.org/Firmware for information about missing firmware
Jul 19 20:41:53 xd kernel: i915 0000:00:02.0: Direct firmware load for
i915/tgl_dmc_ver2_08.bin failed with error -2
Jul 19 20:41:53 xd kernel: i915 0000:00:02.0: [drm] Failed to load DMC
firmware i915/tgl_dmc_ver2_08.bin. Disabling runtime power management.
Jul 19 20:41:53 xd kernel: i915 0000:00:02.0: [drm] DMC firmware
homepage:
https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/i915
Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: bios: version
90.17.74.00.2f
Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: firmware: failed to
load nvidia/tu117/nvdec/scrubber.bin (-2)
Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: firmware: failed to
load nvidia/tu117/acr/bl.bin (-2)
Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: firmware: failed to
load nvidia/tu117/acr/bl.bin (-2)
Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: firmware: failed to
load nvidia/tu117/acr/unload_bl.bin (-2)
Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: pmu: firmware
unavailable
Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: gr: firmware
unavailable
Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: sec2: firmware
unavailable
Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: fb: 2048 MiB GDDR5
Jul 19 20:41:53 xd kernel: [TTM] Zone kernel: Available graphics memory:
8082824 KiB
Jul 19 20:41:53 xd kernel: [TTM] Zone dma32: Available graphics memory:
2097152 KiB
Jul 19 20:41:53 xd kernel: [TTM] Initializing pool allocator
Jul 19 20:41:53 xd kernel: [TTM] Initializing DMA pool allocator
Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: DRM: VRAM: 2048 MiB
Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: DRM: GART: 536870912
MiB
Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: DRM: BIT table 'A' not
found
Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: DRM: BIT table 'L' not
found
Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: DRM: Pointer to TMDS
table not found
Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: DRM: DCB version 4.1
Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: DRM: failed to create
kernel channel, -22
Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: DRM: MM: using COPY for
buffer copies
Jul 19 20:41:53 xd kernel: usb 1-5: new low-speed USB device number 2
using xhci_hcd
Jul 19 20:41:53 xd kernel: [drm] Initialized nouveau 1.3.1 20120801 for
0000:01:00.0 on minor 1
Jul 19 20:41:53 xd kernel: usb 1-5: New USB device found, idVendor=046d,
idProduct=c077, bcdDevice=72.00
Jul 19 20:41:53 xd kernel: usb 1-5: New USB device strings: Mfr=1,
Product=2, SerialNumber=0
Jul 19 20:41:53 xd kernel: usb 1-5: Product: USB Optical Mouse
Jul 19 20:41:53 xd kernel: usb 1-5: Manufacturer: Logitech
Jul 19 20:41:53 xd kernel: ata2: SATA link down (SStatus 0 SControl 300)
Jul 19 20:41:53 xd kernel: ata1: SATA link down (SStatus 0 SControl 300)
Jul 19 20:41:53 xd kernel: input: Logitech USB Optical Mouse as
/devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.0/0003:046D:C077.0002/input/input7
Jul 19 20:41:53 xd kernel: hid-generic 0003:046D:C077.0002:
input,hidraw1: USB HID v1.11 Mouse [Logitech USB Optical Mouse] on
usb-0000:00:14.0-5/input0
Jul 19 20:41:53 xd kernel: usbcore: registered new interface driver
usbhid
Jul 19 20:41:53 xd kernel: usbhid: USB HID core driver
Jul 19 20:41:53 xd kernel: usb 1-7: new full-speed USB device number 3
using xhci_hcd
Jul 19 20:41:53 xd kernel: usb 1-7: New USB device found, idVendor=04f3,
idProduct=0c4f, bcdDevice= 1.61
Jul 19 20:41:53 xd kernel: usb 1-7: New USB device strings: Mfr=1,
Product=2, SerialNumber=0
Jul 19 20:41:53 xd kernel: usb 1-7: Product: ELAN:Fingerprint
Jul 19 20:41:53 xd kernel: usb 1-7: Manufacturer: ELAN
Jul 19 20:41:53 xd kernel: usb 1-8: new high-speed USB device number 4
using xhci_hcd
Jul 19 20:41:53 xd kernel: usb 1-8: New USB device found, idVendor=0408,
idProduct=a061, bcdDevice= 0.04
Jul 19 20:41:53 xd kernel: usb 1-8: New USB device strings: Mfr=1,
Product=2, SerialNumber=0
Jul 19 20:41:53 xd kernel: usb 1-8: Product: HD User Facing
Jul 19 20:41:53 xd kernel: usb 1-8: Manufacturer: SunplusIT Inc
Jul 19 20:41:53 xd kernel: usb 1-10: new high-speed USB device number 5
using xhci_hcd
Jul 19 20:41:53 xd kernel: usb 1-10: New USB device found,
idVendor=04ca, idProduct=3802, bcdDevice= 1.00
Jul 19 20:41:53 xd kernel: usb 1-10: New USB device strings: Mfr=5,
Product=6, SerialNumber=7
Jul 19 20:41:53 xd kernel: usb 1-10: Product: Wireless_Device
Jul 19 20:41:53 xd kernel: usb 1-10: Manufacturer: MediaTek Inc.
Jul 19 20:41:53 xd kernel: usb 1-10: SerialNumber: 000000000
Jul 19 20:41:53 xd kernel: [drm] Initialized i915 1.6.0 20200917 for
0000:00:02.0 on minor 0
Jul 19 20:41:53 xd kernel: [Firmware Bug]: ACPI(PEGP) defines _DOD but
not _DOS
Jul 19 20:41:53 xd kernel: ACPI: Video Device [PEGP] (multi-head: yes
rom: no post: no)
Jul 19 20:41:53 xd kernel: input: Video Bus as
/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/LNXVIDEO:00/input/input8
Jul 19 20:41:53 xd kernel: ACPI: Video Device [GFX0] (multi-head: yes
rom: no post: no)
Jul 19 20:41:53 xd kernel: input: Video Bus as
/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input9
Jul 19 20:41:53 xd kernel: vga_switcheroo: enabled
Jul 19 20:41:53 xd kernel: fbcon: i915drmfb (fb0) is primary device
Jul 19 20:41:53 xd kernel: Console: switching to colour frame buffer
device 240x67
Jul 19 20:41:53 xd kernel: i915 0000:00:02.0: [drm] fb0: i915drmfb frame
buffer device
Jul 19 20:41:53 xd kernel: PM: Image not found (code -22)
Jul 19 20:41:53 xd kernel: EXT4-fs (nvme0n1p3): mounting ext3 file
system using the ext4 subsystem
Jul 19 20:41:53 xd kernel: EXT4-fs (nvme0n1p3): mounted filesystem with
ordered data mode. Opts: (null)
Jul 19 20:41:53 xd kernel: Not activating Mandatory Access Control as
/sbin/tomoyo-init does not exist.
Jul 19 20:41:53 xd systemd[1]: Inserted module 'autofs4'
Jul 19 20:41:53 xd systemd[1]: systemd 247.3-7 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=unified)
Jul 19 20:41:53 xd systemd[1]: Detected architecture x86-64.
Jul 19 20:41:53 xd systemd[1]: Set hostname to <xd>.
Jul 19 20:41:53 xd systemd[1]:
/lib/systemd/system/plymouth-start.service:16: Unit configured to use
KillMode=none. This is unsafe, as it disables systemd's process
lifecycle management for the service. Please update your service to use
a safer KillMode=, such as 'mixed' or 'control-group'. Support for
KillMode=none is deprecated and will eventually be removed.
Jul 19 20:41:53 xd systemd[1]: Queued start job for default target
Graphical Interface.
Jul 19 20:41:53 xd systemd[1]: Created slice system-getty.slice.
Jul 19 20:41:53 xd systemd[1]: Created slice system-modprobe.slice.
Jul 19 20:41:53 xd systemd[1]: Created slice
system-systemd\x2dfsck.slice.
Jul 19 20:41:53 xd systemd[1]: Created slice User and Session Slice.
Jul 19 20:41:53 xd systemd[1]: Started Forward Password Requests to Wall
Directory Watch.
Jul 19 20:41:53 xd systemd[1]: Set up automount Arbitrary Executable
File Formats File System Automount Point.
Jul 19 20:41:53 xd systemd[1]: Reached target User and Group Name
Lookups.
Jul 19 20:41:53 xd systemd[1]: Reached target Remote File Systems.
Jul 19 20:41:53 xd systemd[1]: Reached target Slices.
Jul 19 20:41:53 xd systemd[1]: Listening on Device-mapper event daemon
FIFOs.
Jul 19 20:41:53 xd systemd[1]: Listening on LVM2 poll daemon socket.
Jul 19 20:41:53 xd systemd[1]: Listening on Syslog Socket.
Jul 19 20:41:53 xd systemd[1]: Listening on fsck to fsckd communication
Socket.
Jul 19 20:41:53 xd systemd[1]: Listening on initctl Compatibility Named
Pipe.
Jul 19 20:41:53 xd systemd[1]: Listening on Journal Audit Socket.
Jul 19 20:41:53 xd systemd[1]: Listening on Journal Socket (/dev/log).
Jul 19 20:41:53 xd systemd[1]: Listening on Journal Socket.
Jul 19 20:41:53 xd systemd[1]: Listening on udev Control Socket.
Jul 19 20:41:53 xd systemd[1]: Listening on udev Kernel Socket.
Jul 19 20:41:53 xd systemd[1]: Mounting Huge Pages File System...
Jul 19 20:41:53 xd systemd[1]: Mounting POSIX Message Queue File
System...
Jul 19 20:41:53 xd systemd[1]: Mounting Kernel Debug File System...
Jul 19 20:41:53 xd systemd[1]: Mounting Kernel Trace File System...
Jul 19 20:41:53 xd systemd[1]: Finished Availability of block devices.
Jul 19 20:41:53 xd systemd[1]: Starting Set the console keyboard
layout...
Jul 19 20:41:53 xd systemd[1]: Starting Create list of static device
nodes for the current kernel...
Jul 19 20:41:53 xd systemd[1]: Starting Monitoring of LVM2 mirrors,
snapshots etc. using dmeventd or progress polling...
Jul 19 20:41:53 xd systemd[1]: Starting Load Kernel Module configfs...
Jul 19 20:41:53 xd systemd[1]: Starting Load Kernel Module drm...
Jul 19 20:41:53 xd systemd[1]: Starting Load Kernel Module fuse...
Jul 19 20:41:53 xd systemd[1]: Condition check resulted in Set Up
Additional Binary Formats being skipped.
Jul 19 20:41:53 xd systemd[1]: Condition check resulted in File System
Check on Root Device being skipped.
Jul 19 20:41:53 xd systemd[1]: Starting Journal Service...
Jul 19 20:41:53 xd systemd[1]: Starting Load Kernel Modules...
Jul 19 20:41:53 xd systemd[1]: Starting Remount Root and Kernel File
Systems...
Jul 19 20:41:53 xd systemd[1]: Starting Coldplug All udev Devices...
Jul 19 20:41:53 xd systemd[1]: Mounted Huge Pages File System.
Jul 19 20:41:53 xd systemd[1]: Mounted POSIX Message Queue File System.
Jul 19 20:41:53 xd systemd[1]: Mounted Kernel Debug File System.
Jul 19 20:41:53 xd systemd[1]: Mounted Kernel Trace File System.
Jul 19 20:41:53 xd systemd[1]: Finished Create list of static device
nodes for the current kernel.
Jul 19 20:41:53 xd systemd[1]: modprobe@configfs.service: Succeeded.
Jul 19 20:41:53 xd systemd[1]: Finished Load Kernel Module configfs.
Jul 19 20:41:53 xd systemd[1]: modprobe@drm.service: Succeeded.
Jul 19 20:41:53 xd systemd[1]: Finished Load Kernel Module drm.
Jul 19 20:41:53 xd systemd[1]: Mounting Kernel Configuration File
System...
Jul 19 20:41:53 xd systemd[1]: Mounted Kernel Configuration File System.
Jul 19 20:41:53 xd kernel: fuse: init (API version 7.32)
Jul 19 20:41:53 xd systemd[1]: modprobe@fuse.service: Succeeded.
Jul 19 20:41:53 xd systemd[1]: Finished Load Kernel Module fuse.
Jul 19 20:41:53 xd systemd[1]: Mounting FUSE Control File System...
Jul 19 20:41:53 xd kernel: EXT4-fs (nvme0n1p3): re-mounted. Opts:
errors=remount-ro
Jul 19 20:41:53 xd systemd[1]: Finished Remount Root and Kernel File
Systems.
Jul 19 20:41:53 xd systemd[1]: Condition check resulted in Rebuild
Hardware Database being skipped.
Jul 19 20:41:53 xd systemd[1]: Condition check resulted in Platform
Persistent Storage Archival being skipped.
Jul 19 20:41:53 xd systemd[1]: Starting Load/Save Random Seed...
Jul 19 20:41:53 xd systemd[1]: Starting Create System Users...
Jul 19 20:41:53 xd systemd[1]: Mounted FUSE Control File System.
Jul 19 20:41:53 xd kernel: lp: driver loaded but no devices found
Jul 19 20:41:53 xd systemd[1]: Finished Load/Save Random Seed.
Jul 19 20:41:53 xd systemd[1]: Condition check resulted in First Boot
Complete being skipped.
Jul 19 20:41:53 xd kernel: ppdev: user-space parallel port driver
Jul 19 20:41:53 xd systemd[1]: Finished Create System Users.
Jul 19 20:41:53 xd systemd[1]: Starting Create Static Device Nodes in
/dev...
Jul 19 20:41:53 xd systemd[1]: Finished Load Kernel Modules.
Jul 19 20:41:53 xd systemd[1]: Starting Apply Kernel Variables...
Jul 19 20:41:53 xd systemd[1]: Finished Apply Kernel Variables.
Jul 19 20:41:53 xd systemd[1]: Finished Create Static Device Nodes in
/dev.
Jul 19 20:41:53 xd systemd[1]: Starting Rule-based Manager for Device
Events and Files...
Jul 19 20:41:53 xd systemd[1]: Finished Set the console keyboard layout.
Jul 19 20:41:53 xd systemd[1]: Started Journal Service.
Jul 19 20:41:53 xd kernel: input: Acer Wireless Radio Control as
/devices/LNXSYSTM:00/10251229:00/input/input10
Jul 19 20:41:53 xd kernel: intel_pmc_core INT33A1:00: initialized
Jul 19 20:41:53 xd kernel: input: Intel HID events as
/devices/platform/INTC1051:00/input/input11
Jul 19 20:41:53 xd kernel: intel-hid INTC1051:00: platform supports 5
button array
Jul 19 20:41:53 xd kernel: input: Intel HID 5 button array as
/devices/platform/INTC1051:00/input/input12
Jul 19 20:41:53 xd kernel: ACPI: AC Adapter [ACAD] (on-line)
Jul 19 20:41:53 xd kernel: mc: Linux media interface: v0.10
Jul 19 20:41:53 xd kernel: mei_me 0000:00:16.0: enabling device (0000 ->
0002)
Jul 19 20:41:53 xd kernel: videodev: Linux video capture interface:
v2.00
Jul 19 20:41:53 xd kernel: ee1004 0-0050: 512 byte EE1004-compliant SPD
EEPROM, read-only
Jul 19 20:41:53 xd kernel: iTCO_vendor_support: vendor-support=0
Jul 19 20:41:53 xd kernel: iTCO_wdt: Intel TCO WatchDog Timer Driver
v1.11
Jul 19 20:41:53 xd kernel: iTCO_wdt: Found a Intel PCH TCO device
(Version=6, TCOBASE=0x0400)
Jul 19 20:41:53 xd kernel: iTCO_wdt: initialized. heartbeat=30 sec
(nowayout=0)
Jul 19 20:41:53 xd kernel: EXT4-fs (nvme0n1p2): mounting ext2 file
system using the ext4 subsystem
Jul 19 20:41:53 xd kernel: EXT4-fs (nvme0n1p2): mounted filesystem
without journal. Opts: (null)
Jul 19 20:41:53 xd kernel: ext2 filesystem being mounted at /boot
supports timestamps until 2038 (0x7fffffff)
Jul 19 20:41:53 xd kernel: uvcvideo: Found UVC 1.00 device HD User
Facing (0408:a061)
Jul 19 20:41:53 xd kernel: Adding 31182844k swap on /dev/nvme0n1p4.
Priority:-2 extents:1 across:31182844k SSFS
Jul 19 20:41:53 xd kernel: input: HD User Facing: HD User Facing as
/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/input/input13
Jul 19 20:41:53 xd kernel: acer_wmi: Acer Laptop ACPI-WMI Extras
Jul 19 20:41:53 xd kernel: acer_wmi: Function bitmap for Communication
Button: 0x801
Jul 19 20:41:53 xd kernel: input: Acer WMI hotkeys as
/devices/virtual/input/input14
Jul 19 20:41:53 xd kernel: cryptd: max_cpu_qlen set to 1000
Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.900:2):
apparmor="STATUS" operation="profile_load" profile="unconfined"
name="lsb_release" pid=401 comm="apparmor_parser"
Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.900:3):
apparmor="STATUS" operation="profile_load" profile="unconfined"
name="libreoffice-oopslash" pid=402 comm="apparmor_parser"
Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.900:4):
apparmor="STATUS" operation="profile_load" profile="unconfined"
name="nvidia_modprobe" pid=405 comm="apparmor_parser"
Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.900:5):
apparmor="STATUS" operation="profile_load" profile="unconfined"
name="nvidia_modprobe//kmod" pid=405 comm="apparmor_parser"
Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.900:6):
apparmor="STATUS" operation="profile_load" profile="unconfined"
name="/usr/bin/man" pid=403 comm="apparmor_parser"
Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.900:7):
apparmor="STATUS" operation="profile_load" profile="unconfined"
name="man_filter" pid=403 comm="apparmor_parser"
Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.900:8):
apparmor="STATUS" operation="profile_load" profile="unconfined"
name="man_groff" pid=403 comm="apparmor_parser"
Jul 19 20:41:53 xd kernel: usbcore: registered new interface driver
uvcvideo
Jul 19 20:41:53 xd kernel: USB Video Class driver (1.1.1)
Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.912:9):
apparmor="STATUS" operation="profile_load" profile="unconfined"
name="libreoffice-xpdfimport" pid=412 comm="apparmor_parser"
Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.912:10):
apparmor="STATUS" operation="profile_load" profile="unconfined"
name="/usr/sbin/cups-browsed" pid=408 comm="apparmor_parser"
Jul 19 20:41:53 xd kernel: pstore: Using crash dump compression: deflate
Jul 19 20:41:53 xd kernel: input: ELAN0515:01 04F3:3142 Mouse as
/devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input15
Jul 19 20:41:53 xd kernel: input: ELAN0515:01 04F3:3142 Touchpad as
/devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input17
Jul 19 20:41:53 xd kernel: hid-multitouch 0018:04F3:3142.0001:
input,hidraw0: I2C HID v1.00 Mouse [ELAN0515:01 04F3:3142] on
i2c-ELAN0515:01
Jul 19 20:41:53 xd kernel: pstore: Registered efi as persistent store
backend
Jul 19 20:41:54 xd kernel: input: PC Speaker as
/devices/platform/pcspkr/input/input18
Jul 19 20:41:54 xd kernel: AVX2 version of gcm_enc/dec engaged.
Jul 19 20:41:54 xd kernel: AES CTR mode by8 optimization enabled
Jul 19 20:41:54 xd kernel: resource sanity check: requesting [mem
0xfedc0000-0xfedcdfff], which spans more than pnp 00:04 [mem
0xfedc0000-0xfedc7fff]
Jul 19 20:41:54 xd kernel: caller
tgl_uncore_imc_freerunning_init_box+0xbb/0x100 [intel_uncore] mapping
multiple BARs
Jul 19 20:41:54 xd kernel: snd_hda_intel 0000:00:1f.3: DSP detected with
PCI class/subclass/prog-if info 0x040100
Jul 19 20:41:54 xd kernel: snd_hda_intel 0000:00:1f.3: Digital mics
found on Skylake+ platform, using SOF driver
Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: DSP detected with
PCI class/subclass/prog-if info 0x040100
Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: Digital mics
found on Skylake+ platform, using SOF driver
Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: enabling device
(0000 -> 0002)
Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: DSP detected with
PCI class/subclass/prog-if 0x040100
Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: bound
0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
Jul 19 20:41:54 xd kernel: r8169 0000:02:00.0: firmware: failed to load
rtl_nic/rtl8168h-2.fw (-2)
Jul 19 20:41:54 xd kernel: r8169 0000:02:00.0: Direct firmware load for
rtl_nic/rtl8168h-2.fw failed with error -2
Jul 19 20:41:54 xd kernel: r8169 0000:02:00.0: Unable to load firmware
rtl_nic/rtl8168h-2.fw (-2)
Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: use msi interrupt
mode
Jul 19 20:41:54 xd kernel: Generic FE-GE Realtek PHY r8169-0-200:00:
attached PHY driver [Generic FE-GE Realtek PHY]
(mii_bus:phy_addr=r8169-0-200:00, irq=IGNORE)
Jul 19 20:41:54 xd kernel: alg: No test for fips(ansi_cprng)
(fips_ansi_cprng)
Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: hda codecs found,
mask 5
Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: using HDA machine
driver skl_hda_dsp_generic now
Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: DMICs detected in
NHLT tables: 2
Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: firmware: failed
to load intel/sof/sof-tgl.ri (-2)
Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: Direct firmware
load for intel/sof/sof-tgl.ri failed with error -2
Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: error: request
firmware intel/sof/sof-tgl.ri failed err: -2
Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: error: failed to
load DSP firmware -2
Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: error:
sof_probe_work failed err: -2
Jul 19 20:41:54 xd kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jul 19 20:41:54 xd kernel: Bluetooth: Core ver 2.22
Jul 19 20:41:54 xd kernel: NET: Registered protocol family 31
Jul 19 20:41:54 xd kernel: Bluetooth: HCI device and connection manager
initialized
Jul 19 20:41:54 xd kernel: Bluetooth: HCI socket layer initialized
Jul 19 20:41:54 xd kernel: Bluetooth: L2CAP socket layer initialized
Jul 19 20:41:54 xd kernel: Bluetooth: SCO socket layer initialized
Jul 19 20:41:54 xd kernel: usbcore: registered new interface driver
btusb
Jul 19 20:41:54 xd kernel: Bluetooth: BNEP (Ethernet Emulation) ver 1.3
Jul 19 20:41:54 xd kernel: Bluetooth: BNEP filters: protocol multicast
Jul 19 20:41:54 xd kernel: Bluetooth: BNEP socket layer initialized
Jul 19 20:41:54 xd kernel: mei_hdcp
0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0
(ops i915_hdcp_component_ops [i915])
Jul 19 20:41:54 xd kernel: intel_rapl_msr: PL4 support detected.
Jul 19 20:41:54 xd kernel: intel_rapl_common: Found RAPL domain package
Jul 19 20:41:54 xd kernel: intel_rapl_common: Found RAPL domain core
Jul 19 20:41:54 xd kernel: intel_rapl_common: Found RAPL domain uncore
Jul 19 20:41:55 xd kernel: rfkill: input handler disabled
Jul 19 20:42:03 xd kernel: nouveau 0000:01:00.0: fifo: fault 09
[PHYS_WRITE] at 000000007fef0000 engine c0 [BAR2] client 08
[HUB/HOST_CPU_NB] reason 0d [REGION_VIOLATION] on channel -1 [0000000000
unknown]
Jul 19 20:42:03 xd kernel: nouveau 0000:01:00.0: fifo: fault 09
[PHYS_WRITE] at 000000007fef0000 engine c0 [BAR2] client 08
[HUB/HOST_CPU_NB] reason 0d [REGION_VIOLATION] on channel -1 [0000000000
unknown]

...

Jul 19 20:42:26 xd kernel: nouveau 0000:01:00.0: fifo: PBDMA0: 01000000
[] ch 0 [007f992000 DRM] subc 0 mthd 0008 data 00000000
Jul 19 20:42:26 xd kernel: nouveau 0000:01:00.0: DRM: failed to idle
channel 0 [DRM]
Jul 19 20:42:26 xd kernel: nouveau 0000:01:00.0: fifo: PBDMA0: 01000000
[] ch 0 [007f992000 DRM] subc 0 mthd 0008 data 00000000
Jul 19 20:42:26 xd kernel: nouveau 0000:01:00.0: fifo: PBDMA0: 01000000
[] ch 0 [007f992000 DRM] subc 0 mthd 0008 data 00000000
Jul 19 20:42:26 xd kernel: nouveau 0000:01:00.0: fifo: PBDMA0: 01000000
[] ch 0 [007f992000 DRM] subc 0 mthd 0008 data 00000000
Jul 19 20:42:26 xd kernel: nouveau 0000:01:00.0: fifo: PBDMA0: 01000000
[] ch 0 [007f992000 DRM] subc 0 mthd 0008 data 00000000
Jul 19 20:42:26 xd kernel: ------------[ cut here ]------------
Jul 19 20:42:26 xd kernel: WARNING: CPU: 2 PID: 479 at
drivers/gpu/drm/nouveau/nvkm/subdev/mc/base.c:72
nvkm_mc_intr+0x14d/0x170 [nouveau]
Jul 19 20:42:26 xd kernel: Modules linked in: intel_rapl_msr
intel_rapl_common snd_soc_dmic mei_hdcp bnep btusb btrtl btbcm btintel
bluetooth x86_pkg_temp_thermal intel_powerclamp coretemp
jitterentropy_rng kvm_intel snd_hda_codec_hdmi snd_hda_codec_realtek
drbg snd_hda_codec_generic kvm snd_sof_pci snd_sof_intel_byt
snd_sof_intel_ipc snd_sof_intel_hda_common snd_sof_xtensa_dsp snd_sof
snd_sof_intel_hda irqbypass snd_soc_hdac_hda snd_hda_ext_core
aes_generic ghash_clmulni_intel snd_soc_acpi_intel_match snd_soc_acpi
ledtrig_audio snd_hda_intel snd_intel_dspcfg soundwire_intel
intel_cstate soundwire_generic_allocation snd_soc_core intel_uncore
joydev snd_compress soundwire_cadence aesni_intel pcspkr snd_hda_codec
crypto_simd cryptd glue_helper nls_ascii snd_hda_core ansi_cprng
nls_cp437 serio_raw snd_hwdep acer_wmi vfat ecdh_generic soundwire_bus
efi_pstore fat snd_pcm uvcvideo snd_timer videobuf2_vmalloc iTCO_wdt snd
videobuf2_memops intel_pmc_bxt wmi_bmof videobuf2_v4l2
iTCO_vendor_support watchdog
Jul 19 20:42:26 xd kernel: videobuf2_common soundcore ee1004 videodev
rfkill ecc mei_me libaes mc mei hid_multitouch evdev ac tpm_crb tpm_tis
tpm_tis_core tpm intel_hid intel_pmc_core sparse_keymap acpi_pad
rng_core acer_wireless msr parport_pc ppdev lp parport fuse configfs
efivarfs ip_tables x_tables autofs4 ext4 crc16 mbcache jbd2
crc32c_generic usbhid i915 nouveau ahci hid_generic libahci mxm_wmi ttm
i2c_algo_bit nvme libata drm_kms_helper xhci_pci nvme_core xhci_hcd
scsi_mod cec t10_pi crc_t10dif r8169 crct10dif_generic drm realtek
mdio_devres libphy usbcore crct10dif_pclmul crct10dif_common i2c_hid
crc32_pclmul crc32c_intel hid i2c_i801 i2c_smbus intel_lpss_pci
intel_lpss idma64 vmd usb_common fan button battery video wmi
Jul 19 20:42:26 xd kernel: CPU: 2 PID: 479 Comm: in:imklog Not tainted
5.10.0-16-amd64 #1 Debian 5.10.127-1
Jul 19 20:42:26 xd kernel: Hardware name: Acer Aspire
A517-52G/Jasmine_TL, BIOS V1.26 03/14/2022
Jul 19 20:42:26 xd kernel: RIP: 0010:nvkm_mc_intr+0x14d/0x170 [nouveau]
Jul 19 20:42:26 xd kernel: Code: 44 24 18 65 48 2b 04 25 28 00 00 00 75
2b 48 83 c4 20 5b 5d 41 5c 41 5d 41 5e 41 5f c3 41 8b 47 40 85 c0 74 ba
e9 3a 9d 0a 00 <0f> 0b 45 31 e4 c6 44 24 0f 00 e9 00 ff ff ff e8 df b8
d3 f9 66 66
Jul 19 20:42:26 xd kernel: RSP: 0018:ffffad10001c0ef0 EFLAGS: 00010046
Jul 19 20:42:26 xd kernel: RAX: 00000000ffffffff RBX: ffff997305c62280
RCX: 000000000000080b
Jul 19 20:42:26 xd kernel: RDX: 0000000000000000 RSI: ffffad10001c0f4f
RDI: ffffad1007000104
Jul 19 20:42:26 xd kernel: RBP: ffff9971e0b6c000 R08: ffff9971d129e900
R09: 0000000000000000
Jul 19 20:42:26 xd kernel: R10: 0000000000000000 R11: 0000000000000000
R12: 00000000ffffffff
Jul 19 20:42:26 xd kernel: R13: ffffad10001c0fac R14: 000000000000009e
R15: ffff9971e0c0a900
Jul 19 20:42:26 xd kernel: FS: 00007f586f6ae700(0000)
GS:ffff997560480000(0000) knlGS:0000000000000000
Jul 19 20:42:26 xd kernel: CS: 0010 DS: 0000 ES: 0000 CR0:
0000000080050033
Jul 19 20:42:26 xd kernel: CR2: 00007faf88013388 CR3: 0000000109b80005
CR4: 0000000000770ee0
Jul 19 20:42:26 xd kernel: PKRU: 55555554
Jul 19 20:42:26 xd kernel: Call Trace:
Jul 19 20:42:26 xd kernel: <IRQ>
Jul 19 20:42:26 xd kernel: ? gp100_mc_intr_update+0x54/0x80 [nouveau]
Jul 19 20:42:26 xd kernel: nvkm_pci_intr+0x4d/0x90 [nouveau]
Jul 19 20:42:26 xd kernel: __handle_irq_event_percpu+0x3d/0x160
Jul 19 20:42:26 xd kernel: handle_irq_event+0x57/0xb0
Jul 19 20:42:26 xd kernel: handle_edge_irq+0x87/0x220
Jul 19 20:42:26 xd kernel: asm_call_irq_on_stack+0xf/0x20
Jul 19 20:42:26 xd kernel: </IRQ>
Jul 19 20:42:26 xd kernel: common_interrupt+0xb0/0x130
Jul 19 20:42:26 xd kernel: asm_common_interrupt+0x1e/0x40
Jul 19 20:42:26 xd kernel: RIP: 0010:__check_heap_object+0x3b/0x110
Jul 19 20:42:26 xd kernel: Code: ee 00 48 89 f8 48 c1 fa 06 89 cf 48 c1
e2 0c 48 03 15 29 09 ee 00 48 39 d0 0f 82 b0 00 00 00 48 29 d0 8b 4e 18
48 99 48 f7 f9 <89> d0 0f 1f 44 00 00 8b 96 d0 00 00 00 39 c2 77 1c 41
89 c2 44 8b
Jul 19 20:42:26 xd kernel: RSP: 0018:ffffad1000adbde0 EFLAGS: 00000206
Jul 19 20:42:26 xd kernel: RAX: 000000000000001b RBX: 0000000000000077
RCX: 0000000000000400
Jul 19 20:42:26 xd kernel: RDX: 0000000000000000 RSI: ffff9971c0043500
RDI: 0000000000000001
Jul 19 20:42:26 xd kernel: RBP: ffff997242d46c77 R08: 0000000000000077
R09: 302e30303a31303a
Jul 19 20:42:26 xd kernel: R10: 0000000076756f6e R11: 0000000076756f6e
R12: ffff997242d46c00
Jul 19 20:42:26 xd kernel: R13: 0000000000000001 R14: ffff997242d46c00
R15: 0000000000000077
Jul 19 20:42:26 xd kernel: __check_object_size+0x136/0x150
Jul 19 20:42:26 xd kernel: syslog_print+0xc3/0x210
Jul 19 20:42:26 xd kernel: kmsg_read+0x3e/0x50
Jul 19 20:42:26 xd kernel: vfs_read+0x98/0x180
Jul 19 20:42:26 xd kernel: ksys_read+0x5f/0xe0
Jul 19 20:42:26 xd kernel: do_syscall_64+0x33/0x80
Jul 19 20:42:26 xd kernel: entry_SYSCALL_64_after_hwframe+0x44/0xa9
Jul 19 20:42:26 xd kernel: RIP: 0033:0x7f58700c908c
Jul 19 20:42:26 xd kernel: Code: ec 28 48 89 54 24 18 48 89 74 24 10 89
7c 24 08 e8 89 fc ff ff 48 8b 54 24 18 48 8b 74 24 10 41 89 c0 8b 7c 24
08 31 c0 0f 05 <48> 3d 00 f0 ff ff 77 34 44 89 c7 48 89 44 24 08 e8 bf
fc ff ff 48
Jul 19 20:42:26 xd kernel: RSP: 002b:00007f586f68d4d0 EFLAGS: 00000246
ORIG_RAX: 0000000000000000
Jul 19 20:42:26 xd kernel: RAX: ffffffffffffffda RBX: 0000000000000000
RCX: 00007f58700c908c
Jul 19 20:42:26 xd kernel: RDX: 0000000000001fa0 RSI: 00007f586f68dd00
RDI: 0000000000000005
Jul 19 20:42:26 xd kernel: RBP: 00005619c2c61920 R08: 0000000000000000
R09: 00005619c2c6ba38
Jul 19 20:42:26 xd kernel: R10: 0000000000000000 R11: 0000000000000246
R12: 00007f586f68dd00
Jul 19 20:42:26 xd kernel: R13: 0000000000001fa0 R14: 00007f586f68dd00
R15: 00007f586f68fc9c
Jul 19 20:42:26 xd kernel: ---[ end trace c1b76539949981fe ]---
Jul 19 20:42:26 xd kernel: nouveau 0000:01:00.0: fifo: fault 0f [] at
ffffffffffffffff engine ff [] client 7f [HUB/] reason 1f [] on channel
-1 [fffffffffffff000 unknown]
Re: Boot into Xen on debian11 [ In reply to ]
Hi Bruno,

On 2022-07-20 13:17, Bruno wrote:
> Here the ring buffer (journalctl -k -b -1) from the failed boot into
> Xen.

Are you sure that's the correct log because there should be a message
like this:
[ 0.000000] Hypervisor detected: Xen PV

> -- Journal begins at Mon 2022-07-18 16:19:02 BST, ends at Tue
> 2022-07-19 20:43:04 BST. --
> Jul 19 20:41:53 xd kernel: Linux version 5.10.0-16-amd64
> (debian-kernel@lists.debian.org) (gcc-10 (Debian 10.2.1-6) 10.2.1
> 20210110, GNU ld (GNU Binutils for Debian) 2.35.2) #1 SMP Debian
> 5.10.127-1 (2022-06-30)
> Jul 19 20:41:53 xd kernel: Command line:
> BOOT_IMAGE=/vmlinuz-5.10.0-16-amd64 root=UUID=0123abcd ro quiet
> Jul 19 20:41:53 xd kernel: x86/split lock detection: warning about
> user-space split_locks
> Jul 19 20:41:53 xd kernel: x86/fpu: Supporting XSAVE feature 0x001:
> 'x87 floating point registers'
> Jul 19 20:41:53 xd kernel: x86/fpu: Supporting XSAVE feature 0x002:
> 'SSE registers'
> Jul 19 20:41:53 xd kernel: x86/fpu: Supporting XSAVE feature 0x004:
> 'AVX registers'
> Jul 19 20:41:53 xd kernel: x86/fpu: Supporting XSAVE feature 0x020:
> 'AVX-512 opmask'
> Jul 19 20:41:53 xd kernel: x86/fpu: Supporting XSAVE feature 0x040:
> 'AVX-512 Hi256'
> Jul 19 20:41:53 xd kernel: x86/fpu: Supporting XSAVE feature 0x080:
> 'AVX-512 ZMM_Hi256'
> Jul 19 20:41:53 xd kernel: x86/fpu: Supporting XSAVE feature 0x200:
> 'Protection Keys User registers'
> Jul 19 20:41:53 xd kernel: x86/fpu: xstate_offset[2]: 576,
> xstate_sizes[2]: 256
> Jul 19 20:41:53 xd kernel: x86/fpu: xstate_offset[5]: 832,
> xstate_sizes[5]: 64
> Jul 19 20:41:53 xd kernel: x86/fpu: xstate_offset[6]: 896,
> xstate_sizes[6]: 512
> Jul 19 20:41:53 xd kernel: x86/fpu: xstate_offset[7]: 1408,
> xstate_sizes[7]: 1024
> Jul 19 20:41:53 xd kernel: x86/fpu: xstate_offset[9]: 2432,
> xstate_sizes[9]: 8
> Jul 19 20:41:53 xd kernel: x86/fpu: Enabled xstate features 0x2e7,
> context size is 2440 bytes, using 'compacted' format.
> Jul 19 20:41:53 xd kernel: BIOS-provided physical RAM map:
> Jul 19 20:41:53 xd kernel: BIOS-e820: [mem
> 0x0000000000000000-0x000000000009efff] usable
> Jul 19 20:41:53 xd kernel: BIOS-e820: [mem
> 0x000000000009f000-0x00000000000fffff] reserved
> Jul 19 20:41:53 xd kernel: BIOS-e820: [mem
> 0x0000000000100000-0x000000003fd98fff] usable
> Jul 19 20:41:53 xd kernel: BIOS-e820: [mem
> 0x000000003fd99000-0x0000000040698fff] reserved
> Jul 19 20:41:53 xd kernel: BIOS-e820: [mem
> 0x0000000040699000-0x00000000424aefff] usable
> Jul 19 20:41:53 xd kernel: BIOS-e820: [mem
> 0x00000000424af000-0x000000004287efff] type 20
> Jul 19 20:41:53 xd kernel: BIOS-e820: [mem
> 0x000000004287f000-0x00000000442fefff] reserved
> Jul 19 20:41:53 xd kernel: BIOS-e820: [mem
> 0x00000000442ff000-0x0000000044b2efff] ACPI NVS
> Jul 19 20:41:53 xd kernel: BIOS-e820: [mem
> 0x0000000044b2f000-0x0000000044bfefff] ACPI data
> Jul 19 20:41:53 xd kernel: BIOS-e820: [mem
> 0x0000000044bff000-0x0000000044bfffff] usable
> Jul 19 20:41:53 xd kernel: BIOS-e820: [mem
> 0x0000000044c00000-0x0000000048ffffff] reserved
> Jul 19 20:41:53 xd kernel: BIOS-e820: [mem
> 0x0000000049e00000-0x000000004f7fffff] reserved
> Jul 19 20:41:53 xd kernel: BIOS-e820: [mem
> 0x00000000c0000000-0x00000000cfffffff] reserved
> Jul 19 20:41:53 xd kernel: BIOS-e820: [mem
> 0x00000000fe010000-0x00000000fe010fff] reserved
> Jul 19 20:41:53 xd kernel: BIOS-e820: [mem
> 0x00000000fed20000-0x00000000fed7ffff] reserved
> Jul 19 20:41:53 xd kernel: BIOS-e820: [mem
> 0x00000000ff500000-0x00000000ffffffff] reserved
> Jul 19 20:41:53 xd kernel: BIOS-e820: [mem
> 0x0000000100000000-0x00000004b07fffff] usable
> Jul 19 20:41:53 xd kernel: NX (Execute Disable) protection: active
> Jul 19 20:41:53 xd kernel: efi: EFI v2.70 by INSYDE Corp.
> Jul 19 20:41:53 xd kernel: efi: ACPI=0x44bfe000 ACPI 2.0=0x44bfe014
> TPMFinalLog=0x44ac5000 SMBIOS=0x429de000 SMBIOS 3.0=0x429dc000
> ESRT=0x3bf66a98 MOKvar=0x3bee4000
> Jul 19 20:41:53 xd kernel: secureboot: Secure boot could not be
> determined (mode 0)
> Jul 19 20:41:53 xd kernel: SMBIOS 3.3.0 present.
> Jul 19 20:41:53 xd kernel: DMI: Acer Aspire A517-52G/Jasmine_TL, BIOS
> V1.26 03/14/2022
> Jul 19 20:41:53 xd kernel: tsc: Detected 2400.000 MHz processor
> Jul 19 20:41:53 xd kernel: tsc: Detected 2419.200 MHz TSC
> Jul 19 20:41:53 xd kernel: e820: update [mem 0x00000000-0x00000fff]
> usable ==> reserved
> Jul 19 20:41:53 xd kernel: e820: remove [mem 0x000a0000-0x000fffff]
> usable
> Jul 19 20:41:53 xd kernel: last_pfn = 0x4b0800 max_arch_pfn =
> 0x400000000
> Jul 19 20:41:53 xd kernel: MTRR default type: write-back
> Jul 19 20:41:53 xd kernel: MTRR fixed ranges enabled:
> Jul 19 20:41:53 xd kernel: 00000-9FFFF write-back
> Jul 19 20:41:53 xd kernel: A0000-BFFFF uncachable
> Jul 19 20:41:53 xd kernel: C0000-FFFFF write-protect
> Jul 19 20:41:53 xd kernel: MTRR variable ranges enabled:
> Jul 19 20:41:53 xd kernel: 0 base 0080000000 mask 7F80000000 uncachable
> Jul 19 20:41:53 xd kernel: 1 base 0060000000 mask 7FE0000000 uncachable
> Jul 19 20:41:53 xd kernel: 2 base 0050000000 mask 7FF0000000 uncachable
> Jul 19 20:41:53 xd kernel: 3 base 004C000000 mask 7FFC000000 uncachable
> Jul 19 20:41:53 xd kernel: 4 base 004B000000 mask 7FFF000000 uncachable
> Jul 19 20:41:53 xd kernel: 5 base 4000000000 mask 4000000000 uncachable
> Jul 19 20:41:53 xd kernel: 6 disabled
> Jul 19 20:41:53 xd kernel: 7 disabled
> Jul 19 20:41:53 xd kernel: 8 disabled
> Jul 19 20:41:53 xd kernel: 9 disabled
> Jul 19 20:41:53 xd kernel: x86/PAT: Configuration [0-7]: WB WC UC- UC
> WB WP UC- WT
> Jul 19 20:41:53 xd kernel: last_pfn = 0x44c00 max_arch_pfn =
> 0x400000000
> Jul 19 20:41:53 xd kernel: esrt: Reserving ESRT space from
> 0x000000003bf66a98 to 0x000000003bf66ad0.
> Jul 19 20:41:53 xd kernel: e820: update [mem 0x3bf66000-0x3bf66fff]
> usable ==> reserved
> Jul 19 20:41:53 xd kernel: e820: update [mem 0x3bee4000-0x3bee6fff]
> usable ==> reserved
> Jul 19 20:41:53 xd kernel: Using GB pages for direct mapping
> Jul 19 20:41:53 xd kernel: RAMDISK: [mem 0x32aa5000-0x35549fff]
> Jul 19 20:41:53 xd kernel: ACPI: Early table checksum verification
> disabled
> Jul 19 20:41:53 xd kernel: ACPI: RSDP 0x0000000044BFE014 000024 (v02
> ACRSYS)
> Jul 19 20:41:53 xd kernel: ACPI: XSDT 0x0000000044BDB188 000124 (v01
> ACRSYS ACRPRDCT 00000002 01000013)
> Jul 19 20:41:53 xd kernel: ACPI: FACP 0x0000000044BDE000 000114 (v06
> ACRSYS ACRPRDCT 00000002 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: DSDT 0x0000000044B81000 059948 (v02
> ACRSYS ACRPRDCT 00000002 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: FACS 0x0000000044AA2000 000040
> Jul 19 20:41:53 xd kernel: ACPI: UEFI 0x0000000044B2E000 000236 (v01
> ACRSYS ACRPRDCT 00000001 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BFA000 00255C (v02
> ACRSYS ACRPRDCT 00003000 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BF9000 000105 (v02
> ACRSYS ACRPRDCT 00003000 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BF6000 002137 (v02
> ACRSYS ACRPRDCT 00003000 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BF2000 003300 (v02
> ACRSYS ACRPRDCT 00003000 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BF1000 00077B (v02
> ACRSYS ACRPRDCT 00001000 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: TPM2 0x0000000044BF0000 00004C (v04
> ACRSYS ACRPRDCT 00000002 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: MSDM 0x0000000044BEF000 000055 (v03
> ACRSYS ACRPRDCT 00000001 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BEE000 000D02 (v02
> ACRSYS ACRPRDCT 00000000 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: NHLT 0x0000000044BEC000 001B54 (v00
> ACRSYS ACRPRDCT 00000002 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: LPIT 0x0000000044BEB000 0000CC (v01
> ACRSYS ACRPRDCT 00000002 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: WSMT 0x0000000044BEA000 000028 (v01
> ACRSYS ACRPRDCT 00000002 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BE9000 000B70 (v02
> ACRSYS ACRPRDCT 00001000 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BE8000 00012A (v02
> ACRSYS ACRPRDCT 00000000 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: DBGP 0x0000000044BE7000 000034 (v01
> ACRSYS ACRPRDCT 00000002 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: DBG2 0x0000000044BE6000 000054 (v00
> ACRSYS ACRPRDCT 00000002 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BDF000 006BA9 (v01
> ACRSYS ACRPRDCT 00001000 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: HPET 0x0000000044BDD000 000038 (v01
> ACRSYS ACRPRDCT 00000002 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: APIC 0x0000000044BDC000 00012C (v04
> ACRSYS ACRPRDCT 00000002 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: MCFG 0x0000000044BFD000 00003C (v01
> ACRSYS ACRPRDCT 00000002 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044B80000 000C78 (v02
> ACRSYS ACRPRDCT 00000002 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: DMAR 0x0000000044B7F000 000088 (v02
> ACRSYS ACRPRDCT 00000002 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044B7C000 0020D6 (v01
> ACRSYS ACRPRDCT 00001000 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: UEFI 0x0000000044A5B000 00063A (v01
> ACRSYS ACRPRDCT 00000000 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: UEFI 0x0000000044A5A000 00005C (v01
> ACRSYS ACRPRDCT 00000000 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044B7B000 000985 (v02
> ACRSYS ACRPRDCT 00001000 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044B7A000 0000F8 (v01
> ACRSYS ACRPRDCT 00001000 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044B79000 000835 (v02
> ACRSYS ACRPRDCT 00003000 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: FPDT 0x0000000044B78000 000044 (v01
> ACRSYS ACRPRDCT 00000002 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: PTDT 0x0000000044B76000 000CFE (v00
> ACRSYS ACRPRDCT 00000005 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: BGRT 0x0000000044B77000 000038 (v01
> ACRSYS ACRPRDCT 00000001 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: Reserving FACP table memory at [mem
> 0x44bde000-0x44bde113]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving DSDT table memory at [mem
> 0x44b81000-0x44bda947]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving FACS table memory at [mem
> 0x44aa2000-0x44aa203f]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving UEFI table memory at [mem
> 0x44b2e000-0x44b2e235]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem
> 0x44bfa000-0x44bfc55b]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem
> 0x44bf9000-0x44bf9104]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem
> 0x44bf6000-0x44bf8136]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem
> 0x44bf2000-0x44bf52ff]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem
> 0x44bf1000-0x44bf177a]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving TPM2 table memory at [mem
> 0x44bf0000-0x44bf004b]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving MSDM table memory at [mem
> 0x44bef000-0x44bef054]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem
> 0x44bee000-0x44beed01]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving NHLT table memory at [mem
> 0x44bec000-0x44bedb53]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving LPIT table memory at [mem
> 0x44beb000-0x44beb0cb]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving WSMT table memory at [mem
> 0x44bea000-0x44bea027]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem
> 0x44be9000-0x44be9b6f]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem
> 0x44be8000-0x44be8129]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving DBGP table memory at [mem
> 0x44be7000-0x44be7033]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving DBG2 table memory at [mem
> 0x44be6000-0x44be6053]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem
> 0x44bdf000-0x44be5ba8]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving HPET table memory at [mem
> 0x44bdd000-0x44bdd037]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving APIC table memory at [mem
> 0x44bdc000-0x44bdc12b]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving MCFG table memory at [mem
> 0x44bfd000-0x44bfd03b]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem
> 0x44b80000-0x44b80c77]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving DMAR table memory at [mem
> 0x44b7f000-0x44b7f087]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem
> 0x44b7c000-0x44b7e0d5]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving UEFI table memory at [mem
> 0x44a5b000-0x44a5b639]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving UEFI table memory at [mem
> 0x44a5a000-0x44a5a05b]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem
> 0x44b7b000-0x44b7b984]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem
> 0x44b7a000-0x44b7a0f7]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem
> 0x44b79000-0x44b79834]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving FPDT table memory at [mem
> 0x44b78000-0x44b78043]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving PTDT table memory at [mem
> 0x44b76000-0x44b76cfd]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving BGRT table memory at [mem
> 0x44b77000-0x44b77037]
> Jul 19 20:41:53 xd kernel: ACPI: Local APIC address 0xfee00000
> Jul 19 20:41:53 xd kernel: No NUMA configuration found
> Jul 19 20:41:53 xd kernel: Faking a node at [mem
> 0x0000000000000000-0x00000004b07fffff]
> Jul 19 20:41:53 xd kernel: NODE_DATA(0) allocated [mem
> 0x4b07d6000-0x4b07fffff]
> Jul 19 20:41:53 xd kernel: Zone ranges:
> Jul 19 20:41:53 xd kernel: DMA [mem
> 0x0000000000001000-0x0000000000ffffff]
> Jul 19 20:41:53 xd kernel: DMA32 [mem
> 0x0000000001000000-0x00000000ffffffff]
> Jul 19 20:41:53 xd kernel: Normal [mem
> 0x0000000100000000-0x00000004b07fffff]
> Jul 19 20:41:53 xd kernel: Device empty
> Jul 19 20:41:53 xd kernel: Movable zone start for each node
> Jul 19 20:41:53 xd kernel: Early memory node ranges
> Jul 19 20:41:53 xd kernel: node 0: [mem
> 0x0000000000001000-0x000000000009efff]
> Jul 19 20:41:53 xd kernel: node 0: [mem
> 0x0000000000100000-0x000000003fd98fff]
> Jul 19 20:41:53 xd kernel: node 0: [mem
> 0x0000000040699000-0x00000000424aefff]
> Jul 19 20:41:53 xd kernel: node 0: [mem
> 0x0000000044bff000-0x0000000044bfffff]
> Jul 19 20:41:53 xd kernel: node 0: [mem
> 0x0000000100000000-0x00000004b07fffff]
> Jul 19 20:41:53 xd kernel: Initmem setup node 0 [mem
> 0x0000000000001000-0x00000004b07fffff]
> Jul 19 20:41:53 xd kernel: On node 0 totalpages: 4137806
> Jul 19 20:41:53 xd kernel: DMA zone: 64 pages used for memmap
> Jul 19 20:41:53 xd kernel: DMA zone: 25 pages reserved
> Jul 19 20:41:53 xd kernel: DMA zone: 3998 pages, LIFO batch:0
> Jul 19 20:41:53 xd kernel: DMA32 zone: 4143 pages used for memmap
> Jul 19 20:41:53 xd kernel: DMA32 zone: 265136 pages, LIFO batch:63
> Jul 19 20:41:53 xd kernel: Normal zone: 60448 pages used for memmap
> Jul 19 20:41:53 xd kernel: Normal zone: 3868672 pages, LIFO batch:63
> Jul 19 20:41:53 xd kernel: On node 0, zone DMA: 1 pages in unavailable
> ranges
> Jul 19 20:41:53 xd kernel: On node 0, zone DMA: 97 pages in unavailable
> ranges
> Jul 19 20:41:53 xd kernel: On node 0, zone DMA32: 2304 pages in
> unavailable ranges
> Jul 19 20:41:53 xd kernel: On node 0, zone DMA32: 10064 pages in
> unavailable ranges
> Jul 19 20:41:53 xd kernel: On node 0, zone Normal: 13312 pages in
> unavailable ranges
> Jul 19 20:41:53 xd kernel: On node 0, zone Normal: 30720 pages in
> unavailable ranges
> Jul 19 20:41:53 xd kernel: Reserving Intel graphics memory at [mem
> 0x4b800000-0x4f7fffff]
> Jul 19 20:41:53 xd kernel: ACPI: PM-Timer IO Port: 0x1808
> Jul 19 20:41:53 xd kernel: ACPI: Local APIC address 0xfee00000
> Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge
> lint[0x1])
> Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge
> lint[0x1])
> Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge
> lint[0x1])
> Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge
> lint[0x1])
> Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge
> lint[0x1])
> Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge
> lint[0x1])
> Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge
> lint[0x1])
> Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge
> lint[0x1])
> Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x09] high edge
> lint[0x1])
> Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0a] high edge
> lint[0x1])
> Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0b] high edge
> lint[0x1])
> Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0c] high edge
> lint[0x1])
> Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0d] high edge
> lint[0x1])
> Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0e] high edge
> lint[0x1])
> Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0f] high edge
> lint[0x1])
> Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x10] high edge
> lint[0x1])
> Jul 19 20:41:53 xd kernel: IOAPIC[0]: apic_id 2, version 32, address
> 0xfec00000, GSI 0-119
> Jul 19 20:41:53 xd kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0
> global_irq 2 dfl dfl)
> Jul 19 20:41:53 xd kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9
> global_irq 9 high level)
> Jul 19 20:41:53 xd kernel: ACPI: IRQ0 used by override.
> Jul 19 20:41:53 xd kernel: ACPI: IRQ9 used by override.
> Jul 19 20:41:53 xd kernel: Using ACPI (MADT) for SMP configuration
> information
> Jul 19 20:41:53 xd kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
> Jul 19 20:41:53 xd kernel: e820: update [mem 0x3bf69000-0x3c05cfff]
> usable ==> reserved
> Jul 19 20:41:53 xd kernel: TSC deadline timer available
> Jul 19 20:41:53 xd kernel: smpboot: Allowing 8 CPUs, 0 hotplug CPUs
> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
> [mem 0x00000000-0x00000fff]
> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
> [mem 0x0009f000-0x000fffff]
> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
> [mem 0x3bee4000-0x3bee6fff]
> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
> [mem 0x3bf66000-0x3bf66fff]
> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
> [mem 0x3bf69000-0x3c05cfff]
> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
> [mem 0x3fd99000-0x40698fff]
> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
> [mem 0x424af000-0x4287efff]
> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
> [mem 0x4287f000-0x442fefff]
> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
> [mem 0x442ff000-0x44b2efff]
> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
> [mem 0x44b2f000-0x44bfefff]
> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
> [mem 0x44c00000-0x48ffffff]
> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
> [mem 0x49000000-0x49dfffff]
> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
> [mem 0x49e00000-0x4f7fffff]
> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
> [mem 0x4f800000-0xbfffffff]
> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
> [mem 0xc0000000-0xcfffffff]
> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
> [mem 0xd0000000-0xfe00ffff]
> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
> [mem 0xfe010000-0xfe010fff]
> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
> [mem 0xfe011000-0xfed1ffff]
> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
> [mem 0xfed20000-0xfed7ffff]
> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
> [mem 0xfed80000-0xff4fffff]
> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory:
> [mem 0xff500000-0xffffffff]
> Jul 19 20:41:53 xd kernel: [mem 0x4f800000-0xbfffffff] available for
> PCI devices
> Jul 19 20:41:53 xd kernel: Booting paravirtualized kernel on bare
> hardware
> Jul 19 20:41:53 xd kernel: clocksource: refined-jiffies: mask:
> 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
> Jul 19 20:41:53 xd kernel: setup_percpu: NR_CPUS:8192 nr_cpumask_bits:8
> nr_cpu_ids:8 nr_node_ids:1
> Jul 19 20:41:53 xd kernel: percpu: Embedded 58 pages/cpu s200664 r8192
> d28712 u262144
> Jul 19 20:41:53 xd kernel: pcpu-alloc: s200664 r8192 d28712 u262144
> alloc=1*2097152
> Jul 19 20:41:53 xd kernel: pcpu-alloc: [0] 0 1 2 3 4 5 6 7
> Jul 19 20:41:53 xd kernel: Built 1 zonelists, mobility grouping on.
> Total pages: 4073126
> Jul 19 20:41:53 xd kernel: Policy zone: Normal
> Jul 19 20:41:53 xd kernel: Kernel command line:
> BOOT_IMAGE=/vmlinuz-5.10.0-16-amd64
> root=UUID=0dc2ba0c-97d5-4786-bc97-4d13279afe0f ro quiet
> Jul 19 20:41:53 xd kernel: Dentry cache hash table entries: 2097152
> (order: 12, 16777216 bytes, linear)
> Jul 19 20:41:53 xd kernel: Inode-cache hash table entries: 1048576
> (order: 11, 8388608 bytes, linear)
> Jul 19 20:41:53 xd kernel: mem auto-init: stack:off, heap alloc:on,
> heap free:off
> Jul 19 20:41:53 xd kernel: Memory: 1014224K/16551224K available (12295K
> kernel code, 2536K rwdata, 7568K rodata, 2424K init, 3680K bss, 517204K
> reserved, 0K cma-reserved)
> Jul 19 20:41:53 xd kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0,
> CPUs=8, Nodes=1
> Jul 19 20:41:53 xd kernel: ftrace: allocating 36455 entries in 143
> pages
> Jul 19 20:41:53 xd kernel: ftrace: allocated 143 pages with 5 groups
> Jul 19 20:41:53 xd kernel: rcu: Hierarchical RCU implementation.
> Jul 19 20:41:53 xd kernel: rcu: RCU restricting CPUs from NR_CPUS=8192
> to nr_cpu_ids=8.
> Jul 19 20:41:53 xd kernel: Rude variant of Tasks RCU enabled.
> Jul 19 20:41:53 xd kernel: Tracing variant of Tasks RCU enabled.
> Jul 19 20:41:53 xd kernel: rcu: RCU calculated value of
> scheduler-enlistment delay is 25 jiffies.
> Jul 19 20:41:53 xd kernel: rcu: Adjusting geometry for
> rcu_fanout_leaf=16, nr_cpu_ids=8
> Jul 19 20:41:53 xd kernel: NR_IRQS: 524544, nr_irqs: 2048, preallocated
> irqs: 16
> Jul 19 20:41:53 xd kernel: random: crng init done
> Jul 19 20:41:53 xd kernel: Console: colour dummy device 80x25
> Jul 19 20:41:53 xd kernel: printk: console [tty0] enabled
> Jul 19 20:41:53 xd kernel: ACPI: Core revision 20200925
> Jul 19 20:41:53 xd kernel: hpet: HPET dysfunctional in PC10. Force
> disabled.
> Jul 19 20:41:53 xd kernel: APIC: Switch to symmetric I/O mode setup
> Jul 19 20:41:53 xd kernel: DMAR: Host address width 39
> Jul 19 20:41:53 xd kernel: DMAR: DRHD base: 0x000000fed90000 flags: 0x0
> Jul 19 20:41:53 xd kernel: DMAR: dmar0: reg_base_addr fed90000 ver 4:0
> cap 1c0000c40660462 ecap 29a00f0505e
> Jul 19 20:41:53 xd kernel: DMAR: DRHD base: 0x000000fed91000 flags: 0x1
> Jul 19 20:41:53 xd kernel: DMAR: dmar1: reg_base_addr fed91000 ver 1:0
> cap d2008c40660462 ecap f050da
> Jul 19 20:41:53 xd kernel: DMAR: RMRR base: 0x0000004b000000 end:
> 0x0000004f7fffff
> Jul 19 20:41:53 xd kernel: DMAR-IR: IOAPIC id 2 under DRHD base
> 0xfed91000 IOMMU 1
> Jul 19 20:41:53 xd kernel: DMAR-IR: HPET id 0 under DRHD base
> 0xfed91000
> Jul 19 20:41:53 xd kernel: DMAR-IR: Queued invalidation will be enabled
> to support x2apic and Intr-remapping.
> Jul 19 20:41:53 xd kernel: DMAR-IR: Enabled IRQ remapping in x2apic
> mode
> Jul 19 20:41:53 xd kernel: x2apic enabled
> Jul 19 20:41:53 xd kernel: Switched APIC routing to cluster x2apic.
> Jul 19 20:41:53 xd kernel: clocksource: tsc-early: mask:
> 0xffffffffffffffff max_cycles: 0x22df1149949, max_idle_ns: 440795312789
> ns
> Jul 19 20:41:53 xd kernel: Calibrating delay loop (skipped), value
> calculated using timer frequency.. 4838.40 BogoMIPS (lpj=9676800)
> Jul 19 20:41:53 xd kernel: pid_max: default: 32768 minimum: 301
> Jul 19 20:41:53 xd kernel: LSM: Security Framework initializing
> Jul 19 20:41:53 xd kernel: Yama: disabled by default; enable with
> sysctl kernel.yama.*
> Jul 19 20:41:53 xd kernel: AppArmor: AppArmor initialized
> Jul 19 20:41:53 xd kernel: TOMOYO Linux initialized
> Jul 19 20:41:53 xd kernel: Mount-cache hash table entries: 32768
> (order: 6, 262144 bytes, linear)
> Jul 19 20:41:53 xd kernel: Mountpoint-cache hash table entries: 32768
> (order: 6, 262144 bytes, linear)
> Jul 19 20:41:53 xd kernel: x86/cpu: User Mode Instruction Prevention
> (UMIP) activated
> Jul 19 20:41:53 xd kernel: mce: CPU0: Thermal monitoring enabled (TM1)
> Jul 19 20:41:53 xd kernel: process: using mwait in idle threads
> Jul 19 20:41:53 xd kernel: Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
> Jul 19 20:41:53 xd kernel: Last level dTLB entries: 4KB 0, 2MB 0, 4MB
> 0, 1GB 0
> Jul 19 20:41:53 xd kernel: Spectre V1 : Mitigation: usercopy/swapgs
> barriers and __user pointer sanitization
> Jul 19 20:41:53 xd kernel: Spectre V2 : Mitigation: Enhanced IBRS
> Jul 19 20:41:53 xd kernel: Spectre V2 : Spectre v2 / SpectreRSB
> mitigation: Filling RSB on context switch
> Jul 19 20:41:53 xd kernel: Spectre V2 : mitigation: Enabling
> conditional Indirect Branch Prediction Barrier
> Jul 19 20:41:53 xd kernel: Speculative Store Bypass: Mitigation:
> Speculative Store Bypass disabled via prctl and seccomp
> Jul 19 20:41:53 xd kernel: Freeing SMP alternatives memory: 32K
> Jul 19 20:41:53 xd kernel: smpboot: CPU0: 11th Gen Intel(R) Core(TM)
> i5-1135G7 @ 2.40GHz (family: 0x6, model: 0x8c, stepping: 0x1)
> Jul 19 20:41:53 xd kernel: Performance Events: PEBS fmt4+-baseline,
> AnyThread deprecated, Icelake events, 32-deep LBR, full-width counters,
> Intel PMU driver.
> Jul 19 20:41:53 xd kernel: ... version: 5
> Jul 19 20:41:53 xd kernel: ... bit width: 48
> Jul 19 20:41:53 xd kernel: ... generic registers: 8
> Jul 19 20:41:53 xd kernel: ... value mask: 0000ffffffffffff
> Jul 19 20:41:53 xd kernel: ... max period: 00007fffffffffff
> Jul 19 20:41:53 xd kernel: ... fixed-purpose events: 4
> Jul 19 20:41:53 xd kernel: ... event mask: 0001000f000000ff
> Jul 19 20:41:53 xd kernel: rcu: Hierarchical SRCU implementation.
> Jul 19 20:41:53 xd kernel: NMI watchdog: Enabled. Permanently consumes
> one hw-PMU counter.
> Jul 19 20:41:53 xd kernel: smp: Bringing up secondary CPUs ...
> Jul 19 20:41:53 xd kernel: x86: Booting SMP configuration:
> Jul 19 20:41:53 xd kernel: .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7
> Jul 19 20:41:53 xd kernel: smp: Brought up 1 node, 8 CPUs
> Jul 19 20:41:53 xd kernel: smpboot: Max logical packages: 1
> Jul 19 20:41:53 xd kernel: smpboot: Total of 8 processors activated
> (38707.20 BogoMIPS)
> Jul 19 20:41:53 xd kernel: node 0 deferred pages initialised in 20ms
> Jul 19 20:41:53 xd kernel: devtmpfs: initialized
> Jul 19 20:41:53 xd kernel: x86/mm: Memory block size: 128MB
> Jul 19 20:41:53 xd kernel: PM: Registering ACPI NVS region [mem
> 0x442ff000-0x44b2efff] (8585216 bytes)
> Jul 19 20:41:53 xd kernel: clocksource: jiffies: mask: 0xffffffff
> max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
> Jul 19 20:41:53 xd kernel: futex hash table entries: 2048 (order: 5,
> 131072 bytes, linear)
> Jul 19 20:41:53 xd kernel: pinctrl core: initialized pinctrl subsystem
> Jul 19 20:41:53 xd kernel: NET: Registered protocol family 16
> Jul 19 20:41:53 xd kernel: audit: initializing netlink subsys
> (disabled)
> Jul 19 20:41:53 xd kernel: audit: type=2000 audit(1658259710.028:1):
> state=initialized audit_enabled=0 res=1
> Jul 19 20:41:53 xd kernel: thermal_sys: Registered thermal governor
> 'fair_share'
> Jul 19 20:41:53 xd kernel: thermal_sys: Registered thermal governor
> 'bang_bang'
> Jul 19 20:41:53 xd kernel: thermal_sys: Registered thermal governor
> 'step_wise'
> Jul 19 20:41:53 xd kernel: thermal_sys: Registered thermal governor
> 'user_space'
> Jul 19 20:41:53 xd kernel: thermal_sys: Registered thermal governor
> 'power_allocator'
> Jul 19 20:41:53 xd kernel: cpuidle: using governor ladder
> Jul 19 20:41:53 xd kernel: cpuidle: using governor menu
> Jul 19 20:41:53 xd kernel: ACPI: bus type PCI registered
> Jul 19 20:41:53 xd kernel: acpiphp: ACPI Hot Plug PCI Controller Driver
> version: 0.5
> Jul 19 20:41:53 xd kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at
> [mem 0xc0000000-0xcfffffff] (base 0xc0000000)
> Jul 19 20:41:53 xd kernel: PCI: MMCONFIG at [mem 0xc0000000-0xcfffffff]
> reserved in E820
> Jul 19 20:41:53 xd kernel: PCI: Using configuration type 1 for base
> access
> Jul 19 20:41:53 xd kernel: ENERGY_PERF_BIAS: Set to 'normal', was
> 'performance'
> Jul 19 20:41:53 xd kernel: Kprobes globally optimized
> Jul 19 20:41:53 xd kernel: HugeTLB registered 1.00 GiB page size,
> pre-allocated 0 pages
> Jul 19 20:41:53 xd kernel: HugeTLB registered 2.00 MiB page size,
> pre-allocated 0 pages
> Jul 19 20:41:53 xd kernel: ACPI: Added _OSI(Module Device)
> Jul 19 20:41:53 xd kernel: ACPI: Added _OSI(Processor Device)
> Jul 19 20:41:53 xd kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
> Jul 19 20:41:53 xd kernel: ACPI: Added _OSI(Processor Aggregator
> Device)
> Jul 19 20:41:53 xd kernel: ACPI: Added _OSI(Linux-Dell-Video)
> Jul 19 20:41:53 xd kernel: ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
> Jul 19 20:41:53 xd kernel: ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating
> named object [\_SB.PC00.XHCI.RHUB.HS01._UPC], AE_ALREADY_EXISTS
> (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
> lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
> OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating
> named object [\_SB.PC00.XHCI.RHUB.HS01._PLD], AE_ALREADY_EXISTS
> (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
> lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
> OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating
> named object [\_SB.PC00.XHCI.RHUB.HS02._UPC], AE_ALREADY_EXISTS
> (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
> lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
> OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating
> named object [\_SB.PC00.XHCI.RHUB.HS02._PLD], AE_ALREADY_EXISTS
> (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
> lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
> OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating
> named object [\_SB.PC00.XHCI.RHUB.HS03._UPC], AE_ALREADY_EXISTS
> (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
> lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
> OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating
> named object [\_SB.PC00.XHCI.RHUB.HS03._PLD], AE_ALREADY_EXISTS
> (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
> lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
> OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating
> named object [\_SB.PC00.XHCI.RHUB.HS04._UPC], AE_ALREADY_EXISTS
> (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
> lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
> OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating
> named object [\_SB.PC00.XHCI.RHUB.HS04._PLD], AE_ALREADY_EXISTS
> (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
> lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
> OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating
> named object [\_SB.PC00.XHCI.RHUB.HS05._UPC], AE_ALREADY_EXISTS
> (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
> lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
> OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating
> named object [\_SB.PC00.XHCI.RHUB.HS05._PLD], AE_ALREADY_EXISTS
> (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
> lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
> OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating
> named object [\_SB.PC00.XHCI.RHUB.HS06._UPC], AE_ALREADY_EXISTS
> (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
> lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
> OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating
> named object [\_SB.PC00.XHCI.RHUB.HS06._PLD], AE_ALREADY_EXISTS
> (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
> lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
> OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating
> named object [\_SB.PC00.XHCI.RHUB.HS07._UPC], AE_ALREADY_EXISTS
> (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
> lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
> OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating
> named object [\_SB.PC00.XHCI.RHUB.HS07._PLD], AE_ALREADY_EXISTS
> (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
> lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
> OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating
> named object [\_SB.PC00.XHCI.RHUB.HS08._UPC], AE_ALREADY_EXISTS
> (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
> lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
> OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating
> named object [\_SB.PC00.XHCI.RHUB.HS08._PLD], AE_ALREADY_EXISTS
> (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
> lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
> OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating
> named object [\_SB.PC00.XHCI.RHUB.HS09._UPC], AE_ALREADY_EXISTS
> (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
> lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
> OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating
> named object [\_SB.PC00.XHCI.RHUB.HS09._PLD], AE_ALREADY_EXISTS
> (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
> lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
> OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating
> named object [\_SB.PC00.XHCI.RHUB.HS10._UPC], AE_ALREADY_EXISTS
> (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
> lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
> OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating
> named object [\_SB.PC00.XHCI.RHUB.HS10._PLD], AE_ALREADY_EXISTS
> (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
> lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
> OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating
> named object [\_SB.PC00.XHCI.RHUB.SS01._UPC], AE_ALREADY_EXISTS
> (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
> lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
> OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating
> named object [\_SB.PC00.XHCI.RHUB.SS01._PLD], AE_ALREADY_EXISTS
> (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
> lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
> OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating
> named object [\_SB.PC00.XHCI.RHUB.SS02._UPC], AE_ALREADY_EXISTS
> (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
> lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
> OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating
> named object [\_SB.PC00.XHCI.RHUB.SS02._PLD], AE_ALREADY_EXISTS
> (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
> lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
> OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating
> named object [\_SB.PC00.XHCI.RHUB.SS03._UPC], AE_ALREADY_EXISTS
> (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
> lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
> OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating
> named object [\_SB.PC00.XHCI.RHUB.SS03._PLD], AE_ALREADY_EXISTS
> (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
> lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
> OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating
> named object [\_SB.PC00.XHCI.RHUB.SS04._UPC], AE_ALREADY_EXISTS
> (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
> lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
> OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating
> named object [\_SB.PC00.XHCI.RHUB.SS04._PLD], AE_ALREADY_EXISTS
> (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
> lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
> OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating
> named object [\_SB.PC00.XHCI.RHUB.SS05._UPC], AE_ALREADY_EXISTS
> (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
> lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
> OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating
> named object [\_SB.PC00.XHCI.RHUB.SS05._PLD], AE_ALREADY_EXISTS
> (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
> lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
> OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating
> named object [\_SB.PC00.XHCI.RHUB.SS06._UPC], AE_ALREADY_EXISTS
> (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
> lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
> OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating
> named object [\_SB.PC00.XHCI.RHUB.SS06._PLD], AE_ALREADY_EXISTS
> (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
> lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode:
> OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI: 15 ACPI AML tables successfully
> acquired and loaded
> Jul 19 20:41:53 xd kernel: ACPI: Dynamic OEM Table Load:
> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0xFFFF997306398600 0001C6 (v02
> PmRef Cpu0Psd 00003000 INTL 20160422)
> Jul 19 20:41:53 xd kernel: ACPI: \_SB_.PR00: _OSC native thermal LVT
> Acked
> Jul 19 20:41:53 xd kernel: ACPI: Dynamic OEM Table Load:
> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0xFFFF9971C0F91800 000386 (v02
> PmRef Cpu0Cst 00003001 INTL 20160422)
> Jul 19 20:41:53 xd kernel: ACPI: Dynamic OEM Table Load:
> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0xFFFF9971C0C36800 0005C3 (v02
> PmRef Cpu0Ist 00003000 INTL 20160422)
> Jul 19 20:41:53 xd kernel: ACPI: Dynamic OEM Table Load:
> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0xFFFF9971C0F96800 00028B (v02
> PmRef Cpu0Hwp 00003000 INTL 20160422)
> Jul 19 20:41:53 xd kernel: ACPI: Dynamic OEM Table Load:
> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0xFFFF9971C0F87000 0008E7 (v02
> PmRef ApIst 00003000 INTL 20160422)
> Jul 19 20:41:53 xd kernel: ACPI: Dynamic OEM Table Load:
> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0xFFFF9971C0C33800 00048A (v02
> PmRef ApHwp 00003000 INTL 20160422)
> Jul 19 20:41:53 xd kernel: ACPI: Dynamic OEM Table Load:
> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0xFFFF9971C0C31000 0004D4 (v02
> PmRef ApPsd 00003000 INTL 20160422)
> Jul 19 20:41:53 xd kernel: ACPI: Dynamic OEM Table Load:
> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0xFFFF9971C0C30000 00048A (v02
> PmRef ApCst 00003000 INTL 20160422)
> Jul 19 20:41:53 xd kernel: ACPI: EC: EC started
> Jul 19 20:41:53 xd kernel: ACPI: EC: interrupt blocked
> Jul 19 20:41:53 xd kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
> Jul 19 20:41:53 xd kernel: ACPI: \_SB_.PC00.LPCB.EC0_: Boot DSDT EC
> used to handle transactions
> Jul 19 20:41:53 xd kernel: ACPI: Interpreter enabled
> Jul 19 20:41:53 xd kernel: ACPI: (supports S0 S3 S4 S5)
> Jul 19 20:41:53 xd kernel: ACPI: Using IOAPIC for interrupt routing
> Jul 19 20:41:53 xd kernel: PCI: Using host bridge windows from ACPI; if
> necessary, use "pci=nocrs" and report a bug
> Jul 19 20:41:53 xd kernel: ACPI: Enabled 7 GPEs in block 00 to 7F
> Jul 19 20:41:53 xd kernel: ACPI: Power Resource [PCRP] (on)
> Jul 19 20:41:53 xd kernel: ACPI: Power Resource [V0PR] (on)
> Jul 19 20:41:53 xd kernel: ACPI: Power Resource [V1PR] (on)
> Jul 19 20:41:53 xd kernel: ACPI: Power Resource [V2PR] (on)
> Jul 19 20:41:53 xd kernel: ACPI: Power Resource [WRST] (on)
> Jul 19 20:41:53 xd kernel: ACPI: Power Resource [V0PR] (on)
> Jul 19 20:41:53 xd kernel: ACPI: Power Resource [V1PR] (on)
> Jul 19 20:41:53 xd kernel: ACPI: Power Resource [V2PR] (on)
> Jul 19 20:41:53 xd kernel: ACPI: Power Resource [V3PR] (on)
> Jul 19 20:41:53 xd kernel: ACPI: Power Resource [FN00] (off)
> Jul 19 20:41:53 xd kernel: ACPI: Power Resource [FN01] (off)
> Jul 19 20:41:53 xd kernel: ACPI: Power Resource [FN02] (off)
> Jul 19 20:41:53 xd kernel: ACPI: Power Resource [FN03] (off)
> Jul 19 20:41:53 xd kernel: ACPI: Power Resource [FN04] (off)
> Jul 19 20:41:53 xd kernel: ACPI: Power Resource [PIN] (off)
> Jul 19 20:41:53 xd kernel: ACPI: PCI Root Bridge [PC00] (domain 0000
> [bus 00-e0])
> Jul 19 20:41:53 xd kernel: acpi PNP0A08:00: _OSC: OS supports
> [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
> Jul 19 20:41:53 xd kernel: acpi PNP0A08:00: _OSC: OS now controls
> [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR]
> Jul 19 20:41:53 xd kernel: PCI host bridge to bus 0000:00
> Jul 19 20:41:53 xd kernel: pci_bus 0000:00: root bus resource [io
> 0x0000-0x0cf7 window]
> Jul 19 20:41:53 xd kernel: pci_bus 0000:00: root bus resource [io
> 0x0d00-0xffff window]
> Jul 19 20:41:53 xd kernel: pci_bus 0000:00: root bus resource [mem
> 0x000a0000-0x000bffff window]
> Jul 19 20:41:53 xd kernel: pci_bus 0000:00: root bus resource [mem
> 0x4f800000-0xbfffffff window]
> Jul 19 20:41:53 xd kernel: pci_bus 0000:00: root bus resource [mem
> 0x4000000000-0x7fffffffff window]
> Jul 19 20:41:53 xd kernel: pci_bus 0000:00: root bus resource [bus
> 00-e0]
> Jul 19 20:41:53 xd kernel: pci 0000:00:00.0: [8086:9a14] type 00 class
> 0x060000
> Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: [8086:9a49] type 00 class
> 0x030000
> Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: reg 0x10: [mem
> 0x6014000000-0x6014ffffff 64bit]
> Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: reg 0x18: [mem
> 0x4000000000-0x400fffffff 64bit pref]
> Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: reg 0x20: [io
> 0x5000-0x503f]
> Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: BAR 2: assigned to efifb
> Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: DMAR: Skip IOMMU disabling
> for graphics
> Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: reg 0x344: [mem
> 0x00000000-0x00ffffff 64bit]
> Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: VF(n) BAR0 space: [mem
> 0x00000000-0x06ffffff 64bit] (contains BAR0 for 7 VFs)
> Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: reg 0x34c: [mem
> 0x00000000-0x1fffffff 64bit pref]
> Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: VF(n) BAR2 space: [mem
> 0x00000000-0xdfffffff 64bit pref] (contains BAR2 for 7 VFs)
> Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: [8086:9a09] type 01 class
> 0x060400
> Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: PME# supported from D0
> D3hot D3cold
> Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: PTM enabled (root), 4ns
> granularity
> Jul 19 20:41:53 xd kernel: pci 0000:00:08.0: [8086:9a11] type 00 class
> 0x088000
> Jul 19 20:41:53 xd kernel: pci 0000:00:08.0: reg 0x10: [mem
> 0x601540f000-0x601540ffff 64bit]
> Jul 19 20:41:53 xd kernel: pci 0000:00:0e.0: [8086:9a0b] type 00 class
> 0x010400
> Jul 19 20:41:53 xd kernel: pci 0000:00:0e.0: reg 0x10: [mem
> 0x6012000000-0x6013ffffff 64bit]
> Jul 19 20:41:53 xd kernel: pci 0000:00:0e.0: reg 0x18: [mem
> 0x50000000-0x51ffffff]
> Jul 19 20:41:53 xd kernel: pci 0000:00:0e.0: reg 0x20: [mem
> 0x6015300000-0x60153fffff 64bit]
> Jul 19 20:41:53 xd kernel: pci 0000:00:14.0: [8086:a0ed] type 00 class
> 0x0c0330
> Jul 19 20:41:53 xd kernel: pci 0000:00:14.0: reg 0x10: [mem
> 0x53180000-0x5318ffff 64bit]
> Jul 19 20:41:53 xd kernel: pci 0000:00:14.0: PME# supported from D3hot
> D3cold
> Jul 19 20:41:53 xd kernel: pci 0000:00:14.2: [8086:a0ef] type 00 class
> 0x050000
> Jul 19 20:41:53 xd kernel: pci 0000:00:14.2: reg 0x10: [mem
> 0x6015404000-0x6015407fff 64bit]
> Jul 19 20:41:53 xd kernel: pci 0000:00:14.2: reg 0x18: [mem
> 0x601540e000-0x601540efff 64bit]
> Jul 19 20:41:53 xd kernel: pci 0000:00:15.0: [8086:a0e8] type 00 class
> 0x0c8000
> Jul 19 20:41:53 xd kernel: pci 0000:00:15.0: reg 0x10: [mem
> 0x00000000-0x00000fff 64bit]
> Jul 19 20:41:53 xd kernel: pci 0000:00:15.3: [8086:a0eb] type 00 class
> 0x0c8000
> Jul 19 20:41:53 xd kernel: pci 0000:00:15.3: reg 0x10: [mem
> 0x00000000-0x00000fff 64bit]
> Jul 19 20:41:53 xd kernel: pci 0000:00:16.0: [8086:a0e0] type 00 class
> 0x078000
> Jul 19 20:41:53 xd kernel: pci 0000:00:16.0: reg 0x10: [mem
> 0x601540b000-0x601540bfff 64bit]
> Jul 19 20:41:53 xd kernel: pci 0000:00:16.0: PME# supported from D3hot
> Jul 19 20:41:53 xd kernel: pci 0000:00:17.0: [8086:09ab] type 00 class
> 0x088000
> Jul 19 20:41:53 xd kernel: pci 0000:00:19.0: [8086:a0c5] type 00 class
> 0x0c8000
> Jul 19 20:41:53 xd kernel: pci 0000:00:19.0: reg 0x10: [mem
> 0x00000000-0x00000fff 64bit]
> Jul 19 20:41:53 xd kernel: pci 0000:00:19.1: [8086:a0c6] type 00 class
> 0x0c8000
> Jul 19 20:41:53 xd kernel: pci 0000:00:19.1: reg 0x10: [mem
> 0x00000000-0x00000fff 64bit]
> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: [8086:a0b0] type 01 class
> 0x060400
> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: PME# supported from D0
> D3hot D3cold
> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: PTM enabled (root), 4ns
> granularity
> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.1: [8086:a0b1] type 01 class
> 0x060400
> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.1: PME# supported from D0
> D3hot D3cold
> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.1: PTM enabled (root), 4ns
> granularity
> Jul 19 20:41:53 xd kernel: pci 0000:00:1f.0: [8086:a082] type 00 class
> 0x060100
> Jul 19 20:41:53 xd kernel: pci 0000:00:1f.3: [8086:a0c8] type 00 class
> 0x040100
> Jul 19 20:41:53 xd kernel: pci 0000:00:1f.3: reg 0x10: [mem
> 0x6015400000-0x6015403fff 64bit]
> Jul 19 20:41:53 xd kernel: pci 0000:00:1f.3: reg 0x20: [mem
> 0x6015200000-0x60152fffff 64bit]
> Jul 19 20:41:53 xd kernel: pci 0000:00:1f.3: PME# supported from D3hot
> D3cold
> Jul 19 20:41:53 xd kernel: pci 0000:00:1f.4: [8086:a0a3] type 00 class
> 0x0c0500
> Jul 19 20:41:53 xd kernel: pci 0000:00:1f.4: reg 0x10: [mem
> 0x6015408000-0x60154080ff 64bit]
> Jul 19 20:41:53 xd kernel: pci 0000:00:1f.4: reg 0x20: [io
> 0xefa0-0xefbf]
> Jul 19 20:41:53 xd kernel: pci 0000:00:1f.5: [8086:a0a4] type 00 class
> 0x0c8000
> Jul 19 20:41:53 xd kernel: pci 0000:00:1f.5: reg 0x10: [mem
> 0xfe010000-0xfe010fff]
> Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: [10de:1f97] type 00 class
> 0x030200
> Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: reg 0x10: [mem
> 0x52000000-0x52ffffff]
> Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: reg 0x14: [mem
> 0x6000000000-0x600fffffff 64bit pref]
> Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: reg 0x1c: [mem
> 0x6010000000-0x6011ffffff 64bit pref]
> Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: reg 0x24: [io
> 0x4000-0x407f]
> Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: reg 0x30: [mem
> 0xfff80000-0xffffffff pref]
> Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: PME# supported from D0
> D3hot D3cold
> Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: 63.012 Gb/s available PCIe
> bandwidth, limited by 16.0 GT/s PCIe x4 link at 0000:00:06.0 (capable
> of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
> Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: PCI bridge to [bus 01]
> Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: bridge window [io
> 0x4000-0x4fff]
> Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: bridge window [mem
> 0x52000000-0x52ffffff]
> Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: bridge window [mem
> 0x6000000000-0x6011ffffff 64bit pref]
> Jul 19 20:41:53 xd kernel: pci 0000:02:00.0: [10ec:8168] type 00 class
> 0x020000
> Jul 19 20:41:53 xd kernel: pci 0000:02:00.0: reg 0x10: [io
> 0x3000-0x30ff]
> Jul 19 20:41:53 xd kernel: pci 0000:02:00.0: reg 0x18: [mem
> 0x53004000-0x53004fff 64bit]
> Jul 19 20:41:53 xd kernel: pci 0000:02:00.0: reg 0x20: [mem
> 0x53000000-0x53003fff 64bit]
> Jul 19 20:41:53 xd kernel: pci 0000:02:00.0: supports D1 D2
> Jul 19 20:41:53 xd kernel: pci 0000:02:00.0: PME# supported from D0 D1
> D2 D3hot D3cold
> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: PCI bridge to [bus 02]
> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: bridge window [io
> 0x3000-0x3fff]
> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: bridge window [mem
> 0x53000000-0x530fffff]
> Jul 19 20:41:53 xd kernel: pci 0000:03:00.0: [14c3:7961] type 00 class
> 0x028000
> Jul 19 20:41:53 xd kernel: pci 0000:03:00.0: reg 0x10: [mem
> 0x6015000000-0x60150fffff 64bit pref]
> Jul 19 20:41:53 xd kernel: pci 0000:03:00.0: reg 0x18: [mem
> 0x6015100000-0x6015103fff 64bit pref]
> Jul 19 20:41:53 xd kernel: pci 0000:03:00.0: reg 0x20: [mem
> 0x6015104000-0x6015104fff 64bit pref]
> Jul 19 20:41:53 xd kernel: pci 0000:03:00.0: supports D1 D2
> Jul 19 20:41:53 xd kernel: pci 0000:03:00.0: PME# supported from D0 D1
> D2 D3hot D3cold
> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.1: PCI bridge to [bus 03]
> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.1: bridge window [mem
> 0x6015000000-0x60151fffff 64bit pref]
> Jul 19 20:41:53 xd kernel: ACPI: EC: interrupt unblocked
> Jul 19 20:41:53 xd kernel: ACPI: EC: event unblocked
> Jul 19 20:41:53 xd kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
> Jul 19 20:41:53 xd kernel: ACPI: EC: GPE=0x6e
> Jul 19 20:41:53 xd kernel: ACPI: \_SB_.PC00.LPCB.EC0_: Boot DSDT EC
> initialization complete
> Jul 19 20:41:53 xd kernel: ACPI: \_SB_.PC00.LPCB.EC0_: EC: Used to
> handle transactions and events
> Jul 19 20:41:53 xd kernel: iommu: Default domain type: Translated
> Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: vgaarb: setting as boot
> VGA device
> Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: vgaarb: VGA device added:
> decodes=io+mem,owns=io+mem,locks=none
> Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: vgaarb: bridge control
> possible
> Jul 19 20:41:53 xd kernel: vgaarb: loaded
> Jul 19 20:41:53 xd kernel: EDAC MC: Ver: 3.0.0
> Jul 19 20:41:53 xd kernel: Registered efivars operations
> Jul 19 20:41:53 xd kernel: NetLabel: Initializing
> Jul 19 20:41:53 xd kernel: NetLabel: domain hash size = 128
> Jul 19 20:41:53 xd kernel: NetLabel: protocols = UNLABELED CIPSOv4
> CALIPSO
> Jul 19 20:41:53 xd kernel: NetLabel: unlabeled traffic allowed by
> default
> Jul 19 20:41:53 xd kernel: PCI: Using ACPI for IRQ routing
> Jul 19 20:41:53 xd kernel: PCI: pci_cache_line_size set to 64 bytes
> Jul 19 20:41:53 xd kernel: pci 0000:00:1f.5: can't claim BAR 0 [mem
> 0xfe010000-0xfe010fff]: no compatible bridge window
> Jul 19 20:41:53 xd kernel: e820: reserve RAM buffer [mem
> 0x0009f000-0x0009ffff]
> Jul 19 20:41:53 xd kernel: e820: reserve RAM buffer [mem
> 0x3bee4000-0x3bffffff]
> Jul 19 20:41:53 xd kernel: e820: reserve RAM buffer [mem
> 0x3bf66000-0x3bffffff]
> Jul 19 20:41:53 xd kernel: e820: reserve RAM buffer [mem
> 0x3bf69000-0x3bffffff]
> Jul 19 20:41:53 xd kernel: e820: reserve RAM buffer [mem
> 0x3fd99000-0x3fffffff]
> Jul 19 20:41:53 xd kernel: e820: reserve RAM buffer [mem
> 0x424af000-0x43ffffff]
> Jul 19 20:41:53 xd kernel: e820: reserve RAM buffer [mem
> 0x44c00000-0x47ffffff]
> Jul 19 20:41:53 xd kernel: e820: reserve RAM buffer [mem
> 0x4b0800000-0x4b3ffffff]
> Jul 19 20:41:53 xd kernel: clocksource: Switched to clocksource
> tsc-early
> Jul 19 20:41:53 xd kernel: VFS: Disk quotas dquot_6.6.0
> Jul 19 20:41:53 xd kernel: VFS: Dquot-cache hash table entries: 512
> (order 0, 4096 bytes)
> Jul 19 20:41:53 xd kernel: AppArmor: AppArmor Filesystem Enabled
> Jul 19 20:41:53 xd kernel: pnp: PnP ACPI init
> Jul 19 20:41:53 xd kernel: system 00:00: [io 0x0680-0x069f] has been
> reserved
> Jul 19 20:41:53 xd kernel: system 00:00: [io 0x164e-0x164f] has been
> reserved
> Jul 19 20:41:53 xd kernel: system 00:00: [io 0xfd60-0xfd63] has been
> reserved
> Jul 19 20:41:53 xd kernel: system 00:00: Plug and Play ACPI device, IDs
> PNP0c02 (active)
> Jul 19 20:41:53 xd kernel: pnp 00:01: Plug and Play ACPI device, IDs
> PNP0b00 (active)
> Jul 19 20:41:53 xd kernel: system 00:02: [io 0x1854-0x1857] has been
> reserved
> Jul 19 20:41:53 xd kernel: system 00:02: Plug and Play ACPI device, IDs
> INT3f0d PNP0c02 (active)
> Jul 19 20:41:53 xd kernel: pnp 00:03: Plug and Play ACPI device, IDs
> PNP0303 (active)
> Jul 19 20:41:53 xd kernel: pnp 00:04: disabling [mem
> 0xc0000000-0xcfffffff] because it overlaps 0000:00:02.0 BAR 9 [mem
> 0x00000000-0xdfffffff 64bit pref]
> Jul 19 20:41:53 xd kernel: system 00:04: [mem 0xfedc0000-0xfedc7fff]
> has been reserved
> Jul 19 20:41:53 xd kernel: system 00:04: [mem 0xfeda0000-0xfeda0fff]
> has been reserved
> Jul 19 20:41:53 xd kernel: system 00:04: [mem 0xfeda1000-0xfeda1fff]
> has been reserved
> Jul 19 20:41:53 xd kernel: system 00:04: [mem 0xfed20000-0xfed7ffff]
> could not be reserved
> Jul 19 20:41:53 xd kernel: system 00:04: [mem 0xfed90000-0xfed93fff]
> could not be reserved
> Jul 19 20:41:53 xd kernel: system 00:04: [mem 0xfed45000-0xfed8ffff]
> could not be reserved
> Jul 19 20:41:53 xd kernel: system 00:04: [mem 0xfee00000-0xfeefffff]
> has been reserved
> Jul 19 20:41:53 xd kernel: system 00:04: Plug and Play ACPI device, IDs
> PNP0c02 (active)
> Jul 19 20:41:53 xd kernel: system 00:05: [io 0x1800-0x18fe] could not
> be reserved
> Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xfe000000-0xfe01ffff]
> could not be reserved
> Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xfe04c000-0xfe04ffff]
> has been reserved
> Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xfe050000-0xfe0affff]
> has been reserved
> Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xfe0d0000-0xfe0fffff]
> has been reserved
> Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xfe200000-0xfe7fffff]
> has been reserved
> Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xff000000-0xffffffff]
> could not be reserved
> Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xfd000000-0xfd68ffff]
> has been reserved
> Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xfd6b0000-0xfd6cffff]
> has been reserved
> Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xfd6f0000-0xfdffffff]
> has been reserved
> Jul 19 20:41:53 xd kernel: system 00:05: Plug and Play ACPI device, IDs
> PNP0c02 (active)
> Jul 19 20:41:53 xd kernel: system 00:06: [io 0x2000-0x20fe] has been
> reserved
> Jul 19 20:41:53 xd kernel: system 00:06: Plug and Play ACPI device, IDs
> PNP0c02 (active)
> Jul 19 20:41:53 xd kernel: system 00:07: Plug and Play ACPI device, IDs
> PNP0c02 (active)
> Jul 19 20:41:53 xd kernel: pnp: PnP ACPI: found 8 devices
> Jul 19 20:41:53 xd kernel: clocksource: acpi_pm: mask: 0xffffff
> max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
> Jul 19 20:41:53 xd kernel: NET: Registered protocol family 2
> Jul 19 20:41:53 xd kernel: IP idents hash table entries: 262144 (order:
> 9, 2097152 bytes, linear)
> Jul 19 20:41:53 xd kernel: tcp_listen_portaddr_hash hash table entries:
> 8192 (order: 5, 131072 bytes, linear)
> Jul 19 20:41:53 xd kernel: TCP established hash table entries: 131072
> (order: 8, 1048576 bytes, linear)
> Jul 19 20:41:53 xd kernel: TCP bind hash table entries: 65536 (order:
> 8, 1048576 bytes, linear)
> Jul 19 20:41:53 xd kernel: TCP: Hash tables configured (established
> 131072 bind 65536)
> Jul 19 20:41:53 xd kernel: UDP hash table entries: 8192 (order: 6,
> 262144 bytes, linear)
> Jul 19 20:41:53 xd kernel: UDP-Lite hash table entries: 8192 (order: 6,
> 262144 bytes, linear)
> Jul 19 20:41:53 xd kernel: NET: Registered protocol family 1
> Jul 19 20:41:53 xd kernel: NET: Registered protocol family 44
> Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: can't claim BAR 6 [mem
> 0xfff80000-0xffffffff pref]: no compatible bridge window
> Jul 19 20:41:53 xd kernel: pci_bus 0000:00: max bus depth: 1
> pci_try_num: 2
> Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: BAR 9: assigned [mem
> 0x4020000000-0x40ffffffff 64bit pref]
> Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: BAR 7: assigned [mem
> 0x4010000000-0x4016ffffff 64bit]
> Jul 19 20:41:53 xd kernel: pci 0000:00:15.0: BAR 0: assigned [mem
> 0x4017000000-0x4017000fff 64bit]
> Jul 19 20:41:53 xd kernel: pci 0000:00:15.3: BAR 0: assigned [mem
> 0x4017001000-0x4017001fff 64bit]
> Jul 19 20:41:53 xd kernel: pci 0000:00:19.0: BAR 0: assigned [mem
> 0x4017002000-0x4017002fff 64bit]
> Jul 19 20:41:53 xd kernel: pci 0000:00:19.1: BAR 0: assigned [mem
> 0x4017003000-0x4017003fff 64bit]
> Jul 19 20:41:53 xd kernel: pci 0000:00:1f.5: BAR 0: assigned [mem
> 0x4f800000-0x4f800fff]
> Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: BAR 6: no space for [mem
> size 0x00080000 pref]
> Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: BAR 6: failed to assign
> [mem size 0x00080000 pref]
> Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: PCI bridge to [bus 01]
> Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: bridge window [io
> 0x4000-0x4fff]
> Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: bridge window [mem
> 0x52000000-0x52ffffff]
> Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: bridge window [mem
> 0x6000000000-0x6011ffffff 64bit pref]
> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: PCI bridge to [bus 02]
> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: bridge window [io
> 0x3000-0x3fff]
> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: bridge window [mem
> 0x53000000-0x530fffff]
> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.1: PCI bridge to [bus 03]
> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.1: bridge window [mem
> 0x6015000000-0x60151fffff 64bit pref]
> Jul 19 20:41:53 xd kernel: pci_bus 0000:00: resource 4 [io
> 0x0000-0x0cf7 window]
> Jul 19 20:41:53 xd kernel: pci_bus 0000:00: resource 5 [io
> 0x0d00-0xffff window]
> Jul 19 20:41:53 xd kernel: pci_bus 0000:00: resource 6 [mem
> 0x000a0000-0x000bffff window]
> Jul 19 20:41:53 xd kernel: pci_bus 0000:00: resource 7 [mem
> 0x4f800000-0xbfffffff window]
> Jul 19 20:41:53 xd kernel: pci_bus 0000:00: resource 8 [mem
> 0x4000000000-0x7fffffffff window]
> Jul 19 20:41:53 xd kernel: pci_bus 0000:01: resource 0 [io
> 0x4000-0x4fff]
> Jul 19 20:41:53 xd kernel: pci_bus 0000:01: resource 1 [mem
> 0x52000000-0x52ffffff]
> Jul 19 20:41:53 xd kernel: pci_bus 0000:01: resource 2 [mem
> 0x6000000000-0x6011ffffff 64bit pref]
> Jul 19 20:41:53 xd kernel: pci_bus 0000:02: resource 0 [io
> 0x3000-0x3fff]
> Jul 19 20:41:53 xd kernel: pci_bus 0000:02: resource 1 [mem
> 0x53000000-0x530fffff]
> Jul 19 20:41:53 xd kernel: pci_bus 0000:03: resource 2 [mem
> 0x6015000000-0x60151fffff 64bit pref]
> Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: Video device with shadowed
> ROM at [mem 0x000c0000-0x000dffff]
> Jul 19 20:41:53 xd kernel: PCI: CLS 64 bytes, default 64
> Jul 19 20:41:53 xd kernel: Trying to unpack rootfs image as
> initramfs...
> Jul 19 20:41:53 xd kernel: Freeing initrd memory: 43668K
> Jul 19 20:41:53 xd kernel: DMAR: No ATSR found
> Jul 19 20:41:53 xd kernel: DMAR: dmar0: Using Queued invalidation
> Jul 19 20:41:53 xd kernel: DMAR: dmar1: Using Queued invalidation
> Jul 19 20:41:53 xd kernel: pci 0000:00:00.0: Adding to iommu group 0
> Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: Adding to iommu group 1
> Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: Adding to iommu group 2
> Jul 19 20:41:53 xd kernel: pci 0000:00:08.0: Adding to iommu group 3
> Jul 19 20:41:53 xd kernel: pci 0000:00:0e.0: Adding to iommu group 4
> Jul 19 20:41:53 xd kernel: pci 0000:00:14.0: Adding to iommu group 5
> Jul 19 20:41:53 xd kernel: pci 0000:00:14.2: Adding to iommu group 5
> Jul 19 20:41:53 xd kernel: pci 0000:00:15.0: Adding to iommu group 6
> Jul 19 20:41:53 xd kernel: pci 0000:00:15.3: Adding to iommu group 6
> Jul 19 20:41:53 xd kernel: pci 0000:00:16.0: Adding to iommu group 7
> Jul 19 20:41:53 xd kernel: pci 0000:00:17.0: Adding to iommu group 8
> Jul 19 20:41:53 xd kernel: pci 0000:00:19.0: Adding to iommu group 9
> Jul 19 20:41:53 xd kernel: pci 0000:00:19.1: Adding to iommu group 9
> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: Adding to iommu group 10
> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.1: Adding to iommu group 11
> Jul 19 20:41:53 xd kernel: pci 0000:00:1f.0: Adding to iommu group 12
> Jul 19 20:41:53 xd kernel: pci 0000:00:1f.3: Adding to iommu group 12
> Jul 19 20:41:53 xd kernel: pci 0000:00:1f.4: Adding to iommu group 12
> Jul 19 20:41:53 xd kernel: pci 0000:00:1f.5: Adding to iommu group 12
> Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: Adding to iommu group 13
> Jul 19 20:41:53 xd kernel: pci 0000:02:00.0: Adding to iommu group 14
> Jul 19 20:41:53 xd kernel: pci 0000:03:00.0: Adding to iommu group 15
> Jul 19 20:41:53 xd kernel: DMAR: Intel(R) Virtualization Technology for
> Directed I/O
> Jul 19 20:41:53 xd kernel: PCI-DMA: Using software bounce buffering for
> IO (SWIOTLB)
> Jul 19 20:41:53 xd kernel: software IO TLB: mapped [mem
> 0x0000000037663000-0x000000003b663000] (64MB)
> Jul 19 20:41:53 xd kernel: clocksource: tsc: mask: 0xffffffffffffffff
> max_cycles: 0x22df1149949, max_idle_ns: 440795312789 ns
> Jul 19 20:41:53 xd kernel: clocksource: Switched to clocksource tsc
> Jul 19 20:41:53 xd kernel: Initialise system trusted keyrings
> Jul 19 20:41:53 xd kernel: Key type blacklist registered
> Jul 19 20:41:53 xd kernel: workingset: timestamp_bits=36 max_order=22
> bucket_order=0
> Jul 19 20:41:53 xd kernel: zbud: loaded
> Jul 19 20:41:53 xd kernel: integrity: Platform Keyring initialized
> Jul 19 20:41:53 xd kernel: Key type asymmetric registered
> Jul 19 20:41:53 xd kernel: Asymmetric key parser 'x509' registered
> Jul 19 20:41:53 xd kernel: Block layer SCSI generic (bsg) driver
> version 0.4 loaded (major 251)
> Jul 19 20:41:53 xd kernel: io scheduler mq-deadline registered
> Jul 19 20:41:53 xd kernel: pcieport 0000:00:06.0: PME: Signaling with
> IRQ 122
> Jul 19 20:41:53 xd kernel: pcieport 0000:00:06.0: AER: enabled with IRQ
> 122
> Jul 19 20:41:53 xd kernel: pcieport 0000:00:06.0: DPC: enabled with IRQ
> 122
> Jul 19 20:41:53 xd kernel: pcieport 0000:00:06.0: DPC: error
> containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP
> PIO Log 4, DL_ActiveErr+
> Jul 19 20:41:53 xd kernel: pcieport 0000:00:1d.0: PME: Signaling with
> IRQ 123
> Jul 19 20:41:53 xd kernel: pcieport 0000:00:1d.0: AER: enabled with IRQ
> 123
> Jul 19 20:41:53 xd kernel: pcieport 0000:00:1d.0: DPC: enabled with IRQ
> 123
> Jul 19 20:41:53 xd kernel: pcieport 0000:00:1d.0: DPC: error
> containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP
> PIO Log 4, DL_ActiveErr+
> Jul 19 20:41:53 xd kernel: pcieport 0000:00:1d.1: PME: Signaling with
> IRQ 124
> Jul 19 20:41:53 xd kernel: pcieport 0000:00:1d.1: AER: enabled with IRQ
> 124
> Jul 19 20:41:53 xd kernel: pcieport 0000:00:1d.1: DPC: enabled with IRQ
> 124
> Jul 19 20:41:53 xd kernel: pcieport 0000:00:1d.1: DPC: error
> containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP
> PIO Log 4, DL_ActiveErr+
> Jul 19 20:41:53 xd kernel: shpchp: Standard Hot Plug PCI Controller
> Driver version: 0.4
> Jul 19 20:41:53 xd kernel: efifb: probing for efifb
> Jul 19 20:41:53 xd kernel: efifb: framebuffer at 0x4000000000, using
> 8128k, total 8128k
> Jul 19 20:41:53 xd kernel: efifb: mode is 1920x1080x32,
> linelength=7680, pages=1
> Jul 19 20:41:53 xd kernel: efifb: scrolling: redraw
> Jul 19 20:41:53 xd kernel: efifb: Truecolor: size=8:8:8:8,
> shift=24:16:8:0
> Jul 19 20:41:53 xd kernel: Console: switching to colour frame buffer
> device 240x67
> Jul 19 20:41:53 xd kernel: fb0: EFI VGA frame buffer device
> Jul 19 20:41:53 xd kernel: intel_idle: MWAIT substates: 0x11121020
> Jul 19 20:41:53 xd kernel: Monitor-Mwait will be used to enter C-1
> state
> Jul 19 20:41:53 xd kernel: Monitor-Mwait will be used to enter C-2
> state
> Jul 19 20:41:53 xd kernel: Monitor-Mwait will be used to enter C-3
> state
> Jul 19 20:41:53 xd kernel: ACPI: \_SB_.PR00: Found 3 idle states
> Jul 19 20:41:53 xd kernel: intel_idle: v0.5.1 model 0x8C
> Jul 19 20:41:53 xd kernel: intel_idle: Local APIC timer is reliable in
> all C-states
> Jul 19 20:41:53 xd kernel: thermal LNXTHERM:00: registered as
> thermal_zone0
> Jul 19 20:41:53 xd kernel: ACPI: Thermal Zone [TZ00] (28 C)
> Jul 19 20:41:53 xd kernel: Serial: 8250/16550 driver, 4 ports, IRQ
> sharing enabled
> Jul 19 20:41:53 xd kernel: hpet_acpi_add: no address or irqs in _CRS
> Jul 19 20:41:53 xd kernel: Linux agpgart interface v0.103
> Jul 19 20:41:53 xd kernel: AMD-Vi: AMD IOMMUv2 functionality not
> available on this system - This is not a bug.
> Jul 19 20:41:53 xd kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K]
> at 0x60,0x64 irq 1
> Jul 19 20:41:53 xd kernel: i8042: PNP: PS/2 appears to have AUX port
> disabled, if this is incorrect please boot with i8042.nopnp
> Jul 19 20:41:53 xd kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
> Jul 19 20:41:53 xd kernel: mousedev: PS/2 mouse device common for all
> mice
> Jul 19 20:41:53 xd kernel: rtc_cmos 00:01: RTC can wake from S4
> Jul 19 20:41:53 xd kernel: rtc_cmos 00:01: registered as rtc0
> Jul 19 20:41:53 xd kernel: rtc_cmos 00:01: setting system clock to
> 2022-07-19T19:41:51 UTC (1658259711)
> Jul 19 20:41:53 xd kernel: rtc_cmos 00:01: alarms up to one month, y3k,
> 242 bytes nvram
> Jul 19 20:41:53 xd kernel: intel_pstate: Intel P-state driver
> initializing
> Jul 19 20:41:53 xd kernel: intel_pstate: HWP enabled
> Jul 19 20:41:53 xd kernel: ledtrig-cpu: registered to indicate activity
> on CPUs
> Jul 19 20:41:53 xd kernel: NET: Registered protocol family 10
> Jul 19 20:41:53 xd kernel: Segment Routing with IPv6
> Jul 19 20:41:53 xd kernel: mip6: Mobile IPv6
> Jul 19 20:41:53 xd kernel: NET: Registered protocol family 17
> Jul 19 20:41:53 xd kernel: mpls_gso: MPLS GSO support
> Jul 19 20:41:53 xd kernel: microcode: sig=0x806c1, pf=0x80,
> revision=0x8a
> Jul 19 20:41:53 xd kernel: microcode: Microcode Update Driver: v2.2.
> Jul 19 20:41:53 xd kernel: resctrl: L2 allocation detected
> Jul 19 20:41:53 xd kernel: resctrl: L2DATA allocation detected
> Jul 19 20:41:53 xd kernel: resctrl: L2CODE allocation detected
> Jul 19 20:41:53 xd kernel: IPI shorthand broadcast: enabled
> Jul 19 20:41:53 xd kernel: sched_clock: Marking stable (804088381,
> 6362109)->(820685197, -10234707)
> Jul 19 20:41:53 xd kernel: registered taskstats version 1
> Jul 19 20:41:53 xd kernel: Loading compiled-in X.509 certificates
> Jul 19 20:41:53 xd kernel: input: AT Translated Set 2 keyboard as
> /devices/platform/i8042/serio0/input/input0
> Jul 19 20:41:53 xd kernel: Loaded X.509 cert 'Debian Secure Boot CA:
> 6ccece7e4c6c0d1f6149f3dd27dfcc5cbb419ea1'
> Jul 19 20:41:53 xd kernel: Loaded X.509 cert 'Debian Secure Boot Signer
> 2021 - linux: 4b6ef5abca669825178e052c84667ccbc0531f8c'
> Jul 19 20:41:53 xd kernel: zswap: loaded using pool lzo/zbud
> Jul 19 20:41:53 xd kernel: Key type ._fscrypt registered
> Jul 19 20:41:53 xd kernel: Key type .fscrypt registered
> Jul 19 20:41:53 xd kernel: Key type fscrypt-provisioning registered
> Jul 19 20:41:53 xd kernel: AppArmor: AppArmor sha1 policy hashing
> enabled
> Jul 19 20:41:53 xd kernel: Freeing unused kernel image (initmem)
> memory: 2424K
> Jul 19 20:41:53 xd kernel: Write protecting the kernel read-only data:
> 22528k
> Jul 19 20:41:53 xd kernel: Freeing unused kernel image (text/rodata
> gap) memory: 2040K
> Jul 19 20:41:53 xd kernel: Freeing unused kernel image (rodata/data
> gap) memory: 624K
> Jul 19 20:41:53 xd kernel: x86/mm: Checked W+X mappings: passed, no W+X
> pages found.
> Jul 19 20:41:53 xd kernel: Run /init as init process
> Jul 19 20:41:53 xd kernel: with arguments:
> Jul 19 20:41:53 xd kernel: /init
> Jul 19 20:41:53 xd kernel: with environment:
> Jul 19 20:41:53 xd kernel: HOME=/
> Jul 19 20:41:53 xd kernel: TERM=linux
> Jul 19 20:41:53 xd kernel: BOOT_IMAGE=/vmlinuz-5.10.0-16-amd64
> Jul 19 20:41:53 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block
> query control method not found
> Jul 19 20:41:53 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block
> query control method not found
> Jul 19 20:41:53 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block
> query control method not found
> Jul 19 20:41:53 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block
> query control method not found
> Jul 19 20:41:53 xd kernel: acpi PNP0C14:03: duplicate WMI GUID
> 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
> Jul 19 20:41:53 xd kernel: acpi PNP0C14:04: duplicate WMI GUID
> 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
> Jul 19 20:41:53 xd kernel: input: Lid Switch as
> /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:21/PNP0C0D:00/input/input1
> Jul 19 20:41:53 xd kernel: ACPI: Lid Switch [LID0]
> Jul 19 20:41:53 xd kernel: input: Sleep Button as
> /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2
> Jul 19 20:41:53 xd kernel: ACPI: Sleep Button [SLPB]
> Jul 19 20:41:53 xd kernel: input: Power Button as
> /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input3
> Jul 19 20:41:53 xd kernel: battery: ACPI: Battery Slot [BAT1] (battery
> present)
> Jul 19 20:41:53 xd kernel: vmd 0000:00:0e.0: PCI host bridge to bus
> 10000:e0
> Jul 19 20:41:53 xd kernel: pci_bus 10000:e0: root bus resource [bus
> e0-ff]
> Jul 19 20:41:53 xd kernel: pci_bus 10000:e0: root bus resource [mem
> 0x50000000-0x51ffffff]
> Jul 19 20:41:53 xd kernel: pci_bus 10000:e0: root bus resource [mem
> 0x6015302000-0x60153fffff 64bit]
> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: [8086:a0d3] type 00 class
> 0x010601
> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: reg 0x10: [mem
> 0x00000000-0x00001fff]
> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: reg 0x14: [mem
> 0x00000000-0x000000ff]
> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: reg 0x18: [io
> 0x0000-0x0007]
> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: reg 0x1c: [io
> 0x0000-0x0003]
> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: reg 0x20: [io
> 0x0000-0x001f]
> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: reg 0x24: [mem
> 0x50000000-0x500007ff]
> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: PME# supported from D3hot
> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: Adding to iommu group 4
> Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.0: [8086:09ab] type 00 class
> 0x088000
> Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.0: Adding to iommu group 4
> Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: [8086:a0bc] type 01 class
> 0x060400
> Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: PME# supported from D0
> D3hot D3cold
> Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: PTM enabled (root), 4ns
> granularity
> Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: Adding to iommu group 4
> Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: Primary bus is hard wired
> to 0
> Jul 19 20:41:53 xd kernel: pci 10000:e1:00.0: [2646:500c] type 00 class
> 0x010802
> Jul 19 20:41:53 xd kernel: pci 10000:e1:00.0: reg 0x10: [mem
> 0x50100000-0x50103fff 64bit]
> Jul 19 20:41:53 xd kernel: pci 10000:e1:00.0: Adding to iommu group 4
> Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: PCI bridge to [bus e1]
> Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: bridge window [io
> 0x0000-0x0fff]
> Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: bridge window [mem
> 0x50100000-0x501fffff]
> Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: Primary bus is hard wired
> to 0
> Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: BAR 14: assigned [mem
> 0x50000000-0x500fffff]
> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 0: assigned [mem
> 0x50100000-0x50101fff]
> Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: BAR 13: no space for [io
> size 0x1000]
> Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: BAR 13: failed to assign
> [io size 0x1000]
> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 5: assigned [mem
> 0x50102000-0x501027ff]
> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 1: assigned [mem
> 0x50102800-0x501028ff]
> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 4: no space for [io
> size 0x0020]
> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 4: failed to assign
> [io size 0x0020]
> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 2: no space for [io
> size 0x0008]
> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 2: failed to assign
> [io size 0x0008]
> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 3: no space for [io
> size 0x0004]
> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 3: failed to assign
> [io size 0x0004]
> Jul 19 20:41:53 xd kernel: pci 10000:e1:00.0: BAR 0: assigned [mem
> 0x50000000-0x50003fff 64bit]
> Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: PCI bridge to [bus e1]
> Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: bridge window [mem
> 0x50000000-0x500fffff]
> Jul 19 20:41:53 xd kernel: pcieport 10000:e0:1c.4: can't derive routing
> for PCI INT A
> Jul 19 20:41:53 xd kernel: pcieport 10000:e0:1c.4: PCI INT A: no GSI
> Jul 19 20:41:53 xd kernel: pcieport 10000:e0:1c.4: PME: Signaling with
> IRQ 144
> Jul 19 20:41:53 xd kernel: pcieport 10000:e0:1c.4: AER: enabled with
> IRQ 144
> Jul 19 20:41:53 xd kernel: pcieport 10000:e0:1c.4: DPC: enabled with
> IRQ 144
> Jul 19 20:41:53 xd kernel: pcieport 10000:e0:1c.4: DPC: error
> containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP
> PIO Log 4, DL_ActiveErr+
> Jul 19 20:41:53 xd kernel: vmd 0000:00:0e.0: Bound to PCI domain 10000
> Jul 19 20:41:53 xd kernel: i801_smbus 0000:00:1f.4: SPD Write Disable
> is set
> Jul 19 20:41:53 xd kernel: i801_smbus 0000:00:1f.4: SMBus using PCI
> interrupt
> Jul 19 20:41:53 xd kernel: i2c i2c-0: 2/2 memory slots populated (from
> DMI)
> Jul 19 20:41:53 xd kernel: i2c i2c-0: Successfully instantiated SPD at
> 0x50
> Jul 19 20:41:53 xd kernel: hid: raw HID events driver (C) Jiri Kosina
> Jul 19 20:41:53 xd kernel: ACPI: Power Button [PWRB]
> Jul 19 20:41:53 xd kernel: ACPI: bus type USB registered
> Jul 19 20:41:53 xd kernel: usbcore: registered new interface driver
> usbfs
> Jul 19 20:41:53 xd kernel: usbcore: registered new interface driver hub
> Jul 19 20:41:53 xd kernel: usbcore: registered new device driver usb
> Jul 19 20:41:53 xd kernel: SCSI subsystem initialized
> Jul 19 20:41:53 xd kernel: intel-lpss 0000:00:15.0: enabling device
> (0004 -> 0006)
> Jul 19 20:41:53 xd kernel: idma64 idma64.0: Found Intel integrated DMA
> 64-bit
> Jul 19 20:41:53 xd kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
> Jul 19 20:41:53 xd kernel: xhci_hcd 0000:00:14.0: new USB bus
> registered, assigned bus number 1
> Jul 19 20:41:53 xd kernel: xhci_hcd 0000:00:14.0: hcc params 0x20007fc1
> hci version 0x120 quirks 0x0000000000009810
> Jul 19 20:41:53 xd kernel: xhci_hcd 0000:00:14.0: cache line size of 64
> is not supported
> Jul 19 20:41:53 xd kernel: usb usb1: New USB device found,
> idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
> Jul 19 20:41:53 xd kernel: usb usb1: New USB device strings: Mfr=3,
> Product=2, SerialNumber=1
> Jul 19 20:41:53 xd kernel: usb usb1: Product: xHCI Host Controller
> Jul 19 20:41:53 xd kernel: usb usb1: Manufacturer: Linux
> 5.10.0-16-amd64 xhci-hcd
> Jul 19 20:41:53 xd kernel: usb usb1: SerialNumber: 0000:00:14.0
> Jul 19 20:41:53 xd kernel: hub 1-0:1.0: USB hub found
> Jul 19 20:41:53 xd kernel: hub 1-0:1.0: 12 ports detected
> Jul 19 20:41:53 xd kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
> Jul 19 20:41:53 xd kernel: xhci_hcd 0000:00:14.0: new USB bus
> registered, assigned bus number 2
> Jul 19 20:41:53 xd kernel: xhci_hcd 0000:00:14.0: Host supports USB 3.1
> Enhanced SuperSpeed
> Jul 19 20:41:53 xd kernel: usb usb2: New USB device found,
> idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
> Jul 19 20:41:53 xd kernel: usb usb2: New USB device strings: Mfr=3,
> Product=2, SerialNumber=1
> Jul 19 20:41:53 xd kernel: usb usb2: Product: xHCI Host Controller
> Jul 19 20:41:53 xd kernel: usb usb2: Manufacturer: Linux
> 5.10.0-16-amd64 xhci-hcd
> Jul 19 20:41:53 xd kernel: usb usb2: SerialNumber: 0000:00:14.0
> Jul 19 20:41:53 xd kernel: hub 2-0:1.0: USB hub found
> Jul 19 20:41:53 xd kernel: hub 2-0:1.0: 4 ports detected
> Jul 19 20:41:53 xd kernel: nvme nvme0: pci function 10000:e1:00.0
> Jul 19 20:41:53 xd kernel: pcieport 10000:e0:1c.4: can't derive routing
> for PCI INT A
> Jul 19 20:41:53 xd kernel: nvme 10000:e1:00.0: PCI INT A: no GSI
> Jul 19 20:41:53 xd kernel: libata version 3.00 loaded.
> Jul 19 20:41:53 xd kernel: nvme nvme0: missing or invalid SUBNQN field.
> Jul 19 20:41:53 xd kernel: nvme nvme0: Shutdown timeout set to 10
> seconds
> Jul 19 20:41:53 xd kernel: r8169 0000:02:00.0 eth0: RTL8168h/8111h,
> 08:8f:c3:4f:86:c5, XID 541, IRQ 147
> Jul 19 20:41:53 xd kernel: r8169 0000:02:00.0 eth0: jumbo features
> [frames: 9194 bytes, tx checksumming: ko]
> Jul 19 20:41:53 xd kernel: nvme nvme0: 8/0/0 default/read/poll queues
> Jul 19 20:41:53 xd kernel: nvme0n1: p1 p2 p3 p4 p5
> Jul 19 20:41:53 xd kernel: intel-lpss 0000:00:15.3: enabling device
> (0004 -> 0006)
> Jul 19 20:41:53 xd kernel: idma64 idma64.1: Found Intel integrated DMA
> 64-bit
> Jul 19 20:41:53 xd kernel: i2c_hid i2c-ELAN0515:01: supply vdd not
> found, using dummy regulator
> Jul 19 20:41:53 xd kernel: i2c_hid i2c-ELAN0515:01: supply vddl not
> found, using dummy regulator
> Jul 19 20:41:53 xd kernel: intel-lpss 0000:00:19.0: enabling device
> (0004 -> 0006)
> Jul 19 20:41:53 xd kernel: idma64 idma64.2: Found Intel integrated DMA
> 64-bit
> Jul 19 20:41:53 xd kernel: intel-lpss 0000:00:19.1: enabling device
> (0004 -> 0006)
> Jul 19 20:41:53 xd kernel: idma64 idma64.3: Found Intel integrated DMA
> 64-bit
> Jul 19 20:41:53 xd kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
> Jul 19 20:41:53 xd kernel: input: ELAN0515:01 04F3:3142 Mouse as
> /devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input4
> Jul 19 20:41:53 xd kernel: input: ELAN0515:01 04F3:3142 Touchpad as
> /devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input6
> Jul 19 20:41:53 xd kernel: hid-generic 0018:04F3:3142.0001:
> input,hidraw0: I2C HID v1.00 Mouse [ELAN0515:01 04F3:3142] on
> i2c-ELAN0515:01
> Jul 19 20:41:53 xd kernel: ahci 10000:e0:17.0: version 3.0
> Jul 19 20:41:53 xd kernel: ahci 10000:e0:17.0: can't derive routing for
> PCI INT A
> Jul 19 20:41:53 xd kernel: ahci 10000:e0:17.0: PCI INT A: no GSI
> Jul 19 20:41:53 xd kernel: ahci 10000:e0:17.0: AHCI 0001.0301 32 slots
> 2 ports 6 Gbps 0x3 impl SATA mode
> Jul 19 20:41:53 xd kernel: ahci 10000:e0:17.0: flags: 64bit ncq sntf pm
> clo only pio slum part deso sadm sds
> Jul 19 20:41:53 xd kernel: scsi host0: ahci
> Jul 19 20:41:53 xd kernel: scsi host1: ahci
> Jul 19 20:41:53 xd kernel: ata1: SATA max UDMA/133 abar
> m2048@0x50102000 port 0x50102100 irq 157
> Jul 19 20:41:53 xd kernel: ata2: SATA max UDMA/133 abar
> m2048@0x50102000 port 0x50102180 irq 157
> Jul 19 20:41:53 xd kernel: ACPI Warning: \_SB.PC00.GFX0._DSM: Argument
> #4 type mismatch - Found [Buffer], ACPI requires [Package]
> (20200925/nsarguments-61)
> Jul 19 20:41:53 xd kernel: ACPI Warning: \_SB.PC00.PEG0.PEGP._DSM:
> Argument #4 type mismatch - Found [Buffer], ACPI requires [Package]
> (20200925/nsarguments-61)
> Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: optimus capabilities:
> enabled, status dynamic power, hda bios codec supported
> Jul 19 20:41:53 xd kernel: VGA switcheroo: detected Optimus DSM method
> \_SB_.PC00.PEG0.PEGP handle
> Jul 19 20:41:53 xd kernel: nouveau: detected PR support, will not use
> DSM
> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: enabling device (0006
> -> 0007)
> Jul 19 20:41:53 xd kernel: checking generic (4000000000 7f0000) vs hw
> (52000000 1000000)
> Jul 19 20:41:53 xd kernel: checking generic (4000000000 7f0000) vs hw
> (6000000000 10000000)
> Jul 19 20:41:53 xd kernel: checking generic (4000000000 7f0000) vs hw
> (6010000000 2000000)
> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: NVIDIA TU117
> (167000a1)
> Jul 19 20:41:53 xd kernel: i915 0000:00:02.0: [drm] VT-d active for gfx
> access
> Jul 19 20:41:53 xd kernel: checking generic (4000000000 7f0000) vs hw
> (6014000000 1000000)
> Jul 19 20:41:53 xd kernel: checking generic (4000000000 7f0000) vs hw
> (4000000000 10000000)
> Jul 19 20:41:53 xd kernel: fb0: switching to inteldrmfb from EFI VGA
> Jul 19 20:41:53 xd kernel: Console: switching to colour dummy device
> 80x25
> Jul 19 20:41:53 xd kernel: i915 0000:00:02.0: vgaarb: deactivate vga
> console
> Jul 19 20:41:53 xd kernel: i915 0000:00:02.0: vgaarb: changed VGA
> decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
> Jul 19 20:41:53 xd kernel: i915 0000:00:02.0: firmware: failed to load
> i915/tgl_dmc_ver2_08.bin (-2)
> Jul 19 20:41:53 xd kernel: firmware_class: See
> https://wiki.debian.org/Firmware for information about missing firmware
> Jul 19 20:41:53 xd kernel: i915 0000:00:02.0: Direct firmware load for
> i915/tgl_dmc_ver2_08.bin failed with error -2
> Jul 19 20:41:53 xd kernel: i915 0000:00:02.0: [drm] Failed to load DMC
> firmware i915/tgl_dmc_ver2_08.bin. Disabling runtime power management.
> Jul 19 20:41:53 xd kernel: i915 0000:00:02.0: [drm] DMC firmware
> homepage:
> https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/i915
> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: bios: version
> 90.17.74.00.2f
> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: firmware: failed to
> load nvidia/tu117/nvdec/scrubber.bin (-2)
> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: firmware: failed to
> load nvidia/tu117/acr/bl.bin (-2)
> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: firmware: failed to
> load nvidia/tu117/acr/bl.bin (-2)
> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: firmware: failed to
> load nvidia/tu117/acr/unload_bl.bin (-2)
> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: pmu: firmware
> unavailable
> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: gr: firmware
> unavailable
> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: sec2: firmware
> unavailable
> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: fb: 2048 MiB GDDR5
> Jul 19 20:41:53 xd kernel: [TTM] Zone kernel: Available graphics
> memory: 8082824 KiB
> Jul 19 20:41:53 xd kernel: [TTM] Zone dma32: Available graphics memory:
> 2097152 KiB
> Jul 19 20:41:53 xd kernel: [TTM] Initializing pool allocator
> Jul 19 20:41:53 xd kernel: [TTM] Initializing DMA pool allocator
> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: DRM: VRAM: 2048 MiB
> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: DRM: GART: 536870912
> MiB
> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: DRM: BIT table 'A' not
> found
> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: DRM: BIT table 'L' not
> found
> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: DRM: Pointer to TMDS
> table not found
> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: DRM: DCB version 4.1
> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: DRM: failed to create
> kernel channel, -22
> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: DRM: MM: using COPY
> for buffer copies
> Jul 19 20:41:53 xd kernel: usb 1-5: new low-speed USB device number 2
> using xhci_hcd
> Jul 19 20:41:53 xd kernel: [drm] Initialized nouveau 1.3.1 20120801 for
> 0000:01:00.0 on minor 1
> Jul 19 20:41:53 xd kernel: usb 1-5: New USB device found,
> idVendor=046d, idProduct=c077, bcdDevice=72.00
> Jul 19 20:41:53 xd kernel: usb 1-5: New USB device strings: Mfr=1,
> Product=2, SerialNumber=0
> Jul 19 20:41:53 xd kernel: usb 1-5: Product: USB Optical Mouse
> Jul 19 20:41:53 xd kernel: usb 1-5: Manufacturer: Logitech
> Jul 19 20:41:53 xd kernel: ata2: SATA link down (SStatus 0 SControl
> 300)
> Jul 19 20:41:53 xd kernel: ata1: SATA link down (SStatus 0 SControl
> 300)
> Jul 19 20:41:53 xd kernel: input: Logitech USB Optical Mouse as
> /devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.0/0003:046D:C077.0002/input/input7
> Jul 19 20:41:53 xd kernel: hid-generic 0003:046D:C077.0002:
> input,hidraw1: USB HID v1.11 Mouse [Logitech USB Optical Mouse] on
> usb-0000:00:14.0-5/input0
> Jul 19 20:41:53 xd kernel: usbcore: registered new interface driver
> usbhid
> Jul 19 20:41:53 xd kernel: usbhid: USB HID core driver
> Jul 19 20:41:53 xd kernel: usb 1-7: new full-speed USB device number 3
> using xhci_hcd
> Jul 19 20:41:53 xd kernel: usb 1-7: New USB device found,
> idVendor=04f3, idProduct=0c4f, bcdDevice= 1.61
> Jul 19 20:41:53 xd kernel: usb 1-7: New USB device strings: Mfr=1,
> Product=2, SerialNumber=0
> Jul 19 20:41:53 xd kernel: usb 1-7: Product: ELAN:Fingerprint
> Jul 19 20:41:53 xd kernel: usb 1-7: Manufacturer: ELAN
> Jul 19 20:41:53 xd kernel: usb 1-8: new high-speed USB device number 4
> using xhci_hcd
> Jul 19 20:41:53 xd kernel: usb 1-8: New USB device found,
> idVendor=0408, idProduct=a061, bcdDevice= 0.04
> Jul 19 20:41:53 xd kernel: usb 1-8: New USB device strings: Mfr=1,
> Product=2, SerialNumber=0
> Jul 19 20:41:53 xd kernel: usb 1-8: Product: HD User Facing
> Jul 19 20:41:53 xd kernel: usb 1-8: Manufacturer: SunplusIT Inc
> Jul 19 20:41:53 xd kernel: usb 1-10: new high-speed USB device number 5
> using xhci_hcd
> Jul 19 20:41:53 xd kernel: usb 1-10: New USB device found,
> idVendor=04ca, idProduct=3802, bcdDevice= 1.00
> Jul 19 20:41:53 xd kernel: usb 1-10: New USB device strings: Mfr=5,
> Product=6, SerialNumber=7
> Jul 19 20:41:53 xd kernel: usb 1-10: Product: Wireless_Device
> Jul 19 20:41:53 xd kernel: usb 1-10: Manufacturer: MediaTek Inc.
> Jul 19 20:41:53 xd kernel: usb 1-10: SerialNumber: 000000000
> Jul 19 20:41:53 xd kernel: [drm] Initialized i915 1.6.0 20200917 for
> 0000:00:02.0 on minor 0
> Jul 19 20:41:53 xd kernel: [Firmware Bug]: ACPI(PEGP) defines _DOD but
> not _DOS
> Jul 19 20:41:53 xd kernel: ACPI: Video Device [PEGP] (multi-head: yes
> rom: no post: no)
> Jul 19 20:41:53 xd kernel: input: Video Bus as
> /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/LNXVIDEO:00/input/input8
> Jul 19 20:41:53 xd kernel: ACPI: Video Device [GFX0] (multi-head: yes
> rom: no post: no)
> Jul 19 20:41:53 xd kernel: input: Video Bus as
> /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input9
> Jul 19 20:41:53 xd kernel: vga_switcheroo: enabled
> Jul 19 20:41:53 xd kernel: fbcon: i915drmfb (fb0) is primary device
> Jul 19 20:41:53 xd kernel: Console: switching to colour frame buffer
> device 240x67
> Jul 19 20:41:53 xd kernel: i915 0000:00:02.0: [drm] fb0: i915drmfb
> frame buffer device
> Jul 19 20:41:53 xd kernel: PM: Image not found (code -22)
> Jul 19 20:41:53 xd kernel: EXT4-fs (nvme0n1p3): mounting ext3 file
> system using the ext4 subsystem
> Jul 19 20:41:53 xd kernel: EXT4-fs (nvme0n1p3): mounted filesystem with
> ordered data mode. Opts: (null)
> Jul 19 20:41:53 xd kernel: Not activating Mandatory Access Control as
> /sbin/tomoyo-init does not exist.
> Jul 19 20:41:53 xd systemd[1]: Inserted module 'autofs4'
> Jul 19 20:41:53 xd systemd[1]: systemd 247.3-7 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=unified)
> Jul 19 20:41:53 xd systemd[1]: Detected architecture x86-64.
> Jul 19 20:41:53 xd systemd[1]: Set hostname to <xd>.
> Jul 19 20:41:53 xd systemd[1]:
> /lib/systemd/system/plymouth-start.service:16: Unit configured to use
> KillMode=none. This is unsafe, as it disables systemd's process
> lifecycle management for the service. Please update your service to use
> a safer KillMode=, such as 'mixed' or 'control-group'. Support for
> KillMode=none is deprecated and will eventually be removed.
> Jul 19 20:41:53 xd systemd[1]: Queued start job for default target
> Graphical Interface.
> Jul 19 20:41:53 xd systemd[1]: Created slice system-getty.slice.
> Jul 19 20:41:53 xd systemd[1]: Created slice system-modprobe.slice.
> Jul 19 20:41:53 xd systemd[1]: Created slice
> system-systemd\x2dfsck.slice.
> Jul 19 20:41:53 xd systemd[1]: Created slice User and Session Slice.
> Jul 19 20:41:53 xd systemd[1]: Started Forward Password Requests to
> Wall Directory Watch.
> Jul 19 20:41:53 xd systemd[1]: Set up automount Arbitrary Executable
> File Formats File System Automount Point.
> Jul 19 20:41:53 xd systemd[1]: Reached target User and Group Name
> Lookups.
> Jul 19 20:41:53 xd systemd[1]: Reached target Remote File Systems.
> Jul 19 20:41:53 xd systemd[1]: Reached target Slices.
> Jul 19 20:41:53 xd systemd[1]: Listening on Device-mapper event daemon
> FIFOs.
> Jul 19 20:41:53 xd systemd[1]: Listening on LVM2 poll daemon socket.
> Jul 19 20:41:53 xd systemd[1]: Listening on Syslog Socket.
> Jul 19 20:41:53 xd systemd[1]: Listening on fsck to fsckd communication
> Socket.
> Jul 19 20:41:53 xd systemd[1]: Listening on initctl Compatibility Named
> Pipe.
> Jul 19 20:41:53 xd systemd[1]: Listening on Journal Audit Socket.
> Jul 19 20:41:53 xd systemd[1]: Listening on Journal Socket (/dev/log).
> Jul 19 20:41:53 xd systemd[1]: Listening on Journal Socket.
> Jul 19 20:41:53 xd systemd[1]: Listening on udev Control Socket.
> Jul 19 20:41:53 xd systemd[1]: Listening on udev Kernel Socket.
> Jul 19 20:41:53 xd systemd[1]: Mounting Huge Pages File System...
> Jul 19 20:41:53 xd systemd[1]: Mounting POSIX Message Queue File
> System...
> Jul 19 20:41:53 xd systemd[1]: Mounting Kernel Debug File System...
> Jul 19 20:41:53 xd systemd[1]: Mounting Kernel Trace File System...
> Jul 19 20:41:53 xd systemd[1]: Finished Availability of block devices.
> Jul 19 20:41:53 xd systemd[1]: Starting Set the console keyboard
> layout...
> Jul 19 20:41:53 xd systemd[1]: Starting Create list of static device
> nodes for the current kernel...
> Jul 19 20:41:53 xd systemd[1]: Starting Monitoring of LVM2 mirrors,
> snapshots etc. using dmeventd or progress polling...
> Jul 19 20:41:53 xd systemd[1]: Starting Load Kernel Module configfs...
> Jul 19 20:41:53 xd systemd[1]: Starting Load Kernel Module drm...
> Jul 19 20:41:53 xd systemd[1]: Starting Load Kernel Module fuse...
> Jul 19 20:41:53 xd systemd[1]: Condition check resulted in Set Up
> Additional Binary Formats being skipped.
> Jul 19 20:41:53 xd systemd[1]: Condition check resulted in File System
> Check on Root Device being skipped.
> Jul 19 20:41:53 xd systemd[1]: Starting Journal Service...
> Jul 19 20:41:53 xd systemd[1]: Starting Load Kernel Modules...
> Jul 19 20:41:53 xd systemd[1]: Starting Remount Root and Kernel File
> Systems...
> Jul 19 20:41:53 xd systemd[1]: Starting Coldplug All udev Devices...
> Jul 19 20:41:53 xd systemd[1]: Mounted Huge Pages File System.
> Jul 19 20:41:53 xd systemd[1]: Mounted POSIX Message Queue File System.
> Jul 19 20:41:53 xd systemd[1]: Mounted Kernel Debug File System.
> Jul 19 20:41:53 xd systemd[1]: Mounted Kernel Trace File System.
> Jul 19 20:41:53 xd systemd[1]: Finished Create list of static device
> nodes for the current kernel.
> Jul 19 20:41:53 xd systemd[1]: modprobe@configfs.service: Succeeded.
> Jul 19 20:41:53 xd systemd[1]: Finished Load Kernel Module configfs.
> Jul 19 20:41:53 xd systemd[1]: modprobe@drm.service: Succeeded.
> Jul 19 20:41:53 xd systemd[1]: Finished Load Kernel Module drm.
> Jul 19 20:41:53 xd systemd[1]: Mounting Kernel Configuration File
> System...
> Jul 19 20:41:53 xd systemd[1]: Mounted Kernel Configuration File
> System.
> Jul 19 20:41:53 xd kernel: fuse: init (API version 7.32)
> Jul 19 20:41:53 xd systemd[1]: modprobe@fuse.service: Succeeded.
> Jul 19 20:41:53 xd systemd[1]: Finished Load Kernel Module fuse.
> Jul 19 20:41:53 xd systemd[1]: Mounting FUSE Control File System...
> Jul 19 20:41:53 xd kernel: EXT4-fs (nvme0n1p3): re-mounted. Opts:
> errors=remount-ro
> Jul 19 20:41:53 xd systemd[1]: Finished Remount Root and Kernel File
> Systems.
> Jul 19 20:41:53 xd systemd[1]: Condition check resulted in Rebuild
> Hardware Database being skipped.
> Jul 19 20:41:53 xd systemd[1]: Condition check resulted in Platform
> Persistent Storage Archival being skipped.
> Jul 19 20:41:53 xd systemd[1]: Starting Load/Save Random Seed...
> Jul 19 20:41:53 xd systemd[1]: Starting Create System Users...
> Jul 19 20:41:53 xd systemd[1]: Mounted FUSE Control File System.
> Jul 19 20:41:53 xd kernel: lp: driver loaded but no devices found
> Jul 19 20:41:53 xd systemd[1]: Finished Load/Save Random Seed.
> Jul 19 20:41:53 xd systemd[1]: Condition check resulted in First Boot
> Complete being skipped.
> Jul 19 20:41:53 xd kernel: ppdev: user-space parallel port driver
> Jul 19 20:41:53 xd systemd[1]: Finished Create System Users.
> Jul 19 20:41:53 xd systemd[1]: Starting Create Static Device Nodes in
> /dev...
> Jul 19 20:41:53 xd systemd[1]: Finished Load Kernel Modules.
> Jul 19 20:41:53 xd systemd[1]: Starting Apply Kernel Variables...
> Jul 19 20:41:53 xd systemd[1]: Finished Apply Kernel Variables.
> Jul 19 20:41:53 xd systemd[1]: Finished Create Static Device Nodes in
> /dev.
> Jul 19 20:41:53 xd systemd[1]: Starting Rule-based Manager for Device
> Events and Files...
> Jul 19 20:41:53 xd systemd[1]: Finished Set the console keyboard
> layout.
> Jul 19 20:41:53 xd systemd[1]: Started Journal Service.
> Jul 19 20:41:53 xd kernel: input: Acer Wireless Radio Control as
> /devices/LNXSYSTM:00/10251229:00/input/input10
> Jul 19 20:41:53 xd kernel: intel_pmc_core INT33A1:00: initialized
> Jul 19 20:41:53 xd kernel: input: Intel HID events as
> /devices/platform/INTC1051:00/input/input11
> Jul 19 20:41:53 xd kernel: intel-hid INTC1051:00: platform supports 5
> button array
> Jul 19 20:41:53 xd kernel: input: Intel HID 5 button array as
> /devices/platform/INTC1051:00/input/input12
> Jul 19 20:41:53 xd kernel: ACPI: AC Adapter [ACAD] (on-line)
> Jul 19 20:41:53 xd kernel: mc: Linux media interface: v0.10
> Jul 19 20:41:53 xd kernel: mei_me 0000:00:16.0: enabling device (0000
> -> 0002)
> Jul 19 20:41:53 xd kernel: videodev: Linux video capture interface:
> v2.00
> Jul 19 20:41:53 xd kernel: ee1004 0-0050: 512 byte EE1004-compliant SPD
> EEPROM, read-only
> Jul 19 20:41:53 xd kernel: iTCO_vendor_support: vendor-support=0
> Jul 19 20:41:53 xd kernel: iTCO_wdt: Intel TCO WatchDog Timer Driver
> v1.11
> Jul 19 20:41:53 xd kernel: iTCO_wdt: Found a Intel PCH TCO device
> (Version=6, TCOBASE=0x0400)
> Jul 19 20:41:53 xd kernel: iTCO_wdt: initialized. heartbeat=30 sec
> (nowayout=0)
> Jul 19 20:41:53 xd kernel: EXT4-fs (nvme0n1p2): mounting ext2 file
> system using the ext4 subsystem
> Jul 19 20:41:53 xd kernel: EXT4-fs (nvme0n1p2): mounted filesystem
> without journal. Opts: (null)
> Jul 19 20:41:53 xd kernel: ext2 filesystem being mounted at /boot
> supports timestamps until 2038 (0x7fffffff)
> Jul 19 20:41:53 xd kernel: uvcvideo: Found UVC 1.00 device HD User
> Facing (0408:a061)
> Jul 19 20:41:53 xd kernel: Adding 31182844k swap on /dev/nvme0n1p4.
> Priority:-2 extents:1 across:31182844k SSFS
> Jul 19 20:41:53 xd kernel: input: HD User Facing: HD User Facing as
> /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/input/input13
> Jul 19 20:41:53 xd kernel: acer_wmi: Acer Laptop ACPI-WMI Extras
> Jul 19 20:41:53 xd kernel: acer_wmi: Function bitmap for Communication
> Button: 0x801
> Jul 19 20:41:53 xd kernel: input: Acer WMI hotkeys as
> /devices/virtual/input/input14
> Jul 19 20:41:53 xd kernel: cryptd: max_cpu_qlen set to 1000
> Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.900:2):
> apparmor="STATUS" operation="profile_load" profile="unconfined"
> name="lsb_release" pid=401 comm="apparmor_parser"
> Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.900:3):
> apparmor="STATUS" operation="profile_load" profile="unconfined"
> name="libreoffice-oopslash" pid=402 comm="apparmor_parser"
> Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.900:4):
> apparmor="STATUS" operation="profile_load" profile="unconfined"
> name="nvidia_modprobe" pid=405 comm="apparmor_parser"
> Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.900:5):
> apparmor="STATUS" operation="profile_load" profile="unconfined"
> name="nvidia_modprobe//kmod" pid=405 comm="apparmor_parser"
> Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.900:6):
> apparmor="STATUS" operation="profile_load" profile="unconfined"
> name="/usr/bin/man" pid=403 comm="apparmor_parser"
> Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.900:7):
> apparmor="STATUS" operation="profile_load" profile="unconfined"
> name="man_filter" pid=403 comm="apparmor_parser"
> Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.900:8):
> apparmor="STATUS" operation="profile_load" profile="unconfined"
> name="man_groff" pid=403 comm="apparmor_parser"
> Jul 19 20:41:53 xd kernel: usbcore: registered new interface driver
> uvcvideo
> Jul 19 20:41:53 xd kernel: USB Video Class driver (1.1.1)
> Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.912:9):
> apparmor="STATUS" operation="profile_load" profile="unconfined"
> name="libreoffice-xpdfimport" pid=412 comm="apparmor_parser"
> Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.912:10):
> apparmor="STATUS" operation="profile_load" profile="unconfined"
> name="/usr/sbin/cups-browsed" pid=408 comm="apparmor_parser"
> Jul 19 20:41:53 xd kernel: pstore: Using crash dump compression:
> deflate
> Jul 19 20:41:53 xd kernel: input: ELAN0515:01 04F3:3142 Mouse as
> /devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input15
> Jul 19 20:41:53 xd kernel: input: ELAN0515:01 04F3:3142 Touchpad as
> /devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input17
> Jul 19 20:41:53 xd kernel: hid-multitouch 0018:04F3:3142.0001:
> input,hidraw0: I2C HID v1.00 Mouse [ELAN0515:01 04F3:3142] on
> i2c-ELAN0515:01
> Jul 19 20:41:53 xd kernel: pstore: Registered efi as persistent store
> backend
> Jul 19 20:41:54 xd kernel: input: PC Speaker as
> /devices/platform/pcspkr/input/input18
> Jul 19 20:41:54 xd kernel: AVX2 version of gcm_enc/dec engaged.
> Jul 19 20:41:54 xd kernel: AES CTR mode by8 optimization enabled
> Jul 19 20:41:54 xd kernel: resource sanity check: requesting [mem
> 0xfedc0000-0xfedcdfff], which spans more than pnp 00:04 [mem
> 0xfedc0000-0xfedc7fff]
> Jul 19 20:41:54 xd kernel: caller
> tgl_uncore_imc_freerunning_init_box+0xbb/0x100 [intel_uncore] mapping
> multiple BARs
> Jul 19 20:41:54 xd kernel: snd_hda_intel 0000:00:1f.3: DSP detected
> with PCI class/subclass/prog-if info 0x040100
> Jul 19 20:41:54 xd kernel: snd_hda_intel 0000:00:1f.3: Digital mics
> found on Skylake+ platform, using SOF driver
> Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: DSP detected
> with PCI class/subclass/prog-if info 0x040100
> Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: Digital mics
> found on Skylake+ platform, using SOF driver
> Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: enabling device
> (0000 -> 0002)
> Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: DSP detected
> with PCI class/subclass/prog-if 0x040100
> Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: bound
> 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
> Jul 19 20:41:54 xd kernel: r8169 0000:02:00.0: firmware: failed to load
> rtl_nic/rtl8168h-2.fw (-2)
> Jul 19 20:41:54 xd kernel: r8169 0000:02:00.0: Direct firmware load for
> rtl_nic/rtl8168h-2.fw failed with error -2
> Jul 19 20:41:54 xd kernel: r8169 0000:02:00.0: Unable to load firmware
> rtl_nic/rtl8168h-2.fw (-2)
> Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: use msi
> interrupt mode
> Jul 19 20:41:54 xd kernel: Generic FE-GE Realtek PHY r8169-0-200:00:
> attached PHY driver [Generic FE-GE Realtek PHY]
> (mii_bus:phy_addr=r8169-0-200:00, irq=IGNORE)
> Jul 19 20:41:54 xd kernel: alg: No test for fips(ansi_cprng)
> (fips_ansi_cprng)
> Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: hda codecs
> found, mask 5
> Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: using HDA
> machine driver skl_hda_dsp_generic now
> Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: DMICs detected
> in NHLT tables: 2
> Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: firmware: failed
> to load intel/sof/sof-tgl.ri (-2)
> Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: Direct firmware
> load for intel/sof/sof-tgl.ri failed with error -2
> Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: error: request
> firmware intel/sof/sof-tgl.ri failed err: -2
> Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: error: failed to
> load DSP firmware -2
> Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: error:
> sof_probe_work failed err: -2
> Jul 19 20:41:54 xd kernel: r8169 0000:02:00.0 enp2s0: Link is Down
> Jul 19 20:41:54 xd kernel: Bluetooth: Core ver 2.22
> Jul 19 20:41:54 xd kernel: NET: Registered protocol family 31
> Jul 19 20:41:54 xd kernel: Bluetooth: HCI device and connection manager
> initialized
> Jul 19 20:41:54 xd kernel: Bluetooth: HCI socket layer initialized
> Jul 19 20:41:54 xd kernel: Bluetooth: L2CAP socket layer initialized
> Jul 19 20:41:54 xd kernel: Bluetooth: SCO socket layer initialized
> Jul 19 20:41:54 xd kernel: usbcore: registered new interface driver
> btusb
> Jul 19 20:41:54 xd kernel: Bluetooth: BNEP (Ethernet Emulation) ver 1.3
> Jul 19 20:41:54 xd kernel: Bluetooth: BNEP filters: protocol multicast
> Jul 19 20:41:54 xd kernel: Bluetooth: BNEP socket layer initialized
> Jul 19 20:41:54 xd kernel: mei_hdcp
> 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0
> (ops i915_hdcp_component_ops [i915])
> Jul 19 20:41:54 xd kernel: intel_rapl_msr: PL4 support detected.
> Jul 19 20:41:54 xd kernel: intel_rapl_common: Found RAPL domain package
> Jul 19 20:41:54 xd kernel: intel_rapl_common: Found RAPL domain core
> Jul 19 20:41:54 xd kernel: intel_rapl_common: Found RAPL domain uncore
> Jul 19 20:41:55 xd kernel: rfkill: input handler disabled
> Jul 19 20:42:03 xd kernel: nouveau 0000:01:00.0: fifo: fault 09
> [PHYS_WRITE] at 000000007fef0000 engine c0 [BAR2] client 08
> [HUB/HOST_CPU_NB] reason 0d [REGION_VIOLATION] on channel -1
> [0000000000 unknown]
> Jul 19 20:42:03 xd kernel: nouveau 0000:01:00.0: fifo: fault 09
> [PHYS_WRITE] at 000000007fef0000 engine c0 [BAR2] client 08
> [HUB/HOST_CPU_NB] reason 0d [REGION_VIOLATION] on channel -1
> [0000000000 unknown]
>
> ...
>
> Jul 19 20:42:26 xd kernel: nouveau 0000:01:00.0: fifo: PBDMA0: 01000000
> [] ch 0 [007f992000 DRM] subc 0 mthd 0008 data 00000000
> Jul 19 20:42:26 xd kernel: nouveau 0000:01:00.0: DRM: failed to idle
> channel 0 [DRM]
> Jul 19 20:42:26 xd kernel: nouveau 0000:01:00.0: fifo: PBDMA0: 01000000
> [] ch 0 [007f992000 DRM] subc 0 mthd 0008 data 00000000
> Jul 19 20:42:26 xd kernel: nouveau 0000:01:00.0: fifo: PBDMA0: 01000000
> [] ch 0 [007f992000 DRM] subc 0 mthd 0008 data 00000000
> Jul 19 20:42:26 xd kernel: nouveau 0000:01:00.0: fifo: PBDMA0: 01000000
> [] ch 0 [007f992000 DRM] subc 0 mthd 0008 data 00000000
> Jul 19 20:42:26 xd kernel: nouveau 0000:01:00.0: fifo: PBDMA0: 01000000
> [] ch 0 [007f992000 DRM] subc 0 mthd 0008 data 00000000
> Jul 19 20:42:26 xd kernel: ------------[ cut here ]------------
> Jul 19 20:42:26 xd kernel: WARNING: CPU: 2 PID: 479 at
> drivers/gpu/drm/nouveau/nvkm/subdev/mc/base.c:72
> nvkm_mc_intr+0x14d/0x170 [nouveau]
> Jul 19 20:42:26 xd kernel: Modules linked in: intel_rapl_msr
> intel_rapl_common snd_soc_dmic mei_hdcp bnep btusb btrtl btbcm btintel
> bluetooth x86_pkg_temp_thermal intel_powerclamp coretemp
> jitterentropy_rng kvm_intel snd_hda_codec_hdmi snd_hda_codec_realtek
> drbg snd_hda_codec_generic kvm snd_sof_pci snd_sof_intel_byt
> snd_sof_intel_ipc snd_sof_intel_hda_common snd_sof_xtensa_dsp snd_sof
> snd_sof_intel_hda irqbypass snd_soc_hdac_hda snd_hda_ext_core
> aes_generic ghash_clmulni_intel snd_soc_acpi_intel_match snd_soc_acpi
> ledtrig_audio snd_hda_intel snd_intel_dspcfg soundwire_intel
> intel_cstate soundwire_generic_allocation snd_soc_core intel_uncore
> joydev snd_compress soundwire_cadence aesni_intel pcspkr snd_hda_codec
> crypto_simd cryptd glue_helper nls_ascii snd_hda_core ansi_cprng
> nls_cp437 serio_raw snd_hwdep acer_wmi vfat ecdh_generic soundwire_bus
> efi_pstore fat snd_pcm uvcvideo snd_timer videobuf2_vmalloc iTCO_wdt
> snd videobuf2_memops intel_pmc_bxt wmi_bmof videobuf2_v4l2
> iTCO_vendor_support watchdog
> Jul 19 20:42:26 xd kernel: videobuf2_common soundcore ee1004 videodev
> rfkill ecc mei_me libaes mc mei hid_multitouch evdev ac tpm_crb tpm_tis
> tpm_tis_core tpm intel_hid intel_pmc_core sparse_keymap acpi_pad
> rng_core acer_wireless msr parport_pc ppdev lp parport fuse configfs
> efivarfs ip_tables x_tables autofs4 ext4 crc16 mbcache jbd2
> crc32c_generic usbhid i915 nouveau ahci hid_generic libahci mxm_wmi ttm
> i2c_algo_bit nvme libata drm_kms_helper xhci_pci nvme_core xhci_hcd
> scsi_mod cec t10_pi crc_t10dif r8169 crct10dif_generic drm realtek
> mdio_devres libphy usbcore crct10dif_pclmul crct10dif_common i2c_hid
> crc32_pclmul crc32c_intel hid i2c_i801 i2c_smbus intel_lpss_pci
> intel_lpss idma64 vmd usb_common fan button battery video wmi
> Jul 19 20:42:26 xd kernel: CPU: 2 PID: 479 Comm: in:imklog Not tainted
> 5.10.0-16-amd64 #1 Debian 5.10.127-1
> Jul 19 20:42:26 xd kernel: Hardware name: Acer Aspire
> A517-52G/Jasmine_TL, BIOS V1.26 03/14/2022
> Jul 19 20:42:26 xd kernel: RIP: 0010:nvkm_mc_intr+0x14d/0x170 [nouveau]
> Jul 19 20:42:26 xd kernel: Code: 44 24 18 65 48 2b 04 25 28 00 00 00 75
> 2b 48 83 c4 20 5b 5d 41 5c 41 5d 41 5e 41 5f c3 41 8b 47 40 85 c0 74 ba
> e9 3a 9d 0a 00 <0f> 0b 45 31 e4 c6 44 24 0f 00 e9 00 ff ff ff e8 df b8
> d3 f9 66 66
> Jul 19 20:42:26 xd kernel: RSP: 0018:ffffad10001c0ef0 EFLAGS: 00010046
> Jul 19 20:42:26 xd kernel: RAX: 00000000ffffffff RBX: ffff997305c62280
> RCX: 000000000000080b
> Jul 19 20:42:26 xd kernel: RDX: 0000000000000000 RSI: ffffad10001c0f4f
> RDI: ffffad1007000104
> Jul 19 20:42:26 xd kernel: RBP: ffff9971e0b6c000 R08: ffff9971d129e900
> R09: 0000000000000000
> Jul 19 20:42:26 xd kernel: R10: 0000000000000000 R11: 0000000000000000
> R12: 00000000ffffffff
> Jul 19 20:42:26 xd kernel: R13: ffffad10001c0fac R14: 000000000000009e
> R15: ffff9971e0c0a900
> Jul 19 20:42:26 xd kernel: FS: 00007f586f6ae700(0000)
> GS:ffff997560480000(0000) knlGS:0000000000000000
> Jul 19 20:42:26 xd kernel: CS: 0010 DS: 0000 ES: 0000 CR0:
> 0000000080050033
> Jul 19 20:42:26 xd kernel: CR2: 00007faf88013388 CR3: 0000000109b80005
> CR4: 0000000000770ee0
> Jul 19 20:42:26 xd kernel: PKRU: 55555554
> Jul 19 20:42:26 xd kernel: Call Trace:
> Jul 19 20:42:26 xd kernel: <IRQ>
> Jul 19 20:42:26 xd kernel: ? gp100_mc_intr_update+0x54/0x80 [nouveau]
> Jul 19 20:42:26 xd kernel: nvkm_pci_intr+0x4d/0x90 [nouveau]
> Jul 19 20:42:26 xd kernel: __handle_irq_event_percpu+0x3d/0x160
> Jul 19 20:42:26 xd kernel: handle_irq_event+0x57/0xb0
> Jul 19 20:42:26 xd kernel: handle_edge_irq+0x87/0x220
> Jul 19 20:42:26 xd kernel: asm_call_irq_on_stack+0xf/0x20
> Jul 19 20:42:26 xd kernel: </IRQ>
> Jul 19 20:42:26 xd kernel: common_interrupt+0xb0/0x130
> Jul 19 20:42:26 xd kernel: asm_common_interrupt+0x1e/0x40
> Jul 19 20:42:26 xd kernel: RIP: 0010:__check_heap_object+0x3b/0x110
> Jul 19 20:42:26 xd kernel: Code: ee 00 48 89 f8 48 c1 fa 06 89 cf 48 c1
> e2 0c 48 03 15 29 09 ee 00 48 39 d0 0f 82 b0 00 00 00 48 29 d0 8b 4e 18
> 48 99 48 f7 f9 <89> d0 0f 1f 44 00 00 8b 96 d0 00 00 00 39 c2 77 1c 41
> 89 c2 44 8b
> Jul 19 20:42:26 xd kernel: RSP: 0018:ffffad1000adbde0 EFLAGS: 00000206
> Jul 19 20:42:26 xd kernel: RAX: 000000000000001b RBX: 0000000000000077
> RCX: 0000000000000400
> Jul 19 20:42:26 xd kernel: RDX: 0000000000000000 RSI: ffff9971c0043500
> RDI: 0000000000000001
> Jul 19 20:42:26 xd kernel: RBP: ffff997242d46c77 R08: 0000000000000077
> R09: 302e30303a31303a
> Jul 19 20:42:26 xd kernel: R10: 0000000076756f6e R11: 0000000076756f6e
> R12: ffff997242d46c00
> Jul 19 20:42:26 xd kernel: R13: 0000000000000001 R14: ffff997242d46c00
> R15: 0000000000000077
> Jul 19 20:42:26 xd kernel: __check_object_size+0x136/0x150
> Jul 19 20:42:26 xd kernel: syslog_print+0xc3/0x210
> Jul 19 20:42:26 xd kernel: kmsg_read+0x3e/0x50
> Jul 19 20:42:26 xd kernel: vfs_read+0x98/0x180
> Jul 19 20:42:26 xd kernel: ksys_read+0x5f/0xe0
> Jul 19 20:42:26 xd kernel: do_syscall_64+0x33/0x80
> Jul 19 20:42:26 xd kernel: entry_SYSCALL_64_after_hwframe+0x44/0xa9
> Jul 19 20:42:26 xd kernel: RIP: 0033:0x7f58700c908c
> Jul 19 20:42:26 xd kernel: Code: ec 28 48 89 54 24 18 48 89 74 24 10 89
> 7c 24 08 e8 89 fc ff ff 48 8b 54 24 18 48 8b 74 24 10 41 89 c0 8b 7c 24
> 08 31 c0 0f 05 <48> 3d 00 f0 ff ff 77 34 44 89 c7 48 89 44 24 08 e8 bf
> fc ff ff 48
> Jul 19 20:42:26 xd kernel: RSP: 002b:00007f586f68d4d0 EFLAGS: 00000246
> ORIG_RAX: 0000000000000000
> Jul 19 20:42:26 xd kernel: RAX: ffffffffffffffda RBX: 0000000000000000
> RCX: 00007f58700c908c
> Jul 19 20:42:26 xd kernel: RDX: 0000000000001fa0 RSI: 00007f586f68dd00
> RDI: 0000000000000005
> Jul 19 20:42:26 xd kernel: RBP: 00005619c2c61920 R08: 0000000000000000
> R09: 00005619c2c6ba38
> Jul 19 20:42:26 xd kernel: R10: 0000000000000000 R11: 0000000000000246
> R12: 00007f586f68dd00
> Jul 19 20:42:26 xd kernel: R13: 0000000000001fa0 R14: 00007f586f68dd00
> R15: 00007f586f68fc9c
> Jul 19 20:42:26 xd kernel: ---[ end trace c1b76539949981fe ]---
> Jul 19 20:42:26 xd kernel: nouveau 0000:01:00.0: fifo: fault 0f [] at
> ffffffffffffffff engine ff [] client 7f [HUB/] reason 1f [] on channel
> -1 [fffffffffffff000 unknown]

Regards,

Leigh.
Re: Boot into Xen on debian11 [ In reply to ]
Hello Leigh.

Thank you for the help and attention.

Yes. You’re right… I cannot access via journalctl -k -b -1 the log…

At this point, I don’t know yet how to export that from initramfs prompt or what I could do in initramfs prompt to load the system.

> On 20 Jul 2022, at 13:43, Leigh Brown <leigh@solinno.co.uk> wrote:
>
> ?Hi Bruno,
>
>> On 2022-07-20 13:17, Bruno wrote:
>> Here the ring buffer (journalctl -k -b -1) from the failed boot into Xen.
>
> Are you sure that's the correct log because there should be a message like this:
> [ 0.000000] Hypervisor detected: Xen PV
>
>> -- Journal begins at Mon 2022-07-18 16:19:02 BST, ends at Tue 2022-07-19 20:43:04 BST. --
>> Jul 19 20:41:53 xd kernel: Linux version 5.10.0-16-amd64 (debian-kernel@lists.debian.org) (gcc-10 (Debian 10.2.1-6) 10.2.1 20210110, GNU ld (GNU Binutils for Debian) 2.35.2) #1 SMP Debian 5.10.127-1 (2022-06-30)
>> Jul 19 20:41:53 xd kernel: Command line: BOOT_IMAGE=/vmlinuz-5.10.0-16-amd64 root=UUID=0123abcd ro quiet
>> Jul 19 20:41:53 xd kernel: x86/split lock detection: warning about user-space split_locks
>> Jul 19 20:41:53 xd kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
>> Jul 19 20:41:53 xd kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
>> Jul 19 20:41:53 xd kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
>> Jul 19 20:41:53 xd kernel: x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask'
>> Jul 19 20:41:53 xd kernel: x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'
>> Jul 19 20:41:53 xd kernel: x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'
>> Jul 19 20:41:53 xd kernel: x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
>> Jul 19 20:41:53 xd kernel: x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
>> Jul 19 20:41:53 xd kernel: x86/fpu: xstate_offset[5]: 832, xstate_sizes[5]: 64
>> Jul 19 20:41:53 xd kernel: x86/fpu: xstate_offset[6]: 896, xstate_sizes[6]: 512
>> Jul 19 20:41:53 xd kernel: x86/fpu: xstate_offset[7]: 1408, xstate_sizes[7]: 1024
>> Jul 19 20:41:53 xd kernel: x86/fpu: xstate_offset[9]: 2432, xstate_sizes[9]: 8
>> Jul 19 20:41:53 xd kernel: x86/fpu: Enabled xstate features 0x2e7, context size is 2440 bytes, using 'compacted' format.
>> Jul 19 20:41:53 xd kernel: BIOS-provided physical RAM map:
>> Jul 19 20:41:53 xd kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
>> Jul 19 20:41:53 xd kernel: BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
>> Jul 19 20:41:53 xd kernel: BIOS-e820: [mem 0x0000000000100000-0x000000003fd98fff] usable
>> Jul 19 20:41:53 xd kernel: BIOS-e820: [mem 0x000000003fd99000-0x0000000040698fff] reserved
>> Jul 19 20:41:53 xd kernel: BIOS-e820: [mem 0x0000000040699000-0x00000000424aefff] usable
>> Jul 19 20:41:53 xd kernel: BIOS-e820: [mem 0x00000000424af000-0x000000004287efff] type 20
>> Jul 19 20:41:53 xd kernel: BIOS-e820: [mem 0x000000004287f000-0x00000000442fefff] reserved
>> Jul 19 20:41:53 xd kernel: BIOS-e820: [mem 0x00000000442ff000-0x0000000044b2efff] ACPI NVS
>> Jul 19 20:41:53 xd kernel: BIOS-e820: [mem 0x0000000044b2f000-0x0000000044bfefff] ACPI data
>> Jul 19 20:41:53 xd kernel: BIOS-e820: [mem 0x0000000044bff000-0x0000000044bfffff] usable
>> Jul 19 20:41:53 xd kernel: BIOS-e820: [mem 0x0000000044c00000-0x0000000048ffffff] reserved
>> Jul 19 20:41:53 xd kernel: BIOS-e820: [mem 0x0000000049e00000-0x000000004f7fffff] reserved
>> Jul 19 20:41:53 xd kernel: BIOS-e820: [mem 0x00000000c0000000-0x00000000cfffffff] reserved
>> Jul 19 20:41:53 xd kernel: BIOS-e820: [mem 0x00000000fe010000-0x00000000fe010fff] reserved
>> Jul 19 20:41:53 xd kernel: BIOS-e820: [mem 0x00000000fed20000-0x00000000fed7ffff] reserved
>> Jul 19 20:41:53 xd kernel: BIOS-e820: [mem 0x00000000ff500000-0x00000000ffffffff] reserved
>> Jul 19 20:41:53 xd kernel: BIOS-e820: [mem 0x0000000100000000-0x00000004b07fffff] usable
>> Jul 19 20:41:53 xd kernel: NX (Execute Disable) protection: active
>> Jul 19 20:41:53 xd kernel: efi: EFI v2.70 by INSYDE Corp.
>> Jul 19 20:41:53 xd kernel: efi: ACPI=0x44bfe000 ACPI 2.0=0x44bfe014 TPMFinalLog=0x44ac5000 SMBIOS=0x429de000 SMBIOS 3.0=0x429dc000 ESRT=0x3bf66a98 MOKvar=0x3bee4000
>> Jul 19 20:41:53 xd kernel: secureboot: Secure boot could not be determined (mode 0)
>> Jul 19 20:41:53 xd kernel: SMBIOS 3.3.0 present.
>> Jul 19 20:41:53 xd kernel: DMI: Acer Aspire A517-52G/Jasmine_TL, BIOS V1.26 03/14/2022
>> Jul 19 20:41:53 xd kernel: tsc: Detected 2400.000 MHz processor
>> Jul 19 20:41:53 xd kernel: tsc: Detected 2419.200 MHz TSC
>> Jul 19 20:41:53 xd kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
>> Jul 19 20:41:53 xd kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
>> Jul 19 20:41:53 xd kernel: last_pfn = 0x4b0800 max_arch_pfn = 0x400000000
>> Jul 19 20:41:53 xd kernel: MTRR default type: write-back
>> Jul 19 20:41:53 xd kernel: MTRR fixed ranges enabled:
>> Jul 19 20:41:53 xd kernel: 00000-9FFFF write-back
>> Jul 19 20:41:53 xd kernel: A0000-BFFFF uncachable
>> Jul 19 20:41:53 xd kernel: C0000-FFFFF write-protect
>> Jul 19 20:41:53 xd kernel: MTRR variable ranges enabled:
>> Jul 19 20:41:53 xd kernel: 0 base 0080000000 mask 7F80000000 uncachable
>> Jul 19 20:41:53 xd kernel: 1 base 0060000000 mask 7FE0000000 uncachable
>> Jul 19 20:41:53 xd kernel: 2 base 0050000000 mask 7FF0000000 uncachable
>> Jul 19 20:41:53 xd kernel: 3 base 004C000000 mask 7FFC000000 uncachable
>> Jul 19 20:41:53 xd kernel: 4 base 004B000000 mask 7FFF000000 uncachable
>> Jul 19 20:41:53 xd kernel: 5 base 4000000000 mask 4000000000 uncachable
>> Jul 19 20:41:53 xd kernel: 6 disabled
>> Jul 19 20:41:53 xd kernel: 7 disabled
>> Jul 19 20:41:53 xd kernel: 8 disabled
>> Jul 19 20:41:53 xd kernel: 9 disabled
>> Jul 19 20:41:53 xd kernel: x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
>> Jul 19 20:41:53 xd kernel: last_pfn = 0x44c00 max_arch_pfn = 0x400000000
>> Jul 19 20:41:53 xd kernel: esrt: Reserving ESRT space from 0x000000003bf66a98 to 0x000000003bf66ad0.
>> Jul 19 20:41:53 xd kernel: e820: update [mem 0x3bf66000-0x3bf66fff] usable ==> reserved
>> Jul 19 20:41:53 xd kernel: e820: update [mem 0x3bee4000-0x3bee6fff] usable ==> reserved
>> Jul 19 20:41:53 xd kernel: Using GB pages for direct mapping
>> Jul 19 20:41:53 xd kernel: RAMDISK: [mem 0x32aa5000-0x35549fff]
>> Jul 19 20:41:53 xd kernel: ACPI: Early table checksum verification disabled
>> Jul 19 20:41:53 xd kernel: ACPI: RSDP 0x0000000044BFE014 000024 (v02 ACRSYS)
>> Jul 19 20:41:53 xd kernel: ACPI: XSDT 0x0000000044BDB188 000124 (v01 ACRSYS ACRPRDCT 00000002 01000013)
>> Jul 19 20:41:53 xd kernel: ACPI: FACP 0x0000000044BDE000 000114 (v06 ACRSYS ACRPRDCT 00000002 1025 00040000)
>> Jul 19 20:41:53 xd kernel: ACPI: DSDT 0x0000000044B81000 059948 (v02 ACRSYS ACRPRDCT 00000002 1025 00040000)
>> Jul 19 20:41:53 xd kernel: ACPI: FACS 0x0000000044AA2000 000040
>> Jul 19 20:41:53 xd kernel: ACPI: UEFI 0x0000000044B2E000 000236 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
>> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BFA000 00255C (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
>> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BF9000 000105 (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
>> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BF6000 002137 (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
>> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BF2000 003300 (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
>> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BF1000 00077B (v02 ACRSYS ACRPRDCT 00001000 1025 00040000)
>> Jul 19 20:41:53 xd kernel: ACPI: TPM2 0x0000000044BF0000 00004C (v04 ACRSYS ACRPRDCT 00000002 1025 00040000)
>> Jul 19 20:41:53 xd kernel: ACPI: MSDM 0x0000000044BEF000 000055 (v03 ACRSYS ACRPRDCT 00000001 1025 00040000)
>> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BEE000 000D02 (v02 ACRSYS ACRPRDCT 00000000 1025 00040000)
>> Jul 19 20:41:53 xd kernel: ACPI: NHLT 0x0000000044BEC000 001B54 (v00 ACRSYS ACRPRDCT 00000002 1025 00040000)
>> Jul 19 20:41:53 xd kernel: ACPI: LPIT 0x0000000044BEB000 0000CC (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
>> Jul 19 20:41:53 xd kernel: ACPI: WSMT 0x0000000044BEA000 000028 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
>> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BE9000 000B70 (v02 ACRSYS ACRPRDCT 00001000 1025 00040000)
>> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BE8000 00012A (v02 ACRSYS ACRPRDCT 00000000 1025 00040000)
>> Jul 19 20:41:53 xd kernel: ACPI: DBGP 0x0000000044BE7000 000034 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
>> Jul 19 20:41:53 xd kernel: ACPI: DBG2 0x0000000044BE6000 000054 (v00 ACRSYS ACRPRDCT 00000002 1025 00040000)
>> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BDF000 006BA9 (v01 ACRSYS ACRPRDCT 00001000 1025 00040000)
>> Jul 19 20:41:53 xd kernel: ACPI: HPET 0x0000000044BDD000 000038 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
>> Jul 19 20:41:53 xd kernel: ACPI: APIC 0x0000000044BDC000 00012C (v04 ACRSYS ACRPRDCT 00000002 1025 00040000)
>> Jul 19 20:41:53 xd kernel: ACPI: MCFG 0x0000000044BFD000 00003C (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
>> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044B80000 000C78 (v02 ACRSYS ACRPRDCT 00000002 1025 00040000)
>> Jul 19 20:41:53 xd kernel: ACPI: DMAR 0x0000000044B7F000 000088 (v02 ACRSYS ACRPRDCT 00000002 1025 00040000)
>> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044B7C000 0020D6 (v01 ACRSYS ACRPRDCT 00001000 1025 00040000)
>> Jul 19 20:41:53 xd kernel: ACPI: UEFI 0x0000000044A5B000 00063A (v01 ACRSYS ACRPRDCT 00000000 1025 00040000)
>> Jul 19 20:41:53 xd kernel: ACPI: UEFI 0x0000000044A5A000 00005C (v01 ACRSYS ACRPRDCT 00000000 1025 00040000)
>> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044B7B000 000985 (v02 ACRSYS ACRPRDCT 00001000 1025 00040000)
>> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044B7A000 0000F8 (v01 ACRSYS ACRPRDCT 00001000 1025 00040000)
>> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044B79000 000835 (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
>> Jul 19 20:41:53 xd kernel: ACPI: FPDT 0x0000000044B78000 000044 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
>> Jul 19 20:41:53 xd kernel: ACPI: PTDT 0x0000000044B76000 000CFE (v00 ACRSYS ACRPRDCT 00000005 1025 00040000)
>> Jul 19 20:41:53 xd kernel: ACPI: BGRT 0x0000000044B77000 000038 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
>> Jul 19 20:41:53 xd kernel: ACPI: Reserving FACP table memory at [mem 0x44bde000-0x44bde113]
>> Jul 19 20:41:53 xd kernel: ACPI: Reserving DSDT table memory at [mem 0x44b81000-0x44bda947]
>> Jul 19 20:41:53 xd kernel: ACPI: Reserving FACS table memory at [mem 0x44aa2000-0x44aa203f]
>> Jul 19 20:41:53 xd kernel: ACPI: Reserving UEFI table memory at [mem 0x44b2e000-0x44b2e235]
>> Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bfa000-0x44bfc55b]
>> Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bf9000-0x44bf9104]
>> Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bf6000-0x44bf8136]
>> Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bf2000-0x44bf52ff]
>> Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bf1000-0x44bf177a]
>> Jul 19 20:41:53 xd kernel: ACPI: Reserving TPM2 table memory at [mem 0x44bf0000-0x44bf004b]
>> Jul 19 20:41:53 xd kernel: ACPI: Reserving MSDM table memory at [mem 0x44bef000-0x44bef054]
>> Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bee000-0x44beed01]
>> Jul 19 20:41:53 xd kernel: ACPI: Reserving NHLT table memory at [mem 0x44bec000-0x44bedb53]
>> Jul 19 20:41:53 xd kernel: ACPI: Reserving LPIT table memory at [mem 0x44beb000-0x44beb0cb]
>> Jul 19 20:41:53 xd kernel: ACPI: Reserving WSMT table memory at [mem 0x44bea000-0x44bea027]
>> Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44be9000-0x44be9b6f]
>> Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44be8000-0x44be8129]
>> Jul 19 20:41:53 xd kernel: ACPI: Reserving DBGP table memory at [mem 0x44be7000-0x44be7033]
>> Jul 19 20:41:53 xd kernel: ACPI: Reserving DBG2 table memory at [mem 0x44be6000-0x44be6053]
>> Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bdf000-0x44be5ba8]
>> Jul 19 20:41:53 xd kernel: ACPI: Reserving HPET table memory at [mem 0x44bdd000-0x44bdd037]
>> Jul 19 20:41:53 xd kernel: ACPI: Reserving APIC table memory at [mem 0x44bdc000-0x44bdc12b]
>> Jul 19 20:41:53 xd kernel: ACPI: Reserving MCFG table memory at [mem 0x44bfd000-0x44bfd03b]
>> Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b80000-0x44b80c77]
>> Jul 19 20:41:53 xd kernel: ACPI: Reserving DMAR table memory at [mem 0x44b7f000-0x44b7f087]
>> Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b7c000-0x44b7e0d5]
>> Jul 19 20:41:53 xd kernel: ACPI: Reserving UEFI table memory at [mem 0x44a5b000-0x44a5b639]
>> Jul 19 20:41:53 xd kernel: ACPI: Reserving UEFI table memory at [mem 0x44a5a000-0x44a5a05b]
>> Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b7b000-0x44b7b984]
>> Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b7a000-0x44b7a0f7]
>> Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b79000-0x44b79834]
>> Jul 19 20:41:53 xd kernel: ACPI: Reserving FPDT table memory at [mem 0x44b78000-0x44b78043]
>> Jul 19 20:41:53 xd kernel: ACPI: Reserving PTDT table memory at [mem 0x44b76000-0x44b76cfd]
>> Jul 19 20:41:53 xd kernel: ACPI: Reserving BGRT table memory at [mem 0x44b77000-0x44b77037]
>> Jul 19 20:41:53 xd kernel: ACPI: Local APIC address 0xfee00000
>> Jul 19 20:41:53 xd kernel: No NUMA configuration found
>> Jul 19 20:41:53 xd kernel: Faking a node at [mem 0x0000000000000000-0x00000004b07fffff]
>> Jul 19 20:41:53 xd kernel: NODE_DATA(0) allocated [mem 0x4b07d6000-0x4b07fffff]
>> Jul 19 20:41:53 xd kernel: Zone ranges:
>> Jul 19 20:41:53 xd kernel: DMA [mem 0x0000000000001000-0x0000000000ffffff]
>> Jul 19 20:41:53 xd kernel: DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
>> Jul 19 20:41:53 xd kernel: Normal [mem 0x0000000100000000-0x00000004b07fffff]
>> Jul 19 20:41:53 xd kernel: Device empty
>> Jul 19 20:41:53 xd kernel: Movable zone start for each node
>> Jul 19 20:41:53 xd kernel: Early memory node ranges
>> Jul 19 20:41:53 xd kernel: node 0: [mem 0x0000000000001000-0x000000000009efff]
>> Jul 19 20:41:53 xd kernel: node 0: [mem 0x0000000000100000-0x000000003fd98fff]
>> Jul 19 20:41:53 xd kernel: node 0: [mem 0x0000000040699000-0x00000000424aefff]
>> Jul 19 20:41:53 xd kernel: node 0: [mem 0x0000000044bff000-0x0000000044bfffff]
>> Jul 19 20:41:53 xd kernel: node 0: [mem 0x0000000100000000-0x00000004b07fffff]
>> Jul 19 20:41:53 xd kernel: Initmem setup node 0 [mem 0x0000000000001000-0x00000004b07fffff]
>> Jul 19 20:41:53 xd kernel: On node 0 totalpages: 4137806
>> Jul 19 20:41:53 xd kernel: DMA zone: 64 pages used for memmap
>> Jul 19 20:41:53 xd kernel: DMA zone: 25 pages reserved
>> Jul 19 20:41:53 xd kernel: DMA zone: 3998 pages, LIFO batch:0
>> Jul 19 20:41:53 xd kernel: DMA32 zone: 4143 pages used for memmap
>> Jul 19 20:41:53 xd kernel: DMA32 zone: 265136 pages, LIFO batch:63
>> Jul 19 20:41:53 xd kernel: Normal zone: 60448 pages used for memmap
>> Jul 19 20:41:53 xd kernel: Normal zone: 3868672 pages, LIFO batch:63
>> Jul 19 20:41:53 xd kernel: On node 0, zone DMA: 1 pages in unavailable ranges
>> Jul 19 20:41:53 xd kernel: On node 0, zone DMA: 97 pages in unavailable ranges
>> Jul 19 20:41:53 xd kernel: On node 0, zone DMA32: 2304 pages in unavailable ranges
>> Jul 19 20:41:53 xd kernel: On node 0, zone DMA32: 10064 pages in unavailable ranges
>> Jul 19 20:41:53 xd kernel: On node 0, zone Normal: 13312 pages in unavailable ranges
>> Jul 19 20:41:53 xd kernel: On node 0, zone Normal: 30720 pages in unavailable ranges
>> Jul 19 20:41:53 xd kernel: Reserving Intel graphics memory at [mem 0x4b800000-0x4f7fffff]
>> Jul 19 20:41:53 xd kernel: ACPI: PM-Timer IO Port: 0x1808
>> Jul 19 20:41:53 xd kernel: ACPI: Local APIC address 0xfee00000
>> Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
>> Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
>> Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
>> Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
>> Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
>> Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
>> Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
>> Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
>> Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
>> Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
>> Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
>> Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
>> Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
>> Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
>> Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
>> Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
>> Jul 19 20:41:53 xd kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
>> Jul 19 20:41:53 xd kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
>> Jul 19 20:41:53 xd kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
>> Jul 19 20:41:53 xd kernel: ACPI: IRQ0 used by override.
>> Jul 19 20:41:53 xd kernel: ACPI: IRQ9 used by override.
>> Jul 19 20:41:53 xd kernel: Using ACPI (MADT) for SMP configuration information
>> Jul 19 20:41:53 xd kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
>> Jul 19 20:41:53 xd kernel: e820: update [mem 0x3bf69000-0x3c05cfff] usable ==> reserved
>> Jul 19 20:41:53 xd kernel: TSC deadline timer available
>> Jul 19 20:41:53 xd kernel: smpboot: Allowing 8 CPUs, 0 hotplug CPUs
>> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
>> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
>> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x3bee4000-0x3bee6fff]
>> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x3bf66000-0x3bf66fff]
>> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x3bf69000-0x3c05cfff]
>> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x3fd99000-0x40698fff]
>> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x424af000-0x4287efff]
>> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x4287f000-0x442fefff]
>> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x442ff000-0x44b2efff]
>> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x44b2f000-0x44bfefff]
>> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x44c00000-0x48ffffff]
>> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x49000000-0x49dfffff]
>> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x49e00000-0x4f7fffff]
>> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x4f800000-0xbfffffff]
>> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xc0000000-0xcfffffff]
>> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xd0000000-0xfe00ffff]
>> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xfe010000-0xfe010fff]
>> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xfed1ffff]
>> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xfed7ffff]
>> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xff4fffff]
>> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xff500000-0xffffffff]
>> Jul 19 20:41:53 xd kernel: [mem 0x4f800000-0xbfffffff] available for PCI devices
>> Jul 19 20:41:53 xd kernel: Booting paravirtualized kernel on bare hardware
>> Jul 19 20:41:53 xd kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
>> Jul 19 20:41:53 xd kernel: setup_percpu: NR_CPUS:8192 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
>> Jul 19 20:41:53 xd kernel: percpu: Embedded 58 pages/cpu s200664 r8192 d28712 u262144
>> Jul 19 20:41:53 xd kernel: pcpu-alloc: s200664 r8192 d28712 u262144 alloc=1*2097152
>> Jul 19 20:41:53 xd kernel: pcpu-alloc: [0] 0 1 2 3 4 5 6 7
>> Jul 19 20:41:53 xd kernel: Built 1 zonelists, mobility grouping on. Total pages: 4073126
>> Jul 19 20:41:53 xd kernel: Policy zone: Normal
>> Jul 19 20:41:53 xd kernel: Kernel command line: BOOT_IMAGE=/vmlinuz-5.10.0-16-amd64 root=UUID=0dc2ba0c-97d5-4786-bc97-4d13279afe0f ro quiet
>> Jul 19 20:41:53 xd kernel: Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
>> Jul 19 20:41:53 xd kernel: Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
>> Jul 19 20:41:53 xd kernel: mem auto-init: stack:off, heap alloc:on, heap free:off
>> Jul 19 20:41:53 xd kernel: Memory: 1014224K/16551224K available (12295K kernel code, 2536K rwdata, 7568K rodata, 2424K init, 3680K bss, 517204K reserved, 0K cma-reserved)
>> Jul 19 20:41:53 xd kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
>> Jul 19 20:41:53 xd kernel: ftrace: allocating 36455 entries in 143 pages
>> Jul 19 20:41:53 xd kernel: ftrace: allocated 143 pages with 5 groups
>> Jul 19 20:41:53 xd kernel: rcu: Hierarchical RCU implementation.
>> Jul 19 20:41:53 xd kernel: rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=8.
>> Jul 19 20:41:53 xd kernel: Rude variant of Tasks RCU enabled.
>> Jul 19 20:41:53 xd kernel: Tracing variant of Tasks RCU enabled.
>> Jul 19 20:41:53 xd kernel: rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
>> Jul 19 20:41:53 xd kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
>> Jul 19 20:41:53 xd kernel: NR_IRQS: 524544, nr_irqs: 2048, preallocated irqs: 16
>> Jul 19 20:41:53 xd kernel: random: crng init done
>> Jul 19 20:41:53 xd kernel: Console: colour dummy device 80x25
>> Jul 19 20:41:53 xd kernel: printk: console [tty0] enabled
>> Jul 19 20:41:53 xd kernel: ACPI: Core revision 20200925
>> Jul 19 20:41:53 xd kernel: hpet: HPET dysfunctional in PC10. Force disabled.
>> Jul 19 20:41:53 xd kernel: APIC: Switch to symmetric I/O mode setup
>> Jul 19 20:41:53 xd kernel: DMAR: Host address width 39
>> Jul 19 20:41:53 xd kernel: DMAR: DRHD base: 0x000000fed90000 flags: 0x0
>> Jul 19 20:41:53 xd kernel: DMAR: dmar0: reg_base_addr fed90000 ver 4:0 cap 1c0000c40660462 ecap 29a00f0505e
>> Jul 19 20:41:53 xd kernel: DMAR: DRHD base: 0x000000fed91000 flags: 0x1
>> Jul 19 20:41:53 xd kernel: DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
>> Jul 19 20:41:53 xd kernel: DMAR: RMRR base: 0x0000004b000000 end: 0x0000004f7fffff
>> Jul 19 20:41:53 xd kernel: DMAR-IR: IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 1
>> Jul 19 20:41:53 xd kernel: DMAR-IR: HPET id 0 under DRHD base 0xfed91000
>> Jul 19 20:41:53 xd kernel: DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
>> Jul 19 20:41:53 xd kernel: DMAR-IR: Enabled IRQ remapping in x2apic mode
>> Jul 19 20:41:53 xd kernel: x2apic enabled
>> Jul 19 20:41:53 xd kernel: Switched APIC routing to cluster x2apic.
>> Jul 19 20:41:53 xd kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x22df1149949, max_idle_ns: 440795312789 ns
>> Jul 19 20:41:53 xd kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 4838.40 BogoMIPS (lpj=9676800)
>> Jul 19 20:41:53 xd kernel: pid_max: default: 32768 minimum: 301
>> Jul 19 20:41:53 xd kernel: LSM: Security Framework initializing
>> Jul 19 20:41:53 xd kernel: Yama: disabled by default; enable with sysctl kernel.yama.*
>> Jul 19 20:41:53 xd kernel: AppArmor: AppArmor initialized
>> Jul 19 20:41:53 xd kernel: TOMOYO Linux initialized
>> Jul 19 20:41:53 xd kernel: Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
>> Jul 19 20:41:53 xd kernel: Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
>> Jul 19 20:41:53 xd kernel: x86/cpu: User Mode Instruction Prevention (UMIP) activated
>> Jul 19 20:41:53 xd kernel: mce: CPU0: Thermal monitoring enabled (TM1)
>> Jul 19 20:41:53 xd kernel: process: using mwait in idle threads
>> Jul 19 20:41:53 xd kernel: Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
>> Jul 19 20:41:53 xd kernel: Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
>> Jul 19 20:41:53 xd kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
>> Jul 19 20:41:53 xd kernel: Spectre V2 : Mitigation: Enhanced IBRS
>> Jul 19 20:41:53 xd kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
>> Jul 19 20:41:53 xd kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
>> Jul 19 20:41:53 xd kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
>> Jul 19 20:41:53 xd kernel: Freeing SMP alternatives memory: 32K
>> Jul 19 20:41:53 xd kernel: smpboot: CPU0: 11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz (family: 0x6, model: 0x8c, stepping: 0x1)
>> Jul 19 20:41:53 xd kernel: Performance Events: PEBS fmt4+-baseline, AnyThread deprecated, Icelake events, 32-deep LBR, full-width counters, Intel PMU driver.
>> Jul 19 20:41:53 xd kernel: ... version: 5
>> Jul 19 20:41:53 xd kernel: ... bit width: 48
>> Jul 19 20:41:53 xd kernel: ... generic registers: 8
>> Jul 19 20:41:53 xd kernel: ... value mask: 0000ffffffffffff
>> Jul 19 20:41:53 xd kernel: ... max period: 00007fffffffffff
>> Jul 19 20:41:53 xd kernel: ... fixed-purpose events: 4
>> Jul 19 20:41:53 xd kernel: ... event mask: 0001000f000000ff
>> Jul 19 20:41:53 xd kernel: rcu: Hierarchical SRCU implementation.
>> Jul 19 20:41:53 xd kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
>> Jul 19 20:41:53 xd kernel: smp: Bringing up secondary CPUs ...
>> Jul 19 20:41:53 xd kernel: x86: Booting SMP configuration:
>> Jul 19 20:41:53 xd kernel: .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7
>> Jul 19 20:41:53 xd kernel: smp: Brought up 1 node, 8 CPUs
>> Jul 19 20:41:53 xd kernel: smpboot: Max logical packages: 1
>> Jul 19 20:41:53 xd kernel: smpboot: Total of 8 processors activated (38707.20 BogoMIPS)
>> Jul 19 20:41:53 xd kernel: node 0 deferred pages initialised in 20ms
>> Jul 19 20:41:53 xd kernel: devtmpfs: initialized
>> Jul 19 20:41:53 xd kernel: x86/mm: Memory block size: 128MB
>> Jul 19 20:41:53 xd kernel: PM: Registering ACPI NVS region [mem 0x442ff000-0x44b2efff] (8585216 bytes)
>> Jul 19 20:41:53 xd kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
>> Jul 19 20:41:53 xd kernel: futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
>> Jul 19 20:41:53 xd kernel: pinctrl core: initialized pinctrl subsystem
>> Jul 19 20:41:53 xd kernel: NET: Registered protocol family 16
>> Jul 19 20:41:53 xd kernel: audit: initializing netlink subsys (disabled)
>> Jul 19 20:41:53 xd kernel: audit: type=2000 audit(1658259710.028:1): state=initialized audit_enabled=0 res=1
>> Jul 19 20:41:53 xd kernel: thermal_sys: Registered thermal governor 'fair_share'
>> Jul 19 20:41:53 xd kernel: thermal_sys: Registered thermal governor 'bang_bang'
>> Jul 19 20:41:53 xd kernel: thermal_sys: Registered thermal governor 'step_wise'
>> Jul 19 20:41:53 xd kernel: thermal_sys: Registered thermal governor 'user_space'
>> Jul 19 20:41:53 xd kernel: thermal_sys: Registered thermal governor 'power_allocator'
>> Jul 19 20:41:53 xd kernel: cpuidle: using governor ladder
>> Jul 19 20:41:53 xd kernel: cpuidle: using governor menu
>> Jul 19 20:41:53 xd kernel: ACPI: bus type PCI registered
>> Jul 19 20:41:53 xd kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
>> Jul 19 20:41:53 xd kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xc0000000-0xcfffffff] (base 0xc0000000)
>> Jul 19 20:41:53 xd kernel: PCI: MMCONFIG at [mem 0xc0000000-0xcfffffff] reserved in E820
>> Jul 19 20:41:53 xd kernel: PCI: Using configuration type 1 for base access
>> Jul 19 20:41:53 xd kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
>> Jul 19 20:41:53 xd kernel: Kprobes globally optimized
>> Jul 19 20:41:53 xd kernel: HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
>> Jul 19 20:41:53 xd kernel: HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
>> Jul 19 20:41:53 xd kernel: ACPI: Added _OSI(Module Device)
>> Jul 19 20:41:53 xd kernel: ACPI: Added _OSI(Processor Device)
>> Jul 19 20:41:53 xd kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
>> Jul 19 20:41:53 xd kernel: ACPI: Added _OSI(Processor Aggregator Device)
>> Jul 19 20:41:53 xd kernel: ACPI: Added _OSI(Linux-Dell-Video)
>> Jul 19 20:41:53 xd kernel: ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
>> Jul 19 20:41:53 xd kernel: ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
>> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS01._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS01._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS02._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS02._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS03._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS03._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS04._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS04._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS05._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS05._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS06._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS06._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS07._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS07._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS08._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS08._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS09._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS09._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS10._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS10._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS01._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS01._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS02._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS02._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS03._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS03._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS04._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS04._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS05._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS05._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS06._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS06._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 19 20:41:53 xd kernel: ACPI: 15 ACPI AML tables successfully acquired and loaded
>> Jul 19 20:41:53 xd kernel: ACPI: Dynamic OEM Table Load:
>> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0xFFFF997306398600 0001C6 (v02 PmRef Cpu0Psd 00003000 INTL 20160422)
>> Jul 19 20:41:53 xd kernel: ACPI: \_SB_.PR00: _OSC native thermal LVT Acked
>> Jul 19 20:41:53 xd kernel: ACPI: Dynamic OEM Table Load:
>> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0xFFFF9971C0F91800 000386 (v02 PmRef Cpu0Cst 00003001 INTL 20160422)
>> Jul 19 20:41:53 xd kernel: ACPI: Dynamic OEM Table Load:
>> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0xFFFF9971C0C36800 0005C3 (v02 PmRef Cpu0Ist 00003000 INTL 20160422)
>> Jul 19 20:41:53 xd kernel: ACPI: Dynamic OEM Table Load:
>> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0xFFFF9971C0F96800 00028B (v02 PmRef Cpu0Hwp 00003000 INTL 20160422)
>> Jul 19 20:41:53 xd kernel: ACPI: Dynamic OEM Table Load:
>> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0xFFFF9971C0F87000 0008E7 (v02 PmRef ApIst 00003000 INTL 20160422)
>> Jul 19 20:41:53 xd kernel: ACPI: Dynamic OEM Table Load:
>> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0xFFFF9971C0C33800 00048A (v02 PmRef ApHwp 00003000 INTL 20160422)
>> Jul 19 20:41:53 xd kernel: ACPI: Dynamic OEM Table Load:
>> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0xFFFF9971C0C31000 0004D4 (v02 PmRef ApPsd 00003000 INTL 20160422)
>> Jul 19 20:41:53 xd kernel: ACPI: Dynamic OEM Table Load:
>> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0xFFFF9971C0C30000 00048A (v02 PmRef ApCst 00003000 INTL 20160422)
>> Jul 19 20:41:53 xd kernel: ACPI: EC: EC started
>> Jul 19 20:41:53 xd kernel: ACPI: EC: interrupt blocked
>> Jul 19 20:41:53 xd kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
>> Jul 19 20:41:53 xd kernel: ACPI: \_SB_.PC00.LPCB.EC0_: Boot DSDT EC used to handle transactions
>> Jul 19 20:41:53 xd kernel: ACPI: Interpreter enabled
>> Jul 19 20:41:53 xd kernel: ACPI: (supports S0 S3 S4 S5)
>> Jul 19 20:41:53 xd kernel: ACPI: Using IOAPIC for interrupt routing
>> Jul 19 20:41:53 xd kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
>> Jul 19 20:41:53 xd kernel: ACPI: Enabled 7 GPEs in block 00 to 7F
>> Jul 19 20:41:53 xd kernel: ACPI: Power Resource [PCRP] (on)
>> Jul 19 20:41:53 xd kernel: ACPI: Power Resource [V0PR] (on)
>> Jul 19 20:41:53 xd kernel: ACPI: Power Resource [V1PR] (on)
>> Jul 19 20:41:53 xd kernel: ACPI: Power Resource [V2PR] (on)
>> Jul 19 20:41:53 xd kernel: ACPI: Power Resource [WRST] (on)
>> Jul 19 20:41:53 xd kernel: ACPI: Power Resource [V0PR] (on)
>> Jul 19 20:41:53 xd kernel: ACPI: Power Resource [V1PR] (on)
>> Jul 19 20:41:53 xd kernel: ACPI: Power Resource [V2PR] (on)
>> Jul 19 20:41:53 xd kernel: ACPI: Power Resource [V3PR] (on)
>> Jul 19 20:41:53 xd kernel: ACPI: Power Resource [FN00] (off)
>> Jul 19 20:41:53 xd kernel: ACPI: Power Resource [FN01] (off)
>> Jul 19 20:41:53 xd kernel: ACPI: Power Resource [FN02] (off)
>> Jul 19 20:41:53 xd kernel: ACPI: Power Resource [FN03] (off)
>> Jul 19 20:41:53 xd kernel: ACPI: Power Resource [FN04] (off)
>> Jul 19 20:41:53 xd kernel: ACPI: Power Resource [PIN] (off)
>> Jul 19 20:41:53 xd kernel: ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-e0])
>> Jul 19 20:41:53 xd kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
>> Jul 19 20:41:53 xd kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR]
>> Jul 19 20:41:53 xd kernel: PCI host bridge to bus 0000:00
>> Jul 19 20:41:53 xd kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
>> Jul 19 20:41:53 xd kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
>> Jul 19 20:41:53 xd kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
>> Jul 19 20:41:53 xd kernel: pci_bus 0000:00: root bus resource [mem 0x4f800000-0xbfffffff window]
>> Jul 19 20:41:53 xd kernel: pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
>> Jul 19 20:41:53 xd kernel: pci_bus 0000:00: root bus resource [bus 00-e0]
>> Jul 19 20:41:53 xd kernel: pci 0000:00:00.0: [8086:9a14] type 00 class 0x060000
>> Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: [8086:9a49] type 00 class 0x030000
>> Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: reg 0x10: [mem 0x6014000000-0x6014ffffff 64bit]
>> Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: reg 0x18: [mem 0x4000000000-0x400fffffff 64bit pref]
>> Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: reg 0x20: [io 0x5000-0x503f]
>> Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: BAR 2: assigned to efifb
>> Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: DMAR: Skip IOMMU disabling for graphics
>> Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: reg 0x344: [mem 0x00000000-0x00ffffff 64bit]
>> Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: VF(n) BAR0 space: [mem 0x00000000-0x06ffffff 64bit] (contains BAR0 for 7 VFs)
>> Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: reg 0x34c: [mem 0x00000000-0x1fffffff 64bit pref]
>> Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: VF(n) BAR2 space: [mem 0x00000000-0xdfffffff 64bit pref] (contains BAR2 for 7 VFs)
>> Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: [8086:9a09] type 01 class 0x060400
>> Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
>> Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: PTM enabled (root), 4ns granularity
>> Jul 19 20:41:53 xd kernel: pci 0000:00:08.0: [8086:9a11] type 00 class 0x088000
>> Jul 19 20:41:53 xd kernel: pci 0000:00:08.0: reg 0x10: [mem 0x601540f000-0x601540ffff 64bit]
>> Jul 19 20:41:53 xd kernel: pci 0000:00:0e.0: [8086:9a0b] type 00 class 0x010400
>> Jul 19 20:41:53 xd kernel: pci 0000:00:0e.0: reg 0x10: [mem 0x6012000000-0x6013ffffff 64bit]
>> Jul 19 20:41:53 xd kernel: pci 0000:00:0e.0: reg 0x18: [mem 0x50000000-0x51ffffff]
>> Jul 19 20:41:53 xd kernel: pci 0000:00:0e.0: reg 0x20: [mem 0x6015300000-0x60153fffff 64bit]
>> Jul 19 20:41:53 xd kernel: pci 0000:00:14.0: [8086:a0ed] type 00 class 0x0c0330
>> Jul 19 20:41:53 xd kernel: pci 0000:00:14.0: reg 0x10: [mem 0x53180000-0x5318ffff 64bit]
>> Jul 19 20:41:53 xd kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
>> Jul 19 20:41:53 xd kernel: pci 0000:00:14.2: [8086:a0ef] type 00 class 0x050000
>> Jul 19 20:41:53 xd kernel: pci 0000:00:14.2: reg 0x10: [mem 0x6015404000-0x6015407fff 64bit]
>> Jul 19 20:41:53 xd kernel: pci 0000:00:14.2: reg 0x18: [mem 0x601540e000-0x601540efff 64bit]
>> Jul 19 20:41:53 xd kernel: pci 0000:00:15.0: [8086:a0e8] type 00 class 0x0c8000
>> Jul 19 20:41:53 xd kernel: pci 0000:00:15.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
>> Jul 19 20:41:53 xd kernel: pci 0000:00:15.3: [8086:a0eb] type 00 class 0x0c8000
>> Jul 19 20:41:53 xd kernel: pci 0000:00:15.3: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
>> Jul 19 20:41:53 xd kernel: pci 0000:00:16.0: [8086:a0e0] type 00 class 0x078000
>> Jul 19 20:41:53 xd kernel: pci 0000:00:16.0: reg 0x10: [mem 0x601540b000-0x601540bfff 64bit]
>> Jul 19 20:41:53 xd kernel: pci 0000:00:16.0: PME# supported from D3hot
>> Jul 19 20:41:53 xd kernel: pci 0000:00:17.0: [8086:09ab] type 00 class 0x088000
>> Jul 19 20:41:53 xd kernel: pci 0000:00:19.0: [8086:a0c5] type 00 class 0x0c8000
>> Jul 19 20:41:53 xd kernel: pci 0000:00:19.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
>> Jul 19 20:41:53 xd kernel: pci 0000:00:19.1: [8086:a0c6] type 00 class 0x0c8000
>> Jul 19 20:41:53 xd kernel: pci 0000:00:19.1: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
>> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: [8086:a0b0] type 01 class 0x060400
>> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
>> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: PTM enabled (root), 4ns granularity
>> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.1: [8086:a0b1] type 01 class 0x060400
>> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.1: PME# supported from D0 D3hot D3cold
>> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.1: PTM enabled (root), 4ns granularity
>> Jul 19 20:41:53 xd kernel: pci 0000:00:1f.0: [8086:a082] type 00 class 0x060100
>> Jul 19 20:41:53 xd kernel: pci 0000:00:1f.3: [8086:a0c8] type 00 class 0x040100
>> Jul 19 20:41:53 xd kernel: pci 0000:00:1f.3: reg 0x10: [mem 0x6015400000-0x6015403fff 64bit]
>> Jul 19 20:41:53 xd kernel: pci 0000:00:1f.3: reg 0x20: [mem 0x6015200000-0x60152fffff 64bit]
>> Jul 19 20:41:53 xd kernel: pci 0000:00:1f.3: PME# supported from D3hot D3cold
>> Jul 19 20:41:53 xd kernel: pci 0000:00:1f.4: [8086:a0a3] type 00 class 0x0c0500
>> Jul 19 20:41:53 xd kernel: pci 0000:00:1f.4: reg 0x10: [mem 0x6015408000-0x60154080ff 64bit]
>> Jul 19 20:41:53 xd kernel: pci 0000:00:1f.4: reg 0x20: [io 0xefa0-0xefbf]
>> Jul 19 20:41:53 xd kernel: pci 0000:00:1f.5: [8086:a0a4] type 00 class 0x0c8000
>> Jul 19 20:41:53 xd kernel: pci 0000:00:1f.5: reg 0x10: [mem 0xfe010000-0xfe010fff]
>> Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: [10de:1f97] type 00 class 0x030200
>> Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: reg 0x10: [mem 0x52000000-0x52ffffff]
>> Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: reg 0x14: [mem 0x6000000000-0x600fffffff 64bit pref]
>> Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: reg 0x1c: [mem 0x6010000000-0x6011ffffff 64bit pref]
>> Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: reg 0x24: [io 0x4000-0x407f]
>> Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
>> Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
>> Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: 63.012 Gb/s available PCIe bandwidth, limited by 16.0 GT/s PCIe x4 link at 0000:00:06.0 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
>> Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: PCI bridge to [bus 01]
>> Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: bridge window [io 0x4000-0x4fff]
>> Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: bridge window [mem 0x52000000-0x52ffffff]
>> Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: bridge window [mem 0x6000000000-0x6011ffffff 64bit pref]
>> Jul 19 20:41:53 xd kernel: pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000
>> Jul 19 20:41:53 xd kernel: pci 0000:02:00.0: reg 0x10: [io 0x3000-0x30ff]
>> Jul 19 20:41:53 xd kernel: pci 0000:02:00.0: reg 0x18: [mem 0x53004000-0x53004fff 64bit]
>> Jul 19 20:41:53 xd kernel: pci 0000:02:00.0: reg 0x20: [mem 0x53000000-0x53003fff 64bit]
>> Jul 19 20:41:53 xd kernel: pci 0000:02:00.0: supports D1 D2
>> Jul 19 20:41:53 xd kernel: pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
>> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: PCI bridge to [bus 02]
>> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: bridge window [io 0x3000-0x3fff]
>> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: bridge window [mem 0x53000000-0x530fffff]
>> Jul 19 20:41:53 xd kernel: pci 0000:03:00.0: [14c3:7961] type 00 class 0x028000
>> Jul 19 20:41:53 xd kernel: pci 0000:03:00.0: reg 0x10: [mem 0x6015000000-0x60150fffff 64bit pref]
>> Jul 19 20:41:53 xd kernel: pci 0000:03:00.0: reg 0x18: [mem 0x6015100000-0x6015103fff 64bit pref]
>> Jul 19 20:41:53 xd kernel: pci 0000:03:00.0: reg 0x20: [mem 0x6015104000-0x6015104fff 64bit pref]
>> Jul 19 20:41:53 xd kernel: pci 0000:03:00.0: supports D1 D2
>> Jul 19 20:41:53 xd kernel: pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
>> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.1: PCI bridge to [bus 03]
>> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.1: bridge window [mem 0x6015000000-0x60151fffff 64bit pref]
>> Jul 19 20:41:53 xd kernel: ACPI: EC: interrupt unblocked
>> Jul 19 20:41:53 xd kernel: ACPI: EC: event unblocked
>> Jul 19 20:41:53 xd kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
>> Jul 19 20:41:53 xd kernel: ACPI: EC: GPE=0x6e
>> Jul 19 20:41:53 xd kernel: ACPI: \_SB_.PC00.LPCB.EC0_: Boot DSDT EC initialization complete
>> Jul 19 20:41:53 xd kernel: ACPI: \_SB_.PC00.LPCB.EC0_: EC: Used to handle transactions and events
>> Jul 19 20:41:53 xd kernel: iommu: Default domain type: Translated
>> Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: vgaarb: setting as boot VGA device
>> Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
>> Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: vgaarb: bridge control possible
>> Jul 19 20:41:53 xd kernel: vgaarb: loaded
>> Jul 19 20:41:53 xd kernel: EDAC MC: Ver: 3.0.0
>> Jul 19 20:41:53 xd kernel: Registered efivars operations
>> Jul 19 20:41:53 xd kernel: NetLabel: Initializing
>> Jul 19 20:41:53 xd kernel: NetLabel: domain hash size = 128
>> Jul 19 20:41:53 xd kernel: NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
>> Jul 19 20:41:53 xd kernel: NetLabel: unlabeled traffic allowed by default
>> Jul 19 20:41:53 xd kernel: PCI: Using ACPI for IRQ routing
>> Jul 19 20:41:53 xd kernel: PCI: pci_cache_line_size set to 64 bytes
>> Jul 19 20:41:53 xd kernel: pci 0000:00:1f.5: can't claim BAR 0 [mem 0xfe010000-0xfe010fff]: no compatible bridge window
>> Jul 19 20:41:53 xd kernel: e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
>> Jul 19 20:41:53 xd kernel: e820: reserve RAM buffer [mem 0x3bee4000-0x3bffffff]
>> Jul 19 20:41:53 xd kernel: e820: reserve RAM buffer [mem 0x3bf66000-0x3bffffff]
>> Jul 19 20:41:53 xd kernel: e820: reserve RAM buffer [mem 0x3bf69000-0x3bffffff]
>> Jul 19 20:41:53 xd kernel: e820: reserve RAM buffer [mem 0x3fd99000-0x3fffffff]
>> Jul 19 20:41:53 xd kernel: e820: reserve RAM buffer [mem 0x424af000-0x43ffffff]
>> Jul 19 20:41:53 xd kernel: e820: reserve RAM buffer [mem 0x44c00000-0x47ffffff]
>> Jul 19 20:41:53 xd kernel: e820: reserve RAM buffer [mem 0x4b0800000-0x4b3ffffff]
>> Jul 19 20:41:53 xd kernel: clocksource: Switched to clocksource tsc-early
>> Jul 19 20:41:53 xd kernel: VFS: Disk quotas dquot_6.6.0
>> Jul 19 20:41:53 xd kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
>> Jul 19 20:41:53 xd kernel: AppArmor: AppArmor Filesystem Enabled
>> Jul 19 20:41:53 xd kernel: pnp: PnP ACPI init
>> Jul 19 20:41:53 xd kernel: system 00:00: [io 0x0680-0x069f] has been reserved
>> Jul 19 20:41:53 xd kernel: system 00:00: [io 0x164e-0x164f] has been reserved
>> Jul 19 20:41:53 xd kernel: system 00:00: [io 0xfd60-0xfd63] has been reserved
>> Jul 19 20:41:53 xd kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
>> Jul 19 20:41:53 xd kernel: pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
>> Jul 19 20:41:53 xd kernel: system 00:02: [io 0x1854-0x1857] has been reserved
>> Jul 19 20:41:53 xd kernel: system 00:02: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
>> Jul 19 20:41:53 xd kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0303 (active)
>> Jul 19 20:41:53 xd kernel: pnp 00:04: disabling [mem 0xc0000000-0xcfffffff] because it overlaps 0000:00:02.0 BAR 9 [mem 0x00000000-0xdfffffff 64bit pref]
>> Jul 19 20:41:53 xd kernel: system 00:04: [mem 0xfedc0000-0xfedc7fff] has been reserved
>> Jul 19 20:41:53 xd kernel: system 00:04: [mem 0xfeda0000-0xfeda0fff] has been reserved
>> Jul 19 20:41:53 xd kernel: system 00:04: [mem 0xfeda1000-0xfeda1fff] has been reserved
>> Jul 19 20:41:53 xd kernel: system 00:04: [mem 0xfed20000-0xfed7ffff] could not be reserved
>> Jul 19 20:41:53 xd kernel: system 00:04: [mem 0xfed90000-0xfed93fff] could not be reserved
>> Jul 19 20:41:53 xd kernel: system 00:04: [mem 0xfed45000-0xfed8ffff] could not be reserved
>> Jul 19 20:41:53 xd kernel: system 00:04: [mem 0xfee00000-0xfeefffff] has been reserved
>> Jul 19 20:41:53 xd kernel: system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
>> Jul 19 20:41:53 xd kernel: system 00:05: [io 0x1800-0x18fe] could not be reserved
>> Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xfe000000-0xfe01ffff] could not be reserved
>> Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xfe04c000-0xfe04ffff] has been reserved
>> Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xfe050000-0xfe0affff] has been reserved
>> Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xfe0d0000-0xfe0fffff] has been reserved
>> Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xfe200000-0xfe7fffff] has been reserved
>> Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xff000000-0xffffffff] could not be reserved
>> Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xfd000000-0xfd68ffff] has been reserved
>> Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xfd6b0000-0xfd6cffff] has been reserved
>> Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xfd6f0000-0xfdffffff] has been reserved
>> Jul 19 20:41:53 xd kernel: system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
>> Jul 19 20:41:53 xd kernel: system 00:06: [io 0x2000-0x20fe] has been reserved
>> Jul 19 20:41:53 xd kernel: system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
>> Jul 19 20:41:53 xd kernel: system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
>> Jul 19 20:41:53 xd kernel: pnp: PnP ACPI: found 8 devices
>> Jul 19 20:41:53 xd kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
>> Jul 19 20:41:53 xd kernel: NET: Registered protocol family 2
>> Jul 19 20:41:53 xd kernel: IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
>> Jul 19 20:41:53 xd kernel: tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
>> Jul 19 20:41:53 xd kernel: TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
>> Jul 19 20:41:53 xd kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
>> Jul 19 20:41:53 xd kernel: TCP: Hash tables configured (established 131072 bind 65536)
>> Jul 19 20:41:53 xd kernel: UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
>> Jul 19 20:41:53 xd kernel: UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
>> Jul 19 20:41:53 xd kernel: NET: Registered protocol family 1
>> Jul 19 20:41:53 xd kernel: NET: Registered protocol family 44
>> Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
>> Jul 19 20:41:53 xd kernel: pci_bus 0000:00: max bus depth: 1 pci_try_num: 2
>> Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: BAR 9: assigned [mem 0x4020000000-0x40ffffffff 64bit pref]
>> Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: BAR 7: assigned [mem 0x4010000000-0x4016ffffff 64bit]
>> Jul 19 20:41:53 xd kernel: pci 0000:00:15.0: BAR 0: assigned [mem 0x4017000000-0x4017000fff 64bit]
>> Jul 19 20:41:53 xd kernel: pci 0000:00:15.3: BAR 0: assigned [mem 0x4017001000-0x4017001fff 64bit]
>> Jul 19 20:41:53 xd kernel: pci 0000:00:19.0: BAR 0: assigned [mem 0x4017002000-0x4017002fff 64bit]
>> Jul 19 20:41:53 xd kernel: pci 0000:00:19.1: BAR 0: assigned [mem 0x4017003000-0x4017003fff 64bit]
>> Jul 19 20:41:53 xd kernel: pci 0000:00:1f.5: BAR 0: assigned [mem 0x4f800000-0x4f800fff]
>> Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: BAR 6: no space for [mem size 0x00080000 pref]
>> Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: BAR 6: failed to assign [mem size 0x00080000 pref]
>> Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: PCI bridge to [bus 01]
>> Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: bridge window [io 0x4000-0x4fff]
>> Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: bridge window [mem 0x52000000-0x52ffffff]
>> Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: bridge window [mem 0x6000000000-0x6011ffffff 64bit pref]
>> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: PCI bridge to [bus 02]
>> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: bridge window [io 0x3000-0x3fff]
>> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: bridge window [mem 0x53000000-0x530fffff]
>> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.1: PCI bridge to [bus 03]
>> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.1: bridge window [mem 0x6015000000-0x60151fffff 64bit pref]
>> Jul 19 20:41:53 xd kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
>> Jul 19 20:41:53 xd kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
>> Jul 19 20:41:53 xd kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
>> Jul 19 20:41:53 xd kernel: pci_bus 0000:00: resource 7 [mem 0x4f800000-0xbfffffff window]
>> Jul 19 20:41:53 xd kernel: pci_bus 0000:00: resource 8 [mem 0x4000000000-0x7fffffffff window]
>> Jul 19 20:41:53 xd kernel: pci_bus 0000:01: resource 0 [io 0x4000-0x4fff]
>> Jul 19 20:41:53 xd kernel: pci_bus 0000:01: resource 1 [mem 0x52000000-0x52ffffff]
>> Jul 19 20:41:53 xd kernel: pci_bus 0000:01: resource 2 [mem 0x6000000000-0x6011ffffff 64bit pref]
>> Jul 19 20:41:53 xd kernel: pci_bus 0000:02: resource 0 [io 0x3000-0x3fff]
>> Jul 19 20:41:53 xd kernel: pci_bus 0000:02: resource 1 [mem 0x53000000-0x530fffff]
>> Jul 19 20:41:53 xd kernel: pci_bus 0000:03: resource 2 [mem 0x6015000000-0x60151fffff 64bit pref]
>> Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
>> Jul 19 20:41:53 xd kernel: PCI: CLS 64 bytes, default 64
>> Jul 19 20:41:53 xd kernel: Trying to unpack rootfs image as initramfs...
>> Jul 19 20:41:53 xd kernel: Freeing initrd memory: 43668K
>> Jul 19 20:41:53 xd kernel: DMAR: No ATSR found
>> Jul 19 20:41:53 xd kernel: DMAR: dmar0: Using Queued invalidation
>> Jul 19 20:41:53 xd kernel: DMAR: dmar1: Using Queued invalidation
>> Jul 19 20:41:53 xd kernel: pci 0000:00:00.0: Adding to iommu group 0
>> Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: Adding to iommu group 1
>> Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: Adding to iommu group 2
>> Jul 19 20:41:53 xd kernel: pci 0000:00:08.0: Adding to iommu group 3
>> Jul 19 20:41:53 xd kernel: pci 0000:00:0e.0: Adding to iommu group 4
>> Jul 19 20:41:53 xd kernel: pci 0000:00:14.0: Adding to iommu group 5
>> Jul 19 20:41:53 xd kernel: pci 0000:00:14.2: Adding to iommu group 5
>> Jul 19 20:41:53 xd kernel: pci 0000:00:15.0: Adding to iommu group 6
>> Jul 19 20:41:53 xd kernel: pci 0000:00:15.3: Adding to iommu group 6
>> Jul 19 20:41:53 xd kernel: pci 0000:00:16.0: Adding to iommu group 7
>> Jul 19 20:41:53 xd kernel: pci 0000:00:17.0: Adding to iommu group 8
>> Jul 19 20:41:53 xd kernel: pci 0000:00:19.0: Adding to iommu group 9
>> Jul 19 20:41:53 xd kernel: pci 0000:00:19.1: Adding to iommu group 9
>> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: Adding to iommu group 10
>> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.1: Adding to iommu group 11
>> Jul 19 20:41:53 xd kernel: pci 0000:00:1f.0: Adding to iommu group 12
>> Jul 19 20:41:53 xd kernel: pci 0000:00:1f.3: Adding to iommu group 12
>> Jul 19 20:41:53 xd kernel: pci 0000:00:1f.4: Adding to iommu group 12
>> Jul 19 20:41:53 xd kernel: pci 0000:00:1f.5: Adding to iommu group 12
>> Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: Adding to iommu group 13
>> Jul 19 20:41:53 xd kernel: pci 0000:02:00.0: Adding to iommu group 14
>> Jul 19 20:41:53 xd kernel: pci 0000:03:00.0: Adding to iommu group 15
>> Jul 19 20:41:53 xd kernel: DMAR: Intel(R) Virtualization Technology for Directed I/O
>> Jul 19 20:41:53 xd kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
>> Jul 19 20:41:53 xd kernel: software IO TLB: mapped [mem 0x0000000037663000-0x000000003b663000] (64MB)
>> Jul 19 20:41:53 xd kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x22df1149949, max_idle_ns: 440795312789 ns
>> Jul 19 20:41:53 xd kernel: clocksource: Switched to clocksource tsc
>> Jul 19 20:41:53 xd kernel: Initialise system trusted keyrings
>> Jul 19 20:41:53 xd kernel: Key type blacklist registered
>> Jul 19 20:41:53 xd kernel: workingset: timestamp_bits=36 max_order=22 bucket_order=0
>> Jul 19 20:41:53 xd kernel: zbud: loaded
>> Jul 19 20:41:53 xd kernel: integrity: Platform Keyring initialized
>> Jul 19 20:41:53 xd kernel: Key type asymmetric registered
>> Jul 19 20:41:53 xd kernel: Asymmetric key parser 'x509' registered
>> Jul 19 20:41:53 xd kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
>> Jul 19 20:41:53 xd kernel: io scheduler mq-deadline registered
>> Jul 19 20:41:53 xd kernel: pcieport 0000:00:06.0: PME: Signaling with IRQ 122
>> Jul 19 20:41:53 xd kernel: pcieport 0000:00:06.0: AER: enabled with IRQ 122
>> Jul 19 20:41:53 xd kernel: pcieport 0000:00:06.0: DPC: enabled with IRQ 122
>> Jul 19 20:41:53 xd kernel: pcieport 0000:00:06.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
>> Jul 19 20:41:53 xd kernel: pcieport 0000:00:1d.0: PME: Signaling with IRQ 123
>> Jul 19 20:41:53 xd kernel: pcieport 0000:00:1d.0: AER: enabled with IRQ 123
>> Jul 19 20:41:53 xd kernel: pcieport 0000:00:1d.0: DPC: enabled with IRQ 123
>> Jul 19 20:41:53 xd kernel: pcieport 0000:00:1d.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
>> Jul 19 20:41:53 xd kernel: pcieport 0000:00:1d.1: PME: Signaling with IRQ 124
>> Jul 19 20:41:53 xd kernel: pcieport 0000:00:1d.1: AER: enabled with IRQ 124
>> Jul 19 20:41:53 xd kernel: pcieport 0000:00:1d.1: DPC: enabled with IRQ 124
>> Jul 19 20:41:53 xd kernel: pcieport 0000:00:1d.1: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
>> Jul 19 20:41:53 xd kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
>> Jul 19 20:41:53 xd kernel: efifb: probing for efifb
>> Jul 19 20:41:53 xd kernel: efifb: framebuffer at 0x4000000000, using 8128k, total 8128k
>> Jul 19 20:41:53 xd kernel: efifb: mode is 1920x1080x32, linelength=7680, pages=1
>> Jul 19 20:41:53 xd kernel: efifb: scrolling: redraw
>> Jul 19 20:41:53 xd kernel: efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
>> Jul 19 20:41:53 xd kernel: Console: switching to colour frame buffer device 240x67
>> Jul 19 20:41:53 xd kernel: fb0: EFI VGA frame buffer device
>> Jul 19 20:41:53 xd kernel: intel_idle: MWAIT substates: 0x11121020
>> Jul 19 20:41:53 xd kernel: Monitor-Mwait will be used to enter C-1 state
>> Jul 19 20:41:53 xd kernel: Monitor-Mwait will be used to enter C-2 state
>> Jul 19 20:41:53 xd kernel: Monitor-Mwait will be used to enter C-3 state
>> Jul 19 20:41:53 xd kernel: ACPI: \_SB_.PR00: Found 3 idle states
>> Jul 19 20:41:53 xd kernel: intel_idle: v0.5.1 model 0x8C
>> Jul 19 20:41:53 xd kernel: intel_idle: Local APIC timer is reliable in all C-states
>> Jul 19 20:41:53 xd kernel: thermal LNXTHERM:00: registered as thermal_zone0
>> Jul 19 20:41:53 xd kernel: ACPI: Thermal Zone [TZ00] (28 C)
>> Jul 19 20:41:53 xd kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
>> Jul 19 20:41:53 xd kernel: hpet_acpi_add: no address or irqs in _CRS
>> Jul 19 20:41:53 xd kernel: Linux agpgart interface v0.103
>> Jul 19 20:41:53 xd kernel: AMD-Vi: AMD IOMMUv2 functionality not available on this system - This is not a bug.
>> Jul 19 20:41:53 xd kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
>> Jul 19 20:41:53 xd kernel: i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
>> Jul 19 20:41:53 xd kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
>> Jul 19 20:41:53 xd kernel: mousedev: PS/2 mouse device common for all mice
>> Jul 19 20:41:53 xd kernel: rtc_cmos 00:01: RTC can wake from S4
>> Jul 19 20:41:53 xd kernel: rtc_cmos 00:01: registered as rtc0
>> Jul 19 20:41:53 xd kernel: rtc_cmos 00:01: setting system clock to 2022-07-19T19:41:51 UTC (1658259711)
>> Jul 19 20:41:53 xd kernel: rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram
>> Jul 19 20:41:53 xd kernel: intel_pstate: Intel P-state driver initializing
>> Jul 19 20:41:53 xd kernel: intel_pstate: HWP enabled
>> Jul 19 20:41:53 xd kernel: ledtrig-cpu: registered to indicate activity on CPUs
>> Jul 19 20:41:53 xd kernel: NET: Registered protocol family 10
>> Jul 19 20:41:53 xd kernel: Segment Routing with IPv6
>> Jul 19 20:41:53 xd kernel: mip6: Mobile IPv6
>> Jul 19 20:41:53 xd kernel: NET: Registered protocol family 17
>> Jul 19 20:41:53 xd kernel: mpls_gso: MPLS GSO support
>> Jul 19 20:41:53 xd kernel: microcode: sig=0x806c1, pf=0x80, revision=0x8a
>> Jul 19 20:41:53 xd kernel: microcode: Microcode Update Driver: v2.2.
>> Jul 19 20:41:53 xd kernel: resctrl: L2 allocation detected
>> Jul 19 20:41:53 xd kernel: resctrl: L2DATA allocation detected
>> Jul 19 20:41:53 xd kernel: resctrl: L2CODE allocation detected
>> Jul 19 20:41:53 xd kernel: IPI shorthand broadcast: enabled
>> Jul 19 20:41:53 xd kernel: sched_clock: Marking stable (804088381, 6362109)->(820685197, -10234707)
>> Jul 19 20:41:53 xd kernel: registered taskstats version 1
>> Jul 19 20:41:53 xd kernel: Loading compiled-in X.509 certificates
>> Jul 19 20:41:53 xd kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
>> Jul 19 20:41:53 xd kernel: Loaded X.509 cert 'Debian Secure Boot CA: 6ccece7e4c6c0d1f6149f3dd27dfcc5cbb419ea1'
>> Jul 19 20:41:53 xd kernel: Loaded X.509 cert 'Debian Secure Boot Signer 2021 - linux: 4b6ef5abca669825178e052c84667ccbc0531f8c'
>> Jul 19 20:41:53 xd kernel: zswap: loaded using pool lzo/zbud
>> Jul 19 20:41:53 xd kernel: Key type ._fscrypt registered
>> Jul 19 20:41:53 xd kernel: Key type .fscrypt registered
>> Jul 19 20:41:53 xd kernel: Key type fscrypt-provisioning registered
>> Jul 19 20:41:53 xd kernel: AppArmor: AppArmor sha1 policy hashing enabled
>> Jul 19 20:41:53 xd kernel: Freeing unused kernel image (initmem) memory: 2424K
>> Jul 19 20:41:53 xd kernel: Write protecting the kernel read-only data: 22528k
>> Jul 19 20:41:53 xd kernel: Freeing unused kernel image (text/rodata gap) memory: 2040K
>> Jul 19 20:41:53 xd kernel: Freeing unused kernel image (rodata/data gap) memory: 624K
>> Jul 19 20:41:53 xd kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
>> Jul 19 20:41:53 xd kernel: Run /init as init process
>> Jul 19 20:41:53 xd kernel: with arguments:
>> Jul 19 20:41:53 xd kernel: /init
>> Jul 19 20:41:53 xd kernel: with environment:
>> Jul 19 20:41:53 xd kernel: HOME=/
>> Jul 19 20:41:53 xd kernel: TERM=linux
>> Jul 19 20:41:53 xd kernel: BOOT_IMAGE=/vmlinuz-5.10.0-16-amd64
>> Jul 19 20:41:53 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
>> Jul 19 20:41:53 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
>> Jul 19 20:41:53 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
>> Jul 19 20:41:53 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
>> Jul 19 20:41:53 xd kernel: acpi PNP0C14:03: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
>> Jul 19 20:41:53 xd kernel: acpi PNP0C14:04: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
>> Jul 19 20:41:53 xd kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:21/PNP0C0D:00/input/input1
>> Jul 19 20:41:53 xd kernel: ACPI: Lid Switch [LID0]
>> Jul 19 20:41:53 xd kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2
>> Jul 19 20:41:53 xd kernel: ACPI: Sleep Button [SLPB]
>> Jul 19 20:41:53 xd kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input3
>> Jul 19 20:41:53 xd kernel: battery: ACPI: Battery Slot [BAT1] (battery present)
>> Jul 19 20:41:53 xd kernel: vmd 0000:00:0e.0: PCI host bridge to bus 10000:e0
>> Jul 19 20:41:53 xd kernel: pci_bus 10000:e0: root bus resource [bus e0-ff]
>> Jul 19 20:41:53 xd kernel: pci_bus 10000:e0: root bus resource [mem 0x50000000-0x51ffffff]
>> Jul 19 20:41:53 xd kernel: pci_bus 10000:e0: root bus resource [mem 0x6015302000-0x60153fffff 64bit]
>> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: [8086:a0d3] type 00 class 0x010601
>> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: reg 0x10: [mem 0x00000000-0x00001fff]
>> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: reg 0x14: [mem 0x00000000-0x000000ff]
>> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: reg 0x18: [io 0x0000-0x0007]
>> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: reg 0x1c: [io 0x0000-0x0003]
>> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: reg 0x20: [io 0x0000-0x001f]
>> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: reg 0x24: [mem 0x50000000-0x500007ff]
>> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: PME# supported from D3hot
>> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: Adding to iommu group 4
>> Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.0: [8086:09ab] type 00 class 0x088000
>> Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.0: Adding to iommu group 4
>> Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: [8086:a0bc] type 01 class 0x060400
>> Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: PME# supported from D0 D3hot D3cold
>> Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: PTM enabled (root), 4ns granularity
>> Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: Adding to iommu group 4
>> Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: Primary bus is hard wired to 0
>> Jul 19 20:41:53 xd kernel: pci 10000:e1:00.0: [2646:500c] type 00 class 0x010802
>> Jul 19 20:41:53 xd kernel: pci 10000:e1:00.0: reg 0x10: [mem 0x50100000-0x50103fff 64bit]
>> Jul 19 20:41:53 xd kernel: pci 10000:e1:00.0: Adding to iommu group 4
>> Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: PCI bridge to [bus e1]
>> Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: bridge window [io 0x0000-0x0fff]
>> Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: bridge window [mem 0x50100000-0x501fffff]
>> Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: Primary bus is hard wired to 0
>> Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: BAR 14: assigned [mem 0x50000000-0x500fffff]
>> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 0: assigned [mem 0x50100000-0x50101fff]
>> Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: BAR 13: no space for [io size 0x1000]
>> Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: BAR 13: failed to assign [io size 0x1000]
>> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 5: assigned [mem 0x50102000-0x501027ff]
>> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 1: assigned [mem 0x50102800-0x501028ff]
>> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 4: no space for [io size 0x0020]
>> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 4: failed to assign [io size 0x0020]
>> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 2: no space for [io size 0x0008]
>> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 2: failed to assign [io size 0x0008]
>> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 3: no space for [io size 0x0004]
>> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 3: failed to assign [io size 0x0004]
>> Jul 19 20:41:53 xd kernel: pci 10000:e1:00.0: BAR 0: assigned [mem 0x50000000-0x50003fff 64bit]
>> Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: PCI bridge to [bus e1]
>> Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: bridge window [mem 0x50000000-0x500fffff]
>> Jul 19 20:41:53 xd kernel: pcieport 10000:e0:1c.4: can't derive routing for PCI INT A
>> Jul 19 20:41:53 xd kernel: pcieport 10000:e0:1c.4: PCI INT A: no GSI
>> Jul 19 20:41:53 xd kernel: pcieport 10000:e0:1c.4: PME: Signaling with IRQ 144
>> Jul 19 20:41:53 xd kernel: pcieport 10000:e0:1c.4: AER: enabled with IRQ 144
>> Jul 19 20:41:53 xd kernel: pcieport 10000:e0:1c.4: DPC: enabled with IRQ 144
>> Jul 19 20:41:53 xd kernel: pcieport 10000:e0:1c.4: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
>> Jul 19 20:41:53 xd kernel: vmd 0000:00:0e.0: Bound to PCI domain 10000
>> Jul 19 20:41:53 xd kernel: i801_smbus 0000:00:1f.4: SPD Write Disable is set
>> Jul 19 20:41:53 xd kernel: i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
>> Jul 19 20:41:53 xd kernel: i2c i2c-0: 2/2 memory slots populated (from DMI)
>> Jul 19 20:41:53 xd kernel: i2c i2c-0: Successfully instantiated SPD at 0x50
>> Jul 19 20:41:53 xd kernel: hid: raw HID events driver (C) Jiri Kosina
>> Jul 19 20:41:53 xd kernel: ACPI: Power Button [PWRB]
>> Jul 19 20:41:53 xd kernel: ACPI: bus type USB registered
>> Jul 19 20:41:53 xd kernel: usbcore: registered new interface driver usbfs
>> Jul 19 20:41:53 xd kernel: usbcore: registered new interface driver hub
>> Jul 19 20:41:53 xd kernel: usbcore: registered new device driver usb
>> Jul 19 20:41:53 xd kernel: SCSI subsystem initialized
>> Jul 19 20:41:53 xd kernel: intel-lpss 0000:00:15.0: enabling device (0004 -> 0006)
>> Jul 19 20:41:53 xd kernel: idma64 idma64.0: Found Intel integrated DMA 64-bit
>> Jul 19 20:41:53 xd kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
>> Jul 19 20:41:53 xd kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
>> Jul 19 20:41:53 xd kernel: xhci_hcd 0000:00:14.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000000009810
>> Jul 19 20:41:53 xd kernel: xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
>> Jul 19 20:41:53 xd kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
>> Jul 19 20:41:53 xd kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
>> Jul 19 20:41:53 xd kernel: usb usb1: Product: xHCI Host Controller
>> Jul 19 20:41:53 xd kernel: usb usb1: Manufacturer: Linux 5.10.0-16-amd64 xhci-hcd
>> Jul 19 20:41:53 xd kernel: usb usb1: SerialNumber: 0000:00:14.0
>> Jul 19 20:41:53 xd kernel: hub 1-0:1.0: USB hub found
>> Jul 19 20:41:53 xd kernel: hub 1-0:1.0: 12 ports detected
>> Jul 19 20:41:53 xd kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
>> Jul 19 20:41:53 xd kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
>> Jul 19 20:41:53 xd kernel: xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
>> Jul 19 20:41:53 xd kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
>> Jul 19 20:41:53 xd kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
>> Jul 19 20:41:53 xd kernel: usb usb2: Product: xHCI Host Controller
>> Jul 19 20:41:53 xd kernel: usb usb2: Manufacturer: Linux 5.10.0-16-amd64 xhci-hcd
>> Jul 19 20:41:53 xd kernel: usb usb2: SerialNumber: 0000:00:14.0
>> Jul 19 20:41:53 xd kernel: hub 2-0:1.0: USB hub found
>> Jul 19 20:41:53 xd kernel: hub 2-0:1.0: 4 ports detected
>> Jul 19 20:41:53 xd kernel: nvme nvme0: pci function 10000:e1:00.0
>> Jul 19 20:41:53 xd kernel: pcieport 10000:e0:1c.4: can't derive routing for PCI INT A
>> Jul 19 20:41:53 xd kernel: nvme 10000:e1:00.0: PCI INT A: no GSI
>> Jul 19 20:41:53 xd kernel: libata version 3.00 loaded.
>> Jul 19 20:41:53 xd kernel: nvme nvme0: missing or invalid SUBNQN field.
>> Jul 19 20:41:53 xd kernel: nvme nvme0: Shutdown timeout set to 10 seconds
>> Jul 19 20:41:53 xd kernel: r8169 0000:02:00.0 eth0: RTL8168h/8111h, 08:8f:c3:4f:86:c5, XID 541, IRQ 147
>> Jul 19 20:41:53 xd kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
>> Jul 19 20:41:53 xd kernel: nvme nvme0: 8/0/0 default/read/poll queues
>> Jul 19 20:41:53 xd kernel: nvme0n1: p1 p2 p3 p4 p5
>> Jul 19 20:41:53 xd kernel: intel-lpss 0000:00:15.3: enabling device (0004 -> 0006)
>> Jul 19 20:41:53 xd kernel: idma64 idma64.1: Found Intel integrated DMA 64-bit
>> Jul 19 20:41:53 xd kernel: i2c_hid i2c-ELAN0515:01: supply vdd not found, using dummy regulator
>> Jul 19 20:41:53 xd kernel: i2c_hid i2c-ELAN0515:01: supply vddl not found, using dummy regulator
>> Jul 19 20:41:53 xd kernel: intel-lpss 0000:00:19.0: enabling device (0004 -> 0006)
>> Jul 19 20:41:53 xd kernel: idma64 idma64.2: Found Intel integrated DMA 64-bit
>> Jul 19 20:41:53 xd kernel: intel-lpss 0000:00:19.1: enabling device (0004 -> 0006)
>> Jul 19 20:41:53 xd kernel: idma64 idma64.3: Found Intel integrated DMA 64-bit
>> Jul 19 20:41:53 xd kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
>> Jul 19 20:41:53 xd kernel: input: ELAN0515:01 04F3:3142 Mouse as /devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input4
>> Jul 19 20:41:53 xd kernel: input: ELAN0515:01 04F3:3142 Touchpad as /devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input6
>> Jul 19 20:41:53 xd kernel: hid-generic 0018:04F3:3142.0001: input,hidraw0: I2C HID v1.00 Mouse [ELAN0515:01 04F3:3142] on i2c-ELAN0515:01
>> Jul 19 20:41:53 xd kernel: ahci 10000:e0:17.0: version 3.0
>> Jul 19 20:41:53 xd kernel: ahci 10000:e0:17.0: can't derive routing for PCI INT A
>> Jul 19 20:41:53 xd kernel: ahci 10000:e0:17.0: PCI INT A: no GSI
>> Jul 19 20:41:53 xd kernel: ahci 10000:e0:17.0: AHCI 0001.0301 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
>> Jul 19 20:41:53 xd kernel: ahci 10000:e0:17.0: flags: 64bit ncq sntf pm clo only pio slum part deso sadm sds
>> Jul 19 20:41:53 xd kernel: scsi host0: ahci
>> Jul 19 20:41:53 xd kernel: scsi host1: ahci
>> Jul 19 20:41:53 xd kernel: ata1: SATA max UDMA/133 abar m2048@0x50102000 port 0x50102100 irq 157
>> Jul 19 20:41:53 xd kernel: ata2: SATA max UDMA/133 abar m2048@0x50102000 port 0x50102180 irq 157
>> Jul 19 20:41:53 xd kernel: ACPI Warning: \_SB.PC00.GFX0._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20200925/nsarguments-61)
>> Jul 19 20:41:53 xd kernel: ACPI Warning: \_SB.PC00.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20200925/nsarguments-61)
>> Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: optimus capabilities: enabled, status dynamic power, hda bios codec supported
>> Jul 19 20:41:53 xd kernel: VGA switcheroo: detected Optimus DSM method \_SB_.PC00.PEG0.PEGP handle
>> Jul 19 20:41:53 xd kernel: nouveau: detected PR support, will not use DSM
>> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: enabling device (0006 -> 0007)
>> Jul 19 20:41:53 xd kernel: checking generic (4000000000 7f0000) vs hw (52000000 1000000)
>> Jul 19 20:41:53 xd kernel: checking generic (4000000000 7f0000) vs hw (6000000000 10000000)
>> Jul 19 20:41:53 xd kernel: checking generic (4000000000 7f0000) vs hw (6010000000 2000000)
>> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: NVIDIA TU117 (167000a1)
>> Jul 19 20:41:53 xd kernel: i915 0000:00:02.0: [drm] VT-d active for gfx access
>> Jul 19 20:41:53 xd kernel: checking generic (4000000000 7f0000) vs hw (6014000000 1000000)
>> Jul 19 20:41:53 xd kernel: checking generic (4000000000 7f0000) vs hw (4000000000 10000000)
>> Jul 19 20:41:53 xd kernel: fb0: switching to inteldrmfb from EFI VGA
>> Jul 19 20:41:53 xd kernel: Console: switching to colour dummy device 80x25
>> Jul 19 20:41:53 xd kernel: i915 0000:00:02.0: vgaarb: deactivate vga console
>> Jul 19 20:41:53 xd kernel: i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
>> Jul 19 20:41:53 xd kernel: i915 0000:00:02.0: firmware: failed to load i915/tgl_dmc_ver2_08.bin (-2)
>> Jul 19 20:41:53 xd kernel: firmware_class: See https://wiki.debian.org/Firmware for information about missing firmware
>> Jul 19 20:41:53 xd kernel: i915 0000:00:02.0: Direct firmware load for i915/tgl_dmc_ver2_08.bin failed with error -2
>> Jul 19 20:41:53 xd kernel: i915 0000:00:02.0: [drm] Failed to load DMC firmware i915/tgl_dmc_ver2_08.bin. Disabling runtime power management.
>> Jul 19 20:41:53 xd kernel: i915 0000:00:02.0: [drm] DMC firmware homepage: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/i915
>> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: bios: version 90.17.74.00.2f
>> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: firmware: failed to load nvidia/tu117/nvdec/scrubber.bin (-2)
>> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: firmware: failed to load nvidia/tu117/acr/bl.bin (-2)
>> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: firmware: failed to load nvidia/tu117/acr/bl.bin (-2)
>> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: firmware: failed to load nvidia/tu117/acr/unload_bl.bin (-2)
>> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: pmu: firmware unavailable
>> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: gr: firmware unavailable
>> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: sec2: firmware unavailable
>> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: fb: 2048 MiB GDDR5
>> Jul 19 20:41:53 xd kernel: [TTM] Zone kernel: Available graphics memory: 8082824 KiB
>> Jul 19 20:41:53 xd kernel: [TTM] Zone dma32: Available graphics memory: 2097152 KiB
>> Jul 19 20:41:53 xd kernel: [TTM] Initializing pool allocator
>> Jul 19 20:41:53 xd kernel: [TTM] Initializing DMA pool allocator
>> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: DRM: VRAM: 2048 MiB
>> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: DRM: GART: 536870912 MiB
>> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: DRM: BIT table 'A' not found
>> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: DRM: BIT table 'L' not found
>> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: DRM: Pointer to TMDS table not found
>> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: DRM: DCB version 4.1
>> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: DRM: failed to create kernel channel, -22
>> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: DRM: MM: using COPY for buffer copies
>> Jul 19 20:41:53 xd kernel: usb 1-5: new low-speed USB device number 2 using xhci_hcd
>> Jul 19 20:41:53 xd kernel: [drm] Initialized nouveau 1.3.1 20120801 for 0000:01:00.0 on minor 1
>> Jul 19 20:41:53 xd kernel: usb 1-5: New USB device found, idVendor=046d, idProduct=c077, bcdDevice=72.00
>> Jul 19 20:41:53 xd kernel: usb 1-5: New USB device strings: Mfr=1, Product=2, SerialNumber=0
>> Jul 19 20:41:53 xd kernel: usb 1-5: Product: USB Optical Mouse
>> Jul 19 20:41:53 xd kernel: usb 1-5: Manufacturer: Logitech
>> Jul 19 20:41:53 xd kernel: ata2: SATA link down (SStatus 0 SControl 300)
>> Jul 19 20:41:53 xd kernel: ata1: SATA link down (SStatus 0 SControl 300)
>> Jul 19 20:41:53 xd kernel: input: Logitech USB Optical Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.0/0003:046D:C077.0002/input/input7
>> Jul 19 20:41:53 xd kernel: hid-generic 0003:046D:C077.0002: input,hidraw1: USB HID v1.11 Mouse [Logitech USB Optical Mouse] on usb-0000:00:14.0-5/input0
>> Jul 19 20:41:53 xd kernel: usbcore: registered new interface driver usbhid
>> Jul 19 20:41:53 xd kernel: usbhid: USB HID core driver
>> Jul 19 20:41:53 xd kernel: usb 1-7: new full-speed USB device number 3 using xhci_hcd
>> Jul 19 20:41:53 xd kernel: usb 1-7: New USB device found, idVendor=04f3, idProduct=0c4f, bcdDevice= 1.61
>> Jul 19 20:41:53 xd kernel: usb 1-7: New USB device strings: Mfr=1, Product=2, SerialNumber=0
>> Jul 19 20:41:53 xd kernel: usb 1-7: Product: ELAN:Fingerprint
>> Jul 19 20:41:53 xd kernel: usb 1-7: Manufacturer: ELAN
>> Jul 19 20:41:53 xd kernel: usb 1-8: new high-speed USB device number 4 using xhci_hcd
>> Jul 19 20:41:53 xd kernel: usb 1-8: New USB device found, idVendor=0408, idProduct=a061, bcdDevice= 0.04
>> Jul 19 20:41:53 xd kernel: usb 1-8: New USB device strings: Mfr=1, Product=2, SerialNumber=0
>> Jul 19 20:41:53 xd kernel: usb 1-8: Product: HD User Facing
>> Jul 19 20:41:53 xd kernel: usb 1-8: Manufacturer: SunplusIT Inc
>> Jul 19 20:41:53 xd kernel: usb 1-10: new high-speed USB device number 5 using xhci_hcd
>> Jul 19 20:41:53 xd kernel: usb 1-10: New USB device found, idVendor=04ca, idProduct=3802, bcdDevice= 1.00
>> Jul 19 20:41:53 xd kernel: usb 1-10: New USB device strings: Mfr=5, Product=6, SerialNumber=7
>> Jul 19 20:41:53 xd kernel: usb 1-10: Product: Wireless_Device
>> Jul 19 20:41:53 xd kernel: usb 1-10: Manufacturer: MediaTek Inc.
>> Jul 19 20:41:53 xd kernel: usb 1-10: SerialNumber: 000000000
>> Jul 19 20:41:53 xd kernel: [drm] Initialized i915 1.6.0 20200917 for 0000:00:02.0 on minor 0
>> Jul 19 20:41:53 xd kernel: [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
>> Jul 19 20:41:53 xd kernel: ACPI: Video Device [PEGP] (multi-head: yes rom: no post: no)
>> Jul 19 20:41:53 xd kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/LNXVIDEO:00/input/input8
>> Jul 19 20:41:53 xd kernel: ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
>> Jul 19 20:41:53 xd kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input9
>> Jul 19 20:41:53 xd kernel: vga_switcheroo: enabled
>> Jul 19 20:41:53 xd kernel: fbcon: i915drmfb (fb0) is primary device
>> Jul 19 20:41:53 xd kernel: Console: switching to colour frame buffer device 240x67
>> Jul 19 20:41:53 xd kernel: i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
>> Jul 19 20:41:53 xd kernel: PM: Image not found (code -22)
>> Jul 19 20:41:53 xd kernel: EXT4-fs (nvme0n1p3): mounting ext3 file system using the ext4 subsystem
>> Jul 19 20:41:53 xd kernel: EXT4-fs (nvme0n1p3): mounted filesystem with ordered data mode. Opts: (null)
>> Jul 19 20:41:53 xd kernel: Not activating Mandatory Access Control as /sbin/tomoyo-init does not exist.
>> Jul 19 20:41:53 xd systemd[1]: Inserted module 'autofs4'
>> Jul 19 20:41:53 xd systemd[1]: systemd 247.3-7 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=unified)
>> Jul 19 20:41:53 xd systemd[1]: Detected architecture x86-64.
>> Jul 19 20:41:53 xd systemd[1]: Set hostname to <xd>.
>> Jul 19 20:41:53 xd systemd[1]: /lib/systemd/system/plymouth-start.service:16: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed.
>> Jul 19 20:41:53 xd systemd[1]: Queued start job for default target Graphical Interface.
>> Jul 19 20:41:53 xd systemd[1]: Created slice system-getty.slice.
>> Jul 19 20:41:53 xd systemd[1]: Created slice system-modprobe.slice.
>> Jul 19 20:41:53 xd systemd[1]: Created slice system-systemd\x2dfsck.slice.
>> Jul 19 20:41:53 xd systemd[1]: Created slice User and Session Slice.
>> Jul 19 20:41:53 xd systemd[1]: Started Forward Password Requests to Wall Directory Watch.
>> Jul 19 20:41:53 xd systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
>> Jul 19 20:41:53 xd systemd[1]: Reached target User and Group Name Lookups.
>> Jul 19 20:41:53 xd systemd[1]: Reached target Remote File Systems.
>> Jul 19 20:41:53 xd systemd[1]: Reached target Slices.
>> Jul 19 20:41:53 xd systemd[1]: Listening on Device-mapper event daemon FIFOs.
>> Jul 19 20:41:53 xd systemd[1]: Listening on LVM2 poll daemon socket.
>> Jul 19 20:41:53 xd systemd[1]: Listening on Syslog Socket.
>> Jul 19 20:41:53 xd systemd[1]: Listening on fsck to fsckd communication Socket.
>> Jul 19 20:41:53 xd systemd[1]: Listening on initctl Compatibility Named Pipe.
>> Jul 19 20:41:53 xd systemd[1]: Listening on Journal Audit Socket.
>> Jul 19 20:41:53 xd systemd[1]: Listening on Journal Socket (/dev/log).
>> Jul 19 20:41:53 xd systemd[1]: Listening on Journal Socket.
>> Jul 19 20:41:53 xd systemd[1]: Listening on udev Control Socket.
>> Jul 19 20:41:53 xd systemd[1]: Listening on udev Kernel Socket.
>> Jul 19 20:41:53 xd systemd[1]: Mounting Huge Pages File System...
>> Jul 19 20:41:53 xd systemd[1]: Mounting POSIX Message Queue File System...
>> Jul 19 20:41:53 xd systemd[1]: Mounting Kernel Debug File System...
>> Jul 19 20:41:53 xd systemd[1]: Mounting Kernel Trace File System...
>> Jul 19 20:41:53 xd systemd[1]: Finished Availability of block devices.
>> Jul 19 20:41:53 xd systemd[1]: Starting Set the console keyboard layout...
>> Jul 19 20:41:53 xd systemd[1]: Starting Create list of static device nodes for the current kernel...
>> Jul 19 20:41:53 xd systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
>> Jul 19 20:41:53 xd systemd[1]: Starting Load Kernel Module configfs...
>> Jul 19 20:41:53 xd systemd[1]: Starting Load Kernel Module drm...
>> Jul 19 20:41:53 xd systemd[1]: Starting Load Kernel Module fuse...
>> Jul 19 20:41:53 xd systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
>> Jul 19 20:41:53 xd systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
>> Jul 19 20:41:53 xd systemd[1]: Starting Journal Service...
>> Jul 19 20:41:53 xd systemd[1]: Starting Load Kernel Modules...
>> Jul 19 20:41:53 xd systemd[1]: Starting Remount Root and Kernel File Systems...
>> Jul 19 20:41:53 xd systemd[1]: Starting Coldplug All udev Devices...
>> Jul 19 20:41:53 xd systemd[1]: Mounted Huge Pages File System.
>> Jul 19 20:41:53 xd systemd[1]: Mounted POSIX Message Queue File System.
>> Jul 19 20:41:53 xd systemd[1]: Mounted Kernel Debug File System.
>> Jul 19 20:41:53 xd systemd[1]: Mounted Kernel Trace File System.
>> Jul 19 20:41:53 xd systemd[1]: Finished Create list of static device nodes for the current kernel.
>> Jul 19 20:41:53 xd systemd[1]: modprobe@configfs.service: Succeeded.
>> Jul 19 20:41:53 xd systemd[1]: Finished Load Kernel Module configfs.
>> Jul 19 20:41:53 xd systemd[1]: modprobe@drm.service: Succeeded.
>> Jul 19 20:41:53 xd systemd[1]: Finished Load Kernel Module drm.
>> Jul 19 20:41:53 xd systemd[1]: Mounting Kernel Configuration File System...
>> Jul 19 20:41:53 xd systemd[1]: Mounted Kernel Configuration File System.
>> Jul 19 20:41:53 xd kernel: fuse: init (API version 7.32)
>> Jul 19 20:41:53 xd systemd[1]: modprobe@fuse.service: Succeeded.
>> Jul 19 20:41:53 xd systemd[1]: Finished Load Kernel Module fuse.
>> Jul 19 20:41:53 xd systemd[1]: Mounting FUSE Control File System...
>> Jul 19 20:41:53 xd kernel: EXT4-fs (nvme0n1p3): re-mounted. Opts: errors=remount-ro
>> Jul 19 20:41:53 xd systemd[1]: Finished Remount Root and Kernel File Systems.
>> Jul 19 20:41:53 xd systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
>> Jul 19 20:41:53 xd systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped.
>> Jul 19 20:41:53 xd systemd[1]: Starting Load/Save Random Seed...
>> Jul 19 20:41:53 xd systemd[1]: Starting Create System Users...
>> Jul 19 20:41:53 xd systemd[1]: Mounted FUSE Control File System.
>> Jul 19 20:41:53 xd kernel: lp: driver loaded but no devices found
>> Jul 19 20:41:53 xd systemd[1]: Finished Load/Save Random Seed.
>> Jul 19 20:41:53 xd systemd[1]: Condition check resulted in First Boot Complete being skipped.
>> Jul 19 20:41:53 xd kernel: ppdev: user-space parallel port driver
>> Jul 19 20:41:53 xd systemd[1]: Finished Create System Users.
>> Jul 19 20:41:53 xd systemd[1]: Starting Create Static Device Nodes in /dev...
>> Jul 19 20:41:53 xd systemd[1]: Finished Load Kernel Modules.
>> Jul 19 20:41:53 xd systemd[1]: Starting Apply Kernel Variables...
>> Jul 19 20:41:53 xd systemd[1]: Finished Apply Kernel Variables.
>> Jul 19 20:41:53 xd systemd[1]: Finished Create Static Device Nodes in /dev.
>> Jul 19 20:41:53 xd systemd[1]: Starting Rule-based Manager for Device Events and Files...
>> Jul 19 20:41:53 xd systemd[1]: Finished Set the console keyboard layout.
>> Jul 19 20:41:53 xd systemd[1]: Started Journal Service.
>> Jul 19 20:41:53 xd kernel: input: Acer Wireless Radio Control as /devices/LNXSYSTM:00/10251229:00/input/input10
>> Jul 19 20:41:53 xd kernel: intel_pmc_core INT33A1:00: initialized
>> Jul 19 20:41:53 xd kernel: input: Intel HID events as /devices/platform/INTC1051:00/input/input11
>> Jul 19 20:41:53 xd kernel: intel-hid INTC1051:00: platform supports 5 button array
>> Jul 19 20:41:53 xd kernel: input: Intel HID 5 button array as /devices/platform/INTC1051:00/input/input12
>> Jul 19 20:41:53 xd kernel: ACPI: AC Adapter [ACAD] (on-line)
>> Jul 19 20:41:53 xd kernel: mc: Linux media interface: v0.10
>> Jul 19 20:41:53 xd kernel: mei_me 0000:00:16.0: enabling device (0000 -> 0002)
>> Jul 19 20:41:53 xd kernel: videodev: Linux video capture interface: v2.00
>> Jul 19 20:41:53 xd kernel: ee1004 0-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
>> Jul 19 20:41:53 xd kernel: iTCO_vendor_support: vendor-support=0
>> Jul 19 20:41:53 xd kernel: iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
>> Jul 19 20:41:53 xd kernel: iTCO_wdt: Found a Intel PCH TCO device (Version=6, TCOBASE=0x0400)
>> Jul 19 20:41:53 xd kernel: iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
>> Jul 19 20:41:53 xd kernel: EXT4-fs (nvme0n1p2): mounting ext2 file system using the ext4 subsystem
>> Jul 19 20:41:53 xd kernel: EXT4-fs (nvme0n1p2): mounted filesystem without journal. Opts: (null)
>> Jul 19 20:41:53 xd kernel: ext2 filesystem being mounted at /boot supports timestamps until 2038 (0x7fffffff)
>> Jul 19 20:41:53 xd kernel: uvcvideo: Found UVC 1.00 device HD User Facing (0408:a061)
>> Jul 19 20:41:53 xd kernel: Adding 31182844k swap on /dev/nvme0n1p4. Priority:-2 extents:1 across:31182844k SSFS
>> Jul 19 20:41:53 xd kernel: input: HD User Facing: HD User Facing as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/input/input13
>> Jul 19 20:41:53 xd kernel: acer_wmi: Acer Laptop ACPI-WMI Extras
>> Jul 19 20:41:53 xd kernel: acer_wmi: Function bitmap for Communication Button: 0x801
>> Jul 19 20:41:53 xd kernel: input: Acer WMI hotkeys as /devices/virtual/input/input14
>> Jul 19 20:41:53 xd kernel: cryptd: max_cpu_qlen set to 1000
>> Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.900:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=401 comm="apparmor_parser"
>> Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.900:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-oopslash" pid=402 comm="apparmor_parser"
>> Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.900:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=405 comm="apparmor_parser"
>> Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.900:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=405 comm="apparmor_parser"
>> Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.900:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=403 comm="apparmor_parser"
>> Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.900:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=403 comm="apparmor_parser"
>> Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.900:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=403 comm="apparmor_parser"
>> Jul 19 20:41:53 xd kernel: usbcore: registered new interface driver uvcvideo
>> Jul 19 20:41:53 xd kernel: USB Video Class driver (1.1.1)
>> Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.912:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-xpdfimport" pid=412 comm="apparmor_parser"
>> Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.912:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cups-browsed" pid=408 comm="apparmor_parser"
>> Jul 19 20:41:53 xd kernel: pstore: Using crash dump compression: deflate
>> Jul 19 20:41:53 xd kernel: input: ELAN0515:01 04F3:3142 Mouse as /devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input15
>> Jul 19 20:41:53 xd kernel: input: ELAN0515:01 04F3:3142 Touchpad as /devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input17
>> Jul 19 20:41:53 xd kernel: hid-multitouch 0018:04F3:3142.0001: input,hidraw0: I2C HID v1.00 Mouse [ELAN0515:01 04F3:3142] on i2c-ELAN0515:01
>> Jul 19 20:41:53 xd kernel: pstore: Registered efi as persistent store backend
>> Jul 19 20:41:54 xd kernel: input: PC Speaker as /devices/platform/pcspkr/input/input18
>> Jul 19 20:41:54 xd kernel: AVX2 version of gcm_enc/dec engaged.
>> Jul 19 20:41:54 xd kernel: AES CTR mode by8 optimization enabled
>> Jul 19 20:41:54 xd kernel: resource sanity check: requesting [mem 0xfedc0000-0xfedcdfff], which spans more than pnp 00:04 [mem 0xfedc0000-0xfedc7fff]
>> Jul 19 20:41:54 xd kernel: caller tgl_uncore_imc_freerunning_init_box+0xbb/0x100 [intel_uncore] mapping multiple BARs
>> Jul 19 20:41:54 xd kernel: snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040100
>> Jul 19 20:41:54 xd kernel: snd_hda_intel 0000:00:1f.3: Digital mics found on Skylake+ platform, using SOF driver
>> Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040100
>> Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: Digital mics found on Skylake+ platform, using SOF driver
>> Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: enabling device (0000 -> 0002)
>> Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if 0x040100
>> Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
>> Jul 19 20:41:54 xd kernel: r8169 0000:02:00.0: firmware: failed to load rtl_nic/rtl8168h-2.fw (-2)
>> Jul 19 20:41:54 xd kernel: r8169 0000:02:00.0: Direct firmware load for rtl_nic/rtl8168h-2.fw failed with error -2
>> Jul 19 20:41:54 xd kernel: r8169 0000:02:00.0: Unable to load firmware rtl_nic/rtl8168h-2.fw (-2)
>> Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: use msi interrupt mode
>> Jul 19 20:41:54 xd kernel: Generic FE-GE Realtek PHY r8169-0-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-0-200:00, irq=IGNORE)
>> Jul 19 20:41:54 xd kernel: alg: No test for fips(ansi_cprng) (fips_ansi_cprng)
>> Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: hda codecs found, mask 5
>> Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: using HDA machine driver skl_hda_dsp_generic now
>> Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: DMICs detected in NHLT tables: 2
>> Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: firmware: failed to load intel/sof/sof-tgl.ri (-2)
>> Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: Direct firmware load for intel/sof/sof-tgl.ri failed with error -2
>> Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: error: request firmware intel/sof/sof-tgl.ri failed err: -2
>> Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: error: failed to load DSP firmware -2
>> Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: error: sof_probe_work failed err: -2
>> Jul 19 20:41:54 xd kernel: r8169 0000:02:00.0 enp2s0: Link is Down
>> Jul 19 20:41:54 xd kernel: Bluetooth: Core ver 2.22
>> Jul 19 20:41:54 xd kernel: NET: Registered protocol family 31
>> Jul 19 20:41:54 xd kernel: Bluetooth: HCI device and connection manager initialized
>> Jul 19 20:41:54 xd kernel: Bluetooth: HCI socket layer initialized
>> Jul 19 20:41:54 xd kernel: Bluetooth: L2CAP socket layer initialized
>> Jul 19 20:41:54 xd kernel: Bluetooth: SCO socket layer initialized
>> Jul 19 20:41:54 xd kernel: usbcore: registered new interface driver btusb
>> Jul 19 20:41:54 xd kernel: Bluetooth: BNEP (Ethernet Emulation) ver 1.3
>> Jul 19 20:41:54 xd kernel: Bluetooth: BNEP filters: protocol multicast
>> Jul 19 20:41:54 xd kernel: Bluetooth: BNEP socket layer initialized
>> Jul 19 20:41:54 xd kernel: mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_component_ops [i915])
>> Jul 19 20:41:54 xd kernel: intel_rapl_msr: PL4 support detected.
>> Jul 19 20:41:54 xd kernel: intel_rapl_common: Found RAPL domain package
>> Jul 19 20:41:54 xd kernel: intel_rapl_common: Found RAPL domain core
>> Jul 19 20:41:54 xd kernel: intel_rapl_common: Found RAPL domain uncore
>> Jul 19 20:41:55 xd kernel: rfkill: input handler disabled
>> Jul 19 20:42:03 xd kernel: nouveau 0000:01:00.0: fifo: fault 09 [PHYS_WRITE] at 000000007fef0000 engine c0 [BAR2] client 08 [HUB/HOST_CPU_NB] reason 0d [REGION_VIOLATION] on channel -1 [0000000000 unknown]
>> Jul 19 20:42:03 xd kernel: nouveau 0000:01:00.0: fifo: fault 09 [PHYS_WRITE] at 000000007fef0000 engine c0 [BAR2] client 08 [HUB/HOST_CPU_NB] reason 0d [REGION_VIOLATION] on channel -1 [0000000000 unknown]
>> ...
>> Jul 19 20:42:26 xd kernel: nouveau 0000:01:00.0: fifo: PBDMA0: 01000000 [] ch 0 [007f992000 DRM] subc 0 mthd 0008 data 00000000
>> Jul 19 20:42:26 xd kernel: nouveau 0000:01:00.0: DRM: failed to idle channel 0 [DRM]
>> Jul 19 20:42:26 xd kernel: nouveau 0000:01:00.0: fifo: PBDMA0: 01000000 [] ch 0 [007f992000 DRM] subc 0 mthd 0008 data 00000000
>> Jul 19 20:42:26 xd kernel: nouveau 0000:01:00.0: fifo: PBDMA0: 01000000 [] ch 0 [007f992000 DRM] subc 0 mthd 0008 data 00000000
>> Jul 19 20:42:26 xd kernel: nouveau 0000:01:00.0: fifo: PBDMA0: 01000000 [] ch 0 [007f992000 DRM] subc 0 mthd 0008 data 00000000
>> Jul 19 20:42:26 xd kernel: nouveau 0000:01:00.0: fifo: PBDMA0: 01000000 [] ch 0 [007f992000 DRM] subc 0 mthd 0008 data 00000000
>> Jul 19 20:42:26 xd kernel: ------------[ cut here ]------------
>> Jul 19 20:42:26 xd kernel: WARNING: CPU: 2 PID: 479 at drivers/gpu/drm/nouveau/nvkm/subdev/mc/base.c:72 nvkm_mc_intr+0x14d/0x170 [nouveau]
>> Jul 19 20:42:26 xd kernel: Modules linked in: intel_rapl_msr intel_rapl_common snd_soc_dmic mei_hdcp bnep btusb btrtl btbcm btintel bluetooth x86_pkg_temp_thermal intel_powerclamp coretemp jitterentropy_rng kvm_intel snd_hda_codec_hdmi snd_hda_codec_realtek drbg snd_hda_codec_generic kvm snd_sof_pci snd_sof_intel_byt snd_sof_intel_ipc snd_sof_intel_hda_common snd_sof_xtensa_dsp snd_sof snd_sof_intel_hda irqbypass snd_soc_hdac_hda snd_hda_ext_core aes_generic ghash_clmulni_intel snd_soc_acpi_intel_match snd_soc_acpi ledtrig_audio snd_hda_intel snd_intel_dspcfg soundwire_intel intel_cstate soundwire_generic_allocation snd_soc_core intel_uncore joydev snd_compress soundwire_cadence aesni_intel pcspkr snd_hda_codec crypto_simd cryptd glue_helper nls_ascii snd_hda_core ansi_cprng nls_cp437 serio_raw snd_hwdep acer_wmi vfat ecdh_generic soundwire_bus efi_pstore fat snd_pcm uvcvideo snd_timer videobuf2_vmalloc iTCO_wdt snd videobuf2_memops intel_pmc_bxt wmi_bmof videobuf2_v4l2 iTCO_vendor_support watchdog
>> Jul 19 20:42:26 xd kernel: videobuf2_common soundcore ee1004 videodev rfkill ecc mei_me libaes mc mei hid_multitouch evdev ac tpm_crb tpm_tis tpm_tis_core tpm intel_hid intel_pmc_core sparse_keymap acpi_pad rng_core acer_wireless msr parport_pc ppdev lp parport fuse configfs efivarfs ip_tables x_tables autofs4 ext4 crc16 mbcache jbd2 crc32c_generic usbhid i915 nouveau ahci hid_generic libahci mxm_wmi ttm i2c_algo_bit nvme libata drm_kms_helper xhci_pci nvme_core xhci_hcd scsi_mod cec t10_pi crc_t10dif r8169 crct10dif_generic drm realtek mdio_devres libphy usbcore crct10dif_pclmul crct10dif_common i2c_hid crc32_pclmul crc32c_intel hid i2c_i801 i2c_smbus intel_lpss_pci intel_lpss idma64 vmd usb_common fan button battery video wmi
>> Jul 19 20:42:26 xd kernel: CPU: 2 PID: 479 Comm: in:imklog Not tainted 5.10.0-16-amd64 #1 Debian 5.10.127-1
>> Jul 19 20:42:26 xd kernel: Hardware name: Acer Aspire A517-52G/Jasmine_TL, BIOS V1.26 03/14/2022
>> Jul 19 20:42:26 xd kernel: RIP: 0010:nvkm_mc_intr+0x14d/0x170 [nouveau]
>> Jul 19 20:42:26 xd kernel: Code: 44 24 18 65 48 2b 04 25 28 00 00 00 75 2b 48 83 c4 20 5b 5d 41 5c 41 5d 41 5e 41 5f c3 41 8b 47 40 85 c0 74 ba e9 3a 9d 0a 00 <0f> 0b 45 31 e4 c6 44 24 0f 00 e9 00 ff ff ff e8 df b8 d3 f9 66 66
>> Jul 19 20:42:26 xd kernel: RSP: 0018:ffffad10001c0ef0 EFLAGS: 00010046
>> Jul 19 20:42:26 xd kernel: RAX: 00000000ffffffff RBX: ffff997305c62280 RCX: 000000000000080b
>> Jul 19 20:42:26 xd kernel: RDX: 0000000000000000 RSI: ffffad10001c0f4f RDI: ffffad1007000104
>> Jul 19 20:42:26 xd kernel: RBP: ffff9971e0b6c000 R08: ffff9971d129e900 R09: 0000000000000000
>> Jul 19 20:42:26 xd kernel: R10: 0000000000000000 R11: 0000000000000000 R12: 00000000ffffffff
>> Jul 19 20:42:26 xd kernel: R13: ffffad10001c0fac R14: 000000000000009e R15: ffff9971e0c0a900
>> Jul 19 20:42:26 xd kernel: FS: 00007f586f6ae700(0000) GS:ffff997560480000(0000) knlGS:0000000000000000
>> Jul 19 20:42:26 xd kernel: CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
>> Jul 19 20:42:26 xd kernel: CR2: 00007faf88013388 CR3: 0000000109b80005 CR4: 0000000000770ee0
>> Jul 19 20:42:26 xd kernel: PKRU: 55555554
>> Jul 19 20:42:26 xd kernel: Call Trace:
>> Jul 19 20:42:26 xd kernel: <IRQ>
>> Jul 19 20:42:26 xd kernel: ? gp100_mc_intr_update+0x54/0x80 [nouveau]
>> Jul 19 20:42:26 xd kernel: nvkm_pci_intr+0x4d/0x90 [nouveau]
>> Jul 19 20:42:26 xd kernel: __handle_irq_event_percpu+0x3d/0x160
>> Jul 19 20:42:26 xd kernel: handle_irq_event+0x57/0xb0
>> Jul 19 20:42:26 xd kernel: handle_edge_irq+0x87/0x220
>> Jul 19 20:42:26 xd kernel: asm_call_irq_on_stack+0xf/0x20
>> Jul 19 20:42:26 xd kernel: </IRQ>
>> Jul 19 20:42:26 xd kernel: common_interrupt+0xb0/0x130
>> Jul 19 20:42:26 xd kernel: asm_common_interrupt+0x1e/0x40
>> Jul 19 20:42:26 xd kernel: RIP: 0010:__check_heap_object+0x3b/0x110
>> Jul 19 20:42:26 xd kernel: Code: ee 00 48 89 f8 48 c1 fa 06 89 cf 48 c1 e2 0c 48 03 15 29 09 ee 00 48 39 d0 0f 82 b0 00 00 00 48 29 d0 8b 4e 18 48 99 48 f7 f9 <89> d0 0f 1f 44 00 00 8b 96 d0 00 00 00 39 c2 77 1c 41 89 c2 44 8b
>> Jul 19 20:42:26 xd kernel: RSP: 0018:ffffad1000adbde0 EFLAGS: 00000206
>> Jul 19 20:42:26 xd kernel: RAX: 000000000000001b RBX: 0000000000000077 RCX: 0000000000000400
>> Jul 19 20:42:26 xd kernel: RDX: 0000000000000000 RSI: ffff9971c0043500 RDI: 0000000000000001
>> Jul 19 20:42:26 xd kernel: RBP: ffff997242d46c77 R08: 0000000000000077 R09: 302e30303a31303a
>> Jul 19 20:42:26 xd kernel: R10: 0000000076756f6e R11: 0000000076756f6e R12: ffff997242d46c00
>> Jul 19 20:42:26 xd kernel: R13: 0000000000000001 R14: ffff997242d46c00 R15: 0000000000000077
>> Jul 19 20:42:26 xd kernel: __check_object_size+0x136/0x150
>> Jul 19 20:42:26 xd kernel: syslog_print+0xc3/0x210
>> Jul 19 20:42:26 xd kernel: kmsg_read+0x3e/0x50
>> Jul 19 20:42:26 xd kernel: vfs_read+0x98/0x180
>> Jul 19 20:42:26 xd kernel: ksys_read+0x5f/0xe0
>> Jul 19 20:42:26 xd kernel: do_syscall_64+0x33/0x80
>> Jul 19 20:42:26 xd kernel: entry_SYSCALL_64_after_hwframe+0x44/0xa9
>> Jul 19 20:42:26 xd kernel: RIP: 0033:0x7f58700c908c
>> Jul 19 20:42:26 xd kernel: Code: ec 28 48 89 54 24 18 48 89 74 24 10 89 7c 24 08 e8 89 fc ff ff 48 8b 54 24 18 48 8b 74 24 10 41 89 c0 8b 7c 24 08 31 c0 0f 05 <48> 3d 00 f0 ff ff 77 34 44 89 c7 48 89 44 24 08 e8 bf fc ff ff 48
>> Jul 19 20:42:26 xd kernel: RSP: 002b:00007f586f68d4d0 EFLAGS: 00000246 ORIG_RAX: 0000000000000000
>> Jul 19 20:42:26 xd kernel: RAX: ffffffffffffffda RBX: 0000000000000000 RCX: 00007f58700c908c
>> Jul 19 20:42:26 xd kernel: RDX: 0000000000001fa0 RSI: 00007f586f68dd00 RDI: 0000000000000005
>> Jul 19 20:42:26 xd kernel: RBP: 00005619c2c61920 R08: 0000000000000000 R09: 00005619c2c6ba38
>> Jul 19 20:42:26 xd kernel: R10: 0000000000000000 R11: 0000000000000246 R12: 00007f586f68dd00
>> Jul 19 20:42:26 xd kernel: R13: 0000000000001fa0 R14: 00007f586f68dd00 R15: 00007f586f68fc9c
>> Jul 19 20:42:26 xd kernel: ---[ end trace c1b76539949981fe ]---
>> Jul 19 20:42:26 xd kernel: nouveau 0000:01:00.0: fifo: fault 0f [] at ffffffffffffffff engine ff [] client 7f [HUB/] reason 1f [] on channel -1 [fffffffffffff000 unknown]
>
> Regards,
>
> Leigh.
Re: Boot into Xen on debian11 [ In reply to ]
On 7/20/2022 8:17 AM, Bruno wrote:
>
> Here the ring buffer (journalctl -k -b -1) from the failed boot into Xen.
>
> -- Journal begins at Mon 2022-07-18 16:19:02 BST, ends at Tue 2022-07-19 20:43:04 BST. --
> Jul 19 20:41:53 xd kernel: Linux version 5.10.0-16-amd64 (debian-kernel@lists.debian.org) (gcc-10 (Debian 10.2.1-6) 10.2.1 20210110, GNU ld (GNU Binutils for Debian) 2.35.2) #1 SMP Debian 5.10.127-1 (2022-06-30)
> Jul 19 20:41:53 xd kernel: Command line: BOOT_IMAGE=/vmlinuz-5.10.0-16-amd64 root=UUID=0123abcd ro quiet
> Jul 19 20:41:53 xd kernel: x86/split lock detection: warning about user-space split_locks
> Jul 19 20:41:53 xd kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
> Jul 19 20:41:53 xd kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
> Jul 19 20:41:53 xd kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
> Jul 19 20:41:53 xd kernel: x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask'
> Jul 19 20:41:53 xd kernel: x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'
> Jul 19 20:41:53 xd kernel: x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'
> Jul 19 20:41:53 xd kernel: x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
> Jul 19 20:41:53 xd kernel: x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
> Jul 19 20:41:53 xd kernel: x86/fpu: xstate_offset[5]: 832, xstate_sizes[5]: 64
> Jul 19 20:41:53 xd kernel: x86/fpu: xstate_offset[6]: 896, xstate_sizes[6]: 512
> Jul 19 20:41:53 xd kernel: x86/fpu: xstate_offset[7]: 1408, xstate_sizes[7]: 1024
> Jul 19 20:41:53 xd kernel: x86/fpu: xstate_offset[9]: 2432, xstate_sizes[9]: 8
> Jul 19 20:41:53 xd kernel: x86/fpu: Enabled xstate features 0x2e7, context size is 2440 bytes, using 'compacted' format.
> Jul 19 20:41:53 xd kernel: BIOS-provided physical RAM map:
> Jul 19 20:41:53 xd kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
> Jul 19 20:41:53 xd kernel: BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
> Jul 19 20:41:53 xd kernel: BIOS-e820: [mem 0x0000000000100000-0x000000003fd98fff] usable
> Jul 19 20:41:53 xd kernel: BIOS-e820: [mem 0x000000003fd99000-0x0000000040698fff] reserved
> Jul 19 20:41:53 xd kernel: BIOS-e820: [mem 0x0000000040699000-0x00000000424aefff] usable
> Jul 19 20:41:53 xd kernel: BIOS-e820: [mem 0x00000000424af000-0x000000004287efff] type 20
> Jul 19 20:41:53 xd kernel: BIOS-e820: [mem 0x000000004287f000-0x00000000442fefff] reserved
> Jul 19 20:41:53 xd kernel: BIOS-e820: [mem 0x00000000442ff000-0x0000000044b2efff] ACPI NVS
> Jul 19 20:41:53 xd kernel: BIOS-e820: [mem 0x0000000044b2f000-0x0000000044bfefff] ACPI data
> Jul 19 20:41:53 xd kernel: BIOS-e820: [mem 0x0000000044bff000-0x0000000044bfffff] usable
> Jul 19 20:41:53 xd kernel: BIOS-e820: [mem 0x0000000044c00000-0x0000000048ffffff] reserved
> Jul 19 20:41:53 xd kernel: BIOS-e820: [mem 0x0000000049e00000-0x000000004f7fffff] reserved
> Jul 19 20:41:53 xd kernel: BIOS-e820: [mem 0x00000000c0000000-0x00000000cfffffff] reserved
> Jul 19 20:41:53 xd kernel: BIOS-e820: [mem 0x00000000fe010000-0x00000000fe010fff] reserved
> Jul 19 20:41:53 xd kernel: BIOS-e820: [mem 0x00000000fed20000-0x00000000fed7ffff] reserved
> Jul 19 20:41:53 xd kernel: BIOS-e820: [mem 0x00000000ff500000-0x00000000ffffffff] reserved
> Jul 19 20:41:53 xd kernel: BIOS-e820: [mem 0x0000000100000000-0x00000004b07fffff] usable
> Jul 19 20:41:53 xd kernel: NX (Execute Disable) protection: active
> Jul 19 20:41:53 xd kernel: efi: EFI v2.70 by INSYDE Corp.
> Jul 19 20:41:53 xd kernel: efi: ACPI=0x44bfe000 ACPI 2.0=0x44bfe014 TPMFinalLog=0x44ac5000 SMBIOS=0x429de000 SMBIOS 3.0=0x429dc000 ESRT=0x3bf66a98 MOKvar=0x3bee4000
> Jul 19 20:41:53 xd kernel: secureboot: Secure boot could not be determined (mode 0)
> Jul 19 20:41:53 xd kernel: SMBIOS 3.3.0 present.
> Jul 19 20:41:53 xd kernel: DMI: Acer Aspire A517-52G/Jasmine_TL, BIOS V1.26 03/14/2022
> Jul 19 20:41:53 xd kernel: tsc: Detected 2400.000 MHz processor
> Jul 19 20:41:53 xd kernel: tsc: Detected 2419.200 MHz TSC
> Jul 19 20:41:53 xd kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
> Jul 19 20:41:53 xd kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
> Jul 19 20:41:53 xd kernel: last_pfn = 0x4b0800 max_arch_pfn = 0x400000000
> Jul 19 20:41:53 xd kernel: MTRR default type: write-back
> Jul 19 20:41:53 xd kernel: MTRR fixed ranges enabled:
> Jul 19 20:41:53 xd kernel: 00000-9FFFF write-back
> Jul 19 20:41:53 xd kernel: A0000-BFFFF uncachable
> Jul 19 20:41:53 xd kernel: C0000-FFFFF write-protect
> Jul 19 20:41:53 xd kernel: MTRR variable ranges enabled:
> Jul 19 20:41:53 xd kernel: 0 base 0080000000 mask 7F80000000 uncachable
> Jul 19 20:41:53 xd kernel: 1 base 0060000000 mask 7FE0000000 uncachable
> Jul 19 20:41:53 xd kernel: 2 base 0050000000 mask 7FF0000000 uncachable
> Jul 19 20:41:53 xd kernel: 3 base 004C000000 mask 7FFC000000 uncachable
> Jul 19 20:41:53 xd kernel: 4 base 004B000000 mask 7FFF000000 uncachable
> Jul 19 20:41:53 xd kernel: 5 base 4000000000 mask 4000000000 uncachable
> Jul 19 20:41:53 xd kernel: 6 disabled
> Jul 19 20:41:53 xd kernel: 7 disabled
> Jul 19 20:41:53 xd kernel: 8 disabled
> Jul 19 20:41:53 xd kernel: 9 disabled
> Jul 19 20:41:53 xd kernel: x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
> Jul 19 20:41:53 xd kernel: last_pfn = 0x44c00 max_arch_pfn = 0x400000000
> Jul 19 20:41:53 xd kernel: esrt: Reserving ESRT space from 0x000000003bf66a98 to 0x000000003bf66ad0.
> Jul 19 20:41:53 xd kernel: e820: update [mem 0x3bf66000-0x3bf66fff] usable ==> reserved
> Jul 19 20:41:53 xd kernel: e820: update [mem 0x3bee4000-0x3bee6fff] usable ==> reserved
> Jul 19 20:41:53 xd kernel: Using GB pages for direct mapping
> Jul 19 20:41:53 xd kernel: RAMDISK: [mem 0x32aa5000-0x35549fff]
> Jul 19 20:41:53 xd kernel: ACPI: Early table checksum verification disabled
> Jul 19 20:41:53 xd kernel: ACPI: RSDP 0x0000000044BFE014 000024 (v02 ACRSYS)
> Jul 19 20:41:53 xd kernel: ACPI: XSDT 0x0000000044BDB188 000124 (v01 ACRSYS ACRPRDCT 00000002 01000013)
> Jul 19 20:41:53 xd kernel: ACPI: FACP 0x0000000044BDE000 000114 (v06 ACRSYS ACRPRDCT 00000002 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: DSDT 0x0000000044B81000 059948 (v02 ACRSYS ACRPRDCT 00000002 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: FACS 0x0000000044AA2000 000040
> Jul 19 20:41:53 xd kernel: ACPI: UEFI 0x0000000044B2E000 000236 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BFA000 00255C (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BF9000 000105 (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BF6000 002137 (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BF2000 003300 (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BF1000 00077B (v02 ACRSYS ACRPRDCT 00001000 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: TPM2 0x0000000044BF0000 00004C (v04 ACRSYS ACRPRDCT 00000002 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: MSDM 0x0000000044BEF000 000055 (v03 ACRSYS ACRPRDCT 00000001 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BEE000 000D02 (v02 ACRSYS ACRPRDCT 00000000 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: NHLT 0x0000000044BEC000 001B54 (v00 ACRSYS ACRPRDCT 00000002 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: LPIT 0x0000000044BEB000 0000CC (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: WSMT 0x0000000044BEA000 000028 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BE9000 000B70 (v02 ACRSYS ACRPRDCT 00001000 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BE8000 00012A (v02 ACRSYS ACRPRDCT 00000000 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: DBGP 0x0000000044BE7000 000034 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: DBG2 0x0000000044BE6000 000054 (v00 ACRSYS ACRPRDCT 00000002 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BDF000 006BA9 (v01 ACRSYS ACRPRDCT 00001000 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: HPET 0x0000000044BDD000 000038 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: APIC 0x0000000044BDC000 00012C (v04 ACRSYS ACRPRDCT 00000002 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: MCFG 0x0000000044BFD000 00003C (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044B80000 000C78 (v02 ACRSYS ACRPRDCT 00000002 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: DMAR 0x0000000044B7F000 000088 (v02 ACRSYS ACRPRDCT 00000002 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044B7C000 0020D6 (v01 ACRSYS ACRPRDCT 00001000 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: UEFI 0x0000000044A5B000 00063A (v01 ACRSYS ACRPRDCT 00000000 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: UEFI 0x0000000044A5A000 00005C (v01 ACRSYS ACRPRDCT 00000000 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044B7B000 000985 (v02 ACRSYS ACRPRDCT 00001000 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044B7A000 0000F8 (v01 ACRSYS ACRPRDCT 00001000 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044B79000 000835 (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: FPDT 0x0000000044B78000 000044 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: PTDT 0x0000000044B76000 000CFE (v00 ACRSYS ACRPRDCT 00000005 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: BGRT 0x0000000044B77000 000038 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
> Jul 19 20:41:53 xd kernel: ACPI: Reserving FACP table memory at [mem 0x44bde000-0x44bde113]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving DSDT table memory at [mem 0x44b81000-0x44bda947]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving FACS table memory at [mem 0x44aa2000-0x44aa203f]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving UEFI table memory at [mem 0x44b2e000-0x44b2e235]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bfa000-0x44bfc55b]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bf9000-0x44bf9104]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bf6000-0x44bf8136]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bf2000-0x44bf52ff]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bf1000-0x44bf177a]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving TPM2 table memory at [mem 0x44bf0000-0x44bf004b]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving MSDM table memory at [mem 0x44bef000-0x44bef054]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bee000-0x44beed01]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving NHLT table memory at [mem 0x44bec000-0x44bedb53]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving LPIT table memory at [mem 0x44beb000-0x44beb0cb]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving WSMT table memory at [mem 0x44bea000-0x44bea027]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44be9000-0x44be9b6f]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44be8000-0x44be8129]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving DBGP table memory at [mem 0x44be7000-0x44be7033]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving DBG2 table memory at [mem 0x44be6000-0x44be6053]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bdf000-0x44be5ba8]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving HPET table memory at [mem 0x44bdd000-0x44bdd037]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving APIC table memory at [mem 0x44bdc000-0x44bdc12b]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving MCFG table memory at [mem 0x44bfd000-0x44bfd03b]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b80000-0x44b80c77]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving DMAR table memory at [mem 0x44b7f000-0x44b7f087]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b7c000-0x44b7e0d5]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving UEFI table memory at [mem 0x44a5b000-0x44a5b639]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving UEFI table memory at [mem 0x44a5a000-0x44a5a05b]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b7b000-0x44b7b984]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b7a000-0x44b7a0f7]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b79000-0x44b79834]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving FPDT table memory at [mem 0x44b78000-0x44b78043]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving PTDT table memory at [mem 0x44b76000-0x44b76cfd]
> Jul 19 20:41:53 xd kernel: ACPI: Reserving BGRT table memory at [mem 0x44b77000-0x44b77037]
> Jul 19 20:41:53 xd kernel: ACPI: Local APIC address 0xfee00000
> Jul 19 20:41:53 xd kernel: No NUMA configuration found
> Jul 19 20:41:53 xd kernel: Faking a node at [mem 0x0000000000000000-0x00000004b07fffff]
> Jul 19 20:41:53 xd kernel: NODE_DATA(0) allocated [mem 0x4b07d6000-0x4b07fffff]
> Jul 19 20:41:53 xd kernel: Zone ranges:
> Jul 19 20:41:53 xd kernel: DMA [mem 0x0000000000001000-0x0000000000ffffff]
> Jul 19 20:41:53 xd kernel: DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
> Jul 19 20:41:53 xd kernel: Normal [mem 0x0000000100000000-0x00000004b07fffff]
> Jul 19 20:41:53 xd kernel: Device empty
> Jul 19 20:41:53 xd kernel: Movable zone start for each node
> Jul 19 20:41:53 xd kernel: Early memory node ranges
> Jul 19 20:41:53 xd kernel: node 0: [mem 0x0000000000001000-0x000000000009efff]
> Jul 19 20:41:53 xd kernel: node 0: [mem 0x0000000000100000-0x000000003fd98fff]
> Jul 19 20:41:53 xd kernel: node 0: [mem 0x0000000040699000-0x00000000424aefff]
> Jul 19 20:41:53 xd kernel: node 0: [mem 0x0000000044bff000-0x0000000044bfffff]
> Jul 19 20:41:53 xd kernel: node 0: [mem 0x0000000100000000-0x00000004b07fffff]
> Jul 19 20:41:53 xd kernel: Initmem setup node 0 [mem 0x0000000000001000-0x00000004b07fffff]
> Jul 19 20:41:53 xd kernel: On node 0 totalpages: 4137806
> Jul 19 20:41:53 xd kernel: DMA zone: 64 pages used for memmap
> Jul 19 20:41:53 xd kernel: DMA zone: 25 pages reserved
> Jul 19 20:41:53 xd kernel: DMA zone: 3998 pages, LIFO batch:0
> Jul 19 20:41:53 xd kernel: DMA32 zone: 4143 pages used for memmap
> Jul 19 20:41:53 xd kernel: DMA32 zone: 265136 pages, LIFO batch:63
> Jul 19 20:41:53 xd kernel: Normal zone: 60448 pages used for memmap
> Jul 19 20:41:53 xd kernel: Normal zone: 3868672 pages, LIFO batch:63
> Jul 19 20:41:53 xd kernel: On node 0, zone DMA: 1 pages in unavailable ranges
> Jul 19 20:41:53 xd kernel: On node 0, zone DMA: 97 pages in unavailable ranges
> Jul 19 20:41:53 xd kernel: On node 0, zone DMA32: 2304 pages in unavailable ranges
> Jul 19 20:41:53 xd kernel: On node 0, zone DMA32: 10064 pages in unavailable ranges
> Jul 19 20:41:53 xd kernel: On node 0, zone Normal: 13312 pages in unavailable ranges
> Jul 19 20:41:53 xd kernel: On node 0, zone Normal: 30720 pages in unavailable ranges
> Jul 19 20:41:53 xd kernel: Reserving Intel graphics memory at [mem 0x4b800000-0x4f7fffff]
> Jul 19 20:41:53 xd kernel: ACPI: PM-Timer IO Port: 0x1808
> Jul 19 20:41:53 xd kernel: ACPI: Local APIC address 0xfee00000
> Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
> Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
> Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
> Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
> Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
> Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
> Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
> Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
> Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
> Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
> Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
> Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
> Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
> Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
> Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
> Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
> Jul 19 20:41:53 xd kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
> Jul 19 20:41:53 xd kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
> Jul 19 20:41:53 xd kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
> Jul 19 20:41:53 xd kernel: ACPI: IRQ0 used by override.
> Jul 19 20:41:53 xd kernel: ACPI: IRQ9 used by override.
> Jul 19 20:41:53 xd kernel: Using ACPI (MADT) for SMP configuration information
> Jul 19 20:41:53 xd kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
> Jul 19 20:41:53 xd kernel: e820: update [mem 0x3bf69000-0x3c05cfff] usable ==> reserved
> Jul 19 20:41:53 xd kernel: TSC deadline timer available
> Jul 19 20:41:53 xd kernel: smpboot: Allowing 8 CPUs, 0 hotplug CPUs
> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x3bee4000-0x3bee6fff]
> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x3bf66000-0x3bf66fff]
> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x3bf69000-0x3c05cfff]
> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x3fd99000-0x40698fff]
> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x424af000-0x4287efff]
> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x4287f000-0x442fefff]
> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x442ff000-0x44b2efff]
> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x44b2f000-0x44bfefff]
> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x44c00000-0x48ffffff]
> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x49000000-0x49dfffff]
> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x49e00000-0x4f7fffff]
> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x4f800000-0xbfffffff]
> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xc0000000-0xcfffffff]
> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xd0000000-0xfe00ffff]
> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xfe010000-0xfe010fff]
> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xfed1ffff]
> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xfed7ffff]
> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xff4fffff]
> Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xff500000-0xffffffff]
> Jul 19 20:41:53 xd kernel: [mem 0x4f800000-0xbfffffff] available for PCI devices
> Jul 19 20:41:53 xd kernel: Booting paravirtualized kernel on bare hardware
> Jul 19 20:41:53 xd kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
> Jul 19 20:41:53 xd kernel: setup_percpu: NR_CPUS:8192 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
> Jul 19 20:41:53 xd kernel: percpu: Embedded 58 pages/cpu s200664 r8192 d28712 u262144
> Jul 19 20:41:53 xd kernel: pcpu-alloc: s200664 r8192 d28712 u262144 alloc=1*2097152
> Jul 19 20:41:53 xd kernel: pcpu-alloc: [0] 0 1 2 3 4 5 6 7
> Jul 19 20:41:53 xd kernel: Built 1 zonelists, mobility grouping on. Total pages: 4073126
> Jul 19 20:41:53 xd kernel: Policy zone: Normal
> Jul 19 20:41:53 xd kernel: Kernel command line: BOOT_IMAGE=/vmlinuz-5.10.0-16-amd64 root=UUID=0dc2ba0c-97d5-4786-bc97-4d13279afe0f ro quiet
> Jul 19 20:41:53 xd kernel: Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
> Jul 19 20:41:53 xd kernel: Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
> Jul 19 20:41:53 xd kernel: mem auto-init: stack:off, heap alloc:on, heap free:off
> Jul 19 20:41:53 xd kernel: Memory: 1014224K/16551224K available (12295K kernel code, 2536K rwdata, 7568K rodata, 2424K init, 3680K bss, 517204K reserved, 0K cma-reserved)
> Jul 19 20:41:53 xd kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
> Jul 19 20:41:53 xd kernel: ftrace: allocating 36455 entries in 143 pages
> Jul 19 20:41:53 xd kernel: ftrace: allocated 143 pages with 5 groups
> Jul 19 20:41:53 xd kernel: rcu: Hierarchical RCU implementation.
> Jul 19 20:41:53 xd kernel: rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=8.
> Jul 19 20:41:53 xd kernel: Rude variant of Tasks RCU enabled.
> Jul 19 20:41:53 xd kernel: Tracing variant of Tasks RCU enabled.
> Jul 19 20:41:53 xd kernel: rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
> Jul 19 20:41:53 xd kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
> Jul 19 20:41:53 xd kernel: NR_IRQS: 524544, nr_irqs: 2048, preallocated irqs: 16
> Jul 19 20:41:53 xd kernel: random: crng init done
> Jul 19 20:41:53 xd kernel: Console: colour dummy device 80x25
> Jul 19 20:41:53 xd kernel: printk: console [tty0] enabled
> Jul 19 20:41:53 xd kernel: ACPI: Core revision 20200925
> Jul 19 20:41:53 xd kernel: hpet: HPET dysfunctional in PC10. Force disabled.
> Jul 19 20:41:53 xd kernel: APIC: Switch to symmetric I/O mode setup
> Jul 19 20:41:53 xd kernel: DMAR: Host address width 39
> Jul 19 20:41:53 xd kernel: DMAR: DRHD base: 0x000000fed90000 flags: 0x0
> Jul 19 20:41:53 xd kernel: DMAR: dmar0: reg_base_addr fed90000 ver 4:0 cap 1c0000c40660462 ecap 29a00f0505e
> Jul 19 20:41:53 xd kernel: DMAR: DRHD base: 0x000000fed91000 flags: 0x1
> Jul 19 20:41:53 xd kernel: DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
> Jul 19 20:41:53 xd kernel: DMAR: RMRR base: 0x0000004b000000 end: 0x0000004f7fffff
> Jul 19 20:41:53 xd kernel: DMAR-IR: IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 1
> Jul 19 20:41:53 xd kernel: DMAR-IR: HPET id 0 under DRHD base 0xfed91000
> Jul 19 20:41:53 xd kernel: DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
> Jul 19 20:41:53 xd kernel: DMAR-IR: Enabled IRQ remapping in x2apic mode
> Jul 19 20:41:53 xd kernel: x2apic enabled
> Jul 19 20:41:53 xd kernel: Switched APIC routing to cluster x2apic.
> Jul 19 20:41:53 xd kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x22df1149949, max_idle_ns: 440795312789 ns
> Jul 19 20:41:53 xd kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 4838.40 BogoMIPS (lpj=9676800)
> Jul 19 20:41:53 xd kernel: pid_max: default: 32768 minimum: 301
> Jul 19 20:41:53 xd kernel: LSM: Security Framework initializing
> Jul 19 20:41:53 xd kernel: Yama: disabled by default; enable with sysctl kernel.yama.*
> Jul 19 20:41:53 xd kernel: AppArmor: AppArmor initialized
> Jul 19 20:41:53 xd kernel: TOMOYO Linux initialized
> Jul 19 20:41:53 xd kernel: Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
> Jul 19 20:41:53 xd kernel: Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
> Jul 19 20:41:53 xd kernel: x86/cpu: User Mode Instruction Prevention (UMIP) activated
> Jul 19 20:41:53 xd kernel: mce: CPU0: Thermal monitoring enabled (TM1)
> Jul 19 20:41:53 xd kernel: process: using mwait in idle threads
> Jul 19 20:41:53 xd kernel: Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
> Jul 19 20:41:53 xd kernel: Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
> Jul 19 20:41:53 xd kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
> Jul 19 20:41:53 xd kernel: Spectre V2 : Mitigation: Enhanced IBRS
> Jul 19 20:41:53 xd kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
> Jul 19 20:41:53 xd kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
> Jul 19 20:41:53 xd kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
> Jul 19 20:41:53 xd kernel: Freeing SMP alternatives memory: 32K
> Jul 19 20:41:53 xd kernel: smpboot: CPU0: 11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz (family: 0x6, model: 0x8c, stepping: 0x1)
> Jul 19 20:41:53 xd kernel: Performance Events: PEBS fmt4+-baseline, AnyThread deprecated, Icelake events, 32-deep LBR, full-width counters, Intel PMU driver.
> Jul 19 20:41:53 xd kernel: ... version: 5
> Jul 19 20:41:53 xd kernel: ... bit width: 48
> Jul 19 20:41:53 xd kernel: ... generic registers: 8
> Jul 19 20:41:53 xd kernel: ... value mask: 0000ffffffffffff
> Jul 19 20:41:53 xd kernel: ... max period: 00007fffffffffff
> Jul 19 20:41:53 xd kernel: ... fixed-purpose events: 4
> Jul 19 20:41:53 xd kernel: ... event mask: 0001000f000000ff
> Jul 19 20:41:53 xd kernel: rcu: Hierarchical SRCU implementation.
> Jul 19 20:41:53 xd kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
> Jul 19 20:41:53 xd kernel: smp: Bringing up secondary CPUs ...
> Jul 19 20:41:53 xd kernel: x86: Booting SMP configuration:
> Jul 19 20:41:53 xd kernel: .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7
> Jul 19 20:41:53 xd kernel: smp: Brought up 1 node, 8 CPUs
> Jul 19 20:41:53 xd kernel: smpboot: Max logical packages: 1
> Jul 19 20:41:53 xd kernel: smpboot: Total of 8 processors activated (38707.20 BogoMIPS)
> Jul 19 20:41:53 xd kernel: node 0 deferred pages initialised in 20ms
> Jul 19 20:41:53 xd kernel: devtmpfs: initialized
> Jul 19 20:41:53 xd kernel: x86/mm: Memory block size: 128MB
> Jul 19 20:41:53 xd kernel: PM: Registering ACPI NVS region [mem 0x442ff000-0x44b2efff] (8585216 bytes)
> Jul 19 20:41:53 xd kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
> Jul 19 20:41:53 xd kernel: futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
> Jul 19 20:41:53 xd kernel: pinctrl core: initialized pinctrl subsystem
> Jul 19 20:41:53 xd kernel: NET: Registered protocol family 16
> Jul 19 20:41:53 xd kernel: audit: initializing netlink subsys (disabled)
> Jul 19 20:41:53 xd kernel: audit: type=2000 audit(1658259710.028:1): state=initialized audit_enabled=0 res=1
> Jul 19 20:41:53 xd kernel: thermal_sys: Registered thermal governor 'fair_share'
> Jul 19 20:41:53 xd kernel: thermal_sys: Registered thermal governor 'bang_bang'
> Jul 19 20:41:53 xd kernel: thermal_sys: Registered thermal governor 'step_wise'
> Jul 19 20:41:53 xd kernel: thermal_sys: Registered thermal governor 'user_space'
> Jul 19 20:41:53 xd kernel: thermal_sys: Registered thermal governor 'power_allocator'
> Jul 19 20:41:53 xd kernel: cpuidle: using governor ladder
> Jul 19 20:41:53 xd kernel: cpuidle: using governor menu
> Jul 19 20:41:53 xd kernel: ACPI: bus type PCI registered
> Jul 19 20:41:53 xd kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
> Jul 19 20:41:53 xd kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xc0000000-0xcfffffff] (base 0xc0000000)
> Jul 19 20:41:53 xd kernel: PCI: MMCONFIG at [mem 0xc0000000-0xcfffffff] reserved in E820
> Jul 19 20:41:53 xd kernel: PCI: Using configuration type 1 for base access
> Jul 19 20:41:53 xd kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
> Jul 19 20:41:53 xd kernel: Kprobes globally optimized
> Jul 19 20:41:53 xd kernel: HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
> Jul 19 20:41:53 xd kernel: HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
> Jul 19 20:41:53 xd kernel: ACPI: Added _OSI(Module Device)
> Jul 19 20:41:53 xd kernel: ACPI: Added _OSI(Processor Device)
> Jul 19 20:41:53 xd kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
> Jul 19 20:41:53 xd kernel: ACPI: Added _OSI(Processor Aggregator Device)
> Jul 19 20:41:53 xd kernel: ACPI: Added _OSI(Linux-Dell-Video)
> Jul 19 20:41:53 xd kernel: ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
> Jul 19 20:41:53 xd kernel: ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS01._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS01._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS02._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS02._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS03._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS03._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS04._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS04._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS05._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS05._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS06._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS06._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS07._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS07._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS08._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS08._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS09._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS09._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS10._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS10._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS01._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS01._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS02._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS02._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS03._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS03._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS04._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS04._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS05._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS05._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS06._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS06._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 19 20:41:53 xd kernel: ACPI: 15 ACPI AML tables successfully acquired and loaded
> Jul 19 20:41:53 xd kernel: ACPI: Dynamic OEM Table Load:
> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0xFFFF997306398600 0001C6 (v02 PmRef Cpu0Psd 00003000 INTL 20160422)
> Jul 19 20:41:53 xd kernel: ACPI: \_SB_.PR00: _OSC native thermal LVT Acked
> Jul 19 20:41:53 xd kernel: ACPI: Dynamic OEM Table Load:
> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0xFFFF9971C0F91800 000386 (v02 PmRef Cpu0Cst 00003001 INTL 20160422)
> Jul 19 20:41:53 xd kernel: ACPI: Dynamic OEM Table Load:
> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0xFFFF9971C0C36800 0005C3 (v02 PmRef Cpu0Ist 00003000 INTL 20160422)
> Jul 19 20:41:53 xd kernel: ACPI: Dynamic OEM Table Load:
> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0xFFFF9971C0F96800 00028B (v02 PmRef Cpu0Hwp 00003000 INTL 20160422)
> Jul 19 20:41:53 xd kernel: ACPI: Dynamic OEM Table Load:
> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0xFFFF9971C0F87000 0008E7 (v02 PmRef ApIst 00003000 INTL 20160422)
> Jul 19 20:41:53 xd kernel: ACPI: Dynamic OEM Table Load:
> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0xFFFF9971C0C33800 00048A (v02 PmRef ApHwp 00003000 INTL 20160422)
> Jul 19 20:41:53 xd kernel: ACPI: Dynamic OEM Table Load:
> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0xFFFF9971C0C31000 0004D4 (v02 PmRef ApPsd 00003000 INTL 20160422)
> Jul 19 20:41:53 xd kernel: ACPI: Dynamic OEM Table Load:
> Jul 19 20:41:53 xd kernel: ACPI: SSDT 0xFFFF9971C0C30000 00048A (v02 PmRef ApCst 00003000 INTL 20160422)
> Jul 19 20:41:53 xd kernel: ACPI: EC: EC started
> Jul 19 20:41:53 xd kernel: ACPI: EC: interrupt blocked
> Jul 19 20:41:53 xd kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
> Jul 19 20:41:53 xd kernel: ACPI: \_SB_.PC00.LPCB.EC0_: Boot DSDT EC used to handle transactions
> Jul 19 20:41:53 xd kernel: ACPI: Interpreter enabled
> Jul 19 20:41:53 xd kernel: ACPI: (supports S0 S3 S4 S5)
> Jul 19 20:41:53 xd kernel: ACPI: Using IOAPIC for interrupt routing
> Jul 19 20:41:53 xd kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
> Jul 19 20:41:53 xd kernel: ACPI: Enabled 7 GPEs in block 00 to 7F
> Jul 19 20:41:53 xd kernel: ACPI: Power Resource [PCRP] (on)
> Jul 19 20:41:53 xd kernel: ACPI: Power Resource [V0PR] (on)
> Jul 19 20:41:53 xd kernel: ACPI: Power Resource [V1PR] (on)
> Jul 19 20:41:53 xd kernel: ACPI: Power Resource [V2PR] (on)
> Jul 19 20:41:53 xd kernel: ACPI: Power Resource [WRST] (on)
> Jul 19 20:41:53 xd kernel: ACPI: Power Resource [V0PR] (on)
> Jul 19 20:41:53 xd kernel: ACPI: Power Resource [V1PR] (on)
> Jul 19 20:41:53 xd kernel: ACPI: Power Resource [V2PR] (on)
> Jul 19 20:41:53 xd kernel: ACPI: Power Resource [V3PR] (on)
> Jul 19 20:41:53 xd kernel: ACPI: Power Resource [FN00] (off)
> Jul 19 20:41:53 xd kernel: ACPI: Power Resource [FN01] (off)
> Jul 19 20:41:53 xd kernel: ACPI: Power Resource [FN02] (off)
> Jul 19 20:41:53 xd kernel: ACPI: Power Resource [FN03] (off)
> Jul 19 20:41:53 xd kernel: ACPI: Power Resource [FN04] (off)
> Jul 19 20:41:53 xd kernel: ACPI: Power Resource [PIN] (off)
> Jul 19 20:41:53 xd kernel: ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-e0])
> Jul 19 20:41:53 xd kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
> Jul 19 20:41:53 xd kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR]
> Jul 19 20:41:53 xd kernel: PCI host bridge to bus 0000:00
> Jul 19 20:41:53 xd kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
> Jul 19 20:41:53 xd kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
> Jul 19 20:41:53 xd kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
> Jul 19 20:41:53 xd kernel: pci_bus 0000:00: root bus resource [mem 0x4f800000-0xbfffffff window]
> Jul 19 20:41:53 xd kernel: pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
> Jul 19 20:41:53 xd kernel: pci_bus 0000:00: root bus resource [bus 00-e0]
> Jul 19 20:41:53 xd kernel: pci 0000:00:00.0: [8086:9a14] type 00 class 0x060000
> Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: [8086:9a49] type 00 class 0x030000
> Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: reg 0x10: [mem 0x6014000000-0x6014ffffff 64bit]
> Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: reg 0x18: [mem 0x4000000000-0x400fffffff 64bit pref]
> Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: reg 0x20: [io 0x5000-0x503f]
> Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: BAR 2: assigned to efifb
> Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: DMAR: Skip IOMMU disabling for graphics
> Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: reg 0x344: [mem 0x00000000-0x00ffffff 64bit]
> Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: VF(n) BAR0 space: [mem 0x00000000-0x06ffffff 64bit] (contains BAR0 for 7 VFs)
> Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: reg 0x34c: [mem 0x00000000-0x1fffffff 64bit pref]
> Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: VF(n) BAR2 space: [mem 0x00000000-0xdfffffff 64bit pref] (contains BAR2 for 7 VFs)
> Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: [8086:9a09] type 01 class 0x060400
> Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
> Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: PTM enabled (root), 4ns granularity
> Jul 19 20:41:53 xd kernel: pci 0000:00:08.0: [8086:9a11] type 00 class 0x088000
> Jul 19 20:41:53 xd kernel: pci 0000:00:08.0: reg 0x10: [mem 0x601540f000-0x601540ffff 64bit]
> Jul 19 20:41:53 xd kernel: pci 0000:00:0e.0: [8086:9a0b] type 00 class 0x010400
> Jul 19 20:41:53 xd kernel: pci 0000:00:0e.0: reg 0x10: [mem 0x6012000000-0x6013ffffff 64bit]
> Jul 19 20:41:53 xd kernel: pci 0000:00:0e.0: reg 0x18: [mem 0x50000000-0x51ffffff]
> Jul 19 20:41:53 xd kernel: pci 0000:00:0e.0: reg 0x20: [mem 0x6015300000-0x60153fffff 64bit]
> Jul 19 20:41:53 xd kernel: pci 0000:00:14.0: [8086:a0ed] type 00 class 0x0c0330
> Jul 19 20:41:53 xd kernel: pci 0000:00:14.0: reg 0x10: [mem 0x53180000-0x5318ffff 64bit]
> Jul 19 20:41:53 xd kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
> Jul 19 20:41:53 xd kernel: pci 0000:00:14.2: [8086:a0ef] type 00 class 0x050000
> Jul 19 20:41:53 xd kernel: pci 0000:00:14.2: reg 0x10: [mem 0x6015404000-0x6015407fff 64bit]
> Jul 19 20:41:53 xd kernel: pci 0000:00:14.2: reg 0x18: [mem 0x601540e000-0x601540efff 64bit]
> Jul 19 20:41:53 xd kernel: pci 0000:00:15.0: [8086:a0e8] type 00 class 0x0c8000
> Jul 19 20:41:53 xd kernel: pci 0000:00:15.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
> Jul 19 20:41:53 xd kernel: pci 0000:00:15.3: [8086:a0eb] type 00 class 0x0c8000
> Jul 19 20:41:53 xd kernel: pci 0000:00:15.3: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
> Jul 19 20:41:53 xd kernel: pci 0000:00:16.0: [8086:a0e0] type 00 class 0x078000
> Jul 19 20:41:53 xd kernel: pci 0000:00:16.0: reg 0x10: [mem 0x601540b000-0x601540bfff 64bit]
> Jul 19 20:41:53 xd kernel: pci 0000:00:16.0: PME# supported from D3hot
> Jul 19 20:41:53 xd kernel: pci 0000:00:17.0: [8086:09ab] type 00 class 0x088000
> Jul 19 20:41:53 xd kernel: pci 0000:00:19.0: [8086:a0c5] type 00 class 0x0c8000
> Jul 19 20:41:53 xd kernel: pci 0000:00:19.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
> Jul 19 20:41:53 xd kernel: pci 0000:00:19.1: [8086:a0c6] type 00 class 0x0c8000
> Jul 19 20:41:53 xd kernel: pci 0000:00:19.1: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: [8086:a0b0] type 01 class 0x060400
> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: PTM enabled (root), 4ns granularity
> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.1: [8086:a0b1] type 01 class 0x060400
> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.1: PME# supported from D0 D3hot D3cold
> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.1: PTM enabled (root), 4ns granularity
> Jul 19 20:41:53 xd kernel: pci 0000:00:1f.0: [8086:a082] type 00 class 0x060100
> Jul 19 20:41:53 xd kernel: pci 0000:00:1f.3: [8086:a0c8] type 00 class 0x040100
> Jul 19 20:41:53 xd kernel: pci 0000:00:1f.3: reg 0x10: [mem 0x6015400000-0x6015403fff 64bit]
> Jul 19 20:41:53 xd kernel: pci 0000:00:1f.3: reg 0x20: [mem 0x6015200000-0x60152fffff 64bit]
> Jul 19 20:41:53 xd kernel: pci 0000:00:1f.3: PME# supported from D3hot D3cold
> Jul 19 20:41:53 xd kernel: pci 0000:00:1f.4: [8086:a0a3] type 00 class 0x0c0500
> Jul 19 20:41:53 xd kernel: pci 0000:00:1f.4: reg 0x10: [mem 0x6015408000-0x60154080ff 64bit]
> Jul 19 20:41:53 xd kernel: pci 0000:00:1f.4: reg 0x20: [io 0xefa0-0xefbf]
> Jul 19 20:41:53 xd kernel: pci 0000:00:1f.5: [8086:a0a4] type 00 class 0x0c8000
> Jul 19 20:41:53 xd kernel: pci 0000:00:1f.5: reg 0x10: [mem 0xfe010000-0xfe010fff]
> Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: [10de:1f97] type 00 class 0x030200
> Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: reg 0x10: [mem 0x52000000-0x52ffffff]
> Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: reg 0x14: [mem 0x6000000000-0x600fffffff 64bit pref]
> Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: reg 0x1c: [mem 0x6010000000-0x6011ffffff 64bit pref]
> Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: reg 0x24: [io 0x4000-0x407f]
> Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
> Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
> Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: 63.012 Gb/s available PCIe bandwidth, limited by 16.0 GT/s PCIe x4 link at 0000:00:06.0 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
> Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: PCI bridge to [bus 01]
> Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: bridge window [io 0x4000-0x4fff]
> Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: bridge window [mem 0x52000000-0x52ffffff]
> Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: bridge window [mem 0x6000000000-0x6011ffffff 64bit pref]
> Jul 19 20:41:53 xd kernel: pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000
> Jul 19 20:41:53 xd kernel: pci 0000:02:00.0: reg 0x10: [io 0x3000-0x30ff]
> Jul 19 20:41:53 xd kernel: pci 0000:02:00.0: reg 0x18: [mem 0x53004000-0x53004fff 64bit]
> Jul 19 20:41:53 xd kernel: pci 0000:02:00.0: reg 0x20: [mem 0x53000000-0x53003fff 64bit]
> Jul 19 20:41:53 xd kernel: pci 0000:02:00.0: supports D1 D2
> Jul 19 20:41:53 xd kernel: pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: PCI bridge to [bus 02]
> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: bridge window [io 0x3000-0x3fff]
> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: bridge window [mem 0x53000000-0x530fffff]
> Jul 19 20:41:53 xd kernel: pci 0000:03:00.0: [14c3:7961] type 00 class 0x028000
> Jul 19 20:41:53 xd kernel: pci 0000:03:00.0: reg 0x10: [mem 0x6015000000-0x60150fffff 64bit pref]
> Jul 19 20:41:53 xd kernel: pci 0000:03:00.0: reg 0x18: [mem 0x6015100000-0x6015103fff 64bit pref]
> Jul 19 20:41:53 xd kernel: pci 0000:03:00.0: reg 0x20: [mem 0x6015104000-0x6015104fff 64bit pref]
> Jul 19 20:41:53 xd kernel: pci 0000:03:00.0: supports D1 D2
> Jul 19 20:41:53 xd kernel: pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.1: PCI bridge to [bus 03]
> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.1: bridge window [mem 0x6015000000-0x60151fffff 64bit pref]
> Jul 19 20:41:53 xd kernel: ACPI: EC: interrupt unblocked
> Jul 19 20:41:53 xd kernel: ACPI: EC: event unblocked
> Jul 19 20:41:53 xd kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
> Jul 19 20:41:53 xd kernel: ACPI: EC: GPE=0x6e
> Jul 19 20:41:53 xd kernel: ACPI: \_SB_.PC00.LPCB.EC0_: Boot DSDT EC initialization complete
> Jul 19 20:41:53 xd kernel: ACPI: \_SB_.PC00.LPCB.EC0_: EC: Used to handle transactions and events
> Jul 19 20:41:53 xd kernel: iommu: Default domain type: Translated
> Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: vgaarb: setting as boot VGA device
> Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
> Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: vgaarb: bridge control possible
> Jul 19 20:41:53 xd kernel: vgaarb: loaded
> Jul 19 20:41:53 xd kernel: EDAC MC: Ver: 3.0.0
> Jul 19 20:41:53 xd kernel: Registered efivars operations
> Jul 19 20:41:53 xd kernel: NetLabel: Initializing
> Jul 19 20:41:53 xd kernel: NetLabel: domain hash size = 128
> Jul 19 20:41:53 xd kernel: NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
> Jul 19 20:41:53 xd kernel: NetLabel: unlabeled traffic allowed by default
> Jul 19 20:41:53 xd kernel: PCI: Using ACPI for IRQ routing
> Jul 19 20:41:53 xd kernel: PCI: pci_cache_line_size set to 64 bytes
> Jul 19 20:41:53 xd kernel: pci 0000:00:1f.5: can't claim BAR 0 [mem 0xfe010000-0xfe010fff]: no compatible bridge window
> Jul 19 20:41:53 xd kernel: e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
> Jul 19 20:41:53 xd kernel: e820: reserve RAM buffer [mem 0x3bee4000-0x3bffffff]
> Jul 19 20:41:53 xd kernel: e820: reserve RAM buffer [mem 0x3bf66000-0x3bffffff]
> Jul 19 20:41:53 xd kernel: e820: reserve RAM buffer [mem 0x3bf69000-0x3bffffff]
> Jul 19 20:41:53 xd kernel: e820: reserve RAM buffer [mem 0x3fd99000-0x3fffffff]
> Jul 19 20:41:53 xd kernel: e820: reserve RAM buffer [mem 0x424af000-0x43ffffff]
> Jul 19 20:41:53 xd kernel: e820: reserve RAM buffer [mem 0x44c00000-0x47ffffff]
> Jul 19 20:41:53 xd kernel: e820: reserve RAM buffer [mem 0x4b0800000-0x4b3ffffff]
> Jul 19 20:41:53 xd kernel: clocksource: Switched to clocksource tsc-early
> Jul 19 20:41:53 xd kernel: VFS: Disk quotas dquot_6.6.0
> Jul 19 20:41:53 xd kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
> Jul 19 20:41:53 xd kernel: AppArmor: AppArmor Filesystem Enabled
> Jul 19 20:41:53 xd kernel: pnp: PnP ACPI init
> Jul 19 20:41:53 xd kernel: system 00:00: [io 0x0680-0x069f] has been reserved
> Jul 19 20:41:53 xd kernel: system 00:00: [io 0x164e-0x164f] has been reserved
> Jul 19 20:41:53 xd kernel: system 00:00: [io 0xfd60-0xfd63] has been reserved
> Jul 19 20:41:53 xd kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
> Jul 19 20:41:53 xd kernel: pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
> Jul 19 20:41:53 xd kernel: system 00:02: [io 0x1854-0x1857] has been reserved
> Jul 19 20:41:53 xd kernel: system 00:02: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
> Jul 19 20:41:53 xd kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0303 (active)
> Jul 19 20:41:53 xd kernel: pnp 00:04: disabling [mem 0xc0000000-0xcfffffff] because it overlaps 0000:00:02.0 BAR 9 [mem 0x00000000-0xdfffffff 64bit pref]
> Jul 19 20:41:53 xd kernel: system 00:04: [mem 0xfedc0000-0xfedc7fff] has been reserved
> Jul 19 20:41:53 xd kernel: system 00:04: [mem 0xfeda0000-0xfeda0fff] has been reserved
> Jul 19 20:41:53 xd kernel: system 00:04: [mem 0xfeda1000-0xfeda1fff] has been reserved
> Jul 19 20:41:53 xd kernel: system 00:04: [mem 0xfed20000-0xfed7ffff] could not be reserved
> Jul 19 20:41:53 xd kernel: system 00:04: [mem 0xfed90000-0xfed93fff] could not be reserved
> Jul 19 20:41:53 xd kernel: system 00:04: [mem 0xfed45000-0xfed8ffff] could not be reserved
> Jul 19 20:41:53 xd kernel: system 00:04: [mem 0xfee00000-0xfeefffff] has been reserved
> Jul 19 20:41:53 xd kernel: system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
> Jul 19 20:41:53 xd kernel: system 00:05: [io 0x1800-0x18fe] could not be reserved
> Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xfe000000-0xfe01ffff] could not be reserved
> Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xfe04c000-0xfe04ffff] has been reserved
> Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xfe050000-0xfe0affff] has been reserved
> Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xfe0d0000-0xfe0fffff] has been reserved
> Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xfe200000-0xfe7fffff] has been reserved
> Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xff000000-0xffffffff] could not be reserved
> Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xfd000000-0xfd68ffff] has been reserved
> Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xfd6b0000-0xfd6cffff] has been reserved
> Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xfd6f0000-0xfdffffff] has been reserved
> Jul 19 20:41:53 xd kernel: system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
> Jul 19 20:41:53 xd kernel: system 00:06: [io 0x2000-0x20fe] has been reserved
> Jul 19 20:41:53 xd kernel: system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
> Jul 19 20:41:53 xd kernel: system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
> Jul 19 20:41:53 xd kernel: pnp: PnP ACPI: found 8 devices
> Jul 19 20:41:53 xd kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
> Jul 19 20:41:53 xd kernel: NET: Registered protocol family 2
> Jul 19 20:41:53 xd kernel: IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
> Jul 19 20:41:53 xd kernel: tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
> Jul 19 20:41:53 xd kernel: TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
> Jul 19 20:41:53 xd kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
> Jul 19 20:41:53 xd kernel: TCP: Hash tables configured (established 131072 bind 65536)
> Jul 19 20:41:53 xd kernel: UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
> Jul 19 20:41:53 xd kernel: UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
> Jul 19 20:41:53 xd kernel: NET: Registered protocol family 1
> Jul 19 20:41:53 xd kernel: NET: Registered protocol family 44
> Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
> Jul 19 20:41:53 xd kernel: pci_bus 0000:00: max bus depth: 1 pci_try_num: 2
> Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: BAR 9: assigned [mem 0x4020000000-0x40ffffffff 64bit pref]
> Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: BAR 7: assigned [mem 0x4010000000-0x4016ffffff 64bit]
> Jul 19 20:41:53 xd kernel: pci 0000:00:15.0: BAR 0: assigned [mem 0x4017000000-0x4017000fff 64bit]
> Jul 19 20:41:53 xd kernel: pci 0000:00:15.3: BAR 0: assigned [mem 0x4017001000-0x4017001fff 64bit]
> Jul 19 20:41:53 xd kernel: pci 0000:00:19.0: BAR 0: assigned [mem 0x4017002000-0x4017002fff 64bit]
> Jul 19 20:41:53 xd kernel: pci 0000:00:19.1: BAR 0: assigned [mem 0x4017003000-0x4017003fff 64bit]
> Jul 19 20:41:53 xd kernel: pci 0000:00:1f.5: BAR 0: assigned [mem 0x4f800000-0x4f800fff]
> Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: BAR 6: no space for [mem size 0x00080000 pref]
> Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: BAR 6: failed to assign [mem size 0x00080000 pref]
> Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: PCI bridge to [bus 01]
> Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: bridge window [io 0x4000-0x4fff]
> Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: bridge window [mem 0x52000000-0x52ffffff]
> Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: bridge window [mem 0x6000000000-0x6011ffffff 64bit pref]
> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: PCI bridge to [bus 02]
> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: bridge window [io 0x3000-0x3fff]
> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: bridge window [mem 0x53000000-0x530fffff]
> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.1: PCI bridge to [bus 03]
> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.1: bridge window [mem 0x6015000000-0x60151fffff 64bit pref]
> Jul 19 20:41:53 xd kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
> Jul 19 20:41:53 xd kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
> Jul 19 20:41:53 xd kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
> Jul 19 20:41:53 xd kernel: pci_bus 0000:00: resource 7 [mem 0x4f800000-0xbfffffff window]
> Jul 19 20:41:53 xd kernel: pci_bus 0000:00: resource 8 [mem 0x4000000000-0x7fffffffff window]
> Jul 19 20:41:53 xd kernel: pci_bus 0000:01: resource 0 [io 0x4000-0x4fff]
> Jul 19 20:41:53 xd kernel: pci_bus 0000:01: resource 1 [mem 0x52000000-0x52ffffff]
> Jul 19 20:41:53 xd kernel: pci_bus 0000:01: resource 2 [mem 0x6000000000-0x6011ffffff 64bit pref]
> Jul 19 20:41:53 xd kernel: pci_bus 0000:02: resource 0 [io 0x3000-0x3fff]
> Jul 19 20:41:53 xd kernel: pci_bus 0000:02: resource 1 [mem 0x53000000-0x530fffff]
> Jul 19 20:41:53 xd kernel: pci_bus 0000:03: resource 2 [mem 0x6015000000-0x60151fffff 64bit pref]
> Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
> Jul 19 20:41:53 xd kernel: PCI: CLS 64 bytes, default 64
> Jul 19 20:41:53 xd kernel: Trying to unpack rootfs image as initramfs...
> Jul 19 20:41:53 xd kernel: Freeing initrd memory: 43668K
> Jul 19 20:41:53 xd kernel: DMAR: No ATSR found
> Jul 19 20:41:53 xd kernel: DMAR: dmar0: Using Queued invalidation
> Jul 19 20:41:53 xd kernel: DMAR: dmar1: Using Queued invalidation
> Jul 19 20:41:53 xd kernel: pci 0000:00:00.0: Adding to iommu group 0
> Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: Adding to iommu group 1
> Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: Adding to iommu group 2
> Jul 19 20:41:53 xd kernel: pci 0000:00:08.0: Adding to iommu group 3
> Jul 19 20:41:53 xd kernel: pci 0000:00:0e.0: Adding to iommu group 4
> Jul 19 20:41:53 xd kernel: pci 0000:00:14.0: Adding to iommu group 5
> Jul 19 20:41:53 xd kernel: pci 0000:00:14.2: Adding to iommu group 5
> Jul 19 20:41:53 xd kernel: pci 0000:00:15.0: Adding to iommu group 6
> Jul 19 20:41:53 xd kernel: pci 0000:00:15.3: Adding to iommu group 6
> Jul 19 20:41:53 xd kernel: pci 0000:00:16.0: Adding to iommu group 7
> Jul 19 20:41:53 xd kernel: pci 0000:00:17.0: Adding to iommu group 8
> Jul 19 20:41:53 xd kernel: pci 0000:00:19.0: Adding to iommu group 9
> Jul 19 20:41:53 xd kernel: pci 0000:00:19.1: Adding to iommu group 9
> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: Adding to iommu group 10
> Jul 19 20:41:53 xd kernel: pci 0000:00:1d.1: Adding to iommu group 11
> Jul 19 20:41:53 xd kernel: pci 0000:00:1f.0: Adding to iommu group 12
> Jul 19 20:41:53 xd kernel: pci 0000:00:1f.3: Adding to iommu group 12
> Jul 19 20:41:53 xd kernel: pci 0000:00:1f.4: Adding to iommu group 12
> Jul 19 20:41:53 xd kernel: pci 0000:00:1f.5: Adding to iommu group 12
> Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: Adding to iommu group 13
> Jul 19 20:41:53 xd kernel: pci 0000:02:00.0: Adding to iommu group 14
> Jul 19 20:41:53 xd kernel: pci 0000:03:00.0: Adding to iommu group 15
> Jul 19 20:41:53 xd kernel: DMAR: Intel(R) Virtualization Technology for Directed I/O
> Jul 19 20:41:53 xd kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
> Jul 19 20:41:53 xd kernel: software IO TLB: mapped [mem 0x0000000037663000-0x000000003b663000] (64MB)
> Jul 19 20:41:53 xd kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x22df1149949, max_idle_ns: 440795312789 ns
> Jul 19 20:41:53 xd kernel: clocksource: Switched to clocksource tsc
> Jul 19 20:41:53 xd kernel: Initialise system trusted keyrings
> Jul 19 20:41:53 xd kernel: Key type blacklist registered
> Jul 19 20:41:53 xd kernel: workingset: timestamp_bits=36 max_order=22 bucket_order=0
> Jul 19 20:41:53 xd kernel: zbud: loaded
> Jul 19 20:41:53 xd kernel: integrity: Platform Keyring initialized
> Jul 19 20:41:53 xd kernel: Key type asymmetric registered
> Jul 19 20:41:53 xd kernel: Asymmetric key parser 'x509' registered
> Jul 19 20:41:53 xd kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
> Jul 19 20:41:53 xd kernel: io scheduler mq-deadline registered
> Jul 19 20:41:53 xd kernel: pcieport 0000:00:06.0: PME: Signaling with IRQ 122
> Jul 19 20:41:53 xd kernel: pcieport 0000:00:06.0: AER: enabled with IRQ 122
> Jul 19 20:41:53 xd kernel: pcieport 0000:00:06.0: DPC: enabled with IRQ 122
> Jul 19 20:41:53 xd kernel: pcieport 0000:00:06.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
> Jul 19 20:41:53 xd kernel: pcieport 0000:00:1d.0: PME: Signaling with IRQ 123
> Jul 19 20:41:53 xd kernel: pcieport 0000:00:1d.0: AER: enabled with IRQ 123
> Jul 19 20:41:53 xd kernel: pcieport 0000:00:1d.0: DPC: enabled with IRQ 123
> Jul 19 20:41:53 xd kernel: pcieport 0000:00:1d.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
> Jul 19 20:41:53 xd kernel: pcieport 0000:00:1d.1: PME: Signaling with IRQ 124
> Jul 19 20:41:53 xd kernel: pcieport 0000:00:1d.1: AER: enabled with IRQ 124
> Jul 19 20:41:53 xd kernel: pcieport 0000:00:1d.1: DPC: enabled with IRQ 124
> Jul 19 20:41:53 xd kernel: pcieport 0000:00:1d.1: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
> Jul 19 20:41:53 xd kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
> Jul 19 20:41:53 xd kernel: efifb: probing for efifb
> Jul 19 20:41:53 xd kernel: efifb: framebuffer at 0x4000000000, using 8128k, total 8128k
> Jul 19 20:41:53 xd kernel: efifb: mode is 1920x1080x32, linelength=7680, pages=1
> Jul 19 20:41:53 xd kernel: efifb: scrolling: redraw
> Jul 19 20:41:53 xd kernel: efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
> Jul 19 20:41:53 xd kernel: Console: switching to colour frame buffer device 240x67
> Jul 19 20:41:53 xd kernel: fb0: EFI VGA frame buffer device
> Jul 19 20:41:53 xd kernel: intel_idle: MWAIT substates: 0x11121020
> Jul 19 20:41:53 xd kernel: Monitor-Mwait will be used to enter C-1 state
> Jul 19 20:41:53 xd kernel: Monitor-Mwait will be used to enter C-2 state
> Jul 19 20:41:53 xd kernel: Monitor-Mwait will be used to enter C-3 state
> Jul 19 20:41:53 xd kernel: ACPI: \_SB_.PR00: Found 3 idle states
> Jul 19 20:41:53 xd kernel: intel_idle: v0.5.1 model 0x8C
> Jul 19 20:41:53 xd kernel: intel_idle: Local APIC timer is reliable in all C-states
> Jul 19 20:41:53 xd kernel: thermal LNXTHERM:00: registered as thermal_zone0
> Jul 19 20:41:53 xd kernel: ACPI: Thermal Zone [TZ00] (28 C)
> Jul 19 20:41:53 xd kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
> Jul 19 20:41:53 xd kernel: hpet_acpi_add: no address or irqs in _CRS
> Jul 19 20:41:53 xd kernel: Linux agpgart interface v0.103
> Jul 19 20:41:53 xd kernel: AMD-Vi: AMD IOMMUv2 functionality not available on this system - This is not a bug.
> Jul 19 20:41:53 xd kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
> Jul 19 20:41:53 xd kernel: i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
> Jul 19 20:41:53 xd kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
> Jul 19 20:41:53 xd kernel: mousedev: PS/2 mouse device common for all mice
> Jul 19 20:41:53 xd kernel: rtc_cmos 00:01: RTC can wake from S4
> Jul 19 20:41:53 xd kernel: rtc_cmos 00:01: registered as rtc0
> Jul 19 20:41:53 xd kernel: rtc_cmos 00:01: setting system clock to 2022-07-19T19:41:51 UTC (1658259711)
> Jul 19 20:41:53 xd kernel: rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram
> Jul 19 20:41:53 xd kernel: intel_pstate: Intel P-state driver initializing
> Jul 19 20:41:53 xd kernel: intel_pstate: HWP enabled
> Jul 19 20:41:53 xd kernel: ledtrig-cpu: registered to indicate activity on CPUs
> Jul 19 20:41:53 xd kernel: NET: Registered protocol family 10
> Jul 19 20:41:53 xd kernel: Segment Routing with IPv6
> Jul 19 20:41:53 xd kernel: mip6: Mobile IPv6
> Jul 19 20:41:53 xd kernel: NET: Registered protocol family 17
> Jul 19 20:41:53 xd kernel: mpls_gso: MPLS GSO support
> Jul 19 20:41:53 xd kernel: microcode: sig=0x806c1, pf=0x80, revision=0x8a
> Jul 19 20:41:53 xd kernel: microcode: Microcode Update Driver: v2.2.
> Jul 19 20:41:53 xd kernel: resctrl: L2 allocation detected
> Jul 19 20:41:53 xd kernel: resctrl: L2DATA allocation detected
> Jul 19 20:41:53 xd kernel: resctrl: L2CODE allocation detected
> Jul 19 20:41:53 xd kernel: IPI shorthand broadcast: enabled
> Jul 19 20:41:53 xd kernel: sched_clock: Marking stable (804088381, 6362109)->(820685197, -10234707)
> Jul 19 20:41:53 xd kernel: registered taskstats version 1
> Jul 19 20:41:53 xd kernel: Loading compiled-in X.509 certificates
> Jul 19 20:41:53 xd kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
> Jul 19 20:41:53 xd kernel: Loaded X.509 cert 'Debian Secure Boot CA: 6ccece7e4c6c0d1f6149f3dd27dfcc5cbb419ea1'
> Jul 19 20:41:53 xd kernel: Loaded X.509 cert 'Debian Secure Boot Signer 2021 - linux: 4b6ef5abca669825178e052c84667ccbc0531f8c'
> Jul 19 20:41:53 xd kernel: zswap: loaded using pool lzo/zbud
> Jul 19 20:41:53 xd kernel: Key type ._fscrypt registered
> Jul 19 20:41:53 xd kernel: Key type .fscrypt registered
> Jul 19 20:41:53 xd kernel: Key type fscrypt-provisioning registered
> Jul 19 20:41:53 xd kernel: AppArmor: AppArmor sha1 policy hashing enabled
> Jul 19 20:41:53 xd kernel: Freeing unused kernel image (initmem) memory: 2424K
> Jul 19 20:41:53 xd kernel: Write protecting the kernel read-only data: 22528k
> Jul 19 20:41:53 xd kernel: Freeing unused kernel image (text/rodata gap) memory: 2040K
> Jul 19 20:41:53 xd kernel: Freeing unused kernel image (rodata/data gap) memory: 624K
> Jul 19 20:41:53 xd kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
> Jul 19 20:41:53 xd kernel: Run /init as init process
> Jul 19 20:41:53 xd kernel: with arguments:
> Jul 19 20:41:53 xd kernel: /init
> Jul 19 20:41:53 xd kernel: with environment:
> Jul 19 20:41:53 xd kernel: HOME=/
> Jul 19 20:41:53 xd kernel: TERM=linux
> Jul 19 20:41:53 xd kernel: BOOT_IMAGE=/vmlinuz-5.10.0-16-amd64
> Jul 19 20:41:53 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
> Jul 19 20:41:53 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
> Jul 19 20:41:53 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
> Jul 19 20:41:53 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
> Jul 19 20:41:53 xd kernel: acpi PNP0C14:03: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
> Jul 19 20:41:53 xd kernel: acpi PNP0C14:04: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
> Jul 19 20:41:53 xd kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:21/PNP0C0D:00/input/input1
> Jul 19 20:41:53 xd kernel: ACPI: Lid Switch [LID0]
> Jul 19 20:41:53 xd kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2
> Jul 19 20:41:53 xd kernel: ACPI: Sleep Button [SLPB]
> Jul 19 20:41:53 xd kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input3
> Jul 19 20:41:53 xd kernel: battery: ACPI: Battery Slot [BAT1] (battery present)
> Jul 19 20:41:53 xd kernel: vmd 0000:00:0e.0: PCI host bridge to bus 10000:e0
> Jul 19 20:41:53 xd kernel: pci_bus 10000:e0: root bus resource [bus e0-ff]
> Jul 19 20:41:53 xd kernel: pci_bus 10000:e0: root bus resource [mem 0x50000000-0x51ffffff]
> Jul 19 20:41:53 xd kernel: pci_bus 10000:e0: root bus resource [mem 0x6015302000-0x60153fffff 64bit]
> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: [8086:a0d3] type 00 class 0x010601
> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: reg 0x10: [mem 0x00000000-0x00001fff]
> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: reg 0x14: [mem 0x00000000-0x000000ff]
> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: reg 0x18: [io 0x0000-0x0007]
> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: reg 0x1c: [io 0x0000-0x0003]
> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: reg 0x20: [io 0x0000-0x001f]
> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: reg 0x24: [mem 0x50000000-0x500007ff]
> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: PME# supported from D3hot
> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: Adding to iommu group 4
> Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.0: [8086:09ab] type 00 class 0x088000
> Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.0: Adding to iommu group 4
> Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: [8086:a0bc] type 01 class 0x060400
> Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: PME# supported from D0 D3hot D3cold
> Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: PTM enabled (root), 4ns granularity
> Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: Adding to iommu group 4
> Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: Primary bus is hard wired to 0
> Jul 19 20:41:53 xd kernel: pci 10000:e1:00.0: [2646:500c] type 00 class 0x010802
> Jul 19 20:41:53 xd kernel: pci 10000:e1:00.0: reg 0x10: [mem 0x50100000-0x50103fff 64bit]
> Jul 19 20:41:53 xd kernel: pci 10000:e1:00.0: Adding to iommu group 4
> Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: PCI bridge to [bus e1]
> Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: bridge window [io 0x0000-0x0fff]
> Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: bridge window [mem 0x50100000-0x501fffff]
> Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: Primary bus is hard wired to 0
> Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: BAR 14: assigned [mem 0x50000000-0x500fffff]
> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 0: assigned [mem 0x50100000-0x50101fff]
> Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: BAR 13: no space for [io size 0x1000]
> Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: BAR 13: failed to assign [io size 0x1000]
> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 5: assigned [mem 0x50102000-0x501027ff]
> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 1: assigned [mem 0x50102800-0x501028ff]
> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 4: no space for [io size 0x0020]
> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 4: failed to assign [io size 0x0020]
> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 2: no space for [io size 0x0008]
> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 2: failed to assign [io size 0x0008]
> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 3: no space for [io size 0x0004]
> Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 3: failed to assign [io size 0x0004]
> Jul 19 20:41:53 xd kernel: pci 10000:e1:00.0: BAR 0: assigned [mem 0x50000000-0x50003fff 64bit]
> Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: PCI bridge to [bus e1]
> Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: bridge window [mem 0x50000000-0x500fffff]
> Jul 19 20:41:53 xd kernel: pcieport 10000:e0:1c.4: can't derive routing for PCI INT A
> Jul 19 20:41:53 xd kernel: pcieport 10000:e0:1c.4: PCI INT A: no GSI
> Jul 19 20:41:53 xd kernel: pcieport 10000:e0:1c.4: PME: Signaling with IRQ 144
> Jul 19 20:41:53 xd kernel: pcieport 10000:e0:1c.4: AER: enabled with IRQ 144
> Jul 19 20:41:53 xd kernel: pcieport 10000:e0:1c.4: DPC: enabled with IRQ 144
> Jul 19 20:41:53 xd kernel: pcieport 10000:e0:1c.4: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
> Jul 19 20:41:53 xd kernel: vmd 0000:00:0e.0: Bound to PCI domain 10000
> Jul 19 20:41:53 xd kernel: i801_smbus 0000:00:1f.4: SPD Write Disable is set
> Jul 19 20:41:53 xd kernel: i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
> Jul 19 20:41:53 xd kernel: i2c i2c-0: 2/2 memory slots populated (from DMI)
> Jul 19 20:41:53 xd kernel: i2c i2c-0: Successfully instantiated SPD at 0x50
> Jul 19 20:41:53 xd kernel: hid: raw HID events driver (C) Jiri Kosina
> Jul 19 20:41:53 xd kernel: ACPI: Power Button [PWRB]
> Jul 19 20:41:53 xd kernel: ACPI: bus type USB registered
> Jul 19 20:41:53 xd kernel: usbcore: registered new interface driver usbfs
> Jul 19 20:41:53 xd kernel: usbcore: registered new interface driver hub
> Jul 19 20:41:53 xd kernel: usbcore: registered new device driver usb
> Jul 19 20:41:53 xd kernel: SCSI subsystem initialized
> Jul 19 20:41:53 xd kernel: intel-lpss 0000:00:15.0: enabling device (0004 -> 0006)
> Jul 19 20:41:53 xd kernel: idma64 idma64.0: Found Intel integrated DMA 64-bit
> Jul 19 20:41:53 xd kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
> Jul 19 20:41:53 xd kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
> Jul 19 20:41:53 xd kernel: xhci_hcd 0000:00:14.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000000009810
> Jul 19 20:41:53 xd kernel: xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
> Jul 19 20:41:53 xd kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
> Jul 19 20:41:53 xd kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
> Jul 19 20:41:53 xd kernel: usb usb1: Product: xHCI Host Controller
> Jul 19 20:41:53 xd kernel: usb usb1: Manufacturer: Linux 5.10.0-16-amd64 xhci-hcd
> Jul 19 20:41:53 xd kernel: usb usb1: SerialNumber: 0000:00:14.0
> Jul 19 20:41:53 xd kernel: hub 1-0:1.0: USB hub found
> Jul 19 20:41:53 xd kernel: hub 1-0:1.0: 12 ports detected
> Jul 19 20:41:53 xd kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
> Jul 19 20:41:53 xd kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
> Jul 19 20:41:53 xd kernel: xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
> Jul 19 20:41:53 xd kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
> Jul 19 20:41:53 xd kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
> Jul 19 20:41:53 xd kernel: usb usb2: Product: xHCI Host Controller
> Jul 19 20:41:53 xd kernel: usb usb2: Manufacturer: Linux 5.10.0-16-amd64 xhci-hcd
> Jul 19 20:41:53 xd kernel: usb usb2: SerialNumber: 0000:00:14.0
> Jul 19 20:41:53 xd kernel: hub 2-0:1.0: USB hub found
> Jul 19 20:41:53 xd kernel: hub 2-0:1.0: 4 ports detected
> Jul 19 20:41:53 xd kernel: nvme nvme0: pci function 10000:e1:00.0
> Jul 19 20:41:53 xd kernel: pcieport 10000:e0:1c.4: can't derive routing for PCI INT A
> Jul 19 20:41:53 xd kernel: nvme 10000:e1:00.0: PCI INT A: no GSI
> Jul 19 20:41:53 xd kernel: libata version 3.00 loaded.
> Jul 19 20:41:53 xd kernel: nvme nvme0: missing or invalid SUBNQN field.
> Jul 19 20:41:53 xd kernel: nvme nvme0: Shutdown timeout set to 10 seconds
> Jul 19 20:41:53 xd kernel: r8169 0000:02:00.0 eth0: RTL8168h/8111h, 08:8f:c3:4f:86:c5, XID 541, IRQ 147
> Jul 19 20:41:53 xd kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
> Jul 19 20:41:53 xd kernel: nvme nvme0: 8/0/0 default/read/poll queues
> Jul 19 20:41:53 xd kernel: nvme0n1: p1 p2 p3 p4 p5
> Jul 19 20:41:53 xd kernel: intel-lpss 0000:00:15.3: enabling device (0004 -> 0006)
> Jul 19 20:41:53 xd kernel: idma64 idma64.1: Found Intel integrated DMA 64-bit
> Jul 19 20:41:53 xd kernel: i2c_hid i2c-ELAN0515:01: supply vdd not found, using dummy regulator
> Jul 19 20:41:53 xd kernel: i2c_hid i2c-ELAN0515:01: supply vddl not found, using dummy regulator
> Jul 19 20:41:53 xd kernel: intel-lpss 0000:00:19.0: enabling device (0004 -> 0006)
> Jul 19 20:41:53 xd kernel: idma64 idma64.2: Found Intel integrated DMA 64-bit
> Jul 19 20:41:53 xd kernel: intel-lpss 0000:00:19.1: enabling device (0004 -> 0006)
> Jul 19 20:41:53 xd kernel: idma64 idma64.3: Found Intel integrated DMA 64-bit
> Jul 19 20:41:53 xd kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
> Jul 19 20:41:53 xd kernel: input: ELAN0515:01 04F3:3142 Mouse as /devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input4
> Jul 19 20:41:53 xd kernel: input: ELAN0515:01 04F3:3142 Touchpad as /devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input6
> Jul 19 20:41:53 xd kernel: hid-generic 0018:04F3:3142.0001: input,hidraw0: I2C HID v1.00 Mouse [ELAN0515:01 04F3:3142] on i2c-ELAN0515:01
> Jul 19 20:41:53 xd kernel: ahci 10000:e0:17.0: version 3.0
> Jul 19 20:41:53 xd kernel: ahci 10000:e0:17.0: can't derive routing for PCI INT A
> Jul 19 20:41:53 xd kernel: ahci 10000:e0:17.0: PCI INT A: no GSI
> Jul 19 20:41:53 xd kernel: ahci 10000:e0:17.0: AHCI 0001.0301 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
> Jul 19 20:41:53 xd kernel: ahci 10000:e0:17.0: flags: 64bit ncq sntf pm clo only pio slum part deso sadm sds
> Jul 19 20:41:53 xd kernel: scsi host0: ahci
> Jul 19 20:41:53 xd kernel: scsi host1: ahci
> Jul 19 20:41:53 xd kernel: ata1: SATA max UDMA/133 abar m2048@0x50102000 port 0x50102100 irq 157
> Jul 19 20:41:53 xd kernel: ata2: SATA max UDMA/133 abar m2048@0x50102000 port 0x50102180 irq 157
> Jul 19 20:41:53 xd kernel: ACPI Warning: \_SB.PC00.GFX0._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20200925/nsarguments-61)
> Jul 19 20:41:53 xd kernel: ACPI Warning: \_SB.PC00.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20200925/nsarguments-61)
> Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: optimus capabilities: enabled, status dynamic power, hda bios codec supported
> Jul 19 20:41:53 xd kernel: VGA switcheroo: detected Optimus DSM method \_SB_.PC00.PEG0.PEGP handle
> Jul 19 20:41:53 xd kernel: nouveau: detected PR support, will not use DSM
> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: enabling device (0006 -> 0007)
> Jul 19 20:41:53 xd kernel: checking generic (4000000000 7f0000) vs hw (52000000 1000000)
> Jul 19 20:41:53 xd kernel: checking generic (4000000000 7f0000) vs hw (6000000000 10000000)
> Jul 19 20:41:53 xd kernel: checking generic (4000000000 7f0000) vs hw (6010000000 2000000)
> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: NVIDIA TU117 (167000a1)
> Jul 19 20:41:53 xd kernel: i915 0000:00:02.0: [drm] VT-d active for gfx access
> Jul 19 20:41:53 xd kernel: checking generic (4000000000 7f0000) vs hw (6014000000 1000000)
> Jul 19 20:41:53 xd kernel: checking generic (4000000000 7f0000) vs hw (4000000000 10000000)
> Jul 19 20:41:53 xd kernel: fb0: switching to inteldrmfb from EFI VGA
> Jul 19 20:41:53 xd kernel: Console: switching to colour dummy device 80x25
> Jul 19 20:41:53 xd kernel: i915 0000:00:02.0: vgaarb: deactivate vga console
> Jul 19 20:41:53 xd kernel: i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
> Jul 19 20:41:53 xd kernel: i915 0000:00:02.0: firmware: failed to load i915/tgl_dmc_ver2_08.bin (-2)
> Jul 19 20:41:53 xd kernel: firmware_class: See https://wiki.debian.org/Firmware for information about missing firmware
> Jul 19 20:41:53 xd kernel: i915 0000:00:02.0: Direct firmware load for i915/tgl_dmc_ver2_08.bin failed with error -2
> Jul 19 20:41:53 xd kernel: i915 0000:00:02.0: [drm] Failed to load DMC firmware i915/tgl_dmc_ver2_08.bin. Disabling runtime power management.
> Jul 19 20:41:53 xd kernel: i915 0000:00:02.0: [drm] DMC firmware homepage: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/i915
> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: bios: version 90.17.74.00.2f
> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: firmware: failed to load nvidia/tu117/nvdec/scrubber.bin (-2)
> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: firmware: failed to load nvidia/tu117/acr/bl.bin (-2)
> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: firmware: failed to load nvidia/tu117/acr/bl.bin (-2)
> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: firmware: failed to load nvidia/tu117/acr/unload_bl.bin (-2)
> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: pmu: firmware unavailable
> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: gr: firmware unavailable
> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: sec2: firmware unavailable
> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: fb: 2048 MiB GDDR5
> Jul 19 20:41:53 xd kernel: [TTM] Zone kernel: Available graphics memory: 8082824 KiB
> Jul 19 20:41:53 xd kernel: [TTM] Zone dma32: Available graphics memory: 2097152 KiB
> Jul 19 20:41:53 xd kernel: [TTM] Initializing pool allocator
> Jul 19 20:41:53 xd kernel: [TTM] Initializing DMA pool allocator
> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: DRM: VRAM: 2048 MiB
> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: DRM: GART: 536870912 MiB
> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: DRM: BIT table 'A' not found
> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: DRM: BIT table 'L' not found
> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: DRM: Pointer to TMDS table not found
> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: DRM: DCB version 4.1
> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: DRM: failed to create kernel channel, -22
> Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: DRM: MM: using COPY for buffer copies
> Jul 19 20:41:53 xd kernel: usb 1-5: new low-speed USB device number 2 using xhci_hcd
> Jul 19 20:41:53 xd kernel: [drm] Initialized nouveau 1.3.1 20120801 for 0000:01:00.0 on minor 1
> Jul 19 20:41:53 xd kernel: usb 1-5: New USB device found, idVendor=046d, idProduct=c077, bcdDevice=72.00
> Jul 19 20:41:53 xd kernel: usb 1-5: New USB device strings: Mfr=1, Product=2, SerialNumber=0
> Jul 19 20:41:53 xd kernel: usb 1-5: Product: USB Optical Mouse
> Jul 19 20:41:53 xd kernel: usb 1-5: Manufacturer: Logitech
> Jul 19 20:41:53 xd kernel: ata2: SATA link down (SStatus 0 SControl 300)
> Jul 19 20:41:53 xd kernel: ata1: SATA link down (SStatus 0 SControl 300)
> Jul 19 20:41:53 xd kernel: input: Logitech USB Optical Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.0/0003:046D:C077.0002/input/input7
> Jul 19 20:41:53 xd kernel: hid-generic 0003:046D:C077.0002: input,hidraw1: USB HID v1.11 Mouse [Logitech USB Optical Mouse] on usb-0000:00:14.0-5/input0
> Jul 19 20:41:53 xd kernel: usbcore: registered new interface driver usbhid
> Jul 19 20:41:53 xd kernel: usbhid: USB HID core driver
> Jul 19 20:41:53 xd kernel: usb 1-7: new full-speed USB device number 3 using xhci_hcd
> Jul 19 20:41:53 xd kernel: usb 1-7: New USB device found, idVendor=04f3, idProduct=0c4f, bcdDevice= 1.61
> Jul 19 20:41:53 xd kernel: usb 1-7: New USB device strings: Mfr=1, Product=2, SerialNumber=0
> Jul 19 20:41:53 xd kernel: usb 1-7: Product: ELAN:Fingerprint
> Jul 19 20:41:53 xd kernel: usb 1-7: Manufacturer: ELAN
> Jul 19 20:41:53 xd kernel: usb 1-8: new high-speed USB device number 4 using xhci_hcd
> Jul 19 20:41:53 xd kernel: usb 1-8: New USB device found, idVendor=0408, idProduct=a061, bcdDevice= 0.04
> Jul 19 20:41:53 xd kernel: usb 1-8: New USB device strings: Mfr=1, Product=2, SerialNumber=0
> Jul 19 20:41:53 xd kernel: usb 1-8: Product: HD User Facing
> Jul 19 20:41:53 xd kernel: usb 1-8: Manufacturer: SunplusIT Inc
> Jul 19 20:41:53 xd kernel: usb 1-10: new high-speed USB device number 5 using xhci_hcd
> Jul 19 20:41:53 xd kernel: usb 1-10: New USB device found, idVendor=04ca, idProduct=3802, bcdDevice= 1.00
> Jul 19 20:41:53 xd kernel: usb 1-10: New USB device strings: Mfr=5, Product=6, SerialNumber=7
> Jul 19 20:41:53 xd kernel: usb 1-10: Product: Wireless_Device
> Jul 19 20:41:53 xd kernel: usb 1-10: Manufacturer: MediaTek Inc.
> Jul 19 20:41:53 xd kernel: usb 1-10: SerialNumber: 000000000
> Jul 19 20:41:53 xd kernel: [drm] Initialized i915 1.6.0 20200917 for 0000:00:02.0 on minor 0
> Jul 19 20:41:53 xd kernel: [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
> Jul 19 20:41:53 xd kernel: ACPI: Video Device [PEGP] (multi-head: yes rom: no post: no)
> Jul 19 20:41:53 xd kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/LNXVIDEO:00/input/input8
> Jul 19 20:41:53 xd kernel: ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
> Jul 19 20:41:53 xd kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input9
> Jul 19 20:41:53 xd kernel: vga_switcheroo: enabled
> Jul 19 20:41:53 xd kernel: fbcon: i915drmfb (fb0) is primary device
> Jul 19 20:41:53 xd kernel: Console: switching to colour frame buffer device 240x67
> Jul 19 20:41:53 xd kernel: i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
> Jul 19 20:41:53 xd kernel: PM: Image not found (code -22)
> Jul 19 20:41:53 xd kernel: EXT4-fs (nvme0n1p3): mounting ext3 file system using the ext4 subsystem
> Jul 19 20:41:53 xd kernel: EXT4-fs (nvme0n1p3): mounted filesystem with ordered data mode. Opts: (null)
> Jul 19 20:41:53 xd kernel: Not activating Mandatory Access Control as /sbin/tomoyo-init does not exist.
> Jul 19 20:41:53 xd systemd[1]: Inserted module 'autofs4'
> Jul 19 20:41:53 xd systemd[1]: systemd 247.3-7 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=unified)
> Jul 19 20:41:53 xd systemd[1]: Detected architecture x86-64.
> Jul 19 20:41:53 xd systemd[1]: Set hostname to <xd>.
> Jul 19 20:41:53 xd systemd[1]: /lib/systemd/system/plymouth-start.service:16: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed.
> Jul 19 20:41:53 xd systemd[1]: Queued start job for default target Graphical Interface.
> Jul 19 20:41:53 xd systemd[1]: Created slice system-getty.slice.
> Jul 19 20:41:53 xd systemd[1]: Created slice system-modprobe.slice.
> Jul 19 20:41:53 xd systemd[1]: Created slice system-systemd\x2dfsck.slice.
> Jul 19 20:41:53 xd systemd[1]: Created slice User and Session Slice.
> Jul 19 20:41:53 xd systemd[1]: Started Forward Password Requests to Wall Directory Watch.
> Jul 19 20:41:53 xd systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
> Jul 19 20:41:53 xd systemd[1]: Reached target User and Group Name Lookups.
> Jul 19 20:41:53 xd systemd[1]: Reached target Remote File Systems.
> Jul 19 20:41:53 xd systemd[1]: Reached target Slices.
> Jul 19 20:41:53 xd systemd[1]: Listening on Device-mapper event daemon FIFOs.
> Jul 19 20:41:53 xd systemd[1]: Listening on LVM2 poll daemon socket.
> Jul 19 20:41:53 xd systemd[1]: Listening on Syslog Socket.
> Jul 19 20:41:53 xd systemd[1]: Listening on fsck to fsckd communication Socket.
> Jul 19 20:41:53 xd systemd[1]: Listening on initctl Compatibility Named Pipe.
> Jul 19 20:41:53 xd systemd[1]: Listening on Journal Audit Socket.
> Jul 19 20:41:53 xd systemd[1]: Listening on Journal Socket (/dev/log).
> Jul 19 20:41:53 xd systemd[1]: Listening on Journal Socket.
> Jul 19 20:41:53 xd systemd[1]: Listening on udev Control Socket.
> Jul 19 20:41:53 xd systemd[1]: Listening on udev Kernel Socket.
> Jul 19 20:41:53 xd systemd[1]: Mounting Huge Pages File System...
> Jul 19 20:41:53 xd systemd[1]: Mounting POSIX Message Queue File System...
> Jul 19 20:41:53 xd systemd[1]: Mounting Kernel Debug File System...
> Jul 19 20:41:53 xd systemd[1]: Mounting Kernel Trace File System...
> Jul 19 20:41:53 xd systemd[1]: Finished Availability of block devices.
> Jul 19 20:41:53 xd systemd[1]: Starting Set the console keyboard layout...
> Jul 19 20:41:53 xd systemd[1]: Starting Create list of static device nodes for the current kernel...
> Jul 19 20:41:53 xd systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
> Jul 19 20:41:53 xd systemd[1]: Starting Load Kernel Module configfs...
> Jul 19 20:41:53 xd systemd[1]: Starting Load Kernel Module drm...
> Jul 19 20:41:53 xd systemd[1]: Starting Load Kernel Module fuse...
> Jul 19 20:41:53 xd systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
> Jul 19 20:41:53 xd systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
> Jul 19 20:41:53 xd systemd[1]: Starting Journal Service...
> Jul 19 20:41:53 xd systemd[1]: Starting Load Kernel Modules...
> Jul 19 20:41:53 xd systemd[1]: Starting Remount Root and Kernel File Systems...
> Jul 19 20:41:53 xd systemd[1]: Starting Coldplug All udev Devices...
> Jul 19 20:41:53 xd systemd[1]: Mounted Huge Pages File System.
> Jul 19 20:41:53 xd systemd[1]: Mounted POSIX Message Queue File System.
> Jul 19 20:41:53 xd systemd[1]: Mounted Kernel Debug File System.
> Jul 19 20:41:53 xd systemd[1]: Mounted Kernel Trace File System.
> Jul 19 20:41:53 xd systemd[1]: Finished Create list of static device nodes for the current kernel.
> Jul 19 20:41:53 xd systemd[1]: modprobe@configfs.service: Succeeded.
> Jul 19 20:41:53 xd systemd[1]: Finished Load Kernel Module configfs.
> Jul 19 20:41:53 xd systemd[1]: modprobe@drm.service: Succeeded.
> Jul 19 20:41:53 xd systemd[1]: Finished Load Kernel Module drm.
> Jul 19 20:41:53 xd systemd[1]: Mounting Kernel Configuration File System...
> Jul 19 20:41:53 xd systemd[1]: Mounted Kernel Configuration File System.
> Jul 19 20:41:53 xd kernel: fuse: init (API version 7.32)
> Jul 19 20:41:53 xd systemd[1]: modprobe@fuse.service: Succeeded.
> Jul 19 20:41:53 xd systemd[1]: Finished Load Kernel Module fuse.
> Jul 19 20:41:53 xd systemd[1]: Mounting FUSE Control File System...
> Jul 19 20:41:53 xd kernel: EXT4-fs (nvme0n1p3): re-mounted. Opts: errors=remount-ro
> Jul 19 20:41:53 xd systemd[1]: Finished Remount Root and Kernel File Systems.
> Jul 19 20:41:53 xd systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
> Jul 19 20:41:53 xd systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped.
> Jul 19 20:41:53 xd systemd[1]: Starting Load/Save Random Seed...
> Jul 19 20:41:53 xd systemd[1]: Starting Create System Users...
> Jul 19 20:41:53 xd systemd[1]: Mounted FUSE Control File System.
> Jul 19 20:41:53 xd kernel: lp: driver loaded but no devices found
> Jul 19 20:41:53 xd systemd[1]: Finished Load/Save Random Seed.
> Jul 19 20:41:53 xd systemd[1]: Condition check resulted in First Boot Complete being skipped.
> Jul 19 20:41:53 xd kernel: ppdev: user-space parallel port driver
> Jul 19 20:41:53 xd systemd[1]: Finished Create System Users.
> Jul 19 20:41:53 xd systemd[1]: Starting Create Static Device Nodes in /dev...
> Jul 19 20:41:53 xd systemd[1]: Finished Load Kernel Modules.
> Jul 19 20:41:53 xd systemd[1]: Starting Apply Kernel Variables...
> Jul 19 20:41:53 xd systemd[1]: Finished Apply Kernel Variables.
> Jul 19 20:41:53 xd systemd[1]: Finished Create Static Device Nodes in /dev.
> Jul 19 20:41:53 xd systemd[1]: Starting Rule-based Manager for Device Events and Files...
> Jul 19 20:41:53 xd systemd[1]: Finished Set the console keyboard layout.
> Jul 19 20:41:53 xd systemd[1]: Started Journal Service.
> Jul 19 20:41:53 xd kernel: input: Acer Wireless Radio Control as /devices/LNXSYSTM:00/10251229:00/input/input10
> Jul 19 20:41:53 xd kernel: intel_pmc_core INT33A1:00: initialized
> Jul 19 20:41:53 xd kernel: input: Intel HID events as /devices/platform/INTC1051:00/input/input11
> Jul 19 20:41:53 xd kernel: intel-hid INTC1051:00: platform supports 5 button array
> Jul 19 20:41:53 xd kernel: input: Intel HID 5 button array as /devices/platform/INTC1051:00/input/input12
> Jul 19 20:41:53 xd kernel: ACPI: AC Adapter [ACAD] (on-line)
> Jul 19 20:41:53 xd kernel: mc: Linux media interface: v0.10
> Jul 19 20:41:53 xd kernel: mei_me 0000:00:16.0: enabling device (0000 -> 0002)
> Jul 19 20:41:53 xd kernel: videodev: Linux video capture interface: v2.00
> Jul 19 20:41:53 xd kernel: ee1004 0-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
> Jul 19 20:41:53 xd kernel: iTCO_vendor_support: vendor-support=0
> Jul 19 20:41:53 xd kernel: iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
> Jul 19 20:41:53 xd kernel: iTCO_wdt: Found a Intel PCH TCO device (Version=6, TCOBASE=0x0400)
> Jul 19 20:41:53 xd kernel: iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
> Jul 19 20:41:53 xd kernel: EXT4-fs (nvme0n1p2): mounting ext2 file system using the ext4 subsystem
> Jul 19 20:41:53 xd kernel: EXT4-fs (nvme0n1p2): mounted filesystem without journal. Opts: (null)
> Jul 19 20:41:53 xd kernel: ext2 filesystem being mounted at /boot supports timestamps until 2038 (0x7fffffff)
> Jul 19 20:41:53 xd kernel: uvcvideo: Found UVC 1.00 device HD User Facing (0408:a061)
> Jul 19 20:41:53 xd kernel: Adding 31182844k swap on /dev/nvme0n1p4. Priority:-2 extents:1 across:31182844k SSFS
> Jul 19 20:41:53 xd kernel: input: HD User Facing: HD User Facing as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/input/input13
> Jul 19 20:41:53 xd kernel: acer_wmi: Acer Laptop ACPI-WMI Extras
> Jul 19 20:41:53 xd kernel: acer_wmi: Function bitmap for Communication Button: 0x801
> Jul 19 20:41:53 xd kernel: input: Acer WMI hotkeys as /devices/virtual/input/input14
> Jul 19 20:41:53 xd kernel: cryptd: max_cpu_qlen set to 1000
> Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.900:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=401 comm="apparmor_parser"
> Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.900:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-oopslash" pid=402 comm="apparmor_parser"
> Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.900:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=405 comm="apparmor_parser"
> Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.900:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=405 comm="apparmor_parser"
> Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.900:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=403 comm="apparmor_parser"
> Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.900:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=403 comm="apparmor_parser"
> Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.900:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=403 comm="apparmor_parser"
> Jul 19 20:41:53 xd kernel: usbcore: registered new interface driver uvcvideo
> Jul 19 20:41:53 xd kernel: USB Video Class driver (1.1.1)
> Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.912:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-xpdfimport" pid=412 comm="apparmor_parser"
> Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.912:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cups-browsed" pid=408 comm="apparmor_parser"
> Jul 19 20:41:53 xd kernel: pstore: Using crash dump compression: deflate
> Jul 19 20:41:53 xd kernel: input: ELAN0515:01 04F3:3142 Mouse as /devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input15
> Jul 19 20:41:53 xd kernel: input: ELAN0515:01 04F3:3142 Touchpad as /devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input17
> Jul 19 20:41:53 xd kernel: hid-multitouch 0018:04F3:3142.0001: input,hidraw0: I2C HID v1.00 Mouse [ELAN0515:01 04F3:3142] on i2c-ELAN0515:01
> Jul 19 20:41:53 xd kernel: pstore: Registered efi as persistent store backend
> Jul 19 20:41:54 xd kernel: input: PC Speaker as /devices/platform/pcspkr/input/input18
> Jul 19 20:41:54 xd kernel: AVX2 version of gcm_enc/dec engaged.
> Jul 19 20:41:54 xd kernel: AES CTR mode by8 optimization enabled
> Jul 19 20:41:54 xd kernel: resource sanity check: requesting [mem 0xfedc0000-0xfedcdfff], which spans more than pnp 00:04 [mem 0xfedc0000-0xfedc7fff]
> Jul 19 20:41:54 xd kernel: caller tgl_uncore_imc_freerunning_init_box+0xbb/0x100 [intel_uncore] mapping multiple BARs
> Jul 19 20:41:54 xd kernel: snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040100
> Jul 19 20:41:54 xd kernel: snd_hda_intel 0000:00:1f.3: Digital mics found on Skylake+ platform, using SOF driver
> Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040100
> Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: Digital mics found on Skylake+ platform, using SOF driver
> Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: enabling device (0000 -> 0002)
> Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if 0x040100
> Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
> Jul 19 20:41:54 xd kernel: r8169 0000:02:00.0: firmware: failed to load rtl_nic/rtl8168h-2.fw (-2)
> Jul 19 20:41:54 xd kernel: r8169 0000:02:00.0: Direct firmware load for rtl_nic/rtl8168h-2.fw failed with error -2
> Jul 19 20:41:54 xd kernel: r8169 0000:02:00.0: Unable to load firmware rtl_nic/rtl8168h-2.fw (-2)
> Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: use msi interrupt mode
> Jul 19 20:41:54 xd kernel: Generic FE-GE Realtek PHY r8169-0-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-0-200:00, irq=IGNORE)
> Jul 19 20:41:54 xd kernel: alg: No test for fips(ansi_cprng) (fips_ansi_cprng)
> Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: hda codecs found, mask 5
> Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: using HDA machine driver skl_hda_dsp_generic now
> Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: DMICs detected in NHLT tables: 2
> Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: firmware: failed to load intel/sof/sof-tgl.ri (-2)
> Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: Direct firmware load for intel/sof/sof-tgl.ri failed with error -2
> Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: error: request firmware intel/sof/sof-tgl.ri failed err: -2
> Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: error: failed to load DSP firmware -2
> Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: error: sof_probe_work failed err: -2
> Jul 19 20:41:54 xd kernel: r8169 0000:02:00.0 enp2s0: Link is Down
> Jul 19 20:41:54 xd kernel: Bluetooth: Core ver 2.22
> Jul 19 20:41:54 xd kernel: NET: Registered protocol family 31
> Jul 19 20:41:54 xd kernel: Bluetooth: HCI device and connection manager initialized
> Jul 19 20:41:54 xd kernel: Bluetooth: HCI socket layer initialized
> Jul 19 20:41:54 xd kernel: Bluetooth: L2CAP socket layer initialized
> Jul 19 20:41:54 xd kernel: Bluetooth: SCO socket layer initialized
> Jul 19 20:41:54 xd kernel: usbcore: registered new interface driver btusb
> Jul 19 20:41:54 xd kernel: Bluetooth: BNEP (Ethernet Emulation) ver 1.3
> Jul 19 20:41:54 xd kernel: Bluetooth: BNEP filters: protocol multicast
> Jul 19 20:41:54 xd kernel: Bluetooth: BNEP socket layer initialized
> Jul 19 20:41:54 xd kernel: mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_component_ops [i915])
> Jul 19 20:41:54 xd kernel: intel_rapl_msr: PL4 support detected.
> Jul 19 20:41:54 xd kernel: intel_rapl_common: Found RAPL domain package
> Jul 19 20:41:54 xd kernel: intel_rapl_common: Found RAPL domain core
> Jul 19 20:41:54 xd kernel: intel_rapl_common: Found RAPL domain uncore
> Jul 19 20:41:55 xd kernel: rfkill: input handler disabled
> Jul 19 20:42:03 xd kernel: nouveau 0000:01:00.0: fifo: fault 09 [PHYS_WRITE] at 000000007fef0000 engine c0 [BAR2] client 08 [HUB/HOST_CPU_NB] reason 0d [REGION_VIOLATION] on channel -1 [0000000000 unknown]
> Jul 19 20:42:03 xd kernel: nouveau 0000:01:00.0: fifo: fault 09 [PHYS_WRITE] at 000000007fef0000 engine c0 [BAR2] client 08 [HUB/HOST_CPU_NB] reason 0d [REGION_VIOLATION] on channel -1 [0000000000 unknown]
>
> ...
>
>
> Jul 19 20:42:26 xd kernel: nouveau 0000:01:00.0: fifo: PBDMA0: 01000000 [] ch 0 [007f992000 DRM] subc 0 mthd 0008 data 00000000
> Jul 19 20:42:26 xd kernel: nouveau 0000:01:00.0: DRM: failed to idle channel 0 [DRM]
> Jul 19 20:42:26 xd kernel: nouveau 0000:01:00.0: fifo: PBDMA0: 01000000 [] ch 0 [007f992000 DRM] subc 0 mthd 0008 data 00000000
> Jul 19 20:42:26 xd kernel: nouveau 0000:01:00.0: fifo: PBDMA0: 01000000 [] ch 0 [007f992000 DRM] subc 0 mthd 0008 data 00000000
> Jul 19 20:42:26 xd kernel: nouveau 0000:01:00.0: fifo: PBDMA0: 01000000 [] ch 0 [007f992000 DRM] subc 0 mthd 0008 data 00000000
> Jul 19 20:42:26 xd kernel: nouveau 0000:01:00.0: fifo: PBDMA0: 01000000 [] ch 0 [007f992000 DRM] subc 0 mthd 0008 data 00000000
> Jul 19 20:42:26 xd kernel: ------------[ cut here ]------------
> Jul 19 20:42:26 xd kernel: WARNING: CPU: 2 PID: 479 at drivers/gpu/drm/nouveau/nvkm/subdev/mc/base.c:72 nvkm_mc_intr+0x14d/0x170 [nouveau]
> Jul 19 20:42:26 xd kernel: Modules linked in: intel_rapl_msr intel_rapl_common snd_soc_dmic mei_hdcp bnep btusb btrtl btbcm btintel bluetooth x86_pkg_temp_thermal intel_powerclamp coretemp jitterentropy_rng kvm_intel snd_hda_codec_hdmi snd_hda_codec_realtek drbg snd_hda_codec_generic kvm snd_sof_pci snd_sof_intel_byt snd_sof_intel_ipc snd_sof_intel_hda_common snd_sof_xtensa_dsp snd_sof snd_sof_intel_hda irqbypass snd_soc_hdac_hda snd_hda_ext_core aes_generic ghash_clmulni_intel snd_soc_acpi_intel_match snd_soc_acpi ledtrig_audio snd_hda_intel snd_intel_dspcfg soundwire_intel intel_cstate soundwire_generic_allocation snd_soc_core intel_uncore joydev snd_compress soundwire_cadence aesni_intel pcspkr snd_hda_codec crypto_simd cryptd glue_helper nls_ascii snd_hda_core ansi_cprng nls_cp437 serio_raw snd_hwdep acer_wmi vfat ecdh_generic soundwire_bus efi_pstore fat snd_pcm uvcvideo snd_timer videobuf2_vmalloc iTCO_wdt snd videobuf2_memops intel_pmc_bxt wmi_bmof videobuf2_v4l2
> iTCO_vendor_support watchdog
> Jul 19 20:42:26 xd kernel: videobuf2_common soundcore ee1004 videodev rfkill ecc mei_me libaes mc mei hid_multitouch evdev ac tpm_crb tpm_tis tpm_tis_core tpm intel_hid intel_pmc_core sparse_keymap acpi_pad rng_core acer_wireless msr parport_pc ppdev lp parport fuse configfs efivarfs ip_tables x_tables autofs4 ext4 crc16 mbcache jbd2 crc32c_generic usbhid i915 nouveau ahci hid_generic libahci mxm_wmi ttm i2c_algo_bit nvme libata drm_kms_helper xhci_pci nvme_core xhci_hcd scsi_mod cec t10_pi crc_t10dif r8169 crct10dif_generic drm realtek mdio_devres libphy usbcore crct10dif_pclmul crct10dif_common i2c_hid crc32_pclmul crc32c_intel hid i2c_i801 i2c_smbus intel_lpss_pci intel_lpss idma64 vmd usb_common fan button battery video wmi
> Jul 19 20:42:26 xd kernel: CPU: 2 PID: 479 Comm: in:imklog Not tainted 5.10.0-16-amd64 #1 Debian 5.10.127-1
> Jul 19 20:42:26 xd kernel: Hardware name: Acer Aspire A517-52G/Jasmine_TL, BIOS V1.26 03/14/2022
> Jul 19 20:42:26 xd kernel: RIP: 0010:nvkm_mc_intr+0x14d/0x170 [nouveau]
> Jul 19 20:42:26 xd kernel: Code: 44 24 18 65 48 2b 04 25 28 00 00 00 75 2b 48 83 c4 20 5b 5d 41 5c 41 5d 41 5e 41 5f c3 41 8b 47 40 85 c0 74 ba e9 3a 9d 0a 00 <0f> 0b 45 31 e4 c6 44 24 0f 00 e9 00 ff ff ff e8 df b8 d3 f9 66 66
> Jul 19 20:42:26 xd kernel: RSP: 0018:ffffad10001c0ef0 EFLAGS: 00010046
> Jul 19 20:42:26 xd kernel: RAX: 00000000ffffffff RBX: ffff997305c62280 RCX: 000000000000080b
> Jul 19 20:42:26 xd kernel: RDX: 0000000000000000 RSI: ffffad10001c0f4f RDI: ffffad1007000104
> Jul 19 20:42:26 xd kernel: RBP: ffff9971e0b6c000 R08: ffff9971d129e900 R09: 0000000000000000
> Jul 19 20:42:26 xd kernel: R10: 0000000000000000 R11: 0000000000000000 R12: 00000000ffffffff
> Jul 19 20:42:26 xd kernel: R13: ffffad10001c0fac R14: 000000000000009e R15: ffff9971e0c0a900
> Jul 19 20:42:26 xd kernel: FS: 00007f586f6ae700(0000) GS:ffff997560480000(0000) knlGS:0000000000000000
> Jul 19 20:42:26 xd kernel: CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
> Jul 19 20:42:26 xd kernel: CR2: 00007faf88013388 CR3: 0000000109b80005 CR4: 0000000000770ee0
> Jul 19 20:42:26 xd kernel: PKRU: 55555554
> Jul 19 20:42:26 xd kernel: Call Trace:
> Jul 19 20:42:26 xd kernel: <IRQ>
> Jul 19 20:42:26 xd kernel: ? gp100_mc_intr_update+0x54/0x80 [nouveau]
> Jul 19 20:42:26 xd kernel: nvkm_pci_intr+0x4d/0x90 [nouveau]
> Jul 19 20:42:26 xd kernel: __handle_irq_event_percpu+0x3d/0x160
> Jul 19 20:42:26 xd kernel: handle_irq_event+0x57/0xb0
> Jul 19 20:42:26 xd kernel: handle_edge_irq+0x87/0x220
> Jul 19 20:42:26 xd kernel: asm_call_irq_on_stack+0xf/0x20
> Jul 19 20:42:26 xd kernel: </IRQ>
> Jul 19 20:42:26 xd kernel: common_interrupt+0xb0/0x130
> Jul 19 20:42:26 xd kernel: asm_common_interrupt+0x1e/0x40
> Jul 19 20:42:26 xd kernel: RIP: 0010:__check_heap_object+0x3b/0x110
> Jul 19 20:42:26 xd kernel: Code: ee 00 48 89 f8 48 c1 fa 06 89 cf 48 c1 e2 0c 48 03 15 29 09 ee 00 48 39 d0 0f 82 b0 00 00 00 48 29 d0 8b 4e 18 48 99 48 f7 f9 <89> d0 0f 1f 44 00 00 8b 96 d0 00 00 00 39 c2 77 1c 41 89 c2 44 8b
> Jul 19 20:42:26 xd kernel: RSP: 0018:ffffad1000adbde0 EFLAGS: 00000206
> Jul 19 20:42:26 xd kernel: RAX: 000000000000001b RBX: 0000000000000077 RCX: 0000000000000400
> Jul 19 20:42:26 xd kernel: RDX: 0000000000000000 RSI: ffff9971c0043500 RDI: 0000000000000001
> Jul 19 20:42:26 xd kernel: RBP: ffff997242d46c77 R08: 0000000000000077 R09: 302e30303a31303a
> Jul 19 20:42:26 xd kernel: R10: 0000000076756f6e R11: 0000000076756f6e R12: ffff997242d46c00
> Jul 19 20:42:26 xd kernel: R13: 0000000000000001 R14: ffff997242d46c00 R15: 0000000000000077
> Jul 19 20:42:26 xd kernel: __check_object_size+0x136/0x150
> Jul 19 20:42:26 xd kernel: syslog_print+0xc3/0x210
> Jul 19 20:42:26 xd kernel: kmsg_read+0x3e/0x50
> Jul 19 20:42:26 xd kernel: vfs_read+0x98/0x180
> Jul 19 20:42:26 xd kernel: ksys_read+0x5f/0xe0
> Jul 19 20:42:26 xd kernel: do_syscall_64+0x33/0x80
> Jul 19 20:42:26 xd kernel: entry_SYSCALL_64_after_hwframe+0x44/0xa9
> Jul 19 20:42:26 xd kernel: RIP: 0033:0x7f58700c908c
> Jul 19 20:42:26 xd kernel: Code: ec 28 48 89 54 24 18 48 89 74 24 10 89 7c 24 08 e8 89 fc ff ff 48 8b 54 24 18 48 8b 74 24 10 41 89 c0 8b 7c 24 08 31 c0 0f 05 <48> 3d 00 f0 ff ff 77 34 44 89 c7 48 89 44 24 08 e8 bf fc ff ff 48
> Jul 19 20:42:26 xd kernel: RSP: 002b:00007f586f68d4d0 EFLAGS: 00000246 ORIG_RAX: 0000000000000000
> Jul 19 20:42:26 xd kernel: RAX: ffffffffffffffda RBX: 0000000000000000 RCX: 00007f58700c908c
> Jul 19 20:42:26 xd kernel: RDX: 0000000000001fa0 RSI: 00007f586f68dd00 RDI: 0000000000000005
> Jul 19 20:42:26 xd kernel: RBP: 00005619c2c61920 R08: 0000000000000000 R09: 00005619c2c6ba38
> Jul 19 20:42:26 xd kernel: R10: 0000000000000000 R11: 0000000000000246 R12: 00007f586f68dd00
> Jul 19 20:42:26 xd kernel: R13: 0000000000001fa0 R14: 00007f586f68dd00 R15: 00007f586f68fc9c
> Jul 19 20:42:26 xd kernel: ---[ end trace c1b76539949981fe ]---
> Jul 19 20:42:26 xd kernel: nouveau 0000:01:00.0: fifo: fault 0f [] at ffffffffffffffff engine ff [] client 7f [HUB/] reason 1f [] on channel -1 [fffffffffffff000 unknown]
>

Hi Bruno,

I have no trouble booting my old Intel Haswell system into Xen on Debian 11,
but my system does not have an nvidia video card which often are not
friendly with free software like Debian.

It looks like the trouble is with the nouveau driver. I think there are also
proprietary drivers for nvidia video cards in the Debian non-free packages
section of the Debian packages repository. Are you setup to use those
non-free packages with apt? You can try using those drivers instead if you have
not already tried that. I am not sure how to do it, but posting a question to
debian-user@lists.debian.org might give you the answer for how to install and
use the proprietary nvidia drivers instead of the nouveau drivers. With the
non-free nvidia drivers, the system might be able to boot on Xen.

Chuck
Re: Boot into Xen on debian11 [ In reply to ]
On 7/20/2022 9:06 AM, Chuck Zmudzinski wrote:
> On 7/20/2022 8:17 AM, Bruno wrote:
> >
> > Here the ring buffer (journalctl -k -b -1) from the failed boot into Xen.
> >
> > -- Journal begins at Mon 2022-07-18 16:19:02 BST, ends at Tue 2022-07-19 20:43:04 BST. --
> > Jul 19 20:41:53 xd kernel: Linux version 5.10.0-16-amd64 (debian-kernel@lists.debian.org) (gcc-10 (Debian 10.2.1-6) 10.2.1 20210110, GNU ld (GNU Binutils for Debian) 2.35.2) #1 SMP Debian 5.10.127-1 (2022-06-30)
> > Jul 19 20:41:53 xd kernel: Command line: BOOT_IMAGE=/vmlinuz-5.10.0-16-amd64 root=UUID=0123abcd ro quiet
> > Jul 19 20:41:53 xd kernel: x86/split lock detection: warning about user-space split_locks
> > Jul 19 20:41:53 xd kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
> > Jul 19 20:41:53 xd kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
> > Jul 19 20:41:53 xd kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
> > Jul 19 20:41:53 xd kernel: x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask'
> > Jul 19 20:41:53 xd kernel: x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'
> > Jul 19 20:41:53 xd kernel: x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'
> > Jul 19 20:41:53 xd kernel: x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
> > Jul 19 20:41:53 xd kernel: x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
> > Jul 19 20:41:53 xd kernel: x86/fpu: xstate_offset[5]: 832, xstate_sizes[5]: 64
> > Jul 19 20:41:53 xd kernel: x86/fpu: xstate_offset[6]: 896, xstate_sizes[6]: 512
> > Jul 19 20:41:53 xd kernel: x86/fpu: xstate_offset[7]: 1408, xstate_sizes[7]: 1024
> > Jul 19 20:41:53 xd kernel: x86/fpu: xstate_offset[9]: 2432, xstate_sizes[9]: 8
> > Jul 19 20:41:53 xd kernel: x86/fpu: Enabled xstate features 0x2e7, context size is 2440 bytes, using 'compacted' format.
> > Jul 19 20:41:53 xd kernel: BIOS-provided physical RAM map:
> > Jul 19 20:41:53 xd kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
> > Jul 19 20:41:53 xd kernel: BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
> > Jul 19 20:41:53 xd kernel: BIOS-e820: [mem 0x0000000000100000-0x000000003fd98fff] usable
> > Jul 19 20:41:53 xd kernel: BIOS-e820: [mem 0x000000003fd99000-0x0000000040698fff] reserved
> > Jul 19 20:41:53 xd kernel: BIOS-e820: [mem 0x0000000040699000-0x00000000424aefff] usable
> > Jul 19 20:41:53 xd kernel: BIOS-e820: [mem 0x00000000424af000-0x000000004287efff] type 20
> > Jul 19 20:41:53 xd kernel: BIOS-e820: [mem 0x000000004287f000-0x00000000442fefff] reserved
> > Jul 19 20:41:53 xd kernel: BIOS-e820: [mem 0x00000000442ff000-0x0000000044b2efff] ACPI NVS
> > Jul 19 20:41:53 xd kernel: BIOS-e820: [mem 0x0000000044b2f000-0x0000000044bfefff] ACPI data
> > Jul 19 20:41:53 xd kernel: BIOS-e820: [mem 0x0000000044bff000-0x0000000044bfffff] usable
> > Jul 19 20:41:53 xd kernel: BIOS-e820: [mem 0x0000000044c00000-0x0000000048ffffff] reserved
> > Jul 19 20:41:53 xd kernel: BIOS-e820: [mem 0x0000000049e00000-0x000000004f7fffff] reserved
> > Jul 19 20:41:53 xd kernel: BIOS-e820: [mem 0x00000000c0000000-0x00000000cfffffff] reserved
> > Jul 19 20:41:53 xd kernel: BIOS-e820: [mem 0x00000000fe010000-0x00000000fe010fff] reserved
> > Jul 19 20:41:53 xd kernel: BIOS-e820: [mem 0x00000000fed20000-0x00000000fed7ffff] reserved
> > Jul 19 20:41:53 xd kernel: BIOS-e820: [mem 0x00000000ff500000-0x00000000ffffffff] reserved
> > Jul 19 20:41:53 xd kernel: BIOS-e820: [mem 0x0000000100000000-0x00000004b07fffff] usable
> > Jul 19 20:41:53 xd kernel: NX (Execute Disable) protection: active
> > Jul 19 20:41:53 xd kernel: efi: EFI v2.70 by INSYDE Corp.
> > Jul 19 20:41:53 xd kernel: efi: ACPI=0x44bfe000 ACPI 2.0=0x44bfe014 TPMFinalLog=0x44ac5000 SMBIOS=0x429de000 SMBIOS 3.0=0x429dc000 ESRT=0x3bf66a98 MOKvar=0x3bee4000
> > Jul 19 20:41:53 xd kernel: secureboot: Secure boot could not be determined (mode 0)
> > Jul 19 20:41:53 xd kernel: SMBIOS 3.3.0 present.
> > Jul 19 20:41:53 xd kernel: DMI: Acer Aspire A517-52G/Jasmine_TL, BIOS V1.26 03/14/2022
> > Jul 19 20:41:53 xd kernel: tsc: Detected 2400.000 MHz processor
> > Jul 19 20:41:53 xd kernel: tsc: Detected 2419.200 MHz TSC
> > Jul 19 20:41:53 xd kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
> > Jul 19 20:41:53 xd kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
> > Jul 19 20:41:53 xd kernel: last_pfn = 0x4b0800 max_arch_pfn = 0x400000000
> > Jul 19 20:41:53 xd kernel: MTRR default type: write-back
> > Jul 19 20:41:53 xd kernel: MTRR fixed ranges enabled:
> > Jul 19 20:41:53 xd kernel: 00000-9FFFF write-back
> > Jul 19 20:41:53 xd kernel: A0000-BFFFF uncachable
> > Jul 19 20:41:53 xd kernel: C0000-FFFFF write-protect
> > Jul 19 20:41:53 xd kernel: MTRR variable ranges enabled:
> > Jul 19 20:41:53 xd kernel: 0 base 0080000000 mask 7F80000000 uncachable
> > Jul 19 20:41:53 xd kernel: 1 base 0060000000 mask 7FE0000000 uncachable
> > Jul 19 20:41:53 xd kernel: 2 base 0050000000 mask 7FF0000000 uncachable
> > Jul 19 20:41:53 xd kernel: 3 base 004C000000 mask 7FFC000000 uncachable
> > Jul 19 20:41:53 xd kernel: 4 base 004B000000 mask 7FFF000000 uncachable
> > Jul 19 20:41:53 xd kernel: 5 base 4000000000 mask 4000000000 uncachable
> > Jul 19 20:41:53 xd kernel: 6 disabled
> > Jul 19 20:41:53 xd kernel: 7 disabled
> > Jul 19 20:41:53 xd kernel: 8 disabled
> > Jul 19 20:41:53 xd kernel: 9 disabled
> > Jul 19 20:41:53 xd kernel: x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
> > Jul 19 20:41:53 xd kernel: last_pfn = 0x44c00 max_arch_pfn = 0x400000000
> > Jul 19 20:41:53 xd kernel: esrt: Reserving ESRT space from 0x000000003bf66a98 to 0x000000003bf66ad0.
> > Jul 19 20:41:53 xd kernel: e820: update [mem 0x3bf66000-0x3bf66fff] usable ==> reserved
> > Jul 19 20:41:53 xd kernel: e820: update [mem 0x3bee4000-0x3bee6fff] usable ==> reserved
> > Jul 19 20:41:53 xd kernel: Using GB pages for direct mapping
> > Jul 19 20:41:53 xd kernel: RAMDISK: [mem 0x32aa5000-0x35549fff]
> > Jul 19 20:41:53 xd kernel: ACPI: Early table checksum verification disabled
> > Jul 19 20:41:53 xd kernel: ACPI: RSDP 0x0000000044BFE014 000024 (v02 ACRSYS)
> > Jul 19 20:41:53 xd kernel: ACPI: XSDT 0x0000000044BDB188 000124 (v01 ACRSYS ACRPRDCT 00000002 01000013)
> > Jul 19 20:41:53 xd kernel: ACPI: FACP 0x0000000044BDE000 000114 (v06 ACRSYS ACRPRDCT 00000002 1025 00040000)
> > Jul 19 20:41:53 xd kernel: ACPI: DSDT 0x0000000044B81000 059948 (v02 ACRSYS ACRPRDCT 00000002 1025 00040000)
> > Jul 19 20:41:53 xd kernel: ACPI: FACS 0x0000000044AA2000 000040
> > Jul 19 20:41:53 xd kernel: ACPI: UEFI 0x0000000044B2E000 000236 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
> > Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BFA000 00255C (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
> > Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BF9000 000105 (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
> > Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BF6000 002137 (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
> > Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BF2000 003300 (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
> > Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BF1000 00077B (v02 ACRSYS ACRPRDCT 00001000 1025 00040000)
> > Jul 19 20:41:53 xd kernel: ACPI: TPM2 0x0000000044BF0000 00004C (v04 ACRSYS ACRPRDCT 00000002 1025 00040000)
> > Jul 19 20:41:53 xd kernel: ACPI: MSDM 0x0000000044BEF000 000055 (v03 ACRSYS ACRPRDCT 00000001 1025 00040000)
> > Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BEE000 000D02 (v02 ACRSYS ACRPRDCT 00000000 1025 00040000)
> > Jul 19 20:41:53 xd kernel: ACPI: NHLT 0x0000000044BEC000 001B54 (v00 ACRSYS ACRPRDCT 00000002 1025 00040000)
> > Jul 19 20:41:53 xd kernel: ACPI: LPIT 0x0000000044BEB000 0000CC (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
> > Jul 19 20:41:53 xd kernel: ACPI: WSMT 0x0000000044BEA000 000028 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
> > Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BE9000 000B70 (v02 ACRSYS ACRPRDCT 00001000 1025 00040000)
> > Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BE8000 00012A (v02 ACRSYS ACRPRDCT 00000000 1025 00040000)
> > Jul 19 20:41:53 xd kernel: ACPI: DBGP 0x0000000044BE7000 000034 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
> > Jul 19 20:41:53 xd kernel: ACPI: DBG2 0x0000000044BE6000 000054 (v00 ACRSYS ACRPRDCT 00000002 1025 00040000)
> > Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044BDF000 006BA9 (v01 ACRSYS ACRPRDCT 00001000 1025 00040000)
> > Jul 19 20:41:53 xd kernel: ACPI: HPET 0x0000000044BDD000 000038 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
> > Jul 19 20:41:53 xd kernel: ACPI: APIC 0x0000000044BDC000 00012C (v04 ACRSYS ACRPRDCT 00000002 1025 00040000)
> > Jul 19 20:41:53 xd kernel: ACPI: MCFG 0x0000000044BFD000 00003C (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
> > Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044B80000 000C78 (v02 ACRSYS ACRPRDCT 00000002 1025 00040000)
> > Jul 19 20:41:53 xd kernel: ACPI: DMAR 0x0000000044B7F000 000088 (v02 ACRSYS ACRPRDCT 00000002 1025 00040000)
> > Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044B7C000 0020D6 (v01 ACRSYS ACRPRDCT 00001000 1025 00040000)
> > Jul 19 20:41:53 xd kernel: ACPI: UEFI 0x0000000044A5B000 00063A (v01 ACRSYS ACRPRDCT 00000000 1025 00040000)
> > Jul 19 20:41:53 xd kernel: ACPI: UEFI 0x0000000044A5A000 00005C (v01 ACRSYS ACRPRDCT 00000000 1025 00040000)
> > Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044B7B000 000985 (v02 ACRSYS ACRPRDCT 00001000 1025 00040000)
> > Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044B7A000 0000F8 (v01 ACRSYS ACRPRDCT 00001000 1025 00040000)
> > Jul 19 20:41:53 xd kernel: ACPI: SSDT 0x0000000044B79000 000835 (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
> > Jul 19 20:41:53 xd kernel: ACPI: FPDT 0x0000000044B78000 000044 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
> > Jul 19 20:41:53 xd kernel: ACPI: PTDT 0x0000000044B76000 000CFE (v00 ACRSYS ACRPRDCT 00000005 1025 00040000)
> > Jul 19 20:41:53 xd kernel: ACPI: BGRT 0x0000000044B77000 000038 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
> > Jul 19 20:41:53 xd kernel: ACPI: Reserving FACP table memory at [mem 0x44bde000-0x44bde113]
> > Jul 19 20:41:53 xd kernel: ACPI: Reserving DSDT table memory at [mem 0x44b81000-0x44bda947]
> > Jul 19 20:41:53 xd kernel: ACPI: Reserving FACS table memory at [mem 0x44aa2000-0x44aa203f]
> > Jul 19 20:41:53 xd kernel: ACPI: Reserving UEFI table memory at [mem 0x44b2e000-0x44b2e235]
> > Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bfa000-0x44bfc55b]
> > Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bf9000-0x44bf9104]
> > Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bf6000-0x44bf8136]
> > Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bf2000-0x44bf52ff]
> > Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bf1000-0x44bf177a]
> > Jul 19 20:41:53 xd kernel: ACPI: Reserving TPM2 table memory at [mem 0x44bf0000-0x44bf004b]
> > Jul 19 20:41:53 xd kernel: ACPI: Reserving MSDM table memory at [mem 0x44bef000-0x44bef054]
> > Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bee000-0x44beed01]
> > Jul 19 20:41:53 xd kernel: ACPI: Reserving NHLT table memory at [mem 0x44bec000-0x44bedb53]
> > Jul 19 20:41:53 xd kernel: ACPI: Reserving LPIT table memory at [mem 0x44beb000-0x44beb0cb]
> > Jul 19 20:41:53 xd kernel: ACPI: Reserving WSMT table memory at [mem 0x44bea000-0x44bea027]
> > Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44be9000-0x44be9b6f]
> > Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44be8000-0x44be8129]
> > Jul 19 20:41:53 xd kernel: ACPI: Reserving DBGP table memory at [mem 0x44be7000-0x44be7033]
> > Jul 19 20:41:53 xd kernel: ACPI: Reserving DBG2 table memory at [mem 0x44be6000-0x44be6053]
> > Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bdf000-0x44be5ba8]
> > Jul 19 20:41:53 xd kernel: ACPI: Reserving HPET table memory at [mem 0x44bdd000-0x44bdd037]
> > Jul 19 20:41:53 xd kernel: ACPI: Reserving APIC table memory at [mem 0x44bdc000-0x44bdc12b]
> > Jul 19 20:41:53 xd kernel: ACPI: Reserving MCFG table memory at [mem 0x44bfd000-0x44bfd03b]
> > Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b80000-0x44b80c77]
> > Jul 19 20:41:53 xd kernel: ACPI: Reserving DMAR table memory at [mem 0x44b7f000-0x44b7f087]
> > Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b7c000-0x44b7e0d5]
> > Jul 19 20:41:53 xd kernel: ACPI: Reserving UEFI table memory at [mem 0x44a5b000-0x44a5b639]
> > Jul 19 20:41:53 xd kernel: ACPI: Reserving UEFI table memory at [mem 0x44a5a000-0x44a5a05b]
> > Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b7b000-0x44b7b984]
> > Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b7a000-0x44b7a0f7]
> > Jul 19 20:41:53 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b79000-0x44b79834]
> > Jul 19 20:41:53 xd kernel: ACPI: Reserving FPDT table memory at [mem 0x44b78000-0x44b78043]
> > Jul 19 20:41:53 xd kernel: ACPI: Reserving PTDT table memory at [mem 0x44b76000-0x44b76cfd]
> > Jul 19 20:41:53 xd kernel: ACPI: Reserving BGRT table memory at [mem 0x44b77000-0x44b77037]
> > Jul 19 20:41:53 xd kernel: ACPI: Local APIC address 0xfee00000
> > Jul 19 20:41:53 xd kernel: No NUMA configuration found
> > Jul 19 20:41:53 xd kernel: Faking a node at [mem 0x0000000000000000-0x00000004b07fffff]
> > Jul 19 20:41:53 xd kernel: NODE_DATA(0) allocated [mem 0x4b07d6000-0x4b07fffff]
> > Jul 19 20:41:53 xd kernel: Zone ranges:
> > Jul 19 20:41:53 xd kernel: DMA [mem 0x0000000000001000-0x0000000000ffffff]
> > Jul 19 20:41:53 xd kernel: DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
> > Jul 19 20:41:53 xd kernel: Normal [mem 0x0000000100000000-0x00000004b07fffff]
> > Jul 19 20:41:53 xd kernel: Device empty
> > Jul 19 20:41:53 xd kernel: Movable zone start for each node
> > Jul 19 20:41:53 xd kernel: Early memory node ranges
> > Jul 19 20:41:53 xd kernel: node 0: [mem 0x0000000000001000-0x000000000009efff]
> > Jul 19 20:41:53 xd kernel: node 0: [mem 0x0000000000100000-0x000000003fd98fff]
> > Jul 19 20:41:53 xd kernel: node 0: [mem 0x0000000040699000-0x00000000424aefff]
> > Jul 19 20:41:53 xd kernel: node 0: [mem 0x0000000044bff000-0x0000000044bfffff]
> > Jul 19 20:41:53 xd kernel: node 0: [mem 0x0000000100000000-0x00000004b07fffff]
> > Jul 19 20:41:53 xd kernel: Initmem setup node 0 [mem 0x0000000000001000-0x00000004b07fffff]
> > Jul 19 20:41:53 xd kernel: On node 0 totalpages: 4137806
> > Jul 19 20:41:53 xd kernel: DMA zone: 64 pages used for memmap
> > Jul 19 20:41:53 xd kernel: DMA zone: 25 pages reserved
> > Jul 19 20:41:53 xd kernel: DMA zone: 3998 pages, LIFO batch:0
> > Jul 19 20:41:53 xd kernel: DMA32 zone: 4143 pages used for memmap
> > Jul 19 20:41:53 xd kernel: DMA32 zone: 265136 pages, LIFO batch:63
> > Jul 19 20:41:53 xd kernel: Normal zone: 60448 pages used for memmap
> > Jul 19 20:41:53 xd kernel: Normal zone: 3868672 pages, LIFO batch:63
> > Jul 19 20:41:53 xd kernel: On node 0, zone DMA: 1 pages in unavailable ranges
> > Jul 19 20:41:53 xd kernel: On node 0, zone DMA: 97 pages in unavailable ranges
> > Jul 19 20:41:53 xd kernel: On node 0, zone DMA32: 2304 pages in unavailable ranges
> > Jul 19 20:41:53 xd kernel: On node 0, zone DMA32: 10064 pages in unavailable ranges
> > Jul 19 20:41:53 xd kernel: On node 0, zone Normal: 13312 pages in unavailable ranges
> > Jul 19 20:41:53 xd kernel: On node 0, zone Normal: 30720 pages in unavailable ranges
> > Jul 19 20:41:53 xd kernel: Reserving Intel graphics memory at [mem 0x4b800000-0x4f7fffff]
> > Jul 19 20:41:53 xd kernel: ACPI: PM-Timer IO Port: 0x1808
> > Jul 19 20:41:53 xd kernel: ACPI: Local APIC address 0xfee00000
> > Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
> > Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
> > Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
> > Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
> > Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
> > Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
> > Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
> > Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
> > Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
> > Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
> > Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
> > Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
> > Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
> > Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
> > Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
> > Jul 19 20:41:53 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
> > Jul 19 20:41:53 xd kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
> > Jul 19 20:41:53 xd kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
> > Jul 19 20:41:53 xd kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
> > Jul 19 20:41:53 xd kernel: ACPI: IRQ0 used by override.
> > Jul 19 20:41:53 xd kernel: ACPI: IRQ9 used by override.
> > Jul 19 20:41:53 xd kernel: Using ACPI (MADT) for SMP configuration information
> > Jul 19 20:41:53 xd kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
> > Jul 19 20:41:53 xd kernel: e820: update [mem 0x3bf69000-0x3c05cfff] usable ==> reserved
> > Jul 19 20:41:53 xd kernel: TSC deadline timer available
> > Jul 19 20:41:53 xd kernel: smpboot: Allowing 8 CPUs, 0 hotplug CPUs
> > Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
> > Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
> > Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x3bee4000-0x3bee6fff]
> > Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x3bf66000-0x3bf66fff]
> > Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x3bf69000-0x3c05cfff]
> > Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x3fd99000-0x40698fff]
> > Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x424af000-0x4287efff]
> > Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x4287f000-0x442fefff]
> > Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x442ff000-0x44b2efff]
> > Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x44b2f000-0x44bfefff]
> > Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x44c00000-0x48ffffff]
> > Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x49000000-0x49dfffff]
> > Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x49e00000-0x4f7fffff]
> > Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x4f800000-0xbfffffff]
> > Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xc0000000-0xcfffffff]
> > Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xd0000000-0xfe00ffff]
> > Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xfe010000-0xfe010fff]
> > Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xfed1ffff]
> > Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xfed7ffff]
> > Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xff4fffff]
> > Jul 19 20:41:53 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xff500000-0xffffffff]
> > Jul 19 20:41:53 xd kernel: [mem 0x4f800000-0xbfffffff] available for PCI devices
> > Jul 19 20:41:53 xd kernel: Booting paravirtualized kernel on bare hardware
> > Jul 19 20:41:53 xd kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
> > Jul 19 20:41:53 xd kernel: setup_percpu: NR_CPUS:8192 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
> > Jul 19 20:41:53 xd kernel: percpu: Embedded 58 pages/cpu s200664 r8192 d28712 u262144
> > Jul 19 20:41:53 xd kernel: pcpu-alloc: s200664 r8192 d28712 u262144 alloc=1*2097152
> > Jul 19 20:41:53 xd kernel: pcpu-alloc: [0] 0 1 2 3 4 5 6 7
> > Jul 19 20:41:53 xd kernel: Built 1 zonelists, mobility grouping on. Total pages: 4073126
> > Jul 19 20:41:53 xd kernel: Policy zone: Normal
> > Jul 19 20:41:53 xd kernel: Kernel command line: BOOT_IMAGE=/vmlinuz-5.10.0-16-amd64 root=UUID=0dc2ba0c-97d5-4786-bc97-4d13279afe0f ro quiet
> > Jul 19 20:41:53 xd kernel: Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
> > Jul 19 20:41:53 xd kernel: Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
> > Jul 19 20:41:53 xd kernel: mem auto-init: stack:off, heap alloc:on, heap free:off
> > Jul 19 20:41:53 xd kernel: Memory: 1014224K/16551224K available (12295K kernel code, 2536K rwdata, 7568K rodata, 2424K init, 3680K bss, 517204K reserved, 0K cma-reserved)
> > Jul 19 20:41:53 xd kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
> > Jul 19 20:41:53 xd kernel: ftrace: allocating 36455 entries in 143 pages
> > Jul 19 20:41:53 xd kernel: ftrace: allocated 143 pages with 5 groups
> > Jul 19 20:41:53 xd kernel: rcu: Hierarchical RCU implementation.
> > Jul 19 20:41:53 xd kernel: rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=8.
> > Jul 19 20:41:53 xd kernel: Rude variant of Tasks RCU enabled.
> > Jul 19 20:41:53 xd kernel: Tracing variant of Tasks RCU enabled.
> > Jul 19 20:41:53 xd kernel: rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
> > Jul 19 20:41:53 xd kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
> > Jul 19 20:41:53 xd kernel: NR_IRQS: 524544, nr_irqs: 2048, preallocated irqs: 16
> > Jul 19 20:41:53 xd kernel: random: crng init done
> > Jul 19 20:41:53 xd kernel: Console: colour dummy device 80x25
> > Jul 19 20:41:53 xd kernel: printk: console [tty0] enabled
> > Jul 19 20:41:53 xd kernel: ACPI: Core revision 20200925
> > Jul 19 20:41:53 xd kernel: hpet: HPET dysfunctional in PC10. Force disabled.
> > Jul 19 20:41:53 xd kernel: APIC: Switch to symmetric I/O mode setup
> > Jul 19 20:41:53 xd kernel: DMAR: Host address width 39
> > Jul 19 20:41:53 xd kernel: DMAR: DRHD base: 0x000000fed90000 flags: 0x0
> > Jul 19 20:41:53 xd kernel: DMAR: dmar0: reg_base_addr fed90000 ver 4:0 cap 1c0000c40660462 ecap 29a00f0505e
> > Jul 19 20:41:53 xd kernel: DMAR: DRHD base: 0x000000fed91000 flags: 0x1
> > Jul 19 20:41:53 xd kernel: DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
> > Jul 19 20:41:53 xd kernel: DMAR: RMRR base: 0x0000004b000000 end: 0x0000004f7fffff
> > Jul 19 20:41:53 xd kernel: DMAR-IR: IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 1
> > Jul 19 20:41:53 xd kernel: DMAR-IR: HPET id 0 under DRHD base 0xfed91000
> > Jul 19 20:41:53 xd kernel: DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
> > Jul 19 20:41:53 xd kernel: DMAR-IR: Enabled IRQ remapping in x2apic mode
> > Jul 19 20:41:53 xd kernel: x2apic enabled
> > Jul 19 20:41:53 xd kernel: Switched APIC routing to cluster x2apic.
> > Jul 19 20:41:53 xd kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x22df1149949, max_idle_ns: 440795312789 ns
> > Jul 19 20:41:53 xd kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 4838.40 BogoMIPS (lpj=9676800)
> > Jul 19 20:41:53 xd kernel: pid_max: default: 32768 minimum: 301
> > Jul 19 20:41:53 xd kernel: LSM: Security Framework initializing
> > Jul 19 20:41:53 xd kernel: Yama: disabled by default; enable with sysctl kernel.yama.*
> > Jul 19 20:41:53 xd kernel: AppArmor: AppArmor initialized
> > Jul 19 20:41:53 xd kernel: TOMOYO Linux initialized
> > Jul 19 20:41:53 xd kernel: Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
> > Jul 19 20:41:53 xd kernel: Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
> > Jul 19 20:41:53 xd kernel: x86/cpu: User Mode Instruction Prevention (UMIP) activated
> > Jul 19 20:41:53 xd kernel: mce: CPU0: Thermal monitoring enabled (TM1)
> > Jul 19 20:41:53 xd kernel: process: using mwait in idle threads
> > Jul 19 20:41:53 xd kernel: Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
> > Jul 19 20:41:53 xd kernel: Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
> > Jul 19 20:41:53 xd kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
> > Jul 19 20:41:53 xd kernel: Spectre V2 : Mitigation: Enhanced IBRS
> > Jul 19 20:41:53 xd kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
> > Jul 19 20:41:53 xd kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
> > Jul 19 20:41:53 xd kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
> > Jul 19 20:41:53 xd kernel: Freeing SMP alternatives memory: 32K
> > Jul 19 20:41:53 xd kernel: smpboot: CPU0: 11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz (family: 0x6, model: 0x8c, stepping: 0x1)
> > Jul 19 20:41:53 xd kernel: Performance Events: PEBS fmt4+-baseline, AnyThread deprecated, Icelake events, 32-deep LBR, full-width counters, Intel PMU driver.
> > Jul 19 20:41:53 xd kernel: ... version: 5
> > Jul 19 20:41:53 xd kernel: ... bit width: 48
> > Jul 19 20:41:53 xd kernel: ... generic registers: 8
> > Jul 19 20:41:53 xd kernel: ... value mask: 0000ffffffffffff
> > Jul 19 20:41:53 xd kernel: ... max period: 00007fffffffffff
> > Jul 19 20:41:53 xd kernel: ... fixed-purpose events: 4
> > Jul 19 20:41:53 xd kernel: ... event mask: 0001000f000000ff
> > Jul 19 20:41:53 xd kernel: rcu: Hierarchical SRCU implementation.
> > Jul 19 20:41:53 xd kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
> > Jul 19 20:41:53 xd kernel: smp: Bringing up secondary CPUs ...
> > Jul 19 20:41:53 xd kernel: x86: Booting SMP configuration:
> > Jul 19 20:41:53 xd kernel: .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7
> > Jul 19 20:41:53 xd kernel: smp: Brought up 1 node, 8 CPUs
> > Jul 19 20:41:53 xd kernel: smpboot: Max logical packages: 1
> > Jul 19 20:41:53 xd kernel: smpboot: Total of 8 processors activated (38707.20 BogoMIPS)
> > Jul 19 20:41:53 xd kernel: node 0 deferred pages initialised in 20ms
> > Jul 19 20:41:53 xd kernel: devtmpfs: initialized
> > Jul 19 20:41:53 xd kernel: x86/mm: Memory block size: 128MB
> > Jul 19 20:41:53 xd kernel: PM: Registering ACPI NVS region [mem 0x442ff000-0x44b2efff] (8585216 bytes)
> > Jul 19 20:41:53 xd kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
> > Jul 19 20:41:53 xd kernel: futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
> > Jul 19 20:41:53 xd kernel: pinctrl core: initialized pinctrl subsystem
> > Jul 19 20:41:53 xd kernel: NET: Registered protocol family 16
> > Jul 19 20:41:53 xd kernel: audit: initializing netlink subsys (disabled)
> > Jul 19 20:41:53 xd kernel: audit: type=2000 audit(1658259710.028:1): state=initialized audit_enabled=0 res=1
> > Jul 19 20:41:53 xd kernel: thermal_sys: Registered thermal governor 'fair_share'
> > Jul 19 20:41:53 xd kernel: thermal_sys: Registered thermal governor 'bang_bang'
> > Jul 19 20:41:53 xd kernel: thermal_sys: Registered thermal governor 'step_wise'
> > Jul 19 20:41:53 xd kernel: thermal_sys: Registered thermal governor 'user_space'
> > Jul 19 20:41:53 xd kernel: thermal_sys: Registered thermal governor 'power_allocator'
> > Jul 19 20:41:53 xd kernel: cpuidle: using governor ladder
> > Jul 19 20:41:53 xd kernel: cpuidle: using governor menu
> > Jul 19 20:41:53 xd kernel: ACPI: bus type PCI registered
> > Jul 19 20:41:53 xd kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
> > Jul 19 20:41:53 xd kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xc0000000-0xcfffffff] (base 0xc0000000)
> > Jul 19 20:41:53 xd kernel: PCI: MMCONFIG at [mem 0xc0000000-0xcfffffff] reserved in E820
> > Jul 19 20:41:53 xd kernel: PCI: Using configuration type 1 for base access
> > Jul 19 20:41:53 xd kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
> > Jul 19 20:41:53 xd kernel: Kprobes globally optimized
> > Jul 19 20:41:53 xd kernel: HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
> > Jul 19 20:41:53 xd kernel: HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
> > Jul 19 20:41:53 xd kernel: ACPI: Added _OSI(Module Device)
> > Jul 19 20:41:53 xd kernel: ACPI: Added _OSI(Processor Device)
> > Jul 19 20:41:53 xd kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
> > Jul 19 20:41:53 xd kernel: ACPI: Added _OSI(Processor Aggregator Device)
> > Jul 19 20:41:53 xd kernel: ACPI: Added _OSI(Linux-Dell-Video)
> > Jul 19 20:41:53 xd kernel: ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
> > Jul 19 20:41:53 xd kernel: ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
> > Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS01._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> > Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> > Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> > Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS01._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> > Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> > Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> > Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS02._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> > Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> > Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> > Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS02._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> > Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> > Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> > Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS03._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> > Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> > Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> > Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS03._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> > Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> > Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> > Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS04._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> > Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> > Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> > Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS04._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> > Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> > Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> > Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS05._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> > Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> > Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> > Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS05._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> > Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> > Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> > Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS06._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> > Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> > Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> > Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS06._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> > Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> > Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> > Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS07._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> > Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> > Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> > Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS07._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> > Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> > Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> > Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS08._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> > Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> > Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> > Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS08._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> > Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> > Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> > Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS09._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> > Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> > Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> > Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS09._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> > Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> > Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> > Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS10._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> > Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> > Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> > Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS10._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> > Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> > Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> > Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS01._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> > Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> > Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> > Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS01._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> > Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> > Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> > Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS02._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> > Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> > Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> > Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS02._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> > Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> > Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> > Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS03._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> > Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> > Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> > Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS03._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> > Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> > Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> > Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS04._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> > Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> > Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> > Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS04._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> > Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> > Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> > Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS05._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> > Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> > Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> > Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS05._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> > Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> > Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> > Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS06._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> > Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> > Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> > Jul 19 20:41:53 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS06._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> > Jul 19 20:41:53 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> > Jul 19 20:41:53 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> > Jul 19 20:41:53 xd kernel: ACPI: 15 ACPI AML tables successfully acquired and loaded
> > Jul 19 20:41:53 xd kernel: ACPI: Dynamic OEM Table Load:
> > Jul 19 20:41:53 xd kernel: ACPI: SSDT 0xFFFF997306398600 0001C6 (v02 PmRef Cpu0Psd 00003000 INTL 20160422)
> > Jul 19 20:41:53 xd kernel: ACPI: \_SB_.PR00: _OSC native thermal LVT Acked
> > Jul 19 20:41:53 xd kernel: ACPI: Dynamic OEM Table Load:
> > Jul 19 20:41:53 xd kernel: ACPI: SSDT 0xFFFF9971C0F91800 000386 (v02 PmRef Cpu0Cst 00003001 INTL 20160422)
> > Jul 19 20:41:53 xd kernel: ACPI: Dynamic OEM Table Load:
> > Jul 19 20:41:53 xd kernel: ACPI: SSDT 0xFFFF9971C0C36800 0005C3 (v02 PmRef Cpu0Ist 00003000 INTL 20160422)
> > Jul 19 20:41:53 xd kernel: ACPI: Dynamic OEM Table Load:
> > Jul 19 20:41:53 xd kernel: ACPI: SSDT 0xFFFF9971C0F96800 00028B (v02 PmRef Cpu0Hwp 00003000 INTL 20160422)
> > Jul 19 20:41:53 xd kernel: ACPI: Dynamic OEM Table Load:
> > Jul 19 20:41:53 xd kernel: ACPI: SSDT 0xFFFF9971C0F87000 0008E7 (v02 PmRef ApIst 00003000 INTL 20160422)
> > Jul 19 20:41:53 xd kernel: ACPI: Dynamic OEM Table Load:
> > Jul 19 20:41:53 xd kernel: ACPI: SSDT 0xFFFF9971C0C33800 00048A (v02 PmRef ApHwp 00003000 INTL 20160422)
> > Jul 19 20:41:53 xd kernel: ACPI: Dynamic OEM Table Load:
> > Jul 19 20:41:53 xd kernel: ACPI: SSDT 0xFFFF9971C0C31000 0004D4 (v02 PmRef ApPsd 00003000 INTL 20160422)
> > Jul 19 20:41:53 xd kernel: ACPI: Dynamic OEM Table Load:
> > Jul 19 20:41:53 xd kernel: ACPI: SSDT 0xFFFF9971C0C30000 00048A (v02 PmRef ApCst 00003000 INTL 20160422)
> > Jul 19 20:41:53 xd kernel: ACPI: EC: EC started
> > Jul 19 20:41:53 xd kernel: ACPI: EC: interrupt blocked
> > Jul 19 20:41:53 xd kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
> > Jul 19 20:41:53 xd kernel: ACPI: \_SB_.PC00.LPCB.EC0_: Boot DSDT EC used to handle transactions
> > Jul 19 20:41:53 xd kernel: ACPI: Interpreter enabled
> > Jul 19 20:41:53 xd kernel: ACPI: (supports S0 S3 S4 S5)
> > Jul 19 20:41:53 xd kernel: ACPI: Using IOAPIC for interrupt routing
> > Jul 19 20:41:53 xd kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
> > Jul 19 20:41:53 xd kernel: ACPI: Enabled 7 GPEs in block 00 to 7F
> > Jul 19 20:41:53 xd kernel: ACPI: Power Resource [PCRP] (on)
> > Jul 19 20:41:53 xd kernel: ACPI: Power Resource [V0PR] (on)
> > Jul 19 20:41:53 xd kernel: ACPI: Power Resource [V1PR] (on)
> > Jul 19 20:41:53 xd kernel: ACPI: Power Resource [V2PR] (on)
> > Jul 19 20:41:53 xd kernel: ACPI: Power Resource [WRST] (on)
> > Jul 19 20:41:53 xd kernel: ACPI: Power Resource [V0PR] (on)
> > Jul 19 20:41:53 xd kernel: ACPI: Power Resource [V1PR] (on)
> > Jul 19 20:41:53 xd kernel: ACPI: Power Resource [V2PR] (on)
> > Jul 19 20:41:53 xd kernel: ACPI: Power Resource [V3PR] (on)
> > Jul 19 20:41:53 xd kernel: ACPI: Power Resource [FN00] (off)
> > Jul 19 20:41:53 xd kernel: ACPI: Power Resource [FN01] (off)
> > Jul 19 20:41:53 xd kernel: ACPI: Power Resource [FN02] (off)
> > Jul 19 20:41:53 xd kernel: ACPI: Power Resource [FN03] (off)
> > Jul 19 20:41:53 xd kernel: ACPI: Power Resource [FN04] (off)
> > Jul 19 20:41:53 xd kernel: ACPI: Power Resource [PIN] (off)
> > Jul 19 20:41:53 xd kernel: ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-e0])
> > Jul 19 20:41:53 xd kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
> > Jul 19 20:41:53 xd kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR]
> > Jul 19 20:41:53 xd kernel: PCI host bridge to bus 0000:00
> > Jul 19 20:41:53 xd kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
> > Jul 19 20:41:53 xd kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
> > Jul 19 20:41:53 xd kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
> > Jul 19 20:41:53 xd kernel: pci_bus 0000:00: root bus resource [mem 0x4f800000-0xbfffffff window]
> > Jul 19 20:41:53 xd kernel: pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
> > Jul 19 20:41:53 xd kernel: pci_bus 0000:00: root bus resource [bus 00-e0]
> > Jul 19 20:41:53 xd kernel: pci 0000:00:00.0: [8086:9a14] type 00 class 0x060000
> > Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: [8086:9a49] type 00 class 0x030000
> > Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: reg 0x10: [mem 0x6014000000-0x6014ffffff 64bit]
> > Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: reg 0x18: [mem 0x4000000000-0x400fffffff 64bit pref]
> > Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: reg 0x20: [io 0x5000-0x503f]
> > Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: BAR 2: assigned to efifb
> > Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: DMAR: Skip IOMMU disabling for graphics
> > Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: reg 0x344: [mem 0x00000000-0x00ffffff 64bit]
> > Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: VF(n) BAR0 space: [mem 0x00000000-0x06ffffff 64bit] (contains BAR0 for 7 VFs)
> > Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: reg 0x34c: [mem 0x00000000-0x1fffffff 64bit pref]
> > Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: VF(n) BAR2 space: [mem 0x00000000-0xdfffffff 64bit pref] (contains BAR2 for 7 VFs)
> > Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: [8086:9a09] type 01 class 0x060400
> > Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
> > Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: PTM enabled (root), 4ns granularity
> > Jul 19 20:41:53 xd kernel: pci 0000:00:08.0: [8086:9a11] type 00 class 0x088000
> > Jul 19 20:41:53 xd kernel: pci 0000:00:08.0: reg 0x10: [mem 0x601540f000-0x601540ffff 64bit]
> > Jul 19 20:41:53 xd kernel: pci 0000:00:0e.0: [8086:9a0b] type 00 class 0x010400
> > Jul 19 20:41:53 xd kernel: pci 0000:00:0e.0: reg 0x10: [mem 0x6012000000-0x6013ffffff 64bit]
> > Jul 19 20:41:53 xd kernel: pci 0000:00:0e.0: reg 0x18: [mem 0x50000000-0x51ffffff]
> > Jul 19 20:41:53 xd kernel: pci 0000:00:0e.0: reg 0x20: [mem 0x6015300000-0x60153fffff 64bit]
> > Jul 19 20:41:53 xd kernel: pci 0000:00:14.0: [8086:a0ed] type 00 class 0x0c0330
> > Jul 19 20:41:53 xd kernel: pci 0000:00:14.0: reg 0x10: [mem 0x53180000-0x5318ffff 64bit]
> > Jul 19 20:41:53 xd kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
> > Jul 19 20:41:53 xd kernel: pci 0000:00:14.2: [8086:a0ef] type 00 class 0x050000
> > Jul 19 20:41:53 xd kernel: pci 0000:00:14.2: reg 0x10: [mem 0x6015404000-0x6015407fff 64bit]
> > Jul 19 20:41:53 xd kernel: pci 0000:00:14.2: reg 0x18: [mem 0x601540e000-0x601540efff 64bit]
> > Jul 19 20:41:53 xd kernel: pci 0000:00:15.0: [8086:a0e8] type 00 class 0x0c8000
> > Jul 19 20:41:53 xd kernel: pci 0000:00:15.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
> > Jul 19 20:41:53 xd kernel: pci 0000:00:15.3: [8086:a0eb] type 00 class 0x0c8000
> > Jul 19 20:41:53 xd kernel: pci 0000:00:15.3: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
> > Jul 19 20:41:53 xd kernel: pci 0000:00:16.0: [8086:a0e0] type 00 class 0x078000
> > Jul 19 20:41:53 xd kernel: pci 0000:00:16.0: reg 0x10: [mem 0x601540b000-0x601540bfff 64bit]
> > Jul 19 20:41:53 xd kernel: pci 0000:00:16.0: PME# supported from D3hot
> > Jul 19 20:41:53 xd kernel: pci 0000:00:17.0: [8086:09ab] type 00 class 0x088000
> > Jul 19 20:41:53 xd kernel: pci 0000:00:19.0: [8086:a0c5] type 00 class 0x0c8000
> > Jul 19 20:41:53 xd kernel: pci 0000:00:19.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
> > Jul 19 20:41:53 xd kernel: pci 0000:00:19.1: [8086:a0c6] type 00 class 0x0c8000
> > Jul 19 20:41:53 xd kernel: pci 0000:00:19.1: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
> > Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: [8086:a0b0] type 01 class 0x060400
> > Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
> > Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: PTM enabled (root), 4ns granularity
> > Jul 19 20:41:53 xd kernel: pci 0000:00:1d.1: [8086:a0b1] type 01 class 0x060400
> > Jul 19 20:41:53 xd kernel: pci 0000:00:1d.1: PME# supported from D0 D3hot D3cold
> > Jul 19 20:41:53 xd kernel: pci 0000:00:1d.1: PTM enabled (root), 4ns granularity
> > Jul 19 20:41:53 xd kernel: pci 0000:00:1f.0: [8086:a082] type 00 class 0x060100
> > Jul 19 20:41:53 xd kernel: pci 0000:00:1f.3: [8086:a0c8] type 00 class 0x040100
> > Jul 19 20:41:53 xd kernel: pci 0000:00:1f.3: reg 0x10: [mem 0x6015400000-0x6015403fff 64bit]
> > Jul 19 20:41:53 xd kernel: pci 0000:00:1f.3: reg 0x20: [mem 0x6015200000-0x60152fffff 64bit]
> > Jul 19 20:41:53 xd kernel: pci 0000:00:1f.3: PME# supported from D3hot D3cold
> > Jul 19 20:41:53 xd kernel: pci 0000:00:1f.4: [8086:a0a3] type 00 class 0x0c0500
> > Jul 19 20:41:53 xd kernel: pci 0000:00:1f.4: reg 0x10: [mem 0x6015408000-0x60154080ff 64bit]
> > Jul 19 20:41:53 xd kernel: pci 0000:00:1f.4: reg 0x20: [io 0xefa0-0xefbf]
> > Jul 19 20:41:53 xd kernel: pci 0000:00:1f.5: [8086:a0a4] type 00 class 0x0c8000
> > Jul 19 20:41:53 xd kernel: pci 0000:00:1f.5: reg 0x10: [mem 0xfe010000-0xfe010fff]
> > Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: [10de:1f97] type 00 class 0x030200
> > Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: reg 0x10: [mem 0x52000000-0x52ffffff]
> > Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: reg 0x14: [mem 0x6000000000-0x600fffffff 64bit pref]
> > Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: reg 0x1c: [mem 0x6010000000-0x6011ffffff 64bit pref]
> > Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: reg 0x24: [io 0x4000-0x407f]
> > Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
> > Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
> > Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: 63.012 Gb/s available PCIe bandwidth, limited by 16.0 GT/s PCIe x4 link at 0000:00:06.0 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
> > Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: PCI bridge to [bus 01]
> > Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: bridge window [io 0x4000-0x4fff]
> > Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: bridge window [mem 0x52000000-0x52ffffff]
> > Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: bridge window [mem 0x6000000000-0x6011ffffff 64bit pref]
> > Jul 19 20:41:53 xd kernel: pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000
> > Jul 19 20:41:53 xd kernel: pci 0000:02:00.0: reg 0x10: [io 0x3000-0x30ff]
> > Jul 19 20:41:53 xd kernel: pci 0000:02:00.0: reg 0x18: [mem 0x53004000-0x53004fff 64bit]
> > Jul 19 20:41:53 xd kernel: pci 0000:02:00.0: reg 0x20: [mem 0x53000000-0x53003fff 64bit]
> > Jul 19 20:41:53 xd kernel: pci 0000:02:00.0: supports D1 D2
> > Jul 19 20:41:53 xd kernel: pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
> > Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: PCI bridge to [bus 02]
> > Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: bridge window [io 0x3000-0x3fff]
> > Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: bridge window [mem 0x53000000-0x530fffff]
> > Jul 19 20:41:53 xd kernel: pci 0000:03:00.0: [14c3:7961] type 00 class 0x028000
> > Jul 19 20:41:53 xd kernel: pci 0000:03:00.0: reg 0x10: [mem 0x6015000000-0x60150fffff 64bit pref]
> > Jul 19 20:41:53 xd kernel: pci 0000:03:00.0: reg 0x18: [mem 0x6015100000-0x6015103fff 64bit pref]
> > Jul 19 20:41:53 xd kernel: pci 0000:03:00.0: reg 0x20: [mem 0x6015104000-0x6015104fff 64bit pref]
> > Jul 19 20:41:53 xd kernel: pci 0000:03:00.0: supports D1 D2
> > Jul 19 20:41:53 xd kernel: pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
> > Jul 19 20:41:53 xd kernel: pci 0000:00:1d.1: PCI bridge to [bus 03]
> > Jul 19 20:41:53 xd kernel: pci 0000:00:1d.1: bridge window [mem 0x6015000000-0x60151fffff 64bit pref]
> > Jul 19 20:41:53 xd kernel: ACPI: EC: interrupt unblocked
> > Jul 19 20:41:53 xd kernel: ACPI: EC: event unblocked
> > Jul 19 20:41:53 xd kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
> > Jul 19 20:41:53 xd kernel: ACPI: EC: GPE=0x6e
> > Jul 19 20:41:53 xd kernel: ACPI: \_SB_.PC00.LPCB.EC0_: Boot DSDT EC initialization complete
> > Jul 19 20:41:53 xd kernel: ACPI: \_SB_.PC00.LPCB.EC0_: EC: Used to handle transactions and events
> > Jul 19 20:41:53 xd kernel: iommu: Default domain type: Translated
> > Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: vgaarb: setting as boot VGA device
> > Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
> > Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: vgaarb: bridge control possible
> > Jul 19 20:41:53 xd kernel: vgaarb: loaded
> > Jul 19 20:41:53 xd kernel: EDAC MC: Ver: 3.0.0
> > Jul 19 20:41:53 xd kernel: Registered efivars operations
> > Jul 19 20:41:53 xd kernel: NetLabel: Initializing
> > Jul 19 20:41:53 xd kernel: NetLabel: domain hash size = 128
> > Jul 19 20:41:53 xd kernel: NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
> > Jul 19 20:41:53 xd kernel: NetLabel: unlabeled traffic allowed by default
> > Jul 19 20:41:53 xd kernel: PCI: Using ACPI for IRQ routing
> > Jul 19 20:41:53 xd kernel: PCI: pci_cache_line_size set to 64 bytes
> > Jul 19 20:41:53 xd kernel: pci 0000:00:1f.5: can't claim BAR 0 [mem 0xfe010000-0xfe010fff]: no compatible bridge window
> > Jul 19 20:41:53 xd kernel: e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
> > Jul 19 20:41:53 xd kernel: e820: reserve RAM buffer [mem 0x3bee4000-0x3bffffff]
> > Jul 19 20:41:53 xd kernel: e820: reserve RAM buffer [mem 0x3bf66000-0x3bffffff]
> > Jul 19 20:41:53 xd kernel: e820: reserve RAM buffer [mem 0x3bf69000-0x3bffffff]
> > Jul 19 20:41:53 xd kernel: e820: reserve RAM buffer [mem 0x3fd99000-0x3fffffff]
> > Jul 19 20:41:53 xd kernel: e820: reserve RAM buffer [mem 0x424af000-0x43ffffff]
> > Jul 19 20:41:53 xd kernel: e820: reserve RAM buffer [mem 0x44c00000-0x47ffffff]
> > Jul 19 20:41:53 xd kernel: e820: reserve RAM buffer [mem 0x4b0800000-0x4b3ffffff]
> > Jul 19 20:41:53 xd kernel: clocksource: Switched to clocksource tsc-early
> > Jul 19 20:41:53 xd kernel: VFS: Disk quotas dquot_6.6.0
> > Jul 19 20:41:53 xd kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
> > Jul 19 20:41:53 xd kernel: AppArmor: AppArmor Filesystem Enabled
> > Jul 19 20:41:53 xd kernel: pnp: PnP ACPI init
> > Jul 19 20:41:53 xd kernel: system 00:00: [io 0x0680-0x069f] has been reserved
> > Jul 19 20:41:53 xd kernel: system 00:00: [io 0x164e-0x164f] has been reserved
> > Jul 19 20:41:53 xd kernel: system 00:00: [io 0xfd60-0xfd63] has been reserved
> > Jul 19 20:41:53 xd kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
> > Jul 19 20:41:53 xd kernel: pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
> > Jul 19 20:41:53 xd kernel: system 00:02: [io 0x1854-0x1857] has been reserved
> > Jul 19 20:41:53 xd kernel: system 00:02: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
> > Jul 19 20:41:53 xd kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0303 (active)
> > Jul 19 20:41:53 xd kernel: pnp 00:04: disabling [mem 0xc0000000-0xcfffffff] because it overlaps 0000:00:02.0 BAR 9 [mem 0x00000000-0xdfffffff 64bit pref]
> > Jul 19 20:41:53 xd kernel: system 00:04: [mem 0xfedc0000-0xfedc7fff] has been reserved
> > Jul 19 20:41:53 xd kernel: system 00:04: [mem 0xfeda0000-0xfeda0fff] has been reserved
> > Jul 19 20:41:53 xd kernel: system 00:04: [mem 0xfeda1000-0xfeda1fff] has been reserved
> > Jul 19 20:41:53 xd kernel: system 00:04: [mem 0xfed20000-0xfed7ffff] could not be reserved
> > Jul 19 20:41:53 xd kernel: system 00:04: [mem 0xfed90000-0xfed93fff] could not be reserved
> > Jul 19 20:41:53 xd kernel: system 00:04: [mem 0xfed45000-0xfed8ffff] could not be reserved
> > Jul 19 20:41:53 xd kernel: system 00:04: [mem 0xfee00000-0xfeefffff] has been reserved
> > Jul 19 20:41:53 xd kernel: system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
> > Jul 19 20:41:53 xd kernel: system 00:05: [io 0x1800-0x18fe] could not be reserved
> > Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xfe000000-0xfe01ffff] could not be reserved
> > Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xfe04c000-0xfe04ffff] has been reserved
> > Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xfe050000-0xfe0affff] has been reserved
> > Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xfe0d0000-0xfe0fffff] has been reserved
> > Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xfe200000-0xfe7fffff] has been reserved
> > Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xff000000-0xffffffff] could not be reserved
> > Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xfd000000-0xfd68ffff] has been reserved
> > Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xfd6b0000-0xfd6cffff] has been reserved
> > Jul 19 20:41:53 xd kernel: system 00:05: [mem 0xfd6f0000-0xfdffffff] has been reserved
> > Jul 19 20:41:53 xd kernel: system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
> > Jul 19 20:41:53 xd kernel: system 00:06: [io 0x2000-0x20fe] has been reserved
> > Jul 19 20:41:53 xd kernel: system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
> > Jul 19 20:41:53 xd kernel: system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
> > Jul 19 20:41:53 xd kernel: pnp: PnP ACPI: found 8 devices
> > Jul 19 20:41:53 xd kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
> > Jul 19 20:41:53 xd kernel: NET: Registered protocol family 2
> > Jul 19 20:41:53 xd kernel: IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
> > Jul 19 20:41:53 xd kernel: tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
> > Jul 19 20:41:53 xd kernel: TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
> > Jul 19 20:41:53 xd kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
> > Jul 19 20:41:53 xd kernel: TCP: Hash tables configured (established 131072 bind 65536)
> > Jul 19 20:41:53 xd kernel: UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
> > Jul 19 20:41:53 xd kernel: UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
> > Jul 19 20:41:53 xd kernel: NET: Registered protocol family 1
> > Jul 19 20:41:53 xd kernel: NET: Registered protocol family 44
> > Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
> > Jul 19 20:41:53 xd kernel: pci_bus 0000:00: max bus depth: 1 pci_try_num: 2
> > Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: BAR 9: assigned [mem 0x4020000000-0x40ffffffff 64bit pref]
> > Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: BAR 7: assigned [mem 0x4010000000-0x4016ffffff 64bit]
> > Jul 19 20:41:53 xd kernel: pci 0000:00:15.0: BAR 0: assigned [mem 0x4017000000-0x4017000fff 64bit]
> > Jul 19 20:41:53 xd kernel: pci 0000:00:15.3: BAR 0: assigned [mem 0x4017001000-0x4017001fff 64bit]
> > Jul 19 20:41:53 xd kernel: pci 0000:00:19.0: BAR 0: assigned [mem 0x4017002000-0x4017002fff 64bit]
> > Jul 19 20:41:53 xd kernel: pci 0000:00:19.1: BAR 0: assigned [mem 0x4017003000-0x4017003fff 64bit]
> > Jul 19 20:41:53 xd kernel: pci 0000:00:1f.5: BAR 0: assigned [mem 0x4f800000-0x4f800fff]
> > Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: BAR 6: no space for [mem size 0x00080000 pref]
> > Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: BAR 6: failed to assign [mem size 0x00080000 pref]
> > Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: PCI bridge to [bus 01]
> > Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: bridge window [io 0x4000-0x4fff]
> > Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: bridge window [mem 0x52000000-0x52ffffff]
> > Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: bridge window [mem 0x6000000000-0x6011ffffff 64bit pref]
> > Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: PCI bridge to [bus 02]
> > Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: bridge window [io 0x3000-0x3fff]
> > Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: bridge window [mem 0x53000000-0x530fffff]
> > Jul 19 20:41:53 xd kernel: pci 0000:00:1d.1: PCI bridge to [bus 03]
> > Jul 19 20:41:53 xd kernel: pci 0000:00:1d.1: bridge window [mem 0x6015000000-0x60151fffff 64bit pref]
> > Jul 19 20:41:53 xd kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
> > Jul 19 20:41:53 xd kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
> > Jul 19 20:41:53 xd kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
> > Jul 19 20:41:53 xd kernel: pci_bus 0000:00: resource 7 [mem 0x4f800000-0xbfffffff window]
> > Jul 19 20:41:53 xd kernel: pci_bus 0000:00: resource 8 [mem 0x4000000000-0x7fffffffff window]
> > Jul 19 20:41:53 xd kernel: pci_bus 0000:01: resource 0 [io 0x4000-0x4fff]
> > Jul 19 20:41:53 xd kernel: pci_bus 0000:01: resource 1 [mem 0x52000000-0x52ffffff]
> > Jul 19 20:41:53 xd kernel: pci_bus 0000:01: resource 2 [mem 0x6000000000-0x6011ffffff 64bit pref]
> > Jul 19 20:41:53 xd kernel: pci_bus 0000:02: resource 0 [io 0x3000-0x3fff]
> > Jul 19 20:41:53 xd kernel: pci_bus 0000:02: resource 1 [mem 0x53000000-0x530fffff]
> > Jul 19 20:41:53 xd kernel: pci_bus 0000:03: resource 2 [mem 0x6015000000-0x60151fffff 64bit pref]
> > Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
> > Jul 19 20:41:53 xd kernel: PCI: CLS 64 bytes, default 64
> > Jul 19 20:41:53 xd kernel: Trying to unpack rootfs image as initramfs...
> > Jul 19 20:41:53 xd kernel: Freeing initrd memory: 43668K
> > Jul 19 20:41:53 xd kernel: DMAR: No ATSR found
> > Jul 19 20:41:53 xd kernel: DMAR: dmar0: Using Queued invalidation
> > Jul 19 20:41:53 xd kernel: DMAR: dmar1: Using Queued invalidation
> > Jul 19 20:41:53 xd kernel: pci 0000:00:00.0: Adding to iommu group 0
> > Jul 19 20:41:53 xd kernel: pci 0000:00:02.0: Adding to iommu group 1
> > Jul 19 20:41:53 xd kernel: pci 0000:00:06.0: Adding to iommu group 2
> > Jul 19 20:41:53 xd kernel: pci 0000:00:08.0: Adding to iommu group 3
> > Jul 19 20:41:53 xd kernel: pci 0000:00:0e.0: Adding to iommu group 4
> > Jul 19 20:41:53 xd kernel: pci 0000:00:14.0: Adding to iommu group 5
> > Jul 19 20:41:53 xd kernel: pci 0000:00:14.2: Adding to iommu group 5
> > Jul 19 20:41:53 xd kernel: pci 0000:00:15.0: Adding to iommu group 6
> > Jul 19 20:41:53 xd kernel: pci 0000:00:15.3: Adding to iommu group 6
> > Jul 19 20:41:53 xd kernel: pci 0000:00:16.0: Adding to iommu group 7
> > Jul 19 20:41:53 xd kernel: pci 0000:00:17.0: Adding to iommu group 8
> > Jul 19 20:41:53 xd kernel: pci 0000:00:19.0: Adding to iommu group 9
> > Jul 19 20:41:53 xd kernel: pci 0000:00:19.1: Adding to iommu group 9
> > Jul 19 20:41:53 xd kernel: pci 0000:00:1d.0: Adding to iommu group 10
> > Jul 19 20:41:53 xd kernel: pci 0000:00:1d.1: Adding to iommu group 11
> > Jul 19 20:41:53 xd kernel: pci 0000:00:1f.0: Adding to iommu group 12
> > Jul 19 20:41:53 xd kernel: pci 0000:00:1f.3: Adding to iommu group 12
> > Jul 19 20:41:53 xd kernel: pci 0000:00:1f.4: Adding to iommu group 12
> > Jul 19 20:41:53 xd kernel: pci 0000:00:1f.5: Adding to iommu group 12
> > Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: Adding to iommu group 13
> > Jul 19 20:41:53 xd kernel: pci 0000:02:00.0: Adding to iommu group 14
> > Jul 19 20:41:53 xd kernel: pci 0000:03:00.0: Adding to iommu group 15
> > Jul 19 20:41:53 xd kernel: DMAR: Intel(R) Virtualization Technology for Directed I/O
> > Jul 19 20:41:53 xd kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
> > Jul 19 20:41:53 xd kernel: software IO TLB: mapped [mem 0x0000000037663000-0x000000003b663000] (64MB)
> > Jul 19 20:41:53 xd kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x22df1149949, max_idle_ns: 440795312789 ns
> > Jul 19 20:41:53 xd kernel: clocksource: Switched to clocksource tsc
> > Jul 19 20:41:53 xd kernel: Initialise system trusted keyrings
> > Jul 19 20:41:53 xd kernel: Key type blacklist registered
> > Jul 19 20:41:53 xd kernel: workingset: timestamp_bits=36 max_order=22 bucket_order=0
> > Jul 19 20:41:53 xd kernel: zbud: loaded
> > Jul 19 20:41:53 xd kernel: integrity: Platform Keyring initialized
> > Jul 19 20:41:53 xd kernel: Key type asymmetric registered
> > Jul 19 20:41:53 xd kernel: Asymmetric key parser 'x509' registered
> > Jul 19 20:41:53 xd kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
> > Jul 19 20:41:53 xd kernel: io scheduler mq-deadline registered
> > Jul 19 20:41:53 xd kernel: pcieport 0000:00:06.0: PME: Signaling with IRQ 122
> > Jul 19 20:41:53 xd kernel: pcieport 0000:00:06.0: AER: enabled with IRQ 122
> > Jul 19 20:41:53 xd kernel: pcieport 0000:00:06.0: DPC: enabled with IRQ 122
> > Jul 19 20:41:53 xd kernel: pcieport 0000:00:06.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
> > Jul 19 20:41:53 xd kernel: pcieport 0000:00:1d.0: PME: Signaling with IRQ 123
> > Jul 19 20:41:53 xd kernel: pcieport 0000:00:1d.0: AER: enabled with IRQ 123
> > Jul 19 20:41:53 xd kernel: pcieport 0000:00:1d.0: DPC: enabled with IRQ 123
> > Jul 19 20:41:53 xd kernel: pcieport 0000:00:1d.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
> > Jul 19 20:41:53 xd kernel: pcieport 0000:00:1d.1: PME: Signaling with IRQ 124
> > Jul 19 20:41:53 xd kernel: pcieport 0000:00:1d.1: AER: enabled with IRQ 124
> > Jul 19 20:41:53 xd kernel: pcieport 0000:00:1d.1: DPC: enabled with IRQ 124
> > Jul 19 20:41:53 xd kernel: pcieport 0000:00:1d.1: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
> > Jul 19 20:41:53 xd kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
> > Jul 19 20:41:53 xd kernel: efifb: probing for efifb
> > Jul 19 20:41:53 xd kernel: efifb: framebuffer at 0x4000000000, using 8128k, total 8128k
> > Jul 19 20:41:53 xd kernel: efifb: mode is 1920x1080x32, linelength=7680, pages=1
> > Jul 19 20:41:53 xd kernel: efifb: scrolling: redraw
> > Jul 19 20:41:53 xd kernel: efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
> > Jul 19 20:41:53 xd kernel: Console: switching to colour frame buffer device 240x67
> > Jul 19 20:41:53 xd kernel: fb0: EFI VGA frame buffer device
> > Jul 19 20:41:53 xd kernel: intel_idle: MWAIT substates: 0x11121020
> > Jul 19 20:41:53 xd kernel: Monitor-Mwait will be used to enter C-1 state
> > Jul 19 20:41:53 xd kernel: Monitor-Mwait will be used to enter C-2 state
> > Jul 19 20:41:53 xd kernel: Monitor-Mwait will be used to enter C-3 state
> > Jul 19 20:41:53 xd kernel: ACPI: \_SB_.PR00: Found 3 idle states
> > Jul 19 20:41:53 xd kernel: intel_idle: v0.5.1 model 0x8C
> > Jul 19 20:41:53 xd kernel: intel_idle: Local APIC timer is reliable in all C-states
> > Jul 19 20:41:53 xd kernel: thermal LNXTHERM:00: registered as thermal_zone0
> > Jul 19 20:41:53 xd kernel: ACPI: Thermal Zone [TZ00] (28 C)
> > Jul 19 20:41:53 xd kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
> > Jul 19 20:41:53 xd kernel: hpet_acpi_add: no address or irqs in _CRS
> > Jul 19 20:41:53 xd kernel: Linux agpgart interface v0.103
> > Jul 19 20:41:53 xd kernel: AMD-Vi: AMD IOMMUv2 functionality not available on this system - This is not a bug.
> > Jul 19 20:41:53 xd kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
> > Jul 19 20:41:53 xd kernel: i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
> > Jul 19 20:41:53 xd kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
> > Jul 19 20:41:53 xd kernel: mousedev: PS/2 mouse device common for all mice
> > Jul 19 20:41:53 xd kernel: rtc_cmos 00:01: RTC can wake from S4
> > Jul 19 20:41:53 xd kernel: rtc_cmos 00:01: registered as rtc0
> > Jul 19 20:41:53 xd kernel: rtc_cmos 00:01: setting system clock to 2022-07-19T19:41:51 UTC (1658259711)
> > Jul 19 20:41:53 xd kernel: rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram
> > Jul 19 20:41:53 xd kernel: intel_pstate: Intel P-state driver initializing
> > Jul 19 20:41:53 xd kernel: intel_pstate: HWP enabled
> > Jul 19 20:41:53 xd kernel: ledtrig-cpu: registered to indicate activity on CPUs
> > Jul 19 20:41:53 xd kernel: NET: Registered protocol family 10
> > Jul 19 20:41:53 xd kernel: Segment Routing with IPv6
> > Jul 19 20:41:53 xd kernel: mip6: Mobile IPv6
> > Jul 19 20:41:53 xd kernel: NET: Registered protocol family 17
> > Jul 19 20:41:53 xd kernel: mpls_gso: MPLS GSO support
> > Jul 19 20:41:53 xd kernel: microcode: sig=0x806c1, pf=0x80, revision=0x8a
> > Jul 19 20:41:53 xd kernel: microcode: Microcode Update Driver: v2.2.
> > Jul 19 20:41:53 xd kernel: resctrl: L2 allocation detected
> > Jul 19 20:41:53 xd kernel: resctrl: L2DATA allocation detected
> > Jul 19 20:41:53 xd kernel: resctrl: L2CODE allocation detected
> > Jul 19 20:41:53 xd kernel: IPI shorthand broadcast: enabled
> > Jul 19 20:41:53 xd kernel: sched_clock: Marking stable (804088381, 6362109)->(820685197, -10234707)
> > Jul 19 20:41:53 xd kernel: registered taskstats version 1
> > Jul 19 20:41:53 xd kernel: Loading compiled-in X.509 certificates
> > Jul 19 20:41:53 xd kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
> > Jul 19 20:41:53 xd kernel: Loaded X.509 cert 'Debian Secure Boot CA: 6ccece7e4c6c0d1f6149f3dd27dfcc5cbb419ea1'
> > Jul 19 20:41:53 xd kernel: Loaded X.509 cert 'Debian Secure Boot Signer 2021 - linux: 4b6ef5abca669825178e052c84667ccbc0531f8c'
> > Jul 19 20:41:53 xd kernel: zswap: loaded using pool lzo/zbud
> > Jul 19 20:41:53 xd kernel: Key type ._fscrypt registered
> > Jul 19 20:41:53 xd kernel: Key type .fscrypt registered
> > Jul 19 20:41:53 xd kernel: Key type fscrypt-provisioning registered
> > Jul 19 20:41:53 xd kernel: AppArmor: AppArmor sha1 policy hashing enabled
> > Jul 19 20:41:53 xd kernel: Freeing unused kernel image (initmem) memory: 2424K
> > Jul 19 20:41:53 xd kernel: Write protecting the kernel read-only data: 22528k
> > Jul 19 20:41:53 xd kernel: Freeing unused kernel image (text/rodata gap) memory: 2040K
> > Jul 19 20:41:53 xd kernel: Freeing unused kernel image (rodata/data gap) memory: 624K
> > Jul 19 20:41:53 xd kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
> > Jul 19 20:41:53 xd kernel: Run /init as init process
> > Jul 19 20:41:53 xd kernel: with arguments:
> > Jul 19 20:41:53 xd kernel: /init
> > Jul 19 20:41:53 xd kernel: with environment:
> > Jul 19 20:41:53 xd kernel: HOME=/
> > Jul 19 20:41:53 xd kernel: TERM=linux
> > Jul 19 20:41:53 xd kernel: BOOT_IMAGE=/vmlinuz-5.10.0-16-amd64
> > Jul 19 20:41:53 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
> > Jul 19 20:41:53 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
> > Jul 19 20:41:53 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
> > Jul 19 20:41:53 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
> > Jul 19 20:41:53 xd kernel: acpi PNP0C14:03: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
> > Jul 19 20:41:53 xd kernel: acpi PNP0C14:04: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
> > Jul 19 20:41:53 xd kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:21/PNP0C0D:00/input/input1
> > Jul 19 20:41:53 xd kernel: ACPI: Lid Switch [LID0]
> > Jul 19 20:41:53 xd kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2
> > Jul 19 20:41:53 xd kernel: ACPI: Sleep Button [SLPB]
> > Jul 19 20:41:53 xd kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input3
> > Jul 19 20:41:53 xd kernel: battery: ACPI: Battery Slot [BAT1] (battery present)
> > Jul 19 20:41:53 xd kernel: vmd 0000:00:0e.0: PCI host bridge to bus 10000:e0
> > Jul 19 20:41:53 xd kernel: pci_bus 10000:e0: root bus resource [bus e0-ff]
> > Jul 19 20:41:53 xd kernel: pci_bus 10000:e0: root bus resource [mem 0x50000000-0x51ffffff]
> > Jul 19 20:41:53 xd kernel: pci_bus 10000:e0: root bus resource [mem 0x6015302000-0x60153fffff 64bit]
> > Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: [8086:a0d3] type 00 class 0x010601
> > Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: reg 0x10: [mem 0x00000000-0x00001fff]
> > Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: reg 0x14: [mem 0x00000000-0x000000ff]
> > Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: reg 0x18: [io 0x0000-0x0007]
> > Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: reg 0x1c: [io 0x0000-0x0003]
> > Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: reg 0x20: [io 0x0000-0x001f]
> > Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: reg 0x24: [mem 0x50000000-0x500007ff]
> > Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: PME# supported from D3hot
> > Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: Adding to iommu group 4
> > Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.0: [8086:09ab] type 00 class 0x088000
> > Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.0: Adding to iommu group 4
> > Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: [8086:a0bc] type 01 class 0x060400
> > Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: PME# supported from D0 D3hot D3cold
> > Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: PTM enabled (root), 4ns granularity
> > Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: Adding to iommu group 4
> > Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: Primary bus is hard wired to 0
> > Jul 19 20:41:53 xd kernel: pci 10000:e1:00.0: [2646:500c] type 00 class 0x010802
> > Jul 19 20:41:53 xd kernel: pci 10000:e1:00.0: reg 0x10: [mem 0x50100000-0x50103fff 64bit]
> > Jul 19 20:41:53 xd kernel: pci 10000:e1:00.0: Adding to iommu group 4
> > Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: PCI bridge to [bus e1]
> > Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: bridge window [io 0x0000-0x0fff]
> > Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: bridge window [mem 0x50100000-0x501fffff]
> > Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: Primary bus is hard wired to 0
> > Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: BAR 14: assigned [mem 0x50000000-0x500fffff]
> > Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 0: assigned [mem 0x50100000-0x50101fff]
> > Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: BAR 13: no space for [io size 0x1000]
> > Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: BAR 13: failed to assign [io size 0x1000]
> > Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 5: assigned [mem 0x50102000-0x501027ff]
> > Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 1: assigned [mem 0x50102800-0x501028ff]
> > Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 4: no space for [io size 0x0020]
> > Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 4: failed to assign [io size 0x0020]
> > Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 2: no space for [io size 0x0008]
> > Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 2: failed to assign [io size 0x0008]
> > Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 3: no space for [io size 0x0004]
> > Jul 19 20:41:53 xd kernel: pci 10000:e0:17.0: BAR 3: failed to assign [io size 0x0004]
> > Jul 19 20:41:53 xd kernel: pci 10000:e1:00.0: BAR 0: assigned [mem 0x50000000-0x50003fff 64bit]
> > Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: PCI bridge to [bus e1]
> > Jul 19 20:41:53 xd kernel: pci 10000:e0:1c.4: bridge window [mem 0x50000000-0x500fffff]
> > Jul 19 20:41:53 xd kernel: pcieport 10000:e0:1c.4: can't derive routing for PCI INT A
> > Jul 19 20:41:53 xd kernel: pcieport 10000:e0:1c.4: PCI INT A: no GSI
> > Jul 19 20:41:53 xd kernel: pcieport 10000:e0:1c.4: PME: Signaling with IRQ 144
> > Jul 19 20:41:53 xd kernel: pcieport 10000:e0:1c.4: AER: enabled with IRQ 144
> > Jul 19 20:41:53 xd kernel: pcieport 10000:e0:1c.4: DPC: enabled with IRQ 144
> > Jul 19 20:41:53 xd kernel: pcieport 10000:e0:1c.4: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
> > Jul 19 20:41:53 xd kernel: vmd 0000:00:0e.0: Bound to PCI domain 10000
> > Jul 19 20:41:53 xd kernel: i801_smbus 0000:00:1f.4: SPD Write Disable is set
> > Jul 19 20:41:53 xd kernel: i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
> > Jul 19 20:41:53 xd kernel: i2c i2c-0: 2/2 memory slots populated (from DMI)
> > Jul 19 20:41:53 xd kernel: i2c i2c-0: Successfully instantiated SPD at 0x50
> > Jul 19 20:41:53 xd kernel: hid: raw HID events driver (C) Jiri Kosina
> > Jul 19 20:41:53 xd kernel: ACPI: Power Button [PWRB]
> > Jul 19 20:41:53 xd kernel: ACPI: bus type USB registered
> > Jul 19 20:41:53 xd kernel: usbcore: registered new interface driver usbfs
> > Jul 19 20:41:53 xd kernel: usbcore: registered new interface driver hub
> > Jul 19 20:41:53 xd kernel: usbcore: registered new device driver usb
> > Jul 19 20:41:53 xd kernel: SCSI subsystem initialized
> > Jul 19 20:41:53 xd kernel: intel-lpss 0000:00:15.0: enabling device (0004 -> 0006)
> > Jul 19 20:41:53 xd kernel: idma64 idma64.0: Found Intel integrated DMA 64-bit
> > Jul 19 20:41:53 xd kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
> > Jul 19 20:41:53 xd kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
> > Jul 19 20:41:53 xd kernel: xhci_hcd 0000:00:14.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000000009810
> > Jul 19 20:41:53 xd kernel: xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
> > Jul 19 20:41:53 xd kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
> > Jul 19 20:41:53 xd kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
> > Jul 19 20:41:53 xd kernel: usb usb1: Product: xHCI Host Controller
> > Jul 19 20:41:53 xd kernel: usb usb1: Manufacturer: Linux 5.10.0-16-amd64 xhci-hcd
> > Jul 19 20:41:53 xd kernel: usb usb1: SerialNumber: 0000:00:14.0
> > Jul 19 20:41:53 xd kernel: hub 1-0:1.0: USB hub found
> > Jul 19 20:41:53 xd kernel: hub 1-0:1.0: 12 ports detected
> > Jul 19 20:41:53 xd kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
> > Jul 19 20:41:53 xd kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
> > Jul 19 20:41:53 xd kernel: xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
> > Jul 19 20:41:53 xd kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
> > Jul 19 20:41:53 xd kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
> > Jul 19 20:41:53 xd kernel: usb usb2: Product: xHCI Host Controller
> > Jul 19 20:41:53 xd kernel: usb usb2: Manufacturer: Linux 5.10.0-16-amd64 xhci-hcd
> > Jul 19 20:41:53 xd kernel: usb usb2: SerialNumber: 0000:00:14.0
> > Jul 19 20:41:53 xd kernel: hub 2-0:1.0: USB hub found
> > Jul 19 20:41:53 xd kernel: hub 2-0:1.0: 4 ports detected
> > Jul 19 20:41:53 xd kernel: nvme nvme0: pci function 10000:e1:00.0
> > Jul 19 20:41:53 xd kernel: pcieport 10000:e0:1c.4: can't derive routing for PCI INT A
> > Jul 19 20:41:53 xd kernel: nvme 10000:e1:00.0: PCI INT A: no GSI
> > Jul 19 20:41:53 xd kernel: libata version 3.00 loaded.
> > Jul 19 20:41:53 xd kernel: nvme nvme0: missing or invalid SUBNQN field.
> > Jul 19 20:41:53 xd kernel: nvme nvme0: Shutdown timeout set to 10 seconds
> > Jul 19 20:41:53 xd kernel: r8169 0000:02:00.0 eth0: RTL8168h/8111h, 08:8f:c3:4f:86:c5, XID 541, IRQ 147
> > Jul 19 20:41:53 xd kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
> > Jul 19 20:41:53 xd kernel: nvme nvme0: 8/0/0 default/read/poll queues
> > Jul 19 20:41:53 xd kernel: nvme0n1: p1 p2 p3 p4 p5
> > Jul 19 20:41:53 xd kernel: intel-lpss 0000:00:15.3: enabling device (0004 -> 0006)
> > Jul 19 20:41:53 xd kernel: idma64 idma64.1: Found Intel integrated DMA 64-bit
> > Jul 19 20:41:53 xd kernel: i2c_hid i2c-ELAN0515:01: supply vdd not found, using dummy regulator
> > Jul 19 20:41:53 xd kernel: i2c_hid i2c-ELAN0515:01: supply vddl not found, using dummy regulator
> > Jul 19 20:41:53 xd kernel: intel-lpss 0000:00:19.0: enabling device (0004 -> 0006)
> > Jul 19 20:41:53 xd kernel: idma64 idma64.2: Found Intel integrated DMA 64-bit
> > Jul 19 20:41:53 xd kernel: intel-lpss 0000:00:19.1: enabling device (0004 -> 0006)
> > Jul 19 20:41:53 xd kernel: idma64 idma64.3: Found Intel integrated DMA 64-bit
> > Jul 19 20:41:53 xd kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
> > Jul 19 20:41:53 xd kernel: input: ELAN0515:01 04F3:3142 Mouse as /devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input4
> > Jul 19 20:41:53 xd kernel: input: ELAN0515:01 04F3:3142 Touchpad as /devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input6
> > Jul 19 20:41:53 xd kernel: hid-generic 0018:04F3:3142.0001: input,hidraw0: I2C HID v1.00 Mouse [ELAN0515:01 04F3:3142] on i2c-ELAN0515:01
> > Jul 19 20:41:53 xd kernel: ahci 10000:e0:17.0: version 3.0
> > Jul 19 20:41:53 xd kernel: ahci 10000:e0:17.0: can't derive routing for PCI INT A
> > Jul 19 20:41:53 xd kernel: ahci 10000:e0:17.0: PCI INT A: no GSI
> > Jul 19 20:41:53 xd kernel: ahci 10000:e0:17.0: AHCI 0001.0301 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
> > Jul 19 20:41:53 xd kernel: ahci 10000:e0:17.0: flags: 64bit ncq sntf pm clo only pio slum part deso sadm sds
> > Jul 19 20:41:53 xd kernel: scsi host0: ahci
> > Jul 19 20:41:53 xd kernel: scsi host1: ahci
> > Jul 19 20:41:53 xd kernel: ata1: SATA max UDMA/133 abar m2048@0x50102000 port 0x50102100 irq 157
> > Jul 19 20:41:53 xd kernel: ata2: SATA max UDMA/133 abar m2048@0x50102000 port 0x50102180 irq 157
> > Jul 19 20:41:53 xd kernel: ACPI Warning: \_SB.PC00.GFX0._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20200925/nsarguments-61)
> > Jul 19 20:41:53 xd kernel: ACPI Warning: \_SB.PC00.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20200925/nsarguments-61)
> > Jul 19 20:41:53 xd kernel: pci 0000:01:00.0: optimus capabilities: enabled, status dynamic power, hda bios codec supported
> > Jul 19 20:41:53 xd kernel: VGA switcheroo: detected Optimus DSM method \_SB_.PC00.PEG0.PEGP handle
> > Jul 19 20:41:53 xd kernel: nouveau: detected PR support, will not use DSM
> > Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: enabling device (0006 -> 0007)
> > Jul 19 20:41:53 xd kernel: checking generic (4000000000 7f0000) vs hw (52000000 1000000)
> > Jul 19 20:41:53 xd kernel: checking generic (4000000000 7f0000) vs hw (6000000000 10000000)
> > Jul 19 20:41:53 xd kernel: checking generic (4000000000 7f0000) vs hw (6010000000 2000000)
> > Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: NVIDIA TU117 (167000a1)
> > Jul 19 20:41:53 xd kernel: i915 0000:00:02.0: [drm] VT-d active for gfx access
> > Jul 19 20:41:53 xd kernel: checking generic (4000000000 7f0000) vs hw (6014000000 1000000)
> > Jul 19 20:41:53 xd kernel: checking generic (4000000000 7f0000) vs hw (4000000000 10000000)
> > Jul 19 20:41:53 xd kernel: fb0: switching to inteldrmfb from EFI VGA
> > Jul 19 20:41:53 xd kernel: Console: switching to colour dummy device 80x25
> > Jul 19 20:41:53 xd kernel: i915 0000:00:02.0: vgaarb: deactivate vga console
> > Jul 19 20:41:53 xd kernel: i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
> > Jul 19 20:41:53 xd kernel: i915 0000:00:02.0: firmware: failed to load i915/tgl_dmc_ver2_08.bin (-2)
> > Jul 19 20:41:53 xd kernel: firmware_class: See https://wiki.debian.org/Firmware for information about missing firmware
> > Jul 19 20:41:53 xd kernel: i915 0000:00:02.0: Direct firmware load for i915/tgl_dmc_ver2_08.bin failed with error -2
> > Jul 19 20:41:53 xd kernel: i915 0000:00:02.0: [drm] Failed to load DMC firmware i915/tgl_dmc_ver2_08.bin. Disabling runtime power management.
> > Jul 19 20:41:53 xd kernel: i915 0000:00:02.0: [drm] DMC firmware homepage: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/i915
> > Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: bios: version 90.17.74.00.2f
> > Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: firmware: failed to load nvidia/tu117/nvdec/scrubber.bin (-2)
> > Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: firmware: failed to load nvidia/tu117/acr/bl.bin (-2)
> > Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: firmware: failed to load nvidia/tu117/acr/bl.bin (-2)
> > Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: firmware: failed to load nvidia/tu117/acr/unload_bl.bin (-2)

It looks like you also might be missing some firmware
packages. These might be available in the non-free
section of Debian's packages repository.

Chuck

> > Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: pmu: firmware unavailable
> > Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: gr: firmware unavailable
> > Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: sec2: firmware unavailable
> > Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: fb: 2048 MiB GDDR5
> > Jul 19 20:41:53 xd kernel: [TTM] Zone kernel: Available graphics memory: 8082824 KiB
> > Jul 19 20:41:53 xd kernel: [TTM] Zone dma32: Available graphics memory: 2097152 KiB
> > Jul 19 20:41:53 xd kernel: [TTM] Initializing pool allocator
> > Jul 19 20:41:53 xd kernel: [TTM] Initializing DMA pool allocator
> > Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: DRM: VRAM: 2048 MiB
> > Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: DRM: GART: 536870912 MiB
> > Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: DRM: BIT table 'A' not found
> > Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: DRM: BIT table 'L' not found
> > Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: DRM: Pointer to TMDS table not found
> > Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: DRM: DCB version 4.1
> > Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: DRM: failed to create kernel channel, -22
> > Jul 19 20:41:53 xd kernel: nouveau 0000:01:00.0: DRM: MM: using COPY for buffer copies
> > Jul 19 20:41:53 xd kernel: usb 1-5: new low-speed USB device number 2 using xhci_hcd
> > Jul 19 20:41:53 xd kernel: [drm] Initialized nouveau 1.3.1 20120801 for 0000:01:00.0 on minor 1
> > Jul 19 20:41:53 xd kernel: usb 1-5: New USB device found, idVendor=046d, idProduct=c077, bcdDevice=72.00
> > Jul 19 20:41:53 xd kernel: usb 1-5: New USB device strings: Mfr=1, Product=2, SerialNumber=0
> > Jul 19 20:41:53 xd kernel: usb 1-5: Product: USB Optical Mouse
> > Jul 19 20:41:53 xd kernel: usb 1-5: Manufacturer: Logitech
> > Jul 19 20:41:53 xd kernel: ata2: SATA link down (SStatus 0 SControl 300)
> > Jul 19 20:41:53 xd kernel: ata1: SATA link down (SStatus 0 SControl 300)
> > Jul 19 20:41:53 xd kernel: input: Logitech USB Optical Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.0/0003:046D:C077.0002/input/input7
> > Jul 19 20:41:53 xd kernel: hid-generic 0003:046D:C077.0002: input,hidraw1: USB HID v1.11 Mouse [Logitech USB Optical Mouse] on usb-0000:00:14.0-5/input0
> > Jul 19 20:41:53 xd kernel: usbcore: registered new interface driver usbhid
> > Jul 19 20:41:53 xd kernel: usbhid: USB HID core driver
> > Jul 19 20:41:53 xd kernel: usb 1-7: new full-speed USB device number 3 using xhci_hcd
> > Jul 19 20:41:53 xd kernel: usb 1-7: New USB device found, idVendor=04f3, idProduct=0c4f, bcdDevice= 1.61
> > Jul 19 20:41:53 xd kernel: usb 1-7: New USB device strings: Mfr=1, Product=2, SerialNumber=0
> > Jul 19 20:41:53 xd kernel: usb 1-7: Product: ELAN:Fingerprint
> > Jul 19 20:41:53 xd kernel: usb 1-7: Manufacturer: ELAN
> > Jul 19 20:41:53 xd kernel: usb 1-8: new high-speed USB device number 4 using xhci_hcd
> > Jul 19 20:41:53 xd kernel: usb 1-8: New USB device found, idVendor=0408, idProduct=a061, bcdDevice= 0.04
> > Jul 19 20:41:53 xd kernel: usb 1-8: New USB device strings: Mfr=1, Product=2, SerialNumber=0
> > Jul 19 20:41:53 xd kernel: usb 1-8: Product: HD User Facing
> > Jul 19 20:41:53 xd kernel: usb 1-8: Manufacturer: SunplusIT Inc
> > Jul 19 20:41:53 xd kernel: usb 1-10: new high-speed USB device number 5 using xhci_hcd
> > Jul 19 20:41:53 xd kernel: usb 1-10: New USB device found, idVendor=04ca, idProduct=3802, bcdDevice= 1.00
> > Jul 19 20:41:53 xd kernel: usb 1-10: New USB device strings: Mfr=5, Product=6, SerialNumber=7
> > Jul 19 20:41:53 xd kernel: usb 1-10: Product: Wireless_Device
> > Jul 19 20:41:53 xd kernel: usb 1-10: Manufacturer: MediaTek Inc.
> > Jul 19 20:41:53 xd kernel: usb 1-10: SerialNumber: 000000000
> > Jul 19 20:41:53 xd kernel: [drm] Initialized i915 1.6.0 20200917 for 0000:00:02.0 on minor 0
> > Jul 19 20:41:53 xd kernel: [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
> > Jul 19 20:41:53 xd kernel: ACPI: Video Device [PEGP] (multi-head: yes rom: no post: no)
> > Jul 19 20:41:53 xd kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/LNXVIDEO:00/input/input8
> > Jul 19 20:41:53 xd kernel: ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
> > Jul 19 20:41:53 xd kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input9
> > Jul 19 20:41:53 xd kernel: vga_switcheroo: enabled
> > Jul 19 20:41:53 xd kernel: fbcon: i915drmfb (fb0) is primary device
> > Jul 19 20:41:53 xd kernel: Console: switching to colour frame buffer device 240x67
> > Jul 19 20:41:53 xd kernel: i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
> > Jul 19 20:41:53 xd kernel: PM: Image not found (code -22)
> > Jul 19 20:41:53 xd kernel: EXT4-fs (nvme0n1p3): mounting ext3 file system using the ext4 subsystem
> > Jul 19 20:41:53 xd kernel: EXT4-fs (nvme0n1p3): mounted filesystem with ordered data mode. Opts: (null)
> > Jul 19 20:41:53 xd kernel: Not activating Mandatory Access Control as /sbin/tomoyo-init does not exist.
> > Jul 19 20:41:53 xd systemd[1]: Inserted module 'autofs4'
> > Jul 19 20:41:53 xd systemd[1]: systemd 247.3-7 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=unified)
> > Jul 19 20:41:53 xd systemd[1]: Detected architecture x86-64.
> > Jul 19 20:41:53 xd systemd[1]: Set hostname to <xd>.
> > Jul 19 20:41:53 xd systemd[1]: /lib/systemd/system/plymouth-start.service:16: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed.
> > Jul 19 20:41:53 xd systemd[1]: Queued start job for default target Graphical Interface.
> > Jul 19 20:41:53 xd systemd[1]: Created slice system-getty.slice.
> > Jul 19 20:41:53 xd systemd[1]: Created slice system-modprobe.slice.
> > Jul 19 20:41:53 xd systemd[1]: Created slice system-systemd\x2dfsck.slice.
> > Jul 19 20:41:53 xd systemd[1]: Created slice User and Session Slice.
> > Jul 19 20:41:53 xd systemd[1]: Started Forward Password Requests to Wall Directory Watch.
> > Jul 19 20:41:53 xd systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
> > Jul 19 20:41:53 xd systemd[1]: Reached target User and Group Name Lookups.
> > Jul 19 20:41:53 xd systemd[1]: Reached target Remote File Systems.
> > Jul 19 20:41:53 xd systemd[1]: Reached target Slices.
> > Jul 19 20:41:53 xd systemd[1]: Listening on Device-mapper event daemon FIFOs.
> > Jul 19 20:41:53 xd systemd[1]: Listening on LVM2 poll daemon socket.
> > Jul 19 20:41:53 xd systemd[1]: Listening on Syslog Socket.
> > Jul 19 20:41:53 xd systemd[1]: Listening on fsck to fsckd communication Socket.
> > Jul 19 20:41:53 xd systemd[1]: Listening on initctl Compatibility Named Pipe.
> > Jul 19 20:41:53 xd systemd[1]: Listening on Journal Audit Socket.
> > Jul 19 20:41:53 xd systemd[1]: Listening on Journal Socket (/dev/log).
> > Jul 19 20:41:53 xd systemd[1]: Listening on Journal Socket.
> > Jul 19 20:41:53 xd systemd[1]: Listening on udev Control Socket.
> > Jul 19 20:41:53 xd systemd[1]: Listening on udev Kernel Socket.
> > Jul 19 20:41:53 xd systemd[1]: Mounting Huge Pages File System...
> > Jul 19 20:41:53 xd systemd[1]: Mounting POSIX Message Queue File System...
> > Jul 19 20:41:53 xd systemd[1]: Mounting Kernel Debug File System...
> > Jul 19 20:41:53 xd systemd[1]: Mounting Kernel Trace File System...
> > Jul 19 20:41:53 xd systemd[1]: Finished Availability of block devices.
> > Jul 19 20:41:53 xd systemd[1]: Starting Set the console keyboard layout...
> > Jul 19 20:41:53 xd systemd[1]: Starting Create list of static device nodes for the current kernel...
> > Jul 19 20:41:53 xd systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
> > Jul 19 20:41:53 xd systemd[1]: Starting Load Kernel Module configfs...
> > Jul 19 20:41:53 xd systemd[1]: Starting Load Kernel Module drm...
> > Jul 19 20:41:53 xd systemd[1]: Starting Load Kernel Module fuse...
> > Jul 19 20:41:53 xd systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
> > Jul 19 20:41:53 xd systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
> > Jul 19 20:41:53 xd systemd[1]: Starting Journal Service...
> > Jul 19 20:41:53 xd systemd[1]: Starting Load Kernel Modules...
> > Jul 19 20:41:53 xd systemd[1]: Starting Remount Root and Kernel File Systems...
> > Jul 19 20:41:53 xd systemd[1]: Starting Coldplug All udev Devices...
> > Jul 19 20:41:53 xd systemd[1]: Mounted Huge Pages File System.
> > Jul 19 20:41:53 xd systemd[1]: Mounted POSIX Message Queue File System.
> > Jul 19 20:41:53 xd systemd[1]: Mounted Kernel Debug File System.
> > Jul 19 20:41:53 xd systemd[1]: Mounted Kernel Trace File System.
> > Jul 19 20:41:53 xd systemd[1]: Finished Create list of static device nodes for the current kernel.
> > Jul 19 20:41:53 xd systemd[1]: modprobe@configfs.service: Succeeded.
> > Jul 19 20:41:53 xd systemd[1]: Finished Load Kernel Module configfs.
> > Jul 19 20:41:53 xd systemd[1]: modprobe@drm.service: Succeeded.
> > Jul 19 20:41:53 xd systemd[1]: Finished Load Kernel Module drm.
> > Jul 19 20:41:53 xd systemd[1]: Mounting Kernel Configuration File System...
> > Jul 19 20:41:53 xd systemd[1]: Mounted Kernel Configuration File System.
> > Jul 19 20:41:53 xd kernel: fuse: init (API version 7.32)
> > Jul 19 20:41:53 xd systemd[1]: modprobe@fuse.service: Succeeded.
> > Jul 19 20:41:53 xd systemd[1]: Finished Load Kernel Module fuse.
> > Jul 19 20:41:53 xd systemd[1]: Mounting FUSE Control File System...
> > Jul 19 20:41:53 xd kernel: EXT4-fs (nvme0n1p3): re-mounted. Opts: errors=remount-ro
> > Jul 19 20:41:53 xd systemd[1]: Finished Remount Root and Kernel File Systems.
> > Jul 19 20:41:53 xd systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
> > Jul 19 20:41:53 xd systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped.
> > Jul 19 20:41:53 xd systemd[1]: Starting Load/Save Random Seed...
> > Jul 19 20:41:53 xd systemd[1]: Starting Create System Users...
> > Jul 19 20:41:53 xd systemd[1]: Mounted FUSE Control File System.
> > Jul 19 20:41:53 xd kernel: lp: driver loaded but no devices found
> > Jul 19 20:41:53 xd systemd[1]: Finished Load/Save Random Seed.
> > Jul 19 20:41:53 xd systemd[1]: Condition check resulted in First Boot Complete being skipped.
> > Jul 19 20:41:53 xd kernel: ppdev: user-space parallel port driver
> > Jul 19 20:41:53 xd systemd[1]: Finished Create System Users.
> > Jul 19 20:41:53 xd systemd[1]: Starting Create Static Device Nodes in /dev...
> > Jul 19 20:41:53 xd systemd[1]: Finished Load Kernel Modules.
> > Jul 19 20:41:53 xd systemd[1]: Starting Apply Kernel Variables...
> > Jul 19 20:41:53 xd systemd[1]: Finished Apply Kernel Variables.
> > Jul 19 20:41:53 xd systemd[1]: Finished Create Static Device Nodes in /dev.
> > Jul 19 20:41:53 xd systemd[1]: Starting Rule-based Manager for Device Events and Files...
> > Jul 19 20:41:53 xd systemd[1]: Finished Set the console keyboard layout.
> > Jul 19 20:41:53 xd systemd[1]: Started Journal Service.
> > Jul 19 20:41:53 xd kernel: input: Acer Wireless Radio Control as /devices/LNXSYSTM:00/10251229:00/input/input10
> > Jul 19 20:41:53 xd kernel: intel_pmc_core INT33A1:00: initialized
> > Jul 19 20:41:53 xd kernel: input: Intel HID events as /devices/platform/INTC1051:00/input/input11
> > Jul 19 20:41:53 xd kernel: intel-hid INTC1051:00: platform supports 5 button array
> > Jul 19 20:41:53 xd kernel: input: Intel HID 5 button array as /devices/platform/INTC1051:00/input/input12
> > Jul 19 20:41:53 xd kernel: ACPI: AC Adapter [ACAD] (on-line)
> > Jul 19 20:41:53 xd kernel: mc: Linux media interface: v0.10
> > Jul 19 20:41:53 xd kernel: mei_me 0000:00:16.0: enabling device (0000 -> 0002)
> > Jul 19 20:41:53 xd kernel: videodev: Linux video capture interface: v2.00
> > Jul 19 20:41:53 xd kernel: ee1004 0-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
> > Jul 19 20:41:53 xd kernel: iTCO_vendor_support: vendor-support=0
> > Jul 19 20:41:53 xd kernel: iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
> > Jul 19 20:41:53 xd kernel: iTCO_wdt: Found a Intel PCH TCO device (Version=6, TCOBASE=0x0400)
> > Jul 19 20:41:53 xd kernel: iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
> > Jul 19 20:41:53 xd kernel: EXT4-fs (nvme0n1p2): mounting ext2 file system using the ext4 subsystem
> > Jul 19 20:41:53 xd kernel: EXT4-fs (nvme0n1p2): mounted filesystem without journal. Opts: (null)
> > Jul 19 20:41:53 xd kernel: ext2 filesystem being mounted at /boot supports timestamps until 2038 (0x7fffffff)
> > Jul 19 20:41:53 xd kernel: uvcvideo: Found UVC 1.00 device HD User Facing (0408:a061)
> > Jul 19 20:41:53 xd kernel: Adding 31182844k swap on /dev/nvme0n1p4. Priority:-2 extents:1 across:31182844k SSFS
> > Jul 19 20:41:53 xd kernel: input: HD User Facing: HD User Facing as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/input/input13
> > Jul 19 20:41:53 xd kernel: acer_wmi: Acer Laptop ACPI-WMI Extras
> > Jul 19 20:41:53 xd kernel: acer_wmi: Function bitmap for Communication Button: 0x801
> > Jul 19 20:41:53 xd kernel: input: Acer WMI hotkeys as /devices/virtual/input/input14
> > Jul 19 20:41:53 xd kernel: cryptd: max_cpu_qlen set to 1000
> > Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.900:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=401 comm="apparmor_parser"
> > Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.900:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-oopslash" pid=402 comm="apparmor_parser"
> > Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.900:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=405 comm="apparmor_parser"
> > Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.900:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=405 comm="apparmor_parser"
> > Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.900:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=403 comm="apparmor_parser"
> > Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.900:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=403 comm="apparmor_parser"
> > Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.900:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=403 comm="apparmor_parser"
> > Jul 19 20:41:53 xd kernel: usbcore: registered new interface driver uvcvideo
> > Jul 19 20:41:53 xd kernel: USB Video Class driver (1.1.1)
> > Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.912:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-xpdfimport" pid=412 comm="apparmor_parser"
> > Jul 19 20:41:53 xd kernel: audit: type=1400 audit(1658259713.912:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cups-browsed" pid=408 comm="apparmor_parser"
> > Jul 19 20:41:53 xd kernel: pstore: Using crash dump compression: deflate
> > Jul 19 20:41:53 xd kernel: input: ELAN0515:01 04F3:3142 Mouse as /devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input15
> > Jul 19 20:41:53 xd kernel: input: ELAN0515:01 04F3:3142 Touchpad as /devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input17
> > Jul 19 20:41:53 xd kernel: hid-multitouch 0018:04F3:3142.0001: input,hidraw0: I2C HID v1.00 Mouse [ELAN0515:01 04F3:3142] on i2c-ELAN0515:01
> > Jul 19 20:41:53 xd kernel: pstore: Registered efi as persistent store backend
> > Jul 19 20:41:54 xd kernel: input: PC Speaker as /devices/platform/pcspkr/input/input18
> > Jul 19 20:41:54 xd kernel: AVX2 version of gcm_enc/dec engaged.
> > Jul 19 20:41:54 xd kernel: AES CTR mode by8 optimization enabled
> > Jul 19 20:41:54 xd kernel: resource sanity check: requesting [mem 0xfedc0000-0xfedcdfff], which spans more than pnp 00:04 [mem 0xfedc0000-0xfedc7fff]
> > Jul 19 20:41:54 xd kernel: caller tgl_uncore_imc_freerunning_init_box+0xbb/0x100 [intel_uncore] mapping multiple BARs
> > Jul 19 20:41:54 xd kernel: snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040100
> > Jul 19 20:41:54 xd kernel: snd_hda_intel 0000:00:1f.3: Digital mics found on Skylake+ platform, using SOF driver
> > Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040100
> > Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: Digital mics found on Skylake+ platform, using SOF driver
> > Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: enabling device (0000 -> 0002)
> > Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if 0x040100
> > Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
> > Jul 19 20:41:54 xd kernel: r8169 0000:02:00.0: firmware: failed to load rtl_nic/rtl8168h-2.fw (-2)
> > Jul 19 20:41:54 xd kernel: r8169 0000:02:00.0: Direct firmware load for rtl_nic/rtl8168h-2.fw failed with error -2
> > Jul 19 20:41:54 xd kernel: r8169 0000:02:00.0: Unable to load firmware rtl_nic/rtl8168h-2.fw (-2)
> > Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: use msi interrupt mode
> > Jul 19 20:41:54 xd kernel: Generic FE-GE Realtek PHY r8169-0-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-0-200:00, irq=IGNORE)
> > Jul 19 20:41:54 xd kernel: alg: No test for fips(ansi_cprng) (fips_ansi_cprng)
> > Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: hda codecs found, mask 5
> > Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: using HDA machine driver skl_hda_dsp_generic now
> > Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: DMICs detected in NHLT tables: 2
> > Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: firmware: failed to load intel/sof/sof-tgl.ri (-2)
> > Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: Direct firmware load for intel/sof/sof-tgl.ri failed with error -2
> > Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: error: request firmware intel/sof/sof-tgl.ri failed err: -2
> > Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: error: failed to load DSP firmware -2
> > Jul 19 20:41:54 xd kernel: sof-audio-pci 0000:00:1f.3: error: sof_probe_work failed err: -2
> > Jul 19 20:41:54 xd kernel: r8169 0000:02:00.0 enp2s0: Link is Down
> > Jul 19 20:41:54 xd kernel: Bluetooth: Core ver 2.22
> > Jul 19 20:41:54 xd kernel: NET: Registered protocol family 31
> > Jul 19 20:41:54 xd kernel: Bluetooth: HCI device and connection manager initialized
> > Jul 19 20:41:54 xd kernel: Bluetooth: HCI socket layer initialized
> > Jul 19 20:41:54 xd kernel: Bluetooth: L2CAP socket layer initialized
> > Jul 19 20:41:54 xd kernel: Bluetooth: SCO socket layer initialized
> > Jul 19 20:41:54 xd kernel: usbcore: registered new interface driver btusb
> > Jul 19 20:41:54 xd kernel: Bluetooth: BNEP (Ethernet Emulation) ver 1.3
> > Jul 19 20:41:54 xd kernel: Bluetooth: BNEP filters: protocol multicast
> > Jul 19 20:41:54 xd kernel: Bluetooth: BNEP socket layer initialized
> > Jul 19 20:41:54 xd kernel: mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_component_ops [i915])
> > Jul 19 20:41:54 xd kernel: intel_rapl_msr: PL4 support detected.
> > Jul 19 20:41:54 xd kernel: intel_rapl_common: Found RAPL domain package
> > Jul 19 20:41:54 xd kernel: intel_rapl_common: Found RAPL domain core
> > Jul 19 20:41:54 xd kernel: intel_rapl_common: Found RAPL domain uncore
> > Jul 19 20:41:55 xd kernel: rfkill: input handler disabled
> > Jul 19 20:42:03 xd kernel: nouveau 0000:01:00.0: fifo: fault 09 [PHYS_WRITE] at 000000007fef0000 engine c0 [BAR2] client 08 [HUB/HOST_CPU_NB] reason 0d [REGION_VIOLATION] on channel -1 [0000000000 unknown]
> > Jul 19 20:42:03 xd kernel: nouveau 0000:01:00.0: fifo: fault 09 [PHYS_WRITE] at 000000007fef0000 engine c0 [BAR2] client 08 [HUB/HOST_CPU_NB] reason 0d [REGION_VIOLATION] on channel -1 [0000000000 unknown]
> >
> > ...
> >
> >
> > Jul 19 20:42:26 xd kernel: nouveau 0000:01:00.0: fifo: PBDMA0: 01000000 [] ch 0 [007f992000 DRM] subc 0 mthd 0008 data 00000000
> > Jul 19 20:42:26 xd kernel: nouveau 0000:01:00.0: DRM: failed to idle channel 0 [DRM]
> > Jul 19 20:42:26 xd kernel: nouveau 0000:01:00.0: fifo: PBDMA0: 01000000 [] ch 0 [007f992000 DRM] subc 0 mthd 0008 data 00000000
> > Jul 19 20:42:26 xd kernel: nouveau 0000:01:00.0: fifo: PBDMA0: 01000000 [] ch 0 [007f992000 DRM] subc 0 mthd 0008 data 00000000
> > Jul 19 20:42:26 xd kernel: nouveau 0000:01:00.0: fifo: PBDMA0: 01000000 [] ch 0 [007f992000 DRM] subc 0 mthd 0008 data 00000000
> > Jul 19 20:42:26 xd kernel: nouveau 0000:01:00.0: fifo: PBDMA0: 01000000 [] ch 0 [007f992000 DRM] subc 0 mthd 0008 data 00000000
> > Jul 19 20:42:26 xd kernel: ------------[ cut here ]------------
> > Jul 19 20:42:26 xd kernel: WARNING: CPU: 2 PID: 479 at drivers/gpu/drm/nouveau/nvkm/subdev/mc/base.c:72 nvkm_mc_intr+0x14d/0x170 [nouveau]
> > Jul 19 20:42:26 xd kernel: Modules linked in: intel_rapl_msr intel_rapl_common snd_soc_dmic mei_hdcp bnep btusb btrtl btbcm btintel bluetooth x86_pkg_temp_thermal intel_powerclamp coretemp jitterentropy_rng kvm_intel snd_hda_codec_hdmi snd_hda_codec_realtek drbg snd_hda_codec_generic kvm snd_sof_pci snd_sof_intel_byt snd_sof_intel_ipc snd_sof_intel_hda_common snd_sof_xtensa_dsp snd_sof snd_sof_intel_hda irqbypass snd_soc_hdac_hda snd_hda_ext_core aes_generic ghash_clmulni_intel snd_soc_acpi_intel_match snd_soc_acpi ledtrig_audio snd_hda_intel snd_intel_dspcfg soundwire_intel intel_cstate soundwire_generic_allocation snd_soc_core intel_uncore joydev snd_compress soundwire_cadence aesni_intel pcspkr snd_hda_codec crypto_simd cryptd glue_helper nls_ascii snd_hda_core ansi_cprng nls_cp437 serio_raw snd_hwdep acer_wmi vfat ecdh_generic soundwire_bus efi_pstore fat snd_pcm uvcvideo snd_timer videobuf2_vmalloc iTCO_wdt snd videobuf2_memops intel_pmc_bxt wmi_bmof videobuf2_v4l2
> > iTCO_vendor_support watchdog
> > Jul 19 20:42:26 xd kernel: videobuf2_common soundcore ee1004 videodev rfkill ecc mei_me libaes mc mei hid_multitouch evdev ac tpm_crb tpm_tis tpm_tis_core tpm intel_hid intel_pmc_core sparse_keymap acpi_pad rng_core acer_wireless msr parport_pc ppdev lp parport fuse configfs efivarfs ip_tables x_tables autofs4 ext4 crc16 mbcache jbd2 crc32c_generic usbhid i915 nouveau ahci hid_generic libahci mxm_wmi ttm i2c_algo_bit nvme libata drm_kms_helper xhci_pci nvme_core xhci_hcd scsi_mod cec t10_pi crc_t10dif r8169 crct10dif_generic drm realtek mdio_devres libphy usbcore crct10dif_pclmul crct10dif_common i2c_hid crc32_pclmul crc32c_intel hid i2c_i801 i2c_smbus intel_lpss_pci intel_lpss idma64 vmd usb_common fan button battery video wmi
> > Jul 19 20:42:26 xd kernel: CPU: 2 PID: 479 Comm: in:imklog Not tainted 5.10.0-16-amd64 #1 Debian 5.10.127-1
> > Jul 19 20:42:26 xd kernel: Hardware name: Acer Aspire A517-52G/Jasmine_TL, BIOS V1.26 03/14/2022
> > Jul 19 20:42:26 xd kernel: RIP: 0010:nvkm_mc_intr+0x14d/0x170 [nouveau]
> > Jul 19 20:42:26 xd kernel: Code: 44 24 18 65 48 2b 04 25 28 00 00 00 75 2b 48 83 c4 20 5b 5d 41 5c 41 5d 41 5e 41 5f c3 41 8b 47 40 85 c0 74 ba e9 3a 9d 0a 00 <0f> 0b 45 31 e4 c6 44 24 0f 00 e9 00 ff ff ff e8 df b8 d3 f9 66 66
> > Jul 19 20:42:26 xd kernel: RSP: 0018:ffffad10001c0ef0 EFLAGS: 00010046
> > Jul 19 20:42:26 xd kernel: RAX: 00000000ffffffff RBX: ffff997305c62280 RCX: 000000000000080b
> > Jul 19 20:42:26 xd kernel: RDX: 0000000000000000 RSI: ffffad10001c0f4f RDI: ffffad1007000104
> > Jul 19 20:42:26 xd kernel: RBP: ffff9971e0b6c000 R08: ffff9971d129e900 R09: 0000000000000000
> > Jul 19 20:42:26 xd kernel: R10: 0000000000000000 R11: 0000000000000000 R12: 00000000ffffffff
> > Jul 19 20:42:26 xd kernel: R13: ffffad10001c0fac R14: 000000000000009e R15: ffff9971e0c0a900
> > Jul 19 20:42:26 xd kernel: FS: 00007f586f6ae700(0000) GS:ffff997560480000(0000) knlGS:0000000000000000
> > Jul 19 20:42:26 xd kernel: CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
> > Jul 19 20:42:26 xd kernel: CR2: 00007faf88013388 CR3: 0000000109b80005 CR4: 0000000000770ee0
> > Jul 19 20:42:26 xd kernel: PKRU: 55555554
> > Jul 19 20:42:26 xd kernel: Call Trace:
> > Jul 19 20:42:26 xd kernel: <IRQ>
> > Jul 19 20:42:26 xd kernel: ? gp100_mc_intr_update+0x54/0x80 [nouveau]
> > Jul 19 20:42:26 xd kernel: nvkm_pci_intr+0x4d/0x90 [nouveau]
> > Jul 19 20:42:26 xd kernel: __handle_irq_event_percpu+0x3d/0x160
> > Jul 19 20:42:26 xd kernel: handle_irq_event+0x57/0xb0
> > Jul 19 20:42:26 xd kernel: handle_edge_irq+0x87/0x220
> > Jul 19 20:42:26 xd kernel: asm_call_irq_on_stack+0xf/0x20
> > Jul 19 20:42:26 xd kernel: </IRQ>
> > Jul 19 20:42:26 xd kernel: common_interrupt+0xb0/0x130
> > Jul 19 20:42:26 xd kernel: asm_common_interrupt+0x1e/0x40
> > Jul 19 20:42:26 xd kernel: RIP: 0010:__check_heap_object+0x3b/0x110
> > Jul 19 20:42:26 xd kernel: Code: ee 00 48 89 f8 48 c1 fa 06 89 cf 48 c1 e2 0c 48 03 15 29 09 ee 00 48 39 d0 0f 82 b0 00 00 00 48 29 d0 8b 4e 18 48 99 48 f7 f9 <89> d0 0f 1f 44 00 00 8b 96 d0 00 00 00 39 c2 77 1c 41 89 c2 44 8b
> > Jul 19 20:42:26 xd kernel: RSP: 0018:ffffad1000adbde0 EFLAGS: 00000206
> > Jul 19 20:42:26 xd kernel: RAX: 000000000000001b RBX: 0000000000000077 RCX: 0000000000000400
> > Jul 19 20:42:26 xd kernel: RDX: 0000000000000000 RSI: ffff9971c0043500 RDI: 0000000000000001
> > Jul 19 20:42:26 xd kernel: RBP: ffff997242d46c77 R08: 0000000000000077 R09: 302e30303a31303a
> > Jul 19 20:42:26 xd kernel: R10: 0000000076756f6e R11: 0000000076756f6e R12: ffff997242d46c00
> > Jul 19 20:42:26 xd kernel: R13: 0000000000000001 R14: ffff997242d46c00 R15: 0000000000000077
> > Jul 19 20:42:26 xd kernel: __check_object_size+0x136/0x150
> > Jul 19 20:42:26 xd kernel: syslog_print+0xc3/0x210
> > Jul 19 20:42:26 xd kernel: kmsg_read+0x3e/0x50
> > Jul 19 20:42:26 xd kernel: vfs_read+0x98/0x180
> > Jul 19 20:42:26 xd kernel: ksys_read+0x5f/0xe0
> > Jul 19 20:42:26 xd kernel: do_syscall_64+0x33/0x80
> > Jul 19 20:42:26 xd kernel: entry_SYSCALL_64_after_hwframe+0x44/0xa9
> > Jul 19 20:42:26 xd kernel: RIP: 0033:0x7f58700c908c
> > Jul 19 20:42:26 xd kernel: Code: ec 28 48 89 54 24 18 48 89 74 24 10 89 7c 24 08 e8 89 fc ff ff 48 8b 54 24 18 48 8b 74 24 10 41 89 c0 8b 7c 24 08 31 c0 0f 05 <48> 3d 00 f0 ff ff 77 34 44 89 c7 48 89 44 24 08 e8 bf fc ff ff 48
> > Jul 19 20:42:26 xd kernel: RSP: 002b:00007f586f68d4d0 EFLAGS: 00000246 ORIG_RAX: 0000000000000000
> > Jul 19 20:42:26 xd kernel: RAX: ffffffffffffffda RBX: 0000000000000000 RCX: 00007f58700c908c
> > Jul 19 20:42:26 xd kernel: RDX: 0000000000001fa0 RSI: 00007f586f68dd00 RDI: 0000000000000005
> > Jul 19 20:42:26 xd kernel: RBP: 00005619c2c61920 R08: 0000000000000000 R09: 00005619c2c6ba38
> > Jul 19 20:42:26 xd kernel: R10: 0000000000000000 R11: 0000000000000246 R12: 00007f586f68dd00
> > Jul 19 20:42:26 xd kernel: R13: 0000000000001fa0 R14: 00007f586f68dd00 R15: 00007f586f68fc9c
> > Jul 19 20:42:26 xd kernel: ---[ end trace c1b76539949981fe ]---
> > Jul 19 20:42:26 xd kernel: nouveau 0000:01:00.0: fifo: fault 0f [] at ffffffffffffffff engine ff [] client 7f [HUB/] reason 1f [] on channel -1 [fffffffffffff000 unknown]
> >
>
> Hi Bruno,
>
> I have no trouble booting my old Intel Haswell system into Xen on Debian 11,
> but my system does not have an nvidia video card which often are not
> friendly with free software like Debian.
>
> It looks like the trouble is with the nouveau driver. I think there are also
> proprietary drivers for nvidia video cards in the Debian non-free packages
> section of the Debian packages repository. Are you setup to use those
> non-free packages with apt? You can try using those drivers instead if you have
> not already tried that. I am not sure how to do it, but posting a question to
> debian-user@lists.debian.org might give you the answer for how to install and
> use the proprietary nvidia drivers instead of the nouveau drivers. With the
> non-free nvidia drivers, the system might be able to boot on Xen.
>
> Chuck
Re: Boot into Xen on debian11 [ In reply to ]
On 7/20/2022 8:49 AM, Bruno wrote:
> Hello Leigh.
>
> Thank you for the help and attention.
>
> Yes. You’re right… I cannot access via journalctl -k -b -1 the log…
>
> At this point, I don’t know yet how to export that from initramfs prompt or what I could do in initramfs prompt to load the system.

You might try looking in /var/log/kernel.log or /var/log/kernel.log.1 for
the failed boot log you are looking for.

Chuck

>
> > On 20 Jul 2022, at 13:43, Leigh Brown <leigh@solinno.co.uk> wrote:
> >
> > ?Hi Bruno,
> >
> >> On 2022-07-20 13:17, Bruno wrote:
> >> Here the ring buffer (journalctl -k -b -1) from the failed boot into Xen.
> >
> > Are you sure that's the correct log because there should be a message like this:
> > [ 0.000000] Hypervisor detected: Xen PV
> >
> >> -- Journal begins at Mon 2022-07-18 16:19:02 BST, ends at Tue 2022-07-19 20:43:04 BST. --
> >> Jul 19 20:41:53 xd kernel: Linux version 5.10.0-16-amd64 (debian-kernel@lists.debian.org) (gcc-10 (Debian 10.2.1-6) 10.2.1 20210110, GNU ld (GNU Binutils for Debian) 2.35.2) #1 SMP Debian 5.10.127-1 (2022-06-30)
> >> Jul 19 20:41:53 xd kernel: Command line: BOOT_IMAGE=/vmlinuz-5.10.0-16-amd64 root=UUID=0123abcd ro quiet
>
Re: Boot into Xen on debian11 [ In reply to ]
On 7/20/2022 9:44 AM, Chuck Zmudzinski wrote:
> On 7/20/2022 8:49 AM, Bruno wrote:
> > Hello Leigh.
> >
> > Thank you for the help and attention.
> >
> > Yes. You’re right… I cannot access via journalctl -k -b -1 the log…
> >
> > At this point, I don’t know yet how to export that from initramfs prompt or what I could do in initramfs prompt to load the system.
>
> You might try looking in /var/log/kernel.log or /var/log/kernel.log.1 for
> the failed boot log you are looking for.

Oops. That's /var/log/kern.log or /var/log/kern.log.1.

Chuck

>
>
>
> >
> > > On 20 Jul 2022, at 13:43, Leigh Brown <leigh@solinno.co.uk> wrote:
> > >
> > > ?Hi Bruno,
> > >
> > >> On 2022-07-20 13:17, Bruno wrote:
> > >> Here the ring buffer (journalctl -k -b -1) from the failed boot into Xen.
> > >
> > > Are you sure that's the correct log because there should be a message like this:
> > > [ 0.000000] Hypervisor detected: Xen PV
> > >
> > >> -- Journal begins at Mon 2022-07-18 16:19:02 BST, ends at Tue 2022-07-19 20:43:04 BST. --
> > >> Jul 19 20:41:53 xd kernel: Linux version 5.10.0-16-amd64 (debian-kernel@lists.debian.org) (gcc-10 (Debian 10.2.1-6) 10.2.1 20210110, GNU ld (GNU Binutils for Debian) 2.35.2) #1 SMP Debian 5.10.127-1 (2022-06-30)
> > >> Jul 19 20:41:53 xd kernel: Command line: BOOT_IMAGE=/vmlinuz-5.10.0-16-amd64 root=UUID=0123abcd ro quiet
> >
>
Re: Boot into Xen on debian11 [ In reply to ]
On 7/19/22 10:42 AM, Bruno wrote:
>
>> Hello.
>>
>> Is there a way to boot into Xen on debian11 installing Xen the way documented, please?
>>
>> Multiboot2 is not doing the trick with initrd. Is there a workaround or a way to?
>>
>> Do we need a patch to grub to make Xen usable on this scenario? Does anyone boot into Xen? On debian? Debian11, please?
>>
>> I have posted it on stackexchange:
>>
>> https://unix.stackexchange.com/q/710400/375983
>>
>> |Linux xd 5.10.0-16-amd64 #1 SMP Debian 5.10.127-1 (2022-06-30) x86_64 GNU/Linux |
>>
>> On my debian11, I have installed |xen-hypervisor-4.14-amd64|, |xen-hypervisor-common|, |xen-system-amd64|, and |xen-utils-4.14|
>>
>> But I cannot boot into Xen, please help.
>>
>> Theoretically, after installing Xen, according to https://wiki.debian.org/Xen , I should only run:
>>
>> |dpkg-divert --divert /etc/grub.d/08_linux_xen --rename /etc/grub.d/20_linux_xen update-grub |
>>
>> Unfortunately, boot breaks and grub mailing list had a very deep debate on it last March-April - apparently multiboot2 will NOT do the trick:
>>
>> https://www.mail-archive.com/grub-devel@gnu.org/msg32020.html
>>
>> *I need some help, please. Is this inconclusive? Is there a work-around I could use (some partial boot on Xen and manually loading on the prompt the rest of what is needed for Xen to work)? How should I proceed? I will try to register this on grub, debian xen packages and Xen as requests/bugs - any further ideas on actions, please?*
>>
>> The discussion on grub mailing list points to this:
>>
>> https://wiki.debian.org/DebianInstaller/NetbootFirmware#The_Solution:_Add_Firmware_to_Initramfs
>>
>> This seems very complicated and risky… is this the way forward?
>>
>> Did anyone patch grub2 to be able to support what’s needed for Xen, please?
>>
>> Note: I’m using pure Xen, NOT Eve.
>>

I am trying to help. The default Xen boot settings on Debian work
for me. That is, it uses multiboot2 to boot Xen, and module2 to load
the Linux kernel and the initrd, and it works fine with Debian 11.

However, my system does not have an nvidia card, which sometimes
might not be friendly with free software like Debian. I do think, however,
that you should not need to do anything fancy or risky to get the
necessary firmware and kernel modules onto your initrd using Debian,
except that you will probably need to use packages from the
contrib and non-free areas of Debian's package repositories.

I think you should use the contrib and non-free packages from the
Debian packages repository if you are not already using it, and then
try to install the missing firmware (it looks like you are missing
firmware for both the i915 and the nouveau drivers.). For how to
do this, you might need to post a message to debian-user@lists.debian.org
because I have not needed to do it myself. Also, if it still
does not work, try running 'sudo update-initramfs -k 5.10.0-16-amd64'
to re-generate your initramfs after installing the missing firmware
and possibly installing proprietary nvidia drivers before trying it again,
but I think the Debian packaging system will automatically do
that for you when you install the missing non-free firmware and non-free
kernel modules.

Hope this helps,

Chuck

>> |/etc/default/grub| file contents:
>>
>> |# If you change this file, run 'update-grub' afterwards to update # /boot/grub/grub.cfg. # For full documentation of the options in this file, see: # info -f grub -n 'Simple configuration' GRUB_DEFAULT=0 GRUB_TIMEOUT=5 GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian` GRUB_CMDLINE_LINUX_DEFAULT="quiet" GRUB_CMDLINE_LINUX="" # Uncomment to enable BadRAM filtering, modify to suit your needs # This works with Linux (no patch required) and with any kernel that obtains # the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...) #GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef" # Uncomment to disable graphical terminal (grub-pc only) #GRUB_TERMINAL=console # The resolution used on graphical terminal # note that you can use only modes which your graphic card supports via VBE # you can see them in real GRUB with the command `vbeinfo' #GRUB_GFXMODE=640x480 # Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
>> #GRUB_DISABLE_LINUX_UUID=true # Uncomment to disable generation of recovery mode menu entries #GRUB_DISABLE_RECOVERY="true" # Uncomment to get a beep at grub start #GRUB_INIT_TUNE="480 440 1" |
>>
>> |/boot/grub/grub.cfg| file contents:
>>
>> |# # DO NOT EDIT THIS FILE # # It is automatically generated by grub-mkconfig using templates # from /etc/grub.d and settings from /etc/default/grub # ### BEGIN /etc/grub.d/00_header ### if [ -s $prefix/grubenv ]; then set have_grubenv=true load_env fi if [ "${next_entry}" ] ; then set default="${next_entry}" set next_entry= save_env next_entry set boot_once=true else set default="Debian GNU/Linux, with Xen hypervisor" fi if [ x"${feature_menuentry_id}" = xy ]; then menuentry_id_option="--id" else menuentry_id_option="" fi export menuentry_id_option if [ "${prev_saved_entry}" ]; then set saved_entry="${prev_saved_entry}" save_env saved_entry set prev_saved_entry= save_env prev_saved_entry set boot_once=true fi function savedefault { if [ -z "${boot_once}" ]; then saved_entry="${chosen}" save_env saved_entry fi } function load_video { if [ x$feature_all_video_module = xy ]; then insmod all_video else insmod efi_gop insmod efi_uga insmod ieee1275_fb insmod vbe insmod vga
>> insmod video_bochs insmod video_cirrus fi } if [ x$feature_default_font_path = xy ] ; then font=unicode else insmod part_gpt insmod ext2 if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root 0123abcd else search --no-floppy --fs-uuid --set=root 0123abcd fi font="/usr/share/grub/unicode.pf2" fi if loadfont $font ; then set gfxmode=auto load_video insmod gfxterm set locale_dir=$prefix/locale set lang=en_GB insmod gettext fi terminal_output gfxterm if [ "${recordfail}" = 1 ] ; then set timeout=30 else if [ x$feature_timeout_style = xy ] ; then set timeout_style=menu set timeout=5 # Fallback normal timeout code in case the timeout_style feature is # unavailable. else set timeout=5 fi fi ### END /etc/grub.d/00_header ### |
>> |### BEGIN /etc/grub.d/05_debian_theme ### insmod part_gpt insmod ext2 if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root 0123abcd else search --no-floppy --fs-uuid --set=root 0123abcd fi insmod png if background_image /usr/share/desktop-base/homeworld-theme/grub/grub-4x3.png; then set color_normal=white/black set color_highlight=black/white else set menu_color_normal=cyan/blue set menu_color_highlight=white/blue fi ### END /etc/grub.d/05_debian_theme ### ### BEGIN /etc/grub.d/08_linux_xen ### menuentry 'Debian GNU/Linux, with Xen hypervisor' --class debian --class gnu-linux --class gnu --class os --class xen $menuentry_id_option 'xen-gnulinux-simple-0123abcd' { insmod part_gpt insmod ext2 if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root 0123abcd else search --no-floppy --fs-uuid --set=root 0123abcd fi echo 'Loading Xen 4.14-amd64 ...' if [ "$grub_platform" = "pc" -o "$grub_platform" = "" ]; then
>> xen_rm_opts= else xen_rm_opts="no-real-mode edd=off" fi multiboot2 /xen-4.14-amd64.gz placeholder ${xen_rm_opts} echo 'Loading Linux 5.10.0-16-amd64 ...' module2 /vmlinuz-5.10.0-16-amd64 placeholder root=UUID=0123abcd ro quiet echo 'Loading initial ramdisk ...' module2 --nounzip /initrd.img-5.10.0-16-amd64 } submenu 'Advanced options for Debian GNU/Linux (with Xen hypervisor)' $menuentry_id_option 'gnulinux-advanced-0123abcd' { submenu 'Xen hypervisor, version 4.14-amd64' $menuentry_id_option 'xen-hypervisor-4.14-amd64-0123abcd' { menuentry 'Debian GNU/Linux, with Xen 4.14-amd64 and Linux 5.10.0-16-amd64' --class debian --class gnu-linux --class gnu --class os --class xen $menuentry_id_option 'xen-gnulinux-5.10.0-16-amd64-advanced-0123abcd' { insmod part_gpt insmod ext2 if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root 0123abcd else search --no-floppy --fs-uuid --set=root 0123abcd fi echo 'Loading Xen 4.14-amd64 ...' if [
>> "$grub_platform" = "pc" -o "$grub_platform" = "" ]; then xen_rm_opts= else xen_rm_opts="no-real-mode edd=off" fi multiboot2 /xen-4.14-amd64.gz placeholder ${xen_rm_opts} echo 'Loading Linux 5.10.0-16-amd64 ...' module2 /vmlinuz-5.10.0-16-amd64 placeholder root=UUID=0123abcd ro quiet echo 'Loading initial ramdisk ...' module2 --nounzip /initrd.img-5.10.0-16-amd64 } menuentry 'Debian GNU/Linux, with Xen 4.14-amd64 and Linux 5.10.0-16-amd64 (recovery mode)' --class debian --class gnu-linux --class gnu --class os --class xen $menuentry_id_option 'xen-gnulinux-5.10.0-16-amd64-recovery-0123abcd' { insmod part_gpt insmod ext2 if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root 0123abcd else search --no-floppy --fs-uuid --set=root 0123abcd fi echo 'Loading Xen 4.14-amd64 ...' if [ "$grub_platform" = "pc" -o "$grub_platform" = "" ]; then xen_rm_opts= else xen_rm_opts="no-real-mode edd=off" fi multiboot2 /xen-4.14-amd64.gz placeholder
>> ${xen_rm_opts} echo 'Loading Linux 5.10.0-16-amd64 ...' module2 /vmlinuz-5.10.0-16-amd64 placeholder root=UUID=0123abcd ro single echo 'Loading initial ramdisk ...' module2 --nounzip /initrd.img-5.10.0-16-amd64 } } submenu 'Xen hypervisor, version 4.14-amd64.efi' $menuentry_id_option 'xen-hypervisor-4.14-amd64.efi-0123abcd' { menuentry 'Debian GNU/Linux, with Xen 4.14-amd64.efi and Linux 5.10.0-16-amd64' --class debian --class gnu-linux --class gnu --class os --class xen $menuentry_id_option 'xen-gnulinux-5.10.0-16-amd64-advanced-0123abcd' { insmod part_gpt insmod ext2 if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root 0123abcd else search --no-floppy --fs-uuid --set=root 0123abcd fi echo 'Loading Xen 4.14-amd64.efi ...' if [ "$grub_platform" = "pc" -o "$grub_platform" = "" ]; then xen_rm_opts= else xen_rm_opts="no-real-mode edd=off" fi multiboot2 /xen-4.14-amd64.efi placeholder ${xen_rm_opts} echo 'Loading Linux 5.10.0-16-amd64 ...'
>> module2 /vmlinuz-5.10.0-16-amd64 placeholder root=UUID=0123abcd ro quiet echo 'Loading initial ramdisk ...' module2 --nounzip /initrd.img-5.10.0-16-amd64 } menuentry 'Debian GNU/Linux, with Xen 4.14-amd64.efi and Linux 5.10.0-16-amd64 (recovery mode)' --class debian --class gnu-linux --class gnu --class os --class xen $menuentry_id_option 'xen-gnulinux-5.10.0-16-amd64-recovery-0123abcd' { insmod part_gpt insmod ext2 if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root 0123abcd else search --no-floppy --fs-uuid --set=root 0123abcd fi echo 'Loading Xen 4.14-amd64.efi ...' if [ "$grub_platform" = "pc" -o "$grub_platform" = "" ]; then xen_rm_opts= else xen_rm_opts="no-real-mode edd=off" fi multiboot2 /xen-4.14-amd64.efi placeholder ${xen_rm_opts} echo 'Loading Linux 5.10.0-16-amd64 ...' module2 /vmlinuz-5.10.0-16-amd64 placeholder root=UUID=0123abcd ro single echo 'Loading initial ramdisk ...' module2 --nounzip /initrd.img-5.10.0-16-amd64 }
>> } } ### END /etc/grub.d/08_linux_xen ### ### BEGIN /etc/grub.d/10_linux ### function gfxmode { set gfxpayload="${1}" } set linux_gfx_mode= export linux_gfx_mode menuentry 'Debian GNU/Linux' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-0123abcd' { load_video insmod gzio if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi insmod part_gpt insmod ext2 if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root 0123abcd else search --no-floppy --fs-uuid --set=root 0123abcd fi echo 'Loading Linux 5.10.0-16-amd64 ...' linux /vmlinuz-5.10.0-16-amd64 root=UUID=0123abcd ro quiet echo 'Loading initial ramdisk ...' initrd /initrd.img-5.10.0-16-amd64 } submenu 'Advanced options for Debian GNU/Linux' $menuentry_id_option 'gnulinux-advanced-0123abcd' { menuentry 'Debian GNU/Linux, with Linux 5.10.0-16-amd64' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option
>> 'gnulinux-5.10.0-16-amd64-advanced-0123abcd' { load_video insmod gzio if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi insmod part_gpt insmod ext2 if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root 0123abcd else search --no-floppy --fs-uuid --set=root 0123abcd fi echo 'Loading Linux 5.10.0-16-amd64 ...' linux /vmlinuz-5.10.0-16-amd64 root=UUID=0123abcd ro quiet echo 'Loading initial ramdisk ...' initrd /initrd.img-5.10.0-16-amd64 } menuentry 'Debian GNU/Linux, with Linux 5.10.0-16-amd64 (recovery mode)' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-5.10.0-16-amd64-recovery-0123abcd' { load_video insmod gzio if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi insmod part_gpt insmod ext2 if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root 0123abcd else search --no-floppy --fs-uuid --set=root 0123abcd fi echo 'Loading Linux
>> 5.10.0-16-amd64 ...' linux /vmlinuz-5.10.0-16-amd64 root=UUID=0123abcd ro single echo 'Loading initial ramdisk ...' initrd /initrd.img-5.10.0-16-amd64 } } |
>> |### END /etc/grub.d/10_linux ### ### BEGIN /etc/grub.d/30_os-prober ### ### END /etc/grub.d/30_os-prober ### ### BEGIN /etc/grub.d/30_uefi-firmware ### menuentry 'System setup' $menuentry_id_option 'uefi-firmware' { fwsetup } ### END /etc/grub.d/30_uefi-firmware ### ### BEGIN /etc/grub.d/40_custom ### # This file provides an easy way to add custom menu entries. Simply type the # menu entries you want to add after this comment. Be careful not to change # the 'exec tail' line above. ### END /etc/grub.d/40_custom ### ### BEGIN /etc/grub.d/41_custom ### if [ -f ${config_directory}/custom.cfg ]; then source ${config_directory}/custom.cfg elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then source $prefix/custom.cfg; fi ### END /etc/grub.d/41_custom ###|
Re: Boot into Xen on debian11 [ In reply to ]
Hello Leigh. Hello Chuck.

Thank you again for the support. Unfortunately matters have not moved
forward yet.

I have successfully installed nvidia and the non-free firmware
miscellanea, and I have re-generated the initramfs ( update-initramfs -k
all -c -v ). But I cannot boot on Xen.

I also when booting Xen and landing on initramfs prompt, cannot mount
/root ( mount -o remount,rw /root ), and I cannot extract a dmesg of
that boot process. I am not getting the ACPI error I was getting before,
but clearly the errors in mount are ACPI failure.

Bellow the current journalctl -k -b :

Jul 20 20:02:05 xd kernel: Linux version 5.10.0-16-amd64
(debian-kernel@lists.debian.org) (gcc-10 (Debian 10.2.1-6) 10.2.1
20210110, GNU ld (GNU Binutils for Debian) 2.35.2) #1 SMP Debian
5.10.127-1 (2022-06-30)
Jul 20 20:02:05 xd kernel: Command line:
BOOT_IMAGE=/vmlinuz-5.10.0-16-amd64 root=UUID=0123abcd ro quiet
Jul 20 20:02:05 xd kernel: x86/split lock detection: warning about
user-space split_locks
Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87
floating point registers'
Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE
registers'
Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX
registers'
Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x020:
'AVX-512 opmask'
Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x040:
'AVX-512 Hi256'
Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x080:
'AVX-512 ZMM_Hi256'
Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x200:
'Protection Keys User registers'
Jul 20 20:02:05 xd kernel: x86/fpu: xstate_offset[2]: 576,
xstate_sizes[2]: 256
Jul 20 20:02:05 xd kernel: x86/fpu: xstate_offset[5]: 832,
xstate_sizes[5]: 64
Jul 20 20:02:05 xd kernel: x86/fpu: xstate_offset[6]: 896,
xstate_sizes[6]: 512
Jul 20 20:02:05 xd kernel: x86/fpu: xstate_offset[7]: 1408,
xstate_sizes[7]: 1024
Jul 20 20:02:05 xd kernel: x86/fpu: xstate_offset[9]: 2432,
xstate_sizes[9]: 8
Jul 20 20:02:05 xd kernel: x86/fpu: Enabled xstate features 0x2e7,
context size is 2440 bytes, using 'compacted' format.
Jul 20 20:02:05 xd kernel: BIOS-provided physical RAM map:
Jul 20 20:02:05 xd kernel: BIOS-e820: [mem
0x0000000000000000-0x000000000009efff] usable
Jul 20 20:02:05 xd kernel: BIOS-e820: [mem
0x000000000009f000-0x00000000000fffff] reserved
Jul 20 20:02:05 xd kernel: BIOS-e820: [mem
0x0000000000100000-0x000000003fd98fff] usable
Jul 20 20:02:05 xd kernel: BIOS-e820: [mem
0x000000003fd99000-0x0000000040698fff] reserved
Jul 20 20:02:05 xd kernel: BIOS-e820: [mem
0x0000000040699000-0x00000000424aefff] usable
Jul 20 20:02:05 xd kernel: BIOS-e820: [mem
0x00000000424af000-0x000000004287efff] type 20
Jul 20 20:02:05 xd kernel: BIOS-e820: [mem
0x000000004287f000-0x00000000442fefff] reserved
Jul 20 20:02:05 xd kernel: BIOS-e820: [mem
0x00000000442ff000-0x0000000044b2efff] ACPI NVS
Jul 20 20:02:05 xd kernel: BIOS-e820: [mem
0x0000000044b2f000-0x0000000044bfefff] ACPI data
Jul 20 20:02:05 xd kernel: BIOS-e820: [mem
0x0000000044bff000-0x0000000044bfffff] usable
Jul 20 20:02:05 xd kernel: BIOS-e820: [mem
0x0000000044c00000-0x0000000048ffffff] reserved
Jul 20 20:02:05 xd kernel: BIOS-e820: [mem
0x0000000049e00000-0x000000004f7fffff] reserved
Jul 20 20:02:05 xd kernel: BIOS-e820: [mem
0x00000000c0000000-0x00000000cfffffff] reserved
Jul 20 20:02:05 xd kernel: BIOS-e820: [mem
0x00000000fe010000-0x00000000fe010fff] reserved
Jul 20 20:02:05 xd kernel: BIOS-e820: [mem
0x00000000fed20000-0x00000000fed7ffff] reserved
Jul 20 20:02:05 xd kernel: BIOS-e820: [mem
0x00000000ff500000-0x00000000ffffffff] reserved
Jul 20 20:02:05 xd kernel: BIOS-e820: [mem
0x0000000100000000-0x00000004b07fffff] usable
Jul 20 20:02:05 xd kernel: NX (Execute Disable) protection: active
Jul 20 20:02:05 xd kernel: efi: EFI v2.70 by INSYDE Corp.
Jul 20 20:02:05 xd kernel: efi: ACPI=0x44bfe000 ACPI 2.0=0x44bfe014
TPMFinalLog=0x44ac5000 SMBIOS=0x429de000 SMBIOS 3.0=0x429dc000
ESRT=0x3bf68a98 MOKvar=0x3bee5000
Jul 20 20:02:05 xd kernel: secureboot: Secure boot could not be
determined (mode 0)
Jul 20 20:02:05 xd kernel: SMBIOS 3.3.0 present.
Jul 20 20:02:05 xd kernel: DMI: Acer Aspire A517-52G/Jasmine_TL, BIOS
V1.26 03/14/2022
Jul 20 20:02:05 xd kernel: tsc: Detected 2400.000 MHz processor
Jul 20 20:02:05 xd kernel: tsc: Detected 2419.200 MHz TSC
Jul 20 20:02:05 xd kernel: e820: update [mem 0x00000000-0x00000fff]
usable ==> reserved
Jul 20 20:02:05 xd kernel: e820: remove [mem 0x000a0000-0x000fffff]
usable
Jul 20 20:02:05 xd kernel: last_pfn = 0x4b0800 max_arch_pfn =
0x400000000
Jul 20 20:02:05 xd kernel: MTRR default type: write-back
Jul 20 20:02:05 xd kernel: MTRR fixed ranges enabled:
Jul 20 20:02:05 xd kernel: 00000-9FFFF write-back
Jul 20 20:02:05 xd kernel: A0000-BFFFF uncachable
Jul 20 20:02:05 xd kernel: C0000-FFFFF write-protect
Jul 20 20:02:05 xd kernel: MTRR variable ranges enabled:
Jul 20 20:02:05 xd kernel: 0 base 0080000000 mask 7F80000000 uncachable
Jul 20 20:02:05 xd kernel: 1 base 0060000000 mask 7FE0000000 uncachable
Jul 20 20:02:05 xd kernel: 2 base 0050000000 mask 7FF0000000 uncachable
Jul 20 20:02:05 xd kernel: 3 base 004C000000 mask 7FFC000000 uncachable
Jul 20 20:02:05 xd kernel: 4 base 004B000000 mask 7FFF000000 uncachable
Jul 20 20:02:05 xd kernel: 5 base 4000000000 mask 4000000000 uncachable
Jul 20 20:02:05 xd kernel: 6 disabled
Jul 20 20:02:05 xd kernel: 7 disabled
Jul 20 20:02:05 xd kernel: 8 disabled
Jul 20 20:02:05 xd kernel: 9 disabled
Jul 20 20:02:05 xd kernel: x86/PAT: Configuration [0-7]: WB WC UC- UC WB
WP UC- WT
Jul 20 20:02:05 xd kernel: last_pfn = 0x44c00 max_arch_pfn = 0x400000000
Jul 20 20:02:05 xd kernel: esrt: Reserving ESRT space from
0x000000003bf68a98 to 0x000000003bf68ad0.
Jul 20 20:02:05 xd kernel: e820: update [mem 0x3bf68000-0x3bf68fff]
usable ==> reserved
Jul 20 20:02:05 xd kernel: e820: update [mem 0x3bee5000-0x3bee7fff]
usable ==> reserved
Jul 20 20:02:05 xd kernel: Using GB pages for direct mapping
Jul 20 20:02:05 xd kernel: RAMDISK: [mem 0x32341000-0x35197fff]
Jul 20 20:02:05 xd kernel: ACPI: Early table checksum verification
disabled
Jul 20 20:02:05 xd kernel: ACPI: RSDP 0x0000000044BFE014 000024 (v02
ACRSYS)
Jul 20 20:02:05 xd kernel: ACPI: XSDT 0x0000000044BDB188 000124 (v01
ACRSYS ACRPRDCT 00000002 01000013)
Jul 20 20:02:05 xd kernel: ACPI: FACP 0x0000000044BDE000 000114 (v06
ACRSYS ACRPRDCT 00000002 1025 00040000)
Jul 20 20:02:05 xd kernel: ACPI: DSDT 0x0000000044B81000 059948 (v02
ACRSYS ACRPRDCT 00000002 1025 00040000)
Jul 20 20:02:05 xd kernel: ACPI: FACS 0x0000000044AA2000 000040
Jul 20 20:02:05 xd kernel: ACPI: UEFI 0x0000000044B2E000 000236 (v01
ACRSYS ACRPRDCT 00000001 1025 00040000)
Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BFA000 00255C (v02
ACRSYS ACRPRDCT 00003000 1025 00040000)
Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BF9000 000105 (v02
ACRSYS ACRPRDCT 00003000 1025 00040000)
Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BF6000 002137 (v02
ACRSYS ACRPRDCT 00003000 1025 00040000)
Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BF2000 003300 (v02
ACRSYS ACRPRDCT 00003000 1025 00040000)
Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BF1000 00077B (v02
ACRSYS ACRPRDCT 00001000 1025 00040000)
Jul 20 20:02:05 xd kernel: ACPI: TPM2 0x0000000044BF0000 00004C (v04
ACRSYS ACRPRDCT 00000002 1025 00040000)
Jul 20 20:02:05 xd kernel: ACPI: MSDM 0x0000000044BEF000 000055 (v03
ACRSYS ACRPRDCT 00000001 1025 00040000)
Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BEE000 000D02 (v02
ACRSYS ACRPRDCT 00000000 1025 00040000)
Jul 20 20:02:05 xd kernel: ACPI: NHLT 0x0000000044BEC000 001B54 (v00
ACRSYS ACRPRDCT 00000002 1025 00040000)
Jul 20 20:02:05 xd kernel: ACPI: LPIT 0x0000000044BEB000 0000CC (v01
ACRSYS ACRPRDCT 00000002 1025 00040000)
Jul 20 20:02:05 xd kernel: ACPI: WSMT 0x0000000044BEA000 000028 (v01
ACRSYS ACRPRDCT 00000002 1025 00040000)
Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BE9000 000B70 (v02
ACRSYS ACRPRDCT 00001000 1025 00040000)
Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BE8000 00012A (v02
ACRSYS ACRPRDCT 00000000 1025 00040000)
Jul 20 20:02:05 xd kernel: ACPI: DBGP 0x0000000044BE7000 000034 (v01
ACRSYS ACRPRDCT 00000002 1025 00040000)
Jul 20 20:02:05 xd kernel: ACPI: DBG2 0x0000000044BE6000 000054 (v00
ACRSYS ACRPRDCT 00000002 1025 00040000)
Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BDF000 006BA9 (v01
ACRSYS ACRPRDCT 00001000 1025 00040000)
Jul 20 20:02:05 xd kernel: ACPI: HPET 0x0000000044BDD000 000038 (v01
ACRSYS ACRPRDCT 00000002 1025 00040000)
Jul 20 20:02:05 xd kernel: ACPI: APIC 0x0000000044BDC000 00012C (v04
ACRSYS ACRPRDCT 00000002 1025 00040000)
Jul 20 20:02:05 xd kernel: ACPI: MCFG 0x0000000044BFD000 00003C (v01
ACRSYS ACRPRDCT 00000002 1025 00040000)
Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044B80000 000C78 (v02
ACRSYS ACRPRDCT 00000002 1025 00040000)
Jul 20 20:02:05 xd kernel: ACPI: DMAR 0x0000000044B7F000 000088 (v02
ACRSYS ACRPRDCT 00000002 1025 00040000)
Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044B7C000 0020D6 (v01
ACRSYS ACRPRDCT 00001000 1025 00040000)
Jul 20 20:02:05 xd kernel: ACPI: UEFI 0x0000000044A5B000 00063A (v01
ACRSYS ACRPRDCT 00000000 1025 00040000)
Jul 20 20:02:05 xd kernel: ACPI: UEFI 0x0000000044A5A000 00005C (v01
ACRSYS ACRPRDCT 00000000 1025 00040000)
Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044B7B000 000985 (v02
ACRSYS ACRPRDCT 00001000 1025 00040000)
Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044B7A000 0000F8 (v01
ACRSYS ACRPRDCT 00001000 1025 00040000)
Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044B79000 000835 (v02
ACRSYS ACRPRDCT 00003000 1025 00040000)
Jul 20 20:02:05 xd kernel: ACPI: FPDT 0x0000000044B78000 000044 (v01
ACRSYS ACRPRDCT 00000002 1025 00040000)
Jul 20 20:02:05 xd kernel: ACPI: PTDT 0x0000000044B76000 000CFE (v00
ACRSYS ACRPRDCT 00000005 1025 00040000)
Jul 20 20:02:05 xd kernel: ACPI: BGRT 0x0000000044B77000 000038 (v01
ACRSYS ACRPRDCT 00000001 1025 00040000)
Jul 20 20:02:05 xd kernel: ACPI: Reserving FACP table memory at [mem
0x44bde000-0x44bde113]
Jul 20 20:02:05 xd kernel: ACPI: Reserving DSDT table memory at [mem
0x44b81000-0x44bda947]
Jul 20 20:02:05 xd kernel: ACPI: Reserving FACS table memory at [mem
0x44aa2000-0x44aa203f]
Jul 20 20:02:05 xd kernel: ACPI: Reserving UEFI table memory at [mem
0x44b2e000-0x44b2e235]
Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem
0x44bfa000-0x44bfc55b]
Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem
0x44bf9000-0x44bf9104]
Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem
0x44bf6000-0x44bf8136]
Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem
0x44bf2000-0x44bf52ff]
Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem
0x44bf1000-0x44bf177a]
Jul 20 20:02:05 xd kernel: ACPI: Reserving TPM2 table memory at [mem
0x44bf0000-0x44bf004b]
Jul 20 20:02:05 xd kernel: ACPI: Reserving MSDM table memory at [mem
0x44bef000-0x44bef054]
Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem
0x44bee000-0x44beed01]
Jul 20 20:02:05 xd kernel: ACPI: Reserving NHLT table memory at [mem
0x44bec000-0x44bedb53]
Jul 20 20:02:05 xd kernel: ACPI: Reserving LPIT table memory at [mem
0x44beb000-0x44beb0cb]
Jul 20 20:02:05 xd kernel: ACPI: Reserving WSMT table memory at [mem
0x44bea000-0x44bea027]
Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem
0x44be9000-0x44be9b6f]
Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem
0x44be8000-0x44be8129]
Jul 20 20:02:05 xd kernel: ACPI: Reserving DBGP table memory at [mem
0x44be7000-0x44be7033]
Jul 20 20:02:05 xd kernel: ACPI: Reserving DBG2 table memory at [mem
0x44be6000-0x44be6053]
Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem
0x44bdf000-0x44be5ba8]
Jul 20 20:02:05 xd kernel: ACPI: Reserving HPET table memory at [mem
0x44bdd000-0x44bdd037]
Jul 20 20:02:05 xd kernel: ACPI: Reserving APIC table memory at [mem
0x44bdc000-0x44bdc12b]
Jul 20 20:02:05 xd kernel: ACPI: Reserving MCFG table memory at [mem
0x44bfd000-0x44bfd03b]
Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem
0x44b80000-0x44b80c77]
Jul 20 20:02:05 xd kernel: ACPI: Reserving DMAR table memory at [mem
0x44b7f000-0x44b7f087]
Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem
0x44b7c000-0x44b7e0d5]
Jul 20 20:02:05 xd kernel: ACPI: Reserving UEFI table memory at [mem
0x44a5b000-0x44a5b639]
Jul 20 20:02:05 xd kernel: ACPI: Reserving UEFI table memory at [mem
0x44a5a000-0x44a5a05b]
Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem
0x44b7b000-0x44b7b984]
Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem
0x44b7a000-0x44b7a0f7]
Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem
0x44b79000-0x44b79834]
Jul 20 20:02:05 xd kernel: ACPI: Reserving FPDT table memory at [mem
0x44b78000-0x44b78043]
Jul 20 20:02:05 xd kernel: ACPI: Reserving PTDT table memory at [mem
0x44b76000-0x44b76cfd]
Jul 20 20:02:05 xd kernel: ACPI: Reserving BGRT table memory at [mem
0x44b77000-0x44b77037]
Jul 20 20:02:05 xd kernel: ACPI: Local APIC address 0xfee00000
Jul 20 20:02:05 xd kernel: No NUMA configuration found
Jul 20 20:02:05 xd kernel: Faking a node at [mem
0x0000000000000000-0x00000004b07fffff]
Jul 20 20:02:05 xd kernel: NODE_DATA(0) allocated [mem
0x4b07d6000-0x4b07fffff]
Jul 20 20:02:05 xd kernel: Zone ranges:
Jul 20 20:02:05 xd kernel: DMA [mem
0x0000000000001000-0x0000000000ffffff]
Jul 20 20:02:05 xd kernel: DMA32 [mem
0x0000000001000000-0x00000000ffffffff]
Jul 20 20:02:05 xd kernel: Normal [mem
0x0000000100000000-0x00000004b07fffff]
Jul 20 20:02:05 xd kernel: Device empty
Jul 20 20:02:05 xd kernel: Movable zone start for each node
Jul 20 20:02:05 xd kernel: Early memory node ranges
Jul 20 20:02:05 xd kernel: node 0: [mem
0x0000000000001000-0x000000000009efff]
Jul 20 20:02:05 xd kernel: node 0: [mem
0x0000000000100000-0x000000003fd98fff]
Jul 20 20:02:05 xd kernel: node 0: [mem
0x0000000040699000-0x00000000424aefff]
Jul 20 20:02:05 xd kernel: node 0: [mem
0x0000000044bff000-0x0000000044bfffff]
Jul 20 20:02:05 xd kernel: node 0: [mem
0x0000000100000000-0x00000004b07fffff]
Jul 20 20:02:05 xd kernel: Initmem setup node 0 [mem
0x0000000000001000-0x00000004b07fffff]
Jul 20 20:02:05 xd kernel: On node 0 totalpages: 4137806
Jul 20 20:02:05 xd kernel: DMA zone: 64 pages used for memmap
Jul 20 20:02:05 xd kernel: DMA zone: 25 pages reserved
Jul 20 20:02:05 xd kernel: DMA zone: 3998 pages, LIFO batch:0
Jul 20 20:02:05 xd kernel: DMA32 zone: 4143 pages used for memmap
Jul 20 20:02:05 xd kernel: DMA32 zone: 265136 pages, LIFO batch:63
Jul 20 20:02:05 xd kernel: Normal zone: 60448 pages used for memmap
Jul 20 20:02:05 xd kernel: Normal zone: 3868672 pages, LIFO batch:63
Jul 20 20:02:05 xd kernel: On node 0, zone DMA: 1 pages in unavailable
ranges
Jul 20 20:02:05 xd kernel: On node 0, zone DMA: 97 pages in unavailable
ranges
Jul 20 20:02:05 xd kernel: On node 0, zone DMA32: 2304 pages in
unavailable ranges
Jul 20 20:02:05 xd kernel: On node 0, zone DMA32: 10064 pages in
unavailable ranges
Jul 20 20:02:05 xd kernel: On node 0, zone Normal: 13312 pages in
unavailable ranges
Jul 20 20:02:05 xd kernel: On node 0, zone Normal: 30720 pages in
unavailable ranges
Jul 20 20:02:05 xd kernel: Reserving Intel graphics memory at [mem
0x4b800000-0x4f7fffff]
Jul 20 20:02:05 xd kernel: ACPI: PM-Timer IO Port: 0x1808
Jul 20 20:02:05 xd kernel: ACPI: Local APIC address 0xfee00000
Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge
lint[0x1])
Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge
lint[0x1])
Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge
lint[0x1])
Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge
lint[0x1])
Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge
lint[0x1])
Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge
lint[0x1])
Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge
lint[0x1])
Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge
lint[0x1])
Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x09] high edge
lint[0x1])
Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0a] high edge
lint[0x1])
Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0b] high edge
lint[0x1])
Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0c] high edge
lint[0x1])
Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0d] high edge
lint[0x1])
Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0e] high edge
lint[0x1])
Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0f] high edge
lint[0x1])
Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x10] high edge
lint[0x1])
Jul 20 20:02:05 xd kernel: IOAPIC[0]: apic_id 2, version 32, address
0xfec00000, GSI 0-119
Jul 20 20:02:05 xd kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq
2 dfl dfl)
Jul 20 20:02:05 xd kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq
9 high level)
Jul 20 20:02:05 xd kernel: ACPI: IRQ0 used by override.
Jul 20 20:02:05 xd kernel: ACPI: IRQ9 used by override.
Jul 20 20:02:05 xd kernel: Using ACPI (MADT) for SMP configuration
information
Jul 20 20:02:05 xd kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
Jul 20 20:02:05 xd kernel: e820: update [mem 0x3bf6a000-0x3c05dfff]
usable ==> reserved
Jul 20 20:02:05 xd kernel: TSC deadline timer available
Jul 20 20:02:05 xd kernel: smpboot: Allowing 8 CPUs, 0 hotplug CPUs
Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0x00000000-0x00000fff]
Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0x0009f000-0x000fffff]
Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0x3bee5000-0x3bee7fff]
Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0x3bf68000-0x3bf68fff]
Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0x3bf6a000-0x3c05dfff]
Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0x3fd99000-0x40698fff]
Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0x424af000-0x4287efff]
Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0x4287f000-0x442fefff]
Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0x442ff000-0x44b2efff]
Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0x44b2f000-0x44bfefff]
Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0x44c00000-0x48ffffff]
Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0x49000000-0x49dfffff]
Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0x49e00000-0x4f7fffff]
Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0x4f800000-0xbfffffff]
Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0xc0000000-0xcfffffff]
Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0xd0000000-0xfe00ffff]
Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0xfe010000-0xfe010fff]
Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0xfe011000-0xfed1ffff]
Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0xfed20000-0xfed7ffff]
Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0xfed80000-0xff4fffff]
Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory:
[mem 0xff500000-0xffffffff]
Jul 20 20:02:05 xd kernel: [mem 0x4f800000-0xbfffffff] available for PCI
devices
Jul 20 20:02:05 xd kernel: Booting paravirtualized kernel on bare
hardware
Jul 20 20:02:05 xd kernel: clocksource: refined-jiffies: mask:
0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
Jul 20 20:02:05 xd kernel: setup_percpu: NR_CPUS:8192 nr_cpumask_bits:8
nr_cpu_ids:8 nr_node_ids:1
Jul 20 20:02:05 xd kernel: percpu: Embedded 58 pages/cpu s200664 r8192
d28712 u262144
Jul 20 20:02:05 xd kernel: pcpu-alloc: s200664 r8192 d28712 u262144
alloc=1*2097152
Jul 20 20:02:05 xd kernel: pcpu-alloc: [0] 0 1 2 3 4 5 6 7
Jul 20 20:02:05 xd kernel: Built 1 zonelists, mobility grouping on.
Total pages: 4073126
Jul 20 20:02:05 xd kernel: Policy zone: Normal
Jul 20 20:02:05 xd kernel: Kernel command line:
BOOT_IMAGE=/vmlinuz-5.10.0-16-amd64
root=UUID=0dc2ba0c-97d5-4786-bc97-4d13279afe0f ro quiet
Jul 20 20:02:05 xd kernel: Dentry cache hash table entries: 2097152
(order: 12, 16777216 bytes, linear)
Jul 20 20:02:05 xd kernel: Inode-cache hash table entries: 1048576
(order: 11, 8388608 bytes, linear)
Jul 20 20:02:05 xd kernel: mem auto-init: stack:off, heap alloc:on, heap
free:off
Jul 20 20:02:05 xd kernel: Memory: 1010444K/16551224K available (12295K
kernel code, 2536K rwdata, 7568K rodata, 2424K init, 3680K bss, 520984K
reserved, 0K cma-reserved)
Jul 20 20:02:05 xd kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0,
CPUs=8, Nodes=1
Jul 20 20:02:05 xd kernel: ftrace: allocating 36455 entries in 143 pages
Jul 20 20:02:05 xd kernel: ftrace: allocated 143 pages with 5 groups
Jul 20 20:02:05 xd kernel: rcu: Hierarchical RCU implementation.
Jul 20 20:02:05 xd kernel: rcu: RCU restricting CPUs from NR_CPUS=8192
to nr_cpu_ids=8.
Jul 20 20:02:05 xd kernel: Rude variant of Tasks RCU enabled.
Jul 20 20:02:05 xd kernel: Tracing variant of Tasks RCU enabled.
Jul 20 20:02:05 xd kernel: rcu: RCU calculated value of
scheduler-enlistment delay is 25 jiffies.
Jul 20 20:02:05 xd kernel: rcu: Adjusting geometry for
rcu_fanout_leaf=16, nr_cpu_ids=8
Jul 20 20:02:05 xd kernel: NR_IRQS: 524544, nr_irqs: 2048, preallocated
irqs: 16
Jul 20 20:02:05 xd kernel: random: crng init done
Jul 20 20:02:05 xd kernel: Console: colour dummy device 80x25
Jul 20 20:02:05 xd kernel: printk: console [tty0] enabled
Jul 20 20:02:05 xd kernel: ACPI: Core revision 20200925
Jul 20 20:02:05 xd kernel: hpet: HPET dysfunctional in PC10. Force
disabled.
Jul 20 20:02:05 xd kernel: APIC: Switch to symmetric I/O mode setup
Jul 20 20:02:05 xd kernel: DMAR: Host address width 39
Jul 20 20:02:05 xd kernel: DMAR: DRHD base: 0x000000fed90000 flags: 0x0
Jul 20 20:02:05 xd kernel: DMAR: dmar0: reg_base_addr fed90000 ver 4:0
cap 1c0000c40660462 ecap 29a00f0505e
Jul 20 20:02:05 xd kernel: DMAR: DRHD base: 0x000000fed91000 flags: 0x1
Jul 20 20:02:05 xd kernel: DMAR: dmar1: reg_base_addr fed91000 ver 1:0
cap d2008c40660462 ecap f050da
Jul 20 20:02:05 xd kernel: DMAR: RMRR base: 0x0000004b000000 end:
0x0000004f7fffff
Jul 20 20:02:05 xd kernel: DMAR-IR: IOAPIC id 2 under DRHD base
0xfed91000 IOMMU 1
Jul 20 20:02:05 xd kernel: DMAR-IR: HPET id 0 under DRHD base 0xfed91000
Jul 20 20:02:05 xd kernel: DMAR-IR: Queued invalidation will be enabled
to support x2apic and Intr-remapping.
Jul 20 20:02:05 xd kernel: DMAR-IR: Enabled IRQ remapping in x2apic mode
Jul 20 20:02:05 xd kernel: x2apic enabled
Jul 20 20:02:05 xd kernel: Switched APIC routing to cluster x2apic.
Jul 20 20:02:05 xd kernel: clocksource: tsc-early: mask:
0xffffffffffffffff max_cycles: 0x22df1149949, max_idle_ns: 440795312789
ns
Jul 20 20:02:05 xd kernel: Calibrating delay loop (skipped), value
calculated using timer frequency.. 4838.40 BogoMIPS (lpj=9676800)
Jul 20 20:02:05 xd kernel: pid_max: default: 32768 minimum: 301
Jul 20 20:02:05 xd kernel: LSM: Security Framework initializing
Jul 20 20:02:05 xd kernel: Yama: disabled by default; enable with sysctl
kernel.yama.*
Jul 20 20:02:05 xd kernel: AppArmor: AppArmor initialized
Jul 20 20:02:05 xd kernel: TOMOYO Linux initialized
Jul 20 20:02:05 xd kernel: Mount-cache hash table entries: 32768 (order:
6, 262144 bytes, linear)
Jul 20 20:02:05 xd kernel: Mountpoint-cache hash table entries: 32768
(order: 6, 262144 bytes, linear)
Jul 20 20:02:05 xd kernel: x86/cpu: User Mode Instruction Prevention
(UMIP) activated
Jul 20 20:02:05 xd kernel: mce: CPU0: Thermal monitoring enabled (TM1)
Jul 20 20:02:05 xd kernel: process: using mwait in idle threads
Jul 20 20:02:05 xd kernel: Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
Jul 20 20:02:05 xd kernel: Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0,
1GB 0
Jul 20 20:02:05 xd kernel: Spectre V1 : Mitigation: usercopy/swapgs
barriers and __user pointer sanitization
Jul 20 20:02:05 xd kernel: Spectre V2 : Mitigation: Enhanced IBRS
Jul 20 20:02:05 xd kernel: Spectre V2 : Spectre v2 / SpectreRSB
mitigation: Filling RSB on context switch
Jul 20 20:02:05 xd kernel: Spectre V2 : mitigation: Enabling conditional
Indirect Branch Prediction Barrier
Jul 20 20:02:05 xd kernel: Speculative Store Bypass: Mitigation:
Speculative Store Bypass disabled via prctl and seccomp
Jul 20 20:02:05 xd kernel: Freeing SMP alternatives memory: 32K
Jul 20 20:02:05 xd kernel: smpboot: CPU0: 11th Gen Intel(R) Core(TM)
i5-1135G7 @ 2.40GHz (family: 0x6, model: 0x8c, stepping: 0x1)
Jul 20 20:02:05 xd kernel: Performance Events: PEBS fmt4+-baseline,
AnyThread deprecated, Icelake events, 32-deep LBR, full-width counters,
Intel PMU driver.
Jul 20 20:02:05 xd kernel: ... version: 5
Jul 20 20:02:05 xd kernel: ... bit width: 48
Jul 20 20:02:05 xd kernel: ... generic registers: 8
Jul 20 20:02:05 xd kernel: ... value mask: 0000ffffffffffff
Jul 20 20:02:05 xd kernel: ... max period: 00007fffffffffff
Jul 20 20:02:05 xd kernel: ... fixed-purpose events: 4
Jul 20 20:02:05 xd kernel: ... event mask: 0001000f000000ff
Jul 20 20:02:05 xd kernel: rcu: Hierarchical SRCU implementation.
Jul 20 20:02:05 xd kernel: NMI watchdog: Enabled. Permanently consumes
one hw-PMU counter.
Jul 20 20:02:05 xd kernel: smp: Bringing up secondary CPUs ...
Jul 20 20:02:05 xd kernel: x86: Booting SMP configuration:
Jul 20 20:02:05 xd kernel: .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7
Jul 20 20:02:05 xd kernel: smp: Brought up 1 node, 8 CPUs
Jul 20 20:02:05 xd kernel: smpboot: Max logical packages: 1
Jul 20 20:02:05 xd kernel: smpboot: Total of 8 processors activated
(38707.20 BogoMIPS)
Jul 20 20:02:05 xd kernel: node 0 deferred pages initialised in 20ms
Jul 20 20:02:05 xd kernel: devtmpfs: initialized
Jul 20 20:02:05 xd kernel: x86/mm: Memory block size: 128MB
Jul 20 20:02:05 xd kernel: PM: Registering ACPI NVS region [mem
0x442ff000-0x44b2efff] (8585216 bytes)
Jul 20 20:02:05 xd kernel: clocksource: jiffies: mask: 0xffffffff
max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
Jul 20 20:02:05 xd kernel: futex hash table entries: 2048 (order: 5,
131072 bytes, linear)
Jul 20 20:02:05 xd kernel: pinctrl core: initialized pinctrl subsystem
Jul 20 20:02:05 xd kernel: NET: Registered protocol family 16
Jul 20 20:02:05 xd kernel: audit: initializing netlink subsys (disabled)
Jul 20 20:02:05 xd kernel: audit: type=2000 audit(1658343722.028:1):
state=initialized audit_enabled=0 res=1
Jul 20 20:02:05 xd kernel: thermal_sys: Registered thermal governor
'fair_share'
Jul 20 20:02:05 xd kernel: thermal_sys: Registered thermal governor
'bang_bang'
Jul 20 20:02:05 xd kernel: thermal_sys: Registered thermal governor
'step_wise'
Jul 20 20:02:05 xd kernel: thermal_sys: Registered thermal governor
'user_space'
Jul 20 20:02:05 xd kernel: thermal_sys: Registered thermal governor
'power_allocator'
Jul 20 20:02:05 xd kernel: cpuidle: using governor ladder
Jul 20 20:02:05 xd kernel: cpuidle: using governor menu
Jul 20 20:02:05 xd kernel: ACPI: bus type PCI registered
Jul 20 20:02:05 xd kernel: acpiphp: ACPI Hot Plug PCI Controller Driver
version: 0.5
Jul 20 20:02:05 xd kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at
[mem 0xc0000000-0xcfffffff] (base 0xc0000000)
Jul 20 20:02:05 xd kernel: PCI: MMCONFIG at [mem 0xc0000000-0xcfffffff]
reserved in E820
Jul 20 20:02:05 xd kernel: PCI: Using configuration type 1 for base
access
Jul 20 20:02:05 xd kernel: ENERGY_PERF_BIAS: Set to 'normal', was
'performance'
Jul 20 20:02:05 xd kernel: Kprobes globally optimized
Jul 20 20:02:05 xd kernel: HugeTLB registered 1.00 GiB page size,
pre-allocated 0 pages
Jul 20 20:02:05 xd kernel: HugeTLB registered 2.00 MiB page size,
pre-allocated 0 pages
Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Module Device)
Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Processor Device)
Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Processor Aggregator Device)
Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Linux-Dell-Video)
Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS01._UPC], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS01._PLD], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS02._UPC], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS02._PLD], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS03._UPC], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS03._PLD], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS04._UPC], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS04._PLD], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS05._UPC], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS05._PLD], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS06._UPC], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS06._PLD], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS07._UPC], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS07._PLD], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS08._UPC], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS08._PLD], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS09._UPC], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS09._PLD], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS10._UPC], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.HS10._PLD], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.SS01._UPC], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.SS01._PLD], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.SS02._UPC], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.SS02._PLD], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.SS03._UPC], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.SS03._PLD], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.SS04._UPC], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.SS04._PLD], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.SS05._UPC], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.SS05._PLD], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.SS06._UPC], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named
object [\_SB.PC00.XHCI.RHUB.SS06._PLD], AE_ALREADY_EXISTS
(20200925/dswload2-326)
Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name
lookup/catalog (20200925/psobject-220)
Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode:
OpcodeName unavailable (0x0014)
Jul 20 20:02:05 xd kernel: ACPI: 15 ACPI AML tables successfully
acquired and loaded
Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8882135E00 0001C6 (v02
PmRef Cpu0Psd 00003000 INTL 20160422)
Jul 20 20:02:05 xd kernel: ACPI: \_SB_.PR00: _OSC native thermal LVT
Acked
Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A888213CC00 000386 (v02
PmRef Cpu0Cst 00003001 INTL 20160422)
Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8500BAB000 0005C3 (v02
PmRef Cpu0Ist 00003000 INTL 20160422)
Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A888213FC00 00028B (v02
PmRef Cpu0Hwp 00003000 INTL 20160422)
Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8500F3D000 0008E7 (v02
PmRef ApIst 00003000 INTL 20160422)
Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8500BAC000 00048A (v02
PmRef ApHwp 00003000 INTL 20160422)
Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8500BAF800 0004D4 (v02
PmRef ApPsd 00003000 INTL 20160422)
Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8500BAE000 00048A (v02
PmRef ApCst 00003000 INTL 20160422)
Jul 20 20:02:05 xd kernel: ACPI: EC: EC started
Jul 20 20:02:05 xd kernel: ACPI: EC: interrupt blocked
Jul 20 20:02:05 xd kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
Jul 20 20:02:05 xd kernel: ACPI: \_SB_.PC00.LPCB.EC0_: Boot DSDT EC used
to handle transactions
Jul 20 20:02:05 xd kernel: ACPI: Interpreter enabled
Jul 20 20:02:05 xd kernel: ACPI: (supports S0 S3 S4 S5)
Jul 20 20:02:05 xd kernel: ACPI: Using IOAPIC for interrupt routing
Jul 20 20:02:05 xd kernel: PCI: Using host bridge windows from ACPI; if
necessary, use "pci=nocrs" and report a bug
Jul 20 20:02:05 xd kernel: ACPI: Enabled 7 GPEs in block 00 to 7F
Jul 20 20:02:05 xd kernel: ACPI: Power Resource [PCRP] (on)
Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V0PR] (on)
Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V1PR] (on)
Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V2PR] (on)
Jul 20 20:02:05 xd kernel: ACPI: Power Resource [WRST] (on)
Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V0PR] (on)
Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V1PR] (on)
Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V2PR] (on)
Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V3PR] (on)
Jul 20 20:02:05 xd kernel: ACPI: Power Resource [FN00] (off)
Jul 20 20:02:05 xd kernel: ACPI: Power Resource [FN01] (off)
Jul 20 20:02:05 xd kernel: ACPI: Power Resource [FN02] (off)
Jul 20 20:02:05 xd kernel: ACPI: Power Resource [FN03] (off)
Jul 20 20:02:05 xd kernel: ACPI: Power Resource [FN04] (off)
Jul 20 20:02:05 xd kernel: ACPI: Power Resource [PIN] (off)
Jul 20 20:02:05 xd kernel: ACPI: PCI Root Bridge [PC00] (domain 0000
[bus 00-e0])
Jul 20 20:02:05 xd kernel: acpi PNP0A08:00: _OSC: OS supports
[ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
Jul 20 20:02:05 xd kernel: acpi PNP0A08:00: _OSC: OS now controls
[PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR]
Jul 20 20:02:05 xd kernel: PCI host bridge to bus 0000:00
Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [io
0x0000-0x0cf7 window]
Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [io
0x0d00-0xffff window]
Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [mem
0x000a0000-0x000bffff window]
Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [mem
0x4f800000-0xbfffffff window]
Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [mem
0x4000000000-0x7fffffffff window]
Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [bus
00-e0]
Jul 20 20:02:05 xd kernel: pci 0000:00:00.0: [8086:9a14] type 00 class
0x060000
Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: [8086:9a49] type 00 class
0x030000
Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: reg 0x10: [mem
0x6014000000-0x6014ffffff 64bit]
Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: reg 0x18: [mem
0x4000000000-0x400fffffff 64bit pref]
Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: reg 0x20: [io
0x5000-0x503f]
Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: BAR 2: assigned to efifb
Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: DMAR: Skip IOMMU disabling
for graphics
Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: reg 0x344: [mem
0x00000000-0x00ffffff 64bit]
Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: VF(n) BAR0 space: [mem
0x00000000-0x06ffffff 64bit] (contains BAR0 for 7 VFs)
Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: reg 0x34c: [mem
0x00000000-0x1fffffff 64bit pref]
Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: VF(n) BAR2 space: [mem
0x00000000-0xdfffffff 64bit pref] (contains BAR2 for 7 VFs)
Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: [8086:9a09] type 01 class
0x060400
Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: PME# supported from D0
D3hot D3cold
Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: PTM enabled (root), 4ns
granularity
Jul 20 20:02:05 xd kernel: pci 0000:00:08.0: [8086:9a11] type 00 class
0x088000
Jul 20 20:02:05 xd kernel: pci 0000:00:08.0: reg 0x10: [mem
0x601540f000-0x601540ffff 64bit]
Jul 20 20:02:05 xd kernel: pci 0000:00:0e.0: [8086:9a0b] type 00 class
0x010400
Jul 20 20:02:05 xd kernel: pci 0000:00:0e.0: reg 0x10: [mem
0x6012000000-0x6013ffffff 64bit]
Jul 20 20:02:05 xd kernel: pci 0000:00:0e.0: reg 0x18: [mem
0x50000000-0x51ffffff]
Jul 20 20:02:05 xd kernel: pci 0000:00:0e.0: reg 0x20: [mem
0x6015300000-0x60153fffff 64bit]
Jul 20 20:02:05 xd kernel: pci 0000:00:14.0: [8086:a0ed] type 00 class
0x0c0330
Jul 20 20:02:05 xd kernel: pci 0000:00:14.0: reg 0x10: [mem
0x53180000-0x5318ffff 64bit]
Jul 20 20:02:05 xd kernel: pci 0000:00:14.0: PME# supported from D3hot
D3cold
Jul 20 20:02:05 xd kernel: pci 0000:00:14.2: [8086:a0ef] type 00 class
0x050000
Jul 20 20:02:05 xd kernel: pci 0000:00:14.2: reg 0x10: [mem
0x6015404000-0x6015407fff 64bit]
Jul 20 20:02:05 xd kernel: pci 0000:00:14.2: reg 0x18: [mem
0x601540e000-0x601540efff 64bit]
Jul 20 20:02:05 xd kernel: pci 0000:00:15.0: [8086:a0e8] type 00 class
0x0c8000
Jul 20 20:02:05 xd kernel: pci 0000:00:15.0: reg 0x10: [mem
0x00000000-0x00000fff 64bit]
Jul 20 20:02:05 xd kernel: pci 0000:00:15.3: [8086:a0eb] type 00 class
0x0c8000
Jul 20 20:02:05 xd kernel: pci 0000:00:15.3: reg 0x10: [mem
0x00000000-0x00000fff 64bit]
Jul 20 20:02:05 xd kernel: pci 0000:00:16.0: [8086:a0e0] type 00 class
0x078000
Jul 20 20:02:05 xd kernel: pci 0000:00:16.0: reg 0x10: [mem
0x601540b000-0x601540bfff 64bit]
Jul 20 20:02:05 xd kernel: pci 0000:00:16.0: PME# supported from D3hot
Jul 20 20:02:05 xd kernel: pci 0000:00:17.0: [8086:09ab] type 00 class
0x088000
Jul 20 20:02:05 xd kernel: pci 0000:00:19.0: [8086:a0c5] type 00 class
0x0c8000
Jul 20 20:02:05 xd kernel: pci 0000:00:19.0: reg 0x10: [mem
0x00000000-0x00000fff 64bit]
Jul 20 20:02:05 xd kernel: pci 0000:00:19.1: [8086:a0c6] type 00 class
0x0c8000
Jul 20 20:02:05 xd kernel: pci 0000:00:19.1: reg 0x10: [mem
0x00000000-0x00000fff 64bit]
Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: [8086:a0b0] type 01 class
0x060400
Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: PME# supported from D0
D3hot D3cold
Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: PTM enabled (root), 4ns
granularity
Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: [8086:a0b1] type 01 class
0x060400
Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: PME# supported from D0
D3hot D3cold
Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: PTM enabled (root), 4ns
granularity
Jul 20 20:02:05 xd kernel: pci 0000:00:1f.0: [8086:a082] type 00 class
0x060100
Jul 20 20:02:05 xd kernel: pci 0000:00:1f.3: [8086:a0c8] type 00 class
0x040100
Jul 20 20:02:05 xd kernel: pci 0000:00:1f.3: reg 0x10: [mem
0x6015400000-0x6015403fff 64bit]
Jul 20 20:02:05 xd kernel: pci 0000:00:1f.3: reg 0x20: [mem
0x6015200000-0x60152fffff 64bit]
Jul 20 20:02:05 xd kernel: pci 0000:00:1f.3: PME# supported from D3hot
D3cold
Jul 20 20:02:05 xd kernel: pci 0000:00:1f.4: [8086:a0a3] type 00 class
0x0c0500
Jul 20 20:02:05 xd kernel: pci 0000:00:1f.4: reg 0x10: [mem
0x6015408000-0x60154080ff 64bit]
Jul 20 20:02:05 xd kernel: pci 0000:00:1f.4: reg 0x20: [io
0xefa0-0xefbf]
Jul 20 20:02:05 xd kernel: pci 0000:00:1f.5: [8086:a0a4] type 00 class
0x0c8000
Jul 20 20:02:05 xd kernel: pci 0000:00:1f.5: reg 0x10: [mem
0xfe010000-0xfe010fff]
Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: [10de:1f97] type 00 class
0x030200
Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: reg 0x10: [mem
0x52000000-0x52ffffff]
Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: reg 0x14: [mem
0x6000000000-0x600fffffff 64bit pref]
Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: reg 0x1c: [mem
0x6010000000-0x6011ffffff 64bit pref]
Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: reg 0x24: [io
0x4000-0x407f]
Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: reg 0x30: [mem
0xfff80000-0xffffffff pref]
Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: PME# supported from D0
D3hot D3cold
Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: 63.012 Gb/s available PCIe
bandwidth, limited by 16.0 GT/s PCIe x4 link at 0000:00:06.0 (capable of
252.048 Gb/s with 16.0 GT/s PCIe x16 link)
Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: PCI bridge to [bus 01]
Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [io
0x4000-0x4fff]
Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [mem
0x52000000-0x52ffffff]
Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [mem
0x6000000000-0x6011ffffff 64bit pref]
Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: [10ec:8168] type 00 class
0x020000
Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: reg 0x10: [io
0x3000-0x30ff]
Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: reg 0x18: [mem
0x53004000-0x53004fff 64bit]
Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: reg 0x20: [mem
0x53000000-0x53003fff 64bit]
Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: supports D1 D2
Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: PME# supported from D0 D1
D2 D3hot D3cold
Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: PCI bridge to [bus 02]
Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: bridge window [io
0x3000-0x3fff]
Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: bridge window [mem
0x53000000-0x530fffff]
Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: [14c3:7961] type 00 class
0x028000
Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: reg 0x10: [mem
0x6015000000-0x60150fffff 64bit pref]
Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: reg 0x18: [mem
0x6015100000-0x6015103fff 64bit pref]
Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: reg 0x20: [mem
0x6015104000-0x6015104fff 64bit pref]
Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: supports D1 D2
Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: PME# supported from D0 D1
D2 D3hot D3cold
Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: PCI bridge to [bus 03]
Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: bridge window [mem
0x6015000000-0x60151fffff 64bit pref]
Jul 20 20:02:05 xd kernel: ACPI: EC: interrupt unblocked
Jul 20 20:02:05 xd kernel: ACPI: EC: event unblocked
Jul 20 20:02:05 xd kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
Jul 20 20:02:05 xd kernel: ACPI: EC: GPE=0x6e
Jul 20 20:02:05 xd kernel: ACPI: \_SB_.PC00.LPCB.EC0_: Boot DSDT EC
initialization complete
Jul 20 20:02:05 xd kernel: ACPI: \_SB_.PC00.LPCB.EC0_: EC: Used to
handle transactions and events
Jul 20 20:02:05 xd kernel: iommu: Default domain type: Translated
Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: vgaarb: setting as boot VGA
device
Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: vgaarb: VGA device added:
decodes=io+mem,owns=io+mem,locks=none
Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: vgaarb: bridge control
possible
Jul 20 20:02:05 xd kernel: vgaarb: loaded
Jul 20 20:02:05 xd kernel: EDAC MC: Ver: 3.0.0
Jul 20 20:02:05 xd kernel: Registered efivars operations
Jul 20 20:02:05 xd kernel: NetLabel: Initializing
Jul 20 20:02:05 xd kernel: NetLabel: domain hash size = 128
Jul 20 20:02:05 xd kernel: NetLabel: protocols = UNLABELED CIPSOv4
CALIPSO
Jul 20 20:02:05 xd kernel: NetLabel: unlabeled traffic allowed by
default
Jul 20 20:02:05 xd kernel: PCI: Using ACPI for IRQ routing
Jul 20 20:02:05 xd kernel: PCI: pci_cache_line_size set to 64 bytes
Jul 20 20:02:05 xd kernel: pci 0000:00:1f.5: can't claim BAR 0 [mem
0xfe010000-0xfe010fff]: no compatible bridge window
Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem
0x0009f000-0x0009ffff]
Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem
0x3bee5000-0x3bffffff]
Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem
0x3bf68000-0x3bffffff]
Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem
0x3bf6a000-0x3bffffff]
Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem
0x3fd99000-0x3fffffff]
Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem
0x424af000-0x43ffffff]
Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem
0x44c00000-0x47ffffff]
Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem
0x4b0800000-0x4b3ffffff]
Jul 20 20:02:05 xd kernel: clocksource: Switched to clocksource
tsc-early
Jul 20 20:02:05 xd kernel: VFS: Disk quotas dquot_6.6.0
Jul 20 20:02:05 xd kernel: VFS: Dquot-cache hash table entries: 512
(order 0, 4096 bytes)
Jul 20 20:02:05 xd kernel: AppArmor: AppArmor Filesystem Enabled
Jul 20 20:02:05 xd kernel: pnp: PnP ACPI init
Jul 20 20:02:05 xd kernel: system 00:00: [io 0x0680-0x069f] has been
reserved
Jul 20 20:02:05 xd kernel: system 00:00: [io 0x164e-0x164f] has been
reserved
Jul 20 20:02:05 xd kernel: system 00:00: [io 0xfd60-0xfd63] has been
reserved
Jul 20 20:02:05 xd kernel: system 00:00: Plug and Play ACPI device, IDs
PNP0c02 (active)
Jul 20 20:02:05 xd kernel: pnp 00:01: Plug and Play ACPI device, IDs
PNP0b00 (active)
Jul 20 20:02:05 xd kernel: system 00:02: [io 0x1854-0x1857] has been
reserved
Jul 20 20:02:05 xd kernel: system 00:02: Plug and Play ACPI device, IDs
INT3f0d PNP0c02 (active)
Jul 20 20:02:05 xd kernel: pnp 00:03: Plug and Play ACPI device, IDs
PNP0303 (active)
Jul 20 20:02:05 xd kernel: pnp 00:04: disabling [mem
0xc0000000-0xcfffffff] because it overlaps 0000:00:02.0 BAR 9 [mem
0x00000000-0xdfffffff 64bit pref]
Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfedc0000-0xfedc7fff] has
been reserved
Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfeda0000-0xfeda0fff] has
been reserved
Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfeda1000-0xfeda1fff] has
been reserved
Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfed20000-0xfed7ffff]
could not be reserved
Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfed90000-0xfed93fff]
could not be reserved
Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfed45000-0xfed8ffff]
could not be reserved
Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfee00000-0xfeefffff] has
been reserved
Jul 20 20:02:05 xd kernel: system 00:04: Plug and Play ACPI device, IDs
PNP0c02 (active)
Jul 20 20:02:05 xd kernel: system 00:05: [io 0x1800-0x18fe] could not be
reserved
Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfe000000-0xfe01ffff]
could not be reserved
Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfe04c000-0xfe04ffff] has
been reserved
Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfe050000-0xfe0affff] has
been reserved
Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfe0d0000-0xfe0fffff] has
been reserved
Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfe200000-0xfe7fffff] has
been reserved
Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xff000000-0xffffffff]
could not be reserved
Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfd000000-0xfd68ffff] has
been reserved
Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfd6b0000-0xfd6cffff] has
been reserved
Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfd6f0000-0xfdffffff] has
been reserved
Jul 20 20:02:05 xd kernel: system 00:05: Plug and Play ACPI device, IDs
PNP0c02 (active)
Jul 20 20:02:05 xd kernel: system 00:06: [io 0x2000-0x20fe] has been
reserved
Jul 20 20:02:05 xd kernel: system 00:06: Plug and Play ACPI device, IDs
PNP0c02 (active)
Jul 20 20:02:05 xd kernel: system 00:07: Plug and Play ACPI device, IDs
PNP0c02 (active)
Jul 20 20:02:05 xd kernel: pnp: PnP ACPI: found 8 devices
Jul 20 20:02:05 xd kernel: clocksource: acpi_pm: mask: 0xffffff
max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Jul 20 20:02:05 xd kernel: NET: Registered protocol family 2
Jul 20 20:02:05 xd kernel: IP idents hash table entries: 262144 (order:
9, 2097152 bytes, linear)
Jul 20 20:02:05 xd kernel: tcp_listen_portaddr_hash hash table entries:
8192 (order: 5, 131072 bytes, linear)
Jul 20 20:02:05 xd kernel: TCP established hash table entries: 131072
(order: 8, 1048576 bytes, linear)
Jul 20 20:02:05 xd kernel: TCP bind hash table entries: 65536 (order: 8,
1048576 bytes, linear)
Jul 20 20:02:05 xd kernel: TCP: Hash tables configured (established
131072 bind 65536)
Jul 20 20:02:05 xd kernel: UDP hash table entries: 8192 (order: 6,
262144 bytes, linear)
Jul 20 20:02:05 xd kernel: UDP-Lite hash table entries: 8192 (order: 6,
262144 bytes, linear)
Jul 20 20:02:05 xd kernel: NET: Registered protocol family 1
Jul 20 20:02:05 xd kernel: NET: Registered protocol family 44
Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: can't claim BAR 6 [mem
0xfff80000-0xffffffff pref]: no compatible bridge window
Jul 20 20:02:05 xd kernel: pci_bus 0000:00: max bus depth: 1
pci_try_num: 2
Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: BAR 9: assigned [mem
0x4020000000-0x40ffffffff 64bit pref]
Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: BAR 7: assigned [mem
0x4010000000-0x4016ffffff 64bit]
Jul 20 20:02:05 xd kernel: pci 0000:00:15.0: BAR 0: assigned [mem
0x4017000000-0x4017000fff 64bit]
Jul 20 20:02:05 xd kernel: pci 0000:00:15.3: BAR 0: assigned [mem
0x4017001000-0x4017001fff 64bit]
Jul 20 20:02:05 xd kernel: pci 0000:00:19.0: BAR 0: assigned [mem
0x4017002000-0x4017002fff 64bit]
Jul 20 20:02:05 xd kernel: pci 0000:00:19.1: BAR 0: assigned [mem
0x4017003000-0x4017003fff 64bit]
Jul 20 20:02:05 xd kernel: pci 0000:00:1f.5: BAR 0: assigned [mem
0x4f800000-0x4f800fff]
Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: BAR 6: no space for [mem
size 0x00080000 pref]
Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: BAR 6: failed to assign
[mem size 0x00080000 pref]
Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: PCI bridge to [bus 01]
Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [io
0x4000-0x4fff]
Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [mem
0x52000000-0x52ffffff]
Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [mem
0x6000000000-0x6011ffffff 64bit pref]
Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: PCI bridge to [bus 02]
Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: bridge window [io
0x3000-0x3fff]
Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: bridge window [mem
0x53000000-0x530fffff]
Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: PCI bridge to [bus 03]
Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: bridge window [mem
0x6015000000-0x60151fffff 64bit pref]
Jul 20 20:02:05 xd kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7
window]
Jul 20 20:02:05 xd kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff
window]
Jul 20 20:02:05 xd kernel: pci_bus 0000:00: resource 6 [mem
0x000a0000-0x000bffff window]
Jul 20 20:02:05 xd kernel: pci_bus 0000:00: resource 7 [mem
0x4f800000-0xbfffffff window]
Jul 20 20:02:05 xd kernel: pci_bus 0000:00: resource 8 [mem
0x4000000000-0x7fffffffff window]
Jul 20 20:02:05 xd kernel: pci_bus 0000:01: resource 0 [io
0x4000-0x4fff]
Jul 20 20:02:05 xd kernel: pci_bus 0000:01: resource 1 [mem
0x52000000-0x52ffffff]
Jul 20 20:02:05 xd kernel: pci_bus 0000:01: resource 2 [mem
0x6000000000-0x6011ffffff 64bit pref]
Jul 20 20:02:05 xd kernel: pci_bus 0000:02: resource 0 [io
0x3000-0x3fff]
Jul 20 20:02:05 xd kernel: pci_bus 0000:02: resource 1 [mem
0x53000000-0x530fffff]
Jul 20 20:02:05 xd kernel: pci_bus 0000:03: resource 2 [mem
0x6015000000-0x60151fffff 64bit pref]
Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: Video device with shadowed
ROM at [mem 0x000c0000-0x000dffff]
Jul 20 20:02:05 xd kernel: PCI: CLS 64 bytes, default 64
Jul 20 20:02:05 xd kernel: Trying to unpack rootfs image as initramfs...
Jul 20 20:02:05 xd kernel: Freeing initrd memory: 47452K
Jul 20 20:02:05 xd kernel: DMAR: No ATSR found
Jul 20 20:02:05 xd kernel: DMAR: dmar0: Using Queued invalidation
Jul 20 20:02:05 xd kernel: DMAR: dmar1: Using Queued invalidation
Jul 20 20:02:05 xd kernel: pci 0000:00:00.0: Adding to iommu group 0
Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: Adding to iommu group 1
Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: Adding to iommu group 2
Jul 20 20:02:05 xd kernel: pci 0000:00:08.0: Adding to iommu group 3
Jul 20 20:02:05 xd kernel: pci 0000:00:0e.0: Adding to iommu group 4
Jul 20 20:02:05 xd kernel: pci 0000:00:14.0: Adding to iommu group 5
Jul 20 20:02:05 xd kernel: pci 0000:00:14.2: Adding to iommu group 5
Jul 20 20:02:05 xd kernel: pci 0000:00:15.0: Adding to iommu group 6
Jul 20 20:02:05 xd kernel: pci 0000:00:15.3: Adding to iommu group 6
Jul 20 20:02:05 xd kernel: pci 0000:00:16.0: Adding to iommu group 7
Jul 20 20:02:05 xd kernel: pci 0000:00:17.0: Adding to iommu group 8
Jul 20 20:02:05 xd kernel: pci 0000:00:19.0: Adding to iommu group 9
Jul 20 20:02:05 xd kernel: pci 0000:00:19.1: Adding to iommu group 9
Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: Adding to iommu group 10
Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: Adding to iommu group 11
Jul 20 20:02:05 xd kernel: pci 0000:00:1f.0: Adding to iommu group 12
Jul 20 20:02:05 xd kernel: pci 0000:00:1f.3: Adding to iommu group 12
Jul 20 20:02:05 xd kernel: pci 0000:00:1f.4: Adding to iommu group 12
Jul 20 20:02:05 xd kernel: pci 0000:00:1f.5: Adding to iommu group 12
Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: Adding to iommu group 13
Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: Adding to iommu group 14
Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: Adding to iommu group 15
Jul 20 20:02:05 xd kernel: DMAR: Intel(R) Virtualization Technology for
Directed I/O
Jul 20 20:02:05 xd kernel: PCI-DMA: Using software bounce buffering for
IO (SWIOTLB)
Jul 20 20:02:05 xd kernel: software IO TLB: mapped [mem
0x0000000037663000-0x000000003b663000] (64MB)
Jul 20 20:02:05 xd kernel: clocksource: tsc: mask: 0xffffffffffffffff
max_cycles: 0x22df1149949, max_idle_ns: 440795312789 ns
Jul 20 20:02:05 xd kernel: clocksource: Switched to clocksource tsc
Jul 20 20:02:05 xd kernel: Initialise system trusted keyrings
Jul 20 20:02:05 xd kernel: Key type blacklist registered
Jul 20 20:02:05 xd kernel: workingset: timestamp_bits=36 max_order=22
bucket_order=0
Jul 20 20:02:05 xd kernel: zbud: loaded
Jul 20 20:02:05 xd kernel: integrity: Platform Keyring initialized
Jul 20 20:02:05 xd kernel: Key type asymmetric registered
Jul 20 20:02:05 xd kernel: Asymmetric key parser 'x509' registered
Jul 20 20:02:05 xd kernel: Block layer SCSI generic (bsg) driver version
0.4 loaded (major 251)
Jul 20 20:02:05 xd kernel: io scheduler mq-deadline registered
Jul 20 20:02:05 xd kernel: pcieport 0000:00:06.0: PME: Signaling with
IRQ 122
Jul 20 20:02:05 xd kernel: pcieport 0000:00:06.0: AER: enabled with IRQ
122
Jul 20 20:02:05 xd kernel: pcieport 0000:00:06.0: DPC: enabled with IRQ
122
Jul 20 20:02:05 xd kernel: pcieport 0000:00:06.0: DPC: error containment
capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4,
DL_ActiveErr+
Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.0: PME: Signaling with
IRQ 123
Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.0: AER: enabled with IRQ
123
Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.0: DPC: enabled with IRQ
123
Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.0: DPC: error containment
capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4,
DL_ActiveErr+
Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.1: PME: Signaling with
IRQ 124
Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.1: AER: enabled with IRQ
124
Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.1: DPC: enabled with IRQ
124
Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.1: DPC: error containment
capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4,
DL_ActiveErr+
Jul 20 20:02:05 xd kernel: shpchp: Standard Hot Plug PCI Controller
Driver version: 0.4
Jul 20 20:02:05 xd kernel: efifb: probing for efifb
Jul 20 20:02:05 xd kernel: efifb: framebuffer at 0x4000000000, using
8128k, total 8128k
Jul 20 20:02:05 xd kernel: efifb: mode is 1920x1080x32, linelength=7680,
pages=1
Jul 20 20:02:05 xd kernel: efifb: scrolling: redraw
Jul 20 20:02:05 xd kernel: efifb: Truecolor: size=8:8:8:8,
shift=24:16:8:0
Jul 20 20:02:05 xd kernel: Console: switching to colour frame buffer
device 240x67
Jul 20 20:02:05 xd kernel: fb0: EFI VGA frame buffer device
Jul 20 20:02:05 xd kernel: intel_idle: MWAIT substates: 0x11121020
Jul 20 20:02:05 xd kernel: Monitor-Mwait will be used to enter C-1 state
Jul 20 20:02:05 xd kernel: Monitor-Mwait will be used to enter C-2 state
Jul 20 20:02:05 xd kernel: Monitor-Mwait will be used to enter C-3 state
Jul 20 20:02:05 xd kernel: ACPI: \_SB_.PR00: Found 3 idle states
Jul 20 20:02:05 xd kernel: intel_idle: v0.5.1 model 0x8C
Jul 20 20:02:05 xd kernel: intel_idle: Local APIC timer is reliable in
all C-states
Jul 20 20:02:05 xd kernel: thermal LNXTHERM:00: registered as
thermal_zone0
Jul 20 20:02:05 xd kernel: ACPI: Thermal Zone [TZ00] (28 C)
Jul 20 20:02:05 xd kernel: Serial: 8250/16550 driver, 4 ports, IRQ
sharing enabled
Jul 20 20:02:05 xd kernel: hpet_acpi_add: no address or irqs in _CRS
Jul 20 20:02:05 xd kernel: Linux agpgart interface v0.103
Jul 20 20:02:05 xd kernel: AMD-Vi: AMD IOMMUv2 functionality not
available on this system - This is not a bug.
Jul 20 20:02:05 xd kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K] at
0x60,0x64 irq 1
Jul 20 20:02:05 xd kernel: i8042: PNP: PS/2 appears to have AUX port
disabled, if this is incorrect please boot with i8042.nopnp
Jul 20 20:02:05 xd kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Jul 20 20:02:05 xd kernel: mousedev: PS/2 mouse device common for all
mice
Jul 20 20:02:05 xd kernel: rtc_cmos 00:01: RTC can wake from S4
Jul 20 20:02:05 xd kernel: rtc_cmos 00:01: registered as rtc0
Jul 20 20:02:05 xd kernel: rtc_cmos 00:01: setting system clock to
2022-07-20T19:02:03 UTC (1658343723)
Jul 20 20:02:05 xd kernel: rtc_cmos 00:01: alarms up to one month, y3k,
242 bytes nvram
Jul 20 20:02:05 xd kernel: intel_pstate: Intel P-state driver
initializing
Jul 20 20:02:05 xd kernel: intel_pstate: HWP enabled
Jul 20 20:02:05 xd kernel: ledtrig-cpu: registered to indicate activity
on CPUs
Jul 20 20:02:05 xd kernel: NET: Registered protocol family 10
Jul 20 20:02:05 xd kernel: Segment Routing with IPv6
Jul 20 20:02:05 xd kernel: mip6: Mobile IPv6
Jul 20 20:02:05 xd kernel: NET: Registered protocol family 17
Jul 20 20:02:05 xd kernel: mpls_gso: MPLS GSO support
Jul 20 20:02:05 xd kernel: microcode: sig=0x806c1, pf=0x80,
revision=0x8a
Jul 20 20:02:05 xd kernel: microcode: Microcode Update Driver: v2.2.
Jul 20 20:02:05 xd kernel: resctrl: L2 allocation detected
Jul 20 20:02:05 xd kernel: resctrl: L2DATA allocation detected
Jul 20 20:02:05 xd kernel: resctrl: L2CODE allocation detected
Jul 20 20:02:05 xd kernel: IPI shorthand broadcast: enabled
Jul 20 20:02:05 xd kernel: sched_clock: Marking stable (836570439,
6379917)->(856451458, -13501102)
Jul 20 20:02:05 xd kernel: registered taskstats version 1
Jul 20 20:02:05 xd kernel: Loading compiled-in X.509 certificates
Jul 20 20:02:05 xd kernel: input: AT Translated Set 2 keyboard as
/devices/platform/i8042/serio0/input/input0
Jul 20 20:02:05 xd kernel: Loaded X.509 cert 'Debian Secure Boot CA:
6ccece7e4c6c0d1f6149f3dd27dfcc5cbb419ea1'
Jul 20 20:02:05 xd kernel: Loaded X.509 cert 'Debian Secure Boot Signer
2021 - linux: 4b6ef5abca669825178e052c84667ccbc0531f8c'
Jul 20 20:02:05 xd kernel: zswap: loaded using pool lzo/zbud
Jul 20 20:02:05 xd kernel: Key type ._fscrypt registered
Jul 20 20:02:05 xd kernel: Key type .fscrypt registered
Jul 20 20:02:05 xd kernel: Key type fscrypt-provisioning registered
Jul 20 20:02:05 xd kernel: AppArmor: AppArmor sha1 policy hashing
enabled
Jul 20 20:02:05 xd kernel: Freeing unused kernel image (initmem) memory:
2424K
Jul 20 20:02:05 xd kernel: Write protecting the kernel read-only data:
22528k
Jul 20 20:02:05 xd kernel: Freeing unused kernel image (text/rodata gap)
memory: 2040K
Jul 20 20:02:05 xd kernel: Freeing unused kernel image (rodata/data gap)
memory: 624K
Jul 20 20:02:05 xd kernel: x86/mm: Checked W+X mappings: passed, no W+X
pages found.
Jul 20 20:02:05 xd kernel: Run /init as init process
Jul 20 20:02:05 xd kernel: with arguments:
Jul 20 20:02:05 xd kernel: /init
Jul 20 20:02:05 xd kernel: with environment:
Jul 20 20:02:05 xd kernel: HOME=/
Jul 20 20:02:05 xd kernel: TERM=linux
Jul 20 20:02:05 xd kernel: BOOT_IMAGE=/vmlinuz-5.10.0-16-amd64
Jul 20 20:02:05 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block
query control method not found
Jul 20 20:02:05 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block
query control method not found
Jul 20 20:02:05 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block
query control method not found
Jul 20 20:02:05 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block
query control method not found
Jul 20 20:02:05 xd kernel: acpi PNP0C14:03: duplicate WMI GUID
05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
Jul 20 20:02:05 xd kernel: acpi PNP0C14:04: duplicate WMI GUID
05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
Jul 20 20:02:05 xd kernel: input: Lid Switch as
/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:21/PNP0C0D:00/input/input1
Jul 20 20:02:05 xd kernel: ACPI: Lid Switch [LID0]
Jul 20 20:02:05 xd kernel: input: Sleep Button as
/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2
Jul 20 20:02:05 xd kernel: ACPI: Sleep Button [SLPB]
Jul 20 20:02:05 xd kernel: input: Power Button as
/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input3
Jul 20 20:02:05 xd kernel: battery: ACPI: Battery Slot [BAT1] (battery
present)
Jul 20 20:02:05 xd kernel: hid: raw HID events driver (C) Jiri Kosina
Jul 20 20:02:05 xd kernel: vmd 0000:00:0e.0: PCI host bridge to bus
10000:e0
Jul 20 20:02:05 xd kernel: pci_bus 10000:e0: root bus resource [bus
e0-ff]
Jul 20 20:02:05 xd kernel: pci_bus 10000:e0: root bus resource [mem
0x50000000-0x51ffffff]
Jul 20 20:02:05 xd kernel: pci_bus 10000:e0: root bus resource [mem
0x6015302000-0x60153fffff 64bit]
Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: [8086:a0d3] type 00 class
0x010601
Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x10: [mem
0x00000000-0x00001fff]
Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x14: [mem
0x00000000-0x000000ff]
Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x18: [io
0x0000-0x0007]
Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x1c: [io
0x0000-0x0003]
Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x20: [io
0x0000-0x001f]
Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x24: [mem
0x50000000-0x500007ff]
Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: PME# supported from D3hot
Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: Adding to iommu group 4
Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.0: [8086:09ab] type 00 class
0x088000
Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.0: Adding to iommu group 4
Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: [8086:a0bc] type 01 class
0x060400
Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: PME# supported from D0
D3hot D3cold
Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: PTM enabled (root), 4ns
granularity
Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: Adding to iommu group 4
Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: Primary bus is hard wired
to 0
Jul 20 20:02:05 xd kernel: pci 10000:e1:00.0: [2646:500c] type 00 class
0x010802
Jul 20 20:02:05 xd kernel: pci 10000:e1:00.0: reg 0x10: [mem
0x50100000-0x50103fff 64bit]
Jul 20 20:02:05 xd kernel: pci 10000:e1:00.0: Adding to iommu group 4
Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: PCI bridge to [bus e1]
Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: bridge window [io
0x0000-0x0fff]
Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: bridge window [mem
0x50100000-0x501fffff]
Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: Primary bus is hard wired
to 0
Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: BAR 14: assigned [mem
0x50000000-0x500fffff]
Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 0: assigned [mem
0x50100000-0x50101fff]
Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: BAR 13: no space for [io
size 0x1000]
Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: BAR 13: failed to assign
[io size 0x1000]
Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 5: assigned [mem
0x50102000-0x501027ff]
Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 1: assigned [mem
0x50102800-0x501028ff]
Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 4: no space for [io
size 0x0020]
Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 4: failed to assign
[io size 0x0020]
Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 2: no space for [io
size 0x0008]
Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 2: failed to assign
[io size 0x0008]
Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 3: no space for [io
size 0x0004]
Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 3: failed to assign
[io size 0x0004]
Jul 20 20:02:05 xd kernel: pci 10000:e1:00.0: BAR 0: assigned [mem
0x50000000-0x50003fff 64bit]
Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: PCI bridge to [bus e1]
Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: bridge window [mem
0x50000000-0x500fffff]
Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: can't derive routing
for PCI INT A
Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: PCI INT A: no GSI
Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: PME: Signaling with
IRQ 144
Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: AER: enabled with IRQ
144
Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: DPC: enabled with IRQ
144
Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: DPC: error
containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP
PIO Log 4, DL_ActiveErr+
Jul 20 20:02:05 xd kernel: vmd 0000:00:0e.0: Bound to PCI domain 10000
Jul 20 20:02:05 xd kernel: i801_smbus 0000:00:1f.4: SPD Write Disable is
set
Jul 20 20:02:05 xd kernel: i801_smbus 0000:00:1f.4: SMBus using PCI
interrupt
Jul 20 20:02:05 xd kernel: i2c i2c-0: 2/2 memory slots populated (from
DMI)
Jul 20 20:02:05 xd kernel: i2c i2c-0: Successfully instantiated SPD at
0x50
Jul 20 20:02:05 xd kernel: r8168: loading out-of-tree module taints
kernel.
Jul 20 20:02:05 xd kernel: r8168: module verification failed: signature
and/or required key missing - tainting kernel
Jul 20 20:02:05 xd kernel: r8168 Gigabit Ethernet driver 8.048.03-NAPI
loaded
Jul 20 20:02:05 xd kernel: ACPI: bus type USB registered
Jul 20 20:02:05 xd kernel: usbcore: registered new interface driver
usbfs
Jul 20 20:02:05 xd kernel: usbcore: registered new interface driver hub
Jul 20 20:02:05 xd kernel: usbcore: registered new device driver usb
Jul 20 20:02:05 xd kernel: ACPI: Power Button [PWRB]
Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: new USB bus
registered, assigned bus number 1
Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: hcc params 0x20007fc1
hci version 0x120 quirks 0x0000000000009810
Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: cache line size of 64
is not supported
Jul 20 20:02:05 xd kernel: r8168: This product is covered by one or more
of the following patents: US6,570,884, US6,115,776, and US6,327,625.
Jul 20 20:02:05 xd kernel: usb usb1: New USB device found,
idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
Jul 20 20:02:05 xd kernel: usb usb1: New USB device strings: Mfr=3,
Product=2, SerialNumber=1
Jul 20 20:02:05 xd kernel: usb usb1: Product: xHCI Host Controller
Jul 20 20:02:05 xd kernel: usb usb1: Manufacturer: Linux 5.10.0-16-amd64
xhci-hcd
Jul 20 20:02:05 xd kernel: usb usb1: SerialNumber: 0000:00:14.0
Jul 20 20:02:05 xd kernel: hub 1-0:1.0: USB hub found
Jul 20 20:02:05 xd kernel: hub 1-0:1.0: 12 ports detected
Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: new USB bus
registered, assigned bus number 2
Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: Host supports USB 3.1
Enhanced SuperSpeed
Jul 20 20:02:05 xd kernel: usb usb2: New USB device found,
idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
Jul 20 20:02:05 xd kernel: usb usb2: New USB device strings: Mfr=3,
Product=2, SerialNumber=1
Jul 20 20:02:05 xd kernel: usb usb2: Product: xHCI Host Controller
Jul 20 20:02:05 xd kernel: usb usb2: Manufacturer: Linux 5.10.0-16-amd64
xhci-hcd
Jul 20 20:02:05 xd kernel: usb usb2: SerialNumber: 0000:00:14.0
Jul 20 20:02:05 xd kernel: hub 2-0:1.0: USB hub found
Jul 20 20:02:05 xd kernel: hub 2-0:1.0: 4 ports detected
Jul 20 20:02:05 xd kernel: r8168 Copyright (C) 2020 Realtek NIC software
team <nicfae@realtek.com>
This program comes with ABSOLUTELY NO WARRANTY; for details, please see
<http://www.gnu.org/licenses/>.
This is free software, and you are welcome to redistribute it under
certain conditions; see <http://www.gnu.org/licenses/>.
Jul 20 20:02:05 xd kernel: SCSI subsystem initialized
Jul 20 20:02:05 xd kernel: intel-lpss 0000:00:15.0: enabling device
(0004 -> 0006)
Jul 20 20:02:05 xd kernel: idma64 idma64.0: Found Intel integrated DMA
64-bit
Jul 20 20:02:05 xd kernel: r8168 0000:02:00.0 enp2s0: renamed from eth0
Jul 20 20:02:05 xd kernel: nvme nvme0: pci function 10000:e1:00.0
Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: can't derive routing
for PCI INT A
Jul 20 20:02:05 xd kernel: nvme 10000:e1:00.0: PCI INT A: no GSI
Jul 20 20:02:05 xd kernel: libata version 3.00 loaded.
Jul 20 20:02:05 xd kernel: nvme nvme0: missing or invalid SUBNQN field.
Jul 20 20:02:05 xd kernel: nvme nvme0: Shutdown timeout set to 10
seconds
Jul 20 20:02:05 xd kernel: nvme nvme0: 8/0/0 default/read/poll queues
Jul 20 20:02:05 xd kernel: nvme0n1: p1 p2 p3 p4 p5
Jul 20 20:02:05 xd kernel: intel-lpss 0000:00:15.3: enabling device
(0004 -> 0006)
Jul 20 20:02:05 xd kernel: idma64 idma64.1: Found Intel integrated DMA
64-bit
Jul 20 20:02:05 xd kernel: i2c_hid i2c-ELAN0515:01: supply vdd not
found, using dummy regulator
Jul 20 20:02:05 xd kernel: i2c_hid i2c-ELAN0515:01: supply vddl not
found, using dummy regulator
Jul 20 20:02:05 xd kernel: intel-lpss 0000:00:19.0: enabling device
(0004 -> 0006)
Jul 20 20:02:05 xd kernel: idma64 idma64.2: Found Intel integrated DMA
64-bit
Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: [drm] VT-d active for gfx
access
Jul 20 20:02:05 xd kernel: checking generic (4000000000 7f0000) vs hw
(6014000000 1000000)
Jul 20 20:02:05 xd kernel: checking generic (4000000000 7f0000) vs hw
(4000000000 10000000)
Jul 20 20:02:05 xd kernel: fb0: switching to inteldrmfb from EFI VGA
Jul 20 20:02:05 xd kernel: Console: switching to colour dummy device
80x25
Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: vgaarb: deactivate vga
console
Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: vgaarb: changed VGA
decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: firmware: direct-loading
firmware i915/tgl_dmc_ver2_08.bin
Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: [drm] Finished loading DMC
firmware i915/tgl_dmc_ver2_08.bin (v2.8)
Jul 20 20:02:05 xd kernel: intel-lpss 0000:00:19.1: enabling device
(0004 -> 0006)
Jul 20 20:02:05 xd kernel: idma64 idma64.3: Found Intel integrated DMA
64-bit
Jul 20 20:02:05 xd kernel: input: ELAN0515:01 04F3:3142 Mouse as
/devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input4
Jul 20 20:02:05 xd kernel: input: ELAN0515:01 04F3:3142 Touchpad as
/devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input6
Jul 20 20:02:05 xd kernel: hid-generic 0018:04F3:3142.0001:
input,hidraw0: I2C HID v1.00 Mouse [ELAN0515:01 04F3:3142] on
i2c-ELAN0515:01
Jul 20 20:02:05 xd kernel: ahci 10000:e0:17.0: version 3.0
Jul 20 20:02:05 xd kernel: ahci 10000:e0:17.0: can't derive routing for
PCI INT A
Jul 20 20:02:05 xd kernel: ahci 10000:e0:17.0: PCI INT A: no GSI
Jul 20 20:02:05 xd kernel: ahci 10000:e0:17.0: AHCI 0001.0301 32 slots 2
ports 6 Gbps 0x3 impl SATA mode
Jul 20 20:02:05 xd kernel: ahci 10000:e0:17.0: flags: 64bit ncq sntf pm
clo only pio slum part deso sadm sds
Jul 20 20:02:05 xd kernel: scsi host0: ahci
Jul 20 20:02:05 xd kernel: scsi host1: ahci
Jul 20 20:02:05 xd kernel: ata1: SATA max UDMA/133 abar m2048@0x50102000
port 0x50102100 irq 158
Jul 20 20:02:05 xd kernel: ata2: SATA max UDMA/133 abar m2048@0x50102000
port 0x50102180 irq 158
Jul 20 20:02:05 xd kernel: usb 1-7: new full-speed USB device number 2
using xhci_hcd
Jul 20 20:02:05 xd kernel: usb 1-7: New USB device found, idVendor=04f3,
idProduct=0c4f, bcdDevice= 1.61
Jul 20 20:02:05 xd kernel: usb 1-7: New USB device strings: Mfr=1,
Product=2, SerialNumber=0
Jul 20 20:02:05 xd kernel: usb 1-7: Product: ELAN:Fingerprint
Jul 20 20:02:05 xd kernel: usb 1-7: Manufacturer: ELAN
Jul 20 20:02:05 xd kernel: ata1: SATA link down (SStatus 0 SControl 300)
Jul 20 20:02:05 xd kernel: ata2: SATA link down (SStatus 0 SControl 300)
Jul 20 20:02:05 xd kernel: usb 1-8: new high-speed USB device number 3
using xhci_hcd
Jul 20 20:02:05 xd kernel: usb 1-8: New USB device found, idVendor=0408,
idProduct=a061, bcdDevice= 0.04
Jul 20 20:02:05 xd kernel: usb 1-8: New USB device strings: Mfr=1,
Product=2, SerialNumber=0
Jul 20 20:02:05 xd kernel: usb 1-8: Product: HD User Facing
Jul 20 20:02:05 xd kernel: usb 1-8: Manufacturer: SunplusIT Inc
Jul 20 20:02:05 xd kernel: usb 1-10: new high-speed USB device number 4
using xhci_hcd
Jul 20 20:02:05 xd kernel: usb 1-10: New USB device found,
idVendor=04ca, idProduct=3802, bcdDevice= 1.00
Jul 20 20:02:05 xd kernel: usb 1-10: New USB device strings: Mfr=5,
Product=6, SerialNumber=7
Jul 20 20:02:05 xd kernel: usb 1-10: Product: Wireless_Device
Jul 20 20:02:05 xd kernel: usb 1-10: Manufacturer: MediaTek Inc.
Jul 20 20:02:05 xd kernel: usb 1-10: SerialNumber: 000000000
Jul 20 20:02:05 xd kernel: [drm] Initialized i915 1.6.0 20200917 for
0000:00:02.0 on minor 0
Jul 20 20:02:05 xd kernel: [Firmware Bug]: ACPI(PEGP) defines _DOD but
not _DOS
Jul 20 20:02:05 xd kernel: ACPI: Video Device [PEGP] (multi-head: yes
rom: no post: no)
Jul 20 20:02:05 xd kernel: input: Video Bus as
/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/LNXVIDEO:00/input/input7
Jul 20 20:02:05 xd kernel: ACPI: Video Device [GFX0] (multi-head: yes
rom: no post: no)
Jul 20 20:02:05 xd kernel: input: Video Bus as
/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input8
Jul 20 20:02:05 xd kernel: fbcon: i915drmfb (fb0) is primary device
Jul 20 20:02:05 xd kernel: Console: switching to colour frame buffer
device 240x67
Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: [drm] fb0: i915drmfb frame
buffer device
Jul 20 20:02:05 xd kernel: PM: Image not found (code -22)
Jul 20 20:02:05 xd kernel: EXT4-fs (nvme0n1p3): mounting ext3 file
system using the ext4 subsystem
Jul 20 20:02:05 xd kernel: EXT4-fs (nvme0n1p3): mounted filesystem with
ordered data mode. Opts: (null)
Jul 20 20:02:05 xd kernel: Not activating Mandatory Access Control as
/sbin/tomoyo-init does not exist.
Jul 20 20:02:05 xd systemd[1]: Inserted module 'autofs4'
Jul 20 20:02:05 xd systemd[1]: systemd 247.3-7 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=unified)
Jul 20 20:02:05 xd systemd[1]: Detected architecture x86-64.
Jul 20 20:02:05 xd systemd[1]: Set hostname to <xd>.
Jul 20 20:02:05 xd systemd[1]:
/lib/systemd/system/plymouth-start.service:16: Unit configured to use
KillMode=none. This is unsafe, as it disables systemd's process
lifecycle management for the service. Please update your service to use
a safer KillMode=, such as 'mixed' or 'control-group'. Support for
KillMode=none is deprecated and will eventually be removed.
Jul 20 20:02:05 xd systemd[1]: Queued start job for default target
Graphical Interface.
Jul 20 20:02:05 xd systemd[1]: Created slice system-getty.slice.
Jul 20 20:02:05 xd systemd[1]: Created slice system-modprobe.slice.
Jul 20 20:02:05 xd systemd[1]: Created slice
system-systemd\x2dfsck.slice.
Jul 20 20:02:05 xd systemd[1]: Created slice User and Session Slice.
Jul 20 20:02:05 xd systemd[1]: Started Forward Password Requests to Wall
Directory Watch.
Jul 20 20:02:05 xd systemd[1]: Set up automount Arbitrary Executable
File Formats File System Automount Point.
Jul 20 20:02:05 xd systemd[1]: Reached target User and Group Name
Lookups.
Jul 20 20:02:05 xd systemd[1]: Reached target Remote File Systems.
Jul 20 20:02:05 xd systemd[1]: Reached target Slices.
Jul 20 20:02:05 xd systemd[1]: Listening on Device-mapper event daemon
FIFOs.
Jul 20 20:02:05 xd systemd[1]: Listening on LVM2 poll daemon socket.
Jul 20 20:02:05 xd systemd[1]: Listening on Syslog Socket.
Jul 20 20:02:05 xd systemd[1]: Listening on fsck to fsckd communication
Socket.
Jul 20 20:02:05 xd systemd[1]: Listening on initctl Compatibility Named
Pipe.
Jul 20 20:02:05 xd systemd[1]: Listening on Journal Audit Socket.
Jul 20 20:02:05 xd systemd[1]: Listening on Journal Socket (/dev/log).
Jul 20 20:02:05 xd systemd[1]: Listening on Journal Socket.
Jul 20 20:02:05 xd systemd[1]: Listening on udev Control Socket.
Jul 20 20:02:05 xd systemd[1]: Listening on udev Kernel Socket.
Jul 20 20:02:05 xd systemd[1]: Mounting Huge Pages File System...
Jul 20 20:02:05 xd systemd[1]: Mounting POSIX Message Queue File
System...
Jul 20 20:02:05 xd systemd[1]: Mounting Kernel Debug File System...
Jul 20 20:02:05 xd systemd[1]: Mounting Kernel Trace File System...
Jul 20 20:02:05 xd systemd[1]: Finished Availability of block devices.
Jul 20 20:02:05 xd systemd[1]: Starting Set the console keyboard
layout...
Jul 20 20:02:05 xd systemd[1]: Starting Create list of static device
nodes for the current kernel...
Jul 20 20:02:05 xd systemd[1]: Starting Monitoring of LVM2 mirrors,
snapshots etc. using dmeventd or progress polling...
Jul 20 20:02:05 xd systemd[1]: Starting Load Kernel Module configfs...
Jul 20 20:02:05 xd systemd[1]: Starting Load Kernel Module drm...
Jul 20 20:02:05 xd systemd[1]: Starting Load Kernel Module fuse...
Jul 20 20:02:05 xd systemd[1]: Condition check resulted in Set Up
Additional Binary Formats being skipped.
Jul 20 20:02:05 xd systemd[1]: Condition check resulted in File System
Check on Root Device being skipped.
Jul 20 20:02:05 xd systemd[1]: Starting Journal Service...
Jul 20 20:02:05 xd systemd[1]: Starting Load Kernel Modules...
Jul 20 20:02:05 xd systemd[1]: Starting Remount Root and Kernel File
Systems...
Jul 20 20:02:05 xd systemd[1]: Starting Coldplug All udev Devices...
Jul 20 20:02:05 xd systemd[1]: Mounted Huge Pages File System.
Jul 20 20:02:05 xd systemd[1]: Mounted POSIX Message Queue File System.
Jul 20 20:02:05 xd systemd[1]: Mounted Kernel Debug File System.
Jul 20 20:02:05 xd systemd[1]: Mounted Kernel Trace File System.
Jul 20 20:02:05 xd systemd[1]: Finished Create list of static device
nodes for the current kernel.
Jul 20 20:02:05 xd systemd[1]: modprobe@configfs.service: Succeeded.
Jul 20 20:02:05 xd systemd[1]: Finished Load Kernel Module configfs.
Jul 20 20:02:05 xd systemd[1]: modprobe@drm.service: Succeeded.
Jul 20 20:02:05 xd systemd[1]: Finished Load Kernel Module drm.
Jul 20 20:02:05 xd systemd[1]: Mounting Kernel Configuration File
System...
Jul 20 20:02:05 xd systemd[1]: Mounted Kernel Configuration File System.
Jul 20 20:02:05 xd kernel: EXT4-fs (nvme0n1p3): re-mounted. Opts:
errors=remount-ro
Jul 20 20:02:05 xd systemd[1]: Finished Remount Root and Kernel File
Systems.
Jul 20 20:02:05 xd kernel: fuse: init (API version 7.32)
Jul 20 20:02:05 xd systemd[1]: Condition check resulted in Rebuild
Hardware Database being skipped.
Jul 20 20:02:05 xd systemd[1]: Condition check resulted in Platform
Persistent Storage Archival being skipped.
Jul 20 20:02:05 xd systemd[1]: Starting Load/Save Random Seed...
Jul 20 20:02:05 xd systemd[1]: Starting Create System Users...
Jul 20 20:02:05 xd systemd[1]: modprobe@fuse.service: Succeeded.
Jul 20 20:02:05 xd systemd[1]: Finished Load Kernel Module fuse.
Jul 20 20:02:05 xd systemd[1]: Mounting FUSE Control File System...
Jul 20 20:02:05 xd systemd[1]: Mounted FUSE Control File System.
Jul 20 20:02:05 xd kernel: lp: driver loaded but no devices found
Jul 20 20:02:05 xd kernel: ppdev: user-space parallel port driver
Jul 20 20:02:05 xd systemd[1]: Finished Load/Save Random Seed.
Jul 20 20:02:05 xd systemd[1]: Condition check resulted in First Boot
Complete being skipped.
Jul 20 20:02:05 xd systemd[1]: Finished Create System Users.
Jul 20 20:02:05 xd systemd[1]: Starting Create Static Device Nodes in
/dev...
Jul 20 20:02:05 xd systemd[1]: Finished Create Static Device Nodes in
/dev.
Jul 20 20:02:05 xd systemd[1]: Starting Rule-based Manager for Device
Events and Files...
Jul 20 20:02:05 xd systemd[1]: Finished Set the console keyboard layout.
Jul 20 20:02:05 xd systemd[1]: Started Journal Service.
Jul 20 20:02:05 xd kernel: nvidia: module license 'NVIDIA' taints
kernel.
Jul 20 20:02:05 xd kernel: Disabling lock debugging due to kernel taint
Jul 20 20:02:05 xd kernel: nvidia-nvlink: Nvlink Core is being
initialized, major device number 245
Jul 20 20:02:05 xd kernel:
Jul 20 20:02:05 xd kernel: nvidia 0000:01:00.0: enabling device (0006 ->
0007)
Jul 20 20:02:05 xd kernel: NVRM: loading NVIDIA UNIX x86_64 Kernel
Module 470.129.06 Thu May 12 22:52:02 UTC 2022
Jul 20 20:02:05 xd kernel: input: Acer Wireless Radio Control as
/devices/LNXSYSTM:00/10251229:00/input/input9
Jul 20 20:02:05 xd kernel: input: Intel HID events as
/devices/platform/INTC1051:00/input/input10
Jul 20 20:02:05 xd kernel: intel-hid INTC1051:00: platform supports 5
button array
Jul 20 20:02:05 xd kernel: input: Intel HID 5 button array as
/devices/platform/INTC1051:00/input/input11
Jul 20 20:02:05 xd kernel: intel_pmc_core INT33A1:00: initialized
Jul 20 20:02:05 xd kernel: ACPI: AC Adapter [ACAD] (on-line)
Jul 20 20:02:05 xd kernel: nvidia-modeset: Loading NVIDIA Kernel Mode
Setting Driver for UNIX platforms 470.129.06 Thu May 12 22:42:45 UTC
2022
Jul 20 20:02:05 xd kernel: mc: Linux media interface: v0.10
Jul 20 20:02:05 xd kernel: mei_me 0000:00:16.0: enabling device (0000 ->
0002)
Jul 20 20:02:05 xd kernel: ee1004 0-0050: 512 byte EE1004-compliant SPD
EEPROM, read-only
Jul 20 20:02:05 xd kernel: [drm] [nvidia-drm] [GPU ID 0x00000100]
Loading driver
Jul 20 20:02:05 xd kernel: [drm] Initialized nvidia-drm 0.0.0 20160202
for 0000:01:00.0 on minor 1
Jul 20 20:02:05 xd kernel: videodev: Linux video capture interface:
v2.00
Jul 20 20:02:05 xd kernel: iTCO_vendor_support: vendor-support=0
Jul 20 20:02:05 xd kernel: iTCO_wdt: Intel TCO WatchDog Timer Driver
v1.11
Jul 20 20:02:05 xd kernel: iTCO_wdt: Found a Intel PCH TCO device
(Version=6, TCOBASE=0x0400)
Jul 20 20:02:05 xd kernel: iTCO_wdt: initialized. heartbeat=30 sec
(nowayout=0)
Jul 20 20:02:05 xd kernel: EXT4-fs (nvme0n1p2): mounting ext2 file
system using the ext4 subsystem
Jul 20 20:02:05 xd kernel: EXT4-fs (nvme0n1p2): mounted filesystem
without journal. Opts: (null)
Jul 20 20:02:05 xd kernel: ext2 filesystem being mounted at /boot
supports timestamps until 2038 (0x7fffffff)
Jul 20 20:02:05 xd kernel: uvcvideo: Found UVC 1.00 device HD User
Facing (0408:a061)
Jul 20 20:02:05 xd kernel: Adding 31182844k swap on /dev/nvme0n1p4.
Priority:-2 extents:1 across:31182844k SSFS
Jul 20 20:02:05 xd kernel: input: HD User Facing: HD User Facing as
/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/input/input12
Jul 20 20:02:05 xd kernel: input: PC Speaker as
/devices/platform/pcspkr/input/input13
Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:2):
apparmor="STATUS" operation="profile_load" profile="unconfined"
name="lsb_release" pid=401 comm="apparmor_parser"
Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:3):
apparmor="STATUS" operation="profile_load" profile="unconfined"
name="libreoffice-oopslash" pid=402 comm="apparmor_parser"
Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:4):
apparmor="STATUS" operation="profile_load" profile="unconfined"
name="nvidia_modprobe" pid=405 comm="apparmor_parser"
Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:5):
apparmor="STATUS" operation="profile_load" profile="unconfined"
name="nvidia_modprobe//kmod" pid=405 comm="apparmor_parser"
Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:6):
apparmor="STATUS" operation="profile_load" profile="unconfined"
name="/usr/bin/man" pid=403 comm="apparmor_parser"
Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:7):
apparmor="STATUS" operation="profile_load" profile="unconfined"
name="man_filter" pid=403 comm="apparmor_parser"
Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:8):
apparmor="STATUS" operation="profile_load" profile="unconfined"
name="man_groff" pid=403 comm="apparmor_parser"
Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:9):
apparmor="STATUS" operation="profile_load" profile="unconfined"
name="/usr/sbin/cups-browsed" pid=407 comm="apparmor_parser"
Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.840:10):
apparmor="STATUS" operation="profile_load" profile="unconfined"
name="libreoffice-senddoc" pid=409 comm="apparmor_parser"
Jul 20 20:02:05 xd kernel: usbcore: registered new interface driver
uvcvideo
Jul 20 20:02:05 xd kernel: USB Video Class driver (1.1.1)
Jul 20 20:02:05 xd kernel: pstore: Using crash dump compression: deflate
Jul 20 20:02:05 xd kernel: input: ELAN0515:01 04F3:3142 Mouse as
/devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input14
Jul 20 20:02:05 xd kernel: input: ELAN0515:01 04F3:3142 Touchpad as
/devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input16
Jul 20 20:02:05 xd kernel: hid-multitouch 0018:04F3:3142.0001:
input,hidraw0: I2C HID v1.00 Mouse [ELAN0515:01 04F3:3142] on
i2c-ELAN0515:01
Jul 20 20:02:05 xd kernel: pstore: Registered efi as persistent store
backend
Jul 20 20:02:05 xd kernel: acer_wmi: Acer Laptop ACPI-WMI Extras
Jul 20 20:02:05 xd kernel: acer_wmi: Function bitmap for Communication
Button: 0x801
Jul 20 20:02:05 xd kernel: input: Acer WMI hotkeys as
/devices/virtual/input/input17
Jul 20 20:02:05 xd kernel: snd_hda_intel 0000:00:1f.3: DSP detected with
PCI class/subclass/prog-if info 0x040100
Jul 20 20:02:05 xd kernel: snd_hda_intel 0000:00:1f.3: Digital mics
found on Skylake+ platform, using SOF driver
Jul 20 20:02:05 xd kernel: cryptd: max_cpu_qlen set to 1000
Jul 20 20:02:06 xd kernel: AVX2 version of gcm_enc/dec engaged.
Jul 20 20:02:06 xd kernel: AES CTR mode by8 optimization enabled
Jul 20 20:02:06 xd kernel: resource sanity check: requesting [mem
0xfedc0000-0xfedcdfff], which spans more than pnp 00:04 [mem
0xfedc0000-0xfedc7fff]
Jul 20 20:02:06 xd kernel: caller
tgl_uncore_imc_freerunning_init_box+0xbb/0x100 [intel_uncore] mapping
multiple BARs
Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: DSP detected with
PCI class/subclass/prog-if info 0x040100
Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: Digital mics
found on Skylake+ platform, using SOF driver
Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: enabling device
(0000 -> 0002)
Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: DSP detected with
PCI class/subclass/prog-if 0x040100
Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: bound
0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: use msi interrupt
mode
Jul 20 20:02:06 xd kernel: ACPI Warning: \_SB.PC00.PEG0.PEGP._DSM:
Argument #4 type mismatch - Found [Buffer], ACPI requires [Package]
(20200925/nsarguments-61)
Jul 20 20:02:06 xd kernel: enp2s0: 0xffffbd82000e9000,
08:8f:c3:4f:86:c5, IRQ 145
Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: hda codecs found,
mask 5
Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: using HDA machine
driver skl_hda_dsp_generic now
Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: DMICs detected in
NHLT tables: 2
Jul 20 20:02:06 xd kernel: alg: No test for fips(ansi_cprng)
(fips_ansi_cprng)
Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: firmware: failed
to load intel/sof/sof-tgl.ri (-2)
Jul 20 20:02:06 xd kernel: firmware_class: See
https://wiki.debian.org/Firmware for information about missing firmware
Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: Direct firmware
load for intel/sof/sof-tgl.ri failed with error -2
Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: error: request
firmware intel/sof/sof-tgl.ri failed err: -2
Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: error: failed to
load DSP firmware -2
Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: error:
sof_probe_work failed err: -2
Jul 20 20:02:06 xd kernel: Bluetooth: Core ver 2.22
Jul 20 20:02:06 xd kernel: NET: Registered protocol family 31
Jul 20 20:02:06 xd kernel: Bluetooth: HCI device and connection manager
initialized
Jul 20 20:02:06 xd kernel: Bluetooth: HCI socket layer initialized
Jul 20 20:02:06 xd kernel: Bluetooth: L2CAP socket layer initialized
Jul 20 20:02:06 xd kernel: Bluetooth: SCO socket layer initialized
Jul 20 20:02:06 xd kernel: usbcore: registered new interface driver
btusb
Jul 20 20:02:07 xd kernel: intel_rapl_msr: PL4 support detected.
Jul 20 20:02:07 xd kernel: intel_rapl_common: Found RAPL domain package
Jul 20 20:02:07 xd kernel: intel_rapl_common: Found RAPL domain core
Jul 20 20:02:07 xd kernel: intel_rapl_common: Found RAPL domain uncore
Jul 20 20:02:07 xd kernel: mei_hdcp
0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0
(ops i915_hdcp_component_ops [i915])
Jul 20 20:02:07 xd kernel: Bluetooth: BNEP (Ethernet Emulation) ver 1.3
Jul 20 20:02:07 xd kernel: Bluetooth: BNEP filters: protocol multicast
Jul 20 20:02:07 xd kernel: Bluetooth: BNEP socket layer initialized
Jul 20 20:02:09 xd kernel: r8168: enp2s0: link up
Jul 20 20:02:09 xd kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link
becomes ready
Jul 20 20:02:09 xd kernel: rfkill: input handler disabled
Jul 20 20:02:17 xd kernel: rfkill: input handler enabled
Jul 20 20:02:18 xd kernel: rfkill: input handler disabled
Re: Boot into Xen on debian11 [ In reply to ]
On 7/20/22 3:19 PM, Bruno wrote:
>
> Hello Leigh. Hello Chuck.
>
> Thank you again for the support. Unfortunately matters have not moved forward yet.
>
> I have successfully installed nvidia and the non-free firmware miscellanea, and I have re-generated the initramfs ( update-initramfs -k all -c -v ). But I cannot boot on Xen.
>
> I also when booting Xen and landing on initramfs prompt, cannot mount /root ( mount -o remount,rw /root ), and I cannot extract a dmesg of that boot process. I am not getting the ACPI error I was getting before, but clearly the errors in mount are ACPI failure.
>
> Bellow the current journalctl -k -b :
>

As Leigh said, there should be something like:

Jul 20 09:19:36 debian kernel: [    0.000000] Hypervisor detected: Xen PV

In the journal logs, but I don't see it there. See if you can find it in
the /var/log/kern.log file to be sure you are posting the right log file.
It should be there on the attempt to boot into Linux on Xen.

Maybe there is something wrong with your grub configuration. I know
you posted it in your first message but I don't see anything
terribly wrong there. Are you sure that grub is really booting
the 'Debian Linux/GNU with Xen hypervisor' boot option? It
should boot that, based on what is in your /boot/grub/grub.cfg
file.

You can also manually select the option to boot Debian with the
Xen hypervisor while the grub boot menu displays.

It has been a long time since I installed Xen on Debian,
I have been just upgrading my installation that
goes all the way back to Debian 7. It may be there
is a bug in the current Debian Xen metapackage
installation system.

I have been planning to try to do a clean install of
Xen on Debian 11 to see if it still works right. I will
try it later this week and let you know if there is
a bug in the Debian Xen installation system.

Chuck


> Jul 20 20:02:05 xd kernel: Linux version 5.10.0-16-amd64 (debian-kernel@lists.debian.org) (gcc-10 (Debian 10.2.1-6) 10.2.1 20210110, GNU ld (GNU Binutils for Debian) 2.35.2) #1 SMP Debian 5.10.127-1 (2022-06-30)
> Jul 20 20:02:05 xd kernel: Command line: BOOT_IMAGE=/vmlinuz-5.10.0-16-amd64 root=UUID=0123abcd ro quiet
> Jul 20 20:02:05 xd kernel: x86/split lock detection: warning about user-space split_locks
> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask'
> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'
> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'
> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
> Jul 20 20:02:05 xd kernel: x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
> Jul 20 20:02:05 xd kernel: x86/fpu: xstate_offset[5]: 832, xstate_sizes[5]: 64
> Jul 20 20:02:05 xd kernel: x86/fpu: xstate_offset[6]: 896, xstate_sizes[6]: 512
> Jul 20 20:02:05 xd kernel: x86/fpu: xstate_offset[7]: 1408, xstate_sizes[7]: 1024
> Jul 20 20:02:05 xd kernel: x86/fpu: xstate_offset[9]: 2432, xstate_sizes[9]: 8
> Jul 20 20:02:05 xd kernel: x86/fpu: Enabled xstate features 0x2e7, context size is 2440 bytes, using 'compacted' format.
> Jul 20 20:02:05 xd kernel: BIOS-provided physical RAM map:
> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000000100000-0x000000003fd98fff] usable
> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x000000003fd99000-0x0000000040698fff] reserved
> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000040699000-0x00000000424aefff] usable
> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000424af000-0x000000004287efff] type 20
> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x000000004287f000-0x00000000442fefff] reserved
> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000442ff000-0x0000000044b2efff] ACPI NVS
> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000044b2f000-0x0000000044bfefff] ACPI data
> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000044bff000-0x0000000044bfffff] usable
> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000044c00000-0x0000000048ffffff] reserved
> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000049e00000-0x000000004f7fffff] reserved
> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000c0000000-0x00000000cfffffff] reserved
> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000fe010000-0x00000000fe010fff] reserved
> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000fed20000-0x00000000fed7ffff] reserved
> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000ff500000-0x00000000ffffffff] reserved
> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000100000000-0x00000004b07fffff] usable
> Jul 20 20:02:05 xd kernel: NX (Execute Disable) protection: active
> Jul 20 20:02:05 xd kernel: efi: EFI v2.70 by INSYDE Corp.
> Jul 20 20:02:05 xd kernel: efi: ACPI=0x44bfe000 ACPI 2.0=0x44bfe014 TPMFinalLog=0x44ac5000 SMBIOS=0x429de000 SMBIOS 3.0=0x429dc000 ESRT=0x3bf68a98 MOKvar=0x3bee5000
> Jul 20 20:02:05 xd kernel: secureboot: Secure boot could not be determined (mode 0)
> Jul 20 20:02:05 xd kernel: SMBIOS 3.3.0 present.
> Jul 20 20:02:05 xd kernel: DMI: Acer Aspire A517-52G/Jasmine_TL, BIOS V1.26 03/14/2022
> Jul 20 20:02:05 xd kernel: tsc: Detected 2400.000 MHz processor
> Jul 20 20:02:05 xd kernel: tsc: Detected 2419.200 MHz TSC
> Jul 20 20:02:05 xd kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
> Jul 20 20:02:05 xd kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
> Jul 20 20:02:05 xd kernel: last_pfn = 0x4b0800 max_arch_pfn = 0x400000000
> Jul 20 20:02:05 xd kernel: MTRR default type: write-back
> Jul 20 20:02:05 xd kernel: MTRR fixed ranges enabled:
> Jul 20 20:02:05 xd kernel: 00000-9FFFF write-back
> Jul 20 20:02:05 xd kernel: A0000-BFFFF uncachable
> Jul 20 20:02:05 xd kernel: C0000-FFFFF write-protect
> Jul 20 20:02:05 xd kernel: MTRR variable ranges enabled:
> Jul 20 20:02:05 xd kernel: 0 base 0080000000 mask 7F80000000 uncachable
> Jul 20 20:02:05 xd kernel: 1 base 0060000000 mask 7FE0000000 uncachable
> Jul 20 20:02:05 xd kernel: 2 base 0050000000 mask 7FF0000000 uncachable
> Jul 20 20:02:05 xd kernel: 3 base 004C000000 mask 7FFC000000 uncachable
> Jul 20 20:02:05 xd kernel: 4 base 004B000000 mask 7FFF000000 uncachable
> Jul 20 20:02:05 xd kernel: 5 base 4000000000 mask 4000000000 uncachable
> Jul 20 20:02:05 xd kernel: 6 disabled
> Jul 20 20:02:05 xd kernel: 7 disabled
> Jul 20 20:02:05 xd kernel: 8 disabled
> Jul 20 20:02:05 xd kernel: 9 disabled
> Jul 20 20:02:05 xd kernel: x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
> Jul 20 20:02:05 xd kernel: last_pfn = 0x44c00 max_arch_pfn = 0x400000000
> Jul 20 20:02:05 xd kernel: esrt: Reserving ESRT space from 0x000000003bf68a98 to 0x000000003bf68ad0.
> Jul 20 20:02:05 xd kernel: e820: update [mem 0x3bf68000-0x3bf68fff] usable ==> reserved
> Jul 20 20:02:05 xd kernel: e820: update [mem 0x3bee5000-0x3bee7fff] usable ==> reserved
> Jul 20 20:02:05 xd kernel: Using GB pages for direct mapping
> Jul 20 20:02:05 xd kernel: RAMDISK: [mem 0x32341000-0x35197fff]
> Jul 20 20:02:05 xd kernel: ACPI: Early table checksum verification disabled
> Jul 20 20:02:05 xd kernel: ACPI: RSDP 0x0000000044BFE014 000024 (v02 ACRSYS)
> Jul 20 20:02:05 xd kernel: ACPI: XSDT 0x0000000044BDB188 000124 (v01 ACRSYS ACRPRDCT 00000002 01000013)
> Jul 20 20:02:05 xd kernel: ACPI: FACP 0x0000000044BDE000 000114 (v06 ACRSYS ACRPRDCT 00000002 1025 00040000)
> Jul 20 20:02:05 xd kernel: ACPI: DSDT 0x0000000044B81000 059948 (v02 ACRSYS ACRPRDCT 00000002 1025 00040000)
> Jul 20 20:02:05 xd kernel: ACPI: FACS 0x0000000044AA2000 000040
> Jul 20 20:02:05 xd kernel: ACPI: UEFI 0x0000000044B2E000 000236 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BFA000 00255C (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BF9000 000105 (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BF6000 002137 (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BF2000 003300 (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BF1000 00077B (v02 ACRSYS ACRPRDCT 00001000 1025 00040000)
> Jul 20 20:02:05 xd kernel: ACPI: TPM2 0x0000000044BF0000 00004C (v04 ACRSYS ACRPRDCT 00000002 1025 00040000)
> Jul 20 20:02:05 xd kernel: ACPI: MSDM 0x0000000044BEF000 000055 (v03 ACRSYS ACRPRDCT 00000001 1025 00040000)
> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BEE000 000D02 (v02 ACRSYS ACRPRDCT 00000000 1025 00040000)
> Jul 20 20:02:05 xd kernel: ACPI: NHLT 0x0000000044BEC000 001B54 (v00 ACRSYS ACRPRDCT 00000002 1025 00040000)
> Jul 20 20:02:05 xd kernel: ACPI: LPIT 0x0000000044BEB000 0000CC (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
> Jul 20 20:02:05 xd kernel: ACPI: WSMT 0x0000000044BEA000 000028 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BE9000 000B70 (v02 ACRSYS ACRPRDCT 00001000 1025 00040000)
> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BE8000 00012A (v02 ACRSYS ACRPRDCT 00000000 1025 00040000)
> Jul 20 20:02:05 xd kernel: ACPI: DBGP 0x0000000044BE7000 000034 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
> Jul 20 20:02:05 xd kernel: ACPI: DBG2 0x0000000044BE6000 000054 (v00 ACRSYS ACRPRDCT 00000002 1025 00040000)
> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BDF000 006BA9 (v01 ACRSYS ACRPRDCT 00001000 1025 00040000)
> Jul 20 20:02:05 xd kernel: ACPI: HPET 0x0000000044BDD000 000038 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
> Jul 20 20:02:05 xd kernel: ACPI: APIC 0x0000000044BDC000 00012C (v04 ACRSYS ACRPRDCT 00000002 1025 00040000)
> Jul 20 20:02:05 xd kernel: ACPI: MCFG 0x0000000044BFD000 00003C (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044B80000 000C78 (v02 ACRSYS ACRPRDCT 00000002 1025 00040000)
> Jul 20 20:02:05 xd kernel: ACPI: DMAR 0x0000000044B7F000 000088 (v02 ACRSYS ACRPRDCT 00000002 1025 00040000)
> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044B7C000 0020D6 (v01 ACRSYS ACRPRDCT 00001000 1025 00040000)
> Jul 20 20:02:05 xd kernel: ACPI: UEFI 0x0000000044A5B000 00063A (v01 ACRSYS ACRPRDCT 00000000 1025 00040000)
> Jul 20 20:02:05 xd kernel: ACPI: UEFI 0x0000000044A5A000 00005C (v01 ACRSYS ACRPRDCT 00000000 1025 00040000)
> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044B7B000 000985 (v02 ACRSYS ACRPRDCT 00001000 1025 00040000)
> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044B7A000 0000F8 (v01 ACRSYS ACRPRDCT 00001000 1025 00040000)
> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044B79000 000835 (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
> Jul 20 20:02:05 xd kernel: ACPI: FPDT 0x0000000044B78000 000044 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
> Jul 20 20:02:05 xd kernel: ACPI: PTDT 0x0000000044B76000 000CFE (v00 ACRSYS ACRPRDCT 00000005 1025 00040000)
> Jul 20 20:02:05 xd kernel: ACPI: BGRT 0x0000000044B77000 000038 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
> Jul 20 20:02:05 xd kernel: ACPI: Reserving FACP table memory at [mem 0x44bde000-0x44bde113]
> Jul 20 20:02:05 xd kernel: ACPI: Reserving DSDT table memory at [mem 0x44b81000-0x44bda947]
> Jul 20 20:02:05 xd kernel: ACPI: Reserving FACS table memory at [mem 0x44aa2000-0x44aa203f]
> Jul 20 20:02:05 xd kernel: ACPI: Reserving UEFI table memory at [mem 0x44b2e000-0x44b2e235]
> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bfa000-0x44bfc55b]
> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bf9000-0x44bf9104]
> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bf6000-0x44bf8136]
> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bf2000-0x44bf52ff]
> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bf1000-0x44bf177a]
> Jul 20 20:02:05 xd kernel: ACPI: Reserving TPM2 table memory at [mem 0x44bf0000-0x44bf004b]
> Jul 20 20:02:05 xd kernel: ACPI: Reserving MSDM table memory at [mem 0x44bef000-0x44bef054]
> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bee000-0x44beed01]
> Jul 20 20:02:05 xd kernel: ACPI: Reserving NHLT table memory at [mem 0x44bec000-0x44bedb53]
> Jul 20 20:02:05 xd kernel: ACPI: Reserving LPIT table memory at [mem 0x44beb000-0x44beb0cb]
> Jul 20 20:02:05 xd kernel: ACPI: Reserving WSMT table memory at [mem 0x44bea000-0x44bea027]
> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44be9000-0x44be9b6f]
> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44be8000-0x44be8129]
> Jul 20 20:02:05 xd kernel: ACPI: Reserving DBGP table memory at [mem 0x44be7000-0x44be7033]
> Jul 20 20:02:05 xd kernel: ACPI: Reserving DBG2 table memory at [mem 0x44be6000-0x44be6053]
> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bdf000-0x44be5ba8]
> Jul 20 20:02:05 xd kernel: ACPI: Reserving HPET table memory at [mem 0x44bdd000-0x44bdd037]
> Jul 20 20:02:05 xd kernel: ACPI: Reserving APIC table memory at [mem 0x44bdc000-0x44bdc12b]
> Jul 20 20:02:05 xd kernel: ACPI: Reserving MCFG table memory at [mem 0x44bfd000-0x44bfd03b]
> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b80000-0x44b80c77]
> Jul 20 20:02:05 xd kernel: ACPI: Reserving DMAR table memory at [mem 0x44b7f000-0x44b7f087]
> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b7c000-0x44b7e0d5]
> Jul 20 20:02:05 xd kernel: ACPI: Reserving UEFI table memory at [mem 0x44a5b000-0x44a5b639]
> Jul 20 20:02:05 xd kernel: ACPI: Reserving UEFI table memory at [mem 0x44a5a000-0x44a5a05b]
> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b7b000-0x44b7b984]
> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b7a000-0x44b7a0f7]
> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b79000-0x44b79834]
> Jul 20 20:02:05 xd kernel: ACPI: Reserving FPDT table memory at [mem 0x44b78000-0x44b78043]
> Jul 20 20:02:05 xd kernel: ACPI: Reserving PTDT table memory at [mem 0x44b76000-0x44b76cfd]
> Jul 20 20:02:05 xd kernel: ACPI: Reserving BGRT table memory at [mem 0x44b77000-0x44b77037]
> Jul 20 20:02:05 xd kernel: ACPI: Local APIC address 0xfee00000
> Jul 20 20:02:05 xd kernel: No NUMA configuration found
> Jul 20 20:02:05 xd kernel: Faking a node at [mem 0x0000000000000000-0x00000004b07fffff]
> Jul 20 20:02:05 xd kernel: NODE_DATA(0) allocated [mem 0x4b07d6000-0x4b07fffff]
> Jul 20 20:02:05 xd kernel: Zone ranges:
> Jul 20 20:02:05 xd kernel: DMA [mem 0x0000000000001000-0x0000000000ffffff]
> Jul 20 20:02:05 xd kernel: DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
> Jul 20 20:02:05 xd kernel: Normal [mem 0x0000000100000000-0x00000004b07fffff]
> Jul 20 20:02:05 xd kernel: Device empty
> Jul 20 20:02:05 xd kernel: Movable zone start for each node
> Jul 20 20:02:05 xd kernel: Early memory node ranges
> Jul 20 20:02:05 xd kernel: node 0: [mem 0x0000000000001000-0x000000000009efff]
> Jul 20 20:02:05 xd kernel: node 0: [mem 0x0000000000100000-0x000000003fd98fff]
> Jul 20 20:02:05 xd kernel: node 0: [mem 0x0000000040699000-0x00000000424aefff]
> Jul 20 20:02:05 xd kernel: node 0: [mem 0x0000000044bff000-0x0000000044bfffff]
> Jul 20 20:02:05 xd kernel: node 0: [mem 0x0000000100000000-0x00000004b07fffff]
> Jul 20 20:02:05 xd kernel: Initmem setup node 0 [mem 0x0000000000001000-0x00000004b07fffff]
> Jul 20 20:02:05 xd kernel: On node 0 totalpages: 4137806
> Jul 20 20:02:05 xd kernel: DMA zone: 64 pages used for memmap
> Jul 20 20:02:05 xd kernel: DMA zone: 25 pages reserved
> Jul 20 20:02:05 xd kernel: DMA zone: 3998 pages, LIFO batch:0
> Jul 20 20:02:05 xd kernel: DMA32 zone: 4143 pages used for memmap
> Jul 20 20:02:05 xd kernel: DMA32 zone: 265136 pages, LIFO batch:63
> Jul 20 20:02:05 xd kernel: Normal zone: 60448 pages used for memmap
> Jul 20 20:02:05 xd kernel: Normal zone: 3868672 pages, LIFO batch:63
> Jul 20 20:02:05 xd kernel: On node 0, zone DMA: 1 pages in unavailable ranges
> Jul 20 20:02:05 xd kernel: On node 0, zone DMA: 97 pages in unavailable ranges
> Jul 20 20:02:05 xd kernel: On node 0, zone DMA32: 2304 pages in unavailable ranges
> Jul 20 20:02:05 xd kernel: On node 0, zone DMA32: 10064 pages in unavailable ranges
> Jul 20 20:02:05 xd kernel: On node 0, zone Normal: 13312 pages in unavailable ranges
> Jul 20 20:02:05 xd kernel: On node 0, zone Normal: 30720 pages in unavailable ranges
> Jul 20 20:02:05 xd kernel: Reserving Intel graphics memory at [mem 0x4b800000-0x4f7fffff]
> Jul 20 20:02:05 xd kernel: ACPI: PM-Timer IO Port: 0x1808
> Jul 20 20:02:05 xd kernel: ACPI: Local APIC address 0xfee00000
> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
> Jul 20 20:02:05 xd kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
> Jul 20 20:02:05 xd kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
> Jul 20 20:02:05 xd kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
> Jul 20 20:02:05 xd kernel: ACPI: IRQ0 used by override.
> Jul 20 20:02:05 xd kernel: ACPI: IRQ9 used by override.
> Jul 20 20:02:05 xd kernel: Using ACPI (MADT) for SMP configuration information
> Jul 20 20:02:05 xd kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
> Jul 20 20:02:05 xd kernel: e820: update [mem 0x3bf6a000-0x3c05dfff] usable ==> reserved
> Jul 20 20:02:05 xd kernel: TSC deadline timer available
> Jul 20 20:02:05 xd kernel: smpboot: Allowing 8 CPUs, 0 hotplug CPUs
> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x3bee5000-0x3bee7fff]
> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x3bf68000-0x3bf68fff]
> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x3bf6a000-0x3c05dfff]
> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x3fd99000-0x40698fff]
> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x424af000-0x4287efff]
> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x4287f000-0x442fefff]
> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x442ff000-0x44b2efff]
> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x44b2f000-0x44bfefff]
> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x44c00000-0x48ffffff]
> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x49000000-0x49dfffff]
> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x49e00000-0x4f7fffff]
> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x4f800000-0xbfffffff]
> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xc0000000-0xcfffffff]
> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xd0000000-0xfe00ffff]
> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xfe010000-0xfe010fff]
> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xfed1ffff]
> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xfed7ffff]
> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xff4fffff]
> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xff500000-0xffffffff]
> Jul 20 20:02:05 xd kernel: [mem 0x4f800000-0xbfffffff] available for PCI devices
> Jul 20 20:02:05 xd kernel: Booting paravirtualized kernel on bare hardware
> Jul 20 20:02:05 xd kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
> Jul 20 20:02:05 xd kernel: setup_percpu: NR_CPUS:8192 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
> Jul 20 20:02:05 xd kernel: percpu: Embedded 58 pages/cpu s200664 r8192 d28712 u262144
> Jul 20 20:02:05 xd kernel: pcpu-alloc: s200664 r8192 d28712 u262144 alloc=1*2097152
> Jul 20 20:02:05 xd kernel: pcpu-alloc: [0] 0 1 2 3 4 5 6 7
> Jul 20 20:02:05 xd kernel: Built 1 zonelists, mobility grouping on. Total pages: 4073126
> Jul 20 20:02:05 xd kernel: Policy zone: Normal
> Jul 20 20:02:05 xd kernel: Kernel command line: BOOT_IMAGE=/vmlinuz-5.10.0-16-amd64 root=UUID=0dc2ba0c-97d5-4786-bc97-4d13279afe0f ro quiet
> Jul 20 20:02:05 xd kernel: Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
> Jul 20 20:02:05 xd kernel: Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
> Jul 20 20:02:05 xd kernel: mem auto-init: stack:off, heap alloc:on, heap free:off
> Jul 20 20:02:05 xd kernel: Memory: 1010444K/16551224K available (12295K kernel code, 2536K rwdata, 7568K rodata, 2424K init, 3680K bss, 520984K reserved, 0K cma-reserved)
> Jul 20 20:02:05 xd kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
> Jul 20 20:02:05 xd kernel: ftrace: allocating 36455 entries in 143 pages
> Jul 20 20:02:05 xd kernel: ftrace: allocated 143 pages with 5 groups
> Jul 20 20:02:05 xd kernel: rcu: Hierarchical RCU implementation.
> Jul 20 20:02:05 xd kernel: rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=8.
> Jul 20 20:02:05 xd kernel: Rude variant of Tasks RCU enabled.
> Jul 20 20:02:05 xd kernel: Tracing variant of Tasks RCU enabled.
> Jul 20 20:02:05 xd kernel: rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
> Jul 20 20:02:05 xd kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
> Jul 20 20:02:05 xd kernel: NR_IRQS: 524544, nr_irqs: 2048, preallocated irqs: 16
> Jul 20 20:02:05 xd kernel: random: crng init done
> Jul 20 20:02:05 xd kernel: Console: colour dummy device 80x25
> Jul 20 20:02:05 xd kernel: printk: console [tty0] enabled
> Jul 20 20:02:05 xd kernel: ACPI: Core revision 20200925
> Jul 20 20:02:05 xd kernel: hpet: HPET dysfunctional in PC10. Force disabled.
> Jul 20 20:02:05 xd kernel: APIC: Switch to symmetric I/O mode setup
> Jul 20 20:02:05 xd kernel: DMAR: Host address width 39
> Jul 20 20:02:05 xd kernel: DMAR: DRHD base: 0x000000fed90000 flags: 0x0
> Jul 20 20:02:05 xd kernel: DMAR: dmar0: reg_base_addr fed90000 ver 4:0 cap 1c0000c40660462 ecap 29a00f0505e
> Jul 20 20:02:05 xd kernel: DMAR: DRHD base: 0x000000fed91000 flags: 0x1
> Jul 20 20:02:05 xd kernel: DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
> Jul 20 20:02:05 xd kernel: DMAR: RMRR base: 0x0000004b000000 end: 0x0000004f7fffff
> Jul 20 20:02:05 xd kernel: DMAR-IR: IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 1
> Jul 20 20:02:05 xd kernel: DMAR-IR: HPET id 0 under DRHD base 0xfed91000
> Jul 20 20:02:05 xd kernel: DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
> Jul 20 20:02:05 xd kernel: DMAR-IR: Enabled IRQ remapping in x2apic mode
> Jul 20 20:02:05 xd kernel: x2apic enabled
> Jul 20 20:02:05 xd kernel: Switched APIC routing to cluster x2apic.
> Jul 20 20:02:05 xd kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x22df1149949, max_idle_ns: 440795312789 ns
> Jul 20 20:02:05 xd kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 4838.40 BogoMIPS (lpj=9676800)
> Jul 20 20:02:05 xd kernel: pid_max: default: 32768 minimum: 301
> Jul 20 20:02:05 xd kernel: LSM: Security Framework initializing
> Jul 20 20:02:05 xd kernel: Yama: disabled by default; enable with sysctl kernel.yama.*
> Jul 20 20:02:05 xd kernel: AppArmor: AppArmor initialized
> Jul 20 20:02:05 xd kernel: TOMOYO Linux initialized
> Jul 20 20:02:05 xd kernel: Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
> Jul 20 20:02:05 xd kernel: Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
> Jul 20 20:02:05 xd kernel: x86/cpu: User Mode Instruction Prevention (UMIP) activated
> Jul 20 20:02:05 xd kernel: mce: CPU0: Thermal monitoring enabled (TM1)
> Jul 20 20:02:05 xd kernel: process: using mwait in idle threads
> Jul 20 20:02:05 xd kernel: Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
> Jul 20 20:02:05 xd kernel: Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
> Jul 20 20:02:05 xd kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
> Jul 20 20:02:05 xd kernel: Spectre V2 : Mitigation: Enhanced IBRS
> Jul 20 20:02:05 xd kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
> Jul 20 20:02:05 xd kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
> Jul 20 20:02:05 xd kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
> Jul 20 20:02:05 xd kernel: Freeing SMP alternatives memory: 32K
> Jul 20 20:02:05 xd kernel: smpboot: CPU0: 11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz (family: 0x6, model: 0x8c, stepping: 0x1)
> Jul 20 20:02:05 xd kernel: Performance Events: PEBS fmt4+-baseline, AnyThread deprecated, Icelake events, 32-deep LBR, full-width counters, Intel PMU driver.
> Jul 20 20:02:05 xd kernel: ... version: 5
> Jul 20 20:02:05 xd kernel: ... bit width: 48
> Jul 20 20:02:05 xd kernel: ... generic registers: 8
> Jul 20 20:02:05 xd kernel: ... value mask: 0000ffffffffffff
> Jul 20 20:02:05 xd kernel: ... max period: 00007fffffffffff
> Jul 20 20:02:05 xd kernel: ... fixed-purpose events: 4
> Jul 20 20:02:05 xd kernel: ... event mask: 0001000f000000ff
> Jul 20 20:02:05 xd kernel: rcu: Hierarchical SRCU implementation.
> Jul 20 20:02:05 xd kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
> Jul 20 20:02:05 xd kernel: smp: Bringing up secondary CPUs ...
> Jul 20 20:02:05 xd kernel: x86: Booting SMP configuration:
> Jul 20 20:02:05 xd kernel: .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7
> Jul 20 20:02:05 xd kernel: smp: Brought up 1 node, 8 CPUs
> Jul 20 20:02:05 xd kernel: smpboot: Max logical packages: 1
> Jul 20 20:02:05 xd kernel: smpboot: Total of 8 processors activated (38707.20 BogoMIPS)
> Jul 20 20:02:05 xd kernel: node 0 deferred pages initialised in 20ms
> Jul 20 20:02:05 xd kernel: devtmpfs: initialized
> Jul 20 20:02:05 xd kernel: x86/mm: Memory block size: 128MB
> Jul 20 20:02:05 xd kernel: PM: Registering ACPI NVS region [mem 0x442ff000-0x44b2efff] (8585216 bytes)
> Jul 20 20:02:05 xd kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
> Jul 20 20:02:05 xd kernel: futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
> Jul 20 20:02:05 xd kernel: pinctrl core: initialized pinctrl subsystem
> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 16
> Jul 20 20:02:05 xd kernel: audit: initializing netlink subsys (disabled)
> Jul 20 20:02:05 xd kernel: audit: type=2000 audit(1658343722.028:1): state=initialized audit_enabled=0 res=1
> Jul 20 20:02:05 xd kernel: thermal_sys: Registered thermal governor 'fair_share'
> Jul 20 20:02:05 xd kernel: thermal_sys: Registered thermal governor 'bang_bang'
> Jul 20 20:02:05 xd kernel: thermal_sys: Registered thermal governor 'step_wise'
> Jul 20 20:02:05 xd kernel: thermal_sys: Registered thermal governor 'user_space'
> Jul 20 20:02:05 xd kernel: thermal_sys: Registered thermal governor 'power_allocator'
> Jul 20 20:02:05 xd kernel: cpuidle: using governor ladder
> Jul 20 20:02:05 xd kernel: cpuidle: using governor menu
> Jul 20 20:02:05 xd kernel: ACPI: bus type PCI registered
> Jul 20 20:02:05 xd kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
> Jul 20 20:02:05 xd kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xc0000000-0xcfffffff] (base 0xc0000000)
> Jul 20 20:02:05 xd kernel: PCI: MMCONFIG at [mem 0xc0000000-0xcfffffff] reserved in E820
> Jul 20 20:02:05 xd kernel: PCI: Using configuration type 1 for base access
> Jul 20 20:02:05 xd kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
> Jul 20 20:02:05 xd kernel: Kprobes globally optimized
> Jul 20 20:02:05 xd kernel: HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
> Jul 20 20:02:05 xd kernel: HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Module Device)
> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Processor Device)
> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Processor Aggregator Device)
> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Linux-Dell-Video)
> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS01._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS01._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS02._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS02._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS03._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS03._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS04._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS04._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS05._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS05._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS06._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS06._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS07._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS07._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS08._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS08._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS09._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS09._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS10._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS10._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS01._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS01._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS02._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS02._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS03._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS03._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS04._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS04._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS05._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS05._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS06._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS06._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> Jul 20 20:02:05 xd kernel: ACPI: 15 ACPI AML tables successfully acquired and loaded
> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8882135E00 0001C6 (v02 PmRef Cpu0Psd 00003000 INTL 20160422)
> Jul 20 20:02:05 xd kernel: ACPI: \_SB_.PR00: _OSC native thermal LVT Acked
> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A888213CC00 000386 (v02 PmRef Cpu0Cst 00003001 INTL 20160422)
> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8500BAB000 0005C3 (v02 PmRef Cpu0Ist 00003000 INTL 20160422)
> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A888213FC00 00028B (v02 PmRef Cpu0Hwp 00003000 INTL 20160422)
> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8500F3D000 0008E7 (v02 PmRef ApIst 00003000 INTL 20160422)
> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8500BAC000 00048A (v02 PmRef ApHwp 00003000 INTL 20160422)
> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8500BAF800 0004D4 (v02 PmRef ApPsd 00003000 INTL 20160422)
> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8500BAE000 00048A (v02 PmRef ApCst 00003000 INTL 20160422)
> Jul 20 20:02:05 xd kernel: ACPI: EC: EC started
> Jul 20 20:02:05 xd kernel: ACPI: EC: interrupt blocked
> Jul 20 20:02:05 xd kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
> Jul 20 20:02:05 xd kernel: ACPI: \_SB_.PC00.LPCB.EC0_: Boot DSDT EC used to handle transactions
> Jul 20 20:02:05 xd kernel: ACPI: Interpreter enabled
> Jul 20 20:02:05 xd kernel: ACPI: (supports S0 S3 S4 S5)
> Jul 20 20:02:05 xd kernel: ACPI: Using IOAPIC for interrupt routing
> Jul 20 20:02:05 xd kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
> Jul 20 20:02:05 xd kernel: ACPI: Enabled 7 GPEs in block 00 to 7F
> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [PCRP] (on)
> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V0PR] (on)
> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V1PR] (on)
> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V2PR] (on)
> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [WRST] (on)
> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V0PR] (on)
> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V1PR] (on)
> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V2PR] (on)
> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V3PR] (on)
> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [FN00] (off)
> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [FN01] (off)
> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [FN02] (off)
> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [FN03] (off)
> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [FN04] (off)
> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [PIN] (off)
> Jul 20 20:02:05 xd kernel: ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-e0])
> Jul 20 20:02:05 xd kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
> Jul 20 20:02:05 xd kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR]
> Jul 20 20:02:05 xd kernel: PCI host bridge to bus 0000:00
> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [mem 0x4f800000-0xbfffffff window]
> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [bus 00-e0]
> Jul 20 20:02:05 xd kernel: pci 0000:00:00.0: [8086:9a14] type 00 class 0x060000
> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: [8086:9a49] type 00 class 0x030000
> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: reg 0x10: [mem 0x6014000000-0x6014ffffff 64bit]
> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: reg 0x18: [mem 0x4000000000-0x400fffffff 64bit pref]
> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: reg 0x20: [io 0x5000-0x503f]
> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: BAR 2: assigned to efifb
> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: DMAR: Skip IOMMU disabling for graphics
> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: reg 0x344: [mem 0x00000000-0x00ffffff 64bit]
> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: VF(n) BAR0 space: [mem 0x00000000-0x06ffffff 64bit] (contains BAR0 for 7 VFs)
> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: reg 0x34c: [mem 0x00000000-0x1fffffff 64bit pref]
> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: VF(n) BAR2 space: [mem 0x00000000-0xdfffffff 64bit pref] (contains BAR2 for 7 VFs)
> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: [8086:9a09] type 01 class 0x060400
> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: PTM enabled (root), 4ns granularity
> Jul 20 20:02:05 xd kernel: pci 0000:00:08.0: [8086:9a11] type 00 class 0x088000
> Jul 20 20:02:05 xd kernel: pci 0000:00:08.0: reg 0x10: [mem 0x601540f000-0x601540ffff 64bit]
> Jul 20 20:02:05 xd kernel: pci 0000:00:0e.0: [8086:9a0b] type 00 class 0x010400
> Jul 20 20:02:05 xd kernel: pci 0000:00:0e.0: reg 0x10: [mem 0x6012000000-0x6013ffffff 64bit]
> Jul 20 20:02:05 xd kernel: pci 0000:00:0e.0: reg 0x18: [mem 0x50000000-0x51ffffff]
> Jul 20 20:02:05 xd kernel: pci 0000:00:0e.0: reg 0x20: [mem 0x6015300000-0x60153fffff 64bit]
> Jul 20 20:02:05 xd kernel: pci 0000:00:14.0: [8086:a0ed] type 00 class 0x0c0330
> Jul 20 20:02:05 xd kernel: pci 0000:00:14.0: reg 0x10: [mem 0x53180000-0x5318ffff 64bit]
> Jul 20 20:02:05 xd kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
> Jul 20 20:02:05 xd kernel: pci 0000:00:14.2: [8086:a0ef] type 00 class 0x050000
> Jul 20 20:02:05 xd kernel: pci 0000:00:14.2: reg 0x10: [mem 0x6015404000-0x6015407fff 64bit]
> Jul 20 20:02:05 xd kernel: pci 0000:00:14.2: reg 0x18: [mem 0x601540e000-0x601540efff 64bit]
> Jul 20 20:02:05 xd kernel: pci 0000:00:15.0: [8086:a0e8] type 00 class 0x0c8000
> Jul 20 20:02:05 xd kernel: pci 0000:00:15.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
> Jul 20 20:02:05 xd kernel: pci 0000:00:15.3: [8086:a0eb] type 00 class 0x0c8000
> Jul 20 20:02:05 xd kernel: pci 0000:00:15.3: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
> Jul 20 20:02:05 xd kernel: pci 0000:00:16.0: [8086:a0e0] type 00 class 0x078000
> Jul 20 20:02:05 xd kernel: pci 0000:00:16.0: reg 0x10: [mem 0x601540b000-0x601540bfff 64bit]
> Jul 20 20:02:05 xd kernel: pci 0000:00:16.0: PME# supported from D3hot
> Jul 20 20:02:05 xd kernel: pci 0000:00:17.0: [8086:09ab] type 00 class 0x088000
> Jul 20 20:02:05 xd kernel: pci 0000:00:19.0: [8086:a0c5] type 00 class 0x0c8000
> Jul 20 20:02:05 xd kernel: pci 0000:00:19.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
> Jul 20 20:02:05 xd kernel: pci 0000:00:19.1: [8086:a0c6] type 00 class 0x0c8000
> Jul 20 20:02:05 xd kernel: pci 0000:00:19.1: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: [8086:a0b0] type 01 class 0x060400
> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: PTM enabled (root), 4ns granularity
> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: [8086:a0b1] type 01 class 0x060400
> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: PME# supported from D0 D3hot D3cold
> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: PTM enabled (root), 4ns granularity
> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.0: [8086:a082] type 00 class 0x060100
> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.3: [8086:a0c8] type 00 class 0x040100
> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.3: reg 0x10: [mem 0x6015400000-0x6015403fff 64bit]
> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.3: reg 0x20: [mem 0x6015200000-0x60152fffff 64bit]
> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.3: PME# supported from D3hot D3cold
> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.4: [8086:a0a3] type 00 class 0x0c0500
> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.4: reg 0x10: [mem 0x6015408000-0x60154080ff 64bit]
> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.4: reg 0x20: [io 0xefa0-0xefbf]
> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.5: [8086:a0a4] type 00 class 0x0c8000
> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.5: reg 0x10: [mem 0xfe010000-0xfe010fff]
> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: [10de:1f97] type 00 class 0x030200
> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: reg 0x10: [mem 0x52000000-0x52ffffff]
> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: reg 0x14: [mem 0x6000000000-0x600fffffff 64bit pref]
> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: reg 0x1c: [mem 0x6010000000-0x6011ffffff 64bit pref]
> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: reg 0x24: [io 0x4000-0x407f]
> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: 63.012 Gb/s available PCIe bandwidth, limited by 16.0 GT/s PCIe x4 link at 0000:00:06.0 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: PCI bridge to [bus 01]
> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [io 0x4000-0x4fff]
> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [mem 0x52000000-0x52ffffff]
> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [mem 0x6000000000-0x6011ffffff 64bit pref]
> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000
> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: reg 0x10: [io 0x3000-0x30ff]
> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: reg 0x18: [mem 0x53004000-0x53004fff 64bit]
> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: reg 0x20: [mem 0x53000000-0x53003fff 64bit]
> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: supports D1 D2
> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: PCI bridge to [bus 02]
> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: bridge window [io 0x3000-0x3fff]
> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: bridge window [mem 0x53000000-0x530fffff]
> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: [14c3:7961] type 00 class 0x028000
> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: reg 0x10: [mem 0x6015000000-0x60150fffff 64bit pref]
> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: reg 0x18: [mem 0x6015100000-0x6015103fff 64bit pref]
> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: reg 0x20: [mem 0x6015104000-0x6015104fff 64bit pref]
> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: supports D1 D2
> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: PCI bridge to [bus 03]
> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: bridge window [mem 0x6015000000-0x60151fffff 64bit pref]
> Jul 20 20:02:05 xd kernel: ACPI: EC: interrupt unblocked
> Jul 20 20:02:05 xd kernel: ACPI: EC: event unblocked
> Jul 20 20:02:05 xd kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
> Jul 20 20:02:05 xd kernel: ACPI: EC: GPE=0x6e
> Jul 20 20:02:05 xd kernel: ACPI: \_SB_.PC00.LPCB.EC0_: Boot DSDT EC initialization complete
> Jul 20 20:02:05 xd kernel: ACPI: \_SB_.PC00.LPCB.EC0_: EC: Used to handle transactions and events
> Jul 20 20:02:05 xd kernel: iommu: Default domain type: Translated
> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: vgaarb: setting as boot VGA device
> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: vgaarb: bridge control possible
> Jul 20 20:02:05 xd kernel: vgaarb: loaded
> Jul 20 20:02:05 xd kernel: EDAC MC: Ver: 3.0.0
> Jul 20 20:02:05 xd kernel: Registered efivars operations
> Jul 20 20:02:05 xd kernel: NetLabel: Initializing
> Jul 20 20:02:05 xd kernel: NetLabel: domain hash size = 128
> Jul 20 20:02:05 xd kernel: NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
> Jul 20 20:02:05 xd kernel: NetLabel: unlabeled traffic allowed by default
> Jul 20 20:02:05 xd kernel: PCI: Using ACPI for IRQ routing
> Jul 20 20:02:05 xd kernel: PCI: pci_cache_line_size set to 64 bytes
> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.5: can't claim BAR 0 [mem 0xfe010000-0xfe010fff]: no compatible bridge window
> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x3bee5000-0x3bffffff]
> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x3bf68000-0x3bffffff]
> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x3bf6a000-0x3bffffff]
> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x3fd99000-0x3fffffff]
> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x424af000-0x43ffffff]
> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x44c00000-0x47ffffff]
> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x4b0800000-0x4b3ffffff]
> Jul 20 20:02:05 xd kernel: clocksource: Switched to clocksource tsc-early
> Jul 20 20:02:05 xd kernel: VFS: Disk quotas dquot_6.6.0
> Jul 20 20:02:05 xd kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
> Jul 20 20:02:05 xd kernel: AppArmor: AppArmor Filesystem Enabled
> Jul 20 20:02:05 xd kernel: pnp: PnP ACPI init
> Jul 20 20:02:05 xd kernel: system 00:00: [io 0x0680-0x069f] has been reserved
> Jul 20 20:02:05 xd kernel: system 00:00: [io 0x164e-0x164f] has been reserved
> Jul 20 20:02:05 xd kernel: system 00:00: [io 0xfd60-0xfd63] has been reserved
> Jul 20 20:02:05 xd kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
> Jul 20 20:02:05 xd kernel: pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
> Jul 20 20:02:05 xd kernel: system 00:02: [io 0x1854-0x1857] has been reserved
> Jul 20 20:02:05 xd kernel: system 00:02: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
> Jul 20 20:02:05 xd kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0303 (active)
> Jul 20 20:02:05 xd kernel: pnp 00:04: disabling [mem 0xc0000000-0xcfffffff] because it overlaps 0000:00:02.0 BAR 9 [mem 0x00000000-0xdfffffff 64bit pref]
> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfedc0000-0xfedc7fff] has been reserved
> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfeda0000-0xfeda0fff] has been reserved
> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfeda1000-0xfeda1fff] has been reserved
> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfed20000-0xfed7ffff] could not be reserved
> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfed90000-0xfed93fff] could not be reserved
> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfed45000-0xfed8ffff] could not be reserved
> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfee00000-0xfeefffff] has been reserved
> Jul 20 20:02:05 xd kernel: system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
> Jul 20 20:02:05 xd kernel: system 00:05: [io 0x1800-0x18fe] could not be reserved
> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfe000000-0xfe01ffff] could not be reserved
> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfe04c000-0xfe04ffff] has been reserved
> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfe050000-0xfe0affff] has been reserved
> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfe0d0000-0xfe0fffff] has been reserved
> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfe200000-0xfe7fffff] has been reserved
> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xff000000-0xffffffff] could not be reserved
> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfd000000-0xfd68ffff] has been reserved
> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfd6b0000-0xfd6cffff] has been reserved
> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfd6f0000-0xfdffffff] has been reserved
> Jul 20 20:02:05 xd kernel: system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
> Jul 20 20:02:05 xd kernel: system 00:06: [io 0x2000-0x20fe] has been reserved
> Jul 20 20:02:05 xd kernel: system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
> Jul 20 20:02:05 xd kernel: system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
> Jul 20 20:02:05 xd kernel: pnp: PnP ACPI: found 8 devices
> Jul 20 20:02:05 xd kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 2
> Jul 20 20:02:05 xd kernel: IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
> Jul 20 20:02:05 xd kernel: tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
> Jul 20 20:02:05 xd kernel: TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
> Jul 20 20:02:05 xd kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
> Jul 20 20:02:05 xd kernel: TCP: Hash tables configured (established 131072 bind 65536)
> Jul 20 20:02:05 xd kernel: UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
> Jul 20 20:02:05 xd kernel: UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 1
> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 44
> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: max bus depth: 1 pci_try_num: 2
> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: BAR 9: assigned [mem 0x4020000000-0x40ffffffff 64bit pref]
> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: BAR 7: assigned [mem 0x4010000000-0x4016ffffff 64bit]
> Jul 20 20:02:05 xd kernel: pci 0000:00:15.0: BAR 0: assigned [mem 0x4017000000-0x4017000fff 64bit]
> Jul 20 20:02:05 xd kernel: pci 0000:00:15.3: BAR 0: assigned [mem 0x4017001000-0x4017001fff 64bit]
> Jul 20 20:02:05 xd kernel: pci 0000:00:19.0: BAR 0: assigned [mem 0x4017002000-0x4017002fff 64bit]
> Jul 20 20:02:05 xd kernel: pci 0000:00:19.1: BAR 0: assigned [mem 0x4017003000-0x4017003fff 64bit]
> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.5: BAR 0: assigned [mem 0x4f800000-0x4f800fff]
> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: BAR 6: no space for [mem size 0x00080000 pref]
> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: BAR 6: failed to assign [mem size 0x00080000 pref]
> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: PCI bridge to [bus 01]
> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [io 0x4000-0x4fff]
> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [mem 0x52000000-0x52ffffff]
> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [mem 0x6000000000-0x6011ffffff 64bit pref]
> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: PCI bridge to [bus 02]
> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: bridge window [io 0x3000-0x3fff]
> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: bridge window [mem 0x53000000-0x530fffff]
> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: PCI bridge to [bus 03]
> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: bridge window [mem 0x6015000000-0x60151fffff 64bit pref]
> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: resource 7 [mem 0x4f800000-0xbfffffff window]
> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: resource 8 [mem 0x4000000000-0x7fffffffff window]
> Jul 20 20:02:05 xd kernel: pci_bus 0000:01: resource 0 [io 0x4000-0x4fff]
> Jul 20 20:02:05 xd kernel: pci_bus 0000:01: resource 1 [mem 0x52000000-0x52ffffff]
> Jul 20 20:02:05 xd kernel: pci_bus 0000:01: resource 2 [mem 0x6000000000-0x6011ffffff 64bit pref]
> Jul 20 20:02:05 xd kernel: pci_bus 0000:02: resource 0 [io 0x3000-0x3fff]
> Jul 20 20:02:05 xd kernel: pci_bus 0000:02: resource 1 [mem 0x53000000-0x530fffff]
> Jul 20 20:02:05 xd kernel: pci_bus 0000:03: resource 2 [mem 0x6015000000-0x60151fffff 64bit pref]
> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
> Jul 20 20:02:05 xd kernel: PCI: CLS 64 bytes, default 64
> Jul 20 20:02:05 xd kernel: Trying to unpack rootfs image as initramfs...
> Jul 20 20:02:05 xd kernel: Freeing initrd memory: 47452K
> Jul 20 20:02:05 xd kernel: DMAR: No ATSR found
> Jul 20 20:02:05 xd kernel: DMAR: dmar0: Using Queued invalidation
> Jul 20 20:02:05 xd kernel: DMAR: dmar1: Using Queued invalidation
> Jul 20 20:02:05 xd kernel: pci 0000:00:00.0: Adding to iommu group 0
> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: Adding to iommu group 1
> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: Adding to iommu group 2
> Jul 20 20:02:05 xd kernel: pci 0000:00:08.0: Adding to iommu group 3
> Jul 20 20:02:05 xd kernel: pci 0000:00:0e.0: Adding to iommu group 4
> Jul 20 20:02:05 xd kernel: pci 0000:00:14.0: Adding to iommu group 5
> Jul 20 20:02:05 xd kernel: pci 0000:00:14.2: Adding to iommu group 5
> Jul 20 20:02:05 xd kernel: pci 0000:00:15.0: Adding to iommu group 6
> Jul 20 20:02:05 xd kernel: pci 0000:00:15.3: Adding to iommu group 6
> Jul 20 20:02:05 xd kernel: pci 0000:00:16.0: Adding to iommu group 7
> Jul 20 20:02:05 xd kernel: pci 0000:00:17.0: Adding to iommu group 8
> Jul 20 20:02:05 xd kernel: pci 0000:00:19.0: Adding to iommu group 9
> Jul 20 20:02:05 xd kernel: pci 0000:00:19.1: Adding to iommu group 9
> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: Adding to iommu group 10
> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: Adding to iommu group 11
> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.0: Adding to iommu group 12
> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.3: Adding to iommu group 12
> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.4: Adding to iommu group 12
> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.5: Adding to iommu group 12
> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: Adding to iommu group 13
> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: Adding to iommu group 14
> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: Adding to iommu group 15
> Jul 20 20:02:05 xd kernel: DMAR: Intel(R) Virtualization Technology for Directed I/O
> Jul 20 20:02:05 xd kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
> Jul 20 20:02:05 xd kernel: software IO TLB: mapped [mem 0x0000000037663000-0x000000003b663000] (64MB)
> Jul 20 20:02:05 xd kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x22df1149949, max_idle_ns: 440795312789 ns
> Jul 20 20:02:05 xd kernel: clocksource: Switched to clocksource tsc
> Jul 20 20:02:05 xd kernel: Initialise system trusted keyrings
> Jul 20 20:02:05 xd kernel: Key type blacklist registered
> Jul 20 20:02:05 xd kernel: workingset: timestamp_bits=36 max_order=22 bucket_order=0
> Jul 20 20:02:05 xd kernel: zbud: loaded
> Jul 20 20:02:05 xd kernel: integrity: Platform Keyring initialized
> Jul 20 20:02:05 xd kernel: Key type asymmetric registered
> Jul 20 20:02:05 xd kernel: Asymmetric key parser 'x509' registered
> Jul 20 20:02:05 xd kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
> Jul 20 20:02:05 xd kernel: io scheduler mq-deadline registered
> Jul 20 20:02:05 xd kernel: pcieport 0000:00:06.0: PME: Signaling with IRQ 122
> Jul 20 20:02:05 xd kernel: pcieport 0000:00:06.0: AER: enabled with IRQ 122
> Jul 20 20:02:05 xd kernel: pcieport 0000:00:06.0: DPC: enabled with IRQ 122
> Jul 20 20:02:05 xd kernel: pcieport 0000:00:06.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.0: PME: Signaling with IRQ 123
> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.0: AER: enabled with IRQ 123
> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.0: DPC: enabled with IRQ 123
> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.1: PME: Signaling with IRQ 124
> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.1: AER: enabled with IRQ 124
> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.1: DPC: enabled with IRQ 124
> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.1: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
> Jul 20 20:02:05 xd kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
> Jul 20 20:02:05 xd kernel: efifb: probing for efifb
> Jul 20 20:02:05 xd kernel: efifb: framebuffer at 0x4000000000, using 8128k, total 8128k
> Jul 20 20:02:05 xd kernel: efifb: mode is 1920x1080x32, linelength=7680, pages=1
> Jul 20 20:02:05 xd kernel: efifb: scrolling: redraw
> Jul 20 20:02:05 xd kernel: efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
> Jul 20 20:02:05 xd kernel: Console: switching to colour frame buffer device 240x67
> Jul 20 20:02:05 xd kernel: fb0: EFI VGA frame buffer device
> Jul 20 20:02:05 xd kernel: intel_idle: MWAIT substates: 0x11121020
> Jul 20 20:02:05 xd kernel: Monitor-Mwait will be used to enter C-1 state
> Jul 20 20:02:05 xd kernel: Monitor-Mwait will be used to enter C-2 state
> Jul 20 20:02:05 xd kernel: Monitor-Mwait will be used to enter C-3 state
> Jul 20 20:02:05 xd kernel: ACPI: \_SB_.PR00: Found 3 idle states
> Jul 20 20:02:05 xd kernel: intel_idle: v0.5.1 model 0x8C
> Jul 20 20:02:05 xd kernel: intel_idle: Local APIC timer is reliable in all C-states
> Jul 20 20:02:05 xd kernel: thermal LNXTHERM:00: registered as thermal_zone0
> Jul 20 20:02:05 xd kernel: ACPI: Thermal Zone [TZ00] (28 C)
> Jul 20 20:02:05 xd kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
> Jul 20 20:02:05 xd kernel: hpet_acpi_add: no address or irqs in _CRS
> Jul 20 20:02:05 xd kernel: Linux agpgart interface v0.103
> Jul 20 20:02:05 xd kernel: AMD-Vi: AMD IOMMUv2 functionality not available on this system - This is not a bug.
> Jul 20 20:02:05 xd kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
> Jul 20 20:02:05 xd kernel: i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
> Jul 20 20:02:05 xd kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
> Jul 20 20:02:05 xd kernel: mousedev: PS/2 mouse device common for all mice
> Jul 20 20:02:05 xd kernel: rtc_cmos 00:01: RTC can wake from S4
> Jul 20 20:02:05 xd kernel: rtc_cmos 00:01: registered as rtc0
> Jul 20 20:02:05 xd kernel: rtc_cmos 00:01: setting system clock to 2022-07-20T19:02:03 UTC (1658343723)
> Jul 20 20:02:05 xd kernel: rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram
> Jul 20 20:02:05 xd kernel: intel_pstate: Intel P-state driver initializing
> Jul 20 20:02:05 xd kernel: intel_pstate: HWP enabled
> Jul 20 20:02:05 xd kernel: ledtrig-cpu: registered to indicate activity on CPUs
> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 10
> Jul 20 20:02:05 xd kernel: Segment Routing with IPv6
> Jul 20 20:02:05 xd kernel: mip6: Mobile IPv6
> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 17
> Jul 20 20:02:05 xd kernel: mpls_gso: MPLS GSO support
> Jul 20 20:02:05 xd kernel: microcode: sig=0x806c1, pf=0x80, revision=0x8a
> Jul 20 20:02:05 xd kernel: microcode: Microcode Update Driver: v2.2.
> Jul 20 20:02:05 xd kernel: resctrl: L2 allocation detected
> Jul 20 20:02:05 xd kernel: resctrl: L2DATA allocation detected
> Jul 20 20:02:05 xd kernel: resctrl: L2CODE allocation detected
> Jul 20 20:02:05 xd kernel: IPI shorthand broadcast: enabled
> Jul 20 20:02:05 xd kernel: sched_clock: Marking stable (836570439, 6379917)->(856451458, -13501102)
> Jul 20 20:02:05 xd kernel: registered taskstats version 1
> Jul 20 20:02:05 xd kernel: Loading compiled-in X.509 certificates
> Jul 20 20:02:05 xd kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
> Jul 20 20:02:05 xd kernel: Loaded X.509 cert 'Debian Secure Boot CA: 6ccece7e4c6c0d1f6149f3dd27dfcc5cbb419ea1'
> Jul 20 20:02:05 xd kernel: Loaded X.509 cert 'Debian Secure Boot Signer 2021 - linux: 4b6ef5abca669825178e052c84667ccbc0531f8c'
> Jul 20 20:02:05 xd kernel: zswap: loaded using pool lzo/zbud
> Jul 20 20:02:05 xd kernel: Key type ._fscrypt registered
> Jul 20 20:02:05 xd kernel: Key type .fscrypt registered
> Jul 20 20:02:05 xd kernel: Key type fscrypt-provisioning registered
> Jul 20 20:02:05 xd kernel: AppArmor: AppArmor sha1 policy hashing enabled
> Jul 20 20:02:05 xd kernel: Freeing unused kernel image (initmem) memory: 2424K
> Jul 20 20:02:05 xd kernel: Write protecting the kernel read-only data: 22528k
> Jul 20 20:02:05 xd kernel: Freeing unused kernel image (text/rodata gap) memory: 2040K
> Jul 20 20:02:05 xd kernel: Freeing unused kernel image (rodata/data gap) memory: 624K
> Jul 20 20:02:05 xd kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
> Jul 20 20:02:05 xd kernel: Run /init as init process
> Jul 20 20:02:05 xd kernel: with arguments:
> Jul 20 20:02:05 xd kernel: /init
> Jul 20 20:02:05 xd kernel: with environment:
> Jul 20 20:02:05 xd kernel: HOME=/
> Jul 20 20:02:05 xd kernel: TERM=linux
> Jul 20 20:02:05 xd kernel: BOOT_IMAGE=/vmlinuz-5.10.0-16-amd64
> Jul 20 20:02:05 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
> Jul 20 20:02:05 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
> Jul 20 20:02:05 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
> Jul 20 20:02:05 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
> Jul 20 20:02:05 xd kernel: acpi PNP0C14:03: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
> Jul 20 20:02:05 xd kernel: acpi PNP0C14:04: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
> Jul 20 20:02:05 xd kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:21/PNP0C0D:00/input/input1
> Jul 20 20:02:05 xd kernel: ACPI: Lid Switch [LID0]
> Jul 20 20:02:05 xd kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2
> Jul 20 20:02:05 xd kernel: ACPI: Sleep Button [SLPB]
> Jul 20 20:02:05 xd kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input3
> Jul 20 20:02:05 xd kernel: battery: ACPI: Battery Slot [BAT1] (battery present)
> Jul 20 20:02:05 xd kernel: hid: raw HID events driver (C) Jiri Kosina
> Jul 20 20:02:05 xd kernel: vmd 0000:00:0e.0: PCI host bridge to bus 10000:e0
> Jul 20 20:02:05 xd kernel: pci_bus 10000:e0: root bus resource [bus e0-ff]
> Jul 20 20:02:05 xd kernel: pci_bus 10000:e0: root bus resource [mem 0x50000000-0x51ffffff]
> Jul 20 20:02:05 xd kernel: pci_bus 10000:e0: root bus resource [mem 0x6015302000-0x60153fffff 64bit]
> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: [8086:a0d3] type 00 class 0x010601
> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x10: [mem 0x00000000-0x00001fff]
> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x14: [mem 0x00000000-0x000000ff]
> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x18: [io 0x0000-0x0007]
> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x1c: [io 0x0000-0x0003]
> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x20: [io 0x0000-0x001f]
> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x24: [mem 0x50000000-0x500007ff]
> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: PME# supported from D3hot
> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: Adding to iommu group 4
> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.0: [8086:09ab] type 00 class 0x088000
> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.0: Adding to iommu group 4
> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: [8086:a0bc] type 01 class 0x060400
> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: PME# supported from D0 D3hot D3cold
> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: PTM enabled (root), 4ns granularity
> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: Adding to iommu group 4
> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: Primary bus is hard wired to 0
> Jul 20 20:02:05 xd kernel: pci 10000:e1:00.0: [2646:500c] type 00 class 0x010802
> Jul 20 20:02:05 xd kernel: pci 10000:e1:00.0: reg 0x10: [mem 0x50100000-0x50103fff 64bit]
> Jul 20 20:02:05 xd kernel: pci 10000:e1:00.0: Adding to iommu group 4
> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: PCI bridge to [bus e1]
> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: bridge window [io 0x0000-0x0fff]
> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: bridge window [mem 0x50100000-0x501fffff]
> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: Primary bus is hard wired to 0
> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: BAR 14: assigned [mem 0x50000000-0x500fffff]
> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 0: assigned [mem 0x50100000-0x50101fff]
> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: BAR 13: no space for [io size 0x1000]
> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: BAR 13: failed to assign [io size 0x1000]
> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 5: assigned [mem 0x50102000-0x501027ff]
> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 1: assigned [mem 0x50102800-0x501028ff]
> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 4: no space for [io size 0x0020]
> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 4: failed to assign [io size 0x0020]
> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 2: no space for [io size 0x0008]
> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 2: failed to assign [io size 0x0008]
> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 3: no space for [io size 0x0004]
> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 3: failed to assign [io size 0x0004]
> Jul 20 20:02:05 xd kernel: pci 10000:e1:00.0: BAR 0: assigned [mem 0x50000000-0x50003fff 64bit]
> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: PCI bridge to [bus e1]
> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: bridge window [mem 0x50000000-0x500fffff]
> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: can't derive routing for PCI INT A
> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: PCI INT A: no GSI
> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: PME: Signaling with IRQ 144
> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: AER: enabled with IRQ 144
> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: DPC: enabled with IRQ 144
> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
> Jul 20 20:02:05 xd kernel: vmd 0000:00:0e.0: Bound to PCI domain 10000
> Jul 20 20:02:05 xd kernel: i801_smbus 0000:00:1f.4: SPD Write Disable is set
> Jul 20 20:02:05 xd kernel: i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
> Jul 20 20:02:05 xd kernel: i2c i2c-0: 2/2 memory slots populated (from DMI)
> Jul 20 20:02:05 xd kernel: i2c i2c-0: Successfully instantiated SPD at 0x50
> Jul 20 20:02:05 xd kernel: r8168: loading out-of-tree module taints kernel.
> Jul 20 20:02:05 xd kernel: r8168: module verification failed: signature and/or required key missing - tainting kernel
> Jul 20 20:02:05 xd kernel: r8168 Gigabit Ethernet driver 8.048.03-NAPI loaded
> Jul 20 20:02:05 xd kernel: ACPI: bus type USB registered
> Jul 20 20:02:05 xd kernel: usbcore: registered new interface driver usbfs
> Jul 20 20:02:05 xd kernel: usbcore: registered new interface driver hub
> Jul 20 20:02:05 xd kernel: usbcore: registered new device driver usb
> Jul 20 20:02:05 xd kernel: ACPI: Power Button [PWRB]
> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000000009810
> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
> Jul 20 20:02:05 xd kernel: r8168: This product is covered by one or more of the following patents: US6,570,884, US6,115,776, and US6,327,625.
> Jul 20 20:02:05 xd kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
> Jul 20 20:02:05 xd kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
> Jul 20 20:02:05 xd kernel: usb usb1: Product: xHCI Host Controller
> Jul 20 20:02:05 xd kernel: usb usb1: Manufacturer: Linux 5.10.0-16-amd64 xhci-hcd
> Jul 20 20:02:05 xd kernel: usb usb1: SerialNumber: 0000:00:14.0
> Jul 20 20:02:05 xd kernel: hub 1-0:1.0: USB hub found
> Jul 20 20:02:05 xd kernel: hub 1-0:1.0: 12 ports detected
> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
> Jul 20 20:02:05 xd kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
> Jul 20 20:02:05 xd kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
> Jul 20 20:02:05 xd kernel: usb usb2: Product: xHCI Host Controller
> Jul 20 20:02:05 xd kernel: usb usb2: Manufacturer: Linux 5.10.0-16-amd64 xhci-hcd
> Jul 20 20:02:05 xd kernel: usb usb2: SerialNumber: 0000:00:14.0
> Jul 20 20:02:05 xd kernel: hub 2-0:1.0: USB hub found
> Jul 20 20:02:05 xd kernel: hub 2-0:1.0: 4 ports detected
> Jul 20 20:02:05 xd kernel: r8168 Copyright (C) 2020 Realtek NIC software team <nicfae@realtek.com>
> This program comes with ABSOLUTELY NO WARRANTY; for details, please see <http://www.gnu.org/licenses/>.
> This is free software, and you are welcome to redistribute it under certain conditions; see <http://www.gnu.org/licenses/>.
> Jul 20 20:02:05 xd kernel: SCSI subsystem initialized
> Jul 20 20:02:05 xd kernel: intel-lpss 0000:00:15.0: enabling device (0004 -> 0006)
> Jul 20 20:02:05 xd kernel: idma64 idma64.0: Found Intel integrated DMA 64-bit
> Jul 20 20:02:05 xd kernel: r8168 0000:02:00.0 enp2s0: renamed from eth0
> Jul 20 20:02:05 xd kernel: nvme nvme0: pci function 10000:e1:00.0
> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: can't derive routing for PCI INT A
> Jul 20 20:02:05 xd kernel: nvme 10000:e1:00.0: PCI INT A: no GSI
> Jul 20 20:02:05 xd kernel: libata version 3.00 loaded.
> Jul 20 20:02:05 xd kernel: nvme nvme0: missing or invalid SUBNQN field.
> Jul 20 20:02:05 xd kernel: nvme nvme0: Shutdown timeout set to 10 seconds
> Jul 20 20:02:05 xd kernel: nvme nvme0: 8/0/0 default/read/poll queues
> Jul 20 20:02:05 xd kernel: nvme0n1: p1 p2 p3 p4 p5
> Jul 20 20:02:05 xd kernel: intel-lpss 0000:00:15.3: enabling device (0004 -> 0006)
> Jul 20 20:02:05 xd kernel: idma64 idma64.1: Found Intel integrated DMA 64-bit
> Jul 20 20:02:05 xd kernel: i2c_hid i2c-ELAN0515:01: supply vdd not found, using dummy regulator
> Jul 20 20:02:05 xd kernel: i2c_hid i2c-ELAN0515:01: supply vddl not found, using dummy regulator
> Jul 20 20:02:05 xd kernel: intel-lpss 0000:00:19.0: enabling device (0004 -> 0006)
> Jul 20 20:02:05 xd kernel: idma64 idma64.2: Found Intel integrated DMA 64-bit
> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: [drm] VT-d active for gfx access
> Jul 20 20:02:05 xd kernel: checking generic (4000000000 7f0000) vs hw (6014000000 1000000)
> Jul 20 20:02:05 xd kernel: checking generic (4000000000 7f0000) vs hw (4000000000 10000000)
> Jul 20 20:02:05 xd kernel: fb0: switching to inteldrmfb from EFI VGA
> Jul 20 20:02:05 xd kernel: Console: switching to colour dummy device 80x25
> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: vgaarb: deactivate vga console
> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: firmware: direct-loading firmware i915/tgl_dmc_ver2_08.bin
> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/tgl_dmc_ver2_08.bin (v2.8)
> Jul 20 20:02:05 xd kernel: intel-lpss 0000:00:19.1: enabling device (0004 -> 0006)
> Jul 20 20:02:05 xd kernel: idma64 idma64.3: Found Intel integrated DMA 64-bit
> Jul 20 20:02:05 xd kernel: input: ELAN0515:01 04F3:3142 Mouse as /devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input4
> Jul 20 20:02:05 xd kernel: input: ELAN0515:01 04F3:3142 Touchpad as /devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input6
> Jul 20 20:02:05 xd kernel: hid-generic 0018:04F3:3142.0001: input,hidraw0: I2C HID v1.00 Mouse [ELAN0515:01 04F3:3142] on i2c-ELAN0515:01
> Jul 20 20:02:05 xd kernel: ahci 10000:e0:17.0: version 3.0
> Jul 20 20:02:05 xd kernel: ahci 10000:e0:17.0: can't derive routing for PCI INT A
> Jul 20 20:02:05 xd kernel: ahci 10000:e0:17.0: PCI INT A: no GSI
> Jul 20 20:02:05 xd kernel: ahci 10000:e0:17.0: AHCI 0001.0301 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
> Jul 20 20:02:05 xd kernel: ahci 10000:e0:17.0: flags: 64bit ncq sntf pm clo only pio slum part deso sadm sds
> Jul 20 20:02:05 xd kernel: scsi host0: ahci
> Jul 20 20:02:05 xd kernel: scsi host1: ahci
> Jul 20 20:02:05 xd kernel: ata1: SATA max UDMA/133 abar m2048@0x50102000 port 0x50102100 irq 158
> Jul 20 20:02:05 xd kernel: ata2: SATA max UDMA/133 abar m2048@0x50102000 port 0x50102180 irq 158
> Jul 20 20:02:05 xd kernel: usb 1-7: new full-speed USB device number 2 using xhci_hcd
> Jul 20 20:02:05 xd kernel: usb 1-7: New USB device found, idVendor=04f3, idProduct=0c4f, bcdDevice= 1.61
> Jul 20 20:02:05 xd kernel: usb 1-7: New USB device strings: Mfr=1, Product=2, SerialNumber=0
> Jul 20 20:02:05 xd kernel: usb 1-7: Product: ELAN:Fingerprint
> Jul 20 20:02:05 xd kernel: usb 1-7: Manufacturer: ELAN
> Jul 20 20:02:05 xd kernel: ata1: SATA link down (SStatus 0 SControl 300)
> Jul 20 20:02:05 xd kernel: ata2: SATA link down (SStatus 0 SControl 300)
> Jul 20 20:02:05 xd kernel: usb 1-8: new high-speed USB device number 3 using xhci_hcd
> Jul 20 20:02:05 xd kernel: usb 1-8: New USB device found, idVendor=0408, idProduct=a061, bcdDevice= 0.04
> Jul 20 20:02:05 xd kernel: usb 1-8: New USB device strings: Mfr=1, Product=2, SerialNumber=0
> Jul 20 20:02:05 xd kernel: usb 1-8: Product: HD User Facing
> Jul 20 20:02:05 xd kernel: usb 1-8: Manufacturer: SunplusIT Inc
> Jul 20 20:02:05 xd kernel: usb 1-10: new high-speed USB device number 4 using xhci_hcd
> Jul 20 20:02:05 xd kernel: usb 1-10: New USB device found, idVendor=04ca, idProduct=3802, bcdDevice= 1.00
> Jul 20 20:02:05 xd kernel: usb 1-10: New USB device strings: Mfr=5, Product=6, SerialNumber=7
> Jul 20 20:02:05 xd kernel: usb 1-10: Product: Wireless_Device
> Jul 20 20:02:05 xd kernel: usb 1-10: Manufacturer: MediaTek Inc.
> Jul 20 20:02:05 xd kernel: usb 1-10: SerialNumber: 000000000
> Jul 20 20:02:05 xd kernel: [drm] Initialized i915 1.6.0 20200917 for 0000:00:02.0 on minor 0
> Jul 20 20:02:05 xd kernel: [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
> Jul 20 20:02:05 xd kernel: ACPI: Video Device [PEGP] (multi-head: yes rom: no post: no)
> Jul 20 20:02:05 xd kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/LNXVIDEO:00/input/input7
> Jul 20 20:02:05 xd kernel: ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
> Jul 20 20:02:05 xd kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input8
> Jul 20 20:02:05 xd kernel: fbcon: i915drmfb (fb0) is primary device
> Jul 20 20:02:05 xd kernel: Console: switching to colour frame buffer device 240x67
> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
> Jul 20 20:02:05 xd kernel: PM: Image not found (code -22)
> Jul 20 20:02:05 xd kernel: EXT4-fs (nvme0n1p3): mounting ext3 file system using the ext4 subsystem
> Jul 20 20:02:05 xd kernel: EXT4-fs (nvme0n1p3): mounted filesystem with ordered data mode. Opts: (null)
> Jul 20 20:02:05 xd kernel: Not activating Mandatory Access Control as /sbin/tomoyo-init does not exist.
> Jul 20 20:02:05 xd systemd[1]: Inserted module 'autofs4'
> Jul 20 20:02:05 xd systemd[1]: systemd 247.3-7 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=unified)
> Jul 20 20:02:05 xd systemd[1]: Detected architecture x86-64.
> Jul 20 20:02:05 xd systemd[1]: Set hostname to <xd>.
> Jul 20 20:02:05 xd systemd[1]: /lib/systemd/system/plymouth-start.service:16: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed.
> Jul 20 20:02:05 xd systemd[1]: Queued start job for default target Graphical Interface.
> Jul 20 20:02:05 xd systemd[1]: Created slice system-getty.slice.
> Jul 20 20:02:05 xd systemd[1]: Created slice system-modprobe.slice.
> Jul 20 20:02:05 xd systemd[1]: Created slice system-systemd\x2dfsck.slice.
> Jul 20 20:02:05 xd systemd[1]: Created slice User and Session Slice.
> Jul 20 20:02:05 xd systemd[1]: Started Forward Password Requests to Wall Directory Watch.
> Jul 20 20:02:05 xd systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
> Jul 20 20:02:05 xd systemd[1]: Reached target User and Group Name Lookups.
> Jul 20 20:02:05 xd systemd[1]: Reached target Remote File Systems.
> Jul 20 20:02:05 xd systemd[1]: Reached target Slices.
> Jul 20 20:02:05 xd systemd[1]: Listening on Device-mapper event daemon FIFOs.
> Jul 20 20:02:05 xd systemd[1]: Listening on LVM2 poll daemon socket.
> Jul 20 20:02:05 xd systemd[1]: Listening on Syslog Socket.
> Jul 20 20:02:05 xd systemd[1]: Listening on fsck to fsckd communication Socket.
> Jul 20 20:02:05 xd systemd[1]: Listening on initctl Compatibility Named Pipe.
> Jul 20 20:02:05 xd systemd[1]: Listening on Journal Audit Socket.
> Jul 20 20:02:05 xd systemd[1]: Listening on Journal Socket (/dev/log).
> Jul 20 20:02:05 xd systemd[1]: Listening on Journal Socket.
> Jul 20 20:02:05 xd systemd[1]: Listening on udev Control Socket.
> Jul 20 20:02:05 xd systemd[1]: Listening on udev Kernel Socket.
> Jul 20 20:02:05 xd systemd[1]: Mounting Huge Pages File System...
> Jul 20 20:02:05 xd systemd[1]: Mounting POSIX Message Queue File System...
> Jul 20 20:02:05 xd systemd[1]: Mounting Kernel Debug File System...
> Jul 20 20:02:05 xd systemd[1]: Mounting Kernel Trace File System...
> Jul 20 20:02:05 xd systemd[1]: Finished Availability of block devices.
> Jul 20 20:02:05 xd systemd[1]: Starting Set the console keyboard layout...
> Jul 20 20:02:05 xd systemd[1]: Starting Create list of static device nodes for the current kernel...
> Jul 20 20:02:05 xd systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
> Jul 20 20:02:05 xd systemd[1]: Starting Load Kernel Module configfs...
> Jul 20 20:02:05 xd systemd[1]: Starting Load Kernel Module drm...
> Jul 20 20:02:05 xd systemd[1]: Starting Load Kernel Module fuse...
> Jul 20 20:02:05 xd systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
> Jul 20 20:02:05 xd systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
> Jul 20 20:02:05 xd systemd[1]: Starting Journal Service...
> Jul 20 20:02:05 xd systemd[1]: Starting Load Kernel Modules...
> Jul 20 20:02:05 xd systemd[1]: Starting Remount Root and Kernel File Systems...
> Jul 20 20:02:05 xd systemd[1]: Starting Coldplug All udev Devices...
> Jul 20 20:02:05 xd systemd[1]: Mounted Huge Pages File System.
> Jul 20 20:02:05 xd systemd[1]: Mounted POSIX Message Queue File System.
> Jul 20 20:02:05 xd systemd[1]: Mounted Kernel Debug File System.
> Jul 20 20:02:05 xd systemd[1]: Mounted Kernel Trace File System.
> Jul 20 20:02:05 xd systemd[1]: Finished Create list of static device nodes for the current kernel.
> Jul 20 20:02:05 xd systemd[1]: modprobe@configfs.service: Succeeded.
> Jul 20 20:02:05 xd systemd[1]: Finished Load Kernel Module configfs.
> Jul 20 20:02:05 xd systemd[1]: modprobe@drm.service: Succeeded.
> Jul 20 20:02:05 xd systemd[1]: Finished Load Kernel Module drm.
> Jul 20 20:02:05 xd systemd[1]: Mounting Kernel Configuration File System...
> Jul 20 20:02:05 xd systemd[1]: Mounted Kernel Configuration File System.
> Jul 20 20:02:05 xd kernel: EXT4-fs (nvme0n1p3): re-mounted. Opts: errors=remount-ro
> Jul 20 20:02:05 xd systemd[1]: Finished Remount Root and Kernel File Systems.
> Jul 20 20:02:05 xd kernel: fuse: init (API version 7.32)
> Jul 20 20:02:05 xd systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
> Jul 20 20:02:05 xd systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped.
> Jul 20 20:02:05 xd systemd[1]: Starting Load/Save Random Seed...
> Jul 20 20:02:05 xd systemd[1]: Starting Create System Users...
> Jul 20 20:02:05 xd systemd[1]: modprobe@fuse.service: Succeeded.
> Jul 20 20:02:05 xd systemd[1]: Finished Load Kernel Module fuse.
> Jul 20 20:02:05 xd systemd[1]: Mounting FUSE Control File System...
> Jul 20 20:02:05 xd systemd[1]: Mounted FUSE Control File System.
> Jul 20 20:02:05 xd kernel: lp: driver loaded but no devices found
> Jul 20 20:02:05 xd kernel: ppdev: user-space parallel port driver
> Jul 20 20:02:05 xd systemd[1]: Finished Load/Save Random Seed.
> Jul 20 20:02:05 xd systemd[1]: Condition check resulted in First Boot Complete being skipped.
> Jul 20 20:02:05 xd systemd[1]: Finished Create System Users.
> Jul 20 20:02:05 xd systemd[1]: Starting Create Static Device Nodes in /dev...
> Jul 20 20:02:05 xd systemd[1]: Finished Create Static Device Nodes in /dev.
> Jul 20 20:02:05 xd systemd[1]: Starting Rule-based Manager for Device Events and Files...
> Jul 20 20:02:05 xd systemd[1]: Finished Set the console keyboard layout.
> Jul 20 20:02:05 xd systemd[1]: Started Journal Service.
> Jul 20 20:02:05 xd kernel: nvidia: module license 'NVIDIA' taints kernel.
> Jul 20 20:02:05 xd kernel: Disabling lock debugging due to kernel taint
> Jul 20 20:02:05 xd kernel: nvidia-nvlink: Nvlink Core is being initialized, major device number 245
> Jul 20 20:02:05 xd kernel:
> Jul 20 20:02:05 xd kernel: nvidia 0000:01:00.0: enabling device (0006 -> 0007)
> Jul 20 20:02:05 xd kernel: NVRM: loading NVIDIA UNIX x86_64 Kernel Module 470.129.06 Thu May 12 22:52:02 UTC 2022
> Jul 20 20:02:05 xd kernel: input: Acer Wireless Radio Control as /devices/LNXSYSTM:00/10251229:00/input/input9
> Jul 20 20:02:05 xd kernel: input: Intel HID events as /devices/platform/INTC1051:00/input/input10
> Jul 20 20:02:05 xd kernel: intel-hid INTC1051:00: platform supports 5 button array
> Jul 20 20:02:05 xd kernel: input: Intel HID 5 button array as /devices/platform/INTC1051:00/input/input11
> Jul 20 20:02:05 xd kernel: intel_pmc_core INT33A1:00: initialized
> Jul 20 20:02:05 xd kernel: ACPI: AC Adapter [ACAD] (on-line)
> Jul 20 20:02:05 xd kernel: nvidia-modeset: Loading NVIDIA Kernel Mode Setting Driver for UNIX platforms 470.129.06 Thu May 12 22:42:45 UTC 2022
> Jul 20 20:02:05 xd kernel: mc: Linux media interface: v0.10
> Jul 20 20:02:05 xd kernel: mei_me 0000:00:16.0: enabling device (0000 -> 0002)
> Jul 20 20:02:05 xd kernel: ee1004 0-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
> Jul 20 20:02:05 xd kernel: [drm] [nvidia-drm] [GPU ID 0x00000100] Loading driver
> Jul 20 20:02:05 xd kernel: [drm] Initialized nvidia-drm 0.0.0 20160202 for 0000:01:00.0 on minor 1
> Jul 20 20:02:05 xd kernel: videodev: Linux video capture interface: v2.00
> Jul 20 20:02:05 xd kernel: iTCO_vendor_support: vendor-support=0
> Jul 20 20:02:05 xd kernel: iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
> Jul 20 20:02:05 xd kernel: iTCO_wdt: Found a Intel PCH TCO device (Version=6, TCOBASE=0x0400)
> Jul 20 20:02:05 xd kernel: iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
> Jul 20 20:02:05 xd kernel: EXT4-fs (nvme0n1p2): mounting ext2 file system using the ext4 subsystem
> Jul 20 20:02:05 xd kernel: EXT4-fs (nvme0n1p2): mounted filesystem without journal. Opts: (null)
> Jul 20 20:02:05 xd kernel: ext2 filesystem being mounted at /boot supports timestamps until 2038 (0x7fffffff)
> Jul 20 20:02:05 xd kernel: uvcvideo: Found UVC 1.00 device HD User Facing (0408:a061)
> Jul 20 20:02:05 xd kernel: Adding 31182844k swap on /dev/nvme0n1p4. Priority:-2 extents:1 across:31182844k SSFS
> Jul 20 20:02:05 xd kernel: input: HD User Facing: HD User Facing as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/input/input12
> Jul 20 20:02:05 xd kernel: input: PC Speaker as /devices/platform/pcspkr/input/input13
> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=401 comm="apparmor_parser"
> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-oopslash" pid=402 comm="apparmor_parser"
> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=405 comm="apparmor_parser"
> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=405 comm="apparmor_parser"
> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=403 comm="apparmor_parser"
> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=403 comm="apparmor_parser"
> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=403 comm="apparmor_parser"
> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cups-browsed" pid=407 comm="apparmor_parser"
> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.840:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-senddoc" pid=409 comm="apparmor_parser"
> Jul 20 20:02:05 xd kernel: usbcore: registered new interface driver uvcvideo
> Jul 20 20:02:05 xd kernel: USB Video Class driver (1.1.1)
> Jul 20 20:02:05 xd kernel: pstore: Using crash dump compression: deflate
> Jul 20 20:02:05 xd kernel: input: ELAN0515:01 04F3:3142 Mouse as /devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input14
> Jul 20 20:02:05 xd kernel: input: ELAN0515:01 04F3:3142 Touchpad as /devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input16
> Jul 20 20:02:05 xd kernel: hid-multitouch 0018:04F3:3142.0001: input,hidraw0: I2C HID v1.00 Mouse [ELAN0515:01 04F3:3142] on i2c-ELAN0515:01
> Jul 20 20:02:05 xd kernel: pstore: Registered efi as persistent store backend
> Jul 20 20:02:05 xd kernel: acer_wmi: Acer Laptop ACPI-WMI Extras
> Jul 20 20:02:05 xd kernel: acer_wmi: Function bitmap for Communication Button: 0x801
> Jul 20 20:02:05 xd kernel: input: Acer WMI hotkeys as /devices/virtual/input/input17
> Jul 20 20:02:05 xd kernel: snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040100
> Jul 20 20:02:05 xd kernel: snd_hda_intel 0000:00:1f.3: Digital mics found on Skylake+ platform, using SOF driver
> Jul 20 20:02:05 xd kernel: cryptd: max_cpu_qlen set to 1000
> Jul 20 20:02:06 xd kernel: AVX2 version of gcm_enc/dec engaged.
> Jul 20 20:02:06 xd kernel: AES CTR mode by8 optimization enabled
> Jul 20 20:02:06 xd kernel: resource sanity check: requesting [mem 0xfedc0000-0xfedcdfff], which spans more than pnp 00:04 [mem 0xfedc0000-0xfedc7fff]
> Jul 20 20:02:06 xd kernel: caller tgl_uncore_imc_freerunning_init_box+0xbb/0x100 [intel_uncore] mapping multiple BARs
> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040100
> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: Digital mics found on Skylake+ platform, using SOF driver
> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: enabling device (0000 -> 0002)
> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if 0x040100
> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: use msi interrupt mode
> Jul 20 20:02:06 xd kernel: ACPI Warning: \_SB.PC00.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20200925/nsarguments-61)
> Jul 20 20:02:06 xd kernel: enp2s0: 0xffffbd82000e9000, 08:8f:c3:4f:86:c5, IRQ 145
> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: hda codecs found, mask 5
> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: using HDA machine driver skl_hda_dsp_generic now
> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: DMICs detected in NHLT tables: 2
> Jul 20 20:02:06 xd kernel: alg: No test for fips(ansi_cprng) (fips_ansi_cprng)
> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: firmware: failed to load intel/sof/sof-tgl.ri (-2)
> Jul 20 20:02:06 xd kernel: firmware_class: See https://wiki.debian.org/Firmware for information about missing firmware
> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: Direct firmware load for intel/sof/sof-tgl.ri failed with error -2
> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: error: request firmware intel/sof/sof-tgl.ri failed err: -2
> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: error: failed to load DSP firmware -2
> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: error: sof_probe_work failed err: -2
> Jul 20 20:02:06 xd kernel: Bluetooth: Core ver 2.22
> Jul 20 20:02:06 xd kernel: NET: Registered protocol family 31
> Jul 20 20:02:06 xd kernel: Bluetooth: HCI device and connection manager initialized
> Jul 20 20:02:06 xd kernel: Bluetooth: HCI socket layer initialized
> Jul 20 20:02:06 xd kernel: Bluetooth: L2CAP socket layer initialized
> Jul 20 20:02:06 xd kernel: Bluetooth: SCO socket layer initialized
> Jul 20 20:02:06 xd kernel: usbcore: registered new interface driver btusb
> Jul 20 20:02:07 xd kernel: intel_rapl_msr: PL4 support detected.
> Jul 20 20:02:07 xd kernel: intel_rapl_common: Found RAPL domain package
> Jul 20 20:02:07 xd kernel: intel_rapl_common: Found RAPL domain core
> Jul 20 20:02:07 xd kernel: intel_rapl_common: Found RAPL domain uncore
> Jul 20 20:02:07 xd kernel: mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_component_ops [i915])
> Jul 20 20:02:07 xd kernel: Bluetooth: BNEP (Ethernet Emulation) ver 1.3
> Jul 20 20:02:07 xd kernel: Bluetooth: BNEP filters: protocol multicast
> Jul 20 20:02:07 xd kernel: Bluetooth: BNEP socket layer initialized
> Jul 20 20:02:09 xd kernel: r8168: enp2s0: link up
> Jul 20 20:02:09 xd kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
> Jul 20 20:02:09 xd kernel: rfkill: input handler disabled
> Jul 20 20:02:17 xd kernel: rfkill: input handler enabled
> Jul 20 20:02:18 xd kernel: rfkill: input handler disabled
>
Re: Boot into Xen on debian11 [ In reply to ]
Error I can see when I grep from dmesg on initramfs:

pcieport xxx DCP: error containment capabilities: Int Msg #0, …..

And grep fail:

PM-Timer consistency check

pci xxx: Failed to add - pass through or MSI/MSI-X might fail!
pci xxx: BAR x: failed to assign [io size x]

r8168: module verification failed: signature and or required key missing - tainting kernel

> On 20 Jul 2022, at 21:03, Chuck Zmudzinski <brchuckz@netscape.net> wrote:
>
> ?On 7/20/22 3:19 PM, Bruno wrote:
>>
>> Hello Leigh. Hello Chuck.
>>
>> Thank you again for the support. Unfortunately matters have not moved forward yet.
>>
>> I have successfully installed nvidia and the non-free firmware miscellanea, and I have re-generated the initramfs ( update-initramfs -k all -c -v ). But I cannot boot on Xen.
>>
>> I also when booting Xen and landing on initramfs prompt, cannot mount /root ( mount -o remount,rw /root ), and I cannot extract a dmesg of that boot process. I am not getting the ACPI error I was getting before, but clearly the errors in mount are ACPI failure.
>>
>> Bellow the current journalctl -k -b :
>>
>
> As Leigh said, there should be something like:
>
> Jul 20 09:19:36 debian kernel: [ 0.000000] Hypervisor detected: Xen PV
>
> In the journal logs, but I don't see it there. See if you can find it in
> the /var/log/kern.log file to be sure you are posting the right log file.
> It should be there on the attempt to boot into Linux on Xen.
>
> Maybe there is something wrong with your grub configuration. I know
> you posted it in your first message but I don't see anything
> terribly wrong there. Are you sure that grub is really booting
> the 'Debian Linux/GNU with Xen hypervisor' boot option? It
> should boot that, based on what is in your /boot/grub/grub.cfg
> file.
>
> You can also manually select the option to boot Debian with the
> Xen hypervisor while the grub boot menu displays.
>
> It has been a long time since I installed Xen on Debian,
> I have been just upgrading my installation that
> goes all the way back to Debian 7. It may be there
> is a bug in the current Debian Xen metapackage
> installation system.
>
> I have been planning to try to do a clean install of
> Xen on Debian 11 to see if it still works right. I will
> try it later this week and let you know if there is
> a bug in the Debian Xen installation system.
>
> Chuck
>
>
>> Jul 20 20:02:05 xd kernel: Linux version 5.10.0-16-amd64 (debian-kernel@lists.debian.org) (gcc-10 (Debian 10.2.1-6) 10.2.1 20210110, GNU ld (GNU Binutils for Debian) 2.35.2) #1 SMP Debian 5.10.127-1 (2022-06-30)
>> Jul 20 20:02:05 xd kernel: Command line: BOOT_IMAGE=/vmlinuz-5.10.0-16-amd64 root=UUID=0123abcd ro quiet
>> Jul 20 20:02:05 xd kernel: x86/split lock detection: warning about user-space split_locks
>> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
>> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
>> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
>> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask'
>> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'
>> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'
>> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
>> Jul 20 20:02:05 xd kernel: x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
>> Jul 20 20:02:05 xd kernel: x86/fpu: xstate_offset[5]: 832, xstate_sizes[5]: 64
>> Jul 20 20:02:05 xd kernel: x86/fpu: xstate_offset[6]: 896, xstate_sizes[6]: 512
>> Jul 20 20:02:05 xd kernel: x86/fpu: xstate_offset[7]: 1408, xstate_sizes[7]: 1024
>> Jul 20 20:02:05 xd kernel: x86/fpu: xstate_offset[9]: 2432, xstate_sizes[9]: 8
>> Jul 20 20:02:05 xd kernel: x86/fpu: Enabled xstate features 0x2e7, context size is 2440 bytes, using 'compacted' format.
>> Jul 20 20:02:05 xd kernel: BIOS-provided physical RAM map:
>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000000100000-0x000000003fd98fff] usable
>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x000000003fd99000-0x0000000040698fff] reserved
>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000040699000-0x00000000424aefff] usable
>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000424af000-0x000000004287efff] type 20
>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x000000004287f000-0x00000000442fefff] reserved
>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000442ff000-0x0000000044b2efff] ACPI NVS
>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000044b2f000-0x0000000044bfefff] ACPI data
>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000044bff000-0x0000000044bfffff] usable
>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000044c00000-0x0000000048ffffff] reserved
>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000049e00000-0x000000004f7fffff] reserved
>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000c0000000-0x00000000cfffffff] reserved
>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000fe010000-0x00000000fe010fff] reserved
>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000fed20000-0x00000000fed7ffff] reserved
>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000ff500000-0x00000000ffffffff] reserved
>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000100000000-0x00000004b07fffff] usable
>> Jul 20 20:02:05 xd kernel: NX (Execute Disable) protection: active
>> Jul 20 20:02:05 xd kernel: efi: EFI v2.70 by INSYDE Corp.
>> Jul 20 20:02:05 xd kernel: efi: ACPI=0x44bfe000 ACPI 2.0=0x44bfe014 TPMFinalLog=0x44ac5000 SMBIOS=0x429de000 SMBIOS 3.0=0x429dc000 ESRT=0x3bf68a98 MOKvar=0x3bee5000
>> Jul 20 20:02:05 xd kernel: secureboot: Secure boot could not be determined (mode 0)
>> Jul 20 20:02:05 xd kernel: SMBIOS 3.3.0 present.
>> Jul 20 20:02:05 xd kernel: DMI: Acer Aspire A517-52G/Jasmine_TL, BIOS V1.26 03/14/2022
>> Jul 20 20:02:05 xd kernel: tsc: Detected 2400.000 MHz processor
>> Jul 20 20:02:05 xd kernel: tsc: Detected 2419.200 MHz TSC
>> Jul 20 20:02:05 xd kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
>> Jul 20 20:02:05 xd kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
>> Jul 20 20:02:05 xd kernel: last_pfn = 0x4b0800 max_arch_pfn = 0x400000000
>> Jul 20 20:02:05 xd kernel: MTRR default type: write-back
>> Jul 20 20:02:05 xd kernel: MTRR fixed ranges enabled:
>> Jul 20 20:02:05 xd kernel: 00000-9FFFF write-back
>> Jul 20 20:02:05 xd kernel: A0000-BFFFF uncachable
>> Jul 20 20:02:05 xd kernel: C0000-FFFFF write-protect
>> Jul 20 20:02:05 xd kernel: MTRR variable ranges enabled:
>> Jul 20 20:02:05 xd kernel: 0 base 0080000000 mask 7F80000000 uncachable
>> Jul 20 20:02:05 xd kernel: 1 base 0060000000 mask 7FE0000000 uncachable
>> Jul 20 20:02:05 xd kernel: 2 base 0050000000 mask 7FF0000000 uncachable
>> Jul 20 20:02:05 xd kernel: 3 base 004C000000 mask 7FFC000000 uncachable
>> Jul 20 20:02:05 xd kernel: 4 base 004B000000 mask 7FFF000000 uncachable
>> Jul 20 20:02:05 xd kernel: 5 base 4000000000 mask 4000000000 uncachable
>> Jul 20 20:02:05 xd kernel: 6 disabled
>> Jul 20 20:02:05 xd kernel: 7 disabled
>> Jul 20 20:02:05 xd kernel: 8 disabled
>> Jul 20 20:02:05 xd kernel: 9 disabled
>> Jul 20 20:02:05 xd kernel: x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
>> Jul 20 20:02:05 xd kernel: last_pfn = 0x44c00 max_arch_pfn = 0x400000000
>> Jul 20 20:02:05 xd kernel: esrt: Reserving ESRT space from 0x000000003bf68a98 to 0x000000003bf68ad0.
>> Jul 20 20:02:05 xd kernel: e820: update [mem 0x3bf68000-0x3bf68fff] usable ==> reserved
>> Jul 20 20:02:05 xd kernel: e820: update [mem 0x3bee5000-0x3bee7fff] usable ==> reserved
>> Jul 20 20:02:05 xd kernel: Using GB pages for direct mapping
>> Jul 20 20:02:05 xd kernel: RAMDISK: [mem 0x32341000-0x35197fff]
>> Jul 20 20:02:05 xd kernel: ACPI: Early table checksum verification disabled
>> Jul 20 20:02:05 xd kernel: ACPI: RSDP 0x0000000044BFE014 000024 (v02 ACRSYS)
>> Jul 20 20:02:05 xd kernel: ACPI: XSDT 0x0000000044BDB188 000124 (v01 ACRSYS ACRPRDCT 00000002 01000013)
>> Jul 20 20:02:05 xd kernel: ACPI: FACP 0x0000000044BDE000 000114 (v06 ACRSYS ACRPRDCT 00000002 1025 00040000)
>> Jul 20 20:02:05 xd kernel: ACPI: DSDT 0x0000000044B81000 059948 (v02 ACRSYS ACRPRDCT 00000002 1025 00040000)
>> Jul 20 20:02:05 xd kernel: ACPI: FACS 0x0000000044AA2000 000040
>> Jul 20 20:02:05 xd kernel: ACPI: UEFI 0x0000000044B2E000 000236 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BFA000 00255C (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BF9000 000105 (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BF6000 002137 (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BF2000 003300 (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BF1000 00077B (v02 ACRSYS ACRPRDCT 00001000 1025 00040000)
>> Jul 20 20:02:05 xd kernel: ACPI: TPM2 0x0000000044BF0000 00004C (v04 ACRSYS ACRPRDCT 00000002 1025 00040000)
>> Jul 20 20:02:05 xd kernel: ACPI: MSDM 0x0000000044BEF000 000055 (v03 ACRSYS ACRPRDCT 00000001 1025 00040000)
>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BEE000 000D02 (v02 ACRSYS ACRPRDCT 00000000 1025 00040000)
>> Jul 20 20:02:05 xd kernel: ACPI: NHLT 0x0000000044BEC000 001B54 (v00 ACRSYS ACRPRDCT 00000002 1025 00040000)
>> Jul 20 20:02:05 xd kernel: ACPI: LPIT 0x0000000044BEB000 0000CC (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
>> Jul 20 20:02:05 xd kernel: ACPI: WSMT 0x0000000044BEA000 000028 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BE9000 000B70 (v02 ACRSYS ACRPRDCT 00001000 1025 00040000)
>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BE8000 00012A (v02 ACRSYS ACRPRDCT 00000000 1025 00040000)
>> Jul 20 20:02:05 xd kernel: ACPI: DBGP 0x0000000044BE7000 000034 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
>> Jul 20 20:02:05 xd kernel: ACPI: DBG2 0x0000000044BE6000 000054 (v00 ACRSYS ACRPRDCT 00000002 1025 00040000)
>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BDF000 006BA9 (v01 ACRSYS ACRPRDCT 00001000 1025 00040000)
>> Jul 20 20:02:05 xd kernel: ACPI: HPET 0x0000000044BDD000 000038 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
>> Jul 20 20:02:05 xd kernel: ACPI: APIC 0x0000000044BDC000 00012C (v04 ACRSYS ACRPRDCT 00000002 1025 00040000)
>> Jul 20 20:02:05 xd kernel: ACPI: MCFG 0x0000000044BFD000 00003C (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044B80000 000C78 (v02 ACRSYS ACRPRDCT 00000002 1025 00040000)
>> Jul 20 20:02:05 xd kernel: ACPI: DMAR 0x0000000044B7F000 000088 (v02 ACRSYS ACRPRDCT 00000002 1025 00040000)
>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044B7C000 0020D6 (v01 ACRSYS ACRPRDCT 00001000 1025 00040000)
>> Jul 20 20:02:05 xd kernel: ACPI: UEFI 0x0000000044A5B000 00063A (v01 ACRSYS ACRPRDCT 00000000 1025 00040000)
>> Jul 20 20:02:05 xd kernel: ACPI: UEFI 0x0000000044A5A000 00005C (v01 ACRSYS ACRPRDCT 00000000 1025 00040000)
>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044B7B000 000985 (v02 ACRSYS ACRPRDCT 00001000 1025 00040000)
>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044B7A000 0000F8 (v01 ACRSYS ACRPRDCT 00001000 1025 00040000)
>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044B79000 000835 (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
>> Jul 20 20:02:05 xd kernel: ACPI: FPDT 0x0000000044B78000 000044 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
>> Jul 20 20:02:05 xd kernel: ACPI: PTDT 0x0000000044B76000 000CFE (v00 ACRSYS ACRPRDCT 00000005 1025 00040000)
>> Jul 20 20:02:05 xd kernel: ACPI: BGRT 0x0000000044B77000 000038 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
>> Jul 20 20:02:05 xd kernel: ACPI: Reserving FACP table memory at [mem 0x44bde000-0x44bde113]
>> Jul 20 20:02:05 xd kernel: ACPI: Reserving DSDT table memory at [mem 0x44b81000-0x44bda947]
>> Jul 20 20:02:05 xd kernel: ACPI: Reserving FACS table memory at [mem 0x44aa2000-0x44aa203f]
>> Jul 20 20:02:05 xd kernel: ACPI: Reserving UEFI table memory at [mem 0x44b2e000-0x44b2e235]
>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bfa000-0x44bfc55b]
>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bf9000-0x44bf9104]
>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bf6000-0x44bf8136]
>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bf2000-0x44bf52ff]
>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bf1000-0x44bf177a]
>> Jul 20 20:02:05 xd kernel: ACPI: Reserving TPM2 table memory at [mem 0x44bf0000-0x44bf004b]
>> Jul 20 20:02:05 xd kernel: ACPI: Reserving MSDM table memory at [mem 0x44bef000-0x44bef054]
>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bee000-0x44beed01]
>> Jul 20 20:02:05 xd kernel: ACPI: Reserving NHLT table memory at [mem 0x44bec000-0x44bedb53]
>> Jul 20 20:02:05 xd kernel: ACPI: Reserving LPIT table memory at [mem 0x44beb000-0x44beb0cb]
>> Jul 20 20:02:05 xd kernel: ACPI: Reserving WSMT table memory at [mem 0x44bea000-0x44bea027]
>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44be9000-0x44be9b6f]
>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44be8000-0x44be8129]
>> Jul 20 20:02:05 xd kernel: ACPI: Reserving DBGP table memory at [mem 0x44be7000-0x44be7033]
>> Jul 20 20:02:05 xd kernel: ACPI: Reserving DBG2 table memory at [mem 0x44be6000-0x44be6053]
>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bdf000-0x44be5ba8]
>> Jul 20 20:02:05 xd kernel: ACPI: Reserving HPET table memory at [mem 0x44bdd000-0x44bdd037]
>> Jul 20 20:02:05 xd kernel: ACPI: Reserving APIC table memory at [mem 0x44bdc000-0x44bdc12b]
>> Jul 20 20:02:05 xd kernel: ACPI: Reserving MCFG table memory at [mem 0x44bfd000-0x44bfd03b]
>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b80000-0x44b80c77]
>> Jul 20 20:02:05 xd kernel: ACPI: Reserving DMAR table memory at [mem 0x44b7f000-0x44b7f087]
>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b7c000-0x44b7e0d5]
>> Jul 20 20:02:05 xd kernel: ACPI: Reserving UEFI table memory at [mem 0x44a5b000-0x44a5b639]
>> Jul 20 20:02:05 xd kernel: ACPI: Reserving UEFI table memory at [mem 0x44a5a000-0x44a5a05b]
>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b7b000-0x44b7b984]
>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b7a000-0x44b7a0f7]
>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b79000-0x44b79834]
>> Jul 20 20:02:05 xd kernel: ACPI: Reserving FPDT table memory at [mem 0x44b78000-0x44b78043]
>> Jul 20 20:02:05 xd kernel: ACPI: Reserving PTDT table memory at [mem 0x44b76000-0x44b76cfd]
>> Jul 20 20:02:05 xd kernel: ACPI: Reserving BGRT table memory at [mem 0x44b77000-0x44b77037]
>> Jul 20 20:02:05 xd kernel: ACPI: Local APIC address 0xfee00000
>> Jul 20 20:02:05 xd kernel: No NUMA configuration found
>> Jul 20 20:02:05 xd kernel: Faking a node at [mem 0x0000000000000000-0x00000004b07fffff]
>> Jul 20 20:02:05 xd kernel: NODE_DATA(0) allocated [mem 0x4b07d6000-0x4b07fffff]
>> Jul 20 20:02:05 xd kernel: Zone ranges:
>> Jul 20 20:02:05 xd kernel: DMA [mem 0x0000000000001000-0x0000000000ffffff]
>> Jul 20 20:02:05 xd kernel: DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
>> Jul 20 20:02:05 xd kernel: Normal [mem 0x0000000100000000-0x00000004b07fffff]
>> Jul 20 20:02:05 xd kernel: Device empty
>> Jul 20 20:02:05 xd kernel: Movable zone start for each node
>> Jul 20 20:02:05 xd kernel: Early memory node ranges
>> Jul 20 20:02:05 xd kernel: node 0: [mem 0x0000000000001000-0x000000000009efff]
>> Jul 20 20:02:05 xd kernel: node 0: [mem 0x0000000000100000-0x000000003fd98fff]
>> Jul 20 20:02:05 xd kernel: node 0: [mem 0x0000000040699000-0x00000000424aefff]
>> Jul 20 20:02:05 xd kernel: node 0: [mem 0x0000000044bff000-0x0000000044bfffff]
>> Jul 20 20:02:05 xd kernel: node 0: [mem 0x0000000100000000-0x00000004b07fffff]
>> Jul 20 20:02:05 xd kernel: Initmem setup node 0 [mem 0x0000000000001000-0x00000004b07fffff]
>> Jul 20 20:02:05 xd kernel: On node 0 totalpages: 4137806
>> Jul 20 20:02:05 xd kernel: DMA zone: 64 pages used for memmap
>> Jul 20 20:02:05 xd kernel: DMA zone: 25 pages reserved
>> Jul 20 20:02:05 xd kernel: DMA zone: 3998 pages, LIFO batch:0
>> Jul 20 20:02:05 xd kernel: DMA32 zone: 4143 pages used for memmap
>> Jul 20 20:02:05 xd kernel: DMA32 zone: 265136 pages, LIFO batch:63
>> Jul 20 20:02:05 xd kernel: Normal zone: 60448 pages used for memmap
>> Jul 20 20:02:05 xd kernel: Normal zone: 3868672 pages, LIFO batch:63
>> Jul 20 20:02:05 xd kernel: On node 0, zone DMA: 1 pages in unavailable ranges
>> Jul 20 20:02:05 xd kernel: On node 0, zone DMA: 97 pages in unavailable ranges
>> Jul 20 20:02:05 xd kernel: On node 0, zone DMA32: 2304 pages in unavailable ranges
>> Jul 20 20:02:05 xd kernel: On node 0, zone DMA32: 10064 pages in unavailable ranges
>> Jul 20 20:02:05 xd kernel: On node 0, zone Normal: 13312 pages in unavailable ranges
>> Jul 20 20:02:05 xd kernel: On node 0, zone Normal: 30720 pages in unavailable ranges
>> Jul 20 20:02:05 xd kernel: Reserving Intel graphics memory at [mem 0x4b800000-0x4f7fffff]
>> Jul 20 20:02:05 xd kernel: ACPI: PM-Timer IO Port: 0x1808
>> Jul 20 20:02:05 xd kernel: ACPI: Local APIC address 0xfee00000
>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
>> Jul 20 20:02:05 xd kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
>> Jul 20 20:02:05 xd kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
>> Jul 20 20:02:05 xd kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
>> Jul 20 20:02:05 xd kernel: ACPI: IRQ0 used by override.
>> Jul 20 20:02:05 xd kernel: ACPI: IRQ9 used by override.
>> Jul 20 20:02:05 xd kernel: Using ACPI (MADT) for SMP configuration information
>> Jul 20 20:02:05 xd kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
>> Jul 20 20:02:05 xd kernel: e820: update [mem 0x3bf6a000-0x3c05dfff] usable ==> reserved
>> Jul 20 20:02:05 xd kernel: TSC deadline timer available
>> Jul 20 20:02:05 xd kernel: smpboot: Allowing 8 CPUs, 0 hotplug CPUs
>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x3bee5000-0x3bee7fff]
>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x3bf68000-0x3bf68fff]
>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x3bf6a000-0x3c05dfff]
>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x3fd99000-0x40698fff]
>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x424af000-0x4287efff]
>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x4287f000-0x442fefff]
>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x442ff000-0x44b2efff]
>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x44b2f000-0x44bfefff]
>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x44c00000-0x48ffffff]
>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x49000000-0x49dfffff]
>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x49e00000-0x4f7fffff]
>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x4f800000-0xbfffffff]
>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xc0000000-0xcfffffff]
>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xd0000000-0xfe00ffff]
>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xfe010000-0xfe010fff]
>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xfed1ffff]
>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xfed7ffff]
>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xff4fffff]
>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xff500000-0xffffffff]
>> Jul 20 20:02:05 xd kernel: [mem 0x4f800000-0xbfffffff] available for PCI devices
>> Jul 20 20:02:05 xd kernel: Booting paravirtualized kernel on bare hardware
>> Jul 20 20:02:05 xd kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
>> Jul 20 20:02:05 xd kernel: setup_percpu: NR_CPUS:8192 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
>> Jul 20 20:02:05 xd kernel: percpu: Embedded 58 pages/cpu s200664 r8192 d28712 u262144
>> Jul 20 20:02:05 xd kernel: pcpu-alloc: s200664 r8192 d28712 u262144 alloc=1*2097152
>> Jul 20 20:02:05 xd kernel: pcpu-alloc: [0] 0 1 2 3 4 5 6 7
>> Jul 20 20:02:05 xd kernel: Built 1 zonelists, mobility grouping on. Total pages: 4073126
>> Jul 20 20:02:05 xd kernel: Policy zone: Normal
>> Jul 20 20:02:05 xd kernel: Kernel command line: BOOT_IMAGE=/vmlinuz-5.10.0-16-amd64 root=UUID=0dc2ba0c-97d5-4786-bc97-4d13279afe0f ro quiet
>> Jul 20 20:02:05 xd kernel: Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
>> Jul 20 20:02:05 xd kernel: Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
>> Jul 20 20:02:05 xd kernel: mem auto-init: stack:off, heap alloc:on, heap free:off
>> Jul 20 20:02:05 xd kernel: Memory: 1010444K/16551224K available (12295K kernel code, 2536K rwdata, 7568K rodata, 2424K init, 3680K bss, 520984K reserved, 0K cma-reserved)
>> Jul 20 20:02:05 xd kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
>> Jul 20 20:02:05 xd kernel: ftrace: allocating 36455 entries in 143 pages
>> Jul 20 20:02:05 xd kernel: ftrace: allocated 143 pages with 5 groups
>> Jul 20 20:02:05 xd kernel: rcu: Hierarchical RCU implementation.
>> Jul 20 20:02:05 xd kernel: rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=8.
>> Jul 20 20:02:05 xd kernel: Rude variant of Tasks RCU enabled.
>> Jul 20 20:02:05 xd kernel: Tracing variant of Tasks RCU enabled.
>> Jul 20 20:02:05 xd kernel: rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
>> Jul 20 20:02:05 xd kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
>> Jul 20 20:02:05 xd kernel: NR_IRQS: 524544, nr_irqs: 2048, preallocated irqs: 16
>> Jul 20 20:02:05 xd kernel: random: crng init done
>> Jul 20 20:02:05 xd kernel: Console: colour dummy device 80x25
>> Jul 20 20:02:05 xd kernel: printk: console [tty0] enabled
>> Jul 20 20:02:05 xd kernel: ACPI: Core revision 20200925
>> Jul 20 20:02:05 xd kernel: hpet: HPET dysfunctional in PC10. Force disabled.
>> Jul 20 20:02:05 xd kernel: APIC: Switch to symmetric I/O mode setup
>> Jul 20 20:02:05 xd kernel: DMAR: Host address width 39
>> Jul 20 20:02:05 xd kernel: DMAR: DRHD base: 0x000000fed90000 flags: 0x0
>> Jul 20 20:02:05 xd kernel: DMAR: dmar0: reg_base_addr fed90000 ver 4:0 cap 1c0000c40660462 ecap 29a00f0505e
>> Jul 20 20:02:05 xd kernel: DMAR: DRHD base: 0x000000fed91000 flags: 0x1
>> Jul 20 20:02:05 xd kernel: DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
>> Jul 20 20:02:05 xd kernel: DMAR: RMRR base: 0x0000004b000000 end: 0x0000004f7fffff
>> Jul 20 20:02:05 xd kernel: DMAR-IR: IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 1
>> Jul 20 20:02:05 xd kernel: DMAR-IR: HPET id 0 under DRHD base 0xfed91000
>> Jul 20 20:02:05 xd kernel: DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
>> Jul 20 20:02:05 xd kernel: DMAR-IR: Enabled IRQ remapping in x2apic mode
>> Jul 20 20:02:05 xd kernel: x2apic enabled
>> Jul 20 20:02:05 xd kernel: Switched APIC routing to cluster x2apic.
>> Jul 20 20:02:05 xd kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x22df1149949, max_idle_ns: 440795312789 ns
>> Jul 20 20:02:05 xd kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 4838.40 BogoMIPS (lpj=9676800)
>> Jul 20 20:02:05 xd kernel: pid_max: default: 32768 minimum: 301
>> Jul 20 20:02:05 xd kernel: LSM: Security Framework initializing
>> Jul 20 20:02:05 xd kernel: Yama: disabled by default; enable with sysctl kernel.yama.*
>> Jul 20 20:02:05 xd kernel: AppArmor: AppArmor initialized
>> Jul 20 20:02:05 xd kernel: TOMOYO Linux initialized
>> Jul 20 20:02:05 xd kernel: Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
>> Jul 20 20:02:05 xd kernel: Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
>> Jul 20 20:02:05 xd kernel: x86/cpu: User Mode Instruction Prevention (UMIP) activated
>> Jul 20 20:02:05 xd kernel: mce: CPU0: Thermal monitoring enabled (TM1)
>> Jul 20 20:02:05 xd kernel: process: using mwait in idle threads
>> Jul 20 20:02:05 xd kernel: Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
>> Jul 20 20:02:05 xd kernel: Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
>> Jul 20 20:02:05 xd kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
>> Jul 20 20:02:05 xd kernel: Spectre V2 : Mitigation: Enhanced IBRS
>> Jul 20 20:02:05 xd kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
>> Jul 20 20:02:05 xd kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
>> Jul 20 20:02:05 xd kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
>> Jul 20 20:02:05 xd kernel: Freeing SMP alternatives memory: 32K
>> Jul 20 20:02:05 xd kernel: smpboot: CPU0: 11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz (family: 0x6, model: 0x8c, stepping: 0x1)
>> Jul 20 20:02:05 xd kernel: Performance Events: PEBS fmt4+-baseline, AnyThread deprecated, Icelake events, 32-deep LBR, full-width counters, Intel PMU driver.
>> Jul 20 20:02:05 xd kernel: ... version: 5
>> Jul 20 20:02:05 xd kernel: ... bit width: 48
>> Jul 20 20:02:05 xd kernel: ... generic registers: 8
>> Jul 20 20:02:05 xd kernel: ... value mask: 0000ffffffffffff
>> Jul 20 20:02:05 xd kernel: ... max period: 00007fffffffffff
>> Jul 20 20:02:05 xd kernel: ... fixed-purpose events: 4
>> Jul 20 20:02:05 xd kernel: ... event mask: 0001000f000000ff
>> Jul 20 20:02:05 xd kernel: rcu: Hierarchical SRCU implementation.
>> Jul 20 20:02:05 xd kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
>> Jul 20 20:02:05 xd kernel: smp: Bringing up secondary CPUs ...
>> Jul 20 20:02:05 xd kernel: x86: Booting SMP configuration:
>> Jul 20 20:02:05 xd kernel: .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7
>> Jul 20 20:02:05 xd kernel: smp: Brought up 1 node, 8 CPUs
>> Jul 20 20:02:05 xd kernel: smpboot: Max logical packages: 1
>> Jul 20 20:02:05 xd kernel: smpboot: Total of 8 processors activated (38707.20 BogoMIPS)
>> Jul 20 20:02:05 xd kernel: node 0 deferred pages initialised in 20ms
>> Jul 20 20:02:05 xd kernel: devtmpfs: initialized
>> Jul 20 20:02:05 xd kernel: x86/mm: Memory block size: 128MB
>> Jul 20 20:02:05 xd kernel: PM: Registering ACPI NVS region [mem 0x442ff000-0x44b2efff] (8585216 bytes)
>> Jul 20 20:02:05 xd kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
>> Jul 20 20:02:05 xd kernel: futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
>> Jul 20 20:02:05 xd kernel: pinctrl core: initialized pinctrl subsystem
>> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 16
>> Jul 20 20:02:05 xd kernel: audit: initializing netlink subsys (disabled)
>> Jul 20 20:02:05 xd kernel: audit: type=2000 audit(1658343722.028:1): state=initialized audit_enabled=0 res=1
>> Jul 20 20:02:05 xd kernel: thermal_sys: Registered thermal governor 'fair_share'
>> Jul 20 20:02:05 xd kernel: thermal_sys: Registered thermal governor 'bang_bang'
>> Jul 20 20:02:05 xd kernel: thermal_sys: Registered thermal governor 'step_wise'
>> Jul 20 20:02:05 xd kernel: thermal_sys: Registered thermal governor 'user_space'
>> Jul 20 20:02:05 xd kernel: thermal_sys: Registered thermal governor 'power_allocator'
>> Jul 20 20:02:05 xd kernel: cpuidle: using governor ladder
>> Jul 20 20:02:05 xd kernel: cpuidle: using governor menu
>> Jul 20 20:02:05 xd kernel: ACPI: bus type PCI registered
>> Jul 20 20:02:05 xd kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
>> Jul 20 20:02:05 xd kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xc0000000-0xcfffffff] (base 0xc0000000)
>> Jul 20 20:02:05 xd kernel: PCI: MMCONFIG at [mem 0xc0000000-0xcfffffff] reserved in E820
>> Jul 20 20:02:05 xd kernel: PCI: Using configuration type 1 for base access
>> Jul 20 20:02:05 xd kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
>> Jul 20 20:02:05 xd kernel: Kprobes globally optimized
>> Jul 20 20:02:05 xd kernel: HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
>> Jul 20 20:02:05 xd kernel: HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
>> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Module Device)
>> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Processor Device)
>> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
>> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Processor Aggregator Device)
>> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Linux-Dell-Video)
>> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
>> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS01._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS01._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS02._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS02._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS03._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS03._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS04._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS04._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS05._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS05._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS06._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS06._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS07._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS07._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS08._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS08._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS09._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS09._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS10._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS10._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS01._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS01._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS02._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS02._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS03._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS03._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS04._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS04._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS05._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS05._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS06._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS06._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>> Jul 20 20:02:05 xd kernel: ACPI: 15 ACPI AML tables successfully acquired and loaded
>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8882135E00 0001C6 (v02 PmRef Cpu0Psd 00003000 INTL 20160422)
>> Jul 20 20:02:05 xd kernel: ACPI: \_SB_.PR00: _OSC native thermal LVT Acked
>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A888213CC00 000386 (v02 PmRef Cpu0Cst 00003001 INTL 20160422)
>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8500BAB000 0005C3 (v02 PmRef Cpu0Ist 00003000 INTL 20160422)
>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A888213FC00 00028B (v02 PmRef Cpu0Hwp 00003000 INTL 20160422)
>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8500F3D000 0008E7 (v02 PmRef ApIst 00003000 INTL 20160422)
>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8500BAC000 00048A (v02 PmRef ApHwp 00003000 INTL 20160422)
>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8500BAF800 0004D4 (v02 PmRef ApPsd 00003000 INTL 20160422)
>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8500BAE000 00048A (v02 PmRef ApCst 00003000 INTL 20160422)
>> Jul 20 20:02:05 xd kernel: ACPI: EC: EC started
>> Jul 20 20:02:05 xd kernel: ACPI: EC: interrupt blocked
>> Jul 20 20:02:05 xd kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
>> Jul 20 20:02:05 xd kernel: ACPI: \_SB_.PC00.LPCB.EC0_: Boot DSDT EC used to handle transactions
>> Jul 20 20:02:05 xd kernel: ACPI: Interpreter enabled
>> Jul 20 20:02:05 xd kernel: ACPI: (supports S0 S3 S4 S5)
>> Jul 20 20:02:05 xd kernel: ACPI: Using IOAPIC for interrupt routing
>> Jul 20 20:02:05 xd kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
>> Jul 20 20:02:05 xd kernel: ACPI: Enabled 7 GPEs in block 00 to 7F
>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [PCRP] (on)
>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V0PR] (on)
>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V1PR] (on)
>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V2PR] (on)
>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [WRST] (on)
>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V0PR] (on)
>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V1PR] (on)
>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V2PR] (on)
>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V3PR] (on)
>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [FN00] (off)
>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [FN01] (off)
>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [FN02] (off)
>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [FN03] (off)
>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [FN04] (off)
>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [PIN] (off)
>> Jul 20 20:02:05 xd kernel: ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-e0])
>> Jul 20 20:02:05 xd kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
>> Jul 20 20:02:05 xd kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR]
>> Jul 20 20:02:05 xd kernel: PCI host bridge to bus 0000:00
>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [mem 0x4f800000-0xbfffffff window]
>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [bus 00-e0]
>> Jul 20 20:02:05 xd kernel: pci 0000:00:00.0: [8086:9a14] type 00 class 0x060000
>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: [8086:9a49] type 00 class 0x030000
>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: reg 0x10: [mem 0x6014000000-0x6014ffffff 64bit]
>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: reg 0x18: [mem 0x4000000000-0x400fffffff 64bit pref]
>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: reg 0x20: [io 0x5000-0x503f]
>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: BAR 2: assigned to efifb
>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: DMAR: Skip IOMMU disabling for graphics
>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: reg 0x344: [mem 0x00000000-0x00ffffff 64bit]
>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: VF(n) BAR0 space: [mem 0x00000000-0x06ffffff 64bit] (contains BAR0 for 7 VFs)
>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: reg 0x34c: [mem 0x00000000-0x1fffffff 64bit pref]
>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: VF(n) BAR2 space: [mem 0x00000000-0xdfffffff 64bit pref] (contains BAR2 for 7 VFs)
>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: [8086:9a09] type 01 class 0x060400
>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: PTM enabled (root), 4ns granularity
>> Jul 20 20:02:05 xd kernel: pci 0000:00:08.0: [8086:9a11] type 00 class 0x088000
>> Jul 20 20:02:05 xd kernel: pci 0000:00:08.0: reg 0x10: [mem 0x601540f000-0x601540ffff 64bit]
>> Jul 20 20:02:05 xd kernel: pci 0000:00:0e.0: [8086:9a0b] type 00 class 0x010400
>> Jul 20 20:02:05 xd kernel: pci 0000:00:0e.0: reg 0x10: [mem 0x6012000000-0x6013ffffff 64bit]
>> Jul 20 20:02:05 xd kernel: pci 0000:00:0e.0: reg 0x18: [mem 0x50000000-0x51ffffff]
>> Jul 20 20:02:05 xd kernel: pci 0000:00:0e.0: reg 0x20: [mem 0x6015300000-0x60153fffff 64bit]
>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.0: [8086:a0ed] type 00 class 0x0c0330
>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.0: reg 0x10: [mem 0x53180000-0x5318ffff 64bit]
>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.2: [8086:a0ef] type 00 class 0x050000
>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.2: reg 0x10: [mem 0x6015404000-0x6015407fff 64bit]
>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.2: reg 0x18: [mem 0x601540e000-0x601540efff 64bit]
>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.0: [8086:a0e8] type 00 class 0x0c8000
>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.3: [8086:a0eb] type 00 class 0x0c8000
>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.3: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
>> Jul 20 20:02:05 xd kernel: pci 0000:00:16.0: [8086:a0e0] type 00 class 0x078000
>> Jul 20 20:02:05 xd kernel: pci 0000:00:16.0: reg 0x10: [mem 0x601540b000-0x601540bfff 64bit]
>> Jul 20 20:02:05 xd kernel: pci 0000:00:16.0: PME# supported from D3hot
>> Jul 20 20:02:05 xd kernel: pci 0000:00:17.0: [8086:09ab] type 00 class 0x088000
>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.0: [8086:a0c5] type 00 class 0x0c8000
>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.1: [8086:a0c6] type 00 class 0x0c8000
>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.1: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: [8086:a0b0] type 01 class 0x060400
>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: PTM enabled (root), 4ns granularity
>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: [8086:a0b1] type 01 class 0x060400
>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: PME# supported from D0 D3hot D3cold
>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: PTM enabled (root), 4ns granularity
>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.0: [8086:a082] type 00 class 0x060100
>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.3: [8086:a0c8] type 00 class 0x040100
>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.3: reg 0x10: [mem 0x6015400000-0x6015403fff 64bit]
>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.3: reg 0x20: [mem 0x6015200000-0x60152fffff 64bit]
>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.3: PME# supported from D3hot D3cold
>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.4: [8086:a0a3] type 00 class 0x0c0500
>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.4: reg 0x10: [mem 0x6015408000-0x60154080ff 64bit]
>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.4: reg 0x20: [io 0xefa0-0xefbf]
>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.5: [8086:a0a4] type 00 class 0x0c8000
>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.5: reg 0x10: [mem 0xfe010000-0xfe010fff]
>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: [10de:1f97] type 00 class 0x030200
>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: reg 0x10: [mem 0x52000000-0x52ffffff]
>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: reg 0x14: [mem 0x6000000000-0x600fffffff 64bit pref]
>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: reg 0x1c: [mem 0x6010000000-0x6011ffffff 64bit pref]
>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: reg 0x24: [io 0x4000-0x407f]
>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: 63.012 Gb/s available PCIe bandwidth, limited by 16.0 GT/s PCIe x4 link at 0000:00:06.0 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: PCI bridge to [bus 01]
>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [io 0x4000-0x4fff]
>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [mem 0x52000000-0x52ffffff]
>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [mem 0x6000000000-0x6011ffffff 64bit pref]
>> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000
>> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: reg 0x10: [io 0x3000-0x30ff]
>> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: reg 0x18: [mem 0x53004000-0x53004fff 64bit]
>> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: reg 0x20: [mem 0x53000000-0x53003fff 64bit]
>> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: supports D1 D2
>> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: PCI bridge to [bus 02]
>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: bridge window [io 0x3000-0x3fff]
>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: bridge window [mem 0x53000000-0x530fffff]
>> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: [14c3:7961] type 00 class 0x028000
>> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: reg 0x10: [mem 0x6015000000-0x60150fffff 64bit pref]
>> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: reg 0x18: [mem 0x6015100000-0x6015103fff 64bit pref]
>> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: reg 0x20: [mem 0x6015104000-0x6015104fff 64bit pref]
>> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: supports D1 D2
>> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: PCI bridge to [bus 03]
>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: bridge window [mem 0x6015000000-0x60151fffff 64bit pref]
>> Jul 20 20:02:05 xd kernel: ACPI: EC: interrupt unblocked
>> Jul 20 20:02:05 xd kernel: ACPI: EC: event unblocked
>> Jul 20 20:02:05 xd kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
>> Jul 20 20:02:05 xd kernel: ACPI: EC: GPE=0x6e
>> Jul 20 20:02:05 xd kernel: ACPI: \_SB_.PC00.LPCB.EC0_: Boot DSDT EC initialization complete
>> Jul 20 20:02:05 xd kernel: ACPI: \_SB_.PC00.LPCB.EC0_: EC: Used to handle transactions and events
>> Jul 20 20:02:05 xd kernel: iommu: Default domain type: Translated
>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: vgaarb: setting as boot VGA device
>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: vgaarb: bridge control possible
>> Jul 20 20:02:05 xd kernel: vgaarb: loaded
>> Jul 20 20:02:05 xd kernel: EDAC MC: Ver: 3.0.0
>> Jul 20 20:02:05 xd kernel: Registered efivars operations
>> Jul 20 20:02:05 xd kernel: NetLabel: Initializing
>> Jul 20 20:02:05 xd kernel: NetLabel: domain hash size = 128
>> Jul 20 20:02:05 xd kernel: NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
>> Jul 20 20:02:05 xd kernel: NetLabel: unlabeled traffic allowed by default
>> Jul 20 20:02:05 xd kernel: PCI: Using ACPI for IRQ routing
>> Jul 20 20:02:05 xd kernel: PCI: pci_cache_line_size set to 64 bytes
>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.5: can't claim BAR 0 [mem 0xfe010000-0xfe010fff]: no compatible bridge window
>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x3bee5000-0x3bffffff]
>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x3bf68000-0x3bffffff]
>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x3bf6a000-0x3bffffff]
>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x3fd99000-0x3fffffff]
>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x424af000-0x43ffffff]
>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x44c00000-0x47ffffff]
>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x4b0800000-0x4b3ffffff]
>> Jul 20 20:02:05 xd kernel: clocksource: Switched to clocksource tsc-early
>> Jul 20 20:02:05 xd kernel: VFS: Disk quotas dquot_6.6.0
>> Jul 20 20:02:05 xd kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
>> Jul 20 20:02:05 xd kernel: AppArmor: AppArmor Filesystem Enabled
>> Jul 20 20:02:05 xd kernel: pnp: PnP ACPI init
>> Jul 20 20:02:05 xd kernel: system 00:00: [io 0x0680-0x069f] has been reserved
>> Jul 20 20:02:05 xd kernel: system 00:00: [io 0x164e-0x164f] has been reserved
>> Jul 20 20:02:05 xd kernel: system 00:00: [io 0xfd60-0xfd63] has been reserved
>> Jul 20 20:02:05 xd kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
>> Jul 20 20:02:05 xd kernel: pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
>> Jul 20 20:02:05 xd kernel: system 00:02: [io 0x1854-0x1857] has been reserved
>> Jul 20 20:02:05 xd kernel: system 00:02: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
>> Jul 20 20:02:05 xd kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0303 (active)
>> Jul 20 20:02:05 xd kernel: pnp 00:04: disabling [mem 0xc0000000-0xcfffffff] because it overlaps 0000:00:02.0 BAR 9 [mem 0x00000000-0xdfffffff 64bit pref]
>> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfedc0000-0xfedc7fff] has been reserved
>> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfeda0000-0xfeda0fff] has been reserved
>> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfeda1000-0xfeda1fff] has been reserved
>> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfed20000-0xfed7ffff] could not be reserved
>> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfed90000-0xfed93fff] could not be reserved
>> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfed45000-0xfed8ffff] could not be reserved
>> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfee00000-0xfeefffff] has been reserved
>> Jul 20 20:02:05 xd kernel: system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
>> Jul 20 20:02:05 xd kernel: system 00:05: [io 0x1800-0x18fe] could not be reserved
>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfe000000-0xfe01ffff] could not be reserved
>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfe04c000-0xfe04ffff] has been reserved
>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfe050000-0xfe0affff] has been reserved
>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfe0d0000-0xfe0fffff] has been reserved
>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfe200000-0xfe7fffff] has been reserved
>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xff000000-0xffffffff] could not be reserved
>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfd000000-0xfd68ffff] has been reserved
>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfd6b0000-0xfd6cffff] has been reserved
>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfd6f0000-0xfdffffff] has been reserved
>> Jul 20 20:02:05 xd kernel: system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
>> Jul 20 20:02:05 xd kernel: system 00:06: [io 0x2000-0x20fe] has been reserved
>> Jul 20 20:02:05 xd kernel: system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
>> Jul 20 20:02:05 xd kernel: system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
>> Jul 20 20:02:05 xd kernel: pnp: PnP ACPI: found 8 devices
>> Jul 20 20:02:05 xd kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
>> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 2
>> Jul 20 20:02:05 xd kernel: IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
>> Jul 20 20:02:05 xd kernel: tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
>> Jul 20 20:02:05 xd kernel: TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
>> Jul 20 20:02:05 xd kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
>> Jul 20 20:02:05 xd kernel: TCP: Hash tables configured (established 131072 bind 65536)
>> Jul 20 20:02:05 xd kernel: UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
>> Jul 20 20:02:05 xd kernel: UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
>> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 1
>> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 44
>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: max bus depth: 1 pci_try_num: 2
>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: BAR 9: assigned [mem 0x4020000000-0x40ffffffff 64bit pref]
>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: BAR 7: assigned [mem 0x4010000000-0x4016ffffff 64bit]
>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.0: BAR 0: assigned [mem 0x4017000000-0x4017000fff 64bit]
>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.3: BAR 0: assigned [mem 0x4017001000-0x4017001fff 64bit]
>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.0: BAR 0: assigned [mem 0x4017002000-0x4017002fff 64bit]
>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.1: BAR 0: assigned [mem 0x4017003000-0x4017003fff 64bit]
>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.5: BAR 0: assigned [mem 0x4f800000-0x4f800fff]
>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: BAR 6: no space for [mem size 0x00080000 pref]
>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: BAR 6: failed to assign [mem size 0x00080000 pref]
>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: PCI bridge to [bus 01]
>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [io 0x4000-0x4fff]
>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [mem 0x52000000-0x52ffffff]
>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [mem 0x6000000000-0x6011ffffff 64bit pref]
>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: PCI bridge to [bus 02]
>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: bridge window [io 0x3000-0x3fff]
>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: bridge window [mem 0x53000000-0x530fffff]
>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: PCI bridge to [bus 03]
>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: bridge window [mem 0x6015000000-0x60151fffff 64bit pref]
>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: resource 7 [mem 0x4f800000-0xbfffffff window]
>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: resource 8 [mem 0x4000000000-0x7fffffffff window]
>> Jul 20 20:02:05 xd kernel: pci_bus 0000:01: resource 0 [io 0x4000-0x4fff]
>> Jul 20 20:02:05 xd kernel: pci_bus 0000:01: resource 1 [mem 0x52000000-0x52ffffff]
>> Jul 20 20:02:05 xd kernel: pci_bus 0000:01: resource 2 [mem 0x6000000000-0x6011ffffff 64bit pref]
>> Jul 20 20:02:05 xd kernel: pci_bus 0000:02: resource 0 [io 0x3000-0x3fff]
>> Jul 20 20:02:05 xd kernel: pci_bus 0000:02: resource 1 [mem 0x53000000-0x530fffff]
>> Jul 20 20:02:05 xd kernel: pci_bus 0000:03: resource 2 [mem 0x6015000000-0x60151fffff 64bit pref]
>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
>> Jul 20 20:02:05 xd kernel: PCI: CLS 64 bytes, default 64
>> Jul 20 20:02:05 xd kernel: Trying to unpack rootfs image as initramfs...
>> Jul 20 20:02:05 xd kernel: Freeing initrd memory: 47452K
>> Jul 20 20:02:05 xd kernel: DMAR: No ATSR found
>> Jul 20 20:02:05 xd kernel: DMAR: dmar0: Using Queued invalidation
>> Jul 20 20:02:05 xd kernel: DMAR: dmar1: Using Queued invalidation
>> Jul 20 20:02:05 xd kernel: pci 0000:00:00.0: Adding to iommu group 0
>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: Adding to iommu group 1
>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: Adding to iommu group 2
>> Jul 20 20:02:05 xd kernel: pci 0000:00:08.0: Adding to iommu group 3
>> Jul 20 20:02:05 xd kernel: pci 0000:00:0e.0: Adding to iommu group 4
>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.0: Adding to iommu group 5
>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.2: Adding to iommu group 5
>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.0: Adding to iommu group 6
>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.3: Adding to iommu group 6
>> Jul 20 20:02:05 xd kernel: pci 0000:00:16.0: Adding to iommu group 7
>> Jul 20 20:02:05 xd kernel: pci 0000:00:17.0: Adding to iommu group 8
>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.0: Adding to iommu group 9
>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.1: Adding to iommu group 9
>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: Adding to iommu group 10
>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: Adding to iommu group 11
>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.0: Adding to iommu group 12
>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.3: Adding to iommu group 12
>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.4: Adding to iommu group 12
>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.5: Adding to iommu group 12
>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: Adding to iommu group 13
>> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: Adding to iommu group 14
>> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: Adding to iommu group 15
>> Jul 20 20:02:05 xd kernel: DMAR: Intel(R) Virtualization Technology for Directed I/O
>> Jul 20 20:02:05 xd kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
>> Jul 20 20:02:05 xd kernel: software IO TLB: mapped [mem 0x0000000037663000-0x000000003b663000] (64MB)
>> Jul 20 20:02:05 xd kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x22df1149949, max_idle_ns: 440795312789 ns
>> Jul 20 20:02:05 xd kernel: clocksource: Switched to clocksource tsc
>> Jul 20 20:02:05 xd kernel: Initialise system trusted keyrings
>> Jul 20 20:02:05 xd kernel: Key type blacklist registered
>> Jul 20 20:02:05 xd kernel: workingset: timestamp_bits=36 max_order=22 bucket_order=0
>> Jul 20 20:02:05 xd kernel: zbud: loaded
>> Jul 20 20:02:05 xd kernel: integrity: Platform Keyring initialized
>> Jul 20 20:02:05 xd kernel: Key type asymmetric registered
>> Jul 20 20:02:05 xd kernel: Asymmetric key parser 'x509' registered
>> Jul 20 20:02:05 xd kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
>> Jul 20 20:02:05 xd kernel: io scheduler mq-deadline registered
>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:06.0: PME: Signaling with IRQ 122
>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:06.0: AER: enabled with IRQ 122
>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:06.0: DPC: enabled with IRQ 122
>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:06.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.0: PME: Signaling with IRQ 123
>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.0: AER: enabled with IRQ 123
>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.0: DPC: enabled with IRQ 123
>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.1: PME: Signaling with IRQ 124
>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.1: AER: enabled with IRQ 124
>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.1: DPC: enabled with IRQ 124
>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.1: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
>> Jul 20 20:02:05 xd kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
>> Jul 20 20:02:05 xd kernel: efifb: probing for efifb
>> Jul 20 20:02:05 xd kernel: efifb: framebuffer at 0x4000000000, using 8128k, total 8128k
>> Jul 20 20:02:05 xd kernel: efifb: mode is 1920x1080x32, linelength=7680, pages=1
>> Jul 20 20:02:05 xd kernel: efifb: scrolling: redraw
>> Jul 20 20:02:05 xd kernel: efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
>> Jul 20 20:02:05 xd kernel: Console: switching to colour frame buffer device 240x67
>> Jul 20 20:02:05 xd kernel: fb0: EFI VGA frame buffer device
>> Jul 20 20:02:05 xd kernel: intel_idle: MWAIT substates: 0x11121020
>> Jul 20 20:02:05 xd kernel: Monitor-Mwait will be used to enter C-1 state
>> Jul 20 20:02:05 xd kernel: Monitor-Mwait will be used to enter C-2 state
>> Jul 20 20:02:05 xd kernel: Monitor-Mwait will be used to enter C-3 state
>> Jul 20 20:02:05 xd kernel: ACPI: \_SB_.PR00: Found 3 idle states
>> Jul 20 20:02:05 xd kernel: intel_idle: v0.5.1 model 0x8C
>> Jul 20 20:02:05 xd kernel: intel_idle: Local APIC timer is reliable in all C-states
>> Jul 20 20:02:05 xd kernel: thermal LNXTHERM:00: registered as thermal_zone0
>> Jul 20 20:02:05 xd kernel: ACPI: Thermal Zone [TZ00] (28 C)
>> Jul 20 20:02:05 xd kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
>> Jul 20 20:02:05 xd kernel: hpet_acpi_add: no address or irqs in _CRS
>> Jul 20 20:02:05 xd kernel: Linux agpgart interface v0.103
>> Jul 20 20:02:05 xd kernel: AMD-Vi: AMD IOMMUv2 functionality not available on this system - This is not a bug.
>> Jul 20 20:02:05 xd kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
>> Jul 20 20:02:05 xd kernel: i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
>> Jul 20 20:02:05 xd kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
>> Jul 20 20:02:05 xd kernel: mousedev: PS/2 mouse device common for all mice
>> Jul 20 20:02:05 xd kernel: rtc_cmos 00:01: RTC can wake from S4
>> Jul 20 20:02:05 xd kernel: rtc_cmos 00:01: registered as rtc0
>> Jul 20 20:02:05 xd kernel: rtc_cmos 00:01: setting system clock to 2022-07-20T19:02:03 UTC (1658343723)
>> Jul 20 20:02:05 xd kernel: rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram
>> Jul 20 20:02:05 xd kernel: intel_pstate: Intel P-state driver initializing
>> Jul 20 20:02:05 xd kernel: intel_pstate: HWP enabled
>> Jul 20 20:02:05 xd kernel: ledtrig-cpu: registered to indicate activity on CPUs
>> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 10
>> Jul 20 20:02:05 xd kernel: Segment Routing with IPv6
>> Jul 20 20:02:05 xd kernel: mip6: Mobile IPv6
>> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 17
>> Jul 20 20:02:05 xd kernel: mpls_gso: MPLS GSO support
>> Jul 20 20:02:05 xd kernel: microcode: sig=0x806c1, pf=0x80, revision=0x8a
>> Jul 20 20:02:05 xd kernel: microcode: Microcode Update Driver: v2.2.
>> Jul 20 20:02:05 xd kernel: resctrl: L2 allocation detected
>> Jul 20 20:02:05 xd kernel: resctrl: L2DATA allocation detected
>> Jul 20 20:02:05 xd kernel: resctrl: L2CODE allocation detected
>> Jul 20 20:02:05 xd kernel: IPI shorthand broadcast: enabled
>> Jul 20 20:02:05 xd kernel: sched_clock: Marking stable (836570439, 6379917)->(856451458, -13501102)
>> Jul 20 20:02:05 xd kernel: registered taskstats version 1
>> Jul 20 20:02:05 xd kernel: Loading compiled-in X.509 certificates
>> Jul 20 20:02:05 xd kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
>> Jul 20 20:02:05 xd kernel: Loaded X.509 cert 'Debian Secure Boot CA: 6ccece7e4c6c0d1f6149f3dd27dfcc5cbb419ea1'
>> Jul 20 20:02:05 xd kernel: Loaded X.509 cert 'Debian Secure Boot Signer 2021 - linux: 4b6ef5abca669825178e052c84667ccbc0531f8c'
>> Jul 20 20:02:05 xd kernel: zswap: loaded using pool lzo/zbud
>> Jul 20 20:02:05 xd kernel: Key type ._fscrypt registered
>> Jul 20 20:02:05 xd kernel: Key type .fscrypt registered
>> Jul 20 20:02:05 xd kernel: Key type fscrypt-provisioning registered
>> Jul 20 20:02:05 xd kernel: AppArmor: AppArmor sha1 policy hashing enabled
>> Jul 20 20:02:05 xd kernel: Freeing unused kernel image (initmem) memory: 2424K
>> Jul 20 20:02:05 xd kernel: Write protecting the kernel read-only data: 22528k
>> Jul 20 20:02:05 xd kernel: Freeing unused kernel image (text/rodata gap) memory: 2040K
>> Jul 20 20:02:05 xd kernel: Freeing unused kernel image (rodata/data gap) memory: 624K
>> Jul 20 20:02:05 xd kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
>> Jul 20 20:02:05 xd kernel: Run /init as init process
>> Jul 20 20:02:05 xd kernel: with arguments:
>> Jul 20 20:02:05 xd kernel: /init
>> Jul 20 20:02:05 xd kernel: with environment:
>> Jul 20 20:02:05 xd kernel: HOME=/
>> Jul 20 20:02:05 xd kernel: TERM=linux
>> Jul 20 20:02:05 xd kernel: BOOT_IMAGE=/vmlinuz-5.10.0-16-amd64
>> Jul 20 20:02:05 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
>> Jul 20 20:02:05 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
>> Jul 20 20:02:05 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
>> Jul 20 20:02:05 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
>> Jul 20 20:02:05 xd kernel: acpi PNP0C14:03: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
>> Jul 20 20:02:05 xd kernel: acpi PNP0C14:04: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
>> Jul 20 20:02:05 xd kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:21/PNP0C0D:00/input/input1
>> Jul 20 20:02:05 xd kernel: ACPI: Lid Switch [LID0]
>> Jul 20 20:02:05 xd kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2
>> Jul 20 20:02:05 xd kernel: ACPI: Sleep Button [SLPB]
>> Jul 20 20:02:05 xd kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input3
>> Jul 20 20:02:05 xd kernel: battery: ACPI: Battery Slot [BAT1] (battery present)
>> Jul 20 20:02:05 xd kernel: hid: raw HID events driver (C) Jiri Kosina
>> Jul 20 20:02:05 xd kernel: vmd 0000:00:0e.0: PCI host bridge to bus 10000:e0
>> Jul 20 20:02:05 xd kernel: pci_bus 10000:e0: root bus resource [bus e0-ff]
>> Jul 20 20:02:05 xd kernel: pci_bus 10000:e0: root bus resource [mem 0x50000000-0x51ffffff]
>> Jul 20 20:02:05 xd kernel: pci_bus 10000:e0: root bus resource [mem 0x6015302000-0x60153fffff 64bit]
>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: [8086:a0d3] type 00 class 0x010601
>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x10: [mem 0x00000000-0x00001fff]
>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x14: [mem 0x00000000-0x000000ff]
>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x18: [io 0x0000-0x0007]
>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x1c: [io 0x0000-0x0003]
>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x20: [io 0x0000-0x001f]
>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x24: [mem 0x50000000-0x500007ff]
>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: PME# supported from D3hot
>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: Adding to iommu group 4
>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.0: [8086:09ab] type 00 class 0x088000
>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.0: Adding to iommu group 4
>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: [8086:a0bc] type 01 class 0x060400
>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: PME# supported from D0 D3hot D3cold
>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: PTM enabled (root), 4ns granularity
>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: Adding to iommu group 4
>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: Primary bus is hard wired to 0
>> Jul 20 20:02:05 xd kernel: pci 10000:e1:00.0: [2646:500c] type 00 class 0x010802
>> Jul 20 20:02:05 xd kernel: pci 10000:e1:00.0: reg 0x10: [mem 0x50100000-0x50103fff 64bit]
>> Jul 20 20:02:05 xd kernel: pci 10000:e1:00.0: Adding to iommu group 4
>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: PCI bridge to [bus e1]
>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: bridge window [io 0x0000-0x0fff]
>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: bridge window [mem 0x50100000-0x501fffff]
>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: Primary bus is hard wired to 0
>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: BAR 14: assigned [mem 0x50000000-0x500fffff]
>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 0: assigned [mem 0x50100000-0x50101fff]
>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: BAR 13: no space for [io size 0x1000]
>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: BAR 13: failed to assign [io size 0x1000]
>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 5: assigned [mem 0x50102000-0x501027ff]
>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 1: assigned [mem 0x50102800-0x501028ff]
>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 4: no space for [io size 0x0020]
>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 4: failed to assign [io size 0x0020]
>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 2: no space for [io size 0x0008]
>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 2: failed to assign [io size 0x0008]
>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 3: no space for [io size 0x0004]
>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 3: failed to assign [io size 0x0004]
>> Jul 20 20:02:05 xd kernel: pci 10000:e1:00.0: BAR 0: assigned [mem 0x50000000-0x50003fff 64bit]
>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: PCI bridge to [bus e1]
>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: bridge window [mem 0x50000000-0x500fffff]
>> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: can't derive routing for PCI INT A
>> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: PCI INT A: no GSI
>> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: PME: Signaling with IRQ 144
>> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: AER: enabled with IRQ 144
>> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: DPC: enabled with IRQ 144
>> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
>> Jul 20 20:02:05 xd kernel: vmd 0000:00:0e.0: Bound to PCI domain 10000
>> Jul 20 20:02:05 xd kernel: i801_smbus 0000:00:1f.4: SPD Write Disable is set
>> Jul 20 20:02:05 xd kernel: i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
>> Jul 20 20:02:05 xd kernel: i2c i2c-0: 2/2 memory slots populated (from DMI)
>> Jul 20 20:02:05 xd kernel: i2c i2c-0: Successfully instantiated SPD at 0x50
>> Jul 20 20:02:05 xd kernel: r8168: loading out-of-tree module taints kernel.
>> Jul 20 20:02:05 xd kernel: r8168: module verification failed: signature and/or required key missing - tainting kernel
>> Jul 20 20:02:05 xd kernel: r8168 Gigabit Ethernet driver 8.048.03-NAPI loaded
>> Jul 20 20:02:05 xd kernel: ACPI: bus type USB registered
>> Jul 20 20:02:05 xd kernel: usbcore: registered new interface driver usbfs
>> Jul 20 20:02:05 xd kernel: usbcore: registered new interface driver hub
>> Jul 20 20:02:05 xd kernel: usbcore: registered new device driver usb
>> Jul 20 20:02:05 xd kernel: ACPI: Power Button [PWRB]
>> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
>> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
>> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000000009810
>> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
>> Jul 20 20:02:05 xd kernel: r8168: This product is covered by one or more of the following patents: US6,570,884, US6,115,776, and US6,327,625.
>> Jul 20 20:02:05 xd kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
>> Jul 20 20:02:05 xd kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
>> Jul 20 20:02:05 xd kernel: usb usb1: Product: xHCI Host Controller
>> Jul 20 20:02:05 xd kernel: usb usb1: Manufacturer: Linux 5.10.0-16-amd64 xhci-hcd
>> Jul 20 20:02:05 xd kernel: usb usb1: SerialNumber: 0000:00:14.0
>> Jul 20 20:02:05 xd kernel: hub 1-0:1.0: USB hub found
>> Jul 20 20:02:05 xd kernel: hub 1-0:1.0: 12 ports detected
>> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
>> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
>> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
>> Jul 20 20:02:05 xd kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
>> Jul 20 20:02:05 xd kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
>> Jul 20 20:02:05 xd kernel: usb usb2: Product: xHCI Host Controller
>> Jul 20 20:02:05 xd kernel: usb usb2: Manufacturer: Linux 5.10.0-16-amd64 xhci-hcd
>> Jul 20 20:02:05 xd kernel: usb usb2: SerialNumber: 0000:00:14.0
>> Jul 20 20:02:05 xd kernel: hub 2-0:1.0: USB hub found
>> Jul 20 20:02:05 xd kernel: hub 2-0:1.0: 4 ports detected
>> Jul 20 20:02:05 xd kernel: r8168 Copyright (C) 2020 Realtek NIC software team <nicfae@realtek.com>
>> This program comes with ABSOLUTELY NO WARRANTY; for details, please see <http://www.gnu.org/licenses/>.
>> This is free software, and you are welcome to redistribute it under certain conditions; see <http://www.gnu.org/licenses/>.
>> Jul 20 20:02:05 xd kernel: SCSI subsystem initialized
>> Jul 20 20:02:05 xd kernel: intel-lpss 0000:00:15.0: enabling device (0004 -> 0006)
>> Jul 20 20:02:05 xd kernel: idma64 idma64.0: Found Intel integrated DMA 64-bit
>> Jul 20 20:02:05 xd kernel: r8168 0000:02:00.0 enp2s0: renamed from eth0
>> Jul 20 20:02:05 xd kernel: nvme nvme0: pci function 10000:e1:00.0
>> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: can't derive routing for PCI INT A
>> Jul 20 20:02:05 xd kernel: nvme 10000:e1:00.0: PCI INT A: no GSI
>> Jul 20 20:02:05 xd kernel: libata version 3.00 loaded.
>> Jul 20 20:02:05 xd kernel: nvme nvme0: missing or invalid SUBNQN field.
>> Jul 20 20:02:05 xd kernel: nvme nvme0: Shutdown timeout set to 10 seconds
>> Jul 20 20:02:05 xd kernel: nvme nvme0: 8/0/0 default/read/poll queues
>> Jul 20 20:02:05 xd kernel: nvme0n1: p1 p2 p3 p4 p5
>> Jul 20 20:02:05 xd kernel: intel-lpss 0000:00:15.3: enabling device (0004 -> 0006)
>> Jul 20 20:02:05 xd kernel: idma64 idma64.1: Found Intel integrated DMA 64-bit
>> Jul 20 20:02:05 xd kernel: i2c_hid i2c-ELAN0515:01: supply vdd not found, using dummy regulator
>> Jul 20 20:02:05 xd kernel: i2c_hid i2c-ELAN0515:01: supply vddl not found, using dummy regulator
>> Jul 20 20:02:05 xd kernel: intel-lpss 0000:00:19.0: enabling device (0004 -> 0006)
>> Jul 20 20:02:05 xd kernel: idma64 idma64.2: Found Intel integrated DMA 64-bit
>> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: [drm] VT-d active for gfx access
>> Jul 20 20:02:05 xd kernel: checking generic (4000000000 7f0000) vs hw (6014000000 1000000)
>> Jul 20 20:02:05 xd kernel: checking generic (4000000000 7f0000) vs hw (4000000000 10000000)
>> Jul 20 20:02:05 xd kernel: fb0: switching to inteldrmfb from EFI VGA
>> Jul 20 20:02:05 xd kernel: Console: switching to colour dummy device 80x25
>> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: vgaarb: deactivate vga console
>> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
>> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: firmware: direct-loading firmware i915/tgl_dmc_ver2_08.bin
>> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/tgl_dmc_ver2_08.bin (v2.8)
>> Jul 20 20:02:05 xd kernel: intel-lpss 0000:00:19.1: enabling device (0004 -> 0006)
>> Jul 20 20:02:05 xd kernel: idma64 idma64.3: Found Intel integrated DMA 64-bit
>> Jul 20 20:02:05 xd kernel: input: ELAN0515:01 04F3:3142 Mouse as /devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input4
>> Jul 20 20:02:05 xd kernel: input: ELAN0515:01 04F3:3142 Touchpad as /devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input6
>> Jul 20 20:02:05 xd kernel: hid-generic 0018:04F3:3142.0001: input,hidraw0: I2C HID v1.00 Mouse [ELAN0515:01 04F3:3142] on i2c-ELAN0515:01
>> Jul 20 20:02:05 xd kernel: ahci 10000:e0:17.0: version 3.0
>> Jul 20 20:02:05 xd kernel: ahci 10000:e0:17.0: can't derive routing for PCI INT A
>> Jul 20 20:02:05 xd kernel: ahci 10000:e0:17.0: PCI INT A: no GSI
>> Jul 20 20:02:05 xd kernel: ahci 10000:e0:17.0: AHCI 0001.0301 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
>> Jul 20 20:02:05 xd kernel: ahci 10000:e0:17.0: flags: 64bit ncq sntf pm clo only pio slum part deso sadm sds
>> Jul 20 20:02:05 xd kernel: scsi host0: ahci
>> Jul 20 20:02:05 xd kernel: scsi host1: ahci
>> Jul 20 20:02:05 xd kernel: ata1: SATA max UDMA/133 abar m2048@0x50102000 port 0x50102100 irq 158
>> Jul 20 20:02:05 xd kernel: ata2: SATA max UDMA/133 abar m2048@0x50102000 port 0x50102180 irq 158
>> Jul 20 20:02:05 xd kernel: usb 1-7: new full-speed USB device number 2 using xhci_hcd
>> Jul 20 20:02:05 xd kernel: usb 1-7: New USB device found, idVendor=04f3, idProduct=0c4f, bcdDevice= 1.61
>> Jul 20 20:02:05 xd kernel: usb 1-7: New USB device strings: Mfr=1, Product=2, SerialNumber=0
>> Jul 20 20:02:05 xd kernel: usb 1-7: Product: ELAN:Fingerprint
>> Jul 20 20:02:05 xd kernel: usb 1-7: Manufacturer: ELAN
>> Jul 20 20:02:05 xd kernel: ata1: SATA link down (SStatus 0 SControl 300)
>> Jul 20 20:02:05 xd kernel: ata2: SATA link down (SStatus 0 SControl 300)
>> Jul 20 20:02:05 xd kernel: usb 1-8: new high-speed USB device number 3 using xhci_hcd
>> Jul 20 20:02:05 xd kernel: usb 1-8: New USB device found, idVendor=0408, idProduct=a061, bcdDevice= 0.04
>> Jul 20 20:02:05 xd kernel: usb 1-8: New USB device strings: Mfr=1, Product=2, SerialNumber=0
>> Jul 20 20:02:05 xd kernel: usb 1-8: Product: HD User Facing
>> Jul 20 20:02:05 xd kernel: usb 1-8: Manufacturer: SunplusIT Inc
>> Jul 20 20:02:05 xd kernel: usb 1-10: new high-speed USB device number 4 using xhci_hcd
>> Jul 20 20:02:05 xd kernel: usb 1-10: New USB device found, idVendor=04ca, idProduct=3802, bcdDevice= 1.00
>> Jul 20 20:02:05 xd kernel: usb 1-10: New USB device strings: Mfr=5, Product=6, SerialNumber=7
>> Jul 20 20:02:05 xd kernel: usb 1-10: Product: Wireless_Device
>> Jul 20 20:02:05 xd kernel: usb 1-10: Manufacturer: MediaTek Inc.
>> Jul 20 20:02:05 xd kernel: usb 1-10: SerialNumber: 000000000
>> Jul 20 20:02:05 xd kernel: [drm] Initialized i915 1.6.0 20200917 for 0000:00:02.0 on minor 0
>> Jul 20 20:02:05 xd kernel: [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
>> Jul 20 20:02:05 xd kernel: ACPI: Video Device [PEGP] (multi-head: yes rom: no post: no)
>> Jul 20 20:02:05 xd kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/LNXVIDEO:00/input/input7
>> Jul 20 20:02:05 xd kernel: ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
>> Jul 20 20:02:05 xd kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input8
>> Jul 20 20:02:05 xd kernel: fbcon: i915drmfb (fb0) is primary device
>> Jul 20 20:02:05 xd kernel: Console: switching to colour frame buffer device 240x67
>> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
>> Jul 20 20:02:05 xd kernel: PM: Image not found (code -22)
>> Jul 20 20:02:05 xd kernel: EXT4-fs (nvme0n1p3): mounting ext3 file system using the ext4 subsystem
>> Jul 20 20:02:05 xd kernel: EXT4-fs (nvme0n1p3): mounted filesystem with ordered data mode. Opts: (null)
>> Jul 20 20:02:05 xd kernel: Not activating Mandatory Access Control as /sbin/tomoyo-init does not exist.
>> Jul 20 20:02:05 xd systemd[1]: Inserted module 'autofs4'
>> Jul 20 20:02:05 xd systemd[1]: systemd 247.3-7 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=unified)
>> Jul 20 20:02:05 xd systemd[1]: Detected architecture x86-64.
>> Jul 20 20:02:05 xd systemd[1]: Set hostname to <xd>.
>> Jul 20 20:02:05 xd systemd[1]: /lib/systemd/system/plymouth-start.service:16: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed.
>> Jul 20 20:02:05 xd systemd[1]: Queued start job for default target Graphical Interface.
>> Jul 20 20:02:05 xd systemd[1]: Created slice system-getty.slice.
>> Jul 20 20:02:05 xd systemd[1]: Created slice system-modprobe.slice.
>> Jul 20 20:02:05 xd systemd[1]: Created slice system-systemd\x2dfsck.slice.
>> Jul 20 20:02:05 xd systemd[1]: Created slice User and Session Slice.
>> Jul 20 20:02:05 xd systemd[1]: Started Forward Password Requests to Wall Directory Watch.
>> Jul 20 20:02:05 xd systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
>> Jul 20 20:02:05 xd systemd[1]: Reached target User and Group Name Lookups.
>> Jul 20 20:02:05 xd systemd[1]: Reached target Remote File Systems.
>> Jul 20 20:02:05 xd systemd[1]: Reached target Slices.
>> Jul 20 20:02:05 xd systemd[1]: Listening on Device-mapper event daemon FIFOs.
>> Jul 20 20:02:05 xd systemd[1]: Listening on LVM2 poll daemon socket.
>> Jul 20 20:02:05 xd systemd[1]: Listening on Syslog Socket.
>> Jul 20 20:02:05 xd systemd[1]: Listening on fsck to fsckd communication Socket.
>> Jul 20 20:02:05 xd systemd[1]: Listening on initctl Compatibility Named Pipe.
>> Jul 20 20:02:05 xd systemd[1]: Listening on Journal Audit Socket.
>> Jul 20 20:02:05 xd systemd[1]: Listening on Journal Socket (/dev/log).
>> Jul 20 20:02:05 xd systemd[1]: Listening on Journal Socket.
>> Jul 20 20:02:05 xd systemd[1]: Listening on udev Control Socket.
>> Jul 20 20:02:05 xd systemd[1]: Listening on udev Kernel Socket.
>> Jul 20 20:02:05 xd systemd[1]: Mounting Huge Pages File System...
>> Jul 20 20:02:05 xd systemd[1]: Mounting POSIX Message Queue File System...
>> Jul 20 20:02:05 xd systemd[1]: Mounting Kernel Debug File System...
>> Jul 20 20:02:05 xd systemd[1]: Mounting Kernel Trace File System...
>> Jul 20 20:02:05 xd systemd[1]: Finished Availability of block devices.
>> Jul 20 20:02:05 xd systemd[1]: Starting Set the console keyboard layout...
>> Jul 20 20:02:05 xd systemd[1]: Starting Create list of static device nodes for the current kernel...
>> Jul 20 20:02:05 xd systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
>> Jul 20 20:02:05 xd systemd[1]: Starting Load Kernel Module configfs...
>> Jul 20 20:02:05 xd systemd[1]: Starting Load Kernel Module drm...
>> Jul 20 20:02:05 xd systemd[1]: Starting Load Kernel Module fuse...
>> Jul 20 20:02:05 xd systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
>> Jul 20 20:02:05 xd systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
>> Jul 20 20:02:05 xd systemd[1]: Starting Journal Service...
>> Jul 20 20:02:05 xd systemd[1]: Starting Load Kernel Modules...
>> Jul 20 20:02:05 xd systemd[1]: Starting Remount Root and Kernel File Systems...
>> Jul 20 20:02:05 xd systemd[1]: Starting Coldplug All udev Devices...
>> Jul 20 20:02:05 xd systemd[1]: Mounted Huge Pages File System.
>> Jul 20 20:02:05 xd systemd[1]: Mounted POSIX Message Queue File System.
>> Jul 20 20:02:05 xd systemd[1]: Mounted Kernel Debug File System.
>> Jul 20 20:02:05 xd systemd[1]: Mounted Kernel Trace File System.
>> Jul 20 20:02:05 xd systemd[1]: Finished Create list of static device nodes for the current kernel.
>> Jul 20 20:02:05 xd systemd[1]: modprobe@configfs.service: Succeeded.
>> Jul 20 20:02:05 xd systemd[1]: Finished Load Kernel Module configfs.
>> Jul 20 20:02:05 xd systemd[1]: modprobe@drm.service: Succeeded.
>> Jul 20 20:02:05 xd systemd[1]: Finished Load Kernel Module drm.
>> Jul 20 20:02:05 xd systemd[1]: Mounting Kernel Configuration File System...
>> Jul 20 20:02:05 xd systemd[1]: Mounted Kernel Configuration File System.
>> Jul 20 20:02:05 xd kernel: EXT4-fs (nvme0n1p3): re-mounted. Opts: errors=remount-ro
>> Jul 20 20:02:05 xd systemd[1]: Finished Remount Root and Kernel File Systems.
>> Jul 20 20:02:05 xd kernel: fuse: init (API version 7.32)
>> Jul 20 20:02:05 xd systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
>> Jul 20 20:02:05 xd systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped.
>> Jul 20 20:02:05 xd systemd[1]: Starting Load/Save Random Seed...
>> Jul 20 20:02:05 xd systemd[1]: Starting Create System Users...
>> Jul 20 20:02:05 xd systemd[1]: modprobe@fuse.service: Succeeded.
>> Jul 20 20:02:05 xd systemd[1]: Finished Load Kernel Module fuse.
>> Jul 20 20:02:05 xd systemd[1]: Mounting FUSE Control File System...
>> Jul 20 20:02:05 xd systemd[1]: Mounted FUSE Control File System.
>> Jul 20 20:02:05 xd kernel: lp: driver loaded but no devices found
>> Jul 20 20:02:05 xd kernel: ppdev: user-space parallel port driver
>> Jul 20 20:02:05 xd systemd[1]: Finished Load/Save Random Seed.
>> Jul 20 20:02:05 xd systemd[1]: Condition check resulted in First Boot Complete being skipped.
>> Jul 20 20:02:05 xd systemd[1]: Finished Create System Users.
>> Jul 20 20:02:05 xd systemd[1]: Starting Create Static Device Nodes in /dev...
>> Jul 20 20:02:05 xd systemd[1]: Finished Create Static Device Nodes in /dev.
>> Jul 20 20:02:05 xd systemd[1]: Starting Rule-based Manager for Device Events and Files...
>> Jul 20 20:02:05 xd systemd[1]: Finished Set the console keyboard layout.
>> Jul 20 20:02:05 xd systemd[1]: Started Journal Service.
>> Jul 20 20:02:05 xd kernel: nvidia: module license 'NVIDIA' taints kernel.
>> Jul 20 20:02:05 xd kernel: Disabling lock debugging due to kernel taint
>> Jul 20 20:02:05 xd kernel: nvidia-nvlink: Nvlink Core is being initialized, major device number 245
>> Jul 20 20:02:05 xd kernel:
>> Jul 20 20:02:05 xd kernel: nvidia 0000:01:00.0: enabling device (0006 -> 0007)
>> Jul 20 20:02:05 xd kernel: NVRM: loading NVIDIA UNIX x86_64 Kernel Module 470.129.06 Thu May 12 22:52:02 UTC 2022
>> Jul 20 20:02:05 xd kernel: input: Acer Wireless Radio Control as /devices/LNXSYSTM:00/10251229:00/input/input9
>> Jul 20 20:02:05 xd kernel: input: Intel HID events as /devices/platform/INTC1051:00/input/input10
>> Jul 20 20:02:05 xd kernel: intel-hid INTC1051:00: platform supports 5 button array
>> Jul 20 20:02:05 xd kernel: input: Intel HID 5 button array as /devices/platform/INTC1051:00/input/input11
>> Jul 20 20:02:05 xd kernel: intel_pmc_core INT33A1:00: initialized
>> Jul 20 20:02:05 xd kernel: ACPI: AC Adapter [ACAD] (on-line)
>> Jul 20 20:02:05 xd kernel: nvidia-modeset: Loading NVIDIA Kernel Mode Setting Driver for UNIX platforms 470.129.06 Thu May 12 22:42:45 UTC 2022
>> Jul 20 20:02:05 xd kernel: mc: Linux media interface: v0.10
>> Jul 20 20:02:05 xd kernel: mei_me 0000:00:16.0: enabling device (0000 -> 0002)
>> Jul 20 20:02:05 xd kernel: ee1004 0-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
>> Jul 20 20:02:05 xd kernel: [drm] [nvidia-drm] [GPU ID 0x00000100] Loading driver
>> Jul 20 20:02:05 xd kernel: [drm] Initialized nvidia-drm 0.0.0 20160202 for 0000:01:00.0 on minor 1
>> Jul 20 20:02:05 xd kernel: videodev: Linux video capture interface: v2.00
>> Jul 20 20:02:05 xd kernel: iTCO_vendor_support: vendor-support=0
>> Jul 20 20:02:05 xd kernel: iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
>> Jul 20 20:02:05 xd kernel: iTCO_wdt: Found a Intel PCH TCO device (Version=6, TCOBASE=0x0400)
>> Jul 20 20:02:05 xd kernel: iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
>> Jul 20 20:02:05 xd kernel: EXT4-fs (nvme0n1p2): mounting ext2 file system using the ext4 subsystem
>> Jul 20 20:02:05 xd kernel: EXT4-fs (nvme0n1p2): mounted filesystem without journal. Opts: (null)
>> Jul 20 20:02:05 xd kernel: ext2 filesystem being mounted at /boot supports timestamps until 2038 (0x7fffffff)
>> Jul 20 20:02:05 xd kernel: uvcvideo: Found UVC 1.00 device HD User Facing (0408:a061)
>> Jul 20 20:02:05 xd kernel: Adding 31182844k swap on /dev/nvme0n1p4. Priority:-2 extents:1 across:31182844k SSFS
>> Jul 20 20:02:05 xd kernel: input: HD User Facing: HD User Facing as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/input/input12
>> Jul 20 20:02:05 xd kernel: input: PC Speaker as /devices/platform/pcspkr/input/input13
>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=401 comm="apparmor_parser"
>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-oopslash" pid=402 comm="apparmor_parser"
>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=405 comm="apparmor_parser"
>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=405 comm="apparmor_parser"
>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=403 comm="apparmor_parser"
>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=403 comm="apparmor_parser"
>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=403 comm="apparmor_parser"
>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cups-browsed" pid=407 comm="apparmor_parser"
>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.840:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-senddoc" pid=409 comm="apparmor_parser"
>> Jul 20 20:02:05 xd kernel: usbcore: registered new interface driver uvcvideo
>> Jul 20 20:02:05 xd kernel: USB Video Class driver (1.1.1)
>> Jul 20 20:02:05 xd kernel: pstore: Using crash dump compression: deflate
>> Jul 20 20:02:05 xd kernel: input: ELAN0515:01 04F3:3142 Mouse as /devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input14
>> Jul 20 20:02:05 xd kernel: input: ELAN0515:01 04F3:3142 Touchpad as /devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input16
>> Jul 20 20:02:05 xd kernel: hid-multitouch 0018:04F3:3142.0001: input,hidraw0: I2C HID v1.00 Mouse [ELAN0515:01 04F3:3142] on i2c-ELAN0515:01
>> Jul 20 20:02:05 xd kernel: pstore: Registered efi as persistent store backend
>> Jul 20 20:02:05 xd kernel: acer_wmi: Acer Laptop ACPI-WMI Extras
>> Jul 20 20:02:05 xd kernel: acer_wmi: Function bitmap for Communication Button: 0x801
>> Jul 20 20:02:05 xd kernel: input: Acer WMI hotkeys as /devices/virtual/input/input17
>> Jul 20 20:02:05 xd kernel: snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040100
>> Jul 20 20:02:05 xd kernel: snd_hda_intel 0000:00:1f.3: Digital mics found on Skylake+ platform, using SOF driver
>> Jul 20 20:02:05 xd kernel: cryptd: max_cpu_qlen set to 1000
>> Jul 20 20:02:06 xd kernel: AVX2 version of gcm_enc/dec engaged.
>> Jul 20 20:02:06 xd kernel: AES CTR mode by8 optimization enabled
>> Jul 20 20:02:06 xd kernel: resource sanity check: requesting [mem 0xfedc0000-0xfedcdfff], which spans more than pnp 00:04 [mem 0xfedc0000-0xfedc7fff]
>> Jul 20 20:02:06 xd kernel: caller tgl_uncore_imc_freerunning_init_box+0xbb/0x100 [intel_uncore] mapping multiple BARs
>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040100
>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: Digital mics found on Skylake+ platform, using SOF driver
>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: enabling device (0000 -> 0002)
>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if 0x040100
>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: use msi interrupt mode
>> Jul 20 20:02:06 xd kernel: ACPI Warning: \_SB.PC00.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20200925/nsarguments-61)
>> Jul 20 20:02:06 xd kernel: enp2s0: 0xffffbd82000e9000, 08:8f:c3:4f:86:c5, IRQ 145
>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: hda codecs found, mask 5
>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: using HDA machine driver skl_hda_dsp_generic now
>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: DMICs detected in NHLT tables: 2
>> Jul 20 20:02:06 xd kernel: alg: No test for fips(ansi_cprng) (fips_ansi_cprng)
>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: firmware: failed to load intel/sof/sof-tgl.ri (-2)
>> Jul 20 20:02:06 xd kernel: firmware_class: See https://wiki.debian.org/Firmware for information about missing firmware
>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: Direct firmware load for intel/sof/sof-tgl.ri failed with error -2
>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: error: request firmware intel/sof/sof-tgl.ri failed err: -2
>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: error: failed to load DSP firmware -2
>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: error: sof_probe_work failed err: -2
>> Jul 20 20:02:06 xd kernel: Bluetooth: Core ver 2.22
>> Jul 20 20:02:06 xd kernel: NET: Registered protocol family 31
>> Jul 20 20:02:06 xd kernel: Bluetooth: HCI device and connection manager initialized
>> Jul 20 20:02:06 xd kernel: Bluetooth: HCI socket layer initialized
>> Jul 20 20:02:06 xd kernel: Bluetooth: L2CAP socket layer initialized
>> Jul 20 20:02:06 xd kernel: Bluetooth: SCO socket layer initialized
>> Jul 20 20:02:06 xd kernel: usbcore: registered new interface driver btusb
>> Jul 20 20:02:07 xd kernel: intel_rapl_msr: PL4 support detected.
>> Jul 20 20:02:07 xd kernel: intel_rapl_common: Found RAPL domain package
>> Jul 20 20:02:07 xd kernel: intel_rapl_common: Found RAPL domain core
>> Jul 20 20:02:07 xd kernel: intel_rapl_common: Found RAPL domain uncore
>> Jul 20 20:02:07 xd kernel: mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_component_ops [i915])
>> Jul 20 20:02:07 xd kernel: Bluetooth: BNEP (Ethernet Emulation) ver 1.3
>> Jul 20 20:02:07 xd kernel: Bluetooth: BNEP filters: protocol multicast
>> Jul 20 20:02:07 xd kernel: Bluetooth: BNEP socket layer initialized
>> Jul 20 20:02:09 xd kernel: r8168: enp2s0: link up
>> Jul 20 20:02:09 xd kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
>> Jul 20 20:02:09 xd kernel: rfkill: input handler disabled
>> Jul 20 20:02:17 xd kernel: rfkill: input handler enabled
>> Jul 20 20:02:18 xd kernel: rfkill: input handler disabled
>>
>
Re: Boot into Xen on debian11 [ In reply to ]
Another thing that catches my eye are the constant fails from beginning to end on nvme:

nvme nvme0: pci function x
nvme x: PCI INT A: no GSI
Time-outs I/O x QID completion polled
missing or invalid SUBQN field
Timeouts and probes / completion pilled

> On 20 Jul 2022, at 21:19, Bruno <brunoce@kolabnow.com> wrote:
>
> ?Error I can see when I grep from dmesg on initramfs:
>
> pcieport xxx DCP: error containment capabilities: Int Msg #0, …..
>
> And grep fail:
>
> PM-Timer consistency check
>
> pci xxx: Failed to add - pass through or MSI/MSI-X might fail!
> pci xxx: BAR x: failed to assign [io size x]
>
> r8168: module verification failed: signature and or required key missing - tainting kernel
>
>>> On 20 Jul 2022, at 21:03, Chuck Zmudzinski <brchuckz@netscape.net> wrote:
>>>
>>> ?On 7/20/22 3:19 PM, Bruno wrote:
>>>
>>> Hello Leigh. Hello Chuck.
>>>
>>> Thank you again for the support. Unfortunately matters have not moved forward yet.
>>>
>>> I have successfully installed nvidia and the non-free firmware miscellanea, and I have re-generated the initramfs ( update-initramfs -k all -c -v ). But I cannot boot on Xen.
>>>
>>> I also when booting Xen and landing on initramfs prompt, cannot mount /root ( mount -o remount,rw /root ), and I cannot extract a dmesg of that boot process. I am not getting the ACPI error I was getting before, but clearly the errors in mount are ACPI failure.
>>>
>>> Bellow the current journalctl -k -b :
>>>
>>
>> As Leigh said, there should be something like:
>>
>> Jul 20 09:19:36 debian kernel: [ 0.000000] Hypervisor detected: Xen PV
>>
>> In the journal logs, but I don't see it there. See if you can find it in
>> the /var/log/kern.log file to be sure you are posting the right log file.
>> It should be there on the attempt to boot into Linux on Xen.
>>
>> Maybe there is something wrong with your grub configuration. I know
>> you posted it in your first message but I don't see anything
>> terribly wrong there. Are you sure that grub is really booting
>> the 'Debian Linux/GNU with Xen hypervisor' boot option? It
>> should boot that, based on what is in your /boot/grub/grub.cfg
>> file.
>>
>> You can also manually select the option to boot Debian with the
>> Xen hypervisor while the grub boot menu displays.
>>
>> It has been a long time since I installed Xen on Debian,
>> I have been just upgrading my installation that
>> goes all the way back to Debian 7. It may be there
>> is a bug in the current Debian Xen metapackage
>> installation system.
>>
>> I have been planning to try to do a clean install of
>> Xen on Debian 11 to see if it still works right. I will
>> try it later this week and let you know if there is
>> a bug in the Debian Xen installation system.
>>
>> Chuck
>>
>>
>>> Jul 20 20:02:05 xd kernel: Linux version 5.10.0-16-amd64 (debian-kernel@lists.debian.org) (gcc-10 (Debian 10.2.1-6) 10.2.1 20210110, GNU ld (GNU Binutils for Debian) 2.35.2) #1 SMP Debian 5.10.127-1 (2022-06-30)
>>> Jul 20 20:02:05 xd kernel: Command line: BOOT_IMAGE=/vmlinuz-5.10.0-16-amd64 root=UUID=0123abcd ro quiet
>>> Jul 20 20:02:05 xd kernel: x86/split lock detection: warning about user-space split_locks
>>> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
>>> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
>>> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
>>> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask'
>>> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'
>>> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'
>>> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
>>> Jul 20 20:02:05 xd kernel: x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
>>> Jul 20 20:02:05 xd kernel: x86/fpu: xstate_offset[5]: 832, xstate_sizes[5]: 64
>>> Jul 20 20:02:05 xd kernel: x86/fpu: xstate_offset[6]: 896, xstate_sizes[6]: 512
>>> Jul 20 20:02:05 xd kernel: x86/fpu: xstate_offset[7]: 1408, xstate_sizes[7]: 1024
>>> Jul 20 20:02:05 xd kernel: x86/fpu: xstate_offset[9]: 2432, xstate_sizes[9]: 8
>>> Jul 20 20:02:05 xd kernel: x86/fpu: Enabled xstate features 0x2e7, context size is 2440 bytes, using 'compacted' format.
>>> Jul 20 20:02:05 xd kernel: BIOS-provided physical RAM map:
>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000000100000-0x000000003fd98fff] usable
>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x000000003fd99000-0x0000000040698fff] reserved
>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000040699000-0x00000000424aefff] usable
>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000424af000-0x000000004287efff] type 20
>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x000000004287f000-0x00000000442fefff] reserved
>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000442ff000-0x0000000044b2efff] ACPI NVS
>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000044b2f000-0x0000000044bfefff] ACPI data
>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000044bff000-0x0000000044bfffff] usable
>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000044c00000-0x0000000048ffffff] reserved
>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000049e00000-0x000000004f7fffff] reserved
>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000c0000000-0x00000000cfffffff] reserved
>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000fe010000-0x00000000fe010fff] reserved
>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000fed20000-0x00000000fed7ffff] reserved
>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000ff500000-0x00000000ffffffff] reserved
>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000100000000-0x00000004b07fffff] usable
>>> Jul 20 20:02:05 xd kernel: NX (Execute Disable) protection: active
>>> Jul 20 20:02:05 xd kernel: efi: EFI v2.70 by INSYDE Corp.
>>> Jul 20 20:02:05 xd kernel: efi: ACPI=0x44bfe000 ACPI 2.0=0x44bfe014 TPMFinalLog=0x44ac5000 SMBIOS=0x429de000 SMBIOS 3.0=0x429dc000 ESRT=0x3bf68a98 MOKvar=0x3bee5000
>>> Jul 20 20:02:05 xd kernel: secureboot: Secure boot could not be determined (mode 0)
>>> Jul 20 20:02:05 xd kernel: SMBIOS 3.3.0 present.
>>> Jul 20 20:02:05 xd kernel: DMI: Acer Aspire A517-52G/Jasmine_TL, BIOS V1.26 03/14/2022
>>> Jul 20 20:02:05 xd kernel: tsc: Detected 2400.000 MHz processor
>>> Jul 20 20:02:05 xd kernel: tsc: Detected 2419.200 MHz TSC
>>> Jul 20 20:02:05 xd kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
>>> Jul 20 20:02:05 xd kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
>>> Jul 20 20:02:05 xd kernel: last_pfn = 0x4b0800 max_arch_pfn = 0x400000000
>>> Jul 20 20:02:05 xd kernel: MTRR default type: write-back
>>> Jul 20 20:02:05 xd kernel: MTRR fixed ranges enabled:
>>> Jul 20 20:02:05 xd kernel: 00000-9FFFF write-back
>>> Jul 20 20:02:05 xd kernel: A0000-BFFFF uncachable
>>> Jul 20 20:02:05 xd kernel: C0000-FFFFF write-protect
>>> Jul 20 20:02:05 xd kernel: MTRR variable ranges enabled:
>>> Jul 20 20:02:05 xd kernel: 0 base 0080000000 mask 7F80000000 uncachable
>>> Jul 20 20:02:05 xd kernel: 1 base 0060000000 mask 7FE0000000 uncachable
>>> Jul 20 20:02:05 xd kernel: 2 base 0050000000 mask 7FF0000000 uncachable
>>> Jul 20 20:02:05 xd kernel: 3 base 004C000000 mask 7FFC000000 uncachable
>>> Jul 20 20:02:05 xd kernel: 4 base 004B000000 mask 7FFF000000 uncachable
>>> Jul 20 20:02:05 xd kernel: 5 base 4000000000 mask 4000000000 uncachable
>>> Jul 20 20:02:05 xd kernel: 6 disabled
>>> Jul 20 20:02:05 xd kernel: 7 disabled
>>> Jul 20 20:02:05 xd kernel: 8 disabled
>>> Jul 20 20:02:05 xd kernel: 9 disabled
>>> Jul 20 20:02:05 xd kernel: x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
>>> Jul 20 20:02:05 xd kernel: last_pfn = 0x44c00 max_arch_pfn = 0x400000000
>>> Jul 20 20:02:05 xd kernel: esrt: Reserving ESRT space from 0x000000003bf68a98 to 0x000000003bf68ad0.
>>> Jul 20 20:02:05 xd kernel: e820: update [mem 0x3bf68000-0x3bf68fff] usable ==> reserved
>>> Jul 20 20:02:05 xd kernel: e820: update [mem 0x3bee5000-0x3bee7fff] usable ==> reserved
>>> Jul 20 20:02:05 xd kernel: Using GB pages for direct mapping
>>> Jul 20 20:02:05 xd kernel: RAMDISK: [mem 0x32341000-0x35197fff]
>>> Jul 20 20:02:05 xd kernel: ACPI: Early table checksum verification disabled
>>> Jul 20 20:02:05 xd kernel: ACPI: RSDP 0x0000000044BFE014 000024 (v02 ACRSYS)
>>> Jul 20 20:02:05 xd kernel: ACPI: XSDT 0x0000000044BDB188 000124 (v01 ACRSYS ACRPRDCT 00000002 01000013)
>>> Jul 20 20:02:05 xd kernel: ACPI: FACP 0x0000000044BDE000 000114 (v06 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>> Jul 20 20:02:05 xd kernel: ACPI: DSDT 0x0000000044B81000 059948 (v02 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>> Jul 20 20:02:05 xd kernel: ACPI: FACS 0x0000000044AA2000 000040
>>> Jul 20 20:02:05 xd kernel: ACPI: UEFI 0x0000000044B2E000 000236 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BFA000 00255C (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BF9000 000105 (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BF6000 002137 (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BF2000 003300 (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BF1000 00077B (v02 ACRSYS ACRPRDCT 00001000 1025 00040000)
>>> Jul 20 20:02:05 xd kernel: ACPI: TPM2 0x0000000044BF0000 00004C (v04 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>> Jul 20 20:02:05 xd kernel: ACPI: MSDM 0x0000000044BEF000 000055 (v03 ACRSYS ACRPRDCT 00000001 1025 00040000)
>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BEE000 000D02 (v02 ACRSYS ACRPRDCT 00000000 1025 00040000)
>>> Jul 20 20:02:05 xd kernel: ACPI: NHLT 0x0000000044BEC000 001B54 (v00 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>> Jul 20 20:02:05 xd kernel: ACPI: LPIT 0x0000000044BEB000 0000CC (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>> Jul 20 20:02:05 xd kernel: ACPI: WSMT 0x0000000044BEA000 000028 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BE9000 000B70 (v02 ACRSYS ACRPRDCT 00001000 1025 00040000)
>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BE8000 00012A (v02 ACRSYS ACRPRDCT 00000000 1025 00040000)
>>> Jul 20 20:02:05 xd kernel: ACPI: DBGP 0x0000000044BE7000 000034 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>> Jul 20 20:02:05 xd kernel: ACPI: DBG2 0x0000000044BE6000 000054 (v00 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BDF000 006BA9 (v01 ACRSYS ACRPRDCT 00001000 1025 00040000)
>>> Jul 20 20:02:05 xd kernel: ACPI: HPET 0x0000000044BDD000 000038 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>> Jul 20 20:02:05 xd kernel: ACPI: APIC 0x0000000044BDC000 00012C (v04 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>> Jul 20 20:02:05 xd kernel: ACPI: MCFG 0x0000000044BFD000 00003C (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044B80000 000C78 (v02 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>> Jul 20 20:02:05 xd kernel: ACPI: DMAR 0x0000000044B7F000 000088 (v02 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044B7C000 0020D6 (v01 ACRSYS ACRPRDCT 00001000 1025 00040000)
>>> Jul 20 20:02:05 xd kernel: ACPI: UEFI 0x0000000044A5B000 00063A (v01 ACRSYS ACRPRDCT 00000000 1025 00040000)
>>> Jul 20 20:02:05 xd kernel: ACPI: UEFI 0x0000000044A5A000 00005C (v01 ACRSYS ACRPRDCT 00000000 1025 00040000)
>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044B7B000 000985 (v02 ACRSYS ACRPRDCT 00001000 1025 00040000)
>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044B7A000 0000F8 (v01 ACRSYS ACRPRDCT 00001000 1025 00040000)
>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044B79000 000835 (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
>>> Jul 20 20:02:05 xd kernel: ACPI: FPDT 0x0000000044B78000 000044 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>> Jul 20 20:02:05 xd kernel: ACPI: PTDT 0x0000000044B76000 000CFE (v00 ACRSYS ACRPRDCT 00000005 1025 00040000)
>>> Jul 20 20:02:05 xd kernel: ACPI: BGRT 0x0000000044B77000 000038 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving FACP table memory at [mem 0x44bde000-0x44bde113]
>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving DSDT table memory at [mem 0x44b81000-0x44bda947]
>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving FACS table memory at [mem 0x44aa2000-0x44aa203f]
>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving UEFI table memory at [mem 0x44b2e000-0x44b2e235]
>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bfa000-0x44bfc55b]
>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bf9000-0x44bf9104]
>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bf6000-0x44bf8136]
>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bf2000-0x44bf52ff]
>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bf1000-0x44bf177a]
>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving TPM2 table memory at [mem 0x44bf0000-0x44bf004b]
>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving MSDM table memory at [mem 0x44bef000-0x44bef054]
>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bee000-0x44beed01]
>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving NHLT table memory at [mem 0x44bec000-0x44bedb53]
>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving LPIT table memory at [mem 0x44beb000-0x44beb0cb]
>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving WSMT table memory at [mem 0x44bea000-0x44bea027]
>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44be9000-0x44be9b6f]
>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44be8000-0x44be8129]
>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving DBGP table memory at [mem 0x44be7000-0x44be7033]
>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving DBG2 table memory at [mem 0x44be6000-0x44be6053]
>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bdf000-0x44be5ba8]
>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving HPET table memory at [mem 0x44bdd000-0x44bdd037]
>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving APIC table memory at [mem 0x44bdc000-0x44bdc12b]
>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving MCFG table memory at [mem 0x44bfd000-0x44bfd03b]
>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b80000-0x44b80c77]
>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving DMAR table memory at [mem 0x44b7f000-0x44b7f087]
>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b7c000-0x44b7e0d5]
>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving UEFI table memory at [mem 0x44a5b000-0x44a5b639]
>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving UEFI table memory at [mem 0x44a5a000-0x44a5a05b]
>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b7b000-0x44b7b984]
>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b7a000-0x44b7a0f7]
>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b79000-0x44b79834]
>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving FPDT table memory at [mem 0x44b78000-0x44b78043]
>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving PTDT table memory at [mem 0x44b76000-0x44b76cfd]
>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving BGRT table memory at [mem 0x44b77000-0x44b77037]
>>> Jul 20 20:02:05 xd kernel: ACPI: Local APIC address 0xfee00000
>>> Jul 20 20:02:05 xd kernel: No NUMA configuration found
>>> Jul 20 20:02:05 xd kernel: Faking a node at [mem 0x0000000000000000-0x00000004b07fffff]
>>> Jul 20 20:02:05 xd kernel: NODE_DATA(0) allocated [mem 0x4b07d6000-0x4b07fffff]
>>> Jul 20 20:02:05 xd kernel: Zone ranges:
>>> Jul 20 20:02:05 xd kernel: DMA [mem 0x0000000000001000-0x0000000000ffffff]
>>> Jul 20 20:02:05 xd kernel: DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
>>> Jul 20 20:02:05 xd kernel: Normal [mem 0x0000000100000000-0x00000004b07fffff]
>>> Jul 20 20:02:05 xd kernel: Device empty
>>> Jul 20 20:02:05 xd kernel: Movable zone start for each node
>>> Jul 20 20:02:05 xd kernel: Early memory node ranges
>>> Jul 20 20:02:05 xd kernel: node 0: [mem 0x0000000000001000-0x000000000009efff]
>>> Jul 20 20:02:05 xd kernel: node 0: [mem 0x0000000000100000-0x000000003fd98fff]
>>> Jul 20 20:02:05 xd kernel: node 0: [mem 0x0000000040699000-0x00000000424aefff]
>>> Jul 20 20:02:05 xd kernel: node 0: [mem 0x0000000044bff000-0x0000000044bfffff]
>>> Jul 20 20:02:05 xd kernel: node 0: [mem 0x0000000100000000-0x00000004b07fffff]
>>> Jul 20 20:02:05 xd kernel: Initmem setup node 0 [mem 0x0000000000001000-0x00000004b07fffff]
>>> Jul 20 20:02:05 xd kernel: On node 0 totalpages: 4137806
>>> Jul 20 20:02:05 xd kernel: DMA zone: 64 pages used for memmap
>>> Jul 20 20:02:05 xd kernel: DMA zone: 25 pages reserved
>>> Jul 20 20:02:05 xd kernel: DMA zone: 3998 pages, LIFO batch:0
>>> Jul 20 20:02:05 xd kernel: DMA32 zone: 4143 pages used for memmap
>>> Jul 20 20:02:05 xd kernel: DMA32 zone: 265136 pages, LIFO batch:63
>>> Jul 20 20:02:05 xd kernel: Normal zone: 60448 pages used for memmap
>>> Jul 20 20:02:05 xd kernel: Normal zone: 3868672 pages, LIFO batch:63
>>> Jul 20 20:02:05 xd kernel: On node 0, zone DMA: 1 pages in unavailable ranges
>>> Jul 20 20:02:05 xd kernel: On node 0, zone DMA: 97 pages in unavailable ranges
>>> Jul 20 20:02:05 xd kernel: On node 0, zone DMA32: 2304 pages in unavailable ranges
>>> Jul 20 20:02:05 xd kernel: On node 0, zone DMA32: 10064 pages in unavailable ranges
>>> Jul 20 20:02:05 xd kernel: On node 0, zone Normal: 13312 pages in unavailable ranges
>>> Jul 20 20:02:05 xd kernel: On node 0, zone Normal: 30720 pages in unavailable ranges
>>> Jul 20 20:02:05 xd kernel: Reserving Intel graphics memory at [mem 0x4b800000-0x4f7fffff]
>>> Jul 20 20:02:05 xd kernel: ACPI: PM-Timer IO Port: 0x1808
>>> Jul 20 20:02:05 xd kernel: ACPI: Local APIC address 0xfee00000
>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
>>> Jul 20 20:02:05 xd kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
>>> Jul 20 20:02:05 xd kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
>>> Jul 20 20:02:05 xd kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
>>> Jul 20 20:02:05 xd kernel: ACPI: IRQ0 used by override.
>>> Jul 20 20:02:05 xd kernel: ACPI: IRQ9 used by override.
>>> Jul 20 20:02:05 xd kernel: Using ACPI (MADT) for SMP configuration information
>>> Jul 20 20:02:05 xd kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
>>> Jul 20 20:02:05 xd kernel: e820: update [mem 0x3bf6a000-0x3c05dfff] usable ==> reserved
>>> Jul 20 20:02:05 xd kernel: TSC deadline timer available
>>> Jul 20 20:02:05 xd kernel: smpboot: Allowing 8 CPUs, 0 hotplug CPUs
>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x3bee5000-0x3bee7fff]
>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x3bf68000-0x3bf68fff]
>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x3bf6a000-0x3c05dfff]
>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x3fd99000-0x40698fff]
>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x424af000-0x4287efff]
>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x4287f000-0x442fefff]
>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x442ff000-0x44b2efff]
>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x44b2f000-0x44bfefff]
>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x44c00000-0x48ffffff]
>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x49000000-0x49dfffff]
>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x49e00000-0x4f7fffff]
>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x4f800000-0xbfffffff]
>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xc0000000-0xcfffffff]
>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xd0000000-0xfe00ffff]
>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xfe010000-0xfe010fff]
>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xfed1ffff]
>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xfed7ffff]
>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xff4fffff]
>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xff500000-0xffffffff]
>>> Jul 20 20:02:05 xd kernel: [mem 0x4f800000-0xbfffffff] available for PCI devices
>>> Jul 20 20:02:05 xd kernel: Booting paravirtualized kernel on bare hardware
>>> Jul 20 20:02:05 xd kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
>>> Jul 20 20:02:05 xd kernel: setup_percpu: NR_CPUS:8192 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
>>> Jul 20 20:02:05 xd kernel: percpu: Embedded 58 pages/cpu s200664 r8192 d28712 u262144
>>> Jul 20 20:02:05 xd kernel: pcpu-alloc: s200664 r8192 d28712 u262144 alloc=1*2097152
>>> Jul 20 20:02:05 xd kernel: pcpu-alloc: [0] 0 1 2 3 4 5 6 7
>>> Jul 20 20:02:05 xd kernel: Built 1 zonelists, mobility grouping on. Total pages: 4073126
>>> Jul 20 20:02:05 xd kernel: Policy zone: Normal
>>> Jul 20 20:02:05 xd kernel: Kernel command line: BOOT_IMAGE=/vmlinuz-5.10.0-16-amd64 root=UUID=0dc2ba0c-97d5-4786-bc97-4d13279afe0f ro quiet
>>> Jul 20 20:02:05 xd kernel: Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
>>> Jul 20 20:02:05 xd kernel: Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
>>> Jul 20 20:02:05 xd kernel: mem auto-init: stack:off, heap alloc:on, heap free:off
>>> Jul 20 20:02:05 xd kernel: Memory: 1010444K/16551224K available (12295K kernel code, 2536K rwdata, 7568K rodata, 2424K init, 3680K bss, 520984K reserved, 0K cma-reserved)
>>> Jul 20 20:02:05 xd kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
>>> Jul 20 20:02:05 xd kernel: ftrace: allocating 36455 entries in 143 pages
>>> Jul 20 20:02:05 xd kernel: ftrace: allocated 143 pages with 5 groups
>>> Jul 20 20:02:05 xd kernel: rcu: Hierarchical RCU implementation.
>>> Jul 20 20:02:05 xd kernel: rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=8.
>>> Jul 20 20:02:05 xd kernel: Rude variant of Tasks RCU enabled.
>>> Jul 20 20:02:05 xd kernel: Tracing variant of Tasks RCU enabled.
>>> Jul 20 20:02:05 xd kernel: rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
>>> Jul 20 20:02:05 xd kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
>>> Jul 20 20:02:05 xd kernel: NR_IRQS: 524544, nr_irqs: 2048, preallocated irqs: 16
>>> Jul 20 20:02:05 xd kernel: random: crng init done
>>> Jul 20 20:02:05 xd kernel: Console: colour dummy device 80x25
>>> Jul 20 20:02:05 xd kernel: printk: console [tty0] enabled
>>> Jul 20 20:02:05 xd kernel: ACPI: Core revision 20200925
>>> Jul 20 20:02:05 xd kernel: hpet: HPET dysfunctional in PC10. Force disabled.
>>> Jul 20 20:02:05 xd kernel: APIC: Switch to symmetric I/O mode setup
>>> Jul 20 20:02:05 xd kernel: DMAR: Host address width 39
>>> Jul 20 20:02:05 xd kernel: DMAR: DRHD base: 0x000000fed90000 flags: 0x0
>>> Jul 20 20:02:05 xd kernel: DMAR: dmar0: reg_base_addr fed90000 ver 4:0 cap 1c0000c40660462 ecap 29a00f0505e
>>> Jul 20 20:02:05 xd kernel: DMAR: DRHD base: 0x000000fed91000 flags: 0x1
>>> Jul 20 20:02:05 xd kernel: DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
>>> Jul 20 20:02:05 xd kernel: DMAR: RMRR base: 0x0000004b000000 end: 0x0000004f7fffff
>>> Jul 20 20:02:05 xd kernel: DMAR-IR: IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 1
>>> Jul 20 20:02:05 xd kernel: DMAR-IR: HPET id 0 under DRHD base 0xfed91000
>>> Jul 20 20:02:05 xd kernel: DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
>>> Jul 20 20:02:05 xd kernel: DMAR-IR: Enabled IRQ remapping in x2apic mode
>>> Jul 20 20:02:05 xd kernel: x2apic enabled
>>> Jul 20 20:02:05 xd kernel: Switched APIC routing to cluster x2apic.
>>> Jul 20 20:02:05 xd kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x22df1149949, max_idle_ns: 440795312789 ns
>>> Jul 20 20:02:05 xd kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 4838.40 BogoMIPS (lpj=9676800)
>>> Jul 20 20:02:05 xd kernel: pid_max: default: 32768 minimum: 301
>>> Jul 20 20:02:05 xd kernel: LSM: Security Framework initializing
>>> Jul 20 20:02:05 xd kernel: Yama: disabled by default; enable with sysctl kernel.yama.*
>>> Jul 20 20:02:05 xd kernel: AppArmor: AppArmor initialized
>>> Jul 20 20:02:05 xd kernel: TOMOYO Linux initialized
>>> Jul 20 20:02:05 xd kernel: Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
>>> Jul 20 20:02:05 xd kernel: Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
>>> Jul 20 20:02:05 xd kernel: x86/cpu: User Mode Instruction Prevention (UMIP) activated
>>> Jul 20 20:02:05 xd kernel: mce: CPU0: Thermal monitoring enabled (TM1)
>>> Jul 20 20:02:05 xd kernel: process: using mwait in idle threads
>>> Jul 20 20:02:05 xd kernel: Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
>>> Jul 20 20:02:05 xd kernel: Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
>>> Jul 20 20:02:05 xd kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
>>> Jul 20 20:02:05 xd kernel: Spectre V2 : Mitigation: Enhanced IBRS
>>> Jul 20 20:02:05 xd kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
>>> Jul 20 20:02:05 xd kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
>>> Jul 20 20:02:05 xd kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
>>> Jul 20 20:02:05 xd kernel: Freeing SMP alternatives memory: 32K
>>> Jul 20 20:02:05 xd kernel: smpboot: CPU0: 11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz (family: 0x6, model: 0x8c, stepping: 0x1)
>>> Jul 20 20:02:05 xd kernel: Performance Events: PEBS fmt4+-baseline, AnyThread deprecated, Icelake events, 32-deep LBR, full-width counters, Intel PMU driver.
>>> Jul 20 20:02:05 xd kernel: ... version: 5
>>> Jul 20 20:02:05 xd kernel: ... bit width: 48
>>> Jul 20 20:02:05 xd kernel: ... generic registers: 8
>>> Jul 20 20:02:05 xd kernel: ... value mask: 0000ffffffffffff
>>> Jul 20 20:02:05 xd kernel: ... max period: 00007fffffffffff
>>> Jul 20 20:02:05 xd kernel: ... fixed-purpose events: 4
>>> Jul 20 20:02:05 xd kernel: ... event mask: 0001000f000000ff
>>> Jul 20 20:02:05 xd kernel: rcu: Hierarchical SRCU implementation.
>>> Jul 20 20:02:05 xd kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
>>> Jul 20 20:02:05 xd kernel: smp: Bringing up secondary CPUs ...
>>> Jul 20 20:02:05 xd kernel: x86: Booting SMP configuration:
>>> Jul 20 20:02:05 xd kernel: .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7
>>> Jul 20 20:02:05 xd kernel: smp: Brought up 1 node, 8 CPUs
>>> Jul 20 20:02:05 xd kernel: smpboot: Max logical packages: 1
>>> Jul 20 20:02:05 xd kernel: smpboot: Total of 8 processors activated (38707.20 BogoMIPS)
>>> Jul 20 20:02:05 xd kernel: node 0 deferred pages initialised in 20ms
>>> Jul 20 20:02:05 xd kernel: devtmpfs: initialized
>>> Jul 20 20:02:05 xd kernel: x86/mm: Memory block size: 128MB
>>> Jul 20 20:02:05 xd kernel: PM: Registering ACPI NVS region [mem 0x442ff000-0x44b2efff] (8585216 bytes)
>>> Jul 20 20:02:05 xd kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
>>> Jul 20 20:02:05 xd kernel: futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
>>> Jul 20 20:02:05 xd kernel: pinctrl core: initialized pinctrl subsystem
>>> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 16
>>> Jul 20 20:02:05 xd kernel: audit: initializing netlink subsys (disabled)
>>> Jul 20 20:02:05 xd kernel: audit: type=2000 audit(1658343722.028:1): state=initialized audit_enabled=0 res=1
>>> Jul 20 20:02:05 xd kernel: thermal_sys: Registered thermal governor 'fair_share'
>>> Jul 20 20:02:05 xd kernel: thermal_sys: Registered thermal governor 'bang_bang'
>>> Jul 20 20:02:05 xd kernel: thermal_sys: Registered thermal governor 'step_wise'
>>> Jul 20 20:02:05 xd kernel: thermal_sys: Registered thermal governor 'user_space'
>>> Jul 20 20:02:05 xd kernel: thermal_sys: Registered thermal governor 'power_allocator'
>>> Jul 20 20:02:05 xd kernel: cpuidle: using governor ladder
>>> Jul 20 20:02:05 xd kernel: cpuidle: using governor menu
>>> Jul 20 20:02:05 xd kernel: ACPI: bus type PCI registered
>>> Jul 20 20:02:05 xd kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
>>> Jul 20 20:02:05 xd kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xc0000000-0xcfffffff] (base 0xc0000000)
>>> Jul 20 20:02:05 xd kernel: PCI: MMCONFIG at [mem 0xc0000000-0xcfffffff] reserved in E820
>>> Jul 20 20:02:05 xd kernel: PCI: Using configuration type 1 for base access
>>> Jul 20 20:02:05 xd kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
>>> Jul 20 20:02:05 xd kernel: Kprobes globally optimized
>>> Jul 20 20:02:05 xd kernel: HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
>>> Jul 20 20:02:05 xd kernel: HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
>>> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Module Device)
>>> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Processor Device)
>>> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
>>> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Processor Aggregator Device)
>>> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Linux-Dell-Video)
>>> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
>>> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS01._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS01._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS02._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS02._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS03._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS03._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS04._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS04._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS05._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS05._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS06._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS06._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS07._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS07._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS08._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS08._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS09._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS09._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS10._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS10._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS01._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS01._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS02._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS02._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS03._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS03._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS04._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS04._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS05._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS05._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS06._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS06._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>> Jul 20 20:02:05 xd kernel: ACPI: 15 ACPI AML tables successfully acquired and loaded
>>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8882135E00 0001C6 (v02 PmRef Cpu0Psd 00003000 INTL 20160422)
>>> Jul 20 20:02:05 xd kernel: ACPI: \_SB_.PR00: _OSC native thermal LVT Acked
>>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A888213CC00 000386 (v02 PmRef Cpu0Cst 00003001 INTL 20160422)
>>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8500BAB000 0005C3 (v02 PmRef Cpu0Ist 00003000 INTL 20160422)
>>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A888213FC00 00028B (v02 PmRef Cpu0Hwp 00003000 INTL 20160422)
>>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8500F3D000 0008E7 (v02 PmRef ApIst 00003000 INTL 20160422)
>>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8500BAC000 00048A (v02 PmRef ApHwp 00003000 INTL 20160422)
>>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8500BAF800 0004D4 (v02 PmRef ApPsd 00003000 INTL 20160422)
>>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8500BAE000 00048A (v02 PmRef ApCst 00003000 INTL 20160422)
>>> Jul 20 20:02:05 xd kernel: ACPI: EC: EC started
>>> Jul 20 20:02:05 xd kernel: ACPI: EC: interrupt blocked
>>> Jul 20 20:02:05 xd kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
>>> Jul 20 20:02:05 xd kernel: ACPI: \_SB_.PC00.LPCB.EC0_: Boot DSDT EC used to handle transactions
>>> Jul 20 20:02:05 xd kernel: ACPI: Interpreter enabled
>>> Jul 20 20:02:05 xd kernel: ACPI: (supports S0 S3 S4 S5)
>>> Jul 20 20:02:05 xd kernel: ACPI: Using IOAPIC for interrupt routing
>>> Jul 20 20:02:05 xd kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
>>> Jul 20 20:02:05 xd kernel: ACPI: Enabled 7 GPEs in block 00 to 7F
>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [PCRP] (on)
>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V0PR] (on)
>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V1PR] (on)
>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V2PR] (on)
>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [WRST] (on)
>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V0PR] (on)
>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V1PR] (on)
>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V2PR] (on)
>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V3PR] (on)
>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [FN00] (off)
>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [FN01] (off)
>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [FN02] (off)
>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [FN03] (off)
>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [FN04] (off)
>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [PIN] (off)
>>> Jul 20 20:02:05 xd kernel: ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-e0])
>>> Jul 20 20:02:05 xd kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
>>> Jul 20 20:02:05 xd kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR]
>>> Jul 20 20:02:05 xd kernel: PCI host bridge to bus 0000:00
>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [mem 0x4f800000-0xbfffffff window]
>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [bus 00-e0]
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:00.0: [8086:9a14] type 00 class 0x060000
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: [8086:9a49] type 00 class 0x030000
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: reg 0x10: [mem 0x6014000000-0x6014ffffff 64bit]
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: reg 0x18: [mem 0x4000000000-0x400fffffff 64bit pref]
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: reg 0x20: [io 0x5000-0x503f]
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: BAR 2: assigned to efifb
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: DMAR: Skip IOMMU disabling for graphics
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: reg 0x344: [mem 0x00000000-0x00ffffff 64bit]
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: VF(n) BAR0 space: [mem 0x00000000-0x06ffffff 64bit] (contains BAR0 for 7 VFs)
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: reg 0x34c: [mem 0x00000000-0x1fffffff 64bit pref]
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: VF(n) BAR2 space: [mem 0x00000000-0xdfffffff 64bit pref] (contains BAR2 for 7 VFs)
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: [8086:9a09] type 01 class 0x060400
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: PTM enabled (root), 4ns granularity
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:08.0: [8086:9a11] type 00 class 0x088000
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:08.0: reg 0x10: [mem 0x601540f000-0x601540ffff 64bit]
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:0e.0: [8086:9a0b] type 00 class 0x010400
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:0e.0: reg 0x10: [mem 0x6012000000-0x6013ffffff 64bit]
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:0e.0: reg 0x18: [mem 0x50000000-0x51ffffff]
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:0e.0: reg 0x20: [mem 0x6015300000-0x60153fffff 64bit]
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.0: [8086:a0ed] type 00 class 0x0c0330
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.0: reg 0x10: [mem 0x53180000-0x5318ffff 64bit]
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.2: [8086:a0ef] type 00 class 0x050000
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.2: reg 0x10: [mem 0x6015404000-0x6015407fff 64bit]
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.2: reg 0x18: [mem 0x601540e000-0x601540efff 64bit]
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.0: [8086:a0e8] type 00 class 0x0c8000
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.3: [8086:a0eb] type 00 class 0x0c8000
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.3: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:16.0: [8086:a0e0] type 00 class 0x078000
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:16.0: reg 0x10: [mem 0x601540b000-0x601540bfff 64bit]
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:16.0: PME# supported from D3hot
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:17.0: [8086:09ab] type 00 class 0x088000
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.0: [8086:a0c5] type 00 class 0x0c8000
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.1: [8086:a0c6] type 00 class 0x0c8000
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.1: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: [8086:a0b0] type 01 class 0x060400
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: PTM enabled (root), 4ns granularity
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: [8086:a0b1] type 01 class 0x060400
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: PME# supported from D0 D3hot D3cold
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: PTM enabled (root), 4ns granularity
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.0: [8086:a082] type 00 class 0x060100
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.3: [8086:a0c8] type 00 class 0x040100
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.3: reg 0x10: [mem 0x6015400000-0x6015403fff 64bit]
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.3: reg 0x20: [mem 0x6015200000-0x60152fffff 64bit]
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.3: PME# supported from D3hot D3cold
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.4: [8086:a0a3] type 00 class 0x0c0500
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.4: reg 0x10: [mem 0x6015408000-0x60154080ff 64bit]
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.4: reg 0x20: [io 0xefa0-0xefbf]
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.5: [8086:a0a4] type 00 class 0x0c8000
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.5: reg 0x10: [mem 0xfe010000-0xfe010fff]
>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: [10de:1f97] type 00 class 0x030200
>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: reg 0x10: [mem 0x52000000-0x52ffffff]
>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: reg 0x14: [mem 0x6000000000-0x600fffffff 64bit pref]
>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: reg 0x1c: [mem 0x6010000000-0x6011ffffff 64bit pref]
>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: reg 0x24: [io 0x4000-0x407f]
>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: 63.012 Gb/s available PCIe bandwidth, limited by 16.0 GT/s PCIe x4 link at 0000:00:06.0 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: PCI bridge to [bus 01]
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [io 0x4000-0x4fff]
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [mem 0x52000000-0x52ffffff]
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [mem 0x6000000000-0x6011ffffff 64bit pref]
>>> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000
>>> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: reg 0x10: [io 0x3000-0x30ff]
>>> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: reg 0x18: [mem 0x53004000-0x53004fff 64bit]
>>> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: reg 0x20: [mem 0x53000000-0x53003fff 64bit]
>>> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: supports D1 D2
>>> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: PCI bridge to [bus 02]
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: bridge window [io 0x3000-0x3fff]
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: bridge window [mem 0x53000000-0x530fffff]
>>> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: [14c3:7961] type 00 class 0x028000
>>> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: reg 0x10: [mem 0x6015000000-0x60150fffff 64bit pref]
>>> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: reg 0x18: [mem 0x6015100000-0x6015103fff 64bit pref]
>>> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: reg 0x20: [mem 0x6015104000-0x6015104fff 64bit pref]
>>> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: supports D1 D2
>>> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: PCI bridge to [bus 03]
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: bridge window [mem 0x6015000000-0x60151fffff 64bit pref]
>>> Jul 20 20:02:05 xd kernel: ACPI: EC: interrupt unblocked
>>> Jul 20 20:02:05 xd kernel: ACPI: EC: event unblocked
>>> Jul 20 20:02:05 xd kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
>>> Jul 20 20:02:05 xd kernel: ACPI: EC: GPE=0x6e
>>> Jul 20 20:02:05 xd kernel: ACPI: \_SB_.PC00.LPCB.EC0_: Boot DSDT EC initialization complete
>>> Jul 20 20:02:05 xd kernel: ACPI: \_SB_.PC00.LPCB.EC0_: EC: Used to handle transactions and events
>>> Jul 20 20:02:05 xd kernel: iommu: Default domain type: Translated
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: vgaarb: setting as boot VGA device
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: vgaarb: bridge control possible
>>> Jul 20 20:02:05 xd kernel: vgaarb: loaded
>>> Jul 20 20:02:05 xd kernel: EDAC MC: Ver: 3.0.0
>>> Jul 20 20:02:05 xd kernel: Registered efivars operations
>>> Jul 20 20:02:05 xd kernel: NetLabel: Initializing
>>> Jul 20 20:02:05 xd kernel: NetLabel: domain hash size = 128
>>> Jul 20 20:02:05 xd kernel: NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
>>> Jul 20 20:02:05 xd kernel: NetLabel: unlabeled traffic allowed by default
>>> Jul 20 20:02:05 xd kernel: PCI: Using ACPI for IRQ routing
>>> Jul 20 20:02:05 xd kernel: PCI: pci_cache_line_size set to 64 bytes
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.5: can't claim BAR 0 [mem 0xfe010000-0xfe010fff]: no compatible bridge window
>>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
>>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x3bee5000-0x3bffffff]
>>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x3bf68000-0x3bffffff]
>>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x3bf6a000-0x3bffffff]
>>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x3fd99000-0x3fffffff]
>>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x424af000-0x43ffffff]
>>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x44c00000-0x47ffffff]
>>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x4b0800000-0x4b3ffffff]
>>> Jul 20 20:02:05 xd kernel: clocksource: Switched to clocksource tsc-early
>>> Jul 20 20:02:05 xd kernel: VFS: Disk quotas dquot_6.6.0
>>> Jul 20 20:02:05 xd kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
>>> Jul 20 20:02:05 xd kernel: AppArmor: AppArmor Filesystem Enabled
>>> Jul 20 20:02:05 xd kernel: pnp: PnP ACPI init
>>> Jul 20 20:02:05 xd kernel: system 00:00: [io 0x0680-0x069f] has been reserved
>>> Jul 20 20:02:05 xd kernel: system 00:00: [io 0x164e-0x164f] has been reserved
>>> Jul 20 20:02:05 xd kernel: system 00:00: [io 0xfd60-0xfd63] has been reserved
>>> Jul 20 20:02:05 xd kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
>>> Jul 20 20:02:05 xd kernel: pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
>>> Jul 20 20:02:05 xd kernel: system 00:02: [io 0x1854-0x1857] has been reserved
>>> Jul 20 20:02:05 xd kernel: system 00:02: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
>>> Jul 20 20:02:05 xd kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0303 (active)
>>> Jul 20 20:02:05 xd kernel: pnp 00:04: disabling [mem 0xc0000000-0xcfffffff] because it overlaps 0000:00:02.0 BAR 9 [mem 0x00000000-0xdfffffff 64bit pref]
>>> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfedc0000-0xfedc7fff] has been reserved
>>> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfeda0000-0xfeda0fff] has been reserved
>>> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfeda1000-0xfeda1fff] has been reserved
>>> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfed20000-0xfed7ffff] could not be reserved
>>> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfed90000-0xfed93fff] could not be reserved
>>> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfed45000-0xfed8ffff] could not be reserved
>>> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfee00000-0xfeefffff] has been reserved
>>> Jul 20 20:02:05 xd kernel: system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
>>> Jul 20 20:02:05 xd kernel: system 00:05: [io 0x1800-0x18fe] could not be reserved
>>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfe000000-0xfe01ffff] could not be reserved
>>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfe04c000-0xfe04ffff] has been reserved
>>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfe050000-0xfe0affff] has been reserved
>>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfe0d0000-0xfe0fffff] has been reserved
>>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfe200000-0xfe7fffff] has been reserved
>>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xff000000-0xffffffff] could not be reserved
>>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfd000000-0xfd68ffff] has been reserved
>>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfd6b0000-0xfd6cffff] has been reserved
>>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfd6f0000-0xfdffffff] has been reserved
>>> Jul 20 20:02:05 xd kernel: system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
>>> Jul 20 20:02:05 xd kernel: system 00:06: [io 0x2000-0x20fe] has been reserved
>>> Jul 20 20:02:05 xd kernel: system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
>>> Jul 20 20:02:05 xd kernel: system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
>>> Jul 20 20:02:05 xd kernel: pnp: PnP ACPI: found 8 devices
>>> Jul 20 20:02:05 xd kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
>>> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 2
>>> Jul 20 20:02:05 xd kernel: IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
>>> Jul 20 20:02:05 xd kernel: tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
>>> Jul 20 20:02:05 xd kernel: TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
>>> Jul 20 20:02:05 xd kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
>>> Jul 20 20:02:05 xd kernel: TCP: Hash tables configured (established 131072 bind 65536)
>>> Jul 20 20:02:05 xd kernel: UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
>>> Jul 20 20:02:05 xd kernel: UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
>>> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 1
>>> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 44
>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: max bus depth: 1 pci_try_num: 2
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: BAR 9: assigned [mem 0x4020000000-0x40ffffffff 64bit pref]
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: BAR 7: assigned [mem 0x4010000000-0x4016ffffff 64bit]
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.0: BAR 0: assigned [mem 0x4017000000-0x4017000fff 64bit]
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.3: BAR 0: assigned [mem 0x4017001000-0x4017001fff 64bit]
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.0: BAR 0: assigned [mem 0x4017002000-0x4017002fff 64bit]
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.1: BAR 0: assigned [mem 0x4017003000-0x4017003fff 64bit]
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.5: BAR 0: assigned [mem 0x4f800000-0x4f800fff]
>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: BAR 6: no space for [mem size 0x00080000 pref]
>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: BAR 6: failed to assign [mem size 0x00080000 pref]
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: PCI bridge to [bus 01]
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [io 0x4000-0x4fff]
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [mem 0x52000000-0x52ffffff]
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [mem 0x6000000000-0x6011ffffff 64bit pref]
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: PCI bridge to [bus 02]
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: bridge window [io 0x3000-0x3fff]
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: bridge window [mem 0x53000000-0x530fffff]
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: PCI bridge to [bus 03]
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: bridge window [mem 0x6015000000-0x60151fffff 64bit pref]
>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: resource 7 [mem 0x4f800000-0xbfffffff window]
>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: resource 8 [mem 0x4000000000-0x7fffffffff window]
>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:01: resource 0 [io 0x4000-0x4fff]
>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:01: resource 1 [mem 0x52000000-0x52ffffff]
>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:01: resource 2 [mem 0x6000000000-0x6011ffffff 64bit pref]
>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:02: resource 0 [io 0x3000-0x3fff]
>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:02: resource 1 [mem 0x53000000-0x530fffff]
>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:03: resource 2 [mem 0x6015000000-0x60151fffff 64bit pref]
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
>>> Jul 20 20:02:05 xd kernel: PCI: CLS 64 bytes, default 64
>>> Jul 20 20:02:05 xd kernel: Trying to unpack rootfs image as initramfs...
>>> Jul 20 20:02:05 xd kernel: Freeing initrd memory: 47452K
>>> Jul 20 20:02:05 xd kernel: DMAR: No ATSR found
>>> Jul 20 20:02:05 xd kernel: DMAR: dmar0: Using Queued invalidation
>>> Jul 20 20:02:05 xd kernel: DMAR: dmar1: Using Queued invalidation
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:00.0: Adding to iommu group 0
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: Adding to iommu group 1
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: Adding to iommu group 2
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:08.0: Adding to iommu group 3
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:0e.0: Adding to iommu group 4
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.0: Adding to iommu group 5
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.2: Adding to iommu group 5
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.0: Adding to iommu group 6
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.3: Adding to iommu group 6
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:16.0: Adding to iommu group 7
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:17.0: Adding to iommu group 8
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.0: Adding to iommu group 9
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.1: Adding to iommu group 9
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: Adding to iommu group 10
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: Adding to iommu group 11
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.0: Adding to iommu group 12
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.3: Adding to iommu group 12
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.4: Adding to iommu group 12
>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.5: Adding to iommu group 12
>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: Adding to iommu group 13
>>> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: Adding to iommu group 14
>>> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: Adding to iommu group 15
>>> Jul 20 20:02:05 xd kernel: DMAR: Intel(R) Virtualization Technology for Directed I/O
>>> Jul 20 20:02:05 xd kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
>>> Jul 20 20:02:05 xd kernel: software IO TLB: mapped [mem 0x0000000037663000-0x000000003b663000] (64MB)
>>> Jul 20 20:02:05 xd kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x22df1149949, max_idle_ns: 440795312789 ns
>>> Jul 20 20:02:05 xd kernel: clocksource: Switched to clocksource tsc
>>> Jul 20 20:02:05 xd kernel: Initialise system trusted keyrings
>>> Jul 20 20:02:05 xd kernel: Key type blacklist registered
>>> Jul 20 20:02:05 xd kernel: workingset: timestamp_bits=36 max_order=22 bucket_order=0
>>> Jul 20 20:02:05 xd kernel: zbud: loaded
>>> Jul 20 20:02:05 xd kernel: integrity: Platform Keyring initialized
>>> Jul 20 20:02:05 xd kernel: Key type asymmetric registered
>>> Jul 20 20:02:05 xd kernel: Asymmetric key parser 'x509' registered
>>> Jul 20 20:02:05 xd kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
>>> Jul 20 20:02:05 xd kernel: io scheduler mq-deadline registered
>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:06.0: PME: Signaling with IRQ 122
>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:06.0: AER: enabled with IRQ 122
>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:06.0: DPC: enabled with IRQ 122
>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:06.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.0: PME: Signaling with IRQ 123
>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.0: AER: enabled with IRQ 123
>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.0: DPC: enabled with IRQ 123
>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.1: PME: Signaling with IRQ 124
>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.1: AER: enabled with IRQ 124
>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.1: DPC: enabled with IRQ 124
>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.1: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
>>> Jul 20 20:02:05 xd kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
>>> Jul 20 20:02:05 xd kernel: efifb: probing for efifb
>>> Jul 20 20:02:05 xd kernel: efifb: framebuffer at 0x4000000000, using 8128k, total 8128k
>>> Jul 20 20:02:05 xd kernel: efifb: mode is 1920x1080x32, linelength=7680, pages=1
>>> Jul 20 20:02:05 xd kernel: efifb: scrolling: redraw
>>> Jul 20 20:02:05 xd kernel: efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
>>> Jul 20 20:02:05 xd kernel: Console: switching to colour frame buffer device 240x67
>>> Jul 20 20:02:05 xd kernel: fb0: EFI VGA frame buffer device
>>> Jul 20 20:02:05 xd kernel: intel_idle: MWAIT substates: 0x11121020
>>> Jul 20 20:02:05 xd kernel: Monitor-Mwait will be used to enter C-1 state
>>> Jul 20 20:02:05 xd kernel: Monitor-Mwait will be used to enter C-2 state
>>> Jul 20 20:02:05 xd kernel: Monitor-Mwait will be used to enter C-3 state
>>> Jul 20 20:02:05 xd kernel: ACPI: \_SB_.PR00: Found 3 idle states
>>> Jul 20 20:02:05 xd kernel: intel_idle: v0.5.1 model 0x8C
>>> Jul 20 20:02:05 xd kernel: intel_idle: Local APIC timer is reliable in all C-states
>>> Jul 20 20:02:05 xd kernel: thermal LNXTHERM:00: registered as thermal_zone0
>>> Jul 20 20:02:05 xd kernel: ACPI: Thermal Zone [TZ00] (28 C)
>>> Jul 20 20:02:05 xd kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
>>> Jul 20 20:02:05 xd kernel: hpet_acpi_add: no address or irqs in _CRS
>>> Jul 20 20:02:05 xd kernel: Linux agpgart interface v0.103
>>> Jul 20 20:02:05 xd kernel: AMD-Vi: AMD IOMMUv2 functionality not available on this system - This is not a bug.
>>> Jul 20 20:02:05 xd kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
>>> Jul 20 20:02:05 xd kernel: i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
>>> Jul 20 20:02:05 xd kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
>>> Jul 20 20:02:05 xd kernel: mousedev: PS/2 mouse device common for all mice
>>> Jul 20 20:02:05 xd kernel: rtc_cmos 00:01: RTC can wake from S4
>>> Jul 20 20:02:05 xd kernel: rtc_cmos 00:01: registered as rtc0
>>> Jul 20 20:02:05 xd kernel: rtc_cmos 00:01: setting system clock to 2022-07-20T19:02:03 UTC (1658343723)
>>> Jul 20 20:02:05 xd kernel: rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram
>>> Jul 20 20:02:05 xd kernel: intel_pstate: Intel P-state driver initializing
>>> Jul 20 20:02:05 xd kernel: intel_pstate: HWP enabled
>>> Jul 20 20:02:05 xd kernel: ledtrig-cpu: registered to indicate activity on CPUs
>>> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 10
>>> Jul 20 20:02:05 xd kernel: Segment Routing with IPv6
>>> Jul 20 20:02:05 xd kernel: mip6: Mobile IPv6
>>> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 17
>>> Jul 20 20:02:05 xd kernel: mpls_gso: MPLS GSO support
>>> Jul 20 20:02:05 xd kernel: microcode: sig=0x806c1, pf=0x80, revision=0x8a
>>> Jul 20 20:02:05 xd kernel: microcode: Microcode Update Driver: v2.2.
>>> Jul 20 20:02:05 xd kernel: resctrl: L2 allocation detected
>>> Jul 20 20:02:05 xd kernel: resctrl: L2DATA allocation detected
>>> Jul 20 20:02:05 xd kernel: resctrl: L2CODE allocation detected
>>> Jul 20 20:02:05 xd kernel: IPI shorthand broadcast: enabled
>>> Jul 20 20:02:05 xd kernel: sched_clock: Marking stable (836570439, 6379917)->(856451458, -13501102)
>>> Jul 20 20:02:05 xd kernel: registered taskstats version 1
>>> Jul 20 20:02:05 xd kernel: Loading compiled-in X.509 certificates
>>> Jul 20 20:02:05 xd kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
>>> Jul 20 20:02:05 xd kernel: Loaded X.509 cert 'Debian Secure Boot CA: 6ccece7e4c6c0d1f6149f3dd27dfcc5cbb419ea1'
>>> Jul 20 20:02:05 xd kernel: Loaded X.509 cert 'Debian Secure Boot Signer 2021 - linux: 4b6ef5abca669825178e052c84667ccbc0531f8c'
>>> Jul 20 20:02:05 xd kernel: zswap: loaded using pool lzo/zbud
>>> Jul 20 20:02:05 xd kernel: Key type ._fscrypt registered
>>> Jul 20 20:02:05 xd kernel: Key type .fscrypt registered
>>> Jul 20 20:02:05 xd kernel: Key type fscrypt-provisioning registered
>>> Jul 20 20:02:05 xd kernel: AppArmor: AppArmor sha1 policy hashing enabled
>>> Jul 20 20:02:05 xd kernel: Freeing unused kernel image (initmem) memory: 2424K
>>> Jul 20 20:02:05 xd kernel: Write protecting the kernel read-only data: 22528k
>>> Jul 20 20:02:05 xd kernel: Freeing unused kernel image (text/rodata gap) memory: 2040K
>>> Jul 20 20:02:05 xd kernel: Freeing unused kernel image (rodata/data gap) memory: 624K
>>> Jul 20 20:02:05 xd kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
>>> Jul 20 20:02:05 xd kernel: Run /init as init process
>>> Jul 20 20:02:05 xd kernel: with arguments:
>>> Jul 20 20:02:05 xd kernel: /init
>>> Jul 20 20:02:05 xd kernel: with environment:
>>> Jul 20 20:02:05 xd kernel: HOME=/
>>> Jul 20 20:02:05 xd kernel: TERM=linux
>>> Jul 20 20:02:05 xd kernel: BOOT_IMAGE=/vmlinuz-5.10.0-16-amd64
>>> Jul 20 20:02:05 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
>>> Jul 20 20:02:05 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
>>> Jul 20 20:02:05 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
>>> Jul 20 20:02:05 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
>>> Jul 20 20:02:05 xd kernel: acpi PNP0C14:03: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
>>> Jul 20 20:02:05 xd kernel: acpi PNP0C14:04: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
>>> Jul 20 20:02:05 xd kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:21/PNP0C0D:00/input/input1
>>> Jul 20 20:02:05 xd kernel: ACPI: Lid Switch [LID0]
>>> Jul 20 20:02:05 xd kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2
>>> Jul 20 20:02:05 xd kernel: ACPI: Sleep Button [SLPB]
>>> Jul 20 20:02:05 xd kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input3
>>> Jul 20 20:02:05 xd kernel: battery: ACPI: Battery Slot [BAT1] (battery present)
>>> Jul 20 20:02:05 xd kernel: hid: raw HID events driver (C) Jiri Kosina
>>> Jul 20 20:02:05 xd kernel: vmd 0000:00:0e.0: PCI host bridge to bus 10000:e0
>>> Jul 20 20:02:05 xd kernel: pci_bus 10000:e0: root bus resource [bus e0-ff]
>>> Jul 20 20:02:05 xd kernel: pci_bus 10000:e0: root bus resource [mem 0x50000000-0x51ffffff]
>>> Jul 20 20:02:05 xd kernel: pci_bus 10000:e0: root bus resource [mem 0x6015302000-0x60153fffff 64bit]
>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: [8086:a0d3] type 00 class 0x010601
>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x10: [mem 0x00000000-0x00001fff]
>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x14: [mem 0x00000000-0x000000ff]
>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x18: [io 0x0000-0x0007]
>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x1c: [io 0x0000-0x0003]
>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x20: [io 0x0000-0x001f]
>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x24: [mem 0x50000000-0x500007ff]
>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: PME# supported from D3hot
>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: Adding to iommu group 4
>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.0: [8086:09ab] type 00 class 0x088000
>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.0: Adding to iommu group 4
>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: [8086:a0bc] type 01 class 0x060400
>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: PME# supported from D0 D3hot D3cold
>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: PTM enabled (root), 4ns granularity
>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: Adding to iommu group 4
>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: Primary bus is hard wired to 0
>>> Jul 20 20:02:05 xd kernel: pci 10000:e1:00.0: [2646:500c] type 00 class 0x010802
>>> Jul 20 20:02:05 xd kernel: pci 10000:e1:00.0: reg 0x10: [mem 0x50100000-0x50103fff 64bit]
>>> Jul 20 20:02:05 xd kernel: pci 10000:e1:00.0: Adding to iommu group 4
>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: PCI bridge to [bus e1]
>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: bridge window [io 0x0000-0x0fff]
>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: bridge window [mem 0x50100000-0x501fffff]
>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: Primary bus is hard wired to 0
>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: BAR 14: assigned [mem 0x50000000-0x500fffff]
>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 0: assigned [mem 0x50100000-0x50101fff]
>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: BAR 13: no space for [io size 0x1000]
>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: BAR 13: failed to assign [io size 0x1000]
>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 5: assigned [mem 0x50102000-0x501027ff]
>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 1: assigned [mem 0x50102800-0x501028ff]
>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 4: no space for [io size 0x0020]
>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 4: failed to assign [io size 0x0020]
>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 2: no space for [io size 0x0008]
>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 2: failed to assign [io size 0x0008]
>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 3: no space for [io size 0x0004]
>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 3: failed to assign [io size 0x0004]
>>> Jul 20 20:02:05 xd kernel: pci 10000:e1:00.0: BAR 0: assigned [mem 0x50000000-0x50003fff 64bit]
>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: PCI bridge to [bus e1]
>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: bridge window [mem 0x50000000-0x500fffff]
>>> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: can't derive routing for PCI INT A
>>> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: PCI INT A: no GSI
>>> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: PME: Signaling with IRQ 144
>>> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: AER: enabled with IRQ 144
>>> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: DPC: enabled with IRQ 144
>>> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
>>> Jul 20 20:02:05 xd kernel: vmd 0000:00:0e.0: Bound to PCI domain 10000
>>> Jul 20 20:02:05 xd kernel: i801_smbus 0000:00:1f.4: SPD Write Disable is set
>>> Jul 20 20:02:05 xd kernel: i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
>>> Jul 20 20:02:05 xd kernel: i2c i2c-0: 2/2 memory slots populated (from DMI)
>>> Jul 20 20:02:05 xd kernel: i2c i2c-0: Successfully instantiated SPD at 0x50
>>> Jul 20 20:02:05 xd kernel: r8168: loading out-of-tree module taints kernel.
>>> Jul 20 20:02:05 xd kernel: r8168: module verification failed: signature and/or required key missing - tainting kernel
>>> Jul 20 20:02:05 xd kernel: r8168 Gigabit Ethernet driver 8.048.03-NAPI loaded
>>> Jul 20 20:02:05 xd kernel: ACPI: bus type USB registered
>>> Jul 20 20:02:05 xd kernel: usbcore: registered new interface driver usbfs
>>> Jul 20 20:02:05 xd kernel: usbcore: registered new interface driver hub
>>> Jul 20 20:02:05 xd kernel: usbcore: registered new device driver usb
>>> Jul 20 20:02:05 xd kernel: ACPI: Power Button [PWRB]
>>> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
>>> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
>>> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000000009810
>>> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
>>> Jul 20 20:02:05 xd kernel: r8168: This product is covered by one or more of the following patents: US6,570,884, US6,115,776, and US6,327,625.
>>> Jul 20 20:02:05 xd kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
>>> Jul 20 20:02:05 xd kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
>>> Jul 20 20:02:05 xd kernel: usb usb1: Product: xHCI Host Controller
>>> Jul 20 20:02:05 xd kernel: usb usb1: Manufacturer: Linux 5.10.0-16-amd64 xhci-hcd
>>> Jul 20 20:02:05 xd kernel: usb usb1: SerialNumber: 0000:00:14.0
>>> Jul 20 20:02:05 xd kernel: hub 1-0:1.0: USB hub found
>>> Jul 20 20:02:05 xd kernel: hub 1-0:1.0: 12 ports detected
>>> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
>>> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
>>> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
>>> Jul 20 20:02:05 xd kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
>>> Jul 20 20:02:05 xd kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
>>> Jul 20 20:02:05 xd kernel: usb usb2: Product: xHCI Host Controller
>>> Jul 20 20:02:05 xd kernel: usb usb2: Manufacturer: Linux 5.10.0-16-amd64 xhci-hcd
>>> Jul 20 20:02:05 xd kernel: usb usb2: SerialNumber: 0000:00:14.0
>>> Jul 20 20:02:05 xd kernel: hub 2-0:1.0: USB hub found
>>> Jul 20 20:02:05 xd kernel: hub 2-0:1.0: 4 ports detected
>>> Jul 20 20:02:05 xd kernel: r8168 Copyright (C) 2020 Realtek NIC software team <nicfae@realtek.com>
>>> This program comes with ABSOLUTELY NO WARRANTY; for details, please see <http://www.gnu.org/licenses/>.
>>> This is free software, and you are welcome to redistribute it under certain conditions; see <http://www.gnu.org/licenses/>.
>>> Jul 20 20:02:05 xd kernel: SCSI subsystem initialized
>>> Jul 20 20:02:05 xd kernel: intel-lpss 0000:00:15.0: enabling device (0004 -> 0006)
>>> Jul 20 20:02:05 xd kernel: idma64 idma64.0: Found Intel integrated DMA 64-bit
>>> Jul 20 20:02:05 xd kernel: r8168 0000:02:00.0 enp2s0: renamed from eth0
>>> Jul 20 20:02:05 xd kernel: nvme nvme0: pci function 10000:e1:00.0
>>> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: can't derive routing for PCI INT A
>>> Jul 20 20:02:05 xd kernel: nvme 10000:e1:00.0: PCI INT A: no GSI
>>> Jul 20 20:02:05 xd kernel: libata version 3.00 loaded.
>>> Jul 20 20:02:05 xd kernel: nvme nvme0: missing or invalid SUBNQN field.
>>> Jul 20 20:02:05 xd kernel: nvme nvme0: Shutdown timeout set to 10 seconds
>>> Jul 20 20:02:05 xd kernel: nvme nvme0: 8/0/0 default/read/poll queues
>>> Jul 20 20:02:05 xd kernel: nvme0n1: p1 p2 p3 p4 p5
>>> Jul 20 20:02:05 xd kernel: intel-lpss 0000:00:15.3: enabling device (0004 -> 0006)
>>> Jul 20 20:02:05 xd kernel: idma64 idma64.1: Found Intel integrated DMA 64-bit
>>> Jul 20 20:02:05 xd kernel: i2c_hid i2c-ELAN0515:01: supply vdd not found, using dummy regulator
>>> Jul 20 20:02:05 xd kernel: i2c_hid i2c-ELAN0515:01: supply vddl not found, using dummy regulator
>>> Jul 20 20:02:05 xd kernel: intel-lpss 0000:00:19.0: enabling device (0004 -> 0006)
>>> Jul 20 20:02:05 xd kernel: idma64 idma64.2: Found Intel integrated DMA 64-bit
>>> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: [drm] VT-d active for gfx access
>>> Jul 20 20:02:05 xd kernel: checking generic (4000000000 7f0000) vs hw (6014000000 1000000)
>>> Jul 20 20:02:05 xd kernel: checking generic (4000000000 7f0000) vs hw (4000000000 10000000)
>>> Jul 20 20:02:05 xd kernel: fb0: switching to inteldrmfb from EFI VGA
>>> Jul 20 20:02:05 xd kernel: Console: switching to colour dummy device 80x25
>>> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: vgaarb: deactivate vga console
>>> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
>>> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: firmware: direct-loading firmware i915/tgl_dmc_ver2_08.bin
>>> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/tgl_dmc_ver2_08.bin (v2.8)
>>> Jul 20 20:02:05 xd kernel: intel-lpss 0000:00:19.1: enabling device (0004 -> 0006)
>>> Jul 20 20:02:05 xd kernel: idma64 idma64.3: Found Intel integrated DMA 64-bit
>>> Jul 20 20:02:05 xd kernel: input: ELAN0515:01 04F3:3142 Mouse as /devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input4
>>> Jul 20 20:02:05 xd kernel: input: ELAN0515:01 04F3:3142 Touchpad as /devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input6
>>> Jul 20 20:02:05 xd kernel: hid-generic 0018:04F3:3142.0001: input,hidraw0: I2C HID v1.00 Mouse [ELAN0515:01 04F3:3142] on i2c-ELAN0515:01
>>> Jul 20 20:02:05 xd kernel: ahci 10000:e0:17.0: version 3.0
>>> Jul 20 20:02:05 xd kernel: ahci 10000:e0:17.0: can't derive routing for PCI INT A
>>> Jul 20 20:02:05 xd kernel: ahci 10000:e0:17.0: PCI INT A: no GSI
>>> Jul 20 20:02:05 xd kernel: ahci 10000:e0:17.0: AHCI 0001.0301 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
>>> Jul 20 20:02:05 xd kernel: ahci 10000:e0:17.0: flags: 64bit ncq sntf pm clo only pio slum part deso sadm sds
>>> Jul 20 20:02:05 xd kernel: scsi host0: ahci
>>> Jul 20 20:02:05 xd kernel: scsi host1: ahci
>>> Jul 20 20:02:05 xd kernel: ata1: SATA max UDMA/133 abar m2048@0x50102000 port 0x50102100 irq 158
>>> Jul 20 20:02:05 xd kernel: ata2: SATA max UDMA/133 abar m2048@0x50102000 port 0x50102180 irq 158
>>> Jul 20 20:02:05 xd kernel: usb 1-7: new full-speed USB device number 2 using xhci_hcd
>>> Jul 20 20:02:05 xd kernel: usb 1-7: New USB device found, idVendor=04f3, idProduct=0c4f, bcdDevice= 1.61
>>> Jul 20 20:02:05 xd kernel: usb 1-7: New USB device strings: Mfr=1, Product=2, SerialNumber=0
>>> Jul 20 20:02:05 xd kernel: usb 1-7: Product: ELAN:Fingerprint
>>> Jul 20 20:02:05 xd kernel: usb 1-7: Manufacturer: ELAN
>>> Jul 20 20:02:05 xd kernel: ata1: SATA link down (SStatus 0 SControl 300)
>>> Jul 20 20:02:05 xd kernel: ata2: SATA link down (SStatus 0 SControl 300)
>>> Jul 20 20:02:05 xd kernel: usb 1-8: new high-speed USB device number 3 using xhci_hcd
>>> Jul 20 20:02:05 xd kernel: usb 1-8: New USB device found, idVendor=0408, idProduct=a061, bcdDevice= 0.04
>>> Jul 20 20:02:05 xd kernel: usb 1-8: New USB device strings: Mfr=1, Product=2, SerialNumber=0
>>> Jul 20 20:02:05 xd kernel: usb 1-8: Product: HD User Facing
>>> Jul 20 20:02:05 xd kernel: usb 1-8: Manufacturer: SunplusIT Inc
>>> Jul 20 20:02:05 xd kernel: usb 1-10: new high-speed USB device number 4 using xhci_hcd
>>> Jul 20 20:02:05 xd kernel: usb 1-10: New USB device found, idVendor=04ca, idProduct=3802, bcdDevice= 1.00
>>> Jul 20 20:02:05 xd kernel: usb 1-10: New USB device strings: Mfr=5, Product=6, SerialNumber=7
>>> Jul 20 20:02:05 xd kernel: usb 1-10: Product: Wireless_Device
>>> Jul 20 20:02:05 xd kernel: usb 1-10: Manufacturer: MediaTek Inc.
>>> Jul 20 20:02:05 xd kernel: usb 1-10: SerialNumber: 000000000
>>> Jul 20 20:02:05 xd kernel: [drm] Initialized i915 1.6.0 20200917 for 0000:00:02.0 on minor 0
>>> Jul 20 20:02:05 xd kernel: [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
>>> Jul 20 20:02:05 xd kernel: ACPI: Video Device [PEGP] (multi-head: yes rom: no post: no)
>>> Jul 20 20:02:05 xd kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/LNXVIDEO:00/input/input7
>>> Jul 20 20:02:05 xd kernel: ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
>>> Jul 20 20:02:05 xd kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input8
>>> Jul 20 20:02:05 xd kernel: fbcon: i915drmfb (fb0) is primary device
>>> Jul 20 20:02:05 xd kernel: Console: switching to colour frame buffer device 240x67
>>> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
>>> Jul 20 20:02:05 xd kernel: PM: Image not found (code -22)
>>> Jul 20 20:02:05 xd kernel: EXT4-fs (nvme0n1p3): mounting ext3 file system using the ext4 subsystem
>>> Jul 20 20:02:05 xd kernel: EXT4-fs (nvme0n1p3): mounted filesystem with ordered data mode. Opts: (null)
>>> Jul 20 20:02:05 xd kernel: Not activating Mandatory Access Control as /sbin/tomoyo-init does not exist.
>>> Jul 20 20:02:05 xd systemd[1]: Inserted module 'autofs4'
>>> Jul 20 20:02:05 xd systemd[1]: systemd 247.3-7 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=unified)
>>> Jul 20 20:02:05 xd systemd[1]: Detected architecture x86-64.
>>> Jul 20 20:02:05 xd systemd[1]: Set hostname to <xd>.
>>> Jul 20 20:02:05 xd systemd[1]: /lib/systemd/system/plymouth-start.service:16: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed.
>>> Jul 20 20:02:05 xd systemd[1]: Queued start job for default target Graphical Interface.
>>> Jul 20 20:02:05 xd systemd[1]: Created slice system-getty.slice.
>>> Jul 20 20:02:05 xd systemd[1]: Created slice system-modprobe.slice.
>>> Jul 20 20:02:05 xd systemd[1]: Created slice system-systemd\x2dfsck.slice.
>>> Jul 20 20:02:05 xd systemd[1]: Created slice User and Session Slice.
>>> Jul 20 20:02:05 xd systemd[1]: Started Forward Password Requests to Wall Directory Watch.
>>> Jul 20 20:02:05 xd systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
>>> Jul 20 20:02:05 xd systemd[1]: Reached target User and Group Name Lookups.
>>> Jul 20 20:02:05 xd systemd[1]: Reached target Remote File Systems.
>>> Jul 20 20:02:05 xd systemd[1]: Reached target Slices.
>>> Jul 20 20:02:05 xd systemd[1]: Listening on Device-mapper event daemon FIFOs.
>>> Jul 20 20:02:05 xd systemd[1]: Listening on LVM2 poll daemon socket.
>>> Jul 20 20:02:05 xd systemd[1]: Listening on Syslog Socket.
>>> Jul 20 20:02:05 xd systemd[1]: Listening on fsck to fsckd communication Socket.
>>> Jul 20 20:02:05 xd systemd[1]: Listening on initctl Compatibility Named Pipe.
>>> Jul 20 20:02:05 xd systemd[1]: Listening on Journal Audit Socket.
>>> Jul 20 20:02:05 xd systemd[1]: Listening on Journal Socket (/dev/log).
>>> Jul 20 20:02:05 xd systemd[1]: Listening on Journal Socket.
>>> Jul 20 20:02:05 xd systemd[1]: Listening on udev Control Socket.
>>> Jul 20 20:02:05 xd systemd[1]: Listening on udev Kernel Socket.
>>> Jul 20 20:02:05 xd systemd[1]: Mounting Huge Pages File System...
>>> Jul 20 20:02:05 xd systemd[1]: Mounting POSIX Message Queue File System...
>>> Jul 20 20:02:05 xd systemd[1]: Mounting Kernel Debug File System...
>>> Jul 20 20:02:05 xd systemd[1]: Mounting Kernel Trace File System...
>>> Jul 20 20:02:05 xd systemd[1]: Finished Availability of block devices.
>>> Jul 20 20:02:05 xd systemd[1]: Starting Set the console keyboard layout...
>>> Jul 20 20:02:05 xd systemd[1]: Starting Create list of static device nodes for the current kernel...
>>> Jul 20 20:02:05 xd systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
>>> Jul 20 20:02:05 xd systemd[1]: Starting Load Kernel Module configfs...
>>> Jul 20 20:02:05 xd systemd[1]: Starting Load Kernel Module drm...
>>> Jul 20 20:02:05 xd systemd[1]: Starting Load Kernel Module fuse...
>>> Jul 20 20:02:05 xd systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
>>> Jul 20 20:02:05 xd systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
>>> Jul 20 20:02:05 xd systemd[1]: Starting Journal Service...
>>> Jul 20 20:02:05 xd systemd[1]: Starting Load Kernel Modules...
>>> Jul 20 20:02:05 xd systemd[1]: Starting Remount Root and Kernel File Systems...
>>> Jul 20 20:02:05 xd systemd[1]: Starting Coldplug All udev Devices...
>>> Jul 20 20:02:05 xd systemd[1]: Mounted Huge Pages File System.
>>> Jul 20 20:02:05 xd systemd[1]: Mounted POSIX Message Queue File System.
>>> Jul 20 20:02:05 xd systemd[1]: Mounted Kernel Debug File System.
>>> Jul 20 20:02:05 xd systemd[1]: Mounted Kernel Trace File System.
>>> Jul 20 20:02:05 xd systemd[1]: Finished Create list of static device nodes for the current kernel.
>>> Jul 20 20:02:05 xd systemd[1]: modprobe@configfs.service: Succeeded.
>>> Jul 20 20:02:05 xd systemd[1]: Finished Load Kernel Module configfs.
>>> Jul 20 20:02:05 xd systemd[1]: modprobe@drm.service: Succeeded.
>>> Jul 20 20:02:05 xd systemd[1]: Finished Load Kernel Module drm.
>>> Jul 20 20:02:05 xd systemd[1]: Mounting Kernel Configuration File System...
>>> Jul 20 20:02:05 xd systemd[1]: Mounted Kernel Configuration File System.
>>> Jul 20 20:02:05 xd kernel: EXT4-fs (nvme0n1p3): re-mounted. Opts: errors=remount-ro
>>> Jul 20 20:02:05 xd systemd[1]: Finished Remount Root and Kernel File Systems.
>>> Jul 20 20:02:05 xd kernel: fuse: init (API version 7.32)
>>> Jul 20 20:02:05 xd systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
>>> Jul 20 20:02:05 xd systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped.
>>> Jul 20 20:02:05 xd systemd[1]: Starting Load/Save Random Seed...
>>> Jul 20 20:02:05 xd systemd[1]: Starting Create System Users...
>>> Jul 20 20:02:05 xd systemd[1]: modprobe@fuse.service: Succeeded.
>>> Jul 20 20:02:05 xd systemd[1]: Finished Load Kernel Module fuse.
>>> Jul 20 20:02:05 xd systemd[1]: Mounting FUSE Control File System...
>>> Jul 20 20:02:05 xd systemd[1]: Mounted FUSE Control File System.
>>> Jul 20 20:02:05 xd kernel: lp: driver loaded but no devices found
>>> Jul 20 20:02:05 xd kernel: ppdev: user-space parallel port driver
>>> Jul 20 20:02:05 xd systemd[1]: Finished Load/Save Random Seed.
>>> Jul 20 20:02:05 xd systemd[1]: Condition check resulted in First Boot Complete being skipped.
>>> Jul 20 20:02:05 xd systemd[1]: Finished Create System Users.
>>> Jul 20 20:02:05 xd systemd[1]: Starting Create Static Device Nodes in /dev...
>>> Jul 20 20:02:05 xd systemd[1]: Finished Create Static Device Nodes in /dev.
>>> Jul 20 20:02:05 xd systemd[1]: Starting Rule-based Manager for Device Events and Files...
>>> Jul 20 20:02:05 xd systemd[1]: Finished Set the console keyboard layout.
>>> Jul 20 20:02:05 xd systemd[1]: Started Journal Service.
>>> Jul 20 20:02:05 xd kernel: nvidia: module license 'NVIDIA' taints kernel.
>>> Jul 20 20:02:05 xd kernel: Disabling lock debugging due to kernel taint
>>> Jul 20 20:02:05 xd kernel: nvidia-nvlink: Nvlink Core is being initialized, major device number 245
>>> Jul 20 20:02:05 xd kernel:
>>> Jul 20 20:02:05 xd kernel: nvidia 0000:01:00.0: enabling device (0006 -> 0007)
>>> Jul 20 20:02:05 xd kernel: NVRM: loading NVIDIA UNIX x86_64 Kernel Module 470.129.06 Thu May 12 22:52:02 UTC 2022
>>> Jul 20 20:02:05 xd kernel: input: Acer Wireless Radio Control as /devices/LNXSYSTM:00/10251229:00/input/input9
>>> Jul 20 20:02:05 xd kernel: input: Intel HID events as /devices/platform/INTC1051:00/input/input10
>>> Jul 20 20:02:05 xd kernel: intel-hid INTC1051:00: platform supports 5 button array
>>> Jul 20 20:02:05 xd kernel: input: Intel HID 5 button array as /devices/platform/INTC1051:00/input/input11
>>> Jul 20 20:02:05 xd kernel: intel_pmc_core INT33A1:00: initialized
>>> Jul 20 20:02:05 xd kernel: ACPI: AC Adapter [ACAD] (on-line)
>>> Jul 20 20:02:05 xd kernel: nvidia-modeset: Loading NVIDIA Kernel Mode Setting Driver for UNIX platforms 470.129.06 Thu May 12 22:42:45 UTC 2022
>>> Jul 20 20:02:05 xd kernel: mc: Linux media interface: v0.10
>>> Jul 20 20:02:05 xd kernel: mei_me 0000:00:16.0: enabling device (0000 -> 0002)
>>> Jul 20 20:02:05 xd kernel: ee1004 0-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
>>> Jul 20 20:02:05 xd kernel: [drm] [nvidia-drm] [GPU ID 0x00000100] Loading driver
>>> Jul 20 20:02:05 xd kernel: [drm] Initialized nvidia-drm 0.0.0 20160202 for 0000:01:00.0 on minor 1
>>> Jul 20 20:02:05 xd kernel: videodev: Linux video capture interface: v2.00
>>> Jul 20 20:02:05 xd kernel: iTCO_vendor_support: vendor-support=0
>>> Jul 20 20:02:05 xd kernel: iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
>>> Jul 20 20:02:05 xd kernel: iTCO_wdt: Found a Intel PCH TCO device (Version=6, TCOBASE=0x0400)
>>> Jul 20 20:02:05 xd kernel: iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
>>> Jul 20 20:02:05 xd kernel: EXT4-fs (nvme0n1p2): mounting ext2 file system using the ext4 subsystem
>>> Jul 20 20:02:05 xd kernel: EXT4-fs (nvme0n1p2): mounted filesystem without journal. Opts: (null)
>>> Jul 20 20:02:05 xd kernel: ext2 filesystem being mounted at /boot supports timestamps until 2038 (0x7fffffff)
>>> Jul 20 20:02:05 xd kernel: uvcvideo: Found UVC 1.00 device HD User Facing (0408:a061)
>>> Jul 20 20:02:05 xd kernel: Adding 31182844k swap on /dev/nvme0n1p4. Priority:-2 extents:1 across:31182844k SSFS
>>> Jul 20 20:02:05 xd kernel: input: HD User Facing: HD User Facing as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/input/input12
>>> Jul 20 20:02:05 xd kernel: input: PC Speaker as /devices/platform/pcspkr/input/input13
>>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=401 comm="apparmor_parser"
>>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-oopslash" pid=402 comm="apparmor_parser"
>>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=405 comm="apparmor_parser"
>>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=405 comm="apparmor_parser"
>>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=403 comm="apparmor_parser"
>>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=403 comm="apparmor_parser"
>>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=403 comm="apparmor_parser"
>>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cups-browsed" pid=407 comm="apparmor_parser"
>>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.840:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-senddoc" pid=409 comm="apparmor_parser"
>>> Jul 20 20:02:05 xd kernel: usbcore: registered new interface driver uvcvideo
>>> Jul 20 20:02:05 xd kernel: USB Video Class driver (1.1.1)
>>> Jul 20 20:02:05 xd kernel: pstore: Using crash dump compression: deflate
>>> Jul 20 20:02:05 xd kernel: input: ELAN0515:01 04F3:3142 Mouse as /devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input14
>>> Jul 20 20:02:05 xd kernel: input: ELAN0515:01 04F3:3142 Touchpad as /devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input16
>>> Jul 20 20:02:05 xd kernel: hid-multitouch 0018:04F3:3142.0001: input,hidraw0: I2C HID v1.00 Mouse [ELAN0515:01 04F3:3142] on i2c-ELAN0515:01
>>> Jul 20 20:02:05 xd kernel: pstore: Registered efi as persistent store backend
>>> Jul 20 20:02:05 xd kernel: acer_wmi: Acer Laptop ACPI-WMI Extras
>>> Jul 20 20:02:05 xd kernel: acer_wmi: Function bitmap for Communication Button: 0x801
>>> Jul 20 20:02:05 xd kernel: input: Acer WMI hotkeys as /devices/virtual/input/input17
>>> Jul 20 20:02:05 xd kernel: snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040100
>>> Jul 20 20:02:05 xd kernel: snd_hda_intel 0000:00:1f.3: Digital mics found on Skylake+ platform, using SOF driver
>>> Jul 20 20:02:05 xd kernel: cryptd: max_cpu_qlen set to 1000
>>> Jul 20 20:02:06 xd kernel: AVX2 version of gcm_enc/dec engaged.
>>> Jul 20 20:02:06 xd kernel: AES CTR mode by8 optimization enabled
>>> Jul 20 20:02:06 xd kernel: resource sanity check: requesting [mem 0xfedc0000-0xfedcdfff], which spans more than pnp 00:04 [mem 0xfedc0000-0xfedc7fff]
>>> Jul 20 20:02:06 xd kernel: caller tgl_uncore_imc_freerunning_init_box+0xbb/0x100 [intel_uncore] mapping multiple BARs
>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040100
>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: Digital mics found on Skylake+ platform, using SOF driver
>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: enabling device (0000 -> 0002)
>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if 0x040100
>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: use msi interrupt mode
>>> Jul 20 20:02:06 xd kernel: ACPI Warning: \_SB.PC00.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20200925/nsarguments-61)
>>> Jul 20 20:02:06 xd kernel: enp2s0: 0xffffbd82000e9000, 08:8f:c3:4f:86:c5, IRQ 145
>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: hda codecs found, mask 5
>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: using HDA machine driver skl_hda_dsp_generic now
>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: DMICs detected in NHLT tables: 2
>>> Jul 20 20:02:06 xd kernel: alg: No test for fips(ansi_cprng) (fips_ansi_cprng)
>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: firmware: failed to load intel/sof/sof-tgl.ri (-2)
>>> Jul 20 20:02:06 xd kernel: firmware_class: See https://wiki.debian.org/Firmware for information about missing firmware
>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: Direct firmware load for intel/sof/sof-tgl.ri failed with error -2
>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: error: request firmware intel/sof/sof-tgl.ri failed err: -2
>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: error: failed to load DSP firmware -2
>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: error: sof_probe_work failed err: -2
>>> Jul 20 20:02:06 xd kernel: Bluetooth: Core ver 2.22
>>> Jul 20 20:02:06 xd kernel: NET: Registered protocol family 31
>>> Jul 20 20:02:06 xd kernel: Bluetooth: HCI device and connection manager initialized
>>> Jul 20 20:02:06 xd kernel: Bluetooth: HCI socket layer initialized
>>> Jul 20 20:02:06 xd kernel: Bluetooth: L2CAP socket layer initialized
>>> Jul 20 20:02:06 xd kernel: Bluetooth: SCO socket layer initialized
>>> Jul 20 20:02:06 xd kernel: usbcore: registered new interface driver btusb
>>> Jul 20 20:02:07 xd kernel: intel_rapl_msr: PL4 support detected.
>>> Jul 20 20:02:07 xd kernel: intel_rapl_common: Found RAPL domain package
>>> Jul 20 20:02:07 xd kernel: intel_rapl_common: Found RAPL domain core
>>> Jul 20 20:02:07 xd kernel: intel_rapl_common: Found RAPL domain uncore
>>> Jul 20 20:02:07 xd kernel: mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_component_ops [i915])
>>> Jul 20 20:02:07 xd kernel: Bluetooth: BNEP (Ethernet Emulation) ver 1.3
>>> Jul 20 20:02:07 xd kernel: Bluetooth: BNEP filters: protocol multicast
>>> Jul 20 20:02:07 xd kernel: Bluetooth: BNEP socket layer initialized
>>> Jul 20 20:02:09 xd kernel: r8168: enp2s0: link up
>>> Jul 20 20:02:09 xd kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
>>> Jul 20 20:02:09 xd kernel: rfkill: input handler disabled
>>> Jul 20 20:02:17 xd kernel: rfkill: input handler enabled
>>> Jul 20 20:02:18 xd kernel: rfkill: input handler disabled
>>>
>>
Re: Boot into Xen on debian11 [ In reply to ]
On 7/20/2022 4:18 PM, Bruno wrote:
> Error I can see when I grep from dmesg on initramfs:
>
> pcieport xxx DCP: error containment capabilities: Int Msg #0, …..
>
> And grep fail:
>
> PM-Timer consistency check
>
> pci xxx: Failed to add - pass through or MSI/MSI-X might fail!
> pci xxx: BAR x: failed to assign [io size x]
>
> r8168: module verification failed: signature and or required key missing - tainting kernel

According to my search that r8168 is your ethernet adapter. Also, if
you can't mount the root device your logs for your Xen boot will
probably not be accessible from the journal or by viewing /var/log/kern.log.

There is still missing firmware:

>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: firmware: failed to load intel/sof/sof-tgl.ri (-2)
>> Jul 20 20:02:06 xd kernel: firmware_class: See https://wiki.debian.org/Firmware for information about missing firmware
>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: Direct firmware load for intel/sof/sof-tgl.ri failed with error -2
>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: error: request firmware intel/sof/sof-tgl.ri failed err: -2
>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: error: failed to load DSP firmware -2
>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: error: sof_probe_work failed err: -2

How new is the  Acer Aspire A517-52G/Jasmine_TL?

One of the drawbacks of Debian stable (Debian 11 is Debian stable)
is that it does not often support the newest hardware.

You might be better off with fedora or opensuse with a
fairly new laptop, or if you want to stick with Debian, you can
try upgrading to Debian testing, or Debian unstable which probably
provides better support for newer devices but without the stability that
Debian 11 would have. I think fedora and opensuse also have
Xen packages, and I know Debian testing and unstable have
Xen packages that would be more likely to work with a
newer laptop.

Chuck


>
> > On 20 Jul 2022, at 21:03, Chuck Zmudzinski <brchuckz@netscape.net> wrote:
> >
> > ?On 7/20/22 3:19 PM, Bruno wrote:
> >>
> >> Hello Leigh. Hello Chuck.
> >>
> >> Thank you again for the support. Unfortunately matters have not moved forward yet.
> >>
> >> I have successfully installed nvidia and the non-free firmware miscellanea, and I have re-generated the initramfs ( update-initramfs -k all -c -v ). But I cannot boot on Xen.
> >>
> >> I also when booting Xen and landing on initramfs prompt, cannot mount /root ( mount -o remount,rw /root ), and I cannot extract a dmesg of that boot process. I am not getting the ACPI error I was getting before, but clearly the errors in mount are ACPI failure.
> >>
> >> Bellow the current journalctl -k -b :
> >>
> >
> > As Leigh said, there should be something like:
> >
> > Jul 20 09:19:36 debian kernel: [ 0.000000] Hypervisor detected: Xen PV
> >
> > In the journal logs, but I don't see it there. See if you can find it in
> > the /var/log/kern.log file to be sure you are posting the right log file.
> > It should be there on the attempt to boot into Linux on Xen.
> >
> > Maybe there is something wrong with your grub configuration. I know
> > you posted it in your first message but I don't see anything
> > terribly wrong there. Are you sure that grub is really booting
> > the 'Debian Linux/GNU with Xen hypervisor' boot option? It
> > should boot that, based on what is in your /boot/grub/grub.cfg
> > file.
> >
> > You can also manually select the option to boot Debian with the
> > Xen hypervisor while the grub boot menu displays.
> >
> > It has been a long time since I installed Xen on Debian,
> > I have been just upgrading my installation that
> > goes all the way back to Debian 7. It may be there
> > is a bug in the current Debian Xen metapackage
> > installation system.
> >
> > I have been planning to try to do a clean install of
> > Xen on Debian 11 to see if it still works right. I will
> > try it later this week and let you know if there is
> > a bug in the Debian Xen installation system.
> >
> > Chuck
> >
> >
> >> Jul 20 20:02:05 xd kernel: Linux version 5.10.0-16-amd64 (debian-kernel@lists.debian.org) (gcc-10 (Debian 10.2.1-6) 10.2.1 20210110, GNU ld (GNU Binutils for Debian) 2.35.2) #1 SMP Debian 5.10.127-1 (2022-06-30)
> >> Jul 20 20:02:05 xd kernel: Command line: BOOT_IMAGE=/vmlinuz-5.10.0-16-amd64 root=UUID=0123abcd ro quiet
> >> Jul 20 20:02:05 xd kernel: x86/split lock detection: warning about user-space split_locks
> >> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
> >> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
> >> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
> >> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask'
> >> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'
> >> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'
> >> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
> >> Jul 20 20:02:05 xd kernel: x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
> >> Jul 20 20:02:05 xd kernel: x86/fpu: xstate_offset[5]: 832, xstate_sizes[5]: 64
> >> Jul 20 20:02:05 xd kernel: x86/fpu: xstate_offset[6]: 896, xstate_sizes[6]: 512
> >> Jul 20 20:02:05 xd kernel: x86/fpu: xstate_offset[7]: 1408, xstate_sizes[7]: 1024
> >> Jul 20 20:02:05 xd kernel: x86/fpu: xstate_offset[9]: 2432, xstate_sizes[9]: 8
> >> Jul 20 20:02:05 xd kernel: x86/fpu: Enabled xstate features 0x2e7, context size is 2440 bytes, using 'compacted' format.
> >> Jul 20 20:02:05 xd kernel: BIOS-provided physical RAM map:
> >> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
> >> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
> >> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000000100000-0x000000003fd98fff] usable
> >> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x000000003fd99000-0x0000000040698fff] reserved
> >> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000040699000-0x00000000424aefff] usable
> >> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000424af000-0x000000004287efff] type 20
> >> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x000000004287f000-0x00000000442fefff] reserved
> >> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000442ff000-0x0000000044b2efff] ACPI NVS
> >> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000044b2f000-0x0000000044bfefff] ACPI data
> >> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000044bff000-0x0000000044bfffff] usable
> >> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000044c00000-0x0000000048ffffff] reserved
> >> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000049e00000-0x000000004f7fffff] reserved
> >> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000c0000000-0x00000000cfffffff] reserved
> >> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000fe010000-0x00000000fe010fff] reserved
> >> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000fed20000-0x00000000fed7ffff] reserved
> >> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000ff500000-0x00000000ffffffff] reserved
> >> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000100000000-0x00000004b07fffff] usable
> >> Jul 20 20:02:05 xd kernel: NX (Execute Disable) protection: active
> >> Jul 20 20:02:05 xd kernel: efi: EFI v2.70 by INSYDE Corp.
> >> Jul 20 20:02:05 xd kernel: efi: ACPI=0x44bfe000 ACPI 2.0=0x44bfe014 TPMFinalLog=0x44ac5000 SMBIOS=0x429de000 SMBIOS 3.0=0x429dc000 ESRT=0x3bf68a98 MOKvar=0x3bee5000
> >> Jul 20 20:02:05 xd kernel: secureboot: Secure boot could not be determined (mode 0)
> >> Jul 20 20:02:05 xd kernel: SMBIOS 3.3.0 present.
> >> Jul 20 20:02:05 xd kernel: DMI: Acer Aspire A517-52G/Jasmine_TL, BIOS V1.26 03/14/2022
> >> Jul 20 20:02:05 xd kernel: tsc: Detected 2400.000 MHz processor
> >> Jul 20 20:02:05 xd kernel: tsc: Detected 2419.200 MHz TSC
> >> Jul 20 20:02:05 xd kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
> >> Jul 20 20:02:05 xd kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
> >> Jul 20 20:02:05 xd kernel: last_pfn = 0x4b0800 max_arch_pfn = 0x400000000
> >> Jul 20 20:02:05 xd kernel: MTRR default type: write-back
> >> Jul 20 20:02:05 xd kernel: MTRR fixed ranges enabled:
> >> Jul 20 20:02:05 xd kernel: 00000-9FFFF write-back
> >> Jul 20 20:02:05 xd kernel: A0000-BFFFF uncachable
> >> Jul 20 20:02:05 xd kernel: C0000-FFFFF write-protect
> >> Jul 20 20:02:05 xd kernel: MTRR variable ranges enabled:
> >> Jul 20 20:02:05 xd kernel: 0 base 0080000000 mask 7F80000000 uncachable
> >> Jul 20 20:02:05 xd kernel: 1 base 0060000000 mask 7FE0000000 uncachable
> >> Jul 20 20:02:05 xd kernel: 2 base 0050000000 mask 7FF0000000 uncachable
> >> Jul 20 20:02:05 xd kernel: 3 base 004C000000 mask 7FFC000000 uncachable
> >> Jul 20 20:02:05 xd kernel: 4 base 004B000000 mask 7FFF000000 uncachable
> >> Jul 20 20:02:05 xd kernel: 5 base 4000000000 mask 4000000000 uncachable
> >> Jul 20 20:02:05 xd kernel: 6 disabled
> >> Jul 20 20:02:05 xd kernel: 7 disabled
> >> Jul 20 20:02:05 xd kernel: 8 disabled
> >> Jul 20 20:02:05 xd kernel: 9 disabled
> >> Jul 20 20:02:05 xd kernel: x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
> >> Jul 20 20:02:05 xd kernel: last_pfn = 0x44c00 max_arch_pfn = 0x400000000
> >> Jul 20 20:02:05 xd kernel: esrt: Reserving ESRT space from 0x000000003bf68a98 to 0x000000003bf68ad0.
> >> Jul 20 20:02:05 xd kernel: e820: update [mem 0x3bf68000-0x3bf68fff] usable ==> reserved
> >> Jul 20 20:02:05 xd kernel: e820: update [mem 0x3bee5000-0x3bee7fff] usable ==> reserved
> >> Jul 20 20:02:05 xd kernel: Using GB pages for direct mapping
> >> Jul 20 20:02:05 xd kernel: RAMDISK: [mem 0x32341000-0x35197fff]
> >> Jul 20 20:02:05 xd kernel: ACPI: Early table checksum verification disabled
> >> Jul 20 20:02:05 xd kernel: ACPI: RSDP 0x0000000044BFE014 000024 (v02 ACRSYS)
> >> Jul 20 20:02:05 xd kernel: ACPI: XSDT 0x0000000044BDB188 000124 (v01 ACRSYS ACRPRDCT 00000002 01000013)
> >> Jul 20 20:02:05 xd kernel: ACPI: FACP 0x0000000044BDE000 000114 (v06 ACRSYS ACRPRDCT 00000002 1025 00040000)
> >> Jul 20 20:02:05 xd kernel: ACPI: DSDT 0x0000000044B81000 059948 (v02 ACRSYS ACRPRDCT 00000002 1025 00040000)
> >> Jul 20 20:02:05 xd kernel: ACPI: FACS 0x0000000044AA2000 000040
> >> Jul 20 20:02:05 xd kernel: ACPI: UEFI 0x0000000044B2E000 000236 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
> >> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BFA000 00255C (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
> >> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BF9000 000105 (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
> >> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BF6000 002137 (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
> >> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BF2000 003300 (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
> >> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BF1000 00077B (v02 ACRSYS ACRPRDCT 00001000 1025 00040000)
> >> Jul 20 20:02:05 xd kernel: ACPI: TPM2 0x0000000044BF0000 00004C (v04 ACRSYS ACRPRDCT 00000002 1025 00040000)
> >> Jul 20 20:02:05 xd kernel: ACPI: MSDM 0x0000000044BEF000 000055 (v03 ACRSYS ACRPRDCT 00000001 1025 00040000)
> >> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BEE000 000D02 (v02 ACRSYS ACRPRDCT 00000000 1025 00040000)
> >> Jul 20 20:02:05 xd kernel: ACPI: NHLT 0x0000000044BEC000 001B54 (v00 ACRSYS ACRPRDCT 00000002 1025 00040000)
> >> Jul 20 20:02:05 xd kernel: ACPI: LPIT 0x0000000044BEB000 0000CC (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
> >> Jul 20 20:02:05 xd kernel: ACPI: WSMT 0x0000000044BEA000 000028 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
> >> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BE9000 000B70 (v02 ACRSYS ACRPRDCT 00001000 1025 00040000)
> >> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BE8000 00012A (v02 ACRSYS ACRPRDCT 00000000 1025 00040000)
> >> Jul 20 20:02:05 xd kernel: ACPI: DBGP 0x0000000044BE7000 000034 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
> >> Jul 20 20:02:05 xd kernel: ACPI: DBG2 0x0000000044BE6000 000054 (v00 ACRSYS ACRPRDCT 00000002 1025 00040000)
> >> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BDF000 006BA9 (v01 ACRSYS ACRPRDCT 00001000 1025 00040000)
> >> Jul 20 20:02:05 xd kernel: ACPI: HPET 0x0000000044BDD000 000038 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
> >> Jul 20 20:02:05 xd kernel: ACPI: APIC 0x0000000044BDC000 00012C (v04 ACRSYS ACRPRDCT 00000002 1025 00040000)
> >> Jul 20 20:02:05 xd kernel: ACPI: MCFG 0x0000000044BFD000 00003C (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
> >> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044B80000 000C78 (v02 ACRSYS ACRPRDCT 00000002 1025 00040000)
> >> Jul 20 20:02:05 xd kernel: ACPI: DMAR 0x0000000044B7F000 000088 (v02 ACRSYS ACRPRDCT 00000002 1025 00040000)
> >> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044B7C000 0020D6 (v01 ACRSYS ACRPRDCT 00001000 1025 00040000)
> >> Jul 20 20:02:05 xd kernel: ACPI: UEFI 0x0000000044A5B000 00063A (v01 ACRSYS ACRPRDCT 00000000 1025 00040000)
> >> Jul 20 20:02:05 xd kernel: ACPI: UEFI 0x0000000044A5A000 00005C (v01 ACRSYS ACRPRDCT 00000000 1025 00040000)
> >> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044B7B000 000985 (v02 ACRSYS ACRPRDCT 00001000 1025 00040000)
> >> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044B7A000 0000F8 (v01 ACRSYS ACRPRDCT 00001000 1025 00040000)
> >> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044B79000 000835 (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
> >> Jul 20 20:02:05 xd kernel: ACPI: FPDT 0x0000000044B78000 000044 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
> >> Jul 20 20:02:05 xd kernel: ACPI: PTDT 0x0000000044B76000 000CFE (v00 ACRSYS ACRPRDCT 00000005 1025 00040000)
> >> Jul 20 20:02:05 xd kernel: ACPI: BGRT 0x0000000044B77000 000038 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
> >> Jul 20 20:02:05 xd kernel: ACPI: Reserving FACP table memory at [mem 0x44bde000-0x44bde113]
> >> Jul 20 20:02:05 xd kernel: ACPI: Reserving DSDT table memory at [mem 0x44b81000-0x44bda947]
> >> Jul 20 20:02:05 xd kernel: ACPI: Reserving FACS table memory at [mem 0x44aa2000-0x44aa203f]
> >> Jul 20 20:02:05 xd kernel: ACPI: Reserving UEFI table memory at [mem 0x44b2e000-0x44b2e235]
> >> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bfa000-0x44bfc55b]
> >> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bf9000-0x44bf9104]
> >> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bf6000-0x44bf8136]
> >> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bf2000-0x44bf52ff]
> >> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bf1000-0x44bf177a]
> >> Jul 20 20:02:05 xd kernel: ACPI: Reserving TPM2 table memory at [mem 0x44bf0000-0x44bf004b]
> >> Jul 20 20:02:05 xd kernel: ACPI: Reserving MSDM table memory at [mem 0x44bef000-0x44bef054]
> >> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bee000-0x44beed01]
> >> Jul 20 20:02:05 xd kernel: ACPI: Reserving NHLT table memory at [mem 0x44bec000-0x44bedb53]
> >> Jul 20 20:02:05 xd kernel: ACPI: Reserving LPIT table memory at [mem 0x44beb000-0x44beb0cb]
> >> Jul 20 20:02:05 xd kernel: ACPI: Reserving WSMT table memory at [mem 0x44bea000-0x44bea027]
> >> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44be9000-0x44be9b6f]
> >> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44be8000-0x44be8129]
> >> Jul 20 20:02:05 xd kernel: ACPI: Reserving DBGP table memory at [mem 0x44be7000-0x44be7033]
> >> Jul 20 20:02:05 xd kernel: ACPI: Reserving DBG2 table memory at [mem 0x44be6000-0x44be6053]
> >> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bdf000-0x44be5ba8]
> >> Jul 20 20:02:05 xd kernel: ACPI: Reserving HPET table memory at [mem 0x44bdd000-0x44bdd037]
> >> Jul 20 20:02:05 xd kernel: ACPI: Reserving APIC table memory at [mem 0x44bdc000-0x44bdc12b]
> >> Jul 20 20:02:05 xd kernel: ACPI: Reserving MCFG table memory at [mem 0x44bfd000-0x44bfd03b]
> >> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b80000-0x44b80c77]
> >> Jul 20 20:02:05 xd kernel: ACPI: Reserving DMAR table memory at [mem 0x44b7f000-0x44b7f087]
> >> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b7c000-0x44b7e0d5]
> >> Jul 20 20:02:05 xd kernel: ACPI: Reserving UEFI table memory at [mem 0x44a5b000-0x44a5b639]
> >> Jul 20 20:02:05 xd kernel: ACPI: Reserving UEFI table memory at [mem 0x44a5a000-0x44a5a05b]
> >> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b7b000-0x44b7b984]
> >> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b7a000-0x44b7a0f7]
> >> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b79000-0x44b79834]
> >> Jul 20 20:02:05 xd kernel: ACPI: Reserving FPDT table memory at [mem 0x44b78000-0x44b78043]
> >> Jul 20 20:02:05 xd kernel: ACPI: Reserving PTDT table memory at [mem 0x44b76000-0x44b76cfd]
> >> Jul 20 20:02:05 xd kernel: ACPI: Reserving BGRT table memory at [mem 0x44b77000-0x44b77037]
> >> Jul 20 20:02:05 xd kernel: ACPI: Local APIC address 0xfee00000
> >> Jul 20 20:02:05 xd kernel: No NUMA configuration found
> >> Jul 20 20:02:05 xd kernel: Faking a node at [mem 0x0000000000000000-0x00000004b07fffff]
> >> Jul 20 20:02:05 xd kernel: NODE_DATA(0) allocated [mem 0x4b07d6000-0x4b07fffff]
> >> Jul 20 20:02:05 xd kernel: Zone ranges:
> >> Jul 20 20:02:05 xd kernel: DMA [mem 0x0000000000001000-0x0000000000ffffff]
> >> Jul 20 20:02:05 xd kernel: DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
> >> Jul 20 20:02:05 xd kernel: Normal [mem 0x0000000100000000-0x00000004b07fffff]
> >> Jul 20 20:02:05 xd kernel: Device empty
> >> Jul 20 20:02:05 xd kernel: Movable zone start for each node
> >> Jul 20 20:02:05 xd kernel: Early memory node ranges
> >> Jul 20 20:02:05 xd kernel: node 0: [mem 0x0000000000001000-0x000000000009efff]
> >> Jul 20 20:02:05 xd kernel: node 0: [mem 0x0000000000100000-0x000000003fd98fff]
> >> Jul 20 20:02:05 xd kernel: node 0: [mem 0x0000000040699000-0x00000000424aefff]
> >> Jul 20 20:02:05 xd kernel: node 0: [mem 0x0000000044bff000-0x0000000044bfffff]
> >> Jul 20 20:02:05 xd kernel: node 0: [mem 0x0000000100000000-0x00000004b07fffff]
> >> Jul 20 20:02:05 xd kernel: Initmem setup node 0 [mem 0x0000000000001000-0x00000004b07fffff]
> >> Jul 20 20:02:05 xd kernel: On node 0 totalpages: 4137806
> >> Jul 20 20:02:05 xd kernel: DMA zone: 64 pages used for memmap
> >> Jul 20 20:02:05 xd kernel: DMA zone: 25 pages reserved
> >> Jul 20 20:02:05 xd kernel: DMA zone: 3998 pages, LIFO batch:0
> >> Jul 20 20:02:05 xd kernel: DMA32 zone: 4143 pages used for memmap
> >> Jul 20 20:02:05 xd kernel: DMA32 zone: 265136 pages, LIFO batch:63
> >> Jul 20 20:02:05 xd kernel: Normal zone: 60448 pages used for memmap
> >> Jul 20 20:02:05 xd kernel: Normal zone: 3868672 pages, LIFO batch:63
> >> Jul 20 20:02:05 xd kernel: On node 0, zone DMA: 1 pages in unavailable ranges
> >> Jul 20 20:02:05 xd kernel: On node 0, zone DMA: 97 pages in unavailable ranges
> >> Jul 20 20:02:05 xd kernel: On node 0, zone DMA32: 2304 pages in unavailable ranges
> >> Jul 20 20:02:05 xd kernel: On node 0, zone DMA32: 10064 pages in unavailable ranges
> >> Jul 20 20:02:05 xd kernel: On node 0, zone Normal: 13312 pages in unavailable ranges
> >> Jul 20 20:02:05 xd kernel: On node 0, zone Normal: 30720 pages in unavailable ranges
> >> Jul 20 20:02:05 xd kernel: Reserving Intel graphics memory at [mem 0x4b800000-0x4f7fffff]
> >> Jul 20 20:02:05 xd kernel: ACPI: PM-Timer IO Port: 0x1808
> >> Jul 20 20:02:05 xd kernel: ACPI: Local APIC address 0xfee00000
> >> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
> >> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
> >> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
> >> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
> >> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
> >> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
> >> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
> >> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
> >> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
> >> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
> >> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
> >> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
> >> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
> >> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
> >> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
> >> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
> >> Jul 20 20:02:05 xd kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
> >> Jul 20 20:02:05 xd kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
> >> Jul 20 20:02:05 xd kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
> >> Jul 20 20:02:05 xd kernel: ACPI: IRQ0 used by override.
> >> Jul 20 20:02:05 xd kernel: ACPI: IRQ9 used by override.
> >> Jul 20 20:02:05 xd kernel: Using ACPI (MADT) for SMP configuration information
> >> Jul 20 20:02:05 xd kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
> >> Jul 20 20:02:05 xd kernel: e820: update [mem 0x3bf6a000-0x3c05dfff] usable ==> reserved
> >> Jul 20 20:02:05 xd kernel: TSC deadline timer available
> >> Jul 20 20:02:05 xd kernel: smpboot: Allowing 8 CPUs, 0 hotplug CPUs
> >> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
> >> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
> >> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x3bee5000-0x3bee7fff]
> >> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x3bf68000-0x3bf68fff]
> >> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x3bf6a000-0x3c05dfff]
> >> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x3fd99000-0x40698fff]
> >> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x424af000-0x4287efff]
> >> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x4287f000-0x442fefff]
> >> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x442ff000-0x44b2efff]
> >> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x44b2f000-0x44bfefff]
> >> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x44c00000-0x48ffffff]
> >> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x49000000-0x49dfffff]
> >> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x49e00000-0x4f7fffff]
> >> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x4f800000-0xbfffffff]
> >> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xc0000000-0xcfffffff]
> >> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xd0000000-0xfe00ffff]
> >> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xfe010000-0xfe010fff]
> >> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xfed1ffff]
> >> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xfed7ffff]
> >> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xff4fffff]
> >> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xff500000-0xffffffff]
> >> Jul 20 20:02:05 xd kernel: [mem 0x4f800000-0xbfffffff] available for PCI devices
> >> Jul 20 20:02:05 xd kernel: Booting paravirtualized kernel on bare hardware
> >> Jul 20 20:02:05 xd kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
> >> Jul 20 20:02:05 xd kernel: setup_percpu: NR_CPUS:8192 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
> >> Jul 20 20:02:05 xd kernel: percpu: Embedded 58 pages/cpu s200664 r8192 d28712 u262144
> >> Jul 20 20:02:05 xd kernel: pcpu-alloc: s200664 r8192 d28712 u262144 alloc=1*2097152
> >> Jul 20 20:02:05 xd kernel: pcpu-alloc: [0] 0 1 2 3 4 5 6 7
> >> Jul 20 20:02:05 xd kernel: Built 1 zonelists, mobility grouping on. Total pages: 4073126
> >> Jul 20 20:02:05 xd kernel: Policy zone: Normal
> >> Jul 20 20:02:05 xd kernel: Kernel command line: BOOT_IMAGE=/vmlinuz-5.10.0-16-amd64 root=UUID=0dc2ba0c-97d5-4786-bc97-4d13279afe0f ro quiet
> >> Jul 20 20:02:05 xd kernel: Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
> >> Jul 20 20:02:05 xd kernel: Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
> >> Jul 20 20:02:05 xd kernel: mem auto-init: stack:off, heap alloc:on, heap free:off
> >> Jul 20 20:02:05 xd kernel: Memory: 1010444K/16551224K available (12295K kernel code, 2536K rwdata, 7568K rodata, 2424K init, 3680K bss, 520984K reserved, 0K cma-reserved)
> >> Jul 20 20:02:05 xd kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
> >> Jul 20 20:02:05 xd kernel: ftrace: allocating 36455 entries in 143 pages
> >> Jul 20 20:02:05 xd kernel: ftrace: allocated 143 pages with 5 groups
> >> Jul 20 20:02:05 xd kernel: rcu: Hierarchical RCU implementation.
> >> Jul 20 20:02:05 xd kernel: rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=8.
> >> Jul 20 20:02:05 xd kernel: Rude variant of Tasks RCU enabled.
> >> Jul 20 20:02:05 xd kernel: Tracing variant of Tasks RCU enabled.
> >> Jul 20 20:02:05 xd kernel: rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
> >> Jul 20 20:02:05 xd kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
> >> Jul 20 20:02:05 xd kernel: NR_IRQS: 524544, nr_irqs: 2048, preallocated irqs: 16
> >> Jul 20 20:02:05 xd kernel: random: crng init done
> >> Jul 20 20:02:05 xd kernel: Console: colour dummy device 80x25
> >> Jul 20 20:02:05 xd kernel: printk: console [tty0] enabled
> >> Jul 20 20:02:05 xd kernel: ACPI: Core revision 20200925
> >> Jul 20 20:02:05 xd kernel: hpet: HPET dysfunctional in PC10. Force disabled.
> >> Jul 20 20:02:05 xd kernel: APIC: Switch to symmetric I/O mode setup
> >> Jul 20 20:02:05 xd kernel: DMAR: Host address width 39
> >> Jul 20 20:02:05 xd kernel: DMAR: DRHD base: 0x000000fed90000 flags: 0x0
> >> Jul 20 20:02:05 xd kernel: DMAR: dmar0: reg_base_addr fed90000 ver 4:0 cap 1c0000c40660462 ecap 29a00f0505e
> >> Jul 20 20:02:05 xd kernel: DMAR: DRHD base: 0x000000fed91000 flags: 0x1
> >> Jul 20 20:02:05 xd kernel: DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
> >> Jul 20 20:02:05 xd kernel: DMAR: RMRR base: 0x0000004b000000 end: 0x0000004f7fffff
> >> Jul 20 20:02:05 xd kernel: DMAR-IR: IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 1
> >> Jul 20 20:02:05 xd kernel: DMAR-IR: HPET id 0 under DRHD base 0xfed91000
> >> Jul 20 20:02:05 xd kernel: DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
> >> Jul 20 20:02:05 xd kernel: DMAR-IR: Enabled IRQ remapping in x2apic mode
> >> Jul 20 20:02:05 xd kernel: x2apic enabled
> >> Jul 20 20:02:05 xd kernel: Switched APIC routing to cluster x2apic.
> >> Jul 20 20:02:05 xd kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x22df1149949, max_idle_ns: 440795312789 ns
> >> Jul 20 20:02:05 xd kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 4838.40 BogoMIPS (lpj=9676800)
> >> Jul 20 20:02:05 xd kernel: pid_max: default: 32768 minimum: 301
> >> Jul 20 20:02:05 xd kernel: LSM: Security Framework initializing
> >> Jul 20 20:02:05 xd kernel: Yama: disabled by default; enable with sysctl kernel.yama.*
> >> Jul 20 20:02:05 xd kernel: AppArmor: AppArmor initialized
> >> Jul 20 20:02:05 xd kernel: TOMOYO Linux initialized
> >> Jul 20 20:02:05 xd kernel: Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
> >> Jul 20 20:02:05 xd kernel: Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
> >> Jul 20 20:02:05 xd kernel: x86/cpu: User Mode Instruction Prevention (UMIP) activated
> >> Jul 20 20:02:05 xd kernel: mce: CPU0: Thermal monitoring enabled (TM1)
> >> Jul 20 20:02:05 xd kernel: process: using mwait in idle threads
> >> Jul 20 20:02:05 xd kernel: Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
> >> Jul 20 20:02:05 xd kernel: Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
> >> Jul 20 20:02:05 xd kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
> >> Jul 20 20:02:05 xd kernel: Spectre V2 : Mitigation: Enhanced IBRS
> >> Jul 20 20:02:05 xd kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
> >> Jul 20 20:02:05 xd kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
> >> Jul 20 20:02:05 xd kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
> >> Jul 20 20:02:05 xd kernel: Freeing SMP alternatives memory: 32K
> >> Jul 20 20:02:05 xd kernel: smpboot: CPU0: 11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz (family: 0x6, model: 0x8c, stepping: 0x1)
> >> Jul 20 20:02:05 xd kernel: Performance Events: PEBS fmt4+-baseline, AnyThread deprecated, Icelake events, 32-deep LBR, full-width counters, Intel PMU driver.
> >> Jul 20 20:02:05 xd kernel: ... version: 5
> >> Jul 20 20:02:05 xd kernel: ... bit width: 48
> >> Jul 20 20:02:05 xd kernel: ... generic registers: 8
> >> Jul 20 20:02:05 xd kernel: ... value mask: 0000ffffffffffff
> >> Jul 20 20:02:05 xd kernel: ... max period: 00007fffffffffff
> >> Jul 20 20:02:05 xd kernel: ... fixed-purpose events: 4
> >> Jul 20 20:02:05 xd kernel: ... event mask: 0001000f000000ff
> >> Jul 20 20:02:05 xd kernel: rcu: Hierarchical SRCU implementation.
> >> Jul 20 20:02:05 xd kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
> >> Jul 20 20:02:05 xd kernel: smp: Bringing up secondary CPUs ...
> >> Jul 20 20:02:05 xd kernel: x86: Booting SMP configuration:
> >> Jul 20 20:02:05 xd kernel: .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7
> >> Jul 20 20:02:05 xd kernel: smp: Brought up 1 node, 8 CPUs
> >> Jul 20 20:02:05 xd kernel: smpboot: Max logical packages: 1
> >> Jul 20 20:02:05 xd kernel: smpboot: Total of 8 processors activated (38707.20 BogoMIPS)
> >> Jul 20 20:02:05 xd kernel: node 0 deferred pages initialised in 20ms
> >> Jul 20 20:02:05 xd kernel: devtmpfs: initialized
> >> Jul 20 20:02:05 xd kernel: x86/mm: Memory block size: 128MB
> >> Jul 20 20:02:05 xd kernel: PM: Registering ACPI NVS region [mem 0x442ff000-0x44b2efff] (8585216 bytes)
> >> Jul 20 20:02:05 xd kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
> >> Jul 20 20:02:05 xd kernel: futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
> >> Jul 20 20:02:05 xd kernel: pinctrl core: initialized pinctrl subsystem
> >> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 16
> >> Jul 20 20:02:05 xd kernel: audit: initializing netlink subsys (disabled)
> >> Jul 20 20:02:05 xd kernel: audit: type=2000 audit(1658343722.028:1): state=initialized audit_enabled=0 res=1
> >> Jul 20 20:02:05 xd kernel: thermal_sys: Registered thermal governor 'fair_share'
> >> Jul 20 20:02:05 xd kernel: thermal_sys: Registered thermal governor 'bang_bang'
> >> Jul 20 20:02:05 xd kernel: thermal_sys: Registered thermal governor 'step_wise'
> >> Jul 20 20:02:05 xd kernel: thermal_sys: Registered thermal governor 'user_space'
> >> Jul 20 20:02:05 xd kernel: thermal_sys: Registered thermal governor 'power_allocator'
> >> Jul 20 20:02:05 xd kernel: cpuidle: using governor ladder
> >> Jul 20 20:02:05 xd kernel: cpuidle: using governor menu
> >> Jul 20 20:02:05 xd kernel: ACPI: bus type PCI registered
> >> Jul 20 20:02:05 xd kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
> >> Jul 20 20:02:05 xd kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xc0000000-0xcfffffff] (base 0xc0000000)
> >> Jul 20 20:02:05 xd kernel: PCI: MMCONFIG at [mem 0xc0000000-0xcfffffff] reserved in E820
> >> Jul 20 20:02:05 xd kernel: PCI: Using configuration type 1 for base access
> >> Jul 20 20:02:05 xd kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
> >> Jul 20 20:02:05 xd kernel: Kprobes globally optimized
> >> Jul 20 20:02:05 xd kernel: HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
> >> Jul 20 20:02:05 xd kernel: HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
> >> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Module Device)
> >> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Processor Device)
> >> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
> >> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Processor Aggregator Device)
> >> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Linux-Dell-Video)
> >> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
> >> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
> >> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS01._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS01._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS02._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS02._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS03._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS03._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS04._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS04._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS05._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS05._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS06._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS06._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS07._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS07._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS08._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS08._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS09._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS09._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS10._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS10._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS01._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS01._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS02._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS02._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS03._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS03._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS04._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS04._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS05._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS05._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS06._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS06._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >> Jul 20 20:02:05 xd kernel: ACPI: 15 ACPI AML tables successfully acquired and loaded
> >> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
> >> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8882135E00 0001C6 (v02 PmRef Cpu0Psd 00003000 INTL 20160422)
> >> Jul 20 20:02:05 xd kernel: ACPI: \_SB_.PR00: _OSC native thermal LVT Acked
> >> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
> >> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A888213CC00 000386 (v02 PmRef Cpu0Cst 00003001 INTL 20160422)
> >> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
> >> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8500BAB000 0005C3 (v02 PmRef Cpu0Ist 00003000 INTL 20160422)
> >> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
> >> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A888213FC00 00028B (v02 PmRef Cpu0Hwp 00003000 INTL 20160422)
> >> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
> >> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8500F3D000 0008E7 (v02 PmRef ApIst 00003000 INTL 20160422)
> >> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
> >> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8500BAC000 00048A (v02 PmRef ApHwp 00003000 INTL 20160422)
> >> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
> >> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8500BAF800 0004D4 (v02 PmRef ApPsd 00003000 INTL 20160422)
> >> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
> >> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8500BAE000 00048A (v02 PmRef ApCst 00003000 INTL 20160422)
> >> Jul 20 20:02:05 xd kernel: ACPI: EC: EC started
> >> Jul 20 20:02:05 xd kernel: ACPI: EC: interrupt blocked
> >> Jul 20 20:02:05 xd kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
> >> Jul 20 20:02:05 xd kernel: ACPI: \_SB_.PC00.LPCB.EC0_: Boot DSDT EC used to handle transactions
> >> Jul 20 20:02:05 xd kernel: ACPI: Interpreter enabled
> >> Jul 20 20:02:05 xd kernel: ACPI: (supports S0 S3 S4 S5)
> >> Jul 20 20:02:05 xd kernel: ACPI: Using IOAPIC for interrupt routing
> >> Jul 20 20:02:05 xd kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
> >> Jul 20 20:02:05 xd kernel: ACPI: Enabled 7 GPEs in block 00 to 7F
> >> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [PCRP] (on)
> >> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V0PR] (on)
> >> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V1PR] (on)
> >> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V2PR] (on)
> >> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [WRST] (on)
> >> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V0PR] (on)
> >> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V1PR] (on)
> >> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V2PR] (on)
> >> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V3PR] (on)
> >> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [FN00] (off)
> >> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [FN01] (off)
> >> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [FN02] (off)
> >> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [FN03] (off)
> >> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [FN04] (off)
> >> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [PIN] (off)
> >> Jul 20 20:02:05 xd kernel: ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-e0])
> >> Jul 20 20:02:05 xd kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
> >> Jul 20 20:02:05 xd kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR]
> >> Jul 20 20:02:05 xd kernel: PCI host bridge to bus 0000:00
> >> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
> >> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
> >> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
> >> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [mem 0x4f800000-0xbfffffff window]
> >> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
> >> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [bus 00-e0]
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:00.0: [8086:9a14] type 00 class 0x060000
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: [8086:9a49] type 00 class 0x030000
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: reg 0x10: [mem 0x6014000000-0x6014ffffff 64bit]
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: reg 0x18: [mem 0x4000000000-0x400fffffff 64bit pref]
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: reg 0x20: [io 0x5000-0x503f]
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: BAR 2: assigned to efifb
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: DMAR: Skip IOMMU disabling for graphics
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: reg 0x344: [mem 0x00000000-0x00ffffff 64bit]
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: VF(n) BAR0 space: [mem 0x00000000-0x06ffffff 64bit] (contains BAR0 for 7 VFs)
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: reg 0x34c: [mem 0x00000000-0x1fffffff 64bit pref]
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: VF(n) BAR2 space: [mem 0x00000000-0xdfffffff 64bit pref] (contains BAR2 for 7 VFs)
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: [8086:9a09] type 01 class 0x060400
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: PTM enabled (root), 4ns granularity
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:08.0: [8086:9a11] type 00 class 0x088000
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:08.0: reg 0x10: [mem 0x601540f000-0x601540ffff 64bit]
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:0e.0: [8086:9a0b] type 00 class 0x010400
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:0e.0: reg 0x10: [mem 0x6012000000-0x6013ffffff 64bit]
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:0e.0: reg 0x18: [mem 0x50000000-0x51ffffff]
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:0e.0: reg 0x20: [mem 0x6015300000-0x60153fffff 64bit]
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:14.0: [8086:a0ed] type 00 class 0x0c0330
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:14.0: reg 0x10: [mem 0x53180000-0x5318ffff 64bit]
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:14.2: [8086:a0ef] type 00 class 0x050000
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:14.2: reg 0x10: [mem 0x6015404000-0x6015407fff 64bit]
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:14.2: reg 0x18: [mem 0x601540e000-0x601540efff 64bit]
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:15.0: [8086:a0e8] type 00 class 0x0c8000
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:15.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:15.3: [8086:a0eb] type 00 class 0x0c8000
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:15.3: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:16.0: [8086:a0e0] type 00 class 0x078000
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:16.0: reg 0x10: [mem 0x601540b000-0x601540bfff 64bit]
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:16.0: PME# supported from D3hot
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:17.0: [8086:09ab] type 00 class 0x088000
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:19.0: [8086:a0c5] type 00 class 0x0c8000
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:19.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:19.1: [8086:a0c6] type 00 class 0x0c8000
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:19.1: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: [8086:a0b0] type 01 class 0x060400
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: PTM enabled (root), 4ns granularity
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: [8086:a0b1] type 01 class 0x060400
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: PME# supported from D0 D3hot D3cold
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: PTM enabled (root), 4ns granularity
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.0: [8086:a082] type 00 class 0x060100
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.3: [8086:a0c8] type 00 class 0x040100
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.3: reg 0x10: [mem 0x6015400000-0x6015403fff 64bit]
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.3: reg 0x20: [mem 0x6015200000-0x60152fffff 64bit]
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.3: PME# supported from D3hot D3cold
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.4: [8086:a0a3] type 00 class 0x0c0500
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.4: reg 0x10: [mem 0x6015408000-0x60154080ff 64bit]
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.4: reg 0x20: [io 0xefa0-0xefbf]
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.5: [8086:a0a4] type 00 class 0x0c8000
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.5: reg 0x10: [mem 0xfe010000-0xfe010fff]
> >> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: [10de:1f97] type 00 class 0x030200
> >> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: reg 0x10: [mem 0x52000000-0x52ffffff]
> >> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: reg 0x14: [mem 0x6000000000-0x600fffffff 64bit pref]
> >> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: reg 0x1c: [mem 0x6010000000-0x6011ffffff 64bit pref]
> >> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: reg 0x24: [io 0x4000-0x407f]
> >> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
> >> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
> >> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: 63.012 Gb/s available PCIe bandwidth, limited by 16.0 GT/s PCIe x4 link at 0000:00:06.0 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: PCI bridge to [bus 01]
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [io 0x4000-0x4fff]
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [mem 0x52000000-0x52ffffff]
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [mem 0x6000000000-0x6011ffffff 64bit pref]
> >> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000
> >> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: reg 0x10: [io 0x3000-0x30ff]
> >> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: reg 0x18: [mem 0x53004000-0x53004fff 64bit]
> >> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: reg 0x20: [mem 0x53000000-0x53003fff 64bit]
> >> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: supports D1 D2
> >> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: PCI bridge to [bus 02]
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: bridge window [io 0x3000-0x3fff]
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: bridge window [mem 0x53000000-0x530fffff]
> >> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: [14c3:7961] type 00 class 0x028000
> >> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: reg 0x10: [mem 0x6015000000-0x60150fffff 64bit pref]
> >> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: reg 0x18: [mem 0x6015100000-0x6015103fff 64bit pref]
> >> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: reg 0x20: [mem 0x6015104000-0x6015104fff 64bit pref]
> >> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: supports D1 D2
> >> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: PCI bridge to [bus 03]
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: bridge window [mem 0x6015000000-0x60151fffff 64bit pref]
> >> Jul 20 20:02:05 xd kernel: ACPI: EC: interrupt unblocked
> >> Jul 20 20:02:05 xd kernel: ACPI: EC: event unblocked
> >> Jul 20 20:02:05 xd kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
> >> Jul 20 20:02:05 xd kernel: ACPI: EC: GPE=0x6e
> >> Jul 20 20:02:05 xd kernel: ACPI: \_SB_.PC00.LPCB.EC0_: Boot DSDT EC initialization complete
> >> Jul 20 20:02:05 xd kernel: ACPI: \_SB_.PC00.LPCB.EC0_: EC: Used to handle transactions and events
> >> Jul 20 20:02:05 xd kernel: iommu: Default domain type: Translated
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: vgaarb: setting as boot VGA device
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: vgaarb: bridge control possible
> >> Jul 20 20:02:05 xd kernel: vgaarb: loaded
> >> Jul 20 20:02:05 xd kernel: EDAC MC: Ver: 3.0.0
> >> Jul 20 20:02:05 xd kernel: Registered efivars operations
> >> Jul 20 20:02:05 xd kernel: NetLabel: Initializing
> >> Jul 20 20:02:05 xd kernel: NetLabel: domain hash size = 128
> >> Jul 20 20:02:05 xd kernel: NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
> >> Jul 20 20:02:05 xd kernel: NetLabel: unlabeled traffic allowed by default
> >> Jul 20 20:02:05 xd kernel: PCI: Using ACPI for IRQ routing
> >> Jul 20 20:02:05 xd kernel: PCI: pci_cache_line_size set to 64 bytes
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.5: can't claim BAR 0 [mem 0xfe010000-0xfe010fff]: no compatible bridge window
> >> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
> >> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x3bee5000-0x3bffffff]
> >> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x3bf68000-0x3bffffff]
> >> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x3bf6a000-0x3bffffff]
> >> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x3fd99000-0x3fffffff]
> >> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x424af000-0x43ffffff]
> >> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x44c00000-0x47ffffff]
> >> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x4b0800000-0x4b3ffffff]
> >> Jul 20 20:02:05 xd kernel: clocksource: Switched to clocksource tsc-early
> >> Jul 20 20:02:05 xd kernel: VFS: Disk quotas dquot_6.6.0
> >> Jul 20 20:02:05 xd kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
> >> Jul 20 20:02:05 xd kernel: AppArmor: AppArmor Filesystem Enabled
> >> Jul 20 20:02:05 xd kernel: pnp: PnP ACPI init
> >> Jul 20 20:02:05 xd kernel: system 00:00: [io 0x0680-0x069f] has been reserved
> >> Jul 20 20:02:05 xd kernel: system 00:00: [io 0x164e-0x164f] has been reserved
> >> Jul 20 20:02:05 xd kernel: system 00:00: [io 0xfd60-0xfd63] has been reserved
> >> Jul 20 20:02:05 xd kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
> >> Jul 20 20:02:05 xd kernel: pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
> >> Jul 20 20:02:05 xd kernel: system 00:02: [io 0x1854-0x1857] has been reserved
> >> Jul 20 20:02:05 xd kernel: system 00:02: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
> >> Jul 20 20:02:05 xd kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0303 (active)
> >> Jul 20 20:02:05 xd kernel: pnp 00:04: disabling [mem 0xc0000000-0xcfffffff] because it overlaps 0000:00:02.0 BAR 9 [mem 0x00000000-0xdfffffff 64bit pref]
> >> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfedc0000-0xfedc7fff] has been reserved
> >> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfeda0000-0xfeda0fff] has been reserved
> >> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfeda1000-0xfeda1fff] has been reserved
> >> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfed20000-0xfed7ffff] could not be reserved
> >> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfed90000-0xfed93fff] could not be reserved
> >> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfed45000-0xfed8ffff] could not be reserved
> >> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfee00000-0xfeefffff] has been reserved
> >> Jul 20 20:02:05 xd kernel: system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
> >> Jul 20 20:02:05 xd kernel: system 00:05: [io 0x1800-0x18fe] could not be reserved
> >> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfe000000-0xfe01ffff] could not be reserved
> >> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfe04c000-0xfe04ffff] has been reserved
> >> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfe050000-0xfe0affff] has been reserved
> >> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfe0d0000-0xfe0fffff] has been reserved
> >> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfe200000-0xfe7fffff] has been reserved
> >> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xff000000-0xffffffff] could not be reserved
> >> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfd000000-0xfd68ffff] has been reserved
> >> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfd6b0000-0xfd6cffff] has been reserved
> >> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfd6f0000-0xfdffffff] has been reserved
> >> Jul 20 20:02:05 xd kernel: system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
> >> Jul 20 20:02:05 xd kernel: system 00:06: [io 0x2000-0x20fe] has been reserved
> >> Jul 20 20:02:05 xd kernel: system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
> >> Jul 20 20:02:05 xd kernel: system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
> >> Jul 20 20:02:05 xd kernel: pnp: PnP ACPI: found 8 devices
> >> Jul 20 20:02:05 xd kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
> >> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 2
> >> Jul 20 20:02:05 xd kernel: IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
> >> Jul 20 20:02:05 xd kernel: tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
> >> Jul 20 20:02:05 xd kernel: TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
> >> Jul 20 20:02:05 xd kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
> >> Jul 20 20:02:05 xd kernel: TCP: Hash tables configured (established 131072 bind 65536)
> >> Jul 20 20:02:05 xd kernel: UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
> >> Jul 20 20:02:05 xd kernel: UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
> >> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 1
> >> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 44
> >> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
> >> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: max bus depth: 1 pci_try_num: 2
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: BAR 9: assigned [mem 0x4020000000-0x40ffffffff 64bit pref]
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: BAR 7: assigned [mem 0x4010000000-0x4016ffffff 64bit]
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:15.0: BAR 0: assigned [mem 0x4017000000-0x4017000fff 64bit]
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:15.3: BAR 0: assigned [mem 0x4017001000-0x4017001fff 64bit]
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:19.0: BAR 0: assigned [mem 0x4017002000-0x4017002fff 64bit]
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:19.1: BAR 0: assigned [mem 0x4017003000-0x4017003fff 64bit]
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.5: BAR 0: assigned [mem 0x4f800000-0x4f800fff]
> >> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: BAR 6: no space for [mem size 0x00080000 pref]
> >> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: BAR 6: failed to assign [mem size 0x00080000 pref]
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: PCI bridge to [bus 01]
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [io 0x4000-0x4fff]
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [mem 0x52000000-0x52ffffff]
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [mem 0x6000000000-0x6011ffffff 64bit pref]
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: PCI bridge to [bus 02]
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: bridge window [io 0x3000-0x3fff]
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: bridge window [mem 0x53000000-0x530fffff]
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: PCI bridge to [bus 03]
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: bridge window [mem 0x6015000000-0x60151fffff 64bit pref]
> >> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
> >> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
> >> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
> >> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: resource 7 [mem 0x4f800000-0xbfffffff window]
> >> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: resource 8 [mem 0x4000000000-0x7fffffffff window]
> >> Jul 20 20:02:05 xd kernel: pci_bus 0000:01: resource 0 [io 0x4000-0x4fff]
> >> Jul 20 20:02:05 xd kernel: pci_bus 0000:01: resource 1 [mem 0x52000000-0x52ffffff]
> >> Jul 20 20:02:05 xd kernel: pci_bus 0000:01: resource 2 [mem 0x6000000000-0x6011ffffff 64bit pref]
> >> Jul 20 20:02:05 xd kernel: pci_bus 0000:02: resource 0 [io 0x3000-0x3fff]
> >> Jul 20 20:02:05 xd kernel: pci_bus 0000:02: resource 1 [mem 0x53000000-0x530fffff]
> >> Jul 20 20:02:05 xd kernel: pci_bus 0000:03: resource 2 [mem 0x6015000000-0x60151fffff 64bit pref]
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
> >> Jul 20 20:02:05 xd kernel: PCI: CLS 64 bytes, default 64
> >> Jul 20 20:02:05 xd kernel: Trying to unpack rootfs image as initramfs...
> >> Jul 20 20:02:05 xd kernel: Freeing initrd memory: 47452K
> >> Jul 20 20:02:05 xd kernel: DMAR: No ATSR found
> >> Jul 20 20:02:05 xd kernel: DMAR: dmar0: Using Queued invalidation
> >> Jul 20 20:02:05 xd kernel: DMAR: dmar1: Using Queued invalidation
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:00.0: Adding to iommu group 0
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: Adding to iommu group 1
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: Adding to iommu group 2
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:08.0: Adding to iommu group 3
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:0e.0: Adding to iommu group 4
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:14.0: Adding to iommu group 5
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:14.2: Adding to iommu group 5
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:15.0: Adding to iommu group 6
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:15.3: Adding to iommu group 6
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:16.0: Adding to iommu group 7
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:17.0: Adding to iommu group 8
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:19.0: Adding to iommu group 9
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:19.1: Adding to iommu group 9
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: Adding to iommu group 10
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: Adding to iommu group 11
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.0: Adding to iommu group 12
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.3: Adding to iommu group 12
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.4: Adding to iommu group 12
> >> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.5: Adding to iommu group 12
> >> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: Adding to iommu group 13
> >> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: Adding to iommu group 14
> >> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: Adding to iommu group 15
> >> Jul 20 20:02:05 xd kernel: DMAR: Intel(R) Virtualization Technology for Directed I/O
> >> Jul 20 20:02:05 xd kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
> >> Jul 20 20:02:05 xd kernel: software IO TLB: mapped [mem 0x0000000037663000-0x000000003b663000] (64MB)
> >> Jul 20 20:02:05 xd kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x22df1149949, max_idle_ns: 440795312789 ns
> >> Jul 20 20:02:05 xd kernel: clocksource: Switched to clocksource tsc
> >> Jul 20 20:02:05 xd kernel: Initialise system trusted keyrings
> >> Jul 20 20:02:05 xd kernel: Key type blacklist registered
> >> Jul 20 20:02:05 xd kernel: workingset: timestamp_bits=36 max_order=22 bucket_order=0
> >> Jul 20 20:02:05 xd kernel: zbud: loaded
> >> Jul 20 20:02:05 xd kernel: integrity: Platform Keyring initialized
> >> Jul 20 20:02:05 xd kernel: Key type asymmetric registered
> >> Jul 20 20:02:05 xd kernel: Asymmetric key parser 'x509' registered
> >> Jul 20 20:02:05 xd kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
> >> Jul 20 20:02:05 xd kernel: io scheduler mq-deadline registered
> >> Jul 20 20:02:05 xd kernel: pcieport 0000:00:06.0: PME: Signaling with IRQ 122
> >> Jul 20 20:02:05 xd kernel: pcieport 0000:00:06.0: AER: enabled with IRQ 122
> >> Jul 20 20:02:05 xd kernel: pcieport 0000:00:06.0: DPC: enabled with IRQ 122
> >> Jul 20 20:02:05 xd kernel: pcieport 0000:00:06.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
> >> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.0: PME: Signaling with IRQ 123
> >> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.0: AER: enabled with IRQ 123
> >> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.0: DPC: enabled with IRQ 123
> >> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
> >> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.1: PME: Signaling with IRQ 124
> >> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.1: AER: enabled with IRQ 124
> >> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.1: DPC: enabled with IRQ 124
> >> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.1: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
> >> Jul 20 20:02:05 xd kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
> >> Jul 20 20:02:05 xd kernel: efifb: probing for efifb
> >> Jul 20 20:02:05 xd kernel: efifb: framebuffer at 0x4000000000, using 8128k, total 8128k
> >> Jul 20 20:02:05 xd kernel: efifb: mode is 1920x1080x32, linelength=7680, pages=1
> >> Jul 20 20:02:05 xd kernel: efifb: scrolling: redraw
> >> Jul 20 20:02:05 xd kernel: efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
> >> Jul 20 20:02:05 xd kernel: Console: switching to colour frame buffer device 240x67
> >> Jul 20 20:02:05 xd kernel: fb0: EFI VGA frame buffer device
> >> Jul 20 20:02:05 xd kernel: intel_idle: MWAIT substates: 0x11121020
> >> Jul 20 20:02:05 xd kernel: Monitor-Mwait will be used to enter C-1 state
> >> Jul 20 20:02:05 xd kernel: Monitor-Mwait will be used to enter C-2 state
> >> Jul 20 20:02:05 xd kernel: Monitor-Mwait will be used to enter C-3 state
> >> Jul 20 20:02:05 xd kernel: ACPI: \_SB_.PR00: Found 3 idle states
> >> Jul 20 20:02:05 xd kernel: intel_idle: v0.5.1 model 0x8C
> >> Jul 20 20:02:05 xd kernel: intel_idle: Local APIC timer is reliable in all C-states
> >> Jul 20 20:02:05 xd kernel: thermal LNXTHERM:00: registered as thermal_zone0
> >> Jul 20 20:02:05 xd kernel: ACPI: Thermal Zone [TZ00] (28 C)
> >> Jul 20 20:02:05 xd kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
> >> Jul 20 20:02:05 xd kernel: hpet_acpi_add: no address or irqs in _CRS
> >> Jul 20 20:02:05 xd kernel: Linux agpgart interface v0.103
> >> Jul 20 20:02:05 xd kernel: AMD-Vi: AMD IOMMUv2 functionality not available on this system - This is not a bug.
> >> Jul 20 20:02:05 xd kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
> >> Jul 20 20:02:05 xd kernel: i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
> >> Jul 20 20:02:05 xd kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
> >> Jul 20 20:02:05 xd kernel: mousedev: PS/2 mouse device common for all mice
> >> Jul 20 20:02:05 xd kernel: rtc_cmos 00:01: RTC can wake from S4
> >> Jul 20 20:02:05 xd kernel: rtc_cmos 00:01: registered as rtc0
> >> Jul 20 20:02:05 xd kernel: rtc_cmos 00:01: setting system clock to 2022-07-20T19:02:03 UTC (1658343723)
> >> Jul 20 20:02:05 xd kernel: rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram
> >> Jul 20 20:02:05 xd kernel: intel_pstate: Intel P-state driver initializing
> >> Jul 20 20:02:05 xd kernel: intel_pstate: HWP enabled
> >> Jul 20 20:02:05 xd kernel: ledtrig-cpu: registered to indicate activity on CPUs
> >> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 10
> >> Jul 20 20:02:05 xd kernel: Segment Routing with IPv6
> >> Jul 20 20:02:05 xd kernel: mip6: Mobile IPv6
> >> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 17
> >> Jul 20 20:02:05 xd kernel: mpls_gso: MPLS GSO support
> >> Jul 20 20:02:05 xd kernel: microcode: sig=0x806c1, pf=0x80, revision=0x8a
> >> Jul 20 20:02:05 xd kernel: microcode: Microcode Update Driver: v2.2.
> >> Jul 20 20:02:05 xd kernel: resctrl: L2 allocation detected
> >> Jul 20 20:02:05 xd kernel: resctrl: L2DATA allocation detected
> >> Jul 20 20:02:05 xd kernel: resctrl: L2CODE allocation detected
> >> Jul 20 20:02:05 xd kernel: IPI shorthand broadcast: enabled
> >> Jul 20 20:02:05 xd kernel: sched_clock: Marking stable (836570439, 6379917)->(856451458, -13501102)
> >> Jul 20 20:02:05 xd kernel: registered taskstats version 1
> >> Jul 20 20:02:05 xd kernel: Loading compiled-in X.509 certificates
> >> Jul 20 20:02:05 xd kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
> >> Jul 20 20:02:05 xd kernel: Loaded X.509 cert 'Debian Secure Boot CA: 6ccece7e4c6c0d1f6149f3dd27dfcc5cbb419ea1'
> >> Jul 20 20:02:05 xd kernel: Loaded X.509 cert 'Debian Secure Boot Signer 2021 - linux: 4b6ef5abca669825178e052c84667ccbc0531f8c'
> >> Jul 20 20:02:05 xd kernel: zswap: loaded using pool lzo/zbud
> >> Jul 20 20:02:05 xd kernel: Key type ._fscrypt registered
> >> Jul 20 20:02:05 xd kernel: Key type .fscrypt registered
> >> Jul 20 20:02:05 xd kernel: Key type fscrypt-provisioning registered
> >> Jul 20 20:02:05 xd kernel: AppArmor: AppArmor sha1 policy hashing enabled
> >> Jul 20 20:02:05 xd kernel: Freeing unused kernel image (initmem) memory: 2424K
> >> Jul 20 20:02:05 xd kernel: Write protecting the kernel read-only data: 22528k
> >> Jul 20 20:02:05 xd kernel: Freeing unused kernel image (text/rodata gap) memory: 2040K
> >> Jul 20 20:02:05 xd kernel: Freeing unused kernel image (rodata/data gap) memory: 624K
> >> Jul 20 20:02:05 xd kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
> >> Jul 20 20:02:05 xd kernel: Run /init as init process
> >> Jul 20 20:02:05 xd kernel: with arguments:
> >> Jul 20 20:02:05 xd kernel: /init
> >> Jul 20 20:02:05 xd kernel: with environment:
> >> Jul 20 20:02:05 xd kernel: HOME=/
> >> Jul 20 20:02:05 xd kernel: TERM=linux
> >> Jul 20 20:02:05 xd kernel: BOOT_IMAGE=/vmlinuz-5.10.0-16-amd64
> >> Jul 20 20:02:05 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
> >> Jul 20 20:02:05 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
> >> Jul 20 20:02:05 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
> >> Jul 20 20:02:05 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
> >> Jul 20 20:02:05 xd kernel: acpi PNP0C14:03: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
> >> Jul 20 20:02:05 xd kernel: acpi PNP0C14:04: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
> >> Jul 20 20:02:05 xd kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:21/PNP0C0D:00/input/input1
> >> Jul 20 20:02:05 xd kernel: ACPI: Lid Switch [LID0]
> >> Jul 20 20:02:05 xd kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2
> >> Jul 20 20:02:05 xd kernel: ACPI: Sleep Button [SLPB]
> >> Jul 20 20:02:05 xd kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input3
> >> Jul 20 20:02:05 xd kernel: battery: ACPI: Battery Slot [BAT1] (battery present)
> >> Jul 20 20:02:05 xd kernel: hid: raw HID events driver (C) Jiri Kosina
> >> Jul 20 20:02:05 xd kernel: vmd 0000:00:0e.0: PCI host bridge to bus 10000:e0
> >> Jul 20 20:02:05 xd kernel: pci_bus 10000:e0: root bus resource [bus e0-ff]
> >> Jul 20 20:02:05 xd kernel: pci_bus 10000:e0: root bus resource [mem 0x50000000-0x51ffffff]
> >> Jul 20 20:02:05 xd kernel: pci_bus 10000:e0: root bus resource [mem 0x6015302000-0x60153fffff 64bit]
> >> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: [8086:a0d3] type 00 class 0x010601
> >> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x10: [mem 0x00000000-0x00001fff]
> >> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x14: [mem 0x00000000-0x000000ff]
> >> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x18: [io 0x0000-0x0007]
> >> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x1c: [io 0x0000-0x0003]
> >> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x20: [io 0x0000-0x001f]
> >> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x24: [mem 0x50000000-0x500007ff]
> >> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: PME# supported from D3hot
> >> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: Adding to iommu group 4
> >> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.0: [8086:09ab] type 00 class 0x088000
> >> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.0: Adding to iommu group 4
> >> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: [8086:a0bc] type 01 class 0x060400
> >> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: PME# supported from D0 D3hot D3cold
> >> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: PTM enabled (root), 4ns granularity
> >> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: Adding to iommu group 4
> >> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: Primary bus is hard wired to 0
> >> Jul 20 20:02:05 xd kernel: pci 10000:e1:00.0: [2646:500c] type 00 class 0x010802
> >> Jul 20 20:02:05 xd kernel: pci 10000:e1:00.0: reg 0x10: [mem 0x50100000-0x50103fff 64bit]
> >> Jul 20 20:02:05 xd kernel: pci 10000:e1:00.0: Adding to iommu group 4
> >> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: PCI bridge to [bus e1]
> >> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: bridge window [io 0x0000-0x0fff]
> >> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: bridge window [mem 0x50100000-0x501fffff]
> >> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: Primary bus is hard wired to 0
> >> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: BAR 14: assigned [mem 0x50000000-0x500fffff]
> >> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 0: assigned [mem 0x50100000-0x50101fff]
> >> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: BAR 13: no space for [io size 0x1000]
> >> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: BAR 13: failed to assign [io size 0x1000]
> >> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 5: assigned [mem 0x50102000-0x501027ff]
> >> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 1: assigned [mem 0x50102800-0x501028ff]
> >> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 4: no space for [io size 0x0020]
> >> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 4: failed to assign [io size 0x0020]
> >> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 2: no space for [io size 0x0008]
> >> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 2: failed to assign [io size 0x0008]
> >> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 3: no space for [io size 0x0004]
> >> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 3: failed to assign [io size 0x0004]
> >> Jul 20 20:02:05 xd kernel: pci 10000:e1:00.0: BAR 0: assigned [mem 0x50000000-0x50003fff 64bit]
> >> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: PCI bridge to [bus e1]
> >> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: bridge window [mem 0x50000000-0x500fffff]
> >> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: can't derive routing for PCI INT A
> >> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: PCI INT A: no GSI
> >> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: PME: Signaling with IRQ 144
> >> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: AER: enabled with IRQ 144
> >> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: DPC: enabled with IRQ 144
> >> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
> >> Jul 20 20:02:05 xd kernel: vmd 0000:00:0e.0: Bound to PCI domain 10000
> >> Jul 20 20:02:05 xd kernel: i801_smbus 0000:00:1f.4: SPD Write Disable is set
> >> Jul 20 20:02:05 xd kernel: i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
> >> Jul 20 20:02:05 xd kernel: i2c i2c-0: 2/2 memory slots populated (from DMI)
> >> Jul 20 20:02:05 xd kernel: i2c i2c-0: Successfully instantiated SPD at 0x50
> >> Jul 20 20:02:05 xd kernel: r8168: loading out-of-tree module taints kernel.
> >> Jul 20 20:02:05 xd kernel: r8168: module verification failed: signature and/or required key missing - tainting kernel
> >> Jul 20 20:02:05 xd kernel: r8168 Gigabit Ethernet driver 8.048.03-NAPI loaded
> >> Jul 20 20:02:05 xd kernel: ACPI: bus type USB registered
> >> Jul 20 20:02:05 xd kernel: usbcore: registered new interface driver usbfs
> >> Jul 20 20:02:05 xd kernel: usbcore: registered new interface driver hub
> >> Jul 20 20:02:05 xd kernel: usbcore: registered new device driver usb
> >> Jul 20 20:02:05 xd kernel: ACPI: Power Button [PWRB]
> >> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
> >> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
> >> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000000009810
> >> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
> >> Jul 20 20:02:05 xd kernel: r8168: This product is covered by one or more of the following patents: US6,570,884, US6,115,776, and US6,327,625.
> >> Jul 20 20:02:05 xd kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
> >> Jul 20 20:02:05 xd kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
> >> Jul 20 20:02:05 xd kernel: usb usb1: Product: xHCI Host Controller
> >> Jul 20 20:02:05 xd kernel: usb usb1: Manufacturer: Linux 5.10.0-16-amd64 xhci-hcd
> >> Jul 20 20:02:05 xd kernel: usb usb1: SerialNumber: 0000:00:14.0
> >> Jul 20 20:02:05 xd kernel: hub 1-0:1.0: USB hub found
> >> Jul 20 20:02:05 xd kernel: hub 1-0:1.0: 12 ports detected
> >> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
> >> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
> >> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
> >> Jul 20 20:02:05 xd kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
> >> Jul 20 20:02:05 xd kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
> >> Jul 20 20:02:05 xd kernel: usb usb2: Product: xHCI Host Controller
> >> Jul 20 20:02:05 xd kernel: usb usb2: Manufacturer: Linux 5.10.0-16-amd64 xhci-hcd
> >> Jul 20 20:02:05 xd kernel: usb usb2: SerialNumber: 0000:00:14.0
> >> Jul 20 20:02:05 xd kernel: hub 2-0:1.0: USB hub found
> >> Jul 20 20:02:05 xd kernel: hub 2-0:1.0: 4 ports detected
> >> Jul 20 20:02:05 xd kernel: r8168 Copyright (C) 2020 Realtek NIC software team <nicfae@realtek.com>
> >> This program comes with ABSOLUTELY NO WARRANTY; for details, please see <http://www.gnu.org/licenses/>.
> >> This is free software, and you are welcome to redistribute it under certain conditions; see <http://www.gnu.org/licenses/>.
> >> Jul 20 20:02:05 xd kernel: SCSI subsystem initialized
> >> Jul 20 20:02:05 xd kernel: intel-lpss 0000:00:15.0: enabling device (0004 -> 0006)
> >> Jul 20 20:02:05 xd kernel: idma64 idma64.0: Found Intel integrated DMA 64-bit
> >> Jul 20 20:02:05 xd kernel: r8168 0000:02:00.0 enp2s0: renamed from eth0
> >> Jul 20 20:02:05 xd kernel: nvme nvme0: pci function 10000:e1:00.0
> >> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: can't derive routing for PCI INT A
> >> Jul 20 20:02:05 xd kernel: nvme 10000:e1:00.0: PCI INT A: no GSI
> >> Jul 20 20:02:05 xd kernel: libata version 3.00 loaded.
> >> Jul 20 20:02:05 xd kernel: nvme nvme0: missing or invalid SUBNQN field.
> >> Jul 20 20:02:05 xd kernel: nvme nvme0: Shutdown timeout set to 10 seconds
> >> Jul 20 20:02:05 xd kernel: nvme nvme0: 8/0/0 default/read/poll queues
> >> Jul 20 20:02:05 xd kernel: nvme0n1: p1 p2 p3 p4 p5
> >> Jul 20 20:02:05 xd kernel: intel-lpss 0000:00:15.3: enabling device (0004 -> 0006)
> >> Jul 20 20:02:05 xd kernel: idma64 idma64.1: Found Intel integrated DMA 64-bit
> >> Jul 20 20:02:05 xd kernel: i2c_hid i2c-ELAN0515:01: supply vdd not found, using dummy regulator
> >> Jul 20 20:02:05 xd kernel: i2c_hid i2c-ELAN0515:01: supply vddl not found, using dummy regulator
> >> Jul 20 20:02:05 xd kernel: intel-lpss 0000:00:19.0: enabling device (0004 -> 0006)
> >> Jul 20 20:02:05 xd kernel: idma64 idma64.2: Found Intel integrated DMA 64-bit
> >> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: [drm] VT-d active for gfx access
> >> Jul 20 20:02:05 xd kernel: checking generic (4000000000 7f0000) vs hw (6014000000 1000000)
> >> Jul 20 20:02:05 xd kernel: checking generic (4000000000 7f0000) vs hw (4000000000 10000000)
> >> Jul 20 20:02:05 xd kernel: fb0: switching to inteldrmfb from EFI VGA
> >> Jul 20 20:02:05 xd kernel: Console: switching to colour dummy device 80x25
> >> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: vgaarb: deactivate vga console
> >> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
> >> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: firmware: direct-loading firmware i915/tgl_dmc_ver2_08.bin
> >> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/tgl_dmc_ver2_08.bin (v2.8)
> >> Jul 20 20:02:05 xd kernel: intel-lpss 0000:00:19.1: enabling device (0004 -> 0006)
> >> Jul 20 20:02:05 xd kernel: idma64 idma64.3: Found Intel integrated DMA 64-bit
> >> Jul 20 20:02:05 xd kernel: input: ELAN0515:01 04F3:3142 Mouse as /devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input4
> >> Jul 20 20:02:05 xd kernel: input: ELAN0515:01 04F3:3142 Touchpad as /devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input6
> >> Jul 20 20:02:05 xd kernel: hid-generic 0018:04F3:3142.0001: input,hidraw0: I2C HID v1.00 Mouse [ELAN0515:01 04F3:3142] on i2c-ELAN0515:01
> >> Jul 20 20:02:05 xd kernel: ahci 10000:e0:17.0: version 3.0
> >> Jul 20 20:02:05 xd kernel: ahci 10000:e0:17.0: can't derive routing for PCI INT A
> >> Jul 20 20:02:05 xd kernel: ahci 10000:e0:17.0: PCI INT A: no GSI
> >> Jul 20 20:02:05 xd kernel: ahci 10000:e0:17.0: AHCI 0001.0301 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
> >> Jul 20 20:02:05 xd kernel: ahci 10000:e0:17.0: flags: 64bit ncq sntf pm clo only pio slum part deso sadm sds
> >> Jul 20 20:02:05 xd kernel: scsi host0: ahci
> >> Jul 20 20:02:05 xd kernel: scsi host1: ahci
> >> Jul 20 20:02:05 xd kernel: ata1: SATA max UDMA/133 abar m2048@0x50102000 port 0x50102100 irq 158
> >> Jul 20 20:02:05 xd kernel: ata2: SATA max UDMA/133 abar m2048@0x50102000 port 0x50102180 irq 158
> >> Jul 20 20:02:05 xd kernel: usb 1-7: new full-speed USB device number 2 using xhci_hcd
> >> Jul 20 20:02:05 xd kernel: usb 1-7: New USB device found, idVendor=04f3, idProduct=0c4f, bcdDevice= 1.61
> >> Jul 20 20:02:05 xd kernel: usb 1-7: New USB device strings: Mfr=1, Product=2, SerialNumber=0
> >> Jul 20 20:02:05 xd kernel: usb 1-7: Product: ELAN:Fingerprint
> >> Jul 20 20:02:05 xd kernel: usb 1-7: Manufacturer: ELAN
> >> Jul 20 20:02:05 xd kernel: ata1: SATA link down (SStatus 0 SControl 300)
> >> Jul 20 20:02:05 xd kernel: ata2: SATA link down (SStatus 0 SControl 300)
> >> Jul 20 20:02:05 xd kernel: usb 1-8: new high-speed USB device number 3 using xhci_hcd
> >> Jul 20 20:02:05 xd kernel: usb 1-8: New USB device found, idVendor=0408, idProduct=a061, bcdDevice= 0.04
> >> Jul 20 20:02:05 xd kernel: usb 1-8: New USB device strings: Mfr=1, Product=2, SerialNumber=0
> >> Jul 20 20:02:05 xd kernel: usb 1-8: Product: HD User Facing
> >> Jul 20 20:02:05 xd kernel: usb 1-8: Manufacturer: SunplusIT Inc
> >> Jul 20 20:02:05 xd kernel: usb 1-10: new high-speed USB device number 4 using xhci_hcd
> >> Jul 20 20:02:05 xd kernel: usb 1-10: New USB device found, idVendor=04ca, idProduct=3802, bcdDevice= 1.00
> >> Jul 20 20:02:05 xd kernel: usb 1-10: New USB device strings: Mfr=5, Product=6, SerialNumber=7
> >> Jul 20 20:02:05 xd kernel: usb 1-10: Product: Wireless_Device
> >> Jul 20 20:02:05 xd kernel: usb 1-10: Manufacturer: MediaTek Inc.
> >> Jul 20 20:02:05 xd kernel: usb 1-10: SerialNumber: 000000000
> >> Jul 20 20:02:05 xd kernel: [drm] Initialized i915 1.6.0 20200917 for 0000:00:02.0 on minor 0
> >> Jul 20 20:02:05 xd kernel: [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
> >> Jul 20 20:02:05 xd kernel: ACPI: Video Device [PEGP] (multi-head: yes rom: no post: no)
> >> Jul 20 20:02:05 xd kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/LNXVIDEO:00/input/input7
> >> Jul 20 20:02:05 xd kernel: ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
> >> Jul 20 20:02:05 xd kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input8
> >> Jul 20 20:02:05 xd kernel: fbcon: i915drmfb (fb0) is primary device
> >> Jul 20 20:02:05 xd kernel: Console: switching to colour frame buffer device 240x67
> >> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
> >> Jul 20 20:02:05 xd kernel: PM: Image not found (code -22)
> >> Jul 20 20:02:05 xd kernel: EXT4-fs (nvme0n1p3): mounting ext3 file system using the ext4 subsystem
> >> Jul 20 20:02:05 xd kernel: EXT4-fs (nvme0n1p3): mounted filesystem with ordered data mode. Opts: (null)
> >> Jul 20 20:02:05 xd kernel: Not activating Mandatory Access Control as /sbin/tomoyo-init does not exist.
> >> Jul 20 20:02:05 xd systemd[1]: Inserted module 'autofs4'
> >> Jul 20 20:02:05 xd systemd[1]: systemd 247.3-7 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=unified)
> >> Jul 20 20:02:05 xd systemd[1]: Detected architecture x86-64.
> >> Jul 20 20:02:05 xd systemd[1]: Set hostname to <xd>.
> >> Jul 20 20:02:05 xd systemd[1]: /lib/systemd/system/plymouth-start.service:16: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed.
> >> Jul 20 20:02:05 xd systemd[1]: Queued start job for default target Graphical Interface.
> >> Jul 20 20:02:05 xd systemd[1]: Created slice system-getty.slice.
> >> Jul 20 20:02:05 xd systemd[1]: Created slice system-modprobe.slice.
> >> Jul 20 20:02:05 xd systemd[1]: Created slice system-systemd\x2dfsck.slice.
> >> Jul 20 20:02:05 xd systemd[1]: Created slice User and Session Slice.
> >> Jul 20 20:02:05 xd systemd[1]: Started Forward Password Requests to Wall Directory Watch.
> >> Jul 20 20:02:05 xd systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
> >> Jul 20 20:02:05 xd systemd[1]: Reached target User and Group Name Lookups.
> >> Jul 20 20:02:05 xd systemd[1]: Reached target Remote File Systems.
> >> Jul 20 20:02:05 xd systemd[1]: Reached target Slices.
> >> Jul 20 20:02:05 xd systemd[1]: Listening on Device-mapper event daemon FIFOs.
> >> Jul 20 20:02:05 xd systemd[1]: Listening on LVM2 poll daemon socket.
> >> Jul 20 20:02:05 xd systemd[1]: Listening on Syslog Socket.
> >> Jul 20 20:02:05 xd systemd[1]: Listening on fsck to fsckd communication Socket.
> >> Jul 20 20:02:05 xd systemd[1]: Listening on initctl Compatibility Named Pipe.
> >> Jul 20 20:02:05 xd systemd[1]: Listening on Journal Audit Socket.
> >> Jul 20 20:02:05 xd systemd[1]: Listening on Journal Socket (/dev/log).
> >> Jul 20 20:02:05 xd systemd[1]: Listening on Journal Socket.
> >> Jul 20 20:02:05 xd systemd[1]: Listening on udev Control Socket.
> >> Jul 20 20:02:05 xd systemd[1]: Listening on udev Kernel Socket.
> >> Jul 20 20:02:05 xd systemd[1]: Mounting Huge Pages File System...
> >> Jul 20 20:02:05 xd systemd[1]: Mounting POSIX Message Queue File System...
> >> Jul 20 20:02:05 xd systemd[1]: Mounting Kernel Debug File System...
> >> Jul 20 20:02:05 xd systemd[1]: Mounting Kernel Trace File System...
> >> Jul 20 20:02:05 xd systemd[1]: Finished Availability of block devices.
> >> Jul 20 20:02:05 xd systemd[1]: Starting Set the console keyboard layout...
> >> Jul 20 20:02:05 xd systemd[1]: Starting Create list of static device nodes for the current kernel...
> >> Jul 20 20:02:05 xd systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
> >> Jul 20 20:02:05 xd systemd[1]: Starting Load Kernel Module configfs...
> >> Jul 20 20:02:05 xd systemd[1]: Starting Load Kernel Module drm...
> >> Jul 20 20:02:05 xd systemd[1]: Starting Load Kernel Module fuse...
> >> Jul 20 20:02:05 xd systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
> >> Jul 20 20:02:05 xd systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
> >> Jul 20 20:02:05 xd systemd[1]: Starting Journal Service...
> >> Jul 20 20:02:05 xd systemd[1]: Starting Load Kernel Modules...
> >> Jul 20 20:02:05 xd systemd[1]: Starting Remount Root and Kernel File Systems...
> >> Jul 20 20:02:05 xd systemd[1]: Starting Coldplug All udev Devices...
> >> Jul 20 20:02:05 xd systemd[1]: Mounted Huge Pages File System.
> >> Jul 20 20:02:05 xd systemd[1]: Mounted POSIX Message Queue File System.
> >> Jul 20 20:02:05 xd systemd[1]: Mounted Kernel Debug File System.
> >> Jul 20 20:02:05 xd systemd[1]: Mounted Kernel Trace File System.
> >> Jul 20 20:02:05 xd systemd[1]: Finished Create list of static device nodes for the current kernel.
> >> Jul 20 20:02:05 xd systemd[1]: modprobe@configfs.service: Succeeded.
> >> Jul 20 20:02:05 xd systemd[1]: Finished Load Kernel Module configfs.
> >> Jul 20 20:02:05 xd systemd[1]: modprobe@drm.service: Succeeded.
> >> Jul 20 20:02:05 xd systemd[1]: Finished Load Kernel Module drm.
> >> Jul 20 20:02:05 xd systemd[1]: Mounting Kernel Configuration File System...
> >> Jul 20 20:02:05 xd systemd[1]: Mounted Kernel Configuration File System.
> >> Jul 20 20:02:05 xd kernel: EXT4-fs (nvme0n1p3): re-mounted. Opts: errors=remount-ro
> >> Jul 20 20:02:05 xd systemd[1]: Finished Remount Root and Kernel File Systems.
> >> Jul 20 20:02:05 xd kernel: fuse: init (API version 7.32)
> >> Jul 20 20:02:05 xd systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
> >> Jul 20 20:02:05 xd systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped.
> >> Jul 20 20:02:05 xd systemd[1]: Starting Load/Save Random Seed...
> >> Jul 20 20:02:05 xd systemd[1]: Starting Create System Users...
> >> Jul 20 20:02:05 xd systemd[1]: modprobe@fuse.service: Succeeded.
> >> Jul 20 20:02:05 xd systemd[1]: Finished Load Kernel Module fuse.
> >> Jul 20 20:02:05 xd systemd[1]: Mounting FUSE Control File System...
> >> Jul 20 20:02:05 xd systemd[1]: Mounted FUSE Control File System.
> >> Jul 20 20:02:05 xd kernel: lp: driver loaded but no devices found
> >> Jul 20 20:02:05 xd kernel: ppdev: user-space parallel port driver
> >> Jul 20 20:02:05 xd systemd[1]: Finished Load/Save Random Seed.
> >> Jul 20 20:02:05 xd systemd[1]: Condition check resulted in First Boot Complete being skipped.
> >> Jul 20 20:02:05 xd systemd[1]: Finished Create System Users.
> >> Jul 20 20:02:05 xd systemd[1]: Starting Create Static Device Nodes in /dev...
> >> Jul 20 20:02:05 xd systemd[1]: Finished Create Static Device Nodes in /dev.
> >> Jul 20 20:02:05 xd systemd[1]: Starting Rule-based Manager for Device Events and Files...
> >> Jul 20 20:02:05 xd systemd[1]: Finished Set the console keyboard layout.
> >> Jul 20 20:02:05 xd systemd[1]: Started Journal Service.
> >> Jul 20 20:02:05 xd kernel: nvidia: module license 'NVIDIA' taints kernel.
> >> Jul 20 20:02:05 xd kernel: Disabling lock debugging due to kernel taint
> >> Jul 20 20:02:05 xd kernel: nvidia-nvlink: Nvlink Core is being initialized, major device number 245
> >> Jul 20 20:02:05 xd kernel:
> >> Jul 20 20:02:05 xd kernel: nvidia 0000:01:00.0: enabling device (0006 -> 0007)
> >> Jul 20 20:02:05 xd kernel: NVRM: loading NVIDIA UNIX x86_64 Kernel Module 470.129.06 Thu May 12 22:52:02 UTC 2022
> >> Jul 20 20:02:05 xd kernel: input: Acer Wireless Radio Control as /devices/LNXSYSTM:00/10251229:00/input/input9
> >> Jul 20 20:02:05 xd kernel: input: Intel HID events as /devices/platform/INTC1051:00/input/input10
> >> Jul 20 20:02:05 xd kernel: intel-hid INTC1051:00: platform supports 5 button array
> >> Jul 20 20:02:05 xd kernel: input: Intel HID 5 button array as /devices/platform/INTC1051:00/input/input11
> >> Jul 20 20:02:05 xd kernel: intel_pmc_core INT33A1:00: initialized
> >> Jul 20 20:02:05 xd kernel: ACPI: AC Adapter [ACAD] (on-line)
> >> Jul 20 20:02:05 xd kernel: nvidia-modeset: Loading NVIDIA Kernel Mode Setting Driver for UNIX platforms 470.129.06 Thu May 12 22:42:45 UTC 2022
> >> Jul 20 20:02:05 xd kernel: mc: Linux media interface: v0.10
> >> Jul 20 20:02:05 xd kernel: mei_me 0000:00:16.0: enabling device (0000 -> 0002)
> >> Jul 20 20:02:05 xd kernel: ee1004 0-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
> >> Jul 20 20:02:05 xd kernel: [drm] [nvidia-drm] [GPU ID 0x00000100] Loading driver
> >> Jul 20 20:02:05 xd kernel: [drm] Initialized nvidia-drm 0.0.0 20160202 for 0000:01:00.0 on minor 1
> >> Jul 20 20:02:05 xd kernel: videodev: Linux video capture interface: v2.00
> >> Jul 20 20:02:05 xd kernel: iTCO_vendor_support: vendor-support=0
> >> Jul 20 20:02:05 xd kernel: iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
> >> Jul 20 20:02:05 xd kernel: iTCO_wdt: Found a Intel PCH TCO device (Version=6, TCOBASE=0x0400)
> >> Jul 20 20:02:05 xd kernel: iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
> >> Jul 20 20:02:05 xd kernel: EXT4-fs (nvme0n1p2): mounting ext2 file system using the ext4 subsystem
> >> Jul 20 20:02:05 xd kernel: EXT4-fs (nvme0n1p2): mounted filesystem without journal. Opts: (null)
> >> Jul 20 20:02:05 xd kernel: ext2 filesystem being mounted at /boot supports timestamps until 2038 (0x7fffffff)
> >> Jul 20 20:02:05 xd kernel: uvcvideo: Found UVC 1.00 device HD User Facing (0408:a061)
> >> Jul 20 20:02:05 xd kernel: Adding 31182844k swap on /dev/nvme0n1p4. Priority:-2 extents:1 across:31182844k SSFS
> >> Jul 20 20:02:05 xd kernel: input: HD User Facing: HD User Facing as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/input/input12
> >> Jul 20 20:02:05 xd kernel: input: PC Speaker as /devices/platform/pcspkr/input/input13
> >> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=401 comm="apparmor_parser"
> >> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-oopslash" pid=402 comm="apparmor_parser"
> >> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=405 comm="apparmor_parser"
> >> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=405 comm="apparmor_parser"
> >> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=403 comm="apparmor_parser"
> >> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=403 comm="apparmor_parser"
> >> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=403 comm="apparmor_parser"
> >> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cups-browsed" pid=407 comm="apparmor_parser"
> >> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.840:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-senddoc" pid=409 comm="apparmor_parser"
> >> Jul 20 20:02:05 xd kernel: usbcore: registered new interface driver uvcvideo
> >> Jul 20 20:02:05 xd kernel: USB Video Class driver (1.1.1)
> >> Jul 20 20:02:05 xd kernel: pstore: Using crash dump compression: deflate
> >> Jul 20 20:02:05 xd kernel: input: ELAN0515:01 04F3:3142 Mouse as /devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input14
> >> Jul 20 20:02:05 xd kernel: input: ELAN0515:01 04F3:3142 Touchpad as /devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input16
> >> Jul 20 20:02:05 xd kernel: hid-multitouch 0018:04F3:3142.0001: input,hidraw0: I2C HID v1.00 Mouse [ELAN0515:01 04F3:3142] on i2c-ELAN0515:01
> >> Jul 20 20:02:05 xd kernel: pstore: Registered efi as persistent store backend
> >> Jul 20 20:02:05 xd kernel: acer_wmi: Acer Laptop ACPI-WMI Extras
> >> Jul 20 20:02:05 xd kernel: acer_wmi: Function bitmap for Communication Button: 0x801
> >> Jul 20 20:02:05 xd kernel: input: Acer WMI hotkeys as /devices/virtual/input/input17
> >> Jul 20 20:02:05 xd kernel: snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040100
> >> Jul 20 20:02:05 xd kernel: snd_hda_intel 0000:00:1f.3: Digital mics found on Skylake+ platform, using SOF driver
> >> Jul 20 20:02:05 xd kernel: cryptd: max_cpu_qlen set to 1000
> >> Jul 20 20:02:06 xd kernel: AVX2 version of gcm_enc/dec engaged.
> >> Jul 20 20:02:06 xd kernel: AES CTR mode by8 optimization enabled
> >> Jul 20 20:02:06 xd kernel: resource sanity check: requesting [mem 0xfedc0000-0xfedcdfff], which spans more than pnp 00:04 [mem 0xfedc0000-0xfedc7fff]
> >> Jul 20 20:02:06 xd kernel: caller tgl_uncore_imc_freerunning_init_box+0xbb/0x100 [intel_uncore] mapping multiple BARs
> >> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040100
> >> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: Digital mics found on Skylake+ platform, using SOF driver
> >> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: enabling device (0000 -> 0002)
> >> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if 0x040100
> >> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
> >> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: use msi interrupt mode
> >> Jul 20 20:02:06 xd kernel: ACPI Warning: \_SB.PC00.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20200925/nsarguments-61)
> >> Jul 20 20:02:06 xd kernel: enp2s0: 0xffffbd82000e9000, 08:8f:c3:4f:86:c5, IRQ 145
> >> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: hda codecs found, mask 5
> >> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: using HDA machine driver skl_hda_dsp_generic now
> >> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: DMICs detected in NHLT tables: 2
> >> Jul 20 20:02:06 xd kernel: alg: No test for fips(ansi_cprng) (fips_ansi_cprng)
> >> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: firmware: failed to load intel/sof/sof-tgl.ri (-2)
> >> Jul 20 20:02:06 xd kernel: firmware_class: See https://wiki.debian.org/Firmware for information about missing firmware
> >> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: Direct firmware load for intel/sof/sof-tgl.ri failed with error -2
> >> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: error: request firmware intel/sof/sof-tgl.ri failed err: -2
> >> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: error: failed to load DSP firmware -2
> >> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: error: sof_probe_work failed err: -2
> >> Jul 20 20:02:06 xd kernel: Bluetooth: Core ver 2.22
> >> Jul 20 20:02:06 xd kernel: NET: Registered protocol family 31
> >> Jul 20 20:02:06 xd kernel: Bluetooth: HCI device and connection manager initialized
> >> Jul 20 20:02:06 xd kernel: Bluetooth: HCI socket layer initialized
> >> Jul 20 20:02:06 xd kernel: Bluetooth: L2CAP socket layer initialized
> >> Jul 20 20:02:06 xd kernel: Bluetooth: SCO socket layer initialized
> >> Jul 20 20:02:06 xd kernel: usbcore: registered new interface driver btusb
> >> Jul 20 20:02:07 xd kernel: intel_rapl_msr: PL4 support detected.
> >> Jul 20 20:02:07 xd kernel: intel_rapl_common: Found RAPL domain package
> >> Jul 20 20:02:07 xd kernel: intel_rapl_common: Found RAPL domain core
> >> Jul 20 20:02:07 xd kernel: intel_rapl_common: Found RAPL domain uncore
> >> Jul 20 20:02:07 xd kernel: mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_component_ops [i915])
> >> Jul 20 20:02:07 xd kernel: Bluetooth: BNEP (Ethernet Emulation) ver 1.3
> >> Jul 20 20:02:07 xd kernel: Bluetooth: BNEP filters: protocol multicast
> >> Jul 20 20:02:07 xd kernel: Bluetooth: BNEP socket layer initialized
> >> Jul 20 20:02:09 xd kernel: r8168: enp2s0: link up
> >> Jul 20 20:02:09 xd kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
> >> Jul 20 20:02:09 xd kernel: rfkill: input handler disabled
> >> Jul 20 20:02:17 xd kernel: rfkill: input handler enabled
> >> Jul 20 20:02:18 xd kernel: rfkill: input handler disabled
> >>
> >
>
Re: Boot into Xen on debian11 [ In reply to ]
On 7/20/2022 4:38 PM, Bruno wrote:
> Another thing that catches my eye are the constant fails from beginning to end on nvme:
>
> nvme nvme0: pci function x
> nvme x: PCI INT A: no GSI
> Time-outs I/O x QID completion polled
> missing or invalid SUBQN field
> Timeouts and probes / completion pilled

I think maybe your laptop is too new for Debian
stable. Debian stable uses Linux 5.10 and Xen 4.14
which were developed probably two years ago or
more. I think you need a distro with Linux 5.18
and Xen 4.16. Debian testing (aka bookworm) will
eventually become Debian 12 should work better,
and you can find many guides for upgrading from
Debian stable to Debian testing by doing an Internet
search. I also think fedora and opensuse might have
those newer versions of Linux and Xen also.

Chuck

>
> > On 20 Jul 2022, at 21:19, Bruno <brunoce@kolabnow.com> wrote:
> >
> > ?Error I can see when I grep from dmesg on initramfs:
> >
> > pcieport xxx DCP: error containment capabilities: Int Msg #0, …..
> >
> > And grep fail:
> >
> > PM-Timer consistency check
> >
> > pci xxx: Failed to add - pass through or MSI/MSI-X might fail!
> > pci xxx: BAR x: failed to assign [io size x]
> >
> > r8168: module verification failed: signature and or required key missing - tainting kernel
> >
> >>> On 20 Jul 2022, at 21:03, Chuck Zmudzinski <brchuckz@netscape.net> wrote:
> >>>
> >>> ?On 7/20/22 3:19 PM, Bruno wrote:
> >>>
> >>> Hello Leigh. Hello Chuck.
> >>>
> >>> Thank you again for the support. Unfortunately matters have not moved forward yet.
> >>>
> >>> I have successfully installed nvidia and the non-free firmware miscellanea, and I have re-generated the initramfs ( update-initramfs -k all -c -v ). But I cannot boot on Xen.
> >>>
> >>> I also when booting Xen and landing on initramfs prompt, cannot mount /root ( mount -o remount,rw /root ), and I cannot extract a dmesg of that boot process. I am not getting the ACPI error I was getting before, but clearly the errors in mount are ACPI failure.
> >>>
> >>> Bellow the current journalctl -k -b :
> >>>
> >>
> >> As Leigh said, there should be something like:
> >>
> >> Jul 20 09:19:36 debian kernel: [ 0.000000] Hypervisor detected: Xen PV
> >>
> >> In the journal logs, but I don't see it there. See if you can find it in
> >> the /var/log/kern.log file to be sure you are posting the right log file.
> >> It should be there on the attempt to boot into Linux on Xen.
> >>
> >> Maybe there is something wrong with your grub configuration. I know
> >> you posted it in your first message but I don't see anything
> >> terribly wrong there. Are you sure that grub is really booting
> >> the 'Debian Linux/GNU with Xen hypervisor' boot option? It
> >> should boot that, based on what is in your /boot/grub/grub.cfg
> >> file.
> >>
> >> You can also manually select the option to boot Debian with the
> >> Xen hypervisor while the grub boot menu displays.
> >>
> >> It has been a long time since I installed Xen on Debian,
> >> I have been just upgrading my installation that
> >> goes all the way back to Debian 7. It may be there
> >> is a bug in the current Debian Xen metapackage
> >> installation system.
> >>
> >> I have been planning to try to do a clean install of
> >> Xen on Debian 11 to see if it still works right. I will
> >> try it later this week and let you know if there is
> >> a bug in the Debian Xen installation system.
> >>
> >> Chuck
> >>
> >>
> >>> Jul 20 20:02:05 xd kernel: Linux version 5.10.0-16-amd64 (debian-kernel@lists.debian.org) (gcc-10 (Debian 10.2.1-6) 10.2.1 20210110, GNU ld (GNU Binutils for Debian) 2.35.2) #1 SMP Debian 5.10.127-1 (2022-06-30)
> >>> Jul 20 20:02:05 xd kernel: Command line: BOOT_IMAGE=/vmlinuz-5.10.0-16-amd64 root=UUID=0123abcd ro quiet
> >>> Jul 20 20:02:05 xd kernel: x86/split lock detection: warning about user-space split_locks
> >>> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
> >>> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
> >>> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
> >>> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask'
> >>> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'
> >>> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'
> >>> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
> >>> Jul 20 20:02:05 xd kernel: x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
> >>> Jul 20 20:02:05 xd kernel: x86/fpu: xstate_offset[5]: 832, xstate_sizes[5]: 64
> >>> Jul 20 20:02:05 xd kernel: x86/fpu: xstate_offset[6]: 896, xstate_sizes[6]: 512
> >>> Jul 20 20:02:05 xd kernel: x86/fpu: xstate_offset[7]: 1408, xstate_sizes[7]: 1024
> >>> Jul 20 20:02:05 xd kernel: x86/fpu: xstate_offset[9]: 2432, xstate_sizes[9]: 8
> >>> Jul 20 20:02:05 xd kernel: x86/fpu: Enabled xstate features 0x2e7, context size is 2440 bytes, using 'compacted' format.
> >>> Jul 20 20:02:05 xd kernel: BIOS-provided physical RAM map:
> >>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
> >>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
> >>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000000100000-0x000000003fd98fff] usable
> >>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x000000003fd99000-0x0000000040698fff] reserved
> >>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000040699000-0x00000000424aefff] usable
> >>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000424af000-0x000000004287efff] type 20
> >>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x000000004287f000-0x00000000442fefff] reserved
> >>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000442ff000-0x0000000044b2efff] ACPI NVS
> >>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000044b2f000-0x0000000044bfefff] ACPI data
> >>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000044bff000-0x0000000044bfffff] usable
> >>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000044c00000-0x0000000048ffffff] reserved
> >>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000049e00000-0x000000004f7fffff] reserved
> >>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000c0000000-0x00000000cfffffff] reserved
> >>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000fe010000-0x00000000fe010fff] reserved
> >>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000fed20000-0x00000000fed7ffff] reserved
> >>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000ff500000-0x00000000ffffffff] reserved
> >>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000100000000-0x00000004b07fffff] usable
> >>> Jul 20 20:02:05 xd kernel: NX (Execute Disable) protection: active
> >>> Jul 20 20:02:05 xd kernel: efi: EFI v2.70 by INSYDE Corp.
> >>> Jul 20 20:02:05 xd kernel: efi: ACPI=0x44bfe000 ACPI 2.0=0x44bfe014 TPMFinalLog=0x44ac5000 SMBIOS=0x429de000 SMBIOS 3.0=0x429dc000 ESRT=0x3bf68a98 MOKvar=0x3bee5000
> >>> Jul 20 20:02:05 xd kernel: secureboot: Secure boot could not be determined (mode 0)
> >>> Jul 20 20:02:05 xd kernel: SMBIOS 3.3.0 present.
> >>> Jul 20 20:02:05 xd kernel: DMI: Acer Aspire A517-52G/Jasmine_TL, BIOS V1.26 03/14/2022
> >>> Jul 20 20:02:05 xd kernel: tsc: Detected 2400.000 MHz processor
> >>> Jul 20 20:02:05 xd kernel: tsc: Detected 2419.200 MHz TSC
> >>> Jul 20 20:02:05 xd kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
> >>> Jul 20 20:02:05 xd kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
> >>> Jul 20 20:02:05 xd kernel: last_pfn = 0x4b0800 max_arch_pfn = 0x400000000
> >>> Jul 20 20:02:05 xd kernel: MTRR default type: write-back
> >>> Jul 20 20:02:05 xd kernel: MTRR fixed ranges enabled:
> >>> Jul 20 20:02:05 xd kernel: 00000-9FFFF write-back
> >>> Jul 20 20:02:05 xd kernel: A0000-BFFFF uncachable
> >>> Jul 20 20:02:05 xd kernel: C0000-FFFFF write-protect
> >>> Jul 20 20:02:05 xd kernel: MTRR variable ranges enabled:
> >>> Jul 20 20:02:05 xd kernel: 0 base 0080000000 mask 7F80000000 uncachable
> >>> Jul 20 20:02:05 xd kernel: 1 base 0060000000 mask 7FE0000000 uncachable
> >>> Jul 20 20:02:05 xd kernel: 2 base 0050000000 mask 7FF0000000 uncachable
> >>> Jul 20 20:02:05 xd kernel: 3 base 004C000000 mask 7FFC000000 uncachable
> >>> Jul 20 20:02:05 xd kernel: 4 base 004B000000 mask 7FFF000000 uncachable
> >>> Jul 20 20:02:05 xd kernel: 5 base 4000000000 mask 4000000000 uncachable
> >>> Jul 20 20:02:05 xd kernel: 6 disabled
> >>> Jul 20 20:02:05 xd kernel: 7 disabled
> >>> Jul 20 20:02:05 xd kernel: 8 disabled
> >>> Jul 20 20:02:05 xd kernel: 9 disabled
> >>> Jul 20 20:02:05 xd kernel: x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
> >>> Jul 20 20:02:05 xd kernel: last_pfn = 0x44c00 max_arch_pfn = 0x400000000
> >>> Jul 20 20:02:05 xd kernel: esrt: Reserving ESRT space from 0x000000003bf68a98 to 0x000000003bf68ad0.
> >>> Jul 20 20:02:05 xd kernel: e820: update [mem 0x3bf68000-0x3bf68fff] usable ==> reserved
> >>> Jul 20 20:02:05 xd kernel: e820: update [mem 0x3bee5000-0x3bee7fff] usable ==> reserved
> >>> Jul 20 20:02:05 xd kernel: Using GB pages for direct mapping
> >>> Jul 20 20:02:05 xd kernel: RAMDISK: [mem 0x32341000-0x35197fff]
> >>> Jul 20 20:02:05 xd kernel: ACPI: Early table checksum verification disabled
> >>> Jul 20 20:02:05 xd kernel: ACPI: RSDP 0x0000000044BFE014 000024 (v02 ACRSYS)
> >>> Jul 20 20:02:05 xd kernel: ACPI: XSDT 0x0000000044BDB188 000124 (v01 ACRSYS ACRPRDCT 00000002 01000013)
> >>> Jul 20 20:02:05 xd kernel: ACPI: FACP 0x0000000044BDE000 000114 (v06 ACRSYS ACRPRDCT 00000002 1025 00040000)
> >>> Jul 20 20:02:05 xd kernel: ACPI: DSDT 0x0000000044B81000 059948 (v02 ACRSYS ACRPRDCT 00000002 1025 00040000)
> >>> Jul 20 20:02:05 xd kernel: ACPI: FACS 0x0000000044AA2000 000040
> >>> Jul 20 20:02:05 xd kernel: ACPI: UEFI 0x0000000044B2E000 000236 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
> >>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BFA000 00255C (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
> >>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BF9000 000105 (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
> >>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BF6000 002137 (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
> >>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BF2000 003300 (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
> >>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BF1000 00077B (v02 ACRSYS ACRPRDCT 00001000 1025 00040000)
> >>> Jul 20 20:02:05 xd kernel: ACPI: TPM2 0x0000000044BF0000 00004C (v04 ACRSYS ACRPRDCT 00000002 1025 00040000)
> >>> Jul 20 20:02:05 xd kernel: ACPI: MSDM 0x0000000044BEF000 000055 (v03 ACRSYS ACRPRDCT 00000001 1025 00040000)
> >>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BEE000 000D02 (v02 ACRSYS ACRPRDCT 00000000 1025 00040000)
> >>> Jul 20 20:02:05 xd kernel: ACPI: NHLT 0x0000000044BEC000 001B54 (v00 ACRSYS ACRPRDCT 00000002 1025 00040000)
> >>> Jul 20 20:02:05 xd kernel: ACPI: LPIT 0x0000000044BEB000 0000CC (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
> >>> Jul 20 20:02:05 xd kernel: ACPI: WSMT 0x0000000044BEA000 000028 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
> >>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BE9000 000B70 (v02 ACRSYS ACRPRDCT 00001000 1025 00040000)
> >>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BE8000 00012A (v02 ACRSYS ACRPRDCT 00000000 1025 00040000)
> >>> Jul 20 20:02:05 xd kernel: ACPI: DBGP 0x0000000044BE7000 000034 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
> >>> Jul 20 20:02:05 xd kernel: ACPI: DBG2 0x0000000044BE6000 000054 (v00 ACRSYS ACRPRDCT 00000002 1025 00040000)
> >>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BDF000 006BA9 (v01 ACRSYS ACRPRDCT 00001000 1025 00040000)
> >>> Jul 20 20:02:05 xd kernel: ACPI: HPET 0x0000000044BDD000 000038 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
> >>> Jul 20 20:02:05 xd kernel: ACPI: APIC 0x0000000044BDC000 00012C (v04 ACRSYS ACRPRDCT 00000002 1025 00040000)
> >>> Jul 20 20:02:05 xd kernel: ACPI: MCFG 0x0000000044BFD000 00003C (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
> >>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044B80000 000C78 (v02 ACRSYS ACRPRDCT 00000002 1025 00040000)
> >>> Jul 20 20:02:05 xd kernel: ACPI: DMAR 0x0000000044B7F000 000088 (v02 ACRSYS ACRPRDCT 00000002 1025 00040000)
> >>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044B7C000 0020D6 (v01 ACRSYS ACRPRDCT 00001000 1025 00040000)
> >>> Jul 20 20:02:05 xd kernel: ACPI: UEFI 0x0000000044A5B000 00063A (v01 ACRSYS ACRPRDCT 00000000 1025 00040000)
> >>> Jul 20 20:02:05 xd kernel: ACPI: UEFI 0x0000000044A5A000 00005C (v01 ACRSYS ACRPRDCT 00000000 1025 00040000)
> >>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044B7B000 000985 (v02 ACRSYS ACRPRDCT 00001000 1025 00040000)
> >>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044B7A000 0000F8 (v01 ACRSYS ACRPRDCT 00001000 1025 00040000)
> >>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044B79000 000835 (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
> >>> Jul 20 20:02:05 xd kernel: ACPI: FPDT 0x0000000044B78000 000044 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
> >>> Jul 20 20:02:05 xd kernel: ACPI: PTDT 0x0000000044B76000 000CFE (v00 ACRSYS ACRPRDCT 00000005 1025 00040000)
> >>> Jul 20 20:02:05 xd kernel: ACPI: BGRT 0x0000000044B77000 000038 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Reserving FACP table memory at [mem 0x44bde000-0x44bde113]
> >>> Jul 20 20:02:05 xd kernel: ACPI: Reserving DSDT table memory at [mem 0x44b81000-0x44bda947]
> >>> Jul 20 20:02:05 xd kernel: ACPI: Reserving FACS table memory at [mem 0x44aa2000-0x44aa203f]
> >>> Jul 20 20:02:05 xd kernel: ACPI: Reserving UEFI table memory at [mem 0x44b2e000-0x44b2e235]
> >>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bfa000-0x44bfc55b]
> >>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bf9000-0x44bf9104]
> >>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bf6000-0x44bf8136]
> >>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bf2000-0x44bf52ff]
> >>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bf1000-0x44bf177a]
> >>> Jul 20 20:02:05 xd kernel: ACPI: Reserving TPM2 table memory at [mem 0x44bf0000-0x44bf004b]
> >>> Jul 20 20:02:05 xd kernel: ACPI: Reserving MSDM table memory at [mem 0x44bef000-0x44bef054]
> >>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bee000-0x44beed01]
> >>> Jul 20 20:02:05 xd kernel: ACPI: Reserving NHLT table memory at [mem 0x44bec000-0x44bedb53]
> >>> Jul 20 20:02:05 xd kernel: ACPI: Reserving LPIT table memory at [mem 0x44beb000-0x44beb0cb]
> >>> Jul 20 20:02:05 xd kernel: ACPI: Reserving WSMT table memory at [mem 0x44bea000-0x44bea027]
> >>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44be9000-0x44be9b6f]
> >>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44be8000-0x44be8129]
> >>> Jul 20 20:02:05 xd kernel: ACPI: Reserving DBGP table memory at [mem 0x44be7000-0x44be7033]
> >>> Jul 20 20:02:05 xd kernel: ACPI: Reserving DBG2 table memory at [mem 0x44be6000-0x44be6053]
> >>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bdf000-0x44be5ba8]
> >>> Jul 20 20:02:05 xd kernel: ACPI: Reserving HPET table memory at [mem 0x44bdd000-0x44bdd037]
> >>> Jul 20 20:02:05 xd kernel: ACPI: Reserving APIC table memory at [mem 0x44bdc000-0x44bdc12b]
> >>> Jul 20 20:02:05 xd kernel: ACPI: Reserving MCFG table memory at [mem 0x44bfd000-0x44bfd03b]
> >>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b80000-0x44b80c77]
> >>> Jul 20 20:02:05 xd kernel: ACPI: Reserving DMAR table memory at [mem 0x44b7f000-0x44b7f087]
> >>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b7c000-0x44b7e0d5]
> >>> Jul 20 20:02:05 xd kernel: ACPI: Reserving UEFI table memory at [mem 0x44a5b000-0x44a5b639]
> >>> Jul 20 20:02:05 xd kernel: ACPI: Reserving UEFI table memory at [mem 0x44a5a000-0x44a5a05b]
> >>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b7b000-0x44b7b984]
> >>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b7a000-0x44b7a0f7]
> >>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b79000-0x44b79834]
> >>> Jul 20 20:02:05 xd kernel: ACPI: Reserving FPDT table memory at [mem 0x44b78000-0x44b78043]
> >>> Jul 20 20:02:05 xd kernel: ACPI: Reserving PTDT table memory at [mem 0x44b76000-0x44b76cfd]
> >>> Jul 20 20:02:05 xd kernel: ACPI: Reserving BGRT table memory at [mem 0x44b77000-0x44b77037]
> >>> Jul 20 20:02:05 xd kernel: ACPI: Local APIC address 0xfee00000
> >>> Jul 20 20:02:05 xd kernel: No NUMA configuration found
> >>> Jul 20 20:02:05 xd kernel: Faking a node at [mem 0x0000000000000000-0x00000004b07fffff]
> >>> Jul 20 20:02:05 xd kernel: NODE_DATA(0) allocated [mem 0x4b07d6000-0x4b07fffff]
> >>> Jul 20 20:02:05 xd kernel: Zone ranges:
> >>> Jul 20 20:02:05 xd kernel: DMA [mem 0x0000000000001000-0x0000000000ffffff]
> >>> Jul 20 20:02:05 xd kernel: DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
> >>> Jul 20 20:02:05 xd kernel: Normal [mem 0x0000000100000000-0x00000004b07fffff]
> >>> Jul 20 20:02:05 xd kernel: Device empty
> >>> Jul 20 20:02:05 xd kernel: Movable zone start for each node
> >>> Jul 20 20:02:05 xd kernel: Early memory node ranges
> >>> Jul 20 20:02:05 xd kernel: node 0: [mem 0x0000000000001000-0x000000000009efff]
> >>> Jul 20 20:02:05 xd kernel: node 0: [mem 0x0000000000100000-0x000000003fd98fff]
> >>> Jul 20 20:02:05 xd kernel: node 0: [mem 0x0000000040699000-0x00000000424aefff]
> >>> Jul 20 20:02:05 xd kernel: node 0: [mem 0x0000000044bff000-0x0000000044bfffff]
> >>> Jul 20 20:02:05 xd kernel: node 0: [mem 0x0000000100000000-0x00000004b07fffff]
> >>> Jul 20 20:02:05 xd kernel: Initmem setup node 0 [mem 0x0000000000001000-0x00000004b07fffff]
> >>> Jul 20 20:02:05 xd kernel: On node 0 totalpages: 4137806
> >>> Jul 20 20:02:05 xd kernel: DMA zone: 64 pages used for memmap
> >>> Jul 20 20:02:05 xd kernel: DMA zone: 25 pages reserved
> >>> Jul 20 20:02:05 xd kernel: DMA zone: 3998 pages, LIFO batch:0
> >>> Jul 20 20:02:05 xd kernel: DMA32 zone: 4143 pages used for memmap
> >>> Jul 20 20:02:05 xd kernel: DMA32 zone: 265136 pages, LIFO batch:63
> >>> Jul 20 20:02:05 xd kernel: Normal zone: 60448 pages used for memmap
> >>> Jul 20 20:02:05 xd kernel: Normal zone: 3868672 pages, LIFO batch:63
> >>> Jul 20 20:02:05 xd kernel: On node 0, zone DMA: 1 pages in unavailable ranges
> >>> Jul 20 20:02:05 xd kernel: On node 0, zone DMA: 97 pages in unavailable ranges
> >>> Jul 20 20:02:05 xd kernel: On node 0, zone DMA32: 2304 pages in unavailable ranges
> >>> Jul 20 20:02:05 xd kernel: On node 0, zone DMA32: 10064 pages in unavailable ranges
> >>> Jul 20 20:02:05 xd kernel: On node 0, zone Normal: 13312 pages in unavailable ranges
> >>> Jul 20 20:02:05 xd kernel: On node 0, zone Normal: 30720 pages in unavailable ranges
> >>> Jul 20 20:02:05 xd kernel: Reserving Intel graphics memory at [mem 0x4b800000-0x4f7fffff]
> >>> Jul 20 20:02:05 xd kernel: ACPI: PM-Timer IO Port: 0x1808
> >>> Jul 20 20:02:05 xd kernel: ACPI: Local APIC address 0xfee00000
> >>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
> >>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
> >>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
> >>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
> >>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
> >>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
> >>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
> >>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
> >>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
> >>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
> >>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
> >>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
> >>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
> >>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
> >>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
> >>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
> >>> Jul 20 20:02:05 xd kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
> >>> Jul 20 20:02:05 xd kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
> >>> Jul 20 20:02:05 xd kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
> >>> Jul 20 20:02:05 xd kernel: ACPI: IRQ0 used by override.
> >>> Jul 20 20:02:05 xd kernel: ACPI: IRQ9 used by override.
> >>> Jul 20 20:02:05 xd kernel: Using ACPI (MADT) for SMP configuration information
> >>> Jul 20 20:02:05 xd kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
> >>> Jul 20 20:02:05 xd kernel: e820: update [mem 0x3bf6a000-0x3c05dfff] usable ==> reserved
> >>> Jul 20 20:02:05 xd kernel: TSC deadline timer available
> >>> Jul 20 20:02:05 xd kernel: smpboot: Allowing 8 CPUs, 0 hotplug CPUs
> >>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
> >>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
> >>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x3bee5000-0x3bee7fff]
> >>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x3bf68000-0x3bf68fff]
> >>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x3bf6a000-0x3c05dfff]
> >>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x3fd99000-0x40698fff]
> >>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x424af000-0x4287efff]
> >>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x4287f000-0x442fefff]
> >>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x442ff000-0x44b2efff]
> >>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x44b2f000-0x44bfefff]
> >>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x44c00000-0x48ffffff]
> >>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x49000000-0x49dfffff]
> >>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x49e00000-0x4f7fffff]
> >>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x4f800000-0xbfffffff]
> >>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xc0000000-0xcfffffff]
> >>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xd0000000-0xfe00ffff]
> >>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xfe010000-0xfe010fff]
> >>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xfed1ffff]
> >>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xfed7ffff]
> >>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xff4fffff]
> >>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xff500000-0xffffffff]
> >>> Jul 20 20:02:05 xd kernel: [mem 0x4f800000-0xbfffffff] available for PCI devices
> >>> Jul 20 20:02:05 xd kernel: Booting paravirtualized kernel on bare hardware
> >>> Jul 20 20:02:05 xd kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
> >>> Jul 20 20:02:05 xd kernel: setup_percpu: NR_CPUS:8192 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
> >>> Jul 20 20:02:05 xd kernel: percpu: Embedded 58 pages/cpu s200664 r8192 d28712 u262144
> >>> Jul 20 20:02:05 xd kernel: pcpu-alloc: s200664 r8192 d28712 u262144 alloc=1*2097152
> >>> Jul 20 20:02:05 xd kernel: pcpu-alloc: [0] 0 1 2 3 4 5 6 7
> >>> Jul 20 20:02:05 xd kernel: Built 1 zonelists, mobility grouping on. Total pages: 4073126
> >>> Jul 20 20:02:05 xd kernel: Policy zone: Normal
> >>> Jul 20 20:02:05 xd kernel: Kernel command line: BOOT_IMAGE=/vmlinuz-5.10.0-16-amd64 root=UUID=0dc2ba0c-97d5-4786-bc97-4d13279afe0f ro quiet
> >>> Jul 20 20:02:05 xd kernel: Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
> >>> Jul 20 20:02:05 xd kernel: Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
> >>> Jul 20 20:02:05 xd kernel: mem auto-init: stack:off, heap alloc:on, heap free:off
> >>> Jul 20 20:02:05 xd kernel: Memory: 1010444K/16551224K available (12295K kernel code, 2536K rwdata, 7568K rodata, 2424K init, 3680K bss, 520984K reserved, 0K cma-reserved)
> >>> Jul 20 20:02:05 xd kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
> >>> Jul 20 20:02:05 xd kernel: ftrace: allocating 36455 entries in 143 pages
> >>> Jul 20 20:02:05 xd kernel: ftrace: allocated 143 pages with 5 groups
> >>> Jul 20 20:02:05 xd kernel: rcu: Hierarchical RCU implementation.
> >>> Jul 20 20:02:05 xd kernel: rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=8.
> >>> Jul 20 20:02:05 xd kernel: Rude variant of Tasks RCU enabled.
> >>> Jul 20 20:02:05 xd kernel: Tracing variant of Tasks RCU enabled.
> >>> Jul 20 20:02:05 xd kernel: rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
> >>> Jul 20 20:02:05 xd kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
> >>> Jul 20 20:02:05 xd kernel: NR_IRQS: 524544, nr_irqs: 2048, preallocated irqs: 16
> >>> Jul 20 20:02:05 xd kernel: random: crng init done
> >>> Jul 20 20:02:05 xd kernel: Console: colour dummy device 80x25
> >>> Jul 20 20:02:05 xd kernel: printk: console [tty0] enabled
> >>> Jul 20 20:02:05 xd kernel: ACPI: Core revision 20200925
> >>> Jul 20 20:02:05 xd kernel: hpet: HPET dysfunctional in PC10. Force disabled.
> >>> Jul 20 20:02:05 xd kernel: APIC: Switch to symmetric I/O mode setup
> >>> Jul 20 20:02:05 xd kernel: DMAR: Host address width 39
> >>> Jul 20 20:02:05 xd kernel: DMAR: DRHD base: 0x000000fed90000 flags: 0x0
> >>> Jul 20 20:02:05 xd kernel: DMAR: dmar0: reg_base_addr fed90000 ver 4:0 cap 1c0000c40660462 ecap 29a00f0505e
> >>> Jul 20 20:02:05 xd kernel: DMAR: DRHD base: 0x000000fed91000 flags: 0x1
> >>> Jul 20 20:02:05 xd kernel: DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
> >>> Jul 20 20:02:05 xd kernel: DMAR: RMRR base: 0x0000004b000000 end: 0x0000004f7fffff
> >>> Jul 20 20:02:05 xd kernel: DMAR-IR: IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 1
> >>> Jul 20 20:02:05 xd kernel: DMAR-IR: HPET id 0 under DRHD base 0xfed91000
> >>> Jul 20 20:02:05 xd kernel: DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
> >>> Jul 20 20:02:05 xd kernel: DMAR-IR: Enabled IRQ remapping in x2apic mode
> >>> Jul 20 20:02:05 xd kernel: x2apic enabled
> >>> Jul 20 20:02:05 xd kernel: Switched APIC routing to cluster x2apic.
> >>> Jul 20 20:02:05 xd kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x22df1149949, max_idle_ns: 440795312789 ns
> >>> Jul 20 20:02:05 xd kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 4838.40 BogoMIPS (lpj=9676800)
> >>> Jul 20 20:02:05 xd kernel: pid_max: default: 32768 minimum: 301
> >>> Jul 20 20:02:05 xd kernel: LSM: Security Framework initializing
> >>> Jul 20 20:02:05 xd kernel: Yama: disabled by default; enable with sysctl kernel.yama.*
> >>> Jul 20 20:02:05 xd kernel: AppArmor: AppArmor initialized
> >>> Jul 20 20:02:05 xd kernel: TOMOYO Linux initialized
> >>> Jul 20 20:02:05 xd kernel: Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
> >>> Jul 20 20:02:05 xd kernel: Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
> >>> Jul 20 20:02:05 xd kernel: x86/cpu: User Mode Instruction Prevention (UMIP) activated
> >>> Jul 20 20:02:05 xd kernel: mce: CPU0: Thermal monitoring enabled (TM1)
> >>> Jul 20 20:02:05 xd kernel: process: using mwait in idle threads
> >>> Jul 20 20:02:05 xd kernel: Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
> >>> Jul 20 20:02:05 xd kernel: Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
> >>> Jul 20 20:02:05 xd kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
> >>> Jul 20 20:02:05 xd kernel: Spectre V2 : Mitigation: Enhanced IBRS
> >>> Jul 20 20:02:05 xd kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
> >>> Jul 20 20:02:05 xd kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
> >>> Jul 20 20:02:05 xd kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
> >>> Jul 20 20:02:05 xd kernel: Freeing SMP alternatives memory: 32K
> >>> Jul 20 20:02:05 xd kernel: smpboot: CPU0: 11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz (family: 0x6, model: 0x8c, stepping: 0x1)
> >>> Jul 20 20:02:05 xd kernel: Performance Events: PEBS fmt4+-baseline, AnyThread deprecated, Icelake events, 32-deep LBR, full-width counters, Intel PMU driver.
> >>> Jul 20 20:02:05 xd kernel: ... version: 5
> >>> Jul 20 20:02:05 xd kernel: ... bit width: 48
> >>> Jul 20 20:02:05 xd kernel: ... generic registers: 8
> >>> Jul 20 20:02:05 xd kernel: ... value mask: 0000ffffffffffff
> >>> Jul 20 20:02:05 xd kernel: ... max period: 00007fffffffffff
> >>> Jul 20 20:02:05 xd kernel: ... fixed-purpose events: 4
> >>> Jul 20 20:02:05 xd kernel: ... event mask: 0001000f000000ff
> >>> Jul 20 20:02:05 xd kernel: rcu: Hierarchical SRCU implementation.
> >>> Jul 20 20:02:05 xd kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
> >>> Jul 20 20:02:05 xd kernel: smp: Bringing up secondary CPUs ...
> >>> Jul 20 20:02:05 xd kernel: x86: Booting SMP configuration:
> >>> Jul 20 20:02:05 xd kernel: .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7
> >>> Jul 20 20:02:05 xd kernel: smp: Brought up 1 node, 8 CPUs
> >>> Jul 20 20:02:05 xd kernel: smpboot: Max logical packages: 1
> >>> Jul 20 20:02:05 xd kernel: smpboot: Total of 8 processors activated (38707.20 BogoMIPS)
> >>> Jul 20 20:02:05 xd kernel: node 0 deferred pages initialised in 20ms
> >>> Jul 20 20:02:05 xd kernel: devtmpfs: initialized
> >>> Jul 20 20:02:05 xd kernel: x86/mm: Memory block size: 128MB
> >>> Jul 20 20:02:05 xd kernel: PM: Registering ACPI NVS region [mem 0x442ff000-0x44b2efff] (8585216 bytes)
> >>> Jul 20 20:02:05 xd kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
> >>> Jul 20 20:02:05 xd kernel: futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
> >>> Jul 20 20:02:05 xd kernel: pinctrl core: initialized pinctrl subsystem
> >>> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 16
> >>> Jul 20 20:02:05 xd kernel: audit: initializing netlink subsys (disabled)
> >>> Jul 20 20:02:05 xd kernel: audit: type=2000 audit(1658343722.028:1): state=initialized audit_enabled=0 res=1
> >>> Jul 20 20:02:05 xd kernel: thermal_sys: Registered thermal governor 'fair_share'
> >>> Jul 20 20:02:05 xd kernel: thermal_sys: Registered thermal governor 'bang_bang'
> >>> Jul 20 20:02:05 xd kernel: thermal_sys: Registered thermal governor 'step_wise'
> >>> Jul 20 20:02:05 xd kernel: thermal_sys: Registered thermal governor 'user_space'
> >>> Jul 20 20:02:05 xd kernel: thermal_sys: Registered thermal governor 'power_allocator'
> >>> Jul 20 20:02:05 xd kernel: cpuidle: using governor ladder
> >>> Jul 20 20:02:05 xd kernel: cpuidle: using governor menu
> >>> Jul 20 20:02:05 xd kernel: ACPI: bus type PCI registered
> >>> Jul 20 20:02:05 xd kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
> >>> Jul 20 20:02:05 xd kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xc0000000-0xcfffffff] (base 0xc0000000)
> >>> Jul 20 20:02:05 xd kernel: PCI: MMCONFIG at [mem 0xc0000000-0xcfffffff] reserved in E820
> >>> Jul 20 20:02:05 xd kernel: PCI: Using configuration type 1 for base access
> >>> Jul 20 20:02:05 xd kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
> >>> Jul 20 20:02:05 xd kernel: Kprobes globally optimized
> >>> Jul 20 20:02:05 xd kernel: HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
> >>> Jul 20 20:02:05 xd kernel: HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
> >>> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Module Device)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Processor Device)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Processor Aggregator Device)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Linux-Dell-Video)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
> >>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS01._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS01._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS02._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS02._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS03._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS03._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS04._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS04._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS05._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS05._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS06._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS06._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS07._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS07._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS08._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS08._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS09._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS09._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS10._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS10._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS01._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS01._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS02._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS02._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS03._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS03._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS04._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS04._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS05._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS05._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS06._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS06._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>> Jul 20 20:02:05 xd kernel: ACPI: 15 ACPI AML tables successfully acquired and loaded
> >>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
> >>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8882135E00 0001C6 (v02 PmRef Cpu0Psd 00003000 INTL 20160422)
> >>> Jul 20 20:02:05 xd kernel: ACPI: \_SB_.PR00: _OSC native thermal LVT Acked
> >>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
> >>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A888213CC00 000386 (v02 PmRef Cpu0Cst 00003001 INTL 20160422)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
> >>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8500BAB000 0005C3 (v02 PmRef Cpu0Ist 00003000 INTL 20160422)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
> >>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A888213FC00 00028B (v02 PmRef Cpu0Hwp 00003000 INTL 20160422)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
> >>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8500F3D000 0008E7 (v02 PmRef ApIst 00003000 INTL 20160422)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
> >>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8500BAC000 00048A (v02 PmRef ApHwp 00003000 INTL 20160422)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
> >>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8500BAF800 0004D4 (v02 PmRef ApPsd 00003000 INTL 20160422)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
> >>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8500BAE000 00048A (v02 PmRef ApCst 00003000 INTL 20160422)
> >>> Jul 20 20:02:05 xd kernel: ACPI: EC: EC started
> >>> Jul 20 20:02:05 xd kernel: ACPI: EC: interrupt blocked
> >>> Jul 20 20:02:05 xd kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
> >>> Jul 20 20:02:05 xd kernel: ACPI: \_SB_.PC00.LPCB.EC0_: Boot DSDT EC used to handle transactions
> >>> Jul 20 20:02:05 xd kernel: ACPI: Interpreter enabled
> >>> Jul 20 20:02:05 xd kernel: ACPI: (supports S0 S3 S4 S5)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Using IOAPIC for interrupt routing
> >>> Jul 20 20:02:05 xd kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
> >>> Jul 20 20:02:05 xd kernel: ACPI: Enabled 7 GPEs in block 00 to 7F
> >>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [PCRP] (on)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V0PR] (on)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V1PR] (on)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V2PR] (on)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [WRST] (on)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V0PR] (on)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V1PR] (on)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V2PR] (on)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V3PR] (on)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [FN00] (off)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [FN01] (off)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [FN02] (off)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [FN03] (off)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [FN04] (off)
> >>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [PIN] (off)
> >>> Jul 20 20:02:05 xd kernel: ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-e0])
> >>> Jul 20 20:02:05 xd kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
> >>> Jul 20 20:02:05 xd kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR]
> >>> Jul 20 20:02:05 xd kernel: PCI host bridge to bus 0000:00
> >>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
> >>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
> >>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
> >>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [mem 0x4f800000-0xbfffffff window]
> >>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
> >>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [bus 00-e0]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:00.0: [8086:9a14] type 00 class 0x060000
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: [8086:9a49] type 00 class 0x030000
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: reg 0x10: [mem 0x6014000000-0x6014ffffff 64bit]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: reg 0x18: [mem 0x4000000000-0x400fffffff 64bit pref]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: reg 0x20: [io 0x5000-0x503f]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: BAR 2: assigned to efifb
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: DMAR: Skip IOMMU disabling for graphics
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: reg 0x344: [mem 0x00000000-0x00ffffff 64bit]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: VF(n) BAR0 space: [mem 0x00000000-0x06ffffff 64bit] (contains BAR0 for 7 VFs)
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: reg 0x34c: [mem 0x00000000-0x1fffffff 64bit pref]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: VF(n) BAR2 space: [mem 0x00000000-0xdfffffff 64bit pref] (contains BAR2 for 7 VFs)
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: [8086:9a09] type 01 class 0x060400
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: PTM enabled (root), 4ns granularity
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:08.0: [8086:9a11] type 00 class 0x088000
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:08.0: reg 0x10: [mem 0x601540f000-0x601540ffff 64bit]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:0e.0: [8086:9a0b] type 00 class 0x010400
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:0e.0: reg 0x10: [mem 0x6012000000-0x6013ffffff 64bit]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:0e.0: reg 0x18: [mem 0x50000000-0x51ffffff]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:0e.0: reg 0x20: [mem 0x6015300000-0x60153fffff 64bit]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.0: [8086:a0ed] type 00 class 0x0c0330
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.0: reg 0x10: [mem 0x53180000-0x5318ffff 64bit]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.2: [8086:a0ef] type 00 class 0x050000
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.2: reg 0x10: [mem 0x6015404000-0x6015407fff 64bit]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.2: reg 0x18: [mem 0x601540e000-0x601540efff 64bit]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.0: [8086:a0e8] type 00 class 0x0c8000
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.3: [8086:a0eb] type 00 class 0x0c8000
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.3: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:16.0: [8086:a0e0] type 00 class 0x078000
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:16.0: reg 0x10: [mem 0x601540b000-0x601540bfff 64bit]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:16.0: PME# supported from D3hot
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:17.0: [8086:09ab] type 00 class 0x088000
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.0: [8086:a0c5] type 00 class 0x0c8000
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.1: [8086:a0c6] type 00 class 0x0c8000
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.1: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: [8086:a0b0] type 01 class 0x060400
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: PTM enabled (root), 4ns granularity
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: [8086:a0b1] type 01 class 0x060400
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: PME# supported from D0 D3hot D3cold
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: PTM enabled (root), 4ns granularity
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.0: [8086:a082] type 00 class 0x060100
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.3: [8086:a0c8] type 00 class 0x040100
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.3: reg 0x10: [mem 0x6015400000-0x6015403fff 64bit]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.3: reg 0x20: [mem 0x6015200000-0x60152fffff 64bit]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.3: PME# supported from D3hot D3cold
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.4: [8086:a0a3] type 00 class 0x0c0500
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.4: reg 0x10: [mem 0x6015408000-0x60154080ff 64bit]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.4: reg 0x20: [io 0xefa0-0xefbf]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.5: [8086:a0a4] type 00 class 0x0c8000
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.5: reg 0x10: [mem 0xfe010000-0xfe010fff]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: [10de:1f97] type 00 class 0x030200
> >>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: reg 0x10: [mem 0x52000000-0x52ffffff]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: reg 0x14: [mem 0x6000000000-0x600fffffff 64bit pref]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: reg 0x1c: [mem 0x6010000000-0x6011ffffff 64bit pref]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: reg 0x24: [io 0x4000-0x407f]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
> >>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: 63.012 Gb/s available PCIe bandwidth, limited by 16.0 GT/s PCIe x4 link at 0000:00:06.0 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: PCI bridge to [bus 01]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [io 0x4000-0x4fff]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [mem 0x52000000-0x52ffffff]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [mem 0x6000000000-0x6011ffffff 64bit pref]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000
> >>> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: reg 0x10: [io 0x3000-0x30ff]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: reg 0x18: [mem 0x53004000-0x53004fff 64bit]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: reg 0x20: [mem 0x53000000-0x53003fff 64bit]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: supports D1 D2
> >>> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: PCI bridge to [bus 02]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: bridge window [io 0x3000-0x3fff]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: bridge window [mem 0x53000000-0x530fffff]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: [14c3:7961] type 00 class 0x028000
> >>> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: reg 0x10: [mem 0x6015000000-0x60150fffff 64bit pref]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: reg 0x18: [mem 0x6015100000-0x6015103fff 64bit pref]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: reg 0x20: [mem 0x6015104000-0x6015104fff 64bit pref]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: supports D1 D2
> >>> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: PCI bridge to [bus 03]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: bridge window [mem 0x6015000000-0x60151fffff 64bit pref]
> >>> Jul 20 20:02:05 xd kernel: ACPI: EC: interrupt unblocked
> >>> Jul 20 20:02:05 xd kernel: ACPI: EC: event unblocked
> >>> Jul 20 20:02:05 xd kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
> >>> Jul 20 20:02:05 xd kernel: ACPI: EC: GPE=0x6e
> >>> Jul 20 20:02:05 xd kernel: ACPI: \_SB_.PC00.LPCB.EC0_: Boot DSDT EC initialization complete
> >>> Jul 20 20:02:05 xd kernel: ACPI: \_SB_.PC00.LPCB.EC0_: EC: Used to handle transactions and events
> >>> Jul 20 20:02:05 xd kernel: iommu: Default domain type: Translated
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: vgaarb: setting as boot VGA device
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: vgaarb: bridge control possible
> >>> Jul 20 20:02:05 xd kernel: vgaarb: loaded
> >>> Jul 20 20:02:05 xd kernel: EDAC MC: Ver: 3.0.0
> >>> Jul 20 20:02:05 xd kernel: Registered efivars operations
> >>> Jul 20 20:02:05 xd kernel: NetLabel: Initializing
> >>> Jul 20 20:02:05 xd kernel: NetLabel: domain hash size = 128
> >>> Jul 20 20:02:05 xd kernel: NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
> >>> Jul 20 20:02:05 xd kernel: NetLabel: unlabeled traffic allowed by default
> >>> Jul 20 20:02:05 xd kernel: PCI: Using ACPI for IRQ routing
> >>> Jul 20 20:02:05 xd kernel: PCI: pci_cache_line_size set to 64 bytes
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.5: can't claim BAR 0 [mem 0xfe010000-0xfe010fff]: no compatible bridge window
> >>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
> >>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x3bee5000-0x3bffffff]
> >>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x3bf68000-0x3bffffff]
> >>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x3bf6a000-0x3bffffff]
> >>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x3fd99000-0x3fffffff]
> >>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x424af000-0x43ffffff]
> >>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x44c00000-0x47ffffff]
> >>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x4b0800000-0x4b3ffffff]
> >>> Jul 20 20:02:05 xd kernel: clocksource: Switched to clocksource tsc-early
> >>> Jul 20 20:02:05 xd kernel: VFS: Disk quotas dquot_6.6.0
> >>> Jul 20 20:02:05 xd kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
> >>> Jul 20 20:02:05 xd kernel: AppArmor: AppArmor Filesystem Enabled
> >>> Jul 20 20:02:05 xd kernel: pnp: PnP ACPI init
> >>> Jul 20 20:02:05 xd kernel: system 00:00: [io 0x0680-0x069f] has been reserved
> >>> Jul 20 20:02:05 xd kernel: system 00:00: [io 0x164e-0x164f] has been reserved
> >>> Jul 20 20:02:05 xd kernel: system 00:00: [io 0xfd60-0xfd63] has been reserved
> >>> Jul 20 20:02:05 xd kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
> >>> Jul 20 20:02:05 xd kernel: pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
> >>> Jul 20 20:02:05 xd kernel: system 00:02: [io 0x1854-0x1857] has been reserved
> >>> Jul 20 20:02:05 xd kernel: system 00:02: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
> >>> Jul 20 20:02:05 xd kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0303 (active)
> >>> Jul 20 20:02:05 xd kernel: pnp 00:04: disabling [mem 0xc0000000-0xcfffffff] because it overlaps 0000:00:02.0 BAR 9 [mem 0x00000000-0xdfffffff 64bit pref]
> >>> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfedc0000-0xfedc7fff] has been reserved
> >>> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfeda0000-0xfeda0fff] has been reserved
> >>> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfeda1000-0xfeda1fff] has been reserved
> >>> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfed20000-0xfed7ffff] could not be reserved
> >>> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfed90000-0xfed93fff] could not be reserved
> >>> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfed45000-0xfed8ffff] could not be reserved
> >>> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfee00000-0xfeefffff] has been reserved
> >>> Jul 20 20:02:05 xd kernel: system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
> >>> Jul 20 20:02:05 xd kernel: system 00:05: [io 0x1800-0x18fe] could not be reserved
> >>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfe000000-0xfe01ffff] could not be reserved
> >>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfe04c000-0xfe04ffff] has been reserved
> >>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfe050000-0xfe0affff] has been reserved
> >>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfe0d0000-0xfe0fffff] has been reserved
> >>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfe200000-0xfe7fffff] has been reserved
> >>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xff000000-0xffffffff] could not be reserved
> >>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfd000000-0xfd68ffff] has been reserved
> >>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfd6b0000-0xfd6cffff] has been reserved
> >>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfd6f0000-0xfdffffff] has been reserved
> >>> Jul 20 20:02:05 xd kernel: system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
> >>> Jul 20 20:02:05 xd kernel: system 00:06: [io 0x2000-0x20fe] has been reserved
> >>> Jul 20 20:02:05 xd kernel: system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
> >>> Jul 20 20:02:05 xd kernel: system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
> >>> Jul 20 20:02:05 xd kernel: pnp: PnP ACPI: found 8 devices
> >>> Jul 20 20:02:05 xd kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
> >>> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 2
> >>> Jul 20 20:02:05 xd kernel: IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
> >>> Jul 20 20:02:05 xd kernel: tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
> >>> Jul 20 20:02:05 xd kernel: TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
> >>> Jul 20 20:02:05 xd kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
> >>> Jul 20 20:02:05 xd kernel: TCP: Hash tables configured (established 131072 bind 65536)
> >>> Jul 20 20:02:05 xd kernel: UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
> >>> Jul 20 20:02:05 xd kernel: UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
> >>> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 1
> >>> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 44
> >>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
> >>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: max bus depth: 1 pci_try_num: 2
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: BAR 9: assigned [mem 0x4020000000-0x40ffffffff 64bit pref]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: BAR 7: assigned [mem 0x4010000000-0x4016ffffff 64bit]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.0: BAR 0: assigned [mem 0x4017000000-0x4017000fff 64bit]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.3: BAR 0: assigned [mem 0x4017001000-0x4017001fff 64bit]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.0: BAR 0: assigned [mem 0x4017002000-0x4017002fff 64bit]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.1: BAR 0: assigned [mem 0x4017003000-0x4017003fff 64bit]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.5: BAR 0: assigned [mem 0x4f800000-0x4f800fff]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: BAR 6: no space for [mem size 0x00080000 pref]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: BAR 6: failed to assign [mem size 0x00080000 pref]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: PCI bridge to [bus 01]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [io 0x4000-0x4fff]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [mem 0x52000000-0x52ffffff]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [mem 0x6000000000-0x6011ffffff 64bit pref]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: PCI bridge to [bus 02]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: bridge window [io 0x3000-0x3fff]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: bridge window [mem 0x53000000-0x530fffff]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: PCI bridge to [bus 03]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: bridge window [mem 0x6015000000-0x60151fffff 64bit pref]
> >>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
> >>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
> >>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
> >>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: resource 7 [mem 0x4f800000-0xbfffffff window]
> >>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: resource 8 [mem 0x4000000000-0x7fffffffff window]
> >>> Jul 20 20:02:05 xd kernel: pci_bus 0000:01: resource 0 [io 0x4000-0x4fff]
> >>> Jul 20 20:02:05 xd kernel: pci_bus 0000:01: resource 1 [mem 0x52000000-0x52ffffff]
> >>> Jul 20 20:02:05 xd kernel: pci_bus 0000:01: resource 2 [mem 0x6000000000-0x6011ffffff 64bit pref]
> >>> Jul 20 20:02:05 xd kernel: pci_bus 0000:02: resource 0 [io 0x3000-0x3fff]
> >>> Jul 20 20:02:05 xd kernel: pci_bus 0000:02: resource 1 [mem 0x53000000-0x530fffff]
> >>> Jul 20 20:02:05 xd kernel: pci_bus 0000:03: resource 2 [mem 0x6015000000-0x60151fffff 64bit pref]
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
> >>> Jul 20 20:02:05 xd kernel: PCI: CLS 64 bytes, default 64
> >>> Jul 20 20:02:05 xd kernel: Trying to unpack rootfs image as initramfs...
> >>> Jul 20 20:02:05 xd kernel: Freeing initrd memory: 47452K
> >>> Jul 20 20:02:05 xd kernel: DMAR: No ATSR found
> >>> Jul 20 20:02:05 xd kernel: DMAR: dmar0: Using Queued invalidation
> >>> Jul 20 20:02:05 xd kernel: DMAR: dmar1: Using Queued invalidation
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:00.0: Adding to iommu group 0
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: Adding to iommu group 1
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: Adding to iommu group 2
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:08.0: Adding to iommu group 3
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:0e.0: Adding to iommu group 4
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.0: Adding to iommu group 5
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.2: Adding to iommu group 5
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.0: Adding to iommu group 6
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.3: Adding to iommu group 6
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:16.0: Adding to iommu group 7
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:17.0: Adding to iommu group 8
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.0: Adding to iommu group 9
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.1: Adding to iommu group 9
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: Adding to iommu group 10
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: Adding to iommu group 11
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.0: Adding to iommu group 12
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.3: Adding to iommu group 12
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.4: Adding to iommu group 12
> >>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.5: Adding to iommu group 12
> >>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: Adding to iommu group 13
> >>> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: Adding to iommu group 14
> >>> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: Adding to iommu group 15
> >>> Jul 20 20:02:05 xd kernel: DMAR: Intel(R) Virtualization Technology for Directed I/O
> >>> Jul 20 20:02:05 xd kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
> >>> Jul 20 20:02:05 xd kernel: software IO TLB: mapped [mem 0x0000000037663000-0x000000003b663000] (64MB)
> >>> Jul 20 20:02:05 xd kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x22df1149949, max_idle_ns: 440795312789 ns
> >>> Jul 20 20:02:05 xd kernel: clocksource: Switched to clocksource tsc
> >>> Jul 20 20:02:05 xd kernel: Initialise system trusted keyrings
> >>> Jul 20 20:02:05 xd kernel: Key type blacklist registered
> >>> Jul 20 20:02:05 xd kernel: workingset: timestamp_bits=36 max_order=22 bucket_order=0
> >>> Jul 20 20:02:05 xd kernel: zbud: loaded
> >>> Jul 20 20:02:05 xd kernel: integrity: Platform Keyring initialized
> >>> Jul 20 20:02:05 xd kernel: Key type asymmetric registered
> >>> Jul 20 20:02:05 xd kernel: Asymmetric key parser 'x509' registered
> >>> Jul 20 20:02:05 xd kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
> >>> Jul 20 20:02:05 xd kernel: io scheduler mq-deadline registered
> >>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:06.0: PME: Signaling with IRQ 122
> >>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:06.0: AER: enabled with IRQ 122
> >>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:06.0: DPC: enabled with IRQ 122
> >>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:06.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
> >>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.0: PME: Signaling with IRQ 123
> >>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.0: AER: enabled with IRQ 123
> >>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.0: DPC: enabled with IRQ 123
> >>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
> >>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.1: PME: Signaling with IRQ 124
> >>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.1: AER: enabled with IRQ 124
> >>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.1: DPC: enabled with IRQ 124
> >>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.1: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
> >>> Jul 20 20:02:05 xd kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
> >>> Jul 20 20:02:05 xd kernel: efifb: probing for efifb
> >>> Jul 20 20:02:05 xd kernel: efifb: framebuffer at 0x4000000000, using 8128k, total 8128k
> >>> Jul 20 20:02:05 xd kernel: efifb: mode is 1920x1080x32, linelength=7680, pages=1
> >>> Jul 20 20:02:05 xd kernel: efifb: scrolling: redraw
> >>> Jul 20 20:02:05 xd kernel: efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
> >>> Jul 20 20:02:05 xd kernel: Console: switching to colour frame buffer device 240x67
> >>> Jul 20 20:02:05 xd kernel: fb0: EFI VGA frame buffer device
> >>> Jul 20 20:02:05 xd kernel: intel_idle: MWAIT substates: 0x11121020
> >>> Jul 20 20:02:05 xd kernel: Monitor-Mwait will be used to enter C-1 state
> >>> Jul 20 20:02:05 xd kernel: Monitor-Mwait will be used to enter C-2 state
> >>> Jul 20 20:02:05 xd kernel: Monitor-Mwait will be used to enter C-3 state
> >>> Jul 20 20:02:05 xd kernel: ACPI: \_SB_.PR00: Found 3 idle states
> >>> Jul 20 20:02:05 xd kernel: intel_idle: v0.5.1 model 0x8C
> >>> Jul 20 20:02:05 xd kernel: intel_idle: Local APIC timer is reliable in all C-states
> >>> Jul 20 20:02:05 xd kernel: thermal LNXTHERM:00: registered as thermal_zone0
> >>> Jul 20 20:02:05 xd kernel: ACPI: Thermal Zone [TZ00] (28 C)
> >>> Jul 20 20:02:05 xd kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
> >>> Jul 20 20:02:05 xd kernel: hpet_acpi_add: no address or irqs in _CRS
> >>> Jul 20 20:02:05 xd kernel: Linux agpgart interface v0.103
> >>> Jul 20 20:02:05 xd kernel: AMD-Vi: AMD IOMMUv2 functionality not available on this system - This is not a bug.
> >>> Jul 20 20:02:05 xd kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
> >>> Jul 20 20:02:05 xd kernel: i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
> >>> Jul 20 20:02:05 xd kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
> >>> Jul 20 20:02:05 xd kernel: mousedev: PS/2 mouse device common for all mice
> >>> Jul 20 20:02:05 xd kernel: rtc_cmos 00:01: RTC can wake from S4
> >>> Jul 20 20:02:05 xd kernel: rtc_cmos 00:01: registered as rtc0
> >>> Jul 20 20:02:05 xd kernel: rtc_cmos 00:01: setting system clock to 2022-07-20T19:02:03 UTC (1658343723)
> >>> Jul 20 20:02:05 xd kernel: rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram
> >>> Jul 20 20:02:05 xd kernel: intel_pstate: Intel P-state driver initializing
> >>> Jul 20 20:02:05 xd kernel: intel_pstate: HWP enabled
> >>> Jul 20 20:02:05 xd kernel: ledtrig-cpu: registered to indicate activity on CPUs
> >>> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 10
> >>> Jul 20 20:02:05 xd kernel: Segment Routing with IPv6
> >>> Jul 20 20:02:05 xd kernel: mip6: Mobile IPv6
> >>> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 17
> >>> Jul 20 20:02:05 xd kernel: mpls_gso: MPLS GSO support
> >>> Jul 20 20:02:05 xd kernel: microcode: sig=0x806c1, pf=0x80, revision=0x8a
> >>> Jul 20 20:02:05 xd kernel: microcode: Microcode Update Driver: v2.2.
> >>> Jul 20 20:02:05 xd kernel: resctrl: L2 allocation detected
> >>> Jul 20 20:02:05 xd kernel: resctrl: L2DATA allocation detected
> >>> Jul 20 20:02:05 xd kernel: resctrl: L2CODE allocation detected
> >>> Jul 20 20:02:05 xd kernel: IPI shorthand broadcast: enabled
> >>> Jul 20 20:02:05 xd kernel: sched_clock: Marking stable (836570439, 6379917)->(856451458, -13501102)
> >>> Jul 20 20:02:05 xd kernel: registered taskstats version 1
> >>> Jul 20 20:02:05 xd kernel: Loading compiled-in X.509 certificates
> >>> Jul 20 20:02:05 xd kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
> >>> Jul 20 20:02:05 xd kernel: Loaded X.509 cert 'Debian Secure Boot CA: 6ccece7e4c6c0d1f6149f3dd27dfcc5cbb419ea1'
> >>> Jul 20 20:02:05 xd kernel: Loaded X.509 cert 'Debian Secure Boot Signer 2021 - linux: 4b6ef5abca669825178e052c84667ccbc0531f8c'
> >>> Jul 20 20:02:05 xd kernel: zswap: loaded using pool lzo/zbud
> >>> Jul 20 20:02:05 xd kernel: Key type ._fscrypt registered
> >>> Jul 20 20:02:05 xd kernel: Key type .fscrypt registered
> >>> Jul 20 20:02:05 xd kernel: Key type fscrypt-provisioning registered
> >>> Jul 20 20:02:05 xd kernel: AppArmor: AppArmor sha1 policy hashing enabled
> >>> Jul 20 20:02:05 xd kernel: Freeing unused kernel image (initmem) memory: 2424K
> >>> Jul 20 20:02:05 xd kernel: Write protecting the kernel read-only data: 22528k
> >>> Jul 20 20:02:05 xd kernel: Freeing unused kernel image (text/rodata gap) memory: 2040K
> >>> Jul 20 20:02:05 xd kernel: Freeing unused kernel image (rodata/data gap) memory: 624K
> >>> Jul 20 20:02:05 xd kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
> >>> Jul 20 20:02:05 xd kernel: Run /init as init process
> >>> Jul 20 20:02:05 xd kernel: with arguments:
> >>> Jul 20 20:02:05 xd kernel: /init
> >>> Jul 20 20:02:05 xd kernel: with environment:
> >>> Jul 20 20:02:05 xd kernel: HOME=/
> >>> Jul 20 20:02:05 xd kernel: TERM=linux
> >>> Jul 20 20:02:05 xd kernel: BOOT_IMAGE=/vmlinuz-5.10.0-16-amd64
> >>> Jul 20 20:02:05 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
> >>> Jul 20 20:02:05 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
> >>> Jul 20 20:02:05 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
> >>> Jul 20 20:02:05 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
> >>> Jul 20 20:02:05 xd kernel: acpi PNP0C14:03: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
> >>> Jul 20 20:02:05 xd kernel: acpi PNP0C14:04: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
> >>> Jul 20 20:02:05 xd kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:21/PNP0C0D:00/input/input1
> >>> Jul 20 20:02:05 xd kernel: ACPI: Lid Switch [LID0]
> >>> Jul 20 20:02:05 xd kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2
> >>> Jul 20 20:02:05 xd kernel: ACPI: Sleep Button [SLPB]
> >>> Jul 20 20:02:05 xd kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input3
> >>> Jul 20 20:02:05 xd kernel: battery: ACPI: Battery Slot [BAT1] (battery present)
> >>> Jul 20 20:02:05 xd kernel: hid: raw HID events driver (C) Jiri Kosina
> >>> Jul 20 20:02:05 xd kernel: vmd 0000:00:0e.0: PCI host bridge to bus 10000:e0
> >>> Jul 20 20:02:05 xd kernel: pci_bus 10000:e0: root bus resource [bus e0-ff]
> >>> Jul 20 20:02:05 xd kernel: pci_bus 10000:e0: root bus resource [mem 0x50000000-0x51ffffff]
> >>> Jul 20 20:02:05 xd kernel: pci_bus 10000:e0: root bus resource [mem 0x6015302000-0x60153fffff 64bit]
> >>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: [8086:a0d3] type 00 class 0x010601
> >>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x10: [mem 0x00000000-0x00001fff]
> >>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x14: [mem 0x00000000-0x000000ff]
> >>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x18: [io 0x0000-0x0007]
> >>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x1c: [io 0x0000-0x0003]
> >>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x20: [io 0x0000-0x001f]
> >>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x24: [mem 0x50000000-0x500007ff]
> >>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: PME# supported from D3hot
> >>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: Adding to iommu group 4
> >>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.0: [8086:09ab] type 00 class 0x088000
> >>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.0: Adding to iommu group 4
> >>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: [8086:a0bc] type 01 class 0x060400
> >>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: PME# supported from D0 D3hot D3cold
> >>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: PTM enabled (root), 4ns granularity
> >>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: Adding to iommu group 4
> >>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: Primary bus is hard wired to 0
> >>> Jul 20 20:02:05 xd kernel: pci 10000:e1:00.0: [2646:500c] type 00 class 0x010802
> >>> Jul 20 20:02:05 xd kernel: pci 10000:e1:00.0: reg 0x10: [mem 0x50100000-0x50103fff 64bit]
> >>> Jul 20 20:02:05 xd kernel: pci 10000:e1:00.0: Adding to iommu group 4
> >>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: PCI bridge to [bus e1]
> >>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: bridge window [io 0x0000-0x0fff]
> >>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: bridge window [mem 0x50100000-0x501fffff]
> >>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: Primary bus is hard wired to 0
> >>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: BAR 14: assigned [mem 0x50000000-0x500fffff]
> >>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 0: assigned [mem 0x50100000-0x50101fff]
> >>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: BAR 13: no space for [io size 0x1000]
> >>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: BAR 13: failed to assign [io size 0x1000]
> >>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 5: assigned [mem 0x50102000-0x501027ff]
> >>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 1: assigned [mem 0x50102800-0x501028ff]
> >>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 4: no space for [io size 0x0020]
> >>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 4: failed to assign [io size 0x0020]
> >>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 2: no space for [io size 0x0008]
> >>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 2: failed to assign [io size 0x0008]
> >>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 3: no space for [io size 0x0004]
> >>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 3: failed to assign [io size 0x0004]
> >>> Jul 20 20:02:05 xd kernel: pci 10000:e1:00.0: BAR 0: assigned [mem 0x50000000-0x50003fff 64bit]
> >>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: PCI bridge to [bus e1]
> >>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: bridge window [mem 0x50000000-0x500fffff]
> >>> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: can't derive routing for PCI INT A
> >>> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: PCI INT A: no GSI
> >>> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: PME: Signaling with IRQ 144
> >>> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: AER: enabled with IRQ 144
> >>> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: DPC: enabled with IRQ 144
> >>> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
> >>> Jul 20 20:02:05 xd kernel: vmd 0000:00:0e.0: Bound to PCI domain 10000
> >>> Jul 20 20:02:05 xd kernel: i801_smbus 0000:00:1f.4: SPD Write Disable is set
> >>> Jul 20 20:02:05 xd kernel: i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
> >>> Jul 20 20:02:05 xd kernel: i2c i2c-0: 2/2 memory slots populated (from DMI)
> >>> Jul 20 20:02:05 xd kernel: i2c i2c-0: Successfully instantiated SPD at 0x50
> >>> Jul 20 20:02:05 xd kernel: r8168: loading out-of-tree module taints kernel.
> >>> Jul 20 20:02:05 xd kernel: r8168: module verification failed: signature and/or required key missing - tainting kernel
> >>> Jul 20 20:02:05 xd kernel: r8168 Gigabit Ethernet driver 8.048.03-NAPI loaded
> >>> Jul 20 20:02:05 xd kernel: ACPI: bus type USB registered
> >>> Jul 20 20:02:05 xd kernel: usbcore: registered new interface driver usbfs
> >>> Jul 20 20:02:05 xd kernel: usbcore: registered new interface driver hub
> >>> Jul 20 20:02:05 xd kernel: usbcore: registered new device driver usb
> >>> Jul 20 20:02:05 xd kernel: ACPI: Power Button [PWRB]
> >>> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
> >>> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
> >>> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000000009810
> >>> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
> >>> Jul 20 20:02:05 xd kernel: r8168: This product is covered by one or more of the following patents: US6,570,884, US6,115,776, and US6,327,625.
> >>> Jul 20 20:02:05 xd kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
> >>> Jul 20 20:02:05 xd kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
> >>> Jul 20 20:02:05 xd kernel: usb usb1: Product: xHCI Host Controller
> >>> Jul 20 20:02:05 xd kernel: usb usb1: Manufacturer: Linux 5.10.0-16-amd64 xhci-hcd
> >>> Jul 20 20:02:05 xd kernel: usb usb1: SerialNumber: 0000:00:14.0
> >>> Jul 20 20:02:05 xd kernel: hub 1-0:1.0: USB hub found
> >>> Jul 20 20:02:05 xd kernel: hub 1-0:1.0: 12 ports detected
> >>> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
> >>> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
> >>> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
> >>> Jul 20 20:02:05 xd kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
> >>> Jul 20 20:02:05 xd kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
> >>> Jul 20 20:02:05 xd kernel: usb usb2: Product: xHCI Host Controller
> >>> Jul 20 20:02:05 xd kernel: usb usb2: Manufacturer: Linux 5.10.0-16-amd64 xhci-hcd
> >>> Jul 20 20:02:05 xd kernel: usb usb2: SerialNumber: 0000:00:14.0
> >>> Jul 20 20:02:05 xd kernel: hub 2-0:1.0: USB hub found
> >>> Jul 20 20:02:05 xd kernel: hub 2-0:1.0: 4 ports detected
> >>> Jul 20 20:02:05 xd kernel: r8168 Copyright (C) 2020 Realtek NIC software team <nicfae@realtek.com>
> >>> This program comes with ABSOLUTELY NO WARRANTY; for details, please see <http://www.gnu.org/licenses/>.
> >>> This is free software, and you are welcome to redistribute it under certain conditions; see <http://www.gnu.org/licenses/>.
> >>> Jul 20 20:02:05 xd kernel: SCSI subsystem initialized
> >>> Jul 20 20:02:05 xd kernel: intel-lpss 0000:00:15.0: enabling device (0004 -> 0006)
> >>> Jul 20 20:02:05 xd kernel: idma64 idma64.0: Found Intel integrated DMA 64-bit
> >>> Jul 20 20:02:05 xd kernel: r8168 0000:02:00.0 enp2s0: renamed from eth0
> >>> Jul 20 20:02:05 xd kernel: nvme nvme0: pci function 10000:e1:00.0
> >>> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: can't derive routing for PCI INT A
> >>> Jul 20 20:02:05 xd kernel: nvme 10000:e1:00.0: PCI INT A: no GSI
> >>> Jul 20 20:02:05 xd kernel: libata version 3.00 loaded.
> >>> Jul 20 20:02:05 xd kernel: nvme nvme0: missing or invalid SUBNQN field.
> >>> Jul 20 20:02:05 xd kernel: nvme nvme0: Shutdown timeout set to 10 seconds
> >>> Jul 20 20:02:05 xd kernel: nvme nvme0: 8/0/0 default/read/poll queues
> >>> Jul 20 20:02:05 xd kernel: nvme0n1: p1 p2 p3 p4 p5
> >>> Jul 20 20:02:05 xd kernel: intel-lpss 0000:00:15.3: enabling device (0004 -> 0006)
> >>> Jul 20 20:02:05 xd kernel: idma64 idma64.1: Found Intel integrated DMA 64-bit
> >>> Jul 20 20:02:05 xd kernel: i2c_hid i2c-ELAN0515:01: supply vdd not found, using dummy regulator
> >>> Jul 20 20:02:05 xd kernel: i2c_hid i2c-ELAN0515:01: supply vddl not found, using dummy regulator
> >>> Jul 20 20:02:05 xd kernel: intel-lpss 0000:00:19.0: enabling device (0004 -> 0006)
> >>> Jul 20 20:02:05 xd kernel: idma64 idma64.2: Found Intel integrated DMA 64-bit
> >>> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: [drm] VT-d active for gfx access
> >>> Jul 20 20:02:05 xd kernel: checking generic (4000000000 7f0000) vs hw (6014000000 1000000)
> >>> Jul 20 20:02:05 xd kernel: checking generic (4000000000 7f0000) vs hw (4000000000 10000000)
> >>> Jul 20 20:02:05 xd kernel: fb0: switching to inteldrmfb from EFI VGA
> >>> Jul 20 20:02:05 xd kernel: Console: switching to colour dummy device 80x25
> >>> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: vgaarb: deactivate vga console
> >>> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
> >>> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: firmware: direct-loading firmware i915/tgl_dmc_ver2_08.bin
> >>> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/tgl_dmc_ver2_08.bin (v2.8)
> >>> Jul 20 20:02:05 xd kernel: intel-lpss 0000:00:19.1: enabling device (0004 -> 0006)
> >>> Jul 20 20:02:05 xd kernel: idma64 idma64.3: Found Intel integrated DMA 64-bit
> >>> Jul 20 20:02:05 xd kernel: input: ELAN0515:01 04F3:3142 Mouse as /devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input4
> >>> Jul 20 20:02:05 xd kernel: input: ELAN0515:01 04F3:3142 Touchpad as /devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input6
> >>> Jul 20 20:02:05 xd kernel: hid-generic 0018:04F3:3142.0001: input,hidraw0: I2C HID v1.00 Mouse [ELAN0515:01 04F3:3142] on i2c-ELAN0515:01
> >>> Jul 20 20:02:05 xd kernel: ahci 10000:e0:17.0: version 3.0
> >>> Jul 20 20:02:05 xd kernel: ahci 10000:e0:17.0: can't derive routing for PCI INT A
> >>> Jul 20 20:02:05 xd kernel: ahci 10000:e0:17.0: PCI INT A: no GSI
> >>> Jul 20 20:02:05 xd kernel: ahci 10000:e0:17.0: AHCI 0001.0301 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
> >>> Jul 20 20:02:05 xd kernel: ahci 10000:e0:17.0: flags: 64bit ncq sntf pm clo only pio slum part deso sadm sds
> >>> Jul 20 20:02:05 xd kernel: scsi host0: ahci
> >>> Jul 20 20:02:05 xd kernel: scsi host1: ahci
> >>> Jul 20 20:02:05 xd kernel: ata1: SATA max UDMA/133 abar m2048@0x50102000 port 0x50102100 irq 158
> >>> Jul 20 20:02:05 xd kernel: ata2: SATA max UDMA/133 abar m2048@0x50102000 port 0x50102180 irq 158
> >>> Jul 20 20:02:05 xd kernel: usb 1-7: new full-speed USB device number 2 using xhci_hcd
> >>> Jul 20 20:02:05 xd kernel: usb 1-7: New USB device found, idVendor=04f3, idProduct=0c4f, bcdDevice= 1.61
> >>> Jul 20 20:02:05 xd kernel: usb 1-7: New USB device strings: Mfr=1, Product=2, SerialNumber=0
> >>> Jul 20 20:02:05 xd kernel: usb 1-7: Product: ELAN:Fingerprint
> >>> Jul 20 20:02:05 xd kernel: usb 1-7: Manufacturer: ELAN
> >>> Jul 20 20:02:05 xd kernel: ata1: SATA link down (SStatus 0 SControl 300)
> >>> Jul 20 20:02:05 xd kernel: ata2: SATA link down (SStatus 0 SControl 300)
> >>> Jul 20 20:02:05 xd kernel: usb 1-8: new high-speed USB device number 3 using xhci_hcd
> >>> Jul 20 20:02:05 xd kernel: usb 1-8: New USB device found, idVendor=0408, idProduct=a061, bcdDevice= 0.04
> >>> Jul 20 20:02:05 xd kernel: usb 1-8: New USB device strings: Mfr=1, Product=2, SerialNumber=0
> >>> Jul 20 20:02:05 xd kernel: usb 1-8: Product: HD User Facing
> >>> Jul 20 20:02:05 xd kernel: usb 1-8: Manufacturer: SunplusIT Inc
> >>> Jul 20 20:02:05 xd kernel: usb 1-10: new high-speed USB device number 4 using xhci_hcd
> >>> Jul 20 20:02:05 xd kernel: usb 1-10: New USB device found, idVendor=04ca, idProduct=3802, bcdDevice= 1.00
> >>> Jul 20 20:02:05 xd kernel: usb 1-10: New USB device strings: Mfr=5, Product=6, SerialNumber=7
> >>> Jul 20 20:02:05 xd kernel: usb 1-10: Product: Wireless_Device
> >>> Jul 20 20:02:05 xd kernel: usb 1-10: Manufacturer: MediaTek Inc.
> >>> Jul 20 20:02:05 xd kernel: usb 1-10: SerialNumber: 000000000
> >>> Jul 20 20:02:05 xd kernel: [drm] Initialized i915 1.6.0 20200917 for 0000:00:02.0 on minor 0
> >>> Jul 20 20:02:05 xd kernel: [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
> >>> Jul 20 20:02:05 xd kernel: ACPI: Video Device [PEGP] (multi-head: yes rom: no post: no)
> >>> Jul 20 20:02:05 xd kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/LNXVIDEO:00/input/input7
> >>> Jul 20 20:02:05 xd kernel: ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
> >>> Jul 20 20:02:05 xd kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input8
> >>> Jul 20 20:02:05 xd kernel: fbcon: i915drmfb (fb0) is primary device
> >>> Jul 20 20:02:05 xd kernel: Console: switching to colour frame buffer device 240x67
> >>> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
> >>> Jul 20 20:02:05 xd kernel: PM: Image not found (code -22)
> >>> Jul 20 20:02:05 xd kernel: EXT4-fs (nvme0n1p3): mounting ext3 file system using the ext4 subsystem
> >>> Jul 20 20:02:05 xd kernel: EXT4-fs (nvme0n1p3): mounted filesystem with ordered data mode. Opts: (null)
> >>> Jul 20 20:02:05 xd kernel: Not activating Mandatory Access Control as /sbin/tomoyo-init does not exist.
> >>> Jul 20 20:02:05 xd systemd[1]: Inserted module 'autofs4'
> >>> Jul 20 20:02:05 xd systemd[1]: systemd 247.3-7 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=unified)
> >>> Jul 20 20:02:05 xd systemd[1]: Detected architecture x86-64.
> >>> Jul 20 20:02:05 xd systemd[1]: Set hostname to <xd>.
> >>> Jul 20 20:02:05 xd systemd[1]: /lib/systemd/system/plymouth-start.service:16: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed.
> >>> Jul 20 20:02:05 xd systemd[1]: Queued start job for default target Graphical Interface.
> >>> Jul 20 20:02:05 xd systemd[1]: Created slice system-getty.slice.
> >>> Jul 20 20:02:05 xd systemd[1]: Created slice system-modprobe.slice.
> >>> Jul 20 20:02:05 xd systemd[1]: Created slice system-systemd\x2dfsck.slice.
> >>> Jul 20 20:02:05 xd systemd[1]: Created slice User and Session Slice.
> >>> Jul 20 20:02:05 xd systemd[1]: Started Forward Password Requests to Wall Directory Watch.
> >>> Jul 20 20:02:05 xd systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
> >>> Jul 20 20:02:05 xd systemd[1]: Reached target User and Group Name Lookups.
> >>> Jul 20 20:02:05 xd systemd[1]: Reached target Remote File Systems.
> >>> Jul 20 20:02:05 xd systemd[1]: Reached target Slices.
> >>> Jul 20 20:02:05 xd systemd[1]: Listening on Device-mapper event daemon FIFOs.
> >>> Jul 20 20:02:05 xd systemd[1]: Listening on LVM2 poll daemon socket.
> >>> Jul 20 20:02:05 xd systemd[1]: Listening on Syslog Socket.
> >>> Jul 20 20:02:05 xd systemd[1]: Listening on fsck to fsckd communication Socket.
> >>> Jul 20 20:02:05 xd systemd[1]: Listening on initctl Compatibility Named Pipe.
> >>> Jul 20 20:02:05 xd systemd[1]: Listening on Journal Audit Socket.
> >>> Jul 20 20:02:05 xd systemd[1]: Listening on Journal Socket (/dev/log).
> >>> Jul 20 20:02:05 xd systemd[1]: Listening on Journal Socket.
> >>> Jul 20 20:02:05 xd systemd[1]: Listening on udev Control Socket.
> >>> Jul 20 20:02:05 xd systemd[1]: Listening on udev Kernel Socket.
> >>> Jul 20 20:02:05 xd systemd[1]: Mounting Huge Pages File System...
> >>> Jul 20 20:02:05 xd systemd[1]: Mounting POSIX Message Queue File System...
> >>> Jul 20 20:02:05 xd systemd[1]: Mounting Kernel Debug File System...
> >>> Jul 20 20:02:05 xd systemd[1]: Mounting Kernel Trace File System...
> >>> Jul 20 20:02:05 xd systemd[1]: Finished Availability of block devices.
> >>> Jul 20 20:02:05 xd systemd[1]: Starting Set the console keyboard layout...
> >>> Jul 20 20:02:05 xd systemd[1]: Starting Create list of static device nodes for the current kernel...
> >>> Jul 20 20:02:05 xd systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
> >>> Jul 20 20:02:05 xd systemd[1]: Starting Load Kernel Module configfs...
> >>> Jul 20 20:02:05 xd systemd[1]: Starting Load Kernel Module drm...
> >>> Jul 20 20:02:05 xd systemd[1]: Starting Load Kernel Module fuse...
> >>> Jul 20 20:02:05 xd systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
> >>> Jul 20 20:02:05 xd systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
> >>> Jul 20 20:02:05 xd systemd[1]: Starting Journal Service...
> >>> Jul 20 20:02:05 xd systemd[1]: Starting Load Kernel Modules...
> >>> Jul 20 20:02:05 xd systemd[1]: Starting Remount Root and Kernel File Systems...
> >>> Jul 20 20:02:05 xd systemd[1]: Starting Coldplug All udev Devices...
> >>> Jul 20 20:02:05 xd systemd[1]: Mounted Huge Pages File System.
> >>> Jul 20 20:02:05 xd systemd[1]: Mounted POSIX Message Queue File System.
> >>> Jul 20 20:02:05 xd systemd[1]: Mounted Kernel Debug File System.
> >>> Jul 20 20:02:05 xd systemd[1]: Mounted Kernel Trace File System.
> >>> Jul 20 20:02:05 xd systemd[1]: Finished Create list of static device nodes for the current kernel.
> >>> Jul 20 20:02:05 xd systemd[1]: modprobe@configfs.service: Succeeded.
> >>> Jul 20 20:02:05 xd systemd[1]: Finished Load Kernel Module configfs.
> >>> Jul 20 20:02:05 xd systemd[1]: modprobe@drm.service: Succeeded.
> >>> Jul 20 20:02:05 xd systemd[1]: Finished Load Kernel Module drm.
> >>> Jul 20 20:02:05 xd systemd[1]: Mounting Kernel Configuration File System...
> >>> Jul 20 20:02:05 xd systemd[1]: Mounted Kernel Configuration File System.
> >>> Jul 20 20:02:05 xd kernel: EXT4-fs (nvme0n1p3): re-mounted. Opts: errors=remount-ro
> >>> Jul 20 20:02:05 xd systemd[1]: Finished Remount Root and Kernel File Systems.
> >>> Jul 20 20:02:05 xd kernel: fuse: init (API version 7.32)
> >>> Jul 20 20:02:05 xd systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
> >>> Jul 20 20:02:05 xd systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped.
> >>> Jul 20 20:02:05 xd systemd[1]: Starting Load/Save Random Seed...
> >>> Jul 20 20:02:05 xd systemd[1]: Starting Create System Users...
> >>> Jul 20 20:02:05 xd systemd[1]: modprobe@fuse.service: Succeeded.
> >>> Jul 20 20:02:05 xd systemd[1]: Finished Load Kernel Module fuse.
> >>> Jul 20 20:02:05 xd systemd[1]: Mounting FUSE Control File System...
> >>> Jul 20 20:02:05 xd systemd[1]: Mounted FUSE Control File System.
> >>> Jul 20 20:02:05 xd kernel: lp: driver loaded but no devices found
> >>> Jul 20 20:02:05 xd kernel: ppdev: user-space parallel port driver
> >>> Jul 20 20:02:05 xd systemd[1]: Finished Load/Save Random Seed.
> >>> Jul 20 20:02:05 xd systemd[1]: Condition check resulted in First Boot Complete being skipped.
> >>> Jul 20 20:02:05 xd systemd[1]: Finished Create System Users.
> >>> Jul 20 20:02:05 xd systemd[1]: Starting Create Static Device Nodes in /dev...
> >>> Jul 20 20:02:05 xd systemd[1]: Finished Create Static Device Nodes in /dev.
> >>> Jul 20 20:02:05 xd systemd[1]: Starting Rule-based Manager for Device Events and Files...
> >>> Jul 20 20:02:05 xd systemd[1]: Finished Set the console keyboard layout.
> >>> Jul 20 20:02:05 xd systemd[1]: Started Journal Service.
> >>> Jul 20 20:02:05 xd kernel: nvidia: module license 'NVIDIA' taints kernel.
> >>> Jul 20 20:02:05 xd kernel: Disabling lock debugging due to kernel taint
> >>> Jul 20 20:02:05 xd kernel: nvidia-nvlink: Nvlink Core is being initialized, major device number 245
> >>> Jul 20 20:02:05 xd kernel:
> >>> Jul 20 20:02:05 xd kernel: nvidia 0000:01:00.0: enabling device (0006 -> 0007)
> >>> Jul 20 20:02:05 xd kernel: NVRM: loading NVIDIA UNIX x86_64 Kernel Module 470.129.06 Thu May 12 22:52:02 UTC 2022
> >>> Jul 20 20:02:05 xd kernel: input: Acer Wireless Radio Control as /devices/LNXSYSTM:00/10251229:00/input/input9
> >>> Jul 20 20:02:05 xd kernel: input: Intel HID events as /devices/platform/INTC1051:00/input/input10
> >>> Jul 20 20:02:05 xd kernel: intel-hid INTC1051:00: platform supports 5 button array
> >>> Jul 20 20:02:05 xd kernel: input: Intel HID 5 button array as /devices/platform/INTC1051:00/input/input11
> >>> Jul 20 20:02:05 xd kernel: intel_pmc_core INT33A1:00: initialized
> >>> Jul 20 20:02:05 xd kernel: ACPI: AC Adapter [ACAD] (on-line)
> >>> Jul 20 20:02:05 xd kernel: nvidia-modeset: Loading NVIDIA Kernel Mode Setting Driver for UNIX platforms 470.129.06 Thu May 12 22:42:45 UTC 2022
> >>> Jul 20 20:02:05 xd kernel: mc: Linux media interface: v0.10
> >>> Jul 20 20:02:05 xd kernel: mei_me 0000:00:16.0: enabling device (0000 -> 0002)
> >>> Jul 20 20:02:05 xd kernel: ee1004 0-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
> >>> Jul 20 20:02:05 xd kernel: [drm] [nvidia-drm] [GPU ID 0x00000100] Loading driver
> >>> Jul 20 20:02:05 xd kernel: [drm] Initialized nvidia-drm 0.0.0 20160202 for 0000:01:00.0 on minor 1
> >>> Jul 20 20:02:05 xd kernel: videodev: Linux video capture interface: v2.00
> >>> Jul 20 20:02:05 xd kernel: iTCO_vendor_support: vendor-support=0
> >>> Jul 20 20:02:05 xd kernel: iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
> >>> Jul 20 20:02:05 xd kernel: iTCO_wdt: Found a Intel PCH TCO device (Version=6, TCOBASE=0x0400)
> >>> Jul 20 20:02:05 xd kernel: iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
> >>> Jul 20 20:02:05 xd kernel: EXT4-fs (nvme0n1p2): mounting ext2 file system using the ext4 subsystem
> >>> Jul 20 20:02:05 xd kernel: EXT4-fs (nvme0n1p2): mounted filesystem without journal. Opts: (null)
> >>> Jul 20 20:02:05 xd kernel: ext2 filesystem being mounted at /boot supports timestamps until 2038 (0x7fffffff)
> >>> Jul 20 20:02:05 xd kernel: uvcvideo: Found UVC 1.00 device HD User Facing (0408:a061)
> >>> Jul 20 20:02:05 xd kernel: Adding 31182844k swap on /dev/nvme0n1p4. Priority:-2 extents:1 across:31182844k SSFS
> >>> Jul 20 20:02:05 xd kernel: input: HD User Facing: HD User Facing as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/input/input12
> >>> Jul 20 20:02:05 xd kernel: input: PC Speaker as /devices/platform/pcspkr/input/input13
> >>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=401 comm="apparmor_parser"
> >>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-oopslash" pid=402 comm="apparmor_parser"
> >>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=405 comm="apparmor_parser"
> >>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=405 comm="apparmor_parser"
> >>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=403 comm="apparmor_parser"
> >>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=403 comm="apparmor_parser"
> >>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=403 comm="apparmor_parser"
> >>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cups-browsed" pid=407 comm="apparmor_parser"
> >>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.840:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-senddoc" pid=409 comm="apparmor_parser"
> >>> Jul 20 20:02:05 xd kernel: usbcore: registered new interface driver uvcvideo
> >>> Jul 20 20:02:05 xd kernel: USB Video Class driver (1.1.1)
> >>> Jul 20 20:02:05 xd kernel: pstore: Using crash dump compression: deflate
> >>> Jul 20 20:02:05 xd kernel: input: ELAN0515:01 04F3:3142 Mouse as /devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input14
> >>> Jul 20 20:02:05 xd kernel: input: ELAN0515:01 04F3:3142 Touchpad as /devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input16
> >>> Jul 20 20:02:05 xd kernel: hid-multitouch 0018:04F3:3142.0001: input,hidraw0: I2C HID v1.00 Mouse [ELAN0515:01 04F3:3142] on i2c-ELAN0515:01
> >>> Jul 20 20:02:05 xd kernel: pstore: Registered efi as persistent store backend
> >>> Jul 20 20:02:05 xd kernel: acer_wmi: Acer Laptop ACPI-WMI Extras
> >>> Jul 20 20:02:05 xd kernel: acer_wmi: Function bitmap for Communication Button: 0x801
> >>> Jul 20 20:02:05 xd kernel: input: Acer WMI hotkeys as /devices/virtual/input/input17
> >>> Jul 20 20:02:05 xd kernel: snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040100
> >>> Jul 20 20:02:05 xd kernel: snd_hda_intel 0000:00:1f.3: Digital mics found on Skylake+ platform, using SOF driver
> >>> Jul 20 20:02:05 xd kernel: cryptd: max_cpu_qlen set to 1000
> >>> Jul 20 20:02:06 xd kernel: AVX2 version of gcm_enc/dec engaged.
> >>> Jul 20 20:02:06 xd kernel: AES CTR mode by8 optimization enabled
> >>> Jul 20 20:02:06 xd kernel: resource sanity check: requesting [mem 0xfedc0000-0xfedcdfff], which spans more than pnp 00:04 [mem 0xfedc0000-0xfedc7fff]
> >>> Jul 20 20:02:06 xd kernel: caller tgl_uncore_imc_freerunning_init_box+0xbb/0x100 [intel_uncore] mapping multiple BARs
> >>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040100
> >>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: Digital mics found on Skylake+ platform, using SOF driver
> >>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: enabling device (0000 -> 0002)
> >>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if 0x040100
> >>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
> >>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: use msi interrupt mode
> >>> Jul 20 20:02:06 xd kernel: ACPI Warning: \_SB.PC00.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20200925/nsarguments-61)
> >>> Jul 20 20:02:06 xd kernel: enp2s0: 0xffffbd82000e9000, 08:8f:c3:4f:86:c5, IRQ 145
> >>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: hda codecs found, mask 5
> >>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: using HDA machine driver skl_hda_dsp_generic now
> >>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: DMICs detected in NHLT tables: 2
> >>> Jul 20 20:02:06 xd kernel: alg: No test for fips(ansi_cprng) (fips_ansi_cprng)
> >>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: firmware: failed to load intel/sof/sof-tgl.ri (-2)
> >>> Jul 20 20:02:06 xd kernel: firmware_class: See https://wiki.debian.org/Firmware for information about missing firmware
> >>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: Direct firmware load for intel/sof/sof-tgl.ri failed with error -2
> >>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: error: request firmware intel/sof/sof-tgl.ri failed err: -2
> >>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: error: failed to load DSP firmware -2
> >>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: error: sof_probe_work failed err: -2
> >>> Jul 20 20:02:06 xd kernel: Bluetooth: Core ver 2.22
> >>> Jul 20 20:02:06 xd kernel: NET: Registered protocol family 31
> >>> Jul 20 20:02:06 xd kernel: Bluetooth: HCI device and connection manager initialized
> >>> Jul 20 20:02:06 xd kernel: Bluetooth: HCI socket layer initialized
> >>> Jul 20 20:02:06 xd kernel: Bluetooth: L2CAP socket layer initialized
> >>> Jul 20 20:02:06 xd kernel: Bluetooth: SCO socket layer initialized
> >>> Jul 20 20:02:06 xd kernel: usbcore: registered new interface driver btusb
> >>> Jul 20 20:02:07 xd kernel: intel_rapl_msr: PL4 support detected.
> >>> Jul 20 20:02:07 xd kernel: intel_rapl_common: Found RAPL domain package
> >>> Jul 20 20:02:07 xd kernel: intel_rapl_common: Found RAPL domain core
> >>> Jul 20 20:02:07 xd kernel: intel_rapl_common: Found RAPL domain uncore
> >>> Jul 20 20:02:07 xd kernel: mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_component_ops [i915])
> >>> Jul 20 20:02:07 xd kernel: Bluetooth: BNEP (Ethernet Emulation) ver 1.3
> >>> Jul 20 20:02:07 xd kernel: Bluetooth: BNEP filters: protocol multicast
> >>> Jul 20 20:02:07 xd kernel: Bluetooth: BNEP socket layer initialized
> >>> Jul 20 20:02:09 xd kernel: r8168: enp2s0: link up
> >>> Jul 20 20:02:09 xd kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
> >>> Jul 20 20:02:09 xd kernel: rfkill: input handler disabled
> >>> Jul 20 20:02:17 xd kernel: rfkill: input handler enabled
> >>> Jul 20 20:02:18 xd kernel: rfkill: input handler disabled
> >>>
> >>
>
Re: Boot into Xen on debian11 [ In reply to ]
Xen


Hello Chuck, Leigh, Group.

I have upgraded to testing as suggested.

Xen boot is still not working. It lands on initramfs.

Do you think it’s about a change that should be done at firmware or Xen, please?

This time I can see the hard drive partitions listed under /dev (nvme0n1p1-5), but I cannot mount them. I cannot access a thumb drive either /dev/block, when mounted has two strange symlinks to ../sda1 (8:0 and 1:8). This is a bit frustrating because it does not allow me to export dmesg or other info.

Im not receiving the error messages on screen before initramfs, they got hidden now, but I do get:

Gave up waiting for suspend/resume device
Gave up waiting for root file system device. Common problems:
Boot args (cat /proc/cmdline) - Check rootdelay= (did the system wait long enough?)
Missing modules (cat /proc/modules; ls /dev)
ALERT! UUID=0123abc does not exist. Dropping to a shell!

On the dmesg, I got again the ACPI errors:

ACPI BIOS Error
(bug): Failure creating named ob
I_SB.PCOO.XHCI.RHUB.HS05._UPC], AE ALREADY _EXISTS (Z0211217/dsuloadZ-326)
ACPI Error: AE_ALREADY EXISTS, During name
slookun/catalog
-9451181 ACPI: Skipping parse of AML opcode: OpcodeNane unavailable
(20211217/psobject-z20)
(0x0014)

Repeated several times

ACPI: Skipping parse of AML opcode: DpcodeNane unavailable (0x0014)
API: 15 API AML tables successfully acquired and loaded
xen: registering
gsi 9 triggering 0 polarity 0

Latter on the dmesg I got repeated errors like this:

RIP: 0033:0x7 969a2e2äc9
RSP: 002b:00007ffaff421a28 FLAGS: 00000246 RIG RAX: 0000000000000139
RAX: Efffffffffffffda RBX: 00005582Bb061d10 RCX: 00007 969aZeZäc9
244.4412241 RDX:000000000 RSI: 000071969a49bfOd RDI: 00000000000000
RB: 0000000000020000 ROB: 0000000000000000 R09: 000055828b04c290
R10: 000000000000000c R11: 0000000000000246 R12: 00007f969a49bf®d
R13: 000000GBOOOOOOOO R14: 000055B28b060aZO R15: 00005582Bb06110

(/TASK>
INFO: task systemd-udevd: 190 blocked for more than 120 seconds.

Tainted: G

DE
5.18.0-2-amd64 #1 Debian 5.18.5-1
"echo 0 › proc/sys/kernel/hung_task_timeout_secs"
disables this nessage.
task: systend-udevd
state:D stack:
© pid: 190 ppid:
Call Trace:
164 flags: 0x00004004
(TASK)
schedule+0x30b/0x9e0

schedule+0x4e/Oxb0

do_init_module+0x1c3/0x260
do_sys_finit_module+Oxb4/0x120
do_sysca11_64+0x3B/Oxc0

—-

And here you have another output that can be relevant:

(initranfs) cat /proc/cndline
placeholder root=UUID=OdcZba®c-97a5-4786-bc97-4d13279afeOf ro quiet loglevel=3
(initranfs) cat /proc/modules
1915 3604480 2 - Live Oxffffffffc0540000
ahci 77824 1 - Live Oxffffffffc01d4000
hid generic 24576 1 - Live Oxffffffffc00b6000
nume 69632 1
- Live Oxffffffffc01bd000
libahci 49152 1 ahi, Live oxffffffffc019c000
àrm_buddy 204B0 1 1915, Live oxffffffffc0020000
12c_algo_bit 16384 1 1915, Live Oxfffffffic000N00®
nune_core 139264 1 nume, Live OxffffffP{c050/000
àrm_p_helper 159744 1 1915, Live oxffffffffc04a8000
libata 385024 2 ahi,libahci, Live exffffffffc045b000
+10_pi 16384 1 nume_core, Live Oxfffffffic01c/000
cec 61440 2 1915,drm_dp_helper, Live Oxifffffffc0445000
rC_core 61440 1 cec,
Live Oxffffffffc01f0000
ttm86016 1 i915, Live Oxffffffffc042f000
scsi_mod 266240 1 libata, Live Oxffffffffc03dB000
àrnkms_helper 192512 2 1915,drm_dp_helper, Live oxfffffffic0392000
crc64_rocksoft 204B0 1 t10_pi, Live oxfrIffffic0167000
crc64 204B0 1 crc64_rocksoft, Live Oxffffffffc01aa000
crc_t10dif 204B0 1 t10 pi, Live exfPffffficOOb0000
crct10dif_generic 16384 0 - Live Oxffffffffc00Bd000
scsi_common 16384 2 libata,scsi mod, Live OxffffffffcOOBBOOO
xhci_pci 204B0 0
- Live Oxffffffffc0050000
xhci_hcd 315392 1 xhei pci, Live Oxffffffffc0331000
crct10dif_pclmul 16384 1
- Live Oxffffffffc0162000
cret10d if_conmon 16384 3 crc_+10dif,crct10dif _generic,cret10dif pelnul, Live Oxffffffffc0071000
crc32c_intel 24576 0 - Live OxfrIPIfficO033000
intel_lpss_pci 28672 0 - Live Oxffffffffc0184000
¡2c_hid_acpi 16384 © - Live Oxffffffffc017c000
r8168 589824 0 - Live Oxffffffffc00e3000 (DE)
12 mET 32788 9 128351 027, " VI UP SHAAFF-908 000.
intel_lpss 16384 1 intel_lpss pci, Live oxffffffffc00c6000
ush_ common 16384 2 xhci hed, usbcore, Live OxtffERFfEcOOba000
und 24576 © - Live Oxffffffffc00a0000
idma64 20480 © - Live oxffffffffc0097000
fan 204B0 0 -
• Live OxffffffffcO02d000
hid 151552 2 hid_generic, 12c hid, Live Oxffffffffc0059000
battery 28672 0 -
Live Oxffffffffc0048000
button 24576 © - Live Oxffffffffc0041000
uni 36864 0
- Live Oxffffffffc0014000
video 57344 1 i915, Live Oxffffffff:0000000

> On 20 Jul 2022, at 23:40, Chuck Zmudzinski <brchuckz@netscape.net> wrote:
>
> ?On 7/20/2022 4:38 PM, Bruno wrote:
>> Another thing that catches my eye are the constant fails from beginning to end on nvme:
>>
>> nvme nvme0: pci function x
>> nvme x: PCI INT A: no GSI
>> Time-outs I/O x QID completion polled
>> missing or invalid SUBQN field
>> Timeouts and probes / completion pilled
>
> I think maybe your laptop is too new for Debian
> stable. Debian stable uses Linux 5.10 and Xen 4.14
> which were developed probably two years ago or
> more. I think you need a distro with Linux 5.18
> and Xen 4.16. Debian testing (aka bookworm) will
> eventually become Debian 12 should work better,
> and you can find many guides for upgrading from
> Debian stable to Debian testing by doing an Internet
> search. I also think fedora and opensuse might have
> those newer versions of Linux and Xen also.
>
> Chuck
>
>>
>>>> On 20 Jul 2022, at 21:19, Bruno <brunoce@kolabnow.com> wrote:
>>>
>>> ?Error I can see when I grep from dmesg on initramfs:
>>>
>>> pcieport xxx DCP: error containment capabilities: Int Msg #0, …..
>>>
>>> And grep fail:
>>>
>>> PM-Timer consistency check
>>>
>>> pci xxx: Failed to add - pass through or MSI/MSI-X might fail!
>>> pci xxx: BAR x: failed to assign [io size x]
>>>
>>> r8168: module verification failed: signature and or required key missing - tainting kernel
>>>
>>>>> On 20 Jul 2022, at 21:03, Chuck Zmudzinski <brchuckz@netscape.net> wrote:
>>>>>
>>>>> ?On 7/20/22 3:19 PM, Bruno wrote:
>>>>>
>>>>> Hello Leigh. Hello Chuck.
>>>>>
>>>>> Thank you again for the support. Unfortunately matters have not moved forward yet.
>>>>>
>>>>> I have successfully installed nvidia and the non-free firmware miscellanea, and I have re-generated the initramfs ( update-initramfs -k all -c -v ). But I cannot boot on Xen.
>>>>>
>>>>> I also when booting Xen and landing on initramfs prompt, cannot mount /root ( mount -o remount,rw /root ), and I cannot extract a dmesg of that boot process. I am not getting the ACPI error I was getting before, but clearly the errors in mount are ACPI failure.
>>>>>
>>>>> Bellow the current journalctl -k -b :
>>>>>
>>>>
>>>> As Leigh said, there should be something like:
>>>>
>>>> Jul 20 09:19:36 debian kernel: [ 0.000000] Hypervisor detected: Xen PV
>>>>
>>>> In the journal logs, but I don't see it there. See if you can find it in
>>>> the /var/log/kern.log file to be sure you are posting the right log file.
>>>> It should be there on the attempt to boot into Linux on Xen.
>>>>
>>>> Maybe there is something wrong with your grub configuration. I know
>>>> you posted it in your first message but I don't see anything
>>>> terribly wrong there. Are you sure that grub is really booting
>>>> the 'Debian Linux/GNU with Xen hypervisor' boot option? It
>>>> should boot that, based on what is in your /boot/grub/grub.cfg
>>>> file.
>>>>
>>>> You can also manually select the option to boot Debian with the
>>>> Xen hypervisor while the grub boot menu displays.
>>>>
>>>> It has been a long time since I installed Xen on Debian,
>>>> I have been just upgrading my installation that
>>>> goes all the way back to Debian 7. It may be there
>>>> is a bug in the current Debian Xen metapackage
>>>> installation system.
>>>>
>>>> I have been planning to try to do a clean install of
>>>> Xen on Debian 11 to see if it still works right. I will
>>>> try it later this week and let you know if there is
>>>> a bug in the Debian Xen installation system.
>>>>
>>>> Chuck
>>>>
>>>>
>>>>> Jul 20 20:02:05 xd kernel: Linux version 5.10.0-16-amd64 (debian-kernel@lists.debian.org) (gcc-10 (Debian 10.2.1-6) 10.2.1 20210110, GNU ld (GNU Binutils for Debian) 2.35.2) #1 SMP Debian 5.10.127-1 (2022-06-30)
>>>>> Jul 20 20:02:05 xd kernel: Command line: BOOT_IMAGE=/vmlinuz-5.10.0-16-amd64 root=UUID=0123abcd ro quiet
>>>>> Jul 20 20:02:05 xd kernel: x86/split lock detection: warning about user-space split_locks
>>>>> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
>>>>> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
>>>>> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
>>>>> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask'
>>>>> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'
>>>>> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'
>>>>> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
>>>>> Jul 20 20:02:05 xd kernel: x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
>>>>> Jul 20 20:02:05 xd kernel: x86/fpu: xstate_offset[5]: 832, xstate_sizes[5]: 64
>>>>> Jul 20 20:02:05 xd kernel: x86/fpu: xstate_offset[6]: 896, xstate_sizes[6]: 512
>>>>> Jul 20 20:02:05 xd kernel: x86/fpu: xstate_offset[7]: 1408, xstate_sizes[7]: 1024
>>>>> Jul 20 20:02:05 xd kernel: x86/fpu: xstate_offset[9]: 2432, xstate_sizes[9]: 8
>>>>> Jul 20 20:02:05 xd kernel: x86/fpu: Enabled xstate features 0x2e7, context size is 2440 bytes, using 'compacted' format.
>>>>> Jul 20 20:02:05 xd kernel: BIOS-provided physical RAM map:
>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000000100000-0x000000003fd98fff] usable
>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x000000003fd99000-0x0000000040698fff] reserved
>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000040699000-0x00000000424aefff] usable
>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000424af000-0x000000004287efff] type 20
>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x000000004287f000-0x00000000442fefff] reserved
>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000442ff000-0x0000000044b2efff] ACPI NVS
>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000044b2f000-0x0000000044bfefff] ACPI data
>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000044bff000-0x0000000044bfffff] usable
>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000044c00000-0x0000000048ffffff] reserved
>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000049e00000-0x000000004f7fffff] reserved
>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000c0000000-0x00000000cfffffff] reserved
>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000fe010000-0x00000000fe010fff] reserved
>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000fed20000-0x00000000fed7ffff] reserved
>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000ff500000-0x00000000ffffffff] reserved
>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000100000000-0x00000004b07fffff] usable
>>>>> Jul 20 20:02:05 xd kernel: NX (Execute Disable) protection: active
>>>>> Jul 20 20:02:05 xd kernel: efi: EFI v2.70 by INSYDE Corp.
>>>>> Jul 20 20:02:05 xd kernel: efi: ACPI=0x44bfe000 ACPI 2.0=0x44bfe014 TPMFinalLog=0x44ac5000 SMBIOS=0x429de000 SMBIOS 3.0=0x429dc000 ESRT=0x3bf68a98 MOKvar=0x3bee5000
>>>>> Jul 20 20:02:05 xd kernel: secureboot: Secure boot could not be determined (mode 0)
>>>>> Jul 20 20:02:05 xd kernel: SMBIOS 3.3.0 present.
>>>>> Jul 20 20:02:05 xd kernel: DMI: Acer Aspire A517-52G/Jasmine_TL, BIOS V1.26 03/14/2022
>>>>> Jul 20 20:02:05 xd kernel: tsc: Detected 2400.000 MHz processor
>>>>> Jul 20 20:02:05 xd kernel: tsc: Detected 2419.200 MHz TSC
>>>>> Jul 20 20:02:05 xd kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
>>>>> Jul 20 20:02:05 xd kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
>>>>> Jul 20 20:02:05 xd kernel: last_pfn = 0x4b0800 max_arch_pfn = 0x400000000
>>>>> Jul 20 20:02:05 xd kernel: MTRR default type: write-back
>>>>> Jul 20 20:02:05 xd kernel: MTRR fixed ranges enabled:
>>>>> Jul 20 20:02:05 xd kernel: 00000-9FFFF write-back
>>>>> Jul 20 20:02:05 xd kernel: A0000-BFFFF uncachable
>>>>> Jul 20 20:02:05 xd kernel: C0000-FFFFF write-protect
>>>>> Jul 20 20:02:05 xd kernel: MTRR variable ranges enabled:
>>>>> Jul 20 20:02:05 xd kernel: 0 base 0080000000 mask 7F80000000 uncachable
>>>>> Jul 20 20:02:05 xd kernel: 1 base 0060000000 mask 7FE0000000 uncachable
>>>>> Jul 20 20:02:05 xd kernel: 2 base 0050000000 mask 7FF0000000 uncachable
>>>>> Jul 20 20:02:05 xd kernel: 3 base 004C000000 mask 7FFC000000 uncachable
>>>>> Jul 20 20:02:05 xd kernel: 4 base 004B000000 mask 7FFF000000 uncachable
>>>>> Jul 20 20:02:05 xd kernel: 5 base 4000000000 mask 4000000000 uncachable
>>>>> Jul 20 20:02:05 xd kernel: 6 disabled
>>>>> Jul 20 20:02:05 xd kernel: 7 disabled
>>>>> Jul 20 20:02:05 xd kernel: 8 disabled
>>>>> Jul 20 20:02:05 xd kernel: 9 disabled
>>>>> Jul 20 20:02:05 xd kernel: x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
>>>>> Jul 20 20:02:05 xd kernel: last_pfn = 0x44c00 max_arch_pfn = 0x400000000
>>>>> Jul 20 20:02:05 xd kernel: esrt: Reserving ESRT space from 0x000000003bf68a98 to 0x000000003bf68ad0.
>>>>> Jul 20 20:02:05 xd kernel: e820: update [mem 0x3bf68000-0x3bf68fff] usable ==> reserved
>>>>> Jul 20 20:02:05 xd kernel: e820: update [mem 0x3bee5000-0x3bee7fff] usable ==> reserved
>>>>> Jul 20 20:02:05 xd kernel: Using GB pages for direct mapping
>>>>> Jul 20 20:02:05 xd kernel: RAMDISK: [mem 0x32341000-0x35197fff]
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Early table checksum verification disabled
>>>>> Jul 20 20:02:05 xd kernel: ACPI: RSDP 0x0000000044BFE014 000024 (v02 ACRSYS)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: XSDT 0x0000000044BDB188 000124 (v01 ACRSYS ACRPRDCT 00000002 01000013)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: FACP 0x0000000044BDE000 000114 (v06 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: DSDT 0x0000000044B81000 059948 (v02 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: FACS 0x0000000044AA2000 000040
>>>>> Jul 20 20:02:05 xd kernel: ACPI: UEFI 0x0000000044B2E000 000236 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BFA000 00255C (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BF9000 000105 (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BF6000 002137 (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BF2000 003300 (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BF1000 00077B (v02 ACRSYS ACRPRDCT 00001000 1025 00040000)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: TPM2 0x0000000044BF0000 00004C (v04 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: MSDM 0x0000000044BEF000 000055 (v03 ACRSYS ACRPRDCT 00000001 1025 00040000)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BEE000 000D02 (v02 ACRSYS ACRPRDCT 00000000 1025 00040000)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: NHLT 0x0000000044BEC000 001B54 (v00 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: LPIT 0x0000000044BEB000 0000CC (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: WSMT 0x0000000044BEA000 000028 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BE9000 000B70 (v02 ACRSYS ACRPRDCT 00001000 1025 00040000)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BE8000 00012A (v02 ACRSYS ACRPRDCT 00000000 1025 00040000)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: DBGP 0x0000000044BE7000 000034 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: DBG2 0x0000000044BE6000 000054 (v00 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BDF000 006BA9 (v01 ACRSYS ACRPRDCT 00001000 1025 00040000)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: HPET 0x0000000044BDD000 000038 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: APIC 0x0000000044BDC000 00012C (v04 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: MCFG 0x0000000044BFD000 00003C (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044B80000 000C78 (v02 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: DMAR 0x0000000044B7F000 000088 (v02 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044B7C000 0020D6 (v01 ACRSYS ACRPRDCT 00001000 1025 00040000)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: UEFI 0x0000000044A5B000 00063A (v01 ACRSYS ACRPRDCT 00000000 1025 00040000)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: UEFI 0x0000000044A5A000 00005C (v01 ACRSYS ACRPRDCT 00000000 1025 00040000)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044B7B000 000985 (v02 ACRSYS ACRPRDCT 00001000 1025 00040000)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044B7A000 0000F8 (v01 ACRSYS ACRPRDCT 00001000 1025 00040000)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044B79000 000835 (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: FPDT 0x0000000044B78000 000044 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: PTDT 0x0000000044B76000 000CFE (v00 ACRSYS ACRPRDCT 00000005 1025 00040000)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: BGRT 0x0000000044B77000 000038 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving FACP table memory at [mem 0x44bde000-0x44bde113]
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving DSDT table memory at [mem 0x44b81000-0x44bda947]
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving FACS table memory at [mem 0x44aa2000-0x44aa203f]
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving UEFI table memory at [mem 0x44b2e000-0x44b2e235]
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bfa000-0x44bfc55b]
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bf9000-0x44bf9104]
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bf6000-0x44bf8136]
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bf2000-0x44bf52ff]
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bf1000-0x44bf177a]
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving TPM2 table memory at [mem 0x44bf0000-0x44bf004b]
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving MSDM table memory at [mem 0x44bef000-0x44bef054]
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bee000-0x44beed01]
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving NHLT table memory at [mem 0x44bec000-0x44bedb53]
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving LPIT table memory at [mem 0x44beb000-0x44beb0cb]
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving WSMT table memory at [mem 0x44bea000-0x44bea027]
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44be9000-0x44be9b6f]
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44be8000-0x44be8129]
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving DBGP table memory at [mem 0x44be7000-0x44be7033]
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving DBG2 table memory at [mem 0x44be6000-0x44be6053]
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bdf000-0x44be5ba8]
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving HPET table memory at [mem 0x44bdd000-0x44bdd037]
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving APIC table memory at [mem 0x44bdc000-0x44bdc12b]
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving MCFG table memory at [mem 0x44bfd000-0x44bfd03b]
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b80000-0x44b80c77]
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving DMAR table memory at [mem 0x44b7f000-0x44b7f087]
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b7c000-0x44b7e0d5]
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving UEFI table memory at [mem 0x44a5b000-0x44a5b639]
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving UEFI table memory at [mem 0x44a5a000-0x44a5a05b]
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b7b000-0x44b7b984]
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b7a000-0x44b7a0f7]
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b79000-0x44b79834]
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving FPDT table memory at [mem 0x44b78000-0x44b78043]
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving PTDT table memory at [mem 0x44b76000-0x44b76cfd]
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving BGRT table memory at [mem 0x44b77000-0x44b77037]
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Local APIC address 0xfee00000
>>>>> Jul 20 20:02:05 xd kernel: No NUMA configuration found
>>>>> Jul 20 20:02:05 xd kernel: Faking a node at [mem 0x0000000000000000-0x00000004b07fffff]
>>>>> Jul 20 20:02:05 xd kernel: NODE_DATA(0) allocated [mem 0x4b07d6000-0x4b07fffff]
>>>>> Jul 20 20:02:05 xd kernel: Zone ranges:
>>>>> Jul 20 20:02:05 xd kernel: DMA [mem 0x0000000000001000-0x0000000000ffffff]
>>>>> Jul 20 20:02:05 xd kernel: DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
>>>>> Jul 20 20:02:05 xd kernel: Normal [mem 0x0000000100000000-0x00000004b07fffff]
>>>>> Jul 20 20:02:05 xd kernel: Device empty
>>>>> Jul 20 20:02:05 xd kernel: Movable zone start for each node
>>>>> Jul 20 20:02:05 xd kernel: Early memory node ranges
>>>>> Jul 20 20:02:05 xd kernel: node 0: [mem 0x0000000000001000-0x000000000009efff]
>>>>> Jul 20 20:02:05 xd kernel: node 0: [mem 0x0000000000100000-0x000000003fd98fff]
>>>>> Jul 20 20:02:05 xd kernel: node 0: [mem 0x0000000040699000-0x00000000424aefff]
>>>>> Jul 20 20:02:05 xd kernel: node 0: [mem 0x0000000044bff000-0x0000000044bfffff]
>>>>> Jul 20 20:02:05 xd kernel: node 0: [mem 0x0000000100000000-0x00000004b07fffff]
>>>>> Jul 20 20:02:05 xd kernel: Initmem setup node 0 [mem 0x0000000000001000-0x00000004b07fffff]
>>>>> Jul 20 20:02:05 xd kernel: On node 0 totalpages: 4137806
>>>>> Jul 20 20:02:05 xd kernel: DMA zone: 64 pages used for memmap
>>>>> Jul 20 20:02:05 xd kernel: DMA zone: 25 pages reserved
>>>>> Jul 20 20:02:05 xd kernel: DMA zone: 3998 pages, LIFO batch:0
>>>>> Jul 20 20:02:05 xd kernel: DMA32 zone: 4143 pages used for memmap
>>>>> Jul 20 20:02:05 xd kernel: DMA32 zone: 265136 pages, LIFO batch:63
>>>>> Jul 20 20:02:05 xd kernel: Normal zone: 60448 pages used for memmap
>>>>> Jul 20 20:02:05 xd kernel: Normal zone: 3868672 pages, LIFO batch:63
>>>>> Jul 20 20:02:05 xd kernel: On node 0, zone DMA: 1 pages in unavailable ranges
>>>>> Jul 20 20:02:05 xd kernel: On node 0, zone DMA: 97 pages in unavailable ranges
>>>>> Jul 20 20:02:05 xd kernel: On node 0, zone DMA32: 2304 pages in unavailable ranges
>>>>> Jul 20 20:02:05 xd kernel: On node 0, zone DMA32: 10064 pages in unavailable ranges
>>>>> Jul 20 20:02:05 xd kernel: On node 0, zone Normal: 13312 pages in unavailable ranges
>>>>> Jul 20 20:02:05 xd kernel: On node 0, zone Normal: 30720 pages in unavailable ranges
>>>>> Jul 20 20:02:05 xd kernel: Reserving Intel graphics memory at [mem 0x4b800000-0x4f7fffff]
>>>>> Jul 20 20:02:05 xd kernel: ACPI: PM-Timer IO Port: 0x1808
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Local APIC address 0xfee00000
>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
>>>>> Jul 20 20:02:05 xd kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
>>>>> Jul 20 20:02:05 xd kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: IRQ0 used by override.
>>>>> Jul 20 20:02:05 xd kernel: ACPI: IRQ9 used by override.
>>>>> Jul 20 20:02:05 xd kernel: Using ACPI (MADT) for SMP configuration information
>>>>> Jul 20 20:02:05 xd kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
>>>>> Jul 20 20:02:05 xd kernel: e820: update [mem 0x3bf6a000-0x3c05dfff] usable ==> reserved
>>>>> Jul 20 20:02:05 xd kernel: TSC deadline timer available
>>>>> Jul 20 20:02:05 xd kernel: smpboot: Allowing 8 CPUs, 0 hotplug CPUs
>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x3bee5000-0x3bee7fff]
>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x3bf68000-0x3bf68fff]
>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x3bf6a000-0x3c05dfff]
>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x3fd99000-0x40698fff]
>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x424af000-0x4287efff]
>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x4287f000-0x442fefff]
>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x442ff000-0x44b2efff]
>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x44b2f000-0x44bfefff]
>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x44c00000-0x48ffffff]
>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x49000000-0x49dfffff]
>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x49e00000-0x4f7fffff]
>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x4f800000-0xbfffffff]
>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xc0000000-0xcfffffff]
>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xd0000000-0xfe00ffff]
>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xfe010000-0xfe010fff]
>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xfed1ffff]
>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xfed7ffff]
>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xff4fffff]
>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xff500000-0xffffffff]
>>>>> Jul 20 20:02:05 xd kernel: [mem 0x4f800000-0xbfffffff] available for PCI devices
>>>>> Jul 20 20:02:05 xd kernel: Booting paravirtualized kernel on bare hardware
>>>>> Jul 20 20:02:05 xd kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
>>>>> Jul 20 20:02:05 xd kernel: setup_percpu: NR_CPUS:8192 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
>>>>> Jul 20 20:02:05 xd kernel: percpu: Embedded 58 pages/cpu s200664 r8192 d28712 u262144
>>>>> Jul 20 20:02:05 xd kernel: pcpu-alloc: s200664 r8192 d28712 u262144 alloc=1*2097152
>>>>> Jul 20 20:02:05 xd kernel: pcpu-alloc: [0] 0 1 2 3 4 5 6 7
>>>>> Jul 20 20:02:05 xd kernel: Built 1 zonelists, mobility grouping on. Total pages: 4073126
>>>>> Jul 20 20:02:05 xd kernel: Policy zone: Normal
>>>>> Jul 20 20:02:05 xd kernel: Kernel command line: BOOT_IMAGE=/vmlinuz-5.10.0-16-amd64 root=UUID=0dc2ba0c-97d5-4786-bc97-4d13279afe0f ro quiet
>>>>> Jul 20 20:02:05 xd kernel: Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
>>>>> Jul 20 20:02:05 xd kernel: Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
>>>>> Jul 20 20:02:05 xd kernel: mem auto-init: stack:off, heap alloc:on, heap free:off
>>>>> Jul 20 20:02:05 xd kernel: Memory: 1010444K/16551224K available (12295K kernel code, 2536K rwdata, 7568K rodata, 2424K init, 3680K bss, 520984K reserved, 0K cma-reserved)
>>>>> Jul 20 20:02:05 xd kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
>>>>> Jul 20 20:02:05 xd kernel: ftrace: allocating 36455 entries in 143 pages
>>>>> Jul 20 20:02:05 xd kernel: ftrace: allocated 143 pages with 5 groups
>>>>> Jul 20 20:02:05 xd kernel: rcu: Hierarchical RCU implementation.
>>>>> Jul 20 20:02:05 xd kernel: rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=8.
>>>>> Jul 20 20:02:05 xd kernel: Rude variant of Tasks RCU enabled.
>>>>> Jul 20 20:02:05 xd kernel: Tracing variant of Tasks RCU enabled.
>>>>> Jul 20 20:02:05 xd kernel: rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
>>>>> Jul 20 20:02:05 xd kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
>>>>> Jul 20 20:02:05 xd kernel: NR_IRQS: 524544, nr_irqs: 2048, preallocated irqs: 16
>>>>> Jul 20 20:02:05 xd kernel: random: crng init done
>>>>> Jul 20 20:02:05 xd kernel: Console: colour dummy device 80x25
>>>>> Jul 20 20:02:05 xd kernel: printk: console [tty0] enabled
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Core revision 20200925
>>>>> Jul 20 20:02:05 xd kernel: hpet: HPET dysfunctional in PC10. Force disabled.
>>>>> Jul 20 20:02:05 xd kernel: APIC: Switch to symmetric I/O mode setup
>>>>> Jul 20 20:02:05 xd kernel: DMAR: Host address width 39
>>>>> Jul 20 20:02:05 xd kernel: DMAR: DRHD base: 0x000000fed90000 flags: 0x0
>>>>> Jul 20 20:02:05 xd kernel: DMAR: dmar0: reg_base_addr fed90000 ver 4:0 cap 1c0000c40660462 ecap 29a00f0505e
>>>>> Jul 20 20:02:05 xd kernel: DMAR: DRHD base: 0x000000fed91000 flags: 0x1
>>>>> Jul 20 20:02:05 xd kernel: DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
>>>>> Jul 20 20:02:05 xd kernel: DMAR: RMRR base: 0x0000004b000000 end: 0x0000004f7fffff
>>>>> Jul 20 20:02:05 xd kernel: DMAR-IR: IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 1
>>>>> Jul 20 20:02:05 xd kernel: DMAR-IR: HPET id 0 under DRHD base 0xfed91000
>>>>> Jul 20 20:02:05 xd kernel: DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
>>>>> Jul 20 20:02:05 xd kernel: DMAR-IR: Enabled IRQ remapping in x2apic mode
>>>>> Jul 20 20:02:05 xd kernel: x2apic enabled
>>>>> Jul 20 20:02:05 xd kernel: Switched APIC routing to cluster x2apic.
>>>>> Jul 20 20:02:05 xd kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x22df1149949, max_idle_ns: 440795312789 ns
>>>>> Jul 20 20:02:05 xd kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 4838.40 BogoMIPS (lpj=9676800)
>>>>> Jul 20 20:02:05 xd kernel: pid_max: default: 32768 minimum: 301
>>>>> Jul 20 20:02:05 xd kernel: LSM: Security Framework initializing
>>>>> Jul 20 20:02:05 xd kernel: Yama: disabled by default; enable with sysctl kernel.yama.*
>>>>> Jul 20 20:02:05 xd kernel: AppArmor: AppArmor initialized
>>>>> Jul 20 20:02:05 xd kernel: TOMOYO Linux initialized
>>>>> Jul 20 20:02:05 xd kernel: Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
>>>>> Jul 20 20:02:05 xd kernel: Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
>>>>> Jul 20 20:02:05 xd kernel: x86/cpu: User Mode Instruction Prevention (UMIP) activated
>>>>> Jul 20 20:02:05 xd kernel: mce: CPU0: Thermal monitoring enabled (TM1)
>>>>> Jul 20 20:02:05 xd kernel: process: using mwait in idle threads
>>>>> Jul 20 20:02:05 xd kernel: Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
>>>>> Jul 20 20:02:05 xd kernel: Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
>>>>> Jul 20 20:02:05 xd kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
>>>>> Jul 20 20:02:05 xd kernel: Spectre V2 : Mitigation: Enhanced IBRS
>>>>> Jul 20 20:02:05 xd kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
>>>>> Jul 20 20:02:05 xd kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
>>>>> Jul 20 20:02:05 xd kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
>>>>> Jul 20 20:02:05 xd kernel: Freeing SMP alternatives memory: 32K
>>>>> Jul 20 20:02:05 xd kernel: smpboot: CPU0: 11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz (family: 0x6, model: 0x8c, stepping: 0x1)
>>>>> Jul 20 20:02:05 xd kernel: Performance Events: PEBS fmt4+-baseline, AnyThread deprecated, Icelake events, 32-deep LBR, full-width counters, Intel PMU driver.
>>>>> Jul 20 20:02:05 xd kernel: ... version: 5
>>>>> Jul 20 20:02:05 xd kernel: ... bit width: 48
>>>>> Jul 20 20:02:05 xd kernel: ... generic registers: 8
>>>>> Jul 20 20:02:05 xd kernel: ... value mask: 0000ffffffffffff
>>>>> Jul 20 20:02:05 xd kernel: ... max period: 00007fffffffffff
>>>>> Jul 20 20:02:05 xd kernel: ... fixed-purpose events: 4
>>>>> Jul 20 20:02:05 xd kernel: ... event mask: 0001000f000000ff
>>>>> Jul 20 20:02:05 xd kernel: rcu: Hierarchical SRCU implementation.
>>>>> Jul 20 20:02:05 xd kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
>>>>> Jul 20 20:02:05 xd kernel: smp: Bringing up secondary CPUs ...
>>>>> Jul 20 20:02:05 xd kernel: x86: Booting SMP configuration:
>>>>> Jul 20 20:02:05 xd kernel: .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7
>>>>> Jul 20 20:02:05 xd kernel: smp: Brought up 1 node, 8 CPUs
>>>>> Jul 20 20:02:05 xd kernel: smpboot: Max logical packages: 1
>>>>> Jul 20 20:02:05 xd kernel: smpboot: Total of 8 processors activated (38707.20 BogoMIPS)
>>>>> Jul 20 20:02:05 xd kernel: node 0 deferred pages initialised in 20ms
>>>>> Jul 20 20:02:05 xd kernel: devtmpfs: initialized
>>>>> Jul 20 20:02:05 xd kernel: x86/mm: Memory block size: 128MB
>>>>> Jul 20 20:02:05 xd kernel: PM: Registering ACPI NVS region [mem 0x442ff000-0x44b2efff] (8585216 bytes)
>>>>> Jul 20 20:02:05 xd kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
>>>>> Jul 20 20:02:05 xd kernel: futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
>>>>> Jul 20 20:02:05 xd kernel: pinctrl core: initialized pinctrl subsystem
>>>>> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 16
>>>>> Jul 20 20:02:05 xd kernel: audit: initializing netlink subsys (disabled)
>>>>> Jul 20 20:02:05 xd kernel: audit: type=2000 audit(1658343722.028:1): state=initialized audit_enabled=0 res=1
>>>>> Jul 20 20:02:05 xd kernel: thermal_sys: Registered thermal governor 'fair_share'
>>>>> Jul 20 20:02:05 xd kernel: thermal_sys: Registered thermal governor 'bang_bang'
>>>>> Jul 20 20:02:05 xd kernel: thermal_sys: Registered thermal governor 'step_wise'
>>>>> Jul 20 20:02:05 xd kernel: thermal_sys: Registered thermal governor 'user_space'
>>>>> Jul 20 20:02:05 xd kernel: thermal_sys: Registered thermal governor 'power_allocator'
>>>>> Jul 20 20:02:05 xd kernel: cpuidle: using governor ladder
>>>>> Jul 20 20:02:05 xd kernel: cpuidle: using governor menu
>>>>> Jul 20 20:02:05 xd kernel: ACPI: bus type PCI registered
>>>>> Jul 20 20:02:05 xd kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
>>>>> Jul 20 20:02:05 xd kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xc0000000-0xcfffffff] (base 0xc0000000)
>>>>> Jul 20 20:02:05 xd kernel: PCI: MMCONFIG at [mem 0xc0000000-0xcfffffff] reserved in E820
>>>>> Jul 20 20:02:05 xd kernel: PCI: Using configuration type 1 for base access
>>>>> Jul 20 20:02:05 xd kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
>>>>> Jul 20 20:02:05 xd kernel: Kprobes globally optimized
>>>>> Jul 20 20:02:05 xd kernel: HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
>>>>> Jul 20 20:02:05 xd kernel: HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Module Device)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Processor Device)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Processor Aggregator Device)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Linux-Dell-Video)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS01._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS01._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS02._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS02._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS03._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS03._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS04._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS04._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS05._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS05._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS06._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS06._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS07._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS07._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS08._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS08._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS09._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS09._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS10._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS10._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS01._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS01._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS02._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS02._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS03._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS03._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS04._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS04._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS05._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS05._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS06._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS06._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: 15 ACPI AML tables successfully acquired and loaded
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8882135E00 0001C6 (v02 PmRef Cpu0Psd 00003000 INTL 20160422)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: \_SB_.PR00: _OSC native thermal LVT Acked
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A888213CC00 000386 (v02 PmRef Cpu0Cst 00003001 INTL 20160422)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8500BAB000 0005C3 (v02 PmRef Cpu0Ist 00003000 INTL 20160422)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A888213FC00 00028B (v02 PmRef Cpu0Hwp 00003000 INTL 20160422)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8500F3D000 0008E7 (v02 PmRef ApIst 00003000 INTL 20160422)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8500BAC000 00048A (v02 PmRef ApHwp 00003000 INTL 20160422)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8500BAF800 0004D4 (v02 PmRef ApPsd 00003000 INTL 20160422)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8500BAE000 00048A (v02 PmRef ApCst 00003000 INTL 20160422)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: EC: EC started
>>>>> Jul 20 20:02:05 xd kernel: ACPI: EC: interrupt blocked
>>>>> Jul 20 20:02:05 xd kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
>>>>> Jul 20 20:02:05 xd kernel: ACPI: \_SB_.PC00.LPCB.EC0_: Boot DSDT EC used to handle transactions
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Interpreter enabled
>>>>> Jul 20 20:02:05 xd kernel: ACPI: (supports S0 S3 S4 S5)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Using IOAPIC for interrupt routing
>>>>> Jul 20 20:02:05 xd kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Enabled 7 GPEs in block 00 to 7F
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [PCRP] (on)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V0PR] (on)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V1PR] (on)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V2PR] (on)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [WRST] (on)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V0PR] (on)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V1PR] (on)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V2PR] (on)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V3PR] (on)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [FN00] (off)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [FN01] (off)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [FN02] (off)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [FN03] (off)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [FN04] (off)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [PIN] (off)
>>>>> Jul 20 20:02:05 xd kernel: ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-e0])
>>>>> Jul 20 20:02:05 xd kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
>>>>> Jul 20 20:02:05 xd kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR]
>>>>> Jul 20 20:02:05 xd kernel: PCI host bridge to bus 0000:00
>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [mem 0x4f800000-0xbfffffff window]
>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [bus 00-e0]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:00.0: [8086:9a14] type 00 class 0x060000
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: [8086:9a49] type 00 class 0x030000
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: reg 0x10: [mem 0x6014000000-0x6014ffffff 64bit]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: reg 0x18: [mem 0x4000000000-0x400fffffff 64bit pref]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: reg 0x20: [io 0x5000-0x503f]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: BAR 2: assigned to efifb
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: DMAR: Skip IOMMU disabling for graphics
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: reg 0x344: [mem 0x00000000-0x00ffffff 64bit]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: VF(n) BAR0 space: [mem 0x00000000-0x06ffffff 64bit] (contains BAR0 for 7 VFs)
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: reg 0x34c: [mem 0x00000000-0x1fffffff 64bit pref]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: VF(n) BAR2 space: [mem 0x00000000-0xdfffffff 64bit pref] (contains BAR2 for 7 VFs)
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: [8086:9a09] type 01 class 0x060400
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: PTM enabled (root), 4ns granularity
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:08.0: [8086:9a11] type 00 class 0x088000
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:08.0: reg 0x10: [mem 0x601540f000-0x601540ffff 64bit]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:0e.0: [8086:9a0b] type 00 class 0x010400
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:0e.0: reg 0x10: [mem 0x6012000000-0x6013ffffff 64bit]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:0e.0: reg 0x18: [mem 0x50000000-0x51ffffff]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:0e.0: reg 0x20: [mem 0x6015300000-0x60153fffff 64bit]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.0: [8086:a0ed] type 00 class 0x0c0330
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.0: reg 0x10: [mem 0x53180000-0x5318ffff 64bit]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.2: [8086:a0ef] type 00 class 0x050000
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.2: reg 0x10: [mem 0x6015404000-0x6015407fff 64bit]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.2: reg 0x18: [mem 0x601540e000-0x601540efff 64bit]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.0: [8086:a0e8] type 00 class 0x0c8000
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.3: [8086:a0eb] type 00 class 0x0c8000
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.3: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:16.0: [8086:a0e0] type 00 class 0x078000
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:16.0: reg 0x10: [mem 0x601540b000-0x601540bfff 64bit]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:16.0: PME# supported from D3hot
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:17.0: [8086:09ab] type 00 class 0x088000
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.0: [8086:a0c5] type 00 class 0x0c8000
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.1: [8086:a0c6] type 00 class 0x0c8000
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.1: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: [8086:a0b0] type 01 class 0x060400
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: PTM enabled (root), 4ns granularity
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: [8086:a0b1] type 01 class 0x060400
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: PME# supported from D0 D3hot D3cold
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: PTM enabled (root), 4ns granularity
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.0: [8086:a082] type 00 class 0x060100
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.3: [8086:a0c8] type 00 class 0x040100
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.3: reg 0x10: [mem 0x6015400000-0x6015403fff 64bit]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.3: reg 0x20: [mem 0x6015200000-0x60152fffff 64bit]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.3: PME# supported from D3hot D3cold
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.4: [8086:a0a3] type 00 class 0x0c0500
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.4: reg 0x10: [mem 0x6015408000-0x60154080ff 64bit]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.4: reg 0x20: [io 0xefa0-0xefbf]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.5: [8086:a0a4] type 00 class 0x0c8000
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.5: reg 0x10: [mem 0xfe010000-0xfe010fff]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: [10de:1f97] type 00 class 0x030200
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: reg 0x10: [mem 0x52000000-0x52ffffff]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: reg 0x14: [mem 0x6000000000-0x600fffffff 64bit pref]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: reg 0x1c: [mem 0x6010000000-0x6011ffffff 64bit pref]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: reg 0x24: [io 0x4000-0x407f]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: 63.012 Gb/s available PCIe bandwidth, limited by 16.0 GT/s PCIe x4 link at 0000:00:06.0 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: PCI bridge to [bus 01]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [io 0x4000-0x4fff]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [mem 0x52000000-0x52ffffff]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [mem 0x6000000000-0x6011ffffff 64bit pref]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: reg 0x10: [io 0x3000-0x30ff]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: reg 0x18: [mem 0x53004000-0x53004fff 64bit]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: reg 0x20: [mem 0x53000000-0x53003fff 64bit]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: supports D1 D2
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: PCI bridge to [bus 02]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: bridge window [io 0x3000-0x3fff]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: bridge window [mem 0x53000000-0x530fffff]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: [14c3:7961] type 00 class 0x028000
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: reg 0x10: [mem 0x6015000000-0x60150fffff 64bit pref]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: reg 0x18: [mem 0x6015100000-0x6015103fff 64bit pref]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: reg 0x20: [mem 0x6015104000-0x6015104fff 64bit pref]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: supports D1 D2
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: PCI bridge to [bus 03]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: bridge window [mem 0x6015000000-0x60151fffff 64bit pref]
>>>>> Jul 20 20:02:05 xd kernel: ACPI: EC: interrupt unblocked
>>>>> Jul 20 20:02:05 xd kernel: ACPI: EC: event unblocked
>>>>> Jul 20 20:02:05 xd kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
>>>>> Jul 20 20:02:05 xd kernel: ACPI: EC: GPE=0x6e
>>>>> Jul 20 20:02:05 xd kernel: ACPI: \_SB_.PC00.LPCB.EC0_: Boot DSDT EC initialization complete
>>>>> Jul 20 20:02:05 xd kernel: ACPI: \_SB_.PC00.LPCB.EC0_: EC: Used to handle transactions and events
>>>>> Jul 20 20:02:05 xd kernel: iommu: Default domain type: Translated
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: vgaarb: setting as boot VGA device
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: vgaarb: bridge control possible
>>>>> Jul 20 20:02:05 xd kernel: vgaarb: loaded
>>>>> Jul 20 20:02:05 xd kernel: EDAC MC: Ver: 3.0.0
>>>>> Jul 20 20:02:05 xd kernel: Registered efivars operations
>>>>> Jul 20 20:02:05 xd kernel: NetLabel: Initializing
>>>>> Jul 20 20:02:05 xd kernel: NetLabel: domain hash size = 128
>>>>> Jul 20 20:02:05 xd kernel: NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
>>>>> Jul 20 20:02:05 xd kernel: NetLabel: unlabeled traffic allowed by default
>>>>> Jul 20 20:02:05 xd kernel: PCI: Using ACPI for IRQ routing
>>>>> Jul 20 20:02:05 xd kernel: PCI: pci_cache_line_size set to 64 bytes
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.5: can't claim BAR 0 [mem 0xfe010000-0xfe010fff]: no compatible bridge window
>>>>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
>>>>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x3bee5000-0x3bffffff]
>>>>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x3bf68000-0x3bffffff]
>>>>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x3bf6a000-0x3bffffff]
>>>>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x3fd99000-0x3fffffff]
>>>>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x424af000-0x43ffffff]
>>>>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x44c00000-0x47ffffff]
>>>>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x4b0800000-0x4b3ffffff]
>>>>> Jul 20 20:02:05 xd kernel: clocksource: Switched to clocksource tsc-early
>>>>> Jul 20 20:02:05 xd kernel: VFS: Disk quotas dquot_6.6.0
>>>>> Jul 20 20:02:05 xd kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
>>>>> Jul 20 20:02:05 xd kernel: AppArmor: AppArmor Filesystem Enabled
>>>>> Jul 20 20:02:05 xd kernel: pnp: PnP ACPI init
>>>>> Jul 20 20:02:05 xd kernel: system 00:00: [io 0x0680-0x069f] has been reserved
>>>>> Jul 20 20:02:05 xd kernel: system 00:00: [io 0x164e-0x164f] has been reserved
>>>>> Jul 20 20:02:05 xd kernel: system 00:00: [io 0xfd60-0xfd63] has been reserved
>>>>> Jul 20 20:02:05 xd kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
>>>>> Jul 20 20:02:05 xd kernel: pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
>>>>> Jul 20 20:02:05 xd kernel: system 00:02: [io 0x1854-0x1857] has been reserved
>>>>> Jul 20 20:02:05 xd kernel: system 00:02: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
>>>>> Jul 20 20:02:05 xd kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0303 (active)
>>>>> Jul 20 20:02:05 xd kernel: pnp 00:04: disabling [mem 0xc0000000-0xcfffffff] because it overlaps 0000:00:02.0 BAR 9 [mem 0x00000000-0xdfffffff 64bit pref]
>>>>> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfedc0000-0xfedc7fff] has been reserved
>>>>> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfeda0000-0xfeda0fff] has been reserved
>>>>> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfeda1000-0xfeda1fff] has been reserved
>>>>> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfed20000-0xfed7ffff] could not be reserved
>>>>> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfed90000-0xfed93fff] could not be reserved
>>>>> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfed45000-0xfed8ffff] could not be reserved
>>>>> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfee00000-0xfeefffff] has been reserved
>>>>> Jul 20 20:02:05 xd kernel: system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
>>>>> Jul 20 20:02:05 xd kernel: system 00:05: [io 0x1800-0x18fe] could not be reserved
>>>>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfe000000-0xfe01ffff] could not be reserved
>>>>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfe04c000-0xfe04ffff] has been reserved
>>>>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfe050000-0xfe0affff] has been reserved
>>>>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfe0d0000-0xfe0fffff] has been reserved
>>>>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfe200000-0xfe7fffff] has been reserved
>>>>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xff000000-0xffffffff] could not be reserved
>>>>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfd000000-0xfd68ffff] has been reserved
>>>>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfd6b0000-0xfd6cffff] has been reserved
>>>>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfd6f0000-0xfdffffff] has been reserved
>>>>> Jul 20 20:02:05 xd kernel: system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
>>>>> Jul 20 20:02:05 xd kernel: system 00:06: [io 0x2000-0x20fe] has been reserved
>>>>> Jul 20 20:02:05 xd kernel: system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
>>>>> Jul 20 20:02:05 xd kernel: system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
>>>>> Jul 20 20:02:05 xd kernel: pnp: PnP ACPI: found 8 devices
>>>>> Jul 20 20:02:05 xd kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
>>>>> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 2
>>>>> Jul 20 20:02:05 xd kernel: IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
>>>>> Jul 20 20:02:05 xd kernel: tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
>>>>> Jul 20 20:02:05 xd kernel: TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
>>>>> Jul 20 20:02:05 xd kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
>>>>> Jul 20 20:02:05 xd kernel: TCP: Hash tables configured (established 131072 bind 65536)
>>>>> Jul 20 20:02:05 xd kernel: UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
>>>>> Jul 20 20:02:05 xd kernel: UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
>>>>> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 1
>>>>> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 44
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: max bus depth: 1 pci_try_num: 2
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: BAR 9: assigned [mem 0x4020000000-0x40ffffffff 64bit pref]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: BAR 7: assigned [mem 0x4010000000-0x4016ffffff 64bit]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.0: BAR 0: assigned [mem 0x4017000000-0x4017000fff 64bit]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.3: BAR 0: assigned [mem 0x4017001000-0x4017001fff 64bit]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.0: BAR 0: assigned [mem 0x4017002000-0x4017002fff 64bit]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.1: BAR 0: assigned [mem 0x4017003000-0x4017003fff 64bit]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.5: BAR 0: assigned [mem 0x4f800000-0x4f800fff]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: BAR 6: no space for [mem size 0x00080000 pref]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: BAR 6: failed to assign [mem size 0x00080000 pref]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: PCI bridge to [bus 01]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [io 0x4000-0x4fff]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [mem 0x52000000-0x52ffffff]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [mem 0x6000000000-0x6011ffffff 64bit pref]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: PCI bridge to [bus 02]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: bridge window [io 0x3000-0x3fff]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: bridge window [mem 0x53000000-0x530fffff]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: PCI bridge to [bus 03]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: bridge window [mem 0x6015000000-0x60151fffff 64bit pref]
>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: resource 7 [mem 0x4f800000-0xbfffffff window]
>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: resource 8 [mem 0x4000000000-0x7fffffffff window]
>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:01: resource 0 [io 0x4000-0x4fff]
>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:01: resource 1 [mem 0x52000000-0x52ffffff]
>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:01: resource 2 [mem 0x6000000000-0x6011ffffff 64bit pref]
>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:02: resource 0 [io 0x3000-0x3fff]
>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:02: resource 1 [mem 0x53000000-0x530fffff]
>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:03: resource 2 [mem 0x6015000000-0x60151fffff 64bit pref]
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
>>>>> Jul 20 20:02:05 xd kernel: PCI: CLS 64 bytes, default 64
>>>>> Jul 20 20:02:05 xd kernel: Trying to unpack rootfs image as initramfs...
>>>>> Jul 20 20:02:05 xd kernel: Freeing initrd memory: 47452K
>>>>> Jul 20 20:02:05 xd kernel: DMAR: No ATSR found
>>>>> Jul 20 20:02:05 xd kernel: DMAR: dmar0: Using Queued invalidation
>>>>> Jul 20 20:02:05 xd kernel: DMAR: dmar1: Using Queued invalidation
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:00.0: Adding to iommu group 0
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: Adding to iommu group 1
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: Adding to iommu group 2
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:08.0: Adding to iommu group 3
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:0e.0: Adding to iommu group 4
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.0: Adding to iommu group 5
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.2: Adding to iommu group 5
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.0: Adding to iommu group 6
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.3: Adding to iommu group 6
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:16.0: Adding to iommu group 7
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:17.0: Adding to iommu group 8
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.0: Adding to iommu group 9
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.1: Adding to iommu group 9
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: Adding to iommu group 10
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: Adding to iommu group 11
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.0: Adding to iommu group 12
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.3: Adding to iommu group 12
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.4: Adding to iommu group 12
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.5: Adding to iommu group 12
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: Adding to iommu group 13
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: Adding to iommu group 14
>>>>> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: Adding to iommu group 15
>>>>> Jul 20 20:02:05 xd kernel: DMAR: Intel(R) Virtualization Technology for Directed I/O
>>>>> Jul 20 20:02:05 xd kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
>>>>> Jul 20 20:02:05 xd kernel: software IO TLB: mapped [mem 0x0000000037663000-0x000000003b663000] (64MB)
>>>>> Jul 20 20:02:05 xd kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x22df1149949, max_idle_ns: 440795312789 ns
>>>>> Jul 20 20:02:05 xd kernel: clocksource: Switched to clocksource tsc
>>>>> Jul 20 20:02:05 xd kernel: Initialise system trusted keyrings
>>>>> Jul 20 20:02:05 xd kernel: Key type blacklist registered
>>>>> Jul 20 20:02:05 xd kernel: workingset: timestamp_bits=36 max_order=22 bucket_order=0
>>>>> Jul 20 20:02:05 xd kernel: zbud: loaded
>>>>> Jul 20 20:02:05 xd kernel: integrity: Platform Keyring initialized
>>>>> Jul 20 20:02:05 xd kernel: Key type asymmetric registered
>>>>> Jul 20 20:02:05 xd kernel: Asymmetric key parser 'x509' registered
>>>>> Jul 20 20:02:05 xd kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
>>>>> Jul 20 20:02:05 xd kernel: io scheduler mq-deadline registered
>>>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:06.0: PME: Signaling with IRQ 122
>>>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:06.0: AER: enabled with IRQ 122
>>>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:06.0: DPC: enabled with IRQ 122
>>>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:06.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
>>>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.0: PME: Signaling with IRQ 123
>>>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.0: AER: enabled with IRQ 123
>>>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.0: DPC: enabled with IRQ 123
>>>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
>>>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.1: PME: Signaling with IRQ 124
>>>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.1: AER: enabled with IRQ 124
>>>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.1: DPC: enabled with IRQ 124
>>>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.1: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
>>>>> Jul 20 20:02:05 xd kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
>>>>> Jul 20 20:02:05 xd kernel: efifb: probing for efifb
>>>>> Jul 20 20:02:05 xd kernel: efifb: framebuffer at 0x4000000000, using 8128k, total 8128k
>>>>> Jul 20 20:02:05 xd kernel: efifb: mode is 1920x1080x32, linelength=7680, pages=1
>>>>> Jul 20 20:02:05 xd kernel: efifb: scrolling: redraw
>>>>> Jul 20 20:02:05 xd kernel: efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
>>>>> Jul 20 20:02:05 xd kernel: Console: switching to colour frame buffer device 240x67
>>>>> Jul 20 20:02:05 xd kernel: fb0: EFI VGA frame buffer device
>>>>> Jul 20 20:02:05 xd kernel: intel_idle: MWAIT substates: 0x11121020
>>>>> Jul 20 20:02:05 xd kernel: Monitor-Mwait will be used to enter C-1 state
>>>>> Jul 20 20:02:05 xd kernel: Monitor-Mwait will be used to enter C-2 state
>>>>> Jul 20 20:02:05 xd kernel: Monitor-Mwait will be used to enter C-3 state
>>>>> Jul 20 20:02:05 xd kernel: ACPI: \_SB_.PR00: Found 3 idle states
>>>>> Jul 20 20:02:05 xd kernel: intel_idle: v0.5.1 model 0x8C
>>>>> Jul 20 20:02:05 xd kernel: intel_idle: Local APIC timer is reliable in all C-states
>>>>> Jul 20 20:02:05 xd kernel: thermal LNXTHERM:00: registered as thermal_zone0
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Thermal Zone [TZ00] (28 C)
>>>>> Jul 20 20:02:05 xd kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
>>>>> Jul 20 20:02:05 xd kernel: hpet_acpi_add: no address or irqs in _CRS
>>>>> Jul 20 20:02:05 xd kernel: Linux agpgart interface v0.103
>>>>> Jul 20 20:02:05 xd kernel: AMD-Vi: AMD IOMMUv2 functionality not available on this system - This is not a bug.
>>>>> Jul 20 20:02:05 xd kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
>>>>> Jul 20 20:02:05 xd kernel: i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
>>>>> Jul 20 20:02:05 xd kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
>>>>> Jul 20 20:02:05 xd kernel: mousedev: PS/2 mouse device common for all mice
>>>>> Jul 20 20:02:05 xd kernel: rtc_cmos 00:01: RTC can wake from S4
>>>>> Jul 20 20:02:05 xd kernel: rtc_cmos 00:01: registered as rtc0
>>>>> Jul 20 20:02:05 xd kernel: rtc_cmos 00:01: setting system clock to 2022-07-20T19:02:03 UTC (1658343723)
>>>>> Jul 20 20:02:05 xd kernel: rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram
>>>>> Jul 20 20:02:05 xd kernel: intel_pstate: Intel P-state driver initializing
>>>>> Jul 20 20:02:05 xd kernel: intel_pstate: HWP enabled
>>>>> Jul 20 20:02:05 xd kernel: ledtrig-cpu: registered to indicate activity on CPUs
>>>>> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 10
>>>>> Jul 20 20:02:05 xd kernel: Segment Routing with IPv6
>>>>> Jul 20 20:02:05 xd kernel: mip6: Mobile IPv6
>>>>> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 17
>>>>> Jul 20 20:02:05 xd kernel: mpls_gso: MPLS GSO support
>>>>> Jul 20 20:02:05 xd kernel: microcode: sig=0x806c1, pf=0x80, revision=0x8a
>>>>> Jul 20 20:02:05 xd kernel: microcode: Microcode Update Driver: v2.2.
>>>>> Jul 20 20:02:05 xd kernel: resctrl: L2 allocation detected
>>>>> Jul 20 20:02:05 xd kernel: resctrl: L2DATA allocation detected
>>>>> Jul 20 20:02:05 xd kernel: resctrl: L2CODE allocation detected
>>>>> Jul 20 20:02:05 xd kernel: IPI shorthand broadcast: enabled
>>>>> Jul 20 20:02:05 xd kernel: sched_clock: Marking stable (836570439, 6379917)->(856451458, -13501102)
>>>>> Jul 20 20:02:05 xd kernel: registered taskstats version 1
>>>>> Jul 20 20:02:05 xd kernel: Loading compiled-in X.509 certificates
>>>>> Jul 20 20:02:05 xd kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
>>>>> Jul 20 20:02:05 xd kernel: Loaded X.509 cert 'Debian Secure Boot CA: 6ccece7e4c6c0d1f6149f3dd27dfcc5cbb419ea1'
>>>>> Jul 20 20:02:05 xd kernel: Loaded X.509 cert 'Debian Secure Boot Signer 2021 - linux: 4b6ef5abca669825178e052c84667ccbc0531f8c'
>>>>> Jul 20 20:02:05 xd kernel: zswap: loaded using pool lzo/zbud
>>>>> Jul 20 20:02:05 xd kernel: Key type ._fscrypt registered
>>>>> Jul 20 20:02:05 xd kernel: Key type .fscrypt registered
>>>>> Jul 20 20:02:05 xd kernel: Key type fscrypt-provisioning registered
>>>>> Jul 20 20:02:05 xd kernel: AppArmor: AppArmor sha1 policy hashing enabled
>>>>> Jul 20 20:02:05 xd kernel: Freeing unused kernel image (initmem) memory: 2424K
>>>>> Jul 20 20:02:05 xd kernel: Write protecting the kernel read-only data: 22528k
>>>>> Jul 20 20:02:05 xd kernel: Freeing unused kernel image (text/rodata gap) memory: 2040K
>>>>> Jul 20 20:02:05 xd kernel: Freeing unused kernel image (rodata/data gap) memory: 624K
>>>>> Jul 20 20:02:05 xd kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
>>>>> Jul 20 20:02:05 xd kernel: Run /init as init process
>>>>> Jul 20 20:02:05 xd kernel: with arguments:
>>>>> Jul 20 20:02:05 xd kernel: /init
>>>>> Jul 20 20:02:05 xd kernel: with environment:
>>>>> Jul 20 20:02:05 xd kernel: HOME=/
>>>>> Jul 20 20:02:05 xd kernel: TERM=linux
>>>>> Jul 20 20:02:05 xd kernel: BOOT_IMAGE=/vmlinuz-5.10.0-16-amd64
>>>>> Jul 20 20:02:05 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
>>>>> Jul 20 20:02:05 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
>>>>> Jul 20 20:02:05 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
>>>>> Jul 20 20:02:05 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
>>>>> Jul 20 20:02:05 xd kernel: acpi PNP0C14:03: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
>>>>> Jul 20 20:02:05 xd kernel: acpi PNP0C14:04: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
>>>>> Jul 20 20:02:05 xd kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:21/PNP0C0D:00/input/input1
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Lid Switch [LID0]
>>>>> Jul 20 20:02:05 xd kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Sleep Button [SLPB]
>>>>> Jul 20 20:02:05 xd kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input3
>>>>> Jul 20 20:02:05 xd kernel: battery: ACPI: Battery Slot [BAT1] (battery present)
>>>>> Jul 20 20:02:05 xd kernel: hid: raw HID events driver (C) Jiri Kosina
>>>>> Jul 20 20:02:05 xd kernel: vmd 0000:00:0e.0: PCI host bridge to bus 10000:e0
>>>>> Jul 20 20:02:05 xd kernel: pci_bus 10000:e0: root bus resource [bus e0-ff]
>>>>> Jul 20 20:02:05 xd kernel: pci_bus 10000:e0: root bus resource [mem 0x50000000-0x51ffffff]
>>>>> Jul 20 20:02:05 xd kernel: pci_bus 10000:e0: root bus resource [mem 0x6015302000-0x60153fffff 64bit]
>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: [8086:a0d3] type 00 class 0x010601
>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x10: [mem 0x00000000-0x00001fff]
>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x14: [mem 0x00000000-0x000000ff]
>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x18: [io 0x0000-0x0007]
>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x1c: [io 0x0000-0x0003]
>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x20: [io 0x0000-0x001f]
>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x24: [mem 0x50000000-0x500007ff]
>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: PME# supported from D3hot
>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: Adding to iommu group 4
>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.0: [8086:09ab] type 00 class 0x088000
>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.0: Adding to iommu group 4
>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: [8086:a0bc] type 01 class 0x060400
>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: PME# supported from D0 D3hot D3cold
>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: PTM enabled (root), 4ns granularity
>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: Adding to iommu group 4
>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: Primary bus is hard wired to 0
>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e1:00.0: [2646:500c] type 00 class 0x010802
>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e1:00.0: reg 0x10: [mem 0x50100000-0x50103fff 64bit]
>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e1:00.0: Adding to iommu group 4
>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: PCI bridge to [bus e1]
>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: bridge window [io 0x0000-0x0fff]
>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: bridge window [mem 0x50100000-0x501fffff]
>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: Primary bus is hard wired to 0
>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: BAR 14: assigned [mem 0x50000000-0x500fffff]
>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 0: assigned [mem 0x50100000-0x50101fff]
>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: BAR 13: no space for [io size 0x1000]
>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: BAR 13: failed to assign [io size 0x1000]
>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 5: assigned [mem 0x50102000-0x501027ff]
>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 1: assigned [mem 0x50102800-0x501028ff]
>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 4: no space for [io size 0x0020]
>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 4: failed to assign [io size 0x0020]
>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 2: no space for [io size 0x0008]
>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 2: failed to assign [io size 0x0008]
>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 3: no space for [io size 0x0004]
>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 3: failed to assign [io size 0x0004]
>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e1:00.0: BAR 0: assigned [mem 0x50000000-0x50003fff 64bit]
>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: PCI bridge to [bus e1]
>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: bridge window [mem 0x50000000-0x500fffff]
>>>>> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: can't derive routing for PCI INT A
>>>>> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: PCI INT A: no GSI
>>>>> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: PME: Signaling with IRQ 144
>>>>> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: AER: enabled with IRQ 144
>>>>> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: DPC: enabled with IRQ 144
>>>>> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
>>>>> Jul 20 20:02:05 xd kernel: vmd 0000:00:0e.0: Bound to PCI domain 10000
>>>>> Jul 20 20:02:05 xd kernel: i801_smbus 0000:00:1f.4: SPD Write Disable is set
>>>>> Jul 20 20:02:05 xd kernel: i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
>>>>> Jul 20 20:02:05 xd kernel: i2c i2c-0: 2/2 memory slots populated (from DMI)
>>>>> Jul 20 20:02:05 xd kernel: i2c i2c-0: Successfully instantiated SPD at 0x50
>>>>> Jul 20 20:02:05 xd kernel: r8168: loading out-of-tree module taints kernel.
>>>>> Jul 20 20:02:05 xd kernel: r8168: module verification failed: signature and/or required key missing - tainting kernel
>>>>> Jul 20 20:02:05 xd kernel: r8168 Gigabit Ethernet driver 8.048.03-NAPI loaded
>>>>> Jul 20 20:02:05 xd kernel: ACPI: bus type USB registered
>>>>> Jul 20 20:02:05 xd kernel: usbcore: registered new interface driver usbfs
>>>>> Jul 20 20:02:05 xd kernel: usbcore: registered new interface driver hub
>>>>> Jul 20 20:02:05 xd kernel: usbcore: registered new device driver usb
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Button [PWRB]
>>>>> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
>>>>> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
>>>>> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000000009810
>>>>> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
>>>>> Jul 20 20:02:05 xd kernel: r8168: This product is covered by one or more of the following patents: US6,570,884, US6,115,776, and US6,327,625.
>>>>> Jul 20 20:02:05 xd kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
>>>>> Jul 20 20:02:05 xd kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
>>>>> Jul 20 20:02:05 xd kernel: usb usb1: Product: xHCI Host Controller
>>>>> Jul 20 20:02:05 xd kernel: usb usb1: Manufacturer: Linux 5.10.0-16-amd64 xhci-hcd
>>>>> Jul 20 20:02:05 xd kernel: usb usb1: SerialNumber: 0000:00:14.0
>>>>> Jul 20 20:02:05 xd kernel: hub 1-0:1.0: USB hub found
>>>>> Jul 20 20:02:05 xd kernel: hub 1-0:1.0: 12 ports detected
>>>>> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
>>>>> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
>>>>> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
>>>>> Jul 20 20:02:05 xd kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
>>>>> Jul 20 20:02:05 xd kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
>>>>> Jul 20 20:02:05 xd kernel: usb usb2: Product: xHCI Host Controller
>>>>> Jul 20 20:02:05 xd kernel: usb usb2: Manufacturer: Linux 5.10.0-16-amd64 xhci-hcd
>>>>> Jul 20 20:02:05 xd kernel: usb usb2: SerialNumber: 0000:00:14.0
>>>>> Jul 20 20:02:05 xd kernel: hub 2-0:1.0: USB hub found
>>>>> Jul 20 20:02:05 xd kernel: hub 2-0:1.0: 4 ports detected
>>>>> Jul 20 20:02:05 xd kernel: r8168 Copyright (C) 2020 Realtek NIC software team <nicfae@realtek.com>
>>>>> This program comes with ABSOLUTELY NO WARRANTY; for details, please see <http://www.gnu.org/licenses/>.
>>>>> This is free software, and you are welcome to redistribute it under certain conditions; see <http://www.gnu.org/licenses/>.
>>>>> Jul 20 20:02:05 xd kernel: SCSI subsystem initialized
>>>>> Jul 20 20:02:05 xd kernel: intel-lpss 0000:00:15.0: enabling device (0004 -> 0006)
>>>>> Jul 20 20:02:05 xd kernel: idma64 idma64.0: Found Intel integrated DMA 64-bit
>>>>> Jul 20 20:02:05 xd kernel: r8168 0000:02:00.0 enp2s0: renamed from eth0
>>>>> Jul 20 20:02:05 xd kernel: nvme nvme0: pci function 10000:e1:00.0
>>>>> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: can't derive routing for PCI INT A
>>>>> Jul 20 20:02:05 xd kernel: nvme 10000:e1:00.0: PCI INT A: no GSI
>>>>> Jul 20 20:02:05 xd kernel: libata version 3.00 loaded.
>>>>> Jul 20 20:02:05 xd kernel: nvme nvme0: missing or invalid SUBNQN field.
>>>>> Jul 20 20:02:05 xd kernel: nvme nvme0: Shutdown timeout set to 10 seconds
>>>>> Jul 20 20:02:05 xd kernel: nvme nvme0: 8/0/0 default/read/poll queues
>>>>> Jul 20 20:02:05 xd kernel: nvme0n1: p1 p2 p3 p4 p5
>>>>> Jul 20 20:02:05 xd kernel: intel-lpss 0000:00:15.3: enabling device (0004 -> 0006)
>>>>> Jul 20 20:02:05 xd kernel: idma64 idma64.1: Found Intel integrated DMA 64-bit
>>>>> Jul 20 20:02:05 xd kernel: i2c_hid i2c-ELAN0515:01: supply vdd not found, using dummy regulator
>>>>> Jul 20 20:02:05 xd kernel: i2c_hid i2c-ELAN0515:01: supply vddl not found, using dummy regulator
>>>>> Jul 20 20:02:05 xd kernel: intel-lpss 0000:00:19.0: enabling device (0004 -> 0006)
>>>>> Jul 20 20:02:05 xd kernel: idma64 idma64.2: Found Intel integrated DMA 64-bit
>>>>> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: [drm] VT-d active for gfx access
>>>>> Jul 20 20:02:05 xd kernel: checking generic (4000000000 7f0000) vs hw (6014000000 1000000)
>>>>> Jul 20 20:02:05 xd kernel: checking generic (4000000000 7f0000) vs hw (4000000000 10000000)
>>>>> Jul 20 20:02:05 xd kernel: fb0: switching to inteldrmfb from EFI VGA
>>>>> Jul 20 20:02:05 xd kernel: Console: switching to colour dummy device 80x25
>>>>> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: vgaarb: deactivate vga console
>>>>> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
>>>>> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: firmware: direct-loading firmware i915/tgl_dmc_ver2_08.bin
>>>>> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/tgl_dmc_ver2_08.bin (v2.8)
>>>>> Jul 20 20:02:05 xd kernel: intel-lpss 0000:00:19.1: enabling device (0004 -> 0006)
>>>>> Jul 20 20:02:05 xd kernel: idma64 idma64.3: Found Intel integrated DMA 64-bit
>>>>> Jul 20 20:02:05 xd kernel: input: ELAN0515:01 04F3:3142 Mouse as /devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input4
>>>>> Jul 20 20:02:05 xd kernel: input: ELAN0515:01 04F3:3142 Touchpad as /devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input6
>>>>> Jul 20 20:02:05 xd kernel: hid-generic 0018:04F3:3142.0001: input,hidraw0: I2C HID v1.00 Mouse [ELAN0515:01 04F3:3142] on i2c-ELAN0515:01
>>>>> Jul 20 20:02:05 xd kernel: ahci 10000:e0:17.0: version 3.0
>>>>> Jul 20 20:02:05 xd kernel: ahci 10000:e0:17.0: can't derive routing for PCI INT A
>>>>> Jul 20 20:02:05 xd kernel: ahci 10000:e0:17.0: PCI INT A: no GSI
>>>>> Jul 20 20:02:05 xd kernel: ahci 10000:e0:17.0: AHCI 0001.0301 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
>>>>> Jul 20 20:02:05 xd kernel: ahci 10000:e0:17.0: flags: 64bit ncq sntf pm clo only pio slum part deso sadm sds
>>>>> Jul 20 20:02:05 xd kernel: scsi host0: ahci
>>>>> Jul 20 20:02:05 xd kernel: scsi host1: ahci
>>>>> Jul 20 20:02:05 xd kernel: ata1: SATA max UDMA/133 abar m2048@0x50102000 port 0x50102100 irq 158
>>>>> Jul 20 20:02:05 xd kernel: ata2: SATA max UDMA/133 abar m2048@0x50102000 port 0x50102180 irq 158
>>>>> Jul 20 20:02:05 xd kernel: usb 1-7: new full-speed USB device number 2 using xhci_hcd
>>>>> Jul 20 20:02:05 xd kernel: usb 1-7: New USB device found, idVendor=04f3, idProduct=0c4f, bcdDevice= 1.61
>>>>> Jul 20 20:02:05 xd kernel: usb 1-7: New USB device strings: Mfr=1, Product=2, SerialNumber=0
>>>>> Jul 20 20:02:05 xd kernel: usb 1-7: Product: ELAN:Fingerprint
>>>>> Jul 20 20:02:05 xd kernel: usb 1-7: Manufacturer: ELAN
>>>>> Jul 20 20:02:05 xd kernel: ata1: SATA link down (SStatus 0 SControl 300)
>>>>> Jul 20 20:02:05 xd kernel: ata2: SATA link down (SStatus 0 SControl 300)
>>>>> Jul 20 20:02:05 xd kernel: usb 1-8: new high-speed USB device number 3 using xhci_hcd
>>>>> Jul 20 20:02:05 xd kernel: usb 1-8: New USB device found, idVendor=0408, idProduct=a061, bcdDevice= 0.04
>>>>> Jul 20 20:02:05 xd kernel: usb 1-8: New USB device strings: Mfr=1, Product=2, SerialNumber=0
>>>>> Jul 20 20:02:05 xd kernel: usb 1-8: Product: HD User Facing
>>>>> Jul 20 20:02:05 xd kernel: usb 1-8: Manufacturer: SunplusIT Inc
>>>>> Jul 20 20:02:05 xd kernel: usb 1-10: new high-speed USB device number 4 using xhci_hcd
>>>>> Jul 20 20:02:05 xd kernel: usb 1-10: New USB device found, idVendor=04ca, idProduct=3802, bcdDevice= 1.00
>>>>> Jul 20 20:02:05 xd kernel: usb 1-10: New USB device strings: Mfr=5, Product=6, SerialNumber=7
>>>>> Jul 20 20:02:05 xd kernel: usb 1-10: Product: Wireless_Device
>>>>> Jul 20 20:02:05 xd kernel: usb 1-10: Manufacturer: MediaTek Inc.
>>>>> Jul 20 20:02:05 xd kernel: usb 1-10: SerialNumber: 000000000
>>>>> Jul 20 20:02:05 xd kernel: [drm] Initialized i915 1.6.0 20200917 for 0000:00:02.0 on minor 0
>>>>> Jul 20 20:02:05 xd kernel: [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Video Device [PEGP] (multi-head: yes rom: no post: no)
>>>>> Jul 20 20:02:05 xd kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/LNXVIDEO:00/input/input7
>>>>> Jul 20 20:02:05 xd kernel: ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
>>>>> Jul 20 20:02:05 xd kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input8
>>>>> Jul 20 20:02:05 xd kernel: fbcon: i915drmfb (fb0) is primary device
>>>>> Jul 20 20:02:05 xd kernel: Console: switching to colour frame buffer device 240x67
>>>>> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
>>>>> Jul 20 20:02:05 xd kernel: PM: Image not found (code -22)
>>>>> Jul 20 20:02:05 xd kernel: EXT4-fs (nvme0n1p3): mounting ext3 file system using the ext4 subsystem
>>>>> Jul 20 20:02:05 xd kernel: EXT4-fs (nvme0n1p3): mounted filesystem with ordered data mode. Opts: (null)
>>>>> Jul 20 20:02:05 xd kernel: Not activating Mandatory Access Control as /sbin/tomoyo-init does not exist.
>>>>> Jul 20 20:02:05 xd systemd[1]: Inserted module 'autofs4'
>>>>> Jul 20 20:02:05 xd systemd[1]: systemd 247.3-7 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=unified)
>>>>> Jul 20 20:02:05 xd systemd[1]: Detected architecture x86-64.
>>>>> Jul 20 20:02:05 xd systemd[1]: Set hostname to <xd>.
>>>>> Jul 20 20:02:05 xd systemd[1]: /lib/systemd/system/plymouth-start.service:16: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed.
>>>>> Jul 20 20:02:05 xd systemd[1]: Queued start job for default target Graphical Interface.
>>>>> Jul 20 20:02:05 xd systemd[1]: Created slice system-getty.slice.
>>>>> Jul 20 20:02:05 xd systemd[1]: Created slice system-modprobe.slice.
>>>>> Jul 20 20:02:05 xd systemd[1]: Created slice system-systemd\x2dfsck.slice.
>>>>> Jul 20 20:02:05 xd systemd[1]: Created slice User and Session Slice.
>>>>> Jul 20 20:02:05 xd systemd[1]: Started Forward Password Requests to Wall Directory Watch.
>>>>> Jul 20 20:02:05 xd systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
>>>>> Jul 20 20:02:05 xd systemd[1]: Reached target User and Group Name Lookups.
>>>>> Jul 20 20:02:05 xd systemd[1]: Reached target Remote File Systems.
>>>>> Jul 20 20:02:05 xd systemd[1]: Reached target Slices.
>>>>> Jul 20 20:02:05 xd systemd[1]: Listening on Device-mapper event daemon FIFOs.
>>>>> Jul 20 20:02:05 xd systemd[1]: Listening on LVM2 poll daemon socket.
>>>>> Jul 20 20:02:05 xd systemd[1]: Listening on Syslog Socket.
>>>>> Jul 20 20:02:05 xd systemd[1]: Listening on fsck to fsckd communication Socket.
>>>>> Jul 20 20:02:05 xd systemd[1]: Listening on initctl Compatibility Named Pipe.
>>>>> Jul 20 20:02:05 xd systemd[1]: Listening on Journal Audit Socket.
>>>>> Jul 20 20:02:05 xd systemd[1]: Listening on Journal Socket (/dev/log).
>>>>> Jul 20 20:02:05 xd systemd[1]: Listening on Journal Socket.
>>>>> Jul 20 20:02:05 xd systemd[1]: Listening on udev Control Socket.
>>>>> Jul 20 20:02:05 xd systemd[1]: Listening on udev Kernel Socket.
>>>>> Jul 20 20:02:05 xd systemd[1]: Mounting Huge Pages File System...
>>>>> Jul 20 20:02:05 xd systemd[1]: Mounting POSIX Message Queue File System...
>>>>> Jul 20 20:02:05 xd systemd[1]: Mounting Kernel Debug File System...
>>>>> Jul 20 20:02:05 xd systemd[1]: Mounting Kernel Trace File System...
>>>>> Jul 20 20:02:05 xd systemd[1]: Finished Availability of block devices.
>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Set the console keyboard layout...
>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Create list of static device nodes for the current kernel...
>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Load Kernel Module configfs...
>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Load Kernel Module drm...
>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Load Kernel Module fuse...
>>>>> Jul 20 20:02:05 xd systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
>>>>> Jul 20 20:02:05 xd systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Journal Service...
>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Load Kernel Modules...
>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Remount Root and Kernel File Systems...
>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Coldplug All udev Devices...
>>>>> Jul 20 20:02:05 xd systemd[1]: Mounted Huge Pages File System.
>>>>> Jul 20 20:02:05 xd systemd[1]: Mounted POSIX Message Queue File System.
>>>>> Jul 20 20:02:05 xd systemd[1]: Mounted Kernel Debug File System.
>>>>> Jul 20 20:02:05 xd systemd[1]: Mounted Kernel Trace File System.
>>>>> Jul 20 20:02:05 xd systemd[1]: Finished Create list of static device nodes for the current kernel.
>>>>> Jul 20 20:02:05 xd systemd[1]: modprobe@configfs.service: Succeeded.
>>>>> Jul 20 20:02:05 xd systemd[1]: Finished Load Kernel Module configfs.
>>>>> Jul 20 20:02:05 xd systemd[1]: modprobe@drm.service: Succeeded.
>>>>> Jul 20 20:02:05 xd systemd[1]: Finished Load Kernel Module drm.
>>>>> Jul 20 20:02:05 xd systemd[1]: Mounting Kernel Configuration File System...
>>>>> Jul 20 20:02:05 xd systemd[1]: Mounted Kernel Configuration File System.
>>>>> Jul 20 20:02:05 xd kernel: EXT4-fs (nvme0n1p3): re-mounted. Opts: errors=remount-ro
>>>>> Jul 20 20:02:05 xd systemd[1]: Finished Remount Root and Kernel File Systems.
>>>>> Jul 20 20:02:05 xd kernel: fuse: init (API version 7.32)
>>>>> Jul 20 20:02:05 xd systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
>>>>> Jul 20 20:02:05 xd systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped.
>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Load/Save Random Seed...
>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Create System Users...
>>>>> Jul 20 20:02:05 xd systemd[1]: modprobe@fuse.service: Succeeded.
>>>>> Jul 20 20:02:05 xd systemd[1]: Finished Load Kernel Module fuse.
>>>>> Jul 20 20:02:05 xd systemd[1]: Mounting FUSE Control File System...
>>>>> Jul 20 20:02:05 xd systemd[1]: Mounted FUSE Control File System.
>>>>> Jul 20 20:02:05 xd kernel: lp: driver loaded but no devices found
>>>>> Jul 20 20:02:05 xd kernel: ppdev: user-space parallel port driver
>>>>> Jul 20 20:02:05 xd systemd[1]: Finished Load/Save Random Seed.
>>>>> Jul 20 20:02:05 xd systemd[1]: Condition check resulted in First Boot Complete being skipped.
>>>>> Jul 20 20:02:05 xd systemd[1]: Finished Create System Users.
>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Create Static Device Nodes in /dev...
>>>>> Jul 20 20:02:05 xd systemd[1]: Finished Create Static Device Nodes in /dev.
>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Rule-based Manager for Device Events and Files...
>>>>> Jul 20 20:02:05 xd systemd[1]: Finished Set the console keyboard layout.
>>>>> Jul 20 20:02:05 xd systemd[1]: Started Journal Service.
>>>>> Jul 20 20:02:05 xd kernel: nvidia: module license 'NVIDIA' taints kernel.
>>>>> Jul 20 20:02:05 xd kernel: Disabling lock debugging due to kernel taint
>>>>> Jul 20 20:02:05 xd kernel: nvidia-nvlink: Nvlink Core is being initialized, major device number 245
>>>>> Jul 20 20:02:05 xd kernel:
>>>>> Jul 20 20:02:05 xd kernel: nvidia 0000:01:00.0: enabling device (0006 -> 0007)
>>>>> Jul 20 20:02:05 xd kernel: NVRM: loading NVIDIA UNIX x86_64 Kernel Module 470.129.06 Thu May 12 22:52:02 UTC 2022
>>>>> Jul 20 20:02:05 xd kernel: input: Acer Wireless Radio Control as /devices/LNXSYSTM:00/10251229:00/input/input9
>>>>> Jul 20 20:02:05 xd kernel: input: Intel HID events as /devices/platform/INTC1051:00/input/input10
>>>>> Jul 20 20:02:05 xd kernel: intel-hid INTC1051:00: platform supports 5 button array
>>>>> Jul 20 20:02:05 xd kernel: input: Intel HID 5 button array as /devices/platform/INTC1051:00/input/input11
>>>>> Jul 20 20:02:05 xd kernel: intel_pmc_core INT33A1:00: initialized
>>>>> Jul 20 20:02:05 xd kernel: ACPI: AC Adapter [ACAD] (on-line)
>>>>> Jul 20 20:02:05 xd kernel: nvidia-modeset: Loading NVIDIA Kernel Mode Setting Driver for UNIX platforms 470.129.06 Thu May 12 22:42:45 UTC 2022
>>>>> Jul 20 20:02:05 xd kernel: mc: Linux media interface: v0.10
>>>>> Jul 20 20:02:05 xd kernel: mei_me 0000:00:16.0: enabling device (0000 -> 0002)
>>>>> Jul 20 20:02:05 xd kernel: ee1004 0-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
>>>>> Jul 20 20:02:05 xd kernel: [drm] [nvidia-drm] [GPU ID 0x00000100] Loading driver
>>>>> Jul 20 20:02:05 xd kernel: [drm] Initialized nvidia-drm 0.0.0 20160202 for 0000:01:00.0 on minor 1
>>>>> Jul 20 20:02:05 xd kernel: videodev: Linux video capture interface: v2.00
>>>>> Jul 20 20:02:05 xd kernel: iTCO_vendor_support: vendor-support=0
>>>>> Jul 20 20:02:05 xd kernel: iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
>>>>> Jul 20 20:02:05 xd kernel: iTCO_wdt: Found a Intel PCH TCO device (Version=6, TCOBASE=0x0400)
>>>>> Jul 20 20:02:05 xd kernel: iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
>>>>> Jul 20 20:02:05 xd kernel: EXT4-fs (nvme0n1p2): mounting ext2 file system using the ext4 subsystem
>>>>> Jul 20 20:02:05 xd kernel: EXT4-fs (nvme0n1p2): mounted filesystem without journal. Opts: (null)
>>>>> Jul 20 20:02:05 xd kernel: ext2 filesystem being mounted at /boot supports timestamps until 2038 (0x7fffffff)
>>>>> Jul 20 20:02:05 xd kernel: uvcvideo: Found UVC 1.00 device HD User Facing (0408:a061)
>>>>> Jul 20 20:02:05 xd kernel: Adding 31182844k swap on /dev/nvme0n1p4. Priority:-2 extents:1 across:31182844k SSFS
>>>>> Jul 20 20:02:05 xd kernel: input: HD User Facing: HD User Facing as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/input/input12
>>>>> Jul 20 20:02:05 xd kernel: input: PC Speaker as /devices/platform/pcspkr/input/input13
>>>>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=401 comm="apparmor_parser"
>>>>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-oopslash" pid=402 comm="apparmor_parser"
>>>>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=405 comm="apparmor_parser"
>>>>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=405 comm="apparmor_parser"
>>>>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=403 comm="apparmor_parser"
>>>>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=403 comm="apparmor_parser"
>>>>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=403 comm="apparmor_parser"
>>>>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cups-browsed" pid=407 comm="apparmor_parser"
>>>>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.840:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-senddoc" pid=409 comm="apparmor_parser"
>>>>> Jul 20 20:02:05 xd kernel: usbcore: registered new interface driver uvcvideo
>>>>> Jul 20 20:02:05 xd kernel: USB Video Class driver (1.1.1)
>>>>> Jul 20 20:02:05 xd kernel: pstore: Using crash dump compression: deflate
>>>>> Jul 20 20:02:05 xd kernel: input: ELAN0515:01 04F3:3142 Mouse as /devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input14
>>>>> Jul 20 20:02:05 xd kernel: input: ELAN0515:01 04F3:3142 Touchpad as /devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input16
>>>>> Jul 20 20:02:05 xd kernel: hid-multitouch 0018:04F3:3142.0001: input,hidraw0: I2C HID v1.00 Mouse [ELAN0515:01 04F3:3142] on i2c-ELAN0515:01
>>>>> Jul 20 20:02:05 xd kernel: pstore: Registered efi as persistent store backend
>>>>> Jul 20 20:02:05 xd kernel: acer_wmi: Acer Laptop ACPI-WMI Extras
>>>>> Jul 20 20:02:05 xd kernel: acer_wmi: Function bitmap for Communication Button: 0x801
>>>>> Jul 20 20:02:05 xd kernel: input: Acer WMI hotkeys as /devices/virtual/input/input17
>>>>> Jul 20 20:02:05 xd kernel: snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040100
>>>>> Jul 20 20:02:05 xd kernel: snd_hda_intel 0000:00:1f.3: Digital mics found on Skylake+ platform, using SOF driver
>>>>> Jul 20 20:02:05 xd kernel: cryptd: max_cpu_qlen set to 1000
>>>>> Jul 20 20:02:06 xd kernel: AVX2 version of gcm_enc/dec engaged.
>>>>> Jul 20 20:02:06 xd kernel: AES CTR mode by8 optimization enabled
>>>>> Jul 20 20:02:06 xd kernel: resource sanity check: requesting [mem 0xfedc0000-0xfedcdfff], which spans more than pnp 00:04 [mem 0xfedc0000-0xfedc7fff]
>>>>> Jul 20 20:02:06 xd kernel: caller tgl_uncore_imc_freerunning_init_box+0xbb/0x100 [intel_uncore] mapping multiple BARs
>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040100
>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: Digital mics found on Skylake+ platform, using SOF driver
>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: enabling device (0000 -> 0002)
>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if 0x040100
>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: use msi interrupt mode
>>>>> Jul 20 20:02:06 xd kernel: ACPI Warning: \_SB.PC00.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20200925/nsarguments-61)
>>>>> Jul 20 20:02:06 xd kernel: enp2s0: 0xffffbd82000e9000, 08:8f:c3:4f:86:c5, IRQ 145
>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: hda codecs found, mask 5
>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: using HDA machine driver skl_hda_dsp_generic now
>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: DMICs detected in NHLT tables: 2
>>>>> Jul 20 20:02:06 xd kernel: alg: No test for fips(ansi_cprng) (fips_ansi_cprng)
>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: firmware: failed to load intel/sof/sof-tgl.ri (-2)
>>>>> Jul 20 20:02:06 xd kernel: firmware_class: See https://wiki.debian.org/Firmware for information about missing firmware
>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: Direct firmware load for intel/sof/sof-tgl.ri failed with error -2
>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: error: request firmware intel/sof/sof-tgl.ri failed err: -2
>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: error: failed to load DSP firmware -2
>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: error: sof_probe_work failed err: -2
>>>>> Jul 20 20:02:06 xd kernel: Bluetooth: Core ver 2.22
>>>>> Jul 20 20:02:06 xd kernel: NET: Registered protocol family 31
>>>>> Jul 20 20:02:06 xd kernel: Bluetooth: HCI device and connection manager initialized
>>>>> Jul 20 20:02:06 xd kernel: Bluetooth: HCI socket layer initialized
>>>>> Jul 20 20:02:06 xd kernel: Bluetooth: L2CAP socket layer initialized
>>>>> Jul 20 20:02:06 xd kernel: Bluetooth: SCO socket layer initialized
>>>>> Jul 20 20:02:06 xd kernel: usbcore: registered new interface driver btusb
>>>>> Jul 20 20:02:07 xd kernel: intel_rapl_msr: PL4 support detected.
>>>>> Jul 20 20:02:07 xd kernel: intel_rapl_common: Found RAPL domain package
>>>>> Jul 20 20:02:07 xd kernel: intel_rapl_common: Found RAPL domain core
>>>>> Jul 20 20:02:07 xd kernel: intel_rapl_common: Found RAPL domain uncore
>>>>> Jul 20 20:02:07 xd kernel: mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_component_ops [i915])
>>>>> Jul 20 20:02:07 xd kernel: Bluetooth: BNEP (Ethernet Emulation) ver 1.3
>>>>> Jul 20 20:02:07 xd kernel: Bluetooth: BNEP filters: protocol multicast
>>>>> Jul 20 20:02:07 xd kernel: Bluetooth: BNEP socket layer initialized
>>>>> Jul 20 20:02:09 xd kernel: r8168: enp2s0: link up
>>>>> Jul 20 20:02:09 xd kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
>>>>> Jul 20 20:02:09 xd kernel: rfkill: input handler disabled
>>>>> Jul 20 20:02:17 xd kernel: rfkill: input handler enabled
>>>>> Jul 20 20:02:18 xd kernel: rfkill: input handler disabled
>>>>>
>>>>
>>
>
Re: Boot into Xen on debian11 [ In reply to ]
On 7/29/2022 12:33 PM, Bruno wrote:
>
> Xen
>
>
>
> Hello Chuck, Leigh, Group.
>
>
> I have upgraded to testing as suggested.
>
>
> Xen boot is still not working. It lands on initramfs.
>
>
> Do you think it’s about a change that should be done at firmware or Xen, please?
>

I presume it boots OK without Xen, so you probably need some change to Xen.
Let me know if it also does not boot without Xen.  Maybe your hardware and BIOS
are too new for Xen.

You should also check your BIOS settings to make sure the virtualization options
are enabled (VT-x if you have an Intel CPU or AMD-V if you have an AMD CPU).
You can also try different settings for the disk controller, etc., in your BIOS.

Also, I think I remember from your earlier messages that you were booting the
xen-4.14-amd64.gz file on Debian 11, which is probably xen-4.16-amd64.gz on Debian
testing. That is the default that grub uses when booting Debian with Xen, but
grub also gives the 'Advanced options for Debian GNU/Linux (with Xen hypervisor)'
boot options on the grub menu. Did you try any of those? Specifically, maybe try
the boot options under the 'Xen hypervisor, version 4.16-amd64.efi' boot submenu, if
your BIOS is UEFI (it probably is if you have a fairly new laptop). That doesn't work
with my eight year old system, but it might be necessary on your much newer laptop
to use the xen-4.16-amd64.efi version of Xen instead of the xen-4.16-amd64.gz version
of Xen (both versions are installed with the Debian Xen packages, but only one of them is
used when booting with Xen).

>
> This time I can see the hard drive partitions listed under /dev (nvme0n1p1-5), but I cannot mount them. I cannot access a thumb drive either /dev/block, when mounted has two strange symlinks to ../sda1 (8:0 and 1:8). This is a bit frustrating because it does not allow me to export dmesg or other info.
>
>
> Im not receiving the error messages on screen before initramfs, they got hidden now, but I do get:
>
>
>     Gave up waiting for suspend/resume device
>
>      Gave up waiting for root file system device.  Common problems:
>
> * Boot args (cat /proc/cmdline) - Check rootdelay= (did the system wait long enough?)
> * Missing modules (cat /proc/modules; ls /dev)
>
> ALERT! UUID=0123abc does not exist. Dropping to a shell!
>
>
> On the dmesg, I got again the ACPI errors:
>

Is dmesg run from the initramfs prompt?

>
> ACPI BIOS Error
>
> (bug): Failure creating named ob
>
> I_SB.PCOO.XHCI.RHUB.HS05._UPC], AE ALREADY _EXISTS (Z0211217/dsuloadZ-326)
>
> ACPI Error: AE_ALREADY EXISTS, During name
>
> slookun/catalog
>
> -9451181 ACPI: Skipping parse of AML opcode: OpcodeNane unavailable
>
> (20211217/psobject-z20)
>
> (0x0014)
>
>
> Repeated several times
>
>
> ACPI: Skipping parse of AML opcode: DpcodeNane unavailable (0x0014)
>

I saw ACPI errors like that reported on this page:

https://forums.unraid.net/topic/117673-issues-with-getting-single-gpu-passthrough-and-vbios-dump-need-help/

but unfortunately no solution for the problem was posted there. I don't think
that case involved Xen, either.

> API: 15 API AML tables successfully acquired and loaded
>
> xen: registering
>
> gsi 9 triggering 0 polarity 0
>
>
> Latter on the dmesg I got repeated errors like this:
>
>
> RIP: 0033:0x7 969a2e2äc9
>
> RSP: 002b:00007ffaff421a28 FLAGS: 00000246 RIG RAX: 0000000000000139
>
> RAX: Efffffffffffffda RBX: 00005582Bb061d10 RCX: 00007 969aZeZäc9
>
> 244.4412241 RDX:000000000 RSI: 000071969a49bfOd RDI: 00000000000000
>
> RB: 0000000000020000 ROB: 0000000000000000 R09: 000055828b04c290
>
> R10: 000000000000000c R11: 0000000000000246 R12: 00007f969a49bf®d
>
> R13: 000000GBOOOOOOOO R14: 000055B28b060aZO R15: 00005582Bb06110
>
>
> (/TASK>
>
> INFO: task systemd-udevd: 190 blocked for more than 120 seconds.
>
>
> Tainted: G
>
>
> DE
>
> 5.18.0-2-amd64 #1 Debian 5.18.5-1
>
> "echo 0 › proc/sys/kernel/hung_task_timeout_secs"
>
> disables this nessage.
>
> task: systend-udevd
>
> state:D stack:
>
> © pid: 190 ppid:
>
> Call Trace:
>
> 164 flags: 0x00004004
>
> (TASK)
>
> schedule+0x30b/0x9e0
>
>
> schedule+0x4e/Oxb0
>
>
> do_init_module+0x1c3/0x260
>
> do_sys_finit_module+Oxb4/0x120
>
> do_sysca11_64+0x3B/Oxc0
>
>
> —-
>

Sorry, I am not knowledgeable enough to understand what these error
messages might mean. Perhaps a Xen developer can interpret the
error messages you are seeing. They should be interested in problems
with booting Xen on a newer laptop so they can update Xen if necessary.

>
> And here you have another output that can be relevant:
>
>
> (initranfs) cat /proc/cndline
>
> placeholder root=UUID=OdcZba®c-97a5-4786-bc97-4d13279afeOf ro quiet loglevel=3
>

It looks like you manually typed this, as there are spelling errors (cndline, initranfs).
Also, the UUID for the root filesystem is different from what you had above:UUID=0123abc,
which is probably not really the UUID.

That's all I can help with.

Chuck

> (initranfs) cat /proc/modules
>
> 1915 3604480 2 - Live Oxffffffffc0540000
>
> ahci 77824 1 - Live Oxffffffffc01d4000
>
> hid generic 24576 1 - Live Oxffffffffc00b6000
>
> nume 69632 1
>
> - Live Oxffffffffc01bd000
>
> libahci 49152 1 ahi, Live oxffffffffc019c000
>
> àrm_buddy 204B0 1 1915, Live oxffffffffc0020000
>
> 12c_algo_bit 16384 1 1915, Live Oxfffffffic000N00®
>
> nune_core 139264 1 nume, Live OxffffffP{c050/000
>
> àrm_p_helper 159744 1 1915, Live oxffffffffc04a8000
>
> libata 385024 2 ahi,libahci, Live exffffffffc045b000
>
> +10_pi 16384 1 nume_core, Live Oxfffffffic01c/000
>
> cec 61440 2 1915,drm_dp_helper, Live Oxifffffffc0445000
>
> rC_core 61440 1 cec,
>
> Live Oxffffffffc01f0000
>
> ttm86016 1 i915, Live Oxffffffffc042f000
>
> scsi_mod 266240 1 libata, Live Oxffffffffc03dB000
>
> àrnkms_helper 192512 2 1915,drm_dp_helper, Live oxfffffffic0392000
>
> crc64_rocksoft 204B0 1 t10_pi, Live oxfrIffffic0167000
>
> crc64 204B0 1 crc64_rocksoft, Live Oxffffffffc01aa000
>
> crc_t10dif 204B0 1 t10 pi, Live exfPffffficOOb0000
>
> crct10dif_generic 16384 0 - Live Oxffffffffc00Bd000
>
> scsi_common 16384 2 libata,scsi mod, Live OxffffffffcOOBBOOO
>
> xhci_pci 204B0 0
>
> - Live Oxffffffffc0050000
>
> xhci_hcd 315392 1 xhei pci, Live Oxffffffffc0331000
>
> crct10dif_pclmul 16384 1
>
> - Live Oxffffffffc0162000
>
> cret10d if_conmon 16384 3 crc_+10dif,crct10dif _generic,cret10dif pelnul, Live Oxffffffffc0071000
>
> crc32c_intel 24576 0 - Live OxfrIPIfficO033000
>
> intel_lpss_pci 28672 0 - Live Oxffffffffc0184000
>
> ¡2c_hid_acpi 16384 © - Live Oxffffffffc017c000
>
> r8168 589824 0 - Live Oxffffffffc00e3000 (DE)
>
> 12 mET 32788 9 128351 027, " VI UP SHAAFF-908 000.
>
> intel_lpss 16384 1 intel_lpss pci, Live oxffffffffc00c6000
>
> ush_ common 16384 2 xhci hed, usbcore, Live OxtffERFfEcOOba000
>
> und 24576 © - Live Oxffffffffc00a0000
>
> idma64 20480 © - Live oxffffffffc0097000
>
> fan 204B0 0 -
>
> • Live OxffffffffcO02d000
>
> hid 151552 2 hid_generic, 12c hid, Live Oxffffffffc0059000
>
> battery 28672 0 -
>
> Live Oxffffffffc0048000
>
> button 24576 © - Live Oxffffffffc0041000
>
> uni 36864 0
>
> - Live Oxffffffffc0014000
>
> video 57344 1 i915, Live Oxffffffff:0000000
>
>
>> On 20 Jul 2022, at 23:40, Chuck Zmudzinski <brchuckz@netscape.net> wrote:
>>
>> ?On 7/20/2022 4:38 PM, Bruno wrote:
>>> Another thing that catches my eye are the constant fails from beginning to end on nvme:
>>>
>>> nvme nvme0: pci function x
>>> nvme x: PCI INT A: no GSI
>>> Time-outs I/O x QID completion polled
>>> missing or invalid SUBQN field
>>> Timeouts and probes / completion pilled
>>
>> I think maybe your laptop is too new for Debian
>> stable. Debian stable uses Linux 5.10 and Xen 4.14
>> which were developed probably two years ago or
>> more. I think you need a distro with Linux 5.18
>> and Xen 4.16. Debian testing (aka bookworm) will
>> eventually become Debian 12 should work better,
>> and you can find many guides for upgrading from
>> Debian stable to Debian testing by doing an Internet
>> search. I also think fedora and opensuse might have
>> those newer versions of Linux and Xen also.
>>
>> Chuck
>>
>>>
>>>> On 20 Jul 2022, at 21:19, Bruno <brunoce@kolabnow.com> wrote:
>>>>
>>>> ?Error I can see when I grep from dmesg on initramfs:
>>>>
>>>> pcieport xxx DCP: error containment capabilities: Int Msg #0, …..
>>>>
>>>> And grep fail:
>>>>
>>>> PM-Timer consistency check
>>>>
>>>> pci xxx: Failed to add - pass through or MSI/MSI-X might fail!
>>>> pci xxx: BAR x: failed to assign [io size x]
>>>>
>>>> r8168: module verification failed: signature and or required key missing - tainting kernel
>>>>
>>>>>> On 20 Jul 2022, at 21:03, Chuck Zmudzinski <brchuckz@netscape.net> wrote:
>>>>>>
>>>>>> ?On 7/20/22 3:19 PM, Bruno wrote:
>>>>>>
>>>>>> Hello Leigh. Hello Chuck.
>>>>>>
>>>>>> Thank you again for the support. Unfortunately matters have not moved forward yet.
>>>>>>
>>>>>> I have successfully installed nvidia and the non-free firmware miscellanea, and I have re-generated the initramfs ( update-initramfs -k all -c -v ). But I cannot boot on Xen.
>>>>>>
>>>>>> I also when booting Xen and landing on initramfs prompt, cannot mount /root ( mount -o remount,rw /root ), and I cannot extract a dmesg of that boot process. I am not getting the ACPI error I was getting before, but clearly the errors in mount are ACPI failure.
>>>>>>
>>>>>> Bellow the current journalctl -k -b :
>>>>>>
>>>>>
>>>>> As Leigh said, there should be something like:
>>>>>
>>>>> Jul 20 09:19:36 debian kernel: [    0.000000] Hypervisor detected: Xen PV
>>>>>
>>>>> In the journal logs, but I don't see it there. See if you can find it in
>>>>> the /var/log/kern.log file to be sure you are posting the right log file.
>>>>> It should be there on the attempt to boot into Linux on Xen.
>>>>>
>>>>> Maybe there is something wrong with your grub configuration. I know
>>>>> you posted it in your first message but I don't see anything
>>>>> terribly wrong there. Are you sure that grub is really booting
>>>>> the 'Debian Linux/GNU with Xen hypervisor' boot option? It
>>>>> should boot that, based on what is in your /boot/grub/grub.cfg
>>>>> file.
>>>>>
>>>>> You can also manually select the option to boot Debian with the
>>>>> Xen hypervisor while the grub boot menu displays.
>>>>>
>>>>> It has been a long time since I installed Xen on Debian,
>>>>> I have been just upgrading my installation that
>>>>> goes all the way back to Debian 7. It may be there
>>>>> is a bug in the current Debian Xen metapackage
>>>>> installation system.
>>>>>
>>>>> I have been planning to try to do a clean install of
>>>>> Xen on Debian 11 to see if it still works right. I will
>>>>> try it later this week and let you know if there is
>>>>> a bug in the Debian Xen installation system.
>>>>>
>>>>> Chuck
>>>>>
>>>>>
>>>>>> Jul 20 20:02:05 xd kernel: Linux version 5.10.0-16-amd64 (debian-kernel@lists.debian.org) (gcc-10 (Debian 10.2.1-6) 10.2.1 20210110, GNU ld (GNU Binutils for Debian) 2.35.2) #1 SMP Debian 5.10.127-1 (2022-06-30)
>>>>>> Jul 20 20:02:05 xd kernel: Command line: BOOT_IMAGE=/vmlinuz-5.10.0-16-amd64 root=UUID=0123abcd ro quiet
>>>>>> Jul 20 20:02:05 xd kernel: x86/split lock detection: warning about user-space split_locks
>>>>>> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
>>>>>> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
>>>>>> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
>>>>>> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask'
>>>>>> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'
>>>>>> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'
>>>>>> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
>>>>>> Jul 20 20:02:05 xd kernel: x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
>>>>>> Jul 20 20:02:05 xd kernel: x86/fpu: xstate_offset[5]: 832, xstate_sizes[5]: 64
>>>>>> Jul 20 20:02:05 xd kernel: x86/fpu: xstate_offset[6]: 896, xstate_sizes[6]: 512
>>>>>> Jul 20 20:02:05 xd kernel: x86/fpu: xstate_offset[7]: 1408, xstate_sizes[7]: 1024
>>>>>> Jul 20 20:02:05 xd kernel: x86/fpu: xstate_offset[9]: 2432, xstate_sizes[9]: 8
>>>>>> Jul 20 20:02:05 xd kernel: x86/fpu: Enabled xstate features 0x2e7, context size is 2440 bytes, using 'compacted' format.
>>>>>> Jul 20 20:02:05 xd kernel: BIOS-provided physical RAM map:
>>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
>>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
>>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000000100000-0x000000003fd98fff] usable
>>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x000000003fd99000-0x0000000040698fff] reserved
>>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000040699000-0x00000000424aefff] usable
>>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000424af000-0x000000004287efff] type 20
>>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x000000004287f000-0x00000000442fefff] reserved
>>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000442ff000-0x0000000044b2efff] ACPI NVS
>>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000044b2f000-0x0000000044bfefff] ACPI data
>>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000044bff000-0x0000000044bfffff] usable
>>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000044c00000-0x0000000048ffffff] reserved
>>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000049e00000-0x000000004f7fffff] reserved
>>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000c0000000-0x00000000cfffffff] reserved
>>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000fe010000-0x00000000fe010fff] reserved
>>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000fed20000-0x00000000fed7ffff] reserved
>>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000ff500000-0x00000000ffffffff] reserved
>>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000100000000-0x00000004b07fffff] usable
>>>>>> Jul 20 20:02:05 xd kernel: NX (Execute Disable) protection: active
>>>>>> Jul 20 20:02:05 xd kernel: efi: EFI v2.70 by INSYDE Corp.
>>>>>> Jul 20 20:02:05 xd kernel: efi: ACPI=0x44bfe000 ACPI 2.0=0x44bfe014 TPMFinalLog=0x44ac5000 SMBIOS=0x429de000 SMBIOS 3.0=0x429dc000 ESRT=0x3bf68a98 MOKvar=0x3bee5000
>>>>>> Jul 20 20:02:05 xd kernel: secureboot: Secure boot could not be determined (mode 0)
>>>>>> Jul 20 20:02:05 xd kernel: SMBIOS 3.3.0 present.
>>>>>> Jul 20 20:02:05 xd kernel: DMI: Acer Aspire A517-52G/Jasmine_TL, BIOS V1.26 03/14/2022
>>>>>> Jul 20 20:02:05 xd kernel: tsc: Detected 2400.000 MHz processor
>>>>>> Jul 20 20:02:05 xd kernel: tsc: Detected 2419.200 MHz TSC
>>>>>> Jul 20 20:02:05 xd kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
>>>>>> Jul 20 20:02:05 xd kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
>>>>>> Jul 20 20:02:05 xd kernel: last_pfn = 0x4b0800 max_arch_pfn = 0x400000000
>>>>>> Jul 20 20:02:05 xd kernel: MTRR default type: write-back
>>>>>> Jul 20 20:02:05 xd kernel: MTRR fixed ranges enabled:
>>>>>> Jul 20 20:02:05 xd kernel: 00000-9FFFF write-back
>>>>>> Jul 20 20:02:05 xd kernel: A0000-BFFFF uncachable
>>>>>> Jul 20 20:02:05 xd kernel: C0000-FFFFF write-protect
>>>>>> Jul 20 20:02:05 xd kernel: MTRR variable ranges enabled:
>>>>>> Jul 20 20:02:05 xd kernel: 0 base 0080000000 mask 7F80000000 uncachable
>>>>>> Jul 20 20:02:05 xd kernel: 1 base 0060000000 mask 7FE0000000 uncachable
>>>>>> Jul 20 20:02:05 xd kernel: 2 base 0050000000 mask 7FF0000000 uncachable
>>>>>> Jul 20 20:02:05 xd kernel: 3 base 004C000000 mask 7FFC000000 uncachable
>>>>>> Jul 20 20:02:05 xd kernel: 4 base 004B000000 mask 7FFF000000 uncachable
>>>>>> Jul 20 20:02:05 xd kernel: 5 base 4000000000 mask 4000000000 uncachable
>>>>>> Jul 20 20:02:05 xd kernel: 6 disabled
>>>>>> Jul 20 20:02:05 xd kernel: 7 disabled
>>>>>> Jul 20 20:02:05 xd kernel: 8 disabled
>>>>>> Jul 20 20:02:05 xd kernel: 9 disabled
>>>>>> Jul 20 20:02:05 xd kernel: x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
>>>>>> Jul 20 20:02:05 xd kernel: last_pfn = 0x44c00 max_arch_pfn = 0x400000000
>>>>>> Jul 20 20:02:05 xd kernel: esrt: Reserving ESRT space from 0x000000003bf68a98 to 0x000000003bf68ad0.
>>>>>> Jul 20 20:02:05 xd kernel: e820: update [mem 0x3bf68000-0x3bf68fff] usable ==> reserved
>>>>>> Jul 20 20:02:05 xd kernel: e820: update [mem 0x3bee5000-0x3bee7fff] usable ==> reserved
>>>>>> Jul 20 20:02:05 xd kernel: Using GB pages for direct mapping
>>>>>> Jul 20 20:02:05 xd kernel: RAMDISK: [mem 0x32341000-0x35197fff]
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Early table checksum verification disabled
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: RSDP 0x0000000044BFE014 000024 (v02 ACRSYS)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: XSDT 0x0000000044BDB188 000124 (v01 ACRSYS ACRPRDCT 00000002 01000013)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: FACP 0x0000000044BDE000 000114 (v06 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: DSDT 0x0000000044B81000 059948 (v02 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: FACS 0x0000000044AA2000 000040
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: UEFI 0x0000000044B2E000 000236 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BFA000 00255C (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BF9000 000105 (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BF6000 002137 (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BF2000 003300 (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BF1000 00077B (v02 ACRSYS ACRPRDCT 00001000 1025 00040000)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: TPM2 0x0000000044BF0000 00004C (v04 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: MSDM 0x0000000044BEF000 000055 (v03 ACRSYS ACRPRDCT 00000001 1025 00040000)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BEE000 000D02 (v02 ACRSYS ACRPRDCT 00000000 1025 00040000)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: NHLT 0x0000000044BEC000 001B54 (v00 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: LPIT 0x0000000044BEB000 0000CC (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: WSMT 0x0000000044BEA000 000028 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BE9000 000B70 (v02 ACRSYS ACRPRDCT 00001000 1025 00040000)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BE8000 00012A (v02 ACRSYS ACRPRDCT 00000000 1025 00040000)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: DBGP 0x0000000044BE7000 000034 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: DBG2 0x0000000044BE6000 000054 (v00 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BDF000 006BA9 (v01 ACRSYS ACRPRDCT 00001000 1025 00040000)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: HPET 0x0000000044BDD000 000038 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: APIC 0x0000000044BDC000 00012C (v04 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: MCFG 0x0000000044BFD000 00003C (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044B80000 000C78 (v02 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: DMAR 0x0000000044B7F000 000088 (v02 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044B7C000 0020D6 (v01 ACRSYS ACRPRDCT 00001000 1025 00040000)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: UEFI 0x0000000044A5B000 00063A (v01 ACRSYS ACRPRDCT 00000000 1025 00040000)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: UEFI 0x0000000044A5A000 00005C (v01 ACRSYS ACRPRDCT 00000000 1025 00040000)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044B7B000 000985 (v02 ACRSYS ACRPRDCT 00001000 1025 00040000)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044B7A000 0000F8 (v01 ACRSYS ACRPRDCT 00001000 1025 00040000)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044B79000 000835 (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: FPDT 0x0000000044B78000 000044 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: PTDT 0x0000000044B76000 000CFE (v00 ACRSYS ACRPRDCT 00000005 1025 00040000)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: BGRT 0x0000000044B77000 000038 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving FACP table memory at [mem 0x44bde000-0x44bde113]
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving DSDT table memory at [mem 0x44b81000-0x44bda947]
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving FACS table memory at [mem 0x44aa2000-0x44aa203f]
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving UEFI table memory at [mem 0x44b2e000-0x44b2e235]
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bfa000-0x44bfc55b]
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bf9000-0x44bf9104]
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bf6000-0x44bf8136]
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bf2000-0x44bf52ff]
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bf1000-0x44bf177a]
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving TPM2 table memory at [mem 0x44bf0000-0x44bf004b]
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving MSDM table memory at [mem 0x44bef000-0x44bef054]
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bee000-0x44beed01]
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving NHLT table memory at [mem 0x44bec000-0x44bedb53]
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving LPIT table memory at [mem 0x44beb000-0x44beb0cb]
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving WSMT table memory at [mem 0x44bea000-0x44bea027]
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44be9000-0x44be9b6f]
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44be8000-0x44be8129]
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving DBGP table memory at [mem 0x44be7000-0x44be7033]
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving DBG2 table memory at [mem 0x44be6000-0x44be6053]
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bdf000-0x44be5ba8]
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving HPET table memory at [mem 0x44bdd000-0x44bdd037]
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving APIC table memory at [mem 0x44bdc000-0x44bdc12b]
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving MCFG table memory at [mem 0x44bfd000-0x44bfd03b]
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b80000-0x44b80c77]
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving DMAR table memory at [mem 0x44b7f000-0x44b7f087]
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b7c000-0x44b7e0d5]
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving UEFI table memory at [mem 0x44a5b000-0x44a5b639]
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving UEFI table memory at [mem 0x44a5a000-0x44a5a05b]
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b7b000-0x44b7b984]
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b7a000-0x44b7a0f7]
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b79000-0x44b79834]
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving FPDT table memory at [mem 0x44b78000-0x44b78043]
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving PTDT table memory at [mem 0x44b76000-0x44b76cfd]
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving BGRT table memory at [mem 0x44b77000-0x44b77037]
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Local APIC address 0xfee00000
>>>>>> Jul 20 20:02:05 xd kernel: No NUMA configuration found
>>>>>> Jul 20 20:02:05 xd kernel: Faking a node at [mem 0x0000000000000000-0x00000004b07fffff]
>>>>>> Jul 20 20:02:05 xd kernel: NODE_DATA(0) allocated [mem 0x4b07d6000-0x4b07fffff]
>>>>>> Jul 20 20:02:05 xd kernel: Zone ranges:
>>>>>> Jul 20 20:02:05 xd kernel: DMA [mem 0x0000000000001000-0x0000000000ffffff]
>>>>>> Jul 20 20:02:05 xd kernel: DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
>>>>>> Jul 20 20:02:05 xd kernel: Normal [mem 0x0000000100000000-0x00000004b07fffff]
>>>>>> Jul 20 20:02:05 xd kernel: Device empty
>>>>>> Jul 20 20:02:05 xd kernel: Movable zone start for each node
>>>>>> Jul 20 20:02:05 xd kernel: Early memory node ranges
>>>>>> Jul 20 20:02:05 xd kernel: node 0: [mem 0x0000000000001000-0x000000000009efff]
>>>>>> Jul 20 20:02:05 xd kernel: node 0: [mem 0x0000000000100000-0x000000003fd98fff]
>>>>>> Jul 20 20:02:05 xd kernel: node 0: [mem 0x0000000040699000-0x00000000424aefff]
>>>>>> Jul 20 20:02:05 xd kernel: node 0: [mem 0x0000000044bff000-0x0000000044bfffff]
>>>>>> Jul 20 20:02:05 xd kernel: node 0: [mem 0x0000000100000000-0x00000004b07fffff]
>>>>>> Jul 20 20:02:05 xd kernel: Initmem setup node 0 [mem 0x0000000000001000-0x00000004b07fffff]
>>>>>> Jul 20 20:02:05 xd kernel: On node 0 totalpages: 4137806
>>>>>> Jul 20 20:02:05 xd kernel: DMA zone: 64 pages used for memmap
>>>>>> Jul 20 20:02:05 xd kernel: DMA zone: 25 pages reserved
>>>>>> Jul 20 20:02:05 xd kernel: DMA zone: 3998 pages, LIFO batch:0
>>>>>> Jul 20 20:02:05 xd kernel: DMA32 zone: 4143 pages used for memmap
>>>>>> Jul 20 20:02:05 xd kernel: DMA32 zone: 265136 pages, LIFO batch:63
>>>>>> Jul 20 20:02:05 xd kernel: Normal zone: 60448 pages used for memmap
>>>>>> Jul 20 20:02:05 xd kernel: Normal zone: 3868672 pages, LIFO batch:63
>>>>>> Jul 20 20:02:05 xd kernel: On node 0, zone DMA: 1 pages in unavailable ranges
>>>>>> Jul 20 20:02:05 xd kernel: On node 0, zone DMA: 97 pages in unavailable ranges
>>>>>> Jul 20 20:02:05 xd kernel: On node 0, zone DMA32: 2304 pages in unavailable ranges
>>>>>> Jul 20 20:02:05 xd kernel: On node 0, zone DMA32: 10064 pages in unavailable ranges
>>>>>> Jul 20 20:02:05 xd kernel: On node 0, zone Normal: 13312 pages in unavailable ranges
>>>>>> Jul 20 20:02:05 xd kernel: On node 0, zone Normal: 30720 pages in unavailable ranges
>>>>>> Jul 20 20:02:05 xd kernel: Reserving Intel graphics memory at [mem 0x4b800000-0x4f7fffff]
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: PM-Timer IO Port: 0x1808
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Local APIC address 0xfee00000
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
>>>>>> Jul 20 20:02:05 xd kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: IRQ0 used by override.
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: IRQ9 used by override.
>>>>>> Jul 20 20:02:05 xd kernel: Using ACPI (MADT) for SMP configuration information
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
>>>>>> Jul 20 20:02:05 xd kernel: e820: update [mem 0x3bf6a000-0x3c05dfff] usable ==> reserved
>>>>>> Jul 20 20:02:05 xd kernel: TSC deadline timer available
>>>>>> Jul 20 20:02:05 xd kernel: smpboot: Allowing 8 CPUs, 0 hotplug CPUs
>>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
>>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
>>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x3bee5000-0x3bee7fff]
>>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x3bf68000-0x3bf68fff]
>>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x3bf6a000-0x3c05dfff]
>>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x3fd99000-0x40698fff]
>>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x424af000-0x4287efff]
>>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x4287f000-0x442fefff]
>>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x442ff000-0x44b2efff]
>>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x44b2f000-0x44bfefff]
>>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x44c00000-0x48ffffff]
>>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x49000000-0x49dfffff]
>>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x49e00000-0x4f7fffff]
>>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x4f800000-0xbfffffff]
>>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xc0000000-0xcfffffff]
>>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xd0000000-0xfe00ffff]
>>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xfe010000-0xfe010fff]
>>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xfed1ffff]
>>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xfed7ffff]
>>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xff4fffff]
>>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xff500000-0xffffffff]
>>>>>> Jul 20 20:02:05 xd kernel: [mem 0x4f800000-0xbfffffff] available for PCI devices
>>>>>> Jul 20 20:02:05 xd kernel: Booting paravirtualized kernel on bare hardware
>>>>>> Jul 20 20:02:05 xd kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
>>>>>> Jul 20 20:02:05 xd kernel: setup_percpu: NR_CPUS:8192 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
>>>>>> Jul 20 20:02:05 xd kernel: percpu: Embedded 58 pages/cpu s200664 r8192 d28712 u262144
>>>>>> Jul 20 20:02:05 xd kernel: pcpu-alloc: s200664 r8192 d28712 u262144 alloc=1*2097152
>>>>>> Jul 20 20:02:05 xd kernel: pcpu-alloc: [0] 0 1 2 3 4 5 6 7
>>>>>> Jul 20 20:02:05 xd kernel: Built 1 zonelists, mobility grouping on. Total pages: 4073126
>>>>>> Jul 20 20:02:05 xd kernel: Policy zone: Normal
>>>>>> Jul 20 20:02:05 xd kernel: Kernel command line: BOOT_IMAGE=/vmlinuz-5.10.0-16-amd64 root=UUID=0dc2ba0c-97d5-4786-bc97-4d13279afe0f ro quiet
>>>>>> Jul 20 20:02:05 xd kernel: Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
>>>>>> Jul 20 20:02:05 xd kernel: Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
>>>>>> Jul 20 20:02:05 xd kernel: mem auto-init: stack:off, heap alloc:on, heap free:off
>>>>>> Jul 20 20:02:05 xd kernel: Memory: 1010444K/16551224K available (12295K kernel code, 2536K rwdata, 7568K rodata, 2424K init, 3680K bss, 520984K reserved, 0K cma-reserved)
>>>>>> Jul 20 20:02:05 xd kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
>>>>>> Jul 20 20:02:05 xd kernel: ftrace: allocating 36455 entries in 143 pages
>>>>>> Jul 20 20:02:05 xd kernel: ftrace: allocated 143 pages with 5 groups
>>>>>> Jul 20 20:02:05 xd kernel: rcu: Hierarchical RCU implementation.
>>>>>> Jul 20 20:02:05 xd kernel: rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=8.
>>>>>> Jul 20 20:02:05 xd kernel: Rude variant of Tasks RCU enabled.
>>>>>> Jul 20 20:02:05 xd kernel: Tracing variant of Tasks RCU enabled.
>>>>>> Jul 20 20:02:05 xd kernel: rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
>>>>>> Jul 20 20:02:05 xd kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
>>>>>> Jul 20 20:02:05 xd kernel: NR_IRQS: 524544, nr_irqs: 2048, preallocated irqs: 16
>>>>>> Jul 20 20:02:05 xd kernel: random: crng init done
>>>>>> Jul 20 20:02:05 xd kernel: Console: colour dummy device 80x25
>>>>>> Jul 20 20:02:05 xd kernel: printk: console [tty0] enabled
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Core revision 20200925
>>>>>> Jul 20 20:02:05 xd kernel: hpet: HPET dysfunctional in PC10. Force disabled.
>>>>>> Jul 20 20:02:05 xd kernel: APIC: Switch to symmetric I/O mode setup
>>>>>> Jul 20 20:02:05 xd kernel: DMAR: Host address width 39
>>>>>> Jul 20 20:02:05 xd kernel: DMAR: DRHD base: 0x000000fed90000 flags: 0x0
>>>>>> Jul 20 20:02:05 xd kernel: DMAR: dmar0: reg_base_addr fed90000 ver 4:0 cap 1c0000c40660462 ecap 29a00f0505e
>>>>>> Jul 20 20:02:05 xd kernel: DMAR: DRHD base: 0x000000fed91000 flags: 0x1
>>>>>> Jul 20 20:02:05 xd kernel: DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
>>>>>> Jul 20 20:02:05 xd kernel: DMAR: RMRR base: 0x0000004b000000 end: 0x0000004f7fffff
>>>>>> Jul 20 20:02:05 xd kernel: DMAR-IR: IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 1
>>>>>> Jul 20 20:02:05 xd kernel: DMAR-IR: HPET id 0 under DRHD base 0xfed91000
>>>>>> Jul 20 20:02:05 xd kernel: DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
>>>>>> Jul 20 20:02:05 xd kernel: DMAR-IR: Enabled IRQ remapping in x2apic mode
>>>>>> Jul 20 20:02:05 xd kernel: x2apic enabled
>>>>>> Jul 20 20:02:05 xd kernel: Switched APIC routing to cluster x2apic.
>>>>>> Jul 20 20:02:05 xd kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x22df1149949, max_idle_ns: 440795312789 ns
>>>>>> Jul 20 20:02:05 xd kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 4838.40 BogoMIPS (lpj=9676800)
>>>>>> Jul 20 20:02:05 xd kernel: pid_max: default: 32768 minimum: 301
>>>>>> Jul 20 20:02:05 xd kernel: LSM: Security Framework initializing
>>>>>> Jul 20 20:02:05 xd kernel: Yama: disabled by default; enable with sysctl kernel.yama.*
>>>>>> Jul 20 20:02:05 xd kernel: AppArmor: AppArmor initialized
>>>>>> Jul 20 20:02:05 xd kernel: TOMOYO Linux initialized
>>>>>> Jul 20 20:02:05 xd kernel: Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
>>>>>> Jul 20 20:02:05 xd kernel: Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
>>>>>> Jul 20 20:02:05 xd kernel: x86/cpu: User Mode Instruction Prevention (UMIP) activated
>>>>>> Jul 20 20:02:05 xd kernel: mce: CPU0: Thermal monitoring enabled (TM1)
>>>>>> Jul 20 20:02:05 xd kernel: process: using mwait in idle threads
>>>>>> Jul 20 20:02:05 xd kernel: Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
>>>>>> Jul 20 20:02:05 xd kernel: Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
>>>>>> Jul 20 20:02:05 xd kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
>>>>>> Jul 20 20:02:05 xd kernel: Spectre V2 : Mitigation: Enhanced IBRS
>>>>>> Jul 20 20:02:05 xd kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
>>>>>> Jul 20 20:02:05 xd kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
>>>>>> Jul 20 20:02:05 xd kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
>>>>>> Jul 20 20:02:05 xd kernel: Freeing SMP alternatives memory: 32K
>>>>>> Jul 20 20:02:05 xd kernel: smpboot: CPU0: 11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz (family: 0x6, model: 0x8c, stepping: 0x1)
>>>>>> Jul 20 20:02:05 xd kernel: Performance Events: PEBS fmt4+-baseline, AnyThread deprecated, Icelake events, 32-deep LBR, full-width counters, Intel PMU driver.
>>>>>> Jul 20 20:02:05 xd kernel: ... version: 5
>>>>>> Jul 20 20:02:05 xd kernel: ... bit width: 48
>>>>>> Jul 20 20:02:05 xd kernel: ... generic registers: 8
>>>>>> Jul 20 20:02:05 xd kernel: ... value mask: 0000ffffffffffff
>>>>>> Jul 20 20:02:05 xd kernel: ... max period: 00007fffffffffff
>>>>>> Jul 20 20:02:05 xd kernel: ... fixed-purpose events: 4
>>>>>> Jul 20 20:02:05 xd kernel: ... event mask: 0001000f000000ff
>>>>>> Jul 20 20:02:05 xd kernel: rcu: Hierarchical SRCU implementation.
>>>>>> Jul 20 20:02:05 xd kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
>>>>>> Jul 20 20:02:05 xd kernel: smp: Bringing up secondary CPUs ...
>>>>>> Jul 20 20:02:05 xd kernel: x86: Booting SMP configuration:
>>>>>> Jul 20 20:02:05 xd kernel: .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7
>>>>>> Jul 20 20:02:05 xd kernel: smp: Brought up 1 node, 8 CPUs
>>>>>> Jul 20 20:02:05 xd kernel: smpboot: Max logical packages: 1
>>>>>> Jul 20 20:02:05 xd kernel: smpboot: Total of 8 processors activated (38707.20 BogoMIPS)
>>>>>> Jul 20 20:02:05 xd kernel: node 0 deferred pages initialised in 20ms
>>>>>> Jul 20 20:02:05 xd kernel: devtmpfs: initialized
>>>>>> Jul 20 20:02:05 xd kernel: x86/mm: Memory block size: 128MB
>>>>>> Jul 20 20:02:05 xd kernel: PM: Registering ACPI NVS region [mem 0x442ff000-0x44b2efff] (8585216 bytes)
>>>>>> Jul 20 20:02:05 xd kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
>>>>>> Jul 20 20:02:05 xd kernel: futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
>>>>>> Jul 20 20:02:05 xd kernel: pinctrl core: initialized pinctrl subsystem
>>>>>> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 16
>>>>>> Jul 20 20:02:05 xd kernel: audit: initializing netlink subsys (disabled)
>>>>>> Jul 20 20:02:05 xd kernel: audit: type=2000 audit(1658343722.028:1): state=initialized audit_enabled=0 res=1
>>>>>> Jul 20 20:02:05 xd kernel: thermal_sys: Registered thermal governor 'fair_share'
>>>>>> Jul 20 20:02:05 xd kernel: thermal_sys: Registered thermal governor 'bang_bang'
>>>>>> Jul 20 20:02:05 xd kernel: thermal_sys: Registered thermal governor 'step_wise'
>>>>>> Jul 20 20:02:05 xd kernel: thermal_sys: Registered thermal governor 'user_space'
>>>>>> Jul 20 20:02:05 xd kernel: thermal_sys: Registered thermal governor 'power_allocator'
>>>>>> Jul 20 20:02:05 xd kernel: cpuidle: using governor ladder
>>>>>> Jul 20 20:02:05 xd kernel: cpuidle: using governor menu
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: bus type PCI registered
>>>>>> Jul 20 20:02:05 xd kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
>>>>>> Jul 20 20:02:05 xd kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xc0000000-0xcfffffff] (base 0xc0000000)
>>>>>> Jul 20 20:02:05 xd kernel: PCI: MMCONFIG at [mem 0xc0000000-0xcfffffff] reserved in E820
>>>>>> Jul 20 20:02:05 xd kernel: PCI: Using configuration type 1 for base access
>>>>>> Jul 20 20:02:05 xd kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
>>>>>> Jul 20 20:02:05 xd kernel: Kprobes globally optimized
>>>>>> Jul 20 20:02:05 xd kernel: HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
>>>>>> Jul 20 20:02:05 xd kernel: HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Module Device)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Processor Device)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Processor Aggregator Device)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Linux-Dell-Video)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS01._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS01._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS02._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS02._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS03._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS03._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS04._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS04._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS05._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS05._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS06._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS06._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS07._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS07._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS08._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS08._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS09._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS09._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS10._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS10._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS01._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS01._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS02._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS02._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS03._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS03._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS04._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS04._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS05._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS05._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS06._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS06._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: 15 ACPI AML tables successfully acquired and loaded
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8882135E00 0001C6 (v02 PmRef Cpu0Psd 00003000 INTL 20160422)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: \_SB_.PR00: _OSC native thermal LVT Acked
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A888213CC00 000386 (v02 PmRef Cpu0Cst 00003001 INTL 20160422)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8500BAB000 0005C3 (v02 PmRef Cpu0Ist 00003000 INTL 20160422)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A888213FC00 00028B (v02 PmRef Cpu0Hwp 00003000 INTL 20160422)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8500F3D000 0008E7 (v02 PmRef ApIst 00003000 INTL 20160422)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8500BAC000 00048A (v02 PmRef ApHwp 00003000 INTL 20160422)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8500BAF800 0004D4 (v02 PmRef ApPsd 00003000 INTL 20160422)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8500BAE000 00048A (v02 PmRef ApCst 00003000 INTL 20160422)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: EC: EC started
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: EC: interrupt blocked
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: \_SB_.PC00.LPCB.EC0_: Boot DSDT EC used to handle transactions
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Interpreter enabled
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: (supports S0 S3 S4 S5)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Using IOAPIC for interrupt routing
>>>>>> Jul 20 20:02:05 xd kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Enabled 7 GPEs in block 00 to 7F
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [PCRP] (on)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V0PR] (on)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V1PR] (on)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V2PR] (on)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [WRST] (on)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V0PR] (on)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V1PR] (on)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V2PR] (on)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V3PR] (on)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [FN00] (off)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [FN01] (off)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [FN02] (off)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [FN03] (off)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [FN04] (off)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [PIN] (off)
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-e0])
>>>>>> Jul 20 20:02:05 xd kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
>>>>>> Jul 20 20:02:05 xd kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR]
>>>>>> Jul 20 20:02:05 xd kernel: PCI host bridge to bus 0000:00
>>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
>>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
>>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
>>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [mem 0x4f800000-0xbfffffff window]
>>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
>>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [bus 00-e0]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:00.0: [8086:9a14] type 00 class 0x060000
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: [8086:9a49] type 00 class 0x030000
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: reg 0x10: [mem 0x6014000000-0x6014ffffff 64bit]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: reg 0x18: [mem 0x4000000000-0x400fffffff 64bit pref]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: reg 0x20: [io 0x5000-0x503f]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: BAR 2: assigned to efifb
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: DMAR: Skip IOMMU disabling for graphics
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: reg 0x344: [mem 0x00000000-0x00ffffff 64bit]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: VF(n) BAR0 space: [mem 0x00000000-0x06ffffff 64bit] (contains BAR0 for 7 VFs)
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: reg 0x34c: [mem 0x00000000-0x1fffffff 64bit pref]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: VF(n) BAR2 space: [mem 0x00000000-0xdfffffff 64bit pref] (contains BAR2 for 7 VFs)
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: [8086:9a09] type 01 class 0x060400
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: PTM enabled (root), 4ns granularity
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:08.0: [8086:9a11] type 00 class 0x088000
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:08.0: reg 0x10: [mem 0x601540f000-0x601540ffff 64bit]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:0e.0: [8086:9a0b] type 00 class 0x010400
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:0e.0: reg 0x10: [mem 0x6012000000-0x6013ffffff 64bit]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:0e.0: reg 0x18: [mem 0x50000000-0x51ffffff]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:0e.0: reg 0x20: [mem 0x6015300000-0x60153fffff 64bit]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.0: [8086:a0ed] type 00 class 0x0c0330
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.0: reg 0x10: [mem 0x53180000-0x5318ffff 64bit]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.2: [8086:a0ef] type 00 class 0x050000
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.2: reg 0x10: [mem 0x6015404000-0x6015407fff 64bit]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.2: reg 0x18: [mem 0x601540e000-0x601540efff 64bit]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.0: [8086:a0e8] type 00 class 0x0c8000
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.3: [8086:a0eb] type 00 class 0x0c8000
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.3: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:16.0: [8086:a0e0] type 00 class 0x078000
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:16.0: reg 0x10: [mem 0x601540b000-0x601540bfff 64bit]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:16.0: PME# supported from D3hot
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:17.0: [8086:09ab] type 00 class 0x088000
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.0: [8086:a0c5] type 00 class 0x0c8000
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.1: [8086:a0c6] type 00 class 0x0c8000
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.1: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: [8086:a0b0] type 01 class 0x060400
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: PTM enabled (root), 4ns granularity
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: [8086:a0b1] type 01 class 0x060400
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: PME# supported from D0 D3hot D3cold
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: PTM enabled (root), 4ns granularity
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.0: [8086:a082] type 00 class 0x060100
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.3: [8086:a0c8] type 00 class 0x040100
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.3: reg 0x10: [mem 0x6015400000-0x6015403fff 64bit]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.3: reg 0x20: [mem 0x6015200000-0x60152fffff 64bit]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.3: PME# supported from D3hot D3cold
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.4: [8086:a0a3] type 00 class 0x0c0500
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.4: reg 0x10: [mem 0x6015408000-0x60154080ff 64bit]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.4: reg 0x20: [io 0xefa0-0xefbf]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.5: [8086:a0a4] type 00 class 0x0c8000
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.5: reg 0x10: [mem 0xfe010000-0xfe010fff]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: [10de:1f97] type 00 class 0x030200
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: reg 0x10: [mem 0x52000000-0x52ffffff]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: reg 0x14: [mem 0x6000000000-0x600fffffff 64bit pref]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: reg 0x1c: [mem 0x6010000000-0x6011ffffff 64bit pref]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: reg 0x24: [io 0x4000-0x407f]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: 63.012 Gb/s available PCIe bandwidth, limited by 16.0 GT/s PCIe x4 link at 0000:00:06.0 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: PCI bridge to [bus 01]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [io 0x4000-0x4fff]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [mem 0x52000000-0x52ffffff]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [mem 0x6000000000-0x6011ffffff 64bit pref]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: reg 0x10: [io 0x3000-0x30ff]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: reg 0x18: [mem 0x53004000-0x53004fff 64bit]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: reg 0x20: [mem 0x53000000-0x53003fff 64bit]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: supports D1 D2
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: PCI bridge to [bus 02]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: bridge window [io 0x3000-0x3fff]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: bridge window [mem 0x53000000-0x530fffff]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: [14c3:7961] type 00 class 0x028000
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: reg 0x10: [mem 0x6015000000-0x60150fffff 64bit pref]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: reg 0x18: [mem 0x6015100000-0x6015103fff 64bit pref]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: reg 0x20: [mem 0x6015104000-0x6015104fff 64bit pref]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: supports D1 D2
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: PCI bridge to [bus 03]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: bridge window [mem 0x6015000000-0x60151fffff 64bit pref]
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: EC: interrupt unblocked
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: EC: event unblocked
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: EC: GPE=0x6e
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: \_SB_.PC00.LPCB.EC0_: Boot DSDT EC initialization complete
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: \_SB_.PC00.LPCB.EC0_: EC: Used to handle transactions and events
>>>>>> Jul 20 20:02:05 xd kernel: iommu: Default domain type: Translated
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: vgaarb: setting as boot VGA device
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: vgaarb: bridge control possible
>>>>>> Jul 20 20:02:05 xd kernel: vgaarb: loaded
>>>>>> Jul 20 20:02:05 xd kernel: EDAC MC: Ver: 3.0.0
>>>>>> Jul 20 20:02:05 xd kernel: Registered efivars operations
>>>>>> Jul 20 20:02:05 xd kernel: NetLabel: Initializing
>>>>>> Jul 20 20:02:05 xd kernel: NetLabel: domain hash size = 128
>>>>>> Jul 20 20:02:05 xd kernel: NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
>>>>>> Jul 20 20:02:05 xd kernel: NetLabel: unlabeled traffic allowed by default
>>>>>> Jul 20 20:02:05 xd kernel: PCI: Using ACPI for IRQ routing
>>>>>> Jul 20 20:02:05 xd kernel: PCI: pci_cache_line_size set to 64 bytes
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.5: can't claim BAR 0 [mem 0xfe010000-0xfe010fff]: no compatible bridge window
>>>>>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
>>>>>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x3bee5000-0x3bffffff]
>>>>>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x3bf68000-0x3bffffff]
>>>>>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x3bf6a000-0x3bffffff]
>>>>>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x3fd99000-0x3fffffff]
>>>>>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x424af000-0x43ffffff]
>>>>>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x44c00000-0x47ffffff]
>>>>>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x4b0800000-0x4b3ffffff]
>>>>>> Jul 20 20:02:05 xd kernel: clocksource: Switched to clocksource tsc-early
>>>>>> Jul 20 20:02:05 xd kernel: VFS: Disk quotas dquot_6.6.0
>>>>>> Jul 20 20:02:05 xd kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
>>>>>> Jul 20 20:02:05 xd kernel: AppArmor: AppArmor Filesystem Enabled
>>>>>> Jul 20 20:02:05 xd kernel: pnp: PnP ACPI init
>>>>>> Jul 20 20:02:05 xd kernel: system 00:00: [io 0x0680-0x069f] has been reserved
>>>>>> Jul 20 20:02:05 xd kernel: system 00:00: [io 0x164e-0x164f] has been reserved
>>>>>> Jul 20 20:02:05 xd kernel: system 00:00: [io 0xfd60-0xfd63] has been reserved
>>>>>> Jul 20 20:02:05 xd kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
>>>>>> Jul 20 20:02:05 xd kernel: pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
>>>>>> Jul 20 20:02:05 xd kernel: system 00:02: [io 0x1854-0x1857] has been reserved
>>>>>> Jul 20 20:02:05 xd kernel: system 00:02: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
>>>>>> Jul 20 20:02:05 xd kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0303 (active)
>>>>>> Jul 20 20:02:05 xd kernel: pnp 00:04: disabling [mem 0xc0000000-0xcfffffff] because it overlaps 0000:00:02.0 BAR 9 [mem 0x00000000-0xdfffffff 64bit pref]
>>>>>> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfedc0000-0xfedc7fff] has been reserved
>>>>>> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfeda0000-0xfeda0fff] has been reserved
>>>>>> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfeda1000-0xfeda1fff] has been reserved
>>>>>> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfed20000-0xfed7ffff] could not be reserved
>>>>>> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfed90000-0xfed93fff] could not be reserved
>>>>>> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfed45000-0xfed8ffff] could not be reserved
>>>>>> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfee00000-0xfeefffff] has been reserved
>>>>>> Jul 20 20:02:05 xd kernel: system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
>>>>>> Jul 20 20:02:05 xd kernel: system 00:05: [io 0x1800-0x18fe] could not be reserved
>>>>>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfe000000-0xfe01ffff] could not be reserved
>>>>>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfe04c000-0xfe04ffff] has been reserved
>>>>>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfe050000-0xfe0affff] has been reserved
>>>>>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfe0d0000-0xfe0fffff] has been reserved
>>>>>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfe200000-0xfe7fffff] has been reserved
>>>>>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xff000000-0xffffffff] could not be reserved
>>>>>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfd000000-0xfd68ffff] has been reserved
>>>>>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfd6b0000-0xfd6cffff] has been reserved
>>>>>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfd6f0000-0xfdffffff] has been reserved
>>>>>> Jul 20 20:02:05 xd kernel: system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
>>>>>> Jul 20 20:02:05 xd kernel: system 00:06: [io 0x2000-0x20fe] has been reserved
>>>>>> Jul 20 20:02:05 xd kernel: system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
>>>>>> Jul 20 20:02:05 xd kernel: system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
>>>>>> Jul 20 20:02:05 xd kernel: pnp: PnP ACPI: found 8 devices
>>>>>> Jul 20 20:02:05 xd kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
>>>>>> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 2
>>>>>> Jul 20 20:02:05 xd kernel: IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
>>>>>> Jul 20 20:02:05 xd kernel: tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
>>>>>> Jul 20 20:02:05 xd kernel: TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
>>>>>> Jul 20 20:02:05 xd kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
>>>>>> Jul 20 20:02:05 xd kernel: TCP: Hash tables configured (established 131072 bind 65536)
>>>>>> Jul 20 20:02:05 xd kernel: UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
>>>>>> Jul 20 20:02:05 xd kernel: UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
>>>>>> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 1
>>>>>> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 44
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
>>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: max bus depth: 1 pci_try_num: 2
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: BAR 9: assigned [mem 0x4020000000-0x40ffffffff 64bit pref]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: BAR 7: assigned [mem 0x4010000000-0x4016ffffff 64bit]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.0: BAR 0: assigned [mem 0x4017000000-0x4017000fff 64bit]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.3: BAR 0: assigned [mem 0x4017001000-0x4017001fff 64bit]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.0: BAR 0: assigned [mem 0x4017002000-0x4017002fff 64bit]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.1: BAR 0: assigned [mem 0x4017003000-0x4017003fff 64bit]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.5: BAR 0: assigned [mem 0x4f800000-0x4f800fff]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: BAR 6: no space for [mem size 0x00080000 pref]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: BAR 6: failed to assign [mem size 0x00080000 pref]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: PCI bridge to [bus 01]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [io 0x4000-0x4fff]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [mem 0x52000000-0x52ffffff]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [mem 0x6000000000-0x6011ffffff 64bit pref]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: PCI bridge to [bus 02]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: bridge window [io 0x3000-0x3fff]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: bridge window [mem 0x53000000-0x530fffff]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: PCI bridge to [bus 03]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: bridge window [mem 0x6015000000-0x60151fffff 64bit pref]
>>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
>>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
>>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
>>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: resource 7 [mem 0x4f800000-0xbfffffff window]
>>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: resource 8 [mem 0x4000000000-0x7fffffffff window]
>>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:01: resource 0 [io 0x4000-0x4fff]
>>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:01: resource 1 [mem 0x52000000-0x52ffffff]
>>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:01: resource 2 [mem 0x6000000000-0x6011ffffff 64bit pref]
>>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:02: resource 0 [io 0x3000-0x3fff]
>>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:02: resource 1 [mem 0x53000000-0x530fffff]
>>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:03: resource 2 [mem 0x6015000000-0x60151fffff 64bit pref]
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
>>>>>> Jul 20 20:02:05 xd kernel: PCI: CLS 64 bytes, default 64
>>>>>> Jul 20 20:02:05 xd kernel: Trying to unpack rootfs image as initramfs...
>>>>>> Jul 20 20:02:05 xd kernel: Freeing initrd memory: 47452K
>>>>>> Jul 20 20:02:05 xd kernel: DMAR: No ATSR found
>>>>>> Jul 20 20:02:05 xd kernel: DMAR: dmar0: Using Queued invalidation
>>>>>> Jul 20 20:02:05 xd kernel: DMAR: dmar1: Using Queued invalidation
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:00.0: Adding to iommu group 0
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: Adding to iommu group 1
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: Adding to iommu group 2
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:08.0: Adding to iommu group 3
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:0e.0: Adding to iommu group 4
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.0: Adding to iommu group 5
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.2: Adding to iommu group 5
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.0: Adding to iommu group 6
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.3: Adding to iommu group 6
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:16.0: Adding to iommu group 7
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:17.0: Adding to iommu group 8
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.0: Adding to iommu group 9
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.1: Adding to iommu group 9
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: Adding to iommu group 10
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: Adding to iommu group 11
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.0: Adding to iommu group 12
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.3: Adding to iommu group 12
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.4: Adding to iommu group 12
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.5: Adding to iommu group 12
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: Adding to iommu group 13
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: Adding to iommu group 14
>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: Adding to iommu group 15
>>>>>> Jul 20 20:02:05 xd kernel: DMAR: Intel(R) Virtualization Technology for Directed I/O
>>>>>> Jul 20 20:02:05 xd kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
>>>>>> Jul 20 20:02:05 xd kernel: software IO TLB: mapped [mem 0x0000000037663000-0x000000003b663000] (64MB)
>>>>>> Jul 20 20:02:05 xd kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x22df1149949, max_idle_ns: 440795312789 ns
>>>>>> Jul 20 20:02:05 xd kernel: clocksource: Switched to clocksource tsc
>>>>>> Jul 20 20:02:05 xd kernel: Initialise system trusted keyrings
>>>>>> Jul 20 20:02:05 xd kernel: Key type blacklist registered
>>>>>> Jul 20 20:02:05 xd kernel: workingset: timestamp_bits=36 max_order=22 bucket_order=0
>>>>>> Jul 20 20:02:05 xd kernel: zbud: loaded
>>>>>> Jul 20 20:02:05 xd kernel: integrity: Platform Keyring initialized
>>>>>> Jul 20 20:02:05 xd kernel: Key type asymmetric registered
>>>>>> Jul 20 20:02:05 xd kernel: Asymmetric key parser 'x509' registered
>>>>>> Jul 20 20:02:05 xd kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
>>>>>> Jul 20 20:02:05 xd kernel: io scheduler mq-deadline registered
>>>>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:06.0: PME: Signaling with IRQ 122
>>>>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:06.0: AER: enabled with IRQ 122
>>>>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:06.0: DPC: enabled with IRQ 122
>>>>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:06.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
>>>>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.0: PME: Signaling with IRQ 123
>>>>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.0: AER: enabled with IRQ 123
>>>>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.0: DPC: enabled with IRQ 123
>>>>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
>>>>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.1: PME: Signaling with IRQ 124
>>>>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.1: AER: enabled with IRQ 124
>>>>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.1: DPC: enabled with IRQ 124
>>>>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.1: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
>>>>>> Jul 20 20:02:05 xd kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
>>>>>> Jul 20 20:02:05 xd kernel: efifb: probing for efifb
>>>>>> Jul 20 20:02:05 xd kernel: efifb: framebuffer at 0x4000000000, using 8128k, total 8128k
>>>>>> Jul 20 20:02:05 xd kernel: efifb: mode is 1920x1080x32, linelength=7680, pages=1
>>>>>> Jul 20 20:02:05 xd kernel: efifb: scrolling: redraw
>>>>>> Jul 20 20:02:05 xd kernel: efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
>>>>>> Jul 20 20:02:05 xd kernel: Console: switching to colour frame buffer device 240x67
>>>>>> Jul 20 20:02:05 xd kernel: fb0: EFI VGA frame buffer device
>>>>>> Jul 20 20:02:05 xd kernel: intel_idle: MWAIT substates: 0x11121020
>>>>>> Jul 20 20:02:05 xd kernel: Monitor-Mwait will be used to enter C-1 state
>>>>>> Jul 20 20:02:05 xd kernel: Monitor-Mwait will be used to enter C-2 state
>>>>>> Jul 20 20:02:05 xd kernel: Monitor-Mwait will be used to enter C-3 state
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: \_SB_.PR00: Found 3 idle states
>>>>>> Jul 20 20:02:05 xd kernel: intel_idle: v0.5.1 model 0x8C
>>>>>> Jul 20 20:02:05 xd kernel: intel_idle: Local APIC timer is reliable in all C-states
>>>>>> Jul 20 20:02:05 xd kernel: thermal LNXTHERM:00: registered as thermal_zone0
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Thermal Zone [TZ00] (28 C)
>>>>>> Jul 20 20:02:05 xd kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
>>>>>> Jul 20 20:02:05 xd kernel: hpet_acpi_add: no address or irqs in _CRS
>>>>>> Jul 20 20:02:05 xd kernel: Linux agpgart interface v0.103
>>>>>> Jul 20 20:02:05 xd kernel: AMD-Vi: AMD IOMMUv2 functionality not available on this system - This is not a bug.
>>>>>> Jul 20 20:02:05 xd kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
>>>>>> Jul 20 20:02:05 xd kernel: i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
>>>>>> Jul 20 20:02:05 xd kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
>>>>>> Jul 20 20:02:05 xd kernel: mousedev: PS/2 mouse device common for all mice
>>>>>> Jul 20 20:02:05 xd kernel: rtc_cmos 00:01: RTC can wake from S4
>>>>>> Jul 20 20:02:05 xd kernel: rtc_cmos 00:01: registered as rtc0
>>>>>> Jul 20 20:02:05 xd kernel: rtc_cmos 00:01: setting system clock to 2022-07-20T19:02:03 UTC (1658343723)
>>>>>> Jul 20 20:02:05 xd kernel: rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram
>>>>>> Jul 20 20:02:05 xd kernel: intel_pstate: Intel P-state driver initializing
>>>>>> Jul 20 20:02:05 xd kernel: intel_pstate: HWP enabled
>>>>>> Jul 20 20:02:05 xd kernel: ledtrig-cpu: registered to indicate activity on CPUs
>>>>>> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 10
>>>>>> Jul 20 20:02:05 xd kernel: Segment Routing with IPv6
>>>>>> Jul 20 20:02:05 xd kernel: mip6: Mobile IPv6
>>>>>> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 17
>>>>>> Jul 20 20:02:05 xd kernel: mpls_gso: MPLS GSO support
>>>>>> Jul 20 20:02:05 xd kernel: microcode: sig=0x806c1, pf=0x80, revision=0x8a
>>>>>> Jul 20 20:02:05 xd kernel: microcode: Microcode Update Driver: v2.2.
>>>>>> Jul 20 20:02:05 xd kernel: resctrl: L2 allocation detected
>>>>>> Jul 20 20:02:05 xd kernel: resctrl: L2DATA allocation detected
>>>>>> Jul 20 20:02:05 xd kernel: resctrl: L2CODE allocation detected
>>>>>> Jul 20 20:02:05 xd kernel: IPI shorthand broadcast: enabled
>>>>>> Jul 20 20:02:05 xd kernel: sched_clock: Marking stable (836570439, 6379917)->(856451458, -13501102)
>>>>>> Jul 20 20:02:05 xd kernel: registered taskstats version 1
>>>>>> Jul 20 20:02:05 xd kernel: Loading compiled-in X.509 certificates
>>>>>> Jul 20 20:02:05 xd kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
>>>>>> Jul 20 20:02:05 xd kernel: Loaded X.509 cert 'Debian Secure Boot CA: 6ccece7e4c6c0d1f6149f3dd27dfcc5cbb419ea1'
>>>>>> Jul 20 20:02:05 xd kernel: Loaded X.509 cert 'Debian Secure Boot Signer 2021 - linux: 4b6ef5abca669825178e052c84667ccbc0531f8c'
>>>>>> Jul 20 20:02:05 xd kernel: zswap: loaded using pool lzo/zbud
>>>>>> Jul 20 20:02:05 xd kernel: Key type ._fscrypt registered
>>>>>> Jul 20 20:02:05 xd kernel: Key type .fscrypt registered
>>>>>> Jul 20 20:02:05 xd kernel: Key type fscrypt-provisioning registered
>>>>>> Jul 20 20:02:05 xd kernel: AppArmor: AppArmor sha1 policy hashing enabled
>>>>>> Jul 20 20:02:05 xd kernel: Freeing unused kernel image (initmem) memory: 2424K
>>>>>> Jul 20 20:02:05 xd kernel: Write protecting the kernel read-only data: 22528k
>>>>>> Jul 20 20:02:05 xd kernel: Freeing unused kernel image (text/rodata gap) memory: 2040K
>>>>>> Jul 20 20:02:05 xd kernel: Freeing unused kernel image (rodata/data gap) memory: 624K
>>>>>> Jul 20 20:02:05 xd kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
>>>>>> Jul 20 20:02:05 xd kernel: Run /init as init process
>>>>>> Jul 20 20:02:05 xd kernel: with arguments:
>>>>>> Jul 20 20:02:05 xd kernel: /init
>>>>>> Jul 20 20:02:05 xd kernel: with environment:
>>>>>> Jul 20 20:02:05 xd kernel: HOME=/
>>>>>> Jul 20 20:02:05 xd kernel: TERM=linux
>>>>>> Jul 20 20:02:05 xd kernel: BOOT_IMAGE=/vmlinuz-5.10.0-16-amd64
>>>>>> Jul 20 20:02:05 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
>>>>>> Jul 20 20:02:05 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
>>>>>> Jul 20 20:02:05 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
>>>>>> Jul 20 20:02:05 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
>>>>>> Jul 20 20:02:05 xd kernel: acpi PNP0C14:03: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
>>>>>> Jul 20 20:02:05 xd kernel: acpi PNP0C14:04: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
>>>>>> Jul 20 20:02:05 xd kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:21/PNP0C0D:00/input/input1
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Lid Switch [LID0]
>>>>>> Jul 20 20:02:05 xd kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Sleep Button [SLPB]
>>>>>> Jul 20 20:02:05 xd kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input3
>>>>>> Jul 20 20:02:05 xd kernel: battery: ACPI: Battery Slot [BAT1] (battery present)
>>>>>> Jul 20 20:02:05 xd kernel: hid: raw HID events driver (C) Jiri Kosina
>>>>>> Jul 20 20:02:05 xd kernel: vmd 0000:00:0e.0: PCI host bridge to bus 10000:e0
>>>>>> Jul 20 20:02:05 xd kernel: pci_bus 10000:e0: root bus resource [bus e0-ff]
>>>>>> Jul 20 20:02:05 xd kernel: pci_bus 10000:e0: root bus resource [mem 0x50000000-0x51ffffff]
>>>>>> Jul 20 20:02:05 xd kernel: pci_bus 10000:e0: root bus resource [mem 0x6015302000-0x60153fffff 64bit]
>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: [8086:a0d3] type 00 class 0x010601
>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x10: [mem 0x00000000-0x00001fff]
>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x14: [mem 0x00000000-0x000000ff]
>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x18: [io 0x0000-0x0007]
>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x1c: [io 0x0000-0x0003]
>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x20: [io 0x0000-0x001f]
>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x24: [mem 0x50000000-0x500007ff]
>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: PME# supported from D3hot
>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: Adding to iommu group 4
>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.0: [8086:09ab] type 00 class 0x088000
>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.0: Adding to iommu group 4
>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: [8086:a0bc] type 01 class 0x060400
>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: PME# supported from D0 D3hot D3cold
>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: PTM enabled (root), 4ns granularity
>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: Adding to iommu group 4
>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: Primary bus is hard wired to 0
>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e1:00.0: [2646:500c] type 00 class 0x010802
>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e1:00.0: reg 0x10: [mem 0x50100000-0x50103fff 64bit]
>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e1:00.0: Adding to iommu group 4
>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: PCI bridge to [bus e1]
>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: bridge window [io 0x0000-0x0fff]
>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: bridge window [mem 0x50100000-0x501fffff]
>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: Primary bus is hard wired to 0
>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: BAR 14: assigned [mem 0x50000000-0x500fffff]
>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 0: assigned [mem 0x50100000-0x50101fff]
>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: BAR 13: no space for [io size 0x1000]
>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: BAR 13: failed to assign [io size 0x1000]
>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 5: assigned [mem 0x50102000-0x501027ff]
>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 1: assigned [mem 0x50102800-0x501028ff]
>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 4: no space for [io size 0x0020]
>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 4: failed to assign [io size 0x0020]
>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 2: no space for [io size 0x0008]
>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 2: failed to assign [io size 0x0008]
>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 3: no space for [io size 0x0004]
>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 3: failed to assign [io size 0x0004]
>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e1:00.0: BAR 0: assigned [mem 0x50000000-0x50003fff 64bit]
>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: PCI bridge to [bus e1]
>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: bridge window [mem 0x50000000-0x500fffff]
>>>>>> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: can't derive routing for PCI INT A
>>>>>> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: PCI INT A: no GSI
>>>>>> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: PME: Signaling with IRQ 144
>>>>>> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: AER: enabled with IRQ 144
>>>>>> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: DPC: enabled with IRQ 144
>>>>>> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
>>>>>> Jul 20 20:02:05 xd kernel: vmd 0000:00:0e.0: Bound to PCI domain 10000
>>>>>> Jul 20 20:02:05 xd kernel: i801_smbus 0000:00:1f.4: SPD Write Disable is set
>>>>>> Jul 20 20:02:05 xd kernel: i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
>>>>>> Jul 20 20:02:05 xd kernel: i2c i2c-0: 2/2 memory slots populated (from DMI)
>>>>>> Jul 20 20:02:05 xd kernel: i2c i2c-0: Successfully instantiated SPD at 0x50
>>>>>> Jul 20 20:02:05 xd kernel: r8168: loading out-of-tree module taints kernel.
>>>>>> Jul 20 20:02:05 xd kernel: r8168: module verification failed: signature and/or required key missing - tainting kernel
>>>>>> Jul 20 20:02:05 xd kernel: r8168 Gigabit Ethernet driver 8.048.03-NAPI loaded
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: bus type USB registered
>>>>>> Jul 20 20:02:05 xd kernel: usbcore: registered new interface driver usbfs
>>>>>> Jul 20 20:02:05 xd kernel: usbcore: registered new interface driver hub
>>>>>> Jul 20 20:02:05 xd kernel: usbcore: registered new device driver usb
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Button [PWRB]
>>>>>> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
>>>>>> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
>>>>>> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000000009810
>>>>>> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
>>>>>> Jul 20 20:02:05 xd kernel: r8168: This product is covered by one or more of the following patents: US6,570,884, US6,115,776, and US6,327,625.
>>>>>> Jul 20 20:02:05 xd kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
>>>>>> Jul 20 20:02:05 xd kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
>>>>>> Jul 20 20:02:05 xd kernel: usb usb1: Product: xHCI Host Controller
>>>>>> Jul 20 20:02:05 xd kernel: usb usb1: Manufacturer: Linux 5.10.0-16-amd64 xhci-hcd
>>>>>> Jul 20 20:02:05 xd kernel: usb usb1: SerialNumber: 0000:00:14.0
>>>>>> Jul 20 20:02:05 xd kernel: hub 1-0:1.0: USB hub found
>>>>>> Jul 20 20:02:05 xd kernel: hub 1-0:1.0: 12 ports detected
>>>>>> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
>>>>>> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
>>>>>> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
>>>>>> Jul 20 20:02:05 xd kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
>>>>>> Jul 20 20:02:05 xd kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
>>>>>> Jul 20 20:02:05 xd kernel: usb usb2: Product: xHCI Host Controller
>>>>>> Jul 20 20:02:05 xd kernel: usb usb2: Manufacturer: Linux 5.10.0-16-amd64 xhci-hcd
>>>>>> Jul 20 20:02:05 xd kernel: usb usb2: SerialNumber: 0000:00:14.0
>>>>>> Jul 20 20:02:05 xd kernel: hub 2-0:1.0: USB hub found
>>>>>> Jul 20 20:02:05 xd kernel: hub 2-0:1.0: 4 ports detected
>>>>>> Jul 20 20:02:05 xd kernel: r8168 Copyright (C) 2020 Realtek NIC software team <nicfae@realtek.com>
>>>>>> This program comes with ABSOLUTELY NO WARRANTY; for details, please see <http://www.gnu.org/licenses/>.
>>>>>> This is free software, and you are welcome to redistribute it under certain conditions; see <http://www.gnu.org/licenses/>.
>>>>>> Jul 20 20:02:05 xd kernel: SCSI subsystem initialized
>>>>>> Jul 20 20:02:05 xd kernel: intel-lpss 0000:00:15.0: enabling device (0004 -> 0006)
>>>>>> Jul 20 20:02:05 xd kernel: idma64 idma64.0: Found Intel integrated DMA 64-bit
>>>>>> Jul 20 20:02:05 xd kernel: r8168 0000:02:00.0 enp2s0: renamed from eth0
>>>>>> Jul 20 20:02:05 xd kernel: nvme nvme0: pci function 10000:e1:00.0
>>>>>> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: can't derive routing for PCI INT A
>>>>>> Jul 20 20:02:05 xd kernel: nvme 10000:e1:00.0: PCI INT A: no GSI
>>>>>> Jul 20 20:02:05 xd kernel: libata version 3.00 loaded.
>>>>>> Jul 20 20:02:05 xd kernel: nvme nvme0: missing or invalid SUBNQN field.
>>>>>> Jul 20 20:02:05 xd kernel: nvme nvme0: Shutdown timeout set to 10 seconds
>>>>>> Jul 20 20:02:05 xd kernel: nvme nvme0: 8/0/0 default/read/poll queues
>>>>>> Jul 20 20:02:05 xd kernel: nvme0n1: p1 p2 p3 p4 p5
>>>>>> Jul 20 20:02:05 xd kernel: intel-lpss 0000:00:15.3: enabling device (0004 -> 0006)
>>>>>> Jul 20 20:02:05 xd kernel: idma64 idma64.1: Found Intel integrated DMA 64-bit
>>>>>> Jul 20 20:02:05 xd kernel: i2c_hid i2c-ELAN0515:01: supply vdd not found, using dummy regulator
>>>>>> Jul 20 20:02:05 xd kernel: i2c_hid i2c-ELAN0515:01: supply vddl not found, using dummy regulator
>>>>>> Jul 20 20:02:05 xd kernel: intel-lpss 0000:00:19.0: enabling device (0004 -> 0006)
>>>>>> Jul 20 20:02:05 xd kernel: idma64 idma64.2: Found Intel integrated DMA 64-bit
>>>>>> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: [drm] VT-d active for gfx access
>>>>>> Jul 20 20:02:05 xd kernel: checking generic (4000000000 7f0000) vs hw (6014000000 1000000)
>>>>>> Jul 20 20:02:05 xd kernel: checking generic (4000000000 7f0000) vs hw (4000000000 10000000)
>>>>>> Jul 20 20:02:05 xd kernel: fb0: switching to inteldrmfb from EFI VGA
>>>>>> Jul 20 20:02:05 xd kernel: Console: switching to colour dummy device 80x25
>>>>>> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: vgaarb: deactivate vga console
>>>>>> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
>>>>>> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: firmware: direct-loading firmware i915/tgl_dmc_ver2_08.bin
>>>>>> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/tgl_dmc_ver2_08.bin (v2.8)
>>>>>> Jul 20 20:02:05 xd kernel: intel-lpss 0000:00:19.1: enabling device (0004 -> 0006)
>>>>>> Jul 20 20:02:05 xd kernel: idma64 idma64.3: Found Intel integrated DMA 64-bit
>>>>>> Jul 20 20:02:05 xd kernel: input: ELAN0515:01 04F3:3142 Mouse as /devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input4
>>>>>> Jul 20 20:02:05 xd kernel: input: ELAN0515:01 04F3:3142 Touchpad as /devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input6
>>>>>> Jul 20 20:02:05 xd kernel: hid-generic 0018:04F3:3142.0001: input,hidraw0: I2C HID v1.00 Mouse [ELAN0515:01 04F3:3142] on i2c-ELAN0515:01
>>>>>> Jul 20 20:02:05 xd kernel: ahci 10000:e0:17.0: version 3.0
>>>>>> Jul 20 20:02:05 xd kernel: ahci 10000:e0:17.0: can't derive routing for PCI INT A
>>>>>> Jul 20 20:02:05 xd kernel: ahci 10000:e0:17.0: PCI INT A: no GSI
>>>>>> Jul 20 20:02:05 xd kernel: ahci 10000:e0:17.0: AHCI 0001.0301 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
>>>>>> Jul 20 20:02:05 xd kernel: ahci 10000:e0:17.0: flags: 64bit ncq sntf pm clo only pio slum part deso sadm sds
>>>>>> Jul 20 20:02:05 xd kernel: scsi host0: ahci
>>>>>> Jul 20 20:02:05 xd kernel: scsi host1: ahci
>>>>>> Jul 20 20:02:05 xd kernel: ata1: SATA max UDMA/133 abar m2048@0x50102000 port 0x50102100 irq 158
>>>>>> Jul 20 20:02:05 xd kernel: ata2: SATA max UDMA/133 abar m2048@0x50102000 port 0x50102180 irq 158
>>>>>> Jul 20 20:02:05 xd kernel: usb 1-7: new full-speed USB device number 2 using xhci_hcd
>>>>>> Jul 20 20:02:05 xd kernel: usb 1-7: New USB device found, idVendor=04f3, idProduct=0c4f, bcdDevice= 1.61
>>>>>> Jul 20 20:02:05 xd kernel: usb 1-7: New USB device strings: Mfr=1, Product=2, SerialNumber=0
>>>>>> Jul 20 20:02:05 xd kernel: usb 1-7: Product: ELAN:Fingerprint
>>>>>> Jul 20 20:02:05 xd kernel: usb 1-7: Manufacturer: ELAN
>>>>>> Jul 20 20:02:05 xd kernel: ata1: SATA link down (SStatus 0 SControl 300)
>>>>>> Jul 20 20:02:05 xd kernel: ata2: SATA link down (SStatus 0 SControl 300)
>>>>>> Jul 20 20:02:05 xd kernel: usb 1-8: new high-speed USB device number 3 using xhci_hcd
>>>>>> Jul 20 20:02:05 xd kernel: usb 1-8: New USB device found, idVendor=0408, idProduct=a061, bcdDevice= 0.04
>>>>>> Jul 20 20:02:05 xd kernel: usb 1-8: New USB device strings: Mfr=1, Product=2, SerialNumber=0
>>>>>> Jul 20 20:02:05 xd kernel: usb 1-8: Product: HD User Facing
>>>>>> Jul 20 20:02:05 xd kernel: usb 1-8: Manufacturer: SunplusIT Inc
>>>>>> Jul 20 20:02:05 xd kernel: usb 1-10: new high-speed USB device number 4 using xhci_hcd
>>>>>> Jul 20 20:02:05 xd kernel: usb 1-10: New USB device found, idVendor=04ca, idProduct=3802, bcdDevice= 1.00
>>>>>> Jul 20 20:02:05 xd kernel: usb 1-10: New USB device strings: Mfr=5, Product=6, SerialNumber=7
>>>>>> Jul 20 20:02:05 xd kernel: usb 1-10: Product: Wireless_Device
>>>>>> Jul 20 20:02:05 xd kernel: usb 1-10: Manufacturer: MediaTek Inc.
>>>>>> Jul 20 20:02:05 xd kernel: usb 1-10: SerialNumber: 000000000
>>>>>> Jul 20 20:02:05 xd kernel: [drm] Initialized i915 1.6.0 20200917 for 0000:00:02.0 on minor 0
>>>>>> Jul 20 20:02:05 xd kernel: [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Video Device [PEGP] (multi-head: yes rom: no post: no)
>>>>>> Jul 20 20:02:05 xd kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/LNXVIDEO:00/input/input7
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
>>>>>> Jul 20 20:02:05 xd kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input8
>>>>>> Jul 20 20:02:05 xd kernel: fbcon: i915drmfb (fb0) is primary device
>>>>>> Jul 20 20:02:05 xd kernel: Console: switching to colour frame buffer device 240x67
>>>>>> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
>>>>>> Jul 20 20:02:05 xd kernel: PM: Image not found (code -22)
>>>>>> Jul 20 20:02:05 xd kernel: EXT4-fs (nvme0n1p3): mounting ext3 file system using the ext4 subsystem
>>>>>> Jul 20 20:02:05 xd kernel: EXT4-fs (nvme0n1p3): mounted filesystem with ordered data mode. Opts: (null)
>>>>>> Jul 20 20:02:05 xd kernel: Not activating Mandatory Access Control as /sbin/tomoyo-init does not exist.
>>>>>> Jul 20 20:02:05 xd systemd[1]: Inserted module 'autofs4'
>>>>>> Jul 20 20:02:05 xd systemd[1]: systemd 247.3-7 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=unified)
>>>>>> Jul 20 20:02:05 xd systemd[1]: Detected architecture x86-64.
>>>>>> Jul 20 20:02:05 xd systemd[1]: Set hostname to <xd>.
>>>>>> Jul 20 20:02:05 xd systemd[1]: /lib/systemd/system/plymouth-start.service:16: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed.
>>>>>> Jul 20 20:02:05 xd systemd[1]: Queued start job for default target Graphical Interface.
>>>>>> Jul 20 20:02:05 xd systemd[1]: Created slice system-getty.slice.
>>>>>> Jul 20 20:02:05 xd systemd[1]: Created slice system-modprobe.slice.
>>>>>> Jul 20 20:02:05 xd systemd[1]: Created slice system-systemd\x2dfsck.slice.
>>>>>> Jul 20 20:02:05 xd systemd[1]: Created slice User and Session Slice.
>>>>>> Jul 20 20:02:05 xd systemd[1]: Started Forward Password Requests to Wall Directory Watch.
>>>>>> Jul 20 20:02:05 xd systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
>>>>>> Jul 20 20:02:05 xd systemd[1]: Reached target User and Group Name Lookups.
>>>>>> Jul 20 20:02:05 xd systemd[1]: Reached target Remote File Systems.
>>>>>> Jul 20 20:02:05 xd systemd[1]: Reached target Slices.
>>>>>> Jul 20 20:02:05 xd systemd[1]: Listening on Device-mapper event daemon FIFOs.
>>>>>> Jul 20 20:02:05 xd systemd[1]: Listening on LVM2 poll daemon socket.
>>>>>> Jul 20 20:02:05 xd systemd[1]: Listening on Syslog Socket.
>>>>>> Jul 20 20:02:05 xd systemd[1]: Listening on fsck to fsckd communication Socket.
>>>>>> Jul 20 20:02:05 xd systemd[1]: Listening on initctl Compatibility Named Pipe.
>>>>>> Jul 20 20:02:05 xd systemd[1]: Listening on Journal Audit Socket.
>>>>>> Jul 20 20:02:05 xd systemd[1]: Listening on Journal Socket (/dev/log).
>>>>>> Jul 20 20:02:05 xd systemd[1]: Listening on Journal Socket.
>>>>>> Jul 20 20:02:05 xd systemd[1]: Listening on udev Control Socket.
>>>>>> Jul 20 20:02:05 xd systemd[1]: Listening on udev Kernel Socket.
>>>>>> Jul 20 20:02:05 xd systemd[1]: Mounting Huge Pages File System...
>>>>>> Jul 20 20:02:05 xd systemd[1]: Mounting POSIX Message Queue File System...
>>>>>> Jul 20 20:02:05 xd systemd[1]: Mounting Kernel Debug File System...
>>>>>> Jul 20 20:02:05 xd systemd[1]: Mounting Kernel Trace File System...
>>>>>> Jul 20 20:02:05 xd systemd[1]: Finished Availability of block devices.
>>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Set the console keyboard layout...
>>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Create list of static device nodes for the current kernel...
>>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
>>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Load Kernel Module configfs...
>>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Load Kernel Module drm...
>>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Load Kernel Module fuse...
>>>>>> Jul 20 20:02:05 xd systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
>>>>>> Jul 20 20:02:05 xd systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
>>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Journal Service...
>>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Load Kernel Modules...
>>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Remount Root and Kernel File Systems...
>>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Coldplug All udev Devices...
>>>>>> Jul 20 20:02:05 xd systemd[1]: Mounted Huge Pages File System.
>>>>>> Jul 20 20:02:05 xd systemd[1]: Mounted POSIX Message Queue File System.
>>>>>> Jul 20 20:02:05 xd systemd[1]: Mounted Kernel Debug File System.
>>>>>> Jul 20 20:02:05 xd systemd[1]: Mounted Kernel Trace File System.
>>>>>> Jul 20 20:02:05 xd systemd[1]: Finished Create list of static device nodes for the current kernel.
>>>>>> Jul 20 20:02:05 xd systemd[1]: modprobe@configfs.service: Succeeded.
>>>>>> Jul 20 20:02:05 xd systemd[1]: Finished Load Kernel Module configfs.
>>>>>> Jul 20 20:02:05 xd systemd[1]: modprobe@drm.service: Succeeded.
>>>>>> Jul 20 20:02:05 xd systemd[1]: Finished Load Kernel Module drm.
>>>>>> Jul 20 20:02:05 xd systemd[1]: Mounting Kernel Configuration File System...
>>>>>> Jul 20 20:02:05 xd systemd[1]: Mounted Kernel Configuration File System.
>>>>>> Jul 20 20:02:05 xd kernel: EXT4-fs (nvme0n1p3): re-mounted. Opts: errors=remount-ro
>>>>>> Jul 20 20:02:05 xd systemd[1]: Finished Remount Root and Kernel File Systems.
>>>>>> Jul 20 20:02:05 xd kernel: fuse: init (API version 7.32)
>>>>>> Jul 20 20:02:05 xd systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
>>>>>> Jul 20 20:02:05 xd systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped.
>>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Load/Save Random Seed...
>>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Create System Users...
>>>>>> Jul 20 20:02:05 xd systemd[1]: modprobe@fuse.service: Succeeded.
>>>>>> Jul 20 20:02:05 xd systemd[1]: Finished Load Kernel Module fuse.
>>>>>> Jul 20 20:02:05 xd systemd[1]: Mounting FUSE Control File System...
>>>>>> Jul 20 20:02:05 xd systemd[1]: Mounted FUSE Control File System.
>>>>>> Jul 20 20:02:05 xd kernel: lp: driver loaded but no devices found
>>>>>> Jul 20 20:02:05 xd kernel: ppdev: user-space parallel port driver
>>>>>> Jul 20 20:02:05 xd systemd[1]: Finished Load/Save Random Seed.
>>>>>> Jul 20 20:02:05 xd systemd[1]: Condition check resulted in First Boot Complete being skipped.
>>>>>> Jul 20 20:02:05 xd systemd[1]: Finished Create System Users.
>>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Create Static Device Nodes in /dev...
>>>>>> Jul 20 20:02:05 xd systemd[1]: Finished Create Static Device Nodes in /dev.
>>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Rule-based Manager for Device Events and Files...
>>>>>> Jul 20 20:02:05 xd systemd[1]: Finished Set the console keyboard layout.
>>>>>> Jul 20 20:02:05 xd systemd[1]: Started Journal Service.
>>>>>> Jul 20 20:02:05 xd kernel: nvidia: module license 'NVIDIA' taints kernel.
>>>>>> Jul 20 20:02:05 xd kernel: Disabling lock debugging due to kernel taint
>>>>>> Jul 20 20:02:05 xd kernel: nvidia-nvlink: Nvlink Core is being initialized, major device number 245
>>>>>> Jul 20 20:02:05 xd kernel:
>>>>>> Jul 20 20:02:05 xd kernel: nvidia 0000:01:00.0: enabling device (0006 -> 0007)
>>>>>> Jul 20 20:02:05 xd kernel: NVRM: loading NVIDIA UNIX x86_64 Kernel Module 470.129.06 Thu May 12 22:52:02 UTC 2022
>>>>>> Jul 20 20:02:05 xd kernel: input: Acer Wireless Radio Control as /devices/LNXSYSTM:00/10251229:00/input/input9
>>>>>> Jul 20 20:02:05 xd kernel: input: Intel HID events as /devices/platform/INTC1051:00/input/input10
>>>>>> Jul 20 20:02:05 xd kernel: intel-hid INTC1051:00: platform supports 5 button array
>>>>>> Jul 20 20:02:05 xd kernel: input: Intel HID 5 button array as /devices/platform/INTC1051:00/input/input11
>>>>>> Jul 20 20:02:05 xd kernel: intel_pmc_core INT33A1:00: initialized
>>>>>> Jul 20 20:02:05 xd kernel: ACPI: AC Adapter [ACAD] (on-line)
>>>>>> Jul 20 20:02:05 xd kernel: nvidia-modeset: Loading NVIDIA Kernel Mode Setting Driver for UNIX platforms 470.129.06 Thu May 12 22:42:45 UTC 2022
>>>>>> Jul 20 20:02:05 xd kernel: mc: Linux media interface: v0.10
>>>>>> Jul 20 20:02:05 xd kernel: mei_me 0000:00:16.0: enabling device (0000 -> 0002)
>>>>>> Jul 20 20:02:05 xd kernel: ee1004 0-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
>>>>>> Jul 20 20:02:05 xd kernel: [drm] [nvidia-drm] [GPU ID 0x00000100] Loading driver
>>>>>> Jul 20 20:02:05 xd kernel: [drm] Initialized nvidia-drm 0.0.0 20160202 for 0000:01:00.0 on minor 1
>>>>>> Jul 20 20:02:05 xd kernel: videodev: Linux video capture interface: v2.00
>>>>>> Jul 20 20:02:05 xd kernel: iTCO_vendor_support: vendor-support=0
>>>>>> Jul 20 20:02:05 xd kernel: iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
>>>>>> Jul 20 20:02:05 xd kernel: iTCO_wdt: Found a Intel PCH TCO device (Version=6, TCOBASE=0x0400)
>>>>>> Jul 20 20:02:05 xd kernel: iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
>>>>>> Jul 20 20:02:05 xd kernel: EXT4-fs (nvme0n1p2): mounting ext2 file system using the ext4 subsystem
>>>>>> Jul 20 20:02:05 xd kernel: EXT4-fs (nvme0n1p2): mounted filesystem without journal. Opts: (null)
>>>>>> Jul 20 20:02:05 xd kernel: ext2 filesystem being mounted at /boot supports timestamps until 2038 (0x7fffffff)
>>>>>> Jul 20 20:02:05 xd kernel: uvcvideo: Found UVC 1.00 device HD User Facing (0408:a061)
>>>>>> Jul 20 20:02:05 xd kernel: Adding 31182844k swap on /dev/nvme0n1p4. Priority:-2 extents:1 across:31182844k SSFS
>>>>>> Jul 20 20:02:05 xd kernel: input: HD User Facing: HD User Facing as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/input/input12
>>>>>> Jul 20 20:02:05 xd kernel: input: PC Speaker as /devices/platform/pcspkr/input/input13
>>>>>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=401 comm="apparmor_parser"
>>>>>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-oopslash" pid=402 comm="apparmor_parser"
>>>>>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=405 comm="apparmor_parser"
>>>>>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=405 comm="apparmor_parser"
>>>>>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=403 comm="apparmor_parser"
>>>>>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=403 comm="apparmor_parser"
>>>>>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=403 comm="apparmor_parser"
>>>>>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cups-browsed" pid=407 comm="apparmor_parser"
>>>>>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.840:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-senddoc" pid=409 comm="apparmor_parser"
>>>>>> Jul 20 20:02:05 xd kernel: usbcore: registered new interface driver uvcvideo
>>>>>> Jul 20 20:02:05 xd kernel: USB Video Class driver (1.1.1)
>>>>>> Jul 20 20:02:05 xd kernel: pstore: Using crash dump compression: deflate
>>>>>> Jul 20 20:02:05 xd kernel: input: ELAN0515:01 04F3:3142 Mouse as /devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input14
>>>>>> Jul 20 20:02:05 xd kernel: input: ELAN0515:01 04F3:3142 Touchpad as /devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input16
>>>>>> Jul 20 20:02:05 xd kernel: hid-multitouch 0018:04F3:3142.0001: input,hidraw0: I2C HID v1.00 Mouse [ELAN0515:01 04F3:3142] on i2c-ELAN0515:01
>>>>>> Jul 20 20:02:05 xd kernel: pstore: Registered efi as persistent store backend
>>>>>> Jul 20 20:02:05 xd kernel: acer_wmi: Acer Laptop ACPI-WMI Extras
>>>>>> Jul 20 20:02:05 xd kernel: acer_wmi: Function bitmap for Communication Button: 0x801
>>>>>> Jul 20 20:02:05 xd kernel: input: Acer WMI hotkeys as /devices/virtual/input/input17
>>>>>> Jul 20 20:02:05 xd kernel: snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040100
>>>>>> Jul 20 20:02:05 xd kernel: snd_hda_intel 0000:00:1f.3: Digital mics found on Skylake+ platform, using SOF driver
>>>>>> Jul 20 20:02:05 xd kernel: cryptd: max_cpu_qlen set to 1000
>>>>>> Jul 20 20:02:06 xd kernel: AVX2 version of gcm_enc/dec engaged.
>>>>>> Jul 20 20:02:06 xd kernel: AES CTR mode by8 optimization enabled
>>>>>> Jul 20 20:02:06 xd kernel: resource sanity check: requesting [mem 0xfedc0000-0xfedcdfff], which spans more than pnp 00:04 [mem 0xfedc0000-0xfedc7fff]
>>>>>> Jul 20 20:02:06 xd kernel: caller tgl_uncore_imc_freerunning_init_box+0xbb/0x100 [intel_uncore] mapping multiple BARs
>>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040100
>>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: Digital mics found on Skylake+ platform, using SOF driver
>>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: enabling device (0000 -> 0002)
>>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if 0x040100
>>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
>>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: use msi interrupt mode
>>>>>> Jul 20 20:02:06 xd kernel: ACPI Warning: \_SB.PC00.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20200925/nsarguments-61)
>>>>>> Jul 20 20:02:06 xd kernel: enp2s0: 0xffffbd82000e9000, 08:8f:c3:4f:86:c5, IRQ 145
>>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: hda codecs found, mask 5
>>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: using HDA machine driver skl_hda_dsp_generic now
>>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: DMICs detected in NHLT tables: 2
>>>>>> Jul 20 20:02:06 xd kernel: alg: No test for fips(ansi_cprng) (fips_ansi_cprng)
>>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: firmware: failed to load intel/sof/sof-tgl.ri (-2)
>>>>>> Jul 20 20:02:06 xd kernel: firmware_class: See https://wiki.debian.org/Firmware for information about missing firmware
>>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: Direct firmware load for intel/sof/sof-tgl.ri failed with error -2
>>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: error: request firmware intel/sof/sof-tgl.ri failed err: -2
>>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: error: failed to load DSP firmware -2
>>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: error: sof_probe_work failed err: -2
>>>>>> Jul 20 20:02:06 xd kernel: Bluetooth: Core ver 2.22
>>>>>> Jul 20 20:02:06 xd kernel: NET: Registered protocol family 31
>>>>>> Jul 20 20:02:06 xd kernel: Bluetooth: HCI device and connection manager initialized
>>>>>> Jul 20 20:02:06 xd kernel: Bluetooth: HCI socket layer initialized
>>>>>> Jul 20 20:02:06 xd kernel: Bluetooth: L2CAP socket layer initialized
>>>>>> Jul 20 20:02:06 xd kernel: Bluetooth: SCO socket layer initialized
>>>>>> Jul 20 20:02:06 xd kernel: usbcore: registered new interface driver btusb
>>>>>> Jul 20 20:02:07 xd kernel: intel_rapl_msr: PL4 support detected.
>>>>>> Jul 20 20:02:07 xd kernel: intel_rapl_common: Found RAPL domain package
>>>>>> Jul 20 20:02:07 xd kernel: intel_rapl_common: Found RAPL domain core
>>>>>> Jul 20 20:02:07 xd kernel: intel_rapl_common: Found RAPL domain uncore
>>>>>> Jul 20 20:02:07 xd kernel: mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_component_ops [i915])
>>>>>> Jul 20 20:02:07 xd kernel: Bluetooth: BNEP (Ethernet Emulation) ver 1.3
>>>>>> Jul 20 20:02:07 xd kernel: Bluetooth: BNEP filters: protocol multicast
>>>>>> Jul 20 20:02:07 xd kernel: Bluetooth: BNEP socket layer initialized
>>>>>> Jul 20 20:02:09 xd kernel: r8168: enp2s0: link up
>>>>>> Jul 20 20:02:09 xd kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
>>>>>> Jul 20 20:02:09 xd kernel: rfkill: input handler disabled
>>>>>> Jul 20 20:02:17 xd kernel: rfkill: input handler enabled
>>>>>> Jul 20 20:02:18 xd kernel: rfkill: input handler disabled
>>>>>>
>>>>>
>>>
>>
Re: Boot into Xen on debian11 [ In reply to ]
On 7/29/2022 2:16 PM, Chuck Zmudzinski wrote:
> On 7/29/2022 12:33 PM, Bruno wrote:
> >
> > Xen
> >
> >
> >
> > Hello Chuck, Leigh, Group.
> >
> >
> > I have upgraded to testing as suggested.
> >
> >
> > Xen boot is still not working. It lands on initramfs.
> >
> >
> > Do you think it’s about a change that should be done at firmware or Xen, please?
> >
>
> I presume it boots OK without Xen, so you probably need some change to Xen.
> Let me know if it also does not boot without Xen.  Maybe your hardware and BIOS
> are too new for Xen.
>
> You should also check your BIOS settings to make sure the virtualization options
> are enabled (VT-x if you have an Intel CPU or AMD-V if you have an AMD CPU).
> You can also try different settings for the disk controller, etc., in your BIOS.

One other issue that might be causing your trouble: secure boot.

It is possible that secure boot is preventing Xen from running on
your hardware. I have not tried secure boot of Debian with Xen.
Debian has supported secure boot for Debian 10 and above, but I
think that is without Xen. AFAICT, the xen hypervisor is not signed
in the Xen Debian packages, and if you can disable secure boot in
your UEFI/BIOS, I would definitely try that. If you have a Windows
11 laptop, you might not be able to disable secure boot. In that
case, you might need to sign your xen hypervisor boot file with
a machine owner key (MOK) that you will have to generate and
enable in your UEFI/BIOS.

There are guides on how to load third party modules and other
boot components such as Xen using UEFI secure boot on the Internet,
but I have not tried it on my system which is an older Windows 8/10
system that allows secure boot to be disabled.

Chuck

>
> Also, I think I remember from your earlier messages that you were booting the
> xen-4.14-amd64.gz file on Debian 11, which is probably xen-4.16-amd64.gz on Debian
> testing. That is the default that grub uses when booting Debian with Xen, but
> grub also gives the 'Advanced options for Debian GNU/Linux (with Xen hypervisor)'
> boot options on the grub menu. Did you try any of those? Specifically, maybe try
> the boot options under the 'Xen hypervisor, version 4.16-amd64.efi' boot submenu, if
> your BIOS is UEFI (it probably is if you have a fairly new laptop). That doesn't work
> with my eight year old system, but it might be necessary on your much newer laptop
> to use the xen-4.16-amd64.efi version of Xen instead of the xen-4.16-amd64.gz version
> of Xen (both versions are installed with the Debian Xen packages, but only one of them is
> used when booting with Xen).
>
> >
> > This time I can see the hard drive partitions listed under /dev (nvme0n1p1-5), but I cannot mount them. I cannot access a thumb drive either /dev/block, when mounted has two strange symlinks to ../sda1 (8:0 and 1:8). This is a bit frustrating because it does not allow me to export dmesg or other info.
> >
> >
> > Im not receiving the error messages on screen before initramfs, they got hidden now, but I do get:
> >
> >
> >     Gave up waiting for suspend/resume device
> >
> >      Gave up waiting for root file system device.  Common problems:
> >
> > * Boot args (cat /proc/cmdline) - Check rootdelay= (did the system wait long enough?)
> > * Missing modules (cat /proc/modules; ls /dev)
> >
> > ALERT! UUID=0123abc does not exist. Dropping to a shell!
> >
> >
> > On the dmesg, I got again the ACPI errors:
> >
>
> Is dmesg run from the initramfs prompt?
>
> >
> > ACPI BIOS Error
> >
> > (bug): Failure creating named ob
> >
> > I_SB.PCOO.XHCI.RHUB.HS05._UPC], AE ALREADY _EXISTS (Z0211217/dsuloadZ-326)
> >
> > ACPI Error: AE_ALREADY EXISTS, During name
> >
> > slookun/catalog
> >
> > -9451181 ACPI: Skipping parse of AML opcode: OpcodeNane unavailable
> >
> > (20211217/psobject-z20)
> >
> > (0x0014)
> >
> >
> > Repeated several times
> >
> >
> > ACPI: Skipping parse of AML opcode: DpcodeNane unavailable (0x0014)
> >
>
> I saw ACPI errors like that reported on this page:
>
> https://forums.unraid.net/topic/117673-issues-with-getting-single-gpu-passthrough-and-vbios-dump-need-help/
>
> but unfortunately no solution for the problem was posted there. I don't think
> that case involved Xen, either.
>
> > API: 15 API AML tables successfully acquired and loaded
> >
> > xen: registering
> >
> > gsi 9 triggering 0 polarity 0
> >
> >
> > Latter on the dmesg I got repeated errors like this:
> >
> >
> > RIP: 0033:0x7 969a2e2äc9
> >
> > RSP: 002b:00007ffaff421a28 FLAGS: 00000246 RIG RAX: 0000000000000139
> >
> > RAX: Efffffffffffffda RBX: 00005582Bb061d10 RCX: 00007 969aZeZäc9
> >
> > 244.4412241 RDX:000000000 RSI: 000071969a49bfOd RDI: 00000000000000
> >
> > RB: 0000000000020000 ROB: 0000000000000000 R09: 000055828b04c290
> >
> > R10: 000000000000000c R11: 0000000000000246 R12: 00007f969a49bf®d
> >
> > R13: 000000GBOOOOOOOO R14: 000055B28b060aZO R15: 00005582Bb06110
> >
> >
> > (/TASK>
> >
> > INFO: task systemd-udevd: 190 blocked for more than 120 seconds.
> >
> >
> > Tainted: G
> >
> >
> > DE
> >
> > 5.18.0-2-amd64 #1 Debian 5.18.5-1
> >
> > "echo 0 › proc/sys/kernel/hung_task_timeout_secs"
> >
> > disables this nessage.
> >
> > task: systend-udevd
> >
> > state:D stack:
> >
> > © pid: 190 ppid:
> >
> > Call Trace:
> >
> > 164 flags: 0x00004004
> >
> > (TASK)
> >
> > schedule+0x30b/0x9e0
> >
> >
> > schedule+0x4e/Oxb0
> >
> >
> > do_init_module+0x1c3/0x260
> >
> > do_sys_finit_module+Oxb4/0x120
> >
> > do_sysca11_64+0x3B/Oxc0
> >
> >
> > —-
> >
>
> Sorry, I am not knowledgeable enough to understand what these error
> messages might mean. Perhaps a Xen developer can interpret the
> error messages you are seeing. They should be interested in problems
> with booting Xen on a newer laptop so they can update Xen if necessary.
>
> >
> > And here you have another output that can be relevant:
> >
> >
> > (initranfs) cat /proc/cndline
> >
> > placeholder root=UUID=OdcZba®c-97a5-4786-bc97-4d13279afeOf ro quiet loglevel=3
> >
>
> It looks like you manually typed this, as there are spelling errors (cndline, initranfs).
> Also, the UUID for the root filesystem is different from what you had above:UUID=0123abc,
> which is probably not really the UUID.
>
> That's all I can help with.
>
> Chuck
>
> > (initranfs) cat /proc/modules
> >
> > 1915 3604480 2 - Live Oxffffffffc0540000
> >
> > ahci 77824 1 - Live Oxffffffffc01d4000
> >
> > hid generic 24576 1 - Live Oxffffffffc00b6000
> >
> > nume 69632 1
> >
> > - Live Oxffffffffc01bd000
> >
> > libahci 49152 1 ahi, Live oxffffffffc019c000
> >
> > àrm_buddy 204B0 1 1915, Live oxffffffffc0020000
> >
> > 12c_algo_bit 16384 1 1915, Live Oxfffffffic000N00®
> >
> > nune_core 139264 1 nume, Live OxffffffP{c050/000
> >
> > àrm_p_helper 159744 1 1915, Live oxffffffffc04a8000
> >
> > libata 385024 2 ahi,libahci, Live exffffffffc045b000
> >
> > +10_pi 16384 1 nume_core, Live Oxfffffffic01c/000
> >
> > cec 61440 2 1915,drm_dp_helper, Live Oxifffffffc0445000
> >
> > rC_core 61440 1 cec,
> >
> > Live Oxffffffffc01f0000
> >
> > ttm86016 1 i915, Live Oxffffffffc042f000
> >
> > scsi_mod 266240 1 libata, Live Oxffffffffc03dB000
> >
> > àrnkms_helper 192512 2 1915,drm_dp_helper, Live oxfffffffic0392000
> >
> > crc64_rocksoft 204B0 1 t10_pi, Live oxfrIffffic0167000
> >
> > crc64 204B0 1 crc64_rocksoft, Live Oxffffffffc01aa000
> >
> > crc_t10dif 204B0 1 t10 pi, Live exfPffffficOOb0000
> >
> > crct10dif_generic 16384 0 - Live Oxffffffffc00Bd000
> >
> > scsi_common 16384 2 libata,scsi mod, Live OxffffffffcOOBBOOO
> >
> > xhci_pci 204B0 0
> >
> > - Live Oxffffffffc0050000
> >
> > xhci_hcd 315392 1 xhei pci, Live Oxffffffffc0331000
> >
> > crct10dif_pclmul 16384 1
> >
> > - Live Oxffffffffc0162000
> >
> > cret10d if_conmon 16384 3 crc_+10dif,crct10dif _generic,cret10dif pelnul, Live Oxffffffffc0071000
> >
> > crc32c_intel 24576 0 - Live OxfrIPIfficO033000
> >
> > intel_lpss_pci 28672 0 - Live Oxffffffffc0184000
> >
> > ¡2c_hid_acpi 16384 © - Live Oxffffffffc017c000
> >
> > r8168 589824 0 - Live Oxffffffffc00e3000 (DE)
> >
> > 12 mET 32788 9 128351 027, " VI UP SHAAFF-908 000.
> >
> > intel_lpss 16384 1 intel_lpss pci, Live oxffffffffc00c6000
> >
> > ush_ common 16384 2 xhci hed, usbcore, Live OxtffERFfEcOOba000
> >
> > und 24576 © - Live Oxffffffffc00a0000
> >
> > idma64 20480 © - Live oxffffffffc0097000
> >
> > fan 204B0 0 -
> >
> > • Live OxffffffffcO02d000
> >
> > hid 151552 2 hid_generic, 12c hid, Live Oxffffffffc0059000
> >
> > battery 28672 0 -
> >
> > Live Oxffffffffc0048000
> >
> > button 24576 © - Live Oxffffffffc0041000
> >
> > uni 36864 0
> >
> > - Live Oxffffffffc0014000
> >
> > video 57344 1 i915, Live Oxffffffff:0000000
> >
> >
> >> On 20 Jul 2022, at 23:40, Chuck Zmudzinski <brchuckz@netscape.net> wrote:
> >>
> >> ?On 7/20/2022 4:38 PM, Bruno wrote:
> >>> Another thing that catches my eye are the constant fails from beginning to end on nvme:
> >>>
> >>> nvme nvme0: pci function x
> >>> nvme x: PCI INT A: no GSI
> >>> Time-outs I/O x QID completion polled
> >>> missing or invalid SUBQN field
> >>> Timeouts and probes / completion pilled
> >>
> >> I think maybe your laptop is too new for Debian
> >> stable. Debian stable uses Linux 5.10 and Xen 4.14
> >> which were developed probably two years ago or
> >> more. I think you need a distro with Linux 5.18
> >> and Xen 4.16. Debian testing (aka bookworm) will
> >> eventually become Debian 12 should work better,
> >> and you can find many guides for upgrading from
> >> Debian stable to Debian testing by doing an Internet
> >> search. I also think fedora and opensuse might have
> >> those newer versions of Linux and Xen also.
> >>
> >> Chuck
> >>
> >>>
> >>>> On 20 Jul 2022, at 21:19, Bruno <brunoce@kolabnow.com> wrote:
> >>>>
> >>>> ?Error I can see when I grep from dmesg on initramfs:
> >>>>
> >>>> pcieport xxx DCP: error containment capabilities: Int Msg #0, …..
> >>>>
> >>>> And grep fail:
> >>>>
> >>>> PM-Timer consistency check
> >>>>
> >>>> pci xxx: Failed to add - pass through or MSI/MSI-X might fail!
> >>>> pci xxx: BAR x: failed to assign [io size x]
> >>>>
> >>>> r8168: module verification failed: signature and or required key missing - tainting kernel
> >>>>
> >>>>>> On 20 Jul 2022, at 21:03, Chuck Zmudzinski <brchuckz@netscape.net> wrote:
> >>>>>>
> >>>>>> ?On 7/20/22 3:19 PM, Bruno wrote:
> >>>>>>
> >>>>>> Hello Leigh. Hello Chuck.
> >>>>>>
> >>>>>> Thank you again for the support. Unfortunately matters have not moved forward yet.
> >>>>>>
> >>>>>> I have successfully installed nvidia and the non-free firmware miscellanea, and I have re-generated the initramfs ( update-initramfs -k all -c -v ). But I cannot boot on Xen.
> >>>>>>
> >>>>>> I also when booting Xen and landing on initramfs prompt, cannot mount /root ( mount -o remount,rw /root ), and I cannot extract a dmesg of that boot process. I am not getting the ACPI error I was getting before, but clearly the errors in mount are ACPI failure.
> >>>>>>
> >>>>>> Bellow the current journalctl -k -b :
> >>>>>>
> >>>>>
> >>>>> As Leigh said, there should be something like:
> >>>>>
> >>>>> Jul 20 09:19:36 debian kernel: [    0.000000] Hypervisor detected: Xen PV
> >>>>>
> >>>>> In the journal logs, but I don't see it there. See if you can find it in
> >>>>> the /var/log/kern.log file to be sure you are posting the right log file.
> >>>>> It should be there on the attempt to boot into Linux on Xen.
> >>>>>
> >>>>> Maybe there is something wrong with your grub configuration. I know
> >>>>> you posted it in your first message but I don't see anything
> >>>>> terribly wrong there. Are you sure that grub is really booting
> >>>>> the 'Debian Linux/GNU with Xen hypervisor' boot option? It
> >>>>> should boot that, based on what is in your /boot/grub/grub.cfg
> >>>>> file.
> >>>>>
> >>>>> You can also manually select the option to boot Debian with the
> >>>>> Xen hypervisor while the grub boot menu displays.
> >>>>>
> >>>>> It has been a long time since I installed Xen on Debian,
> >>>>> I have been just upgrading my installation that
> >>>>> goes all the way back to Debian 7. It may be there
> >>>>> is a bug in the current Debian Xen metapackage
> >>>>> installation system.
> >>>>>
> >>>>> I have been planning to try to do a clean install of
> >>>>> Xen on Debian 11 to see if it still works right. I will
> >>>>> try it later this week and let you know if there is
> >>>>> a bug in the Debian Xen installation system.
> >>>>>
> >>>>> Chuck
> >>>>>
> >>>>>
> >>>>>> Jul 20 20:02:05 xd kernel: Linux version 5.10.0-16-amd64 (debian-kernel@lists.debian.org) (gcc-10 (Debian 10.2.1-6) 10.2.1 20210110, GNU ld (GNU Binutils for Debian) 2.35.2) #1 SMP Debian 5.10.127-1 (2022-06-30)
> >>>>>> Jul 20 20:02:05 xd kernel: Command line: BOOT_IMAGE=/vmlinuz-5.10.0-16-amd64 root=UUID=0123abcd ro quiet
> >>>>>> Jul 20 20:02:05 xd kernel: x86/split lock detection: warning about user-space split_locks
> >>>>>> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
> >>>>>> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
> >>>>>> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
> >>>>>> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask'
> >>>>>> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'
> >>>>>> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'
> >>>>>> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
> >>>>>> Jul 20 20:02:05 xd kernel: x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
> >>>>>> Jul 20 20:02:05 xd kernel: x86/fpu: xstate_offset[5]: 832, xstate_sizes[5]: 64
> >>>>>> Jul 20 20:02:05 xd kernel: x86/fpu: xstate_offset[6]: 896, xstate_sizes[6]: 512
> >>>>>> Jul 20 20:02:05 xd kernel: x86/fpu: xstate_offset[7]: 1408, xstate_sizes[7]: 1024
> >>>>>> Jul 20 20:02:05 xd kernel: x86/fpu: xstate_offset[9]: 2432, xstate_sizes[9]: 8
> >>>>>> Jul 20 20:02:05 xd kernel: x86/fpu: Enabled xstate features 0x2e7, context size is 2440 bytes, using 'compacted' format.
> >>>>>> Jul 20 20:02:05 xd kernel: BIOS-provided physical RAM map:
> >>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
> >>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
> >>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000000100000-0x000000003fd98fff] usable
> >>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x000000003fd99000-0x0000000040698fff] reserved
> >>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000040699000-0x00000000424aefff] usable
> >>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000424af000-0x000000004287efff] type 20
> >>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x000000004287f000-0x00000000442fefff] reserved
> >>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000442ff000-0x0000000044b2efff] ACPI NVS
> >>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000044b2f000-0x0000000044bfefff] ACPI data
> >>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000044bff000-0x0000000044bfffff] usable
> >>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000044c00000-0x0000000048ffffff] reserved
> >>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000049e00000-0x000000004f7fffff] reserved
> >>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000c0000000-0x00000000cfffffff] reserved
> >>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000fe010000-0x00000000fe010fff] reserved
> >>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000fed20000-0x00000000fed7ffff] reserved
> >>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000ff500000-0x00000000ffffffff] reserved
> >>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000100000000-0x00000004b07fffff] usable
> >>>>>> Jul 20 20:02:05 xd kernel: NX (Execute Disable) protection: active
> >>>>>> Jul 20 20:02:05 xd kernel: efi: EFI v2.70 by INSYDE Corp.
> >>>>>> Jul 20 20:02:05 xd kernel: efi: ACPI=0x44bfe000 ACPI 2.0=0x44bfe014 TPMFinalLog=0x44ac5000 SMBIOS=0x429de000 SMBIOS 3.0=0x429dc000 ESRT=0x3bf68a98 MOKvar=0x3bee5000
> >>>>>> Jul 20 20:02:05 xd kernel: secureboot: Secure boot could not be determined (mode 0)
> >>>>>> Jul 20 20:02:05 xd kernel: SMBIOS 3.3.0 present.
> >>>>>> Jul 20 20:02:05 xd kernel: DMI: Acer Aspire A517-52G/Jasmine_TL, BIOS V1.26 03/14/2022
> >>>>>> Jul 20 20:02:05 xd kernel: tsc: Detected 2400.000 MHz processor
> >>>>>> Jul 20 20:02:05 xd kernel: tsc: Detected 2419.200 MHz TSC
> >>>>>> Jul 20 20:02:05 xd kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
> >>>>>> Jul 20 20:02:05 xd kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
> >>>>>> Jul 20 20:02:05 xd kernel: last_pfn = 0x4b0800 max_arch_pfn = 0x400000000
> >>>>>> Jul 20 20:02:05 xd kernel: MTRR default type: write-back
> >>>>>> Jul 20 20:02:05 xd kernel: MTRR fixed ranges enabled:
> >>>>>> Jul 20 20:02:05 xd kernel: 00000-9FFFF write-back
> >>>>>> Jul 20 20:02:05 xd kernel: A0000-BFFFF uncachable
> >>>>>> Jul 20 20:02:05 xd kernel: C0000-FFFFF write-protect
> >>>>>> Jul 20 20:02:05 xd kernel: MTRR variable ranges enabled:
> >>>>>> Jul 20 20:02:05 xd kernel: 0 base 0080000000 mask 7F80000000 uncachable
> >>>>>> Jul 20 20:02:05 xd kernel: 1 base 0060000000 mask 7FE0000000 uncachable
> >>>>>> Jul 20 20:02:05 xd kernel: 2 base 0050000000 mask 7FF0000000 uncachable
> >>>>>> Jul 20 20:02:05 xd kernel: 3 base 004C000000 mask 7FFC000000 uncachable
> >>>>>> Jul 20 20:02:05 xd kernel: 4 base 004B000000 mask 7FFF000000 uncachable
> >>>>>> Jul 20 20:02:05 xd kernel: 5 base 4000000000 mask 4000000000 uncachable
> >>>>>> Jul 20 20:02:05 xd kernel: 6 disabled
> >>>>>> Jul 20 20:02:05 xd kernel: 7 disabled
> >>>>>> Jul 20 20:02:05 xd kernel: 8 disabled
> >>>>>> Jul 20 20:02:05 xd kernel: 9 disabled
> >>>>>> Jul 20 20:02:05 xd kernel: x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
> >>>>>> Jul 20 20:02:05 xd kernel: last_pfn = 0x44c00 max_arch_pfn = 0x400000000
> >>>>>> Jul 20 20:02:05 xd kernel: esrt: Reserving ESRT space from 0x000000003bf68a98 to 0x000000003bf68ad0.
> >>>>>> Jul 20 20:02:05 xd kernel: e820: update [mem 0x3bf68000-0x3bf68fff] usable ==> reserved
> >>>>>> Jul 20 20:02:05 xd kernel: e820: update [mem 0x3bee5000-0x3bee7fff] usable ==> reserved
> >>>>>> Jul 20 20:02:05 xd kernel: Using GB pages for direct mapping
> >>>>>> Jul 20 20:02:05 xd kernel: RAMDISK: [mem 0x32341000-0x35197fff]
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Early table checksum verification disabled
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: RSDP 0x0000000044BFE014 000024 (v02 ACRSYS)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: XSDT 0x0000000044BDB188 000124 (v01 ACRSYS ACRPRDCT 00000002 01000013)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: FACP 0x0000000044BDE000 000114 (v06 ACRSYS ACRPRDCT 00000002 1025 00040000)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: DSDT 0x0000000044B81000 059948 (v02 ACRSYS ACRPRDCT 00000002 1025 00040000)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: FACS 0x0000000044AA2000 000040
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: UEFI 0x0000000044B2E000 000236 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BFA000 00255C (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BF9000 000105 (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BF6000 002137 (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BF2000 003300 (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BF1000 00077B (v02 ACRSYS ACRPRDCT 00001000 1025 00040000)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: TPM2 0x0000000044BF0000 00004C (v04 ACRSYS ACRPRDCT 00000002 1025 00040000)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: MSDM 0x0000000044BEF000 000055 (v03 ACRSYS ACRPRDCT 00000001 1025 00040000)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BEE000 000D02 (v02 ACRSYS ACRPRDCT 00000000 1025 00040000)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: NHLT 0x0000000044BEC000 001B54 (v00 ACRSYS ACRPRDCT 00000002 1025 00040000)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: LPIT 0x0000000044BEB000 0000CC (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: WSMT 0x0000000044BEA000 000028 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BE9000 000B70 (v02 ACRSYS ACRPRDCT 00001000 1025 00040000)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BE8000 00012A (v02 ACRSYS ACRPRDCT 00000000 1025 00040000)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: DBGP 0x0000000044BE7000 000034 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: DBG2 0x0000000044BE6000 000054 (v00 ACRSYS ACRPRDCT 00000002 1025 00040000)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BDF000 006BA9 (v01 ACRSYS ACRPRDCT 00001000 1025 00040000)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: HPET 0x0000000044BDD000 000038 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: APIC 0x0000000044BDC000 00012C (v04 ACRSYS ACRPRDCT 00000002 1025 00040000)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: MCFG 0x0000000044BFD000 00003C (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044B80000 000C78 (v02 ACRSYS ACRPRDCT 00000002 1025 00040000)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: DMAR 0x0000000044B7F000 000088 (v02 ACRSYS ACRPRDCT 00000002 1025 00040000)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044B7C000 0020D6 (v01 ACRSYS ACRPRDCT 00001000 1025 00040000)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: UEFI 0x0000000044A5B000 00063A (v01 ACRSYS ACRPRDCT 00000000 1025 00040000)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: UEFI 0x0000000044A5A000 00005C (v01 ACRSYS ACRPRDCT 00000000 1025 00040000)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044B7B000 000985 (v02 ACRSYS ACRPRDCT 00001000 1025 00040000)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044B7A000 0000F8 (v01 ACRSYS ACRPRDCT 00001000 1025 00040000)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044B79000 000835 (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: FPDT 0x0000000044B78000 000044 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: PTDT 0x0000000044B76000 000CFE (v00 ACRSYS ACRPRDCT 00000005 1025 00040000)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: BGRT 0x0000000044B77000 000038 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving FACP table memory at [mem 0x44bde000-0x44bde113]
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving DSDT table memory at [mem 0x44b81000-0x44bda947]
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving FACS table memory at [mem 0x44aa2000-0x44aa203f]
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving UEFI table memory at [mem 0x44b2e000-0x44b2e235]
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bfa000-0x44bfc55b]
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bf9000-0x44bf9104]
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bf6000-0x44bf8136]
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bf2000-0x44bf52ff]
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bf1000-0x44bf177a]
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving TPM2 table memory at [mem 0x44bf0000-0x44bf004b]
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving MSDM table memory at [mem 0x44bef000-0x44bef054]
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bee000-0x44beed01]
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving NHLT table memory at [mem 0x44bec000-0x44bedb53]
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving LPIT table memory at [mem 0x44beb000-0x44beb0cb]
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving WSMT table memory at [mem 0x44bea000-0x44bea027]
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44be9000-0x44be9b6f]
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44be8000-0x44be8129]
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving DBGP table memory at [mem 0x44be7000-0x44be7033]
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving DBG2 table memory at [mem 0x44be6000-0x44be6053]
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bdf000-0x44be5ba8]
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving HPET table memory at [mem 0x44bdd000-0x44bdd037]
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving APIC table memory at [mem 0x44bdc000-0x44bdc12b]
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving MCFG table memory at [mem 0x44bfd000-0x44bfd03b]
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b80000-0x44b80c77]
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving DMAR table memory at [mem 0x44b7f000-0x44b7f087]
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b7c000-0x44b7e0d5]
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving UEFI table memory at [mem 0x44a5b000-0x44a5b639]
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving UEFI table memory at [mem 0x44a5a000-0x44a5a05b]
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b7b000-0x44b7b984]
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b7a000-0x44b7a0f7]
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b79000-0x44b79834]
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving FPDT table memory at [mem 0x44b78000-0x44b78043]
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving PTDT table memory at [mem 0x44b76000-0x44b76cfd]
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving BGRT table memory at [mem 0x44b77000-0x44b77037]
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Local APIC address 0xfee00000
> >>>>>> Jul 20 20:02:05 xd kernel: No NUMA configuration found
> >>>>>> Jul 20 20:02:05 xd kernel: Faking a node at [mem 0x0000000000000000-0x00000004b07fffff]
> >>>>>> Jul 20 20:02:05 xd kernel: NODE_DATA(0) allocated [mem 0x4b07d6000-0x4b07fffff]
> >>>>>> Jul 20 20:02:05 xd kernel: Zone ranges:
> >>>>>> Jul 20 20:02:05 xd kernel: DMA [mem 0x0000000000001000-0x0000000000ffffff]
> >>>>>> Jul 20 20:02:05 xd kernel: DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
> >>>>>> Jul 20 20:02:05 xd kernel: Normal [mem 0x0000000100000000-0x00000004b07fffff]
> >>>>>> Jul 20 20:02:05 xd kernel: Device empty
> >>>>>> Jul 20 20:02:05 xd kernel: Movable zone start for each node
> >>>>>> Jul 20 20:02:05 xd kernel: Early memory node ranges
> >>>>>> Jul 20 20:02:05 xd kernel: node 0: [mem 0x0000000000001000-0x000000000009efff]
> >>>>>> Jul 20 20:02:05 xd kernel: node 0: [mem 0x0000000000100000-0x000000003fd98fff]
> >>>>>> Jul 20 20:02:05 xd kernel: node 0: [mem 0x0000000040699000-0x00000000424aefff]
> >>>>>> Jul 20 20:02:05 xd kernel: node 0: [mem 0x0000000044bff000-0x0000000044bfffff]
> >>>>>> Jul 20 20:02:05 xd kernel: node 0: [mem 0x0000000100000000-0x00000004b07fffff]
> >>>>>> Jul 20 20:02:05 xd kernel: Initmem setup node 0 [mem 0x0000000000001000-0x00000004b07fffff]
> >>>>>> Jul 20 20:02:05 xd kernel: On node 0 totalpages: 4137806
> >>>>>> Jul 20 20:02:05 xd kernel: DMA zone: 64 pages used for memmap
> >>>>>> Jul 20 20:02:05 xd kernel: DMA zone: 25 pages reserved
> >>>>>> Jul 20 20:02:05 xd kernel: DMA zone: 3998 pages, LIFO batch:0
> >>>>>> Jul 20 20:02:05 xd kernel: DMA32 zone: 4143 pages used for memmap
> >>>>>> Jul 20 20:02:05 xd kernel: DMA32 zone: 265136 pages, LIFO batch:63
> >>>>>> Jul 20 20:02:05 xd kernel: Normal zone: 60448 pages used for memmap
> >>>>>> Jul 20 20:02:05 xd kernel: Normal zone: 3868672 pages, LIFO batch:63
> >>>>>> Jul 20 20:02:05 xd kernel: On node 0, zone DMA: 1 pages in unavailable ranges
> >>>>>> Jul 20 20:02:05 xd kernel: On node 0, zone DMA: 97 pages in unavailable ranges
> >>>>>> Jul 20 20:02:05 xd kernel: On node 0, zone DMA32: 2304 pages in unavailable ranges
> >>>>>> Jul 20 20:02:05 xd kernel: On node 0, zone DMA32: 10064 pages in unavailable ranges
> >>>>>> Jul 20 20:02:05 xd kernel: On node 0, zone Normal: 13312 pages in unavailable ranges
> >>>>>> Jul 20 20:02:05 xd kernel: On node 0, zone Normal: 30720 pages in unavailable ranges
> >>>>>> Jul 20 20:02:05 xd kernel: Reserving Intel graphics memory at [mem 0x4b800000-0x4f7fffff]
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: PM-Timer IO Port: 0x1808
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Local APIC address 0xfee00000
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
> >>>>>> Jul 20 20:02:05 xd kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: IRQ0 used by override.
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: IRQ9 used by override.
> >>>>>> Jul 20 20:02:05 xd kernel: Using ACPI (MADT) for SMP configuration information
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
> >>>>>> Jul 20 20:02:05 xd kernel: e820: update [mem 0x3bf6a000-0x3c05dfff] usable ==> reserved
> >>>>>> Jul 20 20:02:05 xd kernel: TSC deadline timer available
> >>>>>> Jul 20 20:02:05 xd kernel: smpboot: Allowing 8 CPUs, 0 hotplug CPUs
> >>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
> >>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
> >>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x3bee5000-0x3bee7fff]
> >>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x3bf68000-0x3bf68fff]
> >>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x3bf6a000-0x3c05dfff]
> >>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x3fd99000-0x40698fff]
> >>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x424af000-0x4287efff]
> >>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x4287f000-0x442fefff]
> >>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x442ff000-0x44b2efff]
> >>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x44b2f000-0x44bfefff]
> >>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x44c00000-0x48ffffff]
> >>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x49000000-0x49dfffff]
> >>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x49e00000-0x4f7fffff]
> >>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x4f800000-0xbfffffff]
> >>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xc0000000-0xcfffffff]
> >>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xd0000000-0xfe00ffff]
> >>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xfe010000-0xfe010fff]
> >>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xfed1ffff]
> >>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xfed7ffff]
> >>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xff4fffff]
> >>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xff500000-0xffffffff]
> >>>>>> Jul 20 20:02:05 xd kernel: [mem 0x4f800000-0xbfffffff] available for PCI devices
> >>>>>> Jul 20 20:02:05 xd kernel: Booting paravirtualized kernel on bare hardware
> >>>>>> Jul 20 20:02:05 xd kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
> >>>>>> Jul 20 20:02:05 xd kernel: setup_percpu: NR_CPUS:8192 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
> >>>>>> Jul 20 20:02:05 xd kernel: percpu: Embedded 58 pages/cpu s200664 r8192 d28712 u262144
> >>>>>> Jul 20 20:02:05 xd kernel: pcpu-alloc: s200664 r8192 d28712 u262144 alloc=1*2097152
> >>>>>> Jul 20 20:02:05 xd kernel: pcpu-alloc: [0] 0 1 2 3 4 5 6 7
> >>>>>> Jul 20 20:02:05 xd kernel: Built 1 zonelists, mobility grouping on. Total pages: 4073126
> >>>>>> Jul 20 20:02:05 xd kernel: Policy zone: Normal
> >>>>>> Jul 20 20:02:05 xd kernel: Kernel command line: BOOT_IMAGE=/vmlinuz-5.10.0-16-amd64 root=UUID=0dc2ba0c-97d5-4786-bc97-4d13279afe0f ro quiet
> >>>>>> Jul 20 20:02:05 xd kernel: Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
> >>>>>> Jul 20 20:02:05 xd kernel: Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
> >>>>>> Jul 20 20:02:05 xd kernel: mem auto-init: stack:off, heap alloc:on, heap free:off
> >>>>>> Jul 20 20:02:05 xd kernel: Memory: 1010444K/16551224K available (12295K kernel code, 2536K rwdata, 7568K rodata, 2424K init, 3680K bss, 520984K reserved, 0K cma-reserved)
> >>>>>> Jul 20 20:02:05 xd kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
> >>>>>> Jul 20 20:02:05 xd kernel: ftrace: allocating 36455 entries in 143 pages
> >>>>>> Jul 20 20:02:05 xd kernel: ftrace: allocated 143 pages with 5 groups
> >>>>>> Jul 20 20:02:05 xd kernel: rcu: Hierarchical RCU implementation.
> >>>>>> Jul 20 20:02:05 xd kernel: rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=8.
> >>>>>> Jul 20 20:02:05 xd kernel: Rude variant of Tasks RCU enabled.
> >>>>>> Jul 20 20:02:05 xd kernel: Tracing variant of Tasks RCU enabled.
> >>>>>> Jul 20 20:02:05 xd kernel: rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
> >>>>>> Jul 20 20:02:05 xd kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
> >>>>>> Jul 20 20:02:05 xd kernel: NR_IRQS: 524544, nr_irqs: 2048, preallocated irqs: 16
> >>>>>> Jul 20 20:02:05 xd kernel: random: crng init done
> >>>>>> Jul 20 20:02:05 xd kernel: Console: colour dummy device 80x25
> >>>>>> Jul 20 20:02:05 xd kernel: printk: console [tty0] enabled
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Core revision 20200925
> >>>>>> Jul 20 20:02:05 xd kernel: hpet: HPET dysfunctional in PC10. Force disabled.
> >>>>>> Jul 20 20:02:05 xd kernel: APIC: Switch to symmetric I/O mode setup
> >>>>>> Jul 20 20:02:05 xd kernel: DMAR: Host address width 39
> >>>>>> Jul 20 20:02:05 xd kernel: DMAR: DRHD base: 0x000000fed90000 flags: 0x0
> >>>>>> Jul 20 20:02:05 xd kernel: DMAR: dmar0: reg_base_addr fed90000 ver 4:0 cap 1c0000c40660462 ecap 29a00f0505e
> >>>>>> Jul 20 20:02:05 xd kernel: DMAR: DRHD base: 0x000000fed91000 flags: 0x1
> >>>>>> Jul 20 20:02:05 xd kernel: DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
> >>>>>> Jul 20 20:02:05 xd kernel: DMAR: RMRR base: 0x0000004b000000 end: 0x0000004f7fffff
> >>>>>> Jul 20 20:02:05 xd kernel: DMAR-IR: IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 1
> >>>>>> Jul 20 20:02:05 xd kernel: DMAR-IR: HPET id 0 under DRHD base 0xfed91000
> >>>>>> Jul 20 20:02:05 xd kernel: DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
> >>>>>> Jul 20 20:02:05 xd kernel: DMAR-IR: Enabled IRQ remapping in x2apic mode
> >>>>>> Jul 20 20:02:05 xd kernel: x2apic enabled
> >>>>>> Jul 20 20:02:05 xd kernel: Switched APIC routing to cluster x2apic.
> >>>>>> Jul 20 20:02:05 xd kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x22df1149949, max_idle_ns: 440795312789 ns
> >>>>>> Jul 20 20:02:05 xd kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 4838.40 BogoMIPS (lpj=9676800)
> >>>>>> Jul 20 20:02:05 xd kernel: pid_max: default: 32768 minimum: 301
> >>>>>> Jul 20 20:02:05 xd kernel: LSM: Security Framework initializing
> >>>>>> Jul 20 20:02:05 xd kernel: Yama: disabled by default; enable with sysctl kernel.yama.*
> >>>>>> Jul 20 20:02:05 xd kernel: AppArmor: AppArmor initialized
> >>>>>> Jul 20 20:02:05 xd kernel: TOMOYO Linux initialized
> >>>>>> Jul 20 20:02:05 xd kernel: Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
> >>>>>> Jul 20 20:02:05 xd kernel: Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
> >>>>>> Jul 20 20:02:05 xd kernel: x86/cpu: User Mode Instruction Prevention (UMIP) activated
> >>>>>> Jul 20 20:02:05 xd kernel: mce: CPU0: Thermal monitoring enabled (TM1)
> >>>>>> Jul 20 20:02:05 xd kernel: process: using mwait in idle threads
> >>>>>> Jul 20 20:02:05 xd kernel: Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
> >>>>>> Jul 20 20:02:05 xd kernel: Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
> >>>>>> Jul 20 20:02:05 xd kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
> >>>>>> Jul 20 20:02:05 xd kernel: Spectre V2 : Mitigation: Enhanced IBRS
> >>>>>> Jul 20 20:02:05 xd kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
> >>>>>> Jul 20 20:02:05 xd kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
> >>>>>> Jul 20 20:02:05 xd kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
> >>>>>> Jul 20 20:02:05 xd kernel: Freeing SMP alternatives memory: 32K
> >>>>>> Jul 20 20:02:05 xd kernel: smpboot: CPU0: 11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz (family: 0x6, model: 0x8c, stepping: 0x1)
> >>>>>> Jul 20 20:02:05 xd kernel: Performance Events: PEBS fmt4+-baseline, AnyThread deprecated, Icelake events, 32-deep LBR, full-width counters, Intel PMU driver.
> >>>>>> Jul 20 20:02:05 xd kernel: ... version: 5
> >>>>>> Jul 20 20:02:05 xd kernel: ... bit width: 48
> >>>>>> Jul 20 20:02:05 xd kernel: ... generic registers: 8
> >>>>>> Jul 20 20:02:05 xd kernel: ... value mask: 0000ffffffffffff
> >>>>>> Jul 20 20:02:05 xd kernel: ... max period: 00007fffffffffff
> >>>>>> Jul 20 20:02:05 xd kernel: ... fixed-purpose events: 4
> >>>>>> Jul 20 20:02:05 xd kernel: ... event mask: 0001000f000000ff
> >>>>>> Jul 20 20:02:05 xd kernel: rcu: Hierarchical SRCU implementation.
> >>>>>> Jul 20 20:02:05 xd kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
> >>>>>> Jul 20 20:02:05 xd kernel: smp: Bringing up secondary CPUs ...
> >>>>>> Jul 20 20:02:05 xd kernel: x86: Booting SMP configuration:
> >>>>>> Jul 20 20:02:05 xd kernel: .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7
> >>>>>> Jul 20 20:02:05 xd kernel: smp: Brought up 1 node, 8 CPUs
> >>>>>> Jul 20 20:02:05 xd kernel: smpboot: Max logical packages: 1
> >>>>>> Jul 20 20:02:05 xd kernel: smpboot: Total of 8 processors activated (38707.20 BogoMIPS)
> >>>>>> Jul 20 20:02:05 xd kernel: node 0 deferred pages initialised in 20ms
> >>>>>> Jul 20 20:02:05 xd kernel: devtmpfs: initialized
> >>>>>> Jul 20 20:02:05 xd kernel: x86/mm: Memory block size: 128MB
> >>>>>> Jul 20 20:02:05 xd kernel: PM: Registering ACPI NVS region [mem 0x442ff000-0x44b2efff] (8585216 bytes)
> >>>>>> Jul 20 20:02:05 xd kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
> >>>>>> Jul 20 20:02:05 xd kernel: futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
> >>>>>> Jul 20 20:02:05 xd kernel: pinctrl core: initialized pinctrl subsystem
> >>>>>> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 16
> >>>>>> Jul 20 20:02:05 xd kernel: audit: initializing netlink subsys (disabled)
> >>>>>> Jul 20 20:02:05 xd kernel: audit: type=2000 audit(1658343722.028:1): state=initialized audit_enabled=0 res=1
> >>>>>> Jul 20 20:02:05 xd kernel: thermal_sys: Registered thermal governor 'fair_share'
> >>>>>> Jul 20 20:02:05 xd kernel: thermal_sys: Registered thermal governor 'bang_bang'
> >>>>>> Jul 20 20:02:05 xd kernel: thermal_sys: Registered thermal governor 'step_wise'
> >>>>>> Jul 20 20:02:05 xd kernel: thermal_sys: Registered thermal governor 'user_space'
> >>>>>> Jul 20 20:02:05 xd kernel: thermal_sys: Registered thermal governor 'power_allocator'
> >>>>>> Jul 20 20:02:05 xd kernel: cpuidle: using governor ladder
> >>>>>> Jul 20 20:02:05 xd kernel: cpuidle: using governor menu
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: bus type PCI registered
> >>>>>> Jul 20 20:02:05 xd kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
> >>>>>> Jul 20 20:02:05 xd kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xc0000000-0xcfffffff] (base 0xc0000000)
> >>>>>> Jul 20 20:02:05 xd kernel: PCI: MMCONFIG at [mem 0xc0000000-0xcfffffff] reserved in E820
> >>>>>> Jul 20 20:02:05 xd kernel: PCI: Using configuration type 1 for base access
> >>>>>> Jul 20 20:02:05 xd kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
> >>>>>> Jul 20 20:02:05 xd kernel: Kprobes globally optimized
> >>>>>> Jul 20 20:02:05 xd kernel: HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
> >>>>>> Jul 20 20:02:05 xd kernel: HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Module Device)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Processor Device)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Processor Aggregator Device)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Linux-Dell-Video)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS01._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS01._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS02._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS02._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS03._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS03._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS04._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS04._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS05._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS05._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS06._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS06._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS07._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS07._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS08._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS08._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS09._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS09._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS10._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS10._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS01._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS01._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS02._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS02._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS03._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS03._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS04._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS04._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS05._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS05._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS06._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS06._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: 15 ACPI AML tables successfully acquired and loaded
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8882135E00 0001C6 (v02 PmRef Cpu0Psd 00003000 INTL 20160422)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: \_SB_.PR00: _OSC native thermal LVT Acked
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A888213CC00 000386 (v02 PmRef Cpu0Cst 00003001 INTL 20160422)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8500BAB000 0005C3 (v02 PmRef Cpu0Ist 00003000 INTL 20160422)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A888213FC00 00028B (v02 PmRef Cpu0Hwp 00003000 INTL 20160422)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8500F3D000 0008E7 (v02 PmRef ApIst 00003000 INTL 20160422)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8500BAC000 00048A (v02 PmRef ApHwp 00003000 INTL 20160422)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8500BAF800 0004D4 (v02 PmRef ApPsd 00003000 INTL 20160422)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8500BAE000 00048A (v02 PmRef ApCst 00003000 INTL 20160422)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: EC: EC started
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: EC: interrupt blocked
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: \_SB_.PC00.LPCB.EC0_: Boot DSDT EC used to handle transactions
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Interpreter enabled
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: (supports S0 S3 S4 S5)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Using IOAPIC for interrupt routing
> >>>>>> Jul 20 20:02:05 xd kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Enabled 7 GPEs in block 00 to 7F
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [PCRP] (on)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V0PR] (on)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V1PR] (on)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V2PR] (on)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [WRST] (on)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V0PR] (on)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V1PR] (on)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V2PR] (on)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V3PR] (on)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [FN00] (off)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [FN01] (off)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [FN02] (off)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [FN03] (off)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [FN04] (off)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [PIN] (off)
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-e0])
> >>>>>> Jul 20 20:02:05 xd kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
> >>>>>> Jul 20 20:02:05 xd kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR]
> >>>>>> Jul 20 20:02:05 xd kernel: PCI host bridge to bus 0000:00
> >>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
> >>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
> >>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
> >>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [mem 0x4f800000-0xbfffffff window]
> >>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
> >>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [bus 00-e0]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:00.0: [8086:9a14] type 00 class 0x060000
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: [8086:9a49] type 00 class 0x030000
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: reg 0x10: [mem 0x6014000000-0x6014ffffff 64bit]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: reg 0x18: [mem 0x4000000000-0x400fffffff 64bit pref]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: reg 0x20: [io 0x5000-0x503f]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: BAR 2: assigned to efifb
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: DMAR: Skip IOMMU disabling for graphics
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: reg 0x344: [mem 0x00000000-0x00ffffff 64bit]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: VF(n) BAR0 space: [mem 0x00000000-0x06ffffff 64bit] (contains BAR0 for 7 VFs)
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: reg 0x34c: [mem 0x00000000-0x1fffffff 64bit pref]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: VF(n) BAR2 space: [mem 0x00000000-0xdfffffff 64bit pref] (contains BAR2 for 7 VFs)
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: [8086:9a09] type 01 class 0x060400
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: PTM enabled (root), 4ns granularity
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:08.0: [8086:9a11] type 00 class 0x088000
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:08.0: reg 0x10: [mem 0x601540f000-0x601540ffff 64bit]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:0e.0: [8086:9a0b] type 00 class 0x010400
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:0e.0: reg 0x10: [mem 0x6012000000-0x6013ffffff 64bit]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:0e.0: reg 0x18: [mem 0x50000000-0x51ffffff]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:0e.0: reg 0x20: [mem 0x6015300000-0x60153fffff 64bit]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.0: [8086:a0ed] type 00 class 0x0c0330
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.0: reg 0x10: [mem 0x53180000-0x5318ffff 64bit]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.2: [8086:a0ef] type 00 class 0x050000
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.2: reg 0x10: [mem 0x6015404000-0x6015407fff 64bit]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.2: reg 0x18: [mem 0x601540e000-0x601540efff 64bit]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.0: [8086:a0e8] type 00 class 0x0c8000
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.3: [8086:a0eb] type 00 class 0x0c8000
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.3: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:16.0: [8086:a0e0] type 00 class 0x078000
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:16.0: reg 0x10: [mem 0x601540b000-0x601540bfff 64bit]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:16.0: PME# supported from D3hot
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:17.0: [8086:09ab] type 00 class 0x088000
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.0: [8086:a0c5] type 00 class 0x0c8000
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.1: [8086:a0c6] type 00 class 0x0c8000
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.1: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: [8086:a0b0] type 01 class 0x060400
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: PTM enabled (root), 4ns granularity
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: [8086:a0b1] type 01 class 0x060400
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: PME# supported from D0 D3hot D3cold
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: PTM enabled (root), 4ns granularity
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.0: [8086:a082] type 00 class 0x060100
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.3: [8086:a0c8] type 00 class 0x040100
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.3: reg 0x10: [mem 0x6015400000-0x6015403fff 64bit]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.3: reg 0x20: [mem 0x6015200000-0x60152fffff 64bit]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.3: PME# supported from D3hot D3cold
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.4: [8086:a0a3] type 00 class 0x0c0500
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.4: reg 0x10: [mem 0x6015408000-0x60154080ff 64bit]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.4: reg 0x20: [io 0xefa0-0xefbf]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.5: [8086:a0a4] type 00 class 0x0c8000
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.5: reg 0x10: [mem 0xfe010000-0xfe010fff]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: [10de:1f97] type 00 class 0x030200
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: reg 0x10: [mem 0x52000000-0x52ffffff]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: reg 0x14: [mem 0x6000000000-0x600fffffff 64bit pref]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: reg 0x1c: [mem 0x6010000000-0x6011ffffff 64bit pref]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: reg 0x24: [io 0x4000-0x407f]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: 63.012 Gb/s available PCIe bandwidth, limited by 16.0 GT/s PCIe x4 link at 0000:00:06.0 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: PCI bridge to [bus 01]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [io 0x4000-0x4fff]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [mem 0x52000000-0x52ffffff]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [mem 0x6000000000-0x6011ffffff 64bit pref]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: reg 0x10: [io 0x3000-0x30ff]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: reg 0x18: [mem 0x53004000-0x53004fff 64bit]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: reg 0x20: [mem 0x53000000-0x53003fff 64bit]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: supports D1 D2
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: PCI bridge to [bus 02]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: bridge window [io 0x3000-0x3fff]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: bridge window [mem 0x53000000-0x530fffff]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: [14c3:7961] type 00 class 0x028000
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: reg 0x10: [mem 0x6015000000-0x60150fffff 64bit pref]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: reg 0x18: [mem 0x6015100000-0x6015103fff 64bit pref]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: reg 0x20: [mem 0x6015104000-0x6015104fff 64bit pref]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: supports D1 D2
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: PCI bridge to [bus 03]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: bridge window [mem 0x6015000000-0x60151fffff 64bit pref]
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: EC: interrupt unblocked
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: EC: event unblocked
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: EC: GPE=0x6e
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: \_SB_.PC00.LPCB.EC0_: Boot DSDT EC initialization complete
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: \_SB_.PC00.LPCB.EC0_: EC: Used to handle transactions and events
> >>>>>> Jul 20 20:02:05 xd kernel: iommu: Default domain type: Translated
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: vgaarb: setting as boot VGA device
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: vgaarb: bridge control possible
> >>>>>> Jul 20 20:02:05 xd kernel: vgaarb: loaded
> >>>>>> Jul 20 20:02:05 xd kernel: EDAC MC: Ver: 3.0.0
> >>>>>> Jul 20 20:02:05 xd kernel: Registered efivars operations
> >>>>>> Jul 20 20:02:05 xd kernel: NetLabel: Initializing
> >>>>>> Jul 20 20:02:05 xd kernel: NetLabel: domain hash size = 128
> >>>>>> Jul 20 20:02:05 xd kernel: NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
> >>>>>> Jul 20 20:02:05 xd kernel: NetLabel: unlabeled traffic allowed by default
> >>>>>> Jul 20 20:02:05 xd kernel: PCI: Using ACPI for IRQ routing
> >>>>>> Jul 20 20:02:05 xd kernel: PCI: pci_cache_line_size set to 64 bytes
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.5: can't claim BAR 0 [mem 0xfe010000-0xfe010fff]: no compatible bridge window
> >>>>>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
> >>>>>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x3bee5000-0x3bffffff]
> >>>>>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x3bf68000-0x3bffffff]
> >>>>>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x3bf6a000-0x3bffffff]
> >>>>>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x3fd99000-0x3fffffff]
> >>>>>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x424af000-0x43ffffff]
> >>>>>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x44c00000-0x47ffffff]
> >>>>>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x4b0800000-0x4b3ffffff]
> >>>>>> Jul 20 20:02:05 xd kernel: clocksource: Switched to clocksource tsc-early
> >>>>>> Jul 20 20:02:05 xd kernel: VFS: Disk quotas dquot_6.6.0
> >>>>>> Jul 20 20:02:05 xd kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
> >>>>>> Jul 20 20:02:05 xd kernel: AppArmor: AppArmor Filesystem Enabled
> >>>>>> Jul 20 20:02:05 xd kernel: pnp: PnP ACPI init
> >>>>>> Jul 20 20:02:05 xd kernel: system 00:00: [io 0x0680-0x069f] has been reserved
> >>>>>> Jul 20 20:02:05 xd kernel: system 00:00: [io 0x164e-0x164f] has been reserved
> >>>>>> Jul 20 20:02:05 xd kernel: system 00:00: [io 0xfd60-0xfd63] has been reserved
> >>>>>> Jul 20 20:02:05 xd kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
> >>>>>> Jul 20 20:02:05 xd kernel: pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
> >>>>>> Jul 20 20:02:05 xd kernel: system 00:02: [io 0x1854-0x1857] has been reserved
> >>>>>> Jul 20 20:02:05 xd kernel: system 00:02: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
> >>>>>> Jul 20 20:02:05 xd kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0303 (active)
> >>>>>> Jul 20 20:02:05 xd kernel: pnp 00:04: disabling [mem 0xc0000000-0xcfffffff] because it overlaps 0000:00:02.0 BAR 9 [mem 0x00000000-0xdfffffff 64bit pref]
> >>>>>> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfedc0000-0xfedc7fff] has been reserved
> >>>>>> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfeda0000-0xfeda0fff] has been reserved
> >>>>>> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfeda1000-0xfeda1fff] has been reserved
> >>>>>> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfed20000-0xfed7ffff] could not be reserved
> >>>>>> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfed90000-0xfed93fff] could not be reserved
> >>>>>> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfed45000-0xfed8ffff] could not be reserved
> >>>>>> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfee00000-0xfeefffff] has been reserved
> >>>>>> Jul 20 20:02:05 xd kernel: system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
> >>>>>> Jul 20 20:02:05 xd kernel: system 00:05: [io 0x1800-0x18fe] could not be reserved
> >>>>>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfe000000-0xfe01ffff] could not be reserved
> >>>>>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfe04c000-0xfe04ffff] has been reserved
> >>>>>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfe050000-0xfe0affff] has been reserved
> >>>>>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfe0d0000-0xfe0fffff] has been reserved
> >>>>>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfe200000-0xfe7fffff] has been reserved
> >>>>>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xff000000-0xffffffff] could not be reserved
> >>>>>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfd000000-0xfd68ffff] has been reserved
> >>>>>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfd6b0000-0xfd6cffff] has been reserved
> >>>>>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfd6f0000-0xfdffffff] has been reserved
> >>>>>> Jul 20 20:02:05 xd kernel: system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
> >>>>>> Jul 20 20:02:05 xd kernel: system 00:06: [io 0x2000-0x20fe] has been reserved
> >>>>>> Jul 20 20:02:05 xd kernel: system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
> >>>>>> Jul 20 20:02:05 xd kernel: system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
> >>>>>> Jul 20 20:02:05 xd kernel: pnp: PnP ACPI: found 8 devices
> >>>>>> Jul 20 20:02:05 xd kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
> >>>>>> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 2
> >>>>>> Jul 20 20:02:05 xd kernel: IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
> >>>>>> Jul 20 20:02:05 xd kernel: tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
> >>>>>> Jul 20 20:02:05 xd kernel: TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
> >>>>>> Jul 20 20:02:05 xd kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
> >>>>>> Jul 20 20:02:05 xd kernel: TCP: Hash tables configured (established 131072 bind 65536)
> >>>>>> Jul 20 20:02:05 xd kernel: UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
> >>>>>> Jul 20 20:02:05 xd kernel: UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
> >>>>>> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 1
> >>>>>> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 44
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
> >>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: max bus depth: 1 pci_try_num: 2
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: BAR 9: assigned [mem 0x4020000000-0x40ffffffff 64bit pref]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: BAR 7: assigned [mem 0x4010000000-0x4016ffffff 64bit]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.0: BAR 0: assigned [mem 0x4017000000-0x4017000fff 64bit]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.3: BAR 0: assigned [mem 0x4017001000-0x4017001fff 64bit]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.0: BAR 0: assigned [mem 0x4017002000-0x4017002fff 64bit]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.1: BAR 0: assigned [mem 0x4017003000-0x4017003fff 64bit]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.5: BAR 0: assigned [mem 0x4f800000-0x4f800fff]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: BAR 6: no space for [mem size 0x00080000 pref]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: BAR 6: failed to assign [mem size 0x00080000 pref]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: PCI bridge to [bus 01]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [io 0x4000-0x4fff]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [mem 0x52000000-0x52ffffff]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [mem 0x6000000000-0x6011ffffff 64bit pref]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: PCI bridge to [bus 02]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: bridge window [io 0x3000-0x3fff]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: bridge window [mem 0x53000000-0x530fffff]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: PCI bridge to [bus 03]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: bridge window [mem 0x6015000000-0x60151fffff 64bit pref]
> >>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
> >>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
> >>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
> >>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: resource 7 [mem 0x4f800000-0xbfffffff window]
> >>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: resource 8 [mem 0x4000000000-0x7fffffffff window]
> >>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:01: resource 0 [io 0x4000-0x4fff]
> >>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:01: resource 1 [mem 0x52000000-0x52ffffff]
> >>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:01: resource 2 [mem 0x6000000000-0x6011ffffff 64bit pref]
> >>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:02: resource 0 [io 0x3000-0x3fff]
> >>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:02: resource 1 [mem 0x53000000-0x530fffff]
> >>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:03: resource 2 [mem 0x6015000000-0x60151fffff 64bit pref]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
> >>>>>> Jul 20 20:02:05 xd kernel: PCI: CLS 64 bytes, default 64
> >>>>>> Jul 20 20:02:05 xd kernel: Trying to unpack rootfs image as initramfs...
> >>>>>> Jul 20 20:02:05 xd kernel: Freeing initrd memory: 47452K
> >>>>>> Jul 20 20:02:05 xd kernel: DMAR: No ATSR found
> >>>>>> Jul 20 20:02:05 xd kernel: DMAR: dmar0: Using Queued invalidation
> >>>>>> Jul 20 20:02:05 xd kernel: DMAR: dmar1: Using Queued invalidation
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:00.0: Adding to iommu group 0
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: Adding to iommu group 1
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: Adding to iommu group 2
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:08.0: Adding to iommu group 3
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:0e.0: Adding to iommu group 4
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.0: Adding to iommu group 5
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.2: Adding to iommu group 5
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.0: Adding to iommu group 6
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.3: Adding to iommu group 6
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:16.0: Adding to iommu group 7
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:17.0: Adding to iommu group 8
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.0: Adding to iommu group 9
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.1: Adding to iommu group 9
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: Adding to iommu group 10
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: Adding to iommu group 11
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.0: Adding to iommu group 12
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.3: Adding to iommu group 12
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.4: Adding to iommu group 12
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.5: Adding to iommu group 12
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: Adding to iommu group 13
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: Adding to iommu group 14
> >>>>>> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: Adding to iommu group 15
> >>>>>> Jul 20 20:02:05 xd kernel: DMAR: Intel(R) Virtualization Technology for Directed I/O
> >>>>>> Jul 20 20:02:05 xd kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
> >>>>>> Jul 20 20:02:05 xd kernel: software IO TLB: mapped [mem 0x0000000037663000-0x000000003b663000] (64MB)
> >>>>>> Jul 20 20:02:05 xd kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x22df1149949, max_idle_ns: 440795312789 ns
> >>>>>> Jul 20 20:02:05 xd kernel: clocksource: Switched to clocksource tsc
> >>>>>> Jul 20 20:02:05 xd kernel: Initialise system trusted keyrings
> >>>>>> Jul 20 20:02:05 xd kernel: Key type blacklist registered
> >>>>>> Jul 20 20:02:05 xd kernel: workingset: timestamp_bits=36 max_order=22 bucket_order=0
> >>>>>> Jul 20 20:02:05 xd kernel: zbud: loaded
> >>>>>> Jul 20 20:02:05 xd kernel: integrity: Platform Keyring initialized
> >>>>>> Jul 20 20:02:05 xd kernel: Key type asymmetric registered
> >>>>>> Jul 20 20:02:05 xd kernel: Asymmetric key parser 'x509' registered
> >>>>>> Jul 20 20:02:05 xd kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
> >>>>>> Jul 20 20:02:05 xd kernel: io scheduler mq-deadline registered
> >>>>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:06.0: PME: Signaling with IRQ 122
> >>>>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:06.0: AER: enabled with IRQ 122
> >>>>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:06.0: DPC: enabled with IRQ 122
> >>>>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:06.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
> >>>>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.0: PME: Signaling with IRQ 123
> >>>>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.0: AER: enabled with IRQ 123
> >>>>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.0: DPC: enabled with IRQ 123
> >>>>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
> >>>>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.1: PME: Signaling with IRQ 124
> >>>>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.1: AER: enabled with IRQ 124
> >>>>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.1: DPC: enabled with IRQ 124
> >>>>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.1: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
> >>>>>> Jul 20 20:02:05 xd kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
> >>>>>> Jul 20 20:02:05 xd kernel: efifb: probing for efifb
> >>>>>> Jul 20 20:02:05 xd kernel: efifb: framebuffer at 0x4000000000, using 8128k, total 8128k
> >>>>>> Jul 20 20:02:05 xd kernel: efifb: mode is 1920x1080x32, linelength=7680, pages=1
> >>>>>> Jul 20 20:02:05 xd kernel: efifb: scrolling: redraw
> >>>>>> Jul 20 20:02:05 xd kernel: efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
> >>>>>> Jul 20 20:02:05 xd kernel: Console: switching to colour frame buffer device 240x67
> >>>>>> Jul 20 20:02:05 xd kernel: fb0: EFI VGA frame buffer device
> >>>>>> Jul 20 20:02:05 xd kernel: intel_idle: MWAIT substates: 0x11121020
> >>>>>> Jul 20 20:02:05 xd kernel: Monitor-Mwait will be used to enter C-1 state
> >>>>>> Jul 20 20:02:05 xd kernel: Monitor-Mwait will be used to enter C-2 state
> >>>>>> Jul 20 20:02:05 xd kernel: Monitor-Mwait will be used to enter C-3 state
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: \_SB_.PR00: Found 3 idle states
> >>>>>> Jul 20 20:02:05 xd kernel: intel_idle: v0.5.1 model 0x8C
> >>>>>> Jul 20 20:02:05 xd kernel: intel_idle: Local APIC timer is reliable in all C-states
> >>>>>> Jul 20 20:02:05 xd kernel: thermal LNXTHERM:00: registered as thermal_zone0
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Thermal Zone [TZ00] (28 C)
> >>>>>> Jul 20 20:02:05 xd kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
> >>>>>> Jul 20 20:02:05 xd kernel: hpet_acpi_add: no address or irqs in _CRS
> >>>>>> Jul 20 20:02:05 xd kernel: Linux agpgart interface v0.103
> >>>>>> Jul 20 20:02:05 xd kernel: AMD-Vi: AMD IOMMUv2 functionality not available on this system - This is not a bug.
> >>>>>> Jul 20 20:02:05 xd kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
> >>>>>> Jul 20 20:02:05 xd kernel: i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
> >>>>>> Jul 20 20:02:05 xd kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
> >>>>>> Jul 20 20:02:05 xd kernel: mousedev: PS/2 mouse device common for all mice
> >>>>>> Jul 20 20:02:05 xd kernel: rtc_cmos 00:01: RTC can wake from S4
> >>>>>> Jul 20 20:02:05 xd kernel: rtc_cmos 00:01: registered as rtc0
> >>>>>> Jul 20 20:02:05 xd kernel: rtc_cmos 00:01: setting system clock to 2022-07-20T19:02:03 UTC (1658343723)
> >>>>>> Jul 20 20:02:05 xd kernel: rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram
> >>>>>> Jul 20 20:02:05 xd kernel: intel_pstate: Intel P-state driver initializing
> >>>>>> Jul 20 20:02:05 xd kernel: intel_pstate: HWP enabled
> >>>>>> Jul 20 20:02:05 xd kernel: ledtrig-cpu: registered to indicate activity on CPUs
> >>>>>> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 10
> >>>>>> Jul 20 20:02:05 xd kernel: Segment Routing with IPv6
> >>>>>> Jul 20 20:02:05 xd kernel: mip6: Mobile IPv6
> >>>>>> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 17
> >>>>>> Jul 20 20:02:05 xd kernel: mpls_gso: MPLS GSO support
> >>>>>> Jul 20 20:02:05 xd kernel: microcode: sig=0x806c1, pf=0x80, revision=0x8a
> >>>>>> Jul 20 20:02:05 xd kernel: microcode: Microcode Update Driver: v2.2.
> >>>>>> Jul 20 20:02:05 xd kernel: resctrl: L2 allocation detected
> >>>>>> Jul 20 20:02:05 xd kernel: resctrl: L2DATA allocation detected
> >>>>>> Jul 20 20:02:05 xd kernel: resctrl: L2CODE allocation detected
> >>>>>> Jul 20 20:02:05 xd kernel: IPI shorthand broadcast: enabled
> >>>>>> Jul 20 20:02:05 xd kernel: sched_clock: Marking stable (836570439, 6379917)->(856451458, -13501102)
> >>>>>> Jul 20 20:02:05 xd kernel: registered taskstats version 1
> >>>>>> Jul 20 20:02:05 xd kernel: Loading compiled-in X.509 certificates
> >>>>>> Jul 20 20:02:05 xd kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
> >>>>>> Jul 20 20:02:05 xd kernel: Loaded X.509 cert 'Debian Secure Boot CA: 6ccece7e4c6c0d1f6149f3dd27dfcc5cbb419ea1'
> >>>>>> Jul 20 20:02:05 xd kernel: Loaded X.509 cert 'Debian Secure Boot Signer 2021 - linux: 4b6ef5abca669825178e052c84667ccbc0531f8c'
> >>>>>> Jul 20 20:02:05 xd kernel: zswap: loaded using pool lzo/zbud
> >>>>>> Jul 20 20:02:05 xd kernel: Key type ._fscrypt registered
> >>>>>> Jul 20 20:02:05 xd kernel: Key type .fscrypt registered
> >>>>>> Jul 20 20:02:05 xd kernel: Key type fscrypt-provisioning registered
> >>>>>> Jul 20 20:02:05 xd kernel: AppArmor: AppArmor sha1 policy hashing enabled
> >>>>>> Jul 20 20:02:05 xd kernel: Freeing unused kernel image (initmem) memory: 2424K
> >>>>>> Jul 20 20:02:05 xd kernel: Write protecting the kernel read-only data: 22528k
> >>>>>> Jul 20 20:02:05 xd kernel: Freeing unused kernel image (text/rodata gap) memory: 2040K
> >>>>>> Jul 20 20:02:05 xd kernel: Freeing unused kernel image (rodata/data gap) memory: 624K
> >>>>>> Jul 20 20:02:05 xd kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
> >>>>>> Jul 20 20:02:05 xd kernel: Run /init as init process
> >>>>>> Jul 20 20:02:05 xd kernel: with arguments:
> >>>>>> Jul 20 20:02:05 xd kernel: /init
> >>>>>> Jul 20 20:02:05 xd kernel: with environment:
> >>>>>> Jul 20 20:02:05 xd kernel: HOME=/
> >>>>>> Jul 20 20:02:05 xd kernel: TERM=linux
> >>>>>> Jul 20 20:02:05 xd kernel: BOOT_IMAGE=/vmlinuz-5.10.0-16-amd64
> >>>>>> Jul 20 20:02:05 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
> >>>>>> Jul 20 20:02:05 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
> >>>>>> Jul 20 20:02:05 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
> >>>>>> Jul 20 20:02:05 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
> >>>>>> Jul 20 20:02:05 xd kernel: acpi PNP0C14:03: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
> >>>>>> Jul 20 20:02:05 xd kernel: acpi PNP0C14:04: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
> >>>>>> Jul 20 20:02:05 xd kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:21/PNP0C0D:00/input/input1
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Lid Switch [LID0]
> >>>>>> Jul 20 20:02:05 xd kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Sleep Button [SLPB]
> >>>>>> Jul 20 20:02:05 xd kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input3
> >>>>>> Jul 20 20:02:05 xd kernel: battery: ACPI: Battery Slot [BAT1] (battery present)
> >>>>>> Jul 20 20:02:05 xd kernel: hid: raw HID events driver (C) Jiri Kosina
> >>>>>> Jul 20 20:02:05 xd kernel: vmd 0000:00:0e.0: PCI host bridge to bus 10000:e0
> >>>>>> Jul 20 20:02:05 xd kernel: pci_bus 10000:e0: root bus resource [bus e0-ff]
> >>>>>> Jul 20 20:02:05 xd kernel: pci_bus 10000:e0: root bus resource [mem 0x50000000-0x51ffffff]
> >>>>>> Jul 20 20:02:05 xd kernel: pci_bus 10000:e0: root bus resource [mem 0x6015302000-0x60153fffff 64bit]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: [8086:a0d3] type 00 class 0x010601
> >>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x10: [mem 0x00000000-0x00001fff]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x14: [mem 0x00000000-0x000000ff]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x18: [io 0x0000-0x0007]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x1c: [io 0x0000-0x0003]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x20: [io 0x0000-0x001f]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x24: [mem 0x50000000-0x500007ff]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: PME# supported from D3hot
> >>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: Adding to iommu group 4
> >>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.0: [8086:09ab] type 00 class 0x088000
> >>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.0: Adding to iommu group 4
> >>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: [8086:a0bc] type 01 class 0x060400
> >>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: PME# supported from D0 D3hot D3cold
> >>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: PTM enabled (root), 4ns granularity
> >>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: Adding to iommu group 4
> >>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: Primary bus is hard wired to 0
> >>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e1:00.0: [2646:500c] type 00 class 0x010802
> >>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e1:00.0: reg 0x10: [mem 0x50100000-0x50103fff 64bit]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e1:00.0: Adding to iommu group 4
> >>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: PCI bridge to [bus e1]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: bridge window [io 0x0000-0x0fff]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: bridge window [mem 0x50100000-0x501fffff]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: Primary bus is hard wired to 0
> >>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: BAR 14: assigned [mem 0x50000000-0x500fffff]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 0: assigned [mem 0x50100000-0x50101fff]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: BAR 13: no space for [io size 0x1000]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: BAR 13: failed to assign [io size 0x1000]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 5: assigned [mem 0x50102000-0x501027ff]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 1: assigned [mem 0x50102800-0x501028ff]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 4: no space for [io size 0x0020]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 4: failed to assign [io size 0x0020]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 2: no space for [io size 0x0008]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 2: failed to assign [io size 0x0008]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 3: no space for [io size 0x0004]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 3: failed to assign [io size 0x0004]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e1:00.0: BAR 0: assigned [mem 0x50000000-0x50003fff 64bit]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: PCI bridge to [bus e1]
> >>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: bridge window [mem 0x50000000-0x500fffff]
> >>>>>> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: can't derive routing for PCI INT A
> >>>>>> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: PCI INT A: no GSI
> >>>>>> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: PME: Signaling with IRQ 144
> >>>>>> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: AER: enabled with IRQ 144
> >>>>>> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: DPC: enabled with IRQ 144
> >>>>>> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
> >>>>>> Jul 20 20:02:05 xd kernel: vmd 0000:00:0e.0: Bound to PCI domain 10000
> >>>>>> Jul 20 20:02:05 xd kernel: i801_smbus 0000:00:1f.4: SPD Write Disable is set
> >>>>>> Jul 20 20:02:05 xd kernel: i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
> >>>>>> Jul 20 20:02:05 xd kernel: i2c i2c-0: 2/2 memory slots populated (from DMI)
> >>>>>> Jul 20 20:02:05 xd kernel: i2c i2c-0: Successfully instantiated SPD at 0x50
> >>>>>> Jul 20 20:02:05 xd kernel: r8168: loading out-of-tree module taints kernel.
> >>>>>> Jul 20 20:02:05 xd kernel: r8168: module verification failed: signature and/or required key missing - tainting kernel
> >>>>>> Jul 20 20:02:05 xd kernel: r8168 Gigabit Ethernet driver 8.048.03-NAPI loaded
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: bus type USB registered
> >>>>>> Jul 20 20:02:05 xd kernel: usbcore: registered new interface driver usbfs
> >>>>>> Jul 20 20:02:05 xd kernel: usbcore: registered new interface driver hub
> >>>>>> Jul 20 20:02:05 xd kernel: usbcore: registered new device driver usb
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Button [PWRB]
> >>>>>> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
> >>>>>> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
> >>>>>> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000000009810
> >>>>>> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
> >>>>>> Jul 20 20:02:05 xd kernel: r8168: This product is covered by one or more of the following patents: US6,570,884, US6,115,776, and US6,327,625.
> >>>>>> Jul 20 20:02:05 xd kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
> >>>>>> Jul 20 20:02:05 xd kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
> >>>>>> Jul 20 20:02:05 xd kernel: usb usb1: Product: xHCI Host Controller
> >>>>>> Jul 20 20:02:05 xd kernel: usb usb1: Manufacturer: Linux 5.10.0-16-amd64 xhci-hcd
> >>>>>> Jul 20 20:02:05 xd kernel: usb usb1: SerialNumber: 0000:00:14.0
> >>>>>> Jul 20 20:02:05 xd kernel: hub 1-0:1.0: USB hub found
> >>>>>> Jul 20 20:02:05 xd kernel: hub 1-0:1.0: 12 ports detected
> >>>>>> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
> >>>>>> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
> >>>>>> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
> >>>>>> Jul 20 20:02:05 xd kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
> >>>>>> Jul 20 20:02:05 xd kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
> >>>>>> Jul 20 20:02:05 xd kernel: usb usb2: Product: xHCI Host Controller
> >>>>>> Jul 20 20:02:05 xd kernel: usb usb2: Manufacturer: Linux 5.10.0-16-amd64 xhci-hcd
> >>>>>> Jul 20 20:02:05 xd kernel: usb usb2: SerialNumber: 0000:00:14.0
> >>>>>> Jul 20 20:02:05 xd kernel: hub 2-0:1.0: USB hub found
> >>>>>> Jul 20 20:02:05 xd kernel: hub 2-0:1.0: 4 ports detected
> >>>>>> Jul 20 20:02:05 xd kernel: r8168 Copyright (C) 2020 Realtek NIC software team <nicfae@realtek.com>
> >>>>>> This program comes with ABSOLUTELY NO WARRANTY; for details, please see <http://www.gnu.org/licenses/>.
> >>>>>> This is free software, and you are welcome to redistribute it under certain conditions; see <http://www.gnu.org/licenses/>.
> >>>>>> Jul 20 20:02:05 xd kernel: SCSI subsystem initialized
> >>>>>> Jul 20 20:02:05 xd kernel: intel-lpss 0000:00:15.0: enabling device (0004 -> 0006)
> >>>>>> Jul 20 20:02:05 xd kernel: idma64 idma64.0: Found Intel integrated DMA 64-bit
> >>>>>> Jul 20 20:02:05 xd kernel: r8168 0000:02:00.0 enp2s0: renamed from eth0
> >>>>>> Jul 20 20:02:05 xd kernel: nvme nvme0: pci function 10000:e1:00.0
> >>>>>> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: can't derive routing for PCI INT A
> >>>>>> Jul 20 20:02:05 xd kernel: nvme 10000:e1:00.0: PCI INT A: no GSI
> >>>>>> Jul 20 20:02:05 xd kernel: libata version 3.00 loaded.
> >>>>>> Jul 20 20:02:05 xd kernel: nvme nvme0: missing or invalid SUBNQN field.
> >>>>>> Jul 20 20:02:05 xd kernel: nvme nvme0: Shutdown timeout set to 10 seconds
> >>>>>> Jul 20 20:02:05 xd kernel: nvme nvme0: 8/0/0 default/read/poll queues
> >>>>>> Jul 20 20:02:05 xd kernel: nvme0n1: p1 p2 p3 p4 p5
> >>>>>> Jul 20 20:02:05 xd kernel: intel-lpss 0000:00:15.3: enabling device (0004 -> 0006)
> >>>>>> Jul 20 20:02:05 xd kernel: idma64 idma64.1: Found Intel integrated DMA 64-bit
> >>>>>> Jul 20 20:02:05 xd kernel: i2c_hid i2c-ELAN0515:01: supply vdd not found, using dummy regulator
> >>>>>> Jul 20 20:02:05 xd kernel: i2c_hid i2c-ELAN0515:01: supply vddl not found, using dummy regulator
> >>>>>> Jul 20 20:02:05 xd kernel: intel-lpss 0000:00:19.0: enabling device (0004 -> 0006)
> >>>>>> Jul 20 20:02:05 xd kernel: idma64 idma64.2: Found Intel integrated DMA 64-bit
> >>>>>> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: [drm] VT-d active for gfx access
> >>>>>> Jul 20 20:02:05 xd kernel: checking generic (4000000000 7f0000) vs hw (6014000000 1000000)
> >>>>>> Jul 20 20:02:05 xd kernel: checking generic (4000000000 7f0000) vs hw (4000000000 10000000)
> >>>>>> Jul 20 20:02:05 xd kernel: fb0: switching to inteldrmfb from EFI VGA
> >>>>>> Jul 20 20:02:05 xd kernel: Console: switching to colour dummy device 80x25
> >>>>>> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: vgaarb: deactivate vga console
> >>>>>> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
> >>>>>> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: firmware: direct-loading firmware i915/tgl_dmc_ver2_08.bin
> >>>>>> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/tgl_dmc_ver2_08.bin (v2.8)
> >>>>>> Jul 20 20:02:05 xd kernel: intel-lpss 0000:00:19.1: enabling device (0004 -> 0006)
> >>>>>> Jul 20 20:02:05 xd kernel: idma64 idma64.3: Found Intel integrated DMA 64-bit
> >>>>>> Jul 20 20:02:05 xd kernel: input: ELAN0515:01 04F3:3142 Mouse as /devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input4
> >>>>>> Jul 20 20:02:05 xd kernel: input: ELAN0515:01 04F3:3142 Touchpad as /devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input6
> >>>>>> Jul 20 20:02:05 xd kernel: hid-generic 0018:04F3:3142.0001: input,hidraw0: I2C HID v1.00 Mouse [ELAN0515:01 04F3:3142] on i2c-ELAN0515:01
> >>>>>> Jul 20 20:02:05 xd kernel: ahci 10000:e0:17.0: version 3.0
> >>>>>> Jul 20 20:02:05 xd kernel: ahci 10000:e0:17.0: can't derive routing for PCI INT A
> >>>>>> Jul 20 20:02:05 xd kernel: ahci 10000:e0:17.0: PCI INT A: no GSI
> >>>>>> Jul 20 20:02:05 xd kernel: ahci 10000:e0:17.0: AHCI 0001.0301 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
> >>>>>> Jul 20 20:02:05 xd kernel: ahci 10000:e0:17.0: flags: 64bit ncq sntf pm clo only pio slum part deso sadm sds
> >>>>>> Jul 20 20:02:05 xd kernel: scsi host0: ahci
> >>>>>> Jul 20 20:02:05 xd kernel: scsi host1: ahci
> >>>>>> Jul 20 20:02:05 xd kernel: ata1: SATA max UDMA/133 abar m2048@0x50102000 port 0x50102100 irq 158
> >>>>>> Jul 20 20:02:05 xd kernel: ata2: SATA max UDMA/133 abar m2048@0x50102000 port 0x50102180 irq 158
> >>>>>> Jul 20 20:02:05 xd kernel: usb 1-7: new full-speed USB device number 2 using xhci_hcd
> >>>>>> Jul 20 20:02:05 xd kernel: usb 1-7: New USB device found, idVendor=04f3, idProduct=0c4f, bcdDevice= 1.61
> >>>>>> Jul 20 20:02:05 xd kernel: usb 1-7: New USB device strings: Mfr=1, Product=2, SerialNumber=0
> >>>>>> Jul 20 20:02:05 xd kernel: usb 1-7: Product: ELAN:Fingerprint
> >>>>>> Jul 20 20:02:05 xd kernel: usb 1-7: Manufacturer: ELAN
> >>>>>> Jul 20 20:02:05 xd kernel: ata1: SATA link down (SStatus 0 SControl 300)
> >>>>>> Jul 20 20:02:05 xd kernel: ata2: SATA link down (SStatus 0 SControl 300)
> >>>>>> Jul 20 20:02:05 xd kernel: usb 1-8: new high-speed USB device number 3 using xhci_hcd
> >>>>>> Jul 20 20:02:05 xd kernel: usb 1-8: New USB device found, idVendor=0408, idProduct=a061, bcdDevice= 0.04
> >>>>>> Jul 20 20:02:05 xd kernel: usb 1-8: New USB device strings: Mfr=1, Product=2, SerialNumber=0
> >>>>>> Jul 20 20:02:05 xd kernel: usb 1-8: Product: HD User Facing
> >>>>>> Jul 20 20:02:05 xd kernel: usb 1-8: Manufacturer: SunplusIT Inc
> >>>>>> Jul 20 20:02:05 xd kernel: usb 1-10: new high-speed USB device number 4 using xhci_hcd
> >>>>>> Jul 20 20:02:05 xd kernel: usb 1-10: New USB device found, idVendor=04ca, idProduct=3802, bcdDevice= 1.00
> >>>>>> Jul 20 20:02:05 xd kernel: usb 1-10: New USB device strings: Mfr=5, Product=6, SerialNumber=7
> >>>>>> Jul 20 20:02:05 xd kernel: usb 1-10: Product: Wireless_Device
> >>>>>> Jul 20 20:02:05 xd kernel: usb 1-10: Manufacturer: MediaTek Inc.
> >>>>>> Jul 20 20:02:05 xd kernel: usb 1-10: SerialNumber: 000000000
> >>>>>> Jul 20 20:02:05 xd kernel: [drm] Initialized i915 1.6.0 20200917 for 0000:00:02.0 on minor 0
> >>>>>> Jul 20 20:02:05 xd kernel: [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Video Device [PEGP] (multi-head: yes rom: no post: no)
> >>>>>> Jul 20 20:02:05 xd kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/LNXVIDEO:00/input/input7
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
> >>>>>> Jul 20 20:02:05 xd kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input8
> >>>>>> Jul 20 20:02:05 xd kernel: fbcon: i915drmfb (fb0) is primary device
> >>>>>> Jul 20 20:02:05 xd kernel: Console: switching to colour frame buffer device 240x67
> >>>>>> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
> >>>>>> Jul 20 20:02:05 xd kernel: PM: Image not found (code -22)
> >>>>>> Jul 20 20:02:05 xd kernel: EXT4-fs (nvme0n1p3): mounting ext3 file system using the ext4 subsystem
> >>>>>> Jul 20 20:02:05 xd kernel: EXT4-fs (nvme0n1p3): mounted filesystem with ordered data mode. Opts: (null)
> >>>>>> Jul 20 20:02:05 xd kernel: Not activating Mandatory Access Control as /sbin/tomoyo-init does not exist.
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Inserted module 'autofs4'
> >>>>>> Jul 20 20:02:05 xd systemd[1]: systemd 247.3-7 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=unified)
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Detected architecture x86-64.
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Set hostname to <xd>.
> >>>>>> Jul 20 20:02:05 xd systemd[1]: /lib/systemd/system/plymouth-start.service:16: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed.
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Queued start job for default target Graphical Interface.
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Created slice system-getty.slice.
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Created slice system-modprobe.slice.
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Created slice system-systemd\x2dfsck.slice.
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Created slice User and Session Slice.
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Started Forward Password Requests to Wall Directory Watch.
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Reached target User and Group Name Lookups.
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Reached target Remote File Systems.
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Reached target Slices.
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Listening on Device-mapper event daemon FIFOs.
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Listening on LVM2 poll daemon socket.
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Listening on Syslog Socket.
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Listening on fsck to fsckd communication Socket.
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Listening on initctl Compatibility Named Pipe.
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Listening on Journal Audit Socket.
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Listening on Journal Socket (/dev/log).
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Listening on Journal Socket.
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Listening on udev Control Socket.
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Listening on udev Kernel Socket.
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Mounting Huge Pages File System...
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Mounting POSIX Message Queue File System...
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Mounting Kernel Debug File System...
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Mounting Kernel Trace File System...
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Finished Availability of block devices.
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Set the console keyboard layout...
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Create list of static device nodes for the current kernel...
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Load Kernel Module configfs...
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Load Kernel Module drm...
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Load Kernel Module fuse...
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Journal Service...
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Load Kernel Modules...
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Remount Root and Kernel File Systems...
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Coldplug All udev Devices...
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Mounted Huge Pages File System.
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Mounted POSIX Message Queue File System.
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Mounted Kernel Debug File System.
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Mounted Kernel Trace File System.
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Finished Create list of static device nodes for the current kernel.
> >>>>>> Jul 20 20:02:05 xd systemd[1]: modprobe@configfs.service: Succeeded.
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Finished Load Kernel Module configfs.
> >>>>>> Jul 20 20:02:05 xd systemd[1]: modprobe@drm.service: Succeeded.
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Finished Load Kernel Module drm.
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Mounting Kernel Configuration File System...
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Mounted Kernel Configuration File System.
> >>>>>> Jul 20 20:02:05 xd kernel: EXT4-fs (nvme0n1p3): re-mounted. Opts: errors=remount-ro
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Finished Remount Root and Kernel File Systems.
> >>>>>> Jul 20 20:02:05 xd kernel: fuse: init (API version 7.32)
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped.
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Load/Save Random Seed...
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Create System Users...
> >>>>>> Jul 20 20:02:05 xd systemd[1]: modprobe@fuse.service: Succeeded.
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Finished Load Kernel Module fuse.
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Mounting FUSE Control File System...
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Mounted FUSE Control File System.
> >>>>>> Jul 20 20:02:05 xd kernel: lp: driver loaded but no devices found
> >>>>>> Jul 20 20:02:05 xd kernel: ppdev: user-space parallel port driver
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Finished Load/Save Random Seed.
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Condition check resulted in First Boot Complete being skipped.
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Finished Create System Users.
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Create Static Device Nodes in /dev...
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Finished Create Static Device Nodes in /dev.
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Rule-based Manager for Device Events and Files...
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Finished Set the console keyboard layout.
> >>>>>> Jul 20 20:02:05 xd systemd[1]: Started Journal Service.
> >>>>>> Jul 20 20:02:05 xd kernel: nvidia: module license 'NVIDIA' taints kernel.
> >>>>>> Jul 20 20:02:05 xd kernel: Disabling lock debugging due to kernel taint
> >>>>>> Jul 20 20:02:05 xd kernel: nvidia-nvlink: Nvlink Core is being initialized, major device number 245
> >>>>>> Jul 20 20:02:05 xd kernel:
> >>>>>> Jul 20 20:02:05 xd kernel: nvidia 0000:01:00.0: enabling device (0006 -> 0007)
> >>>>>> Jul 20 20:02:05 xd kernel: NVRM: loading NVIDIA UNIX x86_64 Kernel Module 470.129.06 Thu May 12 22:52:02 UTC 2022
> >>>>>> Jul 20 20:02:05 xd kernel: input: Acer Wireless Radio Control as /devices/LNXSYSTM:00/10251229:00/input/input9
> >>>>>> Jul 20 20:02:05 xd kernel: input: Intel HID events as /devices/platform/INTC1051:00/input/input10
> >>>>>> Jul 20 20:02:05 xd kernel: intel-hid INTC1051:00: platform supports 5 button array
> >>>>>> Jul 20 20:02:05 xd kernel: input: Intel HID 5 button array as /devices/platform/INTC1051:00/input/input11
> >>>>>> Jul 20 20:02:05 xd kernel: intel_pmc_core INT33A1:00: initialized
> >>>>>> Jul 20 20:02:05 xd kernel: ACPI: AC Adapter [ACAD] (on-line)
> >>>>>> Jul 20 20:02:05 xd kernel: nvidia-modeset: Loading NVIDIA Kernel Mode Setting Driver for UNIX platforms 470.129.06 Thu May 12 22:42:45 UTC 2022
> >>>>>> Jul 20 20:02:05 xd kernel: mc: Linux media interface: v0.10
> >>>>>> Jul 20 20:02:05 xd kernel: mei_me 0000:00:16.0: enabling device (0000 -> 0002)
> >>>>>> Jul 20 20:02:05 xd kernel: ee1004 0-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
> >>>>>> Jul 20 20:02:05 xd kernel: [drm] [nvidia-drm] [GPU ID 0x00000100] Loading driver
> >>>>>> Jul 20 20:02:05 xd kernel: [drm] Initialized nvidia-drm 0.0.0 20160202 for 0000:01:00.0 on minor 1
> >>>>>> Jul 20 20:02:05 xd kernel: videodev: Linux video capture interface: v2.00
> >>>>>> Jul 20 20:02:05 xd kernel: iTCO_vendor_support: vendor-support=0
> >>>>>> Jul 20 20:02:05 xd kernel: iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
> >>>>>> Jul 20 20:02:05 xd kernel: iTCO_wdt: Found a Intel PCH TCO device (Version=6, TCOBASE=0x0400)
> >>>>>> Jul 20 20:02:05 xd kernel: iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
> >>>>>> Jul 20 20:02:05 xd kernel: EXT4-fs (nvme0n1p2): mounting ext2 file system using the ext4 subsystem
> >>>>>> Jul 20 20:02:05 xd kernel: EXT4-fs (nvme0n1p2): mounted filesystem without journal. Opts: (null)
> >>>>>> Jul 20 20:02:05 xd kernel: ext2 filesystem being mounted at /boot supports timestamps until 2038 (0x7fffffff)
> >>>>>> Jul 20 20:02:05 xd kernel: uvcvideo: Found UVC 1.00 device HD User Facing (0408:a061)
> >>>>>> Jul 20 20:02:05 xd kernel: Adding 31182844k swap on /dev/nvme0n1p4. Priority:-2 extents:1 across:31182844k SSFS
> >>>>>> Jul 20 20:02:05 xd kernel: input: HD User Facing: HD User Facing as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/input/input12
> >>>>>> Jul 20 20:02:05 xd kernel: input: PC Speaker as /devices/platform/pcspkr/input/input13
> >>>>>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=401 comm="apparmor_parser"
> >>>>>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-oopslash" pid=402 comm="apparmor_parser"
> >>>>>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=405 comm="apparmor_parser"
> >>>>>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=405 comm="apparmor_parser"
> >>>>>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=403 comm="apparmor_parser"
> >>>>>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=403 comm="apparmor_parser"
> >>>>>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=403 comm="apparmor_parser"
> >>>>>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cups-browsed" pid=407 comm="apparmor_parser"
> >>>>>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.840:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-senddoc" pid=409 comm="apparmor_parser"
> >>>>>> Jul 20 20:02:05 xd kernel: usbcore: registered new interface driver uvcvideo
> >>>>>> Jul 20 20:02:05 xd kernel: USB Video Class driver (1.1.1)
> >>>>>> Jul 20 20:02:05 xd kernel: pstore: Using crash dump compression: deflate
> >>>>>> Jul 20 20:02:05 xd kernel: input: ELAN0515:01 04F3:3142 Mouse as /devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input14
> >>>>>> Jul 20 20:02:05 xd kernel: input: ELAN0515:01 04F3:3142 Touchpad as /devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input16
> >>>>>> Jul 20 20:02:05 xd kernel: hid-multitouch 0018:04F3:3142.0001: input,hidraw0: I2C HID v1.00 Mouse [ELAN0515:01 04F3:3142] on i2c-ELAN0515:01
> >>>>>> Jul 20 20:02:05 xd kernel: pstore: Registered efi as persistent store backend
> >>>>>> Jul 20 20:02:05 xd kernel: acer_wmi: Acer Laptop ACPI-WMI Extras
> >>>>>> Jul 20 20:02:05 xd kernel: acer_wmi: Function bitmap for Communication Button: 0x801
> >>>>>> Jul 20 20:02:05 xd kernel: input: Acer WMI hotkeys as /devices/virtual/input/input17
> >>>>>> Jul 20 20:02:05 xd kernel: snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040100
> >>>>>> Jul 20 20:02:05 xd kernel: snd_hda_intel 0000:00:1f.3: Digital mics found on Skylake+ platform, using SOF driver
> >>>>>> Jul 20 20:02:05 xd kernel: cryptd: max_cpu_qlen set to 1000
> >>>>>> Jul 20 20:02:06 xd kernel: AVX2 version of gcm_enc/dec engaged.
> >>>>>> Jul 20 20:02:06 xd kernel: AES CTR mode by8 optimization enabled
> >>>>>> Jul 20 20:02:06 xd kernel: resource sanity check: requesting [mem 0xfedc0000-0xfedcdfff], which spans more than pnp 00:04 [mem 0xfedc0000-0xfedc7fff]
> >>>>>> Jul 20 20:02:06 xd kernel: caller tgl_uncore_imc_freerunning_init_box+0xbb/0x100 [intel_uncore] mapping multiple BARs
> >>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040100
> >>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: Digital mics found on Skylake+ platform, using SOF driver
> >>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: enabling device (0000 -> 0002)
> >>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if 0x040100
> >>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
> >>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: use msi interrupt mode
> >>>>>> Jul 20 20:02:06 xd kernel: ACPI Warning: \_SB.PC00.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20200925/nsarguments-61)
> >>>>>> Jul 20 20:02:06 xd kernel: enp2s0: 0xffffbd82000e9000, 08:8f:c3:4f:86:c5, IRQ 145
> >>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: hda codecs found, mask 5
> >>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: using HDA machine driver skl_hda_dsp_generic now
> >>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: DMICs detected in NHLT tables: 2
> >>>>>> Jul 20 20:02:06 xd kernel: alg: No test for fips(ansi_cprng) (fips_ansi_cprng)
> >>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: firmware: failed to load intel/sof/sof-tgl.ri (-2)
> >>>>>> Jul 20 20:02:06 xd kernel: firmware_class: See https://wiki.debian.org/Firmware for information about missing firmware
> >>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: Direct firmware load for intel/sof/sof-tgl.ri failed with error -2
> >>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: error: request firmware intel/sof/sof-tgl.ri failed err: -2
> >>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: error: failed to load DSP firmware -2
> >>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: error: sof_probe_work failed err: -2
> >>>>>> Jul 20 20:02:06 xd kernel: Bluetooth: Core ver 2.22
> >>>>>> Jul 20 20:02:06 xd kernel: NET: Registered protocol family 31
> >>>>>> Jul 20 20:02:06 xd kernel: Bluetooth: HCI device and connection manager initialized
> >>>>>> Jul 20 20:02:06 xd kernel: Bluetooth: HCI socket layer initialized
> >>>>>> Jul 20 20:02:06 xd kernel: Bluetooth: L2CAP socket layer initialized
> >>>>>> Jul 20 20:02:06 xd kernel: Bluetooth: SCO socket layer initialized
> >>>>>> Jul 20 20:02:06 xd kernel: usbcore: registered new interface driver btusb
> >>>>>> Jul 20 20:02:07 xd kernel: intel_rapl_msr: PL4 support detected.
> >>>>>> Jul 20 20:02:07 xd kernel: intel_rapl_common: Found RAPL domain package
> >>>>>> Jul 20 20:02:07 xd kernel: intel_rapl_common: Found RAPL domain core
> >>>>>> Jul 20 20:02:07 xd kernel: intel_rapl_common: Found RAPL domain uncore
> >>>>>> Jul 20 20:02:07 xd kernel: mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_component_ops [i915])
> >>>>>> Jul 20 20:02:07 xd kernel: Bluetooth: BNEP (Ethernet Emulation) ver 1.3
> >>>>>> Jul 20 20:02:07 xd kernel: Bluetooth: BNEP filters: protocol multicast
> >>>>>> Jul 20 20:02:07 xd kernel: Bluetooth: BNEP socket layer initialized
> >>>>>> Jul 20 20:02:09 xd kernel: r8168: enp2s0: link up
> >>>>>> Jul 20 20:02:09 xd kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
> >>>>>> Jul 20 20:02:09 xd kernel: rfkill: input handler disabled
> >>>>>> Jul 20 20:02:17 xd kernel: rfkill: input handler enabled
> >>>>>> Jul 20 20:02:18 xd kernel: rfkill: input handler disabled
> >>>>>>
> >>>>>
> >>>
> >>
>
Re: Boot into Xen on debian11 [ In reply to ]
Hello.

Thank you! I will need to publish on Xen Dev.

I booted as you ask for the first time on Xen Advanced Options under the “.efi” ending option. But I got:

Loading Xen 4.16-and64, efi...
error: invalid arch-dependent ELF magic.
Loading Linux 5.18.0-8-amd64
...
error: you need to load the kernel first.
Loading Initial ramdisk...
error: you need to load the kernel first.
Press any key to continue...

Same for kernel 5.10.

I also double checked all that you mentioned. But secure boot I have turned off first thing in the process (possibly for allowing me to boot on live usb Linux).

Yes, I can boot on Debian without Xen. And yes, VTC and VTD are enabled on the BIOS.

I will come back to this with links to where I open the issue at Xen Dev and acer and etc…

Kind regards,

Bruno Schroeder

> On 29 Jul 2022, at 22:14, Chuck Zmudzinski <brchuckz@netscape.net> wrote:
>
> ?On 7/29/2022 12:33 PM, Bruno wrote:
>>
>> Xen
>>
>>
>>
>> Hello Chuck, Leigh, Group.
>>
>>
>> I have upgraded to testing as suggested.
>>
>>
>> Xen boot is still not working. It lands on initramfs.
>>
>>
>> Do you think it’s about a change that should be done at firmware or Xen, please?
>>
>
> I presume it boots OK without Xen, so you probably need some change to Xen.
> Let me know if it also does not boot without Xen. Maybe your hardware and BIOS
> are too new for Xen.
>
> You should also check your BIOS settings to make sure the virtualization options
> are enabled (VT-x if you have an Intel CPU or AMD-V if you have an AMD CPU).
> You can also try different settings for the disk controller, etc., in your BIOS.
>
> Also, I think I remember from your earlier messages that you were booting the
> xen-4.14-amd64.gz file on Debian 11, which is probably xen-4.16-amd64.gz on Debian
> testing. That is the default that grub uses when booting Debian with Xen, but
> grub also gives the 'Advanced options for Debian GNU/Linux (with Xen hypervisor)'
> boot options on the grub menu. Did you try any of those? Specifically, maybe try
> the boot options under the 'Xen hypervisor, version 4.16-amd64.efi' boot submenu, if
> your BIOS is UEFI (it probably is if you have a fairly new laptop). That doesn't work
> with my eight year old system, but it might be necessary on your much newer laptop
> to use the xen-4.16-amd64.efi version of Xen instead of the xen-4.16-amd64.gz version
> of Xen (both versions are installed with the Debian Xen packages, but only one of them is
> used when booting with Xen).
>
>>
>> This time I can see the hard drive partitions listed under /dev (nvme0n1p1-5), but I cannot mount them. I cannot access a thumb drive either /dev/block, when mounted has two strange symlinks to ../sda1 (8:0 and 1:8). This is a bit frustrating because it does not allow me to export dmesg or other info.
>>
>>
>> Im not receiving the error messages on screen before initramfs, they got hidden now, but I do get:
>>
>>
>> Gave up waiting for suspend/resume device
>>
>> Gave up waiting for root file system device. Common problems:
>>
>> * Boot args (cat /proc/cmdline) - Check rootdelay= (did the system wait long enough?)
>> * Missing modules (cat /proc/modules; ls /dev)
>>
>> ALERT! UUID=0123abc does not exist. Dropping to a shell!
>>
>>
>> On the dmesg, I got again the ACPI errors:
>>
>
> Is dmesg run from the initramfs prompt?
>
>>
>> ACPI BIOS Error
>>
>> (bug): Failure creating named ob
>>
>> I_SB.PCOO.XHCI.RHUB.HS05._UPC], AE ALREADY _EXISTS (Z0211217/dsuloadZ-326)
>>
>> ACPI Error: AE_ALREADY EXISTS, During name
>>
>> slookun/catalog
>>
>> -9451181 ACPI: Skipping parse of AML opcode: OpcodeNane unavailable
>>
>> (20211217/psobject-z20)
>>
>> (0x0014)
>>
>>
>> Repeated several times
>>
>>
>> ACPI: Skipping parse of AML opcode: DpcodeNane unavailable (0x0014)
>>
>
> I saw ACPI errors like that reported on this page:
>
> https://forums.unraid.net/topic/117673-issues-with-getting-single-gpu-passthrough-and-vbios-dump-need-help/
>
> but unfortunately no solution for the problem was posted there. I don't think
> that case involved Xen, either.
>
>> API: 15 API AML tables successfully acquired and loaded
>>
>> xen: registering
>>
>> gsi 9 triggering 0 polarity 0
>>
>>
>> Latter on the dmesg I got repeated errors like this:
>>
>>
>> RIP: 0033:0x7 969a2e2äc9
>>
>> RSP: 002b:00007ffaff421a28 FLAGS: 00000246 RIG RAX: 0000000000000139
>>
>> RAX: Efffffffffffffda RBX: 00005582Bb061d10 RCX: 00007 969aZeZäc9
>>
>> 244.4412241 RDX:000000000 RSI: 000071969a49bfOd RDI: 00000000000000
>>
>> RB: 0000000000020000 ROB: 0000000000000000 R09: 000055828b04c290
>>
>> R10: 000000000000000c R11: 0000000000000246 R12: 00007f969a49bf®d
>>
>> R13: 000000GBOOOOOOOO R14: 000055B28b060aZO R15: 00005582Bb06110
>>
>>
>> (/TASK>
>>
>> INFO: task systemd-udevd: 190 blocked for more than 120 seconds.
>>
>>
>> Tainted: G
>>
>>
>> DE
>>
>> 5.18.0-2-amd64 #1 Debian 5.18.5-1
>>
>> "echo 0 › proc/sys/kernel/hung_task_timeout_secs"
>>
>> disables this nessage.
>>
>> task: systend-udevd
>>
>> state:D stack:
>>
>> © pid: 190 ppid:
>>
>> Call Trace:
>>
>> 164 flags: 0x00004004
>>
>> (TASK)
>>
>> schedule+0x30b/0x9e0
>>
>>
>> schedule+0x4e/Oxb0
>>
>>
>> do_init_module+0x1c3/0x260
>>
>> do_sys_finit_module+Oxb4/0x120
>>
>> do_sysca11_64+0x3B/Oxc0
>>
>>
>> —-
>>
>
> Sorry, I am not knowledgeable enough to understand what these error
> messages might mean. Perhaps a Xen developer can interpret the
> error messages you are seeing. They should be interested in problems
> with booting Xen on a newer laptop so they can update Xen if necessary.
>
>>
>> And here you have another output that can be relevant:
>>
>>
>> (initranfs) cat /proc/cndline
>>
>> placeholder root=UUID=OdcZba®c-97a5-4786-bc97-4d13279afeOf ro quiet loglevel=3
>>
>
> It looks like you manually typed this, as there are spelling errors (cndline, initranfs).
> Also, the UUID for the root filesystem is different from what you had above:UUID=0123abc,
> which is probably not really the UUID.
>
> That's all I can help with.
>
> Chuck
>
>> (initranfs) cat /proc/modules
>>
>> 1915 3604480 2 - Live Oxffffffffc0540000
>>
>> ahci 77824 1 - Live Oxffffffffc01d4000
>>
>> hid generic 24576 1 - Live Oxffffffffc00b6000
>>
>> nume 69632 1
>>
>> - Live Oxffffffffc01bd000
>>
>> libahci 49152 1 ahi, Live oxffffffffc019c000
>>
>> àrm_buddy 204B0 1 1915, Live oxffffffffc0020000
>>
>> 12c_algo_bit 16384 1 1915, Live Oxfffffffic000N00®
>>
>> nune_core 139264 1 nume, Live OxffffffP{c050/000
>>
>> àrm_p_helper 159744 1 1915, Live oxffffffffc04a8000
>>
>> libata 385024 2 ahi,libahci, Live exffffffffc045b000
>>
>> +10_pi 16384 1 nume_core, Live Oxfffffffic01c/000
>>
>> cec 61440 2 1915,drm_dp_helper, Live Oxifffffffc0445000
>>
>> rC_core 61440 1 cec,
>>
>> Live Oxffffffffc01f0000
>>
>> ttm86016 1 i915, Live Oxffffffffc042f000
>>
>> scsi_mod 266240 1 libata, Live Oxffffffffc03dB000
>>
>> àrnkms_helper 192512 2 1915,drm_dp_helper, Live oxfffffffic0392000
>>
>> crc64_rocksoft 204B0 1 t10_pi, Live oxfrIffffic0167000
>>
>> crc64 204B0 1 crc64_rocksoft, Live Oxffffffffc01aa000
>>
>> crc_t10dif 204B0 1 t10 pi, Live exfPffffficOOb0000
>>
>> crct10dif_generic 16384 0 - Live Oxffffffffc00Bd000
>>
>> scsi_common 16384 2 libata,scsi mod, Live OxffffffffcOOBBOOO
>>
>> xhci_pci 204B0 0
>>
>> - Live Oxffffffffc0050000
>>
>> xhci_hcd 315392 1 xhei pci, Live Oxffffffffc0331000
>>
>> crct10dif_pclmul 16384 1
>>
>> - Live Oxffffffffc0162000
>>
>> cret10d if_conmon 16384 3 crc_+10dif,crct10dif _generic,cret10dif pelnul, Live Oxffffffffc0071000
>>
>> crc32c_intel 24576 0 - Live OxfrIPIfficO033000
>>
>> intel_lpss_pci 28672 0 - Live Oxffffffffc0184000
>>
>> ¡2c_hid_acpi 16384 © - Live Oxffffffffc017c000
>>
>> r8168 589824 0 - Live Oxffffffffc00e3000 (DE)
>>
>> 12 mET 32788 9 128351 027, " VI UP SHAAFF-908 000.
>>
>> intel_lpss 16384 1 intel_lpss pci, Live oxffffffffc00c6000
>>
>> ush_ common 16384 2 xhci hed, usbcore, Live OxtffERFfEcOOba000
>>
>> und 24576 © - Live Oxffffffffc00a0000
>>
>> idma64 20480 © - Live oxffffffffc0097000
>>
>> fan 204B0 0 -
>>
>> • Live OxffffffffcO02d000
>>
>> hid 151552 2 hid_generic, 12c hid, Live Oxffffffffc0059000
>>
>> battery 28672 0 -
>>
>> Live Oxffffffffc0048000
>>
>> button 24576 © - Live Oxffffffffc0041000
>>
>> uni 36864 0
>>
>> - Live Oxffffffffc0014000
>>
>> video 57344 1 i915, Live Oxffffffff:0000000
>>
>>
>>>> On 20 Jul 2022, at 23:40, Chuck Zmudzinski <brchuckz@netscape.net> wrote:
>>>
>>> ?On 7/20/2022 4:38 PM, Bruno wrote:
>>>> Another thing that catches my eye are the constant fails from beginning to end on nvme:
>>>>
>>>> nvme nvme0: pci function x
>>>> nvme x: PCI INT A: no GSI
>>>> Time-outs I/O x QID completion polled
>>>> missing or invalid SUBQN field
>>>> Timeouts and probes / completion pilled
>>>
>>> I think maybe your laptop is too new for Debian
>>> stable. Debian stable uses Linux 5.10 and Xen 4.14
>>> which were developed probably two years ago or
>>> more. I think you need a distro with Linux 5.18
>>> and Xen 4.16. Debian testing (aka bookworm) will
>>> eventually become Debian 12 should work better,
>>> and you can find many guides for upgrading from
>>> Debian stable to Debian testing by doing an Internet
>>> search. I also think fedora and opensuse might have
>>> those newer versions of Linux and Xen also.
>>>
>>> Chuck
>>>
>>>>
>>>>> On 20 Jul 2022, at 21:19, Bruno <brunoce@kolabnow.com> wrote:
>>>>>
>>>>> ?Error I can see when I grep from dmesg on initramfs:
>>>>>
>>>>> pcieport xxx DCP: error containment capabilities: Int Msg #0, …..
>>>>>
>>>>> And grep fail:
>>>>>
>>>>> PM-Timer consistency check
>>>>>
>>>>> pci xxx: Failed to add - pass through or MSI/MSI-X might fail!
>>>>> pci xxx: BAR x: failed to assign [io size x]
>>>>>
>>>>> r8168: module verification failed: signature and or required key missing - tainting kernel
>>>>>
>>>>>>> On 20 Jul 2022, at 21:03, Chuck Zmudzinski <brchuckz@netscape.net> wrote:
>>>>>>>
>>>>>>> ?On 7/20/22 3:19 PM, Bruno wrote:
>>>>>>>
>>>>>>> Hello Leigh. Hello Chuck.
>>>>>>>
>>>>>>> Thank you again for the support. Unfortunately matters have not moved forward yet.
>>>>>>>
>>>>>>> I have successfully installed nvidia and the non-free firmware miscellanea, and I have re-generated the initramfs ( update-initramfs -k all -c -v ). But I cannot boot on Xen.
>>>>>>>
>>>>>>> I also when booting Xen and landing on initramfs prompt, cannot mount /root ( mount -o remount,rw /root ), and I cannot extract a dmesg of that boot process. I am not getting the ACPI error I was getting before, but clearly the errors in mount are ACPI failure.
>>>>>>>
>>>>>>> Bellow the current journalctl -k -b :
>>>>>>>
>>>>>>
>>>>>> As Leigh said, there should be something like:
>>>>>>
>>>>>> Jul 20 09:19:36 debian kernel: [ 0.000000] Hypervisor detected: Xen PV
>>>>>>
>>>>>> In the journal logs, but I don't see it there. See if you can find it in
>>>>>> the /var/log/kern.log file to be sure you are posting the right log file.
>>>>>> It should be there on the attempt to boot into Linux on Xen.
>>>>>>
>>>>>> Maybe there is something wrong with your grub configuration. I know
>>>>>> you posted it in your first message but I don't see anything
>>>>>> terribly wrong there. Are you sure that grub is really booting
>>>>>> the 'Debian Linux/GNU with Xen hypervisor' boot option? It
>>>>>> should boot that, based on what is in your /boot/grub/grub.cfg
>>>>>> file.
>>>>>>
>>>>>> You can also manually select the option to boot Debian with the
>>>>>> Xen hypervisor while the grub boot menu displays.
>>>>>>
>>>>>> It has been a long time since I installed Xen on Debian,
>>>>>> I have been just upgrading my installation that
>>>>>> goes all the way back to Debian 7. It may be there
>>>>>> is a bug in the current Debian Xen metapackage
>>>>>> installation system.
>>>>>>
>>>>>> I have been planning to try to do a clean install of
>>>>>> Xen on Debian 11 to see if it still works right. I will
>>>>>> try it later this week and let you know if there is
>>>>>> a bug in the Debian Xen installation system.
>>>>>>
>>>>>> Chuck
>>>>>>
>>>>>>
>>>>>>> Jul 20 20:02:05 xd kernel: Linux version 5.10.0-16-amd64 (debian-kernel@lists.debian.org) (gcc-10 (Debian 10.2.1-6) 10.2.1 20210110, GNU ld (GNU Binutils for Debian) 2.35.2) #1 SMP Debian 5.10.127-1 (2022-06-30)
>>>>>>> Jul 20 20:02:05 xd kernel: Command line: BOOT_IMAGE=/vmlinuz-5.10.0-16-amd64 root=UUID=0123abcd ro quiet
>>>>>>> Jul 20 20:02:05 xd kernel: x86/split lock detection: warning about user-space split_locks
>>>>>>> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
>>>>>>> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
>>>>>>> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
>>>>>>> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask'
>>>>>>> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'
>>>>>>> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'
>>>>>>> Jul 20 20:02:05 xd kernel: x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
>>>>>>> Jul 20 20:02:05 xd kernel: x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
>>>>>>> Jul 20 20:02:05 xd kernel: x86/fpu: xstate_offset[5]: 832, xstate_sizes[5]: 64
>>>>>>> Jul 20 20:02:05 xd kernel: x86/fpu: xstate_offset[6]: 896, xstate_sizes[6]: 512
>>>>>>> Jul 20 20:02:05 xd kernel: x86/fpu: xstate_offset[7]: 1408, xstate_sizes[7]: 1024
>>>>>>> Jul 20 20:02:05 xd kernel: x86/fpu: xstate_offset[9]: 2432, xstate_sizes[9]: 8
>>>>>>> Jul 20 20:02:05 xd kernel: x86/fpu: Enabled xstate features 0x2e7, context size is 2440 bytes, using 'compacted' format.
>>>>>>> Jul 20 20:02:05 xd kernel: BIOS-provided physical RAM map:
>>>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
>>>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
>>>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000000100000-0x000000003fd98fff] usable
>>>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x000000003fd99000-0x0000000040698fff] reserved
>>>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000040699000-0x00000000424aefff] usable
>>>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000424af000-0x000000004287efff] type 20
>>>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x000000004287f000-0x00000000442fefff] reserved
>>>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000442ff000-0x0000000044b2efff] ACPI NVS
>>>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000044b2f000-0x0000000044bfefff] ACPI data
>>>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000044bff000-0x0000000044bfffff] usable
>>>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000044c00000-0x0000000048ffffff] reserved
>>>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000049e00000-0x000000004f7fffff] reserved
>>>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000c0000000-0x00000000cfffffff] reserved
>>>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000fe010000-0x00000000fe010fff] reserved
>>>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000fed20000-0x00000000fed7ffff] reserved
>>>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x00000000ff500000-0x00000000ffffffff] reserved
>>>>>>> Jul 20 20:02:05 xd kernel: BIOS-e820: [mem 0x0000000100000000-0x00000004b07fffff] usable
>>>>>>> Jul 20 20:02:05 xd kernel: NX (Execute Disable) protection: active
>>>>>>> Jul 20 20:02:05 xd kernel: efi: EFI v2.70 by INSYDE Corp.
>>>>>>> Jul 20 20:02:05 xd kernel: efi: ACPI=0x44bfe000 ACPI 2.0=0x44bfe014 TPMFinalLog=0x44ac5000 SMBIOS=0x429de000 SMBIOS 3.0=0x429dc000 ESRT=0x3bf68a98 MOKvar=0x3bee5000
>>>>>>> Jul 20 20:02:05 xd kernel: secureboot: Secure boot could not be determined (mode 0)
>>>>>>> Jul 20 20:02:05 xd kernel: SMBIOS 3.3.0 present.
>>>>>>> Jul 20 20:02:05 xd kernel: DMI: Acer Aspire A517-52G/Jasmine_TL, BIOS V1.26 03/14/2022
>>>>>>> Jul 20 20:02:05 xd kernel: tsc: Detected 2400.000 MHz processor
>>>>>>> Jul 20 20:02:05 xd kernel: tsc: Detected 2419.200 MHz TSC
>>>>>>> Jul 20 20:02:05 xd kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
>>>>>>> Jul 20 20:02:05 xd kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
>>>>>>> Jul 20 20:02:05 xd kernel: last_pfn = 0x4b0800 max_arch_pfn = 0x400000000
>>>>>>> Jul 20 20:02:05 xd kernel: MTRR default type: write-back
>>>>>>> Jul 20 20:02:05 xd kernel: MTRR fixed ranges enabled:
>>>>>>> Jul 20 20:02:05 xd kernel: 00000-9FFFF write-back
>>>>>>> Jul 20 20:02:05 xd kernel: A0000-BFFFF uncachable
>>>>>>> Jul 20 20:02:05 xd kernel: C0000-FFFFF write-protect
>>>>>>> Jul 20 20:02:05 xd kernel: MTRR variable ranges enabled:
>>>>>>> Jul 20 20:02:05 xd kernel: 0 base 0080000000 mask 7F80000000 uncachable
>>>>>>> Jul 20 20:02:05 xd kernel: 1 base 0060000000 mask 7FE0000000 uncachable
>>>>>>> Jul 20 20:02:05 xd kernel: 2 base 0050000000 mask 7FF0000000 uncachable
>>>>>>> Jul 20 20:02:05 xd kernel: 3 base 004C000000 mask 7FFC000000 uncachable
>>>>>>> Jul 20 20:02:05 xd kernel: 4 base 004B000000 mask 7FFF000000 uncachable
>>>>>>> Jul 20 20:02:05 xd kernel: 5 base 4000000000 mask 4000000000 uncachable
>>>>>>> Jul 20 20:02:05 xd kernel: 6 disabled
>>>>>>> Jul 20 20:02:05 xd kernel: 7 disabled
>>>>>>> Jul 20 20:02:05 xd kernel: 8 disabled
>>>>>>> Jul 20 20:02:05 xd kernel: 9 disabled
>>>>>>> Jul 20 20:02:05 xd kernel: x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
>>>>>>> Jul 20 20:02:05 xd kernel: last_pfn = 0x44c00 max_arch_pfn = 0x400000000
>>>>>>> Jul 20 20:02:05 xd kernel: esrt: Reserving ESRT space from 0x000000003bf68a98 to 0x000000003bf68ad0.
>>>>>>> Jul 20 20:02:05 xd kernel: e820: update [mem 0x3bf68000-0x3bf68fff] usable ==> reserved
>>>>>>> Jul 20 20:02:05 xd kernel: e820: update [mem 0x3bee5000-0x3bee7fff] usable ==> reserved
>>>>>>> Jul 20 20:02:05 xd kernel: Using GB pages for direct mapping
>>>>>>> Jul 20 20:02:05 xd kernel: RAMDISK: [mem 0x32341000-0x35197fff]
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Early table checksum verification disabled
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: RSDP 0x0000000044BFE014 000024 (v02 ACRSYS)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: XSDT 0x0000000044BDB188 000124 (v01 ACRSYS ACRPRDCT 00000002 01000013)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: FACP 0x0000000044BDE000 000114 (v06 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: DSDT 0x0000000044B81000 059948 (v02 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: FACS 0x0000000044AA2000 000040
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: UEFI 0x0000000044B2E000 000236 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BFA000 00255C (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BF9000 000105 (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BF6000 002137 (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BF2000 003300 (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BF1000 00077B (v02 ACRSYS ACRPRDCT 00001000 1025 00040000)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: TPM2 0x0000000044BF0000 00004C (v04 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: MSDM 0x0000000044BEF000 000055 (v03 ACRSYS ACRPRDCT 00000001 1025 00040000)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BEE000 000D02 (v02 ACRSYS ACRPRDCT 00000000 1025 00040000)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: NHLT 0x0000000044BEC000 001B54 (v00 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: LPIT 0x0000000044BEB000 0000CC (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: WSMT 0x0000000044BEA000 000028 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BE9000 000B70 (v02 ACRSYS ACRPRDCT 00001000 1025 00040000)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BE8000 00012A (v02 ACRSYS ACRPRDCT 00000000 1025 00040000)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: DBGP 0x0000000044BE7000 000034 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: DBG2 0x0000000044BE6000 000054 (v00 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044BDF000 006BA9 (v01 ACRSYS ACRPRDCT 00001000 1025 00040000)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: HPET 0x0000000044BDD000 000038 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: APIC 0x0000000044BDC000 00012C (v04 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: MCFG 0x0000000044BFD000 00003C (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044B80000 000C78 (v02 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: DMAR 0x0000000044B7F000 000088 (v02 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044B7C000 0020D6 (v01 ACRSYS ACRPRDCT 00001000 1025 00040000)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: UEFI 0x0000000044A5B000 00063A (v01 ACRSYS ACRPRDCT 00000000 1025 00040000)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: UEFI 0x0000000044A5A000 00005C (v01 ACRSYS ACRPRDCT 00000000 1025 00040000)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044B7B000 000985 (v02 ACRSYS ACRPRDCT 00001000 1025 00040000)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044B7A000 0000F8 (v01 ACRSYS ACRPRDCT 00001000 1025 00040000)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0x0000000044B79000 000835 (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: FPDT 0x0000000044B78000 000044 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: PTDT 0x0000000044B76000 000CFE (v00 ACRSYS ACRPRDCT 00000005 1025 00040000)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: BGRT 0x0000000044B77000 000038 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving FACP table memory at [mem 0x44bde000-0x44bde113]
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving DSDT table memory at [mem 0x44b81000-0x44bda947]
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving FACS table memory at [mem 0x44aa2000-0x44aa203f]
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving UEFI table memory at [mem 0x44b2e000-0x44b2e235]
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bfa000-0x44bfc55b]
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bf9000-0x44bf9104]
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bf6000-0x44bf8136]
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bf2000-0x44bf52ff]
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bf1000-0x44bf177a]
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving TPM2 table memory at [mem 0x44bf0000-0x44bf004b]
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving MSDM table memory at [mem 0x44bef000-0x44bef054]
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bee000-0x44beed01]
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving NHLT table memory at [mem 0x44bec000-0x44bedb53]
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving LPIT table memory at [mem 0x44beb000-0x44beb0cb]
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving WSMT table memory at [mem 0x44bea000-0x44bea027]
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44be9000-0x44be9b6f]
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44be8000-0x44be8129]
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving DBGP table memory at [mem 0x44be7000-0x44be7033]
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving DBG2 table memory at [mem 0x44be6000-0x44be6053]
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44bdf000-0x44be5ba8]
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving HPET table memory at [mem 0x44bdd000-0x44bdd037]
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving APIC table memory at [mem 0x44bdc000-0x44bdc12b]
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving MCFG table memory at [mem 0x44bfd000-0x44bfd03b]
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b80000-0x44b80c77]
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving DMAR table memory at [mem 0x44b7f000-0x44b7f087]
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b7c000-0x44b7e0d5]
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving UEFI table memory at [mem 0x44a5b000-0x44a5b639]
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving UEFI table memory at [mem 0x44a5a000-0x44a5a05b]
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b7b000-0x44b7b984]
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b7a000-0x44b7a0f7]
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving SSDT table memory at [mem 0x44b79000-0x44b79834]
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving FPDT table memory at [mem 0x44b78000-0x44b78043]
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving PTDT table memory at [mem 0x44b76000-0x44b76cfd]
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Reserving BGRT table memory at [mem 0x44b77000-0x44b77037]
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Local APIC address 0xfee00000
>>>>>>> Jul 20 20:02:05 xd kernel: No NUMA configuration found
>>>>>>> Jul 20 20:02:05 xd kernel: Faking a node at [mem 0x0000000000000000-0x00000004b07fffff]
>>>>>>> Jul 20 20:02:05 xd kernel: NODE_DATA(0) allocated [mem 0x4b07d6000-0x4b07fffff]
>>>>>>> Jul 20 20:02:05 xd kernel: Zone ranges:
>>>>>>> Jul 20 20:02:05 xd kernel: DMA [mem 0x0000000000001000-0x0000000000ffffff]
>>>>>>> Jul 20 20:02:05 xd kernel: DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
>>>>>>> Jul 20 20:02:05 xd kernel: Normal [mem 0x0000000100000000-0x00000004b07fffff]
>>>>>>> Jul 20 20:02:05 xd kernel: Device empty
>>>>>>> Jul 20 20:02:05 xd kernel: Movable zone start for each node
>>>>>>> Jul 20 20:02:05 xd kernel: Early memory node ranges
>>>>>>> Jul 20 20:02:05 xd kernel: node 0: [mem 0x0000000000001000-0x000000000009efff]
>>>>>>> Jul 20 20:02:05 xd kernel: node 0: [mem 0x0000000000100000-0x000000003fd98fff]
>>>>>>> Jul 20 20:02:05 xd kernel: node 0: [mem 0x0000000040699000-0x00000000424aefff]
>>>>>>> Jul 20 20:02:05 xd kernel: node 0: [mem 0x0000000044bff000-0x0000000044bfffff]
>>>>>>> Jul 20 20:02:05 xd kernel: node 0: [mem 0x0000000100000000-0x00000004b07fffff]
>>>>>>> Jul 20 20:02:05 xd kernel: Initmem setup node 0 [mem 0x0000000000001000-0x00000004b07fffff]
>>>>>>> Jul 20 20:02:05 xd kernel: On node 0 totalpages: 4137806
>>>>>>> Jul 20 20:02:05 xd kernel: DMA zone: 64 pages used for memmap
>>>>>>> Jul 20 20:02:05 xd kernel: DMA zone: 25 pages reserved
>>>>>>> Jul 20 20:02:05 xd kernel: DMA zone: 3998 pages, LIFO batch:0
>>>>>>> Jul 20 20:02:05 xd kernel: DMA32 zone: 4143 pages used for memmap
>>>>>>> Jul 20 20:02:05 xd kernel: DMA32 zone: 265136 pages, LIFO batch:63
>>>>>>> Jul 20 20:02:05 xd kernel: Normal zone: 60448 pages used for memmap
>>>>>>> Jul 20 20:02:05 xd kernel: Normal zone: 3868672 pages, LIFO batch:63
>>>>>>> Jul 20 20:02:05 xd kernel: On node 0, zone DMA: 1 pages in unavailable ranges
>>>>>>> Jul 20 20:02:05 xd kernel: On node 0, zone DMA: 97 pages in unavailable ranges
>>>>>>> Jul 20 20:02:05 xd kernel: On node 0, zone DMA32: 2304 pages in unavailable ranges
>>>>>>> Jul 20 20:02:05 xd kernel: On node 0, zone DMA32: 10064 pages in unavailable ranges
>>>>>>> Jul 20 20:02:05 xd kernel: On node 0, zone Normal: 13312 pages in unavailable ranges
>>>>>>> Jul 20 20:02:05 xd kernel: On node 0, zone Normal: 30720 pages in unavailable ranges
>>>>>>> Jul 20 20:02:05 xd kernel: Reserving Intel graphics memory at [mem 0x4b800000-0x4f7fffff]
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: PM-Timer IO Port: 0x1808
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Local APIC address 0xfee00000
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
>>>>>>> Jul 20 20:02:05 xd kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: IRQ0 used by override.
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: IRQ9 used by override.
>>>>>>> Jul 20 20:02:05 xd kernel: Using ACPI (MADT) for SMP configuration information
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
>>>>>>> Jul 20 20:02:05 xd kernel: e820: update [mem 0x3bf6a000-0x3c05dfff] usable ==> reserved
>>>>>>> Jul 20 20:02:05 xd kernel: TSC deadline timer available
>>>>>>> Jul 20 20:02:05 xd kernel: smpboot: Allowing 8 CPUs, 0 hotplug CPUs
>>>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
>>>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
>>>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x3bee5000-0x3bee7fff]
>>>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x3bf68000-0x3bf68fff]
>>>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x3bf6a000-0x3c05dfff]
>>>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x3fd99000-0x40698fff]
>>>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x424af000-0x4287efff]
>>>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x4287f000-0x442fefff]
>>>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x442ff000-0x44b2efff]
>>>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x44b2f000-0x44bfefff]
>>>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x44c00000-0x48ffffff]
>>>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x49000000-0x49dfffff]
>>>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x49e00000-0x4f7fffff]
>>>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0x4f800000-0xbfffffff]
>>>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xc0000000-0xcfffffff]
>>>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xd0000000-0xfe00ffff]
>>>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xfe010000-0xfe010fff]
>>>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xfed1ffff]
>>>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xfed7ffff]
>>>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xff4fffff]
>>>>>>> Jul 20 20:02:05 xd kernel: PM: hibernation: Registered nosave memory: [mem 0xff500000-0xffffffff]
>>>>>>> Jul 20 20:02:05 xd kernel: [mem 0x4f800000-0xbfffffff] available for PCI devices
>>>>>>> Jul 20 20:02:05 xd kernel: Booting paravirtualized kernel on bare hardware
>>>>>>> Jul 20 20:02:05 xd kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
>>>>>>> Jul 20 20:02:05 xd kernel: setup_percpu: NR_CPUS:8192 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
>>>>>>> Jul 20 20:02:05 xd kernel: percpu: Embedded 58 pages/cpu s200664 r8192 d28712 u262144
>>>>>>> Jul 20 20:02:05 xd kernel: pcpu-alloc: s200664 r8192 d28712 u262144 alloc=1*2097152
>>>>>>> Jul 20 20:02:05 xd kernel: pcpu-alloc: [0] 0 1 2 3 4 5 6 7
>>>>>>> Jul 20 20:02:05 xd kernel: Built 1 zonelists, mobility grouping on. Total pages: 4073126
>>>>>>> Jul 20 20:02:05 xd kernel: Policy zone: Normal
>>>>>>> Jul 20 20:02:05 xd kernel: Kernel command line: BOOT_IMAGE=/vmlinuz-5.10.0-16-amd64 root=UUID=0dc2ba0c-97d5-4786-bc97-4d13279afe0f ro quiet
>>>>>>> Jul 20 20:02:05 xd kernel: Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
>>>>>>> Jul 20 20:02:05 xd kernel: Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
>>>>>>> Jul 20 20:02:05 xd kernel: mem auto-init: stack:off, heap alloc:on, heap free:off
>>>>>>> Jul 20 20:02:05 xd kernel: Memory: 1010444K/16551224K available (12295K kernel code, 2536K rwdata, 7568K rodata, 2424K init, 3680K bss, 520984K reserved, 0K cma-reserved)
>>>>>>> Jul 20 20:02:05 xd kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
>>>>>>> Jul 20 20:02:05 xd kernel: ftrace: allocating 36455 entries in 143 pages
>>>>>>> Jul 20 20:02:05 xd kernel: ftrace: allocated 143 pages with 5 groups
>>>>>>> Jul 20 20:02:05 xd kernel: rcu: Hierarchical RCU implementation.
>>>>>>> Jul 20 20:02:05 xd kernel: rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=8.
>>>>>>> Jul 20 20:02:05 xd kernel: Rude variant of Tasks RCU enabled.
>>>>>>> Jul 20 20:02:05 xd kernel: Tracing variant of Tasks RCU enabled.
>>>>>>> Jul 20 20:02:05 xd kernel: rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
>>>>>>> Jul 20 20:02:05 xd kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
>>>>>>> Jul 20 20:02:05 xd kernel: NR_IRQS: 524544, nr_irqs: 2048, preallocated irqs: 16
>>>>>>> Jul 20 20:02:05 xd kernel: random: crng init done
>>>>>>> Jul 20 20:02:05 xd kernel: Console: colour dummy device 80x25
>>>>>>> Jul 20 20:02:05 xd kernel: printk: console [tty0] enabled
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Core revision 20200925
>>>>>>> Jul 20 20:02:05 xd kernel: hpet: HPET dysfunctional in PC10. Force disabled.
>>>>>>> Jul 20 20:02:05 xd kernel: APIC: Switch to symmetric I/O mode setup
>>>>>>> Jul 20 20:02:05 xd kernel: DMAR: Host address width 39
>>>>>>> Jul 20 20:02:05 xd kernel: DMAR: DRHD base: 0x000000fed90000 flags: 0x0
>>>>>>> Jul 20 20:02:05 xd kernel: DMAR: dmar0: reg_base_addr fed90000 ver 4:0 cap 1c0000c40660462 ecap 29a00f0505e
>>>>>>> Jul 20 20:02:05 xd kernel: DMAR: DRHD base: 0x000000fed91000 flags: 0x1
>>>>>>> Jul 20 20:02:05 xd kernel: DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
>>>>>>> Jul 20 20:02:05 xd kernel: DMAR: RMRR base: 0x0000004b000000 end: 0x0000004f7fffff
>>>>>>> Jul 20 20:02:05 xd kernel: DMAR-IR: IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 1
>>>>>>> Jul 20 20:02:05 xd kernel: DMAR-IR: HPET id 0 under DRHD base 0xfed91000
>>>>>>> Jul 20 20:02:05 xd kernel: DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
>>>>>>> Jul 20 20:02:05 xd kernel: DMAR-IR: Enabled IRQ remapping in x2apic mode
>>>>>>> Jul 20 20:02:05 xd kernel: x2apic enabled
>>>>>>> Jul 20 20:02:05 xd kernel: Switched APIC routing to cluster x2apic.
>>>>>>> Jul 20 20:02:05 xd kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x22df1149949, max_idle_ns: 440795312789 ns
>>>>>>> Jul 20 20:02:05 xd kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 4838.40 BogoMIPS (lpj=9676800)
>>>>>>> Jul 20 20:02:05 xd kernel: pid_max: default: 32768 minimum: 301
>>>>>>> Jul 20 20:02:05 xd kernel: LSM: Security Framework initializing
>>>>>>> Jul 20 20:02:05 xd kernel: Yama: disabled by default; enable with sysctl kernel.yama.*
>>>>>>> Jul 20 20:02:05 xd kernel: AppArmor: AppArmor initialized
>>>>>>> Jul 20 20:02:05 xd kernel: TOMOYO Linux initialized
>>>>>>> Jul 20 20:02:05 xd kernel: Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
>>>>>>> Jul 20 20:02:05 xd kernel: Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
>>>>>>> Jul 20 20:02:05 xd kernel: x86/cpu: User Mode Instruction Prevention (UMIP) activated
>>>>>>> Jul 20 20:02:05 xd kernel: mce: CPU0: Thermal monitoring enabled (TM1)
>>>>>>> Jul 20 20:02:05 xd kernel: process: using mwait in idle threads
>>>>>>> Jul 20 20:02:05 xd kernel: Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
>>>>>>> Jul 20 20:02:05 xd kernel: Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
>>>>>>> Jul 20 20:02:05 xd kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
>>>>>>> Jul 20 20:02:05 xd kernel: Spectre V2 : Mitigation: Enhanced IBRS
>>>>>>> Jul 20 20:02:05 xd kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
>>>>>>> Jul 20 20:02:05 xd kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
>>>>>>> Jul 20 20:02:05 xd kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
>>>>>>> Jul 20 20:02:05 xd kernel: Freeing SMP alternatives memory: 32K
>>>>>>> Jul 20 20:02:05 xd kernel: smpboot: CPU0: 11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz (family: 0x6, model: 0x8c, stepping: 0x1)
>>>>>>> Jul 20 20:02:05 xd kernel: Performance Events: PEBS fmt4+-baseline, AnyThread deprecated, Icelake events, 32-deep LBR, full-width counters, Intel PMU driver.
>>>>>>> Jul 20 20:02:05 xd kernel: ... version: 5
>>>>>>> Jul 20 20:02:05 xd kernel: ... bit width: 48
>>>>>>> Jul 20 20:02:05 xd kernel: ... generic registers: 8
>>>>>>> Jul 20 20:02:05 xd kernel: ... value mask: 0000ffffffffffff
>>>>>>> Jul 20 20:02:05 xd kernel: ... max period: 00007fffffffffff
>>>>>>> Jul 20 20:02:05 xd kernel: ... fixed-purpose events: 4
>>>>>>> Jul 20 20:02:05 xd kernel: ... event mask: 0001000f000000ff
>>>>>>> Jul 20 20:02:05 xd kernel: rcu: Hierarchical SRCU implementation.
>>>>>>> Jul 20 20:02:05 xd kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
>>>>>>> Jul 20 20:02:05 xd kernel: smp: Bringing up secondary CPUs ...
>>>>>>> Jul 20 20:02:05 xd kernel: x86: Booting SMP configuration:
>>>>>>> Jul 20 20:02:05 xd kernel: .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7
>>>>>>> Jul 20 20:02:05 xd kernel: smp: Brought up 1 node, 8 CPUs
>>>>>>> Jul 20 20:02:05 xd kernel: smpboot: Max logical packages: 1
>>>>>>> Jul 20 20:02:05 xd kernel: smpboot: Total of 8 processors activated (38707.20 BogoMIPS)
>>>>>>> Jul 20 20:02:05 xd kernel: node 0 deferred pages initialised in 20ms
>>>>>>> Jul 20 20:02:05 xd kernel: devtmpfs: initialized
>>>>>>> Jul 20 20:02:05 xd kernel: x86/mm: Memory block size: 128MB
>>>>>>> Jul 20 20:02:05 xd kernel: PM: Registering ACPI NVS region [mem 0x442ff000-0x44b2efff] (8585216 bytes)
>>>>>>> Jul 20 20:02:05 xd kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
>>>>>>> Jul 20 20:02:05 xd kernel: futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
>>>>>>> Jul 20 20:02:05 xd kernel: pinctrl core: initialized pinctrl subsystem
>>>>>>> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 16
>>>>>>> Jul 20 20:02:05 xd kernel: audit: initializing netlink subsys (disabled)
>>>>>>> Jul 20 20:02:05 xd kernel: audit: type=2000 audit(1658343722.028:1): state=initialized audit_enabled=0 res=1
>>>>>>> Jul 20 20:02:05 xd kernel: thermal_sys: Registered thermal governor 'fair_share'
>>>>>>> Jul 20 20:02:05 xd kernel: thermal_sys: Registered thermal governor 'bang_bang'
>>>>>>> Jul 20 20:02:05 xd kernel: thermal_sys: Registered thermal governor 'step_wise'
>>>>>>> Jul 20 20:02:05 xd kernel: thermal_sys: Registered thermal governor 'user_space'
>>>>>>> Jul 20 20:02:05 xd kernel: thermal_sys: Registered thermal governor 'power_allocator'
>>>>>>> Jul 20 20:02:05 xd kernel: cpuidle: using governor ladder
>>>>>>> Jul 20 20:02:05 xd kernel: cpuidle: using governor menu
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: bus type PCI registered
>>>>>>> Jul 20 20:02:05 xd kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
>>>>>>> Jul 20 20:02:05 xd kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xc0000000-0xcfffffff] (base 0xc0000000)
>>>>>>> Jul 20 20:02:05 xd kernel: PCI: MMCONFIG at [mem 0xc0000000-0xcfffffff] reserved in E820
>>>>>>> Jul 20 20:02:05 xd kernel: PCI: Using configuration type 1 for base access
>>>>>>> Jul 20 20:02:05 xd kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
>>>>>>> Jul 20 20:02:05 xd kernel: Kprobes globally optimized
>>>>>>> Jul 20 20:02:05 xd kernel: HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
>>>>>>> Jul 20 20:02:05 xd kernel: HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Module Device)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Processor Device)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Processor Aggregator Device)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Linux-Dell-Video)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS01._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS01._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS02._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS02._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS03._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS03._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS04._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS04._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS05._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS05._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS06._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS06._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS07._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS07._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS08._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS08._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS09._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS09._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS10._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.HS10._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS01._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS01._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS02._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS02._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS03._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS03._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS04._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS04._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS05._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS05._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS06._UPC], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PC00.XHCI.RHUB.SS06._PLD], AE_ALREADY_EXISTS (20200925/dswload2-326)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20200925/psobject-220)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: 15 ACPI AML tables successfully acquired and loaded
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8882135E00 0001C6 (v02 PmRef Cpu0Psd 00003000 INTL 20160422)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: \_SB_.PR00: _OSC native thermal LVT Acked
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A888213CC00 000386 (v02 PmRef Cpu0Cst 00003001 INTL 20160422)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8500BAB000 0005C3 (v02 PmRef Cpu0Ist 00003000 INTL 20160422)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A888213FC00 00028B (v02 PmRef Cpu0Hwp 00003000 INTL 20160422)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8500F3D000 0008E7 (v02 PmRef ApIst 00003000 INTL 20160422)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8500BAC000 00048A (v02 PmRef ApHwp 00003000 INTL 20160422)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8500BAF800 0004D4 (v02 PmRef ApPsd 00003000 INTL 20160422)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Dynamic OEM Table Load:
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: SSDT 0xFFFF9A8500BAE000 00048A (v02 PmRef ApCst 00003000 INTL 20160422)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: EC: EC started
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: EC: interrupt blocked
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: \_SB_.PC00.LPCB.EC0_: Boot DSDT EC used to handle transactions
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Interpreter enabled
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: (supports S0 S3 S4 S5)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Using IOAPIC for interrupt routing
>>>>>>> Jul 20 20:02:05 xd kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Enabled 7 GPEs in block 00 to 7F
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [PCRP] (on)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V0PR] (on)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V1PR] (on)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V2PR] (on)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [WRST] (on)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V0PR] (on)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V1PR] (on)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V2PR] (on)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [V3PR] (on)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [FN00] (off)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [FN01] (off)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [FN02] (off)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [FN03] (off)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [FN04] (off)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Resource [PIN] (off)
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-e0])
>>>>>>> Jul 20 20:02:05 xd kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
>>>>>>> Jul 20 20:02:05 xd kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR]
>>>>>>> Jul 20 20:02:05 xd kernel: PCI host bridge to bus 0000:00
>>>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
>>>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
>>>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
>>>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [mem 0x4f800000-0xbfffffff window]
>>>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
>>>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: root bus resource [bus 00-e0]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:00.0: [8086:9a14] type 00 class 0x060000
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: [8086:9a49] type 00 class 0x030000
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: reg 0x10: [mem 0x6014000000-0x6014ffffff 64bit]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: reg 0x18: [mem 0x4000000000-0x400fffffff 64bit pref]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: reg 0x20: [io 0x5000-0x503f]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: BAR 2: assigned to efifb
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: DMAR: Skip IOMMU disabling for graphics
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: reg 0x344: [mem 0x00000000-0x00ffffff 64bit]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: VF(n) BAR0 space: [mem 0x00000000-0x06ffffff 64bit] (contains BAR0 for 7 VFs)
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: reg 0x34c: [mem 0x00000000-0x1fffffff 64bit pref]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: VF(n) BAR2 space: [mem 0x00000000-0xdfffffff 64bit pref] (contains BAR2 for 7 VFs)
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: [8086:9a09] type 01 class 0x060400
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: PTM enabled (root), 4ns granularity
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:08.0: [8086:9a11] type 00 class 0x088000
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:08.0: reg 0x10: [mem 0x601540f000-0x601540ffff 64bit]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:0e.0: [8086:9a0b] type 00 class 0x010400
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:0e.0: reg 0x10: [mem 0x6012000000-0x6013ffffff 64bit]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:0e.0: reg 0x18: [mem 0x50000000-0x51ffffff]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:0e.0: reg 0x20: [mem 0x6015300000-0x60153fffff 64bit]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.0: [8086:a0ed] type 00 class 0x0c0330
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.0: reg 0x10: [mem 0x53180000-0x5318ffff 64bit]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.2: [8086:a0ef] type 00 class 0x050000
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.2: reg 0x10: [mem 0x6015404000-0x6015407fff 64bit]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.2: reg 0x18: [mem 0x601540e000-0x601540efff 64bit]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.0: [8086:a0e8] type 00 class 0x0c8000
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.3: [8086:a0eb] type 00 class 0x0c8000
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.3: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:16.0: [8086:a0e0] type 00 class 0x078000
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:16.0: reg 0x10: [mem 0x601540b000-0x601540bfff 64bit]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:16.0: PME# supported from D3hot
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:17.0: [8086:09ab] type 00 class 0x088000
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.0: [8086:a0c5] type 00 class 0x0c8000
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.1: [8086:a0c6] type 00 class 0x0c8000
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.1: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: [8086:a0b0] type 01 class 0x060400
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: PTM enabled (root), 4ns granularity
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: [8086:a0b1] type 01 class 0x060400
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: PME# supported from D0 D3hot D3cold
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: PTM enabled (root), 4ns granularity
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.0: [8086:a082] type 00 class 0x060100
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.3: [8086:a0c8] type 00 class 0x040100
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.3: reg 0x10: [mem 0x6015400000-0x6015403fff 64bit]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.3: reg 0x20: [mem 0x6015200000-0x60152fffff 64bit]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.3: PME# supported from D3hot D3cold
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.4: [8086:a0a3] type 00 class 0x0c0500
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.4: reg 0x10: [mem 0x6015408000-0x60154080ff 64bit]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.4: reg 0x20: [io 0xefa0-0xefbf]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.5: [8086:a0a4] type 00 class 0x0c8000
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.5: reg 0x10: [mem 0xfe010000-0xfe010fff]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: [10de:1f97] type 00 class 0x030200
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: reg 0x10: [mem 0x52000000-0x52ffffff]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: reg 0x14: [mem 0x6000000000-0x600fffffff 64bit pref]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: reg 0x1c: [mem 0x6010000000-0x6011ffffff 64bit pref]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: reg 0x24: [io 0x4000-0x407f]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: 63.012 Gb/s available PCIe bandwidth, limited by 16.0 GT/s PCIe x4 link at 0000:00:06.0 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: PCI bridge to [bus 01]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [io 0x4000-0x4fff]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [mem 0x52000000-0x52ffffff]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [mem 0x6000000000-0x6011ffffff 64bit pref]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: reg 0x10: [io 0x3000-0x30ff]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: reg 0x18: [mem 0x53004000-0x53004fff 64bit]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: reg 0x20: [mem 0x53000000-0x53003fff 64bit]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: supports D1 D2
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: PCI bridge to [bus 02]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: bridge window [io 0x3000-0x3fff]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: bridge window [mem 0x53000000-0x530fffff]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: [14c3:7961] type 00 class 0x028000
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: reg 0x10: [mem 0x6015000000-0x60150fffff 64bit pref]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: reg 0x18: [mem 0x6015100000-0x6015103fff 64bit pref]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: reg 0x20: [mem 0x6015104000-0x6015104fff 64bit pref]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: supports D1 D2
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: PCI bridge to [bus 03]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: bridge window [mem 0x6015000000-0x60151fffff 64bit pref]
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: EC: interrupt unblocked
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: EC: event unblocked
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: EC: GPE=0x6e
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: \_SB_.PC00.LPCB.EC0_: Boot DSDT EC initialization complete
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: \_SB_.PC00.LPCB.EC0_: EC: Used to handle transactions and events
>>>>>>> Jul 20 20:02:05 xd kernel: iommu: Default domain type: Translated
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: vgaarb: setting as boot VGA device
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: vgaarb: bridge control possible
>>>>>>> Jul 20 20:02:05 xd kernel: vgaarb: loaded
>>>>>>> Jul 20 20:02:05 xd kernel: EDAC MC: Ver: 3.0.0
>>>>>>> Jul 20 20:02:05 xd kernel: Registered efivars operations
>>>>>>> Jul 20 20:02:05 xd kernel: NetLabel: Initializing
>>>>>>> Jul 20 20:02:05 xd kernel: NetLabel: domain hash size = 128
>>>>>>> Jul 20 20:02:05 xd kernel: NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
>>>>>>> Jul 20 20:02:05 xd kernel: NetLabel: unlabeled traffic allowed by default
>>>>>>> Jul 20 20:02:05 xd kernel: PCI: Using ACPI for IRQ routing
>>>>>>> Jul 20 20:02:05 xd kernel: PCI: pci_cache_line_size set to 64 bytes
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.5: can't claim BAR 0 [mem 0xfe010000-0xfe010fff]: no compatible bridge window
>>>>>>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
>>>>>>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x3bee5000-0x3bffffff]
>>>>>>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x3bf68000-0x3bffffff]
>>>>>>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x3bf6a000-0x3bffffff]
>>>>>>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x3fd99000-0x3fffffff]
>>>>>>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x424af000-0x43ffffff]
>>>>>>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x44c00000-0x47ffffff]
>>>>>>> Jul 20 20:02:05 xd kernel: e820: reserve RAM buffer [mem 0x4b0800000-0x4b3ffffff]
>>>>>>> Jul 20 20:02:05 xd kernel: clocksource: Switched to clocksource tsc-early
>>>>>>> Jul 20 20:02:05 xd kernel: VFS: Disk quotas dquot_6.6.0
>>>>>>> Jul 20 20:02:05 xd kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
>>>>>>> Jul 20 20:02:05 xd kernel: AppArmor: AppArmor Filesystem Enabled
>>>>>>> Jul 20 20:02:05 xd kernel: pnp: PnP ACPI init
>>>>>>> Jul 20 20:02:05 xd kernel: system 00:00: [io 0x0680-0x069f] has been reserved
>>>>>>> Jul 20 20:02:05 xd kernel: system 00:00: [io 0x164e-0x164f] has been reserved
>>>>>>> Jul 20 20:02:05 xd kernel: system 00:00: [io 0xfd60-0xfd63] has been reserved
>>>>>>> Jul 20 20:02:05 xd kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
>>>>>>> Jul 20 20:02:05 xd kernel: pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
>>>>>>> Jul 20 20:02:05 xd kernel: system 00:02: [io 0x1854-0x1857] has been reserved
>>>>>>> Jul 20 20:02:05 xd kernel: system 00:02: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
>>>>>>> Jul 20 20:02:05 xd kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0303 (active)
>>>>>>> Jul 20 20:02:05 xd kernel: pnp 00:04: disabling [mem 0xc0000000-0xcfffffff] because it overlaps 0000:00:02.0 BAR 9 [mem 0x00000000-0xdfffffff 64bit pref]
>>>>>>> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfedc0000-0xfedc7fff] has been reserved
>>>>>>> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfeda0000-0xfeda0fff] has been reserved
>>>>>>> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfeda1000-0xfeda1fff] has been reserved
>>>>>>> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfed20000-0xfed7ffff] could not be reserved
>>>>>>> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfed90000-0xfed93fff] could not be reserved
>>>>>>> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfed45000-0xfed8ffff] could not be reserved
>>>>>>> Jul 20 20:02:05 xd kernel: system 00:04: [mem 0xfee00000-0xfeefffff] has been reserved
>>>>>>> Jul 20 20:02:05 xd kernel: system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
>>>>>>> Jul 20 20:02:05 xd kernel: system 00:05: [io 0x1800-0x18fe] could not be reserved
>>>>>>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfe000000-0xfe01ffff] could not be reserved
>>>>>>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfe04c000-0xfe04ffff] has been reserved
>>>>>>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfe050000-0xfe0affff] has been reserved
>>>>>>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfe0d0000-0xfe0fffff] has been reserved
>>>>>>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfe200000-0xfe7fffff] has been reserved
>>>>>>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xff000000-0xffffffff] could not be reserved
>>>>>>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfd000000-0xfd68ffff] has been reserved
>>>>>>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfd6b0000-0xfd6cffff] has been reserved
>>>>>>> Jul 20 20:02:05 xd kernel: system 00:05: [mem 0xfd6f0000-0xfdffffff] has been reserved
>>>>>>> Jul 20 20:02:05 xd kernel: system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
>>>>>>> Jul 20 20:02:05 xd kernel: system 00:06: [io 0x2000-0x20fe] has been reserved
>>>>>>> Jul 20 20:02:05 xd kernel: system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
>>>>>>> Jul 20 20:02:05 xd kernel: system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
>>>>>>> Jul 20 20:02:05 xd kernel: pnp: PnP ACPI: found 8 devices
>>>>>>> Jul 20 20:02:05 xd kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
>>>>>>> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 2
>>>>>>> Jul 20 20:02:05 xd kernel: IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
>>>>>>> Jul 20 20:02:05 xd kernel: tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
>>>>>>> Jul 20 20:02:05 xd kernel: TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
>>>>>>> Jul 20 20:02:05 xd kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
>>>>>>> Jul 20 20:02:05 xd kernel: TCP: Hash tables configured (established 131072 bind 65536)
>>>>>>> Jul 20 20:02:05 xd kernel: UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
>>>>>>> Jul 20 20:02:05 xd kernel: UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
>>>>>>> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 1
>>>>>>> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 44
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
>>>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: max bus depth: 1 pci_try_num: 2
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: BAR 9: assigned [mem 0x4020000000-0x40ffffffff 64bit pref]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: BAR 7: assigned [mem 0x4010000000-0x4016ffffff 64bit]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.0: BAR 0: assigned [mem 0x4017000000-0x4017000fff 64bit]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.3: BAR 0: assigned [mem 0x4017001000-0x4017001fff 64bit]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.0: BAR 0: assigned [mem 0x4017002000-0x4017002fff 64bit]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.1: BAR 0: assigned [mem 0x4017003000-0x4017003fff 64bit]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.5: BAR 0: assigned [mem 0x4f800000-0x4f800fff]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: BAR 6: no space for [mem size 0x00080000 pref]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: BAR 6: failed to assign [mem size 0x00080000 pref]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: PCI bridge to [bus 01]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [io 0x4000-0x4fff]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [mem 0x52000000-0x52ffffff]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: bridge window [mem 0x6000000000-0x6011ffffff 64bit pref]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: PCI bridge to [bus 02]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: bridge window [io 0x3000-0x3fff]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: bridge window [mem 0x53000000-0x530fffff]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: PCI bridge to [bus 03]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: bridge window [mem 0x6015000000-0x60151fffff 64bit pref]
>>>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
>>>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
>>>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
>>>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: resource 7 [mem 0x4f800000-0xbfffffff window]
>>>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:00: resource 8 [mem 0x4000000000-0x7fffffffff window]
>>>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:01: resource 0 [io 0x4000-0x4fff]
>>>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:01: resource 1 [mem 0x52000000-0x52ffffff]
>>>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:01: resource 2 [mem 0x6000000000-0x6011ffffff 64bit pref]
>>>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:02: resource 0 [io 0x3000-0x3fff]
>>>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:02: resource 1 [mem 0x53000000-0x530fffff]
>>>>>>> Jul 20 20:02:05 xd kernel: pci_bus 0000:03: resource 2 [mem 0x6015000000-0x60151fffff 64bit pref]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
>>>>>>> Jul 20 20:02:05 xd kernel: PCI: CLS 64 bytes, default 64
>>>>>>> Jul 20 20:02:05 xd kernel: Trying to unpack rootfs image as initramfs...
>>>>>>> Jul 20 20:02:05 xd kernel: Freeing initrd memory: 47452K
>>>>>>> Jul 20 20:02:05 xd kernel: DMAR: No ATSR found
>>>>>>> Jul 20 20:02:05 xd kernel: DMAR: dmar0: Using Queued invalidation
>>>>>>> Jul 20 20:02:05 xd kernel: DMAR: dmar1: Using Queued invalidation
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:00.0: Adding to iommu group 0
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:02.0: Adding to iommu group 1
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:06.0: Adding to iommu group 2
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:08.0: Adding to iommu group 3
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:0e.0: Adding to iommu group 4
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.0: Adding to iommu group 5
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:14.2: Adding to iommu group 5
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.0: Adding to iommu group 6
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:15.3: Adding to iommu group 6
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:16.0: Adding to iommu group 7
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:17.0: Adding to iommu group 8
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.0: Adding to iommu group 9
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:19.1: Adding to iommu group 9
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.0: Adding to iommu group 10
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1d.1: Adding to iommu group 11
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.0: Adding to iommu group 12
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.3: Adding to iommu group 12
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.4: Adding to iommu group 12
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:00:1f.5: Adding to iommu group 12
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:01:00.0: Adding to iommu group 13
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:02:00.0: Adding to iommu group 14
>>>>>>> Jul 20 20:02:05 xd kernel: pci 0000:03:00.0: Adding to iommu group 15
>>>>>>> Jul 20 20:02:05 xd kernel: DMAR: Intel(R) Virtualization Technology for Directed I/O
>>>>>>> Jul 20 20:02:05 xd kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
>>>>>>> Jul 20 20:02:05 xd kernel: software IO TLB: mapped [mem 0x0000000037663000-0x000000003b663000] (64MB)
>>>>>>> Jul 20 20:02:05 xd kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x22df1149949, max_idle_ns: 440795312789 ns
>>>>>>> Jul 20 20:02:05 xd kernel: clocksource: Switched to clocksource tsc
>>>>>>> Jul 20 20:02:05 xd kernel: Initialise system trusted keyrings
>>>>>>> Jul 20 20:02:05 xd kernel: Key type blacklist registered
>>>>>>> Jul 20 20:02:05 xd kernel: workingset: timestamp_bits=36 max_order=22 bucket_order=0
>>>>>>> Jul 20 20:02:05 xd kernel: zbud: loaded
>>>>>>> Jul 20 20:02:05 xd kernel: integrity: Platform Keyring initialized
>>>>>>> Jul 20 20:02:05 xd kernel: Key type asymmetric registered
>>>>>>> Jul 20 20:02:05 xd kernel: Asymmetric key parser 'x509' registered
>>>>>>> Jul 20 20:02:05 xd kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
>>>>>>> Jul 20 20:02:05 xd kernel: io scheduler mq-deadline registered
>>>>>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:06.0: PME: Signaling with IRQ 122
>>>>>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:06.0: AER: enabled with IRQ 122
>>>>>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:06.0: DPC: enabled with IRQ 122
>>>>>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:06.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
>>>>>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.0: PME: Signaling with IRQ 123
>>>>>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.0: AER: enabled with IRQ 123
>>>>>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.0: DPC: enabled with IRQ 123
>>>>>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
>>>>>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.1: PME: Signaling with IRQ 124
>>>>>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.1: AER: enabled with IRQ 124
>>>>>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.1: DPC: enabled with IRQ 124
>>>>>>> Jul 20 20:02:05 xd kernel: pcieport 0000:00:1d.1: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
>>>>>>> Jul 20 20:02:05 xd kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
>>>>>>> Jul 20 20:02:05 xd kernel: efifb: probing for efifb
>>>>>>> Jul 20 20:02:05 xd kernel: efifb: framebuffer at 0x4000000000, using 8128k, total 8128k
>>>>>>> Jul 20 20:02:05 xd kernel: efifb: mode is 1920x1080x32, linelength=7680, pages=1
>>>>>>> Jul 20 20:02:05 xd kernel: efifb: scrolling: redraw
>>>>>>> Jul 20 20:02:05 xd kernel: efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
>>>>>>> Jul 20 20:02:05 xd kernel: Console: switching to colour frame buffer device 240x67
>>>>>>> Jul 20 20:02:05 xd kernel: fb0: EFI VGA frame buffer device
>>>>>>> Jul 20 20:02:05 xd kernel: intel_idle: MWAIT substates: 0x11121020
>>>>>>> Jul 20 20:02:05 xd kernel: Monitor-Mwait will be used to enter C-1 state
>>>>>>> Jul 20 20:02:05 xd kernel: Monitor-Mwait will be used to enter C-2 state
>>>>>>> Jul 20 20:02:05 xd kernel: Monitor-Mwait will be used to enter C-3 state
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: \_SB_.PR00: Found 3 idle states
>>>>>>> Jul 20 20:02:05 xd kernel: intel_idle: v0.5.1 model 0x8C
>>>>>>> Jul 20 20:02:05 xd kernel: intel_idle: Local APIC timer is reliable in all C-states
>>>>>>> Jul 20 20:02:05 xd kernel: thermal LNXTHERM:00: registered as thermal_zone0
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Thermal Zone [TZ00] (28 C)
>>>>>>> Jul 20 20:02:05 xd kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
>>>>>>> Jul 20 20:02:05 xd kernel: hpet_acpi_add: no address or irqs in _CRS
>>>>>>> Jul 20 20:02:05 xd kernel: Linux agpgart interface v0.103
>>>>>>> Jul 20 20:02:05 xd kernel: AMD-Vi: AMD IOMMUv2 functionality not available on this system - This is not a bug.
>>>>>>> Jul 20 20:02:05 xd kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
>>>>>>> Jul 20 20:02:05 xd kernel: i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
>>>>>>> Jul 20 20:02:05 xd kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
>>>>>>> Jul 20 20:02:05 xd kernel: mousedev: PS/2 mouse device common for all mice
>>>>>>> Jul 20 20:02:05 xd kernel: rtc_cmos 00:01: RTC can wake from S4
>>>>>>> Jul 20 20:02:05 xd kernel: rtc_cmos 00:01: registered as rtc0
>>>>>>> Jul 20 20:02:05 xd kernel: rtc_cmos 00:01: setting system clock to 2022-07-20T19:02:03 UTC (1658343723)
>>>>>>> Jul 20 20:02:05 xd kernel: rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram
>>>>>>> Jul 20 20:02:05 xd kernel: intel_pstate: Intel P-state driver initializing
>>>>>>> Jul 20 20:02:05 xd kernel: intel_pstate: HWP enabled
>>>>>>> Jul 20 20:02:05 xd kernel: ledtrig-cpu: registered to indicate activity on CPUs
>>>>>>> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 10
>>>>>>> Jul 20 20:02:05 xd kernel: Segment Routing with IPv6
>>>>>>> Jul 20 20:02:05 xd kernel: mip6: Mobile IPv6
>>>>>>> Jul 20 20:02:05 xd kernel: NET: Registered protocol family 17
>>>>>>> Jul 20 20:02:05 xd kernel: mpls_gso: MPLS GSO support
>>>>>>> Jul 20 20:02:05 xd kernel: microcode: sig=0x806c1, pf=0x80, revision=0x8a
>>>>>>> Jul 20 20:02:05 xd kernel: microcode: Microcode Update Driver: v2.2.
>>>>>>> Jul 20 20:02:05 xd kernel: resctrl: L2 allocation detected
>>>>>>> Jul 20 20:02:05 xd kernel: resctrl: L2DATA allocation detected
>>>>>>> Jul 20 20:02:05 xd kernel: resctrl: L2CODE allocation detected
>>>>>>> Jul 20 20:02:05 xd kernel: IPI shorthand broadcast: enabled
>>>>>>> Jul 20 20:02:05 xd kernel: sched_clock: Marking stable (836570439, 6379917)->(856451458, -13501102)
>>>>>>> Jul 20 20:02:05 xd kernel: registered taskstats version 1
>>>>>>> Jul 20 20:02:05 xd kernel: Loading compiled-in X.509 certificates
>>>>>>> Jul 20 20:02:05 xd kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
>>>>>>> Jul 20 20:02:05 xd kernel: Loaded X.509 cert 'Debian Secure Boot CA: 6ccece7e4c6c0d1f6149f3dd27dfcc5cbb419ea1'
>>>>>>> Jul 20 20:02:05 xd kernel: Loaded X.509 cert 'Debian Secure Boot Signer 2021 - linux: 4b6ef5abca669825178e052c84667ccbc0531f8c'
>>>>>>> Jul 20 20:02:05 xd kernel: zswap: loaded using pool lzo/zbud
>>>>>>> Jul 20 20:02:05 xd kernel: Key type ._fscrypt registered
>>>>>>> Jul 20 20:02:05 xd kernel: Key type .fscrypt registered
>>>>>>> Jul 20 20:02:05 xd kernel: Key type fscrypt-provisioning registered
>>>>>>> Jul 20 20:02:05 xd kernel: AppArmor: AppArmor sha1 policy hashing enabled
>>>>>>> Jul 20 20:02:05 xd kernel: Freeing unused kernel image (initmem) memory: 2424K
>>>>>>> Jul 20 20:02:05 xd kernel: Write protecting the kernel read-only data: 22528k
>>>>>>> Jul 20 20:02:05 xd kernel: Freeing unused kernel image (text/rodata gap) memory: 2040K
>>>>>>> Jul 20 20:02:05 xd kernel: Freeing unused kernel image (rodata/data gap) memory: 624K
>>>>>>> Jul 20 20:02:05 xd kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
>>>>>>> Jul 20 20:02:05 xd kernel: Run /init as init process
>>>>>>> Jul 20 20:02:05 xd kernel: with arguments:
>>>>>>> Jul 20 20:02:05 xd kernel: /init
>>>>>>> Jul 20 20:02:05 xd kernel: with environment:
>>>>>>> Jul 20 20:02:05 xd kernel: HOME=/
>>>>>>> Jul 20 20:02:05 xd kernel: TERM=linux
>>>>>>> Jul 20 20:02:05 xd kernel: BOOT_IMAGE=/vmlinuz-5.10.0-16-amd64
>>>>>>> Jul 20 20:02:05 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
>>>>>>> Jul 20 20:02:05 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
>>>>>>> Jul 20 20:02:05 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
>>>>>>> Jul 20 20:02:05 xd kernel: wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
>>>>>>> Jul 20 20:02:05 xd kernel: acpi PNP0C14:03: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
>>>>>>> Jul 20 20:02:05 xd kernel: acpi PNP0C14:04: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
>>>>>>> Jul 20 20:02:05 xd kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:21/PNP0C0D:00/input/input1
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Lid Switch [LID0]
>>>>>>> Jul 20 20:02:05 xd kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Sleep Button [SLPB]
>>>>>>> Jul 20 20:02:05 xd kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input3
>>>>>>> Jul 20 20:02:05 xd kernel: battery: ACPI: Battery Slot [BAT1] (battery present)
>>>>>>> Jul 20 20:02:05 xd kernel: hid: raw HID events driver (C) Jiri Kosina
>>>>>>> Jul 20 20:02:05 xd kernel: vmd 0000:00:0e.0: PCI host bridge to bus 10000:e0
>>>>>>> Jul 20 20:02:05 xd kernel: pci_bus 10000:e0: root bus resource [bus e0-ff]
>>>>>>> Jul 20 20:02:05 xd kernel: pci_bus 10000:e0: root bus resource [mem 0x50000000-0x51ffffff]
>>>>>>> Jul 20 20:02:05 xd kernel: pci_bus 10000:e0: root bus resource [mem 0x6015302000-0x60153fffff 64bit]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: [8086:a0d3] type 00 class 0x010601
>>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x10: [mem 0x00000000-0x00001fff]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x14: [mem 0x00000000-0x000000ff]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x18: [io 0x0000-0x0007]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x1c: [io 0x0000-0x0003]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x20: [io 0x0000-0x001f]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: reg 0x24: [mem 0x50000000-0x500007ff]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: PME# supported from D3hot
>>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: Adding to iommu group 4
>>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.0: [8086:09ab] type 00 class 0x088000
>>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.0: Adding to iommu group 4
>>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: [8086:a0bc] type 01 class 0x060400
>>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: PME# supported from D0 D3hot D3cold
>>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: PTM enabled (root), 4ns granularity
>>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: Adding to iommu group 4
>>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: Primary bus is hard wired to 0
>>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e1:00.0: [2646:500c] type 00 class 0x010802
>>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e1:00.0: reg 0x10: [mem 0x50100000-0x50103fff 64bit]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e1:00.0: Adding to iommu group 4
>>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: PCI bridge to [bus e1]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: bridge window [io 0x0000-0x0fff]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: bridge window [mem 0x50100000-0x501fffff]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: Primary bus is hard wired to 0
>>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: BAR 14: assigned [mem 0x50000000-0x500fffff]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 0: assigned [mem 0x50100000-0x50101fff]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: BAR 13: no space for [io size 0x1000]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: BAR 13: failed to assign [io size 0x1000]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 5: assigned [mem 0x50102000-0x501027ff]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 1: assigned [mem 0x50102800-0x501028ff]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 4: no space for [io size 0x0020]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 4: failed to assign [io size 0x0020]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 2: no space for [io size 0x0008]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 2: failed to assign [io size 0x0008]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 3: no space for [io size 0x0004]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:17.0: BAR 3: failed to assign [io size 0x0004]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e1:00.0: BAR 0: assigned [mem 0x50000000-0x50003fff 64bit]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: PCI bridge to [bus e1]
>>>>>>> Jul 20 20:02:05 xd kernel: pci 10000:e0:1c.4: bridge window [mem 0x50000000-0x500fffff]
>>>>>>> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: can't derive routing for PCI INT A
>>>>>>> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: PCI INT A: no GSI
>>>>>>> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: PME: Signaling with IRQ 144
>>>>>>> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: AER: enabled with IRQ 144
>>>>>>> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: DPC: enabled with IRQ 144
>>>>>>> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
>>>>>>> Jul 20 20:02:05 xd kernel: vmd 0000:00:0e.0: Bound to PCI domain 10000
>>>>>>> Jul 20 20:02:05 xd kernel: i801_smbus 0000:00:1f.4: SPD Write Disable is set
>>>>>>> Jul 20 20:02:05 xd kernel: i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
>>>>>>> Jul 20 20:02:05 xd kernel: i2c i2c-0: 2/2 memory slots populated (from DMI)
>>>>>>> Jul 20 20:02:05 xd kernel: i2c i2c-0: Successfully instantiated SPD at 0x50
>>>>>>> Jul 20 20:02:05 xd kernel: r8168: loading out-of-tree module taints kernel.
>>>>>>> Jul 20 20:02:05 xd kernel: r8168: module verification failed: signature and/or required key missing - tainting kernel
>>>>>>> Jul 20 20:02:05 xd kernel: r8168 Gigabit Ethernet driver 8.048.03-NAPI loaded
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: bus type USB registered
>>>>>>> Jul 20 20:02:05 xd kernel: usbcore: registered new interface driver usbfs
>>>>>>> Jul 20 20:02:05 xd kernel: usbcore: registered new interface driver hub
>>>>>>> Jul 20 20:02:05 xd kernel: usbcore: registered new device driver usb
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Power Button [PWRB]
>>>>>>> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
>>>>>>> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
>>>>>>> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000000009810
>>>>>>> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
>>>>>>> Jul 20 20:02:05 xd kernel: r8168: This product is covered by one or more of the following patents: US6,570,884, US6,115,776, and US6,327,625.
>>>>>>> Jul 20 20:02:05 xd kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
>>>>>>> Jul 20 20:02:05 xd kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
>>>>>>> Jul 20 20:02:05 xd kernel: usb usb1: Product: xHCI Host Controller
>>>>>>> Jul 20 20:02:05 xd kernel: usb usb1: Manufacturer: Linux 5.10.0-16-amd64 xhci-hcd
>>>>>>> Jul 20 20:02:05 xd kernel: usb usb1: SerialNumber: 0000:00:14.0
>>>>>>> Jul 20 20:02:05 xd kernel: hub 1-0:1.0: USB hub found
>>>>>>> Jul 20 20:02:05 xd kernel: hub 1-0:1.0: 12 ports detected
>>>>>>> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
>>>>>>> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
>>>>>>> Jul 20 20:02:05 xd kernel: xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
>>>>>>> Jul 20 20:02:05 xd kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
>>>>>>> Jul 20 20:02:05 xd kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
>>>>>>> Jul 20 20:02:05 xd kernel: usb usb2: Product: xHCI Host Controller
>>>>>>> Jul 20 20:02:05 xd kernel: usb usb2: Manufacturer: Linux 5.10.0-16-amd64 xhci-hcd
>>>>>>> Jul 20 20:02:05 xd kernel: usb usb2: SerialNumber: 0000:00:14.0
>>>>>>> Jul 20 20:02:05 xd kernel: hub 2-0:1.0: USB hub found
>>>>>>> Jul 20 20:02:05 xd kernel: hub 2-0:1.0: 4 ports detected
>>>>>>> Jul 20 20:02:05 xd kernel: r8168 Copyright (C) 2020 Realtek NIC software team <nicfae@realtek.com>
>>>>>>> This program comes with ABSOLUTELY NO WARRANTY; for details, please see <http://www.gnu.org/licenses/>.
>>>>>>> This is free software, and you are welcome to redistribute it under certain conditions; see <http://www.gnu.org/licenses/>.
>>>>>>> Jul 20 20:02:05 xd kernel: SCSI subsystem initialized
>>>>>>> Jul 20 20:02:05 xd kernel: intel-lpss 0000:00:15.0: enabling device (0004 -> 0006)
>>>>>>> Jul 20 20:02:05 xd kernel: idma64 idma64.0: Found Intel integrated DMA 64-bit
>>>>>>> Jul 20 20:02:05 xd kernel: r8168 0000:02:00.0 enp2s0: renamed from eth0
>>>>>>> Jul 20 20:02:05 xd kernel: nvme nvme0: pci function 10000:e1:00.0
>>>>>>> Jul 20 20:02:05 xd kernel: pcieport 10000:e0:1c.4: can't derive routing for PCI INT A
>>>>>>> Jul 20 20:02:05 xd kernel: nvme 10000:e1:00.0: PCI INT A: no GSI
>>>>>>> Jul 20 20:02:05 xd kernel: libata version 3.00 loaded.
>>>>>>> Jul 20 20:02:05 xd kernel: nvme nvme0: missing or invalid SUBNQN field.
>>>>>>> Jul 20 20:02:05 xd kernel: nvme nvme0: Shutdown timeout set to 10 seconds
>>>>>>> Jul 20 20:02:05 xd kernel: nvme nvme0: 8/0/0 default/read/poll queues
>>>>>>> Jul 20 20:02:05 xd kernel: nvme0n1: p1 p2 p3 p4 p5
>>>>>>> Jul 20 20:02:05 xd kernel: intel-lpss 0000:00:15.3: enabling device (0004 -> 0006)
>>>>>>> Jul 20 20:02:05 xd kernel: idma64 idma64.1: Found Intel integrated DMA 64-bit
>>>>>>> Jul 20 20:02:05 xd kernel: i2c_hid i2c-ELAN0515:01: supply vdd not found, using dummy regulator
>>>>>>> Jul 20 20:02:05 xd kernel: i2c_hid i2c-ELAN0515:01: supply vddl not found, using dummy regulator
>>>>>>> Jul 20 20:02:05 xd kernel: intel-lpss 0000:00:19.0: enabling device (0004 -> 0006)
>>>>>>> Jul 20 20:02:05 xd kernel: idma64 idma64.2: Found Intel integrated DMA 64-bit
>>>>>>> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: [drm] VT-d active for gfx access
>>>>>>> Jul 20 20:02:05 xd kernel: checking generic (4000000000 7f0000) vs hw (6014000000 1000000)
>>>>>>> Jul 20 20:02:05 xd kernel: checking generic (4000000000 7f0000) vs hw (4000000000 10000000)
>>>>>>> Jul 20 20:02:05 xd kernel: fb0: switching to inteldrmfb from EFI VGA
>>>>>>> Jul 20 20:02:05 xd kernel: Console: switching to colour dummy device 80x25
>>>>>>> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: vgaarb: deactivate vga console
>>>>>>> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
>>>>>>> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: firmware: direct-loading firmware i915/tgl_dmc_ver2_08.bin
>>>>>>> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/tgl_dmc_ver2_08.bin (v2.8)
>>>>>>> Jul 20 20:02:05 xd kernel: intel-lpss 0000:00:19.1: enabling device (0004 -> 0006)
>>>>>>> Jul 20 20:02:05 xd kernel: idma64 idma64.3: Found Intel integrated DMA 64-bit
>>>>>>> Jul 20 20:02:05 xd kernel: input: ELAN0515:01 04F3:3142 Mouse as /devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input4
>>>>>>> Jul 20 20:02:05 xd kernel: input: ELAN0515:01 04F3:3142 Touchpad as /devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input6
>>>>>>> Jul 20 20:02:05 xd kernel: hid-generic 0018:04F3:3142.0001: input,hidraw0: I2C HID v1.00 Mouse [ELAN0515:01 04F3:3142] on i2c-ELAN0515:01
>>>>>>> Jul 20 20:02:05 xd kernel: ahci 10000:e0:17.0: version 3.0
>>>>>>> Jul 20 20:02:05 xd kernel: ahci 10000:e0:17.0: can't derive routing for PCI INT A
>>>>>>> Jul 20 20:02:05 xd kernel: ahci 10000:e0:17.0: PCI INT A: no GSI
>>>>>>> Jul 20 20:02:05 xd kernel: ahci 10000:e0:17.0: AHCI 0001.0301 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
>>>>>>> Jul 20 20:02:05 xd kernel: ahci 10000:e0:17.0: flags: 64bit ncq sntf pm clo only pio slum part deso sadm sds
>>>>>>> Jul 20 20:02:05 xd kernel: scsi host0: ahci
>>>>>>> Jul 20 20:02:05 xd kernel: scsi host1: ahci
>>>>>>> Jul 20 20:02:05 xd kernel: ata1: SATA max UDMA/133 abar m2048@0x50102000 port 0x50102100 irq 158
>>>>>>> Jul 20 20:02:05 xd kernel: ata2: SATA max UDMA/133 abar m2048@0x50102000 port 0x50102180 irq 158
>>>>>>> Jul 20 20:02:05 xd kernel: usb 1-7: new full-speed USB device number 2 using xhci_hcd
>>>>>>> Jul 20 20:02:05 xd kernel: usb 1-7: New USB device found, idVendor=04f3, idProduct=0c4f, bcdDevice= 1.61
>>>>>>> Jul 20 20:02:05 xd kernel: usb 1-7: New USB device strings: Mfr=1, Product=2, SerialNumber=0
>>>>>>> Jul 20 20:02:05 xd kernel: usb 1-7: Product: ELAN:Fingerprint
>>>>>>> Jul 20 20:02:05 xd kernel: usb 1-7: Manufacturer: ELAN
>>>>>>> Jul 20 20:02:05 xd kernel: ata1: SATA link down (SStatus 0 SControl 300)
>>>>>>> Jul 20 20:02:05 xd kernel: ata2: SATA link down (SStatus 0 SControl 300)
>>>>>>> Jul 20 20:02:05 xd kernel: usb 1-8: new high-speed USB device number 3 using xhci_hcd
>>>>>>> Jul 20 20:02:05 xd kernel: usb 1-8: New USB device found, idVendor=0408, idProduct=a061, bcdDevice= 0.04
>>>>>>> Jul 20 20:02:05 xd kernel: usb 1-8: New USB device strings: Mfr=1, Product=2, SerialNumber=0
>>>>>>> Jul 20 20:02:05 xd kernel: usb 1-8: Product: HD User Facing
>>>>>>> Jul 20 20:02:05 xd kernel: usb 1-8: Manufacturer: SunplusIT Inc
>>>>>>> Jul 20 20:02:05 xd kernel: usb 1-10: new high-speed USB device number 4 using xhci_hcd
>>>>>>> Jul 20 20:02:05 xd kernel: usb 1-10: New USB device found, idVendor=04ca, idProduct=3802, bcdDevice= 1.00
>>>>>>> Jul 20 20:02:05 xd kernel: usb 1-10: New USB device strings: Mfr=5, Product=6, SerialNumber=7
>>>>>>> Jul 20 20:02:05 xd kernel: usb 1-10: Product: Wireless_Device
>>>>>>> Jul 20 20:02:05 xd kernel: usb 1-10: Manufacturer: MediaTek Inc.
>>>>>>> Jul 20 20:02:05 xd kernel: usb 1-10: SerialNumber: 000000000
>>>>>>> Jul 20 20:02:05 xd kernel: [drm] Initialized i915 1.6.0 20200917 for 0000:00:02.0 on minor 0
>>>>>>> Jul 20 20:02:05 xd kernel: [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Video Device [PEGP] (multi-head: yes rom: no post: no)
>>>>>>> Jul 20 20:02:05 xd kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/LNXVIDEO:00/input/input7
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
>>>>>>> Jul 20 20:02:05 xd kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input8
>>>>>>> Jul 20 20:02:05 xd kernel: fbcon: i915drmfb (fb0) is primary device
>>>>>>> Jul 20 20:02:05 xd kernel: Console: switching to colour frame buffer device 240x67
>>>>>>> Jul 20 20:02:05 xd kernel: i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
>>>>>>> Jul 20 20:02:05 xd kernel: PM: Image not found (code -22)
>>>>>>> Jul 20 20:02:05 xd kernel: EXT4-fs (nvme0n1p3): mounting ext3 file system using the ext4 subsystem
>>>>>>> Jul 20 20:02:05 xd kernel: EXT4-fs (nvme0n1p3): mounted filesystem with ordered data mode. Opts: (null)
>>>>>>> Jul 20 20:02:05 xd kernel: Not activating Mandatory Access Control as /sbin/tomoyo-init does not exist.
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Inserted module 'autofs4'
>>>>>>> Jul 20 20:02:05 xd systemd[1]: systemd 247.3-7 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=unified)
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Detected architecture x86-64.
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Set hostname to <xd>.
>>>>>>> Jul 20 20:02:05 xd systemd[1]: /lib/systemd/system/plymouth-start.service:16: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed.
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Queued start job for default target Graphical Interface.
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Created slice system-getty.slice.
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Created slice system-modprobe.slice.
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Created slice system-systemd\x2dfsck.slice.
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Created slice User and Session Slice.
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Started Forward Password Requests to Wall Directory Watch.
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Reached target User and Group Name Lookups.
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Reached target Remote File Systems.
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Reached target Slices.
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Listening on Device-mapper event daemon FIFOs.
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Listening on LVM2 poll daemon socket.
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Listening on Syslog Socket.
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Listening on fsck to fsckd communication Socket.
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Listening on initctl Compatibility Named Pipe.
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Listening on Journal Audit Socket.
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Listening on Journal Socket (/dev/log).
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Listening on Journal Socket.
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Listening on udev Control Socket.
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Listening on udev Kernel Socket.
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Mounting Huge Pages File System...
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Mounting POSIX Message Queue File System...
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Mounting Kernel Debug File System...
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Mounting Kernel Trace File System...
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Finished Availability of block devices.
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Set the console keyboard layout...
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Create list of static device nodes for the current kernel...
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Load Kernel Module configfs...
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Load Kernel Module drm...
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Load Kernel Module fuse...
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Journal Service...
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Load Kernel Modules...
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Remount Root and Kernel File Systems...
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Coldplug All udev Devices...
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Mounted Huge Pages File System.
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Mounted POSIX Message Queue File System.
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Mounted Kernel Debug File System.
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Mounted Kernel Trace File System.
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Finished Create list of static device nodes for the current kernel.
>>>>>>> Jul 20 20:02:05 xd systemd[1]: modprobe@configfs.service: Succeeded.
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Finished Load Kernel Module configfs.
>>>>>>> Jul 20 20:02:05 xd systemd[1]: modprobe@drm.service: Succeeded.
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Finished Load Kernel Module drm.
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Mounting Kernel Configuration File System...
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Mounted Kernel Configuration File System.
>>>>>>> Jul 20 20:02:05 xd kernel: EXT4-fs (nvme0n1p3): re-mounted. Opts: errors=remount-ro
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Finished Remount Root and Kernel File Systems.
>>>>>>> Jul 20 20:02:05 xd kernel: fuse: init (API version 7.32)
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped.
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Load/Save Random Seed...
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Create System Users...
>>>>>>> Jul 20 20:02:05 xd systemd[1]: modprobe@fuse.service: Succeeded.
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Finished Load Kernel Module fuse.
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Mounting FUSE Control File System...
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Mounted FUSE Control File System.
>>>>>>> Jul 20 20:02:05 xd kernel: lp: driver loaded but no devices found
>>>>>>> Jul 20 20:02:05 xd kernel: ppdev: user-space parallel port driver
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Finished Load/Save Random Seed.
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Condition check resulted in First Boot Complete being skipped.
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Finished Create System Users.
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Create Static Device Nodes in /dev...
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Finished Create Static Device Nodes in /dev.
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Starting Rule-based Manager for Device Events and Files...
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Finished Set the console keyboard layout.
>>>>>>> Jul 20 20:02:05 xd systemd[1]: Started Journal Service.
>>>>>>> Jul 20 20:02:05 xd kernel: nvidia: module license 'NVIDIA' taints kernel.
>>>>>>> Jul 20 20:02:05 xd kernel: Disabling lock debugging due to kernel taint
>>>>>>> Jul 20 20:02:05 xd kernel: nvidia-nvlink: Nvlink Core is being initialized, major device number 245
>>>>>>> Jul 20 20:02:05 xd kernel:
>>>>>>> Jul 20 20:02:05 xd kernel: nvidia 0000:01:00.0: enabling device (0006 -> 0007)
>>>>>>> Jul 20 20:02:05 xd kernel: NVRM: loading NVIDIA UNIX x86_64 Kernel Module 470.129.06 Thu May 12 22:52:02 UTC 2022
>>>>>>> Jul 20 20:02:05 xd kernel: input: Acer Wireless Radio Control as /devices/LNXSYSTM:00/10251229:00/input/input9
>>>>>>> Jul 20 20:02:05 xd kernel: input: Intel HID events as /devices/platform/INTC1051:00/input/input10
>>>>>>> Jul 20 20:02:05 xd kernel: intel-hid INTC1051:00: platform supports 5 button array
>>>>>>> Jul 20 20:02:05 xd kernel: input: Intel HID 5 button array as /devices/platform/INTC1051:00/input/input11
>>>>>>> Jul 20 20:02:05 xd kernel: intel_pmc_core INT33A1:00: initialized
>>>>>>> Jul 20 20:02:05 xd kernel: ACPI: AC Adapter [ACAD] (on-line)
>>>>>>> Jul 20 20:02:05 xd kernel: nvidia-modeset: Loading NVIDIA Kernel Mode Setting Driver for UNIX platforms 470.129.06 Thu May 12 22:42:45 UTC 2022
>>>>>>> Jul 20 20:02:05 xd kernel: mc: Linux media interface: v0.10
>>>>>>> Jul 20 20:02:05 xd kernel: mei_me 0000:00:16.0: enabling device (0000 -> 0002)
>>>>>>> Jul 20 20:02:05 xd kernel: ee1004 0-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
>>>>>>> Jul 20 20:02:05 xd kernel: [drm] [nvidia-drm] [GPU ID 0x00000100] Loading driver
>>>>>>> Jul 20 20:02:05 xd kernel: [drm] Initialized nvidia-drm 0.0.0 20160202 for 0000:01:00.0 on minor 1
>>>>>>> Jul 20 20:02:05 xd kernel: videodev: Linux video capture interface: v2.00
>>>>>>> Jul 20 20:02:05 xd kernel: iTCO_vendor_support: vendor-support=0
>>>>>>> Jul 20 20:02:05 xd kernel: iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
>>>>>>> Jul 20 20:02:05 xd kernel: iTCO_wdt: Found a Intel PCH TCO device (Version=6, TCOBASE=0x0400)
>>>>>>> Jul 20 20:02:05 xd kernel: iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
>>>>>>> Jul 20 20:02:05 xd kernel: EXT4-fs (nvme0n1p2): mounting ext2 file system using the ext4 subsystem
>>>>>>> Jul 20 20:02:05 xd kernel: EXT4-fs (nvme0n1p2): mounted filesystem without journal. Opts: (null)
>>>>>>> Jul 20 20:02:05 xd kernel: ext2 filesystem being mounted at /boot supports timestamps until 2038 (0x7fffffff)
>>>>>>> Jul 20 20:02:05 xd kernel: uvcvideo: Found UVC 1.00 device HD User Facing (0408:a061)
>>>>>>> Jul 20 20:02:05 xd kernel: Adding 31182844k swap on /dev/nvme0n1p4. Priority:-2 extents:1 across:31182844k SSFS
>>>>>>> Jul 20 20:02:05 xd kernel: input: HD User Facing: HD User Facing as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/input/input12
>>>>>>> Jul 20 20:02:05 xd kernel: input: PC Speaker as /devices/platform/pcspkr/input/input13
>>>>>>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=401 comm="apparmor_parser"
>>>>>>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-oopslash" pid=402 comm="apparmor_parser"
>>>>>>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=405 comm="apparmor_parser"
>>>>>>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=405 comm="apparmor_parser"
>>>>>>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=403 comm="apparmor_parser"
>>>>>>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=403 comm="apparmor_parser"
>>>>>>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=403 comm="apparmor_parser"
>>>>>>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.836:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cups-browsed" pid=407 comm="apparmor_parser"
>>>>>>> Jul 20 20:02:05 xd kernel: audit: type=1400 audit(1658343725.840:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-senddoc" pid=409 comm="apparmor_parser"
>>>>>>> Jul 20 20:02:05 xd kernel: usbcore: registered new interface driver uvcvideo
>>>>>>> Jul 20 20:02:05 xd kernel: USB Video Class driver (1.1.1)
>>>>>>> Jul 20 20:02:05 xd kernel: pstore: Using crash dump compression: deflate
>>>>>>> Jul 20 20:02:05 xd kernel: input: ELAN0515:01 04F3:3142 Mouse as /devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input14
>>>>>>> Jul 20 20:02:05 xd kernel: input: ELAN0515:01 04F3:3142 Touchpad as /devices/pci0000:00/0000:00:15.3/i2c_designware.1/i2c-2/i2c-ELAN0515:01/0018:04F3:3142.0001/input/input16
>>>>>>> Jul 20 20:02:05 xd kernel: hid-multitouch 0018:04F3:3142.0001: input,hidraw0: I2C HID v1.00 Mouse [ELAN0515:01 04F3:3142] on i2c-ELAN0515:01
>>>>>>> Jul 20 20:02:05 xd kernel: pstore: Registered efi as persistent store backend
>>>>>>> Jul 20 20:02:05 xd kernel: acer_wmi: Acer Laptop ACPI-WMI Extras
>>>>>>> Jul 20 20:02:05 xd kernel: acer_wmi: Function bitmap for Communication Button: 0x801
>>>>>>> Jul 20 20:02:05 xd kernel: input: Acer WMI hotkeys as /devices/virtual/input/input17
>>>>>>> Jul 20 20:02:05 xd kernel: snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040100
>>>>>>> Jul 20 20:02:05 xd kernel: snd_hda_intel 0000:00:1f.3: Digital mics found on Skylake+ platform, using SOF driver
>>>>>>> Jul 20 20:02:05 xd kernel: cryptd: max_cpu_qlen set to 1000
>>>>>>> Jul 20 20:02:06 xd kernel: AVX2 version of gcm_enc/dec engaged.
>>>>>>> Jul 20 20:02:06 xd kernel: AES CTR mode by8 optimization enabled
>>>>>>> Jul 20 20:02:06 xd kernel: resource sanity check: requesting [mem 0xfedc0000-0xfedcdfff], which spans more than pnp 00:04 [mem 0xfedc0000-0xfedc7fff]
>>>>>>> Jul 20 20:02:06 xd kernel: caller tgl_uncore_imc_freerunning_init_box+0xbb/0x100 [intel_uncore] mapping multiple BARs
>>>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040100
>>>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: Digital mics found on Skylake+ platform, using SOF driver
>>>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: enabling device (0000 -> 0002)
>>>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if 0x040100
>>>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
>>>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: use msi interrupt mode
>>>>>>> Jul 20 20:02:06 xd kernel: ACPI Warning: \_SB.PC00.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20200925/nsarguments-61)
>>>>>>> Jul 20 20:02:06 xd kernel: enp2s0: 0xffffbd82000e9000, 08:8f:c3:4f:86:c5, IRQ 145
>>>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: hda codecs found, mask 5
>>>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: using HDA machine driver skl_hda_dsp_generic now
>>>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: DMICs detected in NHLT tables: 2
>>>>>>> Jul 20 20:02:06 xd kernel: alg: No test for fips(ansi_cprng) (fips_ansi_cprng)
>>>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: firmware: failed to load intel/sof/sof-tgl.ri (-2)
>>>>>>> Jul 20 20:02:06 xd kernel: firmware_class: See https://wiki.debian.org/Firmware for information about missing firmware
>>>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: Direct firmware load for intel/sof/sof-tgl.ri failed with error -2
>>>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: error: request firmware intel/sof/sof-tgl.ri failed err: -2
>>>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: error: failed to load DSP firmware -2
>>>>>>> Jul 20 20:02:06 xd kernel: sof-audio-pci 0000:00:1f.3: error: sof_probe_work failed err: -2
>>>>>>> Jul 20 20:02:06 xd kernel: Bluetooth: Core ver 2.22
>>>>>>> Jul 20 20:02:06 xd kernel: NET: Registered protocol family 31
>>>>>>> Jul 20 20:02:06 xd kernel: Bluetooth: HCI device and connection manager initialized
>>>>>>> Jul 20 20:02:06 xd kernel: Bluetooth: HCI socket layer initialized
>>>>>>> Jul 20 20:02:06 xd kernel: Bluetooth: L2CAP socket layer initialized
>>>>>>> Jul 20 20:02:06 xd kernel: Bluetooth: SCO socket layer initialized
>>>>>>> Jul 20 20:02:06 xd kernel: usbcore: registered new interface driver btusb
>>>>>>> Jul 20 20:02:07 xd kernel: intel_rapl_msr: PL4 support detected.
>>>>>>> Jul 20 20:02:07 xd kernel: intel_rapl_common: Found RAPL domain package
>>>>>>> Jul 20 20:02:07 xd kernel: intel_rapl_common: Found RAPL domain core
>>>>>>> Jul 20 20:02:07 xd kernel: intel_rapl_common: Found RAPL domain uncore
>>>>>>> Jul 20 20:02:07 xd kernel: mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_component_ops [i915])
>>>>>>> Jul 20 20:02:07 xd kernel: Bluetooth: BNEP (Ethernet Emulation) ver 1.3
>>>>>>> Jul 20 20:02:07 xd kernel: Bluetooth: BNEP filters: protocol multicast
>>>>>>> Jul 20 20:02:07 xd kernel: Bluetooth: BNEP socket layer initialized
>>>>>>> Jul 20 20:02:09 xd kernel: r8168: enp2s0: link up
>>>>>>> Jul 20 20:02:09 xd kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
>>>>>>> Jul 20 20:02:09 xd kernel: rfkill: input handler disabled
>>>>>>> Jul 20 20:02:17 xd kernel: rfkill: input handler enabled
>>>>>>> Jul 20 20:02:18 xd kernel: rfkill: input handler disabled
>>>>>>>
>>>>>>
>>>>
>>>

1 2  View All