2020.04.10 – Building a VMware vSphere Virtual Lab with VMware Fusion – Part 5: Create a Ubuntu iSCSI Target and Configure Multipathing – major problem and not finished

I will try to do Part 5 using These idea: I’d recommend using FreeNAS instead of Ubuntu. I’ve just done a test and managed to set up a FreeNAS VM with 2 GB of RAM and managed to create a volume and connect it to ESXi using iSCSI. 

Importanta photos need for understanding are here: https://photos.app.goo.gl/Zd3BCChctkx88MRr7

Before stating I need to get an answer about “What is Ubuntu iSCSI?”

iSCSI Initiator

iSCSI (Internet Small Computer System Interface) is a protocol that allows SCSI commands to be transmitted over a network. Typically iSCSI is implemented in a SAN (Storage Area Network) to allow servers to access a large store of hard drive space. The iSCSI protocol refers to clients as initiators and iSCSI servers as targets.

Ubuntu Server can be configured as both an iSCSI initiator and a target. This guide provides commands and configuration options to setup an iSCSI initiator. It is assumed that you already have an iSCSI target on your local network and have the appropriate rights to connect to it. The instructions for setting up a target vary greatly between hardware providers, so consult your vendor documentation to configure your specific iSCSI target.

Details HERE.

Mine lab parts:

GraspingTech’s helping guid:

Overview

My idea is to create an Ubuntu iSCSI Storage Server and connect mine ESXi hosts to it.

In the Part 4 I’ve created a three node cluster but I couldn’t enable DRS or HA because it requires centralised storage. In this part, I’ll create a storage server with Ubuntu 18.04.4 and configure it so that mine ESXi hosts can access it via iSCSI (with multipathing).

After completing the steps in the previous page, I will be at a point where I have:

  • Three ESXi 6.7 VMs running on VMware Fusion
  • The first ESXi VM contains a pfSense firewall VM with built in DNS Resolver
  • One vCenter Server Appliance in VMware Fusion
  • I am able to access the hosts and vCenter from the Mac using domain names
  • A cluster with the three ESXi 6.7 hosts use to it

For this project I need to download the Ubuntu Server 18.04 ISO image and install it. I publish here all i do into 2020.04.13 – Install Linux (Ubuntu Server 18.04) on a Mac with VMware Fusion.

Now I go to the next step ….

Step 1. Configure Network and open the existing Ubuntu Server 18.04.4 VM

  • Open VMware Fusion and find the Virtual Machine Ubuntu Server 64-bit 18.04.4 and select it.
  • Start by clicking on Hard Disk (SCSI)
  • Change it to 80 GB, click Apply then click Show All.
  • Click Add Device…, choose Network Adapter then click Add…
  • Connect the network adapter to the vSphere network.
  • Repeat the above step to add two other network adapters. Change the first network adapter so that it’s connected to the vSphere network as well.

Step 2. Power-on Ubuntu Server 18.04.4 VM and configure all three Networks

  • Double click Ubuntu 18.04.4 then use the user and password to get inside
  • Identify the network interface you are going to configure
  • The file necessary to configure does not exist. It seems that using sudo netplan generate command does not help.
  • To configure all three network adapters open the network interfaces config file with vim inside Ubuntu Server.
sudo vim /etc/netplan/01-netcfg.yaml

Note: Two network adapters are enabled with their own IP addresses and on their own VLAN.

  • Restart the server using the following command to make the changes take effect.
sudo reboot
  • After login install the SSH server and your preferred text editor etc.
sudo apt install openssh-server vim net-tools
  • Check the network ifconfig -a
silvia@silvia:~$ ifconfig -a
ens33: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 10.1.1.201  netmask 255.255.255.0  broadcast 10.1.1.255
        inet6 fe80::20c:29ff:fe7a:4180  prefixlen 64  scopeid 0x20<link>
        ether 00:0c:29:7a:41:80  txqueuelen 1000  (Ethernet)
        RX packets 59692  bytes 80175425 (80.1 MB)
        RX errors 0  dropped 13  overruns 0  frame 0
        TX packets 23328  bytes 2198034 (2.1 MB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0


ens38: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet6 fe80::20c:29ff:fe7a:418a  prefixlen 64  scopeid 0x20<link>
        ether 00:0c:29:7a:41:8a  txqueuelen 1000  (Ethernet)
        RX packets 1226  bytes 181338 (181.3 KB)
        RX errors 0  dropped 13  overruns 0  frame 0
        TX packets 59  bytes 4434 (4.4 KB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0


ens39: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet6 fe80::20c:29ff:fe7a:4194  prefixlen 64  scopeid 0x20<link>
        ether 00:0c:29:7a:41:94  txqueuelen 1000  (Ethernet)
        RX packets 1226  bytes 181338 (181.3 KB)
        RX errors 0  dropped 13  overruns 0  frame 0
        TX packets 59  bytes 4434 (4.4 KB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0


ens38.101: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 10.10.1.201  netmask 255.255.255.0  broadcast 10.10.1.255
        inet6 fe80::20c:29ff:fe7a:418a  prefixlen 64  scopeid 0x20<link>
        ether 00:0c:29:7a:41:8a  txqueuelen 1000  (Ethernet)
        RX packets 23  bytes 1484 (1.4 KB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 41  bytes 2898 (2.8 KB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0


ens39.102: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 10.10.2.201  netmask 255.255.255.0  broadcast 10.10.2.255
        inet6 fe80::20c:29ff:fe7a:4194  prefixlen 64  scopeid 0x20<link>
        ether 00:0c:29:7a:41:94  txqueuelen 1000  (Ethernet)
        RX packets 23  bytes 1484 (1.4 KB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 41  bytes 2898 (2.8 KB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0


lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
        inet 127.0.0.1  netmask 255.0.0.0
        inet6 ::1  prefixlen 128  scopeid 0x10<host>
        loop  txqueuelen 1000  (Local Loopback)
        RX packets 529  bytes 43778 (43.7 KB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 529  bytes 43778 (43.7 KB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0 

Now is possible to ping the VM from the Mac using the hostname us01

murgescusilvia@Murgescus-MacBook-Pro ~ % ping us01
PING us01.silvique.ro (10.1.1.201): 56 data bytes
64 bytes from 10.1.1.201: icmp_seq=0 ttl=64 time=0.262 ms
64 bytes from 10.1.1.201: icmp_seq=1 ttl=64 time=0.323 ms
64 bytes from 10.1.1.201: icmp_seq=2 ttl=64 time=0.549 ms
64 bytes from 10.1.1.201: icmp_seq=3 ttl=64 time=0.172 ms
64 bytes from 10.1.1.201: icmp_seq=4 ttl=64 time=0.525 ms
^C
--- us01.silvique.ro ping statistics ---
5 packets transmitted, 5 packets received, 0.0% packet loss
round-trip min/avg/max/stddev = 0.172/0.366/0.549/0.148 ms
murgescusilvia@Murgescus-MacBook-Pro ~ % 

I try to connect to Ubuntu 16.08 I had problems. Then I upgrade to Ubuntu 18.04 and I had other problems. This is why I install new Ubuntu 18.04.

  • Ubuntu is install in MacBook Pro and have the same IP address. Try to connect to Ubuntu using Terminal. There are also some problem.
murgescusilvia@Murgescus-MacBook-Pro ~ % ssh silvia@us01      
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@       WARNING: POSSIBLE DNS SPOOFING DETECTED!          @
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
The ECDSA host key for us01 has changed,
and the key for the corresponding IP address 10.1.1.201
is unchanged. This could either mean that
DNS SPOOFING is happening or the IP address for the host
and its host key have changed at the same time.
Offending key for IP in /Users/murgescusilvia/.ssh/known_hosts:20
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@    WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED!     @
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!
Someone could be eavesdropping on you right now (man-in-the-middle attack)!
It is also possible that a host key has just been changed.
The fingerprint for the ECDSA key sent by the remote host is
SHA256:5b11LsICh7VVaHkfY/HiLh6IThcZYjkkDD7Pt6dixJw.
Please contact your system administrator.
Add correct host key in /Users/murgescusilvia/.ssh/known_hosts to get rid of this message.
Offending ECDSA key in /Users/murgescusilvia/.ssh/known_hosts:19
ECDSA host key for us01 has changed and you have requested strict checking.
Host key verification failed.
  • Exist a very easy solution, the command ssh-keygen -R ip-destination
murgescusilvia@Murgescus-MacBook-Pro ~ % ssh-keygen -R us01
# Host us01 found: line 19
/Users/murgescusilvia/.ssh/known_hosts updated.
Original contents retained as /Users/murgescusilvia/.ssh/known_hosts.old
murgescusilvia@Murgescus-MacBook-Pro ~ %
  • Now I can use Terminal to get inside Ubuntu
murgescusilvia@Murgescus-MacBook-Pro ~ % ssh silvia@us01   
The authenticity of host 'us01 (10.1.1.201)' can't be established.
ECDSA key fingerprint is SHA256:5b11LsICh7VVaHkfY/HiLh6IThcZYjkkDD7Pt6dixJw.
Are you sure you want to continue connecting (yes/no/[fingerprint])? yes
Warning: Permanently added 'us01' (ECDSA) to the list of known hosts.
silvia@us01's password: 
Welcome to Ubuntu 18.04.4 LTS (GNU/Linux 4.15.0-96-generic x86_64)


 * Documentation:  https://help.ubuntu.com
 * Management:     https://landscape.canonical.com
 * Support:        https://ubuntu.com/advantage


  System information as of Tue Apr 14 15:48:10 UTC 2020


  System load:  0.03               Processes:            150
  Usage of /:   20.5% of 19.56GB   Users logged in:      0
  Memory usage: 49%                IP address for ens33: 10.1.1.201
  Swap usage:   0%


 * Kubernetes 1.18 GA is now available! See https://microk8s.io for docs or
   install it with:


     sudo snap install microk8s --channel=1.18 --classic


 * Multipass 1.1 adds proxy support for developers behind enterprise
   firewalls. Rapid prototyping for cloud operations just got easier.


     https://multipass.run/


21 packages can be updated.
0 updates are security updates.




Last login: Tue Apr 14 15:01:12 2020 from 10.1.1.1

In the next step I will create the port groups in vCenter and make sure I can communicate with the hosts over the iSCSI networks by pinging each host.

Step 3. Create ISCSI Port groups

The next thing I need to do is add two new VMkernel adapters to our standard virtual switches so that mine hosts can communicate with the storage server I just created using multiple paths.

  • Power-on the needed of three ESXi’s, one Ubuntu 18.04, one vCenter and one pfSense (inside esxi01). To be able to use as much RAM as possible for vCenter I do NOT power-on all in the same time but in these order.
  • In Part 2 I installed vSphere into Fusion, out ESXi. All ESXi have minimal 4036 MB RAM.  
  • I power-off all during working for Ubuntu installation working for steps 1-2. As mention before now I power-on all.
  • Attention: if I want to connect wit vCenter in the moment of power-on I get error. I have to wait more minute even after seems is completely powered-on.
  • I had an error inside into vCenter – Status 401 – https://10.1.1.101/ui/vum-ui/rest/vcobjects/urn:vmomi:HostSystem:host-28:e20d571d-fa76-4187-8637-254f278e2022/grantedPrivileges ==> I solved it!
  • Login to vCenter via Firefox.
  1. Click Host and Clusters
  2. Click on the first ESXi host, esxi01
  3. Click Configure
  4. Click Virtual switches
  5. Click ADD NETWORKING
  • Select VMkernel Network Adapter then click NEXT.
  • Select vSwitch0 then click NEXT.
  • Give the network label a name of ISCSI-1, assign 101 as the VLAN ID then click NEXT.
  • Choose Use static IPv4 settings and type in the IP address of esxi01, which is 10.10.1.11. Assign 255.255.255.0 for the subnet mask and then click NEXT.
  • Click FINISH to create the new port group.
  • I see the ISCSI-1 port group on the virtual switch. Now I add ISCSI-2 by clicking ADD NETWORKING again.
  • Do the same as last time, except use ISCSI-2 for the network label and 102 for the VLAN ID.
  • This time for the IP address use 10.10.2.11.
  • Click FINISH to create the second port group.

I notice that both uplinks are used. I want to change this so that each ISCSI network uses one uplink that is different meaning ISCSI-1 will use vmnic0 and ISCSI-2 will use vmnic1.

  • I will start with ISCSI-2. Click on  next to ISCSI-2.
  • Click Edit Settings.
  • Click Teaming and failover, click on vmnic0 then press the down arrow until it’s in the Unused adapters section. Click OK to confirm.
  • First time receive this messages and press OK.
  • Do the same thing for ISCSI-1 except move vmnic1 into the Unused section.
  • Once done, I go in Terminal then I get inside Ubuntu VM. Now I am able to ping both networks:
silvia@silvia:~$ ping 10.10.1.11
PING 10.10.1.11 (10.10.1.11) 56(84) bytes of data.
64 bytes from 10.10.1.11: icmp_seq=1 ttl=64 time=0.711 ms
64 bytes from 10.10.1.11: icmp_seq=2 ttl=64 time=0.511 ms
64 bytes from 10.10.1.11: icmp_seq=3 ttl=64 time=0.681 ms
64 bytes from 10.10.1.11: icmp_seq=4 ttl=64 time=0.797 ms
64 bytes from 10.10.1.11: icmp_seq=5 ttl=64 time=0.701 ms
64 bytes from 10.10.1.11: icmp_seq=6 ttl=64 time=0.671 ms
64 bytes from 10.10.1.11: icmp_seq=7 ttl=64 time=0.554 ms
^C
--- 10.10.1.11 ping statistics ---
7 packets transmitted, 7 received, 0% packet loss, time 6115ms
rtt min/avg/max/mdev = 0.511/0.660/0.797/0.096 ms

silvia@silvia:~$ ping 10.10.2.11
PING 10.10.2.11 (10.10.2.11) 56(84) bytes of data.
64 bytes from 10.10.2.11: icmp_seq=1 ttl=64 time=0.480 ms
64 bytes from 10.10.2.11: icmp_seq=2 ttl=64 time=0.662 ms
64 bytes from 10.10.2.11: icmp_seq=3 ttl=64 time=0.318 ms
^C
--- 10.10.2.11 ping statistics ---
3 packets transmitted, 3 received, 0% packet loss, time 2026ms
rtt min/avg/max/mdev = 0.318/0.486/0.662/0.142 ms
  • I repeat the steps above for each ESXi host in the cluster, except use 12 and 13 for the host portion of the IP addresses. For example, esxi02 will be 10.10.1.12 and 10.10.2.12.
  • Problem: Before going to the next Step, remarking something I don’t like … is there a problem? What is the problem? And how can I solve it?
  • Solving problem: Maybe it is not a problem. I solved it clicking Reset to Green.

Step 4. Install SCST iSCSI Target

Now that the network is configured and all three ESXi hosts can communicate with the storage server, I need to install the iSCSI target software.

I is already written a tutorial into a blog on how to do this in the post titled: Creating a Ubuntu iSCSI SAN Storage Server for VMware vSphere ESXi  by GraspingTech.

The plan is to open the link above in a new tab and follow the instructions on how to install SCST, creating a folder and 1 TB thin provisioned image.

The idea is to test VMware vSphere 6.7 and the vCenter appliance going to VMotion and Storage VMotion.

Next steps are to learn how to configure Ubuntu to serve a 1 TB thin provisioned disk via iSCSI and how to connect it to vSphere ESXi 6.7.

Step 4.1. Ubuntu iSCSI Target Software

In order to turn Ubuntu into a storage server that can be accessed by multiple ESXi hosts via iSCSI I choose an iSCSI target software package.

There are multiple iSCSI target options (here is a link to a comparison). Theoretically I can use with Linux. The one l go to use in this guide is SCST.

It is said that SCST is well tested, high performance, and has useful features like thin provisioning which work well with VMware. SCST has also been used in some enterprise storage solutions that have passed the VMware certification.

Note: Ubuntu download needed software after turning a Terminal command.

Step 4.2. Installing SCST on Ubuntu 18.04

SCST is not in the official Ubuntu repositories so I’ll need to compile it from source and install it.

Run the following commands to install SCST.

silvia@silvia $ mkdir ~/scst-build
silvia@silvia $ cd ~/scst-build
silvia@silvia:~/scst-build$ sudo apt install git devscripts equivs dkms 
silvia@silvia:~/scst-build$ git clone -b ubuntu-3.4.x https://github.com/ubuntu-pkg/scst.git
silvia@silvia:~/scst-build$ cd scst 
silvia@silvia:~/scst-build$ sudo mk-build-deps -i -r
silvia@silvia:~/scst-build/scst$ dpkg-buildpackage -b -uc
silvia@silvia:~/scst-build/scst$ sudo mkdir -p /var/lib/scst/pr
silvia@silvia:~/scst-build/scst$ sudo mkdir -p /var/lib/scst/vdev_mode_pages
silvia@silvia:~/scst-build/scst$ sudo dpkg -i ../scst-dkms_*deb
silvia@silvia:~/scst-build/scst$ sudo dpkg -i ../iscsi-scst_*.deb 
silvia@silvia:~/scst-build/scst$ sudo dpkg -i ../scstadmin_*deb
silvia@silvia:~/scst-build/scst$ sudo /etc/init.d/scst start

Step 4.3. Create a folder to store the disk images

Let’s create a folder to store disk images.

silvia@silvia:~/scst-build/scst$ sudo mkdir /srv/vmware

Step 4.4. Create a 1 TB thin provisioned image

Run the following command to create a 1TB thin provisioned disk inside the vmware folder called disk1.

silvia@silvia:~/scst-build/scst$ sudo dd if=/dev/zero of=/srv/vmware/disk1 bs=1 count=0 seek=1T
0+0 records in
0+0 records out
0 bytes copied, 0.00108886 s, 0.0 kB/s

Step 4.5. Try to install ZFS

Note: the max size of this image is 1TB but after running the command above it will only be using 0 bytes on disk. You can check this by running:

silvia@silvia:~/scst-build/scst$ ls -lh /srv/vmware
total 0
-rw-r--r-- 1 root root 1.0T Apr 12 08:36 disk1Try

TIP: I might want to store the images on a more durable filesystem like ZFS. This tutorial explains how to install and create a ZFS storage pool on Ubuntu.

I tried to install ZFS but I di not have all I need:

silvia@silvia:~$ sudo apt-get install -y zfsutils-linux


silvia@silvia:~$ sudo zpool status
no pools available


silvia@silvia:~$ ls -l /dev/sd*
brw-rw---- 1 root disk 8, 0 Apr 13 05:13 /dev/sda
brw-rw---- 1 root disk 8, 1 Apr 13 05:13 /dev/sda1
brw-rw---- 1 root disk 8, 2 Apr 13 05:13 /dev/sda2
brw-rw---- 1 root disk 8, 5 Apr 13 05:13 /dev/sda5
silvia@silvia:~

I have a single hard disks with partitions. These is no blank hard disk that can be used.

Step 4.6. Export the disk image as an iSCSI LUN

Now I need to export the disk image as a thin provisioned iSCSI target using SCST.

Create scst.conf file.

silvia@silvia:~/scst-build/scst$ sudo vim /etc/scst.conf

Add the following contents to the file.

HANDLER vdisc_fileio {
     DEVICE disck1 {
         filename /srv/vmware/disk1
         nv_cache 0
         thin_provisioned 1
     }
}
TARGET_DRIVE iscsi {
     enable 1
     allowed_portal 10.10.1.201
     allowed_portal 10.10.2.201
     rel_tgt_id 1
     LUN 0 disk1
}

Apply the changes.

silvia@silvia:~/scst-build/scst$ sudo scstadmin -config /etc/scst.conf

Now I’m ready to connect to the iSCSI target with VMware ESXi.

Step 4.7. Adding the iSCSI LUN to VMware vSphere ESXi 6.7

Login to the HTML client of vCenter 6.7 and then perform the following steps to add the iSCSI server to the ESXi hosts.

  1. Click on Hosts and Clusters
  2. Click on the host I want add the iSCSI LUN to.
  3. Click on Configure.
  4. Click on Storage Adapters.
  5. Click on Add Software Adapter.
  6. Select Add software iSCSI adapter then click OK.

The software iSCSI adapter should now be in the list of storage adapters.

  1. Click on the software iSCSI adapter.
  2. Click on the Dynamic Discovery tab.
  3. Click Add
Enter the IP address 10.10.1.201 of the Ubuntu iSCSI server and then click OK.
  • Do it again and enter the IP address 10.10.2.201 of the Ubuntu iSCSI server and then click OK.
  • Once the server is added you will need to click Rescan Adapter for the software adapter to detect any devices on the target.
  • After clicking Rescan Adapter receive this message and press OK

Now click on the Devices tab and you should see the thin provisioned disk I created when configuring the iSCSI target.

But for me does not appeared. Same situation for esxi01, esxi02 and esxi03.

Repeat these steps for any more ESXi hosts I have in mine cluster and then I’ll create a new VMFS volume in the next step.

Problem, problem, problem and not capable to go farther!!!

———————————————————————————————–

Searching the base problem

Step 1. I install and get the same problem inside esxi02 and esxi03. Then I delete and install again Dynamic Discovery and I’m getting an frailer. 

silvia@silvia:~$ sudo scstadmin -config /etc/scst.conf
Failed to obtain SCST version information. Are the SCST modules loaded?

Step 2. I try restarting scst and running the config command again:

silvia@silvia:~$ sudo /etc/init.d/scst stop
[ ok ] Stopping scst (via systemctl): scst.service.
silvia@silvia:~$ sudo /etc/init.d/scst start
[ ok ] Starting scst (via systemctl): scst.service.
silvia@silvia:~$ sudo scstadmin -config /etc/scst.conf
Failed to obtain SCST version information. Are the SCST modules loaded?

Step 3. What does dkms status show?

silvia@silvia:~$ dkms status
scst, 3.4.0, 4.15.0-96-generic, x86_64: installed

Step 4. I have install a new Ubuntu. I have the same problem. Check Ubuntu state:

silvia@silvia:~$ dmesg

[    0.000000] Linux version 4.15.0-96-generic (buildd@lgw01-amd64-004) (gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04)) #97-Ubuntu SMP Wed Apr 1 03:25:46 UTC 2020 (Ubuntu 4.15.0-96.97-generic 4.15.18)
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.15.0-96-generic root=UUID=707f96fa-cb06-4f69-859c-aa267abeb853 ro maybe-ubiquity
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Centaur CentaurHauls
--> [    0.000000] Disabled fast string operations
[    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 'compacted' format.
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009e7ff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009e800-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000dc000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fedffff] usable
[    0.000000] BIOS-e820: [mem 0x000000001fee0000-0x000000001fefefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000001feff000-0x000000001fefffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000001ff00000-0x000000001fffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f7ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec0ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fffe0000-0x00000000ffffffff] reserved
--> [    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: VMware, Inc. VMware Virtual Platform/440BX Desktop Reference Platform, BIOS 6.00 07/29/2019
[    0.000000] Hypervisor detected: VMware
[    0.000000] vmware: TSC freq read from hypervisor : 2903.726 MHz
[    0.000000] vmware: Host bus clock speed read from hypervisor : 66000000 Hz
[    0.000000] vmware: using sched offset of 4282008700 ns
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x20000 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-CFFFF write-protect
[    0.000000]   D0000-EFFFF uncachable
[    0.000000]   F0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 00000000000 mask 7FF00000000 write-back
[    0.000000]   1 base 000C0000000 mask 7FFC0000000 uncachable
--> [    0.000000]   2 disabled
--> [    0.000000]   3 disabled
--> [    0.000000]   4 disabled
--> [    0.000000]   5 disable
--> [    0.000000]   6 disabled
--> [    0.000000]   7 disabled
[    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.000000] total RAM covered: 3072M
[    0.000000] Found optimal setting for mtrr clean up
[    0.000000]  gran_size: 64K chunk_size: 64K num_reg: 2  lose cover RAM: 0G
[    0.000000] found SMP MP-table at [mem 0x000f6a70-0x000f6a7f]
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] Using GB pages for direct mapping
[    0.000000] BRK [0x16b92000, 0x16b92fff] PGTABLE
[    0.000000] BRK [0x16b93000, 0x16b93fff] PGTABLE
[    0.000000] BRK [0x16b94000, 0x16b94fff] PGTABLE
[    0.000000] BRK [0x16b95000, 0x16b95fff] PGTABLE
[    0.000000] BRK [0x16b96000, 0x16b96fff] PGTABLE
[    0.000000] RAMDISK: [mem 0x1b37d000-0x1eab0fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000000F6A00 000024 (v02 PTLTD )
[    0.000000] ACPI: XSDT 0x000000001FEE865B 00005C (v01 INTEL  440BX    06040000 VMW  01324272)
[    0.000000] ACPI: FACP 0x000000001FEFEE73 0000F4 (v04 INTEL  440BX    06040000 PTL  000F4240)
[    0.000000] ACPI: DSDT 0x000000001FEEA6BB 0147B8 (v01 PTLTD  Custom   06040000 MSFT 03000001)
[    0.000000] ACPI: FACS 0x000000001FEFFFC0 000040
[    0.000000] ACPI: FACS 0x000000001FEFFFC0 000040
[    0.000000] ACPI: BOOT 0x000000001FEEA693 000028 (v01 PTLTD  $SBFTBL$ 06040000  LTP 00000001)
[    0.000000] ACPI: APIC 0x000000001FEE98BD 000742 (v01 PTLTD  ? APIC   06040000  LTP 00000000)
[    0.000000] ACPI: MCFG 0x000000001FEE9881 00003C (v01 PTLTD  $PCITBL$ 06040000  LTP 00000001)
[    0.000000] ACPI: SRAT 0x000000001FEE8757 0008A8 (v02 VMWARE MEMPLUG  06040000 VMW  00000001)
[    0.000000] ACPI: HPET 0x000000001FEE871F 000038 (v01 VMWARE VMW HPET 06040000 VMW  00000001)
[    0.000000] ACPI: WAET 0x000000001FEE86F7 000028 (v01 VMWARE VMW WAET 06040000 VMW  00000001)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] system APIC only can use physical flat
[    0.000000] Setting APIC routing to physical flat.
[    0.000000] SRAT: PXM 0 -> APIC 0x00 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x02 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x04 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x06 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x08 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0a -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0c -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0e -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x10 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x12 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x14 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x16 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x18 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x1a -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x1c -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x1e -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x20 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x22 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x24 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x26 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x28 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x2a -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x2c -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x2e -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x30 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x32 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x34 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x36 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x38 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x3a -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x3c -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x3e -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x40 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x42 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x44 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x46 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x48 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x4a -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x4c -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x4e -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x50 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x52 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x54 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x56 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x58 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x5a -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x5c -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x5e -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x60 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x62 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x64 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x66 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x68 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x6a -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x6c -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x6e -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x70 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x72 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x74 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x76 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x78 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x7a -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x7c -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x7e -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x80 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x82 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x84 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x86 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x88 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x8a -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x8c -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x8e -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x90 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x92 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x94 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x96 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x98 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x9a -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x9c -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x9e -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0xa0 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0xa2 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0xa4 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0xa6 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0xa8 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0xaa -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0xac -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0xae -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0xb0 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0xb2 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0xb4 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0xb6 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0xb8 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0xba -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0xbc -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0xbe -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0xc0 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0xc2 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0xc4 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0xc6 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0xc8 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0xca -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0xcc -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0xce -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0xd0 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0xd2 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0xd4 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0xd6 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0xd8 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0xda -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0xdc -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0xde -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0xe0 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0xe2 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0xe4 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0xe6 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0xe8 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0xea -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0xec -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0xee -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0xf0 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0xf2 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0xf4 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0xf6 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0xf8 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0xfa -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0xfc -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0xfe -> Node 0
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x0009ffff]
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x00100000-0x1fffffff]
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x20000000-0xbfffffff] hotplug
[    0.000000] NUMA: Node 0 [mem 0x00000000-0x0009ffff] + [mem 0x00100000-0x1fffffff] -> [mem 0x00000000-0x1fffffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x1ffd5000-0x1fffffff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x000000001fffffff]
[    0.000000]   Normal   empty
[    0.000000]   Device   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000009dfff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x000000001fedffff]
[    0.000000]   node   0: [mem 0x000000001ff00000-0x000000001fffffff]
[    0.000000] Reserved but unavailable: 99 pages
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000001fffffff]
[    0.000000] On node 0 totalpages: 130941
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 21 pages reserved
[    0.000000]   DMA zone: 3997 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 1984 pages used for memmap
[    0.000000]   DMA32 zone: 126944 pages, LIFO batch:31
[    0.000000] ACPI: PM-Timer IO Port: 0x1008
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] system APIC only can use physical flat
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x18] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x19] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x1a] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x1b] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x1c] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x1d] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x1e] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x1f] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x20] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x21] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x22] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x23] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x24] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x25] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x26] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x27] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x28] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x29] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x2a] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x2b] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x2c] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x2d] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x2e] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x2f] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x30] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x31] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x32] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x33] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x34] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x35] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x36] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x37] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x38] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x39] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x3a] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x3b] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x3c] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x3d] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x3e] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x3f] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x40] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x41] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x42] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x43] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x44] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x45] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x46] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x47] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x48] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x49] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x4a] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x4b] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x4c] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x4d] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x4e] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x4f] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x50] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x51] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x52] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x53] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x54] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x55] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x56] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x57] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x58] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x59] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x5a] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x5b] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x5c] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x5d] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x5e] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x5f] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x60] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x61] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x62] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x63] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x64] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x65] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x66] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x67] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x68] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x69] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x6a] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x6b] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x6c] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x6d] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x6e] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x6f] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x70] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x71] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x72] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x73] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x74] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x75] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x76] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x77] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x78] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x79] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x7a] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x7b] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x7c] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x7d] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x7e] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x7f] high edge lint[0x1])
[    0.000000] IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086af01 base: 0xfed00000
[    0.000000] smpboot: Allowing 128 CPUs, 127 hotplug CPUs
[    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x0009efff]
[    0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dbfff]
[    0.000000] PM: Registered nosave memory: [mem 0x000dc000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x1fee0000-0x1fefefff]
[    0.000000] PM: Registered nosave memory: [mem 0x1feff000-0x1fefffff]
[    0.000000] e820: [mem 0x20000000-0xefffffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on VMware hypervisor
[    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.000000] random: get_random_bytes called from start_kernel+0x99/0x4fd with crng_init=0
[    0.000000] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:128 nr_cpu_ids:128 nr_node_ids:1
[    0.000000] percpu: Embedded 45 pages/cpu s147456 r8192 d28672 u262144
[    0.000000] pcpu-alloc: s147456 r8192 d28672 u262144 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 000 001 002 003 004 005 006 007 
[    0.000000] pcpu-alloc: [0] 008 009 010 011 012 013 014 015 
[    0.000000] pcpu-alloc: [0] 016 017 018 019 020 021 022 023 
[    0.000000] pcpu-alloc: [0] 024 025 026 027 028 029 030 031 
[    0.000000] pcpu-alloc: [0] 032 033 034 035 036 037 038 039 
[    0.000000] pcpu-alloc: [0] 040 041 042 043 044 045 046 047 
[    0.000000] pcpu-alloc: [0] 048 049 050 051 052 053 054 055 
[    0.000000] pcpu-alloc: [0] 056 057 058 059 060 061 062 063 
[    0.000000] pcpu-alloc: [0] 064 065 066 067 068 069 070 071 
[    0.000000] pcpu-alloc: [0] 072 073 074 075 076 077 078 079 
[    0.000000] pcpu-alloc: [0] 080 081 082 083 084 085 086 087 
[    0.000000] pcpu-alloc: [0] 088 089 090 091 092 093 094 095 
[    0.000000] pcpu-alloc: [0] 096 097 098 099 100 101 102 103 
[    0.000000] pcpu-alloc: [0] 104 105 106 107 108 109 110 111 
[    0.000000] pcpu-alloc: [0] 112 113 114 115 116 117 118 119 
[    0.000000] pcpu-alloc: [0] 120 121 122 123 124 125 126 127 
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 128872
[    0.000000] Policy zone: DMA32
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.15.0-96-generic root=UUID=707f96fa-cb06-4f69-859c-aa267abeb853 ro maybe-ubiquity
[    0.000000] log_buf_len individual max cpu contribution: 4096 bytes
[    0.000000] log_buf_len total cpu_extra contributions: 520192 bytes
[    0.000000] log_buf_len min size: 262144 bytes
[    0.000000] log_buf_len: 1048576 bytes
[    0.000000] early log buf free: 236948(90%)
[    0.000000] Calgary: detecting Calgary via BIOS EBDA area
[    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[    0.000000] Memory: 406340K/523764K available (12300K kernel code, 2481K rwdata, 4264K rodata, 2432K init, 2712K bss, 117424K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=128, Nodes=1
[    0.000000] Kernel/User page tables isolation: enabled
[    0.000000] ftrace: allocating 39351 entries in 154 pages
[    0.004000] Hierarchical RCU implementation.
[    0.004000] RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=128.
[    0.004000] Tasks RCU enabled.
[    0.004000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=128
[    0.004000] NR_IRQS: 524544, nr_irqs: 1448, preallocated irqs: 16
[    0.004000] Console: colour VGA+ 80x25
[    0.004000] console [tty0] enabled
[    0.004000] ACPI: Core revision 20170831
[    0.004000] ACPI: 1 ACPI AML tables successfully acquired and loaded
[    0.004000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[    0.004000] hpet clockevent registered
[    0.004025] APIC: Switch to symmetric I/O mode setup
[    0.004199] x2apic enabled
[    0.004278] Switched APIC routing to physical x2apic.
[    0.004671] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.004768] tsc: Detected 2903.726 MHz processor
[    0.004916] Calibrating delay loop (skipped) preset value.. 5807.45 BogoMIPS (lpj=11614904)
[    0.004916] pid_max: default: 131072 minimum: 1024
[    0.004916] Security Framework initialized
[    0.004916] Yama: becoming mindful.
[    0.004916] AppArmor: AppArmor initialized
[    0.006943] Dentry cache hash table entries: 65536 (order: 7, 524288 bytes)
[    0.009633] Inode-cache hash table entries: 32768 (order: 6, 262144 bytes)
[    0.009809] Mount-cache hash table entries: 1024 (order: 1, 8192 bytes)
[    0.009904] Mountpoint-cache hash table entries: 1024 (order: 1, 8192 bytes)
[    0.010878] Disabled fast string operations
[    0.010982] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
[    0.011021] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[    0.011063] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.011118] Spectre V2 : Mitigation: Full generic retpoline
[    0.011183] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.011237] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    0.011291] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.011346] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
[    0.011442] MDS: Mitigation: Clear CPU buffers
[    0.029445] TSC deadline timer enabled
[    0.029477] smpboot: CPU0: Intel(R) Core(TM) i7-6920HQ CPU @ 2.90GHz (family: 0x6, model: 0x5e, stepping: 0x3)
[    0.030398] Performance Events: Skylake events, core PMU driver.
[    0.030460] core: CPUID marked event: 'cpu cycles' unavailable
[    0.030499] core: CPUID marked event: 'instructions' unavailable
[    0.030538] core: CPUID marked event: 'bus cycles' unavailable
[    0.030576] core: CPUID marked event: 'cache references' unavailable
[    0.030617] core: CPUID marked event: 'cache misses' unavailable
[    0.030669] core: CPUID marked event: 'branch instructions' unavailable
[    0.030712] core: CPUID marked event: 'branch misses' unavailable
[    0.030755] ... version:                1
[    0.030784] ... bit width:              48
[    0.030813] ... generic registers:      4
[    0.030843] ... value mask:             0000ffffffffffff
[    0.030878] ... max period:             000000007fffffff
[    0.030914] ... fixed-purpose events:   0
[    0.030943] ... event mask:             000000000000000f
[    0.031192] Hierarchical SRCU implementation.
[    0.032000] NMI watchdog: Perf event create on CPU 0 failed with -2
[    0.032000] NMI watchdog: Perf NMI watchdog permanently disabled
[    0.053111] smp: Bringing up secondary CPUs ...
[    0.053156] smp: Brought up 1 node, 1 CPU
[    0.053187] smpboot: Max logical packages: 128
[    0.053220] smpboot: Total of 1 processors activated (5807.45 BogoMIPS)
[    0.054811] devtmpfs: initialized
[    0.054942] x86/mm: Memory block size: 128MB
[    0.055440] evm: security.selinux
[    0.055472] evm: security.SMACK64
[    0.055498] evm: security.SMACK64EXEC
[    0.055525] evm: security.SMACK64TRANSMUTE
[    0.055554] evm: security.SMACK64MMAP
[    0.055582] evm: security.apparmor
[    0.055608] evm: security.ima
[    0.055632] evm: security.capability
[    0.055931] PM: Registering ACPI NVS region [mem 0x1feff000-0x1fefffff] (4096 bytes)
[    0.056224] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.056370] futex hash table entries: 32768 (order: 9, 2097152 bytes)
[    0.069116] pinctrl core: initialized pinctrl subsystem
[    0.069414] RTC time:  2:26:04, date: 04/15/20
[    0.070102] NET: Registered protocol family 16
[    0.070297] audit: initializing netlink subsys (disabled)
[    0.070746] cpuidle: using governor ladder
[    0.070779] cpuidle: using governor menu
[    0.070829] Simple Boot Flag at 0x36 set to 0x80
[    0.070881] ACPI: bus type PCI registered
[    0.070912] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.071550] PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xf0000000-0xf7ffffff] (base 0xf0000000)
[    0.071615] PCI: MMCONFIG at [mem 0xf0000000-0xf7ffffff] reserved in E820
[    0.071665] PCI: Using configuration type 1 for base access
[    0.073824] audit: type=2000 audit(1586917564.068:1): state=initialized audit_enabled=0 res=1
[    0.074534] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.074582] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.076297] ACPI: Added _OSI(Module Device)
[    0.076337] ACPI: Added _OSI(Processor Device)
[    0.076370] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.076411] ACPI: Added _OSI(Processor Aggregator Device)
[    0.076450] ACPI: Added _OSI(Linux-Dell-Video)
[    0.076484] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.076520] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    0.082971] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.105165] ACPI: Interpreter enabled
[    0.105216] ACPI: (supports S0 S1 S4 S5)
[    0.105246] ACPI: Using IOAPIC for interrupt routing
[    0.105305] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.106281] ACPI: Enabled 4 GPEs in block 00 to 0F
[    0.212969] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7f])
[    0.213049] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.213406] acpi PNP0A03:00: _OSC: platform does not support [AER]
[    0.213704] acpi PNP0A03:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[    0.216284] PCI host bridge to bus 0000:00
[    0.216334] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.216385] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff window]
[    0.216434] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window]
[    0.216484] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]
[    0.216534] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff window]
[    0.216584] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.216628] pci_bus 0000:00: root bus resource [io  0x0d00-0xfeff window]
[    0.216672] pci_bus 0000:00: root bus resource [bus 00-7f]
[    0.216777] pci 0000:00:00.0: [8086:7190] type 00 class 0x060000
[    0.217757] pci 0000:00:01.0: [8086:7191] type 01 class 0x060400
[    0.218519] pci 0000:00:07.0: [8086:7110] type 00 class 0x060100
[    0.219554] pci 0000:00:07.1: [8086:7111] type 00 class 0x01018a
[    0.220632] pci 0000:00:07.1: reg 0x20: [io  0x1060-0x106f]
[    0.221076] pci 0000:00:07.1: legacy IDE quirk: reg 0x10: [io  0x01f0-0x01f7]
[    0.221132] pci 0000:00:07.1: legacy IDE quirk: reg 0x14: [io  0x03f6]
[    0.221175] pci 0000:00:07.1: legacy IDE quirk: reg 0x18: [io  0x0170-0x0177]
[    0.221222] pci 0000:00:07.1: legacy IDE quirk: reg 0x1c: [io  0x0376]
[    0.221671] pci 0000:00:07.3: [8086:7113] type 00 class 0x068000
[    0.223126] pci 0000:00:07.3: quirk: [io  0x1000-0x103f] claimed by PIIX4 ACPI
[    0.223199] pci 0000:00:07.3: quirk: [io  0x1040-0x104f] claimed by PIIX4 SMB
[    0.223889] pci 0000:00:07.7: [15ad:0740] type 00 class 0x088000
[    0.224379] pci 0000:00:07.7: reg 0x10: [io  0x1080-0x10bf]
[    0.224766] pci 0000:00:07.7: reg 0x14: [mem 0xfebfe000-0xfebfffff 64bit]
[    0.227313] pci 0000:00:0f.0: [15ad:0405] type 00 class 0x030000
[    0.228594] pci 0000:00:0f.0: reg 0x10: [io  0x1070-0x107f]
[    0.229505] pci 0000:00:0f.0: reg 0x14: [mem 0xe8000000-0xefffffff pref]
[    0.230452] pci 0000:00:0f.0: reg 0x18: [mem 0xfe000000-0xfe7fffff]
[    0.233963] pci 0000:00:0f.0: reg 0x30: [mem 0x00000000-0x00007fff pref]
[    0.234696] pci 0000:00:10.0: [1000:0030] type 00 class 0x010000
[    0.235302] pci 0000:00:10.0: reg 0x10: [io  0x1400-0x14ff]
[    0.235821] pci 0000:00:10.0: reg 0x14: [mem 0xfeba0000-0xfebbffff 64bit]
[    0.236315] pci 0000:00:10.0: reg 0x1c: [mem 0xfebc0000-0xfebdffff 64bit]
[    0.237226] pci 0000:00:10.0: reg 0x30: [mem 0x00000000-0x00003fff pref]
[    0.237724] pci 0000:00:11.0: [15ad:0790] type 01 class 0x060401
[    0.238773] pci 0000:00:15.0: [15ad:07a0] type 01 class 0x060400
[    0.239789] pci 0000:00:15.0: PME# supported from D0 D3hot D3cold
[    0.240241] pci 0000:00:15.1: [15ad:07a0] type 01 class 0x060400
[    0.241373] pci 0000:00:15.1: PME# supported from D0 D3hot D3cold
[    0.241906] pci 0000:00:15.2: [15ad:07a0] type 01 class 0x060400
[    0.243138] pci 0000:00:15.2: PME# supported from D0 D3hot D3cold
[    0.243825] pci 0000:00:15.3: [15ad:07a0] type 01 class 0x060400
[    0.244868] pci 0000:00:15.3: PME# supported from D0 D3hot D3cold
[    0.245453] pci 0000:00:15.4: [15ad:07a0] type 01 class 0x060400
[    0.246496] pci 0000:00:15.4: PME# supported from D0 D3hot D3cold
[    0.246942] pci 0000:00:15.5: [15ad:07a0] type 01 class 0x060400
[    0.248060] pci 0000:00:15.5: PME# supported from D0 D3hot D3cold
[    0.248536] pci 0000:00:15.6: [15ad:07a0] type 01 class 0x060400
[    0.249639] pci 0000:00:15.6: PME# supported from D0 D3hot D3cold
[    0.250105] pci 0000:00:15.7: [15ad:07a0] type 01 class 0x060400
[    0.251147] pci 0000:00:15.7: PME# supported from D0 D3hot D3cold
[    0.251601] pci 0000:00:16.0: [15ad:07a0] type 01 class 0x060400
[    0.252644] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.253096] pci 0000:00:16.1: [15ad:07a0] type 01 class 0x060400
[    0.254145] pci 0000:00:16.1: PME# supported from D0 D3hot D3cold
[    0.254603] pci 0000:00:16.2: [15ad:07a0] type 01 class 0x060400
[    0.255687] pci 0000:00:16.2: PME# supported from D0 D3hot D3cold
[    0.256146] pci 0000:00:16.3: [15ad:07a0] type 01 class 0x060400
[    0.257181] pci 0000:00:16.3: PME# supported from D0 D3hot D3cold
[    0.257779] pci 0000:00:16.4: [15ad:07a0] type 01 class 0x060400
[    0.258869] pci 0000:00:16.4: PME# supported from D0 D3hot D3cold
[    0.259383] pci 0000:00:16.5: [15ad:07a0] type 01 class 0x060400
[    0.260521] pci 0000:00:16.5: PME# supported from D0 D3hot D3cold
[    0.261073] pci 0000:00:16.6: [15ad:07a0] type 01 class 0x060400
[    0.262079] pci 0000:00:16.6: PME# supported from D0 D3hot D3cold
[    0.262535] pci 0000:00:16.7: [15ad:07a0] type 01 class 0x060400
[    0.263557] pci 0000:00:16.7: PME# supported from D0 D3hot D3cold
[    0.264000] pci 0000:00:17.0: [15ad:07a0] type 01 class 0x060400
[    0.265005] pci 0000:00:17.0: PME# supported from D0 D3hot D3cold
[    0.265469] pci 0000:00:17.1: [15ad:07a0] type 01 class 0x060400
[    0.266547] pci 0000:00:17.1: PME# supported from D0 D3hot D3cold
[    0.267017] pci 0000:00:17.2: [15ad:07a0] type 01 class 0x060400
[    0.268118] pci 0000:00:17.2: PME# supported from D0 D3hot D3cold
[    0.268536] pci 0000:00:17.3: [15ad:07a0] type 01 class 0x060400
[    0.269812] pci 0000:00:17.3: PME# supported from D0 D3hot D3cold
[    0.270730] pci 0000:00:17.4: [15ad:07a0] type 01 class 0x060400
[    0.271908] pci 0000:00:17.4: PME# supported from D0 D3hot D3cold
[    0.272451] pci 0000:00:17.5: [15ad:07a0] type 01 class 0x060400
[    0.273635] pci 0000:00:17.5: PME# supported from D0 D3hot D3cold
[    0.274152] pci 0000:00:17.6: [15ad:07a0] type 01 class 0x060400
[    0.275377] pci 0000:00:17.6: PME# supported from D0 D3hot D3cold
[    0.275990] pci 0000:00:17.7: [15ad:07a0] type 01 class 0x060400
[    0.277181] pci 0000:00:17.7: PME# supported from D0 D3hot D3cold
[    0.277839] pci 0000:00:18.0: [15ad:07a0] type 01 class 0x060400
[    0.278980] pci 0000:00:18.0: PME# supported from D0 D3hot D3cold
[    0.279505] pci 0000:00:18.1: [15ad:07a0] type 01 class 0x060400
[    0.280658] pci 0000:00:18.1: PME# supported from D0 D3hot D3cold
[    0.281158] pci 0000:00:18.2: [15ad:07a0] type 01 class 0x060400
[    0.282313] pci 0000:00:18.2: PME# supported from D0 D3hot D3cold
[    0.282803] pci 0000:00:18.3: [15ad:07a0] type 01 class 0x060400
[    0.283957] pci 0000:00:18.3: PME# supported from D0 D3hot D3cold
[    0.284656] pci 0000:00:18.4: [15ad:07a0] type 01 class 0x060400
[    0.285756] pci 0000:00:18.4: PME# supported from D0 D3hot D3cold
[    0.286276] pci 0000:00:18.5: [15ad:07a0] type 01 class 0x060400
[    0.287381] pci 0000:00:18.5: PME# supported from D0 D3hot D3cold
[    0.287861] pci 0000:00:18.6: [15ad:07a0] type 01 class 0x060400
[    0.288997] pci 0000:00:18.6: PME# supported from D0 D3hot D3cold
[    0.289504] pci 0000:00:18.7: [15ad:07a0] type 01 class 0x060400
[    0.290612] pci 0000:00:18.7: PME# supported from D0 D3hot D3cold
[    0.291192] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.291972] acpiphp: Slot [32] registered
[    0.292095] acpiphp: Slot [33] registered
[    0.292186] acpiphp: Slot [34] registered
[    0.292275] acpiphp: Slot [35] registered
[    0.292379] acpiphp: Slot [36] registered
[    0.292517] acpiphp: Slot [37] registered
[    0.292613] acpiphp: Slot [38] registered
[    0.292700] acpiphp: Slot [39] registered
[    0.292786] acpiphp: Slot [40] registered
[    0.292871] acpiphp: Slot [41] registered
[    0.292956] acpiphp: Slot [42] registered
[    0.293057] acpiphp: Slot [43] registered
[    0.293208] acpiphp: Slot [44] registered
[    0.293297] acpiphp: Slot [45] registered
[    0.293383] acpiphp: Slot [46] registered
[    0.293468] acpiphp: Slot [47] registered
[    0.293554] acpiphp: Slot [48] registered
[    0.293639] acpiphp: Slot [49] registered
[    0.293724] acpiphp: Slot [50] registered
[    0.293809] acpiphp: Slot [51] registered
[    0.293893] acpiphp: Slot [52] registered
[    0.293979] acpiphp: Slot [53] registered
[    0.294064] acpiphp: Slot [54] registered
[    0.294149] acpiphp: Slot [55] registered
[    0.294291] acpiphp: Slot [56] registered
[    0.294379] acpiphp: Slot [57] registered
[    0.294464] acpiphp: Slot [58] registered
[    0.294550] acpiphp: Slot [59] registered
[    0.294636] acpiphp: Slot [60] registered
[    0.294720] acpiphp: Slot [61] registered
[    0.294806] acpiphp: Slot [62] registered
[    0.294890] acpiphp: Slot [63] registered
[    0.295027] pci 0000:02:00.0: [15ad:0774] type 00 class 0x0c0300
[    0.296217] pci 0000:02:00.0: reg 0x20: [io  0x2400-0x241f]
[    0.297354] pci 0000:02:01.0: [8086:100f] type 00 class 0x020000
[    0.298113] pci 0000:02:01.0: reg 0x10: [mem 0xfd5a0000-0xfd5bffff 64bit]
[    0.298802] pci 0000:02:01.0: reg 0x18: [mem 0xfdff0000-0xfdffffff 64bit]
[    0.299319] pci 0000:02:01.0: reg 0x20: [io  0x2000-0x203f]
[    0.300293] pci 0000:02:01.0: reg 0x30: [mem 0x00000000-0x0000ffff pref]
[    0.300796] pci 0000:02:01.0: PME# supported from D0 D3hot D3cold
[    0.301251] pci 0000:02:02.0: [1274:1371] type 00 class 0x040100
[    0.301779] pci 0000:02:02.0: reg 0x10: [io  0x2040-0x207f]
[    0.304292] pci 0000:02:03.0: [15ad:0770] type 00 class 0x0c0320
[    0.304723] pci 0000:02:03.0: reg 0x10: [mem 0xfd5cf000-0xfd5cffff]
[    0.307445] pci 0000:02:05.0: [15ad:07e0] type 00 class 0x010601
[    0.309540] pci 0000:02:05.0: reg 0x24: [mem 0xfd5ce000-0xfd5cefff]
[    0.309817] pci 0000:02:05.0: reg 0x30: [mem 0x00000000-0x0000ffff pref]
[    0.310432] pci 0000:02:05.0: PME# supported from D3hot
[    0.310886] pci 0000:02:06.0: [8086:100f] type 00 class 0x020000
[    0.311663] pci 0000:02:06.0: reg 0x10: [mem 0xfd580000-0xfd59ffff 64bit]
[    0.312249] pci 0000:02:06.0: reg 0x18: [mem 0xfdfe0000-0xfdfeffff 64bit]
[    0.312781] pci 0000:02:06.0: reg 0x20: [io  0x2080-0x20bf]
[    0.313805] pci 0000:02:06.0: reg 0x30: [mem 0x00000000-0x0000ffff pref]
[    0.314273] pci 0000:02:06.0: PME# supported from D0 D3hot D3cold
[    0.314667] pci 0000:02:07.0: [8086:100f] type 00 class 0x020000
[    0.315432] pci 0000:02:07.0: reg 0x10: [mem 0xfd560000-0xfd57ffff 64bit]
[    0.316005] pci 0000:02:07.0: reg 0x18: [mem 0xfdfd0000-0xfdfdffff 64bit]
[    0.316531] pci 0000:02:07.0: reg 0x20: [io  0x20c0-0x20ff]
[    0.317567] pci 0000:02:07.0: reg 0x30: [mem 0x00000000-0x0000ffff pref]
[    0.318028] pci 0000:02:07.0: PME# supported from D0 D3hot D3cold
[    0.318679] pci 0000:00:11.0: PCI bridge to [bus 02] (subtractive decode)
[    0.318772] pci 0000:00:11.0:   bridge window [io  0x2000-0x3fff]
[    0.318804] pci 0000:00:11.0:   bridge window [mem 0xfd500000-0xfdffffff]
[    0.318874] pci 0000:00:11.0:   bridge window [mem 0xe7b00000-0xe7ffffff 64bit pref]
[    0.318876] pci 0000:00:11.0:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
[    0.318877] pci 0000:00:11.0:   bridge window [mem 0x000d0000-0x000d3fff window] (subtractive decode)
[    0.318878] pci 0000:00:11.0:   bridge window [mem 0x000d4000-0x000d7fff window] (subtractive decode)
[    0.318879] pci 0000:00:11.0:   bridge window [mem 0x000d8000-0x000dbfff window] (subtractive decode)
[    0.318880] pci 0000:00:11.0:   bridge window [mem 0xc0000000-0xfebfffff window] (subtractive decode)
[    0.318882] pci 0000:00:11.0:   bridge window [io  0x0000-0x0cf7 window] (subtractive decode)
[    0.318883] pci 0000:00:11.0:   bridge window [io  0x0d00-0xfeff window] (subtractive decode)
[    0.319557] pci 0000:00:15.0: PCI bridge to [bus 03]
[    0.319659] pci 0000:00:15.0:   bridge window [io  0x4000-0x4fff]
[    0.319694] pci 0000:00:15.0:   bridge window [mem 0xfd400000-0xfd4fffff]
[    0.319762] pci 0000:00:15.0:   bridge window [mem 0xe7a00000-0xe7afffff 64bit pref]
[    0.320521] pci 0000:00:15.1: PCI bridge to [bus 04]
[    0.320628] pci 0000:00:15.1:   bridge window [io  0x8000-0x8fff]
[    0.320662] pci 0000:00:15.1:   bridge window [mem 0xfd000000-0xfd0fffff]
[    0.320725] pci 0000:00:15.1:   bridge window [mem 0xe7600000-0xe76fffff 64bit pref]
[    0.321268] pci 0000:00:15.2: PCI bridge to [bus 05]
[    0.321350] pci 0000:00:15.2:   bridge window [io  0xc000-0xcfff]
[    0.321382] pci 0000:00:15.2:   bridge window [mem 0xfcc00000-0xfccfffff]
[    0.321444] pci 0000:00:15.2:   bridge window [mem 0xe7200000-0xe72fffff 64bit pref]
[    0.321918] pci 0000:00:15.3: PCI bridge to [bus 06]
[    0.322026] pci 0000:00:15.3:   bridge window [mem 0xfc800000-0xfc8fffff]
[    0.322092] pci 0000:00:15.3:   bridge window [mem 0xe6e00000-0xe6efffff 64bit pref]
[    0.322529] pci 0000:00:15.4: PCI bridge to [bus 07]
[    0.322636] pci 0000:00:15.4:   bridge window [mem 0xfc400000-0xfc4fffff]
[    0.322701] pci 0000:00:15.4:   bridge window [mem 0xe6a00000-0xe6afffff 64bit pref]
[    0.323224] pci 0000:00:15.5: PCI bridge to [bus 08]
[    0.323333] pci 0000:00:15.5:   bridge window [mem 0xfc000000-0xfc0fffff]
[    0.323396] pci 0000:00:15.5:   bridge window [mem 0xe6600000-0xe66fffff 64bit pref]
[    0.323835] pci 0000:00:15.6: PCI bridge to [bus 09]
[    0.323946] pci 0000:00:15.6:   bridge window [mem 0xfbc00000-0xfbcfffff]
[    0.324008] pci 0000:00:15.6:   bridge window [mem 0xe6200000-0xe62fffff 64bit pref]
[    0.324761] pci 0000:00:15.7: PCI bridge to [bus 0a]
[    0.324880] pci 0000:00:15.7:   bridge window [mem 0xfb800000-0xfb8fffff]
[    0.324944] pci 0000:00:15.7:   bridge window [mem 0xe5e00000-0xe5efffff 64bit pref]
[    0.325425] pci 0000:00:16.0: PCI bridge to [bus 0b]
[    0.325507] pci 0000:00:16.0:   bridge window [io  0x5000-0x5fff]
[    0.325540] pci 0000:00:16.0:   bridge window [mem 0xfd300000-0xfd3fffff]
[    0.325602] pci 0000:00:16.0:   bridge window [mem 0xe7900000-0xe79fffff 64bit pref]
[    0.326284] pci 0000:00:16.1: PCI bridge to [bus 0c]
[    0.326367] pci 0000:00:16.1:   bridge window [io  0x9000-0x9fff]
[    0.326409] pci 0000:00:16.1:   bridge window [mem 0xfcf00000-0xfcffffff]
[    0.326489] pci 0000:00:16.1:   bridge window [mem 0xe7500000-0xe75fffff 64bit pref]
[    0.327326] pci 0000:00:16.2: PCI bridge to [bus 0d]
[    0.327411] pci 0000:00:16.2:   bridge window [io  0xd000-0xdfff]
[    0.327444] pci 0000:00:16.2:   bridge window [mem 0xfcb00000-0xfcbfffff]
[    0.327507] pci 0000:00:16.2:   bridge window [mem 0xe7100000-0xe71fffff 64bit pref]
[    0.327980] pci 0000:00:16.3: PCI bridge to [bus 0e]
[    0.328074] pci 0000:00:16.3:   bridge window [mem 0xfc700000-0xfc7fffff]
[    0.328136] pci 0000:00:16.3:   bridge window [mem 0xe6d00000-0xe6dfffff 64bit pref]
[    0.328672] pci 0000:00:16.4: PCI bridge to [bus 0f]
[    0.328781] pci 0000:00:16.4:   bridge window [mem 0xfc300000-0xfc3fffff]
[    0.328843] pci 0000:00:16.4:   bridge window [mem 0xe6900000-0xe69fffff 64bit pref]
[    0.329301] pci 0000:00:16.5: PCI bridge to [bus 10]
[    0.329628] pci 0000:00:16.5:   bridge window [mem 0xfbf00000-0xfbffffff]
[    0.329696] pci 0000:00:16.5:   bridge window [mem 0xe6500000-0xe65fffff 64bit pref]
[    0.330279] pci 0000:00:16.6: PCI bridge to [bus 11]
[    0.330405] pci 0000:00:16.6:   bridge window [mem 0xfbb00000-0xfbbfffff]
[    0.330479] pci 0000:00:16.6:   bridge window [mem 0xe6100000-0xe61fffff 64bit pref]
[    0.331240] pci 0000:00:16.7: PCI bridge to [bus 12]
[    0.331366] pci 0000:00:16.7:   bridge window [mem 0xfb700000-0xfb7fffff]
[    0.331429] pci 0000:00:16.7:   bridge window [mem 0xe5d00000-0xe5dfffff 64bit pref]
[    0.331926] pci 0000:00:17.0: PCI bridge to [bus 13]
[    0.332009] pci 0000:00:17.0:   bridge window [io  0x6000-0x6fff]
[    0.332042] pci 0000:00:17.0:   bridge window [mem 0xfd200000-0xfd2fffff]
[    0.332103] pci 0000:00:17.0:   bridge window [mem 0xe7800000-0xe78fffff 64bit pref]
[    0.332708] pci 0000:00:17.1: PCI bridge to [bus 14]
[    0.332825] pci 0000:00:17.1:   bridge window [io  0xa000-0xafff]
[    0.332858] pci 0000:00:17.1:   bridge window [mem 0xfce00000-0xfcefffff]
[    0.332919] pci 0000:00:17.1:   bridge window [mem 0xe7400000-0xe74fffff 64bit pref]
[    0.333561] pci 0000:00:17.2: PCI bridge to [bus 15]
[    0.333670] pci 0000:00:17.2:   bridge window [io  0xe000-0xefff]
[    0.333703] pci 0000:00:17.2:   bridge window [mem 0xfca00000-0xfcafffff]
[    0.333777] pci 0000:00:17.2:   bridge window [mem 0xe7000000-0xe70fffff 64bit pref]
[    0.334432] pci 0000:00:17.3: PCI bridge to [bus 16]
[    0.334566] pci 0000:00:17.3:   bridge window [mem 0xfc600000-0xfc6fffff]
[    0.334631] pci 0000:00:17.3:   bridge window [mem 0xe6c00000-0xe6cfffff 64bit pref]
[    0.335374] pci 0000:00:17.4: PCI bridge to [bus 17]
[    0.335493] pci 0000:00:17.4:   bridge window [mem 0xfc200000-0xfc2fffff]
[    0.335558] pci 0000:00:17.4:   bridge window [mem 0xe6800000-0xe68fffff 64bit pref]
[    0.336039] pci 0000:00:17.5: PCI bridge to [bus 18]
[    0.336152] pci 0000:00:17.5:   bridge window [mem 0xfbe00000-0xfbefffff]
[    0.336216] pci 0000:00:17.5:   bridge window [mem 0xe6400000-0xe64fffff 64bit pref]
[    0.336661] pci 0000:00:17.6: PCI bridge to [bus 19]
[    0.336773] pci 0000:00:17.6:   bridge window [mem 0xfba00000-0xfbafffff]
[    0.336837] pci 0000:00:17.6:   bridge window [mem 0xe6000000-0xe60fffff 64bit pref]
[    0.337378] pci 0000:00:17.7: PCI bridge to [bus 1a]
[    0.337495] pci 0000:00:17.7:   bridge window [mem 0xfb600000-0xfb6fffff]
[    0.337562] pci 0000:00:17.7:   bridge window [mem 0xe5c00000-0xe5cfffff 64bit pref]
[    0.338036] pci 0000:00:18.0: PCI bridge to [bus 1b]
[    0.338116] pci 0000:00:18.0:   bridge window [io  0x7000-0x7fff]
[    0.338148] pci 0000:00:18.0:   bridge window [mem 0xfd100000-0xfd1fffff]
[    0.338211] pci 0000:00:18.0:   bridge window [mem 0xe7700000-0xe77fffff 64bit pref]
[    0.338703] pci 0000:00:18.1: PCI bridge to [bus 1c]
[    0.338783] pci 0000:00:18.1:   bridge window [io  0xb000-0xbfff]
[    0.338816] pci 0000:00:18.1:   bridge window [mem 0xfcd00000-0xfcdfffff]
[    0.338879] pci 0000:00:18.1:   bridge window [mem 0xe7300000-0xe73fffff 64bit pref]
[    0.339613] pci 0000:00:18.2: PCI bridge to [bus 1d]
[    0.339727] pci 0000:00:18.2:   bridge window [mem 0xfc900000-0xfc9fffff]
[    0.339792] pci 0000:00:18.2:   bridge window [mem 0xe6f00000-0xe6ffffff 64bit pref]
[    0.340277] pci 0000:00:18.3: PCI bridge to [bus 1e]
[    0.340390] pci 0000:00:18.3:   bridge window [mem 0xfc500000-0xfc5fffff]
[    0.340454] pci 0000:00:18.3:   bridge window [mem 0xe6b00000-0xe6bfffff 64bit pref]
[    0.341011] pci 0000:00:18.4: PCI bridge to [bus 1f]
[    0.341126] pci 0000:00:18.4:   bridge window [mem 0xfc100000-0xfc1fffff]
[    0.341192] pci 0000:00:18.4:   bridge window [mem 0xe6700000-0xe67fffff 64bit pref]
[    0.341800] pci 0000:00:18.5: PCI bridge to [bus 20]
[    0.341951] pci 0000:00:18.5:   bridge window [mem 0xfbd00000-0xfbdfffff]
[    0.342071] pci 0000:00:18.5:   bridge window [mem 0xe6300000-0xe63fffff 64bit pref]
[    0.342702] pci 0000:00:18.6: PCI bridge to [bus 21]
[    0.342824] pci 0000:00:18.6:   bridge window [mem 0xfb900000-0xfb9fffff]
[    0.342888] pci 0000:00:18.6:   bridge window [mem 0xe5f00000-0xe5ffffff 64bit pref]
[    0.343476] pci 0000:00:18.7: PCI bridge to [bus 22]
[    0.343595] pci 0000:00:18.7:   bridge window [mem 0xfb500000-0xfb5fffff]
[    0.343661] pci 0000:00:18.7:   bridge window [mem 0xe5b00000-0xe5bfffff 64bit pref]
[    0.347423] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 *9 10 11 14 15)
[    0.347617] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 *11 14 15)
[    0.347803] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 *10 11 14 15)
[    0.347987] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 *7 9 10 11 14 15)
[    0.372223] SCSI subsystem initialized
[    0.372598] libata version 3.00 loaded.
[    0.372808] pci 0000:00:0f.0: vgaarb: setting as boot VGA device
[    0.372883] pci 0000:00:0f.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.373004] pci 0000:00:0f.0: vgaarb: bridge control possible
[    0.373077] vgaarb: loaded
[    0.373162] ACPI: bus type USB registered
[    0.373253] usbcore: registered new interface driver usbfs
[    0.373314] usbcore: registered new interface driver hub
[    0.373436] usbcore: registered new device driver usb
[    0.373981] EDAC MC: Ver: 3.0.0
[    0.376939] PCI: Using ACPI for IRQ routing
[    0.380039] PCI: pci_cache_line_size set to 64 bytes
[    0.381658] e820: reserve RAM buffer [mem 0x0009e800-0x0009ffff]
[    0.381660] e820: reserve RAM buffer [mem 0x1fee0000-0x1fffffff]
[    0.381890] NetLabel: Initializing
[    0.381934] NetLabel:  domain hash size = 128
[    0.381974] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.382032] NetLabel:  unlabeled traffic allowed by default
[    0.384073] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
[    0.384162] hpet0: 16 comparators, 64-bit 14.318180 MHz counter
[    0.387374] clocksource: Switched to clocksource hpet
[    0.456287] VFS: Disk quotas dquot_6.6.0
[    0.456407] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.457105] AppArmor: AppArmor Filesystem Enabled
[    0.457175] pnp: PnP ACPI init
[    0.457496] system 00:00: [io  0x1000-0x103f] has been reserved
[    0.457546] system 00:00: [io  0x1040-0x104f] has been reserved
[    0.457593] system 00:00: [io  0x0cf0-0x0cf1] has been reserved
[    0.457642] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.457665] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.457749] pnp 00:02: Plug and Play ACPI device, IDs PNP0303 (active)
[    0.457766] pnp 00:03: Plug and Play ACPI device, IDs VMW0003 PNP0f13 (active)
[    0.458038] system 00:04: [mem 0xfed00000-0xfed003ff] has been reserved
[    0.458094] system 00:04: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
[    0.460564] pnp 00:05: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.461194] system 00:06: [io  0xfce0-0xfcff] has been reserved
[    0.461281] system 00:06: [mem 0xf0000000-0xf7ffffff] has been reserved
[    0.461334] system 00:06: [mem 0xfe800000-0xfe9fffff] has been reserved
[    0.461387] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.470009] pnp: PnP ACPI: found 7 devices
[    0.478878] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.479538] pci 0000:00:15.3: bridge window [io  0x1000-0x0fff] to [bus 06] add_size 1000
[    0.479635] pci 0000:00:15.4: bridge window [io  0x1000-0x0fff] to [bus 07] add_size 1000
[    0.479732] pci 0000:00:15.5: bridge window [io  0x1000-0x0fff] to [bus 08] add_size 1000
[    0.479830] pci 0000:00:15.6: bridge window [io  0x1000-0x0fff] to [bus 09] add_size 1000
[    0.479927] pci 0000:00:15.7: bridge window [io  0x1000-0x0fff] to [bus 0a] add_size 1000
[    0.480366] pci 0000:00:16.3: bridge window [io  0x1000-0x0fff] to [bus 0e] add_size 1000
[    0.480518] pci 0000:00:16.4: bridge window [io  0x1000-0x0fff] to [bus 0f] add_size 1000
[    0.480614] pci 0000:00:16.5: bridge window [io  0x1000-0x0fff] to [bus 10] add_size 1000
[    0.480710] pci 0000:00:16.6: bridge window [io  0x1000-0x0fff] to [bus 11] add_size 1000
[    0.480807] pci 0000:00:16.7: bridge window [io  0x1000-0x0fff] to [bus 12] add_size 1000
[    0.481187] pci 0000:00:17.3: bridge window [io  0x1000-0x0fff] to [bus 16] add_size 1000
[    0.481283] pci 0000:00:17.4: bridge window [io  0x1000-0x0fff] to [bus 17] add_size 1000
[    0.481402] pci 0000:00:17.5: bridge window [io  0x1000-0x0fff] to [bus 18] add_size 1000
[    0.481499] pci 0000:00:17.6: bridge window [io  0x1000-0x0fff] to [bus 19] add_size 1000
[    0.481596] pci 0000:00:17.7: bridge window [io  0x1000-0x0fff] to [bus 1a] add_size 1000
[    0.481880] pci 0000:00:18.2: bridge window [io  0x1000-0x0fff] to [bus 1d] add_size 1000
[    0.481977] pci 0000:00:18.3: bridge window [io  0x1000-0x0fff] to [bus 1e] add_size 1000
[    0.482072] pci 0000:00:18.4: bridge window [io  0x1000-0x0fff] to [bus 1f] add_size 1000
[    0.482172] pci 0000:00:18.5: bridge window [io  0x1000-0x0fff] to [bus 20] add_size 1000
[    0.482270] pci 0000:00:18.6: bridge window [io  0x1000-0x0fff] to [bus 21] add_size 1000
[    0.482366] pci 0000:00:18.7: bridge window [io  0x1000-0x0fff] to [bus 22] add_size 1000
[    0.482469] pci 0000:00:0f.0: BAR 6: assigned [mem 0xc0000000-0xc0007fff pref]

---> No Space: 

[    0.482559] pci 0000:00:10.0: BAR 6: assigned [mem 0xc0008000-0xc000bfff pref]
[    0.482623] pci 0000:00:15.3: BAR 13: no space for [io  size 0x1000]
[    0.482674] pci 0000:00:15.3: BAR 13: failed to assign [io  size 0x1000]
[    0.482728] pci 0000:00:15.4: BAR 13: no space for [io  size 0x1000]
[    0.482778] pci 0000:00:15.4: BAR 13: failed to assign [io  size 0x1000]
[    0.482831] pci 0000:00:15.5: BAR 13: no space for [io  size 0x1000]
[    0.482881] pci 0000:00:15.5: BAR 13: failed to assign [io  size 0x1000]
[    0.482934] pci 0000:00:15.6: BAR 13: no space for [io  size 0x1000]
[    0.482984] pci 0000:00:15.6: BAR 13: failed to assign [io  size 0x1000]
[    0.483037] pci 0000:00:15.7: BAR 13: no space for [io  size 0x1000]
[    0.483087] pci 0000:00:15.7: BAR 13: failed to assign [io  size 0x1000]
[    0.483140] pci 0000:00:16.3: BAR 13: no space for [io  size 0x1000]
[    0.483190] pci 0000:00:16.3: BAR 13: failed to assign [io  size 0x1000]
[    0.483243] pci 0000:00:16.4: BAR 13: no space for [io  size 0x1000]
[    0.483293] pci 0000:00:16.4: BAR 13: failed to assign [io  size 0x1000]
[    0.483347] pci 0000:00:16.5: BAR 13: no space for [io  size 0x1000]
[    0.483397] pci 0000:00:16.5: BAR 13: failed to assign [io  size 0x1000]
[    0.483451] pci 0000:00:16.6: BAR 13: no space for [io  size 0x1000]
[    0.483501] pci 0000:00:16.6: BAR 13: failed to assign [io  size 0x1000]
[    0.483555] pci 0000:00:16.7: BAR 13: no space for [io  size 0x1000]
[    0.483606] pci 0000:00:16.7: BAR 13: failed to assign [io  size 0x1000]
[    0.483659] pci 0000:00:17.3: BAR 13: no space for [io  size 0x1000]
[    0.483710] pci 0000:00:17.3: BAR 13: failed to assign [io  size 0x1000]
[    0.483763] pci 0000:00:17.4: BAR 13: no space for [io  size 0x1000]
[    0.483814] pci 0000:00:17.4: BAR 13: failed to assign [io  size 0x1000]
[    0.483867] pci 0000:00:17.5: BAR 13: no space for [io  size 0x1000]
[    0.483918] pci 0000:00:17.5: BAR 13: failed to assign [io  size 0x1000]
[    0.483971] pci 0000:00:17.6: BAR 13: no space for [io  size 0x1000]
[    0.484038] pci 0000:00:17.6: BAR 13: failed to assign [io  size 0x1000]
[    0.484092] pci 0000:00:17.7: BAR 13: no space for [io  size 0x1000]
[    0.484143] pci 0000:00:17.7: BAR 13: failed to assign [io  size 0x1000]
[    0.484196] pci 0000:00:18.2: BAR 13: no space for [io  size 0x1000]
[    0.484247] pci 0000:00:18.2: BAR 13: failed to assign [io  size 0x1000]
[    0.484313] pci 0000:00:18.3: BAR 13: no space for [io  size 0x1000]
[    0.484361] pci 0000:00:18.3: BAR 13: failed to assign [io  size 0x1000]
[    0.484413] pci 0000:00:18.4: BAR 13: no space for [io  size 0x1000]
[    0.484461] pci 0000:00:18.4: BAR 13: failed to assign [io  size 0x1000]
[    0.484513] pci 0000:00:18.5: BAR 13: no space for [io  size 0x1000]
[    0.484562] pci 0000:00:18.5: BAR 13: failed to assign [io  size 0x1000]
[    0.484613] pci 0000:00:18.6: BAR 13: no space for [io  size 0x1000]
[    0.484662] pci 0000:00:18.6: BAR 13: failed to assign [io  size 0x1000]
[    0.484713] pci 0000:00:18.7: BAR 13: no space for [io  size 0x1000]
[    0.484762] pci 0000:00:18.7: BAR 13: failed to assign [io  size 0x1000]
[    0.484831] pci 0000:00:18.7: BAR 13: no space for [io  size 0x1000]
[    0.484883] pci 0000:00:18.7: BAR 13: failed to assign [io  size 0x1000]
[    0.484936] pci 0000:00:18.6: BAR 13: no space for [io  size 0x1000]
[    0.484984] pci 0000:00:18.6: BAR 13: failed to assign [io  size 0x1000]
[    0.485036] pci 0000:00:18.5: BAR 13: no space for [io  size 0x1000]
[    0.485085] pci 0000:00:18.5: BAR 13: failed to assign [io  size 0x1000]
[    0.485136] pci 0000:00:18.4: BAR 13: no space for [io  size 0x1000]
[    0.485185] pci 0000:00:18.4: BAR 13: failed to assign [io  size 0x1000]
[    0.485237] pci 0000:00:18.3: BAR 13: no space for [io  size 0x1000]
[    0.485285] pci 0000:00:18.3: BAR 13: failed to assign [io  size 0x1000]
[    0.485353] pci 0000:00:18.2: BAR 13: no space for [io  size 0x1000]
[    0.485403] pci 0000:00:18.2: BAR 13: failed to assign [io  size 0x1000]
[    0.485457] pci 0000:00:17.7: BAR 13: no space for [io  size 0x1000]
[    0.485507] pci 0000:00:17.7: BAR 13: failed to assign [io  size 0x1000]
[    0.485561] pci 0000:00:17.6: BAR 13: no space for [io  size 0x1000]
[    0.485611] pci 0000:00:17.6: BAR 13: failed to assign [io  size 0x1000]
[    0.485665] pci 0000:00:17.5: BAR 13: no space for [io  size 0x1000]
[    0.485715] pci 0000:00:17.5: BAR 13: failed to assign [io  size 0x1000]
[    0.485768] pci 0000:00:17.4: BAR 13: no space for [io  size 0x1000]
[    0.485819] pci 0000:00:17.4: BAR 13: failed to assign [io  size 0x1000]
[    0.485872] pci 0000:00:17.3: BAR 13: no space for [io  size 0x1000]
[    0.485923] pci 0000:00:17.3: BAR 13: failed to assign [io  size 0x1000]
[    0.485976] pci 0000:00:16.7: BAR 13: no space for [io  size 0x1000]
[    0.486027] pci 0000:00:16.7: BAR 13: failed to assign [io  size 0x1000]
[    0.486081] pci 0000:00:16.6: BAR 13: no space for [io  size 0x1000]
[    0.486132] pci 0000:00:16.6: BAR 13: failed to assign [io  size 0x1000]
[    0.486185] pci 0000:00:16.5: BAR 13: no space for [io  size 0x1000]
[    0.486236] pci 0000:00:16.5: BAR 13: failed to assign [io  size 0x1000]
[    0.486304] pci 0000:00:16.4: BAR 13: no space for [io  size 0x1000]
[    0.486353] pci 0000:00:16.4: BAR 13: failed to assign [io  size 0x1000]
[    0.486406] pci 0000:00:16.3: BAR 13: no space for [io  size 0x1000]
[    0.486455] pci 0000:00:16.3: BAR 13: failed to assign [io  size 0x1000]
[    0.486508] pci 0000:00:15.7: BAR 13: no space for [io  size 0x1000]
[    0.486558] pci 0000:00:15.7: BAR 13: failed to assign [io  size 0x1000]
[    0.486611] pci 0000:00:15.6: BAR 13: no space for [io  size 0x1000]
[    0.486660] pci 0000:00:15.6: BAR 13: failed to assign [io  size 0x1000]
[    0.486713] pci 0000:00:15.5: BAR 13: no space for [io  size 0x1000]
[    0.486764] pci 0000:00:15.5: BAR 13: failed to assign [io  size 0x1000]
[    0.486817] pci 0000:00:15.4: BAR 13: no space for [io  size 0x1000]
[    0.486869] pci 0000:00:15.4: BAR 13: failed to assign [io  size 0x1000]
[    0.486924] pci 0000:00:15.3: BAR 13: no space for [io  size 0x1000]
[    0.486974] pci 0000:00:15.3: BAR 13: failed to assign [io  size 0x1000]

--->

[    0.487028] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.487327] pci 0000:02:01.0: BAR 6: assigned [mem 0xfd500000-0xfd50ffff pref]
[    0.487415] pci 0000:02:05.0: BAR 6: assigned [mem 0xfd510000-0xfd51ffff pref]
[    0.487472] pci 0000:02:06.0: BAR 6: assigned [mem 0xfd520000-0xfd52ffff pref]
[    0.487528] pci 0000:02:07.0: BAR 6: assigned [mem 0xfd530000-0xfd53ffff pref]
[    0.487587] pci 0000:00:11.0: PCI bridge to [bus 02]
[    0.487673] pci 0000:00:11.0:   bridge window [io  0x2000-0x3fff]
[    0.487779] pci 0000:00:11.0:   bridge window [mem 0xfd500000-0xfdffffff]
[    0.487873] pci 0000:00:11.0:   bridge window [mem 0xe7b00000-0xe7ffffff 64bit pref]
[    0.488054] pci 0000:00:15.0: PCI bridge to [bus 03]
[    0.488119] pci 0000:00:15.0:   bridge window [io  0x4000-0x4fff]
[    0.488222] pci 0000:00:15.0:   bridge window [mem 0xfd400000-0xfd4fffff]
[    0.488315] pci 0000:00:15.0:   bridge window [mem 0xe7a00000-0xe7afffff 64bit pref]
[    0.488488] pci 0000:00:15.1: PCI bridge to [bus 04]
[    0.488552] pci 0000:00:15.1:   bridge window [io  0x8000-0x8fff]
[    0.488648] pci 0000:00:15.1:   bridge window [mem 0xfd000000-0xfd0fffff]
[    0.488734] pci 0000:00:15.1:   bridge window [mem 0xe7600000-0xe76fffff 64bit pref]
[    0.488890] pci 0000:00:15.2: PCI bridge to [bus 05]
[    0.489017] pci 0000:00:15.2:   bridge window [io  0xc000-0xcfff]
[    0.489119] pci 0000:00:15.2:   bridge window [mem 0xfcc00000-0xfccfffff]
[    0.489204] pci 0000:00:15.2:   bridge window [mem 0xe7200000-0xe72fffff 64bit pref]
[    0.489354] pci 0000:00:15.3: PCI bridge to [bus 06]
[    0.489488] pci 0000:00:15.3:   bridge window [mem 0xfc800000-0xfc8fffff]
[    0.489576] pci 0000:00:15.3:   bridge window [mem 0xe6e00000-0xe6efffff 64bit pref]
[    0.489724] pci 0000:00:15.4: PCI bridge to [bus 07]
[    0.489816] pci 0000:00:15.4:   bridge window [mem 0xfc400000-0xfc4fffff]
[    0.489901] pci 0000:00:15.4:   bridge window [mem 0xe6a00000-0xe6afffff 64bit pref]
[    0.490284] pci 0000:00:15.5: PCI bridge to [bus 08]
[    0.490391] pci 0000:00:15.5:   bridge window [mem 0xfc000000-0xfc0fffff]
[    0.490482] pci 0000:00:15.5:   bridge window [mem 0xe6600000-0xe66fffff 64bit pref]
[    0.490623] pci 0000:00:15.6: PCI bridge to [bus 09]
[    0.490715] pci 0000:00:15.6:   bridge window [mem 0xfbc00000-0xfbcfffff]
[    0.490802] pci 0000:00:15.6:   bridge window [mem 0xe6200000-0xe62fffff 64bit pref]
[    0.490939] pci 0000:00:15.7: PCI bridge to [bus 0a]
[    0.491032] pci 0000:00:15.7:   bridge window [mem 0xfb800000-0xfb8fffff]
[    0.491123] pci 0000:00:15.7:   bridge window [mem 0xe5e00000-0xe5efffff 64bit pref]
[    0.491266] pci 0000:00:16.0: PCI bridge to [bus 0b]
[    0.491330] pci 0000:00:16.0:   bridge window [io  0x5000-0x5fff]
[    0.491429] pci 0000:00:16.0:   bridge window [mem 0xfd300000-0xfd3fffff]
[    0.491518] pci 0000:00:16.0:   bridge window [mem 0xe7900000-0xe79fffff 64bit pref]
[    0.491676] pci 0000:00:16.1: PCI bridge to [bus 0c]
[    0.491740] pci 0000:00:16.1:   bridge window [io  0x9000-0x9fff]
[    0.491837] pci 0000:00:16.1:   bridge window [mem 0xfcf00000-0xfcffffff]
[    0.491924] pci 0000:00:16.1:   bridge window [mem 0xe7500000-0xe75fffff 64bit pref]
[    0.492100] pci 0000:00:16.2: PCI bridge to [bus 0d]
[    0.492162] pci 0000:00:16.2:   bridge window [io  0xd000-0xdfff]
[    0.492275] pci 0000:00:16.2:   bridge window [mem 0xfcb00000-0xfcbfffff]
[    0.492382] pci 0000:00:16.2:   bridge window [mem 0xe7100000-0xe71fffff 64bit pref]
[    0.492555] pci 0000:00:16.3: PCI bridge to [bus 0e]
[    0.492675] pci 0000:00:16.3:   bridge window [mem 0xfc700000-0xfc7fffff]
[    0.492789] pci 0000:00:16.3:   bridge window [mem 0xe6d00000-0xe6dfffff 64bit pref]
[    0.492957] pci 0000:00:16.4: PCI bridge to [bus 0f]
[    0.493052] pci 0000:00:16.4:   bridge window [mem 0xfc300000-0xfc3fffff]
[    0.493140] pci 0000:00:16.4:   bridge window [mem 0xe6900000-0xe69fffff 64bit pref]
[    0.493289] pci 0000:00:16.5: PCI bridge to [bus 10]
[    0.493397] pci 0000:00:16.5:   bridge window [mem 0xfbf00000-0xfbffffff]
[    0.493497] pci 0000:00:16.5:   bridge window [mem 0xe6500000-0xe65fffff 64bit pref]
[    0.493703] pci 0000:00:16.6: PCI bridge to [bus 11]
[    0.493804] pci 0000:00:16.6:   bridge window [mem 0xfbb00000-0xfbbfffff]
[    0.493924] pci 0000:00:16.6:   bridge window [mem 0xe6100000-0xe61fffff 64bit pref]
[    0.494119] pci 0000:00:16.7: PCI bridge to [bus 12]
[    0.494221] pci 0000:00:16.7:   bridge window [mem 0xfb700000-0xfb7fffff]
[    0.494319] pci 0000:00:16.7:   bridge window [mem 0xe5d00000-0xe5dfffff 64bit pref]
[    0.494499] pci 0000:00:17.0: PCI bridge to [bus 13]
[    0.494567] pci 0000:00:17.0:   bridge window [io  0x6000-0x6fff]
[    0.494671] pci 0000:00:17.0:   bridge window [mem 0xfd200000-0xfd2fffff]
[    0.494770] pci 0000:00:17.0:   bridge window [mem 0xe7800000-0xe78fffff 64bit pref]
[    0.495121] pci 0000:00:17.1: PCI bridge to [bus 14]
[    0.495205] pci 0000:00:17.1:   bridge window [io  0xa000-0xafff]
[    0.495338] pci 0000:00:17.1:   bridge window [mem 0xfce00000-0xfcefffff]
[    0.495432] pci 0000:00:17.1:   bridge window [mem 0xe7400000-0xe74fffff 64bit pref]
[    0.495646] pci 0000:00:17.2: PCI bridge to [bus 15]
[    0.495723] pci 0000:00:17.2:   bridge window [io  0xe000-0xefff]
[    0.495828] pci 0000:00:17.2:   bridge window [mem 0xfca00000-0xfcafffff]
[    0.495919] pci 0000:00:17.2:   bridge window [mem 0xe7000000-0xe70fffff 64bit pref]
[    0.496094] pci 0000:00:17.3: PCI bridge to [bus 16]
[    0.496191] pci 0000:00:17.3:   bridge window [mem 0xfc600000-0xfc6fffff]
[    0.496329] pci 0000:00:17.3:   bridge window [mem 0xe6c00000-0xe6cfffff 64bit pref]
[    0.496477] pci 0000:00:17.4: PCI bridge to [bus 17]
[    0.496575] pci 0000:00:17.4:   bridge window [mem 0xfc200000-0xfc2fffff]
[    0.496666] pci 0000:00:17.4:   bridge window [mem 0xe6800000-0xe68fffff 64bit pref]
[    0.496809] pci 0000:00:17.5: PCI bridge to [bus 18]
[    0.496905] pci 0000:00:17.5:   bridge window [mem 0xfbe00000-0xfbefffff]
[    0.496996] pci 0000:00:17.5:   bridge window [mem 0xe6400000-0xe64fffff 64bit pref]
[    0.497139] pci 0000:00:17.6: PCI bridge to [bus 19]
[    0.497235] pci 0000:00:17.6:   bridge window [mem 0xfba00000-0xfbafffff]
[    0.497326] pci 0000:00:17.6:   bridge window [mem 0xe6000000-0xe60fffff 64bit pref]
[    0.497487] pci 0000:00:17.7: PCI bridge to [bus 1a]
[    0.497584] pci 0000:00:17.7:   bridge window [mem 0xfb600000-0xfb6fffff]
[    0.497676] pci 0000:00:17.7:   bridge window [mem 0xe5c00000-0xe5cfffff 64bit pref]
[    0.497819] pci 0000:00:18.0: PCI bridge to [bus 1b]
[    0.497884] pci 0000:00:18.0:   bridge window [io  0x7000-0x7fff]
[    0.497987] pci 0000:00:18.0:   bridge window [mem 0xfd100000-0xfd1fffff]
[    0.498078] pci 0000:00:18.0:   bridge window [mem 0xe7700000-0xe77fffff 64bit pref]
[    0.498225] pci 0000:00:18.1: PCI bridge to [bus 1c]
[    0.498289] pci 0000:00:18.1:   bridge window [io  0xb000-0xbfff]
[    0.498392] pci 0000:00:18.1:   bridge window [mem 0xfcd00000-0xfcdfffff]
[    0.498482] pci 0000:00:18.1:   bridge window [mem 0xe7300000-0xe73fffff 64bit pref]
[    0.498661] pci 0000:00:18.2: PCI bridge to [bus 1d]
[    0.498759] pci 0000:00:18.2:   bridge window [mem 0xfc900000-0xfc9fffff]
[    0.498851] pci 0000:00:18.2:   bridge window [mem 0xe6f00000-0xe6ffffff 64bit pref]
[    0.499028] pci 0000:00:18.3: PCI bridge to [bus 1e]
[    0.499132] pci 0000:00:18.3:   bridge window [mem 0xfc500000-0xfc5fffff]
[    0.499224] pci 0000:00:18.3:   bridge window [mem 0xe6b00000-0xe6bfffff 64bit pref]
[    0.499395] pci 0000:00:18.4: PCI bridge to [bus 1f]
[    0.499494] pci 0000:00:18.4:   bridge window [mem 0xfc100000-0xfc1fffff]
[    0.499585] pci 0000:00:18.4:   bridge window [mem 0xe6700000-0xe67fffff 64bit pref]
[    0.499733] pci 0000:00:18.5: PCI bridge to [bus 20]
[    0.499830] pci 0000:00:18.5:   bridge window [mem 0xfbd00000-0xfbdfffff]
[    0.499922] pci 0000:00:18.5:   bridge window [mem 0xe6300000-0xe63fffff 64bit pref]
[    0.500099] pci 0000:00:18.6: PCI bridge to [bus 21]
[    0.500199] pci 0000:00:18.6:   bridge window [mem 0xfb900000-0xfb9fffff]
[    0.500296] pci 0000:00:18.6:   bridge window [mem 0xe5f00000-0xe5ffffff 64bit pref]
[    0.500450] pci 0000:00:18.7: PCI bridge to [bus 22]
[    0.500550] pci 0000:00:18.7:   bridge window [mem 0xfb500000-0xfb5fffff]
[    0.500645] pci 0000:00:18.7:   bridge window [mem 0xe5b00000-0xe5bfffff 64bit pref]
[    0.500812] pci_bus 0000:00: resource 4 [mem 0x000a0000-0x000bffff window]
[    0.500813] pci_bus 0000:00: resource 5 [mem 0x000d0000-0x000d3fff window]
[    0.500814] pci_bus 0000:00: resource 6 [mem 0x000d4000-0x000d7fff window]
[    0.500815] pci_bus 0000:00: resource 7 [mem 0x000d8000-0x000dbfff window]
[    0.500816] pci_bus 0000:00: resource 8 [mem 0xc0000000-0xfebfffff window]
[    0.500817] pci_bus 0000:00: resource 9 [io  0x0000-0x0cf7 window]
[    0.500818] pci_bus 0000:00: resource 10 [io  0x0d00-0xfeff window]
[    0.500820] pci_bus 0000:02: resource 0 [io  0x2000-0x3fff]
[    0.500821] pci_bus 0000:02: resource 1 [mem 0xfd500000-0xfdffffff]
[    0.500822] pci_bus 0000:02: resource 2 [mem 0xe7b00000-0xe7ffffff 64bit pref]
[    0.500823] pci_bus 0000:02: resource 4 [mem 0x000a0000-0x000bffff window]
[    0.500824] pci_bus 0000:02: resource 5 [mem 0x000d0000-0x000d3fff window]
[    0.500824] pci_bus 0000:02: resource 6 [mem 0x000d4000-0x000d7fff window]
[    0.500825] pci_bus 0000:02: resource 7 [mem 0x000d8000-0x000dbfff window]
[    0.500826] pci_bus 0000:02: resource 8 [mem 0xc0000000-0xfebfffff window]
[    0.500827] pci_bus 0000:02: resource 9 [io  0x0000-0x0cf7 window]
[    0.500827] pci_bus 0000:02: resource 10 [io  0x0d00-0xfeff window]
[    0.500829] pci_bus 0000:03: resource 0 [io  0x4000-0x4fff]
[    0.500830] pci_bus 0000:03: resource 1 [mem 0xfd400000-0xfd4fffff]
[    0.500831] pci_bus 0000:03: resource 2 [mem 0xe7a00000-0xe7afffff 64bit pref]
[    0.500832] pci_bus 0000:04: resource 0 [io  0x8000-0x8fff]
[    0.500833] pci_bus 0000:04: resource 1 [mem 0xfd000000-0xfd0fffff]
[    0.500833] pci_bus 0000:04: resource 2 [mem 0xe7600000-0xe76fffff 64bit pref]
[    0.500834] pci_bus 0000:05: resource 0 [io  0xc000-0xcfff]
[    0.500835] pci_bus 0000:05: resource 1 [mem 0xfcc00000-0xfccfffff]
[    0.500836] pci_bus 0000:05: resource 2 [mem 0xe7200000-0xe72fffff 64bit pref]
[    0.500837] pci_bus 0000:06: resource 1 [mem 0xfc800000-0xfc8fffff]
[    0.500838] pci_bus 0000:06: resource 2 [mem 0xe6e00000-0xe6efffff 64bit pref]
[    0.500839] pci_bus 0000:07: resource 1 [mem 0xfc400000-0xfc4fffff]
[    0.500840] pci_bus 0000:07: resource 2 [mem 0xe6a00000-0xe6afffff 64bit pref]
[    0.500841] pci_bus 0000:08: resource 1 [mem 0xfc000000-0xfc0fffff]
[    0.500842] pci_bus 0000:08: resource 2 [mem 0xe6600000-0xe66fffff 64bit pref]
[    0.500843] pci_bus 0000:09: resource 1 [mem 0xfbc00000-0xfbcfffff]
[    0.500844] pci_bus 0000:09: resource 2 [mem 0xe6200000-0xe62fffff 64bit pref]
[    0.500845] pci_bus 0000:0a: resource 1 [mem 0xfb800000-0xfb8fffff]
[    0.500846] pci_bus 0000:0a: resource 2 [mem 0xe5e00000-0xe5efffff 64bit pref]
[    0.500847] pci_bus 0000:0b: resource 0 [io  0x5000-0x5fff]
[    0.500847] pci_bus 0000:0b: resource 1 [mem 0xfd300000-0xfd3fffff]
[    0.500848] pci_bus 0000:0b: resource 2 [mem 0xe7900000-0xe79fffff 64bit pref]
[    0.500849] pci_bus 0000:0c: resource 0 [io  0x9000-0x9fff]
[    0.500850] pci_bus 0000:0c: resource 1 [mem 0xfcf00000-0xfcffffff]
[    0.500851] pci_bus 0000:0c: resource 2 [mem 0xe7500000-0xe75fffff 64bit pref]
[    0.500852] pci_bus 0000:0d: resource 0 [io  0xd000-0xdfff]
[    0.500852] pci_bus 0000:0d: resource 1 [mem 0xfcb00000-0xfcbfffff]
[    0.500853] pci_bus 0000:0d: resource 2 [mem 0xe7100000-0xe71fffff 64bit pref]
[    0.500854] pci_bus 0000:0e: resource 1 [mem 0xfc700000-0xfc7fffff]
[    0.500855] pci_bus 0000:0e: resource 2 [mem 0xe6d00000-0xe6dfffff 64bit pref]
[    0.500856] pci_bus 0000:0f: resource 1 [mem 0xfc300000-0xfc3fffff]
[    0.500857] pci_bus 0000:0f: resource 2 [mem 0xe6900000-0xe69fffff 64bit pref]
[    0.500865] pci_bus 0000:10: resource 1 [mem 0xfbf00000-0xfbffffff]
[    0.500865] pci_bus 0000:10: resource 2 [mem 0xe6500000-0xe65fffff 64bit pref]
[    0.500867] pci_bus 0000:11: resource 1 [mem 0xfbb00000-0xfbbfffff]
[    0.500868] pci_bus 0000:11: resource 2 [mem 0xe6100000-0xe61fffff 64bit pref]
[    0.500869] pci_bus 0000:12: resource 1 [mem 0xfb700000-0xfb7fffff]
[    0.500870] pci_bus 0000:12: resource 2 [mem 0xe5d00000-0xe5dfffff 64bit pref]
[    0.500871] pci_bus 0000:13: resource 0 [io  0x6000-0x6fff]
[    0.500872] pci_bus 0000:13: resource 1 [mem 0xfd200000-0xfd2fffff]
[    0.500872] pci_bus 0000:13: resource 2 [mem 0xe7800000-0xe78fffff 64bit pref]
[    0.500873] pci_bus 0000:14: resource 0 [io  0xa000-0xafff]
[    0.500874] pci_bus 0000:14: resource 1 [mem 0xfce00000-0xfcefffff]
[    0.500875] pci_bus 0000:14: resource 2 [mem 0xe7400000-0xe74fffff 64bit pref]
[    0.500876] pci_bus 0000:15: resource 0 [io  0xe000-0xefff]
[    0.500877] pci_bus 0000:15: resource 1 [mem 0xfca00000-0xfcafffff]
[    0.500877] pci_bus 0000:15: resource 2 [mem 0xe7000000-0xe70fffff 64bit pref]
[    0.500878] pci_bus 0000:16: resource 1 [mem 0xfc600000-0xfc6fffff]
[    0.500879] pci_bus 0000:16: resource 2 [mem 0xe6c00000-0xe6cfffff 64bit pref]
[    0.500880] pci_bus 0000:17: resource 1 [mem 0xfc200000-0xfc2fffff]
[    0.500881] pci_bus 0000:17: resource 2 [mem 0xe6800000-0xe68fffff 64bit pref]
[    0.500882] pci_bus 0000:18: resource 1 [mem 0xfbe00000-0xfbefffff]
[    0.500883] pci_bus 0000:18: resource 2 [mem 0xe6400000-0xe64fffff 64bit pref]
[    0.500884] pci_bus 0000:19: resource 1 [mem 0xfba00000-0xfbafffff]
[    0.500885] pci_bus 0000:19: resource 2 [mem 0xe6000000-0xe60fffff 64bit pref]
[    0.500886] pci_bus 0000:1a: resource 1 [mem 0xfb600000-0xfb6fffff]
[    0.500887] pci_bus 0000:1a: resource 2 [mem 0xe5c00000-0xe5cfffff 64bit pref]
[    0.500888] pci_bus 0000:1b: resource 0 [io  0x7000-0x7fff]
[    0.500889] pci_bus 0000:1b: resource 1 [mem 0xfd100000-0xfd1fffff]
[    0.500889] pci_bus 0000:1b: resource 2 [mem 0xe7700000-0xe77fffff 64bit pref]
[    0.500890] pci_bus 0000:1c: resource 0 [io  0xb000-0xbfff]
[    0.500891] pci_bus 0000:1c: resource 1 [mem 0xfcd00000-0xfcdfffff]
[    0.500892] pci_bus 0000:1c: resource 2 [mem 0xe7300000-0xe73fffff 64bit pref]
[    0.500893] pci_bus 0000:1d: resource 1 [mem 0xfc900000-0xfc9fffff]
[    0.500894] pci_bus 0000:1d: resource 2 [mem 0xe6f00000-0xe6ffffff 64bit pref]
[    0.500895] pci_bus 0000:1e: resource 1 [mem 0xfc500000-0xfc5fffff]
[    0.500896] pci_bus 0000:1e: resource 2 [mem 0xe6b00000-0xe6bfffff 64bit pref]
[    0.500897] pci_bus 0000:1f: resource 1 [mem 0xfc100000-0xfc1fffff]
[    0.500897] pci_bus 0000:1f: resource 2 [mem 0xe6700000-0xe67fffff 64bit pref]
[    0.500898] pci_bus 0000:20: resource 1 [mem 0xfbd00000-0xfbdfffff]
[    0.500899] pci_bus 0000:20: resource 2 [mem 0xe6300000-0xe63fffff 64bit pref]
[    0.500900] pci_bus 0000:21: resource 1 [mem 0xfb900000-0xfb9fffff]
[    0.500901] pci_bus 0000:21: resource 2 [mem 0xe5f00000-0xe5ffffff 64bit pref]
[    0.500902] pci_bus 0000:22: resource 1 [mem 0xfb500000-0xfb5fffff]
[    0.500902] pci_bus 0000:22: resource 2 [mem 0xe5b00000-0xe5bfffff 64bit pref]
[    0.501231] NET: Registered protocol family 2
[    0.502293] TCP established hash table entries: 4096 (order: 3, 32768 bytes)
[    0.502781] TCP bind hash table entries: 4096 (order: 4, 65536 bytes)
[    0.503362] TCP: Hash tables configured (established 4096 bind 4096)
[    0.506301] UDP hash table entries: 256 (order: 1, 8192 bytes)
[    0.506497] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes)
[    0.508617] NET: Registered protocol family 1
[    0.508677] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
[    0.508908] pci 0000:00:0f.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.511248] PCI: CLS mismatch (32 != 64), using 64 bytes
[    0.512172] Unpacking initramfs...
[    2.307761] Freeing initrd memory: 56528K
[    2.307911] Scanning for low memory corruption every 60 seconds
[    2.312475] Initialise system trusted keyrings
[    2.312528] Key type blacklist registered
[    2.312703] workingset: timestamp_bits=36 max_order=17 bucket_order=0
[    2.317450] zbud: loaded
[    2.319408] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    2.319812] fuse init (API version 7.26)
[    2.323680] Key type asymmetric registered
[    2.323729] Asymmetric key parser 'x509' registered
[    2.323894] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[    2.324051] io scheduler noop registered
[    2.324089] io scheduler deadline registered
[    2.324176] io scheduler cfq registered (default)
[    2.368503] pcieport 0000:00:15.0: Signaling PME with IRQ 24
[    2.368904] pcieport 0000:00:15.1: Signaling PME with IRQ 25
[    2.369450] pcieport 0000:00:15.2: Signaling PME with IRQ 26
[    2.369820] pcieport 0000:00:15.3: Signaling PME with IRQ 27
[    2.370250] pcieport 0000:00:15.4: Signaling PME with IRQ 28
[    2.370662] pcieport 0000:00:15.5: Signaling PME with IRQ 29
[    2.371013] pcieport 0000:00:15.6: Signaling PME with IRQ 30
[    2.371422] pcieport 0000:00:15.7: Signaling PME with IRQ 31
[    2.371821] pcieport 0000:00:16.0: Signaling PME with IRQ 32
[    2.372386] pcieport 0000:00:16.1: Signaling PME with IRQ 33
[    2.372754] pcieport 0000:00:16.2: Signaling PME with IRQ 34
[    2.373124] pcieport 0000:00:16.3: Signaling PME with IRQ 35
[    2.373503] pcieport 0000:00:16.4: Signaling PME with IRQ 36
[    2.373911] pcieport 0000:00:16.5: Signaling PME with IRQ 37
[    2.374367] pcieport 0000:00:16.6: Signaling PME with IRQ 38
[    2.374833] pcieport 0000:00:16.7: Signaling PME with IRQ 39
[    2.375233] pcieport 0000:00:17.0: Signaling PME with IRQ 40
[    2.375585] pcieport 0000:00:17.1: Signaling PME with IRQ 41
[    2.375933] pcieport 0000:00:17.2: Signaling PME with IRQ 42
[    2.376390] pcieport 0000:00:17.3: Signaling PME with IRQ 43
[    2.376775] pcieport 0000:00:17.4: Signaling PME with IRQ 44
[    2.377124] pcieport 0000:00:17.5: Signaling PME with IRQ 45
[    2.377479] pcieport 0000:00:17.6: Signaling PME with IRQ 46
[    2.377895] pcieport 0000:00:17.7: Signaling PME with IRQ 47
[    2.378245] pcieport 0000:00:18.0: Signaling PME with IRQ 48
[    2.378590] pcieport 0000:00:18.1: Signaling PME with IRQ 49
[    2.378936] pcieport 0000:00:18.2: Signaling PME with IRQ 50
[    2.379281] pcieport 0000:00:18.3: Signaling PME with IRQ 51
[    2.379690] pcieport 0000:00:18.4: Signaling PME with IRQ 52
[    2.380060] pcieport 0000:00:18.5: Signaling PME with IRQ 53
[    2.380411] pcieport 0000:00:18.6: Signaling PME with IRQ 54
[    2.380758] pcieport 0000:00:18.7: Signaling PME with IRQ 55
[    2.380991] pciehp 0000:00:15.0:pcie004: Slot #160 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+
[    2.381294] pciehp 0000:00:15.1:pcie004: Slot #161 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+
[    2.381576] pciehp 0000:00:15.2:pcie004: Slot #162 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+
[    2.382094] pciehp 0000:00:15.3:pcie004: Slot #163 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+
[    2.382369] pciehp 0000:00:15.4:pcie004: Slot #164 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+
[    2.382640] pciehp 0000:00:15.5:pcie004: Slot #165 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+
[    2.382933] pciehp 0000:00:15.6:pcie004: Slot #166 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+
[    2.383204] pciehp 0000:00:15.7:pcie004: Slot #167 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+
[    2.383452] pciehp 0000:00:16.0:pcie004: Slot #192 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+
[    2.383710] pciehp 0000:00:16.1:pcie004: Slot #193 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+
[    2.383953] pciehp 0000:00:16.2:pcie004: Slot #194 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+
[    2.384267] pciehp 0000:00:16.3:pcie004: Slot #195 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+
[    2.384600] pciehp 0000:00:16.4:pcie004: Slot #196 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+
[    2.384969] pciehp 0000:00:16.5:pcie004: Slot #197 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+
[    2.385234] pciehp 0000:00:16.6:pcie004: Slot #198 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+
[    2.385486] pciehp 0000:00:16.7:pcie004: Slot #199 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+
[    2.386114] pciehp 0000:00:17.0:pcie004: Slot #224 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+
[    2.386524] pciehp 0000:00:17.1:pcie004: Slot #225 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+
[    2.386792] pciehp 0000:00:17.2:pcie004: Slot #226 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+
[    2.387094] pciehp 0000:00:17.3:pcie004: Slot #227 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+
[    2.387436] pciehp 0000:00:17.4:pcie004: Slot #228 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+
[    2.387688] pciehp 0000:00:17.5:pcie004: Slot #229 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+
[    2.388191] pciehp 0000:00:17.6:pcie004: Slot #230 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+
[    2.388444] pciehp 0000:00:17.7:pcie004: Slot #231 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+
[    2.388771] pciehp 0000:00:18.0:pcie004: Slot #256 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+
[    2.389010] pciehp 0000:00:18.1:pcie004: Slot #257 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+
[    2.389254] pciehp 0000:00:18.2:pcie004: Slot #258 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+
[    2.389541] pciehp 0000:00:18.3:pcie004: Slot #259 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+
[    2.389837] pciehp 0000:00:18.4:pcie004: Slot #260 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+
[    2.390144] pciehp 0000:00:18.5:pcie004: Slot #261 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+
[    2.390484] pciehp 0000:00:18.6:pcie004: Slot #262 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+
[    2.390886] pciehp 0000:00:18.7:pcie004: Slot #263 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+
[    2.391237] intel_idle: Please enable MWAIT in BIOS SETUP
[    2.391609] ACPI: AC Adapter [ACAD] (on-line)
[    2.391836] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    2.391943] ACPI: Power Button [PWRF]
[    2.392632] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    2.418702] 00:05: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    2.422344] Linux agpgart interface v0.103
[    2.422589] agpgart-intel 0000:00:00.0: Intel 440BX Chipset
[    2.423259] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0x0
[    2.456227] loop: module loaded
[    2.456355] ata_piix 0000:00:07.1: version 2.13
[    2.456691] scsi host0: ata_piix
[    2.456814] scsi host1: ata_piix
[    2.456861] ata1: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0x1060 irq 14
[    2.456907] ata2: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0x1068 irq 15
[    2.457068] libphy: Fixed MDIO Bus: probed
[    2.457109] tun: Universal TUN/TAP device driver, 1.6
[    2.457425] PPP generic driver version 2.4.2
[    2.457492] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    2.457539] ehci-pci: EHCI PCI platform driver
[    2.458020] ehci-pci 0000:02:03.0: EHCI Host Controller
[    2.458063] ehci-pci 0000:02:03.0: new USB bus registered, assigned bus number 1
[    2.458300] ehci-pci 0000:02:03.0: cache line size of 64 is not supported
[    2.458313] ehci-pci 0000:02:03.0: irq 17, io mem 0xfd5cf000
[    2.472178] ehci-pci 0000:02:03.0: USB 2.0 started, EHCI 1.00
[    2.472294] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    2.472341] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.472390] usb usb1: Product: EHCI Host Controller
[    2.472425] usb usb1: Manufacturer: Linux 4.15.0-96-generic ehci_hcd
[    2.472467] usb usb1: SerialNumber: 0000:02:03.0
[    2.472587] hub 1-0:1.0: USB hub found
[    2.472621] hub 1-0:1.0: 6 ports detected
[    2.472792] ehci-platform: EHCI generic platform driver
[    2.472841] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    2.472884] ohci-pci: OHCI PCI platform driver
[    2.472927] ohci-platform: OHCI generic platform driver
[    2.472967] uhci_hcd: USB Universal Host Controller Interface driver
[    2.473459] uhci_hcd 0000:02:00.0: UHCI Host Controller
[    2.473501] uhci_hcd 0000:02:00.0: new USB bus registered, assigned bus number 2
[    2.473602] uhci_hcd 0000:02:00.0: detected 2 ports
[    2.473848] uhci_hcd 0000:02:00.0: irq 18, io base 0x00002400
[    2.474022] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[    2.474069] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.474118] usb usb2: Product: UHCI Host Controller
[    2.474152] usb usb2: Manufacturer: Linux 4.15.0-96-generic uhci_hcd
[    2.474194] usb usb2: SerialNumber: 0000:02:00.0
[    2.474287] hub 2-0:1.0: USB hub found
[    2.474319] hub 2-0:1.0: 2 ports detected
[    2.474574] i8042: PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:MOUS] at 0x60,0x64 irq 1,12
[    2.475470] serio: i8042 KBD port at 0x60,0x64 irq 1
[    2.475533] serio: i8042 AUX port at 0x60,0x64 irq 12
[    2.475625] mousedev: PS/2 mouse device common for all mice
[    2.497039] rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0
[    2.497280] rtc_cmos 00:01: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    2.497442] i2c /dev entries driver
[    2.497787] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
[    2.498124] device-mapper: uevent: version 1.0.3
[    2.498211] device-mapper: ioctl: 4.37.0-ioctl (2017-09-20) initialised: dm-devel@redhat.com
[    2.498372] ledtrig-cpu: registered to indicate activity on CPUs
[    2.498676] NET: Registered protocol family 10
[    2.504721] Segment Routing with IPv6
[    2.504784] NET: Registered protocol family 17
[    2.504875] Key type dns_resolver registered
[    2.505001] mce: Using 8 MCE banks
[    2.505037] RAS: Correctable Errors collector initialized.
[    2.505082] sched_clock: Marking stable (2504019591, 0)->(2698023623, -194004032)
[    2.505248] registered taskstats version 1
[    2.505305] Loading compiled-in X.509 certificates
[    2.507494] Loaded X.509 cert 'Build time autogenerated kernel key: 244b473b43e18b01f00e37a87f2ecd28620f0244'
[    2.507599] zswap: loaded using pool lzo/zbud
[    2.510089] Key type big_key registered
[    2.510140] Key type trusted registered
[    2.511350] Key type encrypted registered
[    2.511389] AppArmor: AppArmor sha1 policy hashing enabled
[    2.511427] ima: No TPM chip found, activating TPM-bypass! (rc=-19)
[    2.511472] ima: Allocated hash algorithm: sha1
[    2.511513] evm: HMAC attrs: 0x1
[    2.518155]   Magic number: 0:697:409
[    2.518263] pcieport 0000:00:18.1: hash matches
[    2.518477] rtc_cmos 00:01: setting system clock to 2020-04-15 02:26:07 UTC (1586917567)
[    2.518650] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    2.518691] EDD information not available.
[    2.640842] Freeing unused kernel image memory: 2432K
[    2.648442] Write protecting the kernel read-only data: 20480k
[    2.648814] Freeing unused kernel image memory: 2008K
[    2.649047] Freeing unused kernel image memory: 1880K
[    2.655006] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    2.655060] x86/mm: Checking user space page tables
[    2.661568] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    2.808036] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    2.812030] usb 2-1: new full-speed USB device number 2 using uhci_hcd
[    2.906621] piix4_smbus 0000:00:07.3: SMBus Host Controller not enabled!
[    2.909317] Fusion MPT base driver 3.04.20
[    2.909357] Copyright (c) 1999-2008 LSI Corporation
[    2.911065] Fusion MPT SPI Host driver 3.04.20
[    2.917095] e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI
[    2.917192] e1000: Copyright (c) 1999-2006 Intel Corporation.
[    2.935461] mptbase: ioc0: Initiating bringup
[    2.973012] usb 1-1: New USB device found, idVendor=0e0f, idProduct=000b
[    2.973089] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.973165] usb 1-1: Product: VMware Virtual USB Video Device
[    2.973229] usb 1-1: Manufacturer: VMware, Inc.
[    2.974658] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input4
[    2.975120] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input3
[    2.975341] usb 2-1: New USB device found, idVendor=0e0f, idProduct=0003
[    2.975399] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.975458] usb 2-1: Product: VMware Virtual USB Mouse
[    2.975693] usb 2-1: Manufacturer: VMware
[    3.042400] AVX2 version of gcm_enc/dec engaged.
[    3.042457] AES CTR mode by8 optimization enabled
[    3.044448] ioc0: LSI53C1030 B0: Capabilities={Initiator}
[    3.108036] usb 2-2: new full-speed USB device number 3 using uhci_hcd
[    3.290147] usb 2-2: New USB device found, idVendor=0e0f, idProduct=0002
[    3.290217] usb 2-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.290264] usb 2-2: Product: VMware Virtual USB Hub
[    3.290299] usb 2-2: Manufacturer: VMware, Inc.
[    3.306757] hub 2-2:1.0: USB hub found
[    3.312462] hub 2-2:1.0: 7 ports detected
[    3.312544] scsi host2: ioc0: LSI53C1030 B0, FwRev=01032920h, Ports=1, MaxQ=128, IRQ=17
[    3.329023] tsc: Refined TSC clocksource calibration: 2903.723 MHz
[    3.329112] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x29db001d7da, max_idle_ns: 440795231471 ns
[    3.329191] clocksource: Switched to clocksource tsc
[    3.365534] hidraw: raw HID events driver (C) Jiri Kosina
[    3.377871] usbcore: registered new interface driver usbhid
[    3.377922] usbhid: USB HID core driver
[    3.380579] input: VMware VMware Virtual USB Mouse as /devices/pci0000:00/0000:00:11.0/0000:02:00.0/usb2/2-1/2-1:1.0/0003:0E0F:0003.0001/input/input5
[    3.381060] hid-generic 0003:0E0F:0003.0001: input,hidraw0: USB HID v1.10 Mouse [VMware VMware Virtual USB Mouse] on usb-0000:02:00.0-1/input0
[    3.489326] e1000 0000:02:01.0 eth0: (PCI:66MHz:32-bit) 00:0c:29:7a:41:80
[    3.489382] e1000 0000:02:01.0 eth0: Intel(R) PRO/1000 Network Connection
[    3.489531] ahci 0000:02:05.0: version 3.0
[    3.490602] ahci 0000:02:05.0: AHCI 0001.0300 32 slots 30 ports 6 Gbps 0x3fffffff impl SATA mode
[    3.490680] ahci 0000:02:05.0: flags: 64bit ncq clo only 
[    3.492460] scsi 2:0:0:0: Direct-Access     VMware,  VMware Virtual S 1.0  PQ: 0 ANSI: 2
[    3.492552] scsi target2:0:0: Beginning Domain Validation
[    3.493144] scsi target2:0:0: Domain Validation skipping write tests
[    3.493194] scsi target2:0:0: Ending Domain Validation
[    3.493257] scsi target2:0:0: FAST-40 WIDE SCSI 80.0 MB/s ST (25 ns, offset 127)
[    3.497711] [drm] DMA map mode: Using physical TTM page addresses.
[    3.497897] [drm] Capabilities:
[    3.497926] [drm]   Rect copy.
[    3.497953] [drm]   Cursor.
[    3.497978] [drm]   Cursor bypass.
[    3.498006] [drm]   Cursor bypass 2.
[    3.498035] [drm]   8bit emulation.
[    3.498063] [drm]   Alpha cursor.
[    3.498091] [drm]   3D.
[    3.498114] [drm]   Extended Fifo.
[    3.498142] [drm]   Multimon.
[    3.498167] [drm]   Pitchlock.
[    3.498193] [drm]   Irq mask.
[    3.498219] [drm]   Display Topology.
[    3.498249] [drm]   GMR.
[    3.498272] [drm]   Traces.
[    3.498311] [drm]   GMR2.
[    3.498336] [drm]   Screen Object 2.
[    3.498365] [drm]   Command Buffers.
[    3.498395] [drm]   Command Buffers 2.
[    3.498426] [drm]   Guest Backed Resources.
[    3.498459] [drm]   DX Features.
[    3.498488] [drm] Max GMR ids is 64
[    3.498517] [drm] Max number of GMR pages is 65536
[    3.498554] [drm] Max dedicated hypervisor surface memory is 0 kiB
[    3.498598] [drm] Maximum display memory size is 262144 kiB
[    3.498646] [drm] VRAM at 0xe8000000 size is 4096 kiB
[    3.498684] [drm] MMIO at 0xfe000000 size is 256 kiB
[    3.498722] [drm] global init.
[    3.500039] sd 2:0:0:0: [sda] 167772160 512-byte logical blocks: (85.9 GB/80.0 GiB)
[    3.500140] sd 2:0:0:0: [sda] Write Protect is off
[    3.500181] sd 2:0:0:0: [sda] Mode Sense: 61 00 00 00
[    3.500239] sd 2:0:0:0: [sda] Cache data unavailable
[    3.500281] sd 2:0:0:0: [sda] Assuming drive cache: write through
[    3.501085] sd 2:0:0:0: Attached scsi generic sg0 type 0
[    3.503107] [TTM] Zone  kernel: Available graphics memory: 234598 kiB
[    3.503186] [TTM] Initializing pool allocator
[    3.503282] [TTM] Initializing DMA pool allocator
[    3.506291]  sda: sda1 sda2
[    3.506738] sd 2:0:0:0: [sda] Attached SCSI disk
[    3.507008] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
--> [    3.507105] [drm] No driver support for vblank timestamp query.
--> [    3.507393] [drm] Screen Target Display device initialized
[    3.507520] [drm] width 640
[    3.507556] [drm] height 480
[    3.507590] [drm] bpp 32
[    3.508556] [drm] Fifo max 0x00040000 min 0x00001000 cap 0x0000077f
[    3.510261] [drm] Using command buffers with DMA pool.
[    3.510330] [drm] DX: yes.
[    3.510360] [drm] Atomic: yes
[    3.516118] scsi host3: ahci
[    3.520367] fbcon: svgadrmfb (fb0) is primary device
[    3.522951] Console: switching to colour frame buffer device 100x37
[    3.524937] scsi host4: ahci
[    3.526387] [drm] Initialized vmwgfx 2.14.0 20170612 for 0000:00:0f.0 on minor 0
[    3.530244] scsi host5: ahci
[    3.535472] scsi host6: ahci
[    3.538883] random: fast init done
[    3.539926] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[    3.539970] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[    3.540331] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[    3.540534] scsi host7: ahci
[    3.540741] scsi host8: ahci
[    3.540907] scsi host9: ahci
[    3.548222] scsi host10: ahci
[    3.549361] scsi host11: ahci
[    3.550042] scsi host12: ahci
[    3.550676] scsi host13: ahci
[    3.551457] scsi host14: ahci
[    3.552252] scsi host15: ahci
[    3.553378] scsi host16: ahci
[    3.554761] scsi host17: ahci
[    3.559386] scsi host18: ahci
[    3.560849] scsi host19: ahci
[    3.562443] scsi host20: ahci
[    3.563558] scsi host21: ahci
[    3.564485] scsi host22: ahci
[    3.565643] scsi host23: ahci
[    3.567824] scsi host24: ahci
[    3.569346] scsi host25: ahci
[    3.569938] scsi host26: ahci
[    3.570410] scsi host27: ahci
[    3.570869] scsi host28: ahci
[    3.571958] scsi host29: ahci
[    3.573031] scsi host30: ahci
[    3.574026] scsi host31: ahci
[    3.577290] scsi host32: ahci
[    3.578809] ata3: SATA max UDMA/133 abar m4096@0xfd5ce000 port 0xfd5ce100 irq 56
[    3.579320] ata4: SATA max UDMA/133 abar m4096@0xfd5ce000 port 0xfd5ce180 irq 56
[    3.579694] ata5: SATA max UDMA/133 abar m4096@0xfd5ce000 port 0xfd5ce200 irq 56
[    3.579994] ata6: SATA max UDMA/133 abar m4096@0xfd5ce000 port 0xfd5ce280 irq 56
[    3.580383] ata7: SATA max UDMA/133 abar m4096@0xfd5ce000 port 0xfd5ce300 irq 56
[    3.580674] ata8: SATA max UDMA/133 abar m4096@0xfd5ce000 port 0xfd5ce380 irq 56
[    3.580966] ata9: SATA max UDMA/133 abar m4096@0xfd5ce000 port 0xfd5ce400 irq 56
[    3.581258] ata10: SATA max UDMA/133 abar m4096@0xfd5ce000 port 0xfd5ce480 irq 56
[    3.581496] ata11: SATA max UDMA/133 abar m4096@0xfd5ce000 port 0xfd5ce500 irq 56
[    3.581843] ata12: SATA max UDMA/133 abar m4096@0xfd5ce000 port 0xfd5ce580 irq 56
[    3.582087] ata13: SATA max UDMA/133 abar m4096@0xfd5ce000 port 0xfd5ce600 irq 56
[    3.582511] ata14: SATA max UDMA/133 abar m4096@0xfd5ce000 port 0xfd5ce680 irq 56
[    3.582779] ata15: SATA max UDMA/133 abar m4096@0xfd5ce000 port 0xfd5ce700 irq 56
[    3.582999] ata16: SATA max UDMA/133 abar m4096@0xfd5ce000 port 0xfd5ce780 irq 56
[    3.583227] ata17: SATA max UDMA/133 abar m4096@0xfd5ce000 port 0xfd5ce800 irq 56
[    3.583604] ata18: SATA max UDMA/133 abar m4096@0xfd5ce000 port 0xfd5ce880 irq 56
[    3.584101] ata19: SATA max UDMA/133 abar m4096@0xfd5ce000 port 0xfd5ce900 irq 56
[    3.584462] ata20: SATA max UDMA/133 abar m4096@0xfd5ce000 port 0xfd5ce980 irq 56
[    3.584824] ata21: SATA max UDMA/133 abar m4096@0xfd5ce000 port 0xfd5cea00 irq 56
[    3.585170] ata22: SATA max UDMA/133 abar m4096@0xfd5ce000 port 0xfd5cea80 irq 56
[    3.585513] ata23: SATA max UDMA/133 abar m4096@0xfd5ce000 port 0xfd5ceb00 irq 56
[    3.585806] ata24: SATA max UDMA/133 abar m4096@0xfd5ce000 port 0xfd5ceb80 irq 56
[    3.586142] ata25: SATA max UDMA/133 abar m4096@0xfd5ce000 port 0xfd5cec00 irq 56
[    3.586481] ata26: SATA max UDMA/133 abar m4096@0xfd5ce000 port 0xfd5cec80 irq 56
[    3.586775] ata27: SATA max UDMA/133 abar m4096@0xfd5ce000 port 0xfd5ced00 irq 56
[    3.587127] ata28: SATA max UDMA/133 abar m4096@0xfd5ce000 port 0xfd5ced80 irq 56
[    3.587337] ata29: SATA max UDMA/133 abar m4096@0xfd5ce000 port 0xfd5cee00 irq 56
[    3.587663] ata30: SATA max UDMA/133 abar m4096@0xfd5ce000 port 0xfd5cee80 irq 56
[    3.587974] ata31: SATA max UDMA/133 abar m4096@0xfd5ce000 port 0xfd5cef00 irq 56
[    3.588188] ata32: SATA max UDMA/133 abar m4096@0xfd5ce000 port 0xfd5cef80 irq 56
[    3.669498] usb 2-2.1: new full-speed USB device number 4 using uhci_hcd
[    3.851855] usb 2-2.1: New USB device found, idVendor=0e0f, idProduct=0008
[    3.852052] usb 2-2.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    3.852254] usb 2-2.1: Product: Virtual Bluetooth Adapter
[    3.852446] usb 2-2.1: Manufacturer: VMware
[    3.852641] usb 2-2.1: SerialNumber: 000650268328
[    3.906320] ata13: SATA link down (SStatus 0 SControl 300)
[    3.906580] ata12: SATA link down (SStatus 0 SControl 300)
[    3.906865] ata11: SATA link down (SStatus 0 SControl 300)
[    3.907110] ata10: SATA link down (SStatus 0 SControl 300)
[    3.907340] ata9: SATA link down (SStatus 0 SControl 300)
[    3.907672] ata8: SATA link down (SStatus 0 SControl 300)
[    3.907967] ata7: SATA link down (SStatus 0 SControl 300)
[    3.908256] ata6: SATA link down (SStatus 0 SControl 300)
[    3.908515] ata5: SATA link down (SStatus 0 SControl 300)
[    3.908983] ata4: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    3.909338] ata4.00: ATAPI: VMware Virtual SATA CDRW Drive, 00000001, max UDMA/33
[    3.909824] ata4.00: configured for UDMA/33
[    3.910313] ata3: SATA link down (SStatus 0 SControl 300)
[    3.910884] scsi 4:0:0:0: CD-ROM            NECVMWar VMware SATA CD01 1.00 PQ: 0 ANSI: 5
[    3.911554] sr 4:0:0:0: [sr0] scsi3-mmc drive: 1x/1x writer dvd-ram cd/rw xa/form2 cdda tray
[    3.911872] cdrom: Uniform CD-ROM driver Revision: 3.20
[    3.912275] ata15: SATA link down (SStatus 0 SControl 300)
[    3.912739] ata16: SATA link down (SStatus 0 SControl 300)
[    3.913116] ata17: SATA link down (SStatus 0 SControl 300)
[    3.913585] ata18: SATA link down (SStatus 0 SControl 300)
[    3.913912] ata19: SATA link down (SStatus 0 SControl 300)
[    3.914292] ata20: SATA link down (SStatus 0 SControl 300)
[    3.914650] ata21: SATA link down (SStatus 0 SControl 300)
[    3.914969] ata14: SATA link down (SStatus 0 SControl 300)
[    3.915499] sr 4:0:0:0: Attached scsi CD-ROM sr0
[    3.915547] sr 4:0:0:0: Attached scsi generic sg1 type 5
[    3.915927] ata32: SATA link down (SStatus 0 SControl 300)
[    3.916282] ata27: SATA link down (SStatus 0 SControl 300)
[    3.916639] ata23: SATA link down (SStatus 0 SControl 300)
[    3.917014] ata24: SATA link down (SStatus 0 SControl 300)
[    3.917376] ata28: SATA link down (SStatus 0 SControl 300)
[    3.917716] ata30: SATA link down (SStatus 0 SControl 300)
[    3.918062] ata25: SATA link down (SStatus 0 SControl 300)
[    3.918370] ata26: SATA link down (SStatus 0 SControl 300)
[    3.918669] ata31: SATA link down (SStatus 0 SControl 300)
[    3.918951] ata29: SATA link down (SStatus 0 SControl 300)
[    3.919251] ata22: SATA link down (SStatus 0 SControl 300)
[    4.081996] e1000 0000:02:06.0 eth1: (PCI:66MHz:32-bit) 00:0c:29:7a:41:8a
[    4.082357] e1000 0000:02:06.0 eth1: Intel(R) PRO/1000 Network Connection
[    4.509682] e1000 0000:02:07.0 eth2: (PCI:66MHz:32-bit) 00:0c:29:7a:41:94
[    4.509985] e1000 0000:02:07.0 eth2: Intel(R) PRO/1000 Network Connection
[    4.513747] e1000 0000:02:06.0 ens38: renamed from eth1
[    4.515228] e1000 0000:02:07.0 ens39: renamed from eth2
[    4.519519] e1000 0000:02:01.0 ens33: renamed from eth0
[    4.684017] raid6: sse2x1   gen() 11576 MB/s
[    4.732074] raid6: sse2x1   xor()  8408 MB/s
[    4.780016] raid6: sse2x2   gen() 14388 MB/s
[    4.828006] raid6: sse2x2   xor()  9730 MB/s
[    4.876017] raid6: sse2x4   gen() 16630 MB/s
[    4.924014] raid6: sse2x4   xor() 10704 MB/s
[    4.972016] raid6: avx2x1   gen() 23293 MB/s
[    5.020019] raid6: avx2x1   xor() 15871 MB/s
[    5.068009] raid6: avx2x2   gen() 26215 MB/s
[    5.116007] raid6: avx2x2   xor() 17926 MB/s
[    5.164008] raid6: avx2x4   gen() 32502 MB/s
[    5.212007] raid6: avx2x4   xor() 19928 MB/s
[    5.212251] raid6: using algorithm avx2x4 gen() 32502 MB/s
[    5.212498] raid6: .... xor() 19928 MB/s, rmw enabled
[    5.212778] raid6: using avx2x2 recovery algorithm
[    5.215407] xor: automatically using best checksumming function   avx       
[    5.217246] async_tx: api initialized (async)
[    5.283230] Btrfs loaded, crc32c=crc32c-intel
[    5.324806] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
[    5.508592] ip_tables: (C) 2000-2006 Netfilter Core Team
[    5.522010] systemd[1]: systemd 237 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)
[    5.523569] systemd[1]: Detected virtualization vmware.
[    5.524196] systemd[1]: Detected architecture x86-64.
[    5.530836] systemd[1]: Set hostname to <silvia>.
[    5.804361] systemd[1]: Created slice User and Session Slice.
[    5.805510] systemd[1]: Reached target User and Group Name Lookups.
[    5.806995] systemd[1]: Created slice System Slice.
[    5.808235] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[    5.809512] systemd[1]: Listening on Journal Socket.
[    5.811536] systemd[1]: Starting Uncomplicated firewall...
[    5.846763] EXT4-fs (sda2): re-mounted. Opts: (null)
[    5.914671] Loading iSCSI transport class v2.0-870.
[    6.000841] iscsi: registered transport (tcp)
[    6.022739] Adding 2097148k swap on /swap.img.  Priority:-2 extents:4 across:2367484k FS
[    6.198542] iscsi: registered transport (iser)
[    6.437586] systemd-journald[518]: Received request to flush runtime journal from PID 1
[    7.104378] audit: type=1400 audit(1586917572.082:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lxc-container-default" pid=634 comm="apparmor_parser"
[    7.104380] audit: type=1400 audit(1586917572.082:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lxc-container-default-cgns" pid=634 comm="apparmor_parser"
[    7.104381] audit: type=1400 audit(1586917572.082:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lxc-container-default-with-mounting" pid=634 comm="apparmor_parser"
[    7.104382] audit: type=1400 audit(1586917572.082:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lxc-container-default-with-nesting" pid=634 comm="apparmor_parser"
[    7.158349] audit: type=1400 audit(1586917572.134:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=635 comm="apparmor_parser"
[    7.158351] audit: type=1400 audit(1586917572.134:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=635 comm="apparmor_parser"
[    7.158352] audit: type=1400 audit(1586917572.134:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=635 comm="apparmor_parser"
[    7.158353] audit: type=1400 audit(1586917572.134:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=635 comm="apparmor_parser"
[    7.169559] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    7.188750] audit: type=1400 audit(1586917572.166:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/lxc-start" pid=637 comm="apparmor_parser"
[    7.196620] audit: type=1400 audit(1586917572.174:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=638 comm="apparmor_parser"
[    7.248521] vmw_vmci 0000:00:07.7: Found VMCI PCI device at 0x11080, irq 16
[    7.248598] vmw_vmci 0000:00:07.7: Using capabilities 0x8000000c
[    7.250489] Guest personality initialized and is active
[    7.251499] VMCI host device registered (name=vmci, major=10, minor=56)
[    7.251500] Initialized host personality
[    7.572939] NET: Registered protocol family 40
[    7.628307] media: Linux media interface: v0.10
[    7.682919] Linux video capture interface: v2.00
[    7.826972] random: crng init done
[    7.826973] random: 7 urandom warning(s) missed due to ratelimiting
[    7.892129] Bluetooth: Core ver 2.22
[    7.892146] NET: Registered protocol family 31
[    7.892147] Bluetooth: HCI device and connection manager initialized
[    7.892149] Bluetooth: HCI socket layer initialized
[    7.892151] Bluetooth: L2CAP socket layer initialized
[    7.892155] Bluetooth: SCO socket layer initialized
[    7.984764] usbcore: registered new interface driver btusb
[    8.194058] uvcvideo: Found UVC 1.00 device VMware Virtual USB Video Device (0e0f:000b)
[    8.208151] uvcvideo 1-1:1.0: Entity type for entity Camera 1 was not initialized!
[    8.208200] usbcore: registered new interface driver uvcvideo
[    8.208201] USB Video Class driver (1.1.1)
[    8.333640] RAPL PMU: API unit is 2^-32 Joules, 5 fixed counters, 10737418240 ms ovfl timer
[    8.333642] RAPL PMU: hw unit of domain pp0-core 2^-0 Joules
[    8.333642] RAPL PMU: hw unit of domain package 2^-0 Joules
[    8.333642] RAPL PMU: hw unit of domain dram 2^-0 Joules
[    8.333642] RAPL PMU: hw unit of domain pp1-gpu 2^-0 Joules
[    8.333643] RAPL PMU: hw unit of domain psys 2^-0 Joules
[   10.229671] 8021q: 802.1Q VLAN Support v1.8
[   10.244706] e1000: ens33 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None
[   10.255543] IPv6: ADDRCONF(NETDEV_UP): ens33: link is not ready
[   10.255561] 8021q: adding VLAN 0 to HW filter on device ens33
[   10.284862] e1000: ens39 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None
[   10.288553] IPv6: ADDRCONF(NETDEV_UP): ens39: link is not ready
[   10.296156] 8021q: adding VLAN 0 to HW filter on device ens39
[   10.311132] IPv6: ADDRCONF(NETDEV_UP): ens39.102: link is not ready
[   10.321022] IPv6: ADDRCONF(NETDEV_CHANGE): ens39: link becomes ready
[   10.321102] IPv6: ADDRCONF(NETDEV_CHANGE): ens39.102: link becomes ready
[   10.342810] IPv6: ADDRCONF(NETDEV_UP): ens38: link is not ready
[   10.342813] 8021q: adding VLAN 0 to HW filter on device ens38
[   10.344651] e1000: ens38 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None
[   10.360161] IPv6: ADDRCONF(NETDEV_UP): ens38.101: link is not ready
[   10.363668] IPv6: ADDRCONF(NETDEV_CHANGE): ens38.101: link becomes ready
[   10.363732] IPv6: ADDRCONF(NETDEV_CHANGE): ens38: link becomes ready
[   11.232284] IPv6: ADDRCONF(NETDEV_CHANGE): ens33: link becomes ready
--> [  131.185669] new mount options do not match the existing superblock, will be ignored
[ 4972.773063] DLM installed
[ 4972.774488] scst: loading out-of-tree module taints kernel.
[ 4972.775150] scst: module verification failed: signature and/or required key missing - tainting kernel
[ 4972.788395] [107168]: scst: User interface thread started
[ 4972.790055] [107160]: scst: Attached to scsi2, channel 0, id 0, lun 0, type 0
[ 4972.790063] [107160]: scst: Attached to scsi4, channel 0, id 0, lun 0, type 5
[ 4972.792960] [107173]: scst: Init thread started
[ 4972.795217] [107174]: scst: Task management thread started
[ 4972.797677] [107160]: scst: Target template copy_manager registered successfully
[ 4972.797694] [107160]: scst: Target copy_manager_tgt for template copy_manager registered successfully
[ 4972.797697] [107160]: scst: Using security group "copy_manager_tgt" for initiator "copy_manager_sess" (target copy_manager_tgt)
[ 4972.797704] [107160]: scst: SCST version 3.4.0-pre1 loaded successfully (global max mem for commands ignored, per device 45MB)
[ 4972.797705] [107160]: scst: Enabled features: TRACING
[ 4972.798093] [107175]: scst: Management thread started
silvia@silvia:~$ Step

Step 5. I verify and do base of this: https://kb.vmware.com/s/article/1003988

—>>> Using the VMware vSphere or VI Client to perform a rescan

To rescan using the vSphere or VI Client:

  1. Log in to the client and select an ESX/ESXi host in your inventory.
  2. Click the Configuration tab.
  3. Click Storage Adapters.
  4. Click the Rescan link.
  5. Click OK to begin the rescan. <<< —— into mine application does not appears this

The progress of the rescan can be monitored from the ESX/ESXi host console in the /var/log/vmkernel (for ESXi hosts) << ——  No such file or directory

[root@esxi01:~] cat /var/log/vmkernel
cat: can't open '/var/log/vmkernel': No such file or directory

[root@esxi01:~] ls /var/log
EMU                          esxupdate.log                kickstart.log                syslog.log                   vmksummary.log
Xorg.log                     fdm.log                      lacp.log                     tallylog                     vmkwarning.log
auth.log                     hbragent.log                 loadESX.log                  upitd.log                    vmware
boot.gz                      hostd-probe.log              nfcd.log                     usb.log                      vmware-vmsvc.log
clomd.log                    hostd.log                    osfsd.log                    vdfsd-proxy.log              vobd.log
clusterAgent.log             hostdCgiServer.log           rabbitmqproxy.log            vdfsd-server.log             vprobe.log
cmmdsTimeMachine.log         hostprofiletrace.log         rhttpproxy.log               vitd.log                     vpxa.log
cmmdsTimeMachineDump.log     init.log                     sdrsinjector.log             vlf                          vsandpd.log
configRP.log                 iofilter-init.log            shell.log                    vlf-ts                       vsanmgmt.log
cryptoloader.log             iofiltervpd.log              sockrelay.log                vmauthd.log                  vsansystem.log
ddecomd.log                  jumpstart-esxcli-stdout.log  storagerm.log                vmkdevmgr.log                vvold.log
dhclient.log                 jumpstart-native-stdout.log  swapobjd.log                 vmkernel.log
epd.log                      jumpstart-stdout.log         sysboot.log                  vmkeventd.log
[root@esxi01:~]

—>>> Using the ESXi 5.x and later host command lineTo rescan, run one of these commands:

A. To rescan all HBAs: esxcli storage core adapter rescan –all

B. To rescan a specific HBA:  esxcli storage core adapter rescan –adapter <vmkernel SCSI adapter name>

C. Where <vmkernel SCSI adapter name> is the vmhba# to be rescanned. To get a list of all adapters, run the esxcli storage core adapter list command.

Note: There may not be any output if there are no changes. 

D. Mine use:

[root@esxi01:~] esxcli storage core adapter rescan --all
[root@esxi01:~] esxcli storage core adapter list
HBA Name  Driver     Link State  UID            Capabilities         Description
--------  ---------  ----------  -------------  -------------------  ------------------------------------------------------------------------
vmhba0    pvscsi     link-n/a    pscsi.vmhba0                        (0000:03:00.0) VMware Inc. PVSCSI SCSI Controller
vmhba1    vmkata     link-n/a    ide.vmhba1                          (0000:00:07.1) Intel Corporation PIIX4 for 430TX/440BX/MX IDE Controller
vmhba64   vmkata     link-n/a    ide.vmhba64                         (0000:00:07.1) Intel Corporation PIIX4 for 430TX/440BX/MX IDE Controller
vmhba65   iscsi_vmk  online      iscsi.vmhba65  Second Level Lun ID  iSCSI Software Adapter
[root@esxi01:~]

E. To search for new VMFS datastores, run this command: vmkfstools -V

F. Mine Use:

[root@esxi01:~] vmkfstools -V
[root@esxi01:~]

Problem, problem, problem and not capable to go farther!!!

Importanta photos need for understanding are here: https://photos.app.goo.gl/Zd3BCChctkx88MRr7