PC Construction

The continuing saga of migrating an existing UEFI/Linux installation on HDD onto a SSD... and get it to boot.

The story so far: simply cloning the HDD onto the SSD doesn't work, because both the UEFI boot process and Grub (the Linux boot loader) log the actual identities of the drives and partitions they are set to boot from. The UEFI boot process isn't fixed, the motherboard firmware scans for bootable storage at boot time and makes its own assumptions about priorities with very little the user can do about it.

If you end up with a Grub command prompt, there are obtuse actions one can take to build a menu of bootable entities, but let's not go there. This is more likely if the installation had been MBR rather than UEFI (at least you then know what is being booted), but mine isn't.

I have come across a tool which claims to export the configuration of a Linux system, but I have not resorted to that yet. Partly with the aim of understanding what's going on, I am currently trying to use the HDD installation as a template, back the critical parts of it up to an external drive, then copy those critical parts over the top of a fresh installation on the SSD (which boots, because the installation process ensures it does).

I need a bit of guidance from Linux experts:

Booting from the HDD (SSD disconnected), I have been trying to use the built-in backup tool to create a .tar on an external drive, but the backup tool seems very stupid and I have caught it trying to copy obviously idiotic files which I then have to manually set to exclude from the backup:
  • It tried to copy the drive it was backing up to, because Linux mounts the external drive into the file system that is being backed up (surely the authors would automatically exclude the backup drive from the backup??);
  • It tried to copy /proc/kcore, which is some kind of place-holder for the entire potential storage space on the whole system.
My question is: I assume it is valid to exclude the entire /proc folder from the backup, but what other folders or files does this apply to?:

What needs to be exported: anything which personalises the Linux installation, post-installation.

What doesn't need to be exported: any file that hasn't changed since installation, or any file which gets updated/recreated live.

Am I barking up the wrong tree by trying to back up a live system in the first place? Would I be better off booting a live CD, and then backing up the HDD (which would not then be running the OS)?
 
Sh*t! It was soooo simple in the end:

How to Clone a Linux Mint installed under UEFI

Each partition on a drive normally has its own randomly-assigned UUID (Universally Unique Identifier), which is used to locate bootable targets in the UEFI boot process. Ensuring the boot process finds the expected UUID is the key to making UEFI/GRUB boot the OS, and seems to be much easier than updating the boot process to expect a different UUID (although it should be possible to create a software tool to do exactly that).

Therefore, to recreate an existing installation exactly, not only is it necessary to duplicate the contents of each drive partition, it is also necessary to mimic the drive and partition UUIDs. This was never the case with MBR, where all one had to do was mark a partition as bootable in the partition table.

Experiments show that to get a Linux Mint installation cloned and bootable under UEFI, it is sufficient to duplicate the partitions, and duplicate the UUID for the main Linux partition. This has been hard-won, after many hours spent on fruitless backup and restore operations.
  1. Boot Linux from DVD so the source and target drives are free to mount and unmount. Presuming the source installation was shut down properly, this also ensures the source file system isn't cluttered with transient OS files and pseudo-files which would make the first boot of the target think it had been turned off without shutting down.
  2. Set up the partitions on the target drive to mimic the source drive. I did this simply by installing Mint on the target drive, with the source drive disconnected to prevent confusion, then reconnected the source drive.
  3. Use Menu >> Administration >> GParted to clone (copy) the EFI partition and the main Linux partition from the source drive to the target drive (no need to copy the swap partition). Obviously the partition sizes need to be sufficient.
  4. Obtain a root command prompt in Terminal: sudo -i.
  5. Ensure the source drive is mounted and obtain the UUID for its Linux partition: blkid. Be very careful you really are looking at the source drive - if necessary, temporarily disconnect the target drive to resolve any confusion.
  6. Ensure the target drive is mounted, and update the UUID of the Linux partition to match that on the source drive (copy and paste the string of hex from the blkid output, including the quotes): tune2fs <target> -U "<uuid>". In my case, <target> = /dev/sda2 (the second partition on drive sda). Note: cloning the UUID the wrong way around, ie from the target drive to the source drive, will result in neither installation booting.
  7. Do the same UUID clone operation (steps 5 & 6) for the swap partition. The system will boot without this, but take a long time. Alternatively /etc/fstab can be patched up afterwards.*
  8. Disconnect the source drive, eject the Linux DVD, and reboot.
<collective sigh of relief>

* Step added in light of later developments.
 
Last edited:
Yeah, but why would I?

I admit I've not pondered the matter, but first impression is that hiding my physical drives away behind an all-encompassing virtual drive makes it very difficult to control what type of storage (SSD or spinny disk) is used for any particular file or folder.

The next item on my tick list is to fit a four-drive RAID 10 (3TB* overall, in addition to the 256GB SSD), but I need to acquire more SATA cables. The mobo supports RAID, but by the looks of things I could declare the four drives as a RAID volume within LVM. However, surely the performance would be better using the mobo facilities?

* I have four cast-off Barracudas: two 1.5TB and two 2TB. I'm not sure 1.5+2 can be striped together to make 3.5TB, so I will have to put up with 3TB (heck, they were free!).
 
Migration progress: I have managed to install drivers for my WiFi printer (and install a print-to-PDF driver), and even got the built-in scanner to work (but that's flaky - most of the time it won't connect).

Being able to print is a must; hopefully scanning will work in a Windows VM.
 
Yeah, but why would I?
Why wouldn't you? It makes things more flexible and life easier. Tieing filesystems to partitions is a right PITA as you can neither expand them without a humungous load of faff, nor shrink them without leaving useless little holes. LVM gets rid of all that.
ZFS and pools, which af123 will tell you about, is a similar sort of thing but different. It was too complicated for me :) .
first impression is that hiding my physical drives away behind an all-encompassing virtual drive makes it very difficult to control what type of storage (SSD or spinny disk) is used for any particular file or folder.
It doesn't. You just need to understand it. You can use more than one volume group. I do (but it has its downsides as well, as I found out when I couldn't then easily do something I wanted to).
The next item on my tick list is to fit a four-drive RAID 10 (3TB* overall, in addition to the 256GB SSD), but I need to acquire more SATA cables. The mobo supports RAID, but by the looks of things I could declare the four drives as a RAID volume within LVM.
I've only used mdadm software RAID, with LVM on top of that.
You will only get 3TB out of a RAID 10. If you want 3.5TB, then I expect you'll want a RAID 0 of JBOD, but this won't stripe.
However, surely the performance would be better using the mobo facilities?
Dunno. I didn't want to be tied to anything hardware related in case the hardware failed.
 
It doesn't. You just need to understand it. You can use more than one volume group. I do (but it has its downsides as well, as I found out when I couldn't then easily do something I wanted to).
I've only used mdadm software RAID, with LVM on top of that.
I still don't get it. Okay, if you have a range of storage (maybe even network storage) and no need for any structure within that, I can see LVM provides the equivalent of JOBD. I can see that if you want some structure, you can set up LVM to provide it.

What I don't understand is what the advantage is, when the structure you want is identical to the physical situation. I expect to have:
  1. SSD with all the bootable stuff, OS stuff, application stuff.
  2. RAID array with everything else.
How does it help to put those under LVM, and then use LVM to set up separate volumes on the SSD and the RAID? I can see that it would help me if LVM simulates the Windows system with drive letters instead of the RAID getting mounted under /mnt or /media, within the overall filing system.
 
Getting ZEN onto (under) my desk is contingent on not interrupting the day-to-day work normally conducted on my notebook, so it occurs to me I could do that with a KVM switch. Maybe I could do that with remote desktop software too, but using a KVM switch means not having two computers on just to use one.

Can anyone point me at a reasonably priced 4K HDMI KVM switch available in the UK? Every single one on eBay, and Amazon, seems to ship from China.

Perhaps I'll take a look at what Remote Desktop has to offer...
 
What I don't understand is what the advantage is, when the structure you want is identical to the physical situation.
Flexibility and snapshots to name just two. And when the physical situation changes, it's a lot easier to manage as you can seamlessly migrate volumes between physical devices. LVM is a bit like dynamic partitions.
Have a play with VMs to learn - I usually use Ubuntu server. Good for command line practice too.
You just need to open your mind to the possibilities.
 
Despite the clone-to-SSD booting, there must be something wrong with it - it takes about 2'30" to boot from the GRUB menu, whereas the HDD installation only takes 2'.
 
I'm pretty unhappy at the mo, ZEN crashed and rebooted for no apparent reason last night - and I was using it for the first time to write a document (LibreOffice). Fortunately recovery worked fine.
 
Despite the clone-to-SSD booting, there must be something wrong with it - it takes about 2'30" to boot from the GRUB menu, whereas the HDD installation only takes 2'.
There is something wrong there.
My laptop SSD typically boots up in 35-45secs when I only have a fresh install of Linux Mint.
So can you post the results of the following after each of the 2 boots - to give us a better idea
Code:
sudo fdisk -l /dev/sda /dev/sdb /dev/sdc /dev/sdd
df -h
ls /sys/firmware/efi
ls /boot
ls /boot/efi
ls /boot/efi/EFI
 
Last edited:
There's only sda.

SSD:
Code:
@ZEN ~ $ sudo -i

ZEN ~ # fdisk -l
Disk /dev/sda: 238.5 GiB, 256059432448 bytes, 500116079 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: gpt
Disk identifier: C590CBDA-23E4-4F6E-9B09-E13E89878570

Device         Start       End   Sectors  Size Type
/dev/sda1       2048   1050623   1048576  512M EFI System
/dev/sda2    1050624 466702335 465651712  222G Linux filesystem
/dev/sda3  466702336 500115455  33413120   16G Linux swap


ZEN ~ # df -h
Filesystem      Size  Used Avail Use% Mounted on
udev            7.8G     0  7.8G   0% /dev
tmpfs           1.6G  9.4M  1.6G   1% /run
/dev/sda2       219G   51G  157G  25% /
tmpfs           7.9G   71M  7.8G   1% /dev/shm
tmpfs           5.0M  4.0K  5.0M   1% /run/lock
tmpfs           7.9G     0  7.9G   0% /sys/fs/cgroup
/dev/sda1       511M  3.5M  508M   1% /boot/efi
cgmfs           100K     0  100K   0% /run/cgmanager/fs
tmpfs           1.6G   32K  1.6G   1% /run/user/1000
ZEN ~ # ls /sys/firmware/efi
config_table  esrt              fw_vendor  runtime-map  vars
efivars       fw_platform_size  runtime    systab
ZEN ~ # ls /boot
abi-4.8.0-53-generic         memtest86+.bin
config-4.8.0-53-generic      memtest86+.elf
efi                          memtest86+_multiboot.bin
grub                         System.map-4.8.0-53-generic
initrd.img-4.8.0-53-generic  vmlinuz-4.8.0-53-generic
ZEN ~ # ls /boot/efi
EFI
ZEN ~ # ls /boot/efi/EFI
ubuntu
ZEN ~ #


HDD:
Code:
@ZEN ~ $ sudo -i

ZEN ~ # fdisk -l
Disk /dev/sda: 1.8 TiB, 2000398934016 bytes, 3907029168 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: gpt
Disk identifier: 4EC4E0BF-CB0D-42F1-96B3-FD56C833134C

Device          Start        End   Sectors  Size Type
/dev/sda1        2048    1050623   1048576  512M EFI System
/dev/sda2     1050624  466702335 465651712  222G Linux filesystem
/dev/sda3  3873615872 3907028991  33413120   16G Linux swap


ZEN ~ # df -h
Filesystem      Size  Used Avail Use% Mounted on
udev            7.8G     0  7.8G   0% /dev
tmpfs           1.6G  9.4M  1.6G   1% /run
/dev/sda2       219G   51G  158G  25% /
tmpfs           7.9G   66M  7.8G   1% /dev/shm
tmpfs           5.0M  4.0K  5.0M   1% /run/lock
tmpfs           7.9G     0  7.9G   0% /sys/fs/cgroup
/dev/sda1       511M  3.5M  508M   1% /boot/efi
cgmfs           100K     0  100K   0% /run/cgmanager/fs
tmpfs           1.6G   48K  1.6G   1% /run/user/1000
ZEN ~ # ls /sys/firmware/efi
config_table  esrt              fw_vendor  runtime-map  vars
efivars       fw_platform_size  runtime    systab
ZEN ~ # ls /boot
abi-4.8.0-53-generic         memtest86+.bin
config-4.8.0-53-generic      memtest86+.elf
efi                          memtest86+_multiboot.bin
grub                         System.map-4.8.0-53-generic
initrd.img-4.8.0-53-generic  vmlinuz-4.8.0-53-generic
ZEN ~ # ls /boot/efi
EFI
ZEN ~ # ls /boot/efi/EFI
ubuntu
ZEN ~ #


Maybe it's confused because I didn't clone the disk identifier? Bear in mind I have installed a bit more since running the SSD.
 
Last edited:
There's only sda.
That's good. It shows you only have either the SSD or HDD drive powered up during this testing period - it will simplify diagnosing.
If both drives were powered up during boot it'll confuse the situation (as I think you have duplicated UUIDs).
Maybe it's confused because I didn't clone the disk identifier? Bear in mind I have installed a bit more since running the SSD.
As you have used the SSD to install more stuff, why did you not update the OS? I ask becuase there may be some bugs that have been fixed since your last update.
Your kernel (4.8.0-53) looks a little old so there may be updates available.

When you get the chance, what do these show
Code:
hostnamectl  # (just the last 3 lines)
sudo cat /boot/efi/EFI/ubuntu/grub.cfg
#make a backup copy of grub
sudo cp -a /boot/grub/grub.cfg /boot/grub/grub.bak1
#check UUID on grub file
grep UUID /boot/grub/grub.cfg
sudo lsblk -o name,mountpoint,size,uuid
Then go ahead and update the whole OS (or just kernel and grub).
There is a chance the update may improve matters.

If you feel inclined.
have a look at file /var/log/syslog or run dmesg ,but those may have machine identifiable info so don't post them, but they may show what was running (or causing the delay) for the last 60 seconds of bootup.

Also I think you had previously installed Linux Mint on the SSD. What was the boot time like (was it less than 2 minutes) ?
 
Last edited:
As you have used the SSD to install more stuff, why did you not update the OS? I ask becuase there may be some bugs that have been fixed since your last update.
Well, actually that's what I've been doing the last hour. sudo apt-get update, followed by sudo apt-get upgrade... which failed first time presumably because it got the order wrong, and worked second try. Lots of updates.

Boot now does not show the GRUB screen, but now takes 2m50s from the mobo splash screen.

Also I think you had previously installed Linux Mint on the SSD. What was the boot time like (was it less than 2 minutes) ?
Can't remember.
 
Last edited:
Code:
ZEN ~ # fdisk -l
Disk /dev/sda: 238.5 GiB, 256059432448 bytes, 500116079 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: gpt
Disk identifier: C590CBDA-23E4-4F6E-9B09-E13E89878570

Device         Start       End   Sectors  Size Type
/dev/sda1       2048   1050623   1048576  512M EFI System
/dev/sda2    1050624 466702335 465651712  222G Linux filesystem
/dev/sda3  466702336 500115455  33413120   16G Linux swap


ZEN ~ # df -h
Filesystem      Size  Used Avail Use% Mounted on
udev            7.8G     0  7.8G   0% /dev
tmpfs           1.6G  9.4M  1.6G   1% /run
/dev/sda2       219G   52G  157G  25% /
tmpfs           7.9G   94M  7.8G   2% /dev/shm
tmpfs           5.0M  4.0K  5.0M   1% /run/lock
tmpfs           7.9G     0  7.9G   0% /sys/fs/cgroup
/dev/sda1       511M  3.5M  508M   1% /boot/efi
cgmfs           100K     0  100K   0% /run/cgmanager/fs
tmpfs           1.6G   44K  1.6G   1% /run/user/1000
ZEN ~ # ls /sys/firmware/efi
config_table  esrt              fw_vendor  runtime-map  vars
efivars       fw_platform_size  runtime    systab
ZEN ~ # ls /boot
abi-4.8.0-53-generic         memtest86+.bin
config-4.8.0-53-generic      memtest86+.elf
efi                          memtest86+_multiboot.bin
grub                         System.map-4.8.0-53-generic
initrd.img-4.8.0-53-generic  vmlinuz-4.8.0-53-generic
ZEN ~ # ls /boot/efi
EFI
ZEN ~ # ls /boot/efi/EFI
ubuntu
ZEN ~ # hostnamectl
   Static hostname: ZEN
         Icon name: computer-desktop
           Chassis: desktop
        Machine ID: f1285b673e054311b158f354c6c52198
           Boot ID: d1161f9983fc435e87dab46ada848478
  Operating System: Linux Mint 18.2
            Kernel: Linux 4.8.0-53-generic
      Architecture: x86-64
ZEN ~ # cat /boot/efi/EFI/ubuntu/grub.cfg
search.fs_uuid 4261c645-1062-4345-a440-7aece8c93f9c root hd0,gpt2
set prefix=($root)'/boot/grub'
configfile $prefix/grub.cfg
ZEN ~ # lsblk -o name,mountpoint,size,uuid
NAME   MOUNTPOINT   SIZE UUID
sr0                1024M
sda               238.5G
├─sda2 /            222G 4261c645-1062-4345-a440-7aece8c93f9c
├─sda3 [SWAP]        16G e845b04e-65fd-4a75-9721-56ab7657af9a
└─sda1 /boot/efi    512M 4EA2-A177
ZEN ~ #


run dmesg
What a great tip.

I don't think there's much harm me posting the output:

Code:
ZEN ~ # dmesg
[    0.000000] Linux version 4.8.0-53-generic (buildd@lgw01-56) (gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.4) ) #56~16.04.1-Ubuntu SMP Tue May 16 01:18:56 UTC 2017 (Ubuntu 4.8.0-53.56~16.04.1-generic 4.8.17)
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.8.0-53-generic root=UUID=4261c645-1062-4345-a440-7aece8c93f9c ro quiet splash vt.handoff=7
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Centaur CentaurHauls
[    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] x86/fpu: Using 'eager' FPU context switches.
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000009cfffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000009d00000-0x0000000009ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000a000000-0x00000000da87efff] usable
[    0.000000] BIOS-e820: [mem 0x00000000da87f000-0x00000000daa06fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000daa07000-0x00000000daa24fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000daa25000-0x00000000dab2efff] usable
[    0.000000] BIOS-e820: [mem 0x00000000dab2f000-0x00000000daee9fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000daeea000-0x00000000dbe8efff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000dbe8f000-0x00000000dbefafff] type 20
[    0.000000] BIOS-e820: [mem 0x00000000dbefb000-0x00000000ddffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000de000000-0x00000000dfffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fdf00000-0x00000000fdffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fea00000-0x00000000fea0ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000feb80000-0x00000000fec01fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec30000-0x00000000fec30fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed40000-0x00000000fed44fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fedc2000-0x00000000fedcffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fedd4000-0x00000000fedd5fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000feefffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000041f37ffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: EFI v2.50 by American Megatrends
[    0.000000] efi:  ACPI 2.0=0xdaa0c000  ACPI=0xdaa0c000  SMBIOS=0xdbdff000  SMBIOS 3.0=0xdbdfe000  ESRT=0xd90f61d8
[    0.000000] esrt: Reserving ESRT space from 0x00000000d90f61d8 to 0x00000000d90f6210.
[    0.000000] SMBIOS 3.0.0 present.
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x41f380 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 write-through
[    0.000000]   C0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000000 mask FFFF80000000 write-back
[    0.000000]   1 base 000080000000 mask FFFFC0000000 write-back
[    0.000000]   2 base 0000C0000000 mask FFFFE0000000 write-back
[    0.000000]   3 base 0000DE000000 mask FFFFFE000000 uncachable
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] TOM2: 0000000420000000 aka 16896M
[    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- WT 
[    0.000000] total RAM covered: 3552M
[    0.000000] Found optimal setting for mtrr clean up
[    0.000000]  gran_size: 64K     chunk_size: 1G     num_reg: 3      lose cover RAM: 0G
[    0.000000] e820: update [mem 0xde000000-0xffffffff] usable ==> reserved
[    0.000000] e820: last_pfn = 0xde000 max_arch_pfn = 0x400000000
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] Base memory trampoline at [ffff8f4dc0097000] 97000 size 24576
[    0.000000] Using GB pages for direct mapping
[    0.000000] BRK [0x18023b000, 0x18023bfff] PGTABLE
[    0.000000] BRK [0x18023c000, 0x18023cfff] PGTABLE
[    0.000000] BRK [0x18023d000, 0x18023dfff] PGTABLE
[    0.000000] BRK [0x18023e000, 0x18023efff] PGTABLE
[    0.000000] BRK [0x18023f000, 0x18023ffff] PGTABLE
[    0.000000] BRK [0x180240000, 0x180240fff] PGTABLE
[    0.000000] BRK [0x180241000, 0x180241fff] PGTABLE
[    0.000000] BRK [0x180242000, 0x180242fff] PGTABLE
[    0.000000] BRK [0x180243000, 0x180243fff] PGTABLE
[    0.000000] BRK [0x180244000, 0x180244fff] PGTABLE
[    0.000000] BRK [0x180245000, 0x180245fff] PGTABLE
[    0.000000] RAMDISK: [mem 0x32f2c000-0x3578dfff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000DAA0C000 000024 (v02 ALASKA)
[    0.000000] ACPI: XSDT 0x00000000DAA0C0A0 0000B4 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: FACP 0x00000000DAA15310 000114 (v06 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI BIOS Warning (bug): Optional FADT field Pm2ControlBlock has valid Length but zero Address: 0x0000000000000000/0x1 (20160422/tbfadt-658)
[    0.000000] ACPI: DSDT 0x00000000DAA0C1E8 009124 (v02 ALASKA A M I    01072009 INTL 20120913)
[    0.000000] ACPI: FACS 0x00000000DAEE7C80 000040
[    0.000000] ACPI: APIC 0x00000000DAA15428 0000DE (v03 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: FPDT 0x00000000DAA15508 000044 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: SSDT 0x00000000DAA22310 001664 (v01 AMD    CPMCMN   00000001 INTL 20120913)
[    0.000000] ACPI: SSDT 0x00000000DAA155A8 008C4C (v02                 00000002 MSFT 04000000)
[    0.000000] ACPI: FIDT 0x00000000DAA1E1F8 00009C (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: SSDT 0x00000000DAA1E298 0018B4 (v01 AMD    AmdTable 00000001 AMD  00000001)
[    0.000000] ACPI: SRAT 0x00000000DAA1FB50 0000F0 (v03 AMD    AmdTable 00000001 AMD  00000001)
[    0.000000] ACPI: CRAT 0x00000000DAA1FC40 000BD0 (v01 AMD    AmdTable 00000001 AMD  00000001)
[    0.000000] ACPI: CDIT 0x00000000DAA20810 000029 (v01 AMD    AmdTable 00000001 AMD  00000001)
[    0.000000] ACPI: SSDT 0x00000000DAA20840 0017E1 (v01 AMD    AOD      00000001 INTL 20120913)
[    0.000000] ACPI: MCFG 0x00000000DAA22028 00003C (v01 ALASKA A M I    01072009 MSFT 00010013)
[    0.000000] ACPI: HPET 0x00000000DAA22068 000038 (v01 ALASKA A M I    01072009 AMI  00000005)
[    0.000000] ACPI: SSDT 0x00000000DAA220A0 000024 (v01 AMDFCH FCHZP    00001000 INTL 20120913)
[    0.000000] ACPI: UEFI 0x00000000DAA220C8 000042 (v01                 00000000      00000000)
[    0.000000] ACPI: BGRT 0x00000000DAA22110 000038 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: IVRS 0x00000000DAA22148 0000D0 (v02                 00000001 AMD  00000000)
[    0.000000] ACPI: SSDT 0x00000000DAA22218 0000F8 (v01                 00001000 INTL 20120913)
[    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 0x01 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x02 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x03 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x04 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x05 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x08 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x09 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0a -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0b -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0c -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0d -> Node 0
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000041f37ffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x41f37b000-0x41f37ffff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x000000041f37ffff]
[    0.000000]   Device   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000009ffff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x0000000009cfffff]
[    0.000000]   node   0: [mem 0x000000000a000000-0x00000000da87efff]
[    0.000000]   node   0: [mem 0x00000000daa25000-0x00000000dab2efff]
[    0.000000]   node   0: [mem 0x00000000dbefb000-0x00000000ddffffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x000000041f37ffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000041f37ffff]
[    0.000000] On node 0 totalpages: 4176557
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 26 pages reserved
[    0.000000]   DMA zone: 3999 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 14047 pages used for memmap
[    0.000000]   DMA32 zone: 898958 pages, LIFO batch:31
[    0.000000]   Normal zone: 51150 pages used for memmap
[    0.000000]   Normal zone: 3273600 pages, LIFO batch:31
[    0.000000] ACPI: PM-Timer IO Port: 0x808
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] system APIC only can use physical flat
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    0.000000] IOAPIC[0]: apic_id 13, version 33, address 0xfec00000, GSI 0-23
[    0.000000] IOAPIC[1]: apic_id 14, version 33, address 0xfec01000, GSI 24-55
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    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: 0x10228201 base: 0xfed00000
[    0.000000] smpboot: Allowing 16 CPUs, 4 hotplug CPUs
[    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x09d00000-0x09ffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xda87f000-0xdaa06fff]
[    0.000000] PM: Registered nosave memory: [mem 0xdaa07000-0xdaa24fff]
[    0.000000] PM: Registered nosave memory: [mem 0xdab2f000-0xdaee9fff]
[    0.000000] PM: Registered nosave memory: [mem 0xdaeea000-0xdbe8efff]
[    0.000000] PM: Registered nosave memory: [mem 0xdbe8f000-0xdbefafff]
[    0.000000] PM: Registered nosave memory: [mem 0xde000000-0xdfffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xe0000000-0xf7ffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfc000000-0xfdefffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfdf00000-0xfdffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfe000000-0xfe9fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfea00000-0xfea0ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfea10000-0xfeb7ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfeb80000-0xfec01fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec02000-0xfec0ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec10000-0xfec10fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec11000-0xfec2ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec30000-0xfec30fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec31000-0xfecfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed00000-0xfed00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed01000-0xfed3ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed40000-0xfed44fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed45000-0xfed7ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed80000-0xfed8ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed90000-0xfedc1fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfedc2000-0xfedcffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfedd0000-0xfedd3fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfedd4000-0xfedd5fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfedd6000-0xfedfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfeefffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfef00000-0xfeffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
[    0.000000] e820: [mem 0xe0000000-0xf7ffffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.000000] setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:16 nr_node_ids:1
[    0.000000] percpu: Embedded 36 pages/cpu @ffff8f51ce600000 s107864 r8192 d31400 u262144
[    0.000000] pcpu-alloc: s107864 r8192 d31400 u262144 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 4111270
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.8.0-53-generic root=UUID=4261c645-1062-4345-a440-7aece8c93f9c ro quiet splash vt.handoff=7
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Calgary: detecting Calgary via BIOS EBDA area
[    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[    0.000000] Memory: 16271964K/16706228K available (8829K kernel code, 1441K rwdata, 3836K rodata, 1548K init, 1296K bss, 434264K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=16, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000]     Build-time adjustment of leaf fanout to 64.
[    0.000000]     RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=16.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=16
[    0.000000] NR_IRQS:33024 nr_irqs:1096 16
[    0.000000] vt handoff: transparent VT on vt#7
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration failed
[    0.000000] tsc: PIT calibration matches HPET. 1 loops
[    0.000000] tsc: Detected 3193.912 MHz processor
[    0.000016] Calibrating delay loop (skipped), value calculated using timer frequency.. 6387.82 BogoMIPS (lpj=12775648)
[    0.000018] pid_max: default: 32768 minimum: 301
[    0.000026] ACPI: Core revision 20160422
[    0.009558] ACPI: 7 ACPI AML tables successfully acquired and loaded

[    0.011667] Security Framework initialized
[    0.011668] Yama: becoming mindful.
[    0.011685] AppArmor: AppArmor initialized
[    0.012082] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
[    0.014549] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.015758] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes)
[    0.015765] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes)
[    0.016020] CPU: Physical Processor ID: 0
[    0.016021] CPU: Processor Core ID: 0
[    0.016028] mce: CPU supports 23 MCE banks
[    0.016044] LVT offset 1 assigned for vector 0xf9
[    0.016158] LVT offset 2 assigned for vector 0xf4
[    0.016169] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 512
[    0.016170] Last level dTLB entries: 4KB 1536, 2MB 1536, 4MB 768, 1GB 0
[    0.024180] Freeing SMP alternatives memory: 32K (ffffffff8c6ed000 - ffffffff8c6f5000)
[    0.044056] efi_bgrt: Ignoring BGRT: Incorrect BMP magic number 0x0 (expected 0x4d42)
[    0.044540] ftrace: allocating 33454 entries in 131 pages
[    0.056056] smpboot: APIC(0) Converting physical 0 to logical package 0
[    0.056057] smpboot: Max logical packages: 3
[    0.226424] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.371233] smpboot: CPU0: AMD Ryzen 5 1600 Six-Core Processor (family: 0x17, model: 0x1, stepping: 0x1)
[    0.371236] Performance Events:
[    0.371236] core perfctr but no constraints; unknown hardware!
[    0.371238] no PMU driver, software events only.
[    0.371849] NMI watchdog: disabled (cpu0): hardware events not enabled
[    0.371850] NMI watchdog: Shutting down hard lockup detector on all cpus
[    0.371908] x86: Booting SMP configuration:
[    0.371909] .... node  #0, CPUs:        #1  #2  #3  #4  #5  #6  #7  #8  #9 #10 #11
[    0.396467] x86: Booted up 1 node, 12 CPUs
[    0.396469] smpboot: Total of 12 processors activated (76653.88 BogoMIPS)
[    0.398385] devtmpfs: initialized
[    0.398432] x86/mm: Memory block size: 128MB
[    0.401067] evm: security.selinux
[    0.401068] evm: security.SMACK64
[    0.401068] evm: security.SMACK64EXEC
[    0.401068] evm: security.SMACK64TRANSMUTE
[    0.401068] evm: security.SMACK64MMAP
[    0.401069] evm: security.ima
[    0.401069] evm: security.capability
[    0.401127] PM: Registering ACPI NVS region [mem 0xdab2f000-0xdaee9fff] (3911680 bytes)
[    0.401214] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.401285] pinctrl core: initialized pinctrl subsystem
[    0.401364] RTC time: 21:17:41, date: 05/03/20
[    0.401465] NET: Registered protocol family 16
[    0.419249] cpuidle: using governor ladder
[    0.435249] cpuidle: using governor menu
[    0.435250] PCCT header not found.
[    0.435408] ACPI: bus type PCI registered
[    0.435409] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.435463] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[    0.435465] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
[    0.435471] pmd_set_huge: Cannot satisfy [mem 0xf8000000-0xf8200000] with a huge-page mapping due to MTRR override.
[    0.435540] PCI: Using configuration type 1 for base access
[    0.451399] HugeTLB registered 1 GB page size, pre-allocated 0 pages
[    0.451400] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.451669] ACPI: Added _OSI(Module Device)
[    0.451670] ACPI: Added _OSI(Processor Device)
[    0.451670] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.451670] ACPI: Added _OSI(Processor Aggregator Device)
[    0.451782] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.451795] ACPI: Executed 2 blocks of module-level executable AML code
[    0.453541] ACPI Error: Needed [Integer/String/Buffer], found [Region] ffff8f51ce0eb480 (20160422/exresop-424)
[    0.453544] ACPI Exception: AE_AML_OPERAND_TYPE, Could not execute arguments for [IOB2] (Region) (20160422/nsinit-412)
[    0.457248] ACPI: Interpreter enabled
[    0.457259] ACPI: (supports S0 S3 S4 S5)
[    0.457259] ACPI: Using IOAPIC for interrupt routing
[    0.457341] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.462524] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.462527] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.462642] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug PME]
[    0.462750] acpi PNP0A08:00: _OSC: OS now controls [AER PCIeCapability]
[    0.462758] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
[    0.462954] PCI host bridge to bus 0000:00
[    0.462955] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    0.462956] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    0.462957] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
[    0.462958] pci_bus 0000:00: root bus resource [io  0x0d00-0xefff window]
[    0.462958] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.462959] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
[    0.462960] pci_bus 0000:00: root bus resource [mem 0xe0000000-0xf7ffffff window]
[    0.462961] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.462966] pci 0000:00:00.0: [1022:1450] type 00 class 0x060000
[    0.463029] pci 0000:00:00.2: [1022:1451] type 00 class 0x080600
[    0.463104] pci 0000:00:01.0: [1022:1452] type 00 class 0x060000
[    0.463159] pci 0000:00:01.3: [1022:1453] type 01 class 0x060400
[    0.463197] pci 0000:00:01.3: PME# supported from D0 D3hot D3cold
[    0.463226] pci 0000:00:01.3: System wakeup disabled by ACPI
[    0.463253] pci 0000:00:02.0: [1022:1452] type 00 class 0x060000
[    0.463315] pci 0000:00:03.0: [1022:1452] type 00 class 0x060000
[    0.463369] pci 0000:00:03.1: [1022:1453] type 01 class 0x060400
[    0.463410] pci 0000:00:03.1: PME# supported from D0 D3hot D3cold
[    0.463441] pci 0000:00:03.1: System wakeup disabled by ACPI
[    0.463469] pci 0000:00:04.0: [1022:1452] type 00 class 0x060000
[    0.463529] pci 0000:00:07.0: [1022:1452] type 00 class 0x060000
[    0.463582] pci 0000:00:07.1: [1022:1454] type 01 class 0x060400
[    0.463614] pci 0000:00:07.1: PME# supported from D0 D3hot D3cold
[    0.463640] pci 0000:00:07.1: System wakeup disabled by ACPI
[    0.463666] pci 0000:00:08.0: [1022:1452] type 00 class 0x060000
[    0.463720] pci 0000:00:08.1: [1022:1454] type 01 class 0x060400
[    0.463755] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
[    0.463781] pci 0000:00:08.1: System wakeup disabled by ACPI
[    0.463822] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500
[    0.463922] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100
[    0.464027] pci 0000:00:18.0: [1022:1460] type 00 class 0x060000
[    0.464072] pci 0000:00:18.1: [1022:1461] type 00 class 0x060000
[    0.464116] pci 0000:00:18.2: [1022:1462] type 00 class 0x060000
[    0.464160] pci 0000:00:18.3: [1022:1463] type 00 class 0x060000
[    0.464203] pci 0000:00:18.4: [1022:1464] type 00 class 0x060000
[    0.464247] pci 0000:00:18.5: [1022:1465] type 00 class 0x060000
[    0.464291] pci 0000:00:18.6: [1022:1466] type 00 class 0x060000
[    0.464334] pci 0000:00:18.7: [1022:1467] type 00 class 0x060000
[    0.464423] pci 0000:03:00.0: [1022:43bb] type 00 class 0x0c0330
[    0.464438] pci 0000:03:00.0: reg 0x10: [mem 0xf76a0000-0xf76a7fff 64bit]
[    0.464506] pci 0000:03:00.0: PME# supported from D3hot D3cold
[    0.464534] pci 0000:03:00.0: System wakeup disabled by ACPI
[    0.464562] pci 0000:03:00.1: [1022:43b7] type 00 class 0x010601
[    0.464602] pci 0000:03:00.1: reg 0x24: [mem 0xf7680000-0xf769ffff]
[    0.464608] pci 0000:03:00.1: reg 0x30: [mem 0xf7600000-0xf767ffff pref]
[    0.464641] pci 0000:03:00.1: PME# supported from D3hot D3cold
[    0.464682] pci 0000:03:00.2: [1022:43b2] type 01 class 0x060400
[    0.464743] pci 0000:03:00.2: PME# supported from D3hot D3cold
[    0.475257] pci 0000:00:01.3: PCI bridge to [bus 03-25]
[    0.475260] pci 0000:00:01.3:   bridge window [io  0xe000-0xefff]
[    0.475262] pci 0000:00:01.3:   bridge window [mem 0xf7500000-0xf76fffff]
[    0.475341] pci 0000:1d:00.0: [1022:43b4] type 01 class 0x060400
[    0.475418] pci 0000:1d:00.0: PME# supported from D3hot D3cold
[    0.475482] pci 0000:1d:01.0: [1022:43b4] type 01 class 0x060400
[    0.475557] pci 0000:1d:01.0: PME# supported from D3hot D3cold
[    0.475619] pci 0000:1d:04.0: [1022:43b4] type 01 class 0x060400
[    0.475690] pci 0000:1d:04.0: PME# supported from D3hot D3cold
[    0.475745] pci 0000:1d:06.0: [1022:43b4] type 01 class 0x060400
[    0.475816] pci 0000:1d:06.0: PME# supported from D3hot D3cold
[    0.475875] pci 0000:1d:07.0: [1022:43b4] type 01 class 0x060400
[    0.475948] pci 0000:1d:07.0: PME# supported from D3hot D3cold
[    0.476018] pci 0000:03:00.2: PCI bridge to [bus 1d-25]
[    0.476022] pci 0000:03:00.2:   bridge window [io  0xe000-0xefff]
[    0.476025] pci 0000:03:00.2:   bridge window [mem 0xf7500000-0xf75fffff]
[    0.476091] pci 0000:1e:00.0: [8086:1539] type 00 class 0x020000
[    0.476119] pci 0000:1e:00.0: reg 0x10: [mem 0xf7500000-0xf751ffff]
[    0.476151] pci 0000:1e:00.0: reg 0x18: [io  0xe000-0xe01f]
[    0.476168] pci 0000:1e:00.0: reg 0x1c: [mem 0xf7520000-0xf7523fff]
[    0.476324] pci 0000:1e:00.0: PME# supported from D0 D3hot D3cold
[    0.476378] pci 0000:1e:00.0: System wakeup disabled by ACPI
[    0.487263] pci 0000:1d:00.0: PCI bridge to [bus 1e]
[    0.487268] pci 0000:1d:00.0:   bridge window [io  0xe000-0xefff]
[    0.487271] pci 0000:1d:00.0:   bridge window [mem 0xf7500000-0xf75fffff]
[    0.487326] pci 0000:1d:01.0: PCI bridge to [bus 1f]
[    0.487377] pci 0000:1d:04.0: PCI bridge to [bus 22]
[    0.487426] pci 0000:1d:06.0: PCI bridge to [bus 24]
[    0.487474] pci 0000:1d:07.0: PCI bridge to [bus 25]
[    0.487552] pci 0000:26:00.0: [10de:128b] type 00 class 0x030000
[    0.487563] pci 0000:26:00.0: reg 0x10: [mem 0xf6000000-0xf6ffffff]
[    0.487573] pci 0000:26:00.0: reg 0x14: [mem 0xe8000000-0xefffffff 64bit pref]
[    0.487582] pci 0000:26:00.0: reg 0x1c: [mem 0xf0000000-0xf1ffffff 64bit pref]
[    0.487588] pci 0000:26:00.0: reg 0x24: [io  0xd000-0xd07f]
[    0.487594] pci 0000:26:00.0: reg 0x30: [mem 0xf7000000-0xf707ffff pref]
[    0.487653] pci 0000:26:00.0: System wakeup disabled by ACPI
[    0.487681] pci 0000:26:00.1: [10de:0e0f] type 00 class 0x040300
[    0.487691] pci 0000:26:00.1: reg 0x10: [mem 0xf7080000-0xf7083fff]
[    0.499259] pci 0000:00:03.1: PCI bridge to [bus 26]
[    0.499262] pci 0000:00:03.1:   bridge window [io  0xd000-0xdfff]
[    0.499264] pci 0000:00:03.1:   bridge window [mem 0xf6000000-0xf70fffff]
[    0.499267] pci 0000:00:03.1:   bridge window [mem 0xe8000000-0xf1ffffff 64bit pref]
[    0.499320] pci 0000:27:00.0: [1022:145a] type 00 class 0x130000
[    0.499397] pci 0000:27:00.2: [1022:1456] type 00 class 0x108000
[    0.499408] pci 0000:27:00.2: reg 0x18: [mem 0xf7300000-0xf73fffff]
[    0.499416] pci 0000:27:00.2: reg 0x24: [mem 0xf7400000-0xf7401fff]
[    0.499480] pci 0000:27:00.3: [1022:145c] type 00 class 0x0c0330
[    0.499488] pci 0000:27:00.3: reg 0x10: [mem 0xf7200000-0xf72fffff 64bit]
[    0.499528] pci 0000:27:00.3: PME# supported from D0 D3hot D3cold
[    0.499541] pci 0000:27:00.3: System wakeup disabled by ACPI
[    0.499577] pci 0000:00:07.1: PCI bridge to [bus 27]
[    0.499580] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf74fffff]
[    0.499627] pci 0000:28:00.0: [1022:1455] type 00 class 0x130000
[    0.499698] pci 0000:28:00.2: [1022:7901] type 00 class 0x010601
[    0.499722] pci 0000:28:00.2: reg 0x24: [mem 0xf7708000-0xf7708fff]
[    0.499750] pci 0000:28:00.2: PME# supported from D3hot D3cold
[    0.499785] pci 0000:28:00.3: [1022:1457] type 00 class 0x040300
[    0.499791] pci 0000:28:00.3: reg 0x10: [mem 0xf7700000-0xf7707fff]
[    0.499828] pci 0000:28:00.3: PME# supported from D0 D3hot D3cold
[    0.499871] pci 0000:00:08.1: PCI bridge to [bus 28]
[    0.499875] pci 0000:00:08.1:   bridge window [mem 0xf7700000-0xf77fffff]
[    0.500130] ACPI: PCI Interrupt Link [LNKA] (IRQs 4 5 7 10 11 14 15) *0
[    0.500165] ACPI: PCI Interrupt Link [LNKB] (IRQs 4 5 7 10 11 14 15) *0
[    0.500195] ACPI: PCI Interrupt Link [LNKC] (IRQs 4 5 7 10 11 14 15) *0
[    0.500233] ACPI: PCI Interrupt Link [LNKD] (IRQs 4 5 7 10 11 14 15) *0
[    0.500267] ACPI: PCI Interrupt Link [LNKE] (IRQs 4 5 7 10 11 14 15) *0
[    0.500296] ACPI: PCI Interrupt Link [LNKF] (IRQs 4 5 7 10 11 14 15) *0
[    0.500323] ACPI: PCI Interrupt Link [LNKG] (IRQs 4 5 7 10 11 14 15) *0
[    0.500350] ACPI: PCI Interrupt Link [LNKH] (IRQs 4 5 7 10 11 14 15) *0
[    0.500675] ACPI: Enabled 1 GPEs in block 00 to 1F
[    0.500823] SCSI subsystem initialized
[    0.500866] libata version 3.00 loaded.
[    0.500895] vgaarb: setting as boot device: PCI:0000:26:00.0
[    0.500896] vgaarb: device added: PCI:0000:26:00.0,decodes=io+mem,owns=io+mem,locks=none
[    0.500896] vgaarb: loaded
[    0.500897] vgaarb: bridge control possible 0000:26:00.0
[    0.500910] ACPI: bus type USB registered
[    0.500920] usbcore: registered new interface driver usbfs
[    0.500925] usbcore: registered new interface driver hub
[    0.500953] usbcore: registered new device driver usb
[    0.535368] PCI: Using ACPI for IRQ routing
[    0.536871] PCI: pci_cache_line_size set to 64 bytes
[    0.536924] e820: reserve RAM buffer [mem 0x09d00000-0x0bffffff]
[    0.536925] e820: reserve RAM buffer [mem 0xda87f000-0xdbffffff]
[    0.536925] e820: reserve RAM buffer [mem 0xdab2f000-0xdbffffff]
[    0.536926] e820: reserve RAM buffer [mem 0xde000000-0xdfffffff]
[    0.536926] e820: reserve RAM buffer [mem 0x41f380000-0x41fffffff]
[    0.536989] NetLabel: Initializing
[    0.536989] NetLabel:  domain hash size = 128
[    0.536989] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.537000] NetLabel:  unlabeled traffic allowed by default
[    0.537090] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.537092] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[    0.539135] clocksource: Switched to clocksource hpet
[    0.544364] VFS: Disk quotas dquot_6.6.0
[    0.544379] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.544451] AppArmor: AppArmor Filesystem Enabled
[    0.544486] pnp: PnP ACPI init
[    0.544587] system 00:00: [mem 0xf8000000-0xfbffffff] has been reserved
[    0.544590] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.544646] system 00:01: [mem 0xfeb80000-0xfebfffff] could not be reserved
[    0.544648] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.544727] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.544845] system 00:03: [io  0x0300-0x030f] has been reserved
[    0.544846] system 00:03: [io  0x0230-0x023f] has been reserved
[    0.544847] system 00:03: [io  0x0290-0x029f] has been reserved
[    0.544848] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.545022] pnp 00:04: [dma 0 disabled]
[    0.545053] pnp 00:04: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.545208] system 00:05: [io  0x04d0-0x04d1] has been reserved
[    0.545209] system 00:05: [io  0x040b] has been reserved
[    0.545210] system 00:05: [io  0x04d6] has been reserved
[    0.545210] system 00:05: [io  0x0c00-0x0c01] has been reserved
[    0.545211] system 00:05: [io  0x0c14] has been reserved
[    0.545212] system 00:05: [io  0x0c50-0x0c51] has been reserved
[    0.545213] system 00:05: [io  0x0c52] has been reserved
[    0.545213] system 00:05: [io  0x0c6c] has been reserved
[    0.545214] system 00:05: [io  0x0c6f] has been reserved
[    0.545215] system 00:05: [io  0x0cd0-0x0cd1] has been reserved
[    0.545216] system 00:05: [io  0x0cd2-0x0cd3] has been reserved
[    0.545216] system 00:05: [io  0x0cd4-0x0cd5] has been reserved
[    0.545217] system 00:05: [io  0x0cd6-0x0cd7] has been reserved
[    0.545218] system 00:05: [io  0x0cd8-0x0cdf] has been reserved
[    0.545219] system 00:05: [io  0x0800-0x089f] has been reserved
[    0.545219] system 00:05: [io  0x0b00-0x0b0f] has been reserved
[    0.545220] system 00:05: [io  0x0b20-0x0b3f] has been reserved
[    0.545221] system 00:05: [io  0x0900-0x090f] has been reserved
[    0.545222] system 00:05: [io  0x0910-0x091f] has been reserved
[    0.545223] system 00:05: [mem 0xfec00000-0xfec00fff] could not be reserved
[    0.545224] system 00:05: [mem 0xfec01000-0xfec01fff] could not be reserved
[    0.545225] system 00:05: [mem 0xfedc0000-0xfedc0fff] has been reserved
[    0.545226] system 00:05: [mem 0xfee00000-0xfee00fff] has been reserved
[    0.545227] system 00:05: [mem 0xfed80000-0xfed8ffff] could not be reserved
[    0.545227] system 00:05: [mem 0xfec10000-0xfec10fff] has been reserved
[    0.545228] system 00:05: [mem 0xff000000-0xffffffff] has been reserved
[    0.545230] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.545476] pnp: PnP ACPI: found 6 devices
[    0.551688] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.551717] pci 0000:1d:06.0: bridge window [io  0x1000-0x0fff] to [bus 24] add_size 1000
[    0.551718] pci 0000:1d:06.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 24] add_size 200000 add_align 100000
[    0.551719] pci 0000:1d:06.0: bridge window [mem 0x00100000-0x000fffff] to [bus 24] add_size 200000 add_align 100000
[    0.551731] pci 0000:1d:06.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[    0.551732] pci 0000:1d:06.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[    0.551733] pci 0000:03:00.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 1d-25] add_size 200000 add_align 100000
[    0.551737] pci 0000:03:00.2: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[    0.551738] pci 0000:03:00.2: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[    0.551740] pci 0000:00:01.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03-25] add_size 200000 add_align 100000
[    0.551751] pci 0000:00:01.3: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[    0.551752] pci 0000:00:01.3: res[15]=[mem 0x00100000-0x002fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[    0.551757] pci 0000:00:01.3: BAR 15: assigned [mem 0xe0000000-0xe01fffff 64bit pref]
[    0.551759] pci 0000:03:00.2: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[    0.551759] pci 0000:03:00.2: res[15]=[mem 0x00100000-0x002fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[    0.551761] pci 0000:03:00.2: BAR 15: assigned [mem 0xe0000000-0xe01fffff 64bit pref]
[    0.551763] pci 0000:1d:06.0: res[14]=[mem 0x00100000-0x000fffff] res_to_dev_res add_size 200000 min_align 100000
[    0.551763] pci 0000:1d:06.0: res[14]=[mem 0x00100000-0x002fffff] res_to_dev_res add_size 200000 min_align 100000
[    0.551764] pci 0000:1d:06.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[    0.551765] pci 0000:1d:06.0: res[15]=[mem 0x00100000-0x002fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[    0.551766] pci 0000:1d:06.0: res[13]=[io  0x1000-0x0fff] res_to_dev_res add_size 1000 min_align 1000
[    0.551767] pci 0000:1d:06.0: res[13]=[io  0x1000-0x1fff] res_to_dev_res add_size 1000 min_align 1000
[    0.551768] pci 0000:1d:06.0: BAR 14: no space for [mem size 0x00200000]
[    0.551769] pci 0000:1d:06.0: BAR 14: failed to assign [mem size 0x00200000]
[    0.551770] pci 0000:1d:06.0: BAR 15: assigned [mem 0xe0000000-0xe01fffff 64bit pref]
[    0.551771] pci 0000:1d:06.0: BAR 13: no space for [io  size 0x1000]
[    0.551772] pci 0000:1d:06.0: BAR 13: failed to assign [io  size 0x1000]
[    0.551773] pci 0000:1d:06.0: BAR 14: no space for [mem size 0x00200000]
[    0.551774] pci 0000:1d:06.0: BAR 14: failed to assign [mem size 0x00200000]
[    0.551774] pci 0000:1d:06.0: BAR 13: no space for [io  size 0x1000]
[    0.551775] pci 0000:1d:06.0: BAR 13: failed to assign [io  size 0x1000]
[    0.551776] pci 0000:1d:00.0: PCI bridge to [bus 1e]
[    0.551778] pci 0000:1d:00.0:   bridge window [io  0xe000-0xefff]
[    0.551781] pci 0000:1d:00.0:   bridge window [mem 0xf7500000-0xf75fffff]
[    0.551788] pci 0000:1d:01.0: PCI bridge to [bus 1f]
[    0.551796] pci 0000:1d:04.0: PCI bridge to [bus 22]
[    0.551804] pci 0000:1d:06.0: PCI bridge to [bus 24]
[    0.551809] pci 0000:1d:06.0:   bridge window [mem 0xe0000000-0xe01fffff 64bit pref]
[    0.551814] pci 0000:1d:07.0: PCI bridge to [bus 25]
[    0.551822] pci 0000:03:00.2: PCI bridge to [bus 1d-25]
[    0.551823] pci 0000:03:00.2:   bridge window [io  0xe000-0xefff]
[    0.551826] pci 0000:03:00.2:   bridge window [mem 0xf7500000-0xf75fffff]
[    0.551829] pci 0000:03:00.2:   bridge window [mem 0xe0000000-0xe01fffff 64bit pref]
[    0.551833] pci 0000:00:01.3: PCI bridge to [bus 03-25]
[    0.551834] pci 0000:00:01.3:   bridge window [io  0xe000-0xefff]
[    0.551836] pci 0000:00:01.3:   bridge window [mem 0xf7500000-0xf76fffff]
[    0.551837] pci 0000:00:01.3:   bridge window [mem 0xe0000000-0xe01fffff 64bit pref]
[    0.551840] pci 0000:00:03.1: PCI bridge to [bus 26]
[    0.551841] pci 0000:00:03.1:   bridge window [io  0xd000-0xdfff]
[    0.551843] pci 0000:00:03.1:   bridge window [mem 0xf6000000-0xf70fffff]
[    0.551844] pci 0000:00:03.1:   bridge window [mem 0xe8000000-0xf1ffffff 64bit pref]
[    0.551847] pci 0000:00:07.1: PCI bridge to [bus 27]
[    0.551849] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf74fffff]
[    0.551852] pci 0000:00:08.1: PCI bridge to [bus 28]
[    0.551854] pci 0000:00:08.1:   bridge window [mem 0xf7700000-0xf77fffff]
[    0.551859] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    0.551860] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    0.551860] pci_bus 0000:00: resource 6 [io  0x03b0-0x03df window]
[    0.551861] pci_bus 0000:00: resource 7 [io  0x0d00-0xefff window]
[    0.551862] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window]
[    0.551863] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window]
[    0.551863] pci_bus 0000:00: resource 10 [mem 0xe0000000-0xf7ffffff window]
[    0.551864] pci_bus 0000:03: resource 0 [io  0xe000-0xefff]
[    0.551865] pci_bus 0000:03: resource 1 [mem 0xf7500000-0xf76fffff]
[    0.551865] pci_bus 0000:03: resource 2 [mem 0xe0000000-0xe01fffff 64bit pref]
[    0.551866] pci_bus 0000:1d: resource 0 [io  0xe000-0xefff]
[    0.551867] pci_bus 0000:1d: resource 1 [mem 0xf7500000-0xf75fffff]
[    0.551867] pci_bus 0000:1d: resource 2 [mem 0xe0000000-0xe01fffff 64bit pref]
[    0.551868] pci_bus 0000:1e: resource 0 [io  0xe000-0xefff]
[    0.551869] pci_bus 0000:1e: resource 1 [mem 0xf7500000-0xf75fffff]
[    0.551870] pci_bus 0000:24: resource 2 [mem 0xe0000000-0xe01fffff 64bit pref]
[    0.551871] pci_bus 0000:26: resource 0 [io  0xd000-0xdfff]
[    0.551871] pci_bus 0000:26: resource 1 [mem 0xf6000000-0xf70fffff]
[    0.551872] pci_bus 0000:26: resource 2 [mem 0xe8000000-0xf1ffffff 64bit pref]
[    0.551873] pci_bus 0000:27: resource 1 [mem 0xf7200000-0xf74fffff]
[    0.551873] pci_bus 0000:28: resource 1 [mem 0xf7700000-0xf77fffff]
[    0.551897] NET: Registered protocol family 2
[    0.552043] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.552206] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.552341] TCP: Hash tables configured (established 131072 bind 65536)
[    0.552366] UDP hash table entries: 8192 (order: 6, 262144 bytes)
[    0.552410] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes)
[    0.552482] NET: Registered protocol family 1
[    0.552609] pci 0000:26:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.552697] PCI: CLS 64 bytes, default 64
[    0.552732] Unpacking initramfs...
[    0.987832] Freeing initrd memory: 41352K (ffff8f4df2f2c000 - ffff8f4df578e000)
[    0.987861] AMD-Vi: IOMMU performance counters supported
[    0.987971] pci 0000:00:00.2: can't derive routing for PCI INT A
[    0.987971] pci 0000:00:00.2: PCI INT A: not connected
[    0.988176] iommu: Adding device 0000:00:01.0 to group 0
[    0.988189] iommu: Adding device 0000:00:01.3 to group 0
[    0.988269] iommu: Adding device 0000:00:02.0 to group 1
[    0.988349] iommu: Adding device 0000:00:03.0 to group 2
[    0.988363] iommu: Adding device 0000:00:03.1 to group 2
[    0.988440] iommu: Adding device 0000:00:04.0 to group 3
[    0.988520] iommu: Adding device 0000:00:07.0 to group 4
[    0.988533] iommu: Adding device 0000:00:07.1 to group 4
[    0.988613] iommu: Adding device 0000:00:08.0 to group 5
[    0.988627] iommu: Adding device 0000:00:08.1 to group 5
[    0.988706] iommu: Adding device 0000:00:14.0 to group 6
[    0.988718] iommu: Adding device 0000:00:14.3 to group 6
[    0.988813] iommu: Adding device 0000:00:18.0 to group 7
[    0.988824] iommu: Adding device 0000:00:18.1 to group 7
[    0.988835] iommu: Adding device 0000:00:18.2 to group 7
[    0.988846] iommu: Adding device 0000:00:18.3 to group 7
[    0.988858] iommu: Adding device 0000:00:18.4 to group 7
[    0.988869] iommu: Adding device 0000:00:18.5 to group 7
[    0.988881] iommu: Adding device 0000:00:18.6 to group 7
[    0.988892] iommu: Adding device 0000:00:18.7 to group 7
[    0.988904] iommu: Adding device 0000:03:00.0 to group 0
[    0.988913] iommu: Adding device 0000:03:00.1 to group 0
[    0.988923] iommu: Adding device 0000:03:00.2 to group 0
[    0.988934] iommu: Adding device 0000:1d:00.0 to group 0
[    0.988945] iommu: Adding device 0000:1d:01.0 to group 0
[    0.988956] iommu: Adding device 0000:1d:04.0 to group 0
[    0.988968] iommu: Adding device 0000:1d:06.0 to group 0
[    0.988978] iommu: Adding device 0000:1d:07.0 to group 0
[    0.988995] iommu: Adding device 0000:1e:00.0 to group 0
[    0.989006] iommu: Adding device 0000:26:00.0 to group 2
[    0.989016] iommu: Adding device 0000:26:00.1 to group 2
[    0.989025] iommu: Adding device 0000:27:00.0 to group 4
[    0.989034] iommu: Adding device 0000:27:00.2 to group 4
[    0.989043] iommu: Adding device 0000:27:00.3 to group 4
[    0.989052] iommu: Adding device 0000:28:00.0 to group 5
[    0.989061] iommu: Adding device 0000:28:00.2 to group 5
[    0.989070] iommu: Adding device 0000:28:00.3 to group 5
[    0.989318] AMD-Vi: Found IOMMU at 0000:00:00.2 cap 0x40
[    0.989319] AMD-Vi:  Extended features:  PPR NX GT IA GA PC
[    0.989321] AMD-Vi: Interrupt remapping enabled
[    0.989523] AMD-Vi: Lazy IO/TLB flushing enabled
[    0.990266] perf: AMD NB counters detected
[    0.990268] perf: AMD L2I counters detected
[    0.990567] perf: amd_iommu: Detected. (0 banks, 0 counters/bank)
[    0.990628] Scanning for low memory corruption every 60 seconds
[    0.991012] futex hash table entries: 4096 (order: 6, 262144 bytes)
[    0.991038] audit: initializing netlink subsys (disabled)
[    0.991053] audit: type=2000 audit(1588540661.700:1): initialized
[    0.991294] Initialise system trusted keyrings
[    0.991404] workingset: timestamp_bits=40 max_order=22 bucket_order=0
[    0.992409] zbud: loaded
[    0.992695] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.992838] fuse init (API version 7.25)
[    0.992925] Allocating IMA blacklist keyring.
[    0.994016] Key type asymmetric registered
[    0.994017] Asymmetric key parser 'x509' registered
[    0.994039] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 248)
[    0.994074] io scheduler noop registered
[    0.994074] io scheduler deadline registered (default)
[    0.994079] io scheduler cfq registered
[    0.995138] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.995141] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.995168] efifb: probing for efifb
[    0.995176] efifb: framebuffer at 0xf1000000, using 3072k, total 3072k
[    0.995177] efifb: mode is 1024x768x32, linelength=4096, pages=1
[    0.995177] efifb: scrolling: redraw
[    0.995178] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    0.995240] Console: switching to colour frame buffer device 128x48
[    0.995251] fb0: EFI VGA frame buffer device
[    0.995312] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    0.995314] ACPI: Power Button [PWRB]
[    0.995339] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    0.995340] ACPI: Power Button [PWRF]
[    0.996248] GHES: HEST is not enabled!
[    0.996313] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    1.016996] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    1.018013] Linux agpgart interface v0.103
[    1.019909] loop: module loaded
[    1.020017] libphy: Fixed MDIO Bus: probed
[    1.020018] tun: Universal TUN/TAP device driver, 1.6
[    1.020018] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    1.020043] PPP generic driver version 2.4.2
[    1.020072] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.020074] ehci-pci: EHCI PCI platform driver
[    1.020080] ehci-platform: EHCI generic platform driver
[    1.020084] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.020085] ohci-pci: OHCI PCI platform driver
[    1.020090] ohci-platform: OHCI generic platform driver
[    1.020094] uhci_hcd: USB Universal Host Controller Interface driver
[    1.020144] xhci_hcd 0000:03:00.0: xHCI Host Controller
[    1.020147] xhci_hcd 0000:03:00.0: new USB bus registered, assigned bus number 1
[    1.075529] xhci_hcd 0000:03:00.0: hcc params 0x0200ef81 hci version 0x110 quirks 0x00000410
[    1.075609] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    1.075610] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.075611] usb usb1: Product: xHCI Host Controller
[    1.075611] usb usb1: Manufacturer: Linux 4.8.0-53-generic xhci-hcd
[    1.075612] usb usb1: SerialNumber: 0000:03:00.0
[    1.075690] hub 1-0:1.0: USB hub found
[    1.075701] hub 1-0:1.0: 10 ports detected
[    1.079005] xhci_hcd 0000:03:00.0: xHCI Host Controller
[    1.079006] xhci_hcd 0000:03:00.0: new USB bus registered, assigned bus number 2
[    1.079031] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    1.079043] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
[    1.079044] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.079045] usb usb2: Product: xHCI Host Controller
[    1.079046] usb usb2: Manufacturer: Linux 4.8.0-53-generic xhci-hcd
[    1.079046] usb usb2: SerialNumber: 0000:03:00.0
[    1.079113] hub 2-0:1.0: USB hub found
[    1.079119] hub 2-0:1.0: 4 ports detected
[    1.080567] xhci_hcd 0000:27:00.3: xHCI Host Controller
[    1.080569] xhci_hcd 0000:27:00.3: new USB bus registered, assigned bus number 3
[    1.080677] xhci_hcd 0000:27:00.3: hcc params 0x0270f665 hci version 0x100 quirks 0x00000410
[    1.080743] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
[    1.080744] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.080745] usb usb3: Product: xHCI Host Controller
[    1.080746] usb usb3: Manufacturer: Linux 4.8.0-53-generic xhci-hcd
[    1.080746] usb usb3: SerialNumber: 0000:27:00.3
[    1.080817] hub 3-0:1.0: USB hub found
[    1.080821] hub 3-0:1.0: 4 ports detected
[    1.080959] xhci_hcd 0000:27:00.3: xHCI Host Controller
[    1.080960] xhci_hcd 0000:27:00.3: new USB bus registered, assigned bus number 4
[    1.080968] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    1.080980] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003
[    1.080981] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.080982] usb usb4: Product: xHCI Host Controller
[    1.080982] usb usb4: Manufacturer: Linux 4.8.0-53-generic xhci-hcd
[    1.080983] usb usb4: SerialNumber: 0000:27:00.3
[    1.081058] hub 4-0:1.0: USB hub found
[    1.081063] hub 4-0:1.0: 4 ports detected
[    1.081214] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    1.081639] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.081641] serio: i8042 AUX port at 0x60,0x64 irq 12
[    1.081724] mousedev: PS/2 mouse device common for all mice
[    1.081816] rtc_cmos 00:02: RTC can wake from S4
[    1.081910] rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
[    1.081939] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    1.081942] i2c /dev entries driver
[    1.081974] device-mapper: uevent: version 1.0.3
[    1.082019] device-mapper: ioctl: 4.35.0-ioctl (2016-06-23) initialised: dm-devel@redhat.com
[    1.082165] ledtrig-cpu: registered to indicate activity on CPUs
[    1.082169] EFI Variables Facility v0.08 2004-May-17
[    1.116403] NET: Registered protocol family 10
[    1.116577] NET: Registered protocol family 17
[    1.116583] Key type dns_resolver registered
[    1.116915] ------------[ cut here ]------------
[    1.116919] WARNING: CPU: 9 PID: 1 at /build/linux-hwe-MohJvK/linux-hwe-4.8.0/lib/kobject.c:210 kobject_add_internal+0x26c/0x330
[    1.116919] kobject: (ffff8f51c39cf900): attempted to be registered with empty name!
[    1.116919] Modules linked in:
[    1.116921] CPU: 9 PID: 1 Comm: swapper/0 Not tainted 4.8.0-53-generic #56~16.04.1-Ubuntu
[    1.116922] Hardware name: System manufacturer System Product Name/ROG STRIX B350-F GAMING, BIOS 0223 05/04/2017
[    1.116923]  0000000000000286 000000001e9698e5 ffff8f51cc633c78 ffffffff8ba2e7b3
[    1.116925]  ffff8f51cc633cc8 0000000000000000 ffff8f51cc633cb8 ffffffff8b68314b
[    1.116927]  000000d200000000 ffff8f51c39cf900 00000000ffffffea ffff8f51c39e5810
[    1.116928] Call Trace:
[    1.116930]  [<ffffffff8ba2e7b3>] dump_stack+0x63/0x90
[    1.116933]  [<ffffffff8b68314b>] __warn+0xcb/0xf0
[    1.116934]  [<ffffffff8b6831cf>] warn_slowpath_fmt+0x5f/0x80
[    1.116935]  [<ffffffff8ba3186c>] kobject_add_internal+0x26c/0x330
[    1.116937]  [<ffffffff8b7c4452>] ? kfree_const+0x22/0x30
[    1.116938]  [<ffffffff8ba319a5>] kobject_add+0x75/0xd0
[    1.116939]  [<ffffffff8ba31a31>] kobject_create_and_add+0x31/0x70
[    1.116941]  [<ffffffff8b648a2d>] threshold_create_device+0x17d/0x350
[    1.116944]  [<ffffffff8c59678a>] ? mcheck_vendor_init_severity+0x1a/0x1a
[    1.116946]  [<ffffffff8c5967ba>] threshold_init_device+0x30/0x46
[    1.116947]  [<ffffffff8b602190>] do_one_initcall+0x50/0x1a0
[    1.116949]  [<ffffffff8b6a3646>] ? parse_args+0x186/0x490
[    1.116951]  [<ffffffff8c586175>] kernel_init_freeable+0x178/0x217
[    1.116953]  [<ffffffff8be8d33e>] kernel_init+0xe/0x100
[    1.116954]  [<ffffffff8be9aa9f>] ret_from_fork+0x1f/0x40
[    1.116955]  [<ffffffff8be8d330>] ? rest_init+0x80/0x80
[    1.116957] ---[ end trace 53089ce60f407012 ]---
[    1.116957] kobject_create_and_add: kobject_add error: -22
[    1.116977] microcode: CPU0: patch_level=0x0800111c
[    1.116983] microcode: CPU1: patch_level=0x0800111c
[    1.116988] microcode: CPU2: patch_level=0x0800111c
[    1.116994] microcode: CPU3: patch_level=0x0800111c
[    1.116999] microcode: CPU4: patch_level=0x0800111c
[    1.117004] microcode: CPU5: patch_level=0x0800111c
[    1.117011] microcode: CPU6: patch_level=0x0800111c
[    1.117016] microcode: CPU7: patch_level=0x0800111c
[    1.117022] microcode: CPU8: patch_level=0x0800111c
[    1.117025] microcode: CPU9: patch_level=0x0800111c
[    1.117030] microcode: CPU10: patch_level=0x0800111c
[    1.117036] microcode: CPU11: patch_level=0x0800111c
[    1.117055] microcode: Microcode Update Driver: v2.01 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    1.117128] registered taskstats version 1
[    1.117131] Loading compiled-in X.509 certificates
[    1.118971] Loaded X.509 cert 'Build time autogenerated kernel key: 890c85f7e22f136898a4920c18a4a187fdae3343'
[    1.118987] zswap: loaded using pool lzo/zbud
[    1.128533] Key type big_key registered
[    1.129504] Key type trusted registered
[    1.130481] Key type encrypted registered
[    1.130483] AppArmor: AppArmor sha1 policy hashing enabled
[    1.130484] ima: No TPM chip found, activating TPM-bypass!
[    1.130496] evm: HMAC attrs: 0x1
[    1.130750]   Magic number: 4:167:297
[    1.130862] rtc_cmos 00:02: setting system clock to 2020-05-03 21:17:42 UTC (1588540662)
[    1.130961] acpi_cpufreq: overriding BIOS provided _PSD data
[    1.131276] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    1.131276] EDD information not available.
[    1.131326] PM: Hibernation image not present or could not be loaded.
[    1.362512] Freeing unused kernel memory: 1548K (ffffffff8c56a000 - ffffffff8c6ed000)
[    1.362513] Write protecting the kernel read-only data: 14336k
[    1.362932] Freeing unused kernel memory: 1396K (ffff8f4f3f8a3000 - ffff8f4f3fa00000)
[    1.363369] Freeing unused kernel memory: 260K (ffff8f4f3fdbf000 - ffff8f4f3fe00000)
[    1.369151] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    1.378580] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[    1.378639] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[    1.378648] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[    1.378658] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[    1.380007] random: udevadm: uninitialized urandom read (16 bytes read)
[    1.380019] random: udevadm: uninitialized urandom read (16 bytes read)
[    1.384438] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[    1.384452] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[    1.384457] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[    1.384620] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[    1.410571] FUJITSU Extended Socket Network Device Driver - version 1.1 - Copyright (c) 2015 FUJITSU LIMITED
[    1.419993] ahci 0000:03:00.1: version 3.0
[    1.420117] ahci 0000:03:00.1: SSS flag set, parallel bus scan disabled
[    1.420151] ahci 0000:03:00.1: AHCI 0001.0301 32 slots 8 ports 6 Gbps 0x33 impl SATA mode
[    1.420153] ahci 0000:03:00.1: flags: 64bit ncq sntf stag pm led clo only pmp pio slum part sxs deso sadm sds apst
[    1.420652] pps_core: LinuxPPS API ver. 1 registered
[    1.420653] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    1.420785] scsi host0: ahci
[    1.420872] scsi host1: ahci
[    1.420959] scsi host2: ahci
[    1.421037] scsi host3: ahci
[    1.421109] scsi host4: ahci
[    1.421185] scsi host5: ahci
[    1.421274] scsi host6: ahci
[    1.421366] scsi host7: ahci
[    1.421405] ata1: SATA max UDMA/133 abar m131072@0xf7680000 port 0xf7680100 irq 232
[    1.421406] ata2: SATA max UDMA/133 abar m131072@0xf7680000 port 0xf7680180 irq 232
[    1.421407] ata3: DUMMY
[    1.421407] ata4: DUMMY
[    1.421408] ata5: SATA max UDMA/133 abar m131072@0xf7680000 port 0xf7680300 irq 232
[    1.421410] ata6: SATA max UDMA/133 abar m131072@0xf7680000 port 0xf7680380 irq 232
[    1.421410] ata7: DUMMY
[    1.421410] ata8: DUMMY
[    1.421580] ahci 0000:28:00.2: AHCI 0001.0301 32 slots 2 ports 6 Gbps 0xc impl SATA mode
[    1.421582] ahci 0000:28:00.2: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part
[    1.421584] ahci 0000:28:00.2: both AHCI_HFLAG_MULTI_MSI flag set and custom irq handler implemented
[    1.421860] PTP clock support registered
[    1.421991] scsi host8: ahci
[    1.422066] scsi host9: ahci
[    1.422133] scsi host10: ahci
[    1.422204] scsi host11: ahci
[    1.422232] ata9: DUMMY
[    1.422232] ata10: DUMMY
[    1.422234] ata11: SATA max UDMA/133 abar m4096@0xf7708000 port 0xf7708200 irq 236
[    1.422235] ata12: SATA max UDMA/133 abar m4096@0xf7708000 port 0xf7708280 irq 237
[    1.422951] dca service started, version 1.12.1
[    1.426838] igb: Intel(R) Gigabit Ethernet Network Driver - version 5.3.0-k
[    1.426839] igb: Copyright (c) 2007-2014 Intel Corporation.
[    1.455847] pps pps0: new PPS source ptp0
[    1.455849] igb 0000:1e:00.0: added PHC on eth0
[    1.455850] igb 0000:1e:00.0: Intel(R) Gigabit Ethernet Network Connection
[    1.455851] igb 0000:1e:00.0: eth0: (PCIe:2.5Gb/s:Width x1) 88:d7:f6:c7:35:11
[    1.455852] igb 0000:1e:00.0: eth0: PBA No: FFFFFF-0FF
[    1.455853] igb 0000:1e:00.0: Using MSI-X interrupts. 2 rx queue(s), 2 tx queue(s)
[    1.456460] igb 0000:1e:00.0 enp30s0: renamed from eth0
[    1.463297] usb 1-7: new high-speed USB device number 2 using xhci_hcd
[    1.732094] ata1: SATA link down (SStatus 0 SControl 300)
[    1.899218] ata11: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    1.899236] ata12: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    1.899490] ata11.00: HPA detected: current 500116079, native 500118192
[    1.899510] ata11.00: ATA-8: OCZ-VECTOR, 2.0, max UDMA/133
[    1.899511] ata11.00: 500116079 sectors, multi 1: LBA48 NCQ (depth 31/32), AA
[    1.901093] ata12.00: ATAPI: HL-DT-ST BD-RE  BH16NS55, 1.02, max UDMA/133
[    1.901243] ata11.00: configured for UDMA/133
[    1.901809] ata12.00: configured for UDMA/133
[    2.015211] tsc: Refined TSC clocksource calibration: 3193.999 MHz
[    2.015219] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2e0a24cf65f, max_idle_ns: 440795271781 ns
[    2.043482] ata2: SATA link down (SStatus 0 SControl 300)
[    2.124145] usb 1-7: New USB device found, idVendor=0bda, idProduct=0151
[    2.124147] usb 1-7: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    2.124148] usb 1-7: Product: USB2.0-CRW
[    2.124148] usb 1-7: Manufacturer: Generic
[    2.124149] usb 1-7: SerialNumber: 20060413092100000
[    2.311227] usb 1-10: new high-speed USB device number 3 using xhci_hcd
[    2.356225] ata5: SATA link down (SStatus 0 SControl 300)
[    2.535229] usb 1-10: New USB device found, idVendor=05e3, idProduct=0608
[    2.535231] usb 1-10: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    2.535232] usb 1-10: Product: USB2.0 Hub
[    2.539223] hub 1-10:1.0: USB hub found
[    2.543198] hub 1-10:1.0: 4 ports detected
[    2.566276] usb-storage 1-7:1.0: USB Mass Storage device detected
[    2.566403] scsi host12: usb-storage 1-7:1.0
[    2.566479] usbcore: registered new interface driver usb-storage
[    2.567381] usbcore: registered new interface driver uas
[    2.667814] ata6: SATA link down (SStatus 0 SControl 300)
[    2.668233] scsi 10:0:0:0: Direct-Access     ATA      OCZ-VECTOR       2.0  PQ: 0 ANSI: 5
[    2.699494] sd 10:0:0:0: Attached scsi generic sg0 type 0
[    2.699610] sd 10:0:0:0: [sda] 500116079 512-byte logical blocks: (256 GB/238 GiB)
[    2.699705] sd 10:0:0:0: [sda] Write Protect is off
[    2.699708] sd 10:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    2.699733] sd 10:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.701206] scsi 11:0:0:0: CD-ROM            HL-DT-ST BD-RE  BH16NS55  1.02 PQ: 0 ANSI: 5
[    2.701619]  sda: sda1 sda2 sda3
[    2.702077] sd 10:0:0:0: [sda] Attached SCSI disk
[    2.728920] sr 11:0:0:0: [sr0] scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
[    2.728921] cdrom: Uniform CD-ROM driver Revision: 3.20
[    2.728990] sr 11:0:0:0: Attached scsi CD-ROM sr0
[    2.729027] sr 11:0:0:0: Attached scsi generic sg1 type 5
[    2.773073] random: fast init done
[    2.883260] usb 1-10.3: new low-speed USB device number 4 using xhci_hcd
[    3.039503] clocksource: Switched to clocksource tsc
[    3.145707] usb 1-10.3: New USB device found, idVendor=1a2c, idProduct=2124
[    3.145708] usb 1-10.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.145710] usb 1-10.3: Product: USB Keyboard
[    3.145710] usb 1-10.3: Manufacturer: SEM
[    3.156208] hidraw: raw HID events driver (C) Jiri Kosina
[    3.207779] usbcore: registered new interface driver usbhid
[    3.207780] usbhid: USB HID core driver
[    3.209109] input: SEM USB Keyboard as /devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-10/1-10.3/1-10.3:1.0/0003:1A2C:2124.0001/input/input5
[    3.267754] hid-generic 0003:1A2C:2124.0001: input,hidraw0: USB HID v1.10 Keyboard [SEM USB Keyboard] on usb-0000:03:00.0-10.3/input0
[    3.279773] input: SEM USB Keyboard as /devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-10/1-10.3/1-10.3:1.1/0003:1A2C:2124.0002/input/input6
[    3.291610] usb 1-10.4: new low-speed USB device number 5 using xhci_hcd
[    3.339747] hid-generic 0003:1A2C:2124.0002: input,hidraw1: USB HID v1.10 Device [SEM USB Keyboard] on usb-0000:03:00.0-10.3/input1
[    3.549747] usb 1-10.4: New USB device found, idVendor=1bcf, idProduct=05cf
[    3.549749] usb 1-10.4: New USB device strings: Mfr=0, Product=2, SerialNumber=0
[    3.549750] usb 1-10.4: Product: SilverCrest DMTS2017
[    3.585973] input: SilverCrest DMTS2017 as /devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-10/1-10.4/1-10.4:1.0/0003:1BCF:05CF.0003/input/input7
[    3.593272] scsi 12:0:0:0: Direct-Access     Generic- Compact Flash    1.00 PQ: 0 ANSI: 0 CCS
[    3.599745] scsi 12:0:0:1: Direct-Access     Generic- SM/xD-Picture    1.00 PQ: 0 ANSI: 0 CCS
[    3.606603] scsi 12:0:0:2: Direct-Access     Generic- SD/MMC           1.00 PQ: 0 ANSI: 0 CCS
[    3.613452] scsi 12:0:0:3: Direct-Access     Generic- MS/MS-Pro        1.00 PQ: 0 ANSI: 0 CCS
[    3.613951] sd 12:0:0:0: Attached scsi generic sg2 type 0
[    3.614045] sd 12:0:0:1: Attached scsi generic sg3 type 0
[    3.614130] sd 12:0:0:2: Attached scsi generic sg4 type 0
[    3.614212] sd 12:0:0:3: Attached scsi generic sg5 type 0
[    3.643737] hid-generic 0003:1BCF:05CF.0003: input,hidraw2: USB HID v1.00 Keyboard [SilverCrest DMTS2017] on usb-0000:03:00.0-10.4/input0
[    3.698169] input: SilverCrest DMTS2017 as /devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-10/1-10.4/1-10.4:1.1/0003:1BCF:05CF.0004/input/input8
[    3.755948] hid-generic 0003:1BCF:05CF.0004: input,hiddev0,hidraw3: USB HID v1.00 Mouse [SilverCrest DMTS2017] on usb-0000:03:00.0-10.4/input1
[    3.800213] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[    4.208234] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[    4.616229] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[    4.841713] sd 12:0:0:2: [sdd] Attached SCSI removable disk
[    5.056244] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[    5.464252] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[    5.872260] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[    6.224275] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[    6.632287] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[    6.856434] sd 12:0:0:0: [sdb] Attached SCSI removable disk
[    7.040293] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[    7.264507] sd 12:0:0:1: [sdc] Attached SCSI removable disk
[    7.448308] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[    7.868359] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[    8.280331] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[    8.692339] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[    9.104355] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[    9.516368] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[    9.928380] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   10.340392] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   10.748394] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   11.156416] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   11.568425] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   11.996446] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   12.572454] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   12.984459] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   13.209822] sd 12:0:0:3: [sde] Test WP failed, assume Write Enabled
[   13.408451] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   13.816474] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   14.236480] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   14.462071] sd 12:0:0:3: [sde] Asking for cache data failed
[   14.462075] sd 12:0:0:3: [sde] Assuming drive cache: write through
[   14.648496] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   15.056624] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   15.468524] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   15.880536] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   16.292547] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   16.704678] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   17.116572] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   17.528577] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   17.940600] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   18.348599] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   18.569748] sd 12:0:0:3: [sde] Attached SCSI removable disk
[   18.756622] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   19.164632] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   19.572637] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   19.980654] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   20.388629] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   20.796674] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   21.204682] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   21.612698] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   22.020705] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   22.428715] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   22.840753] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   23.252745] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   23.664739] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   24.076753] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   24.488877] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   24.900786] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   25.312987] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   25.724918] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   26.132827] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   26.536821] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   26.944840] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   27.356874] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   27.764864] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   28.176907] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   28.584881] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   28.992910] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   29.400910] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   29.820907] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   30.233103] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   30.640938] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   31.048939] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   31.460985] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   31.872970] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   32.288988] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   32.700989] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   33.113006] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   33.525011] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   33.933022] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   34.337037] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   34.745046] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   35.389059] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   35.797106] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   36.205202] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   36.613094] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   37.021113] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   37.429125] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   37.837138] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   38.245142] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   38.653161] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   39.061171] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   39.469186] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   39.881297] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   40.293212] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   40.705207] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   41.117222] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   41.529347] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   41.937242] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   42.341257] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   42.753297] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   43.161302] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   43.569288] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   43.977304] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   44.389270] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   44.797321] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   45.205326] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   45.613346] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   46.025386] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   46.433362] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   46.841373] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   47.253420] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   47.665396] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   48.077406] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   48.489426] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   48.901551] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   49.313468] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   49.725562] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   50.133463] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   50.541474] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   50.973490] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   51.385531] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   51.793513] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   52.201523] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   52.609532] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   53.017557] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   53.425565] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   53.833572] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   54.241585] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   54.649590] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   55.101640] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   55.513611] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   55.925628] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   56.337634] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   56.769638] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   57.181683] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   57.589704] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   57.997334] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   58.405717] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   58.813705] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   59.221711] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   59.629729] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   60.061736] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   60.469858] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   60.881779] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   61.289769] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   61.697781] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   62.105792] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   62.513807] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   62.921819] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   63.329834] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   63.737840] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   64.149885] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   64.561850] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   64.973866] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   65.409880] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   65.813896] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   66.221901] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   66.629917] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   67.037924] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   67.445935] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   67.853952] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   68.261963] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   68.669975] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   69.077985] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   69.485997] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   69.894007] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   70.273204] raid6: sse2x1   gen()  7395 MB/s
[   70.309866] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   70.341143] raid6: sse2x1   xor()  7405 MB/s
[   70.409148] raid6: sse2x2   gen() 15243 MB/s
[   70.477052] raid6: sse2x2   xor()  9997 MB/s
[   70.545151] raid6: sse2x4   gen() 15880 MB/s
[   70.613142] raid6: sse2x4   xor()  9032 MB/s
[   70.681166] raid6: avx2x1   gen() 16773 MB/s
[   70.717749] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   70.749167] raid6: avx2x2   gen() 21695 MB/s
[   70.817246] raid6: avx2x4   gen() 22055 MB/s
[   70.817247] raid6: using algorithm avx2x4 gen() 22055 MB/s
[   70.817247] raid6: using avx2x2 recovery algorithm
[   70.817980] xor: automatically using best checksumming function: avx
[   70.826828] Btrfs loaded, crc32c=crc32c-intel
[   70.917897] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
[   70.982423] random: crng init done
[   71.125313] systemd[1]: systemd 229 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ -LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN)
[   71.125535] systemd[1]: Detected architecture x86-64.
[   71.125717] systemd[1]: Set hostname to <ZEN>.
[   71.137662] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   71.198190] systemd[1]: Started Trigger resolvconf update for networkd DNS.
[   71.198268] systemd[1]: Listening on Journal Audit Socket.
[   71.198282] systemd[1]: Listening on udev Kernel Socket.
[   71.198299] systemd[1]: Listening on LVM2 metadata daemon socket.
[   71.198317] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[   71.198341] systemd[1]: Listening on Journal Socket.
[   71.198352] systemd[1]: Reached target Encrypted Volumes.
[   71.250892] EXT4-fs (sda2): re-mounted. Opts: errors=remount-ro
[   71.252910] lp: driver loaded but no devices found
[   71.255436] ppdev: user-space parallel port driver
[   71.294250] systemd-journald[488]: Received request to flush runtime journal from PID 1
[   71.351541] wmi: Mapper loaded
[   71.357837] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[   71.358595] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
[   71.358596] piix4_smbus 0000:00:14.0: Using register 0x2e for SMBus port selection
[   71.367405] [drm] Initialized drm 1.1.0 20060810
[   71.399767] snd_hda_intel 0000:26:00.1: Disabling MSI
[   71.399774] snd_hda_intel 0000:26:00.1: Handle vga_switcheroo audio client
[   71.399864] snd_hda_intel 0000:28:00.3: enabling device (0000 -> 0002)
[   71.400464] AVX2 version of gcm_enc/dec engaged.
[   71.400464] AES CTR mode by8 optimization enabled
[   71.412335] snd_hda_codec_generic hdaudioC1D0: autoconfig for Generic: line_outs=3 (0x14/0x15/0x16/0x0/0x0) type:line
[   71.412337] snd_hda_codec_generic hdaudioC1D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[   71.412338] snd_hda_codec_generic hdaudioC1D0:    hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
[   71.412339] snd_hda_codec_generic hdaudioC1D0:    mono: mono_out=0x0
[   71.412341] snd_hda_codec_generic hdaudioC1D0:    dig-out=0x1e/0x0
[   71.412341] snd_hda_codec_generic hdaudioC1D0:    inputs:
[   71.412343] snd_hda_codec_generic hdaudioC1D0:      Front Mic=0x19
[   71.412344] snd_hda_codec_generic hdaudioC1D0:      Rear Mic=0x18
[   71.412345] snd_hda_codec_generic hdaudioC1D0:      Line=0x1a
[   71.430633] input: HD-Audio Generic Front Mic as /devices/pci0000:00/0000:00:08.1/0000:28:00.3/sound/card1/input9
[   71.430704] input: HD-Audio Generic Rear Mic as /devices/pci0000:00/0000:00:08.1/0000:28:00.3/sound/card1/input10
[   71.430760] input: HD-Audio Generic Line as /devices/pci0000:00/0000:00:08.1/0000:28:00.3/sound/card1/input11
[   71.430817] input: HD-Audio Generic Line Out Front as /devices/pci0000:00/0000:00:08.1/0000:28:00.3/sound/card1/input12
[   71.430879] input: HD-Audio Generic Line Out Surround as /devices/pci0000:00/0000:00:08.1/0000:28:00.3/sound/card1/input13
[   71.430944] input: HD-Audio Generic Line Out CLFE as /devices/pci0000:00/0000:00:08.1/0000:28:00.3/sound/card1/input14
[   71.430954] kvm: Nested Virtualization enabled
[   71.430960] kvm: Nested Paging enabled
[   71.430993] input: HD-Audio Generic Front Headphone as /devices/pci0000:00/0000:00:08.1/0000:28:00.3/sound/card1/input15
[   71.437147] nvidia: loading out-of-tree module taints kernel.
[   71.437153] nvidia: module license 'NVIDIA' taints kernel.
[   71.437153] Disabling lock debugging due to kernel taint
[   71.440843] nvidia: module verification failed: signature and/or required key missing - tainting kernel
[   71.441576] asus_wmi: ASUS WMI generic driver loaded
[   71.442784] asus_wmi: Initialization: 0x0
[   71.442813] asus_wmi: BIOS WMI version: 0.9
[   71.442886] asus_wmi: SFUN value: 0x0
[   71.443266] input: Eee PC WMI hotkeys as /devices/platform/eeepc-wmi/input/input16
[   71.443442] asus_wmi: Number of fans: 1
[   71.445020] vgaarb: device changed decodes: PCI:0000:26:00.0,olddecodes=io+mem,decodes=none:owns=io+mem
[   71.445374] [drm] Initialized nvidia-drm 0.0.0 20150116 for 0000:26:00.0 on minor 0
[   71.445378] NVRM: loading NVIDIA UNIX x86_64 Kernel Module  340.107  Thu May 24 21:54:01 PDT 2018
[   71.448166] Adding 16706556k swap on /dev/sda3.  Priority:-1 extents:1 across:16706556k SSFS
[   71.463282] nvidia_uvm: Loaded the UVM driver, major device number 244
[   71.541776] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   71.949790] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   72.137646] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.1/0000:26:00.1/sound/card0/input17
[   72.137698] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.1/0000:26:00.1/sound/card0/input18
[   72.201525] NVRM: Your system is not currently configured to drive a VGA console
[   72.201526] NVRM: on the primary VGA device. The NVIDIA Linux graphics driver
[   72.201527] NVRM: requires the use of a text-mode VGA console. Use of other console
[   72.201527] NVRM: drivers including, but not limited to, vesafb, may result in
[   72.201528] NVRM: corruption and stability problems, and is not supported.
[   72.357793] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   72.765719] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   73.174129] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   73.582122] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   73.990117] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   74.398133] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   74.806135] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   75.218154] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   75.630059] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   76.042170] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   76.450186] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   76.862317] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   77.273842] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   77.682223] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   78.090233] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   78.502431] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   78.914005] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   79.322257] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   79.734296] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   80.158279] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   80.570290] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   80.982235] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   81.406321] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   81.810332] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   82.218442] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   82.626317] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   83.034361] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   83.442370] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   83.870121] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   84.290404] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   84.702138] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   85.114461] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   85.522426] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   85.954440] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   86.366459] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   86.782457] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   87.198483] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   87.606491] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   88.018123] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   88.426515] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   88.838635] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   89.250561] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   89.658541] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   90.078673] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   90.486571] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   90.898702] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   91.322598] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   91.730237] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   92.158635] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   92.566622] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   92.974249] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   93.382642] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   93.790663] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   94.198668] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   94.606673] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   95.014684] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   95.426710] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   95.838718] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   96.254758] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   96.666739] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   97.074755] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   97.482759] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   97.886381] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   98.294777] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   98.818793] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   99.226798] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[   99.634821] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  100.042821] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  100.450456] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  100.858483] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  101.270889] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  101.682862] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  102.090884] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  102.502914] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  102.914901] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  103.338920] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  103.762944] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  104.186954] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  104.610945] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  105.023040] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  105.430971] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  105.726071] audit: type=1400 audit(1588540767.088:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/ippusbxd" pid=1007 comm="apparmor_parser"
[  105.726585] audit: type=1400 audit(1588540767.088:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/ntpd" pid=1008 comm="apparmor_parser"
[  105.726619] audit: type=1400 audit(1588540767.088:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/tcpdump" pid=1010 comm="apparmor_parser"
[  105.726841] audit: type=1400 audit(1588540767.088:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cups-browsed" pid=1005 comm="apparmor_parser"
[  105.728271] audit: type=1400 audit(1588540767.088:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/cups/backend/cups-pdf" pid=1006 comm="apparmor_parser"
[  105.728275] audit: type=1400 audit(1588540767.088:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cupsd" pid=1006 comm="apparmor_parser"
[  105.728277] audit: type=1400 audit(1588540767.088:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cupsd//third_party" pid=1006 comm="apparmor_parser"
[  105.728309] audit: type=1400 audit(1588540767.088:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=1003 comm="apparmor_parser"
[  105.728313] audit: type=1400 audit(1588540767.088:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=1003 comm="apparmor_parser"
[  105.728316] audit: type=1400 audit(1588540767.088:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=1003 comm="apparmor_parser"
[  105.847161] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  106.254991] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  106.662998] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  107.071216] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  107.479020] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  107.887031] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  108.295234] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  108.707097] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  109.119190] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  109.527092] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  110.719143] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  111.131127] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  111.543166] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  111.955150] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  112.367156] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  112.775172] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  113.187192] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  113.595196] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  114.003209] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  114.367238] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  114.779251] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  115.186993] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  115.595253] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  116.415304] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  117.631338] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  118.203429] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  118.610941] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  119.018976] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  119.427376] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  119.839377] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  120.251396] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  120.663580] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  121.075417] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  121.483401] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  121.895425] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  122.271776] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  122.679443] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  123.087449] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  123.495472] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  123.919509] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  124.327447] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  124.735515] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  126.139534] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  126.547548] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  126.959595] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  127.367562] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  127.779686] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  128.191586] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  128.603608] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  129.015606] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  129.419817] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  129.827645] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  130.239673] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  130.647659] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  131.055629] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  131.463687] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  131.875808] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  132.283703] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  132.691718] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  133.103748] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  133.511763] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  134.079777] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  134.504152] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  136.123807] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  137.151877] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  137.559854] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  137.967851] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  138.375864] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  138.783872] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  139.192001] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  139.599922] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  140.007911] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  140.415926] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  140.831934] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  141.239944] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  141.647606] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  142.055971] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  142.467979] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  142.879992] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  143.291944] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  144.060025] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  144.484031] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  145.340062] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  145.852068] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  146.276088] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  147.100110] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  148.924152] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  149.788180] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  150.940215] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  151.364222] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  151.776321] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  152.207892] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  152.612254] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  153.016266] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  153.428301] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  153.836282] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  154.244309] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  154.652307] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  155.064348] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  155.476444] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  155.884348] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  156.292357] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  156.700368] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  157.108382] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  157.520036] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  157.928398] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  158.340524] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  158.752443] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  159.168444] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  159.580554] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  159.992483] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  160.404435] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  161.297631] cgroup: new mount options do not match the existing superblock, will be ignored
[  161.452252] IPv6: ADDRCONF(NETDEV_UP): enp30s0: link is not ready
[  161.478177] IPv6: ADDRCONF(NETDEV_UP): enp30s0: link is not ready
[  162.812182] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  164.028572] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  164.404531] igb 0000:1e:00.0 enp30s0: igb: enp30s0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX/TX
[  164.512236] IPv6: ADDRCONF(NETDEV_CHANGE): enp30s0: link becomes ready
[  165.244445] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  169.352967] vboxdrv: Found 12 processor cores
[  169.372359] vboxdrv: TSC mode is Invariant, tentative frequency 3193993631 Hz
[  169.372360] vboxdrv: Successfully loaded version 5.1.38_Ubuntu (interface 0x002a0000)
[  169.378175] VBoxNetFlt: Successfully started.
[  169.383150] VBoxNetAdp: Successfully started.
[  169.387991] VBoxPciLinuxInit
[  169.389599] vboxpci: IOMMU found
[  206.839178] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  247.616769] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  346.835614] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  347.243510] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  349.682710] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  352.113569] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  354.120738] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  354.548596] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  354.976340] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  355.404159] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  357.842801] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  358.250600] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  364.715884] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  373.256115] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  378.409846] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  417.303546] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  421.750618] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  441.908024] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  446.355714] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  446.763700] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  447.175719] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  447.583648] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  452.147432] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  452.555415] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  452.967397] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  457.523296] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  466.007056] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  470.452019] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  485.750618] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  516.408920] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  522.873232] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  525.305287] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  525.713303] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  526.121299] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  562.844734] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  563.256682] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  567.704678] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  568.116668] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  568.528658] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  568.940726] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  569.352657] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  576.024544] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  585.592461] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  590.136411] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  602.648393] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  608.696377] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  623.224344] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  633.720345] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  636.152352] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  636.560301] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  655.164411] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  657.592153] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  658.972566] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  662.040452] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  686.744779] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  696.060462] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  700.728994] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  708.672066] SGI XFS with ACLs, security attributes, realtime, no debug enabled
[  708.677526] JFS: nTxBlock = 8192, nTxLock = 65536
[  708.691342] ntfs: driver 2.1.32 [Flags: R/O MODULE].
[  708.707767] QNX4 filesystem 0.2.3 registered.
[  729.529230] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  731.961506] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  738.425978] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  738.838008] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  790.430096] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  797.918623] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  807.807349] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  819.135791] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  820.511893] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  820.943904] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  823.584143] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  828.036811] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  828.448835] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  835.104965] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  835.517089] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  838.945433] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  841.985402] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  856.514889] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  860.963174] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  869.444034] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  871.875846] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  874.307734] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  874.719936] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  876.323934] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  877.156018] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  883.620653] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  885.636844] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  888.069127] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  889.701349] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  900.806273] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  909.287366] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  909.711487] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  934.473525] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  936.905716] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[  965.740096] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1017.967824] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1018.391792] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1027.632780] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1035.157322] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1062.323256] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1068.787710] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1075.252148] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1077.684115] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1078.108008] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1098.709785] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1112.374678] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1115.574570] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1118.007063] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1122.039332] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1124.471478] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1128.919774] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1138.584137] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1141.016678] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1145.465035] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1145.873021] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1150.329363] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1151.097470] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1161.594260] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1162.842389] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1168.058732] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1176.539117] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1191.100518] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1199.645136] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1200.053100] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1200.464911] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1200.877176] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1233.535296] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1235.967351] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1236.375702] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1236.783433] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1237.191759] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1249.728346] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1250.132661] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1259.361369] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1259.777360] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1262.209531] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1266.657561] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1295.523752] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1309.060645] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1315.525048] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1326.021722] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1328.453894] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1356.679255] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1359.111799] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1359.879909] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1361.543936] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1362.311616] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1368.776287] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1377.320963] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1378.088589] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1378.512785] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1379.753128] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1396.298062] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1398.729844] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1404.362156] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1407.210668] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1407.618670] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1422.347487] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1438.412364] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1438.836320] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1441.484482] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1445.292750] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1449.740929] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1450.148902] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1474.862234] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1481.998320] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1523.888388] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1531.217289] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1534.385063] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1535.665357] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1536.089383] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1538.833529] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1539.241487] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1539.649610] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1540.057503] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1540.465240] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1540.869241] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1543.281840] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1547.729938] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1548.137953] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1554.610389] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1555.034022] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1555.442324] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1557.874250] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1561.906674] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1566.354601] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1568.786920] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1584.083843] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1584.499516] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1584.915868] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1585.324129] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1585.731563] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1614.389281] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1615.988986] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1616.397330] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1618.837386] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1623.285631] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1625.717578] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1645.461851] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1645.889768] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1646.298139] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1648.726189] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1654.774302] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1655.190039] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1655.598367] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1658.038389] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1662.486619] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1666.102728] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1672.566879] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1674.999011] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1678.198731] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1678.614786] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1681.047289] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1683.479372] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1691.543532] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1691.951566] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1694.391669] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1696.919429] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1702.455950] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1710.936161] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1719.512082] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1722.008517] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1738.680731] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1743.129314] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1749.593503] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1750.005443] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1756.473482] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1764.538018] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1771.002246] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1771.410209] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1771.822274] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1774.234417] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1778.682524] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1782.714658] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1785.146483] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1790.362909] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1793.210674] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1851.677074] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1852.084652] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1854.525216] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1863.005335] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1867.453534] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1873.501730] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1877.949819] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1878.357830] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1878.765844] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1881.214023] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1885.662112] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1905.374835] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1909.823033] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1916.319115] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1920.767262] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1932.419650] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1965.124755] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1967.552794] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1978.048810] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1978.473204] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 1997.057549] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 2027.810953] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 2028.222594] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 2028.634714] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 2033.091149] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 2033.498805] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 2033.906818] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 2037.954944] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 2038.359069] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 2038.767372] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 2045.219656] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 2049.667370] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 2125.062182] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 2210.152488] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 2217.001101] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 2225.481379] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 2228.713486] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 2242.829982] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 2249.290181] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 2251.722267] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 2262.218616] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 2263.818667] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 2268.266551] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 2274.315028] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 2276.747327] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 2277.155088] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 2279.595181] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 2299.947922] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 2304.396053] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 2309.003988] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 2324.044824] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 2337.805030] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 2352.333504] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 2352.757493] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 2357.230002] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 2367.278418] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 2371.310496] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 2373.742539] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 2374.154744] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
[ 2380.622567] usb 1-7: reset high-speed USB device number 2 using xhci_hcd
ZEN ~ #

I reckon it has booted after 169 seconds in that log. It seems to be spending a hell of a lot of time resetting USB ports, within that 169 seconds and even after. Let me try disconnecting the front panel port unit I installed only the other day...
 
Wow! 1m42s, but there was about 150s worth of USB resets in the last log.

Code:
ZEN ~ # dmesg
[    0.000000] Linux version 4.8.0-53-generic (buildd@lgw01-56) (gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.4) ) #56~16.04.1-Ubuntu SMP Tue May 16 01:18:56 UTC 2017 (Ubuntu 4.8.0-53.56~16.04.1-generic 4.8.17)
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.8.0-53-generic root=UUID=4261c645-1062-4345-a440-7aece8c93f9c ro quiet splash vt.handoff=7
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Centaur CentaurHauls
[    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] x86/fpu: Using 'eager' FPU context switches.
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000009cfffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000009d00000-0x0000000009ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000a000000-0x00000000da87efff] usable
[    0.000000] BIOS-e820: [mem 0x00000000da87f000-0x00000000daa06fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000daa07000-0x00000000daa24fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000daa25000-0x00000000dab2efff] usable
[    0.000000] BIOS-e820: [mem 0x00000000dab2f000-0x00000000daee9fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000daeea000-0x00000000dbe8efff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000dbe8f000-0x00000000dbefafff] type 20
[    0.000000] BIOS-e820: [mem 0x00000000dbefb000-0x00000000ddffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000de000000-0x00000000dfffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fdf00000-0x00000000fdffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fea00000-0x00000000fea0ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000feb80000-0x00000000fec01fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec30000-0x00000000fec30fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed40000-0x00000000fed44fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fedc2000-0x00000000fedcffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fedd4000-0x00000000fedd5fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000feefffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000041f37ffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: EFI v2.50 by American Megatrends
[    0.000000] efi:  ACPI 2.0=0xdaa0c000  ACPI=0xdaa0c000  SMBIOS=0xdbdff000  SMBIOS 3.0=0xdbdfe000  ESRT=0xd90f61d8
[    0.000000] esrt: Reserving ESRT space from 0x00000000d90f61d8 to 0x00000000d90f6210.
[    0.000000] SMBIOS 3.0.0 present.
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x41f380 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 write-through
[    0.000000]   C0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000000 mask FFFF80000000 write-back
[    0.000000]   1 base 000080000000 mask FFFFC0000000 write-back
[    0.000000]   2 base 0000C0000000 mask FFFFE0000000 write-back
[    0.000000]   3 base 0000DE000000 mask FFFFFE000000 uncachable
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] TOM2: 0000000420000000 aka 16896M
[    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- WT
[    0.000000] total RAM covered: 3552M
[    0.000000] Found optimal setting for mtrr clean up
[    0.000000]  gran_size: 64K     chunk_size: 1G     num_reg: 3      lose cover RAM: 0G
[    0.000000] e820: update [mem 0xde000000-0xffffffff] usable ==> reserved
[    0.000000] e820: last_pfn = 0xde000 max_arch_pfn = 0x400000000
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] Base memory trampoline at [ffff9bb940097000] 97000 size 24576
[    0.000000] Using GB pages for direct mapping
[    0.000000] BRK [0x3e4c3b000, 0x3e4c3bfff] PGTABLE
[    0.000000] BRK [0x3e4c3c000, 0x3e4c3cfff] PGTABLE
[    0.000000] BRK [0x3e4c3d000, 0x3e4c3dfff] PGTABLE
[    0.000000] BRK [0x3e4c3e000, 0x3e4c3efff] PGTABLE
[    0.000000] BRK [0x3e4c3f000, 0x3e4c3ffff] PGTABLE
[    0.000000] BRK [0x3e4c40000, 0x3e4c40fff] PGTABLE
[    0.000000] BRK [0x3e4c41000, 0x3e4c41fff] PGTABLE
[    0.000000] BRK [0x3e4c42000, 0x3e4c42fff] PGTABLE
[    0.000000] BRK [0x3e4c43000, 0x3e4c43fff] PGTABLE
[    0.000000] BRK [0x3e4c44000, 0x3e4c44fff] PGTABLE
[    0.000000] BRK [0x3e4c45000, 0x3e4c45fff] PGTABLE
[    0.000000] RAMDISK: [mem 0x32f2c000-0x3578dfff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000DAA0C000 000024 (v02 ALASKA)
[    0.000000] ACPI: XSDT 0x00000000DAA0C0A0 0000B4 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: FACP 0x00000000DAA15310 000114 (v06 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI BIOS Warning (bug): Optional FADT field Pm2ControlBlock has valid Length but zero Address: 0x0000000000000000/0x1 (20160422/tbfadt-658)
[    0.000000] ACPI: DSDT 0x00000000DAA0C1E8 009124 (v02 ALASKA A M I    01072009 INTL 20120913)
[    0.000000] ACPI: FACS 0x00000000DAEE7C80 000040
[    0.000000] ACPI: APIC 0x00000000DAA15428 0000DE (v03 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: FPDT 0x00000000DAA15508 000044 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: SSDT 0x00000000DAA22310 001664 (v01 AMD    CPMCMN   00000001 INTL 20120913)
[    0.000000] ACPI: SSDT 0x00000000DAA155A8 008C4C (v02                 00000002 MSFT 04000000)
[    0.000000] ACPI: FIDT 0x00000000DAA1E1F8 00009C (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: SSDT 0x00000000DAA1E298 0018B4 (v01 AMD    AmdTable 00000001 AMD  00000001)
[    0.000000] ACPI: SRAT 0x00000000DAA1FB50 0000F0 (v03 AMD    AmdTable 00000001 AMD  00000001)
[    0.000000] ACPI: CRAT 0x00000000DAA1FC40 000BD0 (v01 AMD    AmdTable 00000001 AMD  00000001)
[    0.000000] ACPI: CDIT 0x00000000DAA20810 000029 (v01 AMD    AmdTable 00000001 AMD  00000001)
[    0.000000] ACPI: SSDT 0x00000000DAA20840 0017E1 (v01 AMD    AOD      00000001 INTL 20120913)
[    0.000000] ACPI: MCFG 0x00000000DAA22028 00003C (v01 ALASKA A M I    01072009 MSFT 00010013)
[    0.000000] ACPI: HPET 0x00000000DAA22068 000038 (v01 ALASKA A M I    01072009 AMI  00000005)
[    0.000000] ACPI: SSDT 0x00000000DAA220A0 000024 (v01 AMDFCH FCHZP    00001000 INTL 20120913)
[    0.000000] ACPI: UEFI 0x00000000DAA220C8 000042 (v01                 00000000      00000000)
[    0.000000] ACPI: BGRT 0x00000000DAA22110 000038 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: IVRS 0x00000000DAA22148 0000D0 (v02                 00000001 AMD  00000000)
[    0.000000] ACPI: SSDT 0x00000000DAA22218 0000F8 (v01                 00001000 INTL 20120913)
[    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 0x01 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x02 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x03 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x04 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x05 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x08 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x09 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0a -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0b -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0c -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0d -> Node 0
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000041f37ffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x41f37b000-0x41f37ffff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x000000041f37ffff]
[    0.000000]   Device   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000009ffff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x0000000009cfffff]
[    0.000000]   node   0: [mem 0x000000000a000000-0x00000000da87efff]
[    0.000000]   node   0: [mem 0x00000000daa25000-0x00000000dab2efff]
[    0.000000]   node   0: [mem 0x00000000dbefb000-0x00000000ddffffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x000000041f37ffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000041f37ffff]
[    0.000000] On node 0 totalpages: 4176557
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 26 pages reserved
[    0.000000]   DMA zone: 3999 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 14047 pages used for memmap
[    0.000000]   DMA32 zone: 898958 pages, LIFO batch:31
[    0.000000]   Normal zone: 51150 pages used for memmap
[    0.000000]   Normal zone: 3273600 pages, LIFO batch:31
[    0.000000] ACPI: PM-Timer IO Port: 0x808
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] system APIC only can use physical flat
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    0.000000] IOAPIC[0]: apic_id 13, version 33, address 0xfec00000, GSI 0-23
[    0.000000] IOAPIC[1]: apic_id 14, version 33, address 0xfec01000, GSI 24-55
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    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: 0x10228201 base: 0xfed00000
[    0.000000] smpboot: Allowing 16 CPUs, 4 hotplug CPUs
[    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x09d00000-0x09ffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xda87f000-0xdaa06fff]
[    0.000000] PM: Registered nosave memory: [mem 0xdaa07000-0xdaa24fff]
[    0.000000] PM: Registered nosave memory: [mem 0xdab2f000-0xdaee9fff]
[    0.000000] PM: Registered nosave memory: [mem 0xdaeea000-0xdbe8efff]
[    0.000000] PM: Registered nosave memory: [mem 0xdbe8f000-0xdbefafff]
[    0.000000] PM: Registered nosave memory: [mem 0xde000000-0xdfffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xe0000000-0xf7ffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfc000000-0xfdefffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfdf00000-0xfdffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfe000000-0xfe9fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfea00000-0xfea0ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfea10000-0xfeb7ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfeb80000-0xfec01fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec02000-0xfec0ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec10000-0xfec10fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec11000-0xfec2ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec30000-0xfec30fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec31000-0xfecfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed00000-0xfed00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed01000-0xfed3ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed40000-0xfed44fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed45000-0xfed7ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed80000-0xfed8ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed90000-0xfedc1fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfedc2000-0xfedcffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfedd0000-0xfedd3fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfedd4000-0xfedd5fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfedd6000-0xfedfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfeefffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfef00000-0xfeffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
[    0.000000] e820: [mem 0xe0000000-0xf7ffffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.000000] setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:16 nr_node_ids:1
[    0.000000] percpu: Embedded 36 pages/cpu @ffff9bbd4e600000 s107864 r8192 d31400 u262144
[    0.000000] pcpu-alloc: s107864 r8192 d31400 u262144 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 4111270
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.8.0-53-generic root=UUID=4261c645-1062-4345-a440-7aece8c93f9c ro quiet splash vt.handoff=7
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Calgary: detecting Calgary via BIOS EBDA area
[    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[    0.000000] Memory: 16271964K/16706228K available (8829K kernel code, 1441K rwdata, 3836K rodata, 1548K init, 1296K bss, 434264K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=16, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000]     Build-time adjustment of leaf fanout to 64.
[    0.000000]     RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=16.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=16
[    0.000000] NR_IRQS:33024 nr_irqs:1096 16
[    0.000000] vt handoff: transparent VT on vt#7
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 3193.952 MHz processor
[    0.000016] Calibrating delay loop (skipped), value calculated using timer frequency.. 6387.90 BogoMIPS (lpj=12775808)
[    0.000017] pid_max: default: 32768 minimum: 301
[    0.000026] ACPI: Core revision 20160422
[    0.009580] ACPI: 7 ACPI AML tables successfully acquired and loaded

[    0.011669] Security Framework initialized
[    0.011670] Yama: becoming mindful.
[    0.011687] AppArmor: AppArmor initialized
[    0.012085] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
[    0.014607] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.015785] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes)
[    0.015792] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes)
[    0.016045] CPU: Physical Processor ID: 0
[    0.016045] CPU: Processor Core ID: 0
[    0.016052] mce: CPU supports 23 MCE banks
[    0.016068] LVT offset 1 assigned for vector 0xf9
[    0.016181] LVT offset 2 assigned for vector 0xf4
[    0.016193] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 512
[    0.016194] Last level dTLB entries: 4KB 1536, 2MB 1536, 4MB 768, 1GB 0
[    0.016894] Freeing SMP alternatives memory: 32K (ffffffffb06ed000 - ffffffffb06f5000)
[    0.048815] efi_bgrt: Ignoring BGRT: Incorrect BMP magic number 0x0 (expected 0x4d42)
[    0.049295] ftrace: allocating 33454 entries in 131 pages
[    0.060952] smpboot: APIC(0) Converting physical 0 to logical package 0
[    0.060952] smpboot: Max logical packages: 3
[    0.231491] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.378527] smpboot: CPU0: AMD Ryzen 5 1600 Six-Core Processor (family: 0x17, model: 0x1, stepping: 0x1)
[    0.378530] Performance Events:
[    0.378530] core perfctr but no constraints; unknown hardware!
[    0.378532] no PMU driver, software events only.
[    0.379154] NMI watchdog: disabled (cpu0): hardware events not enabled
[    0.379154] NMI watchdog: Shutting down hard lockup detector on all cpus
[    0.379211] x86: Booting SMP configuration:
[    0.379212] .... node  #0, CPUs:        #1  #2  #3  #4  #5  #6  #7  #8  #9 #10 #11
[    0.403856] x86: Booted up 1 node, 12 CPUs
[    0.403858] smpboot: Total of 12 processors activated (76654.84 BogoMIPS)
[    0.405851] devtmpfs: initialized
[    0.405899] x86/mm: Memory block size: 128MB
[    0.408561] evm: security.selinux
[    0.408561] evm: security.SMACK64
[    0.408561] evm: security.SMACK64EXEC
[    0.408562] evm: security.SMACK64TRANSMUTE
[    0.408562] evm: security.SMACK64MMAP
[    0.408562] evm: security.ima
[    0.408563] evm: security.capability
[    0.408628] PM: Registering ACPI NVS region [mem 0xdab2f000-0xdaee9fff] (3911680 bytes)
[    0.408719] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.408790] pinctrl core: initialized pinctrl subsystem
[    0.408871] RTC time: 22:15:54, date: 05/03/20
[    0.408973] NET: Registered protocol family 16
[    0.426599] cpuidle: using governor ladder
[    0.442599] cpuidle: using governor menu
[    0.442600] PCCT header not found.
[    0.442759] ACPI: bus type PCI registered
[    0.442760] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.442815] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[    0.442817] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
[    0.442823] pmd_set_huge: Cannot satisfy [mem 0xf8000000-0xf8200000] with a huge-page mapping due to MTRR override.
[    0.442892] PCI: Using configuration type 1 for base access
[    0.458747] HugeTLB registered 1 GB page size, pre-allocated 0 pages
[    0.458748] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.459001] ACPI: Added _OSI(Module Device)
[    0.459002] ACPI: Added _OSI(Processor Device)
[    0.459002] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.459002] ACPI: Added _OSI(Processor Aggregator Device)
[    0.459114] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.459127] ACPI: Executed 2 blocks of module-level executable AML code
[    0.460872] ACPI Error: Needed [Integer/String/Buffer], found [Region] ffff9bbd4e0ebaf8 (20160422/exresop-424)
[    0.460875] ACPI Exception: AE_AML_OPERAND_TYPE, Could not execute arguments for [IOB2] (Region) (20160422/nsinit-412)
[    0.464640] ACPI: Interpreter enabled
[    0.464651] ACPI: (supports S0 S3 S4 S5)
[    0.464652] ACPI: Using IOAPIC for interrupt routing
[    0.464733] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.469927] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.469930] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.470044] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug PME]
[    0.470151] acpi PNP0A08:00: _OSC: OS now controls [AER PCIeCapability]
[    0.470159] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
[    0.470355] PCI host bridge to bus 0000:00
[    0.470356] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    0.470357] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    0.470358] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
[    0.470359] pci_bus 0000:00: root bus resource [io  0x0d00-0xefff window]
[    0.470359] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.470360] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
[    0.470361] pci_bus 0000:00: root bus resource [mem 0xe0000000-0xf7ffffff window]
[    0.470362] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.470367] pci 0000:00:00.0: [1022:1450] type 00 class 0x060000
[    0.470431] pci 0000:00:00.2: [1022:1451] type 00 class 0x080600
[    0.470511] pci 0000:00:01.0: [1022:1452] type 00 class 0x060000
[    0.470572] pci 0000:00:01.3: [1022:1453] type 01 class 0x060400
[    0.470610] pci 0000:00:01.3: PME# supported from D0 D3hot D3cold
[    0.470639] pci 0000:00:01.3: System wakeup disabled by ACPI
[    0.470663] pci 0000:00:02.0: [1022:1452] type 00 class 0x060000
[    0.470724] pci 0000:00:03.0: [1022:1452] type 00 class 0x060000
[    0.470778] pci 0000:00:03.1: [1022:1453] type 01 class 0x060400
[    0.470819] pci 0000:00:03.1: PME# supported from D0 D3hot D3cold
[    0.470849] pci 0000:00:03.1: System wakeup disabled by ACPI
[    0.470877] pci 0000:00:04.0: [1022:1452] type 00 class 0x060000
[    0.470937] pci 0000:00:07.0: [1022:1452] type 00 class 0x060000
[    0.470990] pci 0000:00:07.1: [1022:1454] type 01 class 0x060400
[    0.471022] pci 0000:00:07.1: PME# supported from D0 D3hot D3cold
[    0.471048] pci 0000:00:07.1: System wakeup disabled by ACPI
[    0.471074] pci 0000:00:08.0: [1022:1452] type 00 class 0x060000
[    0.471128] pci 0000:00:08.1: [1022:1454] type 01 class 0x060400
[    0.471163] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
[    0.471189] pci 0000:00:08.1: System wakeup disabled by ACPI
[    0.471229] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500
[    0.471329] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100
[    0.471434] pci 0000:00:18.0: [1022:1460] type 00 class 0x060000
[    0.471483] pci 0000:00:18.1: [1022:1461] type 00 class 0x060000
[    0.471532] pci 0000:00:18.2: [1022:1462] type 00 class 0x060000
[    0.471576] pci 0000:00:18.3: [1022:1463] type 00 class 0x060000
[    0.471619] pci 0000:00:18.4: [1022:1464] type 00 class 0x060000
[    0.471663] pci 0000:00:18.5: [1022:1465] type 00 class 0x060000
[    0.471707] pci 0000:00:18.6: [1022:1466] type 00 class 0x060000
[    0.471750] pci 0000:00:18.7: [1022:1467] type 00 class 0x060000
[    0.471840] pci 0000:03:00.0: [1022:43bb] type 00 class 0x0c0330
[    0.471854] pci 0000:03:00.0: reg 0x10: [mem 0xf76a0000-0xf76a7fff 64bit]
[    0.471923] pci 0000:03:00.0: PME# supported from D3hot D3cold
[    0.471951] pci 0000:03:00.0: System wakeup disabled by ACPI
[    0.471979] pci 0000:03:00.1: [1022:43b7] type 00 class 0x010601
[    0.472019] pci 0000:03:00.1: reg 0x24: [mem 0xf7680000-0xf769ffff]
[    0.472026] pci 0000:03:00.1: reg 0x30: [mem 0xf7600000-0xf767ffff pref]
[    0.472058] pci 0000:03:00.1: PME# supported from D3hot D3cold
[    0.472099] pci 0000:03:00.2: [1022:43b2] type 01 class 0x060400
[    0.472161] pci 0000:03:00.2: PME# supported from D3hot D3cold
[    0.482604] pci 0000:00:01.3: PCI bridge to [bus 03-25]
[    0.482607] pci 0000:00:01.3:   bridge window [io  0xe000-0xefff]
[    0.482609] pci 0000:00:01.3:   bridge window [mem 0xf7500000-0xf76fffff]
[    0.482679] pci 0000:1d:00.0: [1022:43b4] type 01 class 0x060400
[    0.482752] pci 0000:1d:00.0: PME# supported from D3hot D3cold
[    0.482809] pci 0000:1d:01.0: [1022:43b4] type 01 class 0x060400
[    0.482881] pci 0000:1d:01.0: PME# supported from D3hot D3cold
[    0.482936] pci 0000:1d:04.0: [1022:43b4] type 01 class 0x060400
[    0.483007] pci 0000:1d:04.0: PME# supported from D3hot D3cold
[    0.483062] pci 0000:1d:06.0: [1022:43b4] type 01 class 0x060400
[    0.483133] pci 0000:1d:06.0: PME# supported from D3hot D3cold
[    0.483190] pci 0000:1d:07.0: [1022:43b4] type 01 class 0x060400
[    0.483260] pci 0000:1d:07.0: PME# supported from D3hot D3cold
[    0.483326] pci 0000:03:00.2: PCI bridge to [bus 1d-25]
[    0.483330] pci 0000:03:00.2:   bridge window [io  0xe000-0xefff]
[    0.483332] pci 0000:03:00.2:   bridge window [mem 0xf7500000-0xf75fffff]
[    0.483397] pci 0000:1e:00.0: [8086:1539] type 00 class 0x020000
[    0.483426] pci 0000:1e:00.0: reg 0x10: [mem 0xf7500000-0xf751ffff]
[    0.483457] pci 0000:1e:00.0: reg 0x18: [io  0xe000-0xe01f]
[    0.483474] pci 0000:1e:00.0: reg 0x1c: [mem 0xf7520000-0xf7523fff]
[    0.483629] pci 0000:1e:00.0: PME# supported from D0 D3hot D3cold
[    0.483682] pci 0000:1e:00.0: System wakeup disabled by ACPI
[    0.494612] pci 0000:1d:00.0: PCI bridge to [bus 1e]
[    0.494617] pci 0000:1d:00.0:   bridge window [io  0xe000-0xefff]
[    0.494620] pci 0000:1d:00.0:   bridge window [mem 0xf7500000-0xf75fffff]
[    0.494670] pci 0000:1d:01.0: PCI bridge to [bus 1f]
[    0.494716] pci 0000:1d:04.0: PCI bridge to [bus 22]
[    0.494761] pci 0000:1d:06.0: PCI bridge to [bus 24]
[    0.494805] pci 0000:1d:07.0: PCI bridge to [bus 25]
[    0.494877] pci 0000:26:00.0: [10de:128b] type 00 class 0x030000
[    0.494887] pci 0000:26:00.0: reg 0x10: [mem 0xf6000000-0xf6ffffff]
[    0.494897] pci 0000:26:00.0: reg 0x14: [mem 0xe8000000-0xefffffff 64bit pref]
[    0.494905] pci 0000:26:00.0: reg 0x1c: [mem 0xf0000000-0xf1ffffff 64bit pref]
[    0.494911] pci 0000:26:00.0: reg 0x24: [io  0xd000-0xd07f]
[    0.494917] pci 0000:26:00.0: reg 0x30: [mem 0xf7000000-0xf707ffff pref]
[    0.494974] pci 0000:26:00.0: System wakeup disabled by ACPI
[    0.495002] pci 0000:26:00.1: [10de:0e0f] type 00 class 0x040300
[    0.495012] pci 0000:26:00.1: reg 0x10: [mem 0xf7080000-0xf7083fff]
[    0.506605] pci 0000:00:03.1: PCI bridge to [bus 26]
[    0.506608] pci 0000:00:03.1:   bridge window [io  0xd000-0xdfff]
[    0.506610] pci 0000:00:03.1:   bridge window [mem 0xf6000000-0xf70fffff]
[    0.506613] pci 0000:00:03.1:   bridge window [mem 0xe8000000-0xf1ffffff 64bit pref]
[    0.506657] pci 0000:27:00.0: [1022:145a] type 00 class 0x130000
[    0.506726] pci 0000:27:00.2: [1022:1456] type 00 class 0x108000
[    0.506737] pci 0000:27:00.2: reg 0x18: [mem 0xf7300000-0xf73fffff]
[    0.506744] pci 0000:27:00.2: reg 0x24: [mem 0xf7400000-0xf7401fff]
[    0.506800] pci 0000:27:00.3: [1022:145c] type 00 class 0x0c0330
[    0.506808] pci 0000:27:00.3: reg 0x10: [mem 0xf7200000-0xf72fffff 64bit]
[    0.506846] pci 0000:27:00.3: PME# supported from D0 D3hot D3cold
[    0.506857] pci 0000:27:00.3: System wakeup disabled by ACPI
[    0.506887] pci 0000:00:07.1: PCI bridge to [bus 27]
[    0.506891] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf74fffff]
[    0.506932] pci 0000:28:00.0: [1022:1455] type 00 class 0x130000
[    0.507001] pci 0000:28:00.2: [1022:7901] type 00 class 0x010601
[    0.507025] pci 0000:28:00.2: reg 0x24: [mem 0xf7708000-0xf7708fff]
[    0.507053] pci 0000:28:00.2: PME# supported from D3hot D3cold
[    0.507088] pci 0000:28:00.3: [1022:1457] type 00 class 0x040300
[    0.507094] pci 0000:28:00.3: reg 0x10: [mem 0xf7700000-0xf7707fff]
[    0.507131] pci 0000:28:00.3: PME# supported from D0 D3hot D3cold
[    0.507174] pci 0000:00:08.1: PCI bridge to [bus 28]
[    0.507177] pci 0000:00:08.1:   bridge window [mem 0xf7700000-0xf77fffff]
[    0.507413] ACPI: PCI Interrupt Link [LNKA] (IRQs 4 5 7 10 11 14 15) *0
[    0.507448] ACPI: PCI Interrupt Link [LNKB] (IRQs 4 5 7 10 11 14 15) *0
[    0.507479] ACPI: PCI Interrupt Link [LNKC] (IRQs 4 5 7 10 11 14 15) *0
[    0.507516] ACPI: PCI Interrupt Link [LNKD] (IRQs 4 5 7 10 11 14 15) *0
[    0.507550] ACPI: PCI Interrupt Link [LNKE] (IRQs 4 5 7 10 11 14 15) *0
[    0.507579] ACPI: PCI Interrupt Link [LNKF] (IRQs 4 5 7 10 11 14 15) *0
[    0.507606] ACPI: PCI Interrupt Link [LNKG] (IRQs 4 5 7 10 11 14 15) *0
[    0.507634] ACPI: PCI Interrupt Link [LNKH] (IRQs 4 5 7 10 11 14 15) *0
[    0.507960] ACPI: Enabled 1 GPEs in block 00 to 1F
[    0.508108] SCSI subsystem initialized
[    0.508150] libata version 3.00 loaded.
[    0.508177] vgaarb: setting as boot device: PCI:0000:26:00.0
[    0.508178] vgaarb: device added: PCI:0000:26:00.0,decodes=io+mem,owns=io+mem,locks=none
[    0.508179] vgaarb: loaded
[    0.508179] vgaarb: bridge control possible 0000:26:00.0
[    0.508192] ACPI: bus type USB registered
[    0.508202] usbcore: registered new interface driver usbfs
[    0.508208] usbcore: registered new interface driver hub
[    0.508234] usbcore: registered new device driver usb
[    0.542684] PCI: Using ACPI for IRQ routing
[    0.544184] PCI: pci_cache_line_size set to 64 bytes
[    0.544237] e820: reserve RAM buffer [mem 0x09d00000-0x0bffffff]
[    0.544238] e820: reserve RAM buffer [mem 0xda87f000-0xdbffffff]
[    0.544239] e820: reserve RAM buffer [mem 0xdab2f000-0xdbffffff]
[    0.544239] e820: reserve RAM buffer [mem 0xde000000-0xdfffffff]
[    0.544240] e820: reserve RAM buffer [mem 0x41f380000-0x41fffffff]
[    0.544301] NetLabel: Initializing
[    0.544301] NetLabel:  domain hash size = 128
[    0.544302] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.544312] NetLabel:  unlabeled traffic allowed by default
[    0.544402] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.544404] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[    0.546446] clocksource: Switched to clocksource hpet
[    0.551786] VFS: Disk quotas dquot_6.6.0
[    0.551803] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.551879] AppArmor: AppArmor Filesystem Enabled
[    0.551915] pnp: PnP ACPI init
[    0.552018] system 00:00: [mem 0xf8000000-0xfbffffff] has been reserved
[    0.552021] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.552078] system 00:01: [mem 0xfeb80000-0xfebfffff] could not be reserved
[    0.552079] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.552157] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.552274] system 00:03: [io  0x0300-0x030f] has been reserved
[    0.552275] system 00:03: [io  0x0230-0x023f] has been reserved
[    0.552276] system 00:03: [io  0x0290-0x029f] has been reserved
[    0.552277] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.552452] pnp 00:04: [dma 0 disabled]
[    0.552483] pnp 00:04: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.552637] system 00:05: [io  0x04d0-0x04d1] has been reserved
[    0.552638] system 00:05: [io  0x040b] has been reserved
[    0.552639] system 00:05: [io  0x04d6] has been reserved
[    0.552640] system 00:05: [io  0x0c00-0x0c01] has been reserved
[    0.552640] system 00:05: [io  0x0c14] has been reserved
[    0.552641] system 00:05: [io  0x0c50-0x0c51] has been reserved
[    0.552642] system 00:05: [io  0x0c52] has been reserved
[    0.552643] system 00:05: [io  0x0c6c] has been reserved
[    0.552643] system 00:05: [io  0x0c6f] has been reserved
[    0.552644] system 00:05: [io  0x0cd0-0x0cd1] has been reserved
[    0.552645] system 00:05: [io  0x0cd2-0x0cd3] has been reserved
[    0.552646] system 00:05: [io  0x0cd4-0x0cd5] has been reserved
[    0.552646] system 00:05: [io  0x0cd6-0x0cd7] has been reserved
[    0.552647] system 00:05: [io  0x0cd8-0x0cdf] has been reserved
[    0.552648] system 00:05: [io  0x0800-0x089f] has been reserved
[    0.552649] system 00:05: [io  0x0b00-0x0b0f] has been reserved
[    0.552649] system 00:05: [io  0x0b20-0x0b3f] has been reserved
[    0.552650] system 00:05: [io  0x0900-0x090f] has been reserved
[    0.552651] system 00:05: [io  0x0910-0x091f] has been reserved
[    0.552652] system 00:05: [mem 0xfec00000-0xfec00fff] could not be reserved
[    0.552653] system 00:05: [mem 0xfec01000-0xfec01fff] could not be reserved
[    0.552654] system 00:05: [mem 0xfedc0000-0xfedc0fff] has been reserved
[    0.552655] system 00:05: [mem 0xfee00000-0xfee00fff] has been reserved
[    0.552656] system 00:05: [mem 0xfed80000-0xfed8ffff] could not be reserved
[    0.552657] system 00:05: [mem 0xfec10000-0xfec10fff] has been reserved
[    0.552657] system 00:05: [mem 0xff000000-0xffffffff] has been reserved
[    0.552659] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.552905] pnp: PnP ACPI: found 6 devices
[    0.559126] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.559156] pci 0000:1d:06.0: bridge window [io  0x1000-0x0fff] to [bus 24] add_size 1000
[    0.559157] pci 0000:1d:06.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 24] add_size 200000 add_align 100000
[    0.559158] pci 0000:1d:06.0: bridge window [mem 0x00100000-0x000fffff] to [bus 24] add_size 200000 add_align 100000
[    0.559170] pci 0000:1d:06.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[    0.559171] pci 0000:1d:06.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[    0.559172] pci 0000:03:00.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 1d-25] add_size 200000 add_align 100000
[    0.559176] pci 0000:03:00.2: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[    0.559177] pci 0000:03:00.2: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[    0.559179] pci 0000:00:01.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03-25] add_size 200000 add_align 100000
[    0.559190] pci 0000:00:01.3: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[    0.559191] pci 0000:00:01.3: res[15]=[mem 0x00100000-0x002fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[    0.559196] pci 0000:00:01.3: BAR 15: assigned [mem 0xe0000000-0xe01fffff 64bit pref]
[    0.559197] pci 0000:03:00.2: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[    0.559198] pci 0000:03:00.2: res[15]=[mem 0x00100000-0x002fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[    0.559199] pci 0000:03:00.2: BAR 15: assigned [mem 0xe0000000-0xe01fffff 64bit pref]
[    0.559201] pci 0000:1d:06.0: res[14]=[mem 0x00100000-0x000fffff] res_to_dev_res add_size 200000 min_align 100000
[    0.559202] pci 0000:1d:06.0: res[14]=[mem 0x00100000-0x002fffff] res_to_dev_res add_size 200000 min_align 100000
[    0.559202] pci 0000:1d:06.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[    0.559203] pci 0000:1d:06.0: res[15]=[mem 0x00100000-0x002fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[    0.559204] pci 0000:1d:06.0: res[13]=[io  0x1000-0x0fff] res_to_dev_res add_size 1000 min_align 1000
[    0.559205] pci 0000:1d:06.0: res[13]=[io  0x1000-0x1fff] res_to_dev_res add_size 1000 min_align 1000
[    0.559206] pci 0000:1d:06.0: BAR 14: no space for [mem size 0x00200000]
[    0.559207] pci 0000:1d:06.0: BAR 14: failed to assign [mem size 0x00200000]
[    0.559208] pci 0000:1d:06.0: BAR 15: assigned [mem 0xe0000000-0xe01fffff 64bit pref]
[    0.559209] pci 0000:1d:06.0: BAR 13: no space for [io  size 0x1000]
[    0.559210] pci 0000:1d:06.0: BAR 13: failed to assign [io  size 0x1000]
[    0.559211] pci 0000:1d:06.0: BAR 14: no space for [mem size 0x00200000]
[    0.559212] pci 0000:1d:06.0: BAR 14: failed to assign [mem size 0x00200000]
[    0.559213] pci 0000:1d:06.0: BAR 13: no space for [io  size 0x1000]
[    0.559213] pci 0000:1d:06.0: BAR 13: failed to assign [io  size 0x1000]
[    0.559214] pci 0000:1d:00.0: PCI bridge to [bus 1e]
[    0.559216] pci 0000:1d:00.0:   bridge window [io  0xe000-0xefff]
[    0.559219] pci 0000:1d:00.0:   bridge window [mem 0xf7500000-0xf75fffff]
[    0.559225] pci 0000:1d:01.0: PCI bridge to [bus 1f]
[    0.559234] pci 0000:1d:04.0: PCI bridge to [bus 22]
[    0.559242] pci 0000:1d:06.0: PCI bridge to [bus 24]
[    0.559247] pci 0000:1d:06.0:   bridge window [mem 0xe0000000-0xe01fffff 64bit pref]
[    0.559251] pci 0000:1d:07.0: PCI bridge to [bus 25]
[    0.559260] pci 0000:03:00.2: PCI bridge to [bus 1d-25]
[    0.559261] pci 0000:03:00.2:   bridge window [io  0xe000-0xefff]
[    0.559264] pci 0000:03:00.2:   bridge window [mem 0xf7500000-0xf75fffff]
[    0.559267] pci 0000:03:00.2:   bridge window [mem 0xe0000000-0xe01fffff 64bit pref]
[    0.559270] pci 0000:00:01.3: PCI bridge to [bus 03-25]
[    0.559271] pci 0000:00:01.3:   bridge window [io  0xe000-0xefff]
[    0.559273] pci 0000:00:01.3:   bridge window [mem 0xf7500000-0xf76fffff]
[    0.559275] pci 0000:00:01.3:   bridge window [mem 0xe0000000-0xe01fffff 64bit pref]
[    0.559278] pci 0000:00:03.1: PCI bridge to [bus 26]
[    0.559279] pci 0000:00:03.1:   bridge window [io  0xd000-0xdfff]
[    0.559281] pci 0000:00:03.1:   bridge window [mem 0xf6000000-0xf70fffff]
[    0.559282] pci 0000:00:03.1:   bridge window [mem 0xe8000000-0xf1ffffff 64bit pref]
[    0.559285] pci 0000:00:07.1: PCI bridge to [bus 27]
[    0.559287] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf74fffff]
[    0.559290] pci 0000:00:08.1: PCI bridge to [bus 28]
[    0.559292] pci 0000:00:08.1:   bridge window [mem 0xf7700000-0xf77fffff]
[    0.559296] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    0.559297] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    0.559298] pci_bus 0000:00: resource 6 [io  0x03b0-0x03df window]
[    0.559299] pci_bus 0000:00: resource 7 [io  0x0d00-0xefff window]
[    0.559299] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window]
[    0.559300] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window]
[    0.559301] pci_bus 0000:00: resource 10 [mem 0xe0000000-0xf7ffffff window]
[    0.559302] pci_bus 0000:03: resource 0 [io  0xe000-0xefff]
[    0.559303] pci_bus 0000:03: resource 1 [mem 0xf7500000-0xf76fffff]
[    0.559303] pci_bus 0000:03: resource 2 [mem 0xe0000000-0xe01fffff 64bit pref]
[    0.559304] pci_bus 0000:1d: resource 0 [io  0xe000-0xefff]
[    0.559305] pci_bus 0000:1d: resource 1 [mem 0xf7500000-0xf75fffff]
[    0.559305] pci_bus 0000:1d: resource 2 [mem 0xe0000000-0xe01fffff 64bit pref]
[    0.559306] pci_bus 0000:1e: resource 0 [io  0xe000-0xefff]
[    0.559307] pci_bus 0000:1e: resource 1 [mem 0xf7500000-0xf75fffff]
[    0.559308] pci_bus 0000:24: resource 2 [mem 0xe0000000-0xe01fffff 64bit pref]
[    0.559309] pci_bus 0000:26: resource 0 [io  0xd000-0xdfff]
[    0.559309] pci_bus 0000:26: resource 1 [mem 0xf6000000-0xf70fffff]
[    0.559310] pci_bus 0000:26: resource 2 [mem 0xe8000000-0xf1ffffff 64bit pref]
[    0.559311] pci_bus 0000:27: resource 1 [mem 0xf7200000-0xf74fffff]
[    0.559312] pci_bus 0000:28: resource 1 [mem 0xf7700000-0xf77fffff]
[    0.559336] NET: Registered protocol family 2
[    0.559484] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.559649] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.559789] TCP: Hash tables configured (established 131072 bind 65536)
[    0.559814] UDP hash table entries: 8192 (order: 6, 262144 bytes)
[    0.559858] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes)
[    0.559928] NET: Registered protocol family 1
[    0.560057] pci 0000:26:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.560145] PCI: CLS 64 bytes, default 64
[    0.560179] Unpacking initramfs...
[    0.995773] Freeing initrd memory: 41352K (ffff9bb972f2c000 - ffff9bb97578e000)
[    0.995803] AMD-Vi: IOMMU performance counters supported
[    0.995894] pci 0000:00:00.2: can't derive routing for PCI INT A
[    0.995895] pci 0000:00:00.2: PCI INT A: not connected
[    0.996100] iommu: Adding device 0000:00:01.0 to group 0
[    0.996115] iommu: Adding device 0000:00:01.3 to group 0
[    0.996199] iommu: Adding device 0000:00:02.0 to group 1
[    0.996282] iommu: Adding device 0000:00:03.0 to group 2
[    0.996296] iommu: Adding device 0000:00:03.1 to group 2
[    0.996372] iommu: Adding device 0000:00:04.0 to group 3
[    0.996456] iommu: Adding device 0000:00:07.0 to group 4
[    0.996468] iommu: Adding device 0000:00:07.1 to group 4
[    0.996550] iommu: Adding device 0000:00:08.0 to group 5
[    0.996564] iommu: Adding device 0000:00:08.1 to group 5
[    0.996646] iommu: Adding device 0000:00:14.0 to group 6
[    0.996659] iommu: Adding device 0000:00:14.3 to group 6
[    0.996754] iommu: Adding device 0000:00:18.0 to group 7
[    0.996765] iommu: Adding device 0000:00:18.1 to group 7
[    0.996777] iommu: Adding device 0000:00:18.2 to group 7
[    0.996789] iommu: Adding device 0000:00:18.3 to group 7
[    0.996800] iommu: Adding device 0000:00:18.4 to group 7
[    0.996810] iommu: Adding device 0000:00:18.5 to group 7
[    0.996821] iommu: Adding device 0000:00:18.6 to group 7
[    0.996832] iommu: Adding device 0000:00:18.7 to group 7
[    0.996845] iommu: Adding device 0000:03:00.0 to group 0
[    0.996854] iommu: Adding device 0000:03:00.1 to group 0
[    0.996863] iommu: Adding device 0000:03:00.2 to group 0
[    0.996874] iommu: Adding device 0000:1d:00.0 to group 0
[    0.996886] iommu: Adding device 0000:1d:01.0 to group 0
[    0.996897] iommu: Adding device 0000:1d:04.0 to group 0
[    0.996907] iommu: Adding device 0000:1d:06.0 to group 0
[    0.996918] iommu: Adding device 0000:1d:07.0 to group 0
[    0.996934] iommu: Adding device 0000:1e:00.0 to group 0
[    0.996946] iommu: Adding device 0000:26:00.0 to group 2
[    0.996955] iommu: Adding device 0000:26:00.1 to group 2
[    0.996964] iommu: Adding device 0000:27:00.0 to group 4
[    0.996973] iommu: Adding device 0000:27:00.2 to group 4
[    0.996981] iommu: Adding device 0000:27:00.3 to group 4
[    0.996990] iommu: Adding device 0000:28:00.0 to group 5
[    0.996999] iommu: Adding device 0000:28:00.2 to group 5
[    0.997007] iommu: Adding device 0000:28:00.3 to group 5
[    0.997255] AMD-Vi: Found IOMMU at 0000:00:00.2 cap 0x40
[    0.997255] AMD-Vi:  Extended features:  PPR NX GT IA GA PC
[    0.997258] AMD-Vi: Interrupt remapping enabled
[    0.997358] AMD-Vi: Lazy IO/TLB flushing enabled
[    0.998048] perf: AMD NB counters detected
[    0.998050] perf: AMD L2I counters detected
[    0.998571] perf: amd_iommu: Detected. (0 banks, 0 counters/bank)
[    0.998640] Scanning for low memory corruption every 60 seconds
[    0.998999] futex hash table entries: 4096 (order: 6, 262144 bytes)
[    0.999025] audit: initializing netlink subsys (disabled)
[    0.999041] audit: type=2000 audit(1588544153.692:1): initialized
[    0.999279] Initialise system trusted keyrings
[    0.999388] workingset: timestamp_bits=40 max_order=22 bucket_order=0
[    1.000404] zbud: loaded
[    1.000700] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    1.000841] fuse init (API version 7.25)
[    1.000934] Allocating IMA blacklist keyring.
[    1.002035] Key type asymmetric registered
[    1.002036] Asymmetric key parser 'x509' registered
[    1.002059] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 248)
[    1.002093] io scheduler noop registered
[    1.002094] io scheduler deadline registered (default)
[    1.002099] io scheduler cfq registered
[    1.003171] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    1.003174] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    1.003194] efifb: probing for efifb
[    1.003203] efifb: framebuffer at 0xf1000000, using 3072k, total 3072k
[    1.003204] efifb: mode is 1024x768x32, linelength=4096, pages=1
[    1.003204] efifb: scrolling: redraw
[    1.003205] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    1.003268] Console: switching to colour frame buffer device 128x48
[    1.003278] fb0: EFI VGA frame buffer device
[    1.003341] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    1.003343] ACPI: Power Button [PWRB]
[    1.003367] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    1.003368] ACPI: Power Button [PWRF]
[    1.004457] GHES: HEST is not enabled!
[    1.004521] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    1.025204] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    1.026245] Linux agpgart interface v0.103
[    1.028166] loop: module loaded
[    1.028276] libphy: Fixed MDIO Bus: probed
[    1.028277] tun: Universal TUN/TAP device driver, 1.6
[    1.028277] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    1.028298] PPP generic driver version 2.4.2
[    1.028328] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.028330] ehci-pci: EHCI PCI platform driver
[    1.028338] ehci-platform: EHCI generic platform driver
[    1.028343] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.028344] ohci-pci: OHCI PCI platform driver
[    1.028350] ohci-platform: OHCI generic platform driver
[    1.028353] uhci_hcd: USB Universal Host Controller Interface driver
[    1.028403] xhci_hcd 0000:03:00.0: xHCI Host Controller
[    1.028406] xhci_hcd 0000:03:00.0: new USB bus registered, assigned bus number 1
[    1.083789] xhci_hcd 0000:03:00.0: hcc params 0x0200ef81 hci version 0x110 quirks 0x00000410
[    1.083872] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    1.083873] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.083874] usb usb1: Product: xHCI Host Controller
[    1.083875] usb usb1: Manufacturer: Linux 4.8.0-53-generic xhci-hcd
[    1.083875] usb usb1: SerialNumber: 0000:03:00.0
[    1.083968] hub 1-0:1.0: USB hub found
[    1.083979] hub 1-0:1.0: 10 ports detected
[    1.087250] xhci_hcd 0000:03:00.0: xHCI Host Controller
[    1.087252] xhci_hcd 0000:03:00.0: new USB bus registered, assigned bus number 2
[    1.087273] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    1.087284] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
[    1.087285] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.087285] usb usb2: Product: xHCI Host Controller
[    1.087286] usb usb2: Manufacturer: Linux 4.8.0-53-generic xhci-hcd
[    1.087286] usb usb2: SerialNumber: 0000:03:00.0
[    1.087374] hub 2-0:1.0: USB hub found
[    1.087379] hub 2-0:1.0: 4 ports detected
[    1.088823] xhci_hcd 0000:27:00.3: xHCI Host Controller
[    1.088825] xhci_hcd 0000:27:00.3: new USB bus registered, assigned bus number 3
[    1.088928] xhci_hcd 0000:27:00.3: hcc params 0x0270f665 hci version 0x100 quirks 0x00000410
[    1.088989] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
[    1.088990] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.088991] usb usb3: Product: xHCI Host Controller
[    1.088991] usb usb3: Manufacturer: Linux 4.8.0-53-generic xhci-hcd
[    1.088992] usb usb3: SerialNumber: 0000:27:00.3
[    1.089066] hub 3-0:1.0: USB hub found
[    1.089070] hub 3-0:1.0: 4 ports detected
[    1.089184] xhci_hcd 0000:27:00.3: xHCI Host Controller
[    1.089185] xhci_hcd 0000:27:00.3: new USB bus registered, assigned bus number 4
[    1.089193] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    1.089202] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003
[    1.089202] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.089203] usb usb4: Product: xHCI Host Controller
[    1.089203] usb usb4: Manufacturer: Linux 4.8.0-53-generic xhci-hcd
[    1.089204] usb usb4: SerialNumber: 0000:27:00.3
[    1.089266] hub 4-0:1.0: USB hub found
[    1.089271] hub 4-0:1.0: 4 ports detected
[    1.089406] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    1.089825] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.089827] serio: i8042 AUX port at 0x60,0x64 irq 12
[    1.089905] mousedev: PS/2 mouse device common for all mice
[    1.089996] rtc_cmos 00:02: RTC can wake from S4
[    1.090087] rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
[    1.090117] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    1.090121] i2c /dev entries driver
[    1.090161] device-mapper: uevent: version 1.0.3
[    1.090203] device-mapper: ioctl: 4.35.0-ioctl (2016-06-23) initialised: dm-devel@redhat.com
[    1.090338] ledtrig-cpu: registered to indicate activity on CPUs
[    1.090341] EFI Variables Facility v0.08 2004-May-17
[    1.124583] NET: Registered protocol family 10
[    1.124753] NET: Registered protocol family 17
[    1.124759] Key type dns_resolver registered
[    1.125103] ------------[ cut here ]------------
[    1.125105] WARNING: CPU: 9 PID: 1 at /build/linux-hwe-MohJvK/linux-hwe-4.8.0/lib/kobject.c:210 kobject_add_internal+0x26c/0x330
[    1.125106] kobject: (ffff9bbd4bd4adc0): attempted to be registered with empty name!
[    1.125106] Modules linked in:
[    1.125108] CPU: 9 PID: 1 Comm: swapper/0 Not tainted 4.8.0-53-generic #56~16.04.1-Ubuntu
[    1.125109] Hardware name: System manufacturer System Product Name/ROG STRIX B350-F GAMING, BIOS 0223 05/04/2017
[    1.125110]  0000000000000286 0000000062183020 ffff9bbd4c633c78 ffffffffafa2e7b3
[    1.125112]  ffff9bbd4c633cc8 0000000000000000 ffff9bbd4c633cb8 ffffffffaf68314b
[    1.125113]  000000d200000000 ffff9bbd4bd4adc0 00000000ffffffea ffff9bbd439c3c10
[    1.125114] Call Trace:
[    1.125117]  [<ffffffffafa2e7b3>] dump_stack+0x63/0x90
[    1.125120]  [<ffffffffaf68314b>] __warn+0xcb/0xf0
[    1.125121]  [<ffffffffaf6831cf>] warn_slowpath_fmt+0x5f/0x80
[    1.125122]  [<ffffffffafa3186c>] kobject_add_internal+0x26c/0x330
[    1.125124]  [<ffffffffaf7c4452>] ? kfree_const+0x22/0x30
[    1.125125]  [<ffffffffafa319a5>] kobject_add+0x75/0xd0
[    1.125126]  [<ffffffffafa31a31>] kobject_create_and_add+0x31/0x70
[    1.125128]  [<ffffffffaf648a2d>] threshold_create_device+0x17d/0x350
[    1.125131]  [<ffffffffb059678a>] ? mcheck_vendor_init_severity+0x1a/0x1a
[    1.125132]  [<ffffffffb05967ba>] threshold_init_device+0x30/0x46
[    1.125134]  [<ffffffffaf602190>] do_one_initcall+0x50/0x1a0
[    1.125136]  [<ffffffffaf6a3646>] ? parse_args+0x186/0x490
[    1.125138]  [<ffffffffb0586175>] kernel_init_freeable+0x178/0x217
[    1.125140]  [<ffffffffafe8d33e>] kernel_init+0xe/0x100
[    1.125141]  [<ffffffffafe9aa9f>] ret_from_fork+0x1f/0x40
[    1.125142]  [<ffffffffafe8d330>] ? rest_init+0x80/0x80
[    1.125144] ---[ end trace 2604bfec740112cc ]---
[    1.125144] kobject_create_and_add: kobject_add error: -22
[    1.125164] microcode: CPU0: patch_level=0x0800111c
[    1.125170] microcode: CPU1: patch_level=0x0800111c
[    1.125175] microcode: CPU2: patch_level=0x0800111c
[    1.125180] microcode: CPU3: patch_level=0x0800111c
[    1.125185] microcode: CPU4: patch_level=0x0800111c
[    1.125189] microcode: CPU5: patch_level=0x0800111c
[    1.125196] microcode: CPU6: patch_level=0x0800111c
[    1.125202] microcode: CPU7: patch_level=0x0800111c
[    1.125208] microcode: CPU8: patch_level=0x0800111c
[    1.125211] microcode: CPU9: patch_level=0x0800111c
[    1.125215] microcode: CPU10: patch_level=0x0800111c
[    1.125221] microcode: CPU11: patch_level=0x0800111c
[    1.125242] microcode: Microcode Update Driver: v2.01 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    1.125314] registered taskstats version 1
[    1.125316] Loading compiled-in X.509 certificates
[    1.127069] Loaded X.509 cert 'Build time autogenerated kernel key: 890c85f7e22f136898a4920c18a4a187fdae3343'
[    1.127085] zswap: loaded using pool lzo/zbud
[    1.136529] Key type big_key registered
[    1.137508] Key type trusted registered
[    1.138472] Key type encrypted registered
[    1.138473] AppArmor: AppArmor sha1 policy hashing enabled
[    1.138475] ima: No TPM chip found, activating TPM-bypass!
[    1.138487] evm: HMAC attrs: 0x1
[    1.138750]   Magic number: 4:273:299
[    1.138863] rtc_cmos 00:02: setting system clock to 2020-05-03 22:15:54 UTC (1588544154)
[    1.138970] acpi_cpufreq: overriding BIOS provided _PSD data
[    1.139289] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    1.139290] EDD information not available.
[    1.139335] PM: Hibernation image not present or could not be loaded.
[    1.140352] Freeing unused kernel memory: 1548K (ffffffffb056a000 - ffffffffb06ed000)
[    1.140353] Write protecting the kernel read-only data: 14336k
[    1.140666] Freeing unused kernel memory: 1396K (ffff9bbd242a3000 - ffff9bbd24400000)
[    1.141089] Freeing unused kernel memory: 260K (ffff9bbd247bf000 - ffff9bbd24800000)
[    1.146903] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    1.155782] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[    1.155838] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[    1.155846] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[    1.155855] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[    1.156153] random: udevadm: uninitialized urandom read (16 bytes read)
[    1.156166] random: udevadm: uninitialized urandom read (16 bytes read)
[    1.160679] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[    1.160692] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[    1.160696] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[    1.160982] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[    1.186794] FUJITSU Extended Socket Network Device Driver - version 1.1 - Copyright (c) 2015 FUJITSU LIMITED
[    1.194816] ahci 0000:03:00.1: version 3.0
[    1.194918] pps_core: LinuxPPS API ver. 1 registered
[    1.194919] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    1.194959] ahci 0000:03:00.1: SSS flag set, parallel bus scan disabled
[    1.194992] ahci 0000:03:00.1: AHCI 0001.0301 32 slots 8 ports 6 Gbps 0x33 impl SATA mode
[    1.194993] ahci 0000:03:00.1: flags: 64bit ncq sntf stag pm led clo only pmp pio slum part sxs deso sadm sds apst
[    1.195597] scsi host0: ahci
[    1.195697] scsi host1: ahci
[    1.195705] PTP clock support registered
[    1.195787] scsi host2: ahci
[    1.195866] scsi host3: ahci
[    1.195943] scsi host4: ahci
[    1.196022] scsi host5: ahci
[    1.196097] scsi host6: ahci
[    1.196173] scsi host7: ahci
[    1.196207] ata1: SATA max UDMA/133 abar m131072@0xf7680000 port 0xf7680100 irq 232
[    1.196209] ata2: SATA max UDMA/133 abar m131072@0xf7680000 port 0xf7680180 irq 232
[    1.196209] ata3: DUMMY
[    1.196209] ata4: DUMMY
[    1.196211] ata5: SATA max UDMA/133 abar m131072@0xf7680000 port 0xf7680300 irq 232
[    1.196212] ata6: SATA max UDMA/133 abar m131072@0xf7680000 port 0xf7680380 irq 232
[    1.196212] ata7: DUMMY
[    1.196213] ata8: DUMMY
[    1.196364] ahci 0000:28:00.2: AHCI 0001.0301 32 slots 2 ports 6 Gbps 0xc impl SATA mode
[    1.196365] ahci 0000:28:00.2: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part
[    1.196366] ahci 0000:28:00.2: both AHCI_HFLAG_MULTI_MSI flag set and custom irq handler implemented
[    1.196537] dca service started, version 1.12.1
[    1.196760] scsi host8: ahci
[    1.196837] scsi host9: ahci
[    1.196910] scsi host10: ahci
[    1.196985] scsi host11: ahci
[    1.197017] ata9: DUMMY
[    1.197017] ata10: DUMMY
[    1.197019] ata11: SATA max UDMA/133 abar m4096@0xf7708000 port 0xf7708200 irq 236
[    1.197020] ata12: SATA max UDMA/133 abar m4096@0xf7708000 port 0xf7708280 irq 237
[    1.199033] igb: Intel(R) Gigabit Ethernet Network Driver - version 5.3.0-k
[    1.199034] igb: Copyright (c) 2007-2014 Intel Corporation.
[    1.228086] pps pps0: new PPS source ptp0
[    1.228088] igb 0000:1e:00.0: added PHC on eth0
[    1.228088] igb 0000:1e:00.0: Intel(R) Gigabit Ethernet Network Connection
[    1.228089] igb 0000:1e:00.0: eth0: (PCIe:2.5Gb/s:Width x1) 88:d7:f6:c7:35:11
[    1.228090] igb 0000:1e:00.0: eth0: PBA No: FFFFFF-0FF
[    1.228091] igb 0000:1e:00.0: Using MSI-X interrupts. 2 rx queue(s), 2 tx queue(s)
[    1.228628] igb 0000:1e:00.0 enp30s0: renamed from eth0
[    1.414515] usb 3-1: new low-speed USB device number 2 using xhci_hcd
[    1.507453] ata1: SATA link down (SStatus 0 SControl 300)
[    1.585322] usb 3-1: New USB device found, idVendor=1a2c, idProduct=2124
[    1.585324] usb 3-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.585325] usb 3-1: Product: USB Keyboard
[    1.585326] usb 3-1: Manufacturer: SEM
[    1.666888] ata12: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    1.668722] ata12.00: ATAPI: HL-DT-ST BD-RE  BH16NS55, 1.02, max UDMA/133
[    1.669510] ata12.00: configured for UDMA/133
[    1.710878] usb 3-2: new low-speed USB device number 3 using xhci_hcd
[    1.727116] ata11: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    1.727222] ata11.00: HPA detected: current 500116079, native 500118192
[    1.727242] ata11.00: ATA-8: OCZ-VECTOR, 2.0, max UDMA/133
[    1.727243] ata11.00: 500116079 sectors, multi 1: LBA48 NCQ (depth 31/32), AA
[    1.732988] ata11.00: configured for UDMA/133
[    1.823866] ata2: SATA link down (SStatus 0 SControl 300)
[    1.879329] usb 3-2: New USB device found, idVendor=1bcf, idProduct=05cf
[    1.879331] usb 3-2: New USB device strings: Mfr=0, Product=2, SerialNumber=0
[    1.879332] usb 3-2: Product: SilverCrest DMTS2017
[    1.895194] hidraw: raw HID events driver (C) Jiri Kosina
[    1.956901] usbcore: registered new interface driver usbhid
[    1.956903] usbhid: USB HID core driver
[    1.958195] input: SEM USB Keyboard as /devices/pci0000:00/0000:00:07.1/0000:27:00.3/usb3/3-1/3-1:1.0/0003:1A2C:2124.0001/input/input5
[    2.002871] tsc: Refined TSC clocksource calibration: 3193.999 MHz
[    2.002881] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2e0a24cf65f, max_idle_ns: 440795271781 ns
[    2.015302] hid-generic 0003:1A2C:2124.0001: input,hidraw0: USB HID v1.10 Keyboard [SEM USB Keyboard] on usb-0000:27:00.3-1/input0
[    2.020908] input: SEM USB Keyboard as /devices/pci0000:00/0000:00:07.1/0000:27:00.3/usb3/3-1/3-1:1.1/0003:1A2C:2124.0002/input/input6
[    2.079017] hid-generic 0003:1A2C:2124.0002: input,hidraw1: USB HID v1.10 Device [SEM USB Keyboard] on usb-0000:27:00.3-1/input1
[    2.079162] input: SilverCrest DMTS2017 as /devices/pci0000:00/0000:00:07.1/0000:27:00.3/usb3/3-2/3-2:1.0/0003:1BCF:05CF.0003/input/input7
[    2.136979] ata5: SATA link down (SStatus 0 SControl 300)
[    2.138606] hid-generic 0003:1BCF:05CF.0003: input,hidraw2: USB HID v1.00 Keyboard [SilverCrest DMTS2017] on usb-0000:27:00.3-2/input0
[    2.138843] input: SilverCrest DMTS2017 as /devices/pci0000:00/0000:00:07.1/0000:27:00.3/usb3/3-2/3-2:1.1/0003:1BCF:05CF.0004/input/input8
[    2.199081] hid-generic 0003:1BCF:05CF.0004: input,hiddev0,hidraw3: USB HID v1.00 Mouse [SilverCrest DMTS2017] on usb-0000:27:00.3-2/input1
[    2.448215] ata6: SATA link down (SStatus 0 SControl 300)
[    2.448512] scsi 10:0:0:0: Direct-Access     ATA      OCZ-VECTOR       2.0  PQ: 0 ANSI: 5
[    2.479279] sd 10:0:0:0: Attached scsi generic sg0 type 0
[    2.479321] sd 10:0:0:0: [sda] 500116079 512-byte logical blocks: (256 GB/238 GiB)
[    2.479417] sd 10:0:0:0: [sda] Write Protect is off
[    2.479418] sd 10:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    2.479444] sd 10:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.481033] scsi 11:0:0:0: CD-ROM            HL-DT-ST BD-RE  BH16NS55  1.02 PQ: 0 ANSI: 5
[    2.481289]  sda: sda1 sda2 sda3
[    2.481522] sd 10:0:0:0: [sda] Attached SCSI disk
[    2.504604] sr 11:0:0:0: [sr0] scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
[    2.504606] cdrom: Uniform CD-ROM driver Revision: 3.20
[    2.504682] sr 11:0:0:0: Attached scsi CD-ROM sr0
[    2.504724] sr 11:0:0:0: Attached scsi generic sg1 type 5
[    2.583984] random: fast init done
[    3.027200] clocksource: Switched to clocksource tsc
[    3.842754] raid6: sse2x1   gen()  7430 MB/s
[    3.910514] raid6: sse2x1   xor()  7392 MB/s
[    3.978611] raid6: sse2x2   gen() 15283 MB/s
[    4.046610] raid6: sse2x2   xor() 10033 MB/s
[    4.114517] raid6: sse2x4   gen() 15970 MB/s
[    4.182612] raid6: sse2x4   xor()  9298 MB/s
[    4.250518] raid6: avx2x1   gen() 16803 MB/s
[    4.318520] raid6: avx2x2   gen() 21714 MB/s
[    4.386776] raid6: avx2x4   gen() 22135 MB/s
[    4.386776] raid6: using algorithm avx2x4 gen() 22135 MB/s
[    4.386777] raid6: using avx2x2 recovery algorithm
[    4.387512] xor: automatically using best checksumming function: avx
[    4.396388] Btrfs loaded, crc32c=crc32c-intel
[    4.481641] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
[    4.686568] systemd[1]: systemd 229 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ -LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN)
[    4.686790] systemd[1]: Detected architecture x86-64.
[    4.686957] systemd[1]: Set hostname to <ZEN>.
[    4.758956] systemd[1]: Reached target Encrypted Volumes.
[    4.759028] systemd[1]: Listening on Journal Socket.
[    4.759039] systemd[1]: Reached target User and Group Name Lookups.
[    4.759054] systemd[1]: Listening on udev Kernel Socket.
[    4.759114] systemd[1]: Created slice User and Session Slice.
[    4.759132] systemd[1]: Listening on Journal Socket (/dev/log).
[    4.759154] systemd[1]: Started Trigger resolvconf update for networkd DNS.
[    4.801129] EXT4-fs (sda2): re-mounted. Opts: errors=remount-ro
[    4.808606] lp: driver loaded but no devices found
[    4.812115] ppdev: user-space parallel port driver
[    4.836422] systemd-journald[456]: Received request to flush runtime journal from PID 1
[    4.901383] wmi: Mapper loaded
[    4.907378] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    4.908237] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
[    4.908239] piix4_smbus 0000:00:14.0: Using register 0x2e for SMBus port selection
[    4.927227] [drm] Initialized drm 1.1.0 20060810
[    4.941355] snd_hda_intel 0000:26:00.1: Disabling MSI
[    4.941363] snd_hda_intel 0000:26:00.1: Handle vga_switcheroo audio client
[    4.941457] snd_hda_intel 0000:28:00.3: enabling device (0000 -> 0002)
[    4.950215] AVX2 version of gcm_enc/dec engaged.
[    4.950216] AES CTR mode by8 optimization enabled
[    4.953375] snd_hda_codec_generic hdaudioC1D0: autoconfig for Generic: line_outs=3 (0x14/0x15/0x16/0x0/0x0) type:line
[    4.953377] snd_hda_codec_generic hdaudioC1D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    4.953378] snd_hda_codec_generic hdaudioC1D0:    hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
[    4.953379] snd_hda_codec_generic hdaudioC1D0:    mono: mono_out=0x0
[    4.953380] snd_hda_codec_generic hdaudioC1D0:    dig-out=0x1e/0x0
[    4.953385] snd_hda_codec_generic hdaudioC1D0:    inputs:
[    4.953387] snd_hda_codec_generic hdaudioC1D0:      Front Mic=0x19
[    4.953388] snd_hda_codec_generic hdaudioC1D0:      Rear Mic=0x18
[    4.953389] snd_hda_codec_generic hdaudioC1D0:      Line=0x1a
[    4.965038] input: HD-Audio Generic Front Mic as /devices/pci0000:00/0000:00:08.1/0000:28:00.3/sound/card1/input9
[    4.965083] input: HD-Audio Generic Rear Mic as /devices/pci0000:00/0000:00:08.1/0000:28:00.3/sound/card1/input10
[    4.965117] input: HD-Audio Generic Line as /devices/pci0000:00/0000:00:08.1/0000:28:00.3/sound/card1/input11
[    4.965155] input: HD-Audio Generic Line Out Front as /devices/pci0000:00/0000:00:08.1/0000:28:00.3/sound/card1/input12
[    4.965213] input: HD-Audio Generic Line Out Surround as /devices/pci0000:00/0000:00:08.1/0000:28:00.3/sound/card1/input13
[    4.965346] input: HD-Audio Generic Line Out CLFE as /devices/pci0000:00/0000:00:08.1/0000:28:00.3/sound/card1/input14
[    4.965560] input: HD-Audio Generic Front Headphone as /devices/pci0000:00/0000:00:08.1/0000:28:00.3/sound/card1/input15
[    4.980288] kvm: Nested Virtualization enabled
[    4.980292] kvm: Nested Paging enabled
[    4.987376] nvidia: loading out-of-tree module taints kernel.
[    4.987380] nvidia: module license 'NVIDIA' taints kernel.
[    4.987380] Disabling lock debugging due to kernel taint
[    4.991539] nvidia: module verification failed: signature and/or required key missing - tainting kernel
[    4.995039] asus_wmi: ASUS WMI generic driver loaded
[    4.995654] vgaarb: device changed decodes: PCI:0000:26:00.0,olddecodes=io+mem,decodes=none:owns=io+mem
[    4.996067] [drm] Initialized nvidia-drm 0.0.0 20150116 for 0000:26:00.0 on minor 0
[    4.996071] NVRM: loading NVIDIA UNIX x86_64 Kernel Module  340.107  Thu May 24 21:54:01 PDT 2018
[    4.996264] asus_wmi: Initialization: 0x0
[    4.996292] asus_wmi: BIOS WMI version: 0.9
[    4.996368] asus_wmi: SFUN value: 0x0
[    4.996720] input: Eee PC WMI hotkeys as /devices/platform/eeepc-wmi/input/input16
[    4.996844] asus_wmi: Number of fans: 1
[    5.005901] Adding 16706556k swap on /dev/sda3.  Priority:-1 extents:1 across:16706556k SSFS
[    5.020141] nvidia_uvm: Loaded the UVM driver, major device number 244
[    5.699024] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.1/0000:26:00.1/sound/card0/input17
[    5.699076] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.1/0000:26:00.1/sound/card0/input18
[    5.742875] NVRM: Your system is not currently configured to drive a VGA console
[    5.742877] NVRM: on the primary VGA device. The NVIDIA Linux graphics driver
[    5.742878] NVRM: requires the use of a text-mode VGA console. Use of other console
[    5.742878] NVRM: drivers including, but not limited to, vesafb, may result in
[    5.742879] NVRM: corruption and stability problems, and is not supported.
[    6.053132] audit: type=1400 audit(1588544159.408:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/ippusbxd" pid=913 comm="apparmor_parser"
[    6.053327] audit: type=1400 audit(1588544159.408:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/ntpd" pid=914 comm="apparmor_parser"
[    6.054060] audit: type=1400 audit(1588544159.408:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cups-browsed" pid=911 comm="apparmor_parser"
[    6.054247] audit: type=1400 audit(1588544159.408:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/cups/backend/cups-pdf" pid=912 comm="apparmor_parser"
[    6.054252] audit: type=1400 audit(1588544159.408:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cupsd" pid=912 comm="apparmor_parser"
[    6.054255] audit: type=1400 audit(1588544159.408:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cupsd//third_party" pid=912 comm="apparmor_parser"
[    6.054800] audit: type=1400 audit(1588544159.412:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=909 comm="apparmor_parser"
[    6.054804] audit: type=1400 audit(1588544159.412:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=909 comm="apparmor_parser"
[    6.054807] audit: type=1400 audit(1588544159.412:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=909 comm="apparmor_parser"
[    6.054809] audit: type=1400 audit(1588544159.412:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=909 comm="apparmor_parser"
[   39.285317] random: crng init done
[   95.003617] cgroup: new mount options do not match the existing superblock, will be ignored
[   95.145713] IPv6: ADDRCONF(NETDEV_UP): enp30s0: link is not ready
[   95.171491] IPv6: ADDRCONF(NETDEV_UP): enp30s0: link is not ready
[   98.048895] igb 0000:1e:00.0 enp30s0: igb: enp30s0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX/TX
[   98.156582] IPv6: ADDRCONF(NETDEV_CHANGE): enp30s0: link becomes ready
[  103.380081] vboxdrv: Found 12 processor cores
[  103.404199] vboxdrv: TSC mode is Invariant, tentative frequency 3194031201 Hz
[  103.404200] vboxdrv: Successfully loaded version 5.1.38_Ubuntu (interface 0x002a0000)
[  103.410077] VBoxNetFlt: Successfully started.
[  103.414496] VBoxNetAdp: Successfully started.
[  103.418470] VBoxPciLinuxInit
[  103.420083] vboxpci: IOMMU found
ZEN ~ #

This bit:
Code:
[   95.003617] cgroup: new mount options do not match the existing superblock, will be ignored
seems to take 56s.
 
Well done - you spotted the usb errors!
But there is also something not quite right there - from [ 1.125103] to [ 1.125144]
I am not sure what it means - hopefully someone else can chime in - (maybe it doesn't recognise your cpu/mb combo? - this is just a guess)
Is there a MB BIOS update for your specific board?
OCZ Vector - looks like an old SSD - maybe make sure you install smart tools monitoring sudo apt-get install smartmontools gsmartcontro
I think you forgot this grep UUID /boot/grub/grub.cfg
I forgot to request sudo cat /etc/fstab
Also thanks for going through the commands and posting - it paints a better picture for me.
I noticed there were some messages about raid before and they are not there now.
Just for fun, disconnect ethernet and see if it boots faster. Also maybe go back and check HDD boot up speed and see if dmesg looks the same

If this bit is correct [ 1.125109] Hardware name: System manufacturer System Product Name/ROG STRIX B350-F GAMING, BIOS 0223 05/04/2017
Then this asus.com/us/Motherboards/ROG-STRIX-B350-F-GAMING/HelpDesk_Download/ shows there is a newer BIOS Version 5406 dated 2020/04/21
Code:
[   95.003617] cgroup: new mount options do not match the existing superblock, will be ignored
might be related to your /etc/fstab file. Will need to see the contents to make sure.
 
Last edited:
I think you forgot this grep UUID /boot/grub/grub.cfg
I didn't think it necessary - grub.cfg is only three lines long, and cat'ted!

I noticed there were some messages about raid before and they are not there now.
Maybe not that time, but I have seen them since. In common with many SATA mobos these days, RAID support is built in (but I haven't fitted one... yet).

Trying to figure out what the superblock message means, and whether it needs fixing.
 
Back
Top