AMDESE / AMDSEV

AMD Secure Encrypted Virtualization
272 stars 84 forks source link

smal buffer error #62

Open churkanerusskaya opened 3 years ago

churkanerusskaya commented 3 years ago

Hello

En error occurs when trying to run sev/sev-es enabled VM with godh cert: sev launch start: LAUNCH START ret=1 fw_error=4 'Buffer too small'

According to the api doc, this means something like incorrect buffer length, but no further explanation of what exactly this means or how to fix it.

box: 7002/00.24.0A, 5.10.0-rc1-sev-es

also cloud please provide some examples of how to properly generate oca and sign pek?

Thanks

tlendacky commented 3 years ago

Qemu expects the guest owner DH cert to be base64 encoded, is that what you're passing in?

Some of the other folks might be able to answer your last question better than me.

churkanerusskaya commented 3 years ago

Yes, I used godh generated by the sev-tool, after that I converted it to base64 using base64 console tool and run vm:

[root@s1 certs]# /root/qemu/build/qemu-system-x86_64 -enable-kvm -cpu EPYC -machine q35 -smp 4,maxcpus=64 -m 4096M,slots=5,maxmem=30G -no-reboot -drive if=pflash,format=raw,unit=0,file=/usr/local/share/qemu/OVMF_CODE.fd,readonly -drive if=pflash,format=raw,unit=1,file=/root/guest5/ubuntu-20.04.1-desktop-amd64.fd -netdev user,id=vmnic -device e1000,netdev=vmnic,romfile= -drive file=/root/guest5/ubuntu-20.04.1-desktop-amd64.qcow2,if=none,id=disk0,format=qcow2 -device virtio-scsi-pci,id=scsi0,disable-legacy=on,iommu_platform=true -device scsi-hd,drive=disk0 -object sev-guest,id=sev0,dh-cert-file=/tmp/2.cert,policy=0x1,cbitpos=47,reduced-phys-bits=1 -machine memory-encryption=sev0,vmport=off -nographic -vnc :1 --qmp tcp:localhost:4444,server,nowait -S qemu-system-x86_64: sev_launch_start: LAUNCH_START ret=1 fw_error=4 'Buffer too small' qemu-system-x86_64: sev_guest_init: failed to create encryption context qemu-system-x86_64: failed to initialize kvm: Operation not permitted [root@s1 certs]#

churkanerusskaya commented 3 years ago

Here is the base64 if it matters:

[root@s1 certs]# cat /tmp/2.cert AQAAAAAAAAADEAAAAwAAAAIAAACJWd82h9gqqn9xgMzeZfln1wsPR2f2h0lvbLaxHA3+DY4e9QMe kjqPafwrvppu6XsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAr0ElOXZu9VY7RDG8GsCcA9dr8AHdt 1E7PhUcy1fe5o2UofKrE7iu2aDVAZaKWKboAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAhAAAAIAAACUAXATL8jlALKsXoUuew/zj9hJuTZOQf/fRGdnOmgJ QpB3nejVWmJID4qnRKXO3SoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABef2ckaPw9+TSz7ZlhKY4N +zW/vn1+c4bpzbhYUpXsFgpya9MONkqPxoPNHcKaRjcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=

lilienbm-zz commented 3 years ago

This is an SEV cert buffer. Were you expecting this to be the session buffer? I'm wondering if you've got the params swapped when you're calling LaunchStart. Can you please let us know which firmware version and Platform (Naples/Rome) you are using

On Mon, Jan 4, 2021 at 12:16 PM churkanerusskaya notifications@github.com wrote:

Here is the base64 if it matters:

[root@s1 certs]# cat /tmp/2.cert

AQAAAAAAAAADEAAAAwAAAAIAAACJWd82h9gqqn9xgMzeZfln1wsPR2f2h0lvbLaxHA3+DY4e9QMe

kjqPafwrvppu6XsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAr0ElOXZu9VY7RDG8GsCcA9dr8AHdt

1E7PhUcy1fe5o2UofKrE7iu2aDVAZaKWKboAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA

AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA

AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA

AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA

AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA

AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA

AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA

AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA

AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA

AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA

AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA

AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA

AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA

AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA

AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA

AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA

AAAAAAAAAAAAAAAAAAAAAAAAAhAAAAIAAACUAXATL8jlALKsXoUuew/zj9hJuTZOQf/fRGdnOmgJ

QpB3nejVWmJID4qnRKXO3SoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABef2ckaPw9+TSz7ZlhKY4N

+zW/vn1+c4bpzbhYUpXsFgpya9MONkqPxoPNHcKaRjcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA

AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA

AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA

AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA

AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA

AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA

AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA

AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA

AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA

AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA

AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA

AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA

AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA

AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA

AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA

AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/AMDESE/AMDSEV/issues/62#issuecomment-754132253, or unsubscribe https://github.com/notifications/unsubscribe-auth/AGKHWBL6RMICABFL5VNSLPTSYIAV7ANCNFSM4VPX3VXA .

tlendacky commented 3 years ago

Please also supply the Qemu command line you are using.

codomania commented 3 years ago

You also need to provide a session blob. I believe FW is complaining about invalid length because you are missing the blob. Please see the firmware specification (LAUNCH_START section). If dh-cert is provided then you must provide a valid session blob to go with.

churkanerusskaya commented 3 years ago

I tried several versions of qemu as well as two firmware versions and each time with the same result.

qemu: QEMU emulator version 5.1.50 - sev-es tree QEMU emulator version 4.2.91 - sev-snp-devel tree QEMU emulator version 5.2.50 - from the offical qemu repo, "staging" tree

Firmware: 00.24.04 00.24.0A

CPU: AMD EPYC 7302P 16-Core Processor

Also, a similar buffer error is observed when trying to run launch secret in qmp.

Here is the dmesg from my last boot (firmware 00.24.04):

[ 0.000000] Linux version 5.10.0-rc1-sev-es (root@s1) (gcc (GCC) 8.3.1 20191121 (Red Hat 8.3.1-5), GNU ld version 2.30-79.el8) #1 SMP Tue Dec 8 18:33:31 UTC 2020 [ 0.000000] Command line: BOOT_IMAGE=(hd0,gpt2)/vmlinuz-5.10.0-rc1-sev-es root=UUID=320755d8-6156-419f-9812-f24b8ccb3043 ro crashkernel=auto net.ifnames=1 [ 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: Enabled xstate features 0x7, context size is 832 bytes, using 'compacted' format. [ 0.000000] BIOS-provided physical RAM map: [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable [ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000005f42dfff] usable [ 0.000000] BIOS-e820: [mem 0x000000005f42e000-0x000000005f42efff] reserved [ 0.000000] BIOS-e820: [mem 0x000000005f42f000-0x000000005f538fff] usable [ 0.000000] BIOS-e820: [mem 0x000000005f539000-0x000000005f53bfff] reserved [ 0.000000] BIOS-e820: [mem 0x000000005f53c000-0x000000006a0acfff] usable [ 0.000000] BIOS-e820: [mem 0x000000006a0ad000-0x000000006a0adfff] reserved [ 0.000000] BIOS-e820: [mem 0x000000006a0ae000-0x000000006a0d7fff] usable [ 0.000000] BIOS-e820: [mem 0x000000006a0d8000-0x000000006a0d8fff] reserved [ 0.000000] BIOS-e820: [mem 0x000000006a0d9000-0x000000006a0ddfff] usable [ 0.000000] BIOS-e820: [mem 0x000000006a0de000-0x000000006a0e7fff] reserved [ 0.000000] BIOS-e820: [mem 0x000000006a0e8000-0x000000006a4f2fff] usable [ 0.000000] BIOS-e820: [mem 0x000000006a4f3000-0x000000006a4f5fff] reserved [ 0.000000] BIOS-e820: [mem 0x000000006a4f6000-0x000000006a854fff] usable [ 0.000000] BIOS-e820: [mem 0x000000006a855000-0x000000006a856fff] reserved [ 0.000000] BIOS-e820: [mem 0x000000006a857000-0x000000006a93efff] usable [ 0.000000] BIOS-e820: [mem 0x000000006a93f000-0x000000006a93ffff] reserved [ 0.000000] BIOS-e820: [mem 0x000000006a940000-0x000000006a990fff] usable [ 0.000000] BIOS-e820: [mem 0x000000006a991000-0x000000006a991fff] reserved [ 0.000000] BIOS-e820: [mem 0x000000006a992000-0x000000006bea2fff] usable [ 0.000000] BIOS-e820: [mem 0x000000006bea3000-0x000000006d4cefff] reserved [ 0.000000] BIOS-e820: [mem 0x000000006d4cf000-0x000000006d4ddfff] usable [ 0.000000] BIOS-e820: [mem 0x000000006d4de000-0x000000006d4defff] reserved [ 0.000000] BIOS-e820: [mem 0x000000006d4df000-0x000000006f95afff] usable [ 0.000000] BIOS-e820: [mem 0x000000006f95b000-0x000000006fa5bfff] reserved [ 0.000000] BIOS-e820: [mem 0x000000006fa5c000-0x00000000776ccfff] usable [ 0.000000] BIOS-e820: [mem 0x00000000776cd000-0x00000000776cdfff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000776ce000-0x0000000077e5bfff] usable [ 0.000000] BIOS-e820: [mem 0x0000000077e5c000-0x0000000077e7bfff] ACPI NVS [ 0.000000] BIOS-e820: [mem 0x0000000077e7c000-0x0000000077eabfff] ACPI data [ 0.000000] BIOS-e820: [mem 0x0000000077eac000-0x0000000077eedfff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000077eee000-0x0000000077eeefff] usable [ 0.000000] BIOS-e820: [mem 0x0000000077eef000-0x000000008fffffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000aa180000-0x00000000aa18ffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000c5180000-0x00000000c518ffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000e0300000-0x00000000e030ffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fd180000-0x00000000fd18ffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fed80000-0x00000000fed80fff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000087fefffff] usable [ 0.000000] BIOS-e820: [mem 0x000000087ff00000-0x000000087fffffff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000880000000-0x000000107f2fffff] usable [ 0.000000] BIOS-e820: [mem 0x000000107f300000-0x00000010903fffff] reserved [ 0.000000] BIOS-e820: [mem 0x0000020ba0000000-0x0000020bb03fffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000406c0000000-0x00000406d03fffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000601e0000000-0x00000601f03fffff] reserved [ 0.000000] NX (Execute Disable) protection: active [ 0.000000] e820: update [mem 0x76442018-0x76482857] usable ==> usable [ 0.000000] e820: update [mem 0x76442018-0x76482857] usable ==> usable [ 0.000000] e820: update [mem 0x76401018-0x76441857] usable ==> usable [ 0.000000] e820: update [mem 0x76401018-0x76441857] usable ==> usable [ 0.000000] e820: update [mem 0x763c0018-0x76400857] usable ==> usable [ 0.000000] e820: update [mem 0x763c0018-0x76400857] usable ==> usable [ 0.000000] e820: update [mem 0x7637f018-0x763bf857] usable ==> usable [ 0.000000] e820: update [mem 0x7637f018-0x763bf857] usable ==> usable [ 0.000000] e820: update [mem 0x76376018-0x7637e057] usable ==> usable [ 0.000000] e820: update [mem 0x76376018-0x7637e057] usable ==> usable [ 0.000000] e820: update [mem 0x7636b018-0x76375c57] usable ==> usable [ 0.000000] e820: update [mem 0x7636b018-0x76375c57] usable ==> usable [ 0.000000] e820: update [mem 0x76365018-0x7636a457] usable ==> usable [ 0.000000] e820: update [mem 0x76365018-0x7636a457] usable ==> usable [ 0.000000] extended physical RAM map: [ 0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000009ffff] usable [ 0.000000] reserve setup_data: [mem 0x00000000000f0000-0x00000000000fffff] reserved [ 0.000000] reserve setup_data: [mem 0x0000000000100000-0x000000005f42dfff] usable [ 0.000000] reserve setup_data: [mem 0x000000005f42e000-0x000000005f42efff] reserved [ 0.000000] reserve setup_data: [mem 0x000000005f42f000-0x000000005f538fff] usable [ 0.000000] reserve setup_data: [mem 0x000000005f539000-0x000000005f53bfff] reserved [ 0.000000] reserve setup_data: [mem 0x000000005f53c000-0x000000006a0acfff] usable [ 0.000000] reserve setup_data: [mem 0x000000006a0ad000-0x000000006a0adfff] reserved [ 0.000000] reserve setup_data: [mem 0x000000006a0ae000-0x000000006a0d7fff] usable [ 0.000000] reserve setup_data: [mem 0x000000006a0d8000-0x000000006a0d8fff] reserved [ 0.000000] reserve setup_data: [mem 0x000000006a0d9000-0x000000006a0ddfff] usable [ 0.000000] reserve setup_data: [mem 0x000000006a0de000-0x000000006a0e7fff] reserved [ 0.000000] reserve setup_data: [mem 0x000000006a0e8000-0x000000006a4f2fff] usable [ 0.000000] reserve setup_data: [mem 0x000000006a4f3000-0x000000006a4f5fff] reserved [ 0.000000] reserve setup_data: [mem 0x000000006a4f6000-0x000000006a854fff] usable [ 0.000000] reserve setup_data: [mem 0x000000006a855000-0x000000006a856fff] reserved [ 0.000000] reserve setup_data: [mem 0x000000006a857000-0x000000006a93efff] usable [ 0.000000] reserve setup_data: [mem 0x000000006a93f000-0x000000006a93ffff] reserved [ 0.000000] reserve setup_data: [mem 0x000000006a940000-0x000000006a990fff] usable [ 0.000000] reserve setup_data: [mem 0x000000006a991000-0x000000006a991fff] reserved [ 0.000000] reserve setup_data: [mem 0x000000006a992000-0x000000006bea2fff] usable [ 0.000000] reserve setup_data: [mem 0x000000006bea3000-0x000000006d4cefff] reserved [ 0.000000] reserve setup_data: [mem 0x000000006d4cf000-0x000000006d4ddfff] usable [ 0.000000] reserve setup_data: [mem 0x000000006d4de000-0x000000006d4defff] reserved [ 0.000000] reserve setup_data: [mem 0x000000006d4df000-0x000000006f95afff] usable [ 0.000000] reserve setup_data: [mem 0x000000006f95b000-0x000000006fa5bfff] reserved [ 0.000000] reserve setup_data: [mem 0x000000006fa5c000-0x0000000076365017] usable [ 0.000000] reserve setup_data: [mem 0x0000000076365018-0x000000007636a457] usable [ 0.000000] reserve setup_data: [mem 0x000000007636a458-0x000000007636b017] usable [ 0.000000] reserve setup_data: [mem 0x000000007636b018-0x0000000076375c57] usable [ 0.000000] reserve setup_data: [mem 0x0000000076375c58-0x0000000076376017] usable [ 0.000000] reserve setup_data: [mem 0x0000000076376018-0x000000007637e057] usable [ 0.000000] reserve setup_data: [mem 0x000000007637e058-0x000000007637f017] usable [ 0.000000] reserve setup_data: [mem 0x000000007637f018-0x00000000763bf857] usable [ 0.000000] reserve setup_data: [mem 0x00000000763bf858-0x00000000763c0017] usable [ 0.000000] reserve setup_data: [mem 0x00000000763c0018-0x0000000076400857] usable [ 0.000000] reserve setup_data: [mem 0x0000000076400858-0x0000000076401017] usable [ 0.000000] reserve setup_data: [mem 0x0000000076401018-0x0000000076441857] usable [ 0.000000] reserve setup_data: [mem 0x0000000076441858-0x0000000076442017] usable [ 0.000000] reserve setup_data: [mem 0x0000000076442018-0x0000000076482857] usable [ 0.000000] reserve setup_data: [mem 0x0000000076482858-0x00000000776ccfff] usable [ 0.000000] reserve setup_data: [mem 0x00000000776cd000-0x00000000776cdfff] reserved [ 0.000000] reserve setup_data: [mem 0x00000000776ce000-0x0000000077e5bfff] usable [ 0.000000] reserve setup_data: [mem 0x0000000077e5c000-0x0000000077e7bfff] ACPI NVS [ 0.000000] reserve setup_data: [mem 0x0000000077e7c000-0x0000000077eabfff] ACPI data [ 0.000000] reserve setup_data: [mem 0x0000000077eac000-0x0000000077eedfff] reserved [ 0.000000] reserve setup_data: [mem 0x0000000077eee000-0x0000000077eeefff] usable [ 0.000000] reserve setup_data: [mem 0x0000000077eef000-0x000000008fffffff] reserved [ 0.000000] reserve setup_data: [mem 0x00000000aa180000-0x00000000aa18ffff] reserved [ 0.000000] reserve setup_data: [mem 0x00000000c5180000-0x00000000c518ffff] reserved [ 0.000000] reserve setup_data: [mem 0x00000000e0300000-0x00000000e030ffff] reserved [ 0.000000] reserve setup_data: [mem 0x00000000fd180000-0x00000000fd18ffff] reserved [ 0.000000] reserve setup_data: [mem 0x00000000fed80000-0x00000000fed80fff] reserved [ 0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000087fefffff] usable [ 0.000000] reserve setup_data: [mem 0x000000087ff00000-0x000000087fffffff] reserved [ 0.000000] reserve setup_data: [mem 0x0000000880000000-0x000000107f2fffff] usable [ 0.000000] reserve setup_data: [mem 0x000000107f300000-0x00000010903fffff] reserved [ 0.000000] reserve setup_data: [mem 0x0000020ba0000000-0x0000020bb03fffff] reserved [ 0.000000] reserve setup_data: [mem 0x00000406c0000000-0x00000406d03fffff] reserved [ 0.000000] reserve setup_data: [mem 0x00000601e0000000-0x00000601f03fffff] reserved [ 0.000000] efi: EFI v2.60 by HPE [ 0.000000] efi: SMBIOS=0x6a991000 SMBIOS 3.0=0x6a93f000 ACPI=0x77eab000 ACPI 2.0=0x77eab014 TPMFinalLog=0x77e70000 MEMATTR=0x5f42c018 MOKvar=0x5f42e000 RNG=0x6beaf798 TPMEventLog=0x76484018 [ 0.000000] efi: seeding entropy pool [ 0.000000] SMBIOS 3.2.1 present. [ 0.000000] DMI: HPE ProLiant DL325 Gen10/ProLiant DL325 Gen10, BIOS A41 07/17/2020 [ 0.000000] tsc: Fast TSC calibration using PIT [ 0.000000] tsc: Detected 2994.406 MHz processor [ 0.000017] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved [ 0.000019] e820: remove [mem 0x000a0000-0x000fffff] usable [ 0.000031] last_pfn = 0x107f300 max_arch_pfn = 0x400000000 [ 0.000036] MTRR default type: uncachable [ 0.000037] MTRR fixed ranges enabled: [ 0.000038] 00000-9FFFF write-back [ 0.000039] A0000-FFFFF uncachable [ 0.000039] MTRR variable ranges enabled: [ 0.000040] 0 base 000000000000 mask FFFF80000000 write-back [ 0.000041] 1 base 0000C8000000 mask FFFFFC000000 write-protect [ 0.000042] 2 base 000078000000 mask FFFFF8000000 uncachable [ 0.000043] 3 disabled [ 0.000043] 4 disabled [ 0.000043] 5 disabled [ 0.000044] 6 disabled [ 0.000044] 7 disabled [ 0.000045] TOM2: 0000001080000000 aka 67584M [ 0.001128] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT [ 0.001383] last_pfn = 0x77eef max_arch_pfn = 0x400000000 [ 0.011821] efi: Failed to lookup EFI memory descriptor for 0x000000005f42e000 [ 0.011831] kexec: Reserving the low 1M of memory for crashkernel [ 0.011835] Using GB pages for direct mapping [ 0.014922] Secure boot disabled [ 0.014923] RAMDISK: [mem 0x388c1000-0x3c488fff] [ 0.014931] ACPI: Early table checksum verification disabled [ 0.014935] ACPI: RSDP 0x0000000077EAB014 000024 (v02 HPE ) [ 0.014940] ACPI: XSDT 0x0000000077E94188 000104 (v01 HPE Server 00000001 01000013) [ 0.014949] ACPI: FACP 0x0000000077E9A000 00010C (v06 HPE Server 00000001 1590 00000001) [ 0.014958] ACPI: DSDT 0x0000000077E8E000 002B0D (v02 HPE Server 00000002 HPE 00020000) [ 0.014963] ACPI: FACS 0x0000000077E6A000 000040 [ 0.014968] ACPI: UEFI 0x0000000077E78000 000042 (v01 HPE Server 00000002 01000013) [ 0.014973] ACPI: SSDT 0x0000000077EA9000 0003E3 (v02 HPE Tpm2Tabl 00001000 INTL 20140828) [ 0.014978] ACPI: TPM2 0x0000000077EA8000 000034 (v03 HPE Server 00000002 01000013) [ 0.014983] ACPI: IVRS 0x0000000077EA7000 0001F0 (v02 HPE Server 00000001 AMD 00000000) [ 0.014988] ACPI: SSDT 0x0000000077EA6000 000264 (v01 HPE AmdTable 00000001 AMD 00000001) [ 0.014993] ACPI: SRAT 0x0000000077EA5000 0002A8 (v03 HPE Server 00000001 AMD 00000001) [ 0.014998] ACPI: SLIT 0x0000000077EA4000 00002D (v01 HPE Server 00000001 AMD 00000001) [ 0.015003] ACPI: CRAT 0x0000000077EA2000 001ED0 (v01 HPE Server 00000001 AMD 00000001) [ 0.015008] ACPI: CDIT 0x0000000077EA1000 000029 (v01 HPE Server 00000001 AMD 00000001) [ 0.015013] ACPI: HEST 0x0000000077EA0000 0000E8 (v01 HPE Server 00000001 1590 00000001) [ 0.015018] ACPI: BERT 0x0000000077E9F000 000030 (v01 HPE Server 00000001 1590 00000001) [ 0.015023] ACPI: ERST 0x0000000077E9E000 000250 (v01 HPE Server 00000001 1590 00000001) [ 0.015028] ACPI: EINJ 0x0000000077E9D000 000150 (v01 HPE Server 00000001 1590 00000001) [ 0.015033] ACPI: FPDT 0x0000000077E9C000 000034 (v01 HPE Server 00000002 01000013) [ 0.015037] ACPI: BGRT 0x0000000077E9B000 000038 (v01 HPE Server 00000002 1590 01000013) [ 0.015042] ACPI: HPET 0x0000000077E99000 000038 (v01 HPE Server 00000001 1590 00000001) [ 0.015047] ACPI: APIC 0x0000000077E98000 00023C (v03 HPE Server 00000001 1590 00000001) [ 0.015052] ACPI: MCFG 0x0000000077E97000 00003C (v01 HPE Server 00000001 1590 00000001) [ 0.015057] ACPI: SPMI 0x0000000077E96000 000041 (v05 HPE Server 00000001 1590 00000001) [ 0.015062] ACPI: RASF 0x0000000077E95000 000030 (v01 HPE Server 00000001 1590 00000001) [ 0.015067] ACPI: SPCR 0x0000000077EAA000 000050 (v02 HPE Server 00000001 1590 00000001) [ 0.015072] ACPI: MSCT 0x0000000077E93000 00004E (v02 HPE Server 00000001 1590 00000001) [ 0.015077] ACPI: WSMT 0x0000000077E92000 000028 (v01 HPE Server 00000001 1590 00000001) [ 0.015082] ACPI: PCCT 0x0000000077E91000 000030 (v01 HPE Server 00000001 1590 00000001) [ 0.015087] ACPI: SSDT 0x0000000077E8A000 00374A (v02 HPE PCISSDT 00000002 HPE 00020000) [ 0.015092] ACPI: SSDT 0x0000000077E89000 0001C4 (v02 HPE TIMESSDT 00000002 HPE 00020000) [ 0.015097] ACPI: SSDT 0x0000000077E88000 0002F2 (v01 HPE pmab 00000001 INTL 20140828) [ 0.015110] ACPI: Local APIC address 0xfee00000 [ 0.015159] SRAT: PXM 0 -> APIC 0x00 -> Node 0 [ 0.015160] SRAT: PXM 0 -> APIC 0x01 -> Node 0 [ 0.015161] SRAT: PXM 0 -> APIC 0x02 -> Node 0 [ 0.015161] SRAT: PXM 0 -> APIC 0x03 -> Node 0 [ 0.015162] SRAT: PXM 0 -> APIC 0x08 -> Node 0 [ 0.015163] SRAT: PXM 0 -> APIC 0x09 -> Node 0 [ 0.015163] SRAT: PXM 0 -> APIC 0x0a -> Node 0 [ 0.015164] SRAT: PXM 0 -> APIC 0x0b -> Node 0 [ 0.015165] SRAT: PXM 0 -> APIC 0x10 -> Node 0 [ 0.015165] SRAT: PXM 0 -> APIC 0x11 -> Node 0 [ 0.015166] SRAT: PXM 0 -> APIC 0x12 -> Node 0 [ 0.015167] SRAT: PXM 0 -> APIC 0x13 -> Node 0 [ 0.015167] SRAT: PXM 0 -> APIC 0x18 -> Node 0 [ 0.015168] SRAT: PXM 0 -> APIC 0x19 -> Node 0 [ 0.015169] SRAT: PXM 0 -> APIC 0x1a -> Node 0 [ 0.015169] SRAT: PXM 0 -> APIC 0x1b -> Node 0 [ 0.015170] SRAT: PXM 0 -> APIC 0x20 -> Node 0 [ 0.015171] SRAT: PXM 0 -> APIC 0x21 -> Node 0 [ 0.015171] SRAT: PXM 0 -> APIC 0x22 -> Node 0 [ 0.015172] SRAT: PXM 0 -> APIC 0x23 -> Node 0 [ 0.015173] SRAT: PXM 0 -> APIC 0x28 -> Node 0 [ 0.015173] SRAT: PXM 0 -> APIC 0x29 -> Node 0 [ 0.015174] SRAT: PXM 0 -> APIC 0x2a -> Node 0 [ 0.015175] SRAT: PXM 0 -> APIC 0x2b -> Node 0 [ 0.015175] SRAT: PXM 0 -> APIC 0x30 -> Node 0 [ 0.015176] SRAT: PXM 0 -> APIC 0x31 -> Node 0 [ 0.015177] SRAT: PXM 0 -> APIC 0x32 -> Node 0 [ 0.015177] SRAT: PXM 0 -> APIC 0x33 -> Node 0 [ 0.015178] SRAT: PXM 0 -> APIC 0x38 -> Node 0 [ 0.015179] SRAT: PXM 0 -> APIC 0x39 -> Node 0 [ 0.015179] SRAT: PXM 0 -> APIC 0x3a -> Node 0 [ 0.015180] SRAT: PXM 0 -> APIC 0x3b -> Node 0 [ 0.015184] ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x0009ffff] [ 0.015185] ACPI: SRAT: Node 0 PXM 0 [mem 0x000c0000-0x7fffffff] [ 0.015186] ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x107fffffff] [ 0.015192] NUMA: Initialized distance table, cnt=1 [ 0.015194] NUMA: Node 0 [mem 0x00000000-0x0009ffff] + [mem 0x000c0000-0x7fffffff] -> [mem 0x00000000-0x7fffffff] [ 0.015195] NUMA: Node 0 [mem 0x00000000-0x7fffffff] + [mem 0x100000000-0x107f2fffff] -> [mem 0x00000000-0x107f2fffff] [ 0.015205] NODE_DATA(0) allocated [mem 0x107f2d5000-0x107f2fefff] [ 0.015456] crashkernel: memory value expected [ 0.015517] Zone ranges: [ 0.015518] DMA [mem 0x0000000000001000-0x0000000000ffffff] [ 0.015519] DMA32 [mem 0x0000000001000000-0x00000000ffffffff] [ 0.015520] Normal [mem 0x0000000100000000-0x000000107f2fffff] [ 0.015521] Device empty [ 0.015522] Movable zone start for each node [ 0.015525] Early memory node ranges [ 0.015526] node 0: [mem 0x0000000000001000-0x000000000009ffff] [ 0.015527] node 0: [mem 0x0000000000100000-0x000000005f42dfff] [ 0.015528] node 0: [mem 0x000000005f42f000-0x000000005f538fff] [ 0.015528] node 0: [mem 0x000000005f53c000-0x000000006a0acfff] [ 0.015529] node 0: [mem 0x000000006a0ae000-0x000000006a0d7fff] [ 0.015530] node 0: [mem 0x000000006a0d9000-0x000000006a0ddfff] [ 0.015530] node 0: [mem 0x000000006a0e8000-0x000000006a4f2fff] [ 0.015531] node 0: [mem 0x000000006a4f6000-0x000000006a854fff] [ 0.015532] node 0: [mem 0x000000006a857000-0x000000006a93efff] [ 0.015533] node 0: [mem 0x000000006a940000-0x000000006a990fff] [ 0.015533] node 0: [mem 0x000000006a992000-0x000000006bea2fff] [ 0.015534] node 0: [mem 0x000000006d4cf000-0x000000006d4ddfff] [ 0.015535] node 0: [mem 0x000000006d4df000-0x000000006f95afff] [ 0.015536] node 0: [mem 0x000000006fa5c000-0x00000000776ccfff] [ 0.015536] node 0: [mem 0x00000000776ce000-0x0000000077e5bfff] [ 0.015537] node 0: [mem 0x0000000077eee000-0x0000000077eeefff] [ 0.015538] node 0: [mem 0x0000000100000000-0x000000087fefffff] [ 0.015540] node 0: [mem 0x0000000880000000-0x000000107f2fffff] [ 0.015656] Zeroed struct page in unavailable ranges: 10058 pages [ 0.015657] Initmem setup node 0 [mem 0x0000000000001000-0x000000107f2fffff] [ 0.015659] On node 0 totalpages: 16734390 [ 0.015660] DMA zone: 64 pages used for memmap [ 0.015661] DMA zone: 159 pages reserved [ 0.015662] DMA zone: 3999 pages, LIFO batch:0 [ 0.015697] DMA32 zone: 7517 pages used for memmap [ 0.015698] DMA32 zone: 481047 pages, LIFO batch:63 [ 0.019475] Normal zone: 253900 pages used for memmap [ 0.019477] Normal zone: 16249344 pages, LIFO batch:63 [ 0.085172] ACPI: PM-Timer IO Port: 0x408 [ 0.085178] ACPI: Local APIC address 0xfee00000 [ 0.085192] ACPI: LAPIC_NMI (acpi_id[0x00] high level lint[0x1]) [ 0.085193] ACPI: LAPIC_NMI (acpi_id[0x01] high level lint[0x1]) [ 0.085194] ACPI: LAPIC_NMI (acpi_id[0x02] high level lint[0x1]) [ 0.085195] ACPI: LAPIC_NMI (acpi_id[0x03] high level lint[0x1]) [ 0.085196] ACPI: LAPIC_NMI (acpi_id[0x08] high level lint[0x1]) [ 0.085197] ACPI: LAPIC_NMI (acpi_id[0x09] high level lint[0x1]) [ 0.085197] ACPI: LAPIC_NMI (acpi_id[0x0a] high level lint[0x1]) [ 0.085198] ACPI: LAPIC_NMI (acpi_id[0x0b] high level lint[0x1]) [ 0.085199] ACPI: LAPIC_NMI (acpi_id[0x10] high level lint[0x1]) [ 0.085200] ACPI: LAPIC_NMI (acpi_id[0x11] high level lint[0x1]) [ 0.085200] ACPI: LAPIC_NMI (acpi_id[0x12] high level lint[0x1]) [ 0.085201] ACPI: LAPIC_NMI (acpi_id[0x13] high level lint[0x1]) [ 0.085202] ACPI: LAPIC_NMI (acpi_id[0x18] high level lint[0x1]) [ 0.085202] ACPI: LAPIC_NMI (acpi_id[0x19] high level lint[0x1]) [ 0.085203] ACPI: LAPIC_NMI (acpi_id[0x1a] high level lint[0x1]) [ 0.085204] ACPI: LAPIC_NMI (acpi_id[0x1b] high level lint[0x1]) [ 0.085205] ACPI: LAPIC_NMI (acpi_id[0x20] high level lint[0x1]) [ 0.085205] ACPI: LAPIC_NMI (acpi_id[0x21] high level lint[0x1]) [ 0.085206] ACPI: LAPIC_NMI (acpi_id[0x22] high level lint[0x1]) [ 0.085207] ACPI: LAPIC_NMI (acpi_id[0x23] high level lint[0x1]) [ 0.085207] ACPI: LAPIC_NMI (acpi_id[0x28] high level lint[0x1]) [ 0.085208] ACPI: LAPIC_NMI (acpi_id[0x29] high level lint[0x1]) [ 0.085209] ACPI: LAPIC_NMI (acpi_id[0x2a] high level lint[0x1]) [ 0.085210] ACPI: LAPIC_NMI (acpi_id[0x2b] high level lint[0x1]) [ 0.085210] ACPI: LAPIC_NMI (acpi_id[0x30] high level lint[0x1]) [ 0.085211] ACPI: LAPIC_NMI (acpi_id[0x31] high level lint[0x1]) [ 0.085212] ACPI: LAPIC_NMI (acpi_id[0x32] high level lint[0x1]) [ 0.085212] ACPI: LAPIC_NMI (acpi_id[0x33] high level lint[0x1]) [ 0.085213] ACPI: LAPIC_NMI (acpi_id[0x38] high level lint[0x1]) [ 0.085214] ACPI: LAPIC_NMI (acpi_id[0x39] high level lint[0x1]) [ 0.085214] ACPI: LAPIC_NMI (acpi_id[0x3a] high level lint[0x1]) [ 0.085215] ACPI: LAPIC_NMI (acpi_id[0x3b] high level lint[0x1]) [ 0.085230] IOAPIC[0]: apic_id 128, version 33, address 0xfec00000, GSI 0-23 [ 0.085236] IOAPIC[1]: apic_id 129, version 33, address 0xe0300000, GSI 24-55 [ 0.085241] IOAPIC[2]: apic_id 130, version 33, address 0xc5180000, GSI 56-87 [ 0.085246] IOAPIC[3]: apic_id 131, version 33, address 0xaa180000, GSI 88-119 [ 0.085252] IOAPIC[4]: apic_id 132, version 33, address 0xfd180000, GSI 120-151 [ 0.085256] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) [ 0.085257] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level) [ 0.085258] ACPI: IRQ0 used by override. [ 0.085259] ACPI: IRQ9 used by override. [ 0.085262] Using ACPI (MADT) for SMP configuration information [ 0.085265] ACPI: HPET id: 0x10228201 base: 0xfed00000 [ 0.085280] e820: update [mem 0x5f2f1000-0x5f321fff] usable ==> reserved [ 0.085297] ACPI: SPCR: console: uart,mmio,0x0,115200 [ 0.085300] smpboot: Allowing 32 CPUs, 0 hotplug CPUs [ 0.085353] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff] [ 0.085356] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000effff] [ 0.085356] PM: hibernation: Registered nosave memory: [mem 0x000f0000-0x000fffff] [ 0.085358] PM: hibernation: Registered nosave memory: [mem 0x5f2f1000-0x5f321fff] [ 0.085361] PM: hibernation: Registered nosave memory: [mem 0x5f42e000-0x5f42efff] [ 0.085363] PM: hibernation: Registered nosave memory: [mem 0x5f539000-0x5f53bfff] [ 0.085364] PM: hibernation: Registered nosave memory: [mem 0x6a0ad000-0x6a0adfff] [ 0.085367] PM: hibernation: Registered nosave memory: [mem 0x6a0d8000-0x6a0d8fff] [ 0.085369] PM: hibernation: Registered nosave memory: [mem 0x6a0de000-0x6a0e7fff] [ 0.085371] PM: hibernation: Registered nosave memory: [mem 0x6a4f3000-0x6a4f5fff] [ 0.085373] PM: hibernation: Registered nosave memory: [mem 0x6a855000-0x6a856fff] [ 0.085375] PM: hibernation: Registered nosave memory: [mem 0x6a93f000-0x6a93ffff] [ 0.085377] PM: hibernation: Registered nosave memory: [mem 0x6a991000-0x6a991fff] [ 0.085379] PM: hibernation: Registered nosave memory: [mem 0x6bea3000-0x6d4cefff] [ 0.085382] PM: hibernation: Registered nosave memory: [mem 0x6d4de000-0x6d4defff] [ 0.085384] PM: hibernation: Registered nosave memory: [mem 0x6f95b000-0x6fa5bfff] [ 0.085386] PM: hibernation: Registered nosave memory: [mem 0x76365000-0x76365fff] [ 0.085388] PM: hibernation: Registered nosave memory: [mem 0x7636a000-0x7636afff] [ 0.085389] PM: hibernation: Registered nosave memory: [mem 0x7636b000-0x7636bfff] [ 0.085391] PM: hibernation: Registered nosave memory: [mem 0x76375000-0x76375fff] [ 0.085392] PM: hibernation: Registered nosave memory: [mem 0x76376000-0x76376fff] [ 0.085394] PM: hibernation: Registered nosave memory: [mem 0x7637e000-0x7637efff] [ 0.085395] PM: hibernation: Registered nosave memory: [mem 0x7637f000-0x7637ffff] [ 0.085397] PM: hibernation: Registered nosave memory: [mem 0x763bf000-0x763bffff] [ 0.085397] PM: hibernation: Registered nosave memory: [mem 0x763c0000-0x763c0fff] [ 0.085400] PM: hibernation: Registered nosave memory: [mem 0x76400000-0x76400fff] [ 0.085400] PM: hibernation: Registered nosave memory: [mem 0x76401000-0x76401fff] [ 0.085403] PM: hibernation: Registered nosave memory: [mem 0x76441000-0x76441fff] [ 0.085403] PM: hibernation: Registered nosave memory: [mem 0x76442000-0x76442fff] [ 0.085405] PM: hibernation: Registered nosave memory: [mem 0x76482000-0x76482fff] [ 0.085408] PM: hibernation: Registered nosave memory: [mem 0x776cd000-0x776cdfff] [ 0.085410] PM: hibernation: Registered nosave memory: [mem 0x77e5c000-0x77e7bfff] [ 0.085411] PM: hibernation: Registered nosave memory: [mem 0x77e7c000-0x77eabfff] [ 0.085412] PM: hibernation: Registered nosave memory: [mem 0x77eac000-0x77eedfff] [ 0.085414] PM: hibernation: Registered nosave memory: [mem 0x77eef000-0x8fffffff] [ 0.085415] PM: hibernation: Registered nosave memory: [mem 0x90000000-0xaa17ffff] [ 0.085415] PM: hibernation: Registered nosave memory: [mem 0xaa180000-0xaa18ffff] [ 0.085416] PM: hibernation: Registered nosave memory: [mem 0xaa190000-0xc517ffff] [ 0.085417] PM: hibernation: Registered nosave memory: [mem 0xc5180000-0xc518ffff] [ 0.085417] PM: hibernation: Registered nosave memory: [mem 0xc5190000-0xe02fffff] [ 0.085418] PM: hibernation: Registered nosave memory: [mem 0xe0300000-0xe030ffff] [ 0.085419] PM: hibernation: Registered nosave memory: [mem 0xe0310000-0xfd17ffff] [ 0.085419] PM: hibernation: Registered nosave memory: [mem 0xfd180000-0xfd18ffff] [ 0.085420] PM: hibernation: Registered nosave memory: [mem 0xfd190000-0xfed7ffff] [ 0.085421] PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xfed80fff] [ 0.085421] PM: hibernation: Registered nosave memory: [mem 0xfed81000-0xffffffff] [ 0.085424] PM: hibernation: Registered nosave memory: [mem 0x87ff00000-0x87fffffff] [ 0.085426] [mem 0xe0310000-0xfd17ffff] available for PCI devices [ 0.085428] Booting paravirtualized kernel on bare hardware [ 0.085431] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns [ 0.089569] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:32 nr_cpu_ids:32 nr_node_ids:1 [ 0.090903] percpu: Embedded 55 pages/cpu s188416 r8192 d28672 u262144 [ 0.090913] pcpu-alloc: s188416 r8192 d28672 u262144 alloc=1*2097152 [ 0.090914] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 [ 0.090921] pcpu-alloc: [0] 16 17 18 19 20 21 22 23 [0] 24 25 26 27 28 29 30 31 [ 0.090969] Built 1 zonelists, mobility grouping on. Total pages: 16472750 [ 0.090970] Policy zone: Normal [ 0.090972] Kernel command line: BOOT_IMAGE=(hd0,gpt2)/vmlinuz-5.10.0-rc1-sev-es root=UUID=320755d8-6156-419f-9812-f24b8ccb3043 ro crashkernel=auto net.ifnames=1 [ 0.098742] Dentry cache hash table entries: 8388608 (order: 14, 67108864 bytes, linear) [ 0.102596] Inode-cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear) [ 0.102694] mem auto-init: stack:off, heap alloc:off, heap free:off [ 0.198067] Memory: 33013008K/66937560K available (12297K kernel code, 5825K rwdata, 7544K rodata, 2368K init, 14480K bss, 1716040K reserved, 0K cma-reserved) [ 0.198133] random: get_random_u64 called from cache_random_seq_create+0x80/0x170 with crng_init=0 [ 0.198209] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=32, Nodes=1 [ 0.198223] ftrace: allocating 40684 entries in 159 pages [ 0.212293] ftrace: allocated 159 pages with 6 groups [ 0.212452] rcu: Hierarchical RCU implementation. [ 0.212453] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=32. [ 0.212455] Rude variant of Tasks RCU enabled. [ 0.212455] Tracing variant of Tasks RCU enabled. [ 0.212456] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies. [ 0.212457] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=32 [ 0.215563] NR_IRQS: 524544, nr_irqs: 2856, preallocated irqs: 16 [ 0.215883] random: crng done (trusting CPU's manufacturer) [ 0.215919] Console: colour dummy device 80x25 [ 0.216304] printk: console [tty0] enabled [ 0.226125] AMD Memory Encryption Features active: SME [ 0.226167] ACPI: Core revision 20200925 [ 0.226316] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns [ 0.226338] APIC: Switch to symmetric I/O mode setup [ 1.511811] Switched APIC routing to physical flat. [ 1.513224] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 [ 1.517309] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2b29a103793, max_idle_ns: 440795334323 ns [ 1.517315] Calibrating delay loop (skipped), value calculated using timer frequency.. 5988.81 BogoMIPS (lpj=2994406) [ 1.517319] pid_max: default: 32768 minimum: 301 [ 1.524343] LSM: Security Framework initializing [ 1.524356] Yama: becoming mindful. [ 1.524363] SELinux: Initializing. [ 1.524544] Mount-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear) [ 1.524685] Mountpoint-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear) [ 1.524950] x86/cpu: User Mode Instruction Prevention (UMIP) activated [ 1.525073] LVT offset 2 assigned for vector 0xf4 [ 1.525106] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 512 [ 1.525107] Last level dTLB entries: 4KB 2048, 2MB 2048, 4MB 1024, 1GB 0 [ 1.525111] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization [ 1.525113] Spectre V2 : Mitigation: Full AMD retpoline [ 1.525115] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch [ 1.525117] Spectre V2 : Enabling Restricted Speculation for firmware calls [ 1.525119] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier [ 1.525121] Spectre V2 : User space: Mitigation: STIBP via seccomp and prctl [ 1.525123] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp [ 1.525528] Freeing SMP alternatives memory: 36K [ 1.628791] smpboot: CPU0: AMD EPYC 7302P 16-Core Processor (family: 0x17, model: 0x31, stepping: 0x0) [ 1.628895] Performance Events: Fam17h+ core perfctr, AMD PMU driver. [ 1.628900] ... version: 0 [ 1.628902] ... bit width: 48 [ 1.628903] ... generic registers: 6 [ 1.628904] ... value mask: 0000ffffffffffff [ 1.628906] ... max period: 00007fffffffffff [ 1.628907] ... fixed-purpose events: 0 [ 1.628908] ... event mask: 000000000000003f [ 1.628963] rcu: Hierarchical SRCU implementation. [ 1.629268] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter. [ 1.629312] smp: Bringing up secondary CPUs ... [ 1.629312] x86: Booting SMP configuration: [ 1.629312] .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7 #8 #9 #10 #11 #12 #13 #14 #15 #16 #17 #18 #19 #20 #21 #22 #23 #24 #25 #26 #27 #28 #29 #30 #31 [ 1.669357] smp: Brought up 1 node, 32 CPUs [ 1.669357] smpboot: Max logical packages: 1 [ 1.669357] smpboot: Total of 32 processors activated (191641.98 BogoMIPS) [ 1.722360] node 0 deferred pages initialised in 52ms [ 1.723371] devtmpfs: initialized [ 1.723381] x86/mm: Memory block size: 2048MB [ 1.724347] PM: Registering ACPI NVS region [mem 0x77e5c000-0x77e7bfff] (131072 bytes) [ 1.724495] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns [ 1.724495] futex hash table entries: 8192 (order: 7, 524288 bytes, linear) [ 1.724552] pinctrl core: initialized pinctrl subsystem [ 1.724593] NET: Registered protocol family 16 [ 1.725318] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations [ 1.725318] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations [ 1.725318] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations [ 1.725318] audit: initializing netlink subsys (disabled) [ 1.725343] audit: type=2000 audit(1609707224.216:1): state=initialized audit_enabled=0 res=1 [ 1.725439] thermal_sys: Registered thermal governor 'fair_share' [ 1.725440] thermal_sys: Registered thermal governor 'bang_bang' [ 1.725442] thermal_sys: Registered thermal governor 'step_wise' [ 1.725444] thermal_sys: Registered thermal governor 'user_space' [ 1.725458] cpuidle: using governor menu [ 1.725458] Invalid PCCT: 0 PCC subspaces [ 1.726714] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it [ 1.726725] ACPI: bus type PCI registered [ 1.726728] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 [ 1.726741] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0x80000000-0x8fffffff] (base 0x80000000) [ 1.726741] PCI: MMCONFIG at [mem 0x80000000-0x8fffffff] reserved in E820 [ 1.726741] PCI: Using configuration type 1 for base access [ 1.728394] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages [ 1.728394] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages [ 1.751473] cryptd: max_cpu_qlen set to 1000 [ 1.756465] ACPI: Added _OSI(Module Device) [ 1.756468] ACPI: Added _OSI(Processor Device) [ 1.756470] ACPI: Added _OSI(3.0 _SCP Extensions) [ 1.756472] ACPI: Added _OSI(Processor Aggregator Device) [ 1.756474] ACPI: Added _OSI(Linux-Dell-Video) [ 1.756475] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio) [ 1.756477] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics) [ 1.757255] ACPI: 6 ACPI AML tables successfully acquired and loaded [ 1.758517] ACPI: Interpreter enabled [ 1.758527] ACPI: (supports S0 S5) [ 1.758529] ACPI: Using IOAPIC for interrupt routing [ 1.758709] HEST: Table parsing has been initialized. [ 1.758713] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug [ 1.758819] ACPI: Enabled 2 GPEs in block 00 to 1F [ 1.759314] ACPI: Power Resource [P0SA] (off) [ 1.759314] ACPI: Power Resource [P3SA] (off) [ 1.760815] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus c0-ff]) [ 1.760824] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3] [ 1.760885] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug AER LTR DPC] [ 1.760938] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability] [ 1.760940] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration [ 1.761314] PCI host bridge to bus 0000:c0 [ 1.761314] pci_bus 0000:c0: root bus resource [io 0x03b0-0x03bb window] [ 1.761314] pci_bus 0000:c0: root bus resource [io 0x03c0-0x03df window] [ 1.761314] pci_bus 0000:c0: root bus resource [mem 0x000a0000-0x000bffff window] [ 1.761314] pci_bus 0000:c0: root bus resource [io 0xa000-0xffff window] [ 1.761314] pci_bus 0000:c0: root bus resource [mem 0xc6000000-0xdfffffff window] [ 1.761314] pci_bus 0000:c0: root bus resource [mem 0x10a0200000-0x20b9fffffff window] [ 1.761314] pci_bus 0000:c0: root bus resource [bus c0-ff] [ 1.761314] pci 0000:c0:00.0: [1022:1480] type 00 class 0x060000 [ 1.761314] pci 0000:c0:00.2: [1022:1481] type 00 class 0x080600 [ 1.761314] pci 0000:c0:01.0: [1022:1482] type 00 class 0x060000 [ 1.761375] pci 0000:c0:01.1: [1022:1483] type 01 class 0x060400 [ 1.761451] pci 0000:c0:01.1: PME# supported from D0 D3hot D3cold [ 1.761590] pci 0000:c0:01.5: [1022:1483] type 01 class 0x060400 [ 1.761663] pci 0000:c0:01.5: PME# supported from D0 D3hot D3cold [ 1.761780] pci 0000:c0:02.0: [1022:1482] type 00 class 0x060000 [ 1.761866] pci 0000:c0:03.0: [1022:1482] type 00 class 0x060000 [ 1.761978] pci 0000:c0:03.1: [1022:1483] type 01 class 0x060400 [ 1.762154] pci 0000:c0:03.1: PME# supported from D0 D3hot D3cold [ 1.762333] pci 0000:c0:04.0: [1022:1482] type 00 class 0x060000 [ 1.762419] pci 0000:c0:05.0: [1022:1482] type 00 class 0x060000 [ 1.762510] pci 0000:c0:07.0: [1022:1482] type 00 class 0x060000 [ 1.762598] pci 0000:c0:07.1: [1022:1484] type 01 class 0x060400 [ 1.762624] pci 0000:c0:07.1: enabling Extended Tags [ 1.762665] pci 0000:c0:07.1: PME# supported from D0 D3hot D3cold [ 1.762776] pci 0000:c0:08.0: [1022:1482] type 00 class 0x060000 [ 1.762868] pci 0000:c0:08.1: [1022:1484] type 01 class 0x060400 [ 1.762894] pci 0000:c0:08.1: enabling Extended Tags [ 1.762937] pci 0000:c0:08.1: PME# supported from D0 D3hot D3cold [ 1.763446] pci 0000:c5:00.0: [8086:1521] type 00 class 0x020000 [ 1.763462] pci 0000:c5:00.0: reg 0x10: [mem 0xce100000-0xce1fffff] [ 1.763487] pci 0000:c5:00.0: reg 0x1c: [mem 0xce20c000-0xce20ffff] [ 1.763511] pci 0000:c5:00.0: reg 0x30: [mem 0x00000000-0x0007ffff pref] [ 1.763597] pci 0000:c5:00.0: PME# supported from D0 D3hot D3cold [ 1.763635] pci 0000:c5:00.0: reg 0x184: [mem 0x10a02e0000-0x10a02e3fff 64bit pref] [ 1.763639] pci 0000:c5:00.0: VF(n) BAR0 space: [mem 0x10a02e0000-0x10a02fffff 64bit pref] (contains BAR0 for 8 VFs) [ 1.763660] pci 0000:c5:00.0: reg 0x190: [mem 0x10a02c0000-0x10a02c3fff 64bit pref] [ 1.763662] pci 0000:c5:00.0: VF(n) BAR3 space: [mem 0x10a02c0000-0x10a02dffff 64bit pref] (contains BAR3 for 8 VFs) [ 1.763862] pci 0000:c5:00.1: [8086:1521] type 00 class 0x020000 [ 1.763878] pci 0000:c5:00.1: reg 0x10: [mem 0xce000000-0xce0fffff] [ 1.763902] pci 0000:c5:00.1: reg 0x1c: [mem 0xce208000-0xce20bfff] [ 1.763926] pci 0000:c5:00.1: reg 0x30: [mem 0x00000000-0x0007ffff pref] [ 1.764007] pci 0000:c5:00.1: PME# supported from D0 D3hot D3cold [ 1.764039] pci 0000:c5:00.1: reg 0x184: [mem 0x10a02a0000-0x10a02a3fff 64bit pref] [ 1.764042] pci 0000:c5:00.1: VF(n) BAR0 space: [mem 0x10a02a0000-0x10a02bffff 64bit pref] (contains BAR0 for 8 VFs) [ 1.764062] pci 0000:c5:00.1: reg 0x190: [mem 0x10a0280000-0x10a0283fff 64bit pref] [ 1.764064] pci 0000:c5:00.1: VF(n) BAR3 space: [mem 0x10a0280000-0x10a029ffff 64bit pref] (contains BAR3 for 8 VFs) [ 1.764245] pci 0000:c5:00.2: [8086:1521] type 00 class 0x020000 [ 1.764261] pci 0000:c5:00.2: reg 0x10: [mem 0xcdf00000-0xcdffffff] [ 1.764285] pci 0000:c5:00.2: reg 0x1c: [mem 0xce204000-0xce207fff] [ 1.764320] pci 0000:c5:00.2: reg 0x30: [mem 0x00000000-0x0007ffff pref] [ 1.764401] pci 0000:c5:00.2: PME# supported from D0 D3hot D3cold [ 1.764433] pci 0000:c5:00.2: reg 0x184: [mem 0x10a0260000-0x10a0263fff 64bit pref] [ 1.764435] pci 0000:c5:00.2: VF(n) BAR0 space: [mem 0x10a0260000-0x10a027ffff 64bit pref] (contains BAR0 for 8 VFs) [ 1.764455] pci 0000:c5:00.2: reg 0x190: [mem 0x10a0240000-0x10a0243fff 64bit pref] [ 1.764458] pci 0000:c5:00.2: VF(n) BAR3 space: [mem 0x10a0240000-0x10a025ffff 64bit pref] (contains BAR3 for 8 VFs) [ 1.764635] pci 0000:c5:00.3: [8086:1521] type 00 class 0x020000 [ 1.764652] pci 0000:c5:00.3: reg 0x10: [mem 0xcde00000-0xcdefffff] [ 1.764676] pci 0000:c5:00.3: reg 0x1c: [mem 0xce200000-0xce203fff] [ 1.764700] pci 0000:c5:00.3: reg 0x30: [mem 0x00000000-0x0007ffff pref] [ 1.764781] pci 0000:c5:00.3: PME# supported from D0 D3hot D3cold [ 1.764813] pci 0000:c5:00.3: reg 0x184: [mem 0x10a0220000-0x10a0223fff 64bit pref] [ 1.764815] pci 0000:c5:00.3: VF(n) BAR0 space: [mem 0x10a0220000-0x10a023ffff 64bit pref] (contains BAR0 for 8 VFs) [ 1.764835] pci 0000:c5:00.3: reg 0x190: [mem 0x10a0200000-0x10a0203fff 64bit pref] [ 1.764838] pci 0000:c5:00.3: VF(n) BAR3 space: [mem 0x10a0200000-0x10a021ffff 64bit pref] (contains BAR3 for 8 VFs) [ 1.765018] pci 0000:c0:01.1: PCI bridge to [bus c5] [ 1.765024] pci 0000:c0:01.1: bridge window [mem 0xcde00000-0xce2fffff] [ 1.765028] pci 0000:c0:01.1: bridge window [mem 0x10a0200000-0x10a02fffff 64bit pref] [ 1.765076] pci 0000:c1:00.0: [103c:3306] type 00 class 0x088000 [ 1.765091] pci 0000:c1:00.0: reg 0x10: [io 0xa200-0xa2ff] [ 1.765101] pci 0000:c1:00.0: reg 0x14: [mem 0xcdba6000-0xcdba63ff] [ 1.765110] pci 0000:c1:00.0: reg 0x18: [io 0xa100-0xa1ff] [ 1.765120] pci 0000:c1:00.0: reg 0x1c: [mem 0xc8000000-0xcbffffff] [ 1.765129] pci 0000:c1:00.0: reg 0x20: [mem 0xcd800000-0xcd9fffff] [ 1.765282] pci 0000:c1:00.1: [102b:0538] type 00 class 0x030000 [ 1.765297] pci 0000:c1:00.1: reg 0x10: [mem 0xcc000000-0xccffffff pref] [ 1.765307] pci 0000:c1:00.1: reg 0x14: [mem 0xcdba0000-0xcdba3fff] [ 1.765318] pci 0000:c1:00.1: reg 0x18: [mem 0xcd000000-0xcd7fffff] [ 1.765362] pci 0000:c1:00.1: BAR 0: assigned to efifb [ 1.765481] pci 0000:c1:00.2: [103c:3307] type 00 class 0x088000 [ 1.765497] pci 0000:c1:00.2: reg 0x10: [io 0xa000-0xa0ff] [ 1.765506] pci 0000:c1:00.2: reg 0x14: [mem 0xcdba5000-0xcdba50ff] [ 1.765515] pci 0000:c1:00.2: reg 0x18: [mem 0xcda00000-0xcdafffff] [ 1.765524] pci 0000:c1:00.2: reg 0x1c: [mem 0xcdb00000-0xcdb7ffff] [ 1.765534] pci 0000:c1:00.2: reg 0x20: [mem 0xcdb90000-0xcdb97fff] [ 1.765543] pci 0000:c1:00.2: reg 0x24: [mem 0xcdb80000-0xcdb8ffff] [ 1.765552] pci 0000:c1:00.2: reg 0x30: [mem 0x00000000-0x0000ffff pref] [ 1.765600] pci 0000:c1:00.2: PME# supported from D0 D3hot D3cold [ 1.765687] pci 0000:c1:00.4: [103c:22f6] type 00 class 0x0c0320 [ 1.765702] pci 0000:c1:00.4: reg 0x10: [mem 0xcdba4000-0xcdba40ff] [ 1.765880] pci 0000:c0:01.5: PCI bridge to [bus c1] [ 1.765884] pci 0000:c0:01.5: bridge window [io 0xa000-0xafff] [ 1.765887] pci 0000:c0:01.5: bridge window [mem 0xc6000000-0xcdbfffff] [ 1.765942] pci 0000:c0:03.1: PCI bridge to [bus c4] [ 1.765995] pci 0000:c2:00.0: [1022:148a] type 00 class 0x130000 [ 1.766026] pci 0000:c2:00.0: enabling Extended Tags [ 1.766157] pci 0000:c2:00.2: [1022:1498] type 00 class 0x108000 [ 1.766172] pci 0000:c2:00.2: reg 0x18: [mem 0xcdd00000-0xcdd7ffff] [ 1.766183] pci 0000:c2:00.2: reg 0x24: [mem 0xcdd80000-0xcdd81fff] [ 1.766192] pci 0000:c2:00.2: enabling Extended Tags [ 1.766307] pci 0000:c0:07.1: PCI bridge to [bus c2] [ 1.766314] pci 0000:c0:07.1: bridge window [mem 0xcdd00000-0xcddfffff] [ 1.766357] pci 0000:c3:00.0: [1022:1485] type 00 class 0x130000 [ 1.766390] pci 0000:c3:00.0: enabling Extended Tags [ 1.766527] pci 0000:c3:00.2: [1022:1498] type 00 class 0x108000 [ 1.766543] pci 0000:c3:00.2: reg 0x18: [mem 0xcdc00000-0xcdc7ffff] [ 1.766556] pci 0000:c3:00.2: reg 0x24: [mem 0xcdc80000-0xcdc81fff] [ 1.766565] pci 0000:c3:00.2: enabling Extended Tags [ 1.766688] pci 0000:c0:08.1: PCI bridge to [bus c3] [ 1.766693] pci 0000:c0:08.1: bridge window [mem 0xcdc00000-0xcdcfffff] [ 1.766725] pci_bus 0000:c0: on NUMA node 0 [ 1.766761] ACPI: PCI Root Bridge [PC01] (domain 0000 [bus 80-bf]) [ 1.766766] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3] [ 1.766829] acpi PNP0A08:01: _OSC: platform does not support [SHPCHotplug AER LTR DPC] [ 1.766882] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PME PCIeCapability] [ 1.766884] acpi PNP0A08:01: FADT indicates ASPM is unsupported, using BIOS configuration [ 1.766932] PCI host bridge to bus 0000:80 [ 1.766934] pci_bus 0000:80: root bus resource [io 0x7000-0x9fff window] [ 1.766936] pci_bus 0000:80: root bus resource [mem 0xab000000-0xc4ffffff window] [ 1.766939] pci_bus 0000:80: root bus resource [mem 0x20bc0200000-0x406bfffffff window] [ 1.766941] pci_bus 0000:80: root bus resource [bus 80-bf] [ 1.766950] pci 0000:80:00.0: [1022:1480] type 00 class 0x060000 [ 1.767045] pci 0000:80:00.2: [1022:1481] type 00 class 0x080600 [ 1.767148] pci 0000:80:01.0: [1022:1482] type 00 class 0x060000 [ 1.767258] pci 0000:80:01.1: [1022:1483] type 01 class 0x060400 [ 1.767441] pci 0000:80:01.1: PME# supported from D0 D3hot D3cold [ 1.767608] pci 0000:80:02.0: [1022:1482] type 00 class 0x060000 [ 1.767700] pci 0000:80:03.0: [1022:1482] type 00 class 0x060000 [ 1.767810] pci 0000:80:03.1: [1022:1483] type 01 class 0x060400 [ 1.767987] pci 0000:80:03.1: PME# supported from D0 D3hot D3cold [ 1.768162] pci 0000:80:04.0: [1022:1482] type 00 class 0x060000 [ 1.768246] pci 0000:80:05.0: [1022:1482] type 00 class 0x060000 [ 1.768331] pci 0000:80:07.0: [1022:1482] type 00 class 0x060000 [ 1.768418] pci 0000:80:07.1: [1022:1484] type 01 class 0x060400 [ 1.768444] pci 0000:80:07.1: enabling Extended Tags [ 1.768485] pci 0000:80:07.1: PME# supported from D0 D3hot D3cold [ 1.768590] pci 0000:80:08.0: [1022:1482] type 00 class 0x060000 [ 1.768679] pci 0000:80:08.1: [1022:1484] type 01 class 0x060400 [ 1.768706] pci 0000:80:08.1: enabling Extended Tags [ 1.768749] pci 0000:80:08.1: PME# supported from D0 D3hot D3cold [ 1.768862] pci 0000:80:08.3: [1022:1484] type 01 class 0x060400 [ 1.768889] pci 0000:80:08.3: enabling Extended Tags [ 1.768931] pci 0000:80:08.3: PME# supported from D0 D3hot D3cold [ 1.769088] pci 0000:80:01.1: PCI bridge to [bus 84] [ 1.769154] pci 0000:80:03.1: PCI bridge to [bus 85] [ 1.769207] pci 0000:83:00.0: [1022:148a] type 00 class 0x130000 [ 1.769237] pci 0000:83:00.0: enabling Extended Tags [ 1.769368] pci 0000:83:00.2: [1022:1498] type 00 class 0x108000 [ 1.769383] pci 0000:83:00.2: reg 0x18: [mem 0xab200000-0xab27ffff] [ 1.769394] pci 0000:83:00.2: reg 0x24: [mem 0xab280000-0xab281fff] [ 1.769402] pci 0000:83:00.2: enabling Extended Tags [ 1.769515] pci 0000:80:07.1: PCI bridge to [bus 83] [ 1.769520] pci 0000:80:07.1: bridge window [mem 0xab200000-0xab2fffff] [ 1.769564] pci 0000:82:00.0: [1022:1485] type 00 class 0x130000 [ 1.769597] pci 0000:82:00.0: enabling Extended Tags [ 1.769735] pci 0000:82:00.2: [1022:1498] type 00 class 0x108000 [ 1.769751] pci 0000:82:00.2: reg 0x18: [mem 0xab100000-0xab17ffff] [ 1.769763] pci 0000:82:00.2: reg 0x24: [mem 0xab180000-0xab181fff] [ 1.769772] pci 0000:82:00.2: enabling Extended Tags [ 1.769891] pci 0000:80:08.1: PCI bridge to [bus 82] [ 1.769896] pci 0000:80:08.1: bridge window [mem 0xab100000-0xab1fffff] [ 1.769946] pci 0000:81:00.0: [1022:7901] type 00 class 0x010601 [ 1.769980] pci 0000:81:00.0: reg 0x24: [mem 0xab000000-0xab0007ff] [ 1.769991] pci 0000:81:00.0: enabling Extended Tags [ 1.770044] pci 0000:81:00.0: PME# supported from D3hot D3cold [ 1.770148] pci 0000:80:08.3: PCI bridge to [bus 81] [ 1.770153] pci 0000:80:08.3: bridge window [mem 0xab000000-0xab0fffff] [ 1.770190] pci_bus 0000:80: on NUMA node 0 [ 1.770316] ACPI: PCI Root Bridge [PC02] (domain 0000 [bus 40-7f]) [ 1.770321] acpi PNP0A08:02: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3] [ 1.770383] acpi PNP0A08:02: _OSC: platform does not support [SHPCHotplug AER LTR DPC] [ 1.770435] acpi PNP0A08:02: _OSC: OS now controls [PCIeHotplug PME PCIeCapability] [ 1.770437] acpi PNP0A08:02: FADT indicates ASPM is unsupported, using BIOS configuration [ 1.770493] PCI host bridge to bus 0000:40 [ 1.770495] pci_bus 0000:40: root bus resource [io 0x4000-0x6fff window] [ 1.770497] pci_bus 0000:40: root bus resource [mem 0x90000000-0xa9ffffff window] [ 1.770499] pci_bus 0000:40: root bus resource [mem 0x406e0200000-0x601dfffffff window] [ 1.770501] pci_bus 0000:40: root bus resource [bus 40-7f] [ 1.770511] pci 0000:40:00.0: [1022:1480] type 00 class 0x060000 [ 1.770608] pci 0000:40:00.2: [1022:1481] type 00 class 0x080600 [ 1.770715] pci 0000:40:01.0: [1022:1482] type 00 class 0x060000 [ 1.770827] pci 0000:40:01.1: [1022:1483] type 01 class 0x060400 [ 1.771002] pci 0000:40:01.1: PME# supported from D0 D3hot D3cold [ 1.771203] pci 0000:40:01.2: [1022:1483] type 01 class 0x060400 [ 1.771380] pci 0000:40:01.2: PME# supported from D0 D3hot D3cold [ 1.771556] pci 0000:40:02.0: [1022:1482] type 00 class 0x060000 [ 1.771644] pci 0000:40:03.0: [1022:1482] type 00 class 0x060000 [ 1.771739] pci 0000:40:03.1: [1022:1483] type 01 class 0x060400 [ 1.771830] pci 0000:40:03.1: PME# supported from D0 D3hot D3cold [ 1.771939] pci 0000:40:04.0: [1022:1482] type 00 class 0x060000 [ 1.772025] pci 0000:40:05.0: [1022:1482] type 00 class 0x060000 [ 1.772112] pci 0000:40:07.0: [1022:1482] type 00 class 0x060000 [ 1.772200] pci 0000:40:07.1: [1022:1484] type 01 class 0x060400 [ 1.772226] pci 0000:40:07.1: enabling Extended Tags [ 1.772268] pci 0000:40:07.1: PME# supported from D0 D3hot D3cold [ 1.772379] pci 0000:40:08.0: [1022:1482] type 00 class 0x060000 [ 1.772468] pci 0000:40:08.1: [1022:1484] type 01 class 0x060400 [ 1.772494] pci 0000:40:08.1: enabling Extended Tags [ 1.772538] pci 0000:40:08.1: PME# supported from D0 D3hot D3cold [ 1.772704] pci 0000:40:01.1: PCI bridge to [bus 43] [ 1.772771] pci 0000:40:01.2: PCI bridge to [bus 44] [ 1.772815] pci 0000:40:03.1: PCI bridge to [bus 45] [ 1.772861] pci 0000:41:00.0: [1022:148a] type 00 class 0x130000 [ 1.772891] pci 0000:41:00.0: enabling Extended Tags [ 1.773023] pci 0000:41:00.2: [1022:1498] type 00 class 0x108000 [ 1.773039] pci 0000:41:00.2: reg 0x18: [mem 0x90300000-0x9037ffff] [ 1.773050] pci 0000:41:00.2: reg 0x24: [mem 0x90380000-0x90381fff] [ 1.773058] pci 0000:41:00.2: enabling Extended Tags [ 1.773179] pci 0000:40:07.1: PCI bridge to [bus 41] [ 1.773183] pci 0000:40:07.1: bridge window [mem 0x90300000-0x903fffff] [ 1.773230] pci 0000:42:00.0: [1022:1485] type 00 class 0x130000 [ 1.773263] pci 0000:42:00.0: enabling Extended Tags [ 1.773406] pci 0000:42:00.1: [1022:1486] type 00 class 0x108000 [ 1.773423] pci 0000:42:00.1: reg 0x18: [mem 0x90100000-0x901fffff] [ 1.773435] pci 0000:42:00.1: reg 0x24: [mem 0x90282000-0x90283fff] [ 1.773444] pci 0000:42:00.1: enabling Extended Tags [ 1.773565] pci 0000:42:00.2: [1022:1498] type 00 class 0x108000 [ 1.773581] pci 0000:42:00.2: reg 0x18: [mem 0x90200000-0x9027ffff] [ 1.773594] pci 0000:42:00.2: reg 0x24: [mem 0x90280000-0x90281fff] [ 1.773603] pci 0000:42:00.2: enabling Extended Tags [ 1.773726] pci 0000:42:00.3: [1022:148c] type 00 class 0x0c0330 [ 1.773738] pci 0000:42:00.3: reg 0x10: [mem 0x90000000-0x900fffff 64bit] [ 1.773761] pci 0000:42:00.3: enabling Extended Tags [ 1.773806] pci 0000:42:00.3: PME# supported from D0 D3hot D3cold [ 1.773908] pci 0000:40:08.1: PCI bridge to [bus 42] [ 1.773913] pci 0000:40:08.1: bridge window [mem 0x90000000-0x902fffff] [ 1.773952] pci_bus 0000:40: on NUMA node 0 [ 1.773987] ACPI: PCI Root Bridge [PC03] (domain 0000 [bus 00-3f]) [ 1.773993] acpi PNP0A08:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3] [ 1.774052] acpi PNP0A08:03: _OSC: platform does not support [SHPCHotplug AER LTR DPC] [ 1.774104] acpi PNP0A08:03: _OSC: OS now controls [PCIeHotplug PME PCIeCapability] [ 1.774106] acpi PNP0A08:03: FADT indicates ASPM is unsupported, using BIOS configuration [ 1.774168] PCI host bridge to bus 0000:00 [ 1.774171] pci_bus 0000:00: root bus resource [io 0x0000-0x03af window] [ 1.774173] pci_bus 0000:00: root bus resource [io 0x03e0-0x0cf7 window] [ 1.774174] pci_bus 0000:00: root bus resource [io 0x0d00-0x0fff window] [ 1.774176] pci_bus 0000:00: root bus resource [io 0x1000-0x3fff window] [ 1.774178] pci_bus 0000:00: root bus resource [mem 0xe1000000-0xfcffffff window] [ 1.774180] pci_bus 0000:00: root bus resource [mem 0x60200200000-0x7fcffffffff window] [ 1.774183] pci_bus 0000:00: root bus resource [bus 00-3f] [ 1.774192] pci 0000:00:00.0: [1022:1480] type 00 class 0x060000 [ 1.774300] pci 0000:00:00.2: [1022:1481] type 00 class 0x080600 [ 1.774416] pci 0000:00:01.0: [1022:1482] type 00 class 0x060000 [ 1.774525] pci 0000:00:01.1: [1022:1483] type 01 class 0x060400 [ 1.774610] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold [ 1.774745] pci 0000:00:02.0: [1022:1482] type 00 class 0x060000 [ 1.774845] pci 0000:00:03.0: [1022:1482] type 00 class 0x060000 [ 1.774958] pci 0000:00:03.1: [1022:1483] type 01 class 0x060400 [ 1.775142] pci 0000:00:03.1: PME# supported from D0 D3hot D3cold [ 1.775315] pci 0000:00:04.0: [1022:1482] type 00 class 0x060000 [ 1.775409] pci 0000:00:05.0: [1022:1482] type 00 class 0x060000 [ 1.775503] pci 0000:00:07.0: [1022:1482] type 00 class 0x060000 [ 1.775595] pci 0000:00:07.1: [1022:1484] type 01 class 0x060400 [ 1.775621] pci 0000:00:07.1: enabling Extended Tags [ 1.775663] pci 0000:00:07.1: PME# supported from D0 D3hot D3cold [ 1.775779] pci 0000:00:08.0: [1022:1482] type 00 class 0x060000 [ 1.775872] pci 0000:00:08.1: [1022:1484] type 01 class 0x060400 [ 1.775899] pci 0000:00:08.1: enabling Extended Tags [ 1.775942] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold [ 1.776076] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500 [ 1.776204] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100 [ 1.776363] pci 0000:00:18.0: [1022:1490] type 00 class 0x060000 [ 1.776432] pci 0000:00:18.1: [1022:1491] type 00 class 0x060000 [ 1.776501] pci 0000:00:18.2: [1022:1492] type 00 class 0x060000 [ 1.776568] pci 0000:00:18.3: [1022:1493] type 00 class 0x060000 [ 1.776637] pci 0000:00:18.4: [1022:1494] type 00 class 0x060000 [ 1.776705] pci 0000:00:18.5: [1022:1495] type 00 class 0x060000 [ 1.776773] pci 0000:00:18.6: [1022:1496] type 00 class 0x060000 [ 1.776842] pci 0000:00:18.7: [1022:1497] type 00 class 0x060000 [ 1.776945] pci 0000:00:01.1: PCI bridge to [bus 04] [ 1.777006] pci 0000:00:03.1: PCI bridge to [bus 03] [ 1.777059] pci 0000:01:00.0: [1022:148a] type 00 class 0x130000 [ 1.777090] pci 0000:01:00.0: enabling Extended Tags [ 1.777224] pci 0000:01:00.2: [1022:1498] type 00 class 0x108000 [ 1.777239] pci 0000:01:00.2: reg 0x18: [mem 0xe1200000-0xe127ffff] [ 1.777251] pci 0000:01:00.2: reg 0x24: [mem 0xe1280000-0xe1281fff] [ 1.777259] pci 0000:01:00.2: enabling Extended Tags [ 1.777378] pci 0000:00:07.1: PCI bridge to [bus 01] [ 1.777383] pci 0000:00:07.1: bridge window [mem 0xe1200000-0xe12fffff] [ 1.777431] pci 0000:02:00.0: [1022:1485] type 00 class 0x130000 [ 1.777464] pci 0000:02:00.0: enabling Extended Tags [ 1.777606] pci 0000:02:00.2: [1022:1498] type 00 class 0x108000 [ 1.777623] pci 0000:02:00.2: reg 0x18: [mem 0xe1100000-0xe117ffff] [ 1.777635] pci 0000:02:00.2: reg 0x24: [mem 0xe1180000-0xe1181fff] [ 1.777645] pci 0000:02:00.2: enabling Extended Tags [ 1.777768] pci 0000:02:00.3: [1022:148c] type 00 class 0x0c0330 [ 1.777780] pci 0000:02:00.3: reg 0x10: [mem 0xe1000000-0xe10fffff 64bit] [ 1.777803] pci 0000:02:00.3: enabling Extended Tags [ 1.777847] pci 0000:02:00.3: PME# supported from D0 D3hot D3cold [ 1.778051] pci 0000:00:08.1: PCI bridge to [bus 02] [ 1.778056] pci 0000:00:08.1: bridge window [mem 0xe1000000-0xe11fffff] [ 1.778085] pci_bus 0000:00: on NUMA node 0 [ 1.778140] ACPI: PCI Interrupt Link [LNKA] (IRQs 4 5 7 10 11 14 15) 0 [ 1.778178] ACPI: PCI Interrupt Link [LNKB] (IRQs 4 5 7 10 11 14 15) 0 [ 1.778209] ACPI: PCI Interrupt Link [LNKC] (IRQs 4 5 7 10 11 14 15) 0 [ 1.778240] ACPI: PCI Interrupt Link [LNKD] (IRQs 4 5 7 10 11 14 15) 0 [ 1.778274] ACPI: PCI Interrupt Link [LNKE] (IRQs 4 5 7 10 11 14 15) 0 [ 1.778303] ACPI: PCI Interrupt Link [LNKF] (IRQs 4 5 7 10 11 14 15) 0 [ 1.778333] ACPI: PCI Interrupt Link [LNKG] (IRQs 4 5 7 10 11 14 15) 0 [ 1.778362] ACPI: PCI Interrupt Link [LNKH] (IRQs 4 5 7 10 11 14 15) 0 [ 1.778614] iommu: Memory encryption detected - Disabling default IOMMU Passthrough [ 1.778614] iommu: Default domain type: Translated [ 1.779337] pci 0000:c1:00.1: vgaarb: setting as boot VGA device [ 1.779340] pci 0000:c1:00.1: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none [ 1.779375] pci 0000:c1:00.1: vgaarb: bridge control possible [ 1.779377] vgaarb: loaded [ 1.779487] SCSI subsystem initialized [ 1.779504] ACPI: bus type USB registered [ 1.779526] usbcore: registered new interface driver usbfs [ 1.779531] usbcore: registered new interface driver hub [ 1.779610] usbcore: registered new device driver usb [ 1.779630] pps_core: LinuxPPS API ver. 1 registered [ 1.779633] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti giometti@linux.it [ 1.779636] PTP clock support registered [ 1.779638] EDAC MC: Ver: 3.0.0 [ 1.779638] Registered efivars operations [ 1.779638] NetLabel: Initializing [ 1.779638] NetLabel: domain hash size = 128 [ 1.779638] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO [ 1.779638] NetLabel: unlabeled traffic allowed by default [ 1.779638] PCI: Using ACPI for IRQ routing [ 1.783688] PCI: pci_cache_line_size set to 64 bytes [ 1.783865] e820: reserve RAM buffer [mem 0x5f2f1000-0x5fffffff] [ 1.783866] e820: reserve RAM buffer [mem 0x5f42e000-0x5fffffff] [ 1.783867] e820: reserve RAM buffer [mem 0x5f539000-0x5fffffff] [ 1.783867] e820: reserve RAM buffer [mem 0x6a0ad000-0x6bffffff] [ 1.783868] e820: reserve RAM buffer [mem 0x6a0d8000-0x6bffffff] [ 1.783869] e820: reserve RAM buffer [mem 0x6a0de000-0x6bffffff] [ 1.783870] e820: reserve RAM buffer [mem 0x6a4f3000-0x6bffffff] [ 1.783871] e820: reserve RAM buffer [mem 0x6a855000-0x6bffffff] [ 1.783872] e820: reserve RAM buffer [mem 0x6a93f000-0x6bffffff] [ 1.783873] e820: reserve RAM buffer [mem 0x6a991000-0x6bffffff] [ 1.783873] e820: reserve RAM buffer [mem 0x6bea3000-0x6bffffff] [ 1.783874] e820: reserve RAM buffer [mem 0x6d4de000-0x6fffffff] [ 1.783875] e820: reserve RAM buffer [mem 0x6f95b000-0x6fffffff] [ 1.783875] e820: reserve RAM buffer [mem 0x76365018-0x77ffffff] [ 1.783877] e820: reserve RAM buffer [mem 0x7636b018-0x77ffffff] [ 1.783879] e820: reserve RAM buffer [mem 0x76376018-0x77ffffff] [ 1.783881] e820: reserve RAM buffer [mem 0x7637f018-0x77ffffff] [ 1.783883] e820: reserve RAM buffer [mem 0x763c0018-0x77ffffff] [ 1.783884] e820: reserve RAM buffer [mem 0x76401018-0x77ffffff] [ 1.783886] e820: reserve RAM buffer [mem 0x76442018-0x77ffffff] [ 1.783887] e820: reserve RAM buffer [mem 0x776cd000-0x77ffffff] [ 1.783888] e820: reserve RAM buffer [mem 0x77e5c000-0x77ffffff] [ 1.783889] e820: reserve RAM buffer [mem 0x77eef000-0x77ffffff] [ 1.783890] e820: reserve RAM buffer [mem 0x87ff00000-0x87fffffff] [ 1.783890] e820: reserve RAM buffer [mem 0x107f300000-0x107fffffff] [ 1.784350] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0 [ 1.784354] hpet0: 3 comparators, 32-bit 14.318180 MHz counter [ 1.786394] clocksource: Switched to clocksource tsc-early [ 1.796796] VFS: Disk quotas dquot_6.6.0 [ 1.796813] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ 1.796868] pnp: PnP ACPI init [ 1.797187] pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active) [ 1.797263] system 00:01: [io 0x0400-0x049f] has been reserved [ 1.797265] system 00:01: [io 0x0b00-0x0b0f] has been reserved [ 1.797267] system 00:01: [io 0x0b20-0x0b3f] has been reserved [ 1.797269] system 00:01: [io 0x0c00-0x0c01] has been reserved [ 1.797271] system 00:01: [io 0x0c14-0x0c15] has been reserved [ 1.797272] system 00:01: [io 0x0cd0-0x0cdf] has been reserved [ 1.797274] system 00:01: [mem 0xfec10000-0xfec10fff] has been reserved [ 1.797276] system 00:01: [mem 0xfed80000-0xfed80fff] has been reserved [ 1.797279] system 00:01: [mem 0xfed81d00-0xfed81dff] has been reserved [ 1.797280] system 00:01: [mem 0xfed81e00-0xfed81eff] has been reserved [ 1.797282] system 00:01: [mem 0xfedc0000-0xfedc1fff] has been reserved [ 1.797284] system 00:01: [mem 0xfedc4000-0xfeddffff] has been reserved [ 1.797286] system 00:01: [mem 0xfee00000-0xfeefffff] has been reserved [ 1.797288] system 00:01: [mem 0xff000000-0xffffffff] has been reserved [ 1.797292] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active) [ 1.797310] pnp 00:02: Plug and Play ACPI device, IDs PNP0501 (active) [ 1.797349] pnp: PnP ACPI: found 3 devices [ 1.803090] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns [ 1.803140] NET: Registered protocol family 2 [ 1.803320] tcp_listen_portaddr_hash hash table entries: 32768 (order: 7, 524288 bytes, linear) [ 1.803457] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, linear) [ 1.803968] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear) [ 1.804087] TCP: Hash tables configured (established 524288 bind 65536) [ 1.804386] MPTCP token hash table entries: 65536 (order: 8, 1572864 bytes, linear) [ 1.804476] UDP hash table entries: 32768 (order: 8, 1048576 bytes, linear) [ 1.804591] UDP-Lite hash table entries: 32768 (order: 8, 1048576 bytes, linear) [ 1.804765] NET: Registered protocol family 1 [ 1.804771] NET: Registered protocol family 44 [ 1.804786] pci 0000:c5:00.0: BAR 6: assigned [mem 0xce280000-0xce2fffff pref] [ 1.804789] pci 0000:c5:00.1: BAR 6: no space for [mem size 0x00080000 pref] [ 1.804791] pci 0000:c5:00.1: BAR 6: failed to assign [mem size 0x00080000 pref] [ 1.804794] pci 0000:c5:00.2: BAR 6: no space for [mem size 0x00080000 pref] [ 1.804796] pci 0000:c5:00.2: BAR 6: failed to assign [mem size 0x00080000 pref] [ 1.804798] pci 0000:c5:00.3: BAR 6: no space for [mem size 0x00080000 pref] [ 1.804800] pci 0000:c5:00.3: BAR 6: failed to assign [mem size 0x00080000 pref] [ 1.804803] pci 0000:c0:01.1: PCI bridge to [bus c5] [ 1.804808] pci 0000:c0:01.1: bridge window [mem 0xcde00000-0xce2fffff] [ 1.804811] pci 0000:c0:01.1: bridge window [mem 0x10a0200000-0x10a02fffff 64bit pref] [ 1.804817] pci 0000:c1:00.2: BAR 6: assigned [mem 0xc6000000-0xc600ffff pref] [ 1.804819] pci 0000:c0:01.5: PCI bridge to [bus c1] [ 1.804822] pci 0000:c0:01.5: bridge window [io 0xa000-0xafff] [ 1.804825] pci 0000:c0:01.5: bridge window [mem 0xc6000000-0xcdbfffff] [ 1.804832] pci 0000:c0:03.1: PCI bridge to [bus c4] [ 1.804846] pci 0000:c0:07.1: PCI bridge to [bus c2] [ 1.804849] pci 0000:c0:07.1: bridge window [mem 0xcdd00000-0xcddfffff] [ 1.804855] pci 0000:c0:08.1: PCI bridge to [bus c3] [ 1.804859] pci 0000:c0:08.1: bridge window [mem 0xcdc00000-0xcdcfffff] [ 1.804865] pci_bus 0000:c0: resource 4 [io 0x03b0-0x03bb window] [ 1.804866] pci_bus 0000:c0: resource 5 [io 0x03c0-0x03df window] [ 1.804868] pci_bus 0000:c0: resource 6 [mem 0x000a0000-0x000bffff window] [ 1.804870] pci_bus 0000:c0: resource 7 [io 0xa000-0xffff window] [ 1.804872] pci_bus 0000:c0: resource 8 [mem 0xc6000000-0xdfffffff window] [ 1.804874] pci_bus 0000:c0: resource 9 [mem 0x10a0200000-0x20b9fffffff window] [ 1.804877] pci_bus 0000:c5: resource 1 [mem 0xcde00000-0xce2fffff] [ 1.804878] pci_bus 0000:c5: resource 2 [mem 0x10a0200000-0x10a02fffff 64bit pref] [ 1.804881] pci_bus 0000:c1: resource 0 [io 0xa000-0xafff] [ 1.804882] pci_bus 0000:c1: resource 1 [mem 0xc6000000-0xcdbfffff] [ 1.804884] pci_bus 0000:c2: resource 1 [mem 0xcdd00000-0xcddfffff] [ 1.804887] pci_bus 0000:c3: resource 1 [mem 0xcdc00000-0xcdcfffff] [ 1.804896] pci 0000:80:01.1: bridge window [io 0x1000-0x0fff] to [bus 84] add_size 1000 [ 1.804899] pci 0000:80:01.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 84] add_size 200000 add_align 100000 [ 1.804902] pci 0000:80:01.1: bridge window [mem 0x00100000-0x000fffff] to [bus 84] add_size 200000 add_align 100000 [ 1.804908] pci 0000:80:01.1: BAR 14: assigned [mem 0xab300000-0xab4fffff] [ 1.804911] pci 0000:80:01.1: BAR 15: assigned [mem 0x20bc0200000-0x20bc03fffff 64bit pref] [ 1.804913] pci 0000:80:01.1: BAR 13: assigned [io 0x7000-0x7fff] [ 1.804915] pci 0000:80:01.1: PCI bridge to [bus 84] [ 1.804919] pci 0000:80:01.1: bridge window [io 0x7000-0x7fff] [ 1.804924] pci 0000:80:01.1: bridge window [mem 0xab300000-0xab4fffff] [ 1.804929] pci 0000:80:01.1: bridge window [mem 0x20bc0200000-0x20bc03fffff 64bit pref] [ 1.804937] pci 0000:80:03.1: PCI bridge to [bus 85] [ 1.804952] pci 0000:80:07.1: PCI bridge to [bus 83] [ 1.804955] pci 0000:80:07.1: bridge window [mem 0xab200000-0xab2fffff] [ 1.804961] pci 0000:80:08.1: PCI bridge to [bus 82] [ 1.804965] pci 0000:80:08.1: bridge window [mem 0xab100000-0xab1fffff] [ 1.804971] pci 0000:80:08.3: PCI bridge to [bus 81] [ 1.804974] pci 0000:80:08.3: bridge window [mem 0xab000000-0xab0fffff] [ 1.804980] pci_bus 0000:80: resource 4 [io 0x7000-0x9fff window] [ 1.804982] pci_bus 0000:80: resource 5 [mem 0xab000000-0xc4ffffff window] [ 1.804983] pci_bus 0000:80: resource 6 [mem 0x20bc0200000-0x406bfffffff window] [ 1.804986] pci_bus 0000:84: resource 0 [io 0x7000-0x7fff] [ 1.804987] pci_bus 0000:84: resource 1 [mem 0xab300000-0xab4fffff] [ 1.804989] pci_bus 0000:84: resource 2 [mem 0x20bc0200000-0x20bc03fffff 64bit pref] [ 1.804991] pci_bus 0000:83: resource 1 [mem 0xab200000-0xab2fffff] [ 1.804993] pci_bus 0000:82: resource 1 [mem 0xab100000-0xab1fffff] [ 1.804995] pci_bus 0000:81: resource 1 [mem 0xab000000-0xab0fffff] [ 1.805003] pci 0000:40:03.1: bridge window [io 0x1000-0x0fff] to [bus 45] add_size 1000 [ 1.805006] pci 0000:40:03.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 45] add_size 200000 add_align 100000 [ 1.805008] pci 0000:40:03.1: bridge window [mem 0x00100000-0x000fffff] to [bus 45] add_size 200000 add_align 100000 [ 1.805013] pci 0000:40:03.1: BAR 14: assigned [mem 0x90400000-0x905fffff] [ 1.805016] pci 0000:40:03.1: BAR 15: assigned [mem 0x406e0200000-0x406e03fffff 64bit pref] [ 1.805018] pci 0000:40:03.1: BAR 13: assigned [io 0x4000-0x4fff] [ 1.805020] pci 0000:40:01.1: PCI bridge to [bus 43] [ 1.805034] pci 0000:40:01.2: PCI bridge to [bus 44] [ 1.805048] pci 0000:40:03.1: PCI bridge to [bus 45] [ 1.805050] pci 0000:40:03.1: bridge window [io 0x4000-0x4fff] [ 1.805054] pci 0000:40:03.1: bridge window [mem 0x90400000-0x905fffff] [ 1.805057] pci 0000:40:03.1: bridge window [mem 0x406e0200000-0x406e03fffff 64bit pref] [ 1.805062] pci 0000:40:07.1: PCI bridge to [bus 41] [ 1.805066] pci 0000:40:07.1: bridge window [mem 0x90300000-0x903fffff] [ 1.805071] pci 0000:40:08.1: PCI bridge to [bus 42] [ 1.805075] pci 0000:40:08.1: bridge window [mem 0x90000000-0x902fffff] [ 1.805080] pci_bus 0000:40: resource 4 [io 0x4000-0x6fff window] [ 1.805082] pci_bus 0000:40: resource 5 [mem 0x90000000-0xa9ffffff window] [ 1.805084] pci_bus 0000:40: resource 6 [mem 0x406e0200000-0x601dfffffff window] [ 1.805086] pci_bus 0000:45: resource 0 [io 0x4000-0x4fff] [ 1.805088] pci_bus 0000:45: resource 1 [mem 0x90400000-0x905fffff] [ 1.805090] pci_bus 0000:45: resource 2 [mem 0x406e0200000-0x406e03fffff 64bit pref] [ 1.805092] pci_bus 0000:41: resource 1 [mem 0x90300000-0x903fffff] [ 1.805094] pci_bus 0000:42: resource 1 [mem 0x90000000-0x902fffff] [ 1.805103] pci 0000:00:03.1: bridge window [io 0x1000-0x0fff] to [bus 03] add_size 1000 [ 1.805106] pci 0000:00:03.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000 add_align 100000 [ 1.805108] pci 0000:00:03.1: bridge window [mem 0x00100000-0x000fffff] to [bus 03] add_size 200000 add_align 100000 [ 1.805114] pci 0000:00:03.1: BAR 14: assigned [mem 0xe1300000-0xe14fffff] [ 1.805117] pci 0000:00:03.1: BAR 15: assigned [mem 0x60200200000-0x602003fffff 64bit pref] [ 1.805121] pci 0000:00:03.1: BAR 13: assigned [io 0x1000-0x1fff] [ 1.805123] pci 0000:00:01.1: PCI bridge to [bus 04] [ 1.805131] pci 0000:00:03.1: PCI bridge to [bus 03] [ 1.805134] pci 0000:00:03.1: bridge window [io 0x1000-0x1fff] [ 1.805140] pci 0000:00:03.1: bridge window [mem 0xe1300000-0xe14fffff] [ 1.805145] pci 0000:00:03.1: bridge window [mem 0x60200200000-0x602003fffff 64bit pref] [ 1.805153] pci 0000:00:07.1: PCI bridge to [bus 01] [ 1.805156] pci 0000:00:07.1: bridge window [mem 0xe1200000-0xe12fffff] [ 1.805162] pci 0000:00:08.1: PCI bridge to [bus 02] [ 1.805166] pci 0000:00:08.1: bridge window [mem 0xe1000000-0xe11fffff] [ 1.805172] pci_bus 0000:00: resource 4 [io 0x0000-0x03af window] [ 1.805174] pci_bus 0000:00: resource 5 [io 0x03e0-0x0cf7 window] [ 1.805175] pci_bus 0000:00: resource 6 [io 0x0d00-0x0fff window] [ 1.805177] pci_bus 0000:00: resource 7 [io 0x1000-0x3fff window] [ 1.805179] pci_bus 0000:00: resource 8 [mem 0xe1000000-0xfcffffff window] [ 1.805181] pci_bus 0000:00: resource 9 [mem 0x60200200000-0x7fcffffffff window] [ 1.805183] pci_bus 0000:03: resource 0 [io 0x1000-0x1fff] [ 1.805184] pci_bus 0000:03: resource 1 [mem 0xe1300000-0xe14fffff] [ 1.805186] pci_bus 0000:03: resource 2 [mem 0x60200200000-0x602003fffff 64bit pref] [ 1.805188] pci_bus 0000:01: resource 1 [mem 0xe1200000-0xe12fffff] [ 1.805190] pci_bus 0000:02: resource 1 [mem 0xe1000000-0xe11fffff] [ 1.805244] pci 0000:c1:00.1: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff] [ 1.805446] pci 0000:42:00.3: enabling device (0140 -> 0142) [ 1.805577] pci 0000:02:00.3: enabling device (0140 -> 0142) [ 1.805634] PCI: CLS 64 bytes, default 64 [ 1.805667] Trying to unpack rootfs image as initramfs... [ 2.600852] Freeing initrd memory: 61216K [ 2.600896] pci 0000:c0:00.2: AMD-Vi: IOMMU performance counters supported [ 2.600962] pci 0000:80:00.2: AMD-Vi: IOMMU performance counters supported [ 2.600992] pci 0000:40:00.2: AMD-Vi: IOMMU performance counters supported [ 2.601026] pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported [ 2.601081] pci 0000:c0:01.0: Adding to iommu group 0 [ 2.601096] pci 0000:c0:01.1: Adding to iommu group 1 [ 2.601111] pci 0000:c0:01.5: Adding to iommu group 2 [ 2.601130] pci 0000:c0:02.0: Adding to iommu group 3 [ 2.601156] pci 0000:c0:03.0: Adding to iommu group 4 [ 2.601172] pci 0000:c0:03.1: Adding to iommu group 5 [ 2.601192] pci 0000:c0:04.0: Adding to iommu group 6 [ 2.601211] pci 0000:c0:05.0: Adding to iommu group 7 [ 2.601233] pci 0000:c0:07.0: Adding to iommu group 8 [ 2.601247] pci 0000:c0:07.1: Adding to iommu group 9 [ 2.601268] pci 0000:c0:08.0: Adding to iommu group 10 [ 2.601282] pci 0000:c0:08.1: Adding to iommu group 11 [ 2.601298] pci 0000:c5:00.0: Adding to iommu group 12 [ 2.601317] pci 0000:c5:00.1: Adding to iommu group 13 [ 2.601332] pci 0000:c5:00.2: Adding to iommu group 14 [ 2.601347] pci 0000:c5:00.3: Adding to iommu group 15 [ 2.601389] pci 0000:c1:00.0: Adding to iommu group 16 [ 2.601403] pci 0000:c1:00.1: Adding to iommu group 16 [ 2.601417] pci 0000:c1:00.2: Adding to iommu group 16 [ 2.601431] pci 0000:c1:00.4: Adding to iommu group 16 [ 2.601446] pci 0000:c2:00.0: Adding to iommu group 17 [ 2.601461] pci 0000:c2:00.2: Adding to iommu group 18 [ 2.601477] pci 0000:c3:00.0: Adding to iommu group 19 [ 2.601492] pci 0000:c3:00.2: Adding to iommu group 20 [ 2.601515] pci 0000:80:01.0: Adding to iommu group 21 [ 2.601532] pci 0000:80:01.1: Adding to iommu group 22 [ 2.601552] pci 0000:80:02.0: Adding to iommu group 23 [ 2.601574] pci 0000:80:03.0: Adding to iommu group 24 [ 2.601590] pci 0000:80:03.1: Adding to iommu group 25 [ 2.601611] pci 0000:80:04.0: Adding to iommu group 26 [ 2.601631] pci 0000:80:05.0: Adding to iommu group 27 [ 2.601653] pci 0000:80:07.0: Adding to iommu group 28 [ 2.601667] pci 0000:80:07.1: Adding to iommu group 29 [ 2.601692] pci 0000:80:08.0: Adding to iommu group 30 [ 2.601706] pci 0000:80:08.1: Adding to iommu group 31 [ 2.601720] pci 0000:80:08.3: Adding to iommu group 32 [ 2.601735] pci 0000:83:00.0: Adding to iommu group 33 [ 2.601751] pci 0000:83:00.2: Adding to iommu group 34 [ 2.601766] pci 0000:82:00.0: Adding to iommu group 35 [ 2.601781] pci 0000:82:00.2: Adding to iommu group 36 [ 2.601795] pci 0000:81:00.0: Adding to iommu group 37 [ 2.601823] pci 0000:40:01.0: Adding to iommu group 38 [ 2.601839] pci 0000:40:01.1: Adding to iommu group 39 [ 2.601854] pci 0000:40:01.2: Adding to iommu group 40 [ 2.601874] pci 0000:40:02.0: Adding to iommu group 41 [ 2.601895] pci 0000:40:03.0: Adding to iommu group 42 [ 2.601910] pci 0000:40:03.1: Adding to iommu group 43 [ 2.601929] pci 0000:40:04.0: Adding to iommu group 44 [ 2.601949] pci 0000:40:05.0: Adding to iommu group 45 [ 2.601970] pci 0000:40:07.0: Adding to iommu group 46 [ 2.601984] pci 0000:40:07.1: Adding to iommu group 47 [ 2.602005] pci 0000:40:08.0: Adding to iommu group 48 [ 2.602019] pci 0000:40:08.1: Adding to iommu group 49 [ 2.602035] pci 0000:41:00.0: Adding to iommu group 50 [ 2.602050] pci 0000:41:00.2: Adding to iommu group 51 [ 2.602066] pci 0000:42:00.0: Adding to iommu group 52 [ 2.602081] pci 0000:42:00.1: Adding to iommu group 53 [ 2.602098] pci 0000:42:00.2: Adding to iommu group 54 [ 2.602115] pci 0000:42:00.3: Adding to iommu group 55 [ 2.602137] pci 0000:00:01.0: Adding to iommu group 56 [ 2.602151] pci 0000:00:01.1: Adding to iommu group 57 [ 2.602173] pci 0000:00:02.0: Adding to iommu group 58 [ 2.602196] pci 0000:00:03.0: Adding to iommu group 59 [ 2.602213] pci 0000:00:03.1: Adding to iommu group 60 [ 2.602233] pci 0000:00:04.0: Adding to iommu group 61 [ 2.602255] pci 0000:00:05.0: Adding to iommu group 62 [ 2.602276] pci 0000:00:07.0: Adding to iommu group 63 [ 2.602290] pci 0000:00:07.1: Adding to iommu group 64 [ 2.602311] pci 0000:00:08.0: Adding to iommu group 65 [ 2.602330] pci 0000:00:08.1: Adding to iommu group 66 [ 2.602357] pci 0000:00:14.0: Adding to iommu group 67 [ 2.602375] pci 0000:00:14.3: Adding to iommu group 67 [ 2.602441] pci 0000:00:18.0: Adding to iommu group 68 [ 2.602458] pci 0000:00:18.1: Adding to iommu group 68 [ 2.602475] pci 0000:00:18.2: Adding to iommu group 68 [ 2.602493] pci 0000:00:18.3: Adding to iommu group 68 [ 2.602511] pci 0000:00:18.4: Adding to iommu group 68 [ 2.602528] pci 0000:00:18.5: Adding to iommu group 68 [ 2.602545] pci 0000:00:18.6: Adding to iommu group 68 [ 2.602563] pci 0000:00:18.7: Adding to iommu group 68 [ 2.602578] pci 0000:01:00.0: Adding to iommu group 69 [ 2.602594] pci 0000:01:00.2: Adding to iommu group 70 [ 2.602610] pci 0000:02:00.0: Adding to iommu group 71 [ 2.602625] pci 0000:02:00.2: Adding to iommu group 72 [ 2.602641] pci 0000:02:00.3: Adding to iommu group 73 [ 2.616825] pci 0000:c0:00.2: AMD-Vi: Found IOMMU cap 0x40 [ 2.616832] pci 0000:c0:00.2: AMD-Vi: Extended features (0x58f77ef22294ade): [ 2.616834] PPR X2APIC NX GT IA GA PC GA_vAPIC [ 2.616839] pci 0000:80:00.2: AMD-Vi: Found IOMMU cap 0x40 [ 2.616841] pci 0000:80:00.2: AMD-Vi: Extended features (0x58f77ef22294ade): [ 2.616842] PPR X2APIC NX GT IA GA PC GA_vAPIC [ 2.616846] pci 0000:40:00.2: AMD-Vi: Found IOMMU cap 0x40 [ 2.616847] pci 0000:40:00.2: AMD-Vi: Extended features (0x58f77ef22294ade): [ 2.616849] PPR X2APIC NX GT IA GA PC GA_vAPIC [ 2.616852] pci 0000:00:00.2: AMD-Vi: Found IOMMU cap 0x40 [ 2.616854] pci 0000:00:00.2: AMD-Vi: Extended features (0x58f77ef22294ade): [ 2.616855] PPR X2APIC NX GT IA GA PC GA_vAPIC [ 2.616858] AMD-Vi: Interrupt remapping enabled [ 2.616859] AMD-Vi: Virtual APIC enabled [ 2.616860] AMD-Vi: X2APIC enabled [ 2.617151] AMD-Vi: Lazy IO/TLB flushing enabled [ 2.617154] PCI-DMA: Using software bounce buffering for IO (SWIOTLB) [ 2.617156] software IO TLB: mapped [mem 0x0000000072363000-0x0000000076363000] (64MB) [ 2.617277] amd_uncore: 4 amd_df counters detected [ 2.617283] amd_uncore: 6 amd_l3 counters detected [ 2.617863] LVT offset 0 assigned for vector 0x400 [ 2.618118] perf: AMD IBS detected (0x000003ff) [ 2.618124] perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank). [ 2.618129] perf/amd_iommu: Detected AMD IOMMU #1 (2 banks, 4 counters/bank). [ 2.618135] perf/amd_iommu: Detected AMD IOMMU #2 (2 banks, 4 counters/bank). [ 2.618141] perf/amd_iommu: Detected AMD IOMMU #3 (2 banks, 4 counters/bank). [ 2.622917] Initialise system trusted keyrings [ 2.622931] Key type blacklist registered [ 2.622964] workingset: timestamp_bits=36 max_order=24 bucket_order=0 [ 2.623985] zbud: loaded [ 2.624336] integrity: Platform Keyring initialized [ 2.627246] NET: Registered protocol family 38 [ 2.627249] Key type asymmetric registered [ 2.627250] Asymmetric key parser 'x509' registered [ 2.627257] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247) [ 2.627339] io scheduler mq-deadline registered [ 2.627341] io scheduler kyber registered [ 2.627361] io scheduler bfq registered [ 2.627653] atomic64_test: passed for x86-64 platform with CX8 and with SSE [ 2.627803] pcieport 0000:c0:01.1: PME: Signaling with IRQ 30 [ 2.627937] pcieport 0000:c0:01.5: PME: Signaling with IRQ 31 [ 2.628106] pcieport 0000:c0:03.1: PME: Signaling with IRQ 32 [ 2.628374] pcieport 0000:c0:07.1: PME: Signaling with IRQ 34 [ 2.628543] pcieport 0000:c0:08.1: PME: Signaling with IRQ 36 [ 2.628697] pcieport 0000:80:01.1: PME: Signaling with IRQ 37 [ 2.628724] pcieport 0000:80:01.1: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+ [ 2.628983] pcieport 0000:80:03.1: PME: Signaling with IRQ 38 [ 2.629213] pcieport 0000:80:07.1: PME: Signaling with IRQ 40 [ 2.629378] pcieport 0000:80:08.1: PME: Signaling with IRQ 42 [ 2.629532] pcieport 0000:80:08.3: PME: Signaling with IRQ 43 [ 2.629673] pcieport 0000:40:01.1: PME: Signaling with IRQ 44 [ 2.629873] pcieport 0000:40:01.2: PME: Signaling with IRQ 45 [ 2.630052] pcieport 0000:40:03.1: PME: Signaling with IRQ 46 [ 2.630069] pcieport 0000:40:03.1: pciehp: Slot #35 AttnBtn+ PwrCtrl+ MRL- AttnInd+ PwrInd+ HotPlug+ Surprise+ Interlock+ NoCompl+ IbPresDis- LLActRep+ [ 2.630267] pcieport 0000:40:07.1: PME: Signaling with IRQ 48 [ 2.630392] pcieport 0000:40:08.1: PME: Signaling with IRQ 49 [ 2.630529] pcieport 0000:00:01.1: PME: Signaling with IRQ 50 [ 2.630682] pcieport 0000:00:03.1: PME: Signaling with IRQ 51 [ 2.630704] pcieport 0000:00:03.1: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+ [ 2.630965] pcieport 0000:00:07.1: PME: Signaling with IRQ 53 [ 2.631085] pcieport 0000:00:08.1: PME: Signaling with IRQ 54 [ 2.631247] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 [ 2.631277] efifb: probing for efifb [ 2.631303] efifb: framebuffer at 0xcc000000, using 3072k, total 3072k [ 2.631305] efifb: mode is 1024x768x32, linelength=4096, pages=1 [ 2.631306] efifb: scrolling: redraw [ 2.631309] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0 [ 2.654925] Console: switching to colour frame buffer device 128x48 [ 2.678735] fb0: EFI VGA frame buffer device [ 2.678988] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0 [ 2.679320] ACPI: Power Button [PWRB] [ 2.679491] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1 [ 2.679821] ACPI: Power Button [PWRF] [ 2.681446] EDAC MC0: Giving out device to module ghes_edac.c controller ghes_edac: DEV ghes (INTERRUPT) [ 2.682210] GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC. [ 2.682577] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled [ 2.682896] 00:02: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A [ 2.683555] Non-volatile memory driver v1.3 [ 2.685333] tpm_tis STM7320:00: 2.0 TPM (device-id 0x0, rev-id 78) [ 2.701791] rdac: device handler registered [ 2.701992] hp_sw: device handler registered [ 2.702160] emc: device handler registered [ 2.702407] alua: device handler registered [ 2.702648] libphy: Fixed MDIO Bus: probed [ 2.702841] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 2.703105] ehci-pci: EHCI PCI platform driver [ 2.711292] ehci-pci 0000:c1:00.4: EHCI Host Controller [ 2.719183] ehci-pci 0000:c1:00.4: new USB bus registered, assigned bus number 1 [ 2.727908] ehci-pci 0000:c1:00.4: irq 56, io mem 0xcdba4000 [ 2.742326] ehci-pci 0000:c1:00.4: USB 2.0 started, EHCI 1.00 [ 2.750514] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 [ 2.759648] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.768192] usb usb1: Product: EHCI Host Controller [ 2.777047] usb usb1: Manufacturer: Linux 5.10.0-rc1-sev-es ehci_hcd [ 2.785778] usb usb1: SerialNumber: 0000:c1:00.4 [ 2.795038] hub 1-0:1.0: USB hub found [ 2.803622] hub 1-0:1.0: 8 ports detected [ 2.813588] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver [ 2.824119] ohci-pci: OHCI PCI platform driver [ 2.833508] uhci_hcd: USB Universal Host Controller Interface driver [ 2.842949] xhci_hcd 0000:42:00.3: xHCI Host Controller [ 2.851662] xhci_hcd 0000:42:00.3: new USB bus registered, assigned bus number 2 [ 2.860831] xhci_hcd 0000:42:00.3: hcc params 0x0260ffe5 hci version 0x110 quirks 0x0000000000000410 [ 2.870995] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 [ 2.880720] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.890028] usb usb2: Product: xHCI Host Controller [ 2.899012] usb usb2: Manufacturer: Linux 5.10.0-rc1-sev-es xhci-hcd [ 2.908247] usb usb2: SerialNumber: 0000:42:00.3 [ 2.919428] hub 2-0:1.0: USB hub found [ 2.930028] hub 2-0:1.0: 2 ports detected [ 2.939828] xhci_hcd 0000:42:00.3: xHCI Host Controller [ 2.949339] xhci_hcd 0000:42:00.3: new USB bus registered, assigned bus number 3 [ 2.958420] xhci_hcd 0000:42:00.3: Host supports USB 3.1 Enhanced SuperSpeed [ 2.967214] usb usb3: We don't know the algorithms for LPM for this host, disabling LPM. [ 2.976995] usb usb3: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 [ 2.986110] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.995796] usb usb3: Product: xHCI Host Controller [ 3.004831] usb usb3: Manufacturer: Linux 5.10.0-rc1-sev-es xhci-hcd [ 3.013427] usb usb3: SerialNumber: 0000:42:00.3 [ 3.021828] hub 3-0:1.0: USB hub found [ 3.029871] hub 3-0:1.0: 2 ports detected [ 3.038099] xhci_hcd 0000:02:00.3: xHCI Host Controller [ 3.046672] xhci_hcd 0000:02:00.3: new USB bus registered, assigned bus number 4 [ 3.056991] xhci_hcd 0000:02:00.3: hcc params 0x0260ffe5 hci version 0x110 quirks 0x0000000000000410 [ 3.065622] usb usb4: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 [ 3.074826] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 3.083444] usb usb4: Product: xHCI Host Controller [ 3.092047] usb usb4: Manufacturer: Linux 5.10.0-rc1-sev-es xhci-hcd [ 3.100485] usb usb4: SerialNumber: 0000:02:00.3 [ 3.109954] hub 4-0:1.0: USB hub found [ 3.119303] hub 4-0:1.0: 2 ports detected [ 3.127936] xhci_hcd 0000:02:00.3: xHCI Host Controller [ 3.136257] xhci_hcd 0000:02:00.3: new USB bus registered, assigned bus number 5 [ 3.144878] xhci_hcd 0000:02:00.3: Host supports USB 3.1 Enhanced SuperSpeed [ 3.153294] usb usb5: We don't know the algorithms for LPM for this host, disabling LPM. [ 3.161849] usb usb5: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 [ 3.171733] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 3.181770] usb usb5: Product: xHCI Host Controller [ 3.190821] usb usb5: Manufacturer: Linux 5.10.0-rc1-sev-es xhci-hcd [ 3.199713] usb usb5: SerialNumber: 0000:02:00.3 [ 3.208493] hub 5-0:1.0: USB hub found [ 3.216866] hub 5-0:1.0: 2 ports detected [ 3.226218] usbcore: registered new interface driver usbserial_generic [ 3.236064] usbserial: USB Serial support registered for generic [ 3.245282] i8042: PNP: No PS/2 controller found. [ 3.253855] i8042: Probing ports directly. [ 3.524325] usb 2-1: new high-speed USB device number 2 using xhci_hcd [ 3.740326] usb 4-2: new high-speed USB device number 2 using xhci_hcd [ 3.784433] i8042: Can't read CTR while initializing i8042 [ 3.794666] tsc: Refined TSC clocksource calibration: 2994.375 MHz [ 3.794671] i8042: probe of i8042 failed with error -5 [ 3.805197] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2b29837311d, max_idle_ns: 440795235573 ns [ 3.818259] usb 2-1: New USB device found, idVendor=0424, idProduct=2744, bcdDevice= 2.21 [ 3.820735] mousedev: PS/2 mouse device common for all mice [ 3.827108] rtc_cmos 00:00: RTC can wake from S4 [ 3.838136] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 3.870813] usb 2-1: Product: USB2744 [ 3.881786] usb 2-1: Manufacturer: Microchip Tech [ 3.893327] clocksource: Switched to clocksource tsc [ 3.903465] rtc_cmos 00:00: registered as rtc0 [ 3.909166] usb 4-2: New USB device found, idVendor=0424, idProduct=2744, bcdDevice= 2.21 [ 3.922030] usb 4-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 3.922032] rtc_cmos 00:00: setting system clock to 2021-01-03T20:53:48 UTC (1609707228) [ 3.931187] usb 4-2: Product: USB2744 [ 3.943418] rtc_cmos 00:00: alarms up to one month, y3k, 114 bytes nvram, hpet irqs [ 3.954709] usb 4-2: Manufacturer: Microchip Tech [ 3.971660] EFI Variables Facility v0.08 2004-May-17 [ 3.977870] usb 3-1: new SuperSpeed Gen 1 USB device number 2 using xhci_hcd [ 4.024019] hid: raw HID events driver (C) Jiri Kosina [ 4.024022] hub 2-1:1.0: USB hub found [ 4.033059] usbcore: registered new interface driver usbhid [ 4.044981] hub 2-1:1.0: 3 ports detected [ 4.055415] usbhid: USB HID core driver [ 4.066759] usb 5-2: new SuperSpeed Gen 1 USB device number 2 using xhci_hcd [ 4.078329] drop_monitor: Initializing network drop monitor service [ 4.089686] hub 4-2:1.0: USB hub found [ 4.101457] Initializing XFRM netlink socket [ 4.112038] usb 3-1: New USB device found, idVendor=0424, idProduct=5744, bcdDevice= 2.21 [ 4.127447] NET: Registered protocol family 10 [ 4.133237] usb 3-1: New USB device strings: Mfr=2, Product=3, SerialNumber=0 [ 4.145287] Segment Routing with IPv6 [ 4.156115] usb 3-1: Product: USB5744 [ 4.168042] NET: Registered protocol family 17 [ 4.178759] usb 3-1: Manufacturer: Microchip Tech [ 4.178770] hub 4-2:1.0: 4 ports detected [ 4.188285] mpls_gso: MPLS GSO support [ 4.199352] usb 5-2: New USB device found, idVendor=0424, idProduct=5744, bcdDevice= 2.21 [ 4.234328] usb 5-2: New USB device strings: Mfr=2, Product=3, SerialNumber=0 [ 4.245244] usb 5-2: Product: USB5744 [ 4.257257] usb 5-2: Manufacturer: Microchip Tech [ 4.270324] microcode: CPU0: patch_level=0x08301038 [ 4.281875] microcode: CPU1: patch_level=0x08301038 [ 4.293296] microcode: CPU2: patch_level=0x08301038 [ 4.305167] microcode: CPU3: patch_level=0x08301038 [ 4.316000] microcode: CPU4: patch_level=0x08301038 [ 4.321363] hub 5-2:1.0: USB hub found [ 4.324981] microcode: CPU5: patch_level=0x08301038 [ 4.333161] hub 3-1:1.0: USB hub found [ 4.342025] microcode: CPU6: patch_level=0x08301038 [ 4.351688] hub 5-2:1.0: 3 ports detected [ 4.361978] microcode: CPU7: patch_level=0x08301038 [ 4.372576] hub 3-1:1.0: 2 ports detected [ 4.382691] microcode: CPU8: patch_level=0x08301038 [ 4.401488] microcode: CPU9: patch_level=0x08301038 [ 4.411118] microcode: CPU10: patch_level=0x08301038 [ 4.421422] microcode: CPU11: patch_level=0x08301038 [ 4.430249] microcode: CPU12: patch_level=0x08301038 [ 4.440096] microcode: CPU13: patch_level=0x08301038 [ 4.447944] microcode: CPU14: patch_level=0x08301038 [ 4.456724] microcode: CPU15: patch_level=0x08301038 [ 4.465168] microcode: CPU16: patch_level=0x08301038 [ 4.473633] microcode: CPU17: patch_level=0x08301038 [ 4.480845] microcode: CPU18: patch_level=0x08301038 [ 4.488877] microcode: CPU19: patch_level=0x08301038 [ 4.495451] microcode: CPU20: patch_level=0x08301038 [ 4.501386] microcode: CPU21: patch_level=0x08301038 [ 4.507192] microcode: CPU22: patch_level=0x08301038 [ 4.512569] microcode: CPU23: patch_level=0x08301038 [ 4.518532] microcode: CPU24: patch_level=0x08301038 [ 4.524153] microcode: CPU25: patch_level=0x08301038 [ 4.529482] microcode: CPU26: patch_level=0x08301038 [ 4.534344] microcode: CPU27: patch_level=0x08301038 [ 4.539525] microcode: CPU28: patch_level=0x08301038 [ 4.544241] microcode: CPU29: patch_level=0x08301038 [ 4.548425] microcode: CPU30: patch_level=0x08301038 [ 4.552790] microcode: CPU31: patch_level=0x08301038 [ 4.556725] microcode: Microcode Update Driver: v2.2. [ 4.557164] resctrl: L3 allocation detected [ 4.564643] resctrl: L3DATA allocation detected [ 4.568447] resctrl: L3CODE allocation detected [ 4.571941] resctrl: MB allocation detected [ 4.575295] resctrl: L3 monitoring detected [ 4.578505] IPI shorthand broadcast: enabled [ 4.581662] AVX2 version of gcm_enc/dec engaged. [ 4.585204] AES CTR mode by8 optimization enabled [ 4.599453] sched_clock: Marking stable (3305899940, 1293547421)->(4632411205, -32963844) [ 4.603836] registered taskstats version 1 [ 4.608952] Loading compiled-in X.509 certificates [ 4.635445] Loaded X.509 cert 'Build time autogenerated kernel key: 0e42ac280b2b37126ad4baaa939a828639d1f53c' [ 4.640036] zswap: loaded using pool lzo/zbud [ 4.644817] page_owner is disabled [ 4.650406] Key type trusted registered [ 4.657137] Key type encrypted registered [ 4.663348] integrity: Loading X.509 certificate: UEFI:db [ 4.665321] usb 1-1: new high-speed USB device number 2 using ehci-pci [ 4.668424] integrity: Loaded X.509 cert 'Hewlett Packard Enterprise Company: HPE UEFI Secure Boot 2016 DB Key: a068bfe686eec826df935e3bb1cd36f1c2772560' [ 4.680329] usb 2-1.3: new high-speed USB device number 3 using xhci_hcd [ 4.684378] integrity: Loading X.509 certificate: UEFI:db [ 4.690538] usb 4-2.1: new high-speed USB device number 3 using xhci_hcd [ 4.703395] integrity: Loaded X.509 cert 'Hewlett-Packard Company: HP UEFI Secure Boot 2013 DB key: 1d7cf2c2b92673f69c8ee1ec7063967ab9b62bec' [ 4.717931] integrity: Loading X.509 certificate: UEFI:db [ 4.724637] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4' [ 4.732056] integrity: Loading X.509 certificate: UEFI:db [ 4.740139] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53' [ 4.748847] integrity: Loading X.509 certificate: UEFI:db [ 4.758041] integrity: Loaded X.509 cert 'SUSE Linux Enterprise Secure Boot Signkey: 3fb077b6cebc6ff2522e1c148c57c777c788e3e7' [ 4.776427] integrity: Loading X.509 certificate: UEFI:db [ 4.779295] usb 4-2.1: New USB device found, idVendor=0424, idProduct=2660, bcdDevice= 8.01 [ 4.785940] integrity: Loaded X.509 cert 'VMware, Inc.: 4ad8ba0472073d28127706ddc6ccb9050441bbc7' [ 4.794842] usb 4-2.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0 [ 4.798462] usb 2-1.3: New USB device found, idVendor=0424, idProduct=2740, bcdDevice= 2.00 [ 4.805273] integrity: Loading X.509 certificate: UEFI:db [ 4.805629] integrity: Loaded X.509 cert 'VMware, Inc.: VMware Secure Boot Signing: 04597f3e1ffb240bba0ff0f05d5eb05f3e15f6d7' [ 4.816429] usb 2-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 4.826966] usb 1-1: New USB device found, idVendor=03f0, idProduct=7029, bcdDevice= 0.02 [ 4.838919] usb 2-1.3: Product: Hub Controller [ 4.850602] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 4.862117] usb 2-1.3: Manufacturer: Microchip Tech [ 4.863290] integrity: Loading X.509 certificate: UEFI:MokListRT (MOKvar table) [ 4.866614] integrity: Loaded X.509 cert 'CentOS Secure Boot CA 2: 70007f99209c126be14774eaec7b6d9631f34dca' [ 4.866619] ima: Allocated hash algorithm: sha1 [ 4.873682] usb 1-1: Product: Virtual Keyboard [ 4.873683] usb 1-1: Manufacturer: iLO [ 4.880931] ima: No architecture policies found [ 4.886227] input: iLO Virtual Keyboard as /devices/pci0000:c0/0000:c0:01.5/0000:c1:00.4/usb1/1-1/1-1:1.0/0003:03F0:7029.0001/input/input2 [ 4.898301] evm: Initialising EVM extended attributes: [ 4.898302] evm: security.selinux [ 4.898303] evm: security.ima [ 4.898303] evm: security.capability [ 4.898304] evm: HMAC attrs: 0x1 [ 4.913448] hub 4-2.1:1.0: USB hub found [ 4.975920] hid-generic 0003:03F0:7029.0001: input,hidraw0: USB HID v1.10 Keyboard [iLO Virtual Keyboard] on usb-0000:c1:00.4-1/input0 [ 4.990528] hub 4-2.1:1.0: 2 ports detected [ 5.025468] input: iLO Virtual Keyboard as /devices/pci0000:c0/0000:c0:01.5/0000:c1:00.4/usb1/1-1/1-1:1.1/0003:03F0:7029.0002/input/input3 [ 5.105319] usb 4-2.4: new high-speed USB device number 4 using xhci_hcd [ 5.124763] hid-generic 0003:03F0:7029.0002: input,hidraw1: USB HID v1.10 Mouse [iLO Virtual Keyboard] on usb-0000:c1:00.4-1/input1 [ 5.205622] Freeing unused decrypted memory: 2036K [ 5.219108] Freeing unused kernel image (initmem) memory: 2368K [ 5.228167] usb 4-2.4: New USB device found, idVendor=0424, idProduct=2740, bcdDevice= 2.00 [ 5.232266] Write protecting the kernel read-only data: 22528k [ 5.244643] usb 4-2.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 5.244644] usb 4-2.4: Product: Hub Controller [ 5.244645] usb 4-2.4: Manufacturer: Microchip Tech [ 5.296260] Freeing unused kernel image (text/rodata gap) memory: 2036K [ 5.308287] Freeing unused kernel image (rodata/data gap) memory: 648K [ 5.320270] Run /init as init process [ 5.331330] with arguments: [ 5.331331] /init [ 5.331331] with environment: [ 5.331332] HOME=/ [ 5.331332] TERM=linux [ 5.331333] BOOT_IMAGE=(hd0,gpt2)/vmlinuz-5.10.0-rc1-sev-es [ 5.331333] crashkernel=auto [ 5.391395] systemd[1]: systemd 239 (239-41.el8_3) running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=legacy) [ 5.439344] systemd[1]: Detected architecture x86-64. [ 5.452427] systemd[1]: Running in initial RAM disk. [ 5.506535] systemd[1]: Set hostname to . [ 5.551548] systemd[1]: Reached target Local File Systems. [ 5.576718] systemd[1]: Listening on udev Control Socket. [ 5.599377] systemd[1]: Listening on Journal Socket (/dev/log). [ 5.623739] systemd[1]: Reached target Timers. [ 5.650598] systemd[1]: Reached target Swap. [ 5.671557] systemd[1]: Listening on udev Kernel Socket. [ 6.315754] dca service started, version 1.12.1 [ 6.327950] libata version 3.00 loaded. [ 6.331443] ahci 0000:81:00.0: version 3.0 [ 6.331727] ahci 0000:81:00.0: AHCI 0001.0301 32 slots 2 ports 6 Gbps 0x3 impl SATA mode [ 6.341145] ahci 0000:81:00.0: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part [ 6.350407] igb: Intel(R) Gigabit Ethernet Network Driver [ 6.353380] scsi host0: ahci [ 6.359109] igb: Copyright (c) 2007-2014 Intel Corporation. [ 6.382931] scsi host1: ahci [ 6.391429] ata1: SATA max UDMA/133 abar m2048@0xab000000 port 0xab000100 irq 76 [ 6.400327] ata2: SATA max UDMA/133 abar m2048@0xab000000 port 0xab000180 irq 77 [ 6.480771] igb 0000:c5:00.0: added PHC on eth0 [ 6.490570] igb 0000:c5:00.0: Intel(R) Gigabit Ethernet Network Connection [ 6.499149] igb 0000:c5:00.0: eth0: (PCIe:5.0Gb/s:Width x4) 48:df:37:d5:b1:d4 [ 6.508236] igb 0000:c5:00.0: eth0: PBA No: G41713-018 [ 6.516491] igb 0000:c5:00.0: Using MSI-X interrupts. 8 rx queue(s), 8 tx queue(s) [ 6.585678] igb 0000:c5:00.1: added PHC on eth1 [ 6.596697] igb 0000:c5:00.1: Intel(R) Gigabit Ethernet Network Connection [ 6.606738] igb 0000:c5:00.1: eth1: (PCIe:5.0Gb/s:Width x4) 48:df:37:d5:b1:d5 [ 6.616700] igb 0000:c5:00.1: eth1: PBA No: G41713-018 [ 6.625965] igb 0000:c5:00.1: Using MSI-X interrupts. 8 rx queue(s), 8 tx queue(s) [ 6.698683] igb 0000:c5:00.2: added PHC on eth2 [ 6.709087] igb 0000:c5:00.2: Intel(R) Gigabit Ethernet Network Connection [ 6.718806] igb 0000:c5:00.2: eth2: (PCIe:5.0Gb/s:Width x4) 48:df:37:d5:b1:d6 [ 6.728573] igb 0000:c5:00.2: eth2: PBA No: G41713-018 [ 6.738444] igb 0000:c5:00.2: Using MSI-X interrupts. 8 rx queue(s), 8 tx queue(s) [ 6.817953] igb 0000:c5:00.3: added PHC on eth3 [ 6.827771] igb 0000:c5:00.3: Intel(R) Gigabit Ethernet Network Connection [ 6.837385] igb 0000:c5:00.3: eth3: (PCIe:5.0Gb/s:Width x4) 48:df:37:d5:b1:d7 [ 6.846462] igb 0000:c5:00.3: eth3: PBA No: G41713-018 [ 6.855699] igb 0000:c5:00.3: Using MSI-X interrupts. 8 rx queue(s), 8 tx queue(s) [ 6.860334] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300) [ 6.874162] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300) [ 6.883171] ata2.00: failed to read native max address (err_mask=0x1) [ 6.892351] ata2.00: HPA support seems broken, skipping HPA handling [ 6.895234] igb 0000:c5:00.2 eno7: renamed from eth2 [ 6.902891] ata1.00: failed to read native max address (err_mask=0x1) [ 6.920007] ata1.00: HPA support seems broken, skipping HPA handling [ 6.930429] ata2.00: ATA-11: MZ7LH240HAHQ0D3, HE57, max UDMA/133 [ 6.939961] ata2.00: 468862128 sectors, multi 16: LBA48 NCQ (depth 32), AA [ 6.950241] ata1.00: ATA-11: MZ7LH240HAHQ0D3, HE57, max UDMA/133 [ 6.960394] igb 0000:c5:00.1 eno6: renamed from eth1 [ 6.961376] ata1.00: 468862128 sectors, multi 16: LBA48 NCQ (depth 32), AA [ 6.981136] ata2.00: configured for UDMA/133 [ 6.990989] ata1.00: configured for UDMA/133 [ 6.996405] igb 0000:c5:00.0 eno5: renamed from eth0 [ 7.001176] scsi 0:0:0:0: Direct-Access ATA MZ7LH240HAHQ0D3 HE57 PQ: 0 ANSI: 5 [ 7.021086] scsi 1:0:0:0: Direct-Access ATA MZ7LH240HAHQ0D3 HE57 PQ: 0 ANSI: 5 [ 7.030457] scsi 0:0:0:0: Attached scsi generic sg0 type 0 [ 7.040017] scsi 1:0:0:0: Attached scsi generic sg1 type 0 [ 7.051323] sd 0:0:0:0: [sda] 468862128 512-byte logical blocks: (240 GB/224 GiB) [ 7.051347] sd 1:0:0:0: [sdb] 468862128 512-byte logical blocks: (240 GB/224 GiB) [ 7.060548] sd 0:0:0:0: [sda] 4096-byte physical blocks [ 7.060555] sd 0:0:0:0: [sda] Write Protect is off [ 7.069885] sd 1:0:0:0: [sdb] 4096-byte physical blocks [ 7.069894] sd 1:0:0:0: [sdb] Write Protect is off [ 7.079524] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 [ 7.079533] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA [ 7.088201] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00 [ 7.088213] sd 1:0:0:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA [ 7.089365] igb 0000:c5:00.3 eno8: renamed from eth3 [ 7.138651] sda: sda1 sda2 sda3 sda4 sda5 [ 7.146549] sd 1:0:0:0: [sdb] Attached SCSI disk [ 7.152485] sd 0:0:0:0: [sda] Attached SCSI disk [ 7.339756] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null) [ 7.920529] systemd-journald[422]: Received SIGTERM from PID 1 (systemd). [ 7.938642] printk: systemd: 26 output lines suppressed due to ratelimiting [ 7.977343] SELinux: Runtime disable is deprecated, use selinux=0 on the kernel cmdline. [ 7.985368] SELinux: Disabled at runtime. [ 8.022332] audit: type=1404 audit(1609707232.609:2): enforcing=0 old_enforcing=0 auid=4294967295 ses=4294967295 enabled=0 old-enabled=1 lsm=selinux res=1 [ 8.052852] systemd[1]: systemd 239 (239-41.el8_3) running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=legacy) [ 8.093346] systemd[1]: Detected architecture x86-64. [ 8.135448] systemd[1]: Set hostname to . [ 8.240310] systemd[1]: systemd-journald.service: Succeeded. [ 8.251426] systemd[1]: initrd-switch-root.service: Succeeded. [ 8.262053] systemd[1]: Stopped Switch Root. [ 8.282655] systemd[1]: systemd-journald.service: Service has no hold-off time (RestartSec=0), scheduling restart. [ 8.294693] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1. [ 8.306736] systemd[1]: Stopped Journal Service. [ 8.330298] systemd[1]: Starting Journal Service... [ 8.401787] EXT4-fs (sda5): re-mounted. Opts: (null) [ 8.634319] Adding 4194300k swap on /dev/sda3. Priority:-2 extents:1 across:4194300k SSFS [ 8.991686] systemd-journald[758]: Received request to flush runtime journal from PID 1 [ 9.207159] power_meter ACPI000D:00: Found ACPI power meter. [ 9.220384] power_meter ACPI000D:00: Ignoring unsafe software power cap! [ 9.233450] power_meter ACPI000D:00: hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info(). [ 9.265670] IPMI message handler: version 39.2 [ 9.276706] acpi-tad ACPI000E:00: Unsupported capabilities [ 9.290230] ipmi device interface [ 9.290380] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0 [ 9.312892] piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection [ 9.324677] piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20 [ 9.357577] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver [ 9.369120] sp5100-tco sp5100-tco: Using 0xfeb00000 for watchdog MMIO address [ 9.369278] ipmi_si: IPMI System Interface driver [ 9.386288] sp5100-tco sp5100-tco: initialized. heartbeat=60 sec (nowayout=0) [ 9.393577] ipmi_si dmi-ipmi-si.0: ipmi_platform: probing via SMBIOS [ 9.416648] ipmi_platform: ipmi_si: SMBIOS: io 0xca2 regsize 1 spacing 1 irq 0 [ 9.428941] ipmi_si: Adding SMBIOS-specified kcs state machine [ 9.439767] ipmi_si IPI0001:00: ipmi_platform: probing via ACPI [ 9.449526] ipmi_si IPI0001:00: ipmi_platform: [io 0x0ca2-0x0ca3] regsize 1 spacing 1 irq 0 [ 9.459790] input: PC Speaker as /devices/platform/pcspkr/input/input4 [ 9.465379] ccp 0000:42:00.1: enabling device (0140 -> 0142) [ 9.483374] ccp 0000:42:00.1: no command queues available [ 9.483426] ccp 0000:42:00.1: sev enabled [ 9.483427] ccp 0000:42:00.1: psp enabled [ 9.483450] ipmi_si dmi-ipmi-si.0: Removing SMBIOS-specified kcs state machine in favor of ACPI [ 9.483451] ipmi_si: Adding ACPI-specified kcs state machine [ 9.483524] ipmi_si: Trying ACPI-specified kcs state machine at i/o address 0xca2, slave address 0x20, irq 0 [ 9.487356] hpwdt 0000:c1:00.0: HPE Watchdog Timer Driver: NMI decoding initialized [ 9.487421] hpwdt 0000:c1:00.0: HPE Watchdog Timer Driver: Version: 2.0.3 [ 9.487422] hpwdt 0000:c1:00.0: timeout: 30 seconds (nowayout=0) [ 9.487423] hpwdt 0000:c1:00.0: pretimeout: on. [ 9.487423] hpwdt 0000:c1:00.0: kdumptimeout: -1. [ 9.492828] RAPL PMU: API unit is 2^-32 Joules, 1 fixed counters, 163840 ms ovfl timer [ 9.492830] RAPL PMU: hw unit of domain package 2^-16 Joules [ 9.510964] ccp 0000:42:00.1: SEV firmware update successful [ 9.579326] ipmi_si IPI0001:00: The BMC does not support clearing the recv irq bit, compensating, but the BMC needs to be fixed. [ 9.625106] ccp 0000:42:00.1: SEV API:0.24 build:4 [ 9.690800] ipmi_si IPI0001:00: IPMI message handler: Found new BMC (man_id: 0x00b85c, prod_id: 0x2000, dev_id: 0x13) [ 9.732858] device-mapper: uevent: version 1.0.3 [ 9.732946] device-mapper: ioctl: 4.43.0-ioctl (2020-10-01) initialised: dm-devel@redhat.com [ 9.875082] ipmi_si IPI0001:00: IPMI kcs interface initialized [ 9.958672] checking generic (cc000000 300000) vs hw (cc000000 1000000) [ 9.958677] fb0: switching to mgag200drmfb from EFI VGA [ 9.971411] Console: switching to colour dummy device 80x25 [ 9.971429] ipmi_ssif: IPMI SSIF Interface driver [ 9.971444] mgag200 0000:c1:00.1: vgaarb: deactivate vga console [ 9.976748] [drm] Initialized mgag200 1.0.0 20110418 for 0000:c1:00.1 on minor 0 [ 9.978535] fbcon: mgag200drmfb (fb0) is primary device [ 10.056625] Console: switching to colour frame buffer device 128x48 [ 10.080428] mgag200 0000:c1:00.1: [drm] fb0: mgag200drmfb frame buffer device [ 10.101157] EXT4-fs (sda2): mounting ext2 file system using the ext4 subsystem [ 10.102354] EXT4-fs (sda2): mounted filesystem without journal. Opts: block_validity,barrier,user_xattr,acl [ 10.133382] EXT4-fs (sda4): mounted filesystem with ordered data mode. Opts: (null) [ 10.156547] kvm_amd: unknown parameter 'sev-snp' ignored [ 10.157744] kvm: Nested Virtualization enabled [ 10.158185] SEV supported: 10 ASIDs [ 10.158195] SEV-ES supported: 499 ASIDs [ 10.158747] SVM: kvm: Nested Paging enabled [ 10.158761] SVM: Virtual VMLOAD VMSAVE supported [ 10.158773] SVM: Virtual GIF supported [ 10.165895] MCE: In-kernel MCE decoding enabled. [ 10.329974] RPC: Registered named UNIX socket transport module. [ 10.329975] RPC: Registered udp transport module. [ 10.329976] RPC: Registered tcp transport module. [ 10.329977] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 10.736438] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this. [ 10.753367] viifbr0: port 1(eno5) entered blocking state [ 10.754059] viifbr0: port 1(eno5) entered disabled state [ 10.756377] device eno5 entered promiscuous mode [ 14.113745] igb 0000:c5:00.0 eno5: igb: eno5 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX/TX [ 14.138372] IPv6: ADDRCONF(NETDEV_CHANGE): eno5: link becomes ready [ 14.138974] viifbr0: port 1(eno5) entered blocking state [ 14.139473] viifbr0: port 1(eno5) entered forwarding state [ 14.270745] igb 0000:c5:00.1 eno6: igb: eno6 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX/TX [ 14.296007] IPv6: ADDRCONF(NETDEV_CHANGE): eno6: link becomes ready

churkanerusskaya commented 3 years ago

@codomania

Initially, I specified both blob file and godh, and got the small buffer error. After that I excluded the blob file from the startup options, trying to get it to work with at least godh file. After your post, I rechecked everything again, and it looks like the initially, I made a mistake and specified a binary blob file instead of base64. So the same small buffer error appears in two cases: a) blob file is binary b) blob is not specified at all.

This confused me a little) After specifying godh and base64 blob file, VM is up and running

Thanks for the help

@tlendacky

Some of the other folks might be able to answer your last question better than me.

Thanks, hope someone will assist with this

rrelph commented 3 years ago

For generating an OCA and signing the PEK with it, see https://github.com/AMDESE/sev-tool

churkanerusskaya commented 3 years ago

@rrelph

For generating an OCA and signing the PEK with it, see https://github.com/AMDESE/sev-tool

Yes, I went through the readme, and it says that:

"Generate your OCA (example using openssl coming soon)" ... "Sign PEK with OCA (example using openssl coming soon)"

That's why I'm asking for an example. Just want to make sure I'm doing it right.

jpecholt commented 3 years ago

@churkanerusskaya Recent additions to the SEV-tool show how to generate the OCA key. Additionally, there is an open pull-request which implements a sign_pek_csr command for the tool itself. It returns the signed PEK CSR as well as the OCA certificate in the correct format (see the Readme/ API for reference). As for the secret injection, the package_secret command of the SEV-tool currently does not calculate the correct secret header and the secret injection will fail due to bad measurement (if I remember the error message correctly). This fork/branch addresses the issues. I have been using it with the GO, OCA and PO on separate machines - GO and OCA with non-SEV hardware and PO with SEV hardware. It has been working for me so far (platform ownership, cert-chain verification, Launch blob generation, launch attestation and secret injection) but no guarantees ;) .

pegahnikbakht commented 1 year ago

Does this launch options such as dh-cert-file=,session-file= works with sev-snp-guest as well? since I get invalid parameter error with sev-snp? then how should I enable memory encryption in sev-snp?

jpecholt commented 1 year ago

@pegahnikbakht The launch of an SEV-SNP-encrypted VM differs substantially from an SEV-VM, meaning that these launch options do no longer work. I recommend looking through AMDESE/SEV branch sev-snp-devel. It addresses which software versions are required (OVMF, Kernels and QEMU) and what flags must be configured to boot SEV-SNP-encrypted VMs.

pegahnikbakht commented 1 year ago

@jpecholt I'm actually using this branch sev-snp-devel to setup SEV-SNP but was not sure how to make sure encryption is enabled? by the way my question is how encryption keys are passed to the VMs?

jpecholt commented 1 year ago

@pegahnikbakht You can either run the provided launch script as described here or you can have a closer look at the script and what object it adds to the QEMU command here if you're running the command manually.

And encryption keys isn't very specific to my knowledge. If you mean the SEV-secret that could be injected with the first generation (SEV) before VM launch? This is no longer possible. Instead, you have to configure your SNP-VM to contact a trusted authority of some sorts at runtime (or be contacted) and perform a remote attestation to obtain such a key. There exist several examples, e.g., this one. \ If you mean the secure communication between VM and SEV-(SNP)-Firmware, these keys are automatically injected by the firmware during initialization of the SNP-VM, so you do not have to perform any manual steps. I recommend looking at this document to see how SNP works compared to SEV.