Alex Sanderson
2020-Jun-24 10:31 UTC
[Pkg-xen-devel] Bug#963607: xen-hypervisor-4.11-amd64: Xen Hypervisor kernel fails to load arcmsr module with "arcmsr0: dma_alloc_coherent got error" message.
Package: xen-hypervisor-4.11-amd64 Version: 4.11.3+24-g14b62ab3e5-1~deb10u1 Severity: important Dear Maintainer, After updating to Buster and Xen 4.11 our machine no longer boots the Xen kernel. The default kernel 4.19.118-2+deb10u1 boots normally. The machine has an Areca 1882IX-16 card in it when the arcmsr module tries to load the following error appears. Areca RAID Controller0: Model ARC-1882, F/W V1.56 2019-07-30 arcmsr0: dma_alloc_coherent got error No drives are discovered and the initramfs prompt is shown. The machine: * Supermicro X9DRW * Dual Intel(R) Xeon(R) CPU E5-2630L v2 @ 2.40GHz * 128G RAM * Areca ARC-1882IX-16 (1G onboard cache) Nothing I have tried is effective: * Turning on BIOS above 4G decoding stops the Intel 10GBE ixgbe driver from functioning and doesn't fix the arcmsr * Unloading and reloading the arcmsr module from initramfs prompt * Downgrading the Areca 1882 bios to v1.52 as per http://faq.areca.com.tw/index.php?action=artikel&cat=7&id=902&artlang=en * Kernel parameters ** pci=nocrs ** dom0_mem=8G ** mem=3072M ** mem2048M cma=1024M ** cma=2048 ** cma=3076 at 512M ** iommu=1 intel_iommu=1 ** arcmsr.host_can_queue=64 as per http://faq.areca.com.tw/index.php?action=artikel&cat=15&id=387&artlang=en I expected the arcmsr module to load and detect disks as it does with the stock kernel. I can provide sysctl and dmesg output if it helps. -- System Information: Debian Release: 10.4 APT prefers stable-updates APT policy: (500, 'stable-updates'), (500, 'stable') Architecture: amd64 (x86_64) Kernel: Linux 4.19.0-9-amd64 (SMP w/24 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), LANGUAGE=en_US:en (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Init: systemd (via /run/systemd/system) LSM: AppArmor: enabled xen-hypervisor-4.11-amd64 depends on no packages. Versions of packages xen-hypervisor-4.11-amd64 recommends: ii xen-hypervisor-common 4.11.3+24-g14b62ab3e5-1~deb10u1 ii xen-utils-4.11 4.11.3+24-g14b62ab3e5-1~deb10u1 xen-hypervisor-4.11-amd64 suggests no packages. -- no debconf information
Hans van Kranenburg
2020-Jun-24 23:30 UTC
[Pkg-xen-devel] Bug#963607: Bug#963607: xen-hypervisor-4.11-amd64: Xen Hypervisor kernel fails to load arcmsr module with "arcmsr0: dma_alloc_coherent got error" message.
Hi Alex, On 6/24/20 12:31 PM, Alex Sanderson wrote:> Package: xen-hypervisor-4.11-amd64 > Version: 4.11.3+24-g14b62ab3e5-1~deb10u1 > Severity: important > > Dear Maintainer, > > After updating to Buster and Xen 4.11 our machine no longer boots the Xen kernel. The default kernel 4.19.118-2+deb10u1 boots normally.When booting with Xen, the computer first starts the Xen hypervisor code. This is the part where you see all the lines with (XEN) at the beginning appear. Afterwards, it starts the same 4.19.118-2+deb10u1 Linux kernel that is used when running without Xen, but it's started as the first virtual machine, that has extra privileges to access all hardware. So, Linux vs. Xen + Linux.> The machine has an Areca 1882IX-16 card in it when the arcmsr module > tries to load the following error appears. > > Areca RAID Controller0: Model ARC-1882, F/W V1.56 2019-07-30 > arcmsr0: dma_alloc_coherent got error > > No drives are discovered and the initramfs prompt is shown.Ok, so booting the Xen part succeeded, but apparently, when starting the Linux kernel inside, there's apparently a problem with accessing the raid controller hardware. Interesting. This likely means it's not a problem in the Debian packaging part, it's a problem somewhere in the upstream Xen or Linux code. That means that I cannot solve this for you, but I can help with tips to gather the right information, and help finding out what the best place is where we can report the issue.> The machine: > * Supermicro X9DRW > * Dual Intel(R) Xeon(R) CPU E5-2630L v2 @ 2.40GHz > * 128G RAM > * Areca ARC-1882IX-16 (1G onboard cache) > > Nothing I have tried is effective: > * Turning on BIOS above 4G decoding stops the Intel 10GBE ixgbe driver from functioning and doesn't fix the arcmsr > * Unloading and reloading the arcmsr module from initramfs prompt > * Downgrading the Areca 1882 bios to v1.52 as per http://faq.areca.com.tw/index.php?action=artikel&cat=7&id=902&artlang=en > * Kernel parameters > ** pci=nocrs > ** dom0_mem=8G > ** mem=3072M > ** mem2048M cma=1024M > ** cma=2048 > ** cma=3076 at 512M > ** iommu=1 intel_iommu=1 > ** arcmsr.host_can_queue=64 as per http://faq.areca.com.tw/index.php?action=artikel&cat=15&id=387&artlang=en > > I expected the arcmsr module to load and detect disks as it does with > the stock kernel. > > I can provide sysctl and dmesg output if it helps.Yes. The first thing needed is full startup logs, and for the Xen part preferably extra logging. In /etc/default/grub.d/xen.cfg in the GRUB_CMDLINE_XEN_DEFAULT setting, you can add loglvl=all, and then run update-grub and try to boot Xen+Linux again. Do you have a way to capture the logging during boot? Like, a working serial console or something similar? The output of dmesg when starting Linux without Xen is of course also interesting, so we can compare both scenarios. Hans
Alex Sanderson
2020-Jun-25 11:44 UTC
[Pkg-xen-devel] Bug#963607: Bug#963607: xen-hypervisor-4.11-amd64: Xen Hypervisor kernel fails to load arcmsr module with "arcmsr0: dma_alloc_coherent got error" message.
Hi Hans, Thank you for your assistance with this. I hesitated to log this with xen-dev but thought I should wait for a response here first. On 25/06/2020 01:30, Hans van Kranenburg wrote:> Hi Alex, > > On 6/24/20 12:31 PM, Alex Sanderson wrote: >> Package: xen-hypervisor-4.11-amd64 >> Version: 4.11.3+24-g14b62ab3e5-1~deb10u1 >> Severity: important >> >> Dear Maintainer, >> >> After updating to Buster and Xen 4.11 our machine no longer boots the Xen kernel. The default kernel 4.19.118-2+deb10u1 boots normally. > When booting with Xen, the computer first starts the Xen hypervisor > code. This is the part where you see all the lines with (XEN) at the > beginning appear. > > Afterwards, it starts the same 4.19.118-2+deb10u1 Linux kernel that is > used when running without Xen, but it's started as the first virtual > machine, that has extra privileges to access all hardware. > > So, Linux vs. Xen + Linux. > >> The machine has an Areca 1882IX-16 card in it when the arcmsr module >> tries to load the following error appears. >> >> Areca RAID Controller0: Model ARC-1882, F/W V1.56 2019-07-30 >> arcmsr0: dma_alloc_coherent got error >> >> No drives are discovered and the initramfs prompt is shown. > Ok, so booting the Xen part succeeded, but apparently, when starting the > Linux kernel inside, there's apparently a problem with accessing the > raid controller hardware. Interesting. > > This likely means it's not a problem in the Debian packaging part, it's > a problem somewhere in the upstream Xen or Linux code. That means that I > cannot solve this for you, but I can help with tips to gather the right > information, and help finding out what the best place is where we can > report the issue. > >> The machine: >> * Supermicro X9DRW >> * Dual Intel(R) Xeon(R) CPU E5-2630L v2 @ 2.40GHz >> * 128G RAM >> * Areca ARC-1882IX-16 (1G onboard cache) >> >> Nothing I have tried is effective: >> * Turning on BIOS above 4G decoding stops the Intel 10GBE ixgbe driver from functioning and doesn't fix the arcmsr >> * Unloading and reloading the arcmsr module from initramfs prompt >> * Downgrading the Areca 1882 bios to v1.52 as per http://faq.areca.com.tw/index.php?action=artikel&cat=7&id=902&artlang=en >> * Kernel parameters >> ** pci=nocrs >> ** dom0_mem=8G >> ** mem=3072M >> ** mem2048M cma=1024M >> ** cma=2048 >> ** cma=3076 at 512M >> ** iommu=1 intel_iommu=1 >> ** arcmsr.host_can_queue=64 as per http://faq.areca.com.tw/index.php?action=artikel&cat=15&id=387&artlang=en >> >> I expected the arcmsr module to load and detect disks as it does with >> the stock kernel. >> >> I can provide sysctl and dmesg output if it helps. > Yes. The first thing needed is full startup logs, and for the Xen part > preferably extra logging. In /etc/default/grub.d/xen.cfg in the > GRUB_CMDLINE_XEN_DEFAULT setting, you can add loglvl=all, and then run > update-grub and try to boot Xen+Linux again. > > Do you have a way to capture the logging during boot? Like, a working > serial console or something similar? > > The output of dmesg when starting Linux without Xen is of course also > interesting, so we can compare both scenarios. > > HansI tried using debian's paste https://paste.debian.net but it always thought it was spam. dmesg output Xen Hypervisor 4.11 https://pastebin.com/3wUyYg0P dmesg output Debian Kernel 4.19.118-2+deb10u1 https://pastebin.com/GHzzW3vi Alex
Hans van Kranenburg
2020-Jul-01 00:05 UTC
[Pkg-xen-devel] Bug#963607: Bug#963607: xen-hypervisor-4.11-amd64: Xen Hypervisor kernel fails to load arcmsr module with "arcmsr0: dma_alloc_coherent got error" message.
Hi, On 6/25/20 1:44 PM, Alex Sanderson wrote:> > Hi Hans, > > Thank you for your assistance with this. I hesitated to log this with > xen-dev but thought I should wait for a response here first. > > > On 25/06/2020 01:30, Hans van Kranenburg wrote: >> Hi Alex, >> >> On 6/24/20 12:31 PM, Alex Sanderson wrote: >>> Package: xen-hypervisor-4.11-amd64 >>> Version: 4.11.3+24-g14b62ab3e5-1~deb10u1 >>> Severity: important >>> >>> Dear Maintainer, >>> >>> After updating to Buster and Xen 4.11 our machine no longer boots the Xen kernel. The default kernel 4.19.118-2+deb10u1 boots normally. >> When booting with Xen, the computer first starts the Xen hypervisor >> code. This is the part where you see all the lines with (XEN) at the >> beginning appear. >> >> Afterwards, it starts the same 4.19.118-2+deb10u1 Linux kernel that is >> used when running without Xen, but it's started as the first virtual >> machine, that has extra privileges to access all hardware. >> >> So, Linux vs. Xen + Linux. >> >>> The machine has an Areca 1882IX-16 card in it when the arcmsr module >>> tries to load the following error appears. >>> >>> Areca RAID Controller0: Model ARC-1882, F/W V1.56 2019-07-30 >>> arcmsr0: dma_alloc_coherent got error >>> >>> No drives are discovered and the initramfs prompt is shown. >> Ok, so booting the Xen part succeeded, but apparently, when starting the >> Linux kernel inside, there's apparently a problem with accessing the >> raid controller hardware. Interesting. >> >> This likely means it's not a problem in the Debian packaging part, it's >> a problem somewhere in the upstream Xen or Linux code. That means that I >> cannot solve this for you, but I can help with tips to gather the right >> information, and help finding out what the best place is where we can >> report the issue. >> >>> The machine: >>> * Supermicro X9DRW >>> * Dual Intel(R) Xeon(R) CPU E5-2630L v2 @ 2.40GHz >>> * 128G RAM >>> * Areca ARC-1882IX-16 (1G onboard cache) >>> >>> Nothing I have tried is effective: >>> * Turning on BIOS above 4G decoding stops the Intel 10GBE ixgbe driver from functioning and doesn't fix the arcmsr >>> * Unloading and reloading the arcmsr module from initramfs prompt >>> * Downgrading the Areca 1882 bios to v1.52 as per http://faq.areca.com.tw/index.php?action=artikel&cat=7&id=902&artlang=en >>> * Kernel parameters >>> ** pci=nocrs >>> ** dom0_mem=8G >>> ** mem=3072M >>> ** mem2048M cma=1024M >>> ** cma=2048 >>> ** cma=3076 at 512M >>> ** iommu=1 intel_iommu=1 >>> ** arcmsr.host_can_queue=64 as per http://faq.areca.com.tw/index.php?action=artikel&cat=15&id=387&artlang=en >>> >>> I expected the arcmsr module to load and detect disks as it does with >>> the stock kernel. >>> >>> I can provide sysctl and dmesg output if it helps. >> Yes. The first thing needed is full startup logs, and for the Xen part >> preferably extra logging. In /etc/default/grub.d/xen.cfg in the >> GRUB_CMDLINE_XEN_DEFAULT setting, you can add loglvl=all, and then run >> update-grub and try to boot Xen+Linux again. >> >> Do you have a way to capture the logging during boot? Like, a working >> serial console or something similar? >> >> The output of dmesg when starting Linux without Xen is of course also >> interesting, so we can compare both scenarios. >> >> Hans > > I tried using debian's paste https://paste.debian.net but it always > thought it was spam. > > dmesg output Xen Hypervisor 4.11 https://pastebin.com/3wUyYg0PThis one shows a Linux kernel boot, not the Xen Hypervisor, which should go first (with all the (XEN) lines). By default the Xen output should show up on your (serial) console. If you do dmesg after starting Linux as dom0 after starting Xen, then you just get the Linux part of it. If it actually boots and it's usable to login and get a shell prompt etc, then you can immediately use xl dmesg to see the xen part, and if it doesn't, then you need to make sure you have some sort of serial console to capture the lines. To do a bug report upstream, we'll need that information.> dmesg output Debian Kernel 4.19.118-2+deb10u1 https://pastebin.com/GHzzW3viK
Alex Sanderson
2020-Jul-01 15:09 UTC
[Pkg-xen-devel] Bug#963607: Bug#963607: xen-hypervisor-4.11-amd64: Xen Hypervisor kernel fails to load arcmsr module with "arcmsr0: dma_alloc_coherent got error" message.
Hi, On 1/07/2020 02:05, Hans van Kranenburg wrote:> Hi, > > On 6/25/20 1:44 PM, Alex Sanderson wrote: >> Hi Hans, >> >> Thank you for your assistance with this. I hesitated to log this with >> xen-dev but thought I should wait for a response here first. >> >> >> On 25/06/2020 01:30, Hans van Kranenburg wrote: >>> Hi Alex, >>> >>> On 6/24/20 12:31 PM, Alex Sanderson wrote: >>>> Package: xen-hypervisor-4.11-amd64 >>>> Version: 4.11.3+24-g14b62ab3e5-1~deb10u1 >>>> Severity: important >>>> >>>> Dear Maintainer, >>>> >>>> After updating to Buster and Xen 4.11 our machine no longer boots the Xen kernel. The default kernel 4.19.118-2+deb10u1 boots normally. >>> When booting with Xen, the computer first starts the Xen hypervisor >>> code. This is the part where you see all the lines with (XEN) at the >>> beginning appear. >>> >>> Afterwards, it starts the same 4.19.118-2+deb10u1 Linux kernel that is >>> used when running without Xen, but it's started as the first virtual >>> machine, that has extra privileges to access all hardware. >>> >>> So, Linux vs. Xen + Linux. >>> >>>> The machine has an Areca 1882IX-16 card in it when the arcmsr module >>>> tries to load the following error appears. >>>> >>>> Areca RAID Controller0: Model ARC-1882, F/W V1.56 2019-07-30 >>>> arcmsr0: dma_alloc_coherent got error >>>> >>>> No drives are discovered and the initramfs prompt is shown. >>> Ok, so booting the Xen part succeeded, but apparently, when starting the >>> Linux kernel inside, there's apparently a problem with accessing the >>> raid controller hardware. Interesting. >>> >>> This likely means it's not a problem in the Debian packaging part, it's >>> a problem somewhere in the upstream Xen or Linux code. That means that I >>> cannot solve this for you, but I can help with tips to gather the right >>> information, and help finding out what the best place is where we can >>> report the issue. >>> >>>> The machine: >>>> * Supermicro X9DRW >>>> * Dual Intel(R) Xeon(R) CPU E5-2630L v2 @ 2.40GHz >>>> * 128G RAM >>>> * Areca ARC-1882IX-16 (1G onboard cache) >>>> >>>> Nothing I have tried is effective: >>>> * Turning on BIOS above 4G decoding stops the Intel 10GBE ixgbe driver from functioning and doesn't fix the arcmsr >>>> * Unloading and reloading the arcmsr module from initramfs prompt >>>> * Downgrading the Areca 1882 bios to v1.52 as per http://faq.areca.com.tw/index.php?action=artikel&cat=7&id=902&artlang=en >>>> * Kernel parameters >>>> ** pci=nocrs >>>> ** dom0_mem=8G >>>> ** mem=3072M >>>> ** mem2048M cma=1024M >>>> ** cma=2048 >>>> ** cma=3076 at 512M >>>> ** iommu=1 intel_iommu=1 >>>> ** arcmsr.host_can_queue=64 as per http://faq.areca.com.tw/index.php?action=artikel&cat=15&id=387&artlang=en >>>> >>>> I expected the arcmsr module to load and detect disks as it does with >>>> the stock kernel. >>>> >>>> I can provide sysctl and dmesg output if it helps. >>> Yes. The first thing needed is full startup logs, and for the Xen part >>> preferably extra logging. In /etc/default/grub.d/xen.cfg in the >>> GRUB_CMDLINE_XEN_DEFAULT setting, you can add loglvl=all, and then run >>> update-grub and try to boot Xen+Linux again. >>> >>> Do you have a way to capture the logging during boot? Like, a working >>> serial console or something similar? >>> >>> The output of dmesg when starting Linux without Xen is of course also >>> interesting, so we can compare both scenarios. >>> >>> Hans >> I tried using debian's paste https://paste.debian.net but it always >> thought it was spam. >> >> dmesg output Xen Hypervisor 4.11 https://pastebin.com/3wUyYg0P > This one shows a Linux kernel boot, not the Xen Hypervisor, which should > go first (with all the (XEN) lines). By default the Xen output should > show up on your (serial) console. If you do dmesg after starting Linux > as dom0 after starting Xen, then you just get the Linux part of it. > > If it actually boots and it's usable to login and get a shell prompt > etc, then you can immediately use xl dmesg to see the xen part, and if > it doesn't, then you need to make sure you have some sort of serial > console to capture the lines. > > To do a bug report upstream, we'll need that information.Sorry, completely misunderstood. Here is the output from the serial terminal as Xen started. https://paste.debian.net/1154644 Alex> >> dmesg output Debian Kernel 4.19.118-2+deb10u1 https://pastebin.com/GHzzW3vi > K
Hans van Kranenburg
2020-Jul-01 20:48 UTC
[Pkg-xen-devel] Bug#963607: Bug#963607: xen-hypervisor-4.11-amd64: Xen Hypervisor kernel fails to load arcmsr module with "arcmsr0: dma_alloc_coherent got error" message.
On 7/1/20 5:09 PM, Alex Sanderson wrote:> > On 1/07/2020 02:05, Hans van Kranenburg wrote: >> >> To do a bug report upstream, we'll need that information. > > Sorry, completely misunderstood. Here is the output from the serial > terminal as Xen started.Thanks! Yes. That's the XEN part that appears first. I attached the files, AFAIK you can just send attachments to a debian bug report. So, you can also do that, next time. The files justlinux-notime.txt and xen-dom0-notime.txt have the timestamps removed from the beginning of the linux part of the logging, so that we can diff the files. E.g. colordiff -u justlinux-notime.txt xen-dom0-notime.txt |less -r Now, here's an interesting part: ---- 8< ---- @@ -973,20 +1031,15 @@ usb usb1: SerialNumber: 0000:00:1a.0 hub 1-0:1.0: USB hub found hub 1-0:1.0: 2 ports detected -isci 0000:09:00.0: OEM parameter table found in OROM -isci 0000:09:00.0: OEM SAS parameters (version: 1.0) loaded (platform) +xen: registering gsi 23 triggering 0 polarity 1 +Already setup the GSI :23 ehci-pci 0000:00:1d.0: EHCI Host Controller ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2 ehci-pci 0000:00:1d.0: debug port 2 ehci-pci 0000:00:1d.0: cache line size of 64 is not supported ehci-pci 0000:00:1d.0: irq 23, io mem 0xcfc22000 -isci 0000:09:00.0: SCU controller 0: phy 3-0 cables: {short, short, short, short} -scsi host1: isci Areca RAID Controller0: Model ARC-1882, F/W V1.56 2019-07-30 -scsi host0: Areca SAS/SATA RAID Controller (RAID6 capable) -arcmsr version v1.40.00.09-20180709 - -arcmsr0: msi-x enabled +arcmsr0: dma_alloc_coherent got error ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00 usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 4.19 usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 ---- >8 ---- So, when running Linux as dom0 under Xen, you get the "arcmsr0: dma_alloc_coherent got error". Did you already spot this error? Just pasting it into a search engine leads me to the following page: http://faq.areca.com.tw/index.php?action=artikel&cat=16&id=387&artlang=en ...which only displays an error. There's also: https://webcache.googleusercontent.com/search?q=cache:wQHp6mpYuckJ:faq.areca.com.tw/index.php%3Faction%3Dartikel%26cat%3D16%26id%3D387%26artlang%3Den+&cd=1&hl=nl&ct=clnk&gl=nl ---- 8< ---- Q10051103 - We have problems with the new Linux driver (arcmsr.1.20.0X.15-100729) for the raid controller ARC-1880. Our system is Linux debian 5.07 (lenny) amd64. Build the driver agains the XEN kernel (2.6.26-2-xen-amd64) we got following errors on boot time: arcmsr0: dma_alloc_coherent got error arcmsr0: arcmsr_alloc_ccb_pool got error you may get this error message when system have no enough memory space for driver requested please configure driver host queue to 64 or less to see if it helps. you can configure driver host queue parameter by typing the driver parameter as kernel option during system booting. arcmsr.host_can_queue=64 ---- >8 ---- So, you have an 1882, which is close to 1880. I'd say, try it! This arcmsr.host_can_queue=64 should go on the linux command line. You can use GRUB_CMDLINE_LINUX_XEN_REPLACE in /etc/default/grub.d/xen.cfg for that, so that it gets applied when booting with Xen, and not when booting standalone Linux. There's some documentation in that file. Feel free to ask more about it if it's unclear how the different options work together. The text in that file is part of our Xen packages, so feedback on it is always appreciated. We might be able to improve something. Thanks, curious to hear about the results, and otherwise we'll continue our searching for a solution, Hans -------------- next part -------------- [ 0.000000] microcode: microcode updated early to revision 0x42e, date = 2019-03-14 [ 0.000000] Linux version 4.19.0-9-amd64 (debian-kernel at lists.debian.org) (gcc version 8.3.0 (Debian 8.3.0-6)) #1 SMP Debian 4.19.118-2+deb10u1 (2020-06-07) [ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.19.0-9-amd64 root=/dev/mapper/system--ganggang-root ro quiet [ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers' [ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers' [ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers' [ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256 [ 0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format. [ 0.000000] BIOS-provided physical RAM map: [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009bfff] usable [ 0.000000] BIOS-e820: [mem 0x000000000009c000-0x000000000009ffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000002de34fff] usable [ 0.000000] BIOS-e820: [mem 0x000000002de35000-0x000000002dfe6fff] reserved [ 0.000000] BIOS-e820: [mem 0x000000002dfe7000-0x000000002e1dcfff] ACPI NVS [ 0.000000] BIOS-e820: [mem 0x000000002e1dd000-0x000000002f359fff] reserved [ 0.000000] BIOS-e820: [mem 0x000000002f35a000-0x000000002f7fffff] ACPI NVS [ 0.000000] BIOS-e820: [mem 0x0000000030000000-0x000000003fffffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed3ffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x00000020cfffffff] usable [ 0.000000] NX (Execute Disable) protection: active [ 0.000000] SMBIOS 2.7 present. [ 0.000000] DMI: Supermicro X9DRW/X9DRW, BIOS 3.3 09/13/2018 [ 0.000000] tsc: Fast TSC calibration using PIT [ 0.000000] tsc: Detected 2399.857 MHz processor [ 0.002028] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved [ 0.002030] e820: remove [mem 0x000a0000-0x000fffff] usable [ 0.002035] last_pfn = 0x20d0000 max_arch_pfn = 0x400000000 [ 0.002042] MTRR default type: uncachable [ 0.002043] MTRR fixed ranges enabled: [ 0.002044] 00000-9FFFF write-back [ 0.002045] A0000-BFFFF uncachable [ 0.002046] C0000-FFFFF write-protect [ 0.002047] MTRR variable ranges enabled: [ 0.002048] 0 base 000000000000 mask 3FE000000000 write-back [ 0.002049] 1 base 002000000000 mask 3FFF00000000 write-back [ 0.002050] 2 base 000030000000 mask 3FFFF0000000 uncachable [ 0.002051] 3 base 000040000000 mask 3FFFC0000000 uncachable [ 0.002052] 4 base 000080000000 mask 3FFF80000000 uncachable [ 0.002053] 5 base 0020D0000000 mask 3FFFF0000000 uncachable [ 0.002054] 6 base 0020E0000000 mask 3FFFE0000000 uncachable [ 0.002055] 7 disabled [ 0.002056] 8 disabled [ 0.002056] 9 disabled [ 0.003786] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT [ 0.004062] e820: update [mem 0x30000000-0xffffffff] usable ==> reserved [ 0.004070] last_pfn = 0x2de35 max_arch_pfn = 0x400000000 [ 0.015013] found SMP MP-table at [mem 0x000fdbb0-0x000fdbbf] [ 0.027776] Using GB pages for direct mapping [ 0.027780] BRK [0x1fd1001000, 0x1fd1001fff] PGTABLE [ 0.027785] BRK [0x1fd1002000, 0x1fd1002fff] PGTABLE [ 0.027786] BRK [0x1fd1003000, 0x1fd1003fff] PGTABLE [ 0.027813] BRK [0x1fd1004000, 0x1fd1004fff] PGTABLE [ 0.027815] BRK [0x1fd1005000, 0x1fd1005fff] PGTABLE [ 0.027816] BRK [0x1fd1006000, 0x1fd1006fff] PGTABLE [ 0.027991] BRK [0x1fd1007000, 0x1fd1007fff] PGTABLE [ 0.028056] RAMDISK: [mem 0x2ac63000-0x2cc6afff] [ 0.028065] ACPI: Early table checksum verification disabled [ 0.028121] ACPI: RSDP 0x00000000000F0490 000024 (v02 SUPERM) [ 0.028125] ACPI: XSDT 0x000000002E100090 00009C (v01 SUPERM SMCI--MB 00000001 AMI 00010013) [ 0.028132] ACPI: FACP 0x000000002E10AFC8 0000F4 (v04 SUPERM SMCI--MB 00000001 AMI 00010013) [ 0.028139] ACPI: DSDT 0x000000002E1001C0 00AE06 (v02 SUPERM SMCI--MB 00000000 INTL 20091112) [ 0.028141] ACPI: FACS 0x000000002E1D4080 000040 [ 0.028144] ACPI: APIC 0x000000002E10B0C0 0001B4 (v03 00000001 AMI 00010013) [ 0.028147] ACPI: FPDT 0x000000002E10B278 000044 (v01 00000001 AMI 00010013) [ 0.028149] ACPI: SRAT 0x000000002E10B2C0 000430 (v01 A M I AMI SRAT 00000001 AMI. 00000000) [ 0.028152] ACPI: SLIT 0x000000002E10B6F0 000030 (v01 A M I AMI SLIT 00000000 AMI. 00000000) [ 0.028155] ACPI: HPET 0x000000002E10B720 000038 (v01 SUPERM SMCI--MB 00000001 AMI. 00000005) [ 0.028157] ACPI: PRAD 0x000000002E10B758 0000CD (v02 PRADID PRADTID 00000001 MSFT 04000000) [ 0.028160] ACPI: SPMI 0x000000002E10B828 000040 (v05 A M I OEMSPMI 00000000 AMI. 00000000) [ 0.028163] ACPI: SSDT 0x000000002E10B868 0C7AE8 (v02 INTEL CpuPm 00004000 INTL 20091112) [ 0.028166] ACPI: EINJ 0x000000002E1D3350 000130 (v01 AMI AMI EINJ 00000000 00000000) [ 0.028168] ACPI: ERST 0x000000002E1D3480 000230 (v01 AMIER AMI ERST 00000000 00000000) [ 0.028171] ACPI: HEST 0x000000002E1D36B0 00027C (v01 AMI AMI HEST 00000000 00000000) [ 0.028174] ACPI: BERT 0x000000002E1D3930 000030 (v01 AMI AMI BERT 00000000 00000000) [ 0.028176] ACPI: DMAR 0x000000002E1D3960 000188 (v01 A M I OEMDMAR 00000001 INTL 00000001) [ 0.028179] ACPI: MCFG 0x000000002E1D3AE8 00003C (v01 SUPERM SMCI--MB 00000001 MSFT 00000097) [ 0.028190] ACPI: Local APIC address 0xfee00000 [ 0.028222] SRAT: PXM 0 -> APIC 0x00 -> Node 0 [ 0.028222] SRAT: PXM 0 -> APIC 0x01 -> Node 0 [ 0.028223] SRAT: PXM 0 -> APIC 0x02 -> Node 0 [ 0.028224] SRAT: PXM 0 -> APIC 0x03 -> Node 0 [ 0.028224] SRAT: PXM 0 -> APIC 0x04 -> Node 0 [ 0.028225] SRAT: PXM 0 -> APIC 0x05 -> Node 0 [ 0.028225] SRAT: PXM 0 -> APIC 0x06 -> Node 0 [ 0.028226] SRAT: PXM 0 -> APIC 0x07 -> Node 0 [ 0.028226] SRAT: PXM 0 -> APIC 0x08 -> Node 0 [ 0.028227] SRAT: PXM 0 -> APIC 0x09 -> Node 0 [ 0.028227] SRAT: PXM 0 -> APIC 0x0a -> Node 0 [ 0.028228] SRAT: PXM 0 -> APIC 0x0b -> Node 0 [ 0.028228] SRAT: PXM 1 -> APIC 0x20 -> Node 1 [ 0.028229] SRAT: PXM 1 -> APIC 0x21 -> Node 1 [ 0.028230] SRAT: PXM 1 -> APIC 0x22 -> Node 1 [ 0.028230] SRAT: PXM 1 -> APIC 0x23 -> Node 1 [ 0.028231] SRAT: PXM 1 -> APIC 0x24 -> Node 1 [ 0.028231] SRAT: PXM 1 -> APIC 0x25 -> Node 1 [ 0.028232] SRAT: PXM 1 -> APIC 0x26 -> Node 1 [ 0.028232] SRAT: PXM 1 -> APIC 0x27 -> Node 1 [ 0.028233] SRAT: PXM 1 -> APIC 0x28 -> Node 1 [ 0.028233] SRAT: PXM 1 -> APIC 0x29 -> Node 1 [ 0.028234] SRAT: PXM 1 -> APIC 0x2a -> Node 1 [ 0.028234] SRAT: PXM 1 -> APIC 0x2b -> Node 1 [ 0.028238] ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x2fffffff] [ 0.028239] ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x10cfffffff] [ 0.028240] ACPI: SRAT: Node 1 PXM 1 [mem 0x10d0000000-0x20cfffffff] [ 0.028243] NUMA: Initialized distance table, cnt=2 [ 0.028245] NUMA: Node 0 [mem 0x00000000-0x2fffffff] + [mem 0x100000000-0x10cfffffff] -> [mem 0x00000000-0x10cfffffff] [ 0.028250] NODE_DATA(0) allocated [mem 0x10cfffb000-0x10cfffffff] [ 0.028256] NODE_DATA(1) allocated [mem 0x20cfffa000-0x20cfffefff] [ 0.028424] Zone ranges: [ 0.028425] DMA [mem 0x0000000000001000-0x0000000000ffffff] [ 0.028426] DMA32 [mem 0x0000000001000000-0x00000000ffffffff] [ 0.028427] Normal [mem 0x0000000100000000-0x00000020cfffffff] [ 0.028428] Device empty [ 0.028429] Movable zone start for each node [ 0.028430] Early memory node ranges [ 0.028431] node 0: [mem 0x0000000000001000-0x000000000009bfff] [ 0.028431] node 0: [mem 0x0000000000100000-0x000000002de34fff] [ 0.028432] node 0: [mem 0x0000000100000000-0x00000010cfffffff] [ 0.028433] node 1: [mem 0x00000010d0000000-0x00000020cfffffff] [ 0.028656] Zeroed struct page in unavailable ranges: 8752 pages [ 0.028657] Initmem setup node 0 [mem 0x0000000000001000-0x00000010cfffffff] [ 0.028659] On node 0 totalpages: 16768464 [ 0.028660] DMA zone: 64 pages used for memmap [ 0.028661] DMA zone: 21 pages reserved [ 0.028662] DMA zone: 3995 pages, LIFO batch:0 [ 0.028792] DMA32 zone: 2873 pages used for memmap [ 0.028793] DMA32 zone: 183861 pages, LIFO batch:63 [ 0.037829] Normal zone: 259072 pages used for memmap [ 0.037829] Normal zone: 16580608 pages, LIFO batch:63 [ 0.472703] Initmem setup node 1 [mem 0x00000010d0000000-0x00000020cfffffff] [ 0.472708] On node 1 totalpages: 16777216 [ 0.472710] Normal zone: 262144 pages used for memmap [ 0.472711] Normal zone: 16777216 pages, LIFO batch:63 [ 0.946587] ACPI: PM-Timer IO Port: 0x408 [ 0.946594] ACPI: Local APIC address 0xfee00000 [ 0.946609] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1]) [ 0.946610] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1]) [ 0.946610] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1]) [ 0.946611] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1]) [ 0.946612] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1]) [ 0.946613] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1]) [ 0.946613] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1]) [ 0.946614] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1]) [ 0.946615] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1]) [ 0.946616] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1]) [ 0.946616] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1]) [ 0.946617] ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1]) [ 0.946617] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) [ 0.946618] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1]) [ 0.946619] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1]) [ 0.946619] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1]) [ 0.946620] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1]) [ 0.946620] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1]) [ 0.946621] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1]) [ 0.946621] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1]) [ 0.946622] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1]) [ 0.946623] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1]) [ 0.946623] ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1]) [ 0.946624] ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1]) [ 0.946637] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23 [ 0.946641] IOAPIC[1]: apic_id 2, version 32, address 0xfec01000, GSI 24-47 [ 0.946645] IOAPIC[2]: apic_id 3, version 32, address 0xfec40000, GSI 48-71 [ 0.946648] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) [ 0.946650] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) [ 0.946652] ACPI: IRQ0 used by override. [ 0.946653] ACPI: IRQ9 used by override. [ 0.946655] Using ACPI (MADT) for SMP configuration information [ 0.946657] ACPI: HPET id: 0x8086a701 base: 0xfed00000 [ 0.946668] smpboot: Allowing 24 CPUs, 0 hotplug CPUs [ 0.946688] PM: Registered nosave memory: [mem 0x00000000-0x00000fff] [ 0.946689] PM: Registered nosave memory: [mem 0x0009c000-0x0009ffff] [ 0.946690] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff] [ 0.946690] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff] [ 0.946692] PM: Registered nosave memory: [mem 0x2de35000-0x2dfe6fff] [ 0.946693] PM: Registered nosave memory: [mem 0x2dfe7000-0x2e1dcfff] [ 0.946693] PM: Registered nosave memory: [mem 0x2e1dd000-0x2f359fff] [ 0.946694] PM: Registered nosave memory: [mem 0x2f35a000-0x2f7fffff] [ 0.946695] PM: Registered nosave memory: [mem 0x2f800000-0x2fffffff] [ 0.946695] PM: Registered nosave memory: [mem 0x30000000-0x3fffffff] [ 0.946696] PM: Registered nosave memory: [mem 0x40000000-0xfed1bfff] [ 0.946696] PM: Registered nosave memory: [mem 0xfed1c000-0xfed3ffff] [ 0.946697] PM: Registered nosave memory: [mem 0xfed40000-0xfeffffff] [ 0.946697] PM: Registered nosave memory: [mem 0xff000000-0xffffffff] [ 0.946701] [mem 0x40000000-0xfed1bfff] available for PCI devices [ 0.946703] Booting paravirtualized kernel on bare hardware [ 0.946708] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns [ 1.059211] random: get_random_bytes called from start_kernel+0x93/0x52c with crng_init=0 [ 1.059219] setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:24 nr_node_ids:2 [ 1.061585] percpu: Embedded 45 pages/cpu s144408 r8192 d31720 u262144 [ 1.061593] pcpu-alloc: s144408 r8192 d31720 u262144 alloc=1*2097152 [ 1.061594] pcpu-alloc: [0] 00 01 02 03 04 05 12 13 [0] 14 15 16 17 -- -- -- -- [ 1.061598] pcpu-alloc: [1] 06 07 08 09 10 11 18 19 [1] 20 21 22 23 -- -- -- -- [ 1.061632] Built 2 zonelists, mobility grouping on. Total pages: 33021506 [ 1.061633] Policy zone: Normal [ 1.061636] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.19.0-9-amd64 root=/dev/mapper/system--ganggang-root ro quiet [ 1.061691] log_buf_len individual max cpu contribution: 4096 bytes [ 1.061692] log_buf_len total cpu_extra contributions: 94208 bytes [ 1.061693] log_buf_len min size: 131072 bytes [ 1.061804] log_buf_len: 262144 bytes [ 1.061805] early log buf free: 117352(89%) [ 1.074864] Calgary: detecting Calgary via BIOS EBDA area [ 1.074867] Calgary: Unable to locate Rio Grande table in EBDA - bailing! [ 1.530327] Memory: 131957200K/134182720K available (10252K kernel code, 1241K rwdata, 3316K rodata, 1588K init, 2276K bss, 2225520K reserved, 0K cma-reserved) [ 1.530599] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=24, Nodes=2 [ 1.530612] Kernel/User page tables isolation: enabled [ 1.539167] ftrace: allocating 31883 entries in 125 pages [ 1.554343] rcu: Hierarchical RCU implementation. [ 1.554345] rcu: RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=24. [ 1.554346] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=24 [ 1.557941] NR_IRQS: 33024, nr_irqs: 1432, preallocated irqs: 16 [ 1.566921] Console: colour VGA+ 80x25 [ 1.566931] console [tty0] enabled [ 1.566969] mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl [ 1.566993] ACPI: Core revision 20180810 [ 1.568271] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns [ 1.568280] hpet clockevent registered [ 1.568284] APIC: Switch to symmetric I/O mode setup [ 1.568286] DMAR: Host address width 46 [ 1.568287] DMAR: DRHD base: 0x000000fbffe000 flags: 0x0 [ 1.568293] DMAR: dmar0: reg_base_addr fbffe000 ver 1:0 cap d2078c106f0466 ecap f020de [ 1.568294] DMAR: DRHD base: 0x000000cfffc000 flags: 0x1 [ 1.568298] DMAR: dmar1: reg_base_addr cfffc000 ver 1:0 cap d2078c106f0466 ecap f020de [ 1.568299] DMAR: RMRR base: 0x0000002f226000 end: 0x0000002f234fff [ 1.568300] DMAR: ATSR flags: 0x0 [ 1.568301] DMAR: RHSA base: 0x000000fbffe000 proximity domain: 0x1 [ 1.568302] DMAR: RHSA base: 0x000000cfffc000 proximity domain: 0x0 [ 1.568305] DMAR-IR: IOAPIC id 3 under DRHD base 0xfbffe000 IOMMU 0 [ 1.568306] DMAR-IR: IOAPIC id 0 under DRHD base 0xcfffc000 IOMMU 1 [ 1.568306] DMAR-IR: IOAPIC id 2 under DRHD base 0xcfffc000 IOMMU 1 [ 1.568307] DMAR-IR: HPET id 0 under DRHD base 0xcfffc000 [ 1.568309] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping. [ 1.568984] DMAR-IR: Enabled IRQ remapping in x2apic mode [ 1.568987] x2apic enabled [ 1.568993] Switched APIC routing to cluster x2apic. [ 1.569664] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 [ 1.588292] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2297b07cb97, max_idle_ns: 440795269780 ns [ 1.588305] Calibrating delay loop (skipped), value calculated using timer frequency.. 4799.71 BogoMIPS (lpj=9599428) [ 1.588308] pid_max: default: 32768 minimum: 301 [ 1.588380] Security Framework initialized [ 1.588381] Yama: disabled by default; enable with sysctl kernel.yama.* [ 1.588419] AppArmor: AppArmor initialized [ 1.603735] Dentry cache hash table entries: 8388608 (order: 14, 67108864 bytes) [ 1.611014] Inode-cache hash table entries: 4194304 (order: 13, 33554432 bytes) [ 1.611281] Mount-cache hash table entries: 131072 (order: 8, 1048576 bytes) [ 1.611502] Mountpoint-cache hash table entries: 131072 (order: 8, 1048576 bytes) [ 1.611957] CPU0: Thermal monitoring enabled (TM1) [ 1.612003] process: using mwait in idle threads [ 1.612007] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8 [ 1.612008] Last level dTLB entries: 4KB 512, 2MB 0, 4MB 0, 1GB 4 [ 1.612010] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization [ 1.612012] Spectre V2 : Mitigation: Full generic retpoline [ 1.612013] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch [ 1.612014] Spectre V2 : Enabling Restricted Speculation for firmware calls [ 1.612027] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier [ 1.612027] Spectre V2 : User space: Mitigation: STIBP via seccomp and prctl [ 1.612029] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp [ 1.612059] MDS: Mitigation: Clear CPU buffers [ 1.616266] Freeing SMP alternatives memory: 24K [ 1.620448] TSC deadline timer enabled [ 1.620453] smpboot: CPU0: Intel(R) Xeon(R) CPU E5-2630L v2 @ 2.40GHz (family: 0x6, model: 0x3e, stepping: 0x4) [ 1.620648] Performance Events: PEBS fmt1+, IvyBridge events, 16-deep LBR, full-width counters, Intel PMU driver. [ 1.620677] ... version: 3 [ 1.620677] ... bit width: 48 [ 1.620678] ... generic registers: 4 [ 1.620678] ... value mask: 0000ffffffffffff [ 1.620679] ... max period: 00007fffffffffff [ 1.620679] ... fixed-purpose events: 3 [ 1.620680] ... event mask: 000000070000000f [ 1.620747] rcu: Hierarchical SRCU implementation. [ 1.621240] random: crng done (trusting CPU's manufacturer) [ 1.623525] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter. [ 1.623838] smp: Bringing up secondary CPUs ... [ 1.623932] x86: Booting SMP configuration: [ 1.623933] .... node #0, CPUs: #1 #2 #3 #4 #5 [ 1.644545] .... node #1, CPUs: #6 #7 #8 #9 #10 #11 [ 1.748336] .... node #0, CPUs: #12 [ 1.751327] MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details. [ 1.751327] #13 #14 #15 #16 #17 [ 1.763122] .... node #1, CPUs: #18 #19 #20 #21 #22 #23 [ 1.775068] smp: Brought up 2 nodes, 24 CPUs [ 1.775068] smpboot: Max logical packages: 2 [ 1.775068] smpboot: Total of 24 processors activated (115214.41 BogoMIPS) [ 1.780490] devtmpfs: initialized [ 1.780490] x86/mm: Memory block size: 256MB [ 1.795201] PM: Registering ACPI NVS region [mem 0x2dfe7000-0x2e1dcfff] (2056192 bytes) [ 1.795201] PM: Registering ACPI NVS region [mem 0x2f35a000-0x2f7fffff] (4874240 bytes) [ 1.795201] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns [ 1.795201] futex hash table entries: 8192 (order: 7, 524288 bytes) [ 1.795201] pinctrl core: initialized pinctrl subsystem [ 1.796857] NET: Registered protocol family 16 [ 1.796976] audit: initializing netlink subsys (disabled) [ 1.796983] audit: type=2000 audit(1593084480.228:1): state=initialized audit_enabled=0 res=1 [ 1.796983] cpuidle: using governor ladder [ 1.796983] cpuidle: using governor menu [ 1.796983] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it [ 1.796983] ACPI: bus type PCI registered [ 1.796983] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 [ 1.796983] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0x30000000-0x3fffffff] (base 0x30000000) [ 1.796983] PCI: MMCONFIG at [mem 0x30000000-0x3fffffff] reserved in E820 [ 1.796983] pmd_set_huge: Cannot satisfy [mem 0x30000000-0x30200000] with a huge-page mapping due to MTRR override. [ 1.796983] PCI: Using configuration type 1 for base access [ 1.796983] core: PMU erratum BJ122, BV98, HSD29 worked around, HT is on [ 1.800304] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages [ 1.800305] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages [ 1.800507] ACPI: Added _OSI(Module Device) [ 1.800509] ACPI: Added _OSI(Processor Device) [ 1.800509] ACPI: Added _OSI(3.0 _SCP Extensions) [ 1.800510] ACPI: Added _OSI(Processor Aggregator Device) [ 1.800512] ACPI: Added _OSI(Linux-Dell-Video) [ 1.800513] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio) [ 1.895059] ACPI: 2 ACPI AML tables successfully acquired and loaded [ 1.918126] ACPI: Dynamic OEM Table Load: [ 1.921879] ACPI: Interpreter enabled [ 1.921898] ACPI: (supports S0 S1 S4 S5) [ 1.921900] ACPI: Using IOAPIC for interrupt routing [ 1.921937] HEST: Enabling Firmware First mode for corrected errors. [ 1.922174] HEST: Table parsing has been initialized. [ 1.922178] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug [ 1.922662] ACPI: Enabled 4 GPEs in block 00 to 3F [ 1.938334] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7e]) [ 1.938340] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI] [ 1.938467] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug PME AER LTR] [ 1.938581] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PCIeCapability] [ 1.938582] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration [ 1.938839] PCI host bridge to bus 0000:00 [ 1.938842] pci_bus 0000:00: root bus resource [io 0x0000-0x03af window] [ 1.938844] pci_bus 0000:00: root bus resource [io 0x03e0-0x0cf7 window] [ 1.938845] pci_bus 0000:00: root bus resource [io 0x03b0-0x03df window] [ 1.938846] pci_bus 0000:00: root bus resource [io 0x0d00-0x9fff window] [ 1.938848] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window] [ 1.938849] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window] [ 1.938850] pci_bus 0000:00: root bus resource [mem 0xfed08000-0xfed08fff window] [ 1.938851] pci_bus 0000:00: root bus resource [mem 0xfed0e000-0xfed0ffff window] [ 1.938852] pci_bus 0000:00: root bus resource [mem 0x30000000-0xcfffffff window] [ 1.938854] pci_bus 0000:00: root bus resource [bus 00-7e] [ 1.938866] pci 0000:00:00.0: [8086:0e00] type 00 class 0x060000 [ 1.938952] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold [ 1.939042] pci 0000:00:01.0: [8086:0e02] type 01 class 0x060400 [ 1.939129] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold [ 1.939231] pci 0000:00:01.1: [8086:0e03] type 01 class 0x060400 [ 1.939316] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold [ 1.939420] pci 0000:00:02.0: [8086:0e04] type 01 class 0x060400 [ 1.939504] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold [ 1.939606] pci 0000:00:02.2: [8086:0e06] type 01 class 0x060400 [ 1.939689] pci 0000:00:02.2: PME# supported from D0 D3hot D3cold [ 1.939787] pci 0000:00:03.0: [8086:0e08] type 01 class 0x060400 [ 1.939826] pci 0000:00:03.0: enabling Extended Tags [ 1.939875] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold [ 1.939971] pci 0000:00:03.2: [8086:0e0a] type 01 class 0x060400 [ 1.940054] pci 0000:00:03.2: PME# supported from D0 D3hot D3cold [ 1.940159] pci 0000:00:04.0: [8086:0e20] type 00 class 0x088000 [ 1.940179] pci 0000:00:04.0: reg 0x10: [mem 0xcfc1c000-0xcfc1ffff 64bit] [ 1.940314] pci 0000:00:04.1: [8086:0e21] type 00 class 0x088000 [ 1.940333] pci 0000:00:04.1: reg 0x10: [mem 0xcfc18000-0xcfc1bfff 64bit] [ 1.940467] pci 0000:00:04.2: [8086:0e22] type 00 class 0x088000 [ 1.940485] pci 0000:00:04.2: reg 0x10: [mem 0xcfc14000-0xcfc17fff 64bit] [ 1.940612] pci 0000:00:04.3: [8086:0e23] type 00 class 0x088000 [ 1.940630] pci 0000:00:04.3: reg 0x10: [mem 0xcfc10000-0xcfc13fff 64bit] [ 1.940757] pci 0000:00:04.4: [8086:0e24] type 00 class 0x088000 [ 1.940774] pci 0000:00:04.4: reg 0x10: [mem 0xcfc0c000-0xcfc0ffff 64bit] [ 1.940906] pci 0000:00:04.5: [8086:0e25] type 00 class 0x088000 [ 1.940925] pci 0000:00:04.5: reg 0x10: [mem 0xcfc08000-0xcfc0bfff 64bit] [ 1.941052] pci 0000:00:04.6: [8086:0e26] type 00 class 0x088000 [ 1.941070] pci 0000:00:04.6: reg 0x10: [mem 0xcfc04000-0xcfc07fff 64bit] [ 1.941197] pci 0000:00:04.7: [8086:0e27] type 00 class 0x088000 [ 1.941215] pci 0000:00:04.7: reg 0x10: [mem 0xcfc00000-0xcfc03fff 64bit] [ 1.941346] pci 0000:00:05.0: [8086:0e28] type 00 class 0x088000 [ 1.941466] pci 0000:00:05.2: [8086:0e2a] type 00 class 0x088000 [ 1.941590] pci 0000:00:05.4: [8086:0e2c] type 00 class 0x080020 [ 1.941604] pci 0000:00:05.4: reg 0x10: [mem 0xcfc25000-0xcfc25fff] [ 1.941743] pci 0000:00:11.0: [8086:1d3e] type 01 class 0x060400 [ 1.941848] pci 0000:00:11.0: PME# supported from D0 D3hot D3cold [ 1.941952] pci 0000:00:16.0: [8086:1d3a] type 00 class 0x078000 [ 1.941973] pci 0000:00:16.0: reg 0x10: [mem 0xfed0e000-0xfed0e00f 64bit] [ 1.942035] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold [ 1.942105] pci 0000:00:16.1: [8086:1d3b] type 00 class 0x078000 [ 1.942126] pci 0000:00:16.1: reg 0x10: [mem 0xfed0f000-0xfed0f00f 64bit] [ 1.942188] pci 0000:00:16.1: PME# supported from D0 D3hot D3cold [ 1.942272] pci 0000:00:1a.0: [8086:1d2d] type 00 class 0x0c0320 [ 1.942293] pci 0000:00:1a.0: reg 0x10: [mem 0xcfc23000-0xcfc233ff] [ 1.942375] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold [ 1.942456] pci 0000:00:1c.0: [8086:1d10] type 01 class 0x060400 [ 1.942598] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold [ 1.942705] pci 0000:00:1c.7: [8086:1d1e] type 01 class 0x060400 [ 1.942790] pci 0000:00:1c.7: PME# supported from D0 D3hot D3cold [ 1.942876] pci 0000:00:1d.0: [8086:1d26] type 00 class 0x0c0320 [ 1.942897] pci 0000:00:1d.0: reg 0x10: [mem 0xcfc22000-0xcfc223ff] [ 1.942979] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold [ 1.943051] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401 [ 1.943171] pci 0000:00:1f.0: [8086:1d41] type 00 class 0x060100 [ 1.943341] pci 0000:00:1f.2: [8086:1d02] type 00 class 0x010601 [ 1.943358] pci 0000:00:1f.2: reg 0x10: [io 0x9050-0x9057] [ 1.943365] pci 0000:00:1f.2: reg 0x14: [io 0x9040-0x9043] [ 1.943372] pci 0000:00:1f.2: reg 0x18: [io 0x9030-0x9037] [ 1.943379] pci 0000:00:1f.2: reg 0x1c: [io 0x9020-0x9023] [ 1.943387] pci 0000:00:1f.2: reg 0x20: [io 0x9000-0x901f] [ 1.943394] pci 0000:00:1f.2: reg 0x24: [mem 0xcfc21000-0xcfc217ff] [ 1.943433] pci 0000:00:1f.2: PME# supported from D3hot [ 1.943513] pci 0000:00:1f.3: [8086:1d22] type 00 class 0x0c0500 [ 1.943530] pci 0000:00:1f.3: reg 0x10: [mem 0xcfc20000-0xcfc200ff 64bit] [ 1.943550] pci 0000:00:1f.3: reg 0x20: [io 0x1180-0x119f] [ 1.943630] pci 0000:00:1f.6: [8086:1d24] type 00 class 0x118000 [ 1.943653] pci 0000:00:1f.6: reg 0x10: [mem 0xfed08000-0xfed08fff 64bit] [ 1.943820] pci 0000:00:01.0: PCI bridge to [bus 01] [ 1.943883] pci 0000:02:00.0: [8086:1521] type 00 class 0x020000 [ 1.943902] pci 0000:02:00.0: reg 0x10: [mem 0xcfb20000-0xcfb3ffff] [ 1.943914] pci 0000:02:00.0: reg 0x18: [io 0x8020-0x803f] [ 1.943921] pci 0000:02:00.0: reg 0x1c: [mem 0xcfb44000-0xcfb47fff] [ 1.943990] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold [ 1.944014] pci 0000:02:00.0: reg 0x184: [mem 0x00000000-0x00003fff 64bit pref] [ 1.944016] pci 0000:02:00.0: VF(n) BAR0 space: [mem 0x00000000-0x0001ffff 64bit pref] (contains BAR0 for 8 VFs) [ 1.944029] pci 0000:02:00.0: reg 0x190: [mem 0x00000000-0x00003fff 64bit pref] [ 1.944031] pci 0000:02:00.0: VF(n) BAR3 space: [mem 0x00000000-0x0001ffff 64bit pref] (contains BAR3 for 8 VFs) [ 1.944122] pci 0000:02:00.1: [8086:1521] type 00 class 0x020000 [ 1.944140] pci 0000:02:00.1: reg 0x10: [mem 0xcfb00000-0xcfb1ffff] [ 1.944153] pci 0000:02:00.1: reg 0x18: [io 0x8000-0x801f] [ 1.944159] pci 0000:02:00.1: reg 0x1c: [mem 0xcfb40000-0xcfb43fff] [ 1.944226] pci 0000:02:00.1: PME# supported from D0 D3hot D3cold [ 1.944246] pci 0000:02:00.1: reg 0x184: [mem 0x00000000-0x00003fff 64bit pref] [ 1.944247] pci 0000:02:00.1: VF(n) BAR0 space: [mem 0x00000000-0x0001ffff 64bit pref] (contains BAR0 for 8 VFs) [ 1.944260] pci 0000:02:00.1: reg 0x190: [mem 0x00000000-0x00003fff 64bit pref] [ 1.944262] pci 0000:02:00.1: VF(n) BAR3 space: [mem 0x00000000-0x0001ffff 64bit pref] (contains BAR3 for 8 VFs) [ 1.944352] pci 0000:00:01.1: ASPM: current common clock configuration is broken, reconfiguring [ 1.956317] pci 0000:00:01.1: PCI bridge to [bus 02-03] [ 1.956320] pci 0000:00:01.1: bridge window [io 0x8000-0x8fff] [ 1.956323] pci 0000:00:01.1: bridge window [mem 0xcfb00000-0xcfbfffff] [ 1.956364] pci 0000:00:02.0: PCI bridge to [bus 04] [ 1.956416] pci 0000:05:00.0: [8086:10fb] type 00 class 0x020000 [ 1.956432] pci 0000:05:00.0: reg 0x10: [mem 0xce680000-0xce6fffff 64bit pref] [ 1.956437] pci 0000:05:00.0: reg 0x18: [io 0x7020-0x703f] [ 1.956450] pci 0000:05:00.0: reg 0x20: [mem 0xce704000-0xce707fff 64bit pref] [ 1.956456] pci 0000:05:00.0: reg 0x30: [mem 0xcfa80000-0xcfafffff pref] [ 1.956494] pci 0000:05:00.0: PME# supported from D0 D3hot D3cold [ 1.956513] pci 0000:05:00.0: reg 0x184: [mem 0x00000000-0x00003fff 64bit pref] [ 1.956515] pci 0000:05:00.0: VF(n) BAR0 space: [mem 0x00000000-0x000fffff 64bit pref] (contains BAR0 for 64 VFs) [ 1.956524] pci 0000:05:00.0: reg 0x190: [mem 0x00000000-0x00003fff 64bit pref] [ 1.956526] pci 0000:05:00.0: VF(n) BAR3 space: [mem 0x00000000-0x000fffff 64bit pref] (contains BAR3 for 64 VFs) [ 1.956653] pci 0000:05:00.1: [8086:10fb] type 00 class 0x020000 [ 1.956668] pci 0000:05:00.1: reg 0x10: [mem 0xce600000-0xce67ffff 64bit pref] [ 1.956673] pci 0000:05:00.1: reg 0x18: [io 0x7000-0x701f] [ 1.956685] pci 0000:05:00.1: reg 0x20: [mem 0xce700000-0xce703fff 64bit pref] [ 1.956691] pci 0000:05:00.1: reg 0x30: [mem 0xcfa00000-0xcfa7ffff pref] [ 1.956729] pci 0000:05:00.1: PME# supported from D0 D3hot D3cold [ 1.956744] pci 0000:05:00.1: reg 0x184: [mem 0x00000000-0x00003fff 64bit pref] [ 1.956746] pci 0000:05:00.1: VF(n) BAR0 space: [mem 0x00000000-0x000fffff 64bit pref] (contains BAR0 for 64 VFs) [ 1.956755] pci 0000:05:00.1: reg 0x190: [mem 0x00000000-0x00003fff 64bit pref] [ 1.956757] pci 0000:05:00.1: VF(n) BAR3 space: [mem 0x00000000-0x000fffff 64bit pref] (contains BAR3 for 64 VFs) [ 1.956882] pci 0000:00:02.2: PCI bridge to [bus 05-06] [ 1.956885] pci 0000:00:02.2: bridge window [io 0x7000-0x7fff] [ 1.956888] pci 0000:00:02.2: bridge window [mem 0xcfa00000-0xcfafffff] [ 1.956893] pci 0000:00:02.2: bridge window [mem 0xce600000-0xce7fffff 64bit pref] [ 1.956934] pci 0000:07:00.0: [17d3:1880] type 00 class 0x010400 [ 1.956945] pci 0000:07:00.0: reg 0x10: [io 0x6000-0x60ff] [ 1.956953] pci 0000:07:00.0: reg 0x14: [mem 0xcf9c0000-0xcf9cffff 64bit] [ 1.956960] pci 0000:07:00.0: reg 0x1c: [mem 0xcf980000-0xcf9bffff 64bit] [ 1.956969] pci 0000:07:00.0: reg 0x30: [mem 0xcf900000-0xcf97ffff pref] [ 1.956973] pci 0000:07:00.0: enabling Extended Tags [ 1.957058] pci 0000:00:03.0: PCI bridge to [bus 07] [ 1.957061] pci 0000:00:03.0: bridge window [io 0x6000-0x6fff] [ 1.957063] pci 0000:00:03.0: bridge window [mem 0xcf900000-0xcf9fffff] [ 1.957101] pci 0000:00:03.2: PCI bridge to [bus 08] [ 1.957169] pci 0000:09:00.0: [8086:1d6b] type 00 class 0x010700 [ 1.957197] pci 0000:09:00.0: reg 0x10: [mem 0xce400000-0xce403fff 64bit pref] [ 1.957212] pci 0000:09:00.0: reg 0x18: [mem 0xce000000-0xce3fffff 64bit pref] [ 1.957222] pci 0000:09:00.0: reg 0x20: [io 0x5000-0x50ff] [ 1.957246] pci 0000:09:00.0: enabling Extended Tags [ 1.957337] pci 0000:09:00.0: reg 0x164: [mem 0x00000000-0x00003fff 64bit pref] [ 1.957339] pci 0000:09:00.0: VF(n) BAR0 space: [mem 0x00000000-0x0007bfff 64bit pref] (contains BAR0 for 31 VFs) [ 1.957544] pci 0000:00:11.0: PCI bridge to [bus 09] [ 1.957548] pci 0000:00:11.0: bridge window [io 0x5000-0x5fff] [ 1.957556] pci 0000:00:11.0: bridge window [mem 0xce000000-0xce4fffff 64bit pref] [ 1.957612] pci 0000:00:1c.0: PCI bridge to [bus 0a] [ 1.957978] pci 0000:0b:00.0: [1912:0013] type 01 class 0x060400 [ 1.959401] pci 0000:0b:00.0: enabling Extended Tags [ 1.960576] pci 0000:0b:00.0: PME# supported from D0 D3hot D3cold [ 1.961578] pci 0000:00:1c.7: PCI bridge to [bus 0b-0f] [ 1.961583] pci 0000:00:1c.7: bridge window [mem 0xcf000000-0xcf8fffff] [ 1.961588] pci 0000:00:1c.7: bridge window [mem 0xcd000000-0xcdffffff 64bit pref] [ 1.962657] pci 0000:0c:00.0: [1912:0013] type 01 class 0x060400 [ 1.964296] pci 0000:0c:00.0: enabling Extended Tags [ 1.965678] pci 0000:0c:00.0: PME# supported from D0 D3hot D3cold [ 1.966920] pci 0000:0c:01.0: [1912:0013] type 01 class 0x060400 [ 1.968578] pci 0000:0c:01.0: enabling Extended Tags [ 1.970081] pci 0000:0c:01.0: PME# supported from D0 D3hot D3cold [ 1.972619] pci 0000:0b:00.0: PCI bridge to [bus 0c-0f] [ 1.972812] pci 0000:0b:00.0: bridge window [mem 0xcf000000-0xcf8fffff] [ 1.972937] pci 0000:0b:00.0: bridge window [mem 0xcd000000-0xcdffffff 64bit pref] [ 1.974047] pci 0000:0d:00.0: [1912:0012] type 01 class 0x060400 [ 1.975710] pci 0000:0d:00.0: enabling Extended Tags [ 1.978152] pci 0000:0c:00.0: PCI bridge to [bus 0d-0e] [ 1.978368] pci 0000:0c:00.0: bridge window [mem 0xcf000000-0xcf8fffff] [ 1.978512] pci 0000:0c:00.0: bridge window [mem 0xcd000000-0xcdffffff 64bit pref] [ 1.979433] pci_bus 0000:0e: extended config space not accessible [ 1.979672] pci 0000:0e:00.0: [102b:0534] type 00 class 0x030000 [ 1.980156] pci 0000:0e:00.0: reg 0x10: [mem 0xcd000000-0xcdffffff pref] [ 1.980405] pci 0000:0e:00.0: reg 0x14: [mem 0xcf800000-0xcf803fff] [ 1.980666] pci 0000:0e:00.0: reg 0x18: [mem 0xcf000000-0xcf7fffff] [ 1.984754] pci 0000:0d:00.0: PCI bridge to [bus 0e] [ 1.984976] pci 0000:0d:00.0: bridge window [mem 0xcf000000-0xcf8fffff] [ 1.985122] pci 0000:0d:00.0: bridge window [mem 0xcd000000-0xcdffffff 64bit pref] [ 1.986259] pci 0000:0c:01.0: PCI bridge to [bus 0f] [ 1.987607] pci_bus 0000:10: extended config space not accessible [ 1.987656] pci 0000:00:1e.0: PCI bridge to [bus 10] (subtractive decode) [ 1.987664] pci 0000:00:1e.0: bridge window [io 0x0000-0x03af window] (subtractive decode) [ 1.987665] pci 0000:00:1e.0: bridge window [io 0x03e0-0x0cf7 window] (subtractive decode) [ 1.987667] pci 0000:00:1e.0: bridge window [io 0x03b0-0x03df window] (subtractive decode) [ 1.987668] pci 0000:00:1e.0: bridge window [io 0x0d00-0x9fff window] (subtractive decode) [ 1.987669] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode) [ 1.987670] pci 0000:00:1e.0: bridge window [mem 0x000c0000-0x000dffff window] (subtractive decode) [ 1.987671] pci 0000:00:1e.0: bridge window [mem 0xfed08000-0xfed08fff window] (subtractive decode) [ 1.987672] pci 0000:00:1e.0: bridge window [mem 0xfed0e000-0xfed0ffff window] (subtractive decode) [ 1.987673] pci 0000:00:1e.0: bridge window [mem 0x30000000-0xcfffffff window] (subtractive decode) [ 1.987734] pci_bus 0000:00: on NUMA node 0 [ 1.988227] ACPI: PCI Root Bridge [UNC0] (domain 0000 [bus 7f]) [ 1.988230] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI] [ 1.988250] acpi PNP0A03:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR] [ 1.988251] acpi PNP0A03:00: FADT indicates ASPM is unsupported, using BIOS configuration [ 1.988315] PCI host bridge to bus 0000:7f [ 1.988317] pci_bus 0000:7f: root bus resource [bus 7f] [ 1.988325] pci 0000:7f:08.0: [8086:0e80] type 00 class 0x088000 [ 1.988382] pci 0000:7f:09.0: [8086:0e90] type 00 class 0x088000 [ 1.988436] pci 0000:7f:0a.0: [8086:0ec0] type 00 class 0x088000 [ 1.988483] pci 0000:7f:0a.1: [8086:0ec1] type 00 class 0x088000 [ 1.988530] pci 0000:7f:0a.2: [8086:0ec2] type 00 class 0x088000 [ 1.988580] pci 0000:7f:0a.3: [8086:0ec3] type 00 class 0x088000 [ 1.988629] pci 0000:7f:0b.0: [8086:0e1e] type 00 class 0x088000 [ 1.988674] pci 0000:7f:0b.3: [8086:0e1f] type 00 class 0x088000 [ 1.988720] pci 0000:7f:0c.0: [8086:0ee0] type 00 class 0x088000 [ 1.988767] pci 0000:7f:0c.1: [8086:0ee2] type 00 class 0x088000 [ 1.988815] pci 0000:7f:0c.2: [8086:0ee4] type 00 class 0x088000 [ 1.988861] pci 0000:7f:0d.0: [8086:0ee1] type 00 class 0x088000 [ 1.988906] pci 0000:7f:0d.1: [8086:0ee3] type 00 class 0x088000 [ 1.988948] pci 0000:7f:0d.2: [8086:0ee5] type 00 class 0x088000 [ 1.988997] pci 0000:7f:0e.0: [8086:0ea0] type 00 class 0x088000 [ 1.989050] pci 0000:7f:0e.1: [8086:0e30] type 00 class 0x110100 [ 1.989102] pci 0000:7f:0f.0: [8086:0ea8] type 00 class 0x088000 [ 1.989166] pci 0000:7f:0f.1: [8086:0e71] type 00 class 0x088000 [ 1.989230] pci 0000:7f:0f.2: [8086:0eaa] type 00 class 0x088000 [ 1.989297] pci 0000:7f:0f.3: [8086:0eab] type 00 class 0x088000 [ 1.989359] pci 0000:7f:0f.4: [8086:0eac] type 00 class 0x088000 [ 1.989422] pci 0000:7f:0f.5: [8086:0ead] type 00 class 0x088000 [ 1.989486] pci 0000:7f:10.0: [8086:0eb0] type 00 class 0x088000 [ 1.989548] pci 0000:7f:10.1: [8086:0eb1] type 00 class 0x088000 [ 1.989618] pci 0000:7f:10.2: [8086:0eb2] type 00 class 0x088000 [ 1.989679] pci 0000:7f:10.3: [8086:0eb3] type 00 class 0x088000 [ 1.989740] pci 0000:7f:10.4: [8086:0eb4] type 00 class 0x088000 [ 1.989805] pci 0000:7f:10.5: [8086:0eb5] type 00 class 0x088000 [ 1.989866] pci 0000:7f:10.6: [8086:0eb6] type 00 class 0x088000 [ 1.989927] pci 0000:7f:10.7: [8086:0eb7] type 00 class 0x088000 [ 1.989992] pci 0000:7f:13.0: [8086:0e1d] type 00 class 0x088000 [ 1.990037] pci 0000:7f:13.1: [8086:0e34] type 00 class 0x110100 [ 1.990083] pci 0000:7f:13.4: [8086:0e81] type 00 class 0x088000 [ 1.990128] pci 0000:7f:13.5: [8086:0e36] type 00 class 0x110100 [ 1.990177] pci 0000:7f:16.0: [8086:0ec8] type 00 class 0x088000 [ 1.990226] pci 0000:7f:16.1: [8086:0ec9] type 00 class 0x088000 [ 1.990271] pci 0000:7f:16.2: [8086:0eca] type 00 class 0x088000 [ 1.990322] pci_bus 0000:7f: on NUMA node 0 [ 1.990432] ACPI: PCI Root Bridge [PCI1] (domain 0000 [bus 80-fe]) [ 1.990435] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI] [ 1.990561] acpi PNP0A08:01: _OSC: platform does not support [SHPCHotplug PME AER LTR] [ 1.990675] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PCIeCapability] [ 1.990676] acpi PNP0A08:01: FADT indicates ASPM is unsupported, using BIOS configuration [ 1.990837] PCI host bridge to bus 0000:80 [ 1.990839] pci_bus 0000:80: root bus resource [io 0xa000-0xffff window] [ 1.990841] pci_bus 0000:80: root bus resource [mem 0xd0000000-0xfbffffff window] [ 1.990842] pci_bus 0000:80: root bus resource [bus 80-fe] [ 1.990854] pci 0000:80:00.0: [8086:0e01] type 01 class 0x060400 [ 1.990944] pci 0000:80:00.0: PME# supported from D0 D3hot D3cold [ 1.991044] pci 0000:80:01.0: [8086:0e02] type 01 class 0x060400 [ 1.991135] pci 0000:80:01.0: PME# supported from D0 D3hot D3cold [ 1.991229] pci 0000:80:02.0: [8086:0e04] type 01 class 0x060400 [ 1.991319] pci 0000:80:02.0: PME# supported from D0 D3hot D3cold [ 1.991416] pci 0000:80:03.0: [8086:0e08] type 01 class 0x060400 [ 1.991459] pci 0000:80:03.0: enabling Extended Tags [ 1.991511] pci 0000:80:03.0: PME# supported from D0 D3hot D3cold [ 1.991602] pci 0000:80:03.2: [8086:0e0a] type 01 class 0x060400 [ 1.991691] pci 0000:80:03.2: PME# supported from D0 D3hot D3cold [ 1.991786] pci 0000:80:04.0: [8086:0e20] type 00 class 0x088000 [ 1.991806] pci 0000:80:04.0: reg 0x10: [mem 0xfbf1c000-0xfbf1ffff 64bit] [ 1.991930] pci 0000:80:04.1: [8086:0e21] type 00 class 0x088000 [ 1.991949] pci 0000:80:04.1: reg 0x10: [mem 0xfbf18000-0xfbf1bfff 64bit] [ 1.992080] pci 0000:80:04.2: [8086:0e22] type 00 class 0x088000 [ 1.992099] pci 0000:80:04.2: reg 0x10: [mem 0xfbf14000-0xfbf17fff 64bit] [ 1.992223] pci 0000:80:04.3: [8086:0e23] type 00 class 0x088000 [ 1.992243] pci 0000:80:04.3: reg 0x10: [mem 0xfbf10000-0xfbf13fff 64bit] [ 1.992373] pci 0000:80:04.4: [8086:0e24] type 00 class 0x088000 [ 1.992392] pci 0000:80:04.4: reg 0x10: [mem 0xfbf0c000-0xfbf0ffff 64bit] [ 1.992523] pci 0000:80:04.5: [8086:0e25] type 00 class 0x088000 [ 1.992542] pci 0000:80:04.5: reg 0x10: [mem 0xfbf08000-0xfbf0bfff 64bit] [ 1.992667] pci 0000:80:04.6: [8086:0e26] type 00 class 0x088000 [ 1.992687] pci 0000:80:04.6: reg 0x10: [mem 0xfbf04000-0xfbf07fff 64bit] [ 1.992811] pci 0000:80:04.7: [8086:0e27] type 00 class 0x088000 [ 1.992830] pci 0000:80:04.7: reg 0x10: [mem 0xfbf00000-0xfbf03fff 64bit] [ 1.992959] pci 0000:80:05.0: [8086:0e28] type 00 class 0x088000 [ 1.993075] pci 0000:80:05.2: [8086:0e2a] type 00 class 0x088000 [ 1.993191] pci 0000:80:05.4: [8086:0e2c] type 00 class 0x080020 [ 1.993206] pci 0000:80:05.4: reg 0x10: [mem 0xfbf20000-0xfbf20fff] [ 1.993376] pci 0000:80:00.0: PCI bridge to [bus 81] [ 1.993426] pci 0000:80:01.0: PCI bridge to [bus 82] [ 1.993469] pci 0000:80:02.0: PCI bridge to [bus 83] [ 1.993518] pci 0000:80:03.0: PCI bridge to [bus 84] [ 1.993567] pci 0000:80:03.2: PCI bridge to [bus 85] [ 1.993605] pci_bus 0000:80: on NUMA node 1 [ 1.993670] ACPI: PCI Root Bridge [UNC1] (domain 0000 [bus ff]) [ 1.993672] acpi PNP0A03:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI] [ 1.993693] acpi PNP0A03:01: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR] [ 1.993695] acpi PNP0A03:01: FADT indicates ASPM is unsupported, using BIOS configuration [ 1.993748] PCI host bridge to bus 0000:ff [ 1.993750] pci_bus 0000:ff: root bus resource [bus ff] [ 1.993758] pci 0000:ff:08.0: [8086:0e80] type 00 class 0x088000 [ 1.993821] pci 0000:ff:09.0: [8086:0e90] type 00 class 0x088000 [ 1.993878] pci 0000:ff:0a.0: [8086:0ec0] type 00 class 0x088000 [ 1.993930] pci 0000:ff:0a.1: [8086:0ec1] type 00 class 0x088000 [ 1.993988] pci 0000:ff:0a.2: [8086:0ec2] type 00 class 0x088000 [ 1.994039] pci 0000:ff:0a.3: [8086:0ec3] type 00 class 0x088000 [ 1.994095] pci 0000:ff:0b.0: [8086:0e1e] type 00 class 0x088000 [ 1.994143] pci 0000:ff:0b.3: [8086:0e1f] type 00 class 0x088000 [ 1.994195] pci 0000:ff:0c.0: [8086:0ee0] type 00 class 0x088000 [ 1.994253] pci 0000:ff:0c.1: [8086:0ee2] type 00 class 0x088000 [ 1.994307] pci 0000:ff:0c.2: [8086:0ee4] type 00 class 0x088000 [ 1.994368] pci 0000:ff:0d.0: [8086:0ee1] type 00 class 0x088000 [ 1.994418] pci 0000:ff:0d.1: [8086:0ee3] type 00 class 0x088000 [ 1.994468] pci 0000:ff:0d.2: [8086:0ee5] type 00 class 0x088000 [ 1.994526] pci 0000:ff:0e.0: [8086:0ea0] type 00 class 0x088000 [ 1.994580] pci 0000:ff:0e.1: [8086:0e30] type 00 class 0x110100 [ 1.994638] pci 0000:ff:0f.0: [8086:0ea8] type 00 class 0x088000 [ 1.994709] pci 0000:ff:0f.1: [8086:0e71] type 00 class 0x088000 [ 1.994784] pci 0000:ff:0f.2: [8086:0eaa] type 00 class 0x088000 [ 1.994853] pci 0000:ff:0f.3: [8086:0eab] type 00 class 0x088000 [ 1.994922] pci 0000:ff:0f.4: [8086:0eac] type 00 class 0x088000 [ 1.994996] pci 0000:ff:0f.5: [8086:0ead] type 00 class 0x088000 [ 1.995065] pci 0000:ff:10.0: [8086:0eb0] type 00 class 0x088000 [ 1.995135] pci 0000:ff:10.1: [8086:0eb1] type 00 class 0x088000 [ 1.995208] pci 0000:ff:10.2: [8086:0eb2] type 00 class 0x088000 [ 1.995279] pci 0000:ff:10.3: [8086:0eb3] type 00 class 0x088000 [ 1.995346] pci 0000:ff:10.4: [8086:0eb4] type 00 class 0x088000 [ 1.995417] pci 0000:ff:10.5: [8086:0eb5] type 00 class 0x088000 [ 1.995484] pci 0000:ff:10.6: [8086:0eb6] type 00 class 0x088000 [ 1.995558] pci 0000:ff:10.7: [8086:0eb7] type 00 class 0x088000 [ 1.995629] pci 0000:ff:13.0: [8086:0e1d] type 00 class 0x088000 [ 1.995677] pci 0000:ff:13.1: [8086:0e34] type 00 class 0x110100 [ 1.995727] pci 0000:ff:13.4: [8086:0e81] type 00 class 0x088000 [ 1.995778] pci 0000:ff:13.5: [8086:0e36] type 00 class 0x110100 [ 1.995831] pci 0000:ff:16.0: [8086:0ec8] type 00 class 0x088000 [ 1.995887] pci 0000:ff:16.1: [8086:0ec9] type 00 class 0x088000 [ 1.995934] pci 0000:ff:16.2: [8086:0eca] type 00 class 0x088000 [ 1.995991] pci_bus 0000:ff: on NUMA node 1 [ 1.996070] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12 14 15) [ 1.996114] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 *10 11 12 14 15) [ 1.996156] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 *5 6 10 11 12 14 15) [ 1.996197] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 *11 12 14 15) [ 1.996237] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 12 14 15) *0 [ 1.996278] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0 [ 1.996323] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 11 12 14 15) *0 [ 1.996365] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 *7 10 11 12 14 15) [ 1.998887] pci 0000:0e:00.0: vgaarb: setting as boot VGA device [ 1.998887] pci 0000:0e:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none [ 1.998887] pci 0000:0e:00.0: vgaarb: bridge control possible [ 1.998887] vgaarb: loaded [ 1.998887] pps_core: LinuxPPS API ver. 1 registered [ 1.998887] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti at linux.it> [ 1.998887] PTP clock support registered [ 1.998887] EDAC MC: Ver: 3.0.0 [ 1.998887] PCI: Using ACPI for IRQ routing [ 2.004424] PCI: pci_cache_line_size set to 64 bytes [ 2.004952] e820: reserve RAM buffer [mem 0x0009c000-0x0009ffff] [ 2.004954] e820: reserve RAM buffer [mem 0x2de35000-0x2fffffff] [ 2.005120] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0 [ 2.005120] hpet0: 8 comparators, 64-bit 14.318180 MHz counter [ 2.007048] clocksource: Switched to clocksource tsc-early [ 2.017101] VFS: Disk quotas dquot_6.6.0 [ 2.017131] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ 2.017297] AppArmor: AppArmor Filesystem Enabled [ 2.017315] pnp: PnP ACPI init [ 2.017430] system 00:00: [mem 0xfc000000-0xfcffffff] has been reserved [ 2.017431] system 00:00: [mem 0xfd000000-0xfdffffff] has been reserved [ 2.017433] system 00:00: [mem 0xfe000000-0xfeafffff] has been reserved [ 2.017434] system 00:00: [mem 0xfeb00000-0xfebfffff] has been reserved [ 2.017440] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active) [ 2.017576] system 00:01: [mem 0xcfffc000-0xcfffdfff] could not be reserved [ 2.017579] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active) [ 2.017607] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active) [ 2.017650] pnp 00:03: disabling [mem 0x00000400-0x000004ff] because it overlaps 0000:02:00.0 BAR 7 [mem 0x00000000-0x0001ffff 64bit pref] [ 2.017652] pnp 00:03: disabling [mem 0x00000400-0x000004ff disabled] because it overlaps 0000:02:00.0 BAR 10 [mem 0x00000000-0x0001ffff 64bit pref] [ 2.017655] pnp 00:03: disabling [mem 0x00000400-0x000004ff disabled] because it overlaps 0000:02:00.1 BAR 7 [mem 0x00000000-0x0001ffff 64bit pref] [ 2.017656] pnp 00:03: disabling [mem 0x00000400-0x000004ff disabled] because it overlaps 0000:02:00.1 BAR 10 [mem 0x00000000-0x0001ffff 64bit pref] [ 2.017658] pnp 00:03: disabling [mem 0x00000400-0x000004ff disabled] because it overlaps 0000:05:00.0 BAR 7 [mem 0x00000000-0x000fffff 64bit pref] [ 2.017659] pnp 00:03: disabling [mem 0x00000400-0x000004ff disabled] because it overlaps 0000:05:00.0 BAR 10 [mem 0x00000000-0x000fffff 64bit pref] [ 2.017661] pnp 00:03: disabling [mem 0x00000400-0x000004ff disabled] because it overlaps 0000:05:00.1 BAR 7 [mem 0x00000000-0x000fffff 64bit pref] [ 2.017663] pnp 00:03: disabling [mem 0x00000400-0x000004ff disabled] because it overlaps 0000:05:00.1 BAR 10 [mem 0x00000000-0x000fffff 64bit pref] [ 2.017665] pnp 00:03: disabling [mem 0x00000400-0x000004ff disabled] because it overlaps 0000:09:00.0 BAR 7 [mem 0x00000000-0x0007bfff 64bit pref] [ 2.017745] system 00:03: [io 0x04d0-0x04d1] has been reserved [ 2.017749] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active) [ 2.017895] system 00:04: [io 0x0a00-0x0a07] has been reserved [ 2.017898] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active) [ 2.018070] system 00:05: [io 0x0370-0x0371] has been reserved [ 2.018071] system 00:05: [io 0x0a00-0x0a07] has been reserved [ 2.018072] system 00:05: [io 0x0a10-0x0a3f] has been reserved [ 2.018076] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active) [ 2.018229] pnp 00:06: [dma 0 disabled] [ 2.018278] pnp 00:06: Plug and Play ACPI device, IDs PNP0501 (active) [ 2.018414] pnp 00:07: [dma 0 disabled] [ 2.018457] pnp 00:07: Plug and Play ACPI device, IDs PNP0501 (active) [ 2.018647] system 00:08: [io 0x0400-0x0453] has been reserved [ 2.018649] system 00:08: [io 0x0458-0x047f] has been reserved [ 2.018650] system 00:08: [io 0x1180-0x119f] has been reserved [ 2.018652] system 00:08: [io 0x0500-0x057f] has been reserved [ 2.018653] system 00:08: [mem 0xfed1c000-0xfed1ffff] has been reserved [ 2.018655] system 00:08: [mem 0xfec00000-0xfecfffff] could not be reserved [ 2.018656] system 00:08: [mem 0xff000000-0xffffffff] has been reserved [ 2.018660] system 00:08: Plug and Play ACPI device, IDs PNP0c01 (active) [ 2.018780] system 00:09: [io 0x0454-0x0457] has been reserved [ 2.018784] system 00:09: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active) [ 2.018932] system 00:0a: Plug and Play ACPI device, IDs PNP0c01 (active) [ 2.019053] system 00:0b: [mem 0xfbffe000-0xfbffffff] could not be reserved [ 2.019057] system 00:0b: Plug and Play ACPI device, IDs PNP0c02 (active) [ 2.019178] pnp 00:0c: disabling [mem 0x00000000-0x0009ffff] because it overlaps 0000:05:00.0 BAR 7 [mem 0x00000000-0x000fffff 64bit pref] [ 2.019179] pnp 00:0c: disabling [mem 0x00000000-0x0009ffff disabled] because it overlaps 0000:05:00.0 BAR 10 [mem 0x00000000-0x000fffff 64bit pref] [ 2.019181] pnp 00:0c: disabling [mem 0x00000000-0x0009ffff disabled] because it overlaps 0000:05:00.1 BAR 7 [mem 0x00000000-0x000fffff 64bit pref] [ 2.019182] pnp 00:0c: disabling [mem 0x00000000-0x0009ffff disabled] because it overlaps 0000:05:00.1 BAR 10 [mem 0x00000000-0x000fffff 64bit pref] [ 2.019219] system 00:0c: Plug and Play ACPI device, IDs PNP0c01 (active) [ 2.019434] pnp: PnP ACPI: found 13 devices [ 2.025521] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns [ 2.025530] pci_bus 0000:00: max bus depth: 4 pci_try_num: 5 [ 2.026542] pci 0000:00:01.1: BAR 15: assigned [mem 0x40000000-0x400fffff 64bit pref] [ 2.026545] pci 0000:00:11.0: BAR 14: assigned [mem 0x40100000-0x401fffff] [ 2.026546] pci 0000:00:01.0: PCI bridge to [bus 01] [ 2.026557] pci 0000:02:00.0: BAR 7: assigned [mem 0x40000000-0x4001ffff 64bit pref] [ 2.026561] pci 0000:02:00.0: BAR 10: assigned [mem 0x40020000-0x4003ffff 64bit pref] [ 2.026564] pci 0000:02:00.1: BAR 7: assigned [mem 0x40040000-0x4005ffff 64bit pref] [ 2.026568] pci 0000:02:00.1: BAR 10: assigned [mem 0x40060000-0x4007ffff 64bit pref] [ 2.026571] pci 0000:00:01.1: PCI bridge to [bus 02-03] [ 2.026573] pci 0000:00:01.1: bridge window [io 0x8000-0x8fff] [ 2.026576] pci 0000:00:01.1: bridge window [mem 0xcfb00000-0xcfbfffff] [ 2.026579] pci 0000:00:01.1: bridge window [mem 0x40000000-0x400fffff 64bit pref] [ 2.026583] pci 0000:00:02.0: PCI bridge to [bus 04] [ 2.026594] pci 0000:05:00.0: BAR 7: no space for [mem size 0x00100000 64bit pref] [ 2.026595] pci 0000:05:00.0: BAR 7: failed to assign [mem size 0x00100000 64bit pref] [ 2.026598] pci 0000:05:00.0: BAR 10: no space for [mem size 0x00100000 64bit pref] [ 2.026599] pci 0000:05:00.0: BAR 10: failed to assign [mem size 0x00100000 64bit pref] [ 2.026602] pci 0000:05:00.1: BAR 7: no space for [mem size 0x00100000 64bit pref] [ 2.026603] pci 0000:05:00.1: BAR 7: failed to assign [mem size 0x00100000 64bit pref] [ 2.026606] pci 0000:05:00.1: BAR 10: no space for [mem size 0x00100000 64bit pref] [ 2.026607] pci 0000:05:00.1: BAR 10: failed to assign [mem size 0x00100000 64bit pref] [ 2.026609] pci 0000:00:02.2: PCI bridge to [bus 05-06] [ 2.026611] pci 0000:00:02.2: bridge window [io 0x7000-0x7fff] [ 2.026614] pci 0000:00:02.2: bridge window [mem 0xcfa00000-0xcfafffff] [ 2.026617] pci 0000:00:02.2: bridge window [mem 0xce600000-0xce7fffff 64bit pref] [ 2.026622] pci 0000:00:03.0: PCI bridge to [bus 07] [ 2.026624] pci 0000:00:03.0: bridge window [io 0x6000-0x6fff] [ 2.026627] pci 0000:00:03.0: bridge window [mem 0xcf900000-0xcf9fffff] [ 2.026633] pci 0000:00:03.2: PCI bridge to [bus 08] [ 2.026643] pci 0000:09:00.0: BAR 7: assigned [mem 0xce404000-0xce47ffff 64bit pref] [ 2.026646] pci 0000:00:11.0: PCI bridge to [bus 09] [ 2.026649] pci 0000:00:11.0: bridge window [io 0x5000-0x5fff] [ 2.026653] pci 0000:00:11.0: bridge window [mem 0x40100000-0x401fffff] [ 2.026657] pci 0000:00:11.0: bridge window [mem 0xce000000-0xce4fffff 64bit pref] [ 2.026663] pci 0000:00:1c.0: PCI bridge to [bus 0a] [ 2.026680] pci 0000:0d:00.0: PCI bridge to [bus 0e] [ 2.026819] pci 0000:0d:00.0: bridge window [mem 0xcf000000-0xcf8fffff] [ 2.026913] pci 0000:0d:00.0: bridge window [mem 0xcd000000-0xcdffffff 64bit pref] [ 2.027108] pci 0000:0c:00.0: PCI bridge to [bus 0d-0e] [ 2.027252] pci 0000:0c:00.0: bridge window [mem 0xcf000000-0xcf8fffff] [ 2.027346] pci 0000:0c:00.0: bridge window [mem 0xcd000000-0xcdffffff 64bit pref] [ 2.027540] pci 0000:0c:01.0: PCI bridge to [bus 0f] [ 2.028034] pci 0000:0b:00.0: PCI bridge to [bus 0c-0f] [ 2.028165] pci 0000:0b:00.0: bridge window [mem 0xcf000000-0xcf8fffff] [ 2.028249] pci 0000:0b:00.0: bridge window [mem 0xcd000000-0xcdffffff 64bit pref] [ 2.028489] pci 0000:00:1c.7: PCI bridge to [bus 0b-0f] [ 2.028493] pci 0000:00:1c.7: bridge window [mem 0xcf000000-0xcf8fffff] [ 2.028496] pci 0000:00:1c.7: bridge window [mem 0xcd000000-0xcdffffff 64bit pref] [ 2.028501] pci 0000:00:1e.0: PCI bridge to [bus 10] [ 2.028511] pci_bus 0000:00: No. 2 try to assign unassigned res [ 2.028513] release child resource [mem 0xce600000-0xce67ffff 64bit pref] [ 2.028513] release child resource [mem 0xce680000-0xce6fffff 64bit pref] [ 2.028514] release child resource [mem 0xce700000-0xce703fff 64bit pref] [ 2.028515] release child resource [mem 0xce704000-0xce707fff 64bit pref] [ 2.028516] pci 0000:00:02.2: resource 15 [mem 0xce600000-0xce7fffff 64bit pref] released [ 2.028517] pci 0000:00:02.2: PCI bridge to [bus 05-06] [ 2.029521] pci 0000:00:02.2: BAR 15: assigned [mem 0x40200000-0x407fffff 64bit pref] [ 2.029522] pci 0000:00:01.0: PCI bridge to [bus 01] [ 2.029531] pci 0000:00:01.1: PCI bridge to [bus 02-03] [ 2.029533] pci 0000:00:01.1: bridge window [io 0x8000-0x8fff] [ 2.029537] pci 0000:00:01.1: bridge window [mem 0xcfb00000-0xcfbfffff] [ 2.029540] pci 0000:00:01.1: bridge window [mem 0x40000000-0x400fffff 64bit pref] [ 2.029544] pci 0000:00:02.0: PCI bridge to [bus 04] [ 2.029554] pci 0000:05:00.0: BAR 0: assigned [mem 0x40200000-0x4027ffff 64bit pref] [ 2.029560] pci 0000:05:00.1: BAR 0: assigned [mem 0x40280000-0x402fffff 64bit pref] [ 2.029566] pci 0000:05:00.0: BAR 4: assigned [mem 0x40300000-0x40303fff 64bit pref] [ 2.029571] pci 0000:05:00.0: BAR 7: assigned [mem 0x40304000-0x40403fff 64bit pref] [ 2.029574] pci 0000:05:00.0: BAR 10: assigned [mem 0x40404000-0x40503fff 64bit pref] [ 2.029577] pci 0000:05:00.1: BAR 4: assigned [mem 0x40504000-0x40507fff 64bit pref] [ 2.029583] pci 0000:05:00.1: BAR 7: assigned [mem 0x40508000-0x40607fff 64bit pref] [ 2.029585] pci 0000:05:00.1: BAR 10: assigned [mem 0x40608000-0x40707fff 64bit pref] [ 2.029588] pci 0000:00:02.2: PCI bridge to [bus 05-06] [ 2.029589] pci 0000:00:02.2: bridge window [io 0x7000-0x7fff] [ 2.029593] pci 0000:00:02.2: bridge window [mem 0xcfa00000-0xcfafffff] [ 2.029595] pci 0000:00:02.2: bridge window [mem 0x40200000-0x407fffff 64bit pref] [ 2.029600] pci 0000:00:03.0: PCI bridge to [bus 07] [ 2.029601] pci 0000:00:03.0: bridge window [io 0x6000-0x6fff] [ 2.029605] pci 0000:00:03.0: bridge window [mem 0xcf900000-0xcf9fffff] [ 2.029611] pci 0000:00:03.2: PCI bridge to [bus 08] [ 2.029620] pci 0000:00:11.0: PCI bridge to [bus 09] [ 2.029622] pci 0000:00:11.0: bridge window [io 0x5000-0x5fff] [ 2.029626] pci 0000:00:11.0: bridge window [mem 0x40100000-0x401fffff] [ 2.029630] pci 0000:00:11.0: bridge window [mem 0xce000000-0xce4fffff 64bit pref] [ 2.029636] pci 0000:00:1c.0: PCI bridge to [bus 0a] [ 2.029653] pci 0000:0d:00.0: PCI bridge to [bus 0e] [ 2.029795] pci 0000:0d:00.0: bridge window [mem 0xcf000000-0xcf8fffff] [ 2.029889] pci 0000:0d:00.0: bridge window [mem 0xcd000000-0xcdffffff 64bit pref] [ 2.030084] pci 0000:0c:00.0: PCI bridge to [bus 0d-0e] [ 2.030228] pci 0000:0c:00.0: bridge window [mem 0xcf000000-0xcf8fffff] [ 2.030322] pci 0000:0c:00.0: bridge window [mem 0xcd000000-0xcdffffff 64bit pref] [ 2.030516] pci 0000:0c:01.0: PCI bridge to [bus 0f] [ 2.031010] pci 0000:0b:00.0: PCI bridge to [bus 0c-0f] [ 2.031140] pci 0000:0b:00.0: bridge window [mem 0xcf000000-0xcf8fffff] [ 2.031225] pci 0000:0b:00.0: bridge window [mem 0xcd000000-0xcdffffff 64bit pref] [ 2.031464] pci 0000:00:1c.7: PCI bridge to [bus 0b-0f] [ 2.031469] pci 0000:00:1c.7: bridge window [mem 0xcf000000-0xcf8fffff] [ 2.031473] pci 0000:00:1c.7: bridge window [mem 0xcd000000-0xcdffffff 64bit pref] [ 2.031479] pci 0000:00:1e.0: PCI bridge to [bus 10] [ 2.031490] pci_bus 0000:00: resource 4 [io 0x0000-0x03af window] [ 2.031491] pci_bus 0000:00: resource 5 [io 0x03e0-0x0cf7 window] [ 2.031493] pci_bus 0000:00: resource 6 [io 0x03b0-0x03df window] [ 2.031494] pci_bus 0000:00: resource 7 [io 0x0d00-0x9fff window] [ 2.031495] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window] [ 2.031496] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window] [ 2.031497] pci_bus 0000:00: resource 10 [mem 0xfed08000-0xfed08fff window] [ 2.031498] pci_bus 0000:00: resource 11 [mem 0xfed0e000-0xfed0ffff window] [ 2.031499] pci_bus 0000:00: resource 12 [mem 0x30000000-0xcfffffff window] [ 2.031500] pci_bus 0000:02: resource 0 [io 0x8000-0x8fff] [ 2.031501] pci_bus 0000:02: resource 1 [mem 0xcfb00000-0xcfbfffff] [ 2.031502] pci_bus 0000:02: resource 2 [mem 0x40000000-0x400fffff 64bit pref] [ 2.031503] pci_bus 0000:05: resource 0 [io 0x7000-0x7fff] [ 2.031504] pci_bus 0000:05: resource 1 [mem 0xcfa00000-0xcfafffff] [ 2.031505] pci_bus 0000:05: resource 2 [mem 0x40200000-0x407fffff 64bit pref] [ 2.031507] pci_bus 0000:07: resource 0 [io 0x6000-0x6fff] [ 2.031508] pci_bus 0000:07: resource 1 [mem 0xcf900000-0xcf9fffff] [ 2.031509] pci_bus 0000:09: resource 0 [io 0x5000-0x5fff] [ 2.031510] pci_bus 0000:09: resource 1 [mem 0x40100000-0x401fffff] [ 2.031511] pci_bus 0000:09: resource 2 [mem 0xce000000-0xce4fffff 64bit pref] [ 2.031512] pci_bus 0000:0b: resource 1 [mem 0xcf000000-0xcf8fffff] [ 2.031513] pci_bus 0000:0b: resource 2 [mem 0xcd000000-0xcdffffff 64bit pref] [ 2.031514] pci_bus 0000:0c: resource 1 [mem 0xcf000000-0xcf8fffff] [ 2.031515] pci_bus 0000:0c: resource 2 [mem 0xcd000000-0xcdffffff 64bit pref] [ 2.031516] pci_bus 0000:0d: resource 1 [mem 0xcf000000-0xcf8fffff] [ 2.031518] pci_bus 0000:0d: resource 2 [mem 0xcd000000-0xcdffffff 64bit pref] [ 2.031519] pci_bus 0000:0e: resource 1 [mem 0xcf000000-0xcf8fffff] [ 2.031520] pci_bus 0000:0e: resource 2 [mem 0xcd000000-0xcdffffff 64bit pref] [ 2.031521] pci_bus 0000:10: resource 4 [io 0x0000-0x03af window] [ 2.031522] pci_bus 0000:10: resource 5 [io 0x03e0-0x0cf7 window] [ 2.031523] pci_bus 0000:10: resource 6 [io 0x03b0-0x03df window] [ 2.031524] pci_bus 0000:10: resource 7 [io 0x0d00-0x9fff window] [ 2.031525] pci_bus 0000:10: resource 8 [mem 0x000a0000-0x000bffff window] [ 2.031527] pci_bus 0000:10: resource 9 [mem 0x000c0000-0x000dffff window] [ 2.031528] pci_bus 0000:10: resource 10 [mem 0xfed08000-0xfed08fff window] [ 2.031529] pci_bus 0000:10: resource 11 [mem 0xfed0e000-0xfed0ffff window] [ 2.031530] pci_bus 0000:10: resource 12 [mem 0x30000000-0xcfffffff window] [ 2.031606] pci 0000:80:00.0: PCI bridge to [bus 81] [ 2.031616] pci 0000:80:01.0: PCI bridge to [bus 82] [ 2.031624] pci 0000:80:02.0: PCI bridge to [bus 83] [ 2.031633] pci 0000:80:03.0: PCI bridge to [bus 84] [ 2.031642] pci 0000:80:03.2: PCI bridge to [bus 85] [ 2.031651] pci_bus 0000:80: resource 4 [io 0xa000-0xffff window] [ 2.031652] pci_bus 0000:80: resource 5 [mem 0xd0000000-0xfbffffff window] [ 2.031723] NET: Registered protocol family 2 [ 2.032107] tcp_listen_portaddr_hash hash table entries: 65536 (order: 8, 1048576 bytes) [ 2.032413] TCP established hash table entries: 524288 (order: 10, 4194304 bytes) [ 2.033154] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) [ 2.033319] TCP: Hash tables configured (established 524288 bind 65536) [ 2.033471] UDP hash table entries: 65536 (order: 9, 2097152 bytes) [ 2.033854] UDP-Lite hash table entries: 65536 (order: 9, 2097152 bytes) [ 2.034334] NET: Registered protocol family 1 [ 2.034340] NET: Registered protocol family 44 [ 2.034381] pci 0000:00:05.0: disabled boot interrupts on device [8086:0e28] [ 2.035160] pci 0000:0e:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff] [ 2.035288] pci 0000:80:05.0: disabled boot interrupts on device [8086:0e28] [ 2.035361] PCI: CLS 64 bytes, default 64 [ 2.035435] Unpacking initramfs... [ 2.567267] Freeing initrd memory: 32800K [ 2.596468] PCI-DMA: Using software bounce buffering for IO (SWIOTLB) [ 2.596470] software IO TLB: mapped [mem 0x26c63000-0x2ac63000] (64MB) [ 2.598030] Initialise system trusted keyrings [ 2.598049] Key type blacklist registered [ 2.598158] workingset: timestamp_bits=40 max_order=25 bucket_order=0 [ 2.599749] zbud: loaded [ 2.777347] Key type asymmetric registered [ 2.777349] Asymmetric key parser 'x509' registered [ 2.777360] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247) [ 2.777434] io scheduler noop registered [ 2.777435] io scheduler deadline registered [ 2.777465] io scheduler cfq registered (default) [ 2.777466] io scheduler mq-deadline registered [ 2.783380] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 [ 2.783395] intel_idle: MWAIT substates: 0x1120 [ 2.783396] intel_idle: v0.4.1 model 0x3E [ 2.784500] intel_idle: lapic_timer_reliable_states 0xffffffff [ 2.808375] ERST: Error Record Serialization Table (ERST) support is initialized. [ 2.808378] pstore: Registered erst as persistent store backend [ 2.808497] GHES: APEI firmware first mode is enabled by WHEA _OSC. [ 2.808606] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled [ 2.829122] 00:06: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A [ 2.849696] 00:07: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A [ 2.850167] Linux agpgart interface v0.103 [ 2.850394] AMD IOMMUv2 driver by Joerg Roedel <jroedel at suse.de> [ 2.850395] AMD IOMMUv2 functionality not available on this system [ 2.853034] i8042: PNP: No PS/2 controller found. [ 2.853117] mousedev: PS/2 mouse device common for all mice [ 2.853156] rtc_cmos 00:02: RTC can wake from S4 [ 2.853337] rtc_cmos 00:02: registered as rtc0 [ 2.853354] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram, hpet irqs [ 2.853372] intel_pstate: Intel P-state driver initializing [ 2.855654] ledtrig-cpu: registered to indicate activity on CPUs [ 2.857352] NET: Registered protocol family 10 [ 2.871725] Segment Routing with IPv6 [ 2.871753] mip6: Mobile IPv6 [ 2.871757] NET: Registered protocol family 17 [ 2.871816] mpls_gso: MPLS GSO support [ 2.875123] mce: Using 23 MCE banks [ 2.875223] microcode: sig=0x306e4, pf=0x1, revision=0x42e [ 2.876116] microcode: Microcode Update Driver: v2.2. [ 2.876135] sched_clock: Marking stable (2865970738, 10134582)->(3101049225, -224943905) [ 2.876566] registered taskstats version 1 [ 2.876568] Loading compiled-in X.509 certificates [ 2.922387] Loaded X.509 cert 'Debian Secure Boot CA: 6ccece7e4c6c0d1f6149f3dd27dfcc5cbb419ea1' [ 2.922404] Loaded X.509 cert 'Debian Secure Boot Signer: 00a7468def' [ 2.922443] zswap: loaded using pool lzo/zbud [ 2.922722] pstore: Using compression: deflate [ 2.922734] AppArmor: AppArmor sha1 policy hashing enabled [ 2.923579] rtc_cmos 00:02: setting system clock to 2020-06-25 11:28:01 UTC (1593084481) [ 3.185577] Freeing unused kernel image memory: 1588K [ 3.204355] Write protecting the kernel read-only data: 16384k [ 3.207440] Freeing unused kernel image memory: 2028K [ 3.208078] Freeing unused kernel image memory: 780K [ 3.219177] x86/mm: Checked W+X mappings: passed, no W+X pages found. [ 3.219179] x86/mm: Checking user space page tables [ 3.227273] x86/mm: Checked W+X mappings: passed, no W+X pages found. [ 3.227276] Run /init as init process [ 3.397815] dca service started, version 1.12.1 [ 3.405762] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt [ 3.414996] ixgbe: Intel(R) 10 Gigabit PCI Express Network Driver - version 5.1.0-k [ 3.414998] ixgbe: Copyright (c) 1999-2016 Intel Corporation. [ 3.417316] SCSI subsystem initialized [ 3.419111] cryptd: max_cpu_qlen set to 1000 [ 3.419266] igb: Intel(R) Gigabit Ethernet Network Driver - version 5.4.0-k [ 3.419267] igb: Copyright (c) 2007-2014 Intel Corporation. [ 3.423219] ACPI: bus type USB registered [ 3.423256] usbcore: registered new interface driver usbfs [ 3.423272] usbcore: registered new interface driver hub [ 3.423428] usbcore: registered new device driver usb [ 3.429710] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 3.431835] AVX version of gcm_enc/dec engaged. [ 3.431836] AES CTR mode by8 optimization enabled [ 3.433149] ehci-pci: EHCI PCI platform driver [ 3.434530] libata version 3.00 loaded. [ 3.435051] ehci-pci 0000:00:1a.0: EHCI Host Controller [ 3.435062] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1 [ 3.435076] ehci-pci 0000:00:1a.0: debug port 2 [ 3.439003] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported [ 3.439029] ehci-pci 0000:00:1a.0: irq 16, io mem 0xcfc23000 [ 3.448350] ahci 0000:00:1f.2: version 3.0 [ 3.451110] isci: Intel(R) C600 SAS Controller Driver - version 1.2.0 [ 3.451213] isci 0000:09:00.0: driver configured for rev: 6 silicon [ 3.468352] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x3f impl SATA mode [ 3.468354] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems apst [ 3.468420] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00 [ 3.468473] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 4.19 [ 3.468475] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 3.468476] usb usb1: Product: EHCI Host Controller [ 3.468477] usb usb1: Manufacturer: Linux 4.19.0-9-amd64 ehci_hcd [ 3.468477] usb usb1: SerialNumber: 0000:00:1a.0 [ 3.473870] hub 1-0:1.0: USB hub found [ 3.473878] hub 1-0:1.0: 2 ports detected [ 3.474720] isci 0000:09:00.0: OEM parameter table found in OROM [ 3.474723] isci 0000:09:00.0: OEM SAS parameters (version: 1.0) loaded (platform) [ 3.474988] ehci-pci 0000:00:1d.0: EHCI Host Controller [ 3.474994] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2 [ 3.475004] ehci-pci 0000:00:1d.0: debug port 2 [ 3.478923] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported [ 3.478939] ehci-pci 0000:00:1d.0: irq 23, io mem 0xcfc22000 [ 3.479117] isci 0000:09:00.0: SCU controller 0: phy 3-0 cables: {short, short, short, short} [ 3.481502] scsi host1: isci [ 3.492329] Areca RAID Controller0: Model ARC-1882, F/W V1.56 2019-07-30 [ 3.492955] scsi host0: Areca SAS/SATA RAID Controller (RAID6 capable) arcmsr version v1.40.00.09-20180709 [ 3.493297] arcmsr0: msi-x enabled [ 3.493374] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00 [ 3.493424] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 4.19 [ 3.493426] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 3.493427] usb usb2: Product: EHCI Host Controller [ 3.493429] usb usb2: Manufacturer: Linux 4.19.0-9-amd64 ehci_hcd [ 3.493430] usb usb2: SerialNumber: 0000:00:1d.0 [ 3.493584] hub 2-0:1.0: USB hub found [ 3.493591] hub 2-0:1.0: 2 ports detected [ 3.508219] igb 0000:02:00.0: added PHC on eth0 [ 3.508221] igb 0000:02:00.0: Intel(R) Gigabit Ethernet Network Connection [ 3.508224] igb 0000:02:00.0: eth0: (PCIe:5.0Gb/s:Width x4) 00:25:90:e2:f6:86 [ 3.508308] igb 0000:02:00.0: eth0: PBA No: 106100-000 [ 3.508311] igb 0000:02:00.0: Using MSI-X interrupts. 8 rx queue(s), 8 tx queue(s) [ 3.533177] scsi host2: ahci [ 3.533477] scsi host3: ahci [ 3.533645] scsi host4: ahci [ 3.533788] scsi host5: ahci [ 3.533925] scsi host6: ahci [ 3.534063] scsi host7: ahci [ 3.534167] ata1: SATA max UDMA/133 abar m2048 at 0xcfc21000 port 0xcfc21100 irq 43 [ 3.534169] ata2: SATA max UDMA/133 abar m2048 at 0xcfc21000 port 0xcfc21180 irq 43 [ 3.534170] ata3: SATA max UDMA/133 abar m2048 at 0xcfc21000 port 0xcfc21200 irq 43 [ 3.534172] ata4: SATA max UDMA/133 abar m2048 at 0xcfc21000 port 0xcfc21280 irq 43 [ 3.534173] ata5: SATA max UDMA/133 abar m2048 at 0xcfc21000 port 0xcfc21300 irq 43 [ 3.534175] ata6: SATA max UDMA/133 abar m2048 at 0xcfc21000 port 0xcfc21380 irq 43 [ 3.564225] igb 0000:02:00.1: added PHC on eth1 [ 3.564228] igb 0000:02:00.1: Intel(R) Gigabit Ethernet Network Connection [ 3.564231] igb 0000:02:00.1: eth1: (PCIe:5.0Gb/s:Width x4) 00:25:90:e2:f6:87 [ 3.564304] igb 0000:02:00.1: eth1: PBA No: 106100-000 [ 3.564306] igb 0000:02:00.1: Using MSI-X interrupts. 8 rx queue(s), 8 tx queue(s) [ 3.566551] igb 0000:02:00.0 eno1: renamed from eth0 [ 3.580596] igb 0000:02:00.1 eno2: renamed from eth1 [ 3.620313] tsc: Refined TSC clocksource calibration: 2399.999 MHz [ 3.620346] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2298364cab5, max_idle_ns: 440795214892 ns [ 3.620394] clocksource: Switched to clocksource tsc [ 3.808340] usb 1-1: new high-speed USB device number 2 using ehci-pci [ 3.828340] usb 2-1: new high-speed USB device number 2 using ehci-pci [ 3.846945] ata4: SATA link down (SStatus 0 SControl 300) [ 3.846972] ata5: SATA link down (SStatus 0 SControl 300) [ 3.847000] ata2: SATA link down (SStatus 0 SControl 300) [ 3.847038] ata6: SATA link down (SStatus 0 SControl 300) [ 3.847065] ata1: SATA link down (SStatus 0 SControl 300) [ 3.847091] ata3: SATA link down (SStatus 0 SControl 300) [ 3.857586] scsi 0:0:1:0: Direct-Access Samsung SSD 840 PRO R001 PQ: 0 ANSI: 5 [ 3.858371] scsi 0:0:1:1: Direct-Access Samsung SSD 840 PRO R001 PQ: 0 ANSI: 5 [ 3.859122] scsi 0:0:1:2: Direct-Access SAMSUNG MZ7KM480HMHQ-000 R001 PQ: 0 ANSI: 5 [ 3.859858] scsi 0:0:1:3: Direct-Access SAMSUNG MZ7KM480HMHQ-000 R001 PQ: 0 ANSI: 5 [ 3.860634] scsi 0:0:1:4: Direct-Access SAMSUNG MZ7KM480HMHQ-000 R001 PQ: 0 ANSI: 5 [ 3.861382] scsi 0:0:1:5: Direct-Access SAMSUNG MZ7KM480HMHQ-000 R001 PQ: 0 ANSI: 5 [ 3.862140] scsi 0:0:1:6: Direct-Access Seagate ST91000640NS R001 PQ: 0 ANSI: 5 [ 3.862912] scsi 0:0:1:7: Direct-Access Seagate ST91000640NS R001 PQ: 0 ANSI: 5 [ 3.863684] scsi 0:0:2:0: Direct-Access Seagate ST91000640NS R001 PQ: 0 ANSI: 5 [ 3.864456] scsi 0:0:2:1: Direct-Access Seagate ST91000640NS R001 PQ: 0 ANSI: 5 [ 3.865188] scsi 0:0:2:2: Direct-Access Seagate ST91000640NS R001 PQ: 0 ANSI: 5 [ 3.865931] scsi 0:0:2:3: Direct-Access Seagate ST91000640NS R001 PQ: 0 ANSI: 5 [ 3.866674] scsi 0:0:2:4: Direct-Access Seagate ST91000640NS R001 PQ: 0 ANSI: 5 [ 3.869728] scsi 0:0:16:0: Processor Areca RAID controller R001 PQ: 0 ANSI: 0 [ 3.919220] sd 0:0:1:0: [sda] 250069680 512-byte logical blocks: (128 GB/119 GiB) [ 3.919256] sd 0:0:1:0: [sda] Write Protect is off [ 3.919260] sd 0:0:1:0: [sda] Mode Sense: cb 00 00 08 [ 3.919313] sd 0:0:1:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA [ 3.919346] sd 0:0:1:1: [sdb] 250069680 512-byte logical blocks: (128 GB/119 GiB) [ 3.919388] sd 0:0:1:1: [sdb] Write Protect is off [ 3.919393] sd 0:0:1:2: [sdc] 937703088 512-byte logical blocks: (480 GB/447 GiB) [ 3.919395] sd 0:0:1:1: [sdb] Mode Sense: cb 00 00 08 [ 3.919433] sd 0:0:1:2: [sdc] Write Protect is off [ 3.919438] sd 0:0:1:2: [sdc] Mode Sense: cb 00 00 08 [ 3.919454] sd 0:0:1:1: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA [ 3.919493] sd 0:0:1:3: [sdd] 937703088 512-byte logical blocks: (480 GB/447 GiB) [ 3.919505] sd 0:0:1:2: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA [ 3.919521] sd 0:0:1:3: [sdd] Write Protect is off [ 3.919525] sd 0:0:1:3: [sdd] Mode Sense: cb 00 00 08 [ 3.919579] sd 0:0:1:4: [sde] 937703088 512-byte logical blocks: (480 GB/447 GiB) [ 3.919585] sd 0:0:1:3: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA [ 3.919613] sd 0:0:1:4: [sde] Write Protect is off [ 3.919617] sd 0:0:1:4: [sde] Mode Sense: cb 00 00 08 [ 3.919679] sd 0:0:1:4: [sde] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA [ 3.919718] sd 0:0:1:5: [sdf] 937703088 512-byte logical blocks: (480 GB/447 GiB) [ 3.919730] sd 0:0:1:6: [sdg] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB) [ 3.919756] sd 0:0:1:6: [sdg] Write Protect is off [ 3.919759] sd 0:0:1:6: [sdg] Mode Sense: cb 00 00 08 [ 3.919784] sd 0:0:1:5: [sdf] Write Protect is off [ 3.919786] sd 0:0:1:5: [sdf] Mode Sense: cb 00 00 08 [ 3.919835] sd 0:0:1:6: [sdg] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA [ 3.919844] sd 0:0:1:7: [sdh] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB) [ 3.919862] sd 0:0:1:5: [sdf] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA [ 3.919869] sd 0:0:1:7: [sdh] Write Protect is off [ 3.919871] sd 0:0:1:7: [sdh] Mode Sense: cb 00 00 08 [ 3.919915] sd 0:0:1:7: [sdh] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA [ 3.920129] sda: sda1 [ 3.920138] sdc: sdc1 [ 3.920149] sde: sde1 [ 3.920157] sdb: sdb1 [ 3.920177] sdf: sdf1 [ 3.920191] sdd: sdd1 [ 3.920220] sd 0:0:2:0: [sdi] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB) [ 3.920244] sd 0:0:2:0: [sdi] Write Protect is off [ 3.920247] sd 0:0:2:0: [sdi] Mode Sense: cb 00 00 08 [ 3.920267] sd 0:0:2:1: [sdj] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB) [ 3.920304] sd 0:0:2:0: [sdi] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA [ 3.920393] sd 0:0:2:2: [sdk] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB) [ 3.920420] sd 0:0:2:2: [sdk] Write Protect is off [ 3.920422] sd 0:0:2:2: [sdk] Mode Sense: cb 00 00 08 [ 3.920456] sd 0:0:2:2: [sdk] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA [ 3.920467] sd 0:0:2:3: [sdl] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB) [ 3.920497] sd 0:0:2:3: [sdl] Write Protect is off [ 3.920499] sd 0:0:2:3: [sdl] Mode Sense: cb 00 00 08 [ 3.920552] sd 0:0:2:3: [sdl] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA [ 3.920567] sd 0:0:2:4: [sdm] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB) [ 3.920588] sd 0:0:2:4: [sdm] Write Protect is off [ 3.920591] sd 0:0:2:4: [sdm] Mode Sense: cb 00 00 08 [ 3.920649] sd 0:0:2:4: [sdm] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA [ 3.920789] sd 0:0:2:1: [sdj] Write Protect is off [ 3.920797] sd 0:0:2:1: [sdj] Mode Sense: cb 00 00 08 [ 3.920870] sd 0:0:2:1: [sdj] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA [ 3.921237] sd 0:0:1:4: [sde] Attached SCSI disk [ 3.921286] sd 0:0:1:2: [sdc] Attached SCSI disk [ 3.921321] sdg: sdg1 sdg2 [ 3.921326] sd 0:0:1:5: [sdf] Attached SCSI disk [ 3.921329] sd 0:0:1:1: [sdb] Attached SCSI disk [ 3.921357] sd 0:0:1:3: [sdd] Attached SCSI disk [ 3.921358] sd 0:0:1:0: [sda] Attached SCSI disk [ 3.921371] sdh: sdh1 sdh2 [ 3.921640] sdi: sdi1 sdi2 [ 3.921668] sdk: sdk1 sdk2 [ 3.921711] sdl: sdl1 sdl2 [ 3.921729] sdm: sdm1 sdm2 [ 3.921789] sd 0:0:1:6: [sdg] Attached SCSI disk [ 3.921923] sdj: sdj1 sdj2 [ 3.921946] sd 0:0:1:7: [sdh] Attached SCSI disk [ 3.922223] sd 0:0:2:2: [sdk] Attached SCSI disk [ 3.922239] sd 0:0:2:0: [sdi] Attached SCSI disk [ 3.922333] sd 0:0:2:4: [sdm] Attached SCSI disk [ 3.922340] sd 0:0:2:3: [sdl] Attached SCSI disk [ 3.922468] sd 0:0:2:1: [sdj] Attached SCSI disk [ 3.955238] md/raid1:md0: active with 2 out of 2 mirrors [ 3.955402] md0: detected capacity change from 0 to 127967494144 [ 3.968712] usb 1-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00 [ 3.968715] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0 [ 3.969040] hub 1-1:1.0: USB hub found [ 3.969081] hub 1-1:1.0: 6 ports detected [ 3.984778] usb 2-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00 [ 3.984781] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0 [ 3.985198] hub 2-1:1.0: USB hub found [ 3.985335] hub 2-1:1.0: 8 ports detected [ 4.024303] raid6: sse2x1 gen() 6573 MB/s [ 4.092305] raid6: sse2x1 xor() 5206 MB/s [ 4.160317] raid6: sse2x2 gen() 8458 MB/s [ 4.228314] raid6: sse2x2 xor() 5899 MB/s [ 4.268334] usb 1-1.3: new full-speed USB device number 3 using ehci-pci [ 4.296307] raid6: sse2x4 gen() 10328 MB/s [ 4.364309] raid6: sse2x4 xor() 6959 MB/s [ 4.364310] raid6: using algorithm sse2x4 gen() 10328 MB/s [ 4.364311] raid6: .... xor() 6959 MB/s, rmw enabled [ 4.364312] raid6: using ssse3x2 recovery algorithm [ 4.365285] xor: automatically using best checksumming function avx [ 4.365985] async_tx: api initialized (async) [ 4.376670] md/raid:md1: device sde1 operational as raid disk 2 [ 4.376671] md/raid:md1: device sdd1 operational as raid disk 1 [ 4.376672] md/raid:md1: device sdf1 operational as raid disk 3 [ 4.376673] md/raid:md1: device sdc1 operational as raid disk 0 [ 4.377162] md/raid:md1: raid level 5 active with 4 out of 4 devices, algorithm 2 [ 4.377454] md1: detected capacity change from 0 to 1439905087488 [ 4.380409] md/raid:md2: device sdh1 operational as raid disk 1 [ 4.380411] md/raid:md2: device sdi1 operational as raid disk 2 [ 4.380411] md/raid:md2: device sdl1 operational as raid disk 5 [ 4.380412] md/raid:md2: device sdm1 operational as raid disk 6 [ 4.380413] md/raid:md2: device sdj1 operational as raid disk 3 [ 4.380414] md/raid:md2: device sdk1 operational as raid disk 4 [ 4.380414] md/raid:md2: device sdg1 operational as raid disk 0 [ 4.381100] md/raid:md2: raid level 6 active with 7 out of 7 devices, algorithm 2 [ 4.381582] md2: detected capacity change from 0 to 4973503447040 [ 4.385745] usb 1-1.3: New USB device found, idVendor=046b, idProduct=ff10, bcdDevice= 1.00 [ 4.385748] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 4.385751] usb 1-1.3: Product: Virtual Keyboard and Mouse [ 4.385753] usb 1-1.3: Manufacturer: American Megatrends Inc. [ 4.396659] hidraw: raw HID events driver (C) Jiri Kosina [ 4.400548] usbcore: registered new interface driver usbhid [ 4.400548] usbhid: USB HID core driver [ 4.401988] input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3/1-1.3:1.0/0003:046B:FF10.0001/input/input0 [ 4.402123] hid-generic 0003:046B:FF10.0001: input,hidraw0: USB HID v1.10 Keyboard [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:1a.0-1.3/input0 [ 4.402241] input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3/1-1.3:1.1/0003:046B:FF10.0002/input/input1 [ 4.402296] hid-generic 0003:046B:FF10.0002: input,hidraw1: USB HID v1.10 Mouse [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:1a.0-1.3/input1 [ 4.608981] ixgbe 0000:05:00.0: Multiqueue Enabled: Rx Queue count = 24, Tx Queue count = 24 XDP Queue count = 0 [ 4.609277] ixgbe 0000:05:00.0: 32.000 Gb/s available PCIe bandwidth (5 GT/s x8 link) [ 4.609359] ixgbe 0000:05:00.0: MAC: 2, PHY: 1, PBA No: 0210FF-0FF [ 4.609361] ixgbe 0000:05:00.0: ac:1f:6b:8d:67:a0 [ 4.612377] ixgbe 0000:05:00.0: Intel(R) 10 Gigabit Network Connection [ 4.776889] ixgbe 0000:05:00.1: Multiqueue Enabled: Rx Queue count = 24, Tx Queue count = 24 XDP Queue count = 0 [ 4.777177] ixgbe 0000:05:00.1: 32.000 Gb/s available PCIe bandwidth (5 GT/s x8 link) [ 4.777260] ixgbe 0000:05:00.1: MAC: 2, PHY: 14, SFP+: 4, PBA No: 0210FF-0FF [ 4.777261] ixgbe 0000:05:00.1: ac:1f:6b:8d:67:a1 [ 4.780362] ixgbe 0000:05:00.1: Intel(R) 10 Gigabit Network Connection [ 4.782126] ixgbe 0000:05:00.1 enp5s0f1: renamed from eth1 [ 4.804745] ixgbe 0000:05:00.0 enp5s0f0: renamed from eth0 [ 4.933205] device-mapper: uevent: version 1.0.3 [ 4.933350] device-mapper: ioctl: 4.39.0-ioctl (2018-04-03) initialised: dm-devel at redhat.com [ 35.448653] EXT4-fs (dm-0): mounted filesystem with ordered data mode. Opts: (null) [ 35.600748] systemd[1]: Inserted module 'autofs4' [ 35.629070] systemd[1]: systemd 241 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=hybrid) [ 35.648531] systemd[1]: Detected architecture x86-64. [ 35.653378] systemd[1]: Set hostname to <ganggang>. [ 35.704025] lvm2-activation-generator: lvmconfig failed [ 35.704133] lvm2-activation-generator: Activation generator failed. [ 35.704546] systemd[879]: /lib/systemd/system-generators/lvm2-activation-generator failed with exit status 1. [ 35.750627] systemd[1]: /lib/systemd/system/fail2ban.service:12: PIDFile= references path below legacy directory /var/run/, updating /var/run/fail2ban/fail2ban.pid → /run/fail2ban/fail2ban.pid; please update the unit file accordingly. [ 35.770064] systemd[1]: Reached target ceph target allowing to start/stop all ceph-radosgw at .service instances at once. [ 35.770223] systemd[1]: Listening on Device-mapper event daemon FIFOs. [ 35.770373] systemd[1]: Listening on Journal Socket. [ 35.772966] systemd[1]: Mounting Huge Pages File System... [ 35.773104] systemd[1]: Listening on LVM2 poll daemon socket. [ 35.798445] EXT4-fs (dm-0): re-mounted. Opts: errors=remount-ro [ 35.799713] version 39.2 [ 35.803060] ipmi device interface [ 35.806827] IPMI System Interface driver. [ 35.806849] ipmi_si dmi-ipmi-si.0: ipmi_platform: probing via SMBIOS [ 35.806851] ipmi_si: SMBIOS: io 0xca2 regsize 1 spacing 1 irq 0 [ 35.806852] ipmi_si: Adding SMBIOS-specified kcs state machine [ 35.806889] ipmi_si IPI0001:00: ipmi_platform: probing via ACPI [ 35.806924] ipmi_si IPI0001:00: [io 0x0ca2] regsize 1 spacing 1 irq 0 [ 35.806926] ipmi_si dmi-ipmi-si.0: Removing SMBIOS-specified kcs state machine in favor of ACPI [ 35.806927] ipmi_si: Adding ACPI-specified kcs state machine [ 35.807004] ipmi_si: Trying ACPI-specified kcs state machine at i/o address 0xca2, slave address 0x0, irq 0 [ 35.918183] audit: type=1400 audit(1593084514.488:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=941 comm="apparmor_parser" [ 35.918188] audit: type=1400 audit(1593084514.488:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=941 comm="apparmor_parser" [ 35.918653] audit: type=1400 audit(1593084514.488:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=940 comm="apparmor_parser" [ 35.918657] audit: type=1400 audit(1593084514.488:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=940 comm="apparmor_parser" [ 35.918659] audit: type=1400 audit(1593084514.488:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=940 comm="apparmor_parser" [ 35.919836] audit: type=1400 audit(1593084514.488:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/ntpd" pid=942 comm="apparmor_parser" [ 35.938408] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2 [ 35.938424] ACPI: Power Button [PWRB] [ 35.938525] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3 [ 35.938549] ACPI: Power Button [PWRF] [ 36.037280] iTCO_vendor_support: vendor-support=0 [ 36.038139] input: PC Speaker as /devices/platform/pcspkr/input/input4 [ 36.038654] ioatdma: Intel(R) QuickData Technology Driver 4.00 [ 36.039129] sd 0:0:1:0: Attached scsi generic sg0 type 0 [ 36.039245] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11 [ 36.039284] sd 0:0:1:1: Attached scsi generic sg1 type 0 [ 36.039303] iTCO_wdt: unable to reset NO_REBOOT flag, device disabled by hardware/BIOS [ 36.039371] sd 0:0:1:2: Attached scsi generic sg2 type 0 [ 36.039577] sd 0:0:1:3: Attached scsi generic sg3 type 0 [ 36.039629] sd 0:0:1:4: Attached scsi generic sg4 type 0 [ 36.039675] sd 0:0:1:5: Attached scsi generic sg5 type 0 [ 36.039717] sd 0:0:1:6: Attached scsi generic sg6 type 0 [ 36.039759] sd 0:0:1:7: Attached scsi generic sg7 type 0 [ 36.039807] sd 0:0:2:0: Attached scsi generic sg8 type 0 [ 36.039849] sd 0:0:2:1: Attached scsi generic sg9 type 0 [ 36.039890] sd 0:0:2:2: Attached scsi generic sg10 type 0 [ 36.039931] sd 0:0:2:3: Attached scsi generic sg11 type 0 [ 36.039974] sd 0:0:2:4: Attached scsi generic sg12 type 0 [ 36.040016] scsi 0:0:16:0: Attached scsi generic sg13 type 3 [ 36.060761] RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 163840 ms ovfl timer [ 36.060763] RAPL PMU: hw unit of domain pp0-core 2^-16 Joules [ 36.060764] RAPL PMU: hw unit of domain package 2^-16 Joules [ 36.060765] RAPL PMU: hw unit of domain dram 2^-16 Joules [ 36.063761] igb 0000:02:00.0: DCA enabled [ 36.063793] igb 0000:02:00.1: DCA enabled [ 36.063821] mei_me 0000:00:16.0: Device doesn't have valid ME Interface [ 36.159032] ipmi_si IPI0001:00: Found new BMC (man_id: 0x002a7c, prod_id: 0xaabb, dev_id: 0x20) [ 36.159550] [TTM] Zone kernel: Available graphics memory: 65997210 kiB [ 36.159552] [TTM] Zone dma32: Available graphics memory: 2097152 kiB [ 36.159553] [TTM] Initializing pool allocator [ 36.159559] [TTM] Initializing DMA pool allocator [ 36.189979] fbcon: mgadrmfb (fb0) is primary device [ 36.316650] Console: switching to colour frame buffer device 128x48 [ 36.335174] mgag200 0000:0e:00.0: fb0: mgadrmfb frame buffer device [ 36.359409] EDAC sbridge: Seeking for: PCI ID 8086:0ea0 [ 36.359429] EDAC sbridge: Seeking for: PCI ID 8086:0ea0 [ 36.359444] EDAC sbridge: Seeking for: PCI ID 8086:0ea0 [ 36.359449] EDAC sbridge: Seeking for: PCI ID 8086:0e60 [ 36.359460] EDAC sbridge: Seeking for: PCI ID 8086:0ea8 [ 36.359467] EDAC sbridge: Seeking for: PCI ID 8086:0ea8 [ 36.359473] EDAC sbridge: Seeking for: PCI ID 8086:0ea8 [ 36.359475] EDAC sbridge: Seeking for: PCI ID 8086:0e71 [ 36.359482] EDAC sbridge: Seeking for: PCI ID 8086:0e71 [ 36.359488] EDAC sbridge: Seeking for: PCI ID 8086:0e71 [ 36.359490] EDAC sbridge: Seeking for: PCI ID 8086:0eaa [ 36.359498] EDAC sbridge: Seeking for: PCI ID 8086:0eaa [ 36.359504] EDAC sbridge: Seeking for: PCI ID 8086:0eaa [ 36.359506] EDAC sbridge: Seeking for: PCI ID 8086:0eab [ 36.359513] EDAC sbridge: Seeking for: PCI ID 8086:0eab [ 36.359519] EDAC sbridge: Seeking for: PCI ID 8086:0eab [ 36.359521] EDAC sbridge: Seeking for: PCI ID 8086:0eac [ 36.359528] EDAC sbridge: Seeking for: PCI ID 8086:0eac [ 36.359534] EDAC sbridge: Seeking for: PCI ID 8086:0eac [ 36.359536] EDAC sbridge: Seeking for: PCI ID 8086:0ead [ 36.359543] EDAC sbridge: Seeking for: PCI ID 8086:0ead [ 36.359550] EDAC sbridge: Seeking for: PCI ID 8086:0ead [ 36.359551] EDAC sbridge: Seeking for: PCI ID 8086:0e68 [ 36.359562] EDAC sbridge: Seeking for: PCI ID 8086:0e79 [ 36.359573] EDAC sbridge: Seeking for: PCI ID 8086:0e6a [ 36.359584] EDAC sbridge: Seeking for: PCI ID 8086:0e6b [ 36.359595] EDAC sbridge: Seeking for: PCI ID 8086:0e6c [ 36.359605] EDAC sbridge: Seeking for: PCI ID 8086:0e6d [ 36.359616] EDAC sbridge: Seeking for: PCI ID 8086:0eb8 [ 36.359627] EDAC sbridge: Seeking for: PCI ID 8086:0ebc [ 36.359637] EDAC sbridge: Seeking for: PCI ID 8086:0ec8 [ 36.359645] EDAC sbridge: Seeking for: PCI ID 8086:0ec8 [ 36.359652] EDAC sbridge: Seeking for: PCI ID 8086:0ec8 [ 36.359652] EDAC sbridge: Seeking for: PCI ID 8086:0ec9 [ 36.359661] EDAC sbridge: Seeking for: PCI ID 8086:0ec9 [ 36.359667] EDAC sbridge: Seeking for: PCI ID 8086:0ec9 [ 36.359667] EDAC sbridge: Seeking for: PCI ID 8086:0eca [ 36.359676] EDAC sbridge: Seeking for: PCI ID 8086:0eca [ 36.359682] EDAC sbridge: Seeking for: PCI ID 8086:0eca [ 36.359840] EDAC MC0: Giving out device to module sb_edac controller Ivy Bridge SrcID#0_Ha#0: DEV 0000:7f:0e.0 (INTERRUPT) [ 36.359971] EDAC MC1: Giving out device to module sb_edac controller Ivy Bridge SrcID#1_Ha#0: DEV 0000:ff:0e.0 (INTERRUPT) [ 36.359972] EDAC sbridge: Ver: 1.1.2 [ 36.368361] [drm] Initialized mgag200 1.0.0 20110418 for 0000:0e:00.0 on minor 0 [ 36.462675] intel_rapl: Found RAPL domain package [ 36.462677] intel_rapl: Found RAPL domain core [ 36.462681] intel_rapl: Found RAPL domain dram [ 36.463146] intel_rapl: Found RAPL domain package [ 36.463149] intel_rapl: Found RAPL domain core [ 36.463155] intel_rapl: Found RAPL domain dram [ 36.494783] systemd-journald[897]: Received request to flush runtime journal from PID 1 [ 36.678821] device-mapper: thin: Data device (dm-2) discard unsupported: Disabling discard passdown. [ 36.834360] device-mapper: thin: Data device (dm-5) discard unsupported: Disabling discard passdown. [ 36.890841] Adding 4194300k swap on /dev/mapper/system--ganggang-swap_1. Priority:-2 extents:1 across:4194300k FS [ 37.537105] ipmi_si IPI0001:00: IPMI kcs interface initialized [ 37.552009] IPMI SSIF Interface driver [ 38.403159] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this. [ 38.406173] xenbr0: port 1(eno1) entered blocking state [ 38.406176] xenbr0: port 1(eno1) entered disabled state [ 38.406299] device eno1 entered promiscuous mode [ 38.491441] IPv6: ADDRCONF(NETDEV_UP): xenbr0: link is not ready [ 38.639992] xenbr1: port 1(enp5s0f1) entered blocking state [ 38.639995] xenbr1: port 1(enp5s0f1) entered disabled state [ 38.640106] device enp5s0f1 entered promiscuous mode [ 38.744193] ixgbe 0000:05:00.1: registered PHC device on enp5s0f1 [ 38.854395] IPv6: ADDRCONF(NETDEV_UP): xenbr1: link is not ready [ 38.912544] ixgbe 0000:05:00.1 enp5s0f1: detected SFP+: 4 [ 39.027600] 8021q: 802.1Q VLAN Support v1.8 [ 39.027614] 8021q: adding VLAN 0 to HW filter on device eno1 [ 39.027627] 8021q: adding VLAN 0 to HW filter on device enp5s0f1 [ 39.035777] IPv6: ADDRCONF(NETDEV_UP): vlan605: link is not ready [ 39.060890] ceph1access: port 1(vlan605) entered blocking state [ 39.060892] ceph1access: port 1(vlan605) entered disabled state [ 39.061566] device vlan605 entered promiscuous mode [ 39.068602] IPv6: ADDRCONF(NETDEV_UP): ceph1access: link is not ready [ 39.231996] IPv6: ADDRCONF(NETDEV_UP): vlan601: link is not ready [ 39.260237] newmanity: port 1(vlan601) entered blocking state [ 39.260240] newmanity: port 1(vlan601) entered disabled state [ 39.261154] device vlan601 entered promiscuous mode [ 39.269410] IPv6: ADDRCONF(NETDEV_UP): newmanity: link is not ready [ 39.435473] IPv6: ADDRCONF(NETDEV_UP): vlan608: link is not ready [ 39.463023] newmanityvrrp: port 1(vlan608) entered blocking state [ 39.463027] newmanityvrrp: port 1(vlan608) entered disabled state [ 39.463760] device vlan608 entered promiscuous mode [ 39.471755] IPv6: ADDRCONF(NETDEV_UP): newmanityvrrp: link is not ready [ 39.637417] IPv6: ADDRCONF(NETDEV_UP): vlan603: link is not ready [ 39.665372] hypervisors: port 1(vlan603) entered blocking state [ 39.665375] hypervisors: port 1(vlan603) entered disabled state [ 39.666106] device vlan603 entered promiscuous mode [ 39.674156] IPv6: ADDRCONF(NETDEV_UP): hypervisors: link is not ready [ 39.839748] IPv6: ADDRCONF(NETDEV_UP): vlan606: link is not ready [ 39.866056] ozon: port 1(vlan606) entered blocking state [ 39.866060] ozon: port 1(vlan606) entered disabled state [ 39.866791] device vlan606 entered promiscuous mode [ 39.874538] IPv6: ADDRCONF(NETDEV_UP): ozon: link is not ready [ 40.039963] IPv6: ADDRCONF(NETDEV_UP): vlan609: link is not ready [ 40.067563] gslizardfs1: port 1(vlan609) entered blocking state [ 40.067566] gslizardfs1: port 1(vlan609) entered disabled state [ 40.068349] device vlan609 entered promiscuous mode [ 40.076068] IPv6: ADDRCONF(NETDEV_UP): gslizardfs1: link is not ready [ 40.241697] IPv6: ADDRCONF(NETDEV_UP): vlan610: link is not ready [ 40.269657] etermail: port 1(vlan610) entered blocking state [ 40.269660] etermail: port 1(vlan610) entered disabled state [ 40.270402] device vlan610 entered promiscuous mode [ 40.278019] IPv6: ADDRCONF(NETDEV_UP): etermail: link is not ready [ 40.432370] ixgbe 0000:05:00.1 enp5s0f1: NIC Link is Up 10 Gbps, Flow Control: RX/TX [ 40.433418] xenbr1: port 1(enp5s0f1) entered blocking state [ 40.433420] xenbr1: port 1(enp5s0f1) entered forwarding state [ 40.433489] IPv6: ADDRCONF(NETDEV_CHANGE): xenbr1: link becomes ready [ 40.433574] newmanity: port 1(vlan601) entered blocking state [ 40.433575] newmanity: port 1(vlan601) entered forwarding state [ 40.433633] hypervisors: port 1(vlan603) entered blocking state [ 40.433635] hypervisors: port 1(vlan603) entered forwarding state [ 40.433688] ceph1access: port 1(vlan605) entered blocking state [ 40.433690] ceph1access: port 1(vlan605) entered forwarding state [ 40.433748] ozon: port 1(vlan606) entered blocking state [ 40.433749] ozon: port 1(vlan606) entered forwarding state [ 40.433804] newmanityvrrp: port 1(vlan608) entered blocking state [ 40.433806] newmanityvrrp: port 1(vlan608) entered forwarding state [ 40.433860] gslizardfs1: port 1(vlan609) entered blocking state [ 40.433862] gslizardfs1: port 1(vlan609) entered forwarding state [ 40.433916] etermail: port 1(vlan610) entered blocking state [ 40.433918] etermail: port 1(vlan610) entered forwarding state [ 40.433990] IPv6: ADDRCONF(NETDEV_CHANGE): newmanity: link becomes ready [ 40.434043] IPv6: ADDRCONF(NETDEV_CHANGE): hypervisors: link becomes ready [ 40.434093] IPv6: ADDRCONF(NETDEV_CHANGE): ceph1access: link becomes ready [ 40.434140] IPv6: ADDRCONF(NETDEV_CHANGE): ozon: link becomes ready [ 40.434186] IPv6: ADDRCONF(NETDEV_CHANGE): newmanityvrrp: link becomes ready [ 40.434236] IPv6: ADDRCONF(NETDEV_CHANGE): gslizardfs1: link becomes ready [ 40.434281] IPv6: ADDRCONF(NETDEV_CHANGE): etermail: link becomes ready [ 40.472159] datafarm: port 1(vlan611) entered blocking state [ 40.472162] datafarm: port 1(vlan611) entered disabled state [ 40.472923] device vlan611 entered promiscuous mode [ 40.480866] datafarm: port 1(vlan611) entered blocking state [ 40.480869] datafarm: port 1(vlan611) entered forwarding state [ 40.675393] routing: port 1(vlan612) entered blocking state [ 40.675396] routing: port 1(vlan612) entered disabled state [ 40.676148] device vlan612 entered promiscuous mode [ 40.683932] routing: port 1(vlan612) entered blocking state [ 40.683936] routing: port 1(vlan612) entered forwarding state [ 41.800722] igb 0000:02:00.0 eno1: igb: eno1 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX/TX [ 41.800864] xenbr0: port 1(eno1) entered blocking state [ 41.800866] xenbr0: port 1(eno1) entered forwarding state [ 41.801006] IPv6: ADDRCONF(NETDEV_CHANGE): xenbr0: link becomes ready -------------- next part -------------- microcode: microcode updated early to revision 0x42e, date = 2019-03-14 Linux version 4.19.0-9-amd64 (debian-kernel at lists.debian.org) (gcc version 8.3.0 (Debian 8.3.0-6)) #1 SMP Debian 4.19.118-2+deb10u1 (2020-06-07) Command line: BOOT_IMAGE=/boot/vmlinuz-4.19.0-9-amd64 root=/dev/mapper/system--ganggang-root ro quiet x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers' x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers' x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers' x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256 x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format. BIOS-provided physical RAM map: BIOS-e820: [mem 0x0000000000000000-0x000000000009bfff] usable BIOS-e820: [mem 0x000000000009c000-0x000000000009ffff] reserved BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved BIOS-e820: [mem 0x0000000000100000-0x000000002de34fff] usable BIOS-e820: [mem 0x000000002de35000-0x000000002dfe6fff] reserved BIOS-e820: [mem 0x000000002dfe7000-0x000000002e1dcfff] ACPI NVS BIOS-e820: [mem 0x000000002e1dd000-0x000000002f359fff] reserved BIOS-e820: [mem 0x000000002f35a000-0x000000002f7fffff] ACPI NVS BIOS-e820: [mem 0x0000000030000000-0x000000003fffffff] reserved BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed3ffff] reserved BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved BIOS-e820: [mem 0x0000000100000000-0x00000020cfffffff] usable NX (Execute Disable) protection: active SMBIOS 2.7 present. DMI: Supermicro X9DRW/X9DRW, BIOS 3.3 09/13/2018 tsc: Fast TSC calibration using PIT tsc: Detected 2399.857 MHz processor e820: update [mem 0x00000000-0x00000fff] usable ==> reserved e820: remove [mem 0x000a0000-0x000fffff] usable last_pfn = 0x20d0000 max_arch_pfn = 0x400000000 MTRR default type: uncachable MTRR fixed ranges enabled: 00000-9FFFF write-back A0000-BFFFF uncachable C0000-FFFFF write-protect MTRR variable ranges enabled: 0 base 000000000000 mask 3FE000000000 write-back 1 base 002000000000 mask 3FFF00000000 write-back 2 base 000030000000 mask 3FFFF0000000 uncachable 3 base 000040000000 mask 3FFFC0000000 uncachable 4 base 000080000000 mask 3FFF80000000 uncachable 5 base 0020D0000000 mask 3FFFF0000000 uncachable 6 base 0020E0000000 mask 3FFFE0000000 uncachable 7 disabled 8 disabled 9 disabled x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT e820: update [mem 0x30000000-0xffffffff] usable ==> reserved last_pfn = 0x2de35 max_arch_pfn = 0x400000000 found SMP MP-table at [mem 0x000fdbb0-0x000fdbbf] Using GB pages for direct mapping BRK [0x1fd1001000, 0x1fd1001fff] PGTABLE BRK [0x1fd1002000, 0x1fd1002fff] PGTABLE BRK [0x1fd1003000, 0x1fd1003fff] PGTABLE BRK [0x1fd1004000, 0x1fd1004fff] PGTABLE BRK [0x1fd1005000, 0x1fd1005fff] PGTABLE BRK [0x1fd1006000, 0x1fd1006fff] PGTABLE BRK [0x1fd1007000, 0x1fd1007fff] PGTABLE RAMDISK: [mem 0x2ac63000-0x2cc6afff] ACPI: Early table checksum verification disabled ACPI: RSDP 0x00000000000F0490 000024 (v02 SUPERM) ACPI: XSDT 0x000000002E100090 00009C (v01 SUPERM SMCI--MB 00000001 AMI 00010013) ACPI: FACP 0x000000002E10AFC8 0000F4 (v04 SUPERM SMCI--MB 00000001 AMI 00010013) ACPI: DSDT 0x000000002E1001C0 00AE06 (v02 SUPERM SMCI--MB 00000000 INTL 20091112) ACPI: FACS 0x000000002E1D4080 000040 ACPI: APIC 0x000000002E10B0C0 0001B4 (v03 00000001 AMI 00010013) ACPI: FPDT 0x000000002E10B278 000044 (v01 00000001 AMI 00010013) ACPI: SRAT 0x000000002E10B2C0 000430 (v01 A M I AMI SRAT 00000001 AMI. 00000000) ACPI: SLIT 0x000000002E10B6F0 000030 (v01 A M I AMI SLIT 00000000 AMI. 00000000) ACPI: HPET 0x000000002E10B720 000038 (v01 SUPERM SMCI--MB 00000001 AMI. 00000005) ACPI: PRAD 0x000000002E10B758 0000CD (v02 PRADID PRADTID 00000001 MSFT 04000000) ACPI: SPMI 0x000000002E10B828 000040 (v05 A M I OEMSPMI 00000000 AMI. 00000000) ACPI: SSDT 0x000000002E10B868 0C7AE8 (v02 INTEL CpuPm 00004000 INTL 20091112) ACPI: EINJ 0x000000002E1D3350 000130 (v01 AMI AMI EINJ 00000000 00000000) ACPI: ERST 0x000000002E1D3480 000230 (v01 AMIER AMI ERST 00000000 00000000) ACPI: HEST 0x000000002E1D36B0 00027C (v01 AMI AMI HEST 00000000 00000000) ACPI: BERT 0x000000002E1D3930 000030 (v01 AMI AMI BERT 00000000 00000000) ACPI: DMAR 0x000000002E1D3960 000188 (v01 A M I OEMDMAR 00000001 INTL 00000001) ACPI: MCFG 0x000000002E1D3AE8 00003C (v01 SUPERM SMCI--MB 00000001 MSFT 00000097) ACPI: Local APIC address 0xfee00000 SRAT: PXM 0 -> APIC 0x00 -> Node 0 SRAT: PXM 0 -> APIC 0x01 -> Node 0 SRAT: PXM 0 -> APIC 0x02 -> Node 0 SRAT: PXM 0 -> APIC 0x03 -> Node 0 SRAT: PXM 0 -> APIC 0x04 -> Node 0 SRAT: PXM 0 -> APIC 0x05 -> Node 0 SRAT: PXM 0 -> APIC 0x06 -> Node 0 SRAT: PXM 0 -> APIC 0x07 -> Node 0 SRAT: PXM 0 -> APIC 0x08 -> Node 0 SRAT: PXM 0 -> APIC 0x09 -> Node 0 SRAT: PXM 0 -> APIC 0x0a -> Node 0 SRAT: PXM 0 -> APIC 0x0b -> Node 0 SRAT: PXM 1 -> APIC 0x20 -> Node 1 SRAT: PXM 1 -> APIC 0x21 -> Node 1 SRAT: PXM 1 -> APIC 0x22 -> Node 1 SRAT: PXM 1 -> APIC 0x23 -> Node 1 SRAT: PXM 1 -> APIC 0x24 -> Node 1 SRAT: PXM 1 -> APIC 0x25 -> Node 1 SRAT: PXM 1 -> APIC 0x26 -> Node 1 SRAT: PXM 1 -> APIC 0x27 -> Node 1 SRAT: PXM 1 -> APIC 0x28 -> Node 1 SRAT: PXM 1 -> APIC 0x29 -> Node 1 SRAT: PXM 1 -> APIC 0x2a -> Node 1 SRAT: PXM 1 -> APIC 0x2b -> Node 1 ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x2fffffff] ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x10cfffffff] ACPI: SRAT: Node 1 PXM 1 [mem 0x10d0000000-0x20cfffffff] NUMA: Initialized distance table, cnt=2 NUMA: Node 0 [mem 0x00000000-0x2fffffff] + [mem 0x100000000-0x10cfffffff] -> [mem 0x00000000-0x10cfffffff] NODE_DATA(0) allocated [mem 0x10cfffb000-0x10cfffffff] NODE_DATA(1) allocated [mem 0x20cfffa000-0x20cfffefff] Zone ranges: DMA [mem 0x0000000000001000-0x0000000000ffffff] DMA32 [mem 0x0000000001000000-0x00000000ffffffff] Normal [mem 0x0000000100000000-0x00000020cfffffff] Device empty Movable zone start for each node Early memory node ranges node 0: [mem 0x0000000000001000-0x000000000009bfff] node 0: [mem 0x0000000000100000-0x000000002de34fff] node 0: [mem 0x0000000100000000-0x00000010cfffffff] node 1: [mem 0x00000010d0000000-0x00000020cfffffff] Zeroed struct page in unavailable ranges: 8752 pages Initmem setup node 0 [mem 0x0000000000001000-0x00000010cfffffff] On node 0 totalpages: 16768464 DMA zone: 64 pages used for memmap DMA zone: 21 pages reserved DMA zone: 3995 pages, LIFO batch:0 DMA32 zone: 2873 pages used for memmap DMA32 zone: 183861 pages, LIFO batch:63 Normal zone: 259072 pages used for memmap Normal zone: 16580608 pages, LIFO batch:63 Initmem setup node 1 [mem 0x00000010d0000000-0x00000020cfffffff] On node 1 totalpages: 16777216 Normal zone: 262144 pages used for memmap Normal zone: 16777216 pages, LIFO batch:63 ACPI: PM-Timer IO Port: 0x408 ACPI: Local APIC address 0xfee00000 ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1]) ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1]) ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1]) ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1]) ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1]) ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1]) ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1]) ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1]) ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1]) ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1]) ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1]) ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1]) ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1]) ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1]) ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1]) ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1]) ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1]) ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1]) ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1]) ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1]) ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1]) ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1]) ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1]) IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23 IOAPIC[1]: apic_id 2, version 32, address 0xfec01000, GSI 24-47 IOAPIC[2]: apic_id 3, version 32, address 0xfec40000, GSI 48-71 ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) ACPI: IRQ0 used by override. ACPI: IRQ9 used by override. Using ACPI (MADT) for SMP configuration information ACPI: HPET id: 0x8086a701 base: 0xfed00000 smpboot: Allowing 24 CPUs, 0 hotplug CPUs PM: Registered nosave memory: [mem 0x00000000-0x00000fff] PM: Registered nosave memory: [mem 0x0009c000-0x0009ffff] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff] PM: Registered nosave memory: [mem 0x2de35000-0x2dfe6fff] PM: Registered nosave memory: [mem 0x2dfe7000-0x2e1dcfff] PM: Registered nosave memory: [mem 0x2e1dd000-0x2f359fff] PM: Registered nosave memory: [mem 0x2f35a000-0x2f7fffff] PM: Registered nosave memory: [mem 0x2f800000-0x2fffffff] PM: Registered nosave memory: [mem 0x30000000-0x3fffffff] PM: Registered nosave memory: [mem 0x40000000-0xfed1bfff] PM: Registered nosave memory: [mem 0xfed1c000-0xfed3ffff] PM: Registered nosave memory: [mem 0xfed40000-0xfeffffff] PM: Registered nosave memory: [mem 0xff000000-0xffffffff] [mem 0x40000000-0xfed1bfff] available for PCI devices Booting paravirtualized kernel on bare hardware clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns random: get_random_bytes called from start_kernel+0x93/0x52c with crng_init=0 setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:24 nr_node_ids:2 percpu: Embedded 45 pages/cpu s144408 r8192 d31720 u262144 pcpu-alloc: s144408 r8192 d31720 u262144 alloc=1*2097152 pcpu-alloc: [0] 00 01 02 03 04 05 12 13 [0] 14 15 16 17 -- -- -- -- pcpu-alloc: [1] 06 07 08 09 10 11 18 19 [1] 20 21 22 23 -- -- -- -- Built 2 zonelists, mobility grouping on. Total pages: 33021506 Policy zone: Normal Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.19.0-9-amd64 root=/dev/mapper/system--ganggang-root ro quiet log_buf_len individual max cpu contribution: 4096 bytes log_buf_len total cpu_extra contributions: 94208 bytes log_buf_len min size: 131072 bytes log_buf_len: 262144 bytes early log buf free: 117352(89%) Calgary: detecting Calgary via BIOS EBDA area Calgary: Unable to locate Rio Grande table in EBDA - bailing! Memory: 131957200K/134182720K available (10252K kernel code, 1241K rwdata, 3316K rodata, 1588K init, 2276K bss, 2225520K reserved, 0K cma-reserved) SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=24, Nodes=2 Kernel/User page tables isolation: enabled ftrace: allocating 31883 entries in 125 pages rcu: Hierarchical RCU implementation. rcu: RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=24. rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=24 NR_IRQS: 33024, nr_irqs: 1432, preallocated irqs: 16 Console: colour VGA+ 80x25 console [tty0] enabled mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl ACPI: Core revision 20180810 clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns hpet clockevent registered APIC: Switch to symmetric I/O mode setup DMAR: Host address width 46 DMAR: DRHD base: 0x000000fbffe000 flags: 0x0 DMAR: dmar0: reg_base_addr fbffe000 ver 1:0 cap d2078c106f0466 ecap f020de DMAR: DRHD base: 0x000000cfffc000 flags: 0x1 DMAR: dmar1: reg_base_addr cfffc000 ver 1:0 cap d2078c106f0466 ecap f020de DMAR: RMRR base: 0x0000002f226000 end: 0x0000002f234fff DMAR: ATSR flags: 0x0 DMAR: RHSA base: 0x000000fbffe000 proximity domain: 0x1 DMAR: RHSA base: 0x000000cfffc000 proximity domain: 0x0 DMAR-IR: IOAPIC id 3 under DRHD base 0xfbffe000 IOMMU 0 DMAR-IR: IOAPIC id 0 under DRHD base 0xcfffc000 IOMMU 1 DMAR-IR: IOAPIC id 2 under DRHD base 0xcfffc000 IOMMU 1 DMAR-IR: HPET id 0 under DRHD base 0xcfffc000 DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping. DMAR-IR: Enabled IRQ remapping in x2apic mode x2apic enabled Switched APIC routing to cluster x2apic. ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2297b07cb97, max_idle_ns: 440795269780 ns Calibrating delay loop (skipped), value calculated using timer frequency.. 4799.71 BogoMIPS (lpj=9599428) pid_max: default: 32768 minimum: 301 Security Framework initialized Yama: disabled by default; enable with sysctl kernel.yama.* AppArmor: AppArmor initialized Dentry cache hash table entries: 8388608 (order: 14, 67108864 bytes) Inode-cache hash table entries: 4194304 (order: 13, 33554432 bytes) Mount-cache hash table entries: 131072 (order: 8, 1048576 bytes) Mountpoint-cache hash table entries: 131072 (order: 8, 1048576 bytes) CPU0: Thermal monitoring enabled (TM1) process: using mwait in idle threads Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8 Last level dTLB entries: 4KB 512, 2MB 0, 4MB 0, 1GB 4 Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization Spectre V2 : Mitigation: Full generic retpoline Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch Spectre V2 : Enabling Restricted Speculation for firmware calls Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier Spectre V2 : User space: Mitigation: STIBP via seccomp and prctl Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp MDS: Mitigation: Clear CPU buffers Freeing SMP alternatives memory: 24K TSC deadline timer enabled smpboot: CPU0: Intel(R) Xeon(R) CPU E5-2630L v2 @ 2.40GHz (family: 0x6, model: 0x3e, stepping: 0x4) Performance Events: PEBS fmt1+, IvyBridge events, 16-deep LBR, full-width counters, Intel PMU driver. ... version: 3 ... bit width: 48 ... generic registers: 4 ... value mask: 0000ffffffffffff ... max period: 00007fffffffffff ... fixed-purpose events: 3 ... event mask: 000000070000000f rcu: Hierarchical SRCU implementation. random: crng done (trusting CPU's manufacturer) NMI watchdog: Enabled. Permanently consumes one hw-PMU counter. smp: Bringing up secondary CPUs ... x86: Booting SMP configuration: .... node #0, CPUs: #1 #2 #3 #4 #5 .... node #1, CPUs: #6 #7 #8 #9 #10 #11 .... node #0, CPUs: #12 MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details. #13 #14 #15 #16 #17 .... node #1, CPUs: #18 #19 #20 #21 #22 #23 smp: Brought up 2 nodes, 24 CPUs smpboot: Max logical packages: 2 smpboot: Total of 24 processors activated (115214.41 BogoMIPS) devtmpfs: initialized x86/mm: Memory block size: 256MB PM: Registering ACPI NVS region [mem 0x2dfe7000-0x2e1dcfff] (2056192 bytes) PM: Registering ACPI NVS region [mem 0x2f35a000-0x2f7fffff] (4874240 bytes) clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns futex hash table entries: 8192 (order: 7, 524288 bytes) pinctrl core: initialized pinctrl subsystem NET: Registered protocol family 16 audit: initializing netlink subsys (disabled) audit: type=2000 audit(1593084480.228:1): state=initialized audit_enabled=0 res=1 cpuidle: using governor ladder cpuidle: using governor menu ACPI FADT declares the system doesn't support PCIe ASPM, so disable it ACPI: bus type PCI registered acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0x30000000-0x3fffffff] (base 0x30000000) PCI: MMCONFIG at [mem 0x30000000-0x3fffffff] reserved in E820 pmd_set_huge: Cannot satisfy [mem 0x30000000-0x30200000] with a huge-page mapping due to MTRR override. PCI: Using configuration type 1 for base access core: PMU erratum BJ122, BV98, HSD29 worked around, HT is on HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages ACPI: Added _OSI(Module Device) ACPI: Added _OSI(Processor Device) ACPI: Added _OSI(3.0 _SCP Extensions) ACPI: Added _OSI(Processor Aggregator Device) ACPI: Added _OSI(Linux-Dell-Video) ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio) ACPI: 2 ACPI AML tables successfully acquired and loaded ACPI: Dynamic OEM Table Load: ACPI: Interpreter enabled ACPI: (supports S0 S1 S4 S5) ACPI: Using IOAPIC for interrupt routing HEST: Enabling Firmware First mode for corrected errors. HEST: Table parsing has been initialized. PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug ACPI: Enabled 4 GPEs in block 00 to 3F ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7e]) acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug PME AER LTR] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PCIeCapability] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration PCI host bridge to bus 0000:00 pci_bus 0000:00: root bus resource [io 0x0000-0x03af window] pci_bus 0000:00: root bus resource [io 0x03e0-0x0cf7 window] pci_bus 0000:00: root bus resource [io 0x03b0-0x03df window] pci_bus 0000:00: root bus resource [io 0x0d00-0x9fff window] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window] pci_bus 0000:00: root bus resource [mem 0xfed08000-0xfed08fff window] pci_bus 0000:00: root bus resource [mem 0xfed0e000-0xfed0ffff window] pci_bus 0000:00: root bus resource [mem 0x30000000-0xcfffffff window] pci_bus 0000:00: root bus resource [bus 00-7e] pci 0000:00:00.0: [8086:0e00] type 00 class 0x060000 pci 0000:00:00.0: PME# supported from D0 D3hot D3cold pci 0000:00:01.0: [8086:0e02] type 01 class 0x060400 pci 0000:00:01.0: PME# supported from D0 D3hot D3cold pci 0000:00:01.1: [8086:0e03] type 01 class 0x060400 pci 0000:00:01.1: PME# supported from D0 D3hot D3cold pci 0000:00:02.0: [8086:0e04] type 01 class 0x060400 pci 0000:00:02.0: PME# supported from D0 D3hot D3cold pci 0000:00:02.2: [8086:0e06] type 01 class 0x060400 pci 0000:00:02.2: PME# supported from D0 D3hot D3cold pci 0000:00:03.0: [8086:0e08] type 01 class 0x060400 pci 0000:00:03.0: enabling Extended Tags pci 0000:00:03.0: PME# supported from D0 D3hot D3cold pci 0000:00:03.2: [8086:0e0a] type 01 class 0x060400 pci 0000:00:03.2: PME# supported from D0 D3hot D3cold pci 0000:00:04.0: [8086:0e20] type 00 class 0x088000 pci 0000:00:04.0: reg 0x10: [mem 0xcfc1c000-0xcfc1ffff 64bit] pci 0000:00:04.1: [8086:0e21] type 00 class 0x088000 pci 0000:00:04.1: reg 0x10: [mem 0xcfc18000-0xcfc1bfff 64bit] pci 0000:00:04.2: [8086:0e22] type 00 class 0x088000 pci 0000:00:04.2: reg 0x10: [mem 0xcfc14000-0xcfc17fff 64bit] pci 0000:00:04.3: [8086:0e23] type 00 class 0x088000 pci 0000:00:04.3: reg 0x10: [mem 0xcfc10000-0xcfc13fff 64bit] pci 0000:00:04.4: [8086:0e24] type 00 class 0x088000 pci 0000:00:04.4: reg 0x10: [mem 0xcfc0c000-0xcfc0ffff 64bit] pci 0000:00:04.5: [8086:0e25] type 00 class 0x088000 pci 0000:00:04.5: reg 0x10: [mem 0xcfc08000-0xcfc0bfff 64bit] pci 0000:00:04.6: [8086:0e26] type 00 class 0x088000 pci 0000:00:04.6: reg 0x10: [mem 0xcfc04000-0xcfc07fff 64bit] pci 0000:00:04.7: [8086:0e27] type 00 class 0x088000 pci 0000:00:04.7: reg 0x10: [mem 0xcfc00000-0xcfc03fff 64bit] pci 0000:00:05.0: [8086:0e28] type 00 class 0x088000 pci 0000:00:05.2: [8086:0e2a] type 00 class 0x088000 pci 0000:00:05.4: [8086:0e2c] type 00 class 0x080020 pci 0000:00:05.4: reg 0x10: [mem 0xcfc25000-0xcfc25fff] pci 0000:00:11.0: [8086:1d3e] type 01 class 0x060400 pci 0000:00:11.0: PME# supported from D0 D3hot D3cold pci 0000:00:16.0: [8086:1d3a] type 00 class 0x078000 pci 0000:00:16.0: reg 0x10: [mem 0xfed0e000-0xfed0e00f 64bit] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold pci 0000:00:16.1: [8086:1d3b] type 00 class 0x078000 pci 0000:00:16.1: reg 0x10: [mem 0xfed0f000-0xfed0f00f 64bit] pci 0000:00:16.1: PME# supported from D0 D3hot D3cold pci 0000:00:1a.0: [8086:1d2d] type 00 class 0x0c0320 pci 0000:00:1a.0: reg 0x10: [mem 0xcfc23000-0xcfc233ff] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold pci 0000:00:1c.0: [8086:1d10] type 01 class 0x060400 pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold pci 0000:00:1c.7: [8086:1d1e] type 01 class 0x060400 pci 0000:00:1c.7: PME# supported from D0 D3hot D3cold pci 0000:00:1d.0: [8086:1d26] type 00 class 0x0c0320 pci 0000:00:1d.0: reg 0x10: [mem 0xcfc22000-0xcfc223ff] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401 pci 0000:00:1f.0: [8086:1d41] type 00 class 0x060100 pci 0000:00:1f.2: [8086:1d02] type 00 class 0x010601 pci 0000:00:1f.2: reg 0x10: [io 0x9050-0x9057] pci 0000:00:1f.2: reg 0x14: [io 0x9040-0x9043] pci 0000:00:1f.2: reg 0x18: [io 0x9030-0x9037] pci 0000:00:1f.2: reg 0x1c: [io 0x9020-0x9023] pci 0000:00:1f.2: reg 0x20: [io 0x9000-0x901f] pci 0000:00:1f.2: reg 0x24: [mem 0xcfc21000-0xcfc217ff] pci 0000:00:1f.2: PME# supported from D3hot pci 0000:00:1f.3: [8086:1d22] type 00 class 0x0c0500 pci 0000:00:1f.3: reg 0x10: [mem 0xcfc20000-0xcfc200ff 64bit] pci 0000:00:1f.3: reg 0x20: [io 0x1180-0x119f] pci 0000:00:1f.6: [8086:1d24] type 00 class 0x118000 pci 0000:00:1f.6: reg 0x10: [mem 0xfed08000-0xfed08fff 64bit] pci 0000:00:01.0: PCI bridge to [bus 01] pci 0000:02:00.0: [8086:1521] type 00 class 0x020000 pci 0000:02:00.0: reg 0x10: [mem 0xcfb20000-0xcfb3ffff] pci 0000:02:00.0: reg 0x18: [io 0x8020-0x803f] pci 0000:02:00.0: reg 0x1c: [mem 0xcfb44000-0xcfb47fff] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold pci 0000:02:00.0: reg 0x184: [mem 0x00000000-0x00003fff 64bit pref] pci 0000:02:00.0: VF(n) BAR0 space: [mem 0x00000000-0x0001ffff 64bit pref] (contains BAR0 for 8 VFs) pci 0000:02:00.0: reg 0x190: [mem 0x00000000-0x00003fff 64bit pref] pci 0000:02:00.0: VF(n) BAR3 space: [mem 0x00000000-0x0001ffff 64bit pref] (contains BAR3 for 8 VFs) pci 0000:02:00.1: [8086:1521] type 00 class 0x020000 pci 0000:02:00.1: reg 0x10: [mem 0xcfb00000-0xcfb1ffff] pci 0000:02:00.1: reg 0x18: [io 0x8000-0x801f] pci 0000:02:00.1: reg 0x1c: [mem 0xcfb40000-0xcfb43fff] pci 0000:02:00.1: PME# supported from D0 D3hot D3cold pci 0000:02:00.1: reg 0x184: [mem 0x00000000-0x00003fff 64bit pref] pci 0000:02:00.1: VF(n) BAR0 space: [mem 0x00000000-0x0001ffff 64bit pref] (contains BAR0 for 8 VFs) pci 0000:02:00.1: reg 0x190: [mem 0x00000000-0x00003fff 64bit pref] pci 0000:02:00.1: VF(n) BAR3 space: [mem 0x00000000-0x0001ffff 64bit pref] (contains BAR3 for 8 VFs) pci 0000:00:01.1: ASPM: current common clock configuration is broken, reconfiguring pci 0000:00:01.1: PCI bridge to [bus 02-03] pci 0000:00:01.1: bridge window [io 0x8000-0x8fff] pci 0000:00:01.1: bridge window [mem 0xcfb00000-0xcfbfffff] pci 0000:00:02.0: PCI bridge to [bus 04] pci 0000:05:00.0: [8086:10fb] type 00 class 0x020000 pci 0000:05:00.0: reg 0x10: [mem 0xce680000-0xce6fffff 64bit pref] pci 0000:05:00.0: reg 0x18: [io 0x7020-0x703f] pci 0000:05:00.0: reg 0x20: [mem 0xce704000-0xce707fff 64bit pref] pci 0000:05:00.0: reg 0x30: [mem 0xcfa80000-0xcfafffff pref] pci 0000:05:00.0: PME# supported from D0 D3hot D3cold pci 0000:05:00.0: reg 0x184: [mem 0x00000000-0x00003fff 64bit pref] pci 0000:05:00.0: VF(n) BAR0 space: [mem 0x00000000-0x000fffff 64bit pref] (contains BAR0 for 64 VFs) pci 0000:05:00.0: reg 0x190: [mem 0x00000000-0x00003fff 64bit pref] pci 0000:05:00.0: VF(n) BAR3 space: [mem 0x00000000-0x000fffff 64bit pref] (contains BAR3 for 64 VFs) pci 0000:05:00.1: [8086:10fb] type 00 class 0x020000 pci 0000:05:00.1: reg 0x10: [mem 0xce600000-0xce67ffff 64bit pref] pci 0000:05:00.1: reg 0x18: [io 0x7000-0x701f] pci 0000:05:00.1: reg 0x20: [mem 0xce700000-0xce703fff 64bit pref] pci 0000:05:00.1: reg 0x30: [mem 0xcfa00000-0xcfa7ffff pref] pci 0000:05:00.1: PME# supported from D0 D3hot D3cold pci 0000:05:00.1: reg 0x184: [mem 0x00000000-0x00003fff 64bit pref] pci 0000:05:00.1: VF(n) BAR0 space: [mem 0x00000000-0x000fffff 64bit pref] (contains BAR0 for 64 VFs) pci 0000:05:00.1: reg 0x190: [mem 0x00000000-0x00003fff 64bit pref] pci 0000:05:00.1: VF(n) BAR3 space: [mem 0x00000000-0x000fffff 64bit pref] (contains BAR3 for 64 VFs) pci 0000:00:02.2: PCI bridge to [bus 05-06] pci 0000:00:02.2: bridge window [io 0x7000-0x7fff] pci 0000:00:02.2: bridge window [mem 0xcfa00000-0xcfafffff] pci 0000:00:02.2: bridge window [mem 0xce600000-0xce7fffff 64bit pref] pci 0000:07:00.0: [17d3:1880] type 00 class 0x010400 pci 0000:07:00.0: reg 0x10: [io 0x6000-0x60ff] pci 0000:07:00.0: reg 0x14: [mem 0xcf9c0000-0xcf9cffff 64bit] pci 0000:07:00.0: reg 0x1c: [mem 0xcf980000-0xcf9bffff 64bit] pci 0000:07:00.0: reg 0x30: [mem 0xcf900000-0xcf97ffff pref] pci 0000:07:00.0: enabling Extended Tags pci 0000:00:03.0: PCI bridge to [bus 07] pci 0000:00:03.0: bridge window [io 0x6000-0x6fff] pci 0000:00:03.0: bridge window [mem 0xcf900000-0xcf9fffff] pci 0000:00:03.2: PCI bridge to [bus 08] pci 0000:09:00.0: [8086:1d6b] type 00 class 0x010700 pci 0000:09:00.0: reg 0x10: [mem 0xce400000-0xce403fff 64bit pref] pci 0000:09:00.0: reg 0x18: [mem 0xce000000-0xce3fffff 64bit pref] pci 0000:09:00.0: reg 0x20: [io 0x5000-0x50ff] pci 0000:09:00.0: enabling Extended Tags pci 0000:09:00.0: reg 0x164: [mem 0x00000000-0x00003fff 64bit pref] pci 0000:09:00.0: VF(n) BAR0 space: [mem 0x00000000-0x0007bfff 64bit pref] (contains BAR0 for 31 VFs) pci 0000:00:11.0: PCI bridge to [bus 09] pci 0000:00:11.0: bridge window [io 0x5000-0x5fff] pci 0000:00:11.0: bridge window [mem 0xce000000-0xce4fffff 64bit pref] pci 0000:00:1c.0: PCI bridge to [bus 0a] pci 0000:0b:00.0: [1912:0013] type 01 class 0x060400 pci 0000:0b:00.0: enabling Extended Tags pci 0000:0b:00.0: PME# supported from D0 D3hot D3cold pci 0000:00:1c.7: PCI bridge to [bus 0b-0f] pci 0000:00:1c.7: bridge window [mem 0xcf000000-0xcf8fffff] pci 0000:00:1c.7: bridge window [mem 0xcd000000-0xcdffffff 64bit pref] pci 0000:0c:00.0: [1912:0013] type 01 class 0x060400 pci 0000:0c:00.0: enabling Extended Tags pci 0000:0c:00.0: PME# supported from D0 D3hot D3cold pci 0000:0c:01.0: [1912:0013] type 01 class 0x060400 pci 0000:0c:01.0: enabling Extended Tags pci 0000:0c:01.0: PME# supported from D0 D3hot D3cold pci 0000:0b:00.0: PCI bridge to [bus 0c-0f] pci 0000:0b:00.0: bridge window [mem 0xcf000000-0xcf8fffff] pci 0000:0b:00.0: bridge window [mem 0xcd000000-0xcdffffff 64bit pref] pci 0000:0d:00.0: [1912:0012] type 01 class 0x060400 pci 0000:0d:00.0: enabling Extended Tags pci 0000:0c:00.0: PCI bridge to [bus 0d-0e] pci 0000:0c:00.0: bridge window [mem 0xcf000000-0xcf8fffff] pci 0000:0c:00.0: bridge window [mem 0xcd000000-0xcdffffff 64bit pref] pci_bus 0000:0e: extended config space not accessible pci 0000:0e:00.0: [102b:0534] type 00 class 0x030000 pci 0000:0e:00.0: reg 0x10: [mem 0xcd000000-0xcdffffff pref] pci 0000:0e:00.0: reg 0x14: [mem 0xcf800000-0xcf803fff] pci 0000:0e:00.0: reg 0x18: [mem 0xcf000000-0xcf7fffff] pci 0000:0d:00.0: PCI bridge to [bus 0e] pci 0000:0d:00.0: bridge window [mem 0xcf000000-0xcf8fffff] pci 0000:0d:00.0: bridge window [mem 0xcd000000-0xcdffffff 64bit pref] pci 0000:0c:01.0: PCI bridge to [bus 0f] pci_bus 0000:10: extended config space not accessible pci 0000:00:1e.0: PCI bridge to [bus 10] (subtractive decode) pci 0000:00:1e.0: bridge window [io 0x0000-0x03af window] (subtractive decode) pci 0000:00:1e.0: bridge window [io 0x03e0-0x0cf7 window] (subtractive decode) pci 0000:00:1e.0: bridge window [io 0x03b0-0x03df window] (subtractive decode) pci 0000:00:1e.0: bridge window [io 0x0d00-0x9fff window] (subtractive decode) pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode) pci 0000:00:1e.0: bridge window [mem 0x000c0000-0x000dffff window] (subtractive decode) pci 0000:00:1e.0: bridge window [mem 0xfed08000-0xfed08fff window] (subtractive decode) pci 0000:00:1e.0: bridge window [mem 0xfed0e000-0xfed0ffff window] (subtractive decode) pci 0000:00:1e.0: bridge window [mem 0x30000000-0xcfffffff window] (subtractive decode) pci_bus 0000:00: on NUMA node 0 ACPI: PCI Root Bridge [UNC0] (domain 0000 [bus 7f]) acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI] acpi PNP0A03:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR] acpi PNP0A03:00: FADT indicates ASPM is unsupported, using BIOS configuration PCI host bridge to bus 0000:7f pci_bus 0000:7f: root bus resource [bus 7f] pci 0000:7f:08.0: [8086:0e80] type 00 class 0x088000 pci 0000:7f:09.0: [8086:0e90] type 00 class 0x088000 pci 0000:7f:0a.0: [8086:0ec0] type 00 class 0x088000 pci 0000:7f:0a.1: [8086:0ec1] type 00 class 0x088000 pci 0000:7f:0a.2: [8086:0ec2] type 00 class 0x088000 pci 0000:7f:0a.3: [8086:0ec3] type 00 class 0x088000 pci 0000:7f:0b.0: [8086:0e1e] type 00 class 0x088000 pci 0000:7f:0b.3: [8086:0e1f] type 00 class 0x088000 pci 0000:7f:0c.0: [8086:0ee0] type 00 class 0x088000 pci 0000:7f:0c.1: [8086:0ee2] type 00 class 0x088000 pci 0000:7f:0c.2: [8086:0ee4] type 00 class 0x088000 pci 0000:7f:0d.0: [8086:0ee1] type 00 class 0x088000 pci 0000:7f:0d.1: [8086:0ee3] type 00 class 0x088000 pci 0000:7f:0d.2: [8086:0ee5] type 00 class 0x088000 pci 0000:7f:0e.0: [8086:0ea0] type 00 class 0x088000 pci 0000:7f:0e.1: [8086:0e30] type 00 class 0x110100 pci 0000:7f:0f.0: [8086:0ea8] type 00 class 0x088000 pci 0000:7f:0f.1: [8086:0e71] type 00 class 0x088000 pci 0000:7f:0f.2: [8086:0eaa] type 00 class 0x088000 pci 0000:7f:0f.3: [8086:0eab] type 00 class 0x088000 pci 0000:7f:0f.4: [8086:0eac] type 00 class 0x088000 pci 0000:7f:0f.5: [8086:0ead] type 00 class 0x088000 pci 0000:7f:10.0: [8086:0eb0] type 00 class 0x088000 pci 0000:7f:10.1: [8086:0eb1] type 00 class 0x088000 pci 0000:7f:10.2: [8086:0eb2] type 00 class 0x088000 pci 0000:7f:10.3: [8086:0eb3] type 00 class 0x088000 pci 0000:7f:10.4: [8086:0eb4] type 00 class 0x088000 pci 0000:7f:10.5: [8086:0eb5] type 00 class 0x088000 pci 0000:7f:10.6: [8086:0eb6] type 00 class 0x088000 pci 0000:7f:10.7: [8086:0eb7] type 00 class 0x088000 pci 0000:7f:13.0: [8086:0e1d] type 00 class 0x088000 pci 0000:7f:13.1: [8086:0e34] type 00 class 0x110100 pci 0000:7f:13.4: [8086:0e81] type 00 class 0x088000 pci 0000:7f:13.5: [8086:0e36] type 00 class 0x110100 pci 0000:7f:16.0: [8086:0ec8] type 00 class 0x088000 pci 0000:7f:16.1: [8086:0ec9] type 00 class 0x088000 pci 0000:7f:16.2: [8086:0eca] type 00 class 0x088000 pci_bus 0000:7f: on NUMA node 0 ACPI: PCI Root Bridge [PCI1] (domain 0000 [bus 80-fe]) acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI] acpi PNP0A08:01: _OSC: platform does not support [SHPCHotplug PME AER LTR] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PCIeCapability] acpi PNP0A08:01: FADT indicates ASPM is unsupported, using BIOS configuration PCI host bridge to bus 0000:80 pci_bus 0000:80: root bus resource [io 0xa000-0xffff window] pci_bus 0000:80: root bus resource [mem 0xd0000000-0xfbffffff window] pci_bus 0000:80: root bus resource [bus 80-fe] pci 0000:80:00.0: [8086:0e01] type 01 class 0x060400 pci 0000:80:00.0: PME# supported from D0 D3hot D3cold pci 0000:80:01.0: [8086:0e02] type 01 class 0x060400 pci 0000:80:01.0: PME# supported from D0 D3hot D3cold pci 0000:80:02.0: [8086:0e04] type 01 class 0x060400 pci 0000:80:02.0: PME# supported from D0 D3hot D3cold pci 0000:80:03.0: [8086:0e08] type 01 class 0x060400 pci 0000:80:03.0: enabling Extended Tags pci 0000:80:03.0: PME# supported from D0 D3hot D3cold pci 0000:80:03.2: [8086:0e0a] type 01 class 0x060400 pci 0000:80:03.2: PME# supported from D0 D3hot D3cold pci 0000:80:04.0: [8086:0e20] type 00 class 0x088000 pci 0000:80:04.0: reg 0x10: [mem 0xfbf1c000-0xfbf1ffff 64bit] pci 0000:80:04.1: [8086:0e21] type 00 class 0x088000 pci 0000:80:04.1: reg 0x10: [mem 0xfbf18000-0xfbf1bfff 64bit] pci 0000:80:04.2: [8086:0e22] type 00 class 0x088000 pci 0000:80:04.2: reg 0x10: [mem 0xfbf14000-0xfbf17fff 64bit] pci 0000:80:04.3: [8086:0e23] type 00 class 0x088000 pci 0000:80:04.3: reg 0x10: [mem 0xfbf10000-0xfbf13fff 64bit] pci 0000:80:04.4: [8086:0e24] type 00 class 0x088000 pci 0000:80:04.4: reg 0x10: [mem 0xfbf0c000-0xfbf0ffff 64bit] pci 0000:80:04.5: [8086:0e25] type 00 class 0x088000 pci 0000:80:04.5: reg 0x10: [mem 0xfbf08000-0xfbf0bfff 64bit] pci 0000:80:04.6: [8086:0e26] type 00 class 0x088000 pci 0000:80:04.6: reg 0x10: [mem 0xfbf04000-0xfbf07fff 64bit] pci 0000:80:04.7: [8086:0e27] type 00 class 0x088000 pci 0000:80:04.7: reg 0x10: [mem 0xfbf00000-0xfbf03fff 64bit] pci 0000:80:05.0: [8086:0e28] type 00 class 0x088000 pci 0000:80:05.2: [8086:0e2a] type 00 class 0x088000 pci 0000:80:05.4: [8086:0e2c] type 00 class 0x080020 pci 0000:80:05.4: reg 0x10: [mem 0xfbf20000-0xfbf20fff] pci 0000:80:00.0: PCI bridge to [bus 81] pci 0000:80:01.0: PCI bridge to [bus 82] pci 0000:80:02.0: PCI bridge to [bus 83] pci 0000:80:03.0: PCI bridge to [bus 84] pci 0000:80:03.2: PCI bridge to [bus 85] pci_bus 0000:80: on NUMA node 1 ACPI: PCI Root Bridge [UNC1] (domain 0000 [bus ff]) acpi PNP0A03:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI] acpi PNP0A03:01: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR] acpi PNP0A03:01: FADT indicates ASPM is unsupported, using BIOS configuration PCI host bridge to bus 0000:ff pci_bus 0000:ff: root bus resource [bus ff] pci 0000:ff:08.0: [8086:0e80] type 00 class 0x088000 pci 0000:ff:09.0: [8086:0e90] type 00 class 0x088000 pci 0000:ff:0a.0: [8086:0ec0] type 00 class 0x088000 pci 0000:ff:0a.1: [8086:0ec1] type 00 class 0x088000 pci 0000:ff:0a.2: [8086:0ec2] type 00 class 0x088000 pci 0000:ff:0a.3: [8086:0ec3] type 00 class 0x088000 pci 0000:ff:0b.0: [8086:0e1e] type 00 class 0x088000 pci 0000:ff:0b.3: [8086:0e1f] type 00 class 0x088000 pci 0000:ff:0c.0: [8086:0ee0] type 00 class 0x088000 pci 0000:ff:0c.1: [8086:0ee2] type 00 class 0x088000 pci 0000:ff:0c.2: [8086:0ee4] type 00 class 0x088000 pci 0000:ff:0d.0: [8086:0ee1] type 00 class 0x088000 pci 0000:ff:0d.1: [8086:0ee3] type 00 class 0x088000 pci 0000:ff:0d.2: [8086:0ee5] type 00 class 0x088000 pci 0000:ff:0e.0: [8086:0ea0] type 00 class 0x088000 pci 0000:ff:0e.1: [8086:0e30] type 00 class 0x110100 pci 0000:ff:0f.0: [8086:0ea8] type 00 class 0x088000 pci 0000:ff:0f.1: [8086:0e71] type 00 class 0x088000 pci 0000:ff:0f.2: [8086:0eaa] type 00 class 0x088000 pci 0000:ff:0f.3: [8086:0eab] type 00 class 0x088000 pci 0000:ff:0f.4: [8086:0eac] type 00 class 0x088000 pci 0000:ff:0f.5: [8086:0ead] type 00 class 0x088000 pci 0000:ff:10.0: [8086:0eb0] type 00 class 0x088000 pci 0000:ff:10.1: [8086:0eb1] type 00 class 0x088000 pci 0000:ff:10.2: [8086:0eb2] type 00 class 0x088000 pci 0000:ff:10.3: [8086:0eb3] type 00 class 0x088000 pci 0000:ff:10.4: [8086:0eb4] type 00 class 0x088000 pci 0000:ff:10.5: [8086:0eb5] type 00 class 0x088000 pci 0000:ff:10.6: [8086:0eb6] type 00 class 0x088000 pci 0000:ff:10.7: [8086:0eb7] type 00 class 0x088000 pci 0000:ff:13.0: [8086:0e1d] type 00 class 0x088000 pci 0000:ff:13.1: [8086:0e34] type 00 class 0x110100 pci 0000:ff:13.4: [8086:0e81] type 00 class 0x088000 pci 0000:ff:13.5: [8086:0e36] type 00 class 0x110100 pci 0000:ff:16.0: [8086:0ec8] type 00 class 0x088000 pci 0000:ff:16.1: [8086:0ec9] type 00 class 0x088000 pci 0000:ff:16.2: [8086:0eca] type 00 class 0x088000 pci_bus 0000:ff: on NUMA node 1 ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12 14 15) ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 *10 11 12 14 15) ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 *5 6 10 11 12 14 15) ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 *11 12 14 15) ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 12 14 15) *0 ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0 ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 11 12 14 15) *0 ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 *7 10 11 12 14 15) pci 0000:0e:00.0: vgaarb: setting as boot VGA device pci 0000:0e:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none pci 0000:0e:00.0: vgaarb: bridge control possible vgaarb: loaded pps_core: LinuxPPS API ver. 1 registered pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti at linux.it> PTP clock support registered EDAC MC: Ver: 3.0.0 PCI: Using ACPI for IRQ routing PCI: pci_cache_line_size set to 64 bytes e820: reserve RAM buffer [mem 0x0009c000-0x0009ffff] e820: reserve RAM buffer [mem 0x2de35000-0x2fffffff] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0 hpet0: 8 comparators, 64-bit 14.318180 MHz counter clocksource: Switched to clocksource tsc-early VFS: Disk quotas dquot_6.6.0 VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) AppArmor: AppArmor Filesystem Enabled pnp: PnP ACPI init system 00:00: [mem 0xfc000000-0xfcffffff] has been reserved system 00:00: [mem 0xfd000000-0xfdffffff] has been reserved system 00:00: [mem 0xfe000000-0xfeafffff] has been reserved system 00:00: [mem 0xfeb00000-0xfebfffff] has been reserved system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active) system 00:01: [mem 0xcfffc000-0xcfffdfff] could not be reserved system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active) pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active) pnp 00:03: disabling [mem 0x00000400-0x000004ff] because it overlaps 0000:02:00.0 BAR 7 [mem 0x00000000-0x0001ffff 64bit pref] pnp 00:03: disabling [mem 0x00000400-0x000004ff disabled] because it overlaps 0000:02:00.0 BAR 10 [mem 0x00000000-0x0001ffff 64bit pref] pnp 00:03: disabling [mem 0x00000400-0x000004ff disabled] because it overlaps 0000:02:00.1 BAR 7 [mem 0x00000000-0x0001ffff 64bit pref] pnp 00:03: disabling [mem 0x00000400-0x000004ff disabled] because it overlaps 0000:02:00.1 BAR 10 [mem 0x00000000-0x0001ffff 64bit pref] pnp 00:03: disabling [mem 0x00000400-0x000004ff disabled] because it overlaps 0000:05:00.0 BAR 7 [mem 0x00000000-0x000fffff 64bit pref] pnp 00:03: disabling [mem 0x00000400-0x000004ff disabled] because it overlaps 0000:05:00.0 BAR 10 [mem 0x00000000-0x000fffff 64bit pref] pnp 00:03: disabling [mem 0x00000400-0x000004ff disabled] because it overlaps 0000:05:00.1 BAR 7 [mem 0x00000000-0x000fffff 64bit pref] pnp 00:03: disabling [mem 0x00000400-0x000004ff disabled] because it overlaps 0000:05:00.1 BAR 10 [mem 0x00000000-0x000fffff 64bit pref] pnp 00:03: disabling [mem 0x00000400-0x000004ff disabled] because it overlaps 0000:09:00.0 BAR 7 [mem 0x00000000-0x0007bfff 64bit pref] system 00:03: [io 0x04d0-0x04d1] has been reserved system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active) system 00:04: [io 0x0a00-0x0a07] has been reserved system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active) system 00:05: [io 0x0370-0x0371] has been reserved system 00:05: [io 0x0a00-0x0a07] has been reserved system 00:05: [io 0x0a10-0x0a3f] has been reserved system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active) pnp 00:06: [dma 0 disabled] pnp 00:06: Plug and Play ACPI device, IDs PNP0501 (active) pnp 00:07: [dma 0 disabled] pnp 00:07: Plug and Play ACPI device, IDs PNP0501 (active) system 00:08: [io 0x0400-0x0453] has been reserved system 00:08: [io 0x0458-0x047f] has been reserved system 00:08: [io 0x1180-0x119f] has been reserved system 00:08: [io 0x0500-0x057f] has been reserved system 00:08: [mem 0xfed1c000-0xfed1ffff] has been reserved system 00:08: [mem 0xfec00000-0xfecfffff] could not be reserved system 00:08: [mem 0xff000000-0xffffffff] has been reserved system 00:08: Plug and Play ACPI device, IDs PNP0c01 (active) system 00:09: [io 0x0454-0x0457] has been reserved system 00:09: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active) system 00:0a: Plug and Play ACPI device, IDs PNP0c01 (active) system 00:0b: [mem 0xfbffe000-0xfbffffff] could not be reserved system 00:0b: Plug and Play ACPI device, IDs PNP0c02 (active) pnp 00:0c: disabling [mem 0x00000000-0x0009ffff] because it overlaps 0000:05:00.0 BAR 7 [mem 0x00000000-0x000fffff 64bit pref] pnp 00:0c: disabling [mem 0x00000000-0x0009ffff disabled] because it overlaps 0000:05:00.0 BAR 10 [mem 0x00000000-0x000fffff 64bit pref] pnp 00:0c: disabling [mem 0x00000000-0x0009ffff disabled] because it overlaps 0000:05:00.1 BAR 7 [mem 0x00000000-0x000fffff 64bit pref] pnp 00:0c: disabling [mem 0x00000000-0x0009ffff disabled] because it overlaps 0000:05:00.1 BAR 10 [mem 0x00000000-0x000fffff 64bit pref] system 00:0c: Plug and Play ACPI device, IDs PNP0c01 (active) pnp: PnP ACPI: found 13 devices clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns pci_bus 0000:00: max bus depth: 4 pci_try_num: 5 pci 0000:00:01.1: BAR 15: assigned [mem 0x40000000-0x400fffff 64bit pref] pci 0000:00:11.0: BAR 14: assigned [mem 0x40100000-0x401fffff] pci 0000:00:01.0: PCI bridge to [bus 01] pci 0000:02:00.0: BAR 7: assigned [mem 0x40000000-0x4001ffff 64bit pref] pci 0000:02:00.0: BAR 10: assigned [mem 0x40020000-0x4003ffff 64bit pref] pci 0000:02:00.1: BAR 7: assigned [mem 0x40040000-0x4005ffff 64bit pref] pci 0000:02:00.1: BAR 10: assigned [mem 0x40060000-0x4007ffff 64bit pref] pci 0000:00:01.1: PCI bridge to [bus 02-03] pci 0000:00:01.1: bridge window [io 0x8000-0x8fff] pci 0000:00:01.1: bridge window [mem 0xcfb00000-0xcfbfffff] pci 0000:00:01.1: bridge window [mem 0x40000000-0x400fffff 64bit pref] pci 0000:00:02.0: PCI bridge to [bus 04] pci 0000:05:00.0: BAR 7: no space for [mem size 0x00100000 64bit pref] pci 0000:05:00.0: BAR 7: failed to assign [mem size 0x00100000 64bit pref] pci 0000:05:00.0: BAR 10: no space for [mem size 0x00100000 64bit pref] pci 0000:05:00.0: BAR 10: failed to assign [mem size 0x00100000 64bit pref] pci 0000:05:00.1: BAR 7: no space for [mem size 0x00100000 64bit pref] pci 0000:05:00.1: BAR 7: failed to assign [mem size 0x00100000 64bit pref] pci 0000:05:00.1: BAR 10: no space for [mem size 0x00100000 64bit pref] pci 0000:05:00.1: BAR 10: failed to assign [mem size 0x00100000 64bit pref] pci 0000:00:02.2: PCI bridge to [bus 05-06] pci 0000:00:02.2: bridge window [io 0x7000-0x7fff] pci 0000:00:02.2: bridge window [mem 0xcfa00000-0xcfafffff] pci 0000:00:02.2: bridge window [mem 0xce600000-0xce7fffff 64bit pref] pci 0000:00:03.0: PCI bridge to [bus 07] pci 0000:00:03.0: bridge window [io 0x6000-0x6fff] pci 0000:00:03.0: bridge window [mem 0xcf900000-0xcf9fffff] pci 0000:00:03.2: PCI bridge to [bus 08] pci 0000:09:00.0: BAR 7: assigned [mem 0xce404000-0xce47ffff 64bit pref] pci 0000:00:11.0: PCI bridge to [bus 09] pci 0000:00:11.0: bridge window [io 0x5000-0x5fff] pci 0000:00:11.0: bridge window [mem 0x40100000-0x401fffff] pci 0000:00:11.0: bridge window [mem 0xce000000-0xce4fffff 64bit pref] pci 0000:00:1c.0: PCI bridge to [bus 0a] pci 0000:0d:00.0: PCI bridge to [bus 0e] pci 0000:0d:00.0: bridge window [mem 0xcf000000-0xcf8fffff] pci 0000:0d:00.0: bridge window [mem 0xcd000000-0xcdffffff 64bit pref] pci 0000:0c:00.0: PCI bridge to [bus 0d-0e] pci 0000:0c:00.0: bridge window [mem 0xcf000000-0xcf8fffff] pci 0000:0c:00.0: bridge window [mem 0xcd000000-0xcdffffff 64bit pref] pci 0000:0c:01.0: PCI bridge to [bus 0f] pci 0000:0b:00.0: PCI bridge to [bus 0c-0f] pci 0000:0b:00.0: bridge window [mem 0xcf000000-0xcf8fffff] pci 0000:0b:00.0: bridge window [mem 0xcd000000-0xcdffffff 64bit pref] pci 0000:00:1c.7: PCI bridge to [bus 0b-0f] pci 0000:00:1c.7: bridge window [mem 0xcf000000-0xcf8fffff] pci 0000:00:1c.7: bridge window [mem 0xcd000000-0xcdffffff 64bit pref] pci 0000:00:1e.0: PCI bridge to [bus 10] pci_bus 0000:00: No. 2 try to assign unassigned res release child resource [mem 0xce600000-0xce67ffff 64bit pref] release child resource [mem 0xce680000-0xce6fffff 64bit pref] release child resource [mem 0xce700000-0xce703fff 64bit pref] release child resource [mem 0xce704000-0xce707fff 64bit pref] pci 0000:00:02.2: resource 15 [mem 0xce600000-0xce7fffff 64bit pref] released pci 0000:00:02.2: PCI bridge to [bus 05-06] pci 0000:00:02.2: BAR 15: assigned [mem 0x40200000-0x407fffff 64bit pref] pci 0000:00:01.0: PCI bridge to [bus 01] pci 0000:00:01.1: PCI bridge to [bus 02-03] pci 0000:00:01.1: bridge window [io 0x8000-0x8fff] pci 0000:00:01.1: bridge window [mem 0xcfb00000-0xcfbfffff] pci 0000:00:01.1: bridge window [mem 0x40000000-0x400fffff 64bit pref] pci 0000:00:02.0: PCI bridge to [bus 04] pci 0000:05:00.0: BAR 0: assigned [mem 0x40200000-0x4027ffff 64bit pref] pci 0000:05:00.1: BAR 0: assigned [mem 0x40280000-0x402fffff 64bit pref] pci 0000:05:00.0: BAR 4: assigned [mem 0x40300000-0x40303fff 64bit pref] pci 0000:05:00.0: BAR 7: assigned [mem 0x40304000-0x40403fff 64bit pref] pci 0000:05:00.0: BAR 10: assigned [mem 0x40404000-0x40503fff 64bit pref] pci 0000:05:00.1: BAR 4: assigned [mem 0x40504000-0x40507fff 64bit pref] pci 0000:05:00.1: BAR 7: assigned [mem 0x40508000-0x40607fff 64bit pref] pci 0000:05:00.1: BAR 10: assigned [mem 0x40608000-0x40707fff 64bit pref] pci 0000:00:02.2: PCI bridge to [bus 05-06] pci 0000:00:02.2: bridge window [io 0x7000-0x7fff] pci 0000:00:02.2: bridge window [mem 0xcfa00000-0xcfafffff] pci 0000:00:02.2: bridge window [mem 0x40200000-0x407fffff 64bit pref] pci 0000:00:03.0: PCI bridge to [bus 07] pci 0000:00:03.0: bridge window [io 0x6000-0x6fff] pci 0000:00:03.0: bridge window [mem 0xcf900000-0xcf9fffff] pci 0000:00:03.2: PCI bridge to [bus 08] pci 0000:00:11.0: PCI bridge to [bus 09] pci 0000:00:11.0: bridge window [io 0x5000-0x5fff] pci 0000:00:11.0: bridge window [mem 0x40100000-0x401fffff] pci 0000:00:11.0: bridge window [mem 0xce000000-0xce4fffff 64bit pref] pci 0000:00:1c.0: PCI bridge to [bus 0a] pci 0000:0d:00.0: PCI bridge to [bus 0e] pci 0000:0d:00.0: bridge window [mem 0xcf000000-0xcf8fffff] pci 0000:0d:00.0: bridge window [mem 0xcd000000-0xcdffffff 64bit pref] pci 0000:0c:00.0: PCI bridge to [bus 0d-0e] pci 0000:0c:00.0: bridge window [mem 0xcf000000-0xcf8fffff] pci 0000:0c:00.0: bridge window [mem 0xcd000000-0xcdffffff 64bit pref] pci 0000:0c:01.0: PCI bridge to [bus 0f] pci 0000:0b:00.0: PCI bridge to [bus 0c-0f] pci 0000:0b:00.0: bridge window [mem 0xcf000000-0xcf8fffff] pci 0000:0b:00.0: bridge window [mem 0xcd000000-0xcdffffff 64bit pref] pci 0000:00:1c.7: PCI bridge to [bus 0b-0f] pci 0000:00:1c.7: bridge window [mem 0xcf000000-0xcf8fffff] pci 0000:00:1c.7: bridge window [mem 0xcd000000-0xcdffffff 64bit pref] pci 0000:00:1e.0: PCI bridge to [bus 10] pci_bus 0000:00: resource 4 [io 0x0000-0x03af window] pci_bus 0000:00: resource 5 [io 0x03e0-0x0cf7 window] pci_bus 0000:00: resource 6 [io 0x03b0-0x03df window] pci_bus 0000:00: resource 7 [io 0x0d00-0x9fff window] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window] pci_bus 0000:00: resource 10 [mem 0xfed08000-0xfed08fff window] pci_bus 0000:00: resource 11 [mem 0xfed0e000-0xfed0ffff window] pci_bus 0000:00: resource 12 [mem 0x30000000-0xcfffffff window] pci_bus 0000:02: resource 0 [io 0x8000-0x8fff] pci_bus 0000:02: resource 1 [mem 0xcfb00000-0xcfbfffff] pci_bus 0000:02: resource 2 [mem 0x40000000-0x400fffff 64bit pref] pci_bus 0000:05: resource 0 [io 0x7000-0x7fff] pci_bus 0000:05: resource 1 [mem 0xcfa00000-0xcfafffff] pci_bus 0000:05: resource 2 [mem 0x40200000-0x407fffff 64bit pref] pci_bus 0000:07: resource 0 [io 0x6000-0x6fff] pci_bus 0000:07: resource 1 [mem 0xcf900000-0xcf9fffff] pci_bus 0000:09: resource 0 [io 0x5000-0x5fff] pci_bus 0000:09: resource 1 [mem 0x40100000-0x401fffff] pci_bus 0000:09: resource 2 [mem 0xce000000-0xce4fffff 64bit pref] pci_bus 0000:0b: resource 1 [mem 0xcf000000-0xcf8fffff] pci_bus 0000:0b: resource 2 [mem 0xcd000000-0xcdffffff 64bit pref] pci_bus 0000:0c: resource 1 [mem 0xcf000000-0xcf8fffff] pci_bus 0000:0c: resource 2 [mem 0xcd000000-0xcdffffff 64bit pref] pci_bus 0000:0d: resource 1 [mem 0xcf000000-0xcf8fffff] pci_bus 0000:0d: resource 2 [mem 0xcd000000-0xcdffffff 64bit pref] pci_bus 0000:0e: resource 1 [mem 0xcf000000-0xcf8fffff] pci_bus 0000:0e: resource 2 [mem 0xcd000000-0xcdffffff 64bit pref] pci_bus 0000:10: resource 4 [io 0x0000-0x03af window] pci_bus 0000:10: resource 5 [io 0x03e0-0x0cf7 window] pci_bus 0000:10: resource 6 [io 0x03b0-0x03df window] pci_bus 0000:10: resource 7 [io 0x0d00-0x9fff window] pci_bus 0000:10: resource 8 [mem 0x000a0000-0x000bffff window] pci_bus 0000:10: resource 9 [mem 0x000c0000-0x000dffff window] pci_bus 0000:10: resource 10 [mem 0xfed08000-0xfed08fff window] pci_bus 0000:10: resource 11 [mem 0xfed0e000-0xfed0ffff window] pci_bus 0000:10: resource 12 [mem 0x30000000-0xcfffffff window] pci 0000:80:00.0: PCI bridge to [bus 81] pci 0000:80:01.0: PCI bridge to [bus 82] pci 0000:80:02.0: PCI bridge to [bus 83] pci 0000:80:03.0: PCI bridge to [bus 84] pci 0000:80:03.2: PCI bridge to [bus 85] pci_bus 0000:80: resource 4 [io 0xa000-0xffff window] pci_bus 0000:80: resource 5 [mem 0xd0000000-0xfbffffff window] NET: Registered protocol family 2 tcp_listen_portaddr_hash hash table entries: 65536 (order: 8, 1048576 bytes) TCP established hash table entries: 524288 (order: 10, 4194304 bytes) TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) TCP: Hash tables configured (established 524288 bind 65536) UDP hash table entries: 65536 (order: 9, 2097152 bytes) UDP-Lite hash table entries: 65536 (order: 9, 2097152 bytes) NET: Registered protocol family 1 NET: Registered protocol family 44 pci 0000:00:05.0: disabled boot interrupts on device [8086:0e28] pci 0000:0e:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff] pci 0000:80:05.0: disabled boot interrupts on device [8086:0e28] PCI: CLS 64 bytes, default 64 Unpacking initramfs... Freeing initrd memory: 32800K PCI-DMA: Using software bounce buffering for IO (SWIOTLB) software IO TLB: mapped [mem 0x26c63000-0x2ac63000] (64MB) Initialise system trusted keyrings Key type blacklist registered workingset: timestamp_bits=40 max_order=25 bucket_order=0 zbud: loaded Key type asymmetric registered Asymmetric key parser 'x509' registered Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247) io scheduler noop registered io scheduler deadline registered io scheduler cfq registered (default) io scheduler mq-deadline registered shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 intel_idle: MWAIT substates: 0x1120 intel_idle: v0.4.1 model 0x3E intel_idle: lapic_timer_reliable_states 0xffffffff ERST: Error Record Serialization Table (ERST) support is initialized. pstore: Registered erst as persistent store backend GHES: APEI firmware first mode is enabled by WHEA _OSC. Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled 00:06: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A 00:07: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A Linux agpgart interface v0.103 AMD IOMMUv2 driver by Joerg Roedel <jroedel at suse.de> AMD IOMMUv2 functionality not available on this system i8042: PNP: No PS/2 controller found. mousedev: PS/2 mouse device common for all mice rtc_cmos 00:02: RTC can wake from S4 rtc_cmos 00:02: registered as rtc0 rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram, hpet irqs intel_pstate: Intel P-state driver initializing ledtrig-cpu: registered to indicate activity on CPUs NET: Registered protocol family 10 Segment Routing with IPv6 mip6: Mobile IPv6 NET: Registered protocol family 17 mpls_gso: MPLS GSO support mce: Using 23 MCE banks microcode: sig=0x306e4, pf=0x1, revision=0x42e microcode: Microcode Update Driver: v2.2. sched_clock: Marking stable (2865970738, 10134582)->(3101049225, -224943905) registered taskstats version 1 Loading compiled-in X.509 certificates Loaded X.509 cert 'Debian Secure Boot CA: 6ccece7e4c6c0d1f6149f3dd27dfcc5cbb419ea1' Loaded X.509 cert 'Debian Secure Boot Signer: 00a7468def' zswap: loaded using pool lzo/zbud pstore: Using compression: deflate AppArmor: AppArmor sha1 policy hashing enabled rtc_cmos 00:02: setting system clock to 2020-06-25 11:28:01 UTC (1593084481) Freeing unused kernel image memory: 1588K Write protecting the kernel read-only data: 16384k Freeing unused kernel image memory: 2028K Freeing unused kernel image memory: 780K x86/mm: Checked W+X mappings: passed, no W+X pages found. x86/mm: Checking user space page tables x86/mm: Checked W+X mappings: passed, no W+X pages found. Run /init as init process dca service started, version 1.12.1 i801_smbus 0000:00:1f.3: SMBus using PCI interrupt ixgbe: Intel(R) 10 Gigabit PCI Express Network Driver - version 5.1.0-k ixgbe: Copyright (c) 1999-2016 Intel Corporation. SCSI subsystem initialized cryptd: max_cpu_qlen set to 1000 igb: Intel(R) Gigabit Ethernet Network Driver - version 5.4.0-k igb: Copyright (c) 2007-2014 Intel Corporation. ACPI: bus type USB registered usbcore: registered new interface driver usbfs usbcore: registered new interface driver hub usbcore: registered new device driver usb ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver AVX version of gcm_enc/dec engaged. AES CTR mode by8 optimization enabled ehci-pci: EHCI PCI platform driver libata version 3.00 loaded. ehci-pci 0000:00:1a.0: EHCI Host Controller ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1 ehci-pci 0000:00:1a.0: debug port 2 ehci-pci 0000:00:1a.0: cache line size of 64 is not supported ehci-pci 0000:00:1a.0: irq 16, io mem 0xcfc23000 ahci 0000:00:1f.2: version 3.0 isci: Intel(R) C600 SAS Controller Driver - version 1.2.0 isci 0000:09:00.0: driver configured for rev: 6 silicon ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x3f impl SATA mode ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems apst ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00 usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 4.19 usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 usb usb1: Product: EHCI Host Controller usb usb1: Manufacturer: Linux 4.19.0-9-amd64 ehci_hcd usb usb1: SerialNumber: 0000:00:1a.0 hub 1-0:1.0: USB hub found hub 1-0:1.0: 2 ports detected isci 0000:09:00.0: OEM parameter table found in OROM isci 0000:09:00.0: OEM SAS parameters (version: 1.0) loaded (platform) ehci-pci 0000:00:1d.0: EHCI Host Controller ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2 ehci-pci 0000:00:1d.0: debug port 2 ehci-pci 0000:00:1d.0: cache line size of 64 is not supported ehci-pci 0000:00:1d.0: irq 23, io mem 0xcfc22000 isci 0000:09:00.0: SCU controller 0: phy 3-0 cables: {short, short, short, short} scsi host1: isci Areca RAID Controller0: Model ARC-1882, F/W V1.56 2019-07-30 scsi host0: Areca SAS/SATA RAID Controller (RAID6 capable) arcmsr version v1.40.00.09-20180709 arcmsr0: msi-x enabled ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00 usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 4.19 usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 usb usb2: Product: EHCI Host Controller usb usb2: Manufacturer: Linux 4.19.0-9-amd64 ehci_hcd usb usb2: SerialNumber: 0000:00:1d.0 hub 2-0:1.0: USB hub found hub 2-0:1.0: 2 ports detected igb 0000:02:00.0: added PHC on eth0 igb 0000:02:00.0: Intel(R) Gigabit Ethernet Network Connection igb 0000:02:00.0: eth0: (PCIe:5.0Gb/s:Width x4) 00:25:90:e2:f6:86 igb 0000:02:00.0: eth0: PBA No: 106100-000 igb 0000:02:00.0: Using MSI-X interrupts. 8 rx queue(s), 8 tx queue(s) scsi host2: ahci scsi host3: ahci scsi host4: ahci scsi host5: ahci scsi host6: ahci scsi host7: ahci ata1: SATA max UDMA/133 abar m2048 at 0xcfc21000 port 0xcfc21100 irq 43 ata2: SATA max UDMA/133 abar m2048 at 0xcfc21000 port 0xcfc21180 irq 43 ata3: SATA max UDMA/133 abar m2048 at 0xcfc21000 port 0xcfc21200 irq 43 ata4: SATA max UDMA/133 abar m2048 at 0xcfc21000 port 0xcfc21280 irq 43 ata5: SATA max UDMA/133 abar m2048 at 0xcfc21000 port 0xcfc21300 irq 43 ata6: SATA max UDMA/133 abar m2048 at 0xcfc21000 port 0xcfc21380 irq 43 igb 0000:02:00.1: added PHC on eth1 igb 0000:02:00.1: Intel(R) Gigabit Ethernet Network Connection igb 0000:02:00.1: eth1: (PCIe:5.0Gb/s:Width x4) 00:25:90:e2:f6:87 igb 0000:02:00.1: eth1: PBA No: 106100-000 igb 0000:02:00.1: Using MSI-X interrupts. 8 rx queue(s), 8 tx queue(s) igb 0000:02:00.0 eno1: renamed from eth0 igb 0000:02:00.1 eno2: renamed from eth1 tsc: Refined TSC clocksource calibration: 2399.999 MHz clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2298364cab5, max_idle_ns: 440795214892 ns clocksource: Switched to clocksource tsc usb 1-1: new high-speed USB device number 2 using ehci-pci usb 2-1: new high-speed USB device number 2 using ehci-pci ata4: SATA link down (SStatus 0 SControl 300) ata5: SATA link down (SStatus 0 SControl 300) ata2: SATA link down (SStatus 0 SControl 300) ata6: SATA link down (SStatus 0 SControl 300) ata1: SATA link down (SStatus 0 SControl 300) ata3: SATA link down (SStatus 0 SControl 300) scsi 0:0:1:0: Direct-Access Samsung SSD 840 PRO R001 PQ: 0 ANSI: 5 scsi 0:0:1:1: Direct-Access Samsung SSD 840 PRO R001 PQ: 0 ANSI: 5 scsi 0:0:1:2: Direct-Access SAMSUNG MZ7KM480HMHQ-000 R001 PQ: 0 ANSI: 5 scsi 0:0:1:3: Direct-Access SAMSUNG MZ7KM480HMHQ-000 R001 PQ: 0 ANSI: 5 scsi 0:0:1:4: Direct-Access SAMSUNG MZ7KM480HMHQ-000 R001 PQ: 0 ANSI: 5 scsi 0:0:1:5: Direct-Access SAMSUNG MZ7KM480HMHQ-000 R001 PQ: 0 ANSI: 5 scsi 0:0:1:6: Direct-Access Seagate ST91000640NS R001 PQ: 0 ANSI: 5 scsi 0:0:1:7: Direct-Access Seagate ST91000640NS R001 PQ: 0 ANSI: 5 scsi 0:0:2:0: Direct-Access Seagate ST91000640NS R001 PQ: 0 ANSI: 5 scsi 0:0:2:1: Direct-Access Seagate ST91000640NS R001 PQ: 0 ANSI: 5 scsi 0:0:2:2: Direct-Access Seagate ST91000640NS R001 PQ: 0 ANSI: 5 scsi 0:0:2:3: Direct-Access Seagate ST91000640NS R001 PQ: 0 ANSI: 5 scsi 0:0:2:4: Direct-Access Seagate ST91000640NS R001 PQ: 0 ANSI: 5 scsi 0:0:16:0: Processor Areca RAID controller R001 PQ: 0 ANSI: 0 sd 0:0:1:0: [sda] 250069680 512-byte logical blocks: (128 GB/119 GiB) sd 0:0:1:0: [sda] Write Protect is off sd 0:0:1:0: [sda] Mode Sense: cb 00 00 08 sd 0:0:1:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA sd 0:0:1:1: [sdb] 250069680 512-byte logical blocks: (128 GB/119 GiB) sd 0:0:1:1: [sdb] Write Protect is off sd 0:0:1:2: [sdc] 937703088 512-byte logical blocks: (480 GB/447 GiB) sd 0:0:1:1: [sdb] Mode Sense: cb 00 00 08 sd 0:0:1:2: [sdc] Write Protect is off sd 0:0:1:2: [sdc] Mode Sense: cb 00 00 08 sd 0:0:1:1: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA sd 0:0:1:3: [sdd] 937703088 512-byte logical blocks: (480 GB/447 GiB) sd 0:0:1:2: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA sd 0:0:1:3: [sdd] Write Protect is off sd 0:0:1:3: [sdd] Mode Sense: cb 00 00 08 sd 0:0:1:4: [sde] 937703088 512-byte logical blocks: (480 GB/447 GiB) sd 0:0:1:3: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA sd 0:0:1:4: [sde] Write Protect is off sd 0:0:1:4: [sde] Mode Sense: cb 00 00 08 sd 0:0:1:4: [sde] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA sd 0:0:1:5: [sdf] 937703088 512-byte logical blocks: (480 GB/447 GiB) sd 0:0:1:6: [sdg] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB) sd 0:0:1:6: [sdg] Write Protect is off sd 0:0:1:6: [sdg] Mode Sense: cb 00 00 08 sd 0:0:1:5: [sdf] Write Protect is off sd 0:0:1:5: [sdf] Mode Sense: cb 00 00 08 sd 0:0:1:6: [sdg] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA sd 0:0:1:7: [sdh] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB) sd 0:0:1:5: [sdf] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA sd 0:0:1:7: [sdh] Write Protect is off sd 0:0:1:7: [sdh] Mode Sense: cb 00 00 08 sd 0:0:1:7: [sdh] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA sda: sda1 sdc: sdc1 sde: sde1 sdb: sdb1 sdf: sdf1 sdd: sdd1 sd 0:0:2:0: [sdi] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB) sd 0:0:2:0: [sdi] Write Protect is off sd 0:0:2:0: [sdi] Mode Sense: cb 00 00 08 sd 0:0:2:1: [sdj] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB) sd 0:0:2:0: [sdi] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA sd 0:0:2:2: [sdk] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB) sd 0:0:2:2: [sdk] Write Protect is off sd 0:0:2:2: [sdk] Mode Sense: cb 00 00 08 sd 0:0:2:2: [sdk] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA sd 0:0:2:3: [sdl] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB) sd 0:0:2:3: [sdl] Write Protect is off sd 0:0:2:3: [sdl] Mode Sense: cb 00 00 08 sd 0:0:2:3: [sdl] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA sd 0:0:2:4: [sdm] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB) sd 0:0:2:4: [sdm] Write Protect is off sd 0:0:2:4: [sdm] Mode Sense: cb 00 00 08 sd 0:0:2:4: [sdm] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA sd 0:0:2:1: [sdj] Write Protect is off sd 0:0:2:1: [sdj] Mode Sense: cb 00 00 08 sd 0:0:2:1: [sdj] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA sd 0:0:1:4: [sde] Attached SCSI disk sd 0:0:1:2: [sdc] Attached SCSI disk sdg: sdg1 sdg2 sd 0:0:1:5: [sdf] Attached SCSI disk sd 0:0:1:1: [sdb] Attached SCSI disk sd 0:0:1:3: [sdd] Attached SCSI disk sd 0:0:1:0: [sda] Attached SCSI disk sdh: sdh1 sdh2 sdi: sdi1 sdi2 sdk: sdk1 sdk2 sdl: sdl1 sdl2 sdm: sdm1 sdm2 sd 0:0:1:6: [sdg] Attached SCSI disk sdj: sdj1 sdj2 sd 0:0:1:7: [sdh] Attached SCSI disk sd 0:0:2:2: [sdk] Attached SCSI disk sd 0:0:2:0: [sdi] Attached SCSI disk sd 0:0:2:4: [sdm] Attached SCSI disk sd 0:0:2:3: [sdl] Attached SCSI disk sd 0:0:2:1: [sdj] Attached SCSI disk md/raid1:md0: active with 2 out of 2 mirrors md0: detected capacity change from 0 to 127967494144 usb 1-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00 usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0 hub 1-1:1.0: USB hub found hub 1-1:1.0: 6 ports detected usb 2-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00 usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0 hub 2-1:1.0: USB hub found hub 2-1:1.0: 8 ports detected raid6: sse2x1 gen() 6573 MB/s raid6: sse2x1 xor() 5206 MB/s raid6: sse2x2 gen() 8458 MB/s raid6: sse2x2 xor() 5899 MB/s usb 1-1.3: new full-speed USB device number 3 using ehci-pci raid6: sse2x4 gen() 10328 MB/s raid6: sse2x4 xor() 6959 MB/s raid6: using algorithm sse2x4 gen() 10328 MB/s raid6: .... xor() 6959 MB/s, rmw enabled raid6: using ssse3x2 recovery algorithm xor: automatically using best checksumming function avx async_tx: api initialized (async) md/raid:md1: device sde1 operational as raid disk 2 md/raid:md1: device sdd1 operational as raid disk 1 md/raid:md1: device sdf1 operational as raid disk 3 md/raid:md1: device sdc1 operational as raid disk 0 md/raid:md1: raid level 5 active with 4 out of 4 devices, algorithm 2 md1: detected capacity change from 0 to 1439905087488 md/raid:md2: device sdh1 operational as raid disk 1 md/raid:md2: device sdi1 operational as raid disk 2 md/raid:md2: device sdl1 operational as raid disk 5 md/raid:md2: device sdm1 operational as raid disk 6 md/raid:md2: device sdj1 operational as raid disk 3 md/raid:md2: device sdk1 operational as raid disk 4 md/raid:md2: device sdg1 operational as raid disk 0 md/raid:md2: raid level 6 active with 7 out of 7 devices, algorithm 2 md2: detected capacity change from 0 to 4973503447040 usb 1-1.3: New USB device found, idVendor=046b, idProduct=ff10, bcdDevice= 1.00 usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0 usb 1-1.3: Product: Virtual Keyboard and Mouse usb 1-1.3: Manufacturer: American Megatrends Inc. hidraw: raw HID events driver (C) Jiri Kosina usbcore: registered new interface driver usbhid usbhid: USB HID core driver input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3/1-1.3:1.0/0003:046B:FF10.0001/input/input0 hid-generic 0003:046B:FF10.0001: input,hidraw0: USB HID v1.10 Keyboard [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:1a.0-1.3/input0 input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3/1-1.3:1.1/0003:046B:FF10.0002/input/input1 hid-generic 0003:046B:FF10.0002: input,hidraw1: USB HID v1.10 Mouse [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:1a.0-1.3/input1 ixgbe 0000:05:00.0: Multiqueue Enabled: Rx Queue count = 24, Tx Queue count = 24 XDP Queue count = 0 ixgbe 0000:05:00.0: 32.000 Gb/s available PCIe bandwidth (5 GT/s x8 link) ixgbe 0000:05:00.0: MAC: 2, PHY: 1, PBA No: 0210FF-0FF ixgbe 0000:05:00.0: ac:1f:6b:8d:67:a0 ixgbe 0000:05:00.0: Intel(R) 10 Gigabit Network Connection ixgbe 0000:05:00.1: Multiqueue Enabled: Rx Queue count = 24, Tx Queue count = 24 XDP Queue count = 0 ixgbe 0000:05:00.1: 32.000 Gb/s available PCIe bandwidth (5 GT/s x8 link) ixgbe 0000:05:00.1: MAC: 2, PHY: 14, SFP+: 4, PBA No: 0210FF-0FF ixgbe 0000:05:00.1: ac:1f:6b:8d:67:a1 ixgbe 0000:05:00.1: Intel(R) 10 Gigabit Network Connection ixgbe 0000:05:00.1 enp5s0f1: renamed from eth1 ixgbe 0000:05:00.0 enp5s0f0: renamed from eth0 device-mapper: uevent: version 1.0.3 device-mapper: ioctl: 4.39.0-ioctl (2018-04-03) initialised: dm-devel at redhat.com EXT4-fs (dm-0): mounted filesystem with ordered data mode. Opts: (null) systemd[1]: Inserted module 'autofs4' systemd[1]: systemd 241 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=hybrid) systemd[1]: Detected architecture x86-64. systemd[1]: Set hostname to <ganggang>. lvm2-activation-generator: lvmconfig failed lvm2-activation-generator: Activation generator failed. systemd[879]: /lib/systemd/system-generators/lvm2-activation-generator failed with exit status 1. systemd[1]: /lib/systemd/system/fail2ban.service:12: PIDFile= references path below legacy directory /var/run/, updating /var/run/fail2ban/fail2ban.pid → /run/fail2ban/fail2ban.pid; please update the unit file accordingly. systemd[1]: Reached target ceph target allowing to start/stop all ceph-radosgw at .service instances at once. systemd[1]: Listening on Device-mapper event daemon FIFOs. systemd[1]: Listening on Journal Socket. systemd[1]: Mounting Huge Pages File System... systemd[1]: Listening on LVM2 poll daemon socket. EXT4-fs (dm-0): re-mounted. Opts: errors=remount-ro version 39.2 ipmi device interface IPMI System Interface driver. ipmi_si dmi-ipmi-si.0: ipmi_platform: probing via SMBIOS ipmi_si: SMBIOS: io 0xca2 regsize 1 spacing 1 irq 0 ipmi_si: Adding SMBIOS-specified kcs state machine ipmi_si IPI0001:00: ipmi_platform: probing via ACPI ipmi_si IPI0001:00: [io 0x0ca2] regsize 1 spacing 1 irq 0 ipmi_si dmi-ipmi-si.0: Removing SMBIOS-specified kcs state machine in favor of ACPI ipmi_si: Adding ACPI-specified kcs state machine ipmi_si: Trying ACPI-specified kcs state machine at i/o address 0xca2, slave address 0x0, irq 0 audit: type=1400 audit(1593084514.488:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=941 comm="apparmor_parser" audit: type=1400 audit(1593084514.488:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=941 comm="apparmor_parser" audit: type=1400 audit(1593084514.488:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=940 comm="apparmor_parser" audit: type=1400 audit(1593084514.488:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=940 comm="apparmor_parser" audit: type=1400 audit(1593084514.488:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=940 comm="apparmor_parser" audit: type=1400 audit(1593084514.488:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/ntpd" pid=942 comm="apparmor_parser" input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2 ACPI: Power Button [PWRB] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3 ACPI: Power Button [PWRF] iTCO_vendor_support: vendor-support=0 input: PC Speaker as /devices/platform/pcspkr/input/input4 ioatdma: Intel(R) QuickData Technology Driver 4.00 sd 0:0:1:0: Attached scsi generic sg0 type 0 iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11 sd 0:0:1:1: Attached scsi generic sg1 type 0 iTCO_wdt: unable to reset NO_REBOOT flag, device disabled by hardware/BIOS sd 0:0:1:2: Attached scsi generic sg2 type 0 sd 0:0:1:3: Attached scsi generic sg3 type 0 sd 0:0:1:4: Attached scsi generic sg4 type 0 sd 0:0:1:5: Attached scsi generic sg5 type 0 sd 0:0:1:6: Attached scsi generic sg6 type 0 sd 0:0:1:7: Attached scsi generic sg7 type 0 sd 0:0:2:0: Attached scsi generic sg8 type 0 sd 0:0:2:1: Attached scsi generic sg9 type 0 sd 0:0:2:2: Attached scsi generic sg10 type 0 sd 0:0:2:3: Attached scsi generic sg11 type 0 sd 0:0:2:4: Attached scsi generic sg12 type 0 scsi 0:0:16:0: Attached scsi generic sg13 type 3 RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 163840 ms ovfl timer RAPL PMU: hw unit of domain pp0-core 2^-16 Joules RAPL PMU: hw unit of domain package 2^-16 Joules RAPL PMU: hw unit of domain dram 2^-16 Joules igb 0000:02:00.0: DCA enabled igb 0000:02:00.1: DCA enabled mei_me 0000:00:16.0: Device doesn't have valid ME Interface ipmi_si IPI0001:00: Found new BMC (man_id: 0x002a7c, prod_id: 0xaabb, dev_id: 0x20) [TTM] Zone kernel: Available graphics memory: 65997210 kiB [TTM] Zone dma32: Available graphics memory: 2097152 kiB [TTM] Initializing pool allocator [TTM] Initializing DMA pool allocator fbcon: mgadrmfb (fb0) is primary device Console: switching to colour frame buffer device 128x48 mgag200 0000:0e:00.0: fb0: mgadrmfb frame buffer device EDAC sbridge: Seeking for: PCI ID 8086:0ea0 EDAC sbridge: Seeking for: PCI ID 8086:0ea0 EDAC sbridge: Seeking for: PCI ID 8086:0ea0 EDAC sbridge: Seeking for: PCI ID 8086:0e60 EDAC sbridge: Seeking for: PCI ID 8086:0ea8 EDAC sbridge: Seeking for: PCI ID 8086:0ea8 EDAC sbridge: Seeking for: PCI ID 8086:0ea8 EDAC sbridge: Seeking for: PCI ID 8086:0e71 EDAC sbridge: Seeking for: PCI ID 8086:0e71 EDAC sbridge: Seeking for: PCI ID 8086:0e71 EDAC sbridge: Seeking for: PCI ID 8086:0eaa EDAC sbridge: Seeking for: PCI ID 8086:0eaa EDAC sbridge: Seeking for: PCI ID 8086:0eaa EDAC sbridge: Seeking for: PCI ID 8086:0eab EDAC sbridge: Seeking for: PCI ID 8086:0eab EDAC sbridge: Seeking for: PCI ID 8086:0eab EDAC sbridge: Seeking for: PCI ID 8086:0eac EDAC sbridge: Seeking for: PCI ID 8086:0eac EDAC sbridge: Seeking for: PCI ID 8086:0eac EDAC sbridge: Seeking for: PCI ID 8086:0ead EDAC sbridge: Seeking for: PCI ID 8086:0ead EDAC sbridge: Seeking for: PCI ID 8086:0ead EDAC sbridge: Seeking for: PCI ID 8086:0e68 EDAC sbridge: Seeking for: PCI ID 8086:0e79 EDAC sbridge: Seeking for: PCI ID 8086:0e6a EDAC sbridge: Seeking for: PCI ID 8086:0e6b EDAC sbridge: Seeking for: PCI ID 8086:0e6c EDAC sbridge: Seeking for: PCI ID 8086:0e6d EDAC sbridge: Seeking for: PCI ID 8086:0eb8 EDAC sbridge: Seeking for: PCI ID 8086:0ebc EDAC sbridge: Seeking for: PCI ID 8086:0ec8 EDAC sbridge: Seeking for: PCI ID 8086:0ec8 EDAC sbridge: Seeking for: PCI ID 8086:0ec8 EDAC sbridge: Seeking for: PCI ID 8086:0ec9 EDAC sbridge: Seeking for: PCI ID 8086:0ec9 EDAC sbridge: Seeking for: PCI ID 8086:0ec9 EDAC sbridge: Seeking for: PCI ID 8086:0eca EDAC sbridge: Seeking for: PCI ID 8086:0eca EDAC sbridge: Seeking for: PCI ID 8086:0eca EDAC MC0: Giving out device to module sb_edac controller Ivy Bridge SrcID#0_Ha#0: DEV 0000:7f:0e.0 (INTERRUPT) EDAC MC1: Giving out device to module sb_edac controller Ivy Bridge SrcID#1_Ha#0: DEV 0000:ff:0e.0 (INTERRUPT) EDAC sbridge: Ver: 1.1.2 [drm] Initialized mgag200 1.0.0 20110418 for 0000:0e:00.0 on minor 0 intel_rapl: Found RAPL domain package intel_rapl: Found RAPL domain core intel_rapl: Found RAPL domain dram intel_rapl: Found RAPL domain package intel_rapl: Found RAPL domain core intel_rapl: Found RAPL domain dram systemd-journald[897]: Received request to flush runtime journal from PID 1 device-mapper: thin: Data device (dm-2) discard unsupported: Disabling discard passdown. device-mapper: thin: Data device (dm-5) discard unsupported: Disabling discard passdown. Adding 4194300k swap on /dev/mapper/system--ganggang-swap_1. Priority:-2 extents:1 across:4194300k FS ipmi_si IPI0001:00: IPMI kcs interface initialized IPMI SSIF Interface driver bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this. xenbr0: port 1(eno1) entered blocking state xenbr0: port 1(eno1) entered disabled state device eno1 entered promiscuous mode IPv6: ADDRCONF(NETDEV_UP): xenbr0: link is not ready xenbr1: port 1(enp5s0f1) entered blocking state xenbr1: port 1(enp5s0f1) entered disabled state device enp5s0f1 entered promiscuous mode ixgbe 0000:05:00.1: registered PHC device on enp5s0f1 IPv6: ADDRCONF(NETDEV_UP): xenbr1: link is not ready ixgbe 0000:05:00.1 enp5s0f1: detected SFP+: 4 8021q: 802.1Q VLAN Support v1.8 8021q: adding VLAN 0 to HW filter on device eno1 8021q: adding VLAN 0 to HW filter on device enp5s0f1 IPv6: ADDRCONF(NETDEV_UP): vlan605: link is not ready ceph1access: port 1(vlan605) entered blocking state ceph1access: port 1(vlan605) entered disabled state device vlan605 entered promiscuous mode IPv6: ADDRCONF(NETDEV_UP): ceph1access: link is not ready IPv6: ADDRCONF(NETDEV_UP): vlan601: link is not ready newmanity: port 1(vlan601) entered blocking state newmanity: port 1(vlan601) entered disabled state device vlan601 entered promiscuous mode IPv6: ADDRCONF(NETDEV_UP): newmanity: link is not ready IPv6: ADDRCONF(NETDEV_UP): vlan608: link is not ready newmanityvrrp: port 1(vlan608) entered blocking state newmanityvrrp: port 1(vlan608) entered disabled state device vlan608 entered promiscuous mode IPv6: ADDRCONF(NETDEV_UP): newmanityvrrp: link is not ready IPv6: ADDRCONF(NETDEV_UP): vlan603: link is not ready hypervisors: port 1(vlan603) entered blocking state hypervisors: port 1(vlan603) entered disabled state device vlan603 entered promiscuous mode IPv6: ADDRCONF(NETDEV_UP): hypervisors: link is not ready IPv6: ADDRCONF(NETDEV_UP): vlan606: link is not ready ozon: port 1(vlan606) entered blocking state ozon: port 1(vlan606) entered disabled state device vlan606 entered promiscuous mode IPv6: ADDRCONF(NETDEV_UP): ozon: link is not ready IPv6: ADDRCONF(NETDEV_UP): vlan609: link is not ready gslizardfs1: port 1(vlan609) entered blocking state gslizardfs1: port 1(vlan609) entered disabled state device vlan609 entered promiscuous mode IPv6: ADDRCONF(NETDEV_UP): gslizardfs1: link is not ready IPv6: ADDRCONF(NETDEV_UP): vlan610: link is not ready etermail: port 1(vlan610) entered blocking state etermail: port 1(vlan610) entered disabled state device vlan610 entered promiscuous mode IPv6: ADDRCONF(NETDEV_UP): etermail: link is not ready ixgbe 0000:05:00.1 enp5s0f1: NIC Link is Up 10 Gbps, Flow Control: RX/TX xenbr1: port 1(enp5s0f1) entered blocking state xenbr1: port 1(enp5s0f1) entered forwarding state IPv6: ADDRCONF(NETDEV_CHANGE): xenbr1: link becomes ready newmanity: port 1(vlan601) entered blocking state newmanity: port 1(vlan601) entered forwarding state hypervisors: port 1(vlan603) entered blocking state hypervisors: port 1(vlan603) entered forwarding state ceph1access: port 1(vlan605) entered blocking state ceph1access: port 1(vlan605) entered forwarding state ozon: port 1(vlan606) entered blocking state ozon: port 1(vlan606) entered forwarding state newmanityvrrp: port 1(vlan608) entered blocking state newmanityvrrp: port 1(vlan608) entered forwarding state gslizardfs1: port 1(vlan609) entered blocking state gslizardfs1: port 1(vlan609) entered forwarding state etermail: port 1(vlan610) entered blocking state etermail: port 1(vlan610) entered forwarding state IPv6: ADDRCONF(NETDEV_CHANGE): newmanity: link becomes ready IPv6: ADDRCONF(NETDEV_CHANGE): hypervisors: link becomes ready IPv6: ADDRCONF(NETDEV_CHANGE): ceph1access: link becomes ready IPv6: ADDRCONF(NETDEV_CHANGE): ozon: link becomes ready IPv6: ADDRCONF(NETDEV_CHANGE): newmanityvrrp: link becomes ready IPv6: ADDRCONF(NETDEV_CHANGE): gslizardfs1: link becomes ready IPv6: ADDRCONF(NETDEV_CHANGE): etermail: link becomes ready datafarm: port 1(vlan611) entered blocking state datafarm: port 1(vlan611) entered disabled state device vlan611 entered promiscuous mode datafarm: port 1(vlan611) entered blocking state datafarm: port 1(vlan611) entered forwarding state routing: port 1(vlan612) entered blocking state routing: port 1(vlan612) entered disabled state device vlan612 entered promiscuous mode routing: port 1(vlan612) entered blocking state routing: port 1(vlan612) entered forwarding state igb 0000:02:00.0 eno1: igb: eno1 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX/TX xenbr0: port 1(eno1) entered blocking state xenbr0: port 1(eno1) entered forwarding state IPv6: ADDRCONF(NETDEV_CHANGE): xenbr0: link becomes ready -------------- next part -------------- (XEN) Xen version 4.11.4-pre (Debian 4.11.3+24-g14b62ab3e5-1~deb10u1) (pkg-xen-devel at lists.alioth.debian.org) (gcc (Debian 8.3.0-6) 8.3.0) debug=n Wed Jan 8 20:16:51 UTC 2020 (XEN) Bootloader: GRUB 2.02+dfsg1-20 (XEN) Command line: placeholder loglvl=all console=com2,vga com2=115200,8n1,0x2f8,3 (XEN) Xen image load base address: 0x2c800000 (XEN) Video information: (XEN) VGA is text mode 80x25, font 8x16 (XEN) VBE/DDC methods: none; EDID transfer time: 0 seconds (XEN) EDID info not retrieved because no DDC retrieval method detected (XEN) Disc information: (XEN) Found 13 MBR signatures (XEN) Found 6 EDD information structures (XEN) Xen-e820 RAM map: (XEN) 0000000000000000 - 000000000009c000 (usable) (XEN) 000000000009c000 - 00000000000a0000 (reserved) (XEN) 00000000000e0000 - 0000000000100000 (reserved) (XEN) 0000000000100000 - 000000002dd1b000 (usable) (XEN) 000000002dd1b000 - 000000002decd000 (reserved) (XEN) 000000002decd000 - 000000002e0c3000 (ACPI NVS) (XEN) 000000002e0c3000 - 000000002f35a000 (reserved) (XEN) 000000002f35a000 - 000000002f800000 (ACPI NVS) (XEN) 0000000030000000 - 0000000040000000 (reserved) (XEN) 00000000fed1c000 - 00000000fed40000 (reserved) (XEN) 00000000ff000000 - 0000000100000000 (reserved) (XEN) 0000000100000000 - 00000020d0000000 (usable) (XEN) ACPI: RSDP 000F0490, 0024 (r2 SUPERM) (XEN) ACPI: XSDT 2DFE6090, 009C (r1 SUPERM SMCI--MB 1 AMI 10013) (XEN) ACPI: FACP 2DFF0FC8, 00F4 (r4 SUPERM SMCI--MB 1 AMI 10013) (XEN) ACPI: DSDT 2DFE61C0, AE06 (r2 SUPERM SMCI--MB 0 INTL 20091112) (XEN) ACPI: FACS 2E0BA080, 0040 (XEN) ACPI: APIC 2DFF10C0, 01B4 (r3 1 AMI 10013) (XEN) ACPI: FPDT 2DFF1278, 0044 (r1 1 AMI 10013) (XEN) ACPI: SRAT 2DFF12C0, 0430 (r1 A M I AMI SRAT 1 AMI. 0) (XEN) ACPI: SLIT 2DFF16F0, 0030 (r1 A M I AMI SLIT 0 AMI. 0) (XEN) ACPI: HPET 2DFF1720, 0038 (r1 SUPERM SMCI--MB 1 AMI. 5) (XEN) ACPI: PRAD 2DFF1758, 00CD (r2 PRADID PRADTID 1 MSFT 4000000) (XEN) ACPI: SPMI 2DFF1828, 0040 (r5 A M I OEMSPMI 0 AMI. 0) (XEN) ACPI: SSDT 2DFF1868, C7AE8 (r2 INTEL CpuPm 4000 INTL 20091112) (XEN) ACPI: EINJ 2E0B9350, 0130 (r1 AMI AMI EINJ 0 0) (XEN) ACPI: ERST 2E0B9480, 0230 (r1 AMIER AMI ERST 0 0) (XEN) ACPI: HEST 2E0B96B0, 027C (r1 AMI AMI HEST 0 0) (XEN) ACPI: BERT 2E0B9930, 0030 (r1 AMI AMI BERT 0 0) (XEN) ACPI: DMAR 2E0B9960, 0188 (r1 A M I OEMDMAR 1 INTL 1) (XEN) ACPI: MCFG 2E0B9AE8, 003C (r1 SUPERM SMCI--MB 1 MSFT 97) (XEN) System RAM: 131036MB (134181596kB) (XEN) SRAT: PXM 0 -> APIC 00 -> Node 0 (XEN) SRAT: PXM 0 -> APIC 01 -> Node 0 (XEN) SRAT: PXM 0 -> APIC 02 -> Node 0 (XEN) SRAT: PXM 0 -> APIC 03 -> Node 0 (XEN) SRAT: PXM 0 -> APIC 04 -> Node 0 (XEN) SRAT: PXM 0 -> APIC 05 -> Node 0 (XEN) SRAT: PXM 0 -> APIC 06 -> Node 0 (XEN) SRAT: PXM 0 -> APIC 07 -> Node 0 (XEN) SRAT: PXM 0 -> APIC 08 -> Node 0 (XEN) SRAT: PXM 0 -> APIC 09 -> Node 0 (XEN) SRAT: PXM 0 -> APIC 0a -> Node 0 (XEN) SRAT: PXM 0 -> APIC 0b -> Node 0 (XEN) SRAT: PXM 1 -> APIC 20 -> Node 1 (XEN) SRAT: PXM 1 -> APIC 21 -> Node 1 (XEN) SRAT: PXM 1 -> APIC 22 -> Node 1 (XEN) SRAT: PXM 1 -> APIC 23 -> Node 1 (XEN) SRAT: PXM 1 -> APIC 24 -> Node 1 (XEN) SRAT: PXM 1 -> APIC 25 -> Node 1 (XEN) SRAT: PXM 1 -> APIC 26 -> Node 1 (XEN) SRAT: PXM 1 -> APIC 27 -> Node 1 (XEN) SRAT: PXM 1 -> APIC 28 -> Node 1 (XEN) SRAT: PXM 1 -> APIC 29 -> Node 1 (XEN) SRAT: PXM 1 -> APIC 2a -> Node 1 (XEN) SRAT: PXM 1 -> APIC 2b -> Node 1 (XEN) SRAT: Node 0 PXM 0 0-30000000 (XEN) SRAT: Node 0 PXM 0 100000000-10d0000000 (XEN) SRAT: Node 1 PXM 1 10d0000000-20d0000000 (XEN) NUMA: Allocated memnodemap from 20cbba4000 - 20cbba5000 (XEN) NUMA: Using 16 for the hash shift. (XEN) Domain heap initialised DMA width 32 bits (XEN) CPU Vendor: Intel, Family 6 (0x6), Model 62 (0x3e), Stepping 4 (raw 000306e4) (XEN) found SMP MP-table at 000fdbb0 (XEN) DMI 2.7 present. (XEN) Using APIC driver default (XEN) ACPI: PM-Timer IO Port: 0x408 (32 bits) (XEN) ACPI: SLEEP INFO: pm1x_cnt[1:404,1:0], pm1x_evt[1:400,1:0] (XEN) ACPI: 32/64X FACS address mismatch in FADT - 2e0ba080/0000000000000000, using 32 (XEN) ACPI: wakeup_vec[2e0ba08c], vec_size[20] (XEN) ACPI: Local APIC address 0xfee00000 (XEN) ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled) (XEN) ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled) (XEN) ACPI: LAPIC (acpi_id[0x04] lapic_id[0x04] enabled) (XEN) ACPI: LAPIC (acpi_id[0x06] lapic_id[0x06] enabled) (XEN) ACPI: LAPIC (acpi_id[0x08] lapic_id[0x08] enabled) (XEN) ACPI: LAPIC (acpi_id[0x0a] lapic_id[0x0a] enabled) (XEN) ACPI: LAPIC (acpi_id[0x0c] lapic_id[0x20] enabled) (XEN) ACPI: LAPIC (acpi_id[0x0e] lapic_id[0x22] enabled) (XEN) ACPI: LAPIC (acpi_id[0x10] lapic_id[0x24] enabled) (XEN) ACPI: LAPIC (acpi_id[0x12] lapic_id[0x26] enabled) (XEN) ACPI: LAPIC (acpi_id[0x14] lapic_id[0x28] enabled) (XEN) ACPI: LAPIC (acpi_id[0x16] lapic_id[0x2a] enabled) (XEN) ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled) (XEN) ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] enabled) (XEN) ACPI: LAPIC (acpi_id[0x05] lapic_id[0x05] enabled) (XEN) ACPI: LAPIC (acpi_id[0x07] lapic_id[0x07] enabled) (XEN) ACPI: LAPIC (acpi_id[0x09] lapic_id[0x09] enabled) (XEN) ACPI: LAPIC (acpi_id[0x0b] lapic_id[0x0b] enabled) (XEN) ACPI: LAPIC (acpi_id[0x0d] lapic_id[0x21] enabled) (XEN) ACPI: LAPIC (acpi_id[0x0f] lapic_id[0x23] enabled) (XEN) ACPI: LAPIC (acpi_id[0x11] lapic_id[0x25] enabled) (XEN) ACPI: LAPIC (acpi_id[0x13] lapic_id[0x27] enabled) (XEN) ACPI: LAPIC (acpi_id[0x15] lapic_id[0x29] enabled) (XEN) ACPI: LAPIC (acpi_id[0x17] lapic_id[0x2b] enabled) (XEN) ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1]) (XEN) ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1]) (XEN) ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1]) (XEN) ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1]) (XEN) ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1]) (XEN) ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1]) (XEN) ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1]) (XEN) ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1]) (XEN) ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1]) (XEN) ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1]) (XEN) ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1]) (XEN) ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1]) (XEN) ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) (XEN) ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1]) (XEN) ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1]) (XEN) ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1]) (XEN) ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1]) (XEN) ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1]) (XEN) ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1]) (XEN) ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1]) (XEN) ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1]) (XEN) ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1]) (XEN) ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1]) (XEN) ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1]) (XEN) Overriding APIC driver with bigsmp (XEN) ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0]) (XEN) IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23 (XEN) ACPI: IOAPIC (id[0x02] address[0xfec01000] gsi_base[24]) (XEN) IOAPIC[1]: apic_id 2, version 32, address 0xfec01000, GSI 24-47 (XEN) ACPI: IOAPIC (id[0x03] address[0xfec40000] gsi_base[48]) (XEN) IOAPIC[2]: apic_id 3, version 32, address 0xfec40000, GSI 48-71 (XEN) ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) (XEN) ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) (XEN) ACPI: IRQ0 used by override. (XEN) ACPI: IRQ2 used by override. (XEN) ACPI: IRQ9 used by override. (XEN) Enabling APIC mode: Phys. Using 3 I/O APICs (XEN) ACPI: HPET id: 0x8086a701 base: 0xfed00000 (XEN) Xen ERST support is initialized. (XEN) HEST: Table parsing has been initialized (XEN) Using ACPI (MADT) for SMP configuration information (XEN) SMP: Allowing 24 CPUs (0 hotplug CPUs) (XEN) IRQ limits: 72 GSI, 4552 MSI/MSI-X (XEN) Switched to APIC driver x2apic_cluster (XEN) xstate: size: 0x340 and states: 0x7 (XEN) CPU0: Intel machine check reporting enabled (XEN) Speculative mitigation facilities: (XEN) Hardware features: IBRS/IBPB STIBP L1D_FLUSH SSBD (XEN) Compiled-in support: INDIRECT_THUNK SHADOW_PAGING (XEN) Xen settings: BTI-Thunk RETPOLINE, SPEC_CTRL: IBRS- SSBD-, Other: IBPB L1D_FLUSH (XEN) L1TF: believed vulnerable, maxphysaddr L1D 46, CPUID 46, Safe address 300000000000 (XEN) Support for VMs: PV: MSR_SPEC_CTRL RSB EAGER_FPU, HVM: MSR_SPEC_CTRL RSB EAGER_FPU (XEN) XPTI (64-bit PV only): Dom0 enabled, DomU enabled (XEN) PV L1TF shadowing: Dom0 disabled, DomU enabled (XEN) Using scheduler: SMP Credit Scheduler (credit) (XEN) Platform timer is 14.318MHz HPET (XEN) Detected 2400.013 MHz processor. (XEN) Initing memory sharing. (XEN) alt table ffff82d08042e840 -> ffff82d08043067e (XEN) PCI: MCFG configuration 0: base 30000000 segment 0000 buses 00 - ff (XEN) PCI: MCFG area at 30000000 reserved in E820 (XEN) PCI: Using MCFG for segment 0000 bus 00-ff (XEN) Intel VT-d iommu 0 supported page sizes: 4kB, 2MB, 1GB. (XEN) Intel VT-d iommu 1 supported page sizes: 4kB, 2MB, 1GB. (XEN) Intel VT-d Snoop Control enabled. (XEN) Intel VT-d Dom0 DMA Passthrough not enabled. (XEN) Intel VT-d Queued Invalidation enabled. (XEN) Intel VT-d Interrupt Remapping enabled. (XEN) Intel VT-d Posted Interrupt not enabled. (XEN) Intel VT-d Shared EPT tables enabled. (XEN) I/O virtualisation enabled (XEN) - Dom0 mode: Relaxed (XEN) Interrupt remapping enabled (XEN) nr_sockets: 2 (XEN) Enabled directed EOI with ioapic_ack_old on! (XEN) ENABLING IO-APIC IRQs (XEN) -> Using old ACK method (XEN) ..TIMER: vector=0xF0 apic1=0 pin1=2 apic2=-1 pin2=-1 (XEN) TSC deadline timer enabled (XEN) Defaulting to alternative key handling; send 'A' to switch to normal mode. (XEN) Allocated console ring of 256 KiB. (XEN) mwait-idle: MWAIT substates: 0x1120 (XEN) mwait-idle: v0.4.1 model 0x3e (XEN) mwait-idle: lapic_timer_reliable_states 0xffffffff (XEN) VMX: Supported advanced features: (XEN) - APIC MMIO access virtualisation (XEN) - APIC TPR shadow (XEN) - Extended Page Tables (EPT) (XEN) - Virtual-Processor Identifiers (VPID) (XEN) - Virtual NMI (XEN) - MSR direct-access bitmap (XEN) - Unrestricted Guest (XEN) - APIC Register Virtualization (XEN) - Virtual Interrupt Delivery (XEN) - Posted Interrupt Processing (XEN) HVM: ASIDs enabled. (XEN) VMX: Disabling executable EPT superpages due to CVE-2018-12207 (XEN) HVM: VMX enabled (XEN) HVM: Hardware Assisted Paging (HAP) detected (XEN) HVM: HAP page sizes: 4kB, 2MB, 1GB (XEN) Brought up 24 CPUs (XEN) build-id: b6822aa1d8f867753b92985e5cb0e806e520a08c (XEN) ACPI sleep modes: S3 (XEN) VPMU: disabled (XEN) mcheck_poll: Machine check polling timer started. (XEN) Dom0 has maximum 1032 PIRQs (XEN) NX (Execute Disable) protection active (XEN) *** Building a PV Dom0 *** (XEN) Xen kernel: 64-bit, lsb, compat32 (XEN) Dom0 kernel: 64-bit, PAE, lsb, paddr 0x1000000 -> 0x282c000 (XEN) PHYSICAL MEMORY ARRANGEMENT: (XEN) Dom0 alloc.: 0000002078000000->000000207c000000 (33056565 pages to be allocated) (XEN) Init. ramdisk: 00000020cdff8000->00000020cffff261 (XEN) VIRTUAL MEMORY ARRANGEMENT: (XEN) Loaded kernel: ffffffff81000000->ffffffff8282c000 (XEN) Init. ramdisk: 0000000000000000->0000000000000000 (XEN) Phys-Mach map: 0000008000000000->000000800fc639e8 (XEN) Start info: ffffffff8282c000->ffffffff8282c4b8 (XEN) Xenstore ring: 0000000000000000->0000000000000000 (XEN) Console ring: 0000000000000000->0000000000000000 (XEN) Page tables: ffffffff8282d000->ffffffff82846000 (XEN) Boot stack: ffffffff82846000->ffffffff82847000 (XEN) TOTAL: ffffffff80000000->ffffffff82c00000 (XEN) ENTRY ADDRESS: ffffffff82457180 (XEN) Dom0 has maximum 24 VCPUs (XEN) Initial low memory virq threshold set at 0x4000 pages. (XEN) Scrubbing Free RAM on 2 nodes using 12 CPUs (XEN) ..........................................................................................done. (XEN) Std. Loglevel: All (XEN) Guest Loglevel: Nothing (Rate-limited: Errors and warnings) (XEN) *************************************************** (XEN) Booted on L1TF-vulnerable hardware with SMT/Hyperthreading (XEN) enabled. Please assess your configuration and choose an (XEN) explicit 'smt=<bool>' setting. See XSA-273. (XEN) *************************************************** (XEN) Booted on MLPDS/MFBDS-vulnerable hardware with SMT/Hyperthreading (XEN) enabled. Mitigations will not be fully effective. Please (XEN) choose an explicit smt=<bool> setting. See XSA-297. (XEN) *************************************************** (XEN) 3... 2... 1... (XEN) Xen is relinquishing VGA console. (XEN) *** Serial input -> DOM0 (type 'CTRL-a' three times to switch input to Xen) (XEN) Freed 476kB init memory mapping kernel into physical memory about to get started... (XEN) PCI add device 0000:00:00.0 (XEN) PCI add device 0000:00:01.0 (XEN) PCI add device 0000:00:01.1 (XEN) PCI add device 0000:00:02.0 (XEN) PCI add device 0000:00:02.2 (XEN) PCI add device 0000:00:03.0 (XEN) PCI add device 0000:00:03.2 (XEN) PCI add device 0000:00:04.0 (XEN) PCI add device 0000:00:04.1 (XEN) PCI add device 0000:00:04.2 (XEN) PCI add device 0000:00:04.3 (XEN) PCI add device 0000:00:04.4 (XEN) PCI add device 0000:00:04.5 (XEN) PCI add device 0000:00:04.6 (XEN) PCI add device 0000:00:04.7 (XEN) PCI add device 0000:00:05.0 (XEN) PCI add device 0000:00:05.2 (XEN) PCI add device 0000:00:05.4 (XEN) PCI add device 0000:00:11.0 (XEN) PCI add device 0000:00:16.0 (XEN) PCI add device 0000:00:16.1 (XEN) PCI add device 0000:00:1a.0 (XEN) PCI add device 0000:00:1c.0 (XEN) PCI add device 0000:00:1c.7 (XEN) PCI add device 0000:00:1d.0 (XEN) PCI add device 0000:00:1e.0 (XEN) PCI add device 0000:00:1f.0 (XEN) PCI add device 0000:00:1f.2 (XEN) PCI add device 0000:00:1f.3 (XEN) PCI add device 0000:00:1f.6 (XEN) PCI add device 0000:02:00.0 (XEN) PCI add device 0000:02:00.1 (XEN) PCI add device 0000:05:00.0 (XEN) PCI add device 0000:05:00.1 (XEN) PCI add device 0000:07:00.0 (XEN) PCI add device 0000:09:00.0 (XEN) PCI add device 0000:0b:00.0 (XEN) PCI add device 0000:0c:00.0 (XEN) PCI add device 0000:0c:01.0 (XEN) PCI add device 0000:0d:00.0 (XEN) PCI add device 0000:0e:00.0 (XEN) PCI add device 0000:7f:08.0 (XEN) PCI add device 0000:7f:09.0 (XEN) PCI add device 0000:7f:0a.0 (XEN) PCI add device 0000:7f:0a.1 (XEN) PCI add device 0000:7f:0a.2 (XEN) PCI add device 0000:7f:0a.3 (XEN) PCI add device 0000:7f:0b.0 (XEN) PCI add device 0000:7f:0b.3 (XEN) PCI add device 0000:7f:0c.0 (XEN) PCI add device 0000:7f:0c.1 (XEN) PCI add device 0000:7f:0c.2 (XEN) PCI add device 0000:7f:0d.0 (XEN) PCI add device 0000:7f:0d.1 (XEN) PCI add device 0000:7f:0d.2 (XEN) PCI add device 0000:7f:0e.0 (XEN) PCI add device 0000:7f:0e.1 (XEN) PCI add device 0000:7f:0f.0 (XEN) PCI add device 0000:7f:0f.1 (XEN) PCI add device 0000:7f:0f.2 (XEN) PCI add device 0000:7f:0f.3 (XEN) PCI add device 0000:7f:0f.4 (XEN) PCI add device 0000:7f:0f.5 (XEN) PCI add device 0000:7f:10.0 (XEN) PCI add device 0000:7f:10.1 (XEN) PCI add device 0000:7f:10.2 (XEN) PCI add device 0000:7f:10.3 (XEN) PCI add device 0000:7f:10.4 (XEN) PCI add device 0000:7f:10.5 (XEN) PCI add device 0000:7f:10.6 (XEN) PCI add device 0000:7f:10.7 (XEN) PCI add device 0000:7f:13.0 (XEN) PCI add device 0000:7f:13.1 (XEN) PCI add device 0000:7f:13.4 (XEN) PCI add device 0000:7f:13.5 (XEN) PCI add device 0000:7f:16.0 (XEN) PCI add device 0000:7f:16.1 (XEN) PCI add device 0000:7f:16.2 (XEN) PCI add device 0000:80:00.0 (XEN) PCI add device 0000:80:01.0 (XEN) PCI add device 0000:80:02.0 (XEN) PCI add device 0000:80:03.0 (XEN) PCI add device 0000:80:03.2 (XEN) PCI add device 0000:80:04.0 (XEN) PCI add device 0000:80:04.1 (XEN) PCI add device 0000:80:04.2 (XEN) PCI add device 0000:80:04.3 (XEN) PCI add device 0000:80:04.4 (XEN) PCI add device 0000:80:04.5 (XEN) PCI add device 0000:80:04.6 (XEN) PCI add device 0000:80:04.7 (XEN) PCI add device 0000:80:05.0 (XEN) PCI add device 0000:80:05.2 (XEN) PCI add device 0000:80:05.4 (XEN) PCI add device 0000:ff:08.0 (XEN) PCI add device 0000:ff:09.0 (XEN) PCI add device 0000:ff:0a.0 (XEN) PCI add device 0000:ff:0a.1 (XEN) PCI add device 0000:ff:0a.2 (XEN) PCI add device 0000:ff:0a.3 (XEN) PCI add device 0000:ff:0b.0 (XEN) PCI add device 0000:ff:0b.3 (XEN) PCI add device 0000:ff:0c.0 (XEN) PCI add device 0000:ff:0c.1 (XEN) PCI add device 0000:ff:0c.2 (XEN) PCI add device 0000:ff:0d.0 (XEN) PCI add device 0000:ff:0d.1 (XEN) PCI add device 0000:ff:0d.2 (XEN) PCI add device 0000:ff:0e.0 (XEN) PCI add device 0000:ff:0e.1 (XEN) PCI add device 0000:ff:0f.0 (XEN) PCI add device 0000:ff:0f.1 (XEN) PCI add device 0000:ff:0f.2 (XEN) PCI add device 0000:ff:0f.3 (XEN) PCI add device 0000:ff:0f.4 (XEN) PCI add device 0000:ff:0f.5 (XEN) PCI add device 0000:ff:10.0 (XEN) PCI add device 0000:ff:10.1 (XEN) PCI add device 0000:ff:10.2 (XEN) PCI add device 0000:ff:10.3 (XEN) PCI add device 0000:ff:10.4 (XEN) PCI add device 0000:ff:10.5 (XEN) PCI add device 0000:ff:10.6 (XEN) PCI add device 0000:ff:10.7 (XEN) PCI add device 0000:ff:13.0 (XEN) PCI add device 0000:ff:13.1 (XEN) PCI add device 0000:ff:13.4 (XEN) PCI add device 0000:ff:13.5 (XEN) PCI add device 0000:ff:16.0 (XEN) PCI add device 0000:ff:16.1 (XEN) PCI add device 0000:ff:16.2 -------------- next part -------------- [ 0.000000] Linux version 4.19.0-9-amd64 (debian-kernel at lists.debian.org) (gcc version 8.3.0 (Debian 8.3.0-6)) #1 SMP Debian 4.19.118-2+deb10u1 (2020-06-07) [ 0.000000] Command line: placeholder root=/dev/mapper/system--ganggang-root ro quiet [ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers' [ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers' [ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers' [ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256 [ 0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format. [ 0.000000] Released 0 page(s) [ 0.000000] BIOS-provided physical RAM map: [ 0.000000] Xen: [mem 0x0000000000000000-0x000000000009bfff] usable [ 0.000000] Xen: [mem 0x000000000009c000-0x00000000000fffff] reserved [ 0.000000] Xen: [mem 0x0000000000100000-0x000000002de34fff] usable [ 0.000000] Xen: [mem 0x000000002de35000-0x000000002dfe6fff] reserved [ 0.000000] Xen: [mem 0x000000002dfe7000-0x000000002e1dcfff] ACPI NVS [ 0.000000] Xen: [mem 0x000000002e1dd000-0x000000002f359fff] reserved [ 0.000000] Xen: [mem 0x000000002f35a000-0x000000002f7fffff] ACPI NVS [ 0.000000] Xen: [mem 0x0000000030000000-0x000000003fffffff] reserved [ 0.000000] Xen: [mem 0x00000000cfffc000-0x00000000cfffcfff] reserved [ 0.000000] Xen: [mem 0x00000000fbffe000-0x00000000fbffefff] reserved [ 0.000000] Xen: [mem 0x00000000fec00000-0x00000000fec01fff] reserved [ 0.000000] Xen: [mem 0x00000000fec40000-0x00000000fec40fff] reserved [ 0.000000] Xen: [mem 0x00000000fed1c000-0x00000000fed3ffff] reserved [ 0.000000] Xen: [mem 0x00000000fee00000-0x00000000feefffff] reserved [ 0.000000] Xen: [mem 0x00000000ff000000-0x00000000ffffffff] reserved [ 0.000000] Xen: [mem 0x0000000100000000-0x000000107fffffff] usable [ 0.000000] NX (Execute Disable) protection: active [ 0.000000] SMBIOS 2.7 present. [ 0.000000] DMI: Supermicro X9DRW/X9DRW, BIOS 3.3 09/13/2018 [ 0.000000] Hypervisor detected: Xen PV [ 0.000464] tsc: Detected 2400.026 MHz processor [ 0.008657] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved [ 0.008659] e820: remove [mem 0x000a0000-0x000fffff] usable [ 0.008666] last_pfn = 0x1080000 max_arch_pfn = 0x400000000 [ 0.008668] Disabled [ 0.008669] x86/PAT: MTRRs disabled, skipping PAT initialization too. [ 0.008676] x86/PAT: Configuration [0-7]: WB WT UC- UC WC WP UC UC [ 0.008678] last_pfn = 0x2de35 max_arch_pfn = 0x400000000 [ 0.024138] Kernel/User page tables isolation: disabled on XEN PV. [ 0.025185] BRK [0x02801000, 0x02801fff] PGTABLE [ 0.025186] BRK [0x02802000, 0x02802fff] PGTABLE [ 0.026743] BRK [0x02803000, 0x02803fff] PGTABLE [ 0.027510] BRK [0x02804000, 0x02804fff] PGTABLE [ 0.028277] BRK [0x02805000, 0x02805fff] PGTABLE [ 0.029044] BRK [0x02806000, 0x02806fff] PGTABLE [ 0.029811] BRK [0x02807000, 0x02807fff] PGTABLE [ 0.030578] BRK [0x02808000, 0x02808fff] PGTABLE [ 0.031342] BRK [0x02809000, 0x02809fff] PGTABLE [ 0.032123] BRK [0x0280a000, 0x0280afff] PGTABLE [ 0.032889] BRK [0x0280b000, 0x0280bfff] PGTABLE [ 0.033653] BRK [0x0280c000, 0x0280cfff] PGTABLE [ 24.100581] RAMDISK: [mem 0x04000000-0x06007fff] [ 24.100605] ACPI: Early table checksum verification disabled [ 24.106869] ACPI: RSDP 0x00000000000F0490 000024 (v02 SUPERM) [ 24.106882] ACPI: XSDT 0x000000002E100090 00009C (v01 SUPERM SMCI--MB 00000001 AMI 00010013) [ 24.106921] ACPI: FACP 0x000000002E10AFC8 0000F4 (v04 SUPERM SMCI--MB 00000001 AMI 00010013) [ 24.106999] ACPI: DSDT 0x000000002E1001C0 00AE06 (v02 SUPERM SMCI--MB 00000000 INTL 20091112) [ 24.107015] ACPI: FACS 0x000000002E1D4080 000040 [ 24.107032] ACPI: APIC 0x000000002E10B0C0 0001B4 (v03 00000001 AMI 00010013) [ 24.107049] ACPI: FPDT 0x000000002E10B278 000044 (v01 00000001 AMI 00010013) [ 24.107065] ACPI: SRAT 0x000000002E10B2C0 000430 (v01 A M I AMI SRAT 00000001 AMI. 00000000) [ 24.107083] ACPI: SLIT 0x000000002E10B6F0 000030 (v01 A M I AMI SLIT 00000000 AMI. 00000000) [ 24.107099] ACPI: HPET 0x000000002E10B720 000038 (v01 SUPERM SMCI--MB 00000001 AMI. 00000005) [ 24.107115] ACPI: PRAD 0x000000002E10B758 0000CD (v02 PRADID PRADTID 00000001 MSFT 04000000) [ 24.107130] ACPI: SPMI 0x000000002E10B828 000040 (v05 A M I OEMSPMI 00000000 AMI. 00000000) [ 24.107147] ACPI: SSDT 0x000000002E10B868 0C7AE8 (v02 INTEL CpuPm 00004000 INTL 20091112) [ 24.107164] ACPI: EINJ 0x000000002E1D3350 000130 (v01 AMI AMI EINJ 00000000 00000000) [ 24.107180] ACPI: ERST 0x000000002E1D3480 000230 (v01 AMIER AMI ERST 00000000 00000000) [ 24.107196] ACPI: HEST 0x000000002E1D36B0 00027C (v01 AMI AMI HEST 00000000 00000000) [ 24.107212] ACPI: BERT 0x000000002E1D3930 000030 (v01 AMI AMI BERT 00000000 00000000) [ 24.107228] ACPI: RMAD 0x000000002E1D3960 000188 (v01 A M I OEMDMAR 00000001 INTL 00000001) [ 24.107244] ACPI: MCFG 0x000000002E1D3AE8 00003C (v01 SUPERM SMCI--MB 00000001 MSFT 00000097) [ 24.107294] ACPI: Local APIC address 0xfee00000 [ 24.107296] Setting APIC routing to Xen PV. [ 24.107352] NUMA turned off [ 24.107353] Faking a node at [mem 0x0000000000000000-0x000000107fffffff] [ 24.107359] NODE_DATA(0) allocated [mem 0x17826f000-0x178273fff] [ 24.562261] Zone ranges: [ 24.562264] DMA [mem 0x0000000000001000-0x0000000000ffffff] [ 24.562266] DMA32 [mem 0x0000000001000000-0x00000000ffffffff] [ 24.562268] Normal [mem 0x0000000100000000-0x000000107fffffff] [ 24.562269] Device empty [ 24.562270] Movable zone start for each node [ 24.562271] Early memory node ranges [ 24.562272] node 0: [mem 0x0000000000001000-0x000000000009bfff] [ 24.562272] node 0: [mem 0x0000000000100000-0x000000002de34fff] [ 24.562273] node 0: [mem 0x0000000100000000-0x000000107fffffff] [ 24.562507] Zeroed struct page in unavailable ranges: 8752 pages [ 24.562509] Initmem setup node 0 [mem 0x0000000000001000-0x000000107fffffff] [ 24.562511] On node 0 totalpages: 16440784 [ 24.562513] DMA zone: 64 pages used for memmap [ 24.562513] DMA zone: 21 pages reserved [ 24.562515] DMA zone: 3995 pages, LIFO batch:0 [ 24.562651] DMA32 zone: 2873 pages used for memmap [ 24.562652] DMA32 zone: 183861 pages, LIFO batch:63 [ 24.571820] Normal zone: 253952 pages used for memmap [ 24.571822] Normal zone: 16252928 pages, LIFO batch:63 [ 25.023675] p2m virtual area at (____ptrval____), size is 40000000 [ 27.851667] Remapped 860719 page(s) [ 27.853190] ACPI: PM-Timer IO Port: 0x408 [ 27.853203] ACPI: Local APIC address 0xfee00000 [ 27.853297] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1]) [ 27.853299] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1]) [ 27.853300] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1]) [ 27.853302] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1]) [ 27.853304] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1]) [ 27.853305] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1]) [ 27.853306] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1]) [ 27.853308] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1]) [ 27.853310] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1]) [ 27.853311] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1]) [ 27.853312] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1]) [ 27.853314] ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1]) [ 27.853315] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) [ 27.853317] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1]) [ 27.853318] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1]) [ 27.853319] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1]) [ 27.853321] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1]) [ 27.853322] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1]) [ 27.853324] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1]) [ 27.853325] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1]) [ 27.853326] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1]) [ 27.853328] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1]) [ 27.853329] ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1]) [ 27.853330] ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1]) [ 27.853367] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23 [ 27.853381] IOAPIC[1]: apic_id 2, version 32, address 0xfec01000, GSI 24-47 [ 27.853397] IOAPIC[2]: apic_id 3, version 32, address 0xfec40000, GSI 48-71 [ 27.853421] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) [ 27.853424] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) [ 27.853434] ACPI: IRQ0 used by override. [ 27.853436] ACPI: IRQ9 used by override. [ 27.853455] Using ACPI (MADT) for SMP configuration information [ 27.853461] ACPI: HPET id: 0x8086a701 base: 0xfed00000 [ 27.853477] smpboot: Allowing 24 CPUs, 0 hotplug CPUs [ 27.853511] PM: Registered nosave memory: [mem 0x00000000-0x00000fff] [ 27.853512] PM: Registered nosave memory: [mem 0x0009c000-0x000fffff] [ 27.853514] PM: Registered nosave memory: [mem 0x2de35000-0x2dfe6fff] [ 27.853514] PM: Registered nosave memory: [mem 0x2dfe7000-0x2e1dcfff] [ 27.853515] PM: Registered nosave memory: [mem 0x2e1dd000-0x2f359fff] [ 27.853516] PM: Registered nosave memory: [mem 0x2f35a000-0x2f7fffff] [ 27.853517] PM: Registered nosave memory: [mem 0x2f800000-0x2fffffff] [ 27.853517] PM: Registered nosave memory: [mem 0x30000000-0x3fffffff] [ 27.853518] PM: Registered nosave memory: [mem 0x40000000-0xcfffbfff] [ 27.853519] PM: Registered nosave memory: [mem 0xcfffc000-0xcfffcfff] [ 27.853519] PM: Registered nosave memory: [mem 0xcfffd000-0xfbffdfff] [ 27.853520] PM: Registered nosave memory: [mem 0xfbffe000-0xfbffefff] [ 27.853521] PM: Registered nosave memory: [mem 0xfbfff000-0xfebfffff] [ 27.853521] PM: Registered nosave memory: [mem 0xfec00000-0xfec01fff] [ 27.853522] PM: Registered nosave memory: [mem 0xfec02000-0xfec3ffff] [ 27.853522] PM: Registered nosave memory: [mem 0xfec40000-0xfec40fff] [ 27.853523] PM: Registered nosave memory: [mem 0xfec41000-0xfed1bfff] [ 27.853523] PM: Registered nosave memory: [mem 0xfed1c000-0xfed3ffff] [ 27.853524] PM: Registered nosave memory: [mem 0xfed40000-0xfedfffff] [ 27.853524] PM: Registered nosave memory: [mem 0xfee00000-0xfeefffff] [ 27.853525] PM: Registered nosave memory: [mem 0xfef00000-0xfeffffff] [ 27.853526] PM: Registered nosave memory: [mem 0xff000000-0xffffffff] [ 27.853529] [mem 0x40000000-0xcfffbfff] available for PCI devices [ 27.853533] Booting paravirtualized kernel on Xen [ 27.853534] Xen version: 4.11.4-pre (preserve-AD) [ 27.853540] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns [ 27.966301] random: get_random_bytes called from start_kernel+0x93/0x52c with crng_init=0 [ 27.966310] setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:24 nr_node_ids:1 [ 27.968574] percpu: Embedded 45 pages/cpu s144408 r8192 d31720 u262144 [ 27.968582] pcpu-alloc: s144408 r8192 d31720 u262144 alloc=1*2097152 [ 27.968583] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 [ 27.968588] pcpu-alloc: [0] 16 17 18 19 20 21 22 23 [ 27.968713] xen: PV spinlocks enabled [ 27.968718] PV qspinlock hash table entries: 256 (order: 0, 4096 bytes) [ 27.968726] Built 1 zonelists, mobility grouping on. Total pages: 16183874 [ 27.968727] Policy zone: Normal [ 27.968730] Kernel command line: placeholder root=/dev/mapper/system--ganggang-root ro quiet [ 27.968790] log_buf_len individual max cpu contribution: 4096 bytes [ 27.968790] log_buf_len total cpu_extra contributions: 94208 bytes [ 27.968791] log_buf_len min size: 131072 bytes [ 27.968903] log_buf_len: 262144 bytes [ 27.968904] early log buf free: 118860(90%) [ 28.037706] software IO TLB: mapped [mem 0x24dbc0000-0x251bc0000] (64MB) [ 28.325287] Memory: 4875528K/65763136K available (10252K kernel code, 1241K rwdata, 3316K rodata, 1588K init, 2276K bss, 60887608K reserved, 0K cma-reserved) [ 28.325680] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=24, Nodes=1 [ 28.326605] ftrace: allocating 31883 entries in 125 pages [ 28.342184] rcu: Hierarchical RCU implementation. [ 28.342186] rcu: RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=24. [ 28.342188] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=24 [ 28.348457] Using NULL legacy PIC [ 28.348459] NR_IRQS: 33024, nr_irqs: 1432, preallocated irqs: 0 [ 28.348527] xen:events: Using FIFO-based ABI [ 28.348560] xen: --> pirq=1 -> irq=1 (gsi=1) [ 28.348573] xen: --> pirq=2 -> irq=2 (gsi=2) [ 28.348585] xen: --> pirq=3 -> irq=3 (gsi=3) [ 28.348597] xen: --> pirq=4 -> irq=4 (gsi=4) [ 28.348615] xen: --> pirq=5 -> irq=5 (gsi=5) [ 28.348627] xen: --> pirq=6 -> irq=6 (gsi=6) [ 28.348639] xen: --> pirq=7 -> irq=7 (gsi=7) [ 28.348651] xen: --> pirq=8 -> irq=8 (gsi=8) [ 28.348663] xen: --> pirq=9 -> irq=9 (gsi=9) [ 28.348676] xen: --> pirq=10 -> irq=10 (gsi=10) [ 28.348687] xen: --> pirq=11 -> irq=11 (gsi=11) [ 28.348699] xen: --> pirq=12 -> irq=12 (gsi=12) [ 28.348714] xen: --> pirq=13 -> irq=13 (gsi=13) [ 28.348726] xen: --> pirq=14 -> irq=14 (gsi=14) [ 28.348738] xen: --> pirq=15 -> irq=15 (gsi=15) [ 28.357615] Console: colour VGA+ 80x25 [ 28.357623] console [tty0] enabled [ 28.357626] console [hvc0] enabled [ 28.357671] ACPI: Core revision 20180810 [ 28.438554] clocksource: xen: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns [ 28.438566] Xen: using vcpuop timer interface [ 28.438572] installing Xen timer for CPU 0 [ 28.438715] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x229850030f8, max_idle_ns: 440795254466 ns [ 28.438806] Calibrating delay loop (skipped), value calculated using timer frequency.. 4800.05 BogoMIPS (lpj=9600104) [ 28.438809] pid_max: default: 32768 minimum: 301 [ 28.438937] Security Framework initialized [ 28.438941] Yama: disabled by default; enable with sysctl kernel.yama.* [ 28.439122] AppArmor: AppArmor initialized [ 28.479940] Dentry cache hash table entries: 8388608 (order: 14, 67108864 bytes) [ 28.500394] Inode-cache hash table entries: 4194304 (order: 13, 33554432 bytes) [ 28.501105] Mount-cache hash table entries: 131072 (order: 8, 1048576 bytes) [ 28.501741] Mountpoint-cache hash table entries: 131072 (order: 8, 1048576 bytes) [ 28.502596] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8 [ 28.502597] Last level dTLB entries: 4KB 512, 2MB 0, 4MB 0, 1GB 4 [ 28.502603] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization [ 28.502605] Spectre V2 : Mitigation: Full generic retpoline [ 28.502605] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch [ 28.502606] Spectre V2 : Enabling Restricted Speculation for firmware calls [ 28.502663] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier [ 28.502664] Spectre V2 : User space: Mitigation: STIBP via seccomp and prctl [ 28.502665] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp [ 28.502970] MDS: Vulnerable: Clear CPU buffers attempted, no microcode [ 28.503243] Freeing SMP alternatives memory: 24K [ 28.506930] cpu 0 spinlock event irq 73 [ 28.506962] VPMU disabled by hypervisor. [ 28.507355] Performance Events: unsupported p6 CPU model 62 no PMU driver, software events only. [ 28.507472] rcu: Hierarchical SRCU implementation. [ 28.508086] random: crng done (trusting CPU's manufacturer) [ 28.508147] NMI watchdog: Perf NMI watchdog permanently disabled [ 28.508933] smp: Bringing up secondary CPUs ... [ 28.509206] installing Xen timer for CPU 1 [ 28.509702] cpu 1 spinlock event irq 85 [ 28.510916] MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details. [ 28.511214] installing Xen timer for CPU 2 [ 28.511566] cpu 2 spinlock event irq 92 [ 28.511566] installing Xen timer for CPU 3 [ 28.511566] cpu 3 spinlock event irq 99 [ 28.511566] installing Xen timer for CPU 4 [ 28.511566] cpu 4 spinlock event irq 106 [ 28.511566] installing Xen timer for CPU 5 [ 28.511566] cpu 5 spinlock event irq 113 [ 28.511566] installing Xen timer for CPU 6 [ 28.511566] cpu 6 spinlock event irq 120 [ 28.514938] installing Xen timer for CPU 7 [ 28.515236] cpu 7 spinlock event irq 127 [ 28.515236] installing Xen timer for CPU 8 [ 28.515366] cpu 8 spinlock event irq 134 [ 28.515366] installing Xen timer for CPU 9 [ 28.515366] cpu 9 spinlock event irq 141 [ 28.515366] installing Xen timer for CPU 10 [ 28.515366] cpu 10 spinlock event irq 148 [ 28.515366] installing Xen timer for CPU 11 [ 28.515366] cpu 11 spinlock event irq 155 [ 28.515366] installing Xen timer for CPU 12 [ 28.519022] cpu 12 spinlock event irq 162 [ 28.519022] installing Xen timer for CPU 13 [ 28.519360] cpu 13 spinlock event irq 169 [ 28.519360] installing Xen timer for CPU 14 [ 28.519360] cpu 14 spinlock event irq 176 [ 28.519360] installing Xen timer for CPU 15 [ 28.519360] cpu 15 spinlock event irq 183 [ 28.519360] installing Xen timer for CPU 16 [ 28.519393] cpu 16 spinlock event irq 190 [ 28.519393] installing Xen timer for CPU 17 [ 28.522901] cpu 17 spinlock event irq 197 [ 28.523020] installing Xen timer for CPU 18 [ 28.523375] cpu 18 spinlock event irq 204 [ 28.523375] installing Xen timer for CPU 19 [ 28.523375] cpu 19 spinlock event irq 211 [ 28.523375] installing Xen timer for CPU 20 [ 28.523375] cpu 20 spinlock event irq 218 [ 28.523375] installing Xen timer for CPU 21 [ 28.523375] cpu 21 spinlock event irq 225 [ 28.523375] installing Xen timer for CPU 22 [ 28.526801] cpu 22 spinlock event irq 232 [ 28.527038] installing Xen timer for CPU 23 [ 28.527380] cpu 23 spinlock event irq 239 [ 28.527380] smp: Brought up 1 node, 24 CPUs [ 28.527380] smpboot: Max logical packages: 1 [ 28.531193] devtmpfs: initialized [ 28.531193] x86/mm: Memory block size: 2048MB [ 28.532053] PM: Registering ACPI NVS region [mem 0x2dfe7000-0x2e1dcfff] (2056192 bytes) [ 28.532053] PM: Registering ACPI NVS region [mem 0x2f35a000-0x2f7fffff] (4874240 bytes) [ 28.532053] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns [ 28.532053] futex hash table entries: 8192 (order: 7, 524288 bytes) [ 28.532053] pinctrl core: initialized pinctrl subsystem [ 28.532355] NET: Registered protocol family 16 [ 28.532384] xen:grant_table: Grant tables using version 1 layout [ 28.532408] Grant table initialized [ 28.535359] audit: initializing netlink subsys (disabled) [ 28.535380] audit: type=2000 audit(1593075356.270:1): state=initialized audit_enabled=0 res=1 [ 28.535380] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it [ 28.535380] ACPI: bus type PCI registered [ 28.535380] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 [ 28.535380] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0x30000000-0x3fffffff] (base 0x30000000) [ 28.535380] PCI: MMCONFIG at [mem 0x30000000-0x3fffffff] reserved in E820 [ 28.650663] PCI: Using configuration type 1 for base access [ 28.655261] ACPI: Added _OSI(Module Device) [ 28.655262] ACPI: Added _OSI(Processor Device) [ 28.655263] ACPI: Added _OSI(3.0 _SCP Extensions) [ 28.655264] ACPI: Added _OSI(Processor Aggregator Device) [ 28.655266] ACPI: Added _OSI(Linux-Dell-Video) [ 28.655266] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio) [ 28.844204] ACPI: 2 ACPI AML tables successfully acquired and loaded [ 28.856492] xen: registering gsi 9 triggering 0 polarity 0 [ 28.860849] ACPI: Dynamic OEM Table Load: [ 28.868444] ACPI: Interpreter enabled [ 28.868466] ACPI: (supports S0 S1 S4 S5) [ 28.868468] ACPI: Using IOAPIC for interrupt routing [ 28.868516] HEST: Enabling Firmware First mode for corrected errors. [ 28.868771] mce: [Firmware Bug]: Ignoring request to disable invalid MCA bank 2. [ 28.868772] mce: [Firmware Bug]: Ignoring request to disable invalid MCA bank 3. [ 28.868773] mce: [Firmware Bug]: Ignoring request to disable invalid MCA bank 4. [ 28.868774] mce: [Firmware Bug]: Ignoring request to disable invalid MCA bank 5. [ 28.868775] mce: [Firmware Bug]: Ignoring request to disable invalid MCA bank 6. [ 28.868776] mce: [Firmware Bug]: Ignoring request to disable invalid MCA bank 7. [ 28.868777] mce: [Firmware Bug]: Ignoring request to disable invalid MCA bank 8. [ 28.868778] mce: [Firmware Bug]: Ignoring request to disable invalid MCA bank 9. [ 28.868779] mce: [Firmware Bug]: Ignoring request to disable invalid MCA bank 10. [ 28.868779] mce: [Firmware Bug]: Ignoring request to disable invalid MCA bank 11. [ 28.868780] mce: [Firmware Bug]: Ignoring request to disable invalid MCA bank 12. [ 28.868781] mce: [Firmware Bug]: Ignoring request to disable invalid MCA bank 13. [ 28.868782] mce: [Firmware Bug]: Ignoring request to disable invalid MCA bank 14. [ 28.868836] HEST: Table parsing has been initialized. [ 28.868840] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug [ 28.869383] ACPI: Enabled 4 GPEs in block 00 to 3F [ 28.890088] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7e]) [ 28.890095] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI] [ 28.890327] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug PME AER LTR] [ 28.890537] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PCIeCapability] [ 28.890540] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration [ 28.891015] PCI host bridge to bus 0000:00 [ 28.891018] pci_bus 0000:00: root bus resource [io 0x0000-0x03af window] [ 28.891019] pci_bus 0000:00: root bus resource [io 0x03e0-0x0cf7 window] [ 28.891021] pci_bus 0000:00: root bus resource [io 0x03b0-0x03df window] [ 28.891022] pci_bus 0000:00: root bus resource [io 0x0d00-0x9fff window] [ 28.891024] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window] [ 28.891025] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window] [ 28.891026] pci_bus 0000:00: root bus resource [mem 0xfed08000-0xfed08fff window] [ 28.891027] pci_bus 0000:00: root bus resource [mem 0xfed0e000-0xfed0ffff window] [ 28.891028] pci_bus 0000:00: root bus resource [mem 0x30000000-0xcfffffff window] [ 28.891030] pci_bus 0000:00: root bus resource [bus 00-7e] [ 28.891080] pci 0000:00:00.0: [8086:0e00] type 00 class 0x060000 [ 28.891416] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold [ 28.891650] pci 0000:00:01.0: [8086:0e02] type 01 class 0x060400 [ 28.892023] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold [ 28.892281] pci 0000:00:01.1: [8086:0e03] type 01 class 0x060400 [ 28.892653] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold [ 28.892930] pci 0000:00:02.0: [8086:0e04] type 01 class 0x060400 [ 28.893301] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold [ 28.893568] pci 0000:00:02.2: [8086:0e06] type 01 class 0x060400 [ 28.893938] pci 0000:00:02.2: PME# supported from D0 D3hot D3cold [ 28.894220] pci 0000:00:03.0: [8086:0e08] type 01 class 0x060400 [ 28.894400] pci 0000:00:03.0: enabling Extended Tags [ 28.894618] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold [ 28.894889] pci 0000:00:03.2: [8086:0e0a] type 01 class 0x060400 [ 28.895260] pci 0000:00:03.2: PME# supported from D0 D3hot D3cold [ 28.895533] pci 0000:00:04.0: [8086:0e20] type 00 class 0x088000 [ 28.895623] pci 0000:00:04.0: reg 0x10: [mem 0xcfc1c000-0xcfc1ffff 64bit] [ 28.896131] pci 0000:00:04.1: [8086:0e21] type 00 class 0x088000 [ 28.896219] pci 0000:00:04.1: reg 0x10: [mem 0xcfc18000-0xcfc1bfff 64bit] [ 28.896731] pci 0000:00:04.2: [8086:0e22] type 00 class 0x088000 [ 28.896819] pci 0000:00:04.2: reg 0x10: [mem 0xcfc14000-0xcfc17fff 64bit] [ 28.897331] pci 0000:00:04.3: [8086:0e23] type 00 class 0x088000 [ 28.897418] pci 0000:00:04.3: reg 0x10: [mem 0xcfc10000-0xcfc13fff 64bit] [ 28.897924] pci 0000:00:04.4: [8086:0e24] type 00 class 0x088000 [ 28.898012] pci 0000:00:04.4: reg 0x10: [mem 0xcfc0c000-0xcfc0ffff 64bit] [ 28.898517] pci 0000:00:04.5: [8086:0e25] type 00 class 0x088000 [ 28.898604] pci 0000:00:04.5: reg 0x10: [mem 0xcfc08000-0xcfc0bfff 64bit] [ 28.899124] pci 0000:00:04.6: [8086:0e26] type 00 class 0x088000 [ 28.899211] pci 0000:00:04.6: reg 0x10: [mem 0xcfc04000-0xcfc07fff 64bit] [ 28.899723] pci 0000:00:04.7: [8086:0e27] type 00 class 0x088000 [ 28.899809] pci 0000:00:04.7: reg 0x10: [mem 0xcfc00000-0xcfc03fff 64bit] [ 28.900320] pci 0000:00:05.0: [8086:0e28] type 00 class 0x088000 [ 28.900781] pci 0000:00:05.2: [8086:0e2a] type 00 class 0x088000 [ 28.901236] pci 0000:00:05.4: [8086:0e2c] type 00 class 0x080020 [ 28.901300] pci 0000:00:05.4: reg 0x10: [mem 0xcfc25000-0xcfc25fff] [ 28.901853] pci 0000:00:11.0: [8086:1d3e] type 01 class 0x060400 [ 28.902237] pci 0000:00:11.0: PME# supported from D0 D3hot D3cold [ 28.902505] pci 0000:00:16.0: [8086:1d3a] type 00 class 0x078000 [ 28.902606] pci 0000:00:16.0: reg 0x10: [mem 0xfed0e000-0xfed0e00f 64bit] [ 28.902914] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold [ 28.903090] pci 0000:00:16.1: [8086:1d3b] type 00 class 0x078000 [ 28.903192] pci 0000:00:16.1: reg 0x10: [mem 0xfed0f000-0xfed0f00f 64bit] [ 28.903497] pci 0000:00:16.1: PME# supported from D0 D3hot D3cold [ 28.903717] pci 0000:00:1a.0: [8086:1d2d] type 00 class 0x0c0320 [ 28.903807] pci 0000:00:1a.0: reg 0x10: [mem 0xcfc23000-0xcfc233ff] [ 28.904166] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold [ 28.904367] pci 0000:00:1c.0: [8086:1d10] type 01 class 0x060400 [ 28.904761] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold [ 28.904852] pci 0000:00:1c.0: Enabling MPC IRBNCE [ 28.904860] pci 0000:00:1c.0: Intel PCH root port ACS workaround enabled [ 28.905076] pci 0000:00:1c.7: [8086:1d1e] type 01 class 0x060400 [ 28.905448] pci 0000:00:1c.7: PME# supported from D0 D3hot D3cold [ 28.905521] pci 0000:00:1c.7: Enabling MPC IRBNCE [ 28.905528] pci 0000:00:1c.7: Intel PCH root port ACS workaround enabled [ 28.905696] pci 0000:00:1d.0: [8086:1d26] type 00 class 0x0c0320 [ 28.905787] pci 0000:00:1d.0: reg 0x10: [mem 0xcfc22000-0xcfc223ff] [ 28.906145] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold [ 28.906341] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401 [ 28.906745] pci 0000:00:1f.0: [8086:1d41] type 00 class 0x060100 [ 28.907304] pci 0000:00:1f.2: [8086:1d02] type 00 class 0x010601 [ 28.907395] pci 0000:00:1f.2: reg 0x10: [io 0x9050-0x9057] [ 28.907429] pci 0000:00:1f.2: reg 0x14: [io 0x9040-0x9043] [ 28.907463] pci 0000:00:1f.2: reg 0x18: [io 0x9030-0x9037] [ 28.907497] pci 0000:00:1f.2: reg 0x1c: [io 0x9020-0x9023] [ 28.907531] pci 0000:00:1f.2: reg 0x20: [io 0x9000-0x901f] [ 28.907566] pci 0000:00:1f.2: reg 0x24: [mem 0xcfc21000-0xcfc217ff] [ 28.907773] pci 0000:00:1f.2: PME# supported from D3hot [ 28.907952] pci 0000:00:1f.3: [8086:1d22] type 00 class 0x0c0500 [ 28.908038] pci 0000:00:1f.3: reg 0x10: [mem 0xcfc20000-0xcfc200ff 64bit] [ 28.908137] pci 0000:00:1f.3: reg 0x20: [io 0x1180-0x119f] [ 28.908375] pci 0000:00:1f.6: [8086:1d24] type 00 class 0x118000 [ 28.908475] pci 0000:00:1f.6: reg 0x10: [mem 0xfed08000-0xfed08fff 64bit] [ 28.909026] pci 0000:00:01.0: PCI bridge to [bus 01] [ 28.909280] pci 0000:02:00.0: [8086:1521] type 00 class 0x020000 [ 28.909353] pci 0000:02:00.0: reg 0x10: [mem 0xcfb20000-0xcfb3ffff] [ 28.909418] pci 0000:02:00.0: reg 0x18: [io 0x8020-0x803f] [ 28.909453] pci 0000:02:00.0: reg 0x1c: [mem 0xcfb44000-0xcfb47fff] [ 28.909783] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold [ 28.909882] pci 0000:02:00.0: reg 0x184: [mem 0x00000000-0x00003fff 64bit pref] [ 28.909884] pci 0000:02:00.0: VF(n) BAR0 space: [mem 0x00000000-0x0001ffff 64bit pref] (contains BAR0 for 8 VFs) [ 28.909933] pci 0000:02:00.0: reg 0x190: [mem 0x00000000-0x00003fff 64bit pref] [ 28.909935] pci 0000:02:00.0: VF(n) BAR3 space: [mem 0x00000000-0x0001ffff 64bit pref] (contains BAR3 for 8 VFs) [ 28.910195] pci 0000:02:00.1: [8086:1521] type 00 class 0x020000 [ 28.910267] pci 0000:02:00.1: reg 0x10: [mem 0xcfb00000-0xcfb1ffff] [ 28.910333] pci 0000:02:00.1: reg 0x18: [io 0x8000-0x801f] [ 28.910368] pci 0000:02:00.1: reg 0x1c: [mem 0xcfb40000-0xcfb43fff] [ 28.910695] pci 0000:02:00.1: PME# supported from D0 D3hot D3cold [ 28.910785] pci 0000:02:00.1: reg 0x184: [mem 0x00000000-0x00003fff 64bit pref] [ 28.910787] pci 0000:02:00.1: VF(n) BAR0 space: [mem 0x00000000-0x0001ffff 64bit pref] (contains BAR0 for 8 VFs) [ 28.910836] pci 0000:02:00.1: reg 0x190: [mem 0x00000000-0x00003fff 64bit pref] [ 28.910838] pci 0000:02:00.1: VF(n) BAR3 space: [mem 0x00000000-0x0001ffff 64bit pref] (contains BAR3 for 8 VFs) [ 28.911071] pci 0000:00:01.1: ASPM: current common clock configuration is broken, reconfiguring [ 28.911171] pci 0000:00:01.1: PCI bridge to [bus 02-03] [ 28.911182] pci 0000:00:01.1: bridge window [io 0x8000-0x8fff] [ 28.911193] pci 0000:00:01.1: bridge window [mem 0xcfb00000-0xcfbfffff] [ 28.911370] pci 0000:00:02.0: PCI bridge to [bus 04] [ 28.911599] pci 0000:05:00.0: [8086:10fb] type 00 class 0x020000 [ 28.911684] pci 0000:05:00.0: reg 0x10: [mem 0xce680000-0xce6fffff 64bit pref] [ 28.911717] pci 0000:05:00.0: reg 0x18: [io 0x7020-0x703f] [ 28.911798] pci 0000:05:00.0: reg 0x20: [mem 0xce704000-0xce707fff 64bit pref] [ 28.911833] pci 0000:05:00.0: reg 0x30: [mem 0xcfa80000-0xcfafffff pref] [ 28.912053] pci 0000:05:00.0: PME# supported from D0 D3hot D3cold [ 28.912151] pci 0000:05:00.0: reg 0x184: [mem 0x00000000-0x00003fff 64bit pref] [ 28.912152] pci 0000:05:00.0: VF(n) BAR0 space: [mem 0x00000000-0x000fffff 64bit pref] (contains BAR0 for 64 VFs) [ 28.912198] pci 0000:05:00.0: reg 0x190: [mem 0x00000000-0x00003fff 64bit pref] [ 28.912200] pci 0000:05:00.0: VF(n) BAR3 space: [mem 0x00000000-0x000fffff 64bit pref] (contains BAR3 for 64 VFs) [ 28.912595] pci 0000:05:00.1: [8086:10fb] type 00 class 0x020000 [ 28.912681] pci 0000:05:00.1: reg 0x10: [mem 0xce600000-0xce67ffff 64bit pref] [ 28.912715] pci 0000:05:00.1: reg 0x18: [io 0x7000-0x701f] [ 28.912797] pci 0000:05:00.1: reg 0x20: [mem 0xce700000-0xce703fff 64bit pref] [ 28.912830] pci 0000:05:00.1: reg 0x30: [mem 0xcfa00000-0xcfa7ffff pref] [ 28.913050] pci 0000:05:00.1: PME# supported from D0 D3hot D3cold [ 28.913130] pci 0000:05:00.1: reg 0x184: [mem 0x00000000-0x00003fff 64bit pref] [ 28.913132] pci 0000:05:00.1: VF(n) BAR0 space: [mem 0x00000000-0x000fffff 64bit pref] (contains BAR0 for 64 VFs) [ 28.913178] pci 0000:05:00.1: reg 0x190: [mem 0x00000000-0x00003fff 64bit pref] [ 28.913180] pci 0000:05:00.1: VF(n) BAR3 space: [mem 0x00000000-0x000fffff 64bit pref] (contains BAR3 for 64 VFs) [ 28.913530] pci 0000:00:02.2: PCI bridge to [bus 05-06] [ 28.913542] pci 0000:00:02.2: bridge window [io 0x7000-0x7fff] [ 28.913553] pci 0000:00:02.2: bridge window [mem 0xcfa00000-0xcfafffff] [ 28.913573] pci 0000:00:02.2: bridge window [mem 0xce600000-0xce7fffff 64bit pref] [ 28.913769] pci 0000:07:00.0: [17d3:1880] type 00 class 0x010400 [ 28.913835] pci 0000:07:00.0: reg 0x10: [io 0x6000-0x60ff] [ 28.913884] pci 0000:07:00.0: reg 0x14: [mem 0xcf9c0000-0xcf9cffff 64bit] [ 28.913934] pci 0000:07:00.0: reg 0x1c: [mem 0xcf980000-0xcf9bffff 64bit] [ 28.913998] pci 0000:07:00.0: reg 0x30: [mem 0xcf900000-0xcf97ffff pref] [ 28.914026] pci 0000:07:00.0: enabling Extended Tags [ 28.914394] pci 0000:00:03.0: PCI bridge to [bus 07] [ 28.914405] pci 0000:00:03.0: bridge window [io 0x6000-0x6fff] [ 28.914416] pci 0000:00:03.0: bridge window [mem 0xcf900000-0xcf9fffff] [ 28.914591] pci 0000:00:03.2: PCI bridge to [bus 08] [ 28.914850] pci 0000:09:00.0: [8086:1d6b] type 00 class 0x010700 [ 28.914948] pci 0000:09:00.0: reg 0x10: [mem 0xce400000-0xce403fff 64bit pref] [ 28.915005] pci 0000:09:00.0: reg 0x18: [mem 0xce000000-0xce3fffff 64bit pref] [ 28.915041] pci 0000:09:00.0: reg 0x20: [io 0x5000-0x50ff] [ 28.915142] pci 0000:09:00.0: enabling Extended Tags [ 28.915452] pci 0000:09:00.0: reg 0x164: [mem 0x00000000-0x00003fff 64bit pref] [ 28.915454] pci 0000:09:00.0: VF(n) BAR0 space: [mem 0x00000000-0x0007bfff 64bit pref] (contains BAR0 for 31 VFs) [ 28.915944] pci 0000:00:11.0: PCI bridge to [bus 09] [ 28.915957] pci 0000:00:11.0: bridge window [io 0x5000-0x5fff] [ 28.915989] pci 0000:00:11.0: bridge window [mem 0xce000000-0xce4fffff 64bit pref] [ 28.916154] pci 0000:00:1c.0: PCI bridge to [bus 0a] [ 28.916652] pci 0000:0b:00.0: [1912:0013] type 01 class 0x060400 [ 28.918078] pci 0000:0b:00.0: enabling Extended Tags [ 28.919291] pci 0000:0b:00.0: PME# supported from D0 D3hot D3cold [ 28.920524] pci 0000:00:1c.7: PCI bridge to [bus 0b-0f] [ 28.920548] pci 0000:00:1c.7: bridge window [mem 0xcf000000-0xcf8fffff] [ 28.920568] pci 0000:00:1c.7: bridge window [mem 0xcd000000-0xcdffffff 64bit pref] [ 28.921663] pci 0000:0c:00.0: [1912:0013] type 01 class 0x060400 [ 28.923265] pci 0000:0c:00.0: enabling Extended Tags [ 28.924662] pci 0000:0c:00.0: PME# supported from D0 D3hot D3cold [ 28.926150] pci 0000:0c:01.0: [1912:0013] type 01 class 0x060400 [ 28.927826] pci 0000:0c:01.0: enabling Extended Tags [ 28.929337] pci 0000:0c:01.0: PME# supported from D0 D3hot D3cold [ 28.936363] pci 0000:0b:00.0: PCI bridge to [bus 0c-0f] [ 28.936555] pci 0000:0b:00.0: bridge window [mem 0xcf000000-0xcf8fffff] [ 28.936683] pci 0000:0b:00.0: bridge window [mem 0xcd000000-0xcdffffff 64bit pref] [ 28.937812] pci 0000:0d:00.0: [1912:0012] type 01 class 0x060400 [ 28.939476] pci 0000:0d:00.0: enabling Extended Tags [ 28.942189] pci 0000:0c:00.0: PCI bridge to [bus 0d-0e] [ 28.942409] pci 0000:0c:00.0: bridge window [mem 0xcf000000-0xcf8fffff] [ 28.942557] pci 0000:0c:00.0: bridge window [mem 0xcd000000-0xcdffffff 64bit pref] [ 28.943451] pci_bus 0000:0e: extended config space not accessible [ 28.943694] pci 0000:0e:00.0: [102b:0534] type 00 class 0x030000 [ 28.944178] pci 0000:0e:00.0: reg 0x10: [mem 0xcd000000-0xcdffffff pref] [ 28.944442] pci 0000:0e:00.0: reg 0x14: [mem 0xcf800000-0xcf803fff] [ 28.944707] pci 0000:0e:00.0: reg 0x18: [mem 0xcf000000-0xcf7fffff] [ 28.949109] pci 0000:0d:00.0: PCI bridge to [bus 0e] [ 28.949331] pci 0000:0d:00.0: bridge window [mem 0xcf000000-0xcf8fffff] [ 28.949476] pci 0000:0d:00.0: bridge window [mem 0xcd000000-0xcdffffff 64bit pref] [ 28.950637] pci 0000:0c:01.0: PCI bridge to [bus 0f] [ 28.952029] pci_bus 0000:10: extended config space not accessible [ 28.952216] pci 0000:00:1e.0: PCI bridge to [bus 10] (subtractive decode) [ 28.952257] pci 0000:00:1e.0: bridge window [io 0x0000-0x03af window] (subtractive decode) [ 28.952258] pci 0000:00:1e.0: bridge window [io 0x03e0-0x0cf7 window] (subtractive decode) [ 28.952259] pci 0000:00:1e.0: bridge window [io 0x03b0-0x03df window] (subtractive decode) [ 28.952261] pci 0000:00:1e.0: bridge window [io 0x0d00-0x9fff window] (subtractive decode) [ 28.952262] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode) [ 28.952263] pci 0000:00:1e.0: bridge window [mem 0x000c0000-0x000dffff window] (subtractive decode) [ 28.952264] pci 0000:00:1e.0: bridge window [mem 0xfed08000-0xfed08fff window] (subtractive decode) [ 28.952265] pci 0000:00:1e.0: bridge window [mem 0xfed0e000-0xfed0ffff window] (subtractive decode) [ 28.952266] pci 0000:00:1e.0: bridge window [mem 0x30000000-0xcfffffff window] (subtractive decode) [ 28.952676] xen: registering gsi 13 triggering 1 polarity 0 [ 28.953343] ACPI: PCI Root Bridge [UNC0] (domain 0000 [bus 7f]) [ 28.953346] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI] [ 28.953369] acpi PNP0A03:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR] [ 28.953370] acpi PNP0A03:00: FADT indicates ASPM is unsupported, using BIOS configuration [ 28.953454] PCI host bridge to bus 0000:7f [ 28.953456] pci_bus 0000:7f: root bus resource [bus 7f] [ 28.953515] pci 0000:7f:08.0: [8086:0e80] type 00 class 0x088000 [ 28.953835] pci 0000:7f:09.0: [8086:0e90] type 00 class 0x088000 [ 28.954155] pci 0000:7f:0a.0: [8086:0ec0] type 00 class 0x088000 [ 28.954433] pci 0000:7f:0a.1: [8086:0ec1] type 00 class 0x088000 [ 28.954713] pci 0000:7f:0a.2: [8086:0ec2] type 00 class 0x088000 [ 28.955000] pci 0000:7f:0a.3: [8086:0ec3] type 00 class 0x088000 [ 28.955301] pci 0000:7f:0b.0: [8086:0e1e] type 00 class 0x088000 [ 28.955592] pci 0000:7f:0b.3: [8086:0e1f] type 00 class 0x088000 [ 28.955883] pci 0000:7f:0c.0: [8086:0ee0] type 00 class 0x088000 [ 28.956157] pci 0000:7f:0c.1: [8086:0ee2] type 00 class 0x088000 [ 28.956431] pci 0000:7f:0c.2: [8086:0ee4] type 00 class 0x088000 [ 28.956726] pci 0000:7f:0d.0: [8086:0ee1] type 00 class 0x088000 [ 28.957007] pci 0000:7f:0d.1: [8086:0ee3] type 00 class 0x088000 [ 28.957281] pci 0000:7f:0d.2: [8086:0ee5] type 00 class 0x088000 [ 28.957580] pci 0000:7f:0e.0: [8086:0ea0] type 00 class 0x088000 [ 28.957861] pci 0000:7f:0e.1: [8086:0e30] type 00 class 0x110100 [ 28.958185] pci 0000:7f:0f.0: [8086:0ea8] type 00 class 0x088000 [ 28.958574] pci 0000:7f:0f.1: [8086:0e71] type 00 class 0x088000 [ 28.958962] pci 0000:7f:0f.2: [8086:0eaa] type 00 class 0x088000 [ 28.959340] pci 0000:7f:0f.3: [8086:0eab] type 00 class 0x088000 [ 28.959728] pci 0000:7f:0f.4: [8086:0eac] type 00 class 0x088000 [ 28.960113] pci 0000:7f:0f.5: [8086:0ead] type 00 class 0x088000 [ 28.960503] pci 0000:7f:10.0: [8086:0eb0] type 00 class 0x088000 [ 28.960893] pci 0000:7f:10.1: [8086:0eb1] type 00 class 0x088000 [ 28.961273] pci 0000:7f:10.2: [8086:0eb2] type 00 class 0x088000 [ 28.961651] pci 0000:7f:10.3: [8086:0eb3] type 00 class 0x088000 [ 28.962038] pci 0000:7f:10.4: [8086:0eb4] type 00 class 0x088000 [ 28.962416] pci 0000:7f:10.5: [8086:0eb5] type 00 class 0x088000 [ 28.962813] pci 0000:7f:10.6: [8086:0eb6] type 00 class 0x088000 [ 28.963202] pci 0000:7f:10.7: [8086:0eb7] type 00 class 0x088000 [ 28.963579] pci 0000:7f:13.0: [8086:0e1d] type 00 class 0x088000 [ 28.963860] pci 0000:7f:13.1: [8086:0e34] type 00 class 0x110100 [ 28.964145] pci 0000:7f:13.4: [8086:0e81] type 00 class 0x088000 [ 28.964426] pci 0000:7f:13.5: [8086:0e36] type 00 class 0x110100 [ 28.964720] pci 0000:7f:16.0: [8086:0ec8] type 00 class 0x088000 [ 28.964996] pci 0000:7f:16.1: [8086:0ec9] type 00 class 0x088000 [ 28.965271] pci 0000:7f:16.2: [8086:0eca] type 00 class 0x088000 [ 28.965794] ACPI: PCI Root Bridge [PCI1] (domain 0000 [bus 80-fe]) [ 28.965797] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI] [ 28.966025] acpi PNP0A08:01: _OSC: platform does not support [SHPCHotplug PME AER LTR] [ 28.966237] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PCIeCapability] [ 28.966238] acpi PNP0A08:01: FADT indicates ASPM is unsupported, using BIOS configuration [ 28.966551] PCI host bridge to bus 0000:80 [ 28.966554] pci_bus 0000:80: root bus resource [io 0xa000-0xffff window] [ 28.966555] pci_bus 0000:80: root bus resource [mem 0xd0000000-0xfbffffff window] [ 28.966556] pci_bus 0000:80: root bus resource [bus 80-fe] [ 28.966609] pci 0000:80:00.0: [8086:0e01] type 01 class 0x060400 [ 28.967011] pci 0000:80:00.0: PME# supported from D0 D3hot D3cold [ 28.967294] pci 0000:80:01.0: [8086:0e02] type 01 class 0x060400 [ 28.967676] pci 0000:80:01.0: PME# supported from D0 D3hot D3cold [ 28.967955] pci 0000:80:02.0: [8086:0e04] type 01 class 0x060400 [ 28.968334] pci 0000:80:02.0: PME# supported from D0 D3hot D3cold [ 28.968605] pci 0000:80:03.0: [8086:0e08] type 01 class 0x060400 [ 28.968789] pci 0000:80:03.0: enabling Extended Tags [ 28.969010] pci 0000:80:03.0: PME# supported from D0 D3hot D3cold [ 28.969262] pci 0000:80:03.2: [8086:0e0a] type 01 class 0x060400 [ 28.969639] pci 0000:80:03.2: PME# supported from D0 D3hot D3cold [ 28.969911] pci 0000:80:04.0: [8086:0e20] type 00 class 0x088000 [ 28.970001] pci 0000:80:04.0: reg 0x10: [mem 0xfbf1c000-0xfbf1ffff 64bit] [ 28.970513] pci 0000:80:04.1: [8086:0e21] type 00 class 0x088000 [ 28.970603] pci 0000:80:04.1: reg 0x10: [mem 0xfbf18000-0xfbf1bfff 64bit] [ 28.971131] pci 0000:80:04.2: [8086:0e22] type 00 class 0x088000 [ 28.971226] pci 0000:80:04.2: reg 0x10: [mem 0xfbf14000-0xfbf17fff 64bit] [ 28.971730] pci 0000:80:04.3: [8086:0e23] type 00 class 0x088000 [ 28.971819] pci 0000:80:04.3: reg 0x10: [mem 0xfbf10000-0xfbf13fff 64bit] [ 28.972333] pci 0000:80:04.4: [8086:0e24] type 00 class 0x088000 [ 28.972423] pci 0000:80:04.4: reg 0x10: [mem 0xfbf0c000-0xfbf0ffff 64bit] [ 28.972927] pci 0000:80:04.5: [8086:0e25] type 00 class 0x088000 [ 28.973016] pci 0000:80:04.5: reg 0x10: [mem 0xfbf08000-0xfbf0bfff 64bit] [ 28.973522] pci 0000:80:04.6: [8086:0e26] type 00 class 0x088000 [ 28.973611] pci 0000:80:04.6: reg 0x10: [mem 0xfbf04000-0xfbf07fff 64bit] [ 28.974120] pci 0000:80:04.7: [8086:0e27] type 00 class 0x088000 [ 28.974210] pci 0000:80:04.7: reg 0x10: [mem 0xfbf00000-0xfbf03fff 64bit] [ 28.974727] pci 0000:80:05.0: [8086:0e28] type 00 class 0x088000 [ 28.975201] pci 0000:80:05.2: [8086:0e2a] type 00 class 0x088000 [ 28.975659] pci 0000:80:05.4: [8086:0e2c] type 00 class 0x080020 [ 28.975726] pci 0000:80:05.4: reg 0x10: [mem 0xfbf20000-0xfbf20fff] [ 28.976441] pci 0000:80:00.0: PCI bridge to [bus 81] [ 28.976629] pci 0000:80:01.0: PCI bridge to [bus 82] [ 28.976825] pci 0000:80:02.0: PCI bridge to [bus 83] [ 28.977021] pci 0000:80:03.0: PCI bridge to [bus 84] [ 28.977209] pci 0000:80:03.2: PCI bridge to [bus 85] [ 28.977509] ACPI: PCI Root Bridge [UNC1] (domain 0000 [bus ff]) [ 28.977512] acpi PNP0A03:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI] [ 28.977535] acpi PNP0A03:01: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR] [ 28.977537] acpi PNP0A03:01: FADT indicates ASPM is unsupported, using BIOS configuration [ 28.977621] PCI host bridge to bus 0000:ff [ 28.977623] pci_bus 0000:ff: root bus resource [bus ff] [ 28.977682] pci 0000:ff:08.0: [8086:0e80] type 00 class 0x088000 [ 28.978013] pci 0000:ff:09.0: [8086:0e90] type 00 class 0x088000 [ 28.978328] pci 0000:ff:0a.0: [8086:0ec0] type 00 class 0x088000 [ 28.978613] pci 0000:ff:0a.1: [8086:0ec1] type 00 class 0x088000 [ 28.978914] pci 0000:ff:0a.2: [8086:0ec2] type 00 class 0x088000 [ 28.979205] pci 0000:ff:0a.3: [8086:0ec3] type 00 class 0x088000 [ 28.979514] pci 0000:ff:0b.0: [8086:0e1e] type 00 class 0x088000 [ 28.979802] pci 0000:ff:0b.3: [8086:0e1f] type 00 class 0x088000 [ 28.980105] pci 0000:ff:0c.0: [8086:0ee0] type 00 class 0x088000 [ 28.980389] pci 0000:ff:0c.1: [8086:0ee2] type 00 class 0x088000 [ 28.980670] pci 0000:ff:0c.2: [8086:0ee4] type 00 class 0x088000 [ 28.980992] pci 0000:ff:0d.0: [8086:0ee1] type 00 class 0x088000 [ 28.981275] pci 0000:ff:0d.1: [8086:0ee3] type 00 class 0x088000 [ 28.981555] pci 0000:ff:0d.2: [8086:0ee5] type 00 class 0x088000 [ 28.981858] pci 0000:ff:0e.0: [8086:0ea0] type 00 class 0x088000 [ 28.982148] pci 0000:ff:0e.1: [8086:0e30] type 00 class 0x110100 [ 28.982486] pci 0000:ff:0f.0: [8086:0ea8] type 00 class 0x088000 [ 28.982900] pci 0000:ff:0f.1: [8086:0e71] type 00 class 0x088000 [ 28.983304] pci 0000:ff:0f.2: [8086:0eaa] type 00 class 0x088000 [ 28.983699] pci 0000:ff:0f.3: [8086:0eab] type 00 class 0x088000 [ 28.984087] pci 0000:ff:0f.4: [8086:0eac] type 00 class 0x088000 [ 28.984475] pci 0000:ff:0f.5: [8086:0ead] type 00 class 0x088000 [ 28.984887] pci 0000:ff:10.0: [8086:0eb0] type 00 class 0x088000 [ 28.985279] pci 0000:ff:10.1: [8086:0eb1] type 00 class 0x088000 [ 28.985670] pci 0000:ff:10.2: [8086:0eb2] type 00 class 0x088000 [ 28.986070] pci 0000:ff:10.3: [8086:0eb3] type 00 class 0x088000 [ 28.986470] pci 0000:ff:10.4: [8086:0eb4] type 00 class 0x088000 [ 28.986885] pci 0000:ff:10.5: [8086:0eb5] type 00 class 0x088000 [ 28.987293] pci 0000:ff:10.6: [8086:0eb6] type 00 class 0x088000 [ 28.987686] pci 0000:ff:10.7: [8086:0eb7] type 00 class 0x088000 [ 28.988069] pci 0000:ff:13.0: [8086:0e1d] type 00 class 0x088000 [ 28.988352] pci 0000:ff:13.1: [8086:0e34] type 00 class 0x110100 [ 28.988649] pci 0000:ff:13.4: [8086:0e81] type 00 class 0x088000 [ 28.988935] pci 0000:ff:13.5: [8086:0e36] type 00 class 0x110100 [ 28.989237] pci 0000:ff:16.0: [8086:0ec8] type 00 class 0x088000 [ 28.989518] pci 0000:ff:16.1: [8086:0ec9] type 00 class 0x088000 [ 28.989800] pci 0000:ff:16.2: [8086:0eca] type 00 class 0x088000 [ 28.990261] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12 14 15) [ 28.990355] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 *10 11 12 14 15) [ 28.990440] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 *5 6 10 11 12 14 15) [ 28.990524] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 *11 12 14 15) [ 28.990610] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 12 14 15) *0 [ 28.990695] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0 [ 28.990786] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 11 12 14 15) *0 [ 28.990872] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 *7 10 11 12 14 15) [ 28.994331] xen:balloon: Initialising balloon driver [ 29.734929] pci 0000:0e:00.0: vgaarb: setting as boot VGA device [ 29.734932] pci 0000:0e:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none [ 29.734988] pci 0000:0e:00.0: vgaarb: bridge control possible [ 29.734990] vgaarb: loaded [ 29.735157] pps_core: LinuxPPS API ver. 1 registered [ 29.735158] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti at linux.it> [ 29.735162] PTP clock support registered [ 29.735202] EDAC MC: Ver: 3.0.0 [ 29.738755] PCI: Using ACPI for IRQ routing [ 29.768287] PCI: pci_cache_line_size set to 64 bytes [ 29.769819] e820: reserve RAM buffer [mem 0x0009c000-0x0009ffff] [ 29.769822] e820: reserve RAM buffer [mem 0x2de35000-0x2fffffff] [ 29.771301] clocksource: Switched to clocksource tsc-early [ 29.785982] VFS: Disk quotas dquot_6.6.0 [ 29.786014] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ 29.786043] hugetlbfs: disabling because there are no supported hugepage sizes [ 29.786171] AppArmor: AppArmor Filesystem Enabled [ 29.786191] pnp: PnP ACPI init [ 29.786354] system 00:00: [mem 0xfc000000-0xfcffffff] has been reserved [ 29.786356] system 00:00: [mem 0xfd000000-0xfdffffff] has been reserved [ 29.786358] system 00:00: [mem 0xfe000000-0xfeafffff] has been reserved [ 29.786359] system 00:00: [mem 0xfeb00000-0xfebfffff] has been reserved [ 29.786365] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active) [ 29.786535] system 00:01: [mem 0xcfffc000-0xcfffdfff] could not be reserved [ 29.786540] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active) [ 29.786562] xen: registering gsi 8 triggering 1 polarity 0 [ 29.786613] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active) [ 29.786663] pnp 00:03: disabling [mem 0x00000400-0x000004ff] because it overlaps 0000:02:00.0 BAR 7 [mem 0x00000000-0x0001ffff 64bit pref] [ 29.786665] pnp 00:03: disabling [mem 0x00000400-0x000004ff disabled] because it overlaps 0000:02:00.0 BAR 10 [mem 0x00000000-0x0001ffff 64bit pref] [ 29.786668] pnp 00:03: disabling [mem 0x00000400-0x000004ff disabled] because it overlaps 0000:02:00.1 BAR 7 [mem 0x00000000-0x0001ffff 64bit pref] [ 29.786669] pnp 00:03: disabling [mem 0x00000400-0x000004ff disabled] because it overlaps 0000:02:00.1 BAR 10 [mem 0x00000000-0x0001ffff 64bit pref] [ 29.786671] pnp 00:03: disabling [mem 0x00000400-0x000004ff disabled] because it overlaps 0000:05:00.0 BAR 7 [mem 0x00000000-0x000fffff 64bit pref] [ 29.786673] pnp 00:03: disabling [mem 0x00000400-0x000004ff disabled] because it overlaps 0000:05:00.0 BAR 10 [mem 0x00000000-0x000fffff 64bit pref] [ 29.786675] pnp 00:03: disabling [mem 0x00000400-0x000004ff disabled] because it overlaps 0000:05:00.1 BAR 7 [mem 0x00000000-0x000fffff 64bit pref] [ 29.786676] pnp 00:03: disabling [mem 0x00000400-0x000004ff disabled] because it overlaps 0000:05:00.1 BAR 10 [mem 0x00000000-0x000fffff 64bit pref] [ 29.786679] pnp 00:03: disabling [mem 0x00000400-0x000004ff disabled] because it overlaps 0000:09:00.0 BAR 7 [mem 0x00000000-0x0007bfff 64bit pref] [ 29.786771] system 00:03: [io 0x04d0-0x04d1] has been reserved [ 29.786775] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active) [ 29.786946] system 00:04: [io 0x0a00-0x0a07] has been reserved [ 29.786950] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active) [ 29.787195] system 00:05: [io 0x0370-0x0371] has been reserved [ 29.787196] system 00:05: [io 0x0a00-0x0a07] has been reserved [ 29.787198] system 00:05: [io 0x0a10-0x0a3f] has been reserved [ 29.787201] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active) [ 29.787482] xen: registering gsi 4 triggering 1 polarity 0 [ 29.787505] pnp 00:06: [dma 0 disabled] [ 29.787554] pnp 00:06: Plug and Play ACPI device, IDs PNP0501 (active) [ 29.787812] xen: registering gsi 3 triggering 1 polarity 0 [ 29.787833] pnp 00:07: [dma 0 disabled] [ 29.787890] pnp 00:07: Plug and Play ACPI device, IDs PNP0501 (active) [ 29.788275] system 00:08: [io 0x0400-0x0453] has been reserved [ 29.788277] system 00:08: [io 0x0458-0x047f] has been reserved [ 29.788279] system 00:08: [io 0x1180-0x119f] has been reserved [ 29.788280] system 00:08: [io 0x0500-0x057f] has been reserved [ 29.788282] system 00:08: [mem 0xfed1c000-0xfed1ffff] has been reserved [ 29.788284] system 00:08: [mem 0xfec00000-0xfecfffff] could not be reserved [ 29.788285] system 00:08: [mem 0xff000000-0xffffffff] has been reserved [ 29.788289] system 00:08: Plug and Play ACPI device, IDs PNP0c01 (active) [ 29.788416] system 00:09: [io 0x0454-0x0457] has been reserved [ 29.788419] system 00:09: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active) [ 29.788621] system 00:0a: Plug and Play ACPI device, IDs PNP0c01 (active) [ 29.788761] system 00:0b: [mem 0xfbffe000-0xfbffffff] could not be reserved [ 29.788765] system 00:0b: Plug and Play ACPI device, IDs PNP0c02 (active) [ 29.788984] pnp 00:0c: disabling [mem 0x00000000-0x0009ffff] because it overlaps 0000:05:00.0 BAR 7 [mem 0x00000000-0x000fffff 64bit pref] [ 29.788986] pnp 00:0c: disabling [mem 0x00000000-0x0009ffff disabled] because it overlaps 0000:05:00.0 BAR 10 [mem 0x00000000-0x000fffff 64bit pref] [ 29.788988] pnp 00:0c: disabling [mem 0x00000000-0x0009ffff disabled] because it overlaps 0000:05:00.1 BAR 7 [mem 0x00000000-0x000fffff 64bit pref] [ 29.788989] pnp 00:0c: disabling [mem 0x00000000-0x0009ffff disabled] because it overlaps 0000:05:00.1 BAR 10 [mem 0x00000000-0x000fffff 64bit pref] [ 29.789028] system 00:0c: Plug and Play ACPI device, IDs PNP0c01 (active) [ 29.789486] pnp: PnP ACPI: found 13 devices [ 29.812456] PM-Timer failed consistency check (0xffffff) - aborting. [ 29.812475] pci_bus 0000:00: max bus depth: 4 pci_try_num: 5 [ 29.813733] pci 0000:00:01.1: BAR 15: assigned [mem 0x40000000-0x400fffff 64bit pref] [ 29.813735] pci 0000:00:11.0: BAR 14: assigned [mem 0x40100000-0x401fffff] [ 29.813738] pci 0000:00:01.0: PCI bridge to [bus 01] [ 29.813784] pci 0000:02:00.0: BAR 7: assigned [mem 0x40000000-0x4001ffff 64bit pref] [ 29.813802] pci 0000:02:00.0: BAR 10: assigned [mem 0x40020000-0x4003ffff 64bit pref] [ 29.813810] pci 0000:02:00.1: BAR 7: assigned [mem 0x40040000-0x4005ffff 64bit pref] [ 29.813819] pci 0000:02:00.1: BAR 10: assigned [mem 0x40060000-0x4007ffff 64bit pref] [ 29.813827] pci 0000:00:01.1: PCI bridge to [bus 02-03] [ 29.813834] pci 0000:00:01.1: bridge window [io 0x8000-0x8fff] [ 29.813849] pci 0000:00:01.1: bridge window [mem 0xcfb00000-0xcfbfffff] [ 29.813860] pci 0000:00:01.1: bridge window [mem 0x40000000-0x400fffff 64bit pref] [ 29.813880] pci 0000:00:02.0: PCI bridge to [bus 04] [ 29.813928] pci 0000:05:00.0: BAR 7: no space for [mem size 0x00100000 64bit pref] [ 29.813930] pci 0000:05:00.0: BAR 7: failed to assign [mem size 0x00100000 64bit pref] [ 29.813932] pci 0000:05:00.0: BAR 10: no space for [mem size 0x00100000 64bit pref] [ 29.813933] pci 0000:05:00.0: BAR 10: failed to assign [mem size 0x00100000 64bit pref] [ 29.813935] pci 0000:05:00.1: BAR 7: no space for [mem size 0x00100000 64bit pref] [ 29.813937] pci 0000:05:00.1: BAR 7: failed to assign [mem size 0x00100000 64bit pref] [ 29.813939] pci 0000:05:00.1: BAR 10: no space for [mem size 0x00100000 64bit pref] [ 29.813940] pci 0000:05:00.1: BAR 10: failed to assign [mem size 0x00100000 64bit pref] [ 29.813941] pci 0000:00:02.2: PCI bridge to [bus 05-06] [ 29.813948] pci 0000:00:02.2: bridge window [io 0x7000-0x7fff] [ 29.813963] pci 0000:00:02.2: bridge window [mem 0xcfa00000-0xcfafffff] [ 29.813974] pci 0000:00:02.2: bridge window [mem 0xce600000-0xce7fffff 64bit pref] [ 29.813994] pci 0000:00:03.0: PCI bridge to [bus 07] [ 29.814000] pci 0000:00:03.0: bridge window [io 0x6000-0x6fff] [ 29.814015] pci 0000:00:03.0: bridge window [mem 0xcf900000-0xcf9fffff] [ 29.814045] pci 0000:00:03.2: PCI bridge to [bus 08] [ 29.814090] pci 0000:09:00.0: BAR 7: assigned [mem 0xce404000-0xce47ffff 64bit pref] [ 29.814099] pci 0000:00:11.0: PCI bridge to [bus 09] [ 29.814106] pci 0000:00:11.0: bridge window [io 0x5000-0x5fff] [ 29.814122] pci 0000:00:11.0: bridge window [mem 0x40100000-0x401fffff] [ 29.814134] pci 0000:00:11.0: bridge window [mem 0xce000000-0xce4fffff 64bit pref] [ 29.814156] pci 0000:00:1c.0: PCI bridge to [bus 0a] [ 29.814205] pci 0000:0d:00.0: PCI bridge to [bus 0e] [ 29.814349] pci 0000:0d:00.0: bridge window [mem 0xcf000000-0xcf8fffff] [ 29.814443] pci 0000:0d:00.0: bridge window [mem 0xcd000000-0xcdffffff 64bit pref] [ 29.814640] pci 0000:0c:00.0: PCI bridge to [bus 0d-0e] [ 29.814798] pci 0000:0c:00.0: bridge window [mem 0xcf000000-0xcf8fffff] [ 29.814892] pci 0000:0c:00.0: bridge window [mem 0xcd000000-0xcdffffff 64bit pref] [ 29.815088] pci 0000:0c:01.0: PCI bridge to [bus 0f] [ 29.815585] pci 0000:0b:00.0: PCI bridge to [bus 0c-0f] [ 29.815718] pci 0000:0b:00.0: bridge window [mem 0xcf000000-0xcf8fffff] [ 29.815806] pci 0000:0b:00.0: bridge window [mem 0xcd000000-0xcdffffff 64bit pref] [ 29.816051] pci 0000:00:1c.7: PCI bridge to [bus 0b-0f] [ 29.816068] pci 0000:00:1c.7: bridge window [mem 0xcf000000-0xcf8fffff] [ 29.816080] pci 0000:00:1c.7: bridge window [mem 0xcd000000-0xcdffffff 64bit pref] [ 29.816102] pci 0000:00:1e.0: PCI bridge to [bus 10] [ 29.816145] pci_bus 0000:00: No. 2 try to assign unassigned res [ 29.816147] release child resource [mem 0xce600000-0xce67ffff 64bit pref] [ 29.816147] release child resource [mem 0xce680000-0xce6fffff 64bit pref] [ 29.816148] release child resource [mem 0xce700000-0xce703fff 64bit pref] [ 29.816149] release child resource [mem 0xce704000-0xce707fff 64bit pref] [ 29.816150] pci 0000:00:02.2: resource 15 [mem 0xce600000-0xce7fffff 64bit pref] released [ 29.816151] pci 0000:00:02.2: PCI bridge to [bus 05-06] [ 29.817408] pci 0000:00:02.2: BAR 15: assigned [mem 0x40200000-0x407fffff 64bit pref] [ 29.817409] pci 0000:00:01.0: PCI bridge to [bus 01] [ 29.817453] pci 0000:00:01.1: PCI bridge to [bus 02-03] [ 29.817461] pci 0000:00:01.1: bridge window [io 0x8000-0x8fff] [ 29.817477] pci 0000:00:01.1: bridge window [mem 0xcfb00000-0xcfbfffff] [ 29.817488] pci 0000:00:01.1: bridge window [mem 0x40000000-0x400fffff 64bit pref] [ 29.817509] pci 0000:00:02.0: PCI bridge to [bus 04] [ 29.817555] pci 0000:05:00.0: BAR 0: assigned [mem 0x40200000-0x4027ffff 64bit pref] [ 29.817591] pci 0000:05:00.1: BAR 0: assigned [mem 0x40280000-0x402fffff 64bit pref] [ 29.817624] pci 0000:05:00.0: BAR 4: assigned [mem 0x40300000-0x40303fff 64bit pref] [ 29.817657] pci 0000:05:00.0: BAR 7: assigned [mem 0x40304000-0x40403fff 64bit pref] [ 29.817666] pci 0000:05:00.0: BAR 10: assigned [mem 0x40404000-0x40503fff 64bit pref] [ 29.817673] pci 0000:05:00.1: BAR 4: assigned [mem 0x40504000-0x40507fff 64bit pref] [ 29.817706] pci 0000:05:00.1: BAR 7: assigned [mem 0x40508000-0x40607fff 64bit pref] [ 29.817714] pci 0000:05:00.1: BAR 10: assigned [mem 0x40608000-0x40707fff 64bit pref] [ 29.817722] pci 0000:00:02.2: PCI bridge to [bus 05-06] [ 29.817728] pci 0000:00:02.2: bridge window [io 0x7000-0x7fff] [ 29.817744] pci 0000:00:02.2: bridge window [mem 0xcfa00000-0xcfafffff] [ 29.817755] pci 0000:00:02.2: bridge window [mem 0x40200000-0x407fffff 64bit pref] [ 29.817775] pci 0000:00:03.0: PCI bridge to [bus 07] [ 29.817782] pci 0000:00:03.0: bridge window [io 0x6000-0x6fff] [ 29.817799] pci 0000:00:03.0: bridge window [mem 0xcf900000-0xcf9fffff] [ 29.817827] pci 0000:00:03.2: PCI bridge to [bus 08] [ 29.817871] pci 0000:00:11.0: PCI bridge to [bus 09] [ 29.817878] pci 0000:00:11.0: bridge window [io 0x5000-0x5fff] [ 29.817894] pci 0000:00:11.0: bridge window [mem 0x40100000-0x401fffff] [ 29.817906] pci 0000:00:11.0: bridge window [mem 0xce000000-0xce4fffff 64bit pref] [ 29.817927] pci 0000:00:1c.0: PCI bridge to [bus 0a] [ 29.817974] pci 0000:0d:00.0: PCI bridge to [bus 0e] [ 29.818120] pci 0000:0d:00.0: bridge window [mem 0xcf000000-0xcf8fffff] [ 29.818215] pci 0000:0d:00.0: bridge window [mem 0xcd000000-0xcdffffff 64bit pref] [ 29.818409] pci 0000:0c:00.0: PCI bridge to [bus 0d-0e] [ 29.818553] pci 0000:0c:00.0: bridge window [mem 0xcf000000-0xcf8fffff] [ 29.818647] pci 0000:0c:00.0: bridge window [mem 0xcd000000-0xcdffffff 64bit pref] [ 29.818857] pci 0000:0c:01.0: PCI bridge to [bus 0f] [ 29.819351] pci 0000:0b:00.0: PCI bridge to [bus 0c-0f] [ 29.819481] pci 0000:0b:00.0: bridge window [mem 0xcf000000-0xcf8fffff] [ 29.819566] pci 0000:0b:00.0: bridge window [mem 0xcd000000-0xcdffffff 64bit pref] [ 29.819805] pci 0000:00:1c.7: PCI bridge to [bus 0b-0f] [ 29.819822] pci 0000:00:1c.7: bridge window [mem 0xcf000000-0xcf8fffff] [ 29.819833] pci 0000:00:1c.7: bridge window [mem 0xcd000000-0xcdffffff 64bit pref] [ 29.819854] pci 0000:00:1e.0: PCI bridge to [bus 10] [ 29.819900] pci_bus 0000:00: resource 4 [io 0x0000-0x03af window] [ 29.819901] pci_bus 0000:00: resource 5 [io 0x03e0-0x0cf7 window] [ 29.819902] pci_bus 0000:00: resource 6 [io 0x03b0-0x03df window] [ 29.819903] pci_bus 0000:00: resource 7 [io 0x0d00-0x9fff window] [ 29.819905] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window] [ 29.819906] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window] [ 29.819907] pci_bus 0000:00: resource 10 [mem 0xfed08000-0xfed08fff window] [ 29.819908] pci_bus 0000:00: resource 11 [mem 0xfed0e000-0xfed0ffff window] [ 29.819909] pci_bus 0000:00: resource 12 [mem 0x30000000-0xcfffffff window] [ 29.819910] pci_bus 0000:02: resource 0 [io 0x8000-0x8fff] [ 29.819911] pci_bus 0000:02: resource 1 [mem 0xcfb00000-0xcfbfffff] [ 29.819912] pci_bus 0000:02: resource 2 [mem 0x40000000-0x400fffff 64bit pref] [ 29.819914] pci_bus 0000:05: resource 0 [io 0x7000-0x7fff] [ 29.819915] pci_bus 0000:05: resource 1 [mem 0xcfa00000-0xcfafffff] [ 29.819916] pci_bus 0000:05: resource 2 [mem 0x40200000-0x407fffff 64bit pref] [ 29.819917] pci_bus 0000:07: resource 0 [io 0x6000-0x6fff] [ 29.819918] pci_bus 0000:07: resource 1 [mem 0xcf900000-0xcf9fffff] [ 29.819919] pci_bus 0000:09: resource 0 [io 0x5000-0x5fff] [ 29.819920] pci_bus 0000:09: resource 1 [mem 0x40100000-0x401fffff] [ 29.819921] pci_bus 0000:09: resource 2 [mem 0xce000000-0xce4fffff 64bit pref] [ 29.819923] pci_bus 0000:0b: resource 1 [mem 0xcf000000-0xcf8fffff] [ 29.819924] pci_bus 0000:0b: resource 2 [mem 0xcd000000-0xcdffffff 64bit pref] [ 29.819925] pci_bus 0000:0c: resource 1 [mem 0xcf000000-0xcf8fffff] [ 29.819926] pci_bus 0000:0c: resource 2 [mem 0xcd000000-0xcdffffff 64bit pref] [ 29.819927] pci_bus 0000:0d: resource 1 [mem 0xcf000000-0xcf8fffff] [ 29.819929] pci_bus 0000:0d: resource 2 [mem 0xcd000000-0xcdffffff 64bit pref] [ 29.819930] pci_bus 0000:0e: resource 1 [mem 0xcf000000-0xcf8fffff] [ 29.819932] pci_bus 0000:0e: resource 2 [mem 0xcd000000-0xcdffffff 64bit pref] [ 29.819934] pci_bus 0000:10: resource 4 [io 0x0000-0x03af window] [ 29.819935] pci_bus 0000:10: resource 5 [io 0x03e0-0x0cf7 window] [ 29.819936] pci_bus 0000:10: resource 6 [io 0x03b0-0x03df window] [ 29.819937] pci_bus 0000:10: resource 7 [io 0x0d00-0x9fff window] [ 29.819939] pci_bus 0000:10: resource 8 [mem 0x000a0000-0x000bffff window] [ 29.819940] pci_bus 0000:10: resource 9 [mem 0x000c0000-0x000dffff window] [ 29.819941] pci_bus 0000:10: resource 10 [mem 0xfed08000-0xfed08fff window] [ 29.819942] pci_bus 0000:10: resource 11 [mem 0xfed0e000-0xfed0ffff window] [ 29.819944] pci_bus 0000:10: resource 12 [mem 0x30000000-0xcfffffff window] [ 29.820146] pci 0000:80:00.0: PCI bridge to [bus 81] [ 29.820194] pci 0000:80:01.0: PCI bridge to [bus 82] [ 29.820237] pci 0000:80:02.0: PCI bridge to [bus 83] [ 29.820282] pci 0000:80:03.0: PCI bridge to [bus 84] [ 29.820327] pci 0000:80:03.2: PCI bridge to [bus 85] [ 29.820374] pci_bus 0000:80: resource 4 [io 0xa000-0xffff window] [ 29.820375] pci_bus 0000:80: resource 5 [mem 0xd0000000-0xfbffffff window] [ 29.820451] NET: Registered protocol family 2 [ 29.821144] tcp_listen_portaddr_hash hash table entries: 32768 (order: 7, 524288 bytes) [ 29.823029] TCP established hash table entries: 524288 (order: 10, 4194304 bytes) [ 29.824290] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) [ 29.824498] TCP: Hash tables configured (established 524288 bind 65536) [ 29.825031] UDP hash table entries: 32768 (order: 8, 1048576 bytes) [ 29.825699] UDP-Lite hash table entries: 32768 (order: 8, 1048576 bytes) [ 29.826125] NET: Registered protocol family 1 [ 29.826133] NET: Registered protocol family 44 [ 29.826242] pci 0000:00:05.0: disabled boot interrupts on device [8086:0e28] [ 29.826413] xen: registering gsi 16 triggering 0 polarity 1 [ 29.826477] xen: --> pirq=16 -> irq=16 (gsi=16) [ 29.826747] xen: registering gsi 23 triggering 0 polarity 1 [ 29.826772] xen: --> pirq=23 -> irq=23 (gsi=23) [ 29.827352] pci 0000:0e:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff] [ 29.827688] pci 0000:80:05.0: disabled boot interrupts on device [8086:0e28] [ 29.827924] PCI: CLS 64 bytes, default 64 [ 29.828007] Unpacking initramfs... [ 30.390903] Freeing initrd memory: 32800K [ 30.392358] Initialise system trusted keyrings [ 30.392381] Key type blacklist registered [ 30.392632] workingset: timestamp_bits=40 max_order=21 bucket_order=0 [ 30.394279] zbud: loaded [ 30.594230] Key type asymmetric registered [ 30.594233] Asymmetric key parser 'x509' registered [ 30.594249] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247) [ 30.594543] io scheduler noop registered [ 30.594544] io scheduler deadline registered [ 30.594595] io scheduler cfq registered (default) [ 30.594596] io scheduler mq-deadline registered [ 30.596310] xen: registering gsi 26 triggering 0 polarity 1 [ 30.596368] xen: --> pirq=26 -> irq=26 (gsi=26) [ 30.596676] xen: registering gsi 26 triggering 0 polarity 1 [ 30.596684] Already setup the GSI :26 [ 30.596922] xen: registering gsi 33 triggering 0 polarity 1 [ 30.596951] xen: --> pirq=33 -> irq=33 (gsi=33) [ 30.597232] xen: registering gsi 33 triggering 0 polarity 1 [ 30.597239] Already setup the GSI :33 [ 30.597476] xen: registering gsi 41 triggering 0 polarity 1 [ 30.597498] xen: --> pirq=41 -> irq=41 (gsi=41) [ 30.597753] xen: registering gsi 41 triggering 0 polarity 1 [ 30.597759] Already setup the GSI :41 [ 30.598025] xen: registering gsi 16 triggering 0 polarity 1 [ 30.598031] Already setup the GSI :16 [ 30.598272] xen: registering gsi 17 triggering 0 polarity 1 [ 30.598301] xen: --> pirq=17 -> irq=17 (gsi=17) [ 30.598591] xen: registering gsi 19 triggering 0 polarity 1 [ 30.598614] xen: --> pirq=19 -> irq=19 (gsi=19) [ 30.602473] xen: registering gsi 48 triggering 0 polarity 1 [ 30.602497] xen: --> pirq=48 -> irq=48 (gsi=48) [ 30.602818] xen: registering gsi 50 triggering 0 polarity 1 [ 30.602842] xen: --> pirq=50 -> irq=50 (gsi=50) [ 30.603128] xen: registering gsi 57 triggering 0 polarity 1 [ 30.603150] xen: --> pirq=57 -> irq=57 (gsi=57) [ 30.603421] xen: registering gsi 64 triggering 0 polarity 1 [ 30.603450] xen: --> pirq=64 -> irq=64 (gsi=64) [ 30.603728] xen: registering gsi 64 triggering 0 polarity 1 [ 30.603736] Already setup the GSI :64 [ 30.604149] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 [ 30.604165] intel_idle: MWAIT substates: 0x1120 [ 30.604166] intel_idle: v0.4.1 model 0x3E [ 30.604186] intel_idle: intel_idle yielding to none [ 30.604354] Monitor-Mwait will be used to enter C-1 state [ 30.640823] Warning: Processor Platform Limit not supported. [ 30.641008] ERST: Error Record Serialization Table (ERST) support is initialized. [ 30.641011] pstore: Registered erst as persistent store backend [ 30.641244] GHES: APEI firmware first mode is enabled by WHEA _OSC. [ 30.641637] xen_mcelog: /dev/mcelog registered by Xen [ 30.642320] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled [ 30.663706] 00:06: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A [ 30.685162] 00:07: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A [ 30.685855] hpet_acpi_add: no address or irqs in _CRS [ 30.685886] Linux agpgart interface v0.103 [ 30.686091] AMD IOMMUv2 driver by Joerg Roedel <jroedel at suse.de> [ 30.686092] AMD IOMMUv2 functionality not available on this system [ 30.690082] i8042: PNP: No PS/2 controller found. [ 30.690242] mousedev: PS/2 mouse device common for all mice [ 30.690314] rtc_cmos 00:02: RTC can wake from S4 [ 30.690706] rtc_cmos 00:02: registered as rtc0 [ 30.690732] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram [ 30.692043] ledtrig-cpu: registered to indicate activity on CPUs [ 30.693729] NET: Registered protocol family 10 [ 30.718391] Segment Routing with IPv6 [ 30.718414] mip6: Mobile IPv6 [ 30.718417] NET: Registered protocol family 17 [ 30.718547] mpls_gso: MPLS GSO support [ 30.720430] mce: Using 2 MCE banks [ 30.720476] sched_clock: Marking stable (30630439036, 89964110)->(30890952556, -170549410) [ 30.722654] registered taskstats version 1 [ 30.722655] Loading compiled-in X.509 certificates [ 30.763767] Loaded X.509 cert 'Debian Secure Boot CA: 6ccece7e4c6c0d1f6149f3dd27dfcc5cbb419ea1' [ 30.763782] Loaded X.509 cert 'Debian Secure Boot Signer: 00a7468def' [ 30.763833] zswap: loaded using pool lzo/zbud [ 30.765220] pstore: Using compression: deflate [ 30.765238] AppArmor: AppArmor sha1 policy hashing enabled [ 30.766213] rtc_cmos 00:02: setting system clock to 2020-06-25 08:55:57 UTC (1593075357) [ 30.768687] Freeing unused kernel image memory: 1588K [ 30.794815] Write protecting the kernel read-only data: 16384k [ 30.811567] Freeing unused kernel image memory: 2028K [ 30.812578] Freeing unused kernel image memory: 780K [ 31.253676] x86/mm: Checked W+X mappings: passed, no W+X pages found. [ 31.253681] Run /init as init process [ 31.410789] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x229850030f8, max_idle_ns: 440795254466 ns [ 31.410968] clocksource: Switched to clocksource tsc [ 31.575048] dca service started, version 1.12.1 [ 31.580691] xen: registering gsi 18 triggering 0 polarity 1 [ 31.580742] xen: --> pirq=18 -> irq=18 (gsi=18) [ 31.580932] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt [ 31.588942] SCSI subsystem initialized [ 31.594643] ixgbe: Intel(R) 10 Gigabit PCI Express Network Driver - version 5.1.0-k [ 31.594644] ixgbe: Copyright (c) 1999-2016 Intel Corporation. [ 31.594938] xen: registering gsi 34 triggering 0 polarity 1 [ 31.594972] xen: --> pirq=34 -> irq=34 (gsi=34) [ 31.597761] ACPI: bus type USB registered [ 31.597804] usbcore: registered new interface driver usbfs [ 31.597813] usbcore: registered new interface driver hub [ 31.598121] usbcore: registered new device driver usb [ 31.600425] cryptd: max_cpu_qlen set to 1000 [ 31.600647] xen: registering gsi 40 triggering 0 polarity 1 [ 31.600696] xen: --> pirq=40 -> irq=40 (gsi=40) [ 31.600701] igb: Intel(R) Gigabit Ethernet Network Driver - version 5.4.0-k [ 31.600702] igb: Copyright (c) 2007-2014 Intel Corporation. [ 31.600820] xen: registering gsi 27 triggering 0 polarity 1 [ 31.600849] xen: --> pirq=27 -> irq=27 (gsi=27) [ 31.607734] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 31.609519] libata version 3.00 loaded. [ 31.611390] ehci-pci: EHCI PCI platform driver [ 31.611605] xen: registering gsi 16 triggering 0 polarity 1 [ 31.611615] Already setup the GSI :16 [ 31.611837] ehci-pci 0000:00:1a.0: EHCI Host Controller [ 31.611849] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1 [ 31.611890] ehci-pci 0000:00:1a.0: debug port 2 [ 31.615888] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported [ 31.615979] ehci-pci 0000:00:1a.0: irq 16, io mem 0xcfc23000 [ 31.619267] AVX version of gcm_enc/dec engaged. [ 31.619269] AES CTR mode by8 optimization enabled [ 31.621137] ahci 0000:00:1f.2: version 3.0 [ 31.621272] xen: registering gsi 18 triggering 0 polarity 1 [ 31.621284] Already setup the GSI :18 [ 31.631662] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x3f impl SATA mode [ 31.631665] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems apst [ 31.634525] isci: Intel(R) C600 SAS Controller Driver - version 1.2.0 [ 31.634562] isci 0000:09:00.0: driver configured for rev: 6 silicon [ 31.634755] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00 [ 31.634988] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 4.19 [ 31.634990] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 31.634991] usb usb1: Product: EHCI Host Controller [ 31.634992] usb usb1: Manufacturer: Linux 4.19.0-9-amd64 ehci_hcd [ 31.634994] usb usb1: SerialNumber: 0000:00:1a.0 [ 31.635246] hub 1-0:1.0: USB hub found [ 31.635295] hub 1-0:1.0: 2 ports detected [ 31.635763] xen: registering gsi 23 triggering 0 polarity 1 [ 31.635774] Already setup the GSI :23 [ 31.635855] ehci-pci 0000:00:1d.0: EHCI Host Controller [ 31.635865] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2 [ 31.635900] ehci-pci 0000:00:1d.0: debug port 2 [ 31.639893] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported [ 31.639967] ehci-pci 0000:00:1d.0: irq 23, io mem 0xcfc22000 [ 31.646759] Areca RAID Controller0: Model ARC-1882, F/W V1.56 2019-07-30 [ 31.646779] arcmsr0: dma_alloc_coherent got error [ 31.654752] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00 [ 31.654864] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 4.19 [ 31.654865] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 31.654866] usb usb2: Product: EHCI Host Controller [ 31.654867] usb usb2: Manufacturer: Linux 4.19.0-9-amd64 ehci_hcd [ 31.654868] usb usb2: SerialNumber: 0000:00:1d.0 [ 31.655052] hub 2-0:1.0: USB hub found [ 31.655069] hub 2-0:1.0: 2 ports detected [ 31.675104] igb 0000:02:00.0: added PHC on eth0 [ 31.675106] igb 0000:02:00.0: Intel(R) Gigabit Ethernet Network Connection [ 31.675107] igb 0000:02:00.0: eth0: (PCIe:5.0Gb/s:Width x4) 00:25:90:e2:f6:86 [ 31.675181] igb 0000:02:00.0: eth0: PBA No: 106100-000 [ 31.675182] igb 0000:02:00.0: Using MSI-X interrupts. 8 rx queue(s), 8 tx queue(s) [ 31.675298] xen: registering gsi 30 triggering 0 polarity 1 [ 31.675340] xen: --> pirq=30 -> irq=30 (gsi=30) [ 31.695607] scsi host1: ahci [ 31.695981] scsi host2: ahci [ 31.696288] scsi host3: ahci [ 31.696597] scsi host4: ahci [ 31.696903] scsi host5: ahci [ 31.697233] scsi host6: ahci [ 31.697366] ata1: SATA max UDMA/133 abar m2048 at 0xcfc21000 port 0xcfc21100 irq 253 [ 31.697368] ata2: SATA max UDMA/133 abar m2048 at 0xcfc21000 port 0xcfc21180 irq 253 [ 31.697370] ata3: SATA max UDMA/133 abar m2048 at 0xcfc21000 port 0xcfc21200 irq 253 [ 31.697371] ata4: SATA max UDMA/133 abar m2048 at 0xcfc21000 port 0xcfc21280 irq 253 [ 31.697373] ata5: SATA max UDMA/133 abar m2048 at 0xcfc21000 port 0xcfc21300 irq 253 [ 31.697375] ata6: SATA max UDMA/133 abar m2048 at 0xcfc21000 port 0xcfc21380 irq 253 [ 31.731273] igb 0000:02:00.1: added PHC on eth1 [ 31.731275] igb 0000:02:00.1: Intel(R) Gigabit Ethernet Network Connection [ 31.731276] igb 0000:02:00.1: eth1: (PCIe:5.0Gb/s:Width x4) 00:25:90:e2:f6:87 [ 31.731350] igb 0000:02:00.1: eth1: PBA No: 106100-000 [ 31.731351] igb 0000:02:00.1: Using MSI-X interrupts. 8 rx queue(s), 8 tx queue(s) [ 31.734046] igb 0000:02:00.0 eno1: renamed from eth0 [ 31.966788] isci 0000:09:00.0: OEM parameter table found in OROM [ 31.966802] isci 0000:09:00.0: OEM SAS parameters (version: 1.0) loaded (platform) [ 31.966877] xen: registering gsi 16 triggering 0 polarity 1 [ 31.966886] Already setup the GSI :16 [ 31.969032] isci 0000:09:00.0: SCU controller 0: phy 3-0 cables: {short, short, short, short} [ 31.971490] scsi host7: isci [ 31.978797] usb 1-1: new high-speed USB device number 2 using ehci-pci [ 31.995201] igb 0000:02:00.1 eno2: renamed from eth1 [ 31.998783] usb 2-1: new high-speed USB device number 2 using ehci-pci [ 32.009673] ata2: SATA link down (SStatus 0 SControl 300) [ 32.009964] ata1: SATA link down (SStatus 0 SControl 300) [ 32.013672] ata3: SATA link down (SStatus 0 SControl 300) [ 32.014018] ata4: SATA link down (SStatus 0 SControl 300) [ 32.017680] ata6: SATA link down (SStatus 0 SControl 300) [ 32.017700] ata5: SATA link down (SStatus 0 SControl 300) [ 32.135165] usb 1-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00 [ 32.135167] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0 [ 32.135618] hub 1-1:1.0: USB hub found [ 32.135787] hub 1-1:1.0: 6 ports detected [ 32.155161] usb 2-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00 [ 32.155162] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0 [ 32.155471] hub 2-1:1.0: USB hub found [ 32.155535] hub 2-1:1.0: 8 ports detected [ 32.422804] usb 1-1.3: new full-speed USB device number 3 using ehci-pci [ 32.532299] usb 1-1.3: New USB device found, idVendor=046b, idProduct=ff10, bcdDevice= 1.00 [ 32.532301] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 32.532302] usb 1-1.3: Product: Virtual Keyboard and Mouse [ 32.532304] usb 1-1.3: Manufacturer: American Megatrends Inc. [ 32.540393] hidraw: raw HID events driver (C) Jiri Kosina [ 32.545635] usbcore: registered new interface driver usbhid [ 32.545636] usbhid: USB HID core driver [ 32.548643] input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3/1-1.3:1.0/0003:046B:FF10.0001/input/input0 [ 32.548839] hid-generic 0003:046B:FF10.0001: input,hidraw0: USB HID v1.10 Keyboard [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:1a.0-1.3/input0 [ 32.549081] input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3/1-1.3:1.1/0003:046B:FF10.0002/input/input1 [ 32.549203] hid-generic 0003:046B:FF10.0002: input,hidraw1: USB HID v1.10 Mouse [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:1a.0-1.3/input1 [ 32.780287] ixgbe 0000:05:00.0: Multiqueue Enabled: Rx Queue count = 24, Tx Queue count = 24 XDP Queue count = 0 [ 32.780606] ixgbe 0000:05:00.0: 32.000 Gb/s available PCIe bandwidth (5 GT/s x8 link) [ 32.780688] ixgbe 0000:05:00.0: MAC: 2, PHY: 1, PBA No: 0210FF-0FF [ 32.780689] ixgbe 0000:05:00.0: ac:1f:6b:8d:67:a0 [ 32.784070] ixgbe 0000:05:00.0: Intel(R) 10 Gigabit Network Connection [ 32.784241] xen: registering gsi 37 triggering 0 polarity 1 [ 32.784273] xen: --> pirq=37 -> irq=37 (gsi=37) [ 32.948235] ixgbe 0000:05:00.1: Multiqueue Enabled: Rx Queue count = 24, Tx Queue count = 24 XDP Queue count = 0 [ 32.948551] ixgbe 0000:05:00.1: 32.000 Gb/s available PCIe bandwidth (5 GT/s x8 link) [ 32.948634] ixgbe 0000:05:00.1: MAC: 2, PHY: 14, SFP+: 4, PBA No: 0210FF-0FF [ 32.948636] ixgbe 0000:05:00.1: ac:1f:6b:8d:67:a1 [ 32.952034] ixgbe 0000:05:00.1: Intel(R) 10 Gigabit Network Connection [ 32.954531] ixgbe 0000:05:00.0 enp5s0f0: renamed from eth0 [ 32.971222] ixgbe 0000:05:00.1 enp5s0f1: renamed from eth1 [ 33.182742] raid6: sse2x1 gen() 6916 MB/s [ 33.250761] raid6: sse2x1 xor() 5204 MB/s [ 33.318769] raid6: sse2x2 gen() 8477 MB/s [ 33.386755] raid6: sse2x2 xor() 5872 MB/s [ 33.454762] raid6: sse2x4 gen() 10200 MB/s [ 33.522754] raid6: sse2x4 xor() 6935 MB/s [ 33.522756] raid6: using algorithm sse2x4 gen() 10200 MB/s [ 33.522757] raid6: .... xor() 6935 MB/s, rmw enabled [ 33.522758] raid6: using ssse3x2 recovery algorithm [ 33.524362] xor: automatically using best checksumming function avx [ 33.525805] async_tx: api initialized (async) [ 1930.102464] IPv6: ADDRCONF(NETDEV_UP): eno1: link is not ready [ 1933.875061] igb 0000:02:00.0 eno1: igb: eno1 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX/TX [ 1933.875206] IPv6: ADDRCONF(NETDEV_CHANGE): eno1: link becomes ready -------------- next part -------------- Linux version 4.19.0-9-amd64 (debian-kernel at lists.debian.org) (gcc version 8.3.0 (Debian 8.3.0-6)) #1 SMP Debian 4.19.118-2+deb10u1 (2020-06-07) Command line: placeholder root=/dev/mapper/system--ganggang-root ro quiet x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers' x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers' x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers' x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256 x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format. Released 0 page(s) BIOS-provided physical RAM map: Xen: [mem 0x0000000000000000-0x000000000009bfff] usable Xen: [mem 0x000000000009c000-0x00000000000fffff] reserved Xen: [mem 0x0000000000100000-0x000000002de34fff] usable Xen: [mem 0x000000002de35000-0x000000002dfe6fff] reserved Xen: [mem 0x000000002dfe7000-0x000000002e1dcfff] ACPI NVS Xen: [mem 0x000000002e1dd000-0x000000002f359fff] reserved Xen: [mem 0x000000002f35a000-0x000000002f7fffff] ACPI NVS Xen: [mem 0x0000000030000000-0x000000003fffffff] reserved Xen: [mem 0x00000000cfffc000-0x00000000cfffcfff] reserved Xen: [mem 0x00000000fbffe000-0x00000000fbffefff] reserved Xen: [mem 0x00000000fec00000-0x00000000fec01fff] reserved Xen: [mem 0x00000000fec40000-0x00000000fec40fff] reserved Xen: [mem 0x00000000fed1c000-0x00000000fed3ffff] reserved Xen: [mem 0x00000000fee00000-0x00000000feefffff] reserved Xen: [mem 0x00000000ff000000-0x00000000ffffffff] reserved Xen: [mem 0x0000000100000000-0x000000107fffffff] usable NX (Execute Disable) protection: active SMBIOS 2.7 present. DMI: Supermicro X9DRW/X9DRW, BIOS 3.3 09/13/2018 Hypervisor detected: Xen PV tsc: Detected 2400.026 MHz processor e820: update [mem 0x00000000-0x00000fff] usable ==> reserved e820: remove [mem 0x000a0000-0x000fffff] usable last_pfn = 0x1080000 max_arch_pfn = 0x400000000 Disabled x86/PAT: MTRRs disabled, skipping PAT initialization too. x86/PAT: Configuration [0-7]: WB WT UC- UC WC WP UC UC last_pfn = 0x2de35 max_arch_pfn = 0x400000000 Kernel/User page tables isolation: disabled on XEN PV. BRK [0x02801000, 0x02801fff] PGTABLE BRK [0x02802000, 0x02802fff] PGTABLE BRK [0x02803000, 0x02803fff] PGTABLE BRK [0x02804000, 0x02804fff] PGTABLE BRK [0x02805000, 0x02805fff] PGTABLE BRK [0x02806000, 0x02806fff] PGTABLE BRK [0x02807000, 0x02807fff] PGTABLE BRK [0x02808000, 0x02808fff] PGTABLE BRK [0x02809000, 0x02809fff] PGTABLE BRK [0x0280a000, 0x0280afff] PGTABLE BRK [0x0280b000, 0x0280bfff] PGTABLE BRK [0x0280c000, 0x0280cfff] PGTABLE RAMDISK: [mem 0x04000000-0x06007fff] ACPI: Early table checksum verification disabled ACPI: RSDP 0x00000000000F0490 000024 (v02 SUPERM) ACPI: XSDT 0x000000002E100090 00009C (v01 SUPERM SMCI--MB 00000001 AMI 00010013) ACPI: FACP 0x000000002E10AFC8 0000F4 (v04 SUPERM SMCI--MB 00000001 AMI 00010013) ACPI: DSDT 0x000000002E1001C0 00AE06 (v02 SUPERM SMCI--MB 00000000 INTL 20091112) ACPI: FACS 0x000000002E1D4080 000040 ACPI: APIC 0x000000002E10B0C0 0001B4 (v03 00000001 AMI 00010013) ACPI: FPDT 0x000000002E10B278 000044 (v01 00000001 AMI 00010013) ACPI: SRAT 0x000000002E10B2C0 000430 (v01 A M I AMI SRAT 00000001 AMI. 00000000) ACPI: SLIT 0x000000002E10B6F0 000030 (v01 A M I AMI SLIT 00000000 AMI. 00000000) ACPI: HPET 0x000000002E10B720 000038 (v01 SUPERM SMCI--MB 00000001 AMI. 00000005) ACPI: PRAD 0x000000002E10B758 0000CD (v02 PRADID PRADTID 00000001 MSFT 04000000) ACPI: SPMI 0x000000002E10B828 000040 (v05 A M I OEMSPMI 00000000 AMI. 00000000) ACPI: SSDT 0x000000002E10B868 0C7AE8 (v02 INTEL CpuPm 00004000 INTL 20091112) ACPI: EINJ 0x000000002E1D3350 000130 (v01 AMI AMI EINJ 00000000 00000000) ACPI: ERST 0x000000002E1D3480 000230 (v01 AMIER AMI ERST 00000000 00000000) ACPI: HEST 0x000000002E1D36B0 00027C (v01 AMI AMI HEST 00000000 00000000) ACPI: BERT 0x000000002E1D3930 000030 (v01 AMI AMI BERT 00000000 00000000) ACPI: RMAD 0x000000002E1D3960 000188 (v01 A M I OEMDMAR 00000001 INTL 00000001) ACPI: MCFG 0x000000002E1D3AE8 00003C (v01 SUPERM SMCI--MB 00000001 MSFT 00000097) ACPI: Local APIC address 0xfee00000 Setting APIC routing to Xen PV. NUMA turned off Faking a node at [mem 0x0000000000000000-0x000000107fffffff] NODE_DATA(0) allocated [mem 0x17826f000-0x178273fff] Zone ranges: DMA [mem 0x0000000000001000-0x0000000000ffffff] DMA32 [mem 0x0000000001000000-0x00000000ffffffff] Normal [mem 0x0000000100000000-0x000000107fffffff] Device empty Movable zone start for each node Early memory node ranges node 0: [mem 0x0000000000001000-0x000000000009bfff] node 0: [mem 0x0000000000100000-0x000000002de34fff] node 0: [mem 0x0000000100000000-0x000000107fffffff] Zeroed struct page in unavailable ranges: 8752 pages Initmem setup node 0 [mem 0x0000000000001000-0x000000107fffffff] On node 0 totalpages: 16440784 DMA zone: 64 pages used for memmap DMA zone: 21 pages reserved DMA zone: 3995 pages, LIFO batch:0 DMA32 zone: 2873 pages used for memmap DMA32 zone: 183861 pages, LIFO batch:63 Normal zone: 253952 pages used for memmap Normal zone: 16252928 pages, LIFO batch:63 p2m virtual area at (____ptrval____), size is 40000000 Remapped 860719 page(s) ACPI: PM-Timer IO Port: 0x408 ACPI: Local APIC address 0xfee00000 ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1]) ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1]) ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1]) ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1]) ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1]) ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1]) ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1]) ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1]) ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1]) ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1]) ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1]) ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1]) ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1]) ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1]) ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1]) ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1]) ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1]) ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1]) ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1]) ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1]) ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1]) ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1]) ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1]) IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23 IOAPIC[1]: apic_id 2, version 32, address 0xfec01000, GSI 24-47 IOAPIC[2]: apic_id 3, version 32, address 0xfec40000, GSI 48-71 ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) ACPI: IRQ0 used by override. ACPI: IRQ9 used by override. Using ACPI (MADT) for SMP configuration information ACPI: HPET id: 0x8086a701 base: 0xfed00000 smpboot: Allowing 24 CPUs, 0 hotplug CPUs PM: Registered nosave memory: [mem 0x00000000-0x00000fff] PM: Registered nosave memory: [mem 0x0009c000-0x000fffff] PM: Registered nosave memory: [mem 0x2de35000-0x2dfe6fff] PM: Registered nosave memory: [mem 0x2dfe7000-0x2e1dcfff] PM: Registered nosave memory: [mem 0x2e1dd000-0x2f359fff] PM: Registered nosave memory: [mem 0x2f35a000-0x2f7fffff] PM: Registered nosave memory: [mem 0x2f800000-0x2fffffff] PM: Registered nosave memory: [mem 0x30000000-0x3fffffff] PM: Registered nosave memory: [mem 0x40000000-0xcfffbfff] PM: Registered nosave memory: [mem 0xcfffc000-0xcfffcfff] PM: Registered nosave memory: [mem 0xcfffd000-0xfbffdfff] PM: Registered nosave memory: [mem 0xfbffe000-0xfbffefff] PM: Registered nosave memory: [mem 0xfbfff000-0xfebfffff] PM: Registered nosave memory: [mem 0xfec00000-0xfec01fff] PM: Registered nosave memory: [mem 0xfec02000-0xfec3ffff] PM: Registered nosave memory: [mem 0xfec40000-0xfec40fff] PM: Registered nosave memory: [mem 0xfec41000-0xfed1bfff] PM: Registered nosave memory: [mem 0xfed1c000-0xfed3ffff] PM: Registered nosave memory: [mem 0xfed40000-0xfedfffff] PM: Registered nosave memory: [mem 0xfee00000-0xfeefffff] PM: Registered nosave memory: [mem 0xfef00000-0xfeffffff] PM: Registered nosave memory: [mem 0xff000000-0xffffffff] [mem 0x40000000-0xcfffbfff] available for PCI devices Booting paravirtualized kernel on Xen Xen version: 4.11.4-pre (preserve-AD) clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns random: get_random_bytes called from start_kernel+0x93/0x52c with crng_init=0 setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:24 nr_node_ids:1 percpu: Embedded 45 pages/cpu s144408 r8192 d31720 u262144 pcpu-alloc: s144408 r8192 d31720 u262144 alloc=1*2097152 pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 pcpu-alloc: [0] 16 17 18 19 20 21 22 23 xen: PV spinlocks enabled PV qspinlock hash table entries: 256 (order: 0, 4096 bytes) Built 1 zonelists, mobility grouping on. Total pages: 16183874 Policy zone: Normal Kernel command line: placeholder root=/dev/mapper/system--ganggang-root ro quiet log_buf_len individual max cpu contribution: 4096 bytes log_buf_len total cpu_extra contributions: 94208 bytes log_buf_len min size: 131072 bytes log_buf_len: 262144 bytes early log buf free: 118860(90%) software IO TLB: mapped [mem 0x24dbc0000-0x251bc0000] (64MB) Memory: 4875528K/65763136K available (10252K kernel code, 1241K rwdata, 3316K rodata, 1588K init, 2276K bss, 60887608K reserved, 0K cma-reserved) SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=24, Nodes=1 ftrace: allocating 31883 entries in 125 pages rcu: Hierarchical RCU implementation. rcu: RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=24. rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=24 Using NULL legacy PIC NR_IRQS: 33024, nr_irqs: 1432, preallocated irqs: 0 xen:events: Using FIFO-based ABI xen: --> pirq=1 -> irq=1 (gsi=1) xen: --> pirq=2 -> irq=2 (gsi=2) xen: --> pirq=3 -> irq=3 (gsi=3) xen: --> pirq=4 -> irq=4 (gsi=4) xen: --> pirq=5 -> irq=5 (gsi=5) xen: --> pirq=6 -> irq=6 (gsi=6) xen: --> pirq=7 -> irq=7 (gsi=7) xen: --> pirq=8 -> irq=8 (gsi=8) xen: --> pirq=9 -> irq=9 (gsi=9) xen: --> pirq=10 -> irq=10 (gsi=10) xen: --> pirq=11 -> irq=11 (gsi=11) xen: --> pirq=12 -> irq=12 (gsi=12) xen: --> pirq=13 -> irq=13 (gsi=13) xen: --> pirq=14 -> irq=14 (gsi=14) xen: --> pirq=15 -> irq=15 (gsi=15) Console: colour VGA+ 80x25 console [tty0] enabled console [hvc0] enabled ACPI: Core revision 20180810 clocksource: xen: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns Xen: using vcpuop timer interface installing Xen timer for CPU 0 clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x229850030f8, max_idle_ns: 440795254466 ns Calibrating delay loop (skipped), value calculated using timer frequency.. 4800.05 BogoMIPS (lpj=9600104) pid_max: default: 32768 minimum: 301 Security Framework initialized Yama: disabled by default; enable with sysctl kernel.yama.* AppArmor: AppArmor initialized Dentry cache hash table entries: 8388608 (order: 14, 67108864 bytes) Inode-cache hash table entries: 4194304 (order: 13, 33554432 bytes) Mount-cache hash table entries: 131072 (order: 8, 1048576 bytes) Mountpoint-cache hash table entries: 131072 (order: 8, 1048576 bytes) Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8 Last level dTLB entries: 4KB 512, 2MB 0, 4MB 0, 1GB 4 Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization Spectre V2 : Mitigation: Full generic retpoline Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch Spectre V2 : Enabling Restricted Speculation for firmware calls Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier Spectre V2 : User space: Mitigation: STIBP via seccomp and prctl Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp MDS: Vulnerable: Clear CPU buffers attempted, no microcode Freeing SMP alternatives memory: 24K cpu 0 spinlock event irq 73 VPMU disabled by hypervisor. Performance Events: unsupported p6 CPU model 62 no PMU driver, software events only. rcu: Hierarchical SRCU implementation. random: crng done (trusting CPU's manufacturer) NMI watchdog: Perf NMI watchdog permanently disabled smp: Bringing up secondary CPUs ... installing Xen timer for CPU 1 cpu 1 spinlock event irq 85 MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details. installing Xen timer for CPU 2 cpu 2 spinlock event irq 92 installing Xen timer for CPU 3 cpu 3 spinlock event irq 99 installing Xen timer for CPU 4 cpu 4 spinlock event irq 106 installing Xen timer for CPU 5 cpu 5 spinlock event irq 113 installing Xen timer for CPU 6 cpu 6 spinlock event irq 120 installing Xen timer for CPU 7 cpu 7 spinlock event irq 127 installing Xen timer for CPU 8 cpu 8 spinlock event irq 134 installing Xen timer for CPU 9 cpu 9 spinlock event irq 141 installing Xen timer for CPU 10 cpu 10 spinlock event irq 148 installing Xen timer for CPU 11 cpu 11 spinlock event irq 155 installing Xen timer for CPU 12 cpu 12 spinlock event irq 162 installing Xen timer for CPU 13 cpu 13 spinlock event irq 169 installing Xen timer for CPU 14 cpu 14 spinlock event irq 176 installing Xen timer for CPU 15 cpu 15 spinlock event irq 183 installing Xen timer for CPU 16 cpu 16 spinlock event irq 190 installing Xen timer for CPU 17 cpu 17 spinlock event irq 197 installing Xen timer for CPU 18 cpu 18 spinlock event irq 204 installing Xen timer for CPU 19 cpu 19 spinlock event irq 211 installing Xen timer for CPU 20 cpu 20 spinlock event irq 218 installing Xen timer for CPU 21 cpu 21 spinlock event irq 225 installing Xen timer for CPU 22 cpu 22 spinlock event irq 232 installing Xen timer for CPU 23 cpu 23 spinlock event irq 239 smp: Brought up 1 node, 24 CPUs smpboot: Max logical packages: 1 devtmpfs: initialized x86/mm: Memory block size: 2048MB PM: Registering ACPI NVS region [mem 0x2dfe7000-0x2e1dcfff] (2056192 bytes) PM: Registering ACPI NVS region [mem 0x2f35a000-0x2f7fffff] (4874240 bytes) clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns futex hash table entries: 8192 (order: 7, 524288 bytes) pinctrl core: initialized pinctrl subsystem NET: Registered protocol family 16 xen:grant_table: Grant tables using version 1 layout Grant table initialized audit: initializing netlink subsys (disabled) audit: type=2000 audit(1593075356.270:1): state=initialized audit_enabled=0 res=1 ACPI FADT declares the system doesn't support PCIe ASPM, so disable it ACPI: bus type PCI registered acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0x30000000-0x3fffffff] (base 0x30000000) PCI: MMCONFIG at [mem 0x30000000-0x3fffffff] reserved in E820 PCI: Using configuration type 1 for base access ACPI: Added _OSI(Module Device) ACPI: Added _OSI(Processor Device) ACPI: Added _OSI(3.0 _SCP Extensions) ACPI: Added _OSI(Processor Aggregator Device) ACPI: Added _OSI(Linux-Dell-Video) ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio) ACPI: 2 ACPI AML tables successfully acquired and loaded xen: registering gsi 9 triggering 0 polarity 0 ACPI: Dynamic OEM Table Load: ACPI: Interpreter enabled ACPI: (supports S0 S1 S4 S5) ACPI: Using IOAPIC for interrupt routing HEST: Enabling Firmware First mode for corrected errors. mce: [Firmware Bug]: Ignoring request to disable invalid MCA bank 2. mce: [Firmware Bug]: Ignoring request to disable invalid MCA bank 3. mce: [Firmware Bug]: Ignoring request to disable invalid MCA bank 4. mce: [Firmware Bug]: Ignoring request to disable invalid MCA bank 5. mce: [Firmware Bug]: Ignoring request to disable invalid MCA bank 6. mce: [Firmware Bug]: Ignoring request to disable invalid MCA bank 7. mce: [Firmware Bug]: Ignoring request to disable invalid MCA bank 8. mce: [Firmware Bug]: Ignoring request to disable invalid MCA bank 9. mce: [Firmware Bug]: Ignoring request to disable invalid MCA bank 10. mce: [Firmware Bug]: Ignoring request to disable invalid MCA bank 11. mce: [Firmware Bug]: Ignoring request to disable invalid MCA bank 12. mce: [Firmware Bug]: Ignoring request to disable invalid MCA bank 13. mce: [Firmware Bug]: Ignoring request to disable invalid MCA bank 14. HEST: Table parsing has been initialized. PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug ACPI: Enabled 4 GPEs in block 00 to 3F ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7e]) acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug PME AER LTR] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PCIeCapability] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration PCI host bridge to bus 0000:00 pci_bus 0000:00: root bus resource [io 0x0000-0x03af window] pci_bus 0000:00: root bus resource [io 0x03e0-0x0cf7 window] pci_bus 0000:00: root bus resource [io 0x03b0-0x03df window] pci_bus 0000:00: root bus resource [io 0x0d00-0x9fff window] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window] pci_bus 0000:00: root bus resource [mem 0xfed08000-0xfed08fff window] pci_bus 0000:00: root bus resource [mem 0xfed0e000-0xfed0ffff window] pci_bus 0000:00: root bus resource [mem 0x30000000-0xcfffffff window] pci_bus 0000:00: root bus resource [bus 00-7e] pci 0000:00:00.0: [8086:0e00] type 00 class 0x060000 pci 0000:00:00.0: PME# supported from D0 D3hot D3cold pci 0000:00:01.0: [8086:0e02] type 01 class 0x060400 pci 0000:00:01.0: PME# supported from D0 D3hot D3cold pci 0000:00:01.1: [8086:0e03] type 01 class 0x060400 pci 0000:00:01.1: PME# supported from D0 D3hot D3cold pci 0000:00:02.0: [8086:0e04] type 01 class 0x060400 pci 0000:00:02.0: PME# supported from D0 D3hot D3cold pci 0000:00:02.2: [8086:0e06] type 01 class 0x060400 pci 0000:00:02.2: PME# supported from D0 D3hot D3cold pci 0000:00:03.0: [8086:0e08] type 01 class 0x060400 pci 0000:00:03.0: enabling Extended Tags pci 0000:00:03.0: PME# supported from D0 D3hot D3cold pci 0000:00:03.2: [8086:0e0a] type 01 class 0x060400 pci 0000:00:03.2: PME# supported from D0 D3hot D3cold pci 0000:00:04.0: [8086:0e20] type 00 class 0x088000 pci 0000:00:04.0: reg 0x10: [mem 0xcfc1c000-0xcfc1ffff 64bit] pci 0000:00:04.1: [8086:0e21] type 00 class 0x088000 pci 0000:00:04.1: reg 0x10: [mem 0xcfc18000-0xcfc1bfff 64bit] pci 0000:00:04.2: [8086:0e22] type 00 class 0x088000 pci 0000:00:04.2: reg 0x10: [mem 0xcfc14000-0xcfc17fff 64bit] pci 0000:00:04.3: [8086:0e23] type 00 class 0x088000 pci 0000:00:04.3: reg 0x10: [mem 0xcfc10000-0xcfc13fff 64bit] pci 0000:00:04.4: [8086:0e24] type 00 class 0x088000 pci 0000:00:04.4: reg 0x10: [mem 0xcfc0c000-0xcfc0ffff 64bit] pci 0000:00:04.5: [8086:0e25] type 00 class 0x088000 pci 0000:00:04.5: reg 0x10: [mem 0xcfc08000-0xcfc0bfff 64bit] pci 0000:00:04.6: [8086:0e26] type 00 class 0x088000 pci 0000:00:04.6: reg 0x10: [mem 0xcfc04000-0xcfc07fff 64bit] pci 0000:00:04.7: [8086:0e27] type 00 class 0x088000 pci 0000:00:04.7: reg 0x10: [mem 0xcfc00000-0xcfc03fff 64bit] pci 0000:00:05.0: [8086:0e28] type 00 class 0x088000 pci 0000:00:05.2: [8086:0e2a] type 00 class 0x088000 pci 0000:00:05.4: [8086:0e2c] type 00 class 0x080020 pci 0000:00:05.4: reg 0x10: [mem 0xcfc25000-0xcfc25fff] pci 0000:00:11.0: [8086:1d3e] type 01 class 0x060400 pci 0000:00:11.0: PME# supported from D0 D3hot D3cold pci 0000:00:16.0: [8086:1d3a] type 00 class 0x078000 pci 0000:00:16.0: reg 0x10: [mem 0xfed0e000-0xfed0e00f 64bit] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold pci 0000:00:16.1: [8086:1d3b] type 00 class 0x078000 pci 0000:00:16.1: reg 0x10: [mem 0xfed0f000-0xfed0f00f 64bit] pci 0000:00:16.1: PME# supported from D0 D3hot D3cold pci 0000:00:1a.0: [8086:1d2d] type 00 class 0x0c0320 pci 0000:00:1a.0: reg 0x10: [mem 0xcfc23000-0xcfc233ff] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold pci 0000:00:1c.0: [8086:1d10] type 01 class 0x060400 pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold pci 0000:00:1c.0: Enabling MPC IRBNCE pci 0000:00:1c.0: Intel PCH root port ACS workaround enabled pci 0000:00:1c.7: [8086:1d1e] type 01 class 0x060400 pci 0000:00:1c.7: PME# supported from D0 D3hot D3cold pci 0000:00:1c.7: Enabling MPC IRBNCE pci 0000:00:1c.7: Intel PCH root port ACS workaround enabled pci 0000:00:1d.0: [8086:1d26] type 00 class 0x0c0320 pci 0000:00:1d.0: reg 0x10: [mem 0xcfc22000-0xcfc223ff] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401 pci 0000:00:1f.0: [8086:1d41] type 00 class 0x060100 pci 0000:00:1f.2: [8086:1d02] type 00 class 0x010601 pci 0000:00:1f.2: reg 0x10: [io 0x9050-0x9057] pci 0000:00:1f.2: reg 0x14: [io 0x9040-0x9043] pci 0000:00:1f.2: reg 0x18: [io 0x9030-0x9037] pci 0000:00:1f.2: reg 0x1c: [io 0x9020-0x9023] pci 0000:00:1f.2: reg 0x20: [io 0x9000-0x901f] pci 0000:00:1f.2: reg 0x24: [mem 0xcfc21000-0xcfc217ff] pci 0000:00:1f.2: PME# supported from D3hot pci 0000:00:1f.3: [8086:1d22] type 00 class 0x0c0500 pci 0000:00:1f.3: reg 0x10: [mem 0xcfc20000-0xcfc200ff 64bit] pci 0000:00:1f.3: reg 0x20: [io 0x1180-0x119f] pci 0000:00:1f.6: [8086:1d24] type 00 class 0x118000 pci 0000:00:1f.6: reg 0x10: [mem 0xfed08000-0xfed08fff 64bit] pci 0000:00:01.0: PCI bridge to [bus 01] pci 0000:02:00.0: [8086:1521] type 00 class 0x020000 pci 0000:02:00.0: reg 0x10: [mem 0xcfb20000-0xcfb3ffff] pci 0000:02:00.0: reg 0x18: [io 0x8020-0x803f] pci 0000:02:00.0: reg 0x1c: [mem 0xcfb44000-0xcfb47fff] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold pci 0000:02:00.0: reg 0x184: [mem 0x00000000-0x00003fff 64bit pref] pci 0000:02:00.0: VF(n) BAR0 space: [mem 0x00000000-0x0001ffff 64bit pref] (contains BAR0 for 8 VFs) pci 0000:02:00.0: reg 0x190: [mem 0x00000000-0x00003fff 64bit pref] pci 0000:02:00.0: VF(n) BAR3 space: [mem 0x00000000-0x0001ffff 64bit pref] (contains BAR3 for 8 VFs) pci 0000:02:00.1: [8086:1521] type 00 class 0x020000 pci 0000:02:00.1: reg 0x10: [mem 0xcfb00000-0xcfb1ffff] pci 0000:02:00.1: reg 0x18: [io 0x8000-0x801f] pci 0000:02:00.1: reg 0x1c: [mem 0xcfb40000-0xcfb43fff] pci 0000:02:00.1: PME# supported from D0 D3hot D3cold pci 0000:02:00.1: reg 0x184: [mem 0x00000000-0x00003fff 64bit pref] pci 0000:02:00.1: VF(n) BAR0 space: [mem 0x00000000-0x0001ffff 64bit pref] (contains BAR0 for 8 VFs) pci 0000:02:00.1: reg 0x190: [mem 0x00000000-0x00003fff 64bit pref] pci 0000:02:00.1: VF(n) BAR3 space: [mem 0x00000000-0x0001ffff 64bit pref] (contains BAR3 for 8 VFs) pci 0000:00:01.1: ASPM: current common clock configuration is broken, reconfiguring pci 0000:00:01.1: PCI bridge to [bus 02-03] pci 0000:00:01.1: bridge window [io 0x8000-0x8fff] pci 0000:00:01.1: bridge window [mem 0xcfb00000-0xcfbfffff] pci 0000:00:02.0: PCI bridge to [bus 04] pci 0000:05:00.0: [8086:10fb] type 00 class 0x020000 pci 0000:05:00.0: reg 0x10: [mem 0xce680000-0xce6fffff 64bit pref] pci 0000:05:00.0: reg 0x18: [io 0x7020-0x703f] pci 0000:05:00.0: reg 0x20: [mem 0xce704000-0xce707fff 64bit pref] pci 0000:05:00.0: reg 0x30: [mem 0xcfa80000-0xcfafffff pref] pci 0000:05:00.0: PME# supported from D0 D3hot D3cold pci 0000:05:00.0: reg 0x184: [mem 0x00000000-0x00003fff 64bit pref] pci 0000:05:00.0: VF(n) BAR0 space: [mem 0x00000000-0x000fffff 64bit pref] (contains BAR0 for 64 VFs) pci 0000:05:00.0: reg 0x190: [mem 0x00000000-0x00003fff 64bit pref] pci 0000:05:00.0: VF(n) BAR3 space: [mem 0x00000000-0x000fffff 64bit pref] (contains BAR3 for 64 VFs) pci 0000:05:00.1: [8086:10fb] type 00 class 0x020000 pci 0000:05:00.1: reg 0x10: [mem 0xce600000-0xce67ffff 64bit pref] pci 0000:05:00.1: reg 0x18: [io 0x7000-0x701f] pci 0000:05:00.1: reg 0x20: [mem 0xce700000-0xce703fff 64bit pref] pci 0000:05:00.1: reg 0x30: [mem 0xcfa00000-0xcfa7ffff pref] pci 0000:05:00.1: PME# supported from D0 D3hot D3cold pci 0000:05:00.1: reg 0x184: [mem 0x00000000-0x00003fff 64bit pref] pci 0000:05:00.1: VF(n) BAR0 space: [mem 0x00000000-0x000fffff 64bit pref] (contains BAR0 for 64 VFs) pci 0000:05:00.1: reg 0x190: [mem 0x00000000-0x00003fff 64bit pref] pci 0000:05:00.1: VF(n) BAR3 space: [mem 0x00000000-0x000fffff 64bit pref] (contains BAR3 for 64 VFs) pci 0000:00:02.2: PCI bridge to [bus 05-06] pci 0000:00:02.2: bridge window [io 0x7000-0x7fff] pci 0000:00:02.2: bridge window [mem 0xcfa00000-0xcfafffff] pci 0000:00:02.2: bridge window [mem 0xce600000-0xce7fffff 64bit pref] pci 0000:07:00.0: [17d3:1880] type 00 class 0x010400 pci 0000:07:00.0: reg 0x10: [io 0x6000-0x60ff] pci 0000:07:00.0: reg 0x14: [mem 0xcf9c0000-0xcf9cffff 64bit] pci 0000:07:00.0: reg 0x1c: [mem 0xcf980000-0xcf9bffff 64bit] pci 0000:07:00.0: reg 0x30: [mem 0xcf900000-0xcf97ffff pref] pci 0000:07:00.0: enabling Extended Tags pci 0000:00:03.0: PCI bridge to [bus 07] pci 0000:00:03.0: bridge window [io 0x6000-0x6fff] pci 0000:00:03.0: bridge window [mem 0xcf900000-0xcf9fffff] pci 0000:00:03.2: PCI bridge to [bus 08] pci 0000:09:00.0: [8086:1d6b] type 00 class 0x010700 pci 0000:09:00.0: reg 0x10: [mem 0xce400000-0xce403fff 64bit pref] pci 0000:09:00.0: reg 0x18: [mem 0xce000000-0xce3fffff 64bit pref] pci 0000:09:00.0: reg 0x20: [io 0x5000-0x50ff] pci 0000:09:00.0: enabling Extended Tags pci 0000:09:00.0: reg 0x164: [mem 0x00000000-0x00003fff 64bit pref] pci 0000:09:00.0: VF(n) BAR0 space: [mem 0x00000000-0x0007bfff 64bit pref] (contains BAR0 for 31 VFs) pci 0000:00:11.0: PCI bridge to [bus 09] pci 0000:00:11.0: bridge window [io 0x5000-0x5fff] pci 0000:00:11.0: bridge window [mem 0xce000000-0xce4fffff 64bit pref] pci 0000:00:1c.0: PCI bridge to [bus 0a] pci 0000:0b:00.0: [1912:0013] type 01 class 0x060400 pci 0000:0b:00.0: enabling Extended Tags pci 0000:0b:00.0: PME# supported from D0 D3hot D3cold pci 0000:00:1c.7: PCI bridge to [bus 0b-0f] pci 0000:00:1c.7: bridge window [mem 0xcf000000-0xcf8fffff] pci 0000:00:1c.7: bridge window [mem 0xcd000000-0xcdffffff 64bit pref] pci 0000:0c:00.0: [1912:0013] type 01 class 0x060400 pci 0000:0c:00.0: enabling Extended Tags pci 0000:0c:00.0: PME# supported from D0 D3hot D3cold pci 0000:0c:01.0: [1912:0013] type 01 class 0x060400 pci 0000:0c:01.0: enabling Extended Tags pci 0000:0c:01.0: PME# supported from D0 D3hot D3cold pci 0000:0b:00.0: PCI bridge to [bus 0c-0f] pci 0000:0b:00.0: bridge window [mem 0xcf000000-0xcf8fffff] pci 0000:0b:00.0: bridge window [mem 0xcd000000-0xcdffffff 64bit pref] pci 0000:0d:00.0: [1912:0012] type 01 class 0x060400 pci 0000:0d:00.0: enabling Extended Tags pci 0000:0c:00.0: PCI bridge to [bus 0d-0e] pci 0000:0c:00.0: bridge window [mem 0xcf000000-0xcf8fffff] pci 0000:0c:00.0: bridge window [mem 0xcd000000-0xcdffffff 64bit pref] pci_bus 0000:0e: extended config space not accessible pci 0000:0e:00.0: [102b:0534] type 00 class 0x030000 pci 0000:0e:00.0: reg 0x10: [mem 0xcd000000-0xcdffffff pref] pci 0000:0e:00.0: reg 0x14: [mem 0xcf800000-0xcf803fff] pci 0000:0e:00.0: reg 0x18: [mem 0xcf000000-0xcf7fffff] pci 0000:0d:00.0: PCI bridge to [bus 0e] pci 0000:0d:00.0: bridge window [mem 0xcf000000-0xcf8fffff] pci 0000:0d:00.0: bridge window [mem 0xcd000000-0xcdffffff 64bit pref] pci 0000:0c:01.0: PCI bridge to [bus 0f] pci_bus 0000:10: extended config space not accessible pci 0000:00:1e.0: PCI bridge to [bus 10] (subtractive decode) pci 0000:00:1e.0: bridge window [io 0x0000-0x03af window] (subtractive decode) pci 0000:00:1e.0: bridge window [io 0x03e0-0x0cf7 window] (subtractive decode) pci 0000:00:1e.0: bridge window [io 0x03b0-0x03df window] (subtractive decode) pci 0000:00:1e.0: bridge window [io 0x0d00-0x9fff window] (subtractive decode) pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode) pci 0000:00:1e.0: bridge window [mem 0x000c0000-0x000dffff window] (subtractive decode) pci 0000:00:1e.0: bridge window [mem 0xfed08000-0xfed08fff window] (subtractive decode) pci 0000:00:1e.0: bridge window [mem 0xfed0e000-0xfed0ffff window] (subtractive decode) pci 0000:00:1e.0: bridge window [mem 0x30000000-0xcfffffff window] (subtractive decode) xen: registering gsi 13 triggering 1 polarity 0 ACPI: PCI Root Bridge [UNC0] (domain 0000 [bus 7f]) acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI] acpi PNP0A03:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR] acpi PNP0A03:00: FADT indicates ASPM is unsupported, using BIOS configuration PCI host bridge to bus 0000:7f pci_bus 0000:7f: root bus resource [bus 7f] pci 0000:7f:08.0: [8086:0e80] type 00 class 0x088000 pci 0000:7f:09.0: [8086:0e90] type 00 class 0x088000 pci 0000:7f:0a.0: [8086:0ec0] type 00 class 0x088000 pci 0000:7f:0a.1: [8086:0ec1] type 00 class 0x088000 pci 0000:7f:0a.2: [8086:0ec2] type 00 class 0x088000 pci 0000:7f:0a.3: [8086:0ec3] type 00 class 0x088000 pci 0000:7f:0b.0: [8086:0e1e] type 00 class 0x088000 pci 0000:7f:0b.3: [8086:0e1f] type 00 class 0x088000 pci 0000:7f:0c.0: [8086:0ee0] type 00 class 0x088000 pci 0000:7f:0c.1: [8086:0ee2] type 00 class 0x088000 pci 0000:7f:0c.2: [8086:0ee4] type 00 class 0x088000 pci 0000:7f:0d.0: [8086:0ee1] type 00 class 0x088000 pci 0000:7f:0d.1: [8086:0ee3] type 00 class 0x088000 pci 0000:7f:0d.2: [8086:0ee5] type 00 class 0x088000 pci 0000:7f:0e.0: [8086:0ea0] type 00 class 0x088000 pci 0000:7f:0e.1: [8086:0e30] type 00 class 0x110100 pci 0000:7f:0f.0: [8086:0ea8] type 00 class 0x088000 pci 0000:7f:0f.1: [8086:0e71] type 00 class 0x088000 pci 0000:7f:0f.2: [8086:0eaa] type 00 class 0x088000 pci 0000:7f:0f.3: [8086:0eab] type 00 class 0x088000 pci 0000:7f:0f.4: [8086:0eac] type 00 class 0x088000 pci 0000:7f:0f.5: [8086:0ead] type 00 class 0x088000 pci 0000:7f:10.0: [8086:0eb0] type 00 class 0x088000 pci 0000:7f:10.1: [8086:0eb1] type 00 class 0x088000 pci 0000:7f:10.2: [8086:0eb2] type 00 class 0x088000 pci 0000:7f:10.3: [8086:0eb3] type 00 class 0x088000 pci 0000:7f:10.4: [8086:0eb4] type 00 class 0x088000 pci 0000:7f:10.5: [8086:0eb5] type 00 class 0x088000 pci 0000:7f:10.6: [8086:0eb6] type 00 class 0x088000 pci 0000:7f:10.7: [8086:0eb7] type 00 class 0x088000 pci 0000:7f:13.0: [8086:0e1d] type 00 class 0x088000 pci 0000:7f:13.1: [8086:0e34] type 00 class 0x110100 pci 0000:7f:13.4: [8086:0e81] type 00 class 0x088000 pci 0000:7f:13.5: [8086:0e36] type 00 class 0x110100 pci 0000:7f:16.0: [8086:0ec8] type 00 class 0x088000 pci 0000:7f:16.1: [8086:0ec9] type 00 class 0x088000 pci 0000:7f:16.2: [8086:0eca] type 00 class 0x088000 ACPI: PCI Root Bridge [PCI1] (domain 0000 [bus 80-fe]) acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI] acpi PNP0A08:01: _OSC: platform does not support [SHPCHotplug PME AER LTR] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PCIeCapability] acpi PNP0A08:01: FADT indicates ASPM is unsupported, using BIOS configuration PCI host bridge to bus 0000:80 pci_bus 0000:80: root bus resource [io 0xa000-0xffff window] pci_bus 0000:80: root bus resource [mem 0xd0000000-0xfbffffff window] pci_bus 0000:80: root bus resource [bus 80-fe] pci 0000:80:00.0: [8086:0e01] type 01 class 0x060400 pci 0000:80:00.0: PME# supported from D0 D3hot D3cold pci 0000:80:01.0: [8086:0e02] type 01 class 0x060400 pci 0000:80:01.0: PME# supported from D0 D3hot D3cold pci 0000:80:02.0: [8086:0e04] type 01 class 0x060400 pci 0000:80:02.0: PME# supported from D0 D3hot D3cold pci 0000:80:03.0: [8086:0e08] type 01 class 0x060400 pci 0000:80:03.0: enabling Extended Tags pci 0000:80:03.0: PME# supported from D0 D3hot D3cold pci 0000:80:03.2: [8086:0e0a] type 01 class 0x060400 pci 0000:80:03.2: PME# supported from D0 D3hot D3cold pci 0000:80:04.0: [8086:0e20] type 00 class 0x088000 pci 0000:80:04.0: reg 0x10: [mem 0xfbf1c000-0xfbf1ffff 64bit] pci 0000:80:04.1: [8086:0e21] type 00 class 0x088000 pci 0000:80:04.1: reg 0x10: [mem 0xfbf18000-0xfbf1bfff 64bit] pci 0000:80:04.2: [8086:0e22] type 00 class 0x088000 pci 0000:80:04.2: reg 0x10: [mem 0xfbf14000-0xfbf17fff 64bit] pci 0000:80:04.3: [8086:0e23] type 00 class 0x088000 pci 0000:80:04.3: reg 0x10: [mem 0xfbf10000-0xfbf13fff 64bit] pci 0000:80:04.4: [8086:0e24] type 00 class 0x088000 pci 0000:80:04.4: reg 0x10: [mem 0xfbf0c000-0xfbf0ffff 64bit] pci 0000:80:04.5: [8086:0e25] type 00 class 0x088000 pci 0000:80:04.5: reg 0x10: [mem 0xfbf08000-0xfbf0bfff 64bit] pci 0000:80:04.6: [8086:0e26] type 00 class 0x088000 pci 0000:80:04.6: reg 0x10: [mem 0xfbf04000-0xfbf07fff 64bit] pci 0000:80:04.7: [8086:0e27] type 00 class 0x088000 pci 0000:80:04.7: reg 0x10: [mem 0xfbf00000-0xfbf03fff 64bit] pci 0000:80:05.0: [8086:0e28] type 00 class 0x088000 pci 0000:80:05.2: [8086:0e2a] type 00 class 0x088000 pci 0000:80:05.4: [8086:0e2c] type 00 class 0x080020 pci 0000:80:05.4: reg 0x10: [mem 0xfbf20000-0xfbf20fff] pci 0000:80:00.0: PCI bridge to [bus 81] pci 0000:80:01.0: PCI bridge to [bus 82] pci 0000:80:02.0: PCI bridge to [bus 83] pci 0000:80:03.0: PCI bridge to [bus 84] pci 0000:80:03.2: PCI bridge to [bus 85] ACPI: PCI Root Bridge [UNC1] (domain 0000 [bus ff]) acpi PNP0A03:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI] acpi PNP0A03:01: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR] acpi PNP0A03:01: FADT indicates ASPM is unsupported, using BIOS configuration PCI host bridge to bus 0000:ff pci_bus 0000:ff: root bus resource [bus ff] pci 0000:ff:08.0: [8086:0e80] type 00 class 0x088000 pci 0000:ff:09.0: [8086:0e90] type 00 class 0x088000 pci 0000:ff:0a.0: [8086:0ec0] type 00 class 0x088000 pci 0000:ff:0a.1: [8086:0ec1] type 00 class 0x088000 pci 0000:ff:0a.2: [8086:0ec2] type 00 class 0x088000 pci 0000:ff:0a.3: [8086:0ec3] type 00 class 0x088000 pci 0000:ff:0b.0: [8086:0e1e] type 00 class 0x088000 pci 0000:ff:0b.3: [8086:0e1f] type 00 class 0x088000 pci 0000:ff:0c.0: [8086:0ee0] type 00 class 0x088000 pci 0000:ff:0c.1: [8086:0ee2] type 00 class 0x088000 pci 0000:ff:0c.2: [8086:0ee4] type 00 class 0x088000 pci 0000:ff:0d.0: [8086:0ee1] type 00 class 0x088000 pci 0000:ff:0d.1: [8086:0ee3] type 00 class 0x088000 pci 0000:ff:0d.2: [8086:0ee5] type 00 class 0x088000 pci 0000:ff:0e.0: [8086:0ea0] type 00 class 0x088000 pci 0000:ff:0e.1: [8086:0e30] type 00 class 0x110100 pci 0000:ff:0f.0: [8086:0ea8] type 00 class 0x088000 pci 0000:ff:0f.1: [8086:0e71] type 00 class 0x088000 pci 0000:ff:0f.2: [8086:0eaa] type 00 class 0x088000 pci 0000:ff:0f.3: [8086:0eab] type 00 class 0x088000 pci 0000:ff:0f.4: [8086:0eac] type 00 class 0x088000 pci 0000:ff:0f.5: [8086:0ead] type 00 class 0x088000 pci 0000:ff:10.0: [8086:0eb0] type 00 class 0x088000 pci 0000:ff:10.1: [8086:0eb1] type 00 class 0x088000 pci 0000:ff:10.2: [8086:0eb2] type 00 class 0x088000 pci 0000:ff:10.3: [8086:0eb3] type 00 class 0x088000 pci 0000:ff:10.4: [8086:0eb4] type 00 class 0x088000 pci 0000:ff:10.5: [8086:0eb5] type 00 class 0x088000 pci 0000:ff:10.6: [8086:0eb6] type 00 class 0x088000 pci 0000:ff:10.7: [8086:0eb7] type 00 class 0x088000 pci 0000:ff:13.0: [8086:0e1d] type 00 class 0x088000 pci 0000:ff:13.1: [8086:0e34] type 00 class 0x110100 pci 0000:ff:13.4: [8086:0e81] type 00 class 0x088000 pci 0000:ff:13.5: [8086:0e36] type 00 class 0x110100 pci 0000:ff:16.0: [8086:0ec8] type 00 class 0x088000 pci 0000:ff:16.1: [8086:0ec9] type 00 class 0x088000 pci 0000:ff:16.2: [8086:0eca] type 00 class 0x088000 ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12 14 15) ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 *10 11 12 14 15) ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 *5 6 10 11 12 14 15) ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 *11 12 14 15) ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 12 14 15) *0 ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0 ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 11 12 14 15) *0 ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 *7 10 11 12 14 15) xen:balloon: Initialising balloon driver pci 0000:0e:00.0: vgaarb: setting as boot VGA device pci 0000:0e:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none pci 0000:0e:00.0: vgaarb: bridge control possible vgaarb: loaded pps_core: LinuxPPS API ver. 1 registered pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti at linux.it> PTP clock support registered EDAC MC: Ver: 3.0.0 PCI: Using ACPI for IRQ routing PCI: pci_cache_line_size set to 64 bytes e820: reserve RAM buffer [mem 0x0009c000-0x0009ffff] e820: reserve RAM buffer [mem 0x2de35000-0x2fffffff] clocksource: Switched to clocksource tsc-early VFS: Disk quotas dquot_6.6.0 VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) hugetlbfs: disabling because there are no supported hugepage sizes AppArmor: AppArmor Filesystem Enabled pnp: PnP ACPI init system 00:00: [mem 0xfc000000-0xfcffffff] has been reserved system 00:00: [mem 0xfd000000-0xfdffffff] has been reserved system 00:00: [mem 0xfe000000-0xfeafffff] has been reserved system 00:00: [mem 0xfeb00000-0xfebfffff] has been reserved system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active) system 00:01: [mem 0xcfffc000-0xcfffdfff] could not be reserved system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active) xen: registering gsi 8 triggering 1 polarity 0 pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active) pnp 00:03: disabling [mem 0x00000400-0x000004ff] because it overlaps 0000:02:00.0 BAR 7 [mem 0x00000000-0x0001ffff 64bit pref] pnp 00:03: disabling [mem 0x00000400-0x000004ff disabled] because it overlaps 0000:02:00.0 BAR 10 [mem 0x00000000-0x0001ffff 64bit pref] pnp 00:03: disabling [mem 0x00000400-0x000004ff disabled] because it overlaps 0000:02:00.1 BAR 7 [mem 0x00000000-0x0001ffff 64bit pref] pnp 00:03: disabling [mem 0x00000400-0x000004ff disabled] because it overlaps 0000:02:00.1 BAR 10 [mem 0x00000000-0x0001ffff 64bit pref] pnp 00:03: disabling [mem 0x00000400-0x000004ff disabled] because it overlaps 0000:05:00.0 BAR 7 [mem 0x00000000-0x000fffff 64bit pref] pnp 00:03: disabling [mem 0x00000400-0x000004ff disabled] because it overlaps 0000:05:00.0 BAR 10 [mem 0x00000000-0x000fffff 64bit pref] pnp 00:03: disabling [mem 0x00000400-0x000004ff disabled] because it overlaps 0000:05:00.1 BAR 7 [mem 0x00000000-0x000fffff 64bit pref] pnp 00:03: disabling [mem 0x00000400-0x000004ff disabled] because it overlaps 0000:05:00.1 BAR 10 [mem 0x00000000-0x000fffff 64bit pref] pnp 00:03: disabling [mem 0x00000400-0x000004ff disabled] because it overlaps 0000:09:00.0 BAR 7 [mem 0x00000000-0x0007bfff 64bit pref] system 00:03: [io 0x04d0-0x04d1] has been reserved system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active) system 00:04: [io 0x0a00-0x0a07] has been reserved system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active) system 00:05: [io 0x0370-0x0371] has been reserved system 00:05: [io 0x0a00-0x0a07] has been reserved system 00:05: [io 0x0a10-0x0a3f] has been reserved system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active) xen: registering gsi 4 triggering 1 polarity 0 pnp 00:06: [dma 0 disabled] pnp 00:06: Plug and Play ACPI device, IDs PNP0501 (active) xen: registering gsi 3 triggering 1 polarity 0 pnp 00:07: [dma 0 disabled] pnp 00:07: Plug and Play ACPI device, IDs PNP0501 (active) system 00:08: [io 0x0400-0x0453] has been reserved system 00:08: [io 0x0458-0x047f] has been reserved system 00:08: [io 0x1180-0x119f] has been reserved system 00:08: [io 0x0500-0x057f] has been reserved system 00:08: [mem 0xfed1c000-0xfed1ffff] has been reserved system 00:08: [mem 0xfec00000-0xfecfffff] could not be reserved system 00:08: [mem 0xff000000-0xffffffff] has been reserved system 00:08: Plug and Play ACPI device, IDs PNP0c01 (active) system 00:09: [io 0x0454-0x0457] has been reserved system 00:09: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active) system 00:0a: Plug and Play ACPI device, IDs PNP0c01 (active) system 00:0b: [mem 0xfbffe000-0xfbffffff] could not be reserved system 00:0b: Plug and Play ACPI device, IDs PNP0c02 (active) pnp 00:0c: disabling [mem 0x00000000-0x0009ffff] because it overlaps 0000:05:00.0 BAR 7 [mem 0x00000000-0x000fffff 64bit pref] pnp 00:0c: disabling [mem 0x00000000-0x0009ffff disabled] because it overlaps 0000:05:00.0 BAR 10 [mem 0x00000000-0x000fffff 64bit pref] pnp 00:0c: disabling [mem 0x00000000-0x0009ffff disabled] because it overlaps 0000:05:00.1 BAR 7 [mem 0x00000000-0x000fffff 64bit pref] pnp 00:0c: disabling [mem 0x00000000-0x0009ffff disabled] because it overlaps 0000:05:00.1 BAR 10 [mem 0x00000000-0x000fffff 64bit pref] system 00:0c: Plug and Play ACPI device, IDs PNP0c01 (active) pnp: PnP ACPI: found 13 devices PM-Timer failed consistency check (0xffffff) - aborting. pci_bus 0000:00: max bus depth: 4 pci_try_num: 5 pci 0000:00:01.1: BAR 15: assigned [mem 0x40000000-0x400fffff 64bit pref] pci 0000:00:11.0: BAR 14: assigned [mem 0x40100000-0x401fffff] pci 0000:00:01.0: PCI bridge to [bus 01] pci 0000:02:00.0: BAR 7: assigned [mem 0x40000000-0x4001ffff 64bit pref] pci 0000:02:00.0: BAR 10: assigned [mem 0x40020000-0x4003ffff 64bit pref] pci 0000:02:00.1: BAR 7: assigned [mem 0x40040000-0x4005ffff 64bit pref] pci 0000:02:00.1: BAR 10: assigned [mem 0x40060000-0x4007ffff 64bit pref] pci 0000:00:01.1: PCI bridge to [bus 02-03] pci 0000:00:01.1: bridge window [io 0x8000-0x8fff] pci 0000:00:01.1: bridge window [mem 0xcfb00000-0xcfbfffff] pci 0000:00:01.1: bridge window [mem 0x40000000-0x400fffff 64bit pref] pci 0000:00:02.0: PCI bridge to [bus 04] pci 0000:05:00.0: BAR 7: no space for [mem size 0x00100000 64bit pref] pci 0000:05:00.0: BAR 7: failed to assign [mem size 0x00100000 64bit pref] pci 0000:05:00.0: BAR 10: no space for [mem size 0x00100000 64bit pref] pci 0000:05:00.0: BAR 10: failed to assign [mem size 0x00100000 64bit pref] pci 0000:05:00.1: BAR 7: no space for [mem size 0x00100000 64bit pref] pci 0000:05:00.1: BAR 7: failed to assign [mem size 0x00100000 64bit pref] pci 0000:05:00.1: BAR 10: no space for [mem size 0x00100000 64bit pref] pci 0000:05:00.1: BAR 10: failed to assign [mem size 0x00100000 64bit pref] pci 0000:00:02.2: PCI bridge to [bus 05-06] pci 0000:00:02.2: bridge window [io 0x7000-0x7fff] pci 0000:00:02.2: bridge window [mem 0xcfa00000-0xcfafffff] pci 0000:00:02.2: bridge window [mem 0xce600000-0xce7fffff 64bit pref] pci 0000:00:03.0: PCI bridge to [bus 07] pci 0000:00:03.0: bridge window [io 0x6000-0x6fff] pci 0000:00:03.0: bridge window [mem 0xcf900000-0xcf9fffff] pci 0000:00:03.2: PCI bridge to [bus 08] pci 0000:09:00.0: BAR 7: assigned [mem 0xce404000-0xce47ffff 64bit pref] pci 0000:00:11.0: PCI bridge to [bus 09] pci 0000:00:11.0: bridge window [io 0x5000-0x5fff] pci 0000:00:11.0: bridge window [mem 0x40100000-0x401fffff] pci 0000:00:11.0: bridge window [mem 0xce000000-0xce4fffff 64bit pref] pci 0000:00:1c.0: PCI bridge to [bus 0a] pci 0000:0d:00.0: PCI bridge to [bus 0e] pci 0000:0d:00.0: bridge window [mem 0xcf000000-0xcf8fffff] pci 0000:0d:00.0: bridge window [mem 0xcd000000-0xcdffffff 64bit pref] pci 0000:0c:00.0: PCI bridge to [bus 0d-0e] pci 0000:0c:00.0: bridge window [mem 0xcf000000-0xcf8fffff] pci 0000:0c:00.0: bridge window [mem 0xcd000000-0xcdffffff 64bit pref] pci 0000:0c:01.0: PCI bridge to [bus 0f] pci 0000:0b:00.0: PCI bridge to [bus 0c-0f] pci 0000:0b:00.0: bridge window [mem 0xcf000000-0xcf8fffff] pci 0000:0b:00.0: bridge window [mem 0xcd000000-0xcdffffff 64bit pref] pci 0000:00:1c.7: PCI bridge to [bus 0b-0f] pci 0000:00:1c.7: bridge window [mem 0xcf000000-0xcf8fffff] pci 0000:00:1c.7: bridge window [mem 0xcd000000-0xcdffffff 64bit pref] pci 0000:00:1e.0: PCI bridge to [bus 10] pci_bus 0000:00: No. 2 try to assign unassigned res release child resource [mem 0xce600000-0xce67ffff 64bit pref] release child resource [mem 0xce680000-0xce6fffff 64bit pref] release child resource [mem 0xce700000-0xce703fff 64bit pref] release child resource [mem 0xce704000-0xce707fff 64bit pref] pci 0000:00:02.2: resource 15 [mem 0xce600000-0xce7fffff 64bit pref] released pci 0000:00:02.2: PCI bridge to [bus 05-06] pci 0000:00:02.2: BAR 15: assigned [mem 0x40200000-0x407fffff 64bit pref] pci 0000:00:01.0: PCI bridge to [bus 01] pci 0000:00:01.1: PCI bridge to [bus 02-03] pci 0000:00:01.1: bridge window [io 0x8000-0x8fff] pci 0000:00:01.1: bridge window [mem 0xcfb00000-0xcfbfffff] pci 0000:00:01.1: bridge window [mem 0x40000000-0x400fffff 64bit pref] pci 0000:00:02.0: PCI bridge to [bus 04] pci 0000:05:00.0: BAR 0: assigned [mem 0x40200000-0x4027ffff 64bit pref] pci 0000:05:00.1: BAR 0: assigned [mem 0x40280000-0x402fffff 64bit pref] pci 0000:05:00.0: BAR 4: assigned [mem 0x40300000-0x40303fff 64bit pref] pci 0000:05:00.0: BAR 7: assigned [mem 0x40304000-0x40403fff 64bit pref] pci 0000:05:00.0: BAR 10: assigned [mem 0x40404000-0x40503fff 64bit pref] pci 0000:05:00.1: BAR 4: assigned [mem 0x40504000-0x40507fff 64bit pref] pci 0000:05:00.1: BAR 7: assigned [mem 0x40508000-0x40607fff 64bit pref] pci 0000:05:00.1: BAR 10: assigned [mem 0x40608000-0x40707fff 64bit pref] pci 0000:00:02.2: PCI bridge to [bus 05-06] pci 0000:00:02.2: bridge window [io 0x7000-0x7fff] pci 0000:00:02.2: bridge window [mem 0xcfa00000-0xcfafffff] pci 0000:00:02.2: bridge window [mem 0x40200000-0x407fffff 64bit pref] pci 0000:00:03.0: PCI bridge to [bus 07] pci 0000:00:03.0: bridge window [io 0x6000-0x6fff] pci 0000:00:03.0: bridge window [mem 0xcf900000-0xcf9fffff] pci 0000:00:03.2: PCI bridge to [bus 08] pci 0000:00:11.0: PCI bridge to [bus 09] pci 0000:00:11.0: bridge window [io 0x5000-0x5fff] pci 0000:00:11.0: bridge window [mem 0x40100000-0x401fffff] pci 0000:00:11.0: bridge window [mem 0xce000000-0xce4fffff 64bit pref] pci 0000:00:1c.0: PCI bridge to [bus 0a] pci 0000:0d:00.0: PCI bridge to [bus 0e] pci 0000:0d:00.0: bridge window [mem 0xcf000000-0xcf8fffff] pci 0000:0d:00.0: bridge window [mem 0xcd000000-0xcdffffff 64bit pref] pci 0000:0c:00.0: PCI bridge to [bus 0d-0e] pci 0000:0c:00.0: bridge window [mem 0xcf000000-0xcf8fffff] pci 0000:0c:00.0: bridge window [mem 0xcd000000-0xcdffffff 64bit pref] pci 0000:0c:01.0: PCI bridge to [bus 0f] pci 0000:0b:00.0: PCI bridge to [bus 0c-0f] pci 0000:0b:00.0: bridge window [mem 0xcf000000-0xcf8fffff] pci 0000:0b:00.0: bridge window [mem 0xcd000000-0xcdffffff 64bit pref] pci 0000:00:1c.7: PCI bridge to [bus 0b-0f] pci 0000:00:1c.7: bridge window [mem 0xcf000000-0xcf8fffff] pci 0000:00:1c.7: bridge window [mem 0xcd000000-0xcdffffff 64bit pref] pci 0000:00:1e.0: PCI bridge to [bus 10] pci_bus 0000:00: resource 4 [io 0x0000-0x03af window] pci_bus 0000:00: resource 5 [io 0x03e0-0x0cf7 window] pci_bus 0000:00: resource 6 [io 0x03b0-0x03df window] pci_bus 0000:00: resource 7 [io 0x0d00-0x9fff window] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window] pci_bus 0000:00: resource 10 [mem 0xfed08000-0xfed08fff window] pci_bus 0000:00: resource 11 [mem 0xfed0e000-0xfed0ffff window] pci_bus 0000:00: resource 12 [mem 0x30000000-0xcfffffff window] pci_bus 0000:02: resource 0 [io 0x8000-0x8fff] pci_bus 0000:02: resource 1 [mem 0xcfb00000-0xcfbfffff] pci_bus 0000:02: resource 2 [mem 0x40000000-0x400fffff 64bit pref] pci_bus 0000:05: resource 0 [io 0x7000-0x7fff] pci_bus 0000:05: resource 1 [mem 0xcfa00000-0xcfafffff] pci_bus 0000:05: resource 2 [mem 0x40200000-0x407fffff 64bit pref] pci_bus 0000:07: resource 0 [io 0x6000-0x6fff] pci_bus 0000:07: resource 1 [mem 0xcf900000-0xcf9fffff] pci_bus 0000:09: resource 0 [io 0x5000-0x5fff] pci_bus 0000:09: resource 1 [mem 0x40100000-0x401fffff] pci_bus 0000:09: resource 2 [mem 0xce000000-0xce4fffff 64bit pref] pci_bus 0000:0b: resource 1 [mem 0xcf000000-0xcf8fffff] pci_bus 0000:0b: resource 2 [mem 0xcd000000-0xcdffffff 64bit pref] pci_bus 0000:0c: resource 1 [mem 0xcf000000-0xcf8fffff] pci_bus 0000:0c: resource 2 [mem 0xcd000000-0xcdffffff 64bit pref] pci_bus 0000:0d: resource 1 [mem 0xcf000000-0xcf8fffff] pci_bus 0000:0d: resource 2 [mem 0xcd000000-0xcdffffff 64bit pref] pci_bus 0000:0e: resource 1 [mem 0xcf000000-0xcf8fffff] pci_bus 0000:0e: resource 2 [mem 0xcd000000-0xcdffffff 64bit pref] pci_bus 0000:10: resource 4 [io 0x0000-0x03af window] pci_bus 0000:10: resource 5 [io 0x03e0-0x0cf7 window] pci_bus 0000:10: resource 6 [io 0x03b0-0x03df window] pci_bus 0000:10: resource 7 [io 0x0d00-0x9fff window] pci_bus 0000:10: resource 8 [mem 0x000a0000-0x000bffff window] pci_bus 0000:10: resource 9 [mem 0x000c0000-0x000dffff window] pci_bus 0000:10: resource 10 [mem 0xfed08000-0xfed08fff window] pci_bus 0000:10: resource 11 [mem 0xfed0e000-0xfed0ffff window] pci_bus 0000:10: resource 12 [mem 0x30000000-0xcfffffff window] pci 0000:80:00.0: PCI bridge to [bus 81] pci 0000:80:01.0: PCI bridge to [bus 82] pci 0000:80:02.0: PCI bridge to [bus 83] pci 0000:80:03.0: PCI bridge to [bus 84] pci 0000:80:03.2: PCI bridge to [bus 85] pci_bus 0000:80: resource 4 [io 0xa000-0xffff window] pci_bus 0000:80: resource 5 [mem 0xd0000000-0xfbffffff window] NET: Registered protocol family 2 tcp_listen_portaddr_hash hash table entries: 32768 (order: 7, 524288 bytes) TCP established hash table entries: 524288 (order: 10, 4194304 bytes) TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) TCP: Hash tables configured (established 524288 bind 65536) UDP hash table entries: 32768 (order: 8, 1048576 bytes) UDP-Lite hash table entries: 32768 (order: 8, 1048576 bytes) NET: Registered protocol family 1 NET: Registered protocol family 44 pci 0000:00:05.0: disabled boot interrupts on device [8086:0e28] xen: registering gsi 16 triggering 0 polarity 1 xen: --> pirq=16 -> irq=16 (gsi=16) xen: registering gsi 23 triggering 0 polarity 1 xen: --> pirq=23 -> irq=23 (gsi=23) pci 0000:0e:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff] pci 0000:80:05.0: disabled boot interrupts on device [8086:0e28] PCI: CLS 64 bytes, default 64 Unpacking initramfs... Freeing initrd memory: 32800K Initialise system trusted keyrings Key type blacklist registered workingset: timestamp_bits=40 max_order=21 bucket_order=0 zbud: loaded Key type asymmetric registered Asymmetric key parser 'x509' registered Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247) io scheduler noop registered io scheduler deadline registered io scheduler cfq registered (default) io scheduler mq-deadline registered xen: registering gsi 26 triggering 0 polarity 1 xen: --> pirq=26 -> irq=26 (gsi=26) xen: registering gsi 26 triggering 0 polarity 1 Already setup the GSI :26 xen: registering gsi 33 triggering 0 polarity 1 xen: --> pirq=33 -> irq=33 (gsi=33) xen: registering gsi 33 triggering 0 polarity 1 Already setup the GSI :33 xen: registering gsi 41 triggering 0 polarity 1 xen: --> pirq=41 -> irq=41 (gsi=41) xen: registering gsi 41 triggering 0 polarity 1 Already setup the GSI :41 xen: registering gsi 16 triggering 0 polarity 1 Already setup the GSI :16 xen: registering gsi 17 triggering 0 polarity 1 xen: --> pirq=17 -> irq=17 (gsi=17) xen: registering gsi 19 triggering 0 polarity 1 xen: --> pirq=19 -> irq=19 (gsi=19) xen: registering gsi 48 triggering 0 polarity 1 xen: --> pirq=48 -> irq=48 (gsi=48) xen: registering gsi 50 triggering 0 polarity 1 xen: --> pirq=50 -> irq=50 (gsi=50) xen: registering gsi 57 triggering 0 polarity 1 xen: --> pirq=57 -> irq=57 (gsi=57) xen: registering gsi 64 triggering 0 polarity 1 xen: --> pirq=64 -> irq=64 (gsi=64) xen: registering gsi 64 triggering 0 polarity 1 Already setup the GSI :64 shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 intel_idle: MWAIT substates: 0x1120 intel_idle: v0.4.1 model 0x3E intel_idle: intel_idle yielding to none Monitor-Mwait will be used to enter C-1 state Warning: Processor Platform Limit not supported. ERST: Error Record Serialization Table (ERST) support is initialized. pstore: Registered erst as persistent store backend GHES: APEI firmware first mode is enabled by WHEA _OSC. xen_mcelog: /dev/mcelog registered by Xen Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled 00:06: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A 00:07: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A hpet_acpi_add: no address or irqs in _CRS Linux agpgart interface v0.103 AMD IOMMUv2 driver by Joerg Roedel <jroedel at suse.de> AMD IOMMUv2 functionality not available on this system i8042: PNP: No PS/2 controller found. mousedev: PS/2 mouse device common for all mice rtc_cmos 00:02: RTC can wake from S4 rtc_cmos 00:02: registered as rtc0 rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram ledtrig-cpu: registered to indicate activity on CPUs NET: Registered protocol family 10 Segment Routing with IPv6 mip6: Mobile IPv6 NET: Registered protocol family 17 mpls_gso: MPLS GSO support mce: Using 2 MCE banks sched_clock: Marking stable (30630439036, 89964110)->(30890952556, -170549410) registered taskstats version 1 Loading compiled-in X.509 certificates Loaded X.509 cert 'Debian Secure Boot CA: 6ccece7e4c6c0d1f6149f3dd27dfcc5cbb419ea1' Loaded X.509 cert 'Debian Secure Boot Signer: 00a7468def' zswap: loaded using pool lzo/zbud pstore: Using compression: deflate AppArmor: AppArmor sha1 policy hashing enabled rtc_cmos 00:02: setting system clock to 2020-06-25 08:55:57 UTC (1593075357) Freeing unused kernel image memory: 1588K Write protecting the kernel read-only data: 16384k Freeing unused kernel image memory: 2028K Freeing unused kernel image memory: 780K x86/mm: Checked W+X mappings: passed, no W+X pages found. Run /init as init process clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x229850030f8, max_idle_ns: 440795254466 ns clocksource: Switched to clocksource tsc dca service started, version 1.12.1 xen: registering gsi 18 triggering 0 polarity 1 xen: --> pirq=18 -> irq=18 (gsi=18) i801_smbus 0000:00:1f.3: SMBus using PCI interrupt SCSI subsystem initialized ixgbe: Intel(R) 10 Gigabit PCI Express Network Driver - version 5.1.0-k ixgbe: Copyright (c) 1999-2016 Intel Corporation. xen: registering gsi 34 triggering 0 polarity 1 xen: --> pirq=34 -> irq=34 (gsi=34) ACPI: bus type USB registered usbcore: registered new interface driver usbfs usbcore: registered new interface driver hub usbcore: registered new device driver usb cryptd: max_cpu_qlen set to 1000 xen: registering gsi 40 triggering 0 polarity 1 xen: --> pirq=40 -> irq=40 (gsi=40) igb: Intel(R) Gigabit Ethernet Network Driver - version 5.4.0-k igb: Copyright (c) 2007-2014 Intel Corporation. xen: registering gsi 27 triggering 0 polarity 1 xen: --> pirq=27 -> irq=27 (gsi=27) ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver libata version 3.00 loaded. ehci-pci: EHCI PCI platform driver xen: registering gsi 16 triggering 0 polarity 1 Already setup the GSI :16 ehci-pci 0000:00:1a.0: EHCI Host Controller ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1 ehci-pci 0000:00:1a.0: debug port 2 ehci-pci 0000:00:1a.0: cache line size of 64 is not supported ehci-pci 0000:00:1a.0: irq 16, io mem 0xcfc23000 AVX version of gcm_enc/dec engaged. AES CTR mode by8 optimization enabled ahci 0000:00:1f.2: version 3.0 xen: registering gsi 18 triggering 0 polarity 1 Already setup the GSI :18 ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x3f impl SATA mode ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems apst isci: Intel(R) C600 SAS Controller Driver - version 1.2.0 isci 0000:09:00.0: driver configured for rev: 6 silicon ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00 usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 4.19 usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 usb usb1: Product: EHCI Host Controller usb usb1: Manufacturer: Linux 4.19.0-9-amd64 ehci_hcd usb usb1: SerialNumber: 0000:00:1a.0 hub 1-0:1.0: USB hub found hub 1-0:1.0: 2 ports detected xen: registering gsi 23 triggering 0 polarity 1 Already setup the GSI :23 ehci-pci 0000:00:1d.0: EHCI Host Controller ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2 ehci-pci 0000:00:1d.0: debug port 2 ehci-pci 0000:00:1d.0: cache line size of 64 is not supported ehci-pci 0000:00:1d.0: irq 23, io mem 0xcfc22000 Areca RAID Controller0: Model ARC-1882, F/W V1.56 2019-07-30 arcmsr0: dma_alloc_coherent got error ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00 usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 4.19 usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 usb usb2: Product: EHCI Host Controller usb usb2: Manufacturer: Linux 4.19.0-9-amd64 ehci_hcd usb usb2: SerialNumber: 0000:00:1d.0 hub 2-0:1.0: USB hub found hub 2-0:1.0: 2 ports detected igb 0000:02:00.0: added PHC on eth0 igb 0000:02:00.0: Intel(R) Gigabit Ethernet Network Connection igb 0000:02:00.0: eth0: (PCIe:5.0Gb/s:Width x4) 00:25:90:e2:f6:86 igb 0000:02:00.0: eth0: PBA No: 106100-000 igb 0000:02:00.0: Using MSI-X interrupts. 8 rx queue(s), 8 tx queue(s) xen: registering gsi 30 triggering 0 polarity 1 xen: --> pirq=30 -> irq=30 (gsi=30) scsi host1: ahci scsi host2: ahci scsi host3: ahci scsi host4: ahci scsi host5: ahci scsi host6: ahci ata1: SATA max UDMA/133 abar m2048 at 0xcfc21000 port 0xcfc21100 irq 253 ata2: SATA max UDMA/133 abar m2048 at 0xcfc21000 port 0xcfc21180 irq 253 ata3: SATA max UDMA/133 abar m2048 at 0xcfc21000 port 0xcfc21200 irq 253 ata4: SATA max UDMA/133 abar m2048 at 0xcfc21000 port 0xcfc21280 irq 253 ata5: SATA max UDMA/133 abar m2048 at 0xcfc21000 port 0xcfc21300 irq 253 ata6: SATA max UDMA/133 abar m2048 at 0xcfc21000 port 0xcfc21380 irq 253 igb 0000:02:00.1: added PHC on eth1 igb 0000:02:00.1: Intel(R) Gigabit Ethernet Network Connection igb 0000:02:00.1: eth1: (PCIe:5.0Gb/s:Width x4) 00:25:90:e2:f6:87 igb 0000:02:00.1: eth1: PBA No: 106100-000 igb 0000:02:00.1: Using MSI-X interrupts. 8 rx queue(s), 8 tx queue(s) igb 0000:02:00.0 eno1: renamed from eth0 isci 0000:09:00.0: OEM parameter table found in OROM isci 0000:09:00.0: OEM SAS parameters (version: 1.0) loaded (platform) xen: registering gsi 16 triggering 0 polarity 1 Already setup the GSI :16 isci 0000:09:00.0: SCU controller 0: phy 3-0 cables: {short, short, short, short} scsi host7: isci usb 1-1: new high-speed USB device number 2 using ehci-pci igb 0000:02:00.1 eno2: renamed from eth1 usb 2-1: new high-speed USB device number 2 using ehci-pci ata2: SATA link down (SStatus 0 SControl 300) ata1: SATA link down (SStatus 0 SControl 300) ata3: SATA link down (SStatus 0 SControl 300) ata4: SATA link down (SStatus 0 SControl 300) ata6: SATA link down (SStatus 0 SControl 300) ata5: SATA link down (SStatus 0 SControl 300) usb 1-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00 usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0 hub 1-1:1.0: USB hub found hub 1-1:1.0: 6 ports detected usb 2-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00 usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0 hub 2-1:1.0: USB hub found hub 2-1:1.0: 8 ports detected usb 1-1.3: new full-speed USB device number 3 using ehci-pci usb 1-1.3: New USB device found, idVendor=046b, idProduct=ff10, bcdDevice= 1.00 usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0 usb 1-1.3: Product: Virtual Keyboard and Mouse usb 1-1.3: Manufacturer: American Megatrends Inc. hidraw: raw HID events driver (C) Jiri Kosina usbcore: registered new interface driver usbhid usbhid: USB HID core driver input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3/1-1.3:1.0/0003:046B:FF10.0001/input/input0 hid-generic 0003:046B:FF10.0001: input,hidraw0: USB HID v1.10 Keyboard [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:1a.0-1.3/input0 input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3/1-1.3:1.1/0003:046B:FF10.0002/input/input1 hid-generic 0003:046B:FF10.0002: input,hidraw1: USB HID v1.10 Mouse [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:1a.0-1.3/input1 ixgbe 0000:05:00.0: Multiqueue Enabled: Rx Queue count = 24, Tx Queue count = 24 XDP Queue count = 0 ixgbe 0000:05:00.0: 32.000 Gb/s available PCIe bandwidth (5 GT/s x8 link) ixgbe 0000:05:00.0: MAC: 2, PHY: 1, PBA No: 0210FF-0FF ixgbe 0000:05:00.0: ac:1f:6b:8d:67:a0 ixgbe 0000:05:00.0: Intel(R) 10 Gigabit Network Connection xen: registering gsi 37 triggering 0 polarity 1 xen: --> pirq=37 -> irq=37 (gsi=37) ixgbe 0000:05:00.1: Multiqueue Enabled: Rx Queue count = 24, Tx Queue count = 24 XDP Queue count = 0 ixgbe 0000:05:00.1: 32.000 Gb/s available PCIe bandwidth (5 GT/s x8 link) ixgbe 0000:05:00.1: MAC: 2, PHY: 14, SFP+: 4, PBA No: 0210FF-0FF ixgbe 0000:05:00.1: ac:1f:6b:8d:67:a1 ixgbe 0000:05:00.1: Intel(R) 10 Gigabit Network Connection ixgbe 0000:05:00.0 enp5s0f0: renamed from eth0 ixgbe 0000:05:00.1 enp5s0f1: renamed from eth1 raid6: sse2x1 gen() 6916 MB/s raid6: sse2x1 xor() 5204 MB/s raid6: sse2x2 gen() 8477 MB/s raid6: sse2x2 xor() 5872 MB/s raid6: sse2x4 gen() 10200 MB/s raid6: sse2x4 xor() 6935 MB/s raid6: using algorithm sse2x4 gen() 10200 MB/s raid6: .... xor() 6935 MB/s, rmw enabled raid6: using ssse3x2 recovery algorithm xor: automatically using best checksumming function avx async_tx: api initialized (async)
debianbugs at red-sand.com
2020-Jul-02 07:26 UTC
[Pkg-xen-devel] Bug#963607: Bug#963607: xen-hypervisor-4.11-amd64: Xen Hypervisor kernel fails to load arcmsr module with "arcmsr0: dma_alloc_coherent got error" message.
On 1/07/2020 22:48, Hans van Kranenburg wrote:> On 7/1/20 5:09 PM, Alex Sanderson wrote: >> On 1/07/2020 02:05, Hans van Kranenburg wrote: >>> To do a bug report upstream, we'll need that information. >> Sorry, completely misunderstood. Here is the output from the serial >> terminal as Xen started. > Thanks! Yes. That's the XEN part that appears first. > > I attached the files, AFAIK you can just send attachments to a debian > bug report. So, you can also do that, next time.Good to know :) Wasn't sure, I have been using debian since the late 90's and so far have always logged bugs upstream.> The files justlinux-notime.txt and xen-dom0-notime.txt have the > timestamps removed from the beginning of the linux part of the logging, > so that we can diff the files. > > E.g. colordiff -u justlinux-notime.txt xen-dom0-notime.txt |less -r > > Now, here's an interesting part: > > ---- 8< ---- > > @@ -973,20 +1031,15 @@ > usb usb1: SerialNumber: 0000:00:1a.0 > hub 1-0:1.0: USB hub found > hub 1-0:1.0: 2 ports detected > -isci 0000:09:00.0: OEM parameter table found in OROM > -isci 0000:09:00.0: OEM SAS parameters (version: 1.0) loaded (platform) > +xen: registering gsi 23 triggering 0 polarity 1 > +Already setup the GSI :23 > ehci-pci 0000:00:1d.0: EHCI Host Controller > ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2 > ehci-pci 0000:00:1d.0: debug port 2 > ehci-pci 0000:00:1d.0: cache line size of 64 is not supported > ehci-pci 0000:00:1d.0: irq 23, io mem 0xcfc22000 > -isci 0000:09:00.0: SCU controller 0: phy 3-0 cables: {short, short, > short, short} > -scsi host1: isci > Areca RAID Controller0: Model ARC-1882, F/W V1.56 2019-07-30 > -scsi host0: Areca SAS/SATA RAID Controller (RAID6 capable) > -arcmsr version v1.40.00.09-20180709 > - > -arcmsr0: msi-x enabled > +arcmsr0: dma_alloc_coherent got error > ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00 > usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, > bcdDevice= 4.19 > usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 > > ---- >8 ---- > > So, when running Linux as dom0 under Xen, you get the "arcmsr0: > dma_alloc_coherent got error". Did you already spot this error? > > Just pasting it into a search engine leads me to the following page: > > http://faq.areca.com.tw/index.php?action=artikel&cat=16&id=387&artlang=en > > ...which only displays an error. > > There's also: > > https://webcache.googleusercontent.com/search?q=cache:wQHp6mpYuckJ:faq.areca.com.tw/index.php%3Faction%3Dartikel%26cat%3D16%26id%3D387%26artlang%3Den+&cd=1&hl=nl&ct=clnk&gl=nl > > ---- 8< ---- > > Q10051103 - We have problems with the new Linux driver > (arcmsr.1.20.0X.15-100729) for the raid controller ARC-1880. Our system > is Linux debian 5.07 (lenny) amd64. Build the driver agains the XEN > kernel (2.6.26-2-xen-amd64) we got following errors on boot time: > arcmsr0: dma_alloc_coherent got error arcmsr0: arcmsr_alloc_ccb_pool got > error > > you may get this error message when system have no enough memory space > for driver requested please configure driver host queue to 64 or less to > see if it helps. > > you can configure driver host queue parameter by typing the driver > parameter as kernel option during system booting. > > arcmsr.host_can_queue=64 > > ---- >8 ---- > > So, you have an 1882, which is close to 1880. > > I'd say, try it! This arcmsr.host_can_queue=64 should go on the linux > command line. > > You can use GRUB_CMDLINE_LINUX_XEN_REPLACE in > /etc/default/grub.d/xen.cfg for that, so that it gets applied when > booting with Xen, and not when booting standalone Linux. There's some > documentation in that file.Yes I have seen the error, unfortunately it was the only information I had on the problem and I have squeezed everything I can from the net regarding it. I even looked at the source code. In my original bug report I did actually mention testing that kernel argument but it didn't help. I tried that arg and every related memory argument to do with coherent memory allocation but nothing worked. I am about to purchase a new SAS HBA card to test as we have a number of these servers with Areca cards that I imagine will have the same problem on Xen 4.11. I am leaning towards mpt3 driver cards but we have had problems with mpt3 previously so I am hesitating there too. mpt2 has been rock solid. If you can think of anything else that I could try that would be excellent. Thanks Alex> > Feel free to ask more about it if it's unclear how the different options > work together. The text in that file is part of our Xen packages, so > feedback on it is always appreciated. We might be able to improve something. > > Thanks, curious to hear about the results, and otherwise we'll continue > our searching for a solution, > > Hans
Debian Bug Tracking System
2020-Dec-05 14:24 UTC
[Pkg-xen-devel] Bug#963607: marked as done (xen-hypervisor-4.11-amd64: Xen Hypervisor kernel fails to load arcmsr module with "arcmsr0: dma_alloc_coherent got error" message.)
Your message dated Sat, 5 Dec 2020 15:14:45 +0100 with message-id <9c9252bb-1368-5808-e838-f1478ff73f8a at knorrie.org> and subject line Re: Bug#963607: xen-hypervisor-4.11-amd64: Xen Hypervisor kernel fails to load arcmsr module with "arcmsr0: dma_alloc_coherent got error" message. has caused the Debian Bug report #963607, regarding xen-hypervisor-4.11-amd64: Xen Hypervisor kernel fails to load arcmsr module with "arcmsr0: dma_alloc_coherent got error" message. to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact owner at bugs.debian.org immediately.) -- 963607: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=963607 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: Alex Sanderson <debianbugs at red-sand.com> Subject: xen-hypervisor-4.11-amd64: Xen Hypervisor kernel fails to load arcmsr module with "arcmsr0: dma_alloc_coherent got error" message. Date: Wed, 24 Jun 2020 12:31:35 +0200 Size: 3975 URL: <http://alioth-lists.debian.net/pipermail/pkg-xen-devel/attachments/20201205/7d0306f4/attachment.mht> -------------- next part -------------- An embedded message was scrubbed... From: Hans van Kranenburg <hans at knorrie.org> Subject: Re: Bug#963607: xen-hypervisor-4.11-amd64: Xen Hypervisor kernel fails to load arcmsr module with "arcmsr0: dma_alloc_coherent got error" message. Date: Sat, 5 Dec 2020 15:14:45 +0100 Size: 2897 URL: <http://alioth-lists.debian.net/pipermail/pkg-xen-devel/attachments/20201205/7d0306f4/attachment-0001.mht>