lkml.org 
[lkml]   [2017]   [May]   [24]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
From
SubjectRE: [PATCH] PCI: Make SR-IOV capable GPU working on the SR-IOV incapable platform
Date
Hi Alex W, Alex D,

I just tried two options, one is enable "Above 4G Decoding" in BIOS setup menu, the other is add "pci=realloc=off" in grub. Both can fix this issue. Please see the attached log files.

Previously I thought "Above 4G Decoding" is enabled, but it is off when I looked CMOS setup today.

For now I think we have a solution. For the system that supports "Above 4G Decoding", user should enable it when use a SR-IOV supported device. For the system that doesn't support "Above 4G Decoding", user needs to add "pci=realloc=off" in grub.

Potentially I think kernel still needs to find a way to avoid this issue happen, like keeps the resource as the BIOS assigned value if there is a failure on device's resource reallocation.


-Collins Cheng


-----Original Message-----
From: Alex Williamson [mailto:alex.williamson@redhat.com]
Sent: Wednesday, May 24, 2017 2:20 AM
To: Cheng, Collins <Collins.Cheng@amd.com>
Cc: Alexander Duyck <alexander.duyck@gmail.com>; Bjorn Helgaas <bhelgaas@google.com>; linux-pci@vger.kernel.org; linux-kernel@vger.kernel.org; Deucher, Alexander <Alexander.Deucher@amd.com>; Zytaruk, Kelly <Kelly.Zytaruk@amd.com>; Yinghai Lu <yinghai@kernel.org>
Subject: Re: [PATCH] PCI: Make SR-IOV capable GPU working on the SR-IOV incapable platform

On Tue, 23 May 2017 03:41:21 +0000
"Cheng, Collins" <Collins.Cheng@amd.com> wrote:

> Hi Alex,
>
> I owe you a dmesg log. Attachment are two log files. 1.txt is without "pci=earlydump", 2.txt is with "pci=earlydump". The platform is an ASUS Z170-A motherboard that doesn't support SR-IOV. The graphics card is AMD FirePro S7150 card which enabled SR-IOV.
>
> You could find the error info like below in both logs. From the log, kernel failed to reallocate resource for BAR0 which is PF's Frame Buffer BAR (256MB needed), but kernel reallocated resource for BAR9 which is for VF. You are right, the real bug that is something goes wrong with the reallocation leaving the PF without resources.
>
> [ 0.992976] pci 0000:01:00.0: BAR 0: no space for [mem size 0x10000000 64bit pref]
> [ 0.992976] pci 0000:01:00.0: BAR 0: failed to assign [mem size 0x10000000 64bit pref]
> [ 0.992977] pci 0000:01:00.0: BAR 7: no space for [mem size 0x40000000 64bit pref]
> [ 0.992978] pci 0000:01:00.0: BAR 7: failed to assign [mem size 0x40000000 64bit pref]
> [ 0.992979] pci 0000:01:00.0: BAR 9: assigned [mem 0x88c00000-0x8abfffff 64bit pref]
> [ 0.992986] pci 0000:01:00.0: BAR 12: no space for [mem size 0x02000000]
> [ 0.992986] pci 0000:01:00.0: BAR 12: failed to assign [mem size 0x02000000]
> [ 0.992988] pci 0000:01:00.0: BAR 2: assigned [mem 0x8ac00000-0x8adfffff 64bit pref]
> [ 0.992994] pci 0000:01:00.0: BAR 5: no space for [mem size 0x00040000]
> [ 0.992995] pci 0000:01:00.0: BAR 5: failed to assign [mem size 0x00040000]
> [ 0.992996] pci 0000:01:00.0: BAR 6: no space for [mem size 0x00020000 pref]
> [ 0.992997] pci 0000:01:00.0: BAR 6: failed to assign [mem size 0x00020000 pref]

I've tried to extract more of the relevant resizing efforts below, perhaps Yinghai or others can make more out of it. In particular this system offers no 64-bit MMIO and we'll never manage to allocate the necessary SR-IOV resources without it. AIUI, the PCI core won't try to use anything outside the ACPI _CRS data without the option pci=nocrs.
This might present a second alternative in addition to the pci=realloc=off, which is actually suggested by the kernel below. So I think we have at least two potential workarounds in the code as it exists today, one leaving SR-IOV disabled, the other (hopefully) enabling it using 64bit MMIO not described by the system BIOS.
Certainly an improvement would still be detecting the impossible reallocation problem without nocrs and abandoning the process and of course to revert the process before leaving more BARs unprogrammed than we started with. Thanks,

Alex

[ 0.891319] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 0.891321] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.891322] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.891323] pci_bus 0000:00: root bus resource [mem 0x88800000-0xdfffffff window]
[ 0.891324] pci_bus 0000:00: root bus resource [mem 0xfd000000-0xfe7fffff window]
[ 0.891325] pci_bus 0000:00: root bus resource [bus 00-fe]
...
[ 0.896481] pci 0000:01:00.0: [1002:6929] type 00 class 0x030000
[ 0.896496] pci 0000:01:00.0: reg 0x10: [mem 0xc0000000-0xcfffffff 64bit pref]
[ 0.896506] pci 0000:01:00.0: reg 0x18: [mem 0xd0000000-0xd01fffff 64bit pref]
[ 0.896513] pci 0000:01:00.0: reg 0x20: [io 0xe000-0xe0ff]
[ 0.896519] pci 0000:01:00.0: reg 0x24: [mem 0xdfe00000-0xdfe3ffff]
[ 0.896526] pci 0000:01:00.0: reg 0x30: [mem 0xdfe40000-0xdfe5ffff pref]
[ 0.896590] pci 0000:01:00.0: supports D1 D2
[ 0.896590] pci 0000:01:00.0: PME# supported from D1 D2 D3hot D3cold
[ 0.896625] pci 0000:01:00.0: reg 0x354: [mem 0x00000000-0x07ffffff 64bit pref]
[ 0.896626] pci 0000:01:00.0: VF(n) BAR0 space: [mem 0x00000000-0x3fffffff 64bit pref] (contains BAR0 for 8 VFs)
[ 0.896634] pci 0000:01:00.0: reg 0x35c: [mem 0x00000000-0x003fffff 64bit pref]
[ 0.896635] pci 0000:01:00.0: VF(n) BAR2 space: [mem 0x00000000-0x01ffffff 64bit pref] (contains BAR2 for 8 VFs)
[ 0.896646] pci 0000:01:00.0: reg 0x368: [mem 0x00000000-0x003fffff]
[ 0.896647] pci 0000:01:00.0: VF(n) BAR5 space: [mem 0x00000000-0x01ffffff] (contains BAR5 for 8 VFs)
[ 0.896700] pci 0000:01:00.0: System wakeup disabled by ACPI
[ 0.906527] pci 0000:00:1b.0: PCI bridge to [bus 01]
[ 0.906544] pci 0000:00:1b.0: bridge window [io 0xe000-0xefff]
[ 0.906546] pci 0000:00:1b.0: bridge window [mem 0xdfe00000-0xdfefffff]
[ 0.906549] pci 0000:00:1b.0: bridge window [mem 0xc0000000-0xd01fffff 64bit pref]
[ 0.906550] pci 0000:00:1b.0: bridge has subordinate 01 but max busn 02
...
[ 0.943584] vgaarb: setting as boot device: PCI:0000:01:00.0
[ 0.943585] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
[ 0.943586] vgaarb: loaded
[ 0.943586] vgaarb: bridge control possible 0000:01:00.0
...
[ 0.997491] pci 0000:01:00.0: BAR 7: no space for [mem size 0x40000000 64bit pref]
[ 0.997491] pci 0000:01:00.0: BAR 7: failed to assign [mem size 0x40000000 64bit pref]
[ 0.997493] pci 0000:01:00.0: BAR 9: no space for [mem size 0x02000000 64bit pref]
[ 0.997493] pci 0000:01:00.0: BAR 9: failed to assign [mem size 0x02000000 64bit pref]
[ 0.997495] pci 0000:01:00.0: BAR 12: no space for [mem size 0x02000000]
[ 0.997495] pci 0000:01:00.0: BAR 12: failed to assign [mem size 0x02000000]
[ 0.997497] pci 0000:00:1b.0: PCI bridge to [bus 01]
[ 0.997498] pci 0000:00:1b.0: bridge window [io 0xe000-0xefff]
[ 0.997501] pci 0000:00:1b.0: bridge window [mem 0xdfe00000-0xdfefffff]
[ 0.997502] pci 0000:00:1b.0: bridge window [mem 0xc0000000-0xd01fffff 64bit pref]
...
[ 0.997540] pci_bus 0000:00: No. 2 try to assign unassigned res
[ 0.997540] release child resource [mem 0xdfe00000-0xdfe3ffff]
[ 0.997540] release child resource [mem 0xdfe40000-0xdfe5ffff pref]
[ 0.997541] pci 0000:00:1b.0: resource 14 [mem 0xdfe00000-0xdfefffff] released
[ 0.997542] pci 0000:00:1b.0: PCI bridge to [bus 01]
[ 0.997543] release child resource [mem 0xc0000000-0xcfffffff 64bit pref]
[ 0.997544] release child resource [mem 0xd0000000-0xd01fffff 64bit pref]
[ 0.997544] pci 0000:00:1b.0: resource 15 [mem 0xc0000000-0xd01fffff 64bit pref] released
[ 0.997545] pci 0000:00:1b.0: PCI bridge to [bus 01]
[ 0.997576] pci 0000:00:1b.0: BAR 15: no space for [mem size 0x58000000 64bit pref]
[ 0.997577] pci 0000:00:1b.0: BAR 15: failed to assign [mem size 0x58000000 64bit pref]
[ 0.997578] pci 0000:00:1b.0: BAR 14: assigned [mem 0x88c00000-0x8adfffff]
[ 0.997583] pci 0000:01:00.0: BAR 0: no space for [mem size 0x10000000 64bit pref]
[ 0.997583] pci 0000:01:00.0: BAR 0: failed to assign [mem size 0x10000000 64bit pref]
[ 0.997585] pci 0000:01:00.0: BAR 7: no space for [mem size 0x40000000 64bit pref]
[ 0.997585] pci 0000:01:00.0: BAR 7: failed to assign [mem size 0x40000000 64bit pref]
[ 0.997587] pci 0000:01:00.0: BAR 9: assigned [mem 0x88c00000-0x8abfffff 64bit pref]
[ 0.997593] pci 0000:01:00.0: BAR 12: no space for [mem size 0x02000000]
[ 0.997594] pci 0000:01:00.0: BAR 12: failed to assign [mem size 0x02000000]
[ 0.997595] pci 0000:01:00.0: BAR 2: assigned [mem 0x8ac00000-0x8adfffff 64bit pref]
[ 0.997602] pci 0000:01:00.0: BAR 5: no space for [mem size 0x00040000]
[ 0.997602] pci 0000:01:00.0: BAR 5: failed to assign [mem size 0x00040000]
[ 0.997603] pci 0000:01:00.0: BAR 6: no space for [mem size 0x00020000 pref]
[ 0.997604] pci 0000:01:00.0: BAR 6: failed to assign [mem size 0x00020000 pref]
[ 0.997606] pci 0000:00:1b.0: PCI bridge to [bus 01]
[ 0.997607] pci 0000:00:1b.0: bridge window [io 0xe000-0xefff]
[ 0.997609] pci 0000:00:1b.0: bridge window [mem 0x88c00000-0x8adfffff]
...
[ 0.997647] pci_bus 0000:00: No. 3 try to assign unassigned res
[ 0.997648] release child resource [mem 0x88c00000-0x8abfffff 64bit pref]
[ 0.997648] release child resource [mem 0x8ac00000-0x8adfffff 64bit pref]
[ 0.997649] pci 0000:00:1b.0: resource 14 [mem 0x88c00000-0x8adfffff] released
[ 0.997649] pci 0000:00:1b.0: PCI bridge to [bus 01]
[ 0.997651] release child resource [mem 0xdfd00000-0xdfd07fff 64bit]
[ 0.997651] pci 0000:00:1c.0: resource 14 [mem 0xdfd00000-0xdfdfffff] released
[ 0.997652] pci 0000:00:1c.0: PCI bridge to [bus 02]
[ 0.997654] pci 0000:00:1d.0: resource 15 [mem 0x88a00000-0x88bfffff 64bit pref] released
[ 0.997654] pci 0000:00:1d.0: PCI bridge to [bus 05]
[ 0.997664] pci 0000:00:1b.0: bridge window [mem 0x08000000-0x5fffffff 64bit pref] to [bus 01] add_size 48000000 add_align 8000000
[ 0.997666] pci 0000:00:1b.0: bridge window [mem 0x00100000-0x022fffff] to [bus 01] add_size 2200000 add_align 400000
[ 0.997687] pci 0000:00:1d.0: bridge window [mem 0x00100000-0x002fffff 64bit pref] to [bus 05] add_size 200000 add_align 100000
[ 0.997692] pci 0000:00:1b.0: res[15]=[mem 0x08000000-0x5fffffff 64bit pref] res_to_dev_res add_size 48000000 min_align 8000000
[ 0.997693] pci 0000:00:1b.0: res[15]=[mem 0x08000000-0xa7ffffff 64bit pref] res_to_dev_res add_size 48000000 min_align 8000000
[ 0.997693] pci 0000:00:1b.0: res[14]=[mem 0x00100000-0x022fffff] res_to_dev_res add_size 2200000 min_align 400000
[ 0.997694] pci 0000:00:1b.0: res[14]=[mem 0x00100000-0x044fffff] res_to_dev_res add_size 2200000 min_align 400000
[ 0.997695] pci 0000:00:1d.0: res[15]=[mem 0x00100000-0x002fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[ 0.997696] pci 0000:00:1d.0: res[15]=[mem 0x00100000-0x004fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[ 0.997698] pci 0000:00:1b.0: BAR 15: no space for [mem size 0xa0000000 64bit pref]
[ 0.997699] pci 0000:00:1b.0: BAR 15: failed to assign [mem size 0xa0000000 64bit pref]
[ 0.997700] pci 0000:00:1b.0: BAR 14: assigned [mem 0x88c00000-0x8cffffff]
[ 0.997701] pci 0000:00:1c.0: BAR 14: assigned [mem 0x88a00000-0x88afffff]
[ 0.997702] pci 0000:00:1d.0: BAR 15: assigned [mem 0x8d000000-0x8d3fffff 64bit pref]
[ 0.997705] pci 0000:00:1b.0: BAR 15: no space for [mem size 0x58000000 64bit pref]
[ 0.997706] pci 0000:00:1b.0: BAR 15: failed to assign [mem size 0x58000000 64bit pref]
[ 0.997707] pci 0000:00:1b.0: BAR 14: assigned [mem 0x88a00000-0x8abfffff]
[ 0.997708] pci 0000:00:1c.0: BAR 14: assigned [mem 0x8ac00000-0x8acfffff]
[ 0.997709] pci 0000:00:1d.0: BAR 15: assigned [mem 0x8ad00000-0x8aefffff 64bit pref]
[ 0.997711] pci 0000:00:1d.0: BAR 15: reassigned [mem 0x8ad00000-0x8b0fffff 64bit pref] (expanded by 0x200000)
[ 0.997713] pci 0000:00:1b.0: BAR 14: reassigned [mem 0x8b400000-0x8f7fffff] (expanded by 0x2200000)
[ 0.997719] pci 0000:01:00.0: res[7]=[mem size 0x00000000 64bit pref] res_to_dev_res add_size 40000000 min_align 0
[ 0.997720] pci 0000:01:00.0: res[9]=[mem 0x00000000-0xffffffffffffffff 64bit pref] res_to_dev_res add_size 2000000 min_align 0
[ 0.997721] pci 0000:01:00.0: res[12]=[mem size 0x00000000] res_to_dev_res add_size 2000000 min_align 0
[ 0.997722] pci 0000:01:00.0: BAR 0: no space for [mem size 0x10000000 64bit pref]
[ 0.997722] pci 0000:01:00.0: BAR 0: failed to assign [mem size 0x10000000 64bit pref]
[ 0.997723] pci 0000:01:00.0: BAR 7: no space for [mem size 0x40000000 64bit pref]
[ 0.997724] pci 0000:01:00.0: BAR 7: failed to assign [mem size 0x40000000 64bit pref]
[ 0.997725] pci 0000:01:00.0: BAR 9: assigned [mem 0x8b400000-0x8d3fffff 64bit pref]
[ 0.997731] pci 0000:01:00.0: BAR 12: assigned [mem 0x8d400000-0x8f3fffff]
[ 0.997734] pci 0000:01:00.0: BAR 2: assigned [mem 0x8f400000-0x8f5fffff 64bit pref]
[ 0.997740] pci 0000:01:00.0: BAR 5: assigned [mem 0x8f600000-0x8f63ffff]
[ 0.997744] pci 0000:01:00.0: BAR 0: no space for [mem size 0x10000000 64bit pref]
[ 0.997745] pci 0000:01:00.0: BAR 0: failed to assign [mem size 0x10000000 64bit pref]
[ 0.997746] pci 0000:01:00.0: BAR 2: assigned [mem 0x8b400000-0x8b5fffff 64bit pref]
[ 0.997753] pci 0000:01:00.0: BAR 5: assigned [mem 0x8b600000-0x8b63ffff]
[ 0.997756] pci 0000:01:00.0: BAR 12: assigned [mem 0x8b800000-0x8d7fffff]
[ 0.997758] pci 0000:01:00.0: BAR 9: assigned [mem 0x8d800000-0x8f7fffff 64bit pref]
[ 0.997765] pci 0000:01:00.0: BAR 7: no space for [mem size 0x40000000 64bit pref]
[ 0.997765] pci 0000:01:00.0: BAR 7: failed to assign [mem size 0x40000000 64bit pref]
[ 0.997767] pci 0000:00:1b.0: PCI bridge to [bus 01]
[ 0.997768] pci 0000:00:1b.0: bridge window [io 0xe000-0xefff]
[ 0.997770] pci 0000:00:1b.0: bridge window [mem 0x8b400000-0x8f7fffff]
...
[ 0.997818] pci_bus 0000:00: Automatically enabled pci realloc, if
you have problem, try booting with pci=realloc=off
[ 0.000000] Linux version 4.9.0-custom (root@rexzhu) (gcc version 4.8.2 (GCC) ) #2 SMP Fri Mar 31 12:52:40 CST 2017
[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.9.0-custom root=UUID=900c4a92-9f8e-44be-86bc-9673dd3b0d78 ro console=ttyS0,115200,8N1 console=tty0 no_console_suspend pci=realloc=off 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: Supporting XSAVE feature 0x008: 'MPX bounds registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
[ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
[ 0.000000] x86/fpu: xstate_offset[3]: 832, xstate_sizes[3]: 64
[ 0.000000] x86/fpu: xstate_offset[4]: 896, xstate_sizes[4]: 64
[ 0.000000] x86/fpu: Enabled xstate features 0x1f, context size is 960 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-0x000000000009c7ff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009c800-0x000000000009ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007d438fff] usable
[ 0.000000] BIOS-e820: [mem 0x000000007d439000-0x000000007d439fff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x000000007d43a000-0x000000007d483fff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000007d484000-0x000000007d4c4fff] usable
[ 0.000000] BIOS-e820: [mem 0x000000007d4c5000-0x000000007db49fff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000007db4a000-0x00000000858a7fff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000858a8000-0x0000000086db6fff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000086db7000-0x0000000086deffff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x0000000086df0000-0x000000008774bfff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x000000008774c000-0x0000000087ffefff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000087fff000-0x0000000087ffffff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000088000000-0x00000000880fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x00000004767fffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] SMBIOS 3.0 present.
[ 0.000000] DMI: System manufacturer System Product Name/Z170-A, BIOS 0901 08/31/2015
[ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000000] e820: last_pfn = 0x476800 max_arch_pfn = 0x400000000
[ 0.000000] MTRR default type: write-back
[ 0.000000] MTRR fixed ranges enabled:
[ 0.000000] 00000-9FFFF write-back
[ 0.000000] A0000-BFFFF uncachable
[ 0.000000] C0000-FFFFF write-protect
[ 0.000000] MTRR variable ranges enabled:
[ 0.000000] 0 base 00C0000000 mask 7FC0000000 uncachable
[ 0.000000] 1 base 00A0000000 mask 7FE0000000 uncachable
[ 0.000000] 2 base 0090000000 mask 7FF0000000 uncachable
[ 0.000000] 3 base 008C000000 mask 7FFC000000 uncachable
[ 0.000000] 4 base 008A000000 mask 7FFE000000 uncachable
[ 0.000000] 5 base 0089000000 mask 7FFF000000 uncachable
[ 0.000000] 6 base 0088800000 mask 7FFF800000 uncachable
[ 0.000000] 7 disabled
[ 0.000000] 8 disabled
[ 0.000000] 9 disabled
[ 0.000000] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WC UC- WT
[ 0.000000] e820: last_pfn = 0x88000 max_arch_pfn = 0x400000000
[ 0.000000] found SMP MP-table at [mem 0x000fcc50-0x000fcc5f] mapped at [ffff8800000fcc50]
[ 0.000000] Scanning 1 areas for low memory corruption
[ 0.000000] Base memory trampoline at [ffff880000096000] 96000 size 24576
[ 0.000000] Using GB pages for direct mapping
[ 0.000000] BRK [0x020c7000, 0x020c7fff] PGTABLE
[ 0.000000] BRK [0x020c8000, 0x020c8fff] PGTABLE
[ 0.000000] BRK [0x020c9000, 0x020c9fff] PGTABLE
[ 0.000000] BRK [0x020ca000, 0x020cafff] PGTABLE
[ 0.000000] BRK [0x020cb000, 0x020cbfff] PGTABLE
[ 0.000000] BRK [0x020cc000, 0x020ccfff] PGTABLE
[ 0.000000] RAMDISK: [mem 0x2f6de000-0x33b66fff]
[ 0.000000] ACPI: Early table checksum verification disabled
[ 0.000000] ACPI: RSDP 0x00000000000F0580 000024 (v02 ALASKA)
[ 0.000000] ACPI: XSDT 0x0000000086DC2098 0000AC (v01 ALASKA A M I 01072009 AMI 00010013)
[ 0.000000] ACPI: FACP 0x0000000086DE5038 00010C (v05 ALASKA A M I 01072009 AMI 00010013)
[ 0.000000] ACPI: DSDT 0x0000000086DC21E0 022E52 (v02 ALASKA A M I 01072009 INTL 20120913)
[ 0.000000] ACPI: FACS 0x000000008774BF80 000040
[ 0.000000] ACPI: APIC 0x0000000086DE5148 0000BC (v03 ALASKA A M I 01072009 AMI 00010013)
[ 0.000000] ACPI: FPDT 0x0000000086DE5208 000044 (v01 ALASKA A M I 01072009 AMI 00010013)
[ 0.000000] ACPI: FIDT 0x0000000086DE5250 00009C (v01 ALASKA A M I 01072009 AMI 00010013)
[ 0.000000] ACPI: MCFG 0x0000000086DE52F0 00003C (v01 ALASKA A M I 01072009 MSFT 00000097)
[ 0.000000] ACPI: HPET 0x0000000086DE5330 000038 (v01 ALASKA A M I 01072009 AMI. 0005000B)
[ 0.000000] ACPI: SSDT 0x0000000086DE5368 00036D (v01 SataRe SataTabl 00001000 INTL 20120913)
[ 0.000000] ACPI: LPIT 0x0000000086DE56D8 000094 (v01 INTEL SKL 00000000 MSFT 0000005F)
[ 0.000000] ACPI: SSDT 0x0000000086DE5770 000248 (v02 INTEL sensrhub 00000000 INTL 20120913)
[ 0.000000] ACPI: SSDT 0x0000000086DE59B8 002BAE (v02 INTEL PtidDevc 00001000 INTL 20120913)
[ 0.000000] ACPI: SSDT 0x0000000086DE8568 000C45 (v02 INTEL Ther_Rvp 00001000 INTL 20120913)
[ 0.000000] ACPI: DBGP 0x0000000086DE91B0 000034 (v01 INTEL 00000000 MSFT 0000005F)
[ 0.000000] ACPI: DBG2 0x0000000086DE91E8 000054 (v00 INTEL 00000000 MSFT 0000005F)
[ 0.000000] ACPI: SSDT 0x0000000086DE9240 0006FD (v02 INTEL xh_rvp08 00000000 INTL 20120913)
[ 0.000000] ACPI: SSDT 0x0000000086DE9940 005271 (v02 SaSsdt SaSsdt 00003000 INTL 20120913)
[ 0.000000] ACPI: UEFI 0x0000000086DEEBB8 000042 (v01 00000000 00000000)
[ 0.000000] ACPI: SSDT 0x0000000086DEEC00 000E58 (v02 CpuRef CpuSsdt 00003000 INTL 20120913)
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] No NUMA configuration found
[ 0.000000] Faking a node at [mem 0x0000000000000000-0x00000004767fffff]
[ 0.000000] NODE_DATA(0) allocated [mem 0x4767f8000-0x4767fbfff]
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.000000] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.000000] Normal [mem 0x0000000100000000-0x00000004767fffff]
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x0000000000001000-0x000000000009bfff]
[ 0.000000] node 0: [mem 0x0000000000100000-0x000000007d438fff]
[ 0.000000] node 0: [mem 0x000000007d484000-0x000000007d4c4fff]
[ 0.000000] node 0: [mem 0x000000007db4a000-0x00000000858a7fff]
[ 0.000000] node 0: [mem 0x0000000087fff000-0x0000000087ffffff]
[ 0.000000] node 0: [mem 0x0000000100000000-0x00000004767fffff]
[ 0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x00000004767fffff]
[ 0.000000] On node 0 totalpages: 4176244
[ 0.000000] DMA zone: 64 pages used for memmap
[ 0.000000] DMA zone: 21 pages reserved
[ 0.000000] DMA zone: 3995 pages, LIFO batch:0
[ 0.000000] DMA32 zone: 8456 pages used for memmap
[ 0.000000] DMA32 zone: 541145 pages, LIFO batch:31
[ 0.000000] Normal zone: 56736 pages used for memmap
[ 0.000000] Normal zone: 3631104 pages, LIFO batch:31
[ 0.000000] ACPI: PM-Timer IO Port: 0x1808
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[ 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 high 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: 0x8086a701 base: 0xfed00000
[ 0.000000] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
[ 0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.000000] PM: Registered nosave memory: [mem 0x0009c000-0x0009cfff]
[ 0.000000] PM: Registered nosave memory: [mem 0x0009d000-0x0009ffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x7d439000-0x7d439fff]
[ 0.000000] PM: Registered nosave memory: [mem 0x7d43a000-0x7d483fff]
[ 0.000000] PM: Registered nosave memory: [mem 0x7d4c5000-0x7db49fff]
[ 0.000000] PM: Registered nosave memory: [mem 0x858a8000-0x86db6fff]
[ 0.000000] PM: Registered nosave memory: [mem 0x86db7000-0x86deffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x86df0000-0x8774bfff]
[ 0.000000] PM: Registered nosave memory: [mem 0x8774c000-0x87ffefff]
[ 0.000000] PM: Registered nosave memory: [mem 0x88000000-0x880fffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x88100000-0xdfffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xe0000000-0xefffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xf0000000-0xfdffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfe000000-0xfe010fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfe011000-0xfebfffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfedfffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xfeffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
[ 0.000000] e820: [mem 0x88100000-0xdfffffff] 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:256 nr_cpumask_bits:256 nr_cpu_ids:8 nr_node_ids:1
[ 0.000000] percpu: Embedded 36 pages/cpu @ffff880476400000 s108056 r8192 d31208 u262144
[ 0.000000] pcpu-alloc: s108056 r8192 d31208 u262144 alloc=1*2097152
[ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
[ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 4110967
[ 0.000000] Policy zone: Normal
[ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.9.0-custom root=UUID=900c4a92-9f8e-44be-86bc-9673dd3b0d78 ro console=ttyS0,115200,8N1 console=tty0 no_console_suspend pci=realloc=off 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: 16288164K/16704976K available (8091K kernel code, 1445K rwdata, 3668K rodata, 2220K init, 1180K bss, 416812K reserved, 0K cma-reserved)
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, 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=256 to nr_cpu_ids=8.
[ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=8
[ 0.000000] NR_IRQS:16640 nr_irqs:2048 16
[ 0.000000] Offload RCU callbacks from all CPUs
[ 0.000000] Offload RCU callbacks from CPUs: 0-7.
[ 0.000000] spurious 8259A interrupt: IRQ7.
[ 0.000000] Console: colour dummy device 80x25
[ 0.000000] console [tty0] enabled
[ 0.000000] console [ttyS0] enabled
[ 0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635855245 ns
[ 0.000000] hpet clockevent registered
[ 0.000000] tsc: Detected 3400.000 MHz processor
[ 0.000014] Calibrating delay loop (skipped), value calculated using timer frequency.. 6816.00 BogoMIPS (lpj=13632000)
[ 0.000016] pid_max: default: 32768 minimum: 301
[ 0.000034] ACPI: Core revision 20160831
[ 0.049168] ACPI Error: [\_SB_.PCI0.XHC_.RHUB.HS11] Namespace lookup failure, AE_NOT_FOUND (20160831/dswload-210)
[ 0.059647] ACPI Exception: AE_NOT_FOUND, During name lookup/catalog (20160831/psobject-227)
[ 0.068424] ACPI Exception: AE_NOT_FOUND, (SSDT:xh_rvp08) while loading table (20160831/tbxfload-228)
[ 0.089854] ACPI Error: 1 table load failures, 7 successful (20160831/tbxfload-246)
[ 0.097795] Security Framework initialized
[ 0.097796] Yama: becoming mindful.
[ 0.097806] AppArmor: AppArmor initialized
[ 0.098382] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
[ 0.100353] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[ 0.101205] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes)
[ 0.101215] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes)
[ 0.101583] CPU: Physical Processor ID: 0
[ 0.101584] CPU: Processor Core ID: 0
[ 0.101586] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[ 0.101587] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[ 0.101590] mce: CPU supports 10 MCE banks
[ 0.101597] CPU0: Thermal monitoring enabled (TM1)
[ 0.101611] process: using mwait in idle threads
[ 0.101613] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
[ 0.101613] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[ 0.101866] Freeing SMP alternatives memory: 32K (ffffffff81f96000 - ffffffff81f9e000)
[ 0.131639] ftrace: allocating 32207 entries in 126 pages
[ 0.140625] smpboot: APIC(0) Converting physical 0 to logical package 0
[ 0.140626] smpboot: Max logical packages: 2
[ 0.141825] x2apic: IRQ remapping doesn't support X2APIC mode
[ 0.144957] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=0 pin2=0
[ 0.184645] TSC deadline timer enabled
[ 0.184650] smpboot: CPU0: Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz (family: 0x6, model: 0x5e, stepping: 0x3)
[ 0.184652] Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
[ 0.184672] ... version: 4
[ 0.184673] ... bit width: 48
[ 0.184673] ... generic registers: 4
[ 0.184673] ... value mask: 0000ffffffffffff
[ 0.184674] ... max period: 00007fffffffffff
[ 0.184674] ... fixed-purpose events: 3
[ 0.184674] ... event mask: 000000070000000f
[ 0.185381] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[ 0.185490] x86: Booting SMP configuration:
[ 0.185490] .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7
[ 0.746801] x86: Booted up 1 node, 8 CPUs
[ 0.746803] smpboot: Total of 8 processors activated (54535.41 BogoMIPS)
[ 0.753703] devtmpfs: initialized
[ 0.753816] x86/mm: Memory block size: 128MB
[ 0.758362] evm: security.selinux
[ 0.758362] evm: security.SMACK64
[ 0.758362] evm: security.ima
[ 0.758363] evm: security.capability
[ 0.758415] PM: Registering ACPI NVS region [mem 0x7d439000-0x7d439fff] (4096 bytes)
[ 0.758416] PM: Registering ACPI NVS region [mem 0x86df0000-0x8774bfff] (9814016 bytes)
[ 0.759206] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[ 0.759250] pinctrl core: initialized pinctrl subsystem
[ 0.759485] RTC time: 8:19:19, date: 05/24/17
[ 0.759595] NET: Registered protocol family 16
[ 0.777397] cpuidle: using governor ladder
[ 0.785193] cpuidle: using governor menu
[ 0.785282] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[ 0.785283] ACPI: bus type PCI registered
[ 0.785283] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.785404] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[ 0.785405] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[ 0.785415] PCI: Using configuration type 1 for base access
[ 0.809537] HugeTLB registered 1 GB page size, pre-allocated 0 pages
[ 0.809537] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[ 0.809839] ACPI: Added _OSI(Module Device)
[ 0.809839] ACPI: Added _OSI(Processor Device)
[ 0.809840] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.809840] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.812137] ACPI: Executed 21 blocks of module-level executable AML code
[ 0.831541] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[ 0.835143] ACPI: Dynamic OEM Table Load:
[ 0.835147] ACPI: SSDT 0xFFFF8804625B8800 0006E4 (v02 PmRef Cpu0Ist 00003000 INTL 20120913)
[ 0.835659] ACPI: \_PR_.CPU0: _OSC native thermal LVT Acked
[ 0.838349] ACPI: Dynamic OEM Table Load:
[ 0.838353] ACPI: SSDT 0xFFFF880464BD0800 00037F (v02 PmRef Cpu0Cst 00003001 INTL 20120913)
[ 0.839508] ACPI: Dynamic OEM Table Load:
[ 0.839511] ACPI: SSDT 0xFFFF880464042800 0005AA (v02 PmRef ApIst 00003000 INTL 20120913)
[ 0.840488] ACPI: Dynamic OEM Table Load:
[ 0.840491] ACPI: SSDT 0xFFFF880464037600 000119 (v02 PmRef ApCst 00003000 INTL 20120913)
[ 0.848932] ACPI: Interpreter enabled
[ 0.848958] ACPI: (supports S0 S3 S4 S5)
[ 0.848958] ACPI: Using IOAPIC for interrupt routing
[ 0.849002] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.852279] ACPI: Power Resource [PG00] (on)
[ 0.853037] ACPI: Power Resource [PG01] (on)
[ 0.853751] ACPI: Power Resource [PG02] (on)
[ 0.858006] ACPI: Power Resource [WRST] (off)
[ 0.858733] ACPI: Power Resource [WRST] (off)
[ 0.859463] ACPI: Power Resource [WRST] (off)
[ 0.860184] ACPI: Power Resource [WRST] (off)
[ 0.860906] ACPI: Power Resource [WRST] (off)
[ 0.861641] ACPI: Power Resource [WRST] (off)
[ 0.862363] ACPI: Power Resource [WRST] (off)
[ 0.863104] ACPI: Power Resource [WRST] (off)
[ 0.863824] ACPI: Power Resource [WRST] (off)
[ 0.864547] ACPI: Power Resource [WRST] (off)
[ 0.865268] ACPI: Power Resource [WRST] (off)
[ 0.865997] ACPI: Power Resource [WRST] (off)
[ 0.866724] ACPI: Power Resource [WRST] (off)
[ 0.867459] ACPI: Power Resource [WRST] (off)
[ 0.868180] ACPI: Power Resource [WRST] (off)
[ 0.868897] ACPI: Power Resource [WRST] (off)
[ 0.869617] ACPI: Power Resource [WRST] (off)
[ 0.870340] ACPI: Power Resource [WRST] (off)
[ 0.871059] ACPI: Power Resource [WRST] (off)
[ 0.871778] ACPI: Power Resource [WRST] (off)
[ 0.886352] ACPI: Power Resource [FN00] (off)
[ 0.886513] ACPI: Power Resource [FN01] (off)
[ 0.886673] ACPI: Power Resource [FN02] (off)
[ 0.886831] ACPI: Power Resource [FN03] (off)
[ 0.886989] ACPI: Power Resource [FN04] (off)
[ 0.888940] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
[ 0.888944] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[ 0.889022] acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
[ 0.890390] PCI host bridge to bus 0000:00
[ 0.890391] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 0.890393] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.890394] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.890395] pci_bus 0000:00: root bus resource [mem 0x88800000-0xdfffffff window]
[ 0.890396] pci_bus 0000:00: root bus resource [mem 0xfd000000-0xfe7fffff window]
[ 0.890397] pci_bus 0000:00: root bus resource [bus 00-fe]
[ 0.890403] pci 0000:00:00.0: [8086:191f] type 00 class 0x060000
[ 0.890947] pci 0000:00:14.0: [8086:a12f] type 00 class 0x0c0330
[ 0.890962] pci 0000:00:14.0: reg 0x10: [mem 0xdff30000-0xdff3ffff 64bit]
[ 0.891019] pci 0000:00:14.0: PME# supported from D3hot D3cold
[ 0.891239] pci 0000:00:14.0: System wakeup disabled by ACPI
[ 0.891324] pci 0000:00:16.0: [8086:a13a] type 00 class 0x078000
[ 0.891336] pci 0000:00:16.0: reg 0x10: [mem 0xdff4d000-0xdff4dfff 64bit]
[ 0.891382] pci 0000:00:16.0: PME# supported from D3hot
[ 0.891647] pci 0000:00:17.0: [8086:a102] type 00 class 0x010601
[ 0.891657] pci 0000:00:17.0: reg 0x10: [mem 0xdff48000-0xdff49fff]
[ 0.891663] pci 0000:00:17.0: reg 0x14: [mem 0xdff4c000-0xdff4c0ff]
[ 0.891668] pci 0000:00:17.0: reg 0x18: [io 0xf050-0xf057]
[ 0.891674] pci 0000:00:17.0: reg 0x1c: [io 0xf040-0xf043]
[ 0.891679] pci 0000:00:17.0: reg 0x20: [io 0xf020-0xf03f]
[ 0.891684] pci 0000:00:17.0: reg 0x24: [mem 0xdff4b000-0xdff4b7ff]
[ 0.891717] pci 0000:00:17.0: PME# supported from D3hot
[ 0.891979] pci 0000:00:1b.0: [8086:a167] type 01 class 0x060400
[ 0.892028] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 0.892297] pci 0000:00:1b.0: System wakeup disabled by ACPI
[ 0.892381] pci 0000:00:1c.0: [8086:a110] type 01 class 0x060400
[ 0.892431] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.892700] pci 0000:00:1c.0: System wakeup disabled by ACPI
[ 0.892764] pci 0000:00:1c.2: [8086:a112] type 01 class 0x060400
[ 0.892813] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[ 0.893083] pci 0000:00:1c.2: System wakeup disabled by ACPI
[ 0.893161] pci 0000:00:1d.0: [8086:a118] type 01 class 0x060400
[ 0.893212] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[ 0.893477] pci 0000:00:1d.0: System wakeup disabled by ACPI
[ 0.893570] pci 0000:00:1f.0: [8086:a145] type 00 class 0x060100
[ 0.893903] pci 0000:00:1f.2: [8086:a121] type 00 class 0x058000
[ 0.893912] pci 0000:00:1f.2: reg 0x10: [mem 0xdff44000-0xdff47fff]
[ 0.894197] pci 0000:00:1f.3: [8086:a170] type 00 class 0x040300
[ 0.894217] pci 0000:00:1f.3: reg 0x10: [mem 0xdff40000-0xdff43fff 64bit]
[ 0.894244] pci 0000:00:1f.3: reg 0x20: [mem 0xdff20000-0xdff2ffff 64bit]
[ 0.894288] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[ 0.894561] pci 0000:00:1f.3: System wakeup disabled by ACPI
[ 0.894628] pci 0000:00:1f.4: [8086:a123] type 00 class 0x0c0500
[ 0.894674] pci 0000:00:1f.4: reg 0x10: [mem 0xdff4a000-0xdff4a0ff 64bit]
[ 0.894743] pci 0000:00:1f.4: reg 0x20: [io 0xf000-0xf01f]
[ 0.895059] pci 0000:00:1f.6: [8086:15b8] type 00 class 0x020000
[ 0.895078] pci 0000:00:1f.6: reg 0x10: [mem 0xdff00000-0xdff1ffff]
[ 0.895178] pci 0000:00:1f.6: PME# supported from D0 D3hot D3cold
[ 0.895385] pci 0000:00:1f.6: System wakeup disabled by ACPI
[ 0.895553] pci 0000:01:00.0: [1002:6929] type 00 class 0x030000
[ 0.895568] pci 0000:01:00.0: reg 0x10: [mem 0xc0000000-0xcfffffff 64bit pref]
[ 0.895578] pci 0000:01:00.0: reg 0x18: [mem 0xd0000000-0xd01fffff 64bit pref]
[ 0.895584] pci 0000:01:00.0: reg 0x20: [io 0xe000-0xe0ff]
[ 0.895591] pci 0000:01:00.0: reg 0x24: [mem 0xdfe00000-0xdfe3ffff]
[ 0.895597] pci 0000:01:00.0: reg 0x30: [mem 0xdfe40000-0xdfe5ffff pref]
[ 0.895662] pci 0000:01:00.0: supports D1 D2
[ 0.895662] pci 0000:01:00.0: PME# supported from D1 D2 D3hot D3cold
[ 0.895697] pci 0000:01:00.0: reg 0x354: [mem 0x00000000-0x07ffffff 64bit pref]
[ 0.895698] pci 0000:01:00.0: VF(n) BAR0 space: [mem 0x00000000-0x3fffffff 64bit pref] (contains BAR0 for 8 VFs)
[ 0.895707] pci 0000:01:00.0: reg 0x35c: [mem 0x00000000-0x003fffff 64bit pref]
[ 0.895707] pci 0000:01:00.0: VF(n) BAR2 space: [mem 0x00000000-0x01ffffff 64bit pref] (contains BAR2 for 8 VFs)
[ 0.895718] pci 0000:01:00.0: reg 0x368: [mem 0x00000000-0x003fffff]
[ 0.895719] pci 0000:01:00.0: VF(n) BAR5 space: [mem 0x00000000-0x01ffffff] (contains BAR5 for 8 VFs)
[ 0.895772] pci 0000:01:00.0: System wakeup disabled by ACPI
[ 0.905564] pci 0000:00:1b.0: PCI bridge to [bus 01]
[ 0.905569] pci 0000:00:1b.0: bridge window [io 0xe000-0xefff]
[ 0.905574] pci 0000:00:1b.0: bridge window [mem 0xdfe00000-0xdfefffff]
[ 0.905582] pci 0000:00:1b.0: bridge window [mem 0xc0000000-0xd01fffff 64bit pref]
[ 0.905585] pci 0000:00:1b.0: bridge has subordinate 01 but max busn 02
[ 0.905722] pci 0000:02:00.0: [1b21:1242] type 00 class 0x0c0330
[ 0.905741] pci 0000:02:00.0: reg 0x10: [mem 0xdfd00000-0xdfd07fff 64bit]
[ 0.905847] pci 0000:02:00.0: PME# supported from D3hot D3cold
[ 0.905901] pci 0000:02:00.0: System wakeup disabled by ACPI
[ 0.917558] pci 0000:00:1c.0: PCI bridge to [bus 02]
[ 0.917561] pci 0000:00:1c.0: bridge window [mem 0xdfd00000-0xdfdfffff]
[ 0.917693] pci 0000:03:00.0: [1b21:1080] type 01 class 0x060400
[ 0.917809] pci 0000:03:00.0: supports D1 D2
[ 0.917810] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.917854] pci 0000:03:00.0: System wakeup disabled by ACPI
[ 0.929581] pci 0000:00:1c.2: PCI bridge to [bus 03-04]
[ 0.929732] pci 0000:03:00.0: PCI bridge to [bus 04]
[ 0.929879] acpiphp: Slot [1] registered
[ 0.929882] pci 0000:00:1d.0: PCI bridge to [bus 05]
[ 0.932715] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 *11 12 14 15)
[ 0.932829] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 10 11 12 14 15) *0
[ 0.932941] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 11 12 14 *15)
[ 0.933051] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 11 12 14 15) *0
[ 0.933161] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 15) *0
[ 0.933271] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0
[ 0.933381] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 11 12 14 15) *0
[ 0.933491] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 *10 11 12 14 15)
[ 0.934345] ACPI: Enabled 6 GPEs in block 00 to 7F
[ 0.934627] vgaarb: setting as boot device: PCI:0000:01:00.0
[ 0.934628] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
[ 0.934629] vgaarb: loaded
[ 0.934629] vgaarb: bridge control possible 0000:01:00.0
[ 0.934900] SCSI subsystem initialized
[ 0.934953] libata version 3.00 loaded.
[ 0.934984] ACPI: bus type USB registered
[ 0.935011] usbcore: registered new interface driver usbfs
[ 0.935026] usbcore: registered new interface driver hub
[ 0.935048] usbcore: registered new device driver usb
[ 0.935177] PCI: Using ACPI for IRQ routing
[ 0.962999] PCI: pci_cache_line_size set to 64 bytes
[ 0.963036] e820: reserve RAM buffer [mem 0x0009c800-0x0009ffff]
[ 0.963038] e820: reserve RAM buffer [mem 0x7d439000-0x7fffffff]
[ 0.963039] e820: reserve RAM buffer [mem 0x7d4c5000-0x7fffffff]
[ 0.963040] e820: reserve RAM buffer [mem 0x858a8000-0x87ffffff]
[ 0.963041] e820: reserve RAM buffer [mem 0x476800000-0x477ffffff]
[ 0.963197] NetLabel: Initializing
[ 0.963197] NetLabel: domain hash size = 128
[ 0.963198] NetLabel: protocols = UNLABELED CIPSOv4
[ 0.963216] NetLabel: unlabeled traffic allowed by default
[ 0.963343] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[ 0.963346] hpet0: 8 comparators, 64-bit 24.000000 MHz counter
[ 0.965386] clocksource: Switched to clocksource hpet
[ 0.975388] VFS: Disk quotas dquot_6.6.0
[ 0.975425] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.975556] AppArmor: AppArmor Filesystem Enabled
[ 0.975611] pnp: PnP ACPI init
[ 0.975896] system 00:00: [io 0x0290-0x029f] has been reserved
[ 0.975898] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.976370] pnp 00:01: [dma 0 disabled]
[ 0.976436] pnp 00:01: Plug and Play ACPI device, IDs PNP0501 (active)
[ 0.976677] system 00:02: [io 0x0680-0x069f] has been reserved
[ 0.976679] system 00:02: [io 0xffff] has been reserved
[ 0.976680] system 00:02: [io 0xffff] has been reserved
[ 0.976681] system 00:02: [io 0xffff] has been reserved
[ 0.976683] system 00:02: [io 0x1800-0x18fe] has been reserved
[ 0.976684] system 00:02: [io 0x164e-0x164f] has been reserved
[ 0.976685] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.976795] system 00:03: [io 0x0800-0x087f] has been reserved
[ 0.976796] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.976838] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
[ 0.976907] system 00:05: [io 0x1854-0x1857] has been reserved
[ 0.976908] system 00:05: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[ 0.977298] system 00:06: [mem 0xfed10000-0xfed17fff] has been reserved
[ 0.977300] system 00:06: [mem 0xfed18000-0xfed18fff] has been reserved
[ 0.977301] system 00:06: [mem 0xfed19000-0xfed19fff] has been reserved
[ 0.977303] system 00:06: [mem 0xe0000000-0xefffffff] has been reserved
[ 0.977304] system 00:06: [mem 0xfed20000-0xfed3ffff] has been reserved
[ 0.977306] system 00:06: [mem 0xfed90000-0xfed93fff] has been reserved
[ 0.977307] system 00:06: [mem 0xfed45000-0xfed8ffff] has been reserved
[ 0.977309] system 00:06: [mem 0xff000000-0xffffffff] has been reserved
[ 0.977311] system 00:06: [mem 0xfee00000-0xfeefffff] could not be reserved
[ 0.977313] system 00:06: [mem 0xdffc0000-0xdffdffff] has been reserved
[ 0.977314] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.977407] system 00:07: [mem 0xfd000000-0xfdabffff] has been reserved
[ 0.977408] system 00:07: [mem 0xfdad0000-0xfdadffff] has been reserved
[ 0.977410] system 00:07: [mem 0xfdb00000-0xfdffffff] has been reserved
[ 0.977412] system 00:07: [mem 0xfe000000-0xfe01ffff] could not be reserved
[ 0.977413] system 00:07: [mem 0xfe036000-0xfe03bfff] has been reserved
[ 0.977415] system 00:07: [mem 0xfe03d000-0xfe3fffff] has been reserved
[ 0.977416] system 00:07: [mem 0xfe410000-0xfe7fffff] has been reserved
[ 0.977417] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.979157] system 00:08: [mem 0xfdaf0000-0xfdafffff] has been reserved
[ 0.979159] system 00:08: [mem 0xfdae0000-0xfdaeffff] has been reserved
[ 0.979161] system 00:08: [mem 0xfdac0000-0xfdacffff] has been reserved
[ 0.979162] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.980528] pnp: PnP ACPI: found 9 devices
[ 0.988514] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.988542] pci 0000:00:1d.0: bridge window [io 0x1000-0x0fff] to [bus 05] add_size 1000
[ 0.988543] pci 0000:00:1d.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 05] add_size 200000 add_align 100000
[ 0.988544] pci 0000:00:1d.0: bridge window [mem 0x00100000-0x000fffff] to [bus 05] add_size 200000 add_align 100000
[ 0.988548] pci 0000:00:1d.0: res[14]=[mem 0x00100000-0x000fffff] res_to_dev_res add_size 200000 min_align 100000
[ 0.988549] pci 0000:00:1d.0: res[14]=[mem 0x00100000-0x002fffff] res_to_dev_res add_size 200000 min_align 100000
[ 0.988550] pci 0000:00:1d.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[ 0.988551] pci 0000:00:1d.0: res[15]=[mem 0x00100000-0x002fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[ 0.988551] pci 0000:00:1d.0: res[13]=[io 0x1000-0x0fff] res_to_dev_res add_size 1000 min_align 1000
[ 0.988552] pci 0000:00:1d.0: res[13]=[io 0x1000-0x1fff] res_to_dev_res add_size 1000 min_align 1000
[ 0.988554] pci 0000:00:1d.0: BAR 14: assigned [mem 0x88800000-0x889fffff]
[ 0.988557] pci 0000:00:1d.0: BAR 15: assigned [mem 0x88a00000-0x88bfffff 64bit pref]
[ 0.988558] pci 0000:00:1d.0: BAR 13: assigned [io 0x2000-0x2fff]
[ 0.988564] pci 0000:01:00.0: BAR 7: no space for [mem size 0x40000000 64bit pref]
[ 0.988564] pci 0000:01:00.0: BAR 7: failed to assign [mem size 0x40000000 64bit pref]
[ 0.988566] pci 0000:01:00.0: BAR 9: no space for [mem size 0x02000000 64bit pref]
[ 0.988567] pci 0000:01:00.0: BAR 9: failed to assign [mem size 0x02000000 64bit pref]
[ 0.988568] pci 0000:01:00.0: BAR 12: no space for [mem size 0x02000000]
[ 0.988569] pci 0000:01:00.0: BAR 12: failed to assign [mem size 0x02000000]
[ 0.988570] pci 0000:00:1b.0: PCI bridge to [bus 01]
[ 0.988572] pci 0000:00:1b.0: bridge window [io 0xe000-0xefff]
[ 0.988574] pci 0000:00:1b.0: bridge window [mem 0xdfe00000-0xdfefffff]
[ 0.988576] pci 0000:00:1b.0: bridge window [mem 0xc0000000-0xd01fffff 64bit pref]
[ 0.988579] pci 0000:00:1c.0: PCI bridge to [bus 02]
[ 0.988581] pci 0000:00:1c.0: bridge window [mem 0xdfd00000-0xdfdfffff]
[ 0.988585] pci 0000:03:00.0: PCI bridge to [bus 04]
[ 0.988598] pci 0000:00:1c.2: PCI bridge to [bus 03-04]
[ 0.988604] pci 0000:00:1d.0: PCI bridge to [bus 05]
[ 0.988605] pci 0000:00:1d.0: bridge window [io 0x2000-0x2fff]
[ 0.988608] pci 0000:00:1d.0: bridge window [mem 0x88800000-0x889fffff]
[ 0.988609] pci 0000:00:1d.0: bridge window [mem 0x88a00000-0x88bfffff 64bit pref]
[ 0.988614] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[ 0.988615] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
[ 0.988615] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[ 0.988616] pci_bus 0000:00: resource 7 [mem 0x88800000-0xdfffffff window]
[ 0.988616] pci_bus 0000:00: resource 8 [mem 0xfd000000-0xfe7fffff window]
[ 0.988617] pci_bus 0000:01: resource 0 [io 0xe000-0xefff]
[ 0.988618] pci_bus 0000:01: resource 1 [mem 0xdfe00000-0xdfefffff]
[ 0.988618] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xd01fffff 64bit pref]
[ 0.988619] pci_bus 0000:02: resource 1 [mem 0xdfd00000-0xdfdfffff]
[ 0.988620] pci_bus 0000:05: resource 0 [io 0x2000-0x2fff]
[ 0.988620] pci_bus 0000:05: resource 1 [mem 0x88800000-0x889fffff]
[ 0.988621] pci_bus 0000:05: resource 2 [mem 0x88a00000-0x88bfffff 64bit pref]
[ 0.988812] NET: Registered protocol family 2
[ 0.989011] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[ 0.989130] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[ 0.989207] TCP: Hash tables configured (established 131072 bind 65536)
[ 0.989229] UDP hash table entries: 8192 (order: 6, 262144 bytes)
[ 0.989258] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes)
[ 0.989349] NET: Registered protocol family 1
[ 0.990037] pci 0000:01:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[ 0.990715] PCI: CLS 0 bytes, default 64
[ 0.990759] Trying to unpack rootfs image as initramfs...
[ 1.718028] Freeing initrd memory: 70180K (ffff88002f6de000 - ffff880033b67000)
[ 1.718030] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 1.718032] software IO TLB [mem 0x818a8000-0x858a8000] (64MB) mapped at [ffff8800818a8000-ffff8800858a7fff]
[ 1.718247] RAPL PMU: API unit is 2^-32 Joules, 5 fixed counters, 655360 ms ovfl timer
[ 1.718247] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[ 1.718248] RAPL PMU: hw unit of domain package 2^-14 Joules
[ 1.718248] RAPL PMU: hw unit of domain dram 2^-14 Joules
[ 1.718248] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
[ 1.718249] RAPL PMU: hw unit of domain psys 2^-14 Joules
[ 1.718830] Scanning for low memory corruption every 60 seconds
[ 1.719405] futex hash table entries: 2048 (order: 5, 131072 bytes)
[ 1.719433] audit: initializing netlink subsys (disabled)
[ 1.719449] audit: type=2000 audit(1495613959.684:1): initialized
[ 1.720201] Initialise system trusted keyrings
[ 1.720332] workingset: timestamp_bits=40 max_order=22 bucket_order=0
[ 1.724845] fuse init (API version 7.26)
[ 1.726239] Key type asymmetric registered
[ 1.726239] Asymmetric key parser 'x509' registered
[ 1.726302] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 250)
[ 1.726356] io scheduler noop registered
[ 1.726356] io scheduler deadline registered (default)
[ 1.726364] io scheduler cfq registered
[ 1.726855] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[ 1.726862] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[ 1.726903] efifb: probing for efifb
[ 1.726905] efifb: framebuffer at 0xa0000, using 64k, total 64k
[ 1.726906] efifb: mode is 640x480x1, linelength=80, pages=1
[ 1.726906] efifb: scrolling: redraw
[ 1.726907] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[ 1.727650] Console: switching to colour frame buffer device 80x30
[ 1.728271] fb0: EFI VGA frame buffer device
[ 1.728279] intel_idle: MWAIT substates: 0x142120
[ 1.728280] intel_idle: v0.4.1 model 0x5E
[ 1.728997] intel_idle: lapic_timer_reliable_states 0xffffffff
[ 1.729007] ipmi message handler version 39.2
[ 1.729113] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0
[ 1.729115] ACPI: Sleep Button [SLPB]
[ 1.729175] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[ 1.729177] ACPI: Power Button [PWRB]
[ 1.729238] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[ 1.729240] ACPI: Power Button [PWRF]
[ 1.731017] thermal LNXTHERM:00: registered as thermal_zone0
[ 1.731017] ACPI: Thermal Zone [TZ00] (28 C)
[ 1.731359] thermal LNXTHERM:01: registered as thermal_zone1
[ 1.731360] ACPI: Thermal Zone [TZ01] (30 C)
[ 1.731392] GHES: HEST is not enabled!
[ 1.731528] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 1.752068] 00:01: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[ 1.755190] Linux agpgart interface v0.103
[ 1.761140] brd: module loaded
[ 1.764940] loop: module loaded
[ 1.765379] libphy: Fixed MDIO Bus: probed
[ 1.765795] tun: Universal TUN/TAP device driver, 1.6
[ 1.765795] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[ 1.765974] PPP generic driver version 2.4.2
[ 1.766055] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 1.766058] ehci-pci: EHCI PCI platform driver
[ 1.766071] ehci-platform: EHCI generic platform driver
[ 1.766081] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 1.766082] ohci-pci: OHCI PCI platform driver
[ 1.766095] ohci-platform: OHCI generic platform driver
[ 1.766103] uhci_hcd: USB Universal Host Controller Interface driver
[ 1.766291] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 1.766297] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[ 1.767379] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x00109810
[ 1.767382] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[ 1.767494] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[ 1.767494] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.767495] usb usb1: Product: xHCI Host Controller
[ 1.767496] usb usb1: Manufacturer: Linux 4.9.0-custom xhci-hcd
[ 1.767496] usb usb1: SerialNumber: 0000:00:14.0
[ 1.767690] hub 1-0:1.0: USB hub found
[ 1.767707] hub 1-0:1.0: 16 ports detected
[ 1.782526] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 1.782530] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[ 1.782572] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
[ 1.782573] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.782574] usb usb2: Product: xHCI Host Controller
[ 1.782574] usb usb2: Manufacturer: Linux 4.9.0-custom xhci-hcd
[ 1.782575] usb usb2: SerialNumber: 0000:00:14.0
[ 1.782783] hub 2-0:1.0: USB hub found
[ 1.782796] hub 2-0:1.0: 10 ports detected
[ 1.792243] xhci_hcd 0000:02:00.0: xHCI Host Controller
[ 1.792248] xhci_hcd 0000:02:00.0: new USB bus registered, assigned bus number 3
[ 1.851013] xhci_hcd 0000:02:00.0: hcc params 0x0200eec1 hci version 0x110 quirks 0x00000010
[ 1.851354] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
[ 1.851355] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.851355] usb usb3: Product: xHCI Host Controller
[ 1.851356] usb usb3: Manufacturer: Linux 4.9.0-custom xhci-hcd
[ 1.851357] usb usb3: SerialNumber: 0000:02:00.0
[ 1.851565] hub 3-0:1.0: USB hub found
[ 1.851573] hub 3-0:1.0: 2 ports detected
[ 1.851699] xhci_hcd 0000:02:00.0: xHCI Host Controller
[ 1.851703] xhci_hcd 0000:02:00.0: new USB bus registered, assigned bus number 4
[ 1.851730] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[ 1.851756] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003
[ 1.851757] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.851757] usb usb4: Product: xHCI Host Controller
[ 1.851758] usb usb4: Manufacturer: Linux 4.9.0-custom xhci-hcd
[ 1.851758] usb usb4: SerialNumber: 0000:02:00.0
[ 1.851966] hub 4-0:1.0: USB hub found
[ 1.851974] hub 4-0:1.0: 2 ports detected
[ 1.852143] i8042: PNP: No PS/2 controller found. Probing ports directly.
[ 1.855497] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 1.855500] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 1.855785] mousedev: PS/2 mouse device common for all mice
[ 1.856191] rtc_cmos 00:04: RTC can wake from S4
[ 1.856638] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
[ 1.856718] rtc_cmos 00:04: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[ 1.856791] device-mapper: uevent: version 1.0.3
[ 1.856943] device-mapper: ioctl: 4.35.0-ioctl (2016-06-23) initialised: dm-devel@redhat.com
[ 1.856945] intel_pstate: Intel P-state driver initializing
[ 1.857758] intel_pstate: HWP enabled
[ 1.858161] ledtrig-cpu: registered to indicate activity on CPUs
[ 1.858452] NET: Registered protocol family 10
[ 1.858947] NET: Registered protocol family 17
[ 1.858954] Key type dns_resolver registered
[ 1.859438] microcode: sig=0x506e3, pf=0x2, revision=0x33
[ 1.859844] microcode: Microcode Update Driver: v2.01 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[ 1.860185] registered taskstats version 1
[ 1.860186] Loading compiled-in X.509 certificates
[ 1.862555] Loaded X.509 cert 'Build time autogenerated kernel key: 425e568c95731e69b073bb62214af700479a67a7'
[ 1.862699] kmemleak: Kernel memory leak detector initialized
[ 1.862708] kmemleak: Automatic memory scanning thread started
[ 1.864477] Key type trusted registered
[ 1.868227] Key type encrypted registered
[ 1.868229] AppArmor: AppArmor sha1 policy hashing enabled
[ 1.868231] ima: No TPM chip found, activating TPM-bypass!
[ 1.868248] evm: HMAC attrs: 0x1
[ 1.869640] Magic number: 1:914:321
[ 1.869674] tty tty46: hash matches
[ 1.869877] rtc_cmos 00:04: setting system clock to 2017-05-24 08:19:20 UTC (1495613960)
[ 1.870098] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[ 1.870099] EDD information not available.
[ 1.870231] PM: Hibernation image not present or could not be loaded.
[ 1.871058] Freeing unused kernel memory: 2220K (ffffffff81d6b000 - ffffffff81f96000)
[ 1.871059] Write protecting the kernel read-only data: 12288k
[ 1.871237] Freeing unused kernel memory: 84K (ffff8800017eb000 - ffff880001800000)
[ 1.871845] Freeing unused kernel memory: 428K (ffff880001b95000 - ffff880001c00000)
[ 1.880495] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[ 1.880558] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[ 1.880565] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[ 1.880885] random: udevadm: uninitialized urandom read (16 bytes read)
[ 1.880919] random: udevadm: uninitialized urandom read (16 bytes read)
[ 1.881965] random: udevadm: uninitialized urandom read (16 bytes read)
[ 1.882004] random: udevadm: uninitialized urandom read (16 bytes read)
[ 1.882510] random: udevadm: uninitialized urandom read (16 bytes read)
[ 1.882548] random: udevadm: uninitialized urandom read (16 bytes read)
[ 1.882584] random: udevadm: uninitialized urandom read (16 bytes read)
[ 1.915314] hid: module verification failed: signature and/or required key missing - tainting kernel
[ 1.915699] hidraw: raw HID events driver (C) Jiri Kosina
[ 1.919698] wmi: Mapper loaded
[ 1.934870] ahci 0000:00:17.0: version 3.0
[ 1.936657] pps_core: LinuxPPS API ver. 1 registered
[ 1.936657] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 1.937027] PTP clock support registered
[ 1.937893] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
[ 1.937893] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[ 1.945531] ahci 0000:00:17.0: AHCI 0001.0301 32 slots 6 ports 6 Gbps 0x3f impl SATA mode
[ 1.945532] ahci 0000:00:17.0: flags: 64bit ncq sntf led clo only pio slum part ems deso sadm sds apst
[ 2.007163] scsi host0: ahci
[ 2.007580] scsi host1: ahci
[ 2.007992] scsi host2: ahci
[ 2.008366] scsi host3: ahci
[ 2.008610] scsi host4: ahci
[ 2.008900] scsi host5: ahci
[ 2.008999] ata1: SATA max UDMA/133 abar m2048@0xdff4b000 port 0xdff4b100 irq 129
[ 2.009003] ata2: SATA max UDMA/133 abar m2048@0xdff4b000 port 0xdff4b180 irq 129
[ 2.009007] ata3: SATA max UDMA/133 abar m2048@0xdff4b000 port 0xdff4b200 irq 129
[ 2.009012] ata4: SATA max UDMA/133 abar m2048@0xdff4b000 port 0xdff4b280 irq 129
[ 2.009016] ata5: SATA max UDMA/133 abar m2048@0xdff4b000 port 0xdff4b300 irq 129
[ 2.009021] ata6: SATA max UDMA/133 abar m2048@0xdff4b000 port 0xdff4b380 irq 129
[ 2.009531] e1000e 0000:00:1f.6: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[ 2.109549] usb 1-10: new full-speed USB device number 2 using xhci_hcd
[ 2.252600] usb 1-10: New USB device found, idVendor=046d, idProduct=c534
[ 2.252601] usb 1-10: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 2.252601] usb 1-10: Product: USB Receiver
[ 2.252602] usb 1-10: Manufacturer: Logitech
[ 2.257549] usbcore: registered new interface driver usbhid
[ 2.257550] usbhid: USB HID core driver
[ 2.258442] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:14.0/usb1/1-10/1-10:1.0/0003:046D:C534.0001/input/input6
[ 2.289284] e1000e 0000:00:1f.6 0000:00:1f.6 (uninitialized): registered PHC clock
[ 2.318000] hid-generic 0003:046D:C534.0001: input,hidraw0: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:00:14.0-10/input0
[ 2.318199] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:14.0/usb1/1-10/1-10:1.1/0003:046D:C534.0002/input/input7
[ 2.325110] CPU: 1 PID: 214 Comm: scsi_eh_2 Tainted: G E 4.9.0-custom #2
[ 2.325113] Hardware name: System manufacturer System Product Name/Z170-A, BIOS 0901 08/31/2015
[ 2.325115] ffffc90001f23ae8 ffffffff813c2d3f ffff8804520a1e80 ffff8804520a22b0
[ 2.325122] ffffc90001f23b10 ffffffff815a7226 ffffc90001f23b10 0000000000000286
[ 2.325127] ffffc90000029200 ffffc90001f23b30 ffffffffa0055634 ffff8804520a1e80
[ 2.325132] Call Trace:
[ 2.325143] [<ffffffff813c2d3f>] dump_stack+0x63/0x84
[ 2.325161] [<ffffffff815a7226>] ata_std_postreset+0x16/0xe0
[ 2.325163] [<ffffffffa0055634>] ahci_postreset+0x34/0x60 [libahci]
[ 2.325165] [<ffffffff815b1964>] ata_eh_reset+0x484/0xda0
[ 2.325166] [<ffffffffa0056e90>] ? ahci_do_softreset+0x220/0x220 [libahci]
[ 2.325167] [<ffffffffa0055600>] ? ahci_pmp_attach+0x70/0x70 [libahci]
[ 2.325168] [<ffffffffa0057350>] ? ahci_sw_activity_blink+0xd0/0xd0 [libahci]
[ 2.325169] [<ffffffffa0057350>] ? ahci_sw_activity_blink+0xd0/0xd0 [libahci]
[ 2.325170] [<ffffffffa0057350>] ? ahci_sw_activity_blink+0xd0/0xd0 [libahci]
[ 2.325171] [<ffffffffa0055600>] ? ahci_pmp_attach+0x70/0x70 [libahci]
[ 2.325172] [<ffffffff815b2652>] ata_eh_recover+0x282/0x12d0
[ 2.325173] [<ffffffffa0055600>] ? ahci_pmp_attach+0x70/0x70 [libahci]
[ 2.325174] [<ffffffffa0057350>] ? ahci_sw_activity_blink+0xd0/0xd0 [libahci]
[ 2.325175] [<ffffffffa0056e90>] ? ahci_do_softreset+0x220/0x220 [libahci]
[ 2.325176] [<ffffffff815a7380>] ? ata_phys_link_offline+0x30/0x30
[ 2.325177] [<ffffffff815b9921>] sata_pmp_error_handler+0xe1/0xaa0
[ 2.325179] [<ffffffff81096090>] ? try_to_grab_pending+0xb0/0x150
[ 2.325180] [<ffffffff810ea2ed>] ? lock_timer_base+0x7d/0xa0
[ 2.325181] [<ffffffffa0055de8>] ahci_error_handler+0x28/0x70 [libahci]
[ 2.325183] [<ffffffff815b3c7c>] ata_scsi_port_error_handler+0x50c/0x8d0
[ 2.325183] [<ffffffff815b40d8>] ata_scsi_error+0x98/0xc0
[ 2.325185] [<ffffffff81582930>] ? scsi_eh_get_sense+0x240/0x240
[ 2.325186] [<ffffffff81582a07>] scsi_error_handler+0xd7/0x8b0
[ 2.325187] [<ffffffff81582930>] ? scsi_eh_get_sense+0x240/0x240
[ 2.325188] [<ffffffff81582930>] ? scsi_eh_get_sense+0x240/0x240
[ 2.325189] [<ffffffff8109b423>] kthread+0xd3/0xf0
[ 2.325189] [<ffffffff8109b350>] ? kthread_park+0x60/0x60
[ 2.325191] [<ffffffff817e1ee5>] ret_from_fork+0x25/0x30
[ 2.325194] ata3: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 2.325549] CPU: 2 PID: 218 Comm: scsi_eh_4 Tainted: G E 4.9.0-custom #2
[ 2.325550] Hardware name: System manufacturer System Product Name/Z170-A, BIOS 0901 08/31/2015
[ 2.325550] ffffc90001f43ae8 ffffffff813c2d3f ffff8804520a9e80 ffff8804520aa2b0
[ 2.325552] ffffc90001f43b10 ffffffff815a7226 ffffc90001f43b10 0000000000000286
[ 2.325553] ffffc90000029300 ffffc90001f43b30 ffffffffa0055634 ffff8804520a9e80
[ 2.325554] Call Trace:
[ 2.325556] [<ffffffff813c2d3f>] dump_stack+0x63/0x84
[ 2.325558] [<ffffffff815a7226>] ata_std_postreset+0x16/0xe0
[ 2.325559] [<ffffffffa0055634>] ahci_postreset+0x34/0x60 [libahci]
[ 2.325561] [<ffffffff815b1964>] ata_eh_reset+0x484/0xda0
[ 2.325562] [<ffffffffa0056e90>] ? ahci_do_softreset+0x220/0x220 [libahci]
[ 2.325563] [<ffffffffa0055600>] ? ahci_pmp_attach+0x70/0x70 [libahci]
[ 2.325565] [<ffffffffa0057350>] ? ahci_sw_activity_blink+0xd0/0xd0 [libahci]
[ 2.325566] [<ffffffffa0057350>] ? ahci_sw_activity_blink+0xd0/0xd0 [libahci]
[ 2.325568] [<ffffffffa0057350>] ? ahci_sw_activity_blink+0xd0/0xd0 [libahci]
[ 2.325569] [<ffffffffa0055600>] ? ahci_pmp_attach+0x70/0x70 [libahci]
[ 2.325570] [<ffffffff815b2652>] ata_eh_recover+0x282/0x12d0
[ 2.325571] [<ffffffffa0055600>] ? ahci_pmp_attach+0x70/0x70 [libahci]
[ 2.325572] [<ffffffffa0057350>] ? ahci_sw_activity_blink+0xd0/0xd0 [libahci]
[ 2.325574] [<ffffffffa0056e90>] ? ahci_do_softreset+0x220/0x220 [libahci]
[ 2.325574] [<ffffffff815a7380>] ? ata_phys_link_offline+0x30/0x30
[ 2.325576] [<ffffffff815b9921>] sata_pmp_error_handler+0xe1/0xaa0
[ 2.325577] [<ffffffff81096090>] ? try_to_grab_pending+0xb0/0x150
[ 2.325578] [<ffffffff810ea2ed>] ? lock_timer_base+0x7d/0xa0
[ 2.325580] [<ffffffffa0055de8>] ahci_error_handler+0x28/0x70 [libahci]
[ 2.325581] [<ffffffff815b3c7c>] ata_scsi_port_error_handler+0x50c/0x8d0
[ 2.325582] [<ffffffff815b40d8>] ata_scsi_error+0x98/0xc0
[ 2.325583] [<ffffffff81582930>] ? scsi_eh_get_sense+0x240/0x240
[ 2.325584] [<ffffffff81582a07>] scsi_error_handler+0xd7/0x8b0
[ 2.325585] [<ffffffff81582930>] ? scsi_eh_get_sense+0x240/0x240
[ 2.325586] [<ffffffff81582930>] ? scsi_eh_get_sense+0x240/0x240
[ 2.325587] [<ffffffff8109b423>] kthread+0xd3/0xf0
[ 2.325588] [<ffffffff8109b350>] ? kthread_park+0x60/0x60
[ 2.325589] [<ffffffff817e1ee5>] ret_from_fork+0x25/0x30
[ 2.325593] ata5: SATA link down (SStatus 4 SControl 300)
[ 2.325613] CPU: 6 PID: 220 Comm: scsi_eh_5 Tainted: G E 4.9.0-custom #2
[ 2.325613] Hardware name: System manufacturer System Product Name/Z170-A, BIOS 0901 08/31/2015
[ 2.325614] ffffc90001f53ae8 ffffffff813c2d3f ffff8804520ade80 ffff8804520ae2b0
[ 2.325615] ffffc90001f53b10 ffffffff815a7226 ffffc90001f53b10 0000000000000286
[ 2.325616] ffffc90000029380 ffffc90001f53b30 ffffffffa0055634 ffff8804520ade80
[ 2.325617] Call Trace:
[ 2.325618] [<ffffffff813c2d3f>] dump_stack+0x63/0x84
[ 2.325619] [<ffffffff815a7226>] ata_std_postreset+0x16/0xe0
[ 2.325620] [<ffffffffa0055634>] ahci_postreset+0x34/0x60 [libahci]
[ 2.325621] [<ffffffff815b1964>] ata_eh_reset+0x484/0xda0
[ 2.325622] [<ffffffffa0056e90>] ? ahci_do_softreset+0x220/0x220 [libahci]
[ 2.325623] [<ffffffffa0055600>] ? ahci_pmp_attach+0x70/0x70 [libahci]
[ 2.325624] [<ffffffffa0057350>] ? ahci_sw_activity_blink+0xd0/0xd0 [libahci]
[ 2.325625] [<ffffffffa0057350>] ? ahci_sw_activity_blink+0xd0/0xd0 [libahci]
[ 2.325626] [<ffffffffa0057350>] ? ahci_sw_activity_blink+0xd0/0xd0 [libahci]
[ 2.325627] [<ffffffffa0055600>] ? ahci_pmp_attach+0x70/0x70 [libahci]
[ 2.325628] [<ffffffff815b2652>] ata_eh_recover+0x282/0x12d0
[ 2.325629] [<ffffffffa0055600>] ? ahci_pmp_attach+0x70/0x70 [libahci]
[ 2.325630] [<ffffffffa0057350>] ? ahci_sw_activity_blink+0xd0/0xd0 [libahci]
[ 2.325631] [<ffffffffa0056e90>] ? ahci_do_softreset+0x220/0x220 [libahci]
[ 2.325632] [<ffffffff815a7380>] ? ata_phys_link_offline+0x30/0x30
[ 2.325633] [<ffffffff815b9921>] sata_pmp_error_handler+0xe1/0xaa0
[ 2.325634] [<ffffffff81096090>] ? try_to_grab_pending+0xb0/0x150
[ 2.325635] [<ffffffff810ea2ed>] ? lock_timer_base+0x7d/0xa0
[ 2.325636] [<ffffffffa0055de8>] ahci_error_handler+0x28/0x70 [libahci]
[ 2.325637] [<ffffffff815b3c7c>] ata_scsi_port_error_handler+0x50c/0x8d0
[ 2.325638] [<ffffffff815b40d8>] ata_scsi_error+0x98/0xc0
[ 2.325639] [<ffffffff81582930>] ? scsi_eh_get_sense+0x240/0x240
[ 2.325640] [<ffffffff81582a07>] scsi_error_handler+0xd7/0x8b0
[ 2.325641] [<ffffffff81582930>] ? scsi_eh_get_sense+0x240/0x240
[ 2.325642] [<ffffffff81582930>] ? scsi_eh_get_sense+0x240/0x240
[ 2.325643] [<ffffffff8109b423>] kthread+0xd3/0xf0
[ 2.325643] [<ffffffff8109b350>] ? kthread_park+0x60/0x60
[ 2.325644] [<ffffffff817e1ee5>] ret_from_fork+0x25/0x30
[ 2.325647] ata6: SATA link down (SStatus 4 SControl 300)
[ 2.325740] CPU: 7 PID: 212 Comm: scsi_eh_1 Tainted: G E 4.9.0-custom #2
[ 2.325740] Hardware name: System manufacturer System Product Name/Z170-A, BIOS 0901 08/31/2015
[ 2.325741] ffffc90001f03ae8 ffffffff813c2d3f ffff88045209de80 ffff88045209e2b0
[ 2.325754] ffffc90001f03b10 ffffffff815a7226 ffffc90001f03b10 0000000000000286
[ 2.325756] ffffc90000029180 ffffc90001f03b30 ffffffffa0055634 ffff88045209de80
[ 2.325757] Call Trace:
[ 2.325759] [<ffffffff813c2d3f>] dump_stack+0x63/0x84
[ 2.325760] [<ffffffff815a7226>] ata_std_postreset+0x16/0xe0
[ 2.325762] [<ffffffffa0055634>] ahci_postreset+0x34/0x60 [libahci]
[ 2.325763] [<ffffffff815b1964>] ata_eh_reset+0x484/0xda0
[ 2.325764] [<ffffffffa0056e90>] ? ahci_do_softreset+0x220/0x220 [libahci]
[ 2.325765] [<ffffffffa0055600>] ? ahci_pmp_attach+0x70/0x70 [libahci]
[ 2.325766] [<ffffffffa0057350>] ? ahci_sw_activity_blink+0xd0/0xd0 [libahci]
[ 2.325767] [<ffffffffa0057350>] ? ahci_sw_activity_blink+0xd0/0xd0 [libahci]
[ 2.325768] [<ffffffffa0057350>] ? ahci_sw_activity_blink+0xd0/0xd0 [libahci]
[ 2.325769] [<ffffffffa0055600>] ? ahci_pmp_attach+0x70/0x70 [libahci]
[ 2.325770] [<ffffffff815b2652>] ata_eh_recover+0x282/0x12d0
[ 2.325771] [<ffffffffa0055600>] ? ahci_pmp_attach+0x70/0x70 [libahci]
[ 2.325772] [<ffffffffa0057350>] ? ahci_sw_activity_blink+0xd0/0xd0 [libahci]
[ 2.325773] [<ffffffffa0056e90>] ? ahci_do_softreset+0x220/0x220 [libahci]
[ 2.325774] [<ffffffff815a7380>] ? ata_phys_link_offline+0x30/0x30
[ 2.325775] [<ffffffff815b9921>] sata_pmp_error_handler+0xe1/0xaa0
[ 2.325777] [<ffffffff810c6fd1>] ? mutex_optimistic_spin+0x111/0x1a0
[ 2.325778] [<ffffffff810ea2ed>] ? lock_timer_base+0x7d/0xa0
[ 2.325779] [<ffffffffa0055de8>] ahci_error_handler+0x28/0x70 [libahci]
[ 2.325780] [<ffffffff815b3c7c>] ata_scsi_port_error_handler+0x50c/0x8d0
[ 2.325781] [<ffffffff815b40d8>] ata_scsi_error+0x98/0xc0
[ 2.325782] [<ffffffff81582930>] ? scsi_eh_get_sense+0x240/0x240
[ 2.325783] [<ffffffff81582a07>] scsi_error_handler+0xd7/0x8b0
[ 2.325784] [<ffffffff81582930>] ? scsi_eh_get_sense+0x240/0x240
[ 2.325785] [<ffffffff81582930>] ? scsi_eh_get_sense+0x240/0x240
[ 2.325786] [<ffffffff8109b423>] kthread+0xd3/0xf0
[ 2.325787] [<ffffffff8109b350>] ? kthread_park+0x60/0x60
[ 2.325788] [<ffffffff817e1ee5>] ret_from_fork+0x25/0x30
[ 2.325792] ata2: SATA link down (SStatus 4 SControl 300)
[ 2.325812] CPU: 4 PID: 210 Comm: scsi_eh_0 Tainted: G E 4.9.0-custom #2
[ 2.325813] Hardware name: System manufacturer System Product Name/Z170-A, BIOS 0901 08/31/2015
[ 2.325813] ffffc90001ef3ae8 ffffffff813c2d3f ffff88045399de80 ffff88045399e2b0
[ 2.325815] ffffc90001ef3b10 ffffffff815a7226 ffffc90001ef3b10 0000000000000286
[ 2.325816] ffffc90000029100 ffffc90001ef3b30 ffffffffa0055634 ffff88045399de80
[ 2.325817] Call Trace:
[ 2.325820] [<ffffffff813c2d3f>] dump_stack+0x63/0x84
[ 2.325821] [<ffffffff815a7226>] ata_std_postreset+0x16/0xe0
[ 2.325822] [<ffffffffa0055634>] ahci_postreset+0x34/0x60 [libahci]
[ 2.325824] [<ffffffff815b1964>] ata_eh_reset+0x484/0xda0
[ 2.325837] [<ffffffffa0056e90>] ? ahci_do_softreset+0x220/0x220 [libahci]
[ 2.325839] [<ffffffffa0055600>] ? ahci_pmp_attach+0x70/0x70 [libahci]
[ 2.325840] [<ffffffffa0057350>] ? ahci_sw_activity_blink+0xd0/0xd0 [libahci]
[ 2.325841] [<ffffffffa0057350>] ? ahci_sw_activity_blink+0xd0/0xd0 [libahci]
[ 2.325842] [<ffffffffa0057350>] ? ahci_sw_activity_blink+0xd0/0xd0 [libahci]
[ 2.325843] [<ffffffffa0055600>] ? ahci_pmp_attach+0x70/0x70 [libahci]
[ 2.325844] [<ffffffff815b2652>] ata_eh_recover+0x282/0x12d0
[ 2.325845] [<ffffffffa0055600>] ? ahci_pmp_attach+0x70/0x70 [libahci]
[ 2.325847] [<ffffffffa0057350>] ? ahci_sw_activity_blink+0xd0/0xd0 [libahci]
[ 2.325848] [<ffffffffa0056e90>] ? ahci_do_softreset+0x220/0x220 [libahci]
[ 2.325848] [<ffffffff815a7380>] ? ata_phys_link_offline+0x30/0x30
[ 2.325850] [<ffffffff815b9921>] sata_pmp_error_handler+0xe1/0xaa0
[ 2.325863] [<ffffffff81096090>] ? try_to_grab_pending+0xb0/0x150
[ 2.325865] [<ffffffff810ea2ed>] ? lock_timer_base+0x7d/0xa0
[ 2.325866] [<ffffffffa0055de8>] ahci_error_handler+0x28/0x70 [libahci]
[ 2.325867] [<ffffffff815b3c7c>] ata_scsi_port_error_handler+0x50c/0x8d0
[ 2.325868] [<ffffffff815b40d8>] ata_scsi_error+0x98/0xc0
[ 2.325869] [<ffffffff81582930>] ? scsi_eh_get_sense+0x240/0x240
[ 2.325870] [<ffffffff81582a07>] scsi_error_handler+0xd7/0x8b0
[ 2.325871] [<ffffffff81582930>] ? scsi_eh_get_sense+0x240/0x240
[ 2.325873] [<ffffffff81582930>] ? scsi_eh_get_sense+0x240/0x240
[ 2.325873] [<ffffffff8109b423>] kthread+0xd3/0xf0
[ 2.325874] [<ffffffff8109b350>] ? kthread_park+0x60/0x60
[ 2.325876] [<ffffffff817e1ee5>] ret_from_fork+0x25/0x30
[ 2.325879] ata1: SATA link down (SStatus 4 SControl 300)
[ 2.325899] CPU: 0 PID: 216 Comm: scsi_eh_3 Tainted: G E 4.9.0-custom #2
[ 2.325899] Hardware name: System manufacturer System Product Name/Z170-A, BIOS 0901 08/31/2015
[ 2.325900] ffffc90001f33ae8 ffffffff813c2d3f ffff8804520a5e80 ffff8804520a62b0
[ 2.325901] ffffc90001f33b10 ffffffff815a7226 ffffc90001f33b10 0000000000000286
[ 2.325902] ffffc90000029280 ffffc90001f33b30 ffffffffa0055634 ffff8804520a5e80
[ 2.325903] Call Trace:
[ 2.325904] [<ffffffff813c2d3f>] dump_stack+0x63/0x84
[ 2.325905] [<ffffffff815a7226>] ata_std_postreset+0x16/0xe0
[ 2.325906] [<ffffffffa0055634>] ahci_postreset+0x34/0x60 [libahci]
[ 2.325907] [<ffffffff815b1964>] ata_eh_reset+0x484/0xda0
[ 2.325908] [<ffffffffa0056e90>] ? ahci_do_softreset+0x220/0x220 [libahci]
[ 2.325909] [<ffffffffa0055600>] ? ahci_pmp_attach+0x70/0x70 [libahci]
[ 2.325910] [<ffffffffa0057350>] ? ahci_sw_activity_blink+0xd0/0xd0 [libahci]
[ 2.325911] [<ffffffffa0057350>] ? ahci_sw_activity_blink+0xd0/0xd0 [libahci]
[ 2.325912] [<ffffffffa0057350>] ? ahci_sw_activity_blink+0xd0/0xd0 [libahci]
[ 2.325913] [<ffffffffa0055600>] ? ahci_pmp_attach+0x70/0x70 [libahci]
[ 2.325914] [<ffffffff815b2652>] ata_eh_recover+0x282/0x12d0
[ 2.325915] [<ffffffffa0055600>] ? ahci_pmp_attach+0x70/0x70 [libahci]
[ 2.325916] [<ffffffffa0057350>] ? ahci_sw_activity_blink+0xd0/0xd0 [libahci]
[ 2.325917] [<ffffffffa0056e90>] ? ahci_do_softreset+0x220/0x220 [libahci]
[ 2.325917] [<ffffffff815a7380>] ? ata_phys_link_offline+0x30/0x30
[ 2.325918] [<ffffffff815b9921>] sata_pmp_error_handler+0xe1/0xaa0
[ 2.325919] [<ffffffff81096090>] ? try_to_grab_pending+0xb0/0x150
[ 2.325921] [<ffffffff810ea2ed>] ? lock_timer_base+0x7d/0xa0
[ 2.325922] [<ffffffffa0055de8>] ahci_error_handler+0x28/0x70 [libahci]
[ 2.325923] [<ffffffff815b3c7c>] ata_scsi_port_error_handler+0x50c/0x8d0
[ 2.325924] [<ffffffff815b40d8>] ata_scsi_error+0x98/0xc0
[ 2.325925] [<ffffffff81582930>] ? scsi_eh_get_sense+0x240/0x240
[ 2.325926] [<ffffffff81582a07>] scsi_error_handler+0xd7/0x8b0
[ 2.325926] [<ffffffff81582930>] ? scsi_eh_get_sense+0x240/0x240
[ 2.325927] [<ffffffff81582930>] ? scsi_eh_get_sense+0x240/0x240
[ 2.325928] [<ffffffff8109b423>] kthread+0xd3/0xf0
[ 2.325929] [<ffffffff8109b350>] ? kthread_park+0x60/0x60
[ 2.325930] [<ffffffff817e1ee5>] ret_from_fork+0x25/0x30
[ 2.325933] ata4: SATA link down (SStatus 4 SControl 300)
[ 2.326373] ata3.00: ATA-8: ST3500413AS, JC45, max UDMA/133
[ 2.326374] ata3.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32)
[ 2.327911] ata3.00: configured for UDMA/133
[ 2.328381] scsi 2:0:0:0: Direct-Access ATA ST3500413AS JC45 PQ: 0 ANSI: 5
[ 2.377744] e1000e 0000:00:1f.6 eth0: (PCI Express:2.5GT/s:Width x1) 30:5a:3a:e0:7f:4d
[ 2.377745] e1000e 0000:00:1f.6 eth0: Intel(R) PRO/1000 Network Connection
[ 2.377818] e1000e 0000:00:1f.6 eth0: MAC: 12, PHY: 12, PBA No: FFFFFF-0FF
[ 2.377883] hid-generic 0003:046D:C534.0002: input,hiddev0,hidraw1: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:00:14.0-10/input1
[ 2.378786] e1000e 0000:00:1f.6 enp0s31f6: renamed from eth0
[ 2.385815] sd 2:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/466 GiB)
[ 2.385886] sd 2:0:0:0: Attached scsi generic sg0 type 0
[ 2.386123] sd 2:0:0:0: [sda] Write Protect is off
[ 2.386125] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 2.386270] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 2.418509] sda: sda1 sda2 < sda5 >
[ 2.420063] sd 2:0:0:0: [sda] Attached SCSI disk
[ 2.749441] tsc: Refined TSC clocksource calibration: 3407.999 MHz
[ 2.749456] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x311fd336761, max_idle_ns: 440795243819 ns
[ 2.764787] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[ 2.817394] random: fast init done
[ 3.657801] 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)
[ 3.657924] systemd[1]: Detected architecture x86-64.
[ 3.665736] systemd[1]: Set hostname to <jenkins-MS-7984>.
[ 3.773854] clocksource: Switched to clocksource tsc
[ 4.330579] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[ 4.330628] systemd[1]: Listening on Journal Socket.
[ 4.330655] systemd[1]: Listening on udev Control Socket.
[ 4.330698] systemd[1]: Listening on Journal Audit Socket.
[ 4.330717] systemd[1]: Listening on Journal Socket (/dev/log).
[ 4.330742] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[ 4.330831] systemd[1]: Created slice System Slice.
[ 4.978280] random: crng init done
[ 5.119195] lp: driver loaded but no devices found
[ 5.126984] ppdev: user-space parallel port driver
[ 5.194790] RPC: Registered named UNIX socket transport module.
[ 5.194790] RPC: Registered udp transport module.
[ 5.194791] RPC: Registered tcp transport module.
[ 5.194791] RPC: Registered tcp NFSv4.1 backchannel transport module.
[ 5.428972] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
[ 5.788951] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
[ 6.085037] systemd-journald[286]: Received request to flush runtime journal from PID 1
[ 6.340341] mei_me 0000:00:16.0: enabling device (0000 -> 0002)
[ 6.407237] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 6.598269] AVX2 version of gcm_enc/dec engaged.
[ 6.598269] AES CTR mode by8 optimization enabled
[ 7.262871] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC892: line_outs=3 (0x14/0x15/0x16/0x0/0x0) type:line
[ 7.262873] snd_hda_codec_realtek hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 7.262874] snd_hda_codec_realtek hdaudioC0D0: hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
[ 7.262874] snd_hda_codec_realtek hdaudioC0D0: mono: mono_out=0x0
[ 7.262875] snd_hda_codec_realtek hdaudioC0D0: dig-out=0x11/0x1e
[ 7.262875] snd_hda_codec_realtek hdaudioC0D0: inputs:
[ 7.262876] snd_hda_codec_realtek hdaudioC0D0: Front Mic=0x19
[ 7.262877] snd_hda_codec_realtek hdaudioC0D0: Rear Mic=0x18
[ 7.262877] snd_hda_codec_realtek hdaudioC0D0: Line=0x1a
[ 7.274944] input: HDA Intel PCH Front Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input8
[ 7.275046] input: HDA Intel PCH Rear Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input9
[ 7.275160] input: HDA Intel PCH Line as /devices/pci0000:00/0000:00:1f.3/sound/card0/input10
[ 7.275266] input: HDA Intel PCH Line Out Front as /devices/pci0000:00/0000:00:1f.3/sound/card0/input11
[ 7.275397] input: HDA Intel PCH Line Out Surround as /devices/pci0000:00/0000:00:1f.3/sound/card0/input12
[ 7.275499] input: HDA Intel PCH Line Out CLFE as /devices/pci0000:00/0000:00:1f.3/sound/card0/input13
[ 7.275602] input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input14
[ 8.008061] intel_rapl: Found RAPL domain package
[ 8.008063] intel_rapl: Found RAPL domain core
[ 8.008065] intel_rapl: Found RAPL domain dram
[ 8.662199] asus_wmi: ASUS WMI generic driver loaded
[ 8.666571] asus_wmi: Initialization: 0x0
[ 8.666640] asus_wmi: BIOS WMI version: 0.9
[ 8.666771] asus_wmi: SFUN value: 0x0
[ 8.667845] input: Eee PC WMI hotkeys as /devices/platform/eeepc-wmi/input/input15
[ 8.668069] asus_wmi: Number of fans: 1
[ 8.863966] audit: type=1400 audit(1495613967.488:2): apparmor="STATUS" operation="profile_load" name="/usr/sbin/ippusbxd" pid=761 comm="apparmor_parser"
[ 8.866778] audit: type=1400 audit(1495613967.492:3): apparmor="STATUS" operation="profile_load" name="/usr/lib/snapd/snap-confine" pid=758 comm="apparmor_parser"
[ 8.866783] audit: type=1400 audit(1495613967.492:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=758 comm="apparmor_parser"
[ 8.992068] audit: type=1400 audit(1495613967.620:5): apparmor="STATUS" operation="profile_load" name="/usr/lib/lightdm/lightdm-guest-session" pid=753 comm="apparmor_parser"
[ 8.992073] audit: type=1400 audit(1495613967.620:6): apparmor="STATUS" operation="profile_load" name="/usr/lib/lightdm/lightdm-guest-session//chromium" pid=753 comm="apparmor_parser"
[ 9.001482] audit: type=1400 audit(1495613967.628:7): apparmor="STATUS" operation="profile_load" name="/usr/sbin/cups-browsed" pid=759 comm="apparmor_parser"
[ 9.002052] audit: type=1400 audit(1495613967.628:8): apparmor="STATUS" operation="profile_load" name="/usr/lib/cups/backend/cups-pdf" pid=760 comm="apparmor_parser"
[ 9.002070] audit: type=1400 audit(1495613967.628:9): apparmor="STATUS" operation="profile_load" name="/usr/sbin/cupsd" pid=760 comm="apparmor_parser"
[ 9.002074] audit: type=1400 audit(1495613967.628:10): apparmor="STATUS" operation="profile_load" name="/usr/sbin/cupsd//third_party" pid=760 comm="apparmor_parser"
[ 9.018830] audit: type=1400 audit(1495613967.644:11): apparmor="STATUS" operation="profile_load" name="/usr/sbin/tcpdump" pid=768 comm="apparmor_parser"
[ 9.546141] Adding 8348668k swap on /dev/sda5. Priority:-1 extents:1 across:8348668k FS
[ 13.779112] NFSD: Using /var/lib/nfs/v4recovery as the NFSv4 state recovery directory
[ 13.788162] NFSD: starting 90-second grace period (net ffffffff81d06400)
[ 14.722383] IPv6: ADDRCONF(NETDEV_UP): enp0s31f6: link is not ready
[ 14.937673] IPv6: ADDRCONF(NETDEV_UP): enp0s31f6: link is not ready
[ 17.921145] e1000e: enp0s31f6 NIC Link is Up 100 Mbps Full Duplex, Flow Control: Rx/Tx
[ 17.921147] e1000e 0000:00:1f.6 enp0s31f6: 10/100 speed: disabling TSO
[ 17.921193] IPv6: ADDRCONF(NETDEV_CHANGE): enp0s31f6: link becomes ready

===============================================================================================
01:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] Tonga XT GL [FirePro S7150] (prog-if 00 [VGA controller])
Subsystem: Advanced Micro Devices, Inc. [AMD/ATI] Tonga XT GL [FirePro S7150]
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
Latency: 0
Interrupt: pin A routed to IRQ 11
Region 0: Memory at c0000000 (64-bit, prefetchable) [size=256M]
Region 2: Memory at d0000000 (64-bit, prefetchable) [size=2M]
Region 4: I/O ports at e000 [size=256]
Region 5: Memory at dfe00000 (32-bit, non-prefetchable) [size=256K]
Expansion ROM at 000c0000 [disabled] [size=128K]
Capabilities: [48] Vendor Specific Information: Len=08 <?>
Capabilities: [50] Power Management version 3
Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0-,D1+,D2+,D3hot+,D3cold+)
Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
Capabilities: [58] Express (v2) Legacy Endpoint, MSI 00
DevCap: MaxPayload 256 bytes, PhantFunc 0, Latency L0s <4us, L1 unlimited
ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
DevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+
MaxPayload 256 bytes, MaxReadReq 512 bytes
DevSta: CorrErr+ UncorrErr+ FatalErr- UnsuppReq+ AuxPwr- TransPend-
LnkCap: Port #0, Speed 8GT/s, Width x16, ASPM L0s L1, Exit Latency L0s <64ns, L1 <1us
ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp+
LnkCtl: ASPM Disabled; RCB 64 bytes Disabled- CommClk+
ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
LnkSta: Speed 8GT/s, Width x2, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
DevCap2: Completion Timeout: Not Supported, TimeoutDis-, LTR-, OBFF Not Supported
DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-, LTR-, OBFF Disabled
LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-
Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
Compliance De-emphasis: -6dB
LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete+, EqualizationPhase1+
EqualizationPhase2+, EqualizationPhase3+, LinkEqualizationRequest-
Capabilities: [a0] MSI: Enable- Count=1/4 Maskable+ 64bit+
Address: 0000000000000000 Data: 0000
Masking: 00000000 Pending: 00000000
Capabilities: [100 v1] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?>
Capabilities: [150 v2] Advanced Error Reporting
UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
UESvrt: DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
CESta: RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
CEMsk: RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
AERCap: First Error Pointer: 14, GenCap+ CGenEn- ChkCap+ ChkEn-
Capabilities: [200 v1] #15
Capabilities: [270 v1] #19
Capabilities: [2b0 v1] Address Translation Service (ATS)
ATSCap: Invalidate Queue Depth: 00
ATSCtl: Enable-, Smallest Translation Unit: 00
Capabilities: [2c0 v1] #13
Capabilities: [2d0 v1] #1b
Capabilities: [328 v1] Alternative Routing-ID Interpretation (ARI)
ARICap: MFVC- ACS-, Next Function: 0
ARICtl: MFVC- ACS-, Function Group: 0
Capabilities: [330 v1] Single Root I/O Virtualization (SR-IOV)
IOVCap: Migration-, Interrupt Message Number: 000
IOVCtl: Enable- Migration- Interrupt- MSE- ARIHierarchy+
IOVSta: Migration-
Initial VFs: 8, Total VFs: 8, Number of VFs: 0, Function Dependency Link: 00
VF offset: 256, stride: 1, Device ID: 692f
Supported Page Size: 00000553, System Page Size: 00000001
Region 0: Memory at 0000000000000000 (64-bit, prefetchable)
Region 2: Memory at 0000000000000000 (64-bit, prefetchable)
VF Migration: offset: 00000000, BIR: 0
Capabilities: [400 v1] Vendor Specific Information: ID=0002 Rev=1 Len=070 <?>
Kernel modules: amdgpu

[ 0.000000] Linux version 4.9.0-custom (root@rexzhu) (gcc version 4.8.2 (GCC) ) #2 SMP Fri Mar 31 12:52:40 CST 2017
[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.9.0-custom root=UUID=900c4a92-9f8e-44be-86bc-9673dd3b0d78 ro console=ttyS0,115200,8N1 console=tty0 no_console_suspend 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: Supporting XSAVE feature 0x008: 'MPX bounds registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
[ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
[ 0.000000] x86/fpu: xstate_offset[3]: 832, xstate_sizes[3]: 64
[ 0.000000] x86/fpu: xstate_offset[4]: 896, xstate_sizes[4]: 64
[ 0.000000] x86/fpu: Enabled xstate features 0x1f, context size is 960 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-0x000000000009c7ff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009c800-0x000000000009ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007d438fff] usable
[ 0.000000] BIOS-e820: [mem 0x000000007d439000-0x000000007d439fff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x000000007d43a000-0x000000007d483fff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000007d484000-0x000000007d4c4fff] usable
[ 0.000000] BIOS-e820: [mem 0x000000007d4c5000-0x000000007db49fff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000007db4a000-0x00000000858a7fff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000858a8000-0x0000000086db6fff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000086db7000-0x0000000086deffff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x0000000086df0000-0x000000008774bfff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x000000008774c000-0x0000000087ffefff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000087fff000-0x0000000087ffffff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000088000000-0x00000000880fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x00000004767fffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] SMBIOS 3.0 present.
[ 0.000000] DMI: System manufacturer System Product Name/Z170-A, BIOS 0901 08/31/2015
[ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000000] e820: last_pfn = 0x476800 max_arch_pfn = 0x400000000
[ 0.000000] MTRR default type: write-back
[ 0.000000] MTRR fixed ranges enabled:
[ 0.000000] 00000-9FFFF write-back
[ 0.000000] A0000-BFFFF uncachable
[ 0.000000] C0000-FFFFF write-protect
[ 0.000000] MTRR variable ranges enabled:
[ 0.000000] 0 base 00C0000000 mask 7FC0000000 uncachable
[ 0.000000] 1 base 00A0000000 mask 7FE0000000 uncachable
[ 0.000000] 2 base 0090000000 mask 7FF0000000 uncachable
[ 0.000000] 3 base 008C000000 mask 7FFC000000 uncachable
[ 0.000000] 4 base 008A000000 mask 7FFE000000 uncachable
[ 0.000000] 5 base 0089000000 mask 7FFF000000 uncachable
[ 0.000000] 6 base 0088800000 mask 7FFF800000 uncachable
[ 0.000000] 7 base 0800000000 mask 7800000000 uncachable
[ 0.000000] 8 base 0FC0000000 mask 7FC0000000 uncachable
[ 0.000000] 9 disabled
[ 0.000000] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WC UC- WT
[ 0.000000] e820: last_pfn = 0x88000 max_arch_pfn = 0x400000000
[ 0.000000] found SMP MP-table at [mem 0x000fcc60-0x000fcc6f] mapped at [ffff8800000fcc60]
[ 0.000000] Scanning 1 areas for low memory corruption
[ 0.000000] Base memory trampoline at [ffff880000096000] 96000 size 24576
[ 0.000000] Using GB pages for direct mapping
[ 0.000000] BRK [0x020c7000, 0x020c7fff] PGTABLE
[ 0.000000] BRK [0x020c8000, 0x020c8fff] PGTABLE
[ 0.000000] BRK [0x020c9000, 0x020c9fff] PGTABLE
[ 0.000000] BRK [0x020ca000, 0x020cafff] PGTABLE
[ 0.000000] BRK [0x020cb000, 0x020cbfff] PGTABLE
[ 0.000000] BRK [0x020cc000, 0x020ccfff] PGTABLE
[ 0.000000] RAMDISK: [mem 0x2f6de000-0x33b66fff]
[ 0.000000] ACPI: Early table checksum verification disabled
[ 0.000000] ACPI: RSDP 0x00000000000F0580 000024 (v02 ALASKA)
[ 0.000000] ACPI: XSDT 0x0000000086DC2098 0000AC (v01 ALASKA A M I 01072009 AMI 00010013)
[ 0.000000] ACPI: FACP 0x0000000086DE5038 00010C (v05 ALASKA A M I 01072009 AMI 00010013)
[ 0.000000] ACPI: DSDT 0x0000000086DC21E0 022E52 (v02 ALASKA A M I 01072009 INTL 20120913)
[ 0.000000] ACPI: FACS 0x000000008774BF80 000040
[ 0.000000] ACPI: APIC 0x0000000086DE5148 0000BC (v03 ALASKA A M I 01072009 AMI 00010013)
[ 0.000000] ACPI: FPDT 0x0000000086DE5208 000044 (v01 ALASKA A M I 01072009 AMI 00010013)
[ 0.000000] ACPI: FIDT 0x0000000086DE5250 00009C (v01 ALASKA A M I 01072009 AMI 00010013)
[ 0.000000] ACPI: MCFG 0x0000000086DE52F0 00003C (v01 ALASKA A M I 01072009 MSFT 00000097)
[ 0.000000] ACPI: HPET 0x0000000086DE5330 000038 (v01 ALASKA A M I 01072009 AMI. 0005000B)
[ 0.000000] ACPI: SSDT 0x0000000086DE5368 00036D (v01 SataRe SataTabl 00001000 INTL 20120913)
[ 0.000000] ACPI: LPIT 0x0000000086DE56D8 000094 (v01 INTEL SKL 00000000 MSFT 0000005F)
[ 0.000000] ACPI: SSDT 0x0000000086DE5770 000248 (v02 INTEL sensrhub 00000000 INTL 20120913)
[ 0.000000] ACPI: SSDT 0x0000000086DE59B8 002BAE (v02 INTEL PtidDevc 00001000 INTL 20120913)
[ 0.000000] ACPI: SSDT 0x0000000086DE8568 000C45 (v02 INTEL Ther_Rvp 00001000 INTL 20120913)
[ 0.000000] ACPI: DBGP 0x0000000086DE91B0 000034 (v01 INTEL 00000000 MSFT 0000005F)
[ 0.000000] ACPI: DBG2 0x0000000086DE91E8 000054 (v00 INTEL 00000000 MSFT 0000005F)
[ 0.000000] ACPI: SSDT 0x0000000086DE9240 0006FD (v02 INTEL xh_rvp08 00000000 INTL 20120913)
[ 0.000000] ACPI: SSDT 0x0000000086DE9940 005271 (v02 SaSsdt SaSsdt 00003000 INTL 20120913)
[ 0.000000] ACPI: UEFI 0x0000000086DEEBB8 000042 (v01 00000000 00000000)
[ 0.000000] ACPI: SSDT 0x0000000086DEEC00 000E58 (v02 CpuRef CpuSsdt 00003000 INTL 20120913)
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] No NUMA configuration found
[ 0.000000] Faking a node at [mem 0x0000000000000000-0x00000004767fffff]
[ 0.000000] NODE_DATA(0) allocated [mem 0x4767f8000-0x4767fbfff]
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.000000] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.000000] Normal [mem 0x0000000100000000-0x00000004767fffff]
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x0000000000001000-0x000000000009bfff]
[ 0.000000] node 0: [mem 0x0000000000100000-0x000000007d438fff]
[ 0.000000] node 0: [mem 0x000000007d484000-0x000000007d4c4fff]
[ 0.000000] node 0: [mem 0x000000007db4a000-0x00000000858a7fff]
[ 0.000000] node 0: [mem 0x0000000087fff000-0x0000000087ffffff]
[ 0.000000] node 0: [mem 0x0000000100000000-0x00000004767fffff]
[ 0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x00000004767fffff]
[ 0.000000] On node 0 totalpages: 4176244
[ 0.000000] DMA zone: 64 pages used for memmap
[ 0.000000] DMA zone: 21 pages reserved
[ 0.000000] DMA zone: 3995 pages, LIFO batch:0
[ 0.000000] DMA32 zone: 8456 pages used for memmap
[ 0.000000] DMA32 zone: 541145 pages, LIFO batch:31
[ 0.000000] Normal zone: 56736 pages used for memmap
[ 0.000000] Normal zone: 3631104 pages, LIFO batch:31
[ 0.000000] ACPI: PM-Timer IO Port: 0x1808
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[ 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 high 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: 0x8086a701 base: 0xfed00000
[ 0.000000] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
[ 0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.000000] PM: Registered nosave memory: [mem 0x0009c000-0x0009cfff]
[ 0.000000] PM: Registered nosave memory: [mem 0x0009d000-0x0009ffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x7d439000-0x7d439fff]
[ 0.000000] PM: Registered nosave memory: [mem 0x7d43a000-0x7d483fff]
[ 0.000000] PM: Registered nosave memory: [mem 0x7d4c5000-0x7db49fff]
[ 0.000000] PM: Registered nosave memory: [mem 0x858a8000-0x86db6fff]
[ 0.000000] PM: Registered nosave memory: [mem 0x86db7000-0x86deffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x86df0000-0x8774bfff]
[ 0.000000] PM: Registered nosave memory: [mem 0x8774c000-0x87ffefff]
[ 0.000000] PM: Registered nosave memory: [mem 0x88000000-0x880fffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x88100000-0xdfffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xe0000000-0xefffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xf0000000-0xfdffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfe000000-0xfe010fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfe011000-0xfebfffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfedfffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xfeffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
[ 0.000000] e820: [mem 0x88100000-0xdfffffff] 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:256 nr_cpumask_bits:256 nr_cpu_ids:8 nr_node_ids:1
[ 0.000000] percpu: Embedded 36 pages/cpu @ffff880476400000 s108056 r8192 d31208 u262144
[ 0.000000] pcpu-alloc: s108056 r8192 d31208 u262144 alloc=1*2097152
[ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
[ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 4110967
[ 0.000000] Policy zone: Normal
[ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.9.0-custom root=UUID=900c4a92-9f8e-44be-86bc-9673dd3b0d78 ro console=ttyS0,115200,8N1 console=tty0 no_console_suspend 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: 16288164K/16704976K available (8091K kernel code, 1445K rwdata, 3668K rodata, 2220K init, 1180K bss, 416812K reserved, 0K cma-reserved)
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, 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=256 to nr_cpu_ids=8.
[ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=8
[ 0.000000] NR_IRQS:16640 nr_irqs:2048 16
[ 0.000000] Offload RCU callbacks from all CPUs
[ 0.000000] Offload RCU callbacks from CPUs: 0-7.
[ 0.000000] spurious 8259A interrupt: IRQ7.
[ 0.000000] Console: colour dummy device 80x25
[ 0.000000] console [tty0] enabled
[ 0.000000] console [ttyS0] enabled
[ 0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635855245 ns
[ 0.000000] hpet clockevent registered
[ 0.000000] tsc: Detected 3400.000 MHz processor
[ 0.000015] Calibrating delay loop (skipped), value calculated using timer frequency.. 6816.00 BogoMIPS (lpj=13632000)
[ 0.000016] pid_max: default: 32768 minimum: 301
[ 0.000035] ACPI: Core revision 20160831
[ 0.049186] ACPI Error: [\_SB_.PCI0.XHC_.RHUB.HS11] Namespace lookup failure, AE_NOT_FOUND (20160831/dswload-210)
[ 0.059664] ACPI Exception: AE_NOT_FOUND, During name lookup/catalog (20160831/psobject-227)
[ 0.068398] ACPI Exception: AE_NOT_FOUND, (SSDT:xh_rvp08) while loading table (20160831/tbxfload-228)
[ 0.089683] ACPI Error: 1 table load failures, 7 successful (20160831/tbxfload-246)
[ 0.097611] Security Framework initialized
[ 0.097612] Yama: becoming mindful.
[ 0.097622] AppArmor: AppArmor initialized
[ 0.098204] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
[ 0.100184] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[ 0.101038] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes)
[ 0.101049] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes)
[ 0.101417] CPU: Physical Processor ID: 0
[ 0.101417] CPU: Processor Core ID: 0
[ 0.101420] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[ 0.101420] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[ 0.101424] mce: CPU supports 10 MCE banks
[ 0.101431] CPU0: Thermal monitoring enabled (TM1)
[ 0.101445] process: using mwait in idle threads
[ 0.101447] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
[ 0.101447] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[ 0.101701] Freeing SMP alternatives memory: 32K (ffffffff81f96000 - ffffffff81f9e000)
[ 0.132993] ftrace: allocating 32207 entries in 126 pages
[ 0.141962] smpboot: APIC(0) Converting physical 0 to logical package 0
[ 0.141963] smpboot: Max logical packages: 2
[ 0.143163] x2apic: IRQ remapping doesn't support X2APIC mode
[ 0.146364] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=0 pin2=0
[ 0.186052] TSC deadline timer enabled
[ 0.186057] smpboot: CPU0: Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz (family: 0x6, model: 0x5e, stepping: 0x3)
[ 0.186059] Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
[ 0.186082] ... version: 4
[ 0.186083] ... bit width: 48
[ 0.186083] ... generic registers: 4
[ 0.186083] ... value mask: 0000ffffffffffff
[ 0.186084] ... max period: 00007fffffffffff
[ 0.186084] ... fixed-purpose events: 3
[ 0.186084] ... event mask: 000000070000000f
[ 0.186786] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[ 0.186895] x86: Booting SMP configuration:
[ 0.186895] .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7
[ 0.748208] x86: Booted up 1 node, 8 CPUs
[ 0.748209] smpboot: Total of 8 processors activated (54535.47 BogoMIPS)
[ 0.755115] devtmpfs: initialized
[ 0.755228] x86/mm: Memory block size: 128MB
[ 0.759773] evm: security.selinux
[ 0.759773] evm: security.SMACK64
[ 0.759774] evm: security.ima
[ 0.759774] evm: security.capability
[ 0.759825] PM: Registering ACPI NVS region [mem 0x7d439000-0x7d439fff] (4096 bytes)
[ 0.759826] PM: Registering ACPI NVS region [mem 0x86df0000-0x8774bfff] (9814016 bytes)
[ 0.760617] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[ 0.760662] pinctrl core: initialized pinctrl subsystem
[ 0.760895] RTC time: 8:08:46, date: 05/24/17
[ 0.761005] NET: Registered protocol family 16
[ 0.786816] cpuidle: using governor ladder
[ 0.794610] cpuidle: using governor menu
[ 0.794698] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[ 0.794698] ACPI: bus type PCI registered
[ 0.794699] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.794820] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[ 0.794821] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[ 0.794832] PCI: Using configuration type 1 for base access
[ 0.818955] HugeTLB registered 1 GB page size, pre-allocated 0 pages
[ 0.818955] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[ 0.819255] ACPI: Added _OSI(Module Device)
[ 0.819255] ACPI: Added _OSI(Processor Device)
[ 0.819256] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.819256] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.821558] ACPI: Executed 21 blocks of module-level executable AML code
[ 0.840956] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[ 0.844557] ACPI: Dynamic OEM Table Load:
[ 0.844562] ACPI: SSDT 0xFFFF8804625B9000 0006E4 (v02 PmRef Cpu0Ist 00003000 INTL 20120913)
[ 0.845071] ACPI: \_PR_.CPU0: _OSC native thermal LVT Acked
[ 0.847755] ACPI: Dynamic OEM Table Load:
[ 0.847759] ACPI: SSDT 0xFFFF880464BC8800 00037F (v02 PmRef Cpu0Cst 00003001 INTL 20120913)
[ 0.848912] ACPI: Dynamic OEM Table Load:
[ 0.848916] ACPI: SSDT 0xFFFF880464042800 0005AA (v02 PmRef ApIst 00003000 INTL 20120913)
[ 0.849903] ACPI: Dynamic OEM Table Load:
[ 0.849906] ACPI: SSDT 0xFFFF880462178000 000119 (v02 PmRef ApCst 00003000 INTL 20120913)
[ 0.858413] ACPI: Interpreter enabled
[ 0.858438] ACPI: (supports S0 S3 S4 S5)
[ 0.858439] ACPI: Using IOAPIC for interrupt routing
[ 0.858482] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.861749] ACPI: Power Resource [PG00] (on)
[ 0.862513] ACPI: Power Resource [PG01] (on)
[ 0.863229] ACPI: Power Resource [PG02] (on)
[ 0.867462] ACPI: Power Resource [WRST] (off)
[ 0.868183] ACPI: Power Resource [WRST] (off)
[ 0.868898] ACPI: Power Resource [WRST] (off)
[ 0.869617] ACPI: Power Resource [WRST] (off)
[ 0.870337] ACPI: Power Resource [WRST] (off)
[ 0.871065] ACPI: Power Resource [WRST] (off)
[ 0.871782] ACPI: Power Resource [WRST] (off)
[ 0.872516] ACPI: Power Resource [WRST] (off)
[ 0.873231] ACPI: Power Resource [WRST] (off)
[ 0.873948] ACPI: Power Resource [WRST] (off)
[ 0.874665] ACPI: Power Resource [WRST] (off)
[ 0.875386] ACPI: Power Resource [WRST] (off)
[ 0.876103] ACPI: Power Resource [WRST] (off)
[ 0.876826] ACPI: Power Resource [WRST] (off)
[ 0.877549] ACPI: Power Resource [WRST] (off)
[ 0.878268] ACPI: Power Resource [WRST] (off)
[ 0.878985] ACPI: Power Resource [WRST] (off)
[ 0.879700] ACPI: Power Resource [WRST] (off)
[ 0.880414] ACPI: Power Resource [WRST] (off)
[ 0.881126] ACPI: Power Resource [WRST] (off)
[ 0.895671] ACPI: Power Resource [FN00] (off)
[ 0.895832] ACPI: Power Resource [FN01] (off)
[ 0.895993] ACPI: Power Resource [FN02] (off)
[ 0.896151] ACPI: Power Resource [FN03] (off)
[ 0.896308] ACPI: Power Resource [FN04] (off)
[ 0.898327] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
[ 0.898332] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[ 0.898411] acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
[ 0.899829] PCI host bridge to bus 0000:00
[ 0.899831] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 0.899832] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.899833] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.899834] pci_bus 0000:00: root bus resource [mem 0x88800000-0xdfffffff window]
[ 0.899835] pci_bus 0000:00: root bus resource [mem 0x800000000-0xfbfffffff window]
[ 0.899836] pci_bus 0000:00: root bus resource [mem 0xfd000000-0xfe7fffff window]
[ 0.899837] pci_bus 0000:00: root bus resource [bus 00-fe]
[ 0.899843] pci 0000:00:00.0: [8086:191f] type 00 class 0x060000
[ 0.900389] pci 0000:00:14.0: [8086:a12f] type 00 class 0x0c0330
[ 0.900404] pci 0000:00:14.0: reg 0x10: [mem 0xfbff10000-0xfbff1ffff 64bit]
[ 0.900460] pci 0000:00:14.0: PME# supported from D3hot D3cold
[ 0.900679] pci 0000:00:14.0: System wakeup disabled by ACPI
[ 0.900764] pci 0000:00:16.0: [8086:a13a] type 00 class 0x078000
[ 0.900776] pci 0000:00:16.0: reg 0x10: [mem 0xfbff25000-0xfbff25fff 64bit]
[ 0.900823] pci 0000:00:16.0: PME# supported from D3hot
[ 0.901084] pci 0000:00:17.0: [8086:a102] type 00 class 0x010601
[ 0.901095] pci 0000:00:17.0: reg 0x10: [mem 0xdff24000-0xdff25fff]
[ 0.901100] pci 0000:00:17.0: reg 0x14: [mem 0xdff27000-0xdff270ff]
[ 0.901106] pci 0000:00:17.0: reg 0x18: [io 0xf050-0xf057]
[ 0.901111] pci 0000:00:17.0: reg 0x1c: [io 0xf040-0xf043]
[ 0.901116] pci 0000:00:17.0: reg 0x20: [io 0xf020-0xf03f]
[ 0.901122] pci 0000:00:17.0: reg 0x24: [mem 0xdff26000-0xdff267ff]
[ 0.901155] pci 0000:00:17.0: PME# supported from D3hot
[ 0.901412] pci 0000:00:1b.0: [8086:a167] type 01 class 0x060400
[ 0.901461] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 0.901730] pci 0000:00:1b.0: System wakeup disabled by ACPI
[ 0.901812] pci 0000:00:1c.0: [8086:a110] type 01 class 0x060400
[ 0.901861] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.902127] pci 0000:00:1c.0: System wakeup disabled by ACPI
[ 0.902189] pci 0000:00:1c.2: [8086:a112] type 01 class 0x060400
[ 0.902238] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[ 0.902503] pci 0000:00:1c.2: System wakeup disabled by ACPI
[ 0.902579] pci 0000:00:1d.0: [8086:a118] type 01 class 0x060400
[ 0.902630] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[ 0.902891] pci 0000:00:1d.0: System wakeup disabled by ACPI
[ 0.902979] pci 0000:00:1f.0: [8086:a145] type 00 class 0x060100
[ 0.903307] pci 0000:00:1f.2: [8086:a121] type 00 class 0x058000
[ 0.903317] pci 0000:00:1f.2: reg 0x10: [mem 0xdff20000-0xdff23fff]
[ 0.903599] pci 0000:00:1f.3: [8086:a170] type 00 class 0x040300
[ 0.903618] pci 0000:00:1f.3: reg 0x10: [mem 0xfbff20000-0xfbff23fff 64bit]
[ 0.903646] pci 0000:00:1f.3: reg 0x20: [mem 0xfbff00000-0xfbff0ffff 64bit]
[ 0.903690] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[ 0.903961] pci 0000:00:1f.3: System wakeup disabled by ACPI
[ 0.904027] pci 0000:00:1f.4: [8086:a123] type 00 class 0x0c0500
[ 0.904073] pci 0000:00:1f.4: reg 0x10: [mem 0xfbff24000-0xfbff240ff 64bit]
[ 0.904142] pci 0000:00:1f.4: reg 0x20: [io 0xf000-0xf01f]
[ 0.904456] pci 0000:00:1f.6: [8086:15b8] type 00 class 0x020000
[ 0.904475] pci 0000:00:1f.6: reg 0x10: [mem 0xdff00000-0xdff1ffff]
[ 0.904576] pci 0000:00:1f.6: PME# supported from D0 D3hot D3cold
[ 0.904781] pci 0000:00:1f.6: System wakeup disabled by ACPI
[ 0.904949] pci 0000:01:00.0: [1002:6929] type 00 class 0x030000
[ 0.904964] pci 0000:01:00.0: reg 0x10: [mem 0xfa0000000-0xfafffffff 64bit pref]
[ 0.904974] pci 0000:01:00.0: reg 0x18: [mem 0xfb0000000-0xfb01fffff 64bit pref]
[ 0.904981] pci 0000:01:00.0: reg 0x20: [io 0xe000-0xe0ff]
[ 0.904987] pci 0000:01:00.0: reg 0x24: [mem 0xdfe00000-0xdfe3ffff]
[ 0.904994] pci 0000:01:00.0: reg 0x30: [mem 0xdfe40000-0xdfe5ffff pref]
[ 0.905057] pci 0000:01:00.0: supports D1 D2
[ 0.905058] pci 0000:01:00.0: PME# supported from D1 D2 D3hot D3cold
[ 0.905092] pci 0000:01:00.0: reg 0x354: [mem 0x00000000-0x07ffffff 64bit pref]
[ 0.905093] pci 0000:01:00.0: VF(n) BAR0 space: [mem 0x00000000-0x3fffffff 64bit pref] (contains BAR0 for 8 VFs)
[ 0.905101] pci 0000:01:00.0: reg 0x35c: [mem 0x00000000-0x003fffff 64bit pref]
[ 0.905102] pci 0000:01:00.0: VF(n) BAR2 space: [mem 0x00000000-0x01ffffff 64bit pref] (contains BAR2 for 8 VFs)
[ 0.905114] pci 0000:01:00.0: reg 0x368: [mem 0x00000000-0x003fffff]
[ 0.905114] pci 0000:01:00.0: VF(n) BAR5 space: [mem 0x00000000-0x01ffffff] (contains BAR5 for 8 VFs)
[ 0.905166] pci 0000:01:00.0: System wakeup disabled by ACPI
[ 0.915006] pci 0000:00:1b.0: PCI bridge to [bus 01]
[ 0.915011] pci 0000:00:1b.0: bridge window [io 0xe000-0xefff]
[ 0.915017] pci 0000:00:1b.0: bridge window [mem 0xdfe00000-0xdfefffff]
[ 0.915024] pci 0000:00:1b.0: bridge window [mem 0xfa0000000-0xfb01fffff 64bit pref]
[ 0.915042] pci 0000:00:1b.0: bridge has subordinate 01 but max busn 02
[ 0.915164] pci 0000:02:00.0: [1b21:1242] type 00 class 0x0c0330
[ 0.915183] pci 0000:02:00.0: reg 0x10: [mem 0xdfd00000-0xdfd07fff 64bit]
[ 0.915289] pci 0000:02:00.0: PME# supported from D3hot D3cold
[ 0.915342] pci 0000:02:00.0: System wakeup disabled by ACPI
[ 0.927027] pci 0000:00:1c.0: PCI bridge to [bus 02]
[ 0.927035] pci 0000:00:1c.0: bridge window [mem 0xdfd00000-0xdfdfffff]
[ 0.927180] pci 0000:03:00.0: [1b21:1080] type 01 class 0x060400
[ 0.927296] pci 0000:03:00.0: supports D1 D2
[ 0.927296] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.927341] pci 0000:03:00.0: System wakeup disabled by ACPI
[ 0.939025] pci 0000:00:1c.2: PCI bridge to [bus 03-04]
[ 0.939172] pci 0000:03:00.0: PCI bridge to [bus 04]
[ 0.939320] acpiphp: Slot [1] registered
[ 0.939323] pci 0000:00:1d.0: PCI bridge to [bus 05]
[ 0.942135] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 *11 12 14 15)
[ 0.942249] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 10 11 12 14 15) *0
[ 0.942361] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 11 12 14 *15)
[ 0.942472] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 11 12 14 15) *0
[ 0.942584] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 15) *0
[ 0.942695] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0
[ 0.942806] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 11 12 14 15) *0
[ 0.942917] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 *10 11 12 14 15)
[ 0.943744] ACPI: Enabled 6 GPEs in block 00 to 7F
[ 0.944022] vgaarb: setting as boot device: PCI:0000:01:00.0
[ 0.944023] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
[ 0.944023] vgaarb: loaded
[ 0.944024] vgaarb: bridge control possible 0000:01:00.0
[ 0.944291] SCSI subsystem initialized
[ 0.944343] libata version 3.00 loaded.
[ 0.944374] ACPI: bus type USB registered
[ 0.944403] usbcore: registered new interface driver usbfs
[ 0.944418] usbcore: registered new interface driver hub
[ 0.944439] usbcore: registered new device driver usb
[ 0.944570] PCI: Using ACPI for IRQ routing
[ 0.972385] PCI: pci_cache_line_size set to 64 bytes
[ 0.972422] e820: reserve RAM buffer [mem 0x0009c800-0x0009ffff]
[ 0.972424] e820: reserve RAM buffer [mem 0x7d439000-0x7fffffff]
[ 0.972425] e820: reserve RAM buffer [mem 0x7d4c5000-0x7fffffff]
[ 0.972426] e820: reserve RAM buffer [mem 0x858a8000-0x87ffffff]
[ 0.972427] e820: reserve RAM buffer [mem 0x476800000-0x477ffffff]
[ 0.972586] NetLabel: Initializing
[ 0.972587] NetLabel: domain hash size = 128
[ 0.972587] NetLabel: protocols = UNLABELED CIPSOv4
[ 0.972605] NetLabel: unlabeled traffic allowed by default
[ 0.972732] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[ 0.972735] hpet0: 8 comparators, 64-bit 24.000000 MHz counter
[ 0.974777] clocksource: Switched to clocksource hpet
[ 0.984798] VFS: Disk quotas dquot_6.6.0
[ 0.984834] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.984964] AppArmor: AppArmor Filesystem Enabled
[ 0.985017] pnp: PnP ACPI init
[ 0.985303] system 00:00: [io 0x0290-0x029f] has been reserved
[ 0.985305] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.985776] pnp 00:01: [dma 0 disabled]
[ 0.985840] pnp 00:01: Plug and Play ACPI device, IDs PNP0501 (active)
[ 0.986081] system 00:02: [io 0x0680-0x069f] has been reserved
[ 0.986083] system 00:02: [io 0xffff] has been reserved
[ 0.986084] system 00:02: [io 0xffff] has been reserved
[ 0.986086] system 00:02: [io 0xffff] has been reserved
[ 0.986087] system 00:02: [io 0x1800-0x18fe] has been reserved
[ 0.986089] system 00:02: [io 0x164e-0x164f] has been reserved
[ 0.986090] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.986198] system 00:03: [io 0x0800-0x087f] has been reserved
[ 0.986199] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.986238] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
[ 0.986308] system 00:05: [io 0x1854-0x1857] has been reserved
[ 0.986309] system 00:05: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[ 0.986698] system 00:06: [mem 0xfed10000-0xfed17fff] has been reserved
[ 0.986699] system 00:06: [mem 0xfed18000-0xfed18fff] has been reserved
[ 0.986701] system 00:06: [mem 0xfed19000-0xfed19fff] has been reserved
[ 0.986703] system 00:06: [mem 0xe0000000-0xefffffff] has been reserved
[ 0.986704] system 00:06: [mem 0xfed20000-0xfed3ffff] has been reserved
[ 0.986705] system 00:06: [mem 0xfed90000-0xfed93fff] has been reserved
[ 0.986707] system 00:06: [mem 0xfed45000-0xfed8ffff] has been reserved
[ 0.986708] system 00:06: [mem 0xff000000-0xffffffff] has been reserved
[ 0.986710] system 00:06: [mem 0xfee00000-0xfeefffff] could not be reserved
[ 0.986712] system 00:06: [mem 0xdffc0000-0xdffdffff] has been reserved
[ 0.986713] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.986814] system 00:07: [mem 0xfd000000-0xfdabffff] has been reserved
[ 0.986816] system 00:07: [mem 0xfdad0000-0xfdadffff] has been reserved
[ 0.986817] system 00:07: [mem 0xfdb00000-0xfdffffff] has been reserved
[ 0.986820] system 00:07: [mem 0xfe000000-0xfe01ffff] could not be reserved
[ 0.986821] system 00:07: [mem 0xfe036000-0xfe03bfff] has been reserved
[ 0.986824] system 00:07: [mem 0xfe03d000-0xfe3fffff] has been reserved
[ 0.986825] system 00:07: [mem 0xfe410000-0xfe7fffff] has been reserved
[ 0.986827] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.988557] system 00:08: [mem 0xfdaf0000-0xfdafffff] has been reserved
[ 0.988559] system 00:08: [mem 0xfdae0000-0xfdaeffff] has been reserved
[ 0.988560] system 00:08: [mem 0xfdac0000-0xfdacffff] has been reserved
[ 0.988562] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.989928] pnp: PnP ACPI: found 9 devices
[ 0.997868] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.997871] pci_bus 0000:00: max bus depth: 2 pci_try_num: 3
[ 0.997900] pci 0000:00:1d.0: BAR 14: assigned [mem 0x88800000-0x889fffff]
[ 0.997902] pci 0000:00:1d.0: BAR 15: assigned [mem 0x800000000-0x8001fffff 64bit pref]
[ 0.997903] pci 0000:00:1d.0: BAR 13: assigned [io 0x2000-0x2fff]
[ 0.997907] pci 0000:01:00.0: BAR 7: no space for [mem size 0x40000000 64bit pref]
[ 0.997908] pci 0000:01:00.0: BAR 7: failed to assign [mem size 0x40000000 64bit pref]
[ 0.997910] pci 0000:01:00.0: BAR 9: no space for [mem size 0x02000000 64bit pref]
[ 0.997910] pci 0000:01:00.0: BAR 9: failed to assign [mem size 0x02000000 64bit pref]
[ 0.997911] pci 0000:01:00.0: BAR 12: no space for [mem size 0x02000000]
[ 0.997912] pci 0000:01:00.0: BAR 12: failed to assign [mem size 0x02000000]
[ 0.997914] pci 0000:00:1b.0: PCI bridge to [bus 01]
[ 0.997915] pci 0000:00:1b.0: bridge window [io 0xe000-0xefff]
[ 0.997917] pci 0000:00:1b.0: bridge window [mem 0xdfe00000-0xdfefffff]
[ 0.997919] pci 0000:00:1b.0: bridge window [mem 0xfa0000000-0xfb01fffff 64bit pref]
[ 0.997922] pci 0000:00:1c.0: PCI bridge to [bus 02]
[ 0.997924] pci 0000:00:1c.0: bridge window [mem 0xdfd00000-0xdfdfffff]
[ 0.997928] pci 0000:03:00.0: PCI bridge to [bus 04]
[ 0.997942] pci 0000:00:1c.2: PCI bridge to [bus 03-04]
[ 0.997947] pci 0000:00:1d.0: PCI bridge to [bus 05]
[ 0.997948] pci 0000:00:1d.0: bridge window [io 0x2000-0x2fff]
[ 0.997951] pci 0000:00:1d.0: bridge window [mem 0x88800000-0x889fffff]
[ 0.997953] pci 0000:00:1d.0: bridge window [mem 0x800000000-0x8001fffff 64bit pref]
[ 0.997956] pci_bus 0000:00: No. 2 try to assign unassigned res
[ 0.997957] release child resource [mem 0xdfe00000-0xdfe3ffff]
[ 0.997957] release child resource [mem 0xdfe40000-0xdfe5ffff pref]
[ 0.997958] pci 0000:00:1b.0: resource 14 [mem 0xdfe00000-0xdfefffff] released
[ 0.997958] pci 0000:00:1b.0: PCI bridge to [bus 01]
[ 0.997960] release child resource [mem 0xfa0000000-0xfafffffff 64bit pref]
[ 0.997960] release child resource [mem 0xfb0000000-0xfb01fffff 64bit pref]
[ 0.997961] pci 0000:00:1b.0: resource 15 [mem 0xfa0000000-0xfb01fffff 64bit pref] released
[ 0.997961] pci 0000:00:1b.0: PCI bridge to [bus 01]
[ 0.997992] pci 0000:00:1b.0: BAR 15: assigned [mem 0x808000000-0x85fffffff 64bit pref]
[ 0.997993] pci 0000:00:1b.0: BAR 14: assigned [mem 0x88a00000-0x8abfffff]
[ 0.997997] pci 0000:01:00.0: BAR 0: assigned [mem 0x810000000-0x81fffffff 64bit pref]
[ 0.998004] pci 0000:01:00.0: BAR 7: assigned [mem 0x820000000-0x85fffffff 64bit pref]
[ 0.998011] pci 0000:01:00.0: BAR 9: assigned [mem 0x808000000-0x809ffffff 64bit pref]
[ 0.998017] pci 0000:01:00.0: BAR 12: assigned [mem 0x88c00000-0x8abfffff]
[ 0.998019] pci 0000:01:00.0: BAR 2: assigned [mem 0x80a000000-0x80a1fffff 64bit pref]
[ 0.998026] pci 0000:01:00.0: BAR 5: assigned [mem 0x88a00000-0x88a3ffff]
[ 0.998028] pci 0000:01:00.0: BAR 6: assigned [mem 0x88a40000-0x88a5ffff pref]
[ 0.998030] pci 0000:00:1b.0: PCI bridge to [bus 01]
[ 0.998031] pci 0000:00:1b.0: bridge window [io 0xe000-0xefff]
[ 0.998033] pci 0000:00:1b.0: bridge window [mem 0x88a00000-0x8abfffff]
[ 0.998035] pci 0000:00:1b.0: bridge window [mem 0x808000000-0x85fffffff 64bit pref]
[ 0.998038] pci 0000:00:1c.0: PCI bridge to [bus 02]
[ 0.998040] pci 0000:00:1c.0: bridge window [mem 0xdfd00000-0xdfdfffff]
[ 0.998044] pci 0000:03:00.0: PCI bridge to [bus 04]
[ 0.998058] pci 0000:00:1c.2: PCI bridge to [bus 03-04]
[ 0.998063] pci 0000:00:1d.0: PCI bridge to [bus 05]
[ 0.998064] pci 0000:00:1d.0: bridge window [io 0x2000-0x2fff]
[ 0.998067] pci 0000:00:1d.0: bridge window [mem 0x88800000-0x889fffff]
[ 0.998069] pci 0000:00:1d.0: bridge window [mem 0x800000000-0x8001fffff 64bit pref]
[ 0.998072] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[ 0.998073] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
[ 0.998074] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[ 0.998074] pci_bus 0000:00: resource 7 [mem 0x88800000-0xdfffffff window]
[ 0.998075] pci_bus 0000:00: resource 8 [mem 0x800000000-0xfbfffffff window]
[ 0.998075] pci_bus 0000:00: resource 9 [mem 0xfd000000-0xfe7fffff window]
[ 0.998076] pci_bus 0000:01: resource 0 [io 0xe000-0xefff]
[ 0.998077] pci_bus 0000:01: resource 1 [mem 0x88a00000-0x8abfffff]
[ 0.998077] pci_bus 0000:01: resource 2 [mem 0x808000000-0x85fffffff 64bit pref]
[ 0.998078] pci_bus 0000:02: resource 1 [mem 0xdfd00000-0xdfdfffff]
[ 0.998079] pci_bus 0000:05: resource 0 [io 0x2000-0x2fff]
[ 0.998079] pci_bus 0000:05: resource 1 [mem 0x88800000-0x889fffff]
[ 0.998080] pci_bus 0000:05: resource 2 [mem 0x800000000-0x8001fffff 64bit pref]
[ 0.998267] NET: Registered protocol family 2
[ 0.998466] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[ 0.998584] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[ 0.998662] TCP: Hash tables configured (established 131072 bind 65536)
[ 0.998683] UDP hash table entries: 8192 (order: 6, 262144 bytes)
[ 0.998712] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes)
[ 0.998818] NET: Registered protocol family 1
[ 0.999492] pci 0000:01:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[ 1.000166] PCI: CLS 0 bytes, default 64
[ 1.000212] Trying to unpack rootfs image as initramfs...
[ 1.727856] Freeing initrd memory: 70180K (ffff88002f6de000 - ffff880033b67000)
[ 1.727858] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 1.727859] software IO TLB [mem 0x818a8000-0x858a8000] (64MB) mapped at [ffff8800818a8000-ffff8800858a7fff]
[ 1.728068] RAPL PMU: API unit is 2^-32 Joules, 5 fixed counters, 655360 ms ovfl timer
[ 1.728069] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[ 1.728069] RAPL PMU: hw unit of domain package 2^-14 Joules
[ 1.728069] RAPL PMU: hw unit of domain dram 2^-14 Joules
[ 1.728069] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
[ 1.728070] RAPL PMU: hw unit of domain psys 2^-14 Joules
[ 1.728647] Scanning for low memory corruption every 60 seconds
[ 1.729225] futex hash table entries: 2048 (order: 5, 131072 bytes)
[ 1.729251] audit: initializing netlink subsys (disabled)
[ 1.729267] audit: type=2000 audit(1495613326.692:1): initialized
[ 1.730018] Initialise system trusted keyrings
[ 1.730150] workingset: timestamp_bits=40 max_order=22 bucket_order=0
[ 1.734481] fuse init (API version 7.26)
[ 1.735712] Key type asymmetric registered
[ 1.735713] Asymmetric key parser 'x509' registered
[ 1.735773] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 250)
[ 1.735831] io scheduler noop registered
[ 1.735832] io scheduler deadline registered (default)
[ 1.735844] io scheduler cfq registered
[ 1.736331] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[ 1.736338] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[ 1.736377] efifb: probing for efifb
[ 1.736380] efifb: framebuffer at 0xa0000, using 64k, total 64k
[ 1.736381] efifb: mode is 640x480x1, linelength=80, pages=1
[ 1.736381] efifb: scrolling: redraw
[ 1.736382] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[ 1.737123] Console: switching to colour frame buffer device 80x30
[ 1.737737] fb0: EFI VGA frame buffer device
[ 1.737744] intel_idle: MWAIT substates: 0x142120
[ 1.737745] intel_idle: v0.4.1 model 0x5E
[ 1.738473] intel_idle: lapic_timer_reliable_states 0xffffffff
[ 1.738485] ipmi message handler version 39.2
[ 1.738588] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0
[ 1.738590] ACPI: Sleep Button [SLPB]
[ 1.738650] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[ 1.738651] ACPI: Power Button [PWRB]
[ 1.738710] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[ 1.738712] ACPI: Power Button [PWRF]
[ 1.740515] thermal LNXTHERM:00: registered as thermal_zone0
[ 1.740516] ACPI: Thermal Zone [TZ00] (28 C)
[ 1.740858] thermal LNXTHERM:01: registered as thermal_zone1
[ 1.740859] ACPI: Thermal Zone [TZ01] (30 C)
[ 1.740889] GHES: HEST is not enabled!
[ 1.741021] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 1.761567] 00:01: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[ 1.764348] Linux agpgart interface v0.103
[ 1.770590] brd: module loaded
[ 1.773931] loop: module loaded
[ 1.774360] libphy: Fixed MDIO Bus: probed
[ 1.774751] tun: Universal TUN/TAP device driver, 1.6
[ 1.774751] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[ 1.774837] PPP generic driver version 2.4.2
[ 1.774916] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 1.774919] ehci-pci: EHCI PCI platform driver
[ 1.774932] ehci-platform: EHCI generic platform driver
[ 1.774942] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 1.774944] ohci-pci: OHCI PCI platform driver
[ 1.774955] ohci-platform: OHCI generic platform driver
[ 1.774963] uhci_hcd: USB Universal Host Controller Interface driver
[ 1.775149] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 1.775155] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[ 1.776238] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x00109810
[ 1.776241] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[ 1.776351] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[ 1.776352] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.776352] usb usb1: Product: xHCI Host Controller
[ 1.776353] usb usb1: Manufacturer: Linux 4.9.0-custom xhci-hcd
[ 1.776354] usb usb1: SerialNumber: 0000:00:14.0
[ 1.776543] hub 1-0:1.0: USB hub found
[ 1.776560] hub 1-0:1.0: 16 ports detected
[ 1.791307] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 1.791310] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[ 1.791353] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
[ 1.791353] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.791354] usb usb2: Product: xHCI Host Controller
[ 1.791354] usb usb2: Manufacturer: Linux 4.9.0-custom xhci-hcd
[ 1.791355] usb usb2: SerialNumber: 0000:00:14.0
[ 1.791548] hub 2-0:1.0: USB hub found
[ 1.791561] hub 2-0:1.0: 10 ports detected
[ 1.800922] xhci_hcd 0000:02:00.0: xHCI Host Controller
[ 1.800927] xhci_hcd 0000:02:00.0: new USB bus registered, assigned bus number 3
[ 1.859691] xhci_hcd 0000:02:00.0: hcc params 0x0200eec1 hci version 0x110 quirks 0x00000010
[ 1.860008] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
[ 1.860009] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.860010] usb usb3: Product: xHCI Host Controller
[ 1.860010] usb usb3: Manufacturer: Linux 4.9.0-custom xhci-hcd
[ 1.860011] usb usb3: SerialNumber: 0000:02:00.0
[ 1.860195] hub 3-0:1.0: USB hub found
[ 1.860203] hub 3-0:1.0: 2 ports detected
[ 1.860324] xhci_hcd 0000:02:00.0: xHCI Host Controller
[ 1.860327] xhci_hcd 0000:02:00.0: new USB bus registered, assigned bus number 4
[ 1.860355] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[ 1.860379] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003
[ 1.860380] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.860380] usb usb4: Product: xHCI Host Controller
[ 1.860381] usb usb4: Manufacturer: Linux 4.9.0-custom xhci-hcd
[ 1.860381] usb usb4: SerialNumber: 0000:02:00.0
[ 1.860561] hub 4-0:1.0: USB hub found
[ 1.860568] hub 4-0:1.0: 2 ports detected
[ 1.860726] i8042: PNP: No PS/2 controller found. Probing ports directly.
[ 1.864072] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 1.864076] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 1.864333] mousedev: PS/2 mouse device common for all mice
[ 1.864684] rtc_cmos 00:04: RTC can wake from S4
[ 1.865126] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
[ 1.865206] rtc_cmos 00:04: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[ 1.865278] device-mapper: uevent: version 1.0.3
[ 1.865415] device-mapper: ioctl: 4.35.0-ioctl (2016-06-23) initialised: dm-devel@redhat.com
[ 1.865417] intel_pstate: Intel P-state driver initializing
[ 1.866281] intel_pstate: HWP enabled
[ 1.866704] ledtrig-cpu: registered to indicate activity on CPUs
[ 1.867033] NET: Registered protocol family 10
[ 1.867547] NET: Registered protocol family 17
[ 1.867554] Key type dns_resolver registered
[ 1.868060] microcode: sig=0x506e3, pf=0x2, revision=0x33
[ 1.868463] microcode: Microcode Update Driver: v2.01 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[ 1.868853] registered taskstats version 1
[ 1.868854] Loading compiled-in X.509 certificates
[ 1.871212] Loaded X.509 cert 'Build time autogenerated kernel key: 425e568c95731e69b073bb62214af700479a67a7'
[ 1.871304] kmemleak: Kernel memory leak detector initialized
[ 1.871372] kmemleak: Automatic memory scanning thread started
[ 1.873205] Key type trusted registered
[ 1.877582] Key type encrypted registered
[ 1.877584] AppArmor: AppArmor sha1 policy hashing enabled
[ 1.877585] ima: No TPM chip found, activating TPM-bypass!
[ 1.877601] evm: HMAC attrs: 0x1
[ 1.878948] Magic number: 1:708:119
[ 1.879197] rtc_cmos 00:04: setting system clock to 2017-05-24 08:08:47 UTC (1495613327)
[ 1.879439] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[ 1.879439] EDD information not available.
[ 1.879588] PM: Hibernation image not present or could not be loaded.
[ 1.880425] Freeing unused kernel memory: 2220K (ffffffff81d6b000 - ffffffff81f96000)
[ 1.880425] Write protecting the kernel read-only data: 12288k
[ 1.880640] Freeing unused kernel memory: 84K (ffff8800017eb000 - ffff880001800000)
[ 1.881267] Freeing unused kernel memory: 428K (ffff880001b95000 - ffff880001c00000)
[ 1.890528] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[ 1.890590] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[ 1.890597] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[ 1.890928] random: udevadm: uninitialized urandom read (16 bytes read)
[ 1.890952] random: udevadm: uninitialized urandom read (16 bytes read)
[ 1.892018] random: udevadm: uninitialized urandom read (16 bytes read)
[ 1.892059] random: udevadm: uninitialized urandom read (16 bytes read)
[ 1.892575] random: udevadm: uninitialized urandom read (16 bytes read)
[ 1.892612] random: udevadm: uninitialized urandom read (16 bytes read)
[ 1.892648] random: udevadm: uninitialized urandom read (16 bytes read)
[ 1.921193] hid: module verification failed: signature and/or required key missing - tainting kernel
[ 1.921599] hidraw: raw HID events driver (C) Jiri Kosina
[ 1.926810] wmi: Mapper loaded
[ 1.941711] ahci 0000:00:17.0: version 3.0
[ 1.942212] ahci 0000:00:17.0: AHCI 0001.0301 32 slots 6 ports 6 Gbps 0x3f impl SATA mode
[ 1.942214] ahci 0000:00:17.0: flags: 64bit ncq sntf led clo only pio slum part ems deso sadm sds apst
[ 1.943366] pps_core: LinuxPPS API ver. 1 registered
[ 1.943366] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 1.943776] PTP clock support registered
[ 1.944426] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
[ 1.944426] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[ 2.000668] scsi host0: ahci
[ 2.001171] scsi host1: ahci
[ 2.001663] scsi host2: ahci
[ 2.002052] scsi host3: ahci
[ 2.002447] scsi host4: ahci
[ 2.002844] scsi host5: ahci
[ 2.002971] ata1: SATA max UDMA/133 abar m2048@0xdff26000 port 0xdff26100 irq 129
[ 2.002972] ata2: SATA max UDMA/133 abar m2048@0xdff26000 port 0xdff26180 irq 129
[ 2.002973] ata3: SATA max UDMA/133 abar m2048@0xdff26000 port 0xdff26200 irq 129
[ 2.002974] ata4: SATA max UDMA/133 abar m2048@0xdff26000 port 0xdff26280 irq 129
[ 2.002975] ata5: SATA max UDMA/133 abar m2048@0xdff26000 port 0xdff26300 irq 129
[ 2.002976] ata6: SATA max UDMA/133 abar m2048@0xdff26000 port 0xdff26380 irq 129
[ 2.003589] e1000e 0000:00:1f.6: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[ 2.118908] usb 1-10: new full-speed USB device number 2 using xhci_hcd
[ 2.262007] usb 1-10: New USB device found, idVendor=046d, idProduct=c534
[ 2.262008] usb 1-10: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 2.262009] usb 1-10: Product: USB Receiver
[ 2.262009] usb 1-10: Manufacturer: Logitech
[ 2.267030] usbcore: registered new interface driver usbhid
[ 2.267031] usbhid: USB HID core driver
[ 2.267845] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:14.0/usb1/1-10/1-10:1.0/0003:046D:C534.0001/input/input6
[ 2.278741] e1000e 0000:00:1f.6 0000:00:1f.6 (uninitialized): registered PHC clock
[ 2.319778] CPU: 4 PID: 207 Comm: scsi_eh_2 Tainted: G E 4.9.0-custom #2
[ 2.319779] Hardware name: System manufacturer System Product Name/Z170-A, BIOS 0901 08/31/2015
[ 2.319779] ffffc90002033ae8 ffffffff813c2d3f ffff880452935e80 ffff8804529362b0
[ 2.319781] ffffc90002033b10 ffffffff815a7226 ffffc90002033b10 0000000000000286
[ 2.319782] ffffc90000029200 ffffc90002033b30 ffffffffa003f634 ffff880452935e80
[ 2.319783] Call Trace:
[ 2.319786] [<ffffffff813c2d3f>] dump_stack+0x63/0x84
[ 2.319788] [<ffffffff815a7226>] ata_std_postreset+0x16/0xe0
[ 2.319790] [<ffffffffa003f634>] ahci_postreset+0x34/0x60 [libahci]
[ 2.319791] [<ffffffff815b1964>] ata_eh_reset+0x484/0xda0
[ 2.319793] [<ffffffffa0040e90>] ? ahci_do_softreset+0x220/0x220 [libahci]
[ 2.319794] [<ffffffffa003f600>] ? ahci_pmp_attach+0x70/0x70 [libahci]
[ 2.319795] [<ffffffffa0041350>] ? ahci_sw_activity_blink+0xd0/0xd0 [libahci]
[ 2.319796] [<ffffffffa0041350>] ? ahci_sw_activity_blink+0xd0/0xd0 [libahci]
[ 2.319797] [<ffffffffa0041350>] ? ahci_sw_activity_blink+0xd0/0xd0 [libahci]
[ 2.319798] [<ffffffffa003f600>] ? ahci_pmp_attach+0x70/0x70 [libahci]
[ 2.319799] [<ffffffff815b2652>] ata_eh_recover+0x282/0x12d0
[ 2.319800] [<ffffffffa003f600>] ? ahci_pmp_attach+0x70/0x70 [libahci]
[ 2.319801] [<ffffffffa0041350>] ? ahci_sw_activity_blink+0xd0/0xd0 [libahci]
[ 2.319802] [<ffffffffa0040e90>] ? ahci_do_softreset+0x220/0x220 [libahci]
[ 2.319803] [<ffffffff815a7380>] ? ata_phys_link_offline+0x30/0x30
[ 2.319804] [<ffffffff815b9921>] sata_pmp_error_handler+0xe1/0xaa0
[ 2.319806] [<ffffffff81096090>] ? try_to_grab_pending+0xb0/0x150
[ 2.319808] [<ffffffff810ea2ed>] ? lock_timer_base+0x7d/0xa0
[ 2.319809] [<ffffffffa003fde8>] ahci_error_handler+0x28/0x70 [libahci]
[ 2.319810] [<ffffffff815b3c7c>] ata_scsi_port_error_handler+0x50c/0x8d0
[ 2.319811] [<ffffffff815b40d8>] ata_scsi_error+0x98/0xc0
[ 2.319813] [<ffffffff81582930>] ? scsi_eh_get_sense+0x240/0x240
[ 2.319814] [<ffffffff81582a07>] scsi_error_handler+0xd7/0x8b0
[ 2.319815] [<ffffffff81582930>] ? scsi_eh_get_sense+0x240/0x240
[ 2.319816] [<ffffffff81582930>] ? scsi_eh_get_sense+0x240/0x240
[ 2.319817] [<ffffffff8109b423>] kthread+0xd3/0xf0
[ 2.319818] [<ffffffff8109b350>] ? kthread_park+0x60/0x60
[ 2.319820] [<ffffffff817e1ee5>] ret_from_fork+0x25/0x30
[ 2.319823] ata3: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 2.319839] CPU: 5 PID: 213 Comm: scsi_eh_5 Tainted: G E 4.9.0-custom #2
[ 2.319840] Hardware name: System manufacturer System Product Name/Z170-A, BIOS 0901 08/31/2015
[ 2.319841] ffffc900020f7ae8 ffffffff813c2d3f ffff880452941e80 ffff8804529422b0
[ 2.319842] ffffc900020f7b10 ffffffff815a7226 ffffc900020f7b10 0000000000000286
[ 2.319843] ffffc90000029380 ffffc900020f7b30 ffffffffa003f634 ffff880452941e80
[ 2.319844] Call Trace:
[ 2.319846] [<ffffffff813c2d3f>] dump_stack+0x63/0x84
[ 2.319847] [<ffffffff815a7226>] ata_std_postreset+0x16/0xe0
[ 2.319849] [<ffffffffa003f634>] ahci_postreset+0x34/0x60 [libahci]
[ 2.319850] [<ffffffff815b1964>] ata_eh_reset+0x484/0xda0
[ 2.319851] [<ffffffffa0040e90>] ? ahci_do_softreset+0x220/0x220 [libahci]
[ 2.319852] [<ffffffffa003f600>] ? ahci_pmp_attach+0x70/0x70 [libahci]
[ 2.319853] [<ffffffffa0041350>] ? ahci_sw_activity_blink+0xd0/0xd0 [libahci]
[ 2.319854] [<ffffffffa0041350>] ? ahci_sw_activity_blink+0xd0/0xd0 [libahci]
[ 2.319855] [<ffffffffa0041350>] ? ahci_sw_activity_blink+0xd0/0xd0 [libahci]
[ 2.319856] [<ffffffffa003f600>] ? ahci_pmp_attach+0x70/0x70 [libahci]
[ 2.319857] [<ffffffff815b2652>] ata_eh_recover+0x282/0x12d0
[ 2.319858] [<ffffffffa003f600>] ? ahci_pmp_attach+0x70/0x70 [libahci]
[ 2.319859] [<ffffffffa0041350>] ? ahci_sw_activity_blink+0xd0/0xd0 [libahci]
[ 2.319860] [<ffffffffa0040e90>] ? ahci_do_softreset+0x220/0x220 [libahci]
[ 2.319861] [<ffffffff815a7380>] ? ata_phys_link_offline+0x30/0x30
[ 2.319862] [<ffffffff815b9921>] sata_pmp_error_handler+0xe1/0xaa0
[ 2.319864] [<ffffffff81096090>] ? try_to_grab_pending+0xb0/0x150
[ 2.319865] [<ffffffff810ea2ed>] ? lock_timer_base+0x7d/0xa0
[ 2.319866] [<ffffffffa003fde8>] ahci_error_handler+0x28/0x70 [libahci]
[ 2.319867] [<ffffffff815b3c7c>] ata_scsi_port_error_handler+0x50c/0x8d0
[ 2.319868] [<ffffffff815b40d8>] ata_scsi_error+0x98/0xc0
[ 2.319870] [<ffffffff81582930>] ? scsi_eh_get_sense+0x240/0x240
[ 2.319871] [<ffffffff81582a07>] scsi_error_handler+0xd7/0x8b0
[ 2.319872] [<ffffffff81582930>] ? scsi_eh_get_sense+0x240/0x240
[ 2.319873] [<ffffffff81582930>] ? scsi_eh_get_sense+0x240/0x240
[ 2.319873] [<ffffffff8109b423>] kthread+0xd3/0xf0
[ 2.319874] [<ffffffff8109b350>] ? kthread_park+0x60/0x60
[ 2.319875] [<ffffffff817e1ee5>] ret_from_fork+0x25/0x30
[ 2.319879] ata6: SATA link down (SStatus 4 SControl 300)
[ 2.319911] CPU: 6 PID: 211 Comm: scsi_eh_4 Tainted: G E 4.9.0-custom #2
[ 2.319912] Hardware name: System manufacturer System Product Name/Z170-A, BIOS 0901 08/31/2015
[ 2.319913] ffffc9000205fae8 ffffffff813c2d3f ffff88045293de80 ffff88045293e2b0
[ 2.319914] ffffc9000205fb10 ffffffff815a7226 ffffc9000205fb10 0000000000000286
[ 2.319915] ffffc90000029300 ffffc9000205fb30 ffffffffa003f634 ffff88045293de80
[ 2.319917] Call Trace:
[ 2.319919] [<ffffffff813c2d3f>] dump_stack+0x63/0x84
[ 2.319920] [<ffffffff815a7226>] ata_std_postreset+0x16/0xe0
[ 2.319921] [<ffffffffa003f634>] ahci_postreset+0x34/0x60 [libahci]
[ 2.319922] [<ffffffff815b1964>] ata_eh_reset+0x484/0xda0
[ 2.319924] [<ffffffffa0040e90>] ? ahci_do_softreset+0x220/0x220 [libahci]
[ 2.319926] [<ffffffffa003f600>] ? ahci_pmp_attach+0x70/0x70 [libahci]
[ 2.319927] [<ffffffffa0041350>] ? ahci_sw_activity_blink+0xd0/0xd0 [libahci]
[ 2.319928] [<ffffffffa0041350>] ? ahci_sw_activity_blink+0xd0/0xd0 [libahci]
[ 2.319930] [<ffffffffa0041350>] ? ahci_sw_activity_blink+0xd0/0xd0 [libahci]
[ 2.319931] [<ffffffffa003f600>] ? ahci_pmp_attach+0x70/0x70 [libahci]
[ 2.319932] [<ffffffff815b2652>] ata_eh_recover+0x282/0x12d0
[ 2.319934] [<ffffffffa003f600>] ? ahci_pmp_attach+0x70/0x70 [libahci]
[ 2.319935] [<ffffffffa0041350>] ? ahci_sw_activity_blink+0xd0/0xd0 [libahci]
[ 2.319936] [<ffffffffa0040e90>] ? ahci_do_softreset+0x220/0x220 [libahci]
[ 2.319937] [<ffffffff815a7380>] ? ata_phys_link_offline+0x30/0x30
[ 2.319938] [<ffffffff815b9921>] sata_pmp_error_handler+0xe1/0xaa0
[ 2.319939] [<ffffffff81096090>] ? try_to_grab_pending+0xb0/0x150
[ 2.319941] [<ffffffff810ea2ed>] ? lock_timer_base+0x7d/0xa0
[ 2.319942] [<ffffffffa003fde8>] ahci_error_handler+0x28/0x70 [libahci]
[ 2.319943] [<ffffffff815b3c7c>] ata_scsi_port_error_handler+0x50c/0x8d0
[ 2.319944] [<ffffffff815b40d8>] ata_scsi_error+0x98/0xc0
[ 2.319957] [<ffffffff81582930>] ? scsi_eh_get_sense+0x240/0x240
[ 2.319958] [<ffffffff81582a07>] scsi_error_handler+0xd7/0x8b0
[ 2.319959] [<ffffffff81582930>] ? scsi_eh_get_sense+0x240/0x240
[ 2.319960] [<ffffffff81582930>] ? scsi_eh_get_sense+0x240/0x240
[ 2.319961] [<ffffffff8109b423>] kthread+0xd3/0xf0
[ 2.319962] [<ffffffff8109b350>] ? kthread_park+0x60/0x60
[ 2.319963] [<ffffffff817e1ee5>] ret_from_fork+0x25/0x30
[ 2.319966] ata5: SATA link down (SStatus 4 SControl 300)
[ 2.319984] CPU: 3 PID: 205 Comm: scsi_eh_1 Tainted: G E 4.9.0-custom #2
[ 2.319985] Hardware name: System manufacturer System Product Name/Z170-A, BIOS 0901 08/31/2015
[ 2.319986] ffffc900020efae8 ffffffff813c2d3f ffff880452931e80 ffff8804529322b0
[ 2.320001] ffffc900020efb10 ffffffff815a7226 ffffc900020efb10 0000000000000286
[ 2.320002] ffffc90000029180 ffffc900020efb30 ffffffffa003f634 ffff880452931e80
[ 2.320004] Call Trace:
[ 2.320006] [<ffffffff813c2d3f>] dump_stack+0x63/0x84
[ 2.320007] [<ffffffff815a7226>] ata_std_postreset+0x16/0xe0
[ 2.320008] [<ffffffffa003f634>] ahci_postreset+0x34/0x60 [libahci]
[ 2.320010] [<ffffffff815b1964>] ata_eh_reset+0x484/0xda0
[ 2.320012] [<ffffffffa0040e90>] ? ahci_do_softreset+0x220/0x220 [libahci]
[ 2.320013] [<ffffffffa003f600>] ? ahci_pmp_attach+0x70/0x70 [libahci]
[ 2.320015] [<ffffffffa0041350>] ? ahci_sw_activity_blink+0xd0/0xd0 [libahci]
[ 2.320016] [<ffffffffa0041350>] ? ahci_sw_activity_blink+0xd0/0xd0 [libahci]
[ 2.320017] [<ffffffffa0041350>] ? ahci_sw_activity_blink+0xd0/0xd0 [libahci]
[ 2.320018] [<ffffffffa003f600>] ? ahci_pmp_attach+0x70/0x70 [libahci]
[ 2.320019] [<ffffffff815b2652>] ata_eh_recover+0x282/0x12d0
[ 2.320021] [<ffffffffa003f600>] ? ahci_pmp_attach+0x70/0x70 [libahci]
[ 2.320022] [<ffffffffa0041350>] ? ahci_sw_activity_blink+0xd0/0xd0 [libahci]
[ 2.320024] [<ffffffffa0040e90>] ? ahci_do_softreset+0x220/0x220 [libahci]
[ 2.320024] [<ffffffff815a7380>] ? ata_phys_link_offline+0x30/0x30
[ 2.320026] [<ffffffff813cc65e>] ? number+0x2ce/0x300
[ 2.320027] [<ffffffff815b9921>] sata_pmp_error_handler+0xe1/0xaa0
[ 2.320028] [<ffffffff81096090>] ? try_to_grab_pending+0xb0/0x150
[ 2.320030] [<ffffffff810ea2ed>] ? lock_timer_base+0x7d/0xa0
[ 2.320031] [<ffffffffa003fde8>] ahci_error_handler+0x28/0x70 [libahci]
[ 2.320032] [<ffffffff815b3c7c>] ata_scsi_port_error_handler+0x50c/0x8d0
[ 2.320033] [<ffffffff815b40d8>] ata_scsi_error+0x98/0xc0
[ 2.320034] [<ffffffff81582930>] ? scsi_eh_get_sense+0x240/0x240
[ 2.320035] [<ffffffff81582a07>] scsi_error_handler+0xd7/0x8b0
[ 2.320036] [<ffffffff81582930>] ? scsi_eh_get_sense+0x240/0x240
[ 2.320037] [<ffffffff81582930>] ? scsi_eh_get_sense+0x240/0x240
[ 2.320038] [<ffffffff8109b423>] kthread+0xd3/0xf0
[ 2.320039] [<ffffffff8109b350>] ? kthread_park+0x60/0x60
[ 2.320040] [<ffffffff8109b350>] ? kthread_park+0x60/0x60
[ 2.320054] [<ffffffff817e1ee5>] ret_from_fork+0x25/0x30
[ 2.320057] ata2: SATA link down (SStatus 4 SControl 300)
[ 2.320082] CPU: 7 PID: 203 Comm: scsi_eh_0 Tainted: G E 4.9.0-custom #2
[ 2.320082] Hardware name: System manufacturer System Product Name/Z170-A, BIOS 0901 08/31/2015
[ 2.320082] ffffc90002023ae8 ffffffff813c2d3f ffff88045292de80 ffff88045292e2b0
[ 2.320083] ffffc90002023b10 ffffffff815a7226 ffffc90002023b10 0000000000000286
[ 2.320085] ffffc90000029100 ffffc90002023b30 ffffffffa003f634 ffff88045292de80
[ 2.320086] Call Trace:
[ 2.320087] [<ffffffff813c2d3f>] dump_stack+0x63/0x84
[ 2.320088] [<ffffffff815a7226>] ata_std_postreset+0x16/0xe0
[ 2.320089] [<ffffffffa003f634>] ahci_postreset+0x34/0x60 [libahci]
[ 2.320090] [<ffffffff815b1964>] ata_eh_reset+0x484/0xda0
[ 2.320091] [<ffffffffa0040e90>] ? ahci_do_softreset+0x220/0x220 [libahci]
[ 2.320092] [<ffffffffa003f600>] ? ahci_pmp_attach+0x70/0x70 [libahci]
[ 2.320093] [<ffffffffa0041350>] ? ahci_sw_activity_blink+0xd0/0xd0 [libahci]
[ 2.320094] [<ffffffffa0041350>] ? ahci_sw_activity_blink+0xd0/0xd0 [libahci]
[ 2.320095] [<ffffffffa0041350>] ? ahci_sw_activity_blink+0xd0/0xd0 [libahci]
[ 2.320096] [<ffffffffa003f600>] ? ahci_pmp_attach+0x70/0x70 [libahci]
[ 2.320097] [<ffffffff815b2652>] ata_eh_recover+0x282/0x12d0
[ 2.320098] [<ffffffff8152c910>] ? device_create_release+0x60/0x60
[ 2.320099] [<ffffffffa003f600>] ? ahci_pmp_attach+0x70/0x70 [libahci]
[ 2.320100] [<ffffffffa0041350>] ? ahci_sw_activity_blink+0xd0/0xd0 [libahci]
[ 2.320101] [<ffffffffa0040e90>] ? ahci_do_softreset+0x220/0x220 [libahci]
[ 2.320102] [<ffffffff815a7380>] ? ata_phys_link_offline+0x30/0x30
[ 2.320103] [<ffffffff815b9921>] sata_pmp_error_handler+0xe1/0xaa0
[ 2.320104] [<ffffffff81096090>] ? try_to_grab_pending+0xb0/0x150
[ 2.320105] [<ffffffff810ea2ed>] ? lock_timer_base+0x7d/0xa0
[ 2.320106] [<ffffffffa003fde8>] ahci_error_handler+0x28/0x70 [libahci]
[ 2.320107] [<ffffffff815b3c7c>] ata_scsi_port_error_handler+0x50c/0x8d0
[ 2.320108] [<ffffffff815b40d8>] ata_scsi_error+0x98/0xc0
[ 2.320109] [<ffffffff81582930>] ? scsi_eh_get_sense+0x240/0x240
[ 2.320110] [<ffffffff81582a07>] scsi_error_handler+0xd7/0x8b0
[ 2.320111] [<ffffffff81582930>] ? scsi_eh_get_sense+0x240/0x240
[ 2.320112] [<ffffffff81582930>] ? scsi_eh_get_sense+0x240/0x240
[ 2.320113] [<ffffffff8109b423>] kthread+0xd3/0xf0
[ 2.320114] [<ffffffff8109b350>] ? kthread_park+0x60/0x60
[ 2.320115] [<ffffffff817e1ee5>] ret_from_fork+0x25/0x30
[ 2.320118] ata1: SATA link down (SStatus 4 SControl 300)
[ 2.320134] CPU: 2 PID: 209 Comm: scsi_eh_3 Tainted: G E 4.9.0-custom #2
[ 2.320135] Hardware name: System manufacturer System Product Name/Z170-A, BIOS 0901 08/31/2015
[ 2.320135] ffffc90002043ae8 ffffffff813c2d3f ffff880452939e80 ffff88045293a2b0
[ 2.320150] ffffc90002043b10 ffffffff815a7226 ffffc90002043b10 0000000000000286
[ 2.320151] ffffc90000029280 ffffc90002043b30 ffffffffa003f634 ffff880452939e80
[ 2.320152] Call Trace:
[ 2.320154] [<ffffffff813c2d3f>] dump_stack+0x63/0x84
[ 2.320154] [<ffffffff815a7226>] ata_std_postreset+0x16/0xe0
[ 2.320156] [<ffffffffa003f634>] ahci_postreset+0x34/0x60 [libahci]
[ 2.320157] [<ffffffff815b1964>] ata_eh_reset+0x484/0xda0
[ 2.320158] [<ffffffffa0040e90>] ? ahci_do_softreset+0x220/0x220 [libahci]
[ 2.320171] [<ffffffffa003f600>] ? ahci_pmp_attach+0x70/0x70 [libahci]
[ 2.320172] [<ffffffffa0041350>] ? ahci_sw_activity_blink+0xd0/0xd0 [libahci]
[ 2.320173] [<ffffffffa0041350>] ? ahci_sw_activity_blink+0xd0/0xd0 [libahci]
[ 2.320174] [<ffffffffa0041350>] ? ahci_sw_activity_blink+0xd0/0xd0 [libahci]
[ 2.320175] [<ffffffffa003f600>] ? ahci_pmp_attach+0x70/0x70 [libahci]
[ 2.320176] [<ffffffff815b2652>] ata_eh_recover+0x282/0x12d0
[ 2.320177] [<ffffffffa003f600>] ? ahci_pmp_attach+0x70/0x70 [libahci]
[ 2.320178] [<ffffffffa0041350>] ? ahci_sw_activity_blink+0xd0/0xd0 [libahci]
[ 2.320179] [<ffffffffa0040e90>] ? ahci_do_softreset+0x220/0x220 [libahci]
[ 2.320180] [<ffffffff815a7380>] ? ata_phys_link_offline+0x30/0x30
[ 2.320181] [<ffffffff815b9921>] sata_pmp_error_handler+0xe1/0xaa0
[ 2.320183] [<ffffffff81096090>] ? try_to_grab_pending+0xb0/0x150
[ 2.320184] [<ffffffff810ea2ed>] ? lock_timer_base+0x7d/0xa0
[ 2.320185] [<ffffffffa003fde8>] ahci_error_handler+0x28/0x70 [libahci]
[ 2.320186] [<ffffffff815b3c7c>] ata_scsi_port_error_handler+0x50c/0x8d0
[ 2.320188] [<ffffffff815b40d8>] ata_scsi_error+0x98/0xc0
[ 2.320189] [<ffffffff81582930>] ? scsi_eh_get_sense+0x240/0x240
[ 2.320190] [<ffffffff81582a07>] scsi_error_handler+0xd7/0x8b0
[ 2.320191] [<ffffffff81582930>] ? scsi_eh_get_sense+0x240/0x240
[ 2.320207] [<ffffffff81582930>] ? scsi_eh_get_sense+0x240/0x240
[ 2.320207] [<ffffffff8109b423>] kthread+0xd3/0xf0
[ 2.320208] [<ffffffff8109b350>] ? kthread_park+0x60/0x60
[ 2.320209] [<ffffffff817e1ee5>] ret_from_fork+0x25/0x30
[ 2.320232] ata4: SATA link down (SStatus 4 SControl 300)
[ 2.321116] ata3.00: ATA-8: ST3500413AS, JC45, max UDMA/133
[ 2.321117] ata3.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32)
[ 2.322647] ata3.00: configured for UDMA/133
[ 2.323221] scsi 2:0:0:0: Direct-Access ATA ST3500413AS JC45 PQ: 0 ANSI: 5
[ 2.327221] hid-generic 0003:046D:C534.0001: input,hidraw0: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:00:14.0-10/input0
[ 2.327399] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:14.0/usb1/1-10/1-10:1.1/0003:046D:C534.0002/input/input7
[ 2.367060] e1000e 0000:00:1f.6 eth0: (PCI Express:2.5GT/s:Width x1) 30:5a:3a:e0:7f:4d
[ 2.367061] e1000e 0000:00:1f.6 eth0: Intel(R) PRO/1000 Network Connection
[ 2.367144] e1000e 0000:00:1f.6 eth0: MAC: 12, PHY: 12, PBA No: FFFFFF-0FF
[ 2.367819] e1000e 0000:00:1f.6 enp0s31f6: renamed from eth0
[ 2.375374] sd 2:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/466 GiB)
[ 2.375458] sd 2:0:0:0: Attached scsi generic sg0 type 0
[ 2.375714] sd 2:0:0:0: [sda] Write Protect is off
[ 2.375715] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 2.375889] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 2.387540] hid-generic 0003:046D:C534.0002: input,hiddev0,hidraw1: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:00:14.0-10/input1
[ 2.401973] sda: sda1 sda2 < sda5 >
[ 2.403492] sd 2:0:0:0: [sda] Attached SCSI disk
[ 2.731874] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[ 2.750887] tsc: Refined TSC clocksource calibration: 3407.999 MHz
[ 2.750893] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x311fd336761, max_idle_ns: 440795243819 ns
[ 2.802667] random: fast init done
[ 3.625199] 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)
[ 3.625331] systemd[1]: Detected architecture x86-64.
[ 3.632623] systemd[1]: Set hostname to <jenkins-MS-7984>.
[ 3.775192] clocksource: Switched to clocksource tsc
[ 4.272154] systemd[1]: Listening on udev Kernel Socket.
[ 4.272233] systemd[1]: Listening on Journal Audit Socket.
[ 4.272259] systemd[1]: Listening on Journal Socket (/dev/log).
[ 4.272288] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[ 4.272303] systemd[1]: Listening on fsck to fsckd communication Socket.
[ 4.272453] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[ 4.272477] systemd[1]: Listening on udev Control Socket.
[ 4.842891] random: crng init done
[ 4.873008] lp: driver loaded but no devices found
[ 4.874333] ppdev: user-space parallel port driver
[ 5.086789] RPC: Registered named UNIX socket transport module.
[ 5.086789] RPC: Registered udp transport module.
[ 5.086789] RPC: Registered tcp transport module.
[ 5.086790] RPC: Registered tcp NFSv4.1 backchannel transport module.
[ 5.420022] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
[ 5.764199] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
[ 6.016854] systemd-journald[298]: Received request to flush runtime journal from PID 1
[ 6.498910] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 6.673532] AVX2 version of gcm_enc/dec engaged.
[ 6.673533] AES CTR mode by8 optimization enabled
[ 6.755847] mei_me 0000:00:16.0: enabling device (0000 -> 0002)
[ 7.615057] intel_rapl: Found RAPL domain package
[ 7.615059] intel_rapl: Found RAPL domain core
[ 7.615061] intel_rapl: Found RAPL domain dram
[ 7.684934] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC892: line_outs=3 (0x14/0x15/0x16/0x0/0x0) type:line
[ 7.684935] snd_hda_codec_realtek hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 7.684936] snd_hda_codec_realtek hdaudioC0D0: hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
[ 7.684937] snd_hda_codec_realtek hdaudioC0D0: mono: mono_out=0x0
[ 7.684937] snd_hda_codec_realtek hdaudioC0D0: dig-out=0x11/0x1e
[ 7.684938] snd_hda_codec_realtek hdaudioC0D0: inputs:
[ 7.684938] snd_hda_codec_realtek hdaudioC0D0: Front Mic=0x19
[ 7.684939] snd_hda_codec_realtek hdaudioC0D0: Rear Mic=0x18
[ 7.684940] snd_hda_codec_realtek hdaudioC0D0: Line=0x1a
[ 7.697072] input: HDA Intel PCH Front Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input8
[ 7.697178] input: HDA Intel PCH Rear Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input9
[ 7.697284] input: HDA Intel PCH Line as /devices/pci0000:00/0000:00:1f.3/sound/card0/input10
[ 7.697391] input: HDA Intel PCH Line Out Front as /devices/pci0000:00/0000:00:1f.3/sound/card0/input11
[ 7.697499] input: HDA Intel PCH Line Out Surround as /devices/pci0000:00/0000:00:1f.3/sound/card0/input12
[ 7.697604] input: HDA Intel PCH Line Out CLFE as /devices/pci0000:00/0000:00:1f.3/sound/card0/input13
[ 7.697711] input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input14
[ 8.643643] audit: type=1400 audit(1495613334.260:2): apparmor="STATUS" operation="profile_load" name="/usr/lib/snapd/snap-confine" pid=701 comm="apparmor_parser"
[ 8.643649] audit: type=1400 audit(1495613334.260:3): apparmor="STATUS" operation="profile_load" name="/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=701 comm="apparmor_parser"
[ 8.664449] audit: type=1400 audit(1495613334.280:4): apparmor="STATUS" operation="profile_load" name="/usr/sbin/ippusbxd" pid=704 comm="apparmor_parser"
[ 8.767842] audit: type=1400 audit(1495613334.384:5): apparmor="STATUS" operation="profile_load" name="/usr/sbin/cups-browsed" pid=702 comm="apparmor_parser"
[ 8.792412] audit: type=1400 audit(1495613334.412:6): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient" pid=697 comm="apparmor_parser"
[ 8.792419] audit: type=1400 audit(1495613334.412:7): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=697 comm="apparmor_parser"
[ 8.792426] audit: type=1400 audit(1495613334.412:8): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=697 comm="apparmor_parser"
[ 8.792432] audit: type=1400 audit(1495613334.412:9): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=697 comm="apparmor_parser"
[ 8.793197] audit: type=1400 audit(1495613334.412:10): apparmor="STATUS" operation="profile_load" name="/usr/lib/cups/backend/cups-pdf" pid=703 comm="apparmor_parser"
[ 8.793203] audit: type=1400 audit(1495613334.412:11): apparmor="STATUS" operation="profile_load" name="/usr/sbin/cupsd" pid=703 comm="apparmor_parser"
[ 8.920486] asus_wmi: ASUS WMI generic driver loaded
[ 8.933316] asus_wmi: Initialization: 0x0
[ 8.933378] asus_wmi: BIOS WMI version: 0.9
[ 8.933506] asus_wmi: SFUN value: 0x0
[ 8.934587] input: Eee PC WMI hotkeys as /devices/platform/eeepc-wmi/input/input15
[ 8.934890] asus_wmi: Number of fans: 1
[ 9.519567] Adding 8348668k swap on /dev/sda5. Priority:-1 extents:1 across:8348668k FS
[ 14.493113] NFSD: Using /var/lib/nfs/v4recovery as the NFSv4 state recovery directory
[ 14.712021] NFSD: starting 90-second grace period (net ffffffff81d06400)
[ 15.068671] IPv6: ADDRCONF(NETDEV_UP): enp0s31f6: link is not ready
[ 15.283067] IPv6: ADDRCONF(NETDEV_UP): enp0s31f6: link is not ready
[ 18.070482] e1000e: enp0s31f6 NIC Link is Up 100 Mbps Full Duplex, Flow Control: Rx/Tx
[ 18.070484] e1000e 0000:00:1f.6 enp0s31f6: 10/100 speed: disabling TSO
[ 18.070528] IPv6: ADDRCONF(NETDEV_CHANGE): enp0s31f6: link becomes ready
======================================================================================================
01:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] Tonga XT GL [FirePro S7150] (prog-if 00 [VGA controller])
Subsystem: Advanced Micro Devices, Inc. [AMD/ATI] Tonga XT GL [FirePro S7150]
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
Latency: 0
Interrupt: pin A routed to IRQ 11
Region 0: Memory at 810000000 (64-bit, prefetchable) [size=256M]
Region 2: Memory at 80a000000 (64-bit, prefetchable) [size=2M]
Region 4: I/O ports at e000 [size=256]
Region 5: Memory at 88a00000 (32-bit, non-prefetchable) [size=256K]
Expansion ROM at 000c0000 [disabled] [size=128K]
Capabilities: [48] Vendor Specific Information: Len=08 <?>
Capabilities: [50] Power Management version 3
Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0-,D1+,D2+,D3hot+,D3cold+)
Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
Capabilities: [58] Express (v2) Legacy Endpoint, MSI 00
DevCap: MaxPayload 256 bytes, PhantFunc 0, Latency L0s <4us, L1 unlimited
ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
DevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+
MaxPayload 256 bytes, MaxReadReq 512 bytes
DevSta: CorrErr+ UncorrErr+ FatalErr- UnsuppReq+ AuxPwr- TransPend-
LnkCap: Port #0, Speed 8GT/s, Width x16, ASPM L0s L1, Exit Latency L0s <64ns, L1 <1us
ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp+
LnkCtl: ASPM Disabled; RCB 64 bytes Disabled- CommClk+
ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
LnkSta: Speed 8GT/s, Width x2, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
DevCap2: Completion Timeout: Not Supported, TimeoutDis-, LTR-, OBFF Not Supported
DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-, LTR-, OBFF Disabled
LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-
Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
Compliance De-emphasis: -6dB
LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete+, EqualizationPhase1+
EqualizationPhase2+, EqualizationPhase3+, LinkEqualizationRequest-
Capabilities: [a0] MSI: Enable- Count=1/4 Maskable+ 64bit+
Address: 0000000000000000 Data: 0000
Masking: 00000000 Pending: 00000000
Capabilities: [100 v1] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?>
Capabilities: [150 v2] Advanced Error Reporting
UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
UESvrt: DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
CESta: RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
CEMsk: RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
AERCap: First Error Pointer: 14, GenCap+ CGenEn- ChkCap+ ChkEn-
Capabilities: [200 v1] #15
Capabilities: [270 v1] #19
Capabilities: [2b0 v1] Address Translation Service (ATS)
ATSCap: Invalidate Queue Depth: 00
ATSCtl: Enable-, Smallest Translation Unit: 00
Capabilities: [2c0 v1] #13
Capabilities: [2d0 v1] #1b
Capabilities: [328 v1] Alternative Routing-ID Interpretation (ARI)
ARICap: MFVC- ACS-, Next Function: 0
ARICtl: MFVC- ACS-, Function Group: 0
Capabilities: [330 v1] Single Root I/O Virtualization (SR-IOV)
IOVCap: Migration-, Interrupt Message Number: 000
IOVCtl: Enable- Migration- Interrupt- MSE- ARIHierarchy+
IOVSta: Migration-
Initial VFs: 8, Total VFs: 8, Number of VFs: 0, Function Dependency Link: 00
VF offset: 256, stride: 1, Device ID: 692f
Supported Page Size: 00000553, System Page Size: 00000001
Region 0: Memory at 0000000820000000 (64-bit, prefetchable)
Region 2: Memory at 0000000808000000 (64-bit, prefetchable)
Region 5: Memory at 88c00000 (32-bit, non-prefetchable)
VF Migration: offset: 00000000, BIR: 0
Capabilities: [400 v1] Vendor Specific Information: ID=0002 Rev=1 Len=070 <?>
Kernel modules: amdgpu

\
 
 \ /
  Last update: 2017-05-24 10:57    [W:0.202 / U:0.276 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site