Jump to content

Void Linux & VFIO

Go to solution Solved by AustinJ,
Just now, AustinJ said:

@AlexTheRose I think what the issue seems to be is that the /etc/modprobe.d/vfio.conf isn't being loaded. I blacklisted the nvidia and nouveau driver in /etc/modprobe.d and nvidia loaded up just fine yet.

 

I just added "vfio-pci.ids=10de:1004,10de:0e1a" to the end of my kernel line since it doesn't seem to load properly from that location.

Many months I setup gpu passthrough on my Archbang install. It works just fine. Recently I have started to get tired of the quirks of Arch after running that particular install for over a year, so I decided to try Void. I have everything set up, but one thing remains. I am unable to get VFIO to bind to my graphics card so I can use it for a vm, so here is all the things for those who can help. One thing that does differ from guides is the init system, runit. I am using the Arch kernel with the acs override patch.

 

lspci -nn | grep "NVIDIA"

Spoiler

01:00.0 VGA compatible controller [0300]: NVIDIA Corporation GM204 [GeForce GTX 970] [10de:13c2] (rev a1)
01:00.1 Audio device [0403]: NVIDIA Corporation GM204 High Definition Audio Controller [10de:0fbb] (rev a1)
02:00.0 VGA compatible controller [0300]: NVIDIA Corporation GK110 [GeForce GTX 780] [10de:1004] (rev a1)
02:00.1 Audio device [0403]: NVIDIA Corporation GK110 HDMI Audio [10de:0e1a] (rev a1)

 

 

find /sys/kernel/iommu_groups/ -type l

Spoiler

/sys/kernel/iommu_groups/0/devices/0000:00:00.0
/sys/kernel/iommu_groups/1/devices/0000:00:01.0
/sys/kernel/iommu_groups/2/devices/0000:00:01.1
/sys/kernel/iommu_groups/3/devices/0000:00:14.0
/sys/kernel/iommu_groups/4/devices/0000:00:16.0
/sys/kernel/iommu_groups/5/devices/0000:00:19.0
/sys/kernel/iommu_groups/6/devices/0000:00:1a.0
/sys/kernel/iommu_groups/7/devices/0000:00:1b.0
/sys/kernel/iommu_groups/8/devices/0000:00:1c.0
/sys/kernel/iommu_groups/9/devices/0000:00:1c.3
/sys/kernel/iommu_groups/10/devices/0000:00:1c.4
/sys/kernel/iommu_groups/11/devices/0000:00:1c.5
/sys/kernel/iommu_groups/12/devices/0000:00:1d.0
/sys/kernel/iommu_groups/13/devices/0000:00:1f.0
/sys/kernel/iommu_groups/13/devices/0000:00:1f.2
/sys/kernel/iommu_groups/13/devices/0000:00:1f.3
/sys/kernel/iommu_groups/14/devices/0000:01:00.0
/sys/kernel/iommu_groups/14/devices/0000:01:00.1
/sys/kernel/iommu_groups/15/devices/0000:02:00.0
/sys/kernel/iommu_groups/15/devices/0000:02:00.1
/sys/kernel/iommu_groups/16/devices/0000:03:00.0
/sys/kernel/iommu_groups/16/devices/0000:04:00.0
/sys/kernel/iommu_groups/17/devices/0000:05:00.0
/sys/kernel/iommu_groups/18/devices/0000:06:00.0
/sys/kernel/iommu_groups/19/devices/0000:08:00.0

 

cat /etc/modprobe.d/vfio.conf 
options vfio-pci ids=10de:1004,10de:0e1a

Generating the initramfs used to boot

dracut --force --add-drivers "vfio vfio_iommu_type1 vfio_pci vfio_virqfd" /boot/initramfs-linux.img 4.4.5-1-ARCH

Linux command line used to boot

linux /boot/vmlinuz-linux root=UUID=f0e6c86e-59a4-48cd-9762-a4e61ef6b982 ro intel_iommu=on pcie_acs_override=downstream init=/sbin/runit-init
dmesg | grep -i vfio
[    2.502033] VFIO - User Level meta-driver version: 0.3

 

Entire dmesg output for those who want that. You have been warned.

Spoiler

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 4.4.5-1-ARCH (austin@Archbang) (gcc version 5.3.0 (GCC) ) #1 SMP PREEMPT Mon Mar 14 19:22:57 CDT 2016
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=f0e6c86e-59a4-48cd-9762-a4e61ef6b982 ro intel_iommu=on pcie_acs_override=downstream init=/sbin/runit-init
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: Supporting XSAVE feature 0x01: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x02: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x04: 'AVX registers'
[    0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
[    0.000000] x86/fpu: Using 'eager' FPU context switches.
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009d7ff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009d800-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000b8df5fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000b8df6000-0x00000000b8dfcfff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000b8dfd000-0x00000000b9975fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000b9976000-0x00000000b9ef8fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000b9ef9000-0x00000000cd3a7fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000cd3a8000-0x00000000cd43ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000cd440000-0x00000000cd489fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000cd48a000-0x00000000cd547fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000cd548000-0x00000000cf7fefff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000cf7ff000-0x00000000cf7fffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000082effffff] usable
[    0.000000] Warning: PCIe ACS overrides enabled; This may allow non-IOMMU protected peer-to-peer DMA
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: Gigabyte Technology Co., Ltd. Z87X-UD3H/Z87X-UD3H-CF, BIOS 10b 06/12/2014
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x82f000 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-CFFFF write-protect
[    0.000000]   D0000-E7FFF uncachable
[    0.000000]   E8000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 0000000000 mask 7800000000 write-back
[    0.000000]   1 base 0800000000 mask 7FE0000000 write-back
[    0.000000]   2 base 0820000000 mask 7FF8000000 write-back
[    0.000000]   3 base 0828000000 mask 7FFC000000 write-back
[    0.000000]   4 base 082C000000 mask 7FFE000000 write-back
[    0.000000]   5 base 082E000000 mask 7FFF000000 write-back
[    0.000000]   6 base 00E0000000 mask 7FE0000000 uncachable
[    0.000000]   7 base 00D0000000 mask 7FF0000000 uncachable
[    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: update [mem 0xd0000000-0xffffffff] usable ==> reserved
[    0.000000] e820: last_pfn = 0xcf800 max_arch_pfn = 0x400000000
[    0.000000] found SMP MP-table at [mem 0x000fd7c0-0x000fd7cf] mapped at [ffff8800000fd7c0]
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] Base memory trampoline at [ffff880000097000] 97000 size 24576
[    0.000000] Using GB pages for direct mapping
[    0.000000] BRK [0x01b3f000, 0x01b3ffff] PGTABLE
[    0.000000] BRK [0x01b40000, 0x01b40fff] PGTABLE
[    0.000000] BRK [0x01b41000, 0x01b41fff] PGTABLE
[    0.000000] BRK [0x01b42000, 0x01b42fff] PGTABLE
[    0.000000] BRK [0x01b43000, 0x01b43fff] PGTABLE
[    0.000000] BRK [0x01b44000, 0x01b44fff] PGTABLE
[    0.000000] RAMDISK: [mem 0x34af2000-0x36570fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000000F0490 000024 (v02 ALASKA)
[    0.000000] ACPI: XSDT 0x00000000CD513080 00007C (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: FACP 0x00000000CD5209E0 00010C (v05 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: DSDT 0x00000000CD513190 00D850 (v02 ALASKA A M I    00000088 INTL 20091112)
[    0.000000] ACPI: FACS 0x00000000CD546080 000040
[    0.000000] ACPI: APIC 0x00000000CD520AF0 000092 (v03 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: FPDT 0x00000000CD520B88 000044 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: SSDT 0x00000000CD520BD0 000539 (v01 PmRef  Cpu0Ist  00003000 INTL 20120711)
[    0.000000] ACPI: SSDT 0x00000000CD521110 000AD8 (v01 PmRef  CpuPm    00003000 INTL 20120711)
[    0.000000] ACPI: MCFG 0x00000000CD521BE8 00003C (v01 ALASKA A M I    01072009 MSFT 00000097)
[    0.000000] ACPI: HPET 0x00000000CD521C28 000038 (v01 ALASKA A M I    01072009 AMI. 00000005)
[    0.000000] ACPI: SSDT 0x00000000CD521C60 00036D (v01 SataRe SataTabl 00001000 INTL 20120711)
[    0.000000] ACPI: SSDT 0x00000000CD521FD0 0034E1 (v01 SaSsdt SaSsdt   00003000 INTL 20091112)
[    0.000000] ACPI: DMAR 0x00000000CD5254B8 000080 (v01 INTEL  HSW      00000001 INTL 00000001)
[    0.000000] ACPI: MATS 0x00000000CD525538 000034 (v02 ALASKA A M I    00000002 w?x2 00000000)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000082effffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x82eff6000-0x82eff9fff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x000000082effffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000009cfff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x00000000b8df5fff]
[    0.000000]   node   0: [mem 0x00000000b8dfd000-0x00000000b9975fff]
[    0.000000]   node   0: [mem 0x00000000b9ef9000-0x00000000cd3a7fff]
[    0.000000]   node   0: [mem 0x00000000cd440000-0x00000000cd489fff]
[    0.000000]   node   0: [mem 0x00000000cf7ff000-0x00000000cf7fffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x000000082effffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000082effffff]
[    0.000000] On node 0 totalpages: 8371717
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 21 pages reserved
[    0.000000]   DMA zone: 3996 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 13050 pages used for memmap
[    0.000000]   DMA32 zone: 835177 pages, LIFO batch:31
[    0.000000]   Normal zone: 117696 pages used for memmap
[    0.000000]   Normal zone: 7532544 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[0xff] high edge lint[0x1])
[    0.000000] IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-23
[    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 0x0009d000-0x0009dfff]
[    0.000000] PM: Registered nosave memory: [mem 0x0009e000-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 0xb8df6000-0xb8dfcfff]
[    0.000000] PM: Registered nosave memory: [mem 0xb9976000-0xb9ef8fff]
[    0.000000] PM: Registered nosave memory: [mem 0xcd3a8000-0xcd43ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xcd48a000-0xcd547fff]
[    0.000000] PM: Registered nosave memory: [mem 0xcd548000-0xcf7fefff]
[    0.000000] PM: Registered nosave memory: [mem 0xcf800000-0xf7ffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfc000000-0xfebfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed00000-0xfed03fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed04000-0xfed1bfff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed20000-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 0xcf800000-0xf7ffffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
[    0.000000] setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:8 nr_node_ids:1
[    0.000000] PERCPU: Embedded 32 pages/cpu @ffff88082ec00000 s92696 r8192 d30184 u262144
[    0.000000] pcpu-alloc: s92696 r8192 d30184 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: 8240886
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=f0e6c86e-59a4-48cd-9762-a4e61ef6b982 ro intel_iommu=on pcie_acs_override=downstream init=/sbin/runit-init
[    0.000000] DMAR: IOMMU enabled
[    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: 32856448K/33486868K available (5743K kernel code, 946K rwdata, 1820K rodata, 1188K init, 1156K bss, 630420K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[    0.000000] Preemptible hierarchical RCU implementation.
[    0.000000] 	Build-time adjustment of leaf fanout to 64.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=8.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=8
[    0.000000] NR_IRQS:8448 nr_irqs:488 16
[    0.000000] spurious 8259A interrupt: IRQ7.
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 3990.726 MHz processor
[    0.000016] Calibrating delay loop (skipped), value calculated using timer frequency.. 7984.01 BogoMIPS (lpj=13302420)
[    0.000017] pid_max: default: 32768 minimum: 301
[    0.000020] ACPI: Core revision 20150930
[    0.005578] ACPI: 5 ACPI AML tables successfully acquired and loaded
[    0.005588] Security Framework initialized
[    0.005588] Yama: becoming mindful.
[    0.006565] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes)
[    0.010096] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes)
[    0.011635] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes)
[    0.011651] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes)
[    0.011842] Initializing cgroup subsys io
[    0.011844] Initializing cgroup subsys memory
[    0.011848] Initializing cgroup subsys devices
[    0.011849] Initializing cgroup subsys freezer
[    0.011850] Initializing cgroup subsys net_cls
[    0.011852] Initializing cgroup subsys pids
[    0.011864] CPU: Physical Processor ID: 0
[    0.011865] CPU: Processor Core ID: 0
[    0.012544] mce: CPU supports 9 MCE banks
[    0.012553] CPU0: Thermal monitoring enabled (TM1)
[    0.012559] process: using mwait in idle threads
[    0.012560] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 1024
[    0.012561] Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 1024, 1GB 4
[    0.012739] Freeing SMP alternatives memory: 20K (ffffffff81a17000 - ffffffff81a1c000)
[    0.034022] ftrace: allocating 22870 entries in 90 pages
[    0.039001] DMAR: Host address width 39
[    0.039002] DMAR: DRHD base: 0x000000fed90000 flags: 0x1
[    0.039007] DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap d2008c20660462 ecap f010da
[    0.039007] DMAR: RMRR base: 0x000000cf50e000 end: 0x000000cf51cfff
[    0.039009] DMAR-IR: IOAPIC id 8 under DRHD base  0xfed90000 IOMMU 0
[    0.039009] DMAR-IR: HPET id 0 under DRHD base 0xfed90000
[    0.039010] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[    0.039138] DMAR-IR: Enabled IRQ remapping in x2apic mode
[    0.039138] x2apic enabled
[    0.039141] Switched APIC routing to cluster x2apic.
[    0.039516] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.072520] TSC deadline timer enabled
[    0.072522] smpboot: CPU0: Intel(R) Core(TM) i7-4790K CPU @ 4.00GHz (family: 0x6, model: 0x3c, stepping: 0x3)
[    0.072532] Performance Events: PEBS fmt2+, 16-deep LBR, Haswell events, full-width counters, Intel PMU driver.
[    0.072543] ... version:                3
[    0.072543] ... bit width:              48
[    0.072543] ... generic registers:      4
[    0.072544] ... value mask:             0000ffffffffffff
[    0.072544] ... max period:             0000ffffffffffff
[    0.072545] ... fixed-purpose events:   3
[    0.072545] ... event mask:             000000070000000f
[    0.102593] x86: Booting SMP configuration:
[    0.102594] .... node  #0, CPUs:      #1
[    0.105640] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.112605]  #2 #3 #4 #5 #6 #7
[    0.165704] x86: Booted up 1 node, 8 CPUs
[    0.165706] smpboot: Total of 8 processors activated (63877.10 BogoMIPS)
[    0.170783] devtmpfs: initialized
[    0.172928] PM: Registering ACPI NVS region [mem 0xb8df6000-0xb8dfcfff] (28672 bytes)
[    0.172929] PM: Registering ACPI NVS region [mem 0xcd48a000-0xcd547fff] (778240 bytes)
[    0.172980] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[    0.173025] pinctrl core: initialized pinctrl subsystem
[    0.173057] RTC time: 12:52:12, date: 03/15/16
[    0.173121] NET: Registered protocol family 16
[    0.184048] cpuidle: using governor ladder
[    0.197384] cpuidle: using governor menu
[    0.197403] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.197404] ACPI: bus type PCI registered
[    0.197405] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.197439] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[    0.197440] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
[    0.197444] pmd_set_huge: Cannot satisfy [mem 0xf8000000-0xf8200000] with a huge-page mapping due to MTRR override.
[    0.197482] PCI: Using configuration type 1 for base access
[    0.197764] perf_event_intel: PMU erratum BJ122, BV98, HSD29 worked around, HT is on
[    0.210872] ACPI: Added _OSI(Module Device)
[    0.210873] ACPI: Added _OSI(Processor Device)
[    0.210873] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.210874] ACPI: Added _OSI(Processor Aggregator Device)
[    0.212870] ACPI: Executed 1 blocks of module-level executable AML code
[    0.214151] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    0.214509] ACPI: Dynamic OEM Table Load:
[    0.214512] ACPI: SSDT 0xFFFF88080A5C4000 0003D3 (v01 PmRef  Cpu0Cst  00003001 INTL 20120711)
[    0.214826] ACPI: Dynamic OEM Table Load:
[    0.214829] ACPI: SSDT 0xFFFF88080A5C9800 0005AA (v01 PmRef  ApIst    00003000 INTL 20120711)
[    0.215160] ACPI: Dynamic OEM Table Load:
[    0.215162] ACPI: SSDT 0xFFFF88080A61DA00 000119 (v01 PmRef  ApCst    00003000 INTL 20120711)
[    0.215984] ACPI: Interpreter enabled
[    0.215988] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20150930/hwxface-580)
[    0.215991] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20150930/hwxface-580)
[    0.216000] ACPI: (supports S0 S3 S4 S5)
[    0.216001] ACPI: Using IOAPIC for interrupt routing
[    0.216014] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.220147] ACPI: Power Resource [FN00] (off)
[    0.220183] ACPI: Power Resource [FN01] (off)
[    0.220216] ACPI: Power Resource [FN02] (off)
[    0.220249] ACPI: Power Resource [FN03] (off)
[    0.220282] ACPI: Power Resource [FN04] (off)
[    0.220646] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
[    0.220649] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.220755] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug PME]
[    0.220812] acpi PNP0A08:00: _OSC: OS now controls [AER PCIeCapability]
[    0.220813] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[    0.220984] PCI host bridge to bus 0000:00
[    0.220986] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.220987] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.220987] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.220988] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff window]
[    0.220989] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window]
[    0.220990] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]
[    0.220990] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff window]
[    0.220991] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff window]
[    0.220992] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff window]
[    0.220992] pci_bus 0000:00: root bus resource [mem 0xd0000000-0xfeafffff window]
[    0.220993] pci_bus 0000:00: root bus resource [bus 00-3e]
[    0.220997] pci 0000:00:00.0: [8086:0c00] type 00 class 0x060000
[    0.221041] pci 0000:00:01.0: [8086:0c01] type 01 class 0x060400
[    0.221060] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.221099] pci 0000:00:01.0: System wakeup disabled by ACPI
[    0.221115] pci 0000:00:01.1: [8086:0c05] type 01 class 0x060400
[    0.221133] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
[    0.221168] pci 0000:00:01.1: System wakeup disabled by ACPI
[    0.221202] pci 0000:00:14.0: [8086:8c31] type 00 class 0x0c0330
[    0.221222] pci 0000:00:14.0: reg 0x10: [mem 0xf5120000-0xf512ffff 64bit]
[    0.221260] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.221278] pci 0000:00:14.0: System wakeup disabled by ACPI
[    0.221297] pci 0000:00:16.0: [8086:8c3a] type 00 class 0x078000
[    0.221317] pci 0000:00:16.0: reg 0x10: [mem 0xf513b000-0xf513b00f 64bit]
[    0.221358] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.221397] pci 0000:00:19.0: [8086:153b] type 00 class 0x020000
[    0.221415] pci 0000:00:19.0: reg 0x10: [mem 0xf5100000-0xf511ffff]
[    0.221421] pci 0000:00:19.0: reg 0x14: [mem 0xf5139000-0xf5139fff]
[    0.221426] pci 0000:00:19.0: reg 0x18: [io  0xf040-0xf05f]
[    0.221462] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
[    0.221481] pci 0000:00:19.0: System wakeup disabled by ACPI
[    0.221501] pci 0000:00:1a.0: [8086:8c2d] type 00 class 0x0c0320
[    0.221522] pci 0000:00:1a.0: reg 0x10: [mem 0xf5138000-0xf51383ff]
[    0.221580] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    0.221605] pci 0000:00:1a.0: System wakeup disabled by ACPI
[    0.221625] pci 0000:00:1b.0: [8086:8c20] type 00 class 0x040300
[    0.221643] pci 0000:00:1b.0: reg 0x10: [mem 0xf5130000-0xf5133fff 64bit]
[    0.221688] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.221708] pci 0000:00:1b.0: System wakeup disabled by ACPI
[    0.221726] pci 0000:00:1c.0: [8086:244e] type 01 class 0x060401
[    0.221773] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.221809] pci 0000:00:1c.0: System wakeup disabled by ACPI
[    0.221828] pci 0000:00:1c.3: [8086:8c16] type 01 class 0x060400
[    0.221876] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[    0.221888] pci 0000:00:1c.3: Enabling MPC IRBNCE
[    0.221889] pci 0000:00:1c.3: Intel PCH root port ACS workaround enabled
[    0.221917] pci 0000:00:1c.3: System wakeup disabled by ACPI
[    0.221935] pci 0000:00:1c.4: [8086:8c18] type 01 class 0x060400
[    0.221982] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    0.221994] pci 0000:00:1c.4: Enabling MPC IRBNCE
[    0.221995] pci 0000:00:1c.4: Intel PCH root port ACS workaround enabled
[    0.222022] pci 0000:00:1c.4: System wakeup disabled by ACPI
[    0.222040] pci 0000:00:1c.5: [8086:8c1a] type 01 class 0x060400
[    0.222087] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
[    0.222098] pci 0000:00:1c.5: Enabling MPC IRBNCE
[    0.222099] pci 0000:00:1c.5: Intel PCH root port ACS workaround enabled
[    0.222126] pci 0000:00:1c.5: System wakeup disabled by ACPI
[    0.222148] pci 0000:00:1d.0: [8086:8c26] type 00 class 0x0c0320
[    0.222169] pci 0000:00:1d.0: reg 0x10: [mem 0xf5137000-0xf51373ff]
[    0.222227] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.222253] pci 0000:00:1d.0: System wakeup disabled by ACPI
[    0.222273] pci 0000:00:1f.0: [8086:8c44] type 00 class 0x060100
[    0.222387] pci 0000:00:1f.2: [8086:8c02] type 00 class 0x010601
[    0.222402] pci 0000:00:1f.2: reg 0x10: [io  0xf090-0xf097]
[    0.222407] pci 0000:00:1f.2: reg 0x14: [io  0xf080-0xf083]
[    0.222412] pci 0000:00:1f.2: reg 0x18: [io  0xf070-0xf077]
[    0.222417] pci 0000:00:1f.2: reg 0x1c: [io  0xf060-0xf063]
[    0.222422] pci 0000:00:1f.2: reg 0x20: [io  0xf020-0xf03f]
[    0.222427] pci 0000:00:1f.2: reg 0x24: [mem 0xf5136000-0xf51367ff]
[    0.222446] pci 0000:00:1f.2: PME# supported from D3hot
[    0.222478] pci 0000:00:1f.3: [8086:8c22] type 00 class 0x0c0500
[    0.222489] pci 0000:00:1f.3: reg 0x10: [mem 0xf5135000-0xf51350ff 64bit]
[    0.222504] pci 0000:00:1f.3: reg 0x20: [io  0xf000-0xf01f]
[    0.222569] pci 0000:01:00.0: [10de:13c2] type 00 class 0x030000
[    0.222584] pci 0000:01:00.0: reg 0x10: [mem 0xf6000000-0xf6ffffff]
[    0.222592] pci 0000:01:00.0: reg 0x14: [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.222600] pci 0000:01:00.0: reg 0x1c: [mem 0xe0000000-0xe1ffffff 64bit pref]
[    0.222605] pci 0000:01:00.0: reg 0x24: [io  0xe000-0xe07f]
[    0.222611] pci 0000:01:00.0: reg 0x30: [mem 0xf7000000-0xf707ffff pref]
[    0.222656] pci 0000:01:00.0: System wakeup disabled by ACPI
[    0.222675] pci 0000:01:00.1: [10de:0fbb] type 00 class 0x040300
[    0.222691] pci 0000:01:00.1: reg 0x10: [mem 0xf7080000-0xf7083fff]
[    0.227410] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.227412] pci 0000:00:01.0:   bridge window [io  0xe000-0xefff]
[    0.227413] pci 0000:00:01.0:   bridge window [mem 0xf6000000-0xf70fffff]
[    0.227415] pci 0000:00:01.0:   bridge window [mem 0xd0000000-0xe1ffffff 64bit pref]
[    0.227436] pci 0000:02:00.0: [10de:1004] type 00 class 0x030000
[    0.227450] pci 0000:02:00.0: reg 0x10: [mem 0xf4000000-0xf4ffffff]
[    0.227456] pci 0000:02:00.0: reg 0x14: [mem 0xe8000000-0xefffffff 64bit pref]
[    0.227463] pci 0000:02:00.0: reg 0x1c: [mem 0xf0000000-0xf1ffffff 64bit pref]
[    0.227467] pci 0000:02:00.0: reg 0x24: [io  0xd000-0xd07f]
[    0.227471] pci 0000:02:00.0: reg 0x30: [mem 0xf5000000-0xf507ffff pref]
[    0.227527] pci 0000:02:00.1: [10de:0e1a] type 00 class 0x040300
[    0.227543] pci 0000:02:00.1: reg 0x10: [mem 0xf5080000-0xf5083fff]
[    0.234082] pci 0000:00:01.1: PCI bridge to [bus 02]
[    0.234083] pci 0000:00:01.1:   bridge window [io  0xd000-0xdfff]
[    0.234084] pci 0000:00:01.1:   bridge window [mem 0xf4000000-0xf50fffff]
[    0.234086] pci 0000:00:01.1:   bridge window [mem 0xe8000000-0xf1ffffff 64bit pref]
[    0.234134] pci 0000:03:00.0: [1b21:1080] type 01 class 0x060400
[    0.234249] pci 0000:03:00.0: supports D1 D2
[    0.234249] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.234272] pci 0000:03:00.0: System wakeup disabled by ACPI
[    0.240754] pci 0000:00:1c.0: PCI bridge to [bus 03-04] (subtractive decode)
[    0.240756] pci 0000:00:1c.0:   bridge window [io  0xc000-0xcfff]
[    0.240761] pci 0000:00:1c.0:   bridge window [io  0x0000-0x0cf7 window] (subtractive decode)
[    0.240762] pci 0000:00:1c.0:   bridge window [io  0x0d00-0xffff window] (subtractive decode)
[    0.240763] pci 0000:00:1c.0:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
[    0.240763] pci 0000:00:1c.0:   bridge window [mem 0x000d0000-0x000d3fff window] (subtractive decode)
[    0.240764] pci 0000:00:1c.0:   bridge window [mem 0x000d4000-0x000d7fff window] (subtractive decode)
[    0.240765] pci 0000:00:1c.0:   bridge window [mem 0x000d8000-0x000dbfff window] (subtractive decode)
[    0.240765] pci 0000:00:1c.0:   bridge window [mem 0x000dc000-0x000dffff window] (subtractive decode)
[    0.240766] pci 0000:00:1c.0:   bridge window [mem 0x000e0000-0x000e3fff window] (subtractive decode)
[    0.240767] pci 0000:00:1c.0:   bridge window [mem 0x000e4000-0x000e7fff window] (subtractive decode)
[    0.240768] pci 0000:00:1c.0:   bridge window [mem 0xd0000000-0xfeafffff window] (subtractive decode)
[    0.240821] pci 0000:04:00.0: [13f6:8788] type 00 class 0x040100
[    0.240854] pci 0000:04:00.0: reg 0x10: [io  0xc000-0xc0ff]
[    0.240958] pci 0000:04:00.0: supports D1 D2
[    0.241030] pci 0000:03:00.0: PCI bridge to [bus 04]
[    0.241037] pci 0000:03:00.0:   bridge window [io  0xc000-0xcfff]
[    0.241107] pci 0000:05:00.0: [8086:08b1] type 00 class 0x028000
[    0.241164] pci 0000:05:00.0: reg 0x10: [mem 0xf7300000-0xf7301fff 64bit]
[    0.241312] pci 0000:05:00.0: PME# supported from D0 D3hot D3cold
[    0.241365] pci 0000:05:00.0: System wakeup disabled by ACPI
[    0.247432] pci 0000:00:1c.3: PCI bridge to [bus 05]
[    0.247435] pci 0000:00:1c.3:   bridge window [mem 0xf7300000-0xf73fffff]
[    0.247491] pci 0000:06:00.0: [1283:8892] type 01 class 0x060401
[    0.247600] pci 0000:06:00.0: supports D1 D2
[    0.247601] pci 0000:06:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.247630] pci 0000:00:1c.4: PCI bridge to [bus 06-07]
[    0.247745] pci 0000:06:00.0: PCI bridge to [bus 07] (subtractive decode)
[    0.247813] pci 0000:08:00.0: [1b4b:9172] type 00 class 0x010601
[    0.247838] pci 0000:08:00.0: reg 0x10: [io  0xb040-0xb047]
[    0.247846] pci 0000:08:00.0: reg 0x14: [io  0xb030-0xb033]
[    0.247854] pci 0000:08:00.0: reg 0x18: [io  0xb020-0xb027]
[    0.247862] pci 0000:08:00.0: reg 0x1c: [io  0xb010-0xb013]
[    0.247871] pci 0000:08:00.0: reg 0x20: [io  0xb000-0xb00f]
[    0.247879] pci 0000:08:00.0: reg 0x24: [mem 0xf7210000-0xf72101ff]
[    0.247887] pci 0000:08:00.0: reg 0x30: [mem 0xf7200000-0xf720ffff pref]
[    0.247916] pci 0000:08:00.0: PME# supported from D3hot
[    0.247936] pci 0000:08:00.0: System wakeup disabled by ACPI
[    0.254098] pci 0000:00:1c.5: PCI bridge to [bus 08]
[    0.254100] pci 0000:00:1c.5:   bridge window [io  0xb000-0xbfff]
[    0.254102] pci 0000:00:1c.5:   bridge window [mem 0xf7200000-0xf72fffff]
[    0.254492] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 *11 12 14 15)
[    0.254515] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 *10 11 12 14 15)
[    0.254536] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 *5 6 10 11 12 14 15)
[    0.254557] ACPI: PCI Interrupt Link [LNKD] (IRQs *3 4 5 6 10 11 12 14 15)
[    0.254579] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 *11 12 14 15)
[    0.254600] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.254621] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 *10 11 12 14 15)
[    0.254642] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 *5 6 10 11 12 14 15)
[    0.254777] ACPI: Enabled 4 GPEs in block 00 to 3F
[    0.254824] vgaarb: setting as boot device: PCI:0000:01:00.0
[    0.254826] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
[    0.254827] vgaarb: device added: PCI:0000:02:00.0,decodes=io+mem,owns=none,locks=none
[    0.254828] vgaarb: loaded
[    0.254829] vgaarb: bridge control possible 0000:02:00.0
[    0.254829] vgaarb: bridge control possible 0000:01:00.0
[    0.254869] PCI: Using ACPI for IRQ routing
[    0.255884] PCI: pci_cache_line_size set to 64 bytes
[    0.255932] e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff]
[    0.255933] e820: reserve RAM buffer [mem 0xb8df6000-0xbbffffff]
[    0.255934] e820: reserve RAM buffer [mem 0xb9976000-0xbbffffff]
[    0.255934] e820: reserve RAM buffer [mem 0xcd3a8000-0xcfffffff]
[    0.255935] e820: reserve RAM buffer [mem 0xcd48a000-0xcfffffff]
[    0.255936] e820: reserve RAM buffer [mem 0xcf800000-0xcfffffff]
[    0.255936] e820: reserve RAM buffer [mem 0x82f000000-0x82fffffff]
[    0.255987] NetLabel: Initializing
[    0.255988] NetLabel:  domain hash size = 128
[    0.255988] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.255993] NetLabel:  unlabeled traffic allowed by default
[    0.256009] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.256012] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    0.258029] clocksource: Switched to clocksource hpet
[    0.260684] pnp: PnP ACPI init
[    0.260720] system 00:00: [mem 0xfed40000-0xfed44fff] has been reserved
[    0.260722] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.260799] system 00:01: [io  0x0680-0x069f] has been reserved
[    0.260800] system 00:01: [io  0xffff] has been reserved
[    0.260801] system 00:01: [io  0xffff] has been reserved
[    0.260802] system 00:01: [io  0xffff] has been reserved
[    0.260803] system 00:01: [io  0x1c00-0x1cfe] has been reserved
[    0.260804] system 00:01: [io  0x1d00-0x1dfe] has been reserved
[    0.260805] system 00:01: [io  0x1e00-0x1efe] has been reserved
[    0.260806] system 00:01: [io  0x1f00-0x1ffe] has been reserved
[    0.260806] system 00:01: [io  0x1800-0x18fe] could not be reserved
[    0.260807] system 00:01: [io  0x164e-0x164f] has been reserved
[    0.260808] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.260818] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.260841] system 00:03: [io  0x1854-0x1857] has been reserved
[    0.260842] system 00:03: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    0.260896] system 00:04: [io  0x0a00-0x0a0f] has been reserved
[    0.260897] system 00:04: [io  0x0a30-0x0a3f] has been reserved
[    0.260898] system 00:04: [io  0x0a20-0x0a2f] has been reserved
[    0.260899] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.261020] pnp 00:05: [dma 0 disabled]
[    0.261039] pnp 00:05: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.261063] system 00:06: [io  0x04d0-0x04d1] has been reserved
[    0.261065] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.261260] system 00:07: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.261261] system 00:07: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.261262] system 00:07: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.261263] system 00:07: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.261264] system 00:07: [mem 0xf8000000-0xfbffffff] has been reserved
[    0.261264] system 00:07: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.261265] system 00:07: [mem 0xfed90000-0xfed93fff] could not be reserved
[    0.261266] system 00:07: [mem 0xfed45000-0xfed8ffff] has been reserved
[    0.261267] system 00:07: [mem 0xff000000-0xffffffff] has been reserved
[    0.261268] system 00:07: [mem 0xfee00000-0xfeefffff] could not be reserved
[    0.261268] system 00:07: [mem 0xf7fdf000-0xf7fdffff] has been reserved
[    0.261269] system 00:07: [mem 0xf7fe0000-0xf7feffff] has been reserved
[    0.261270] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.261374] pnp: PnP ACPI: found 8 devices
[    0.266688] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.266735] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.266736] pci 0000:00:01.0:   bridge window [io  0xe000-0xefff]
[    0.266738] pci 0000:00:01.0:   bridge window [mem 0xf6000000-0xf70fffff]
[    0.266739] pci 0000:00:01.0:   bridge window [mem 0xd0000000-0xe1ffffff 64bit pref]
[    0.266741] pci 0000:00:01.1: PCI bridge to [bus 02]
[    0.266742] pci 0000:00:01.1:   bridge window [io  0xd000-0xdfff]
[    0.266744] pci 0000:00:01.1:   bridge window [mem 0xf4000000-0xf50fffff]
[    0.266745] pci 0000:00:01.1:   bridge window [mem 0xe8000000-0xf1ffffff 64bit pref]
[    0.266747] pci 0000:03:00.0: PCI bridge to [bus 04]
[    0.266749] pci 0000:03:00.0:   bridge window [io  0xc000-0xcfff]
[    0.266764] pci 0000:00:1c.0: PCI bridge to [bus 03-04]
[    0.266765] pci 0000:00:1c.0:   bridge window [io  0xc000-0xcfff]
[    0.266772] pci 0000:00:1c.3: PCI bridge to [bus 05]
[    0.266775] pci 0000:00:1c.3:   bridge window [mem 0xf7300000-0xf73fffff]
[    0.266780] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.266797] pci 0000:00:1c.4: PCI bridge to [bus 06-07]
[    0.266804] pci 0000:00:1c.5: PCI bridge to [bus 08]
[    0.266806] pci 0000:00:1c.5:   bridge window [io  0xb000-0xbfff]
[    0.266808] pci 0000:00:1c.5:   bridge window [mem 0xf7200000-0xf72fffff]
[    0.266814] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.266815] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.266815] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.266816] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000d3fff window]
[    0.266817] pci_bus 0000:00: resource 8 [mem 0x000d4000-0x000d7fff window]
[    0.266817] pci_bus 0000:00: resource 9 [mem 0x000d8000-0x000dbfff window]
[    0.266818] pci_bus 0000:00: resource 10 [mem 0x000dc000-0x000dffff window]
[    0.266819] pci_bus 0000:00: resource 11 [mem 0x000e0000-0x000e3fff window]
[    0.266820] pci_bus 0000:00: resource 12 [mem 0x000e4000-0x000e7fff window]
[    0.266820] pci_bus 0000:00: resource 13 [mem 0xd0000000-0xfeafffff window]
[    0.266821] pci_bus 0000:01: resource 0 [io  0xe000-0xefff]
[    0.266822] pci_bus 0000:01: resource 1 [mem 0xf6000000-0xf70fffff]
[    0.266822] pci_bus 0000:01: resource 2 [mem 0xd0000000-0xe1ffffff 64bit pref]
[    0.266823] pci_bus 0000:02: resource 0 [io  0xd000-0xdfff]
[    0.266824] pci_bus 0000:02: resource 1 [mem 0xf4000000-0xf50fffff]
[    0.266825] pci_bus 0000:02: resource 2 [mem 0xe8000000-0xf1ffffff 64bit pref]
[    0.266825] pci_bus 0000:03: resource 0 [io  0xc000-0xcfff]
[    0.266826] pci_bus 0000:03: resource 4 [io  0x0000-0x0cf7 window]
[    0.266827] pci_bus 0000:03: resource 5 [io  0x0d00-0xffff window]
[    0.266827] pci_bus 0000:03: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.266828] pci_bus 0000:03: resource 7 [mem 0x000d0000-0x000d3fff window]
[    0.266829] pci_bus 0000:03: resource 8 [mem 0x000d4000-0x000d7fff window]
[    0.266830] pci_bus 0000:03: resource 9 [mem 0x000d8000-0x000dbfff window]
[    0.266830] pci_bus 0000:03: resource 10 [mem 0x000dc000-0x000dffff window]
[    0.266831] pci_bus 0000:03: resource 11 [mem 0x000e0000-0x000e3fff window]
[    0.266832] pci_bus 0000:03: resource 12 [mem 0x000e4000-0x000e7fff window]
[    0.266832] pci_bus 0000:03: resource 13 [mem 0xd0000000-0xfeafffff window]
[    0.266833] pci_bus 0000:04: resource 0 [io  0xc000-0xcfff]
[    0.266834] pci_bus 0000:05: resource 1 [mem 0xf7300000-0xf73fffff]
[    0.266835] pci_bus 0000:08: resource 0 [io  0xb000-0xbfff]
[    0.266835] pci_bus 0000:08: resource 1 [mem 0xf7200000-0xf72fffff]
[    0.266850] NET: Registered protocol family 2
[    0.266977] TCP established hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.267183] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.267275] TCP: Hash tables configured (established 262144 bind 65536)
[    0.267298] UDP hash table entries: 16384 (order: 7, 524288 bytes)
[    0.267358] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes)
[    0.267425] NET: Registered protocol family 1
[    0.301396] pci 0000:01:00.0: Video device with shadowed ROM
[    0.301420] PCI: CLS 64 bytes, default 64
[    0.301446] Unpacking initramfs...
[    0.431669] Freeing initrd memory: 27132K (ffff880034af2000 - ffff880036571000)
[    0.431687] DMAR: No ATSR found
[    0.431746] DMAR: dmar0: Using Queued invalidation
[    0.431754] DMAR: Setting RMRR:
[    0.431765] DMAR: Setting identity map for device 0000:00:14.0 [0xcf50e000 - 0xcf51cfff]
[    0.431781] DMAR: Setting identity map for device 0000:00:1a.0 [0xcf50e000 - 0xcf51cfff]
[    0.431796] DMAR: Setting identity map for device 0000:00:1d.0 [0xcf50e000 - 0xcf51cfff]
[    0.431806] DMAR: Prepare 0-16MiB unity mapping for LPC
[    0.431811] DMAR: Setting identity map for device 0000:00:1f.0 [0x0 - 0xffffff]
[    0.431819] DMAR: Intel(R) Virtualization Technology for Directed I/O
[    0.431847] iommu: Adding device 0000:00:00.0 to group 0
[    0.431855] iommu: Adding device 0000:00:01.0 to group 1
[    0.431861] iommu: Adding device 0000:00:01.1 to group 2
[    0.431865] iommu: Adding device 0000:00:14.0 to group 3
[    0.431872] iommu: Adding device 0000:00:16.0 to group 4
[    0.431876] iommu: Adding device 0000:00:19.0 to group 5
[    0.431881] iommu: Adding device 0000:00:1a.0 to group 6
[    0.431885] iommu: Adding device 0000:00:1b.0 to group 7
[    0.431892] iommu: Adding device 0000:00:1c.0 to group 8
[    0.431896] iommu: Adding device 0000:00:1c.3 to group 9
[    0.431901] iommu: Adding device 0000:00:1c.4 to group 10
[    0.431906] iommu: Adding device 0000:00:1c.5 to group 11
[    0.431911] iommu: Adding device 0000:00:1d.0 to group 12
[    0.431920] iommu: Adding device 0000:00:1f.0 to group 13
[    0.431925] iommu: Adding device 0000:00:1f.2 to group 13
[    0.431930] iommu: Adding device 0000:00:1f.3 to group 13
[    0.431945] iommu: Adding device 0000:01:00.0 to group 14
[    0.431958] iommu: Adding device 0000:01:00.1 to group 14
[    0.431973] iommu: Adding device 0000:02:00.0 to group 15
[    0.431984] iommu: Adding device 0000:02:00.1 to group 15
[    0.431990] iommu: Adding device 0000:03:00.0 to group 16
[    0.431993] iommu: Adding device 0000:04:00.0 to group 16
[    0.431997] iommu: Adding device 0000:05:00.0 to group 17
[    0.432002] iommu: Adding device 0000:06:00.0 to group 18
[    0.432007] iommu: Adding device 0000:08:00.0 to group 19
[    0.432842] RAPL PMU detected, API unit is 2^-32 Joules, 4 fixed counters 655360 ms ovfl timer
[    0.432842] hw unit of domain pp0-core 2^-14 Joules
[    0.432843] hw unit of domain package 2^-14 Joules
[    0.432843] hw unit of domain dram 2^-14 Joules
[    0.432844] hw unit of domain pp1-gpu 2^-14 Joules
[    0.432927] Scanning for low memory corruption every 60 seconds
[    0.433072] futex hash table entries: 2048 (order: 5, 131072 bytes)
[    0.433269] Initialise system trusted keyring
[    0.433354] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.434018] zbud: loaded
[    0.434112] VFS: Disk quotas dquot_6.6.0
[    0.434127] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.434200] Key type big_key registered
[    0.434334] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 250)
[    0.434364] io scheduler noop registered
[    0.434365] io scheduler deadline registered
[    0.434379] io scheduler cfq registered (default)
[    0.434777] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.434780] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.434787] intel_idle: MWAIT substates: 0x42120
[    0.434788] intel_idle: v0.4 model 0x3C
[    0.434788] intel_idle: lapic_timer_reliable_states 0xffffffff
[    0.434951] GHES: HEST is not enabled!
[    0.434985] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[    0.455490] 00:05: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    0.455695] Linux agpgart interface v0.103
[    0.455996] rtc_cmos 00:02: RTC can wake from S4
[    0.456089] rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
[    0.456114] rtc_cmos 00:02: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[    0.456119] Intel P-state driver initializing.
[    0.456280] ledtrig-cpu: registered to indicate activity on CPUs
[    0.457206] NET: Registered protocol family 10
[    0.457661] NET: Registered protocol family 17
[    0.458627] microcode: CPU0 sig=0x306c3, pf=0x2, revision=0x19
[    0.458672] microcode: CPU1 sig=0x306c3, pf=0x2, revision=0x19
[    0.458717] microcode: CPU2 sig=0x306c3, pf=0x2, revision=0x19
[    0.458760] microcode: CPU3 sig=0x306c3, pf=0x2, revision=0x19
[    0.458782] microcode: CPU4 sig=0x306c3, pf=0x2, revision=0x19
[    0.458828] microcode: CPU5 sig=0x306c3, pf=0x2, revision=0x19
[    0.458872] microcode: CPU6 sig=0x306c3, pf=0x2, revision=0x19
[    0.458916] microcode: CPU7 sig=0x306c3, pf=0x2, revision=0x19
[    0.459073] microcode: Microcode Update Driver: v2.01 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    0.459631] registered taskstats version 1
[    0.459668] Loading compiled-in X.509 certificates
[    0.459717] zswap: loaded using pool lzo/zbud
[    0.461222]   Magic number: 8:718:885
[    0.461420] rtc_cmos 00:02: setting system clock to 2016-03-15 12:52:13 UTC (1458046333)
[    0.461615] PM: Hibernation image not present or could not be loaded.
[    0.464035] Freeing unused kernel memory: 1188K (ffffffff818ee000 - ffffffff81a17000)
[    0.464038] Write protecting the kernel read-only data: 8192k
[    0.464579] Freeing unused kernel memory: 388K (ffff88000159f000 - ffff880001600000)
[    0.465986] Freeing unused kernel memory: 228K (ffff8800017c7000 - ffff880001800000)
[    0.510273] dracut: dracut-044
[    0.552477] device-mapper: uevent: version 1.0.3
[    0.552515] device-mapper: ioctl: 4.34.0-ioctl (2015-10-28) initialised: dm-devel@redhat.com
[    0.556694] systemd-udevd[254]: starting version 3.1.5
[    0.556764] random: systemd-udevd urandom read with 1 bits of entropy available
[    0.561244] dracut: rd.md=0: removing MD RAID activation
[    0.578169] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    0.578564] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.578572] serio: i8042 AUX port at 0x60,0x64 irq 12
[    0.583621] ACPI: bus type USB registered
[    0.583636] usbcore: registered new interface driver usbfs
[    0.583641] usbcore: registered new interface driver hub
[    0.583663] usbcore: registered new device driver usb
[    0.583753] SCSI subsystem initialized
[    0.584464] AVX2 version of gcm_enc/dec engaged.
[    0.584465] AES CTR mode by8 optimization enabled
[    0.584574] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.584777] ehci-pci: EHCI PCI platform driver
[    0.584885] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    0.584890] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    0.584900] ehci-pci 0000:00:1a.0: debug port 2
[    0.588695] libata version 3.00 loaded.
[    0.588809] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[    0.588825] ehci-pci 0000:00:1a.0: irq 16, io mem 0xf5138000
[    0.601442] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    0.601651] hub 1-0:1.0: USB hub found
[    0.601654] hub 1-0:1.0: 2 ports detected
[    0.601807] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    0.601810] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    0.601818] ehci-pci 0000:00:1d.0: debug port 2
[    0.605715] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[    0.605724] ehci-pci 0000:00:1d.0: irq 23, io mem 0xf5137000
[    0.614759] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    0.614918] hub 2-0:1.0: USB hub found
[    0.614921] hub 2-0:1.0: 2 ports detected
[    0.615051] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    0.615054] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
[    0.616130] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x00009810
[    0.616133] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    0.616274] hub 3-0:1.0: USB hub found
[    0.616287] hub 3-0:1.0: 14 ports detected
[    0.618111] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    0.618119] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
[    0.618247] hub 4-0:1.0: USB hub found
[    0.618258] hub 4-0:1.0: 6 ports detected
[    0.618853] usb: port power management may be unreliable
[    0.618964] ahci 0000:00:1f.2: version 3.0
[    0.619063] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x3b impl SATA mode
[    0.619066] ahci 0000:00:1f.2: flags: 64bit ncq led clo pio slum part ems apst 
[    0.645065] scsi host0: ahci
[    0.645178] scsi host1: ahci
[    0.645264] scsi host2: ahci
[    0.645325] scsi host3: ahci
[    0.645380] scsi host4: ahci
[    0.645435] scsi host5: ahci
[    0.645457] ata1: SATA max UDMA/133 abar m2048@0xf5136000 port 0xf5136100 irq 28
[    0.645458] ata2: SATA max UDMA/133 abar m2048@0xf5136000 port 0xf5136180 irq 28
[    0.645458] ata3: DUMMY
[    0.645459] ata4: SATA max UDMA/133 abar m2048@0xf5136000 port 0xf5136280 irq 28
[    0.645461] ata5: SATA max UDMA/133 abar m2048@0xf5136000 port 0xf5136300 irq 28
[    0.645462] ata6: SATA max UDMA/133 abar m2048@0xf5136000 port 0xf5136380 irq 28
[    0.645616] ahci 0000:08:00.0: AHCI 0001.0000 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
[    0.645618] ahci 0000:08:00.0: flags: 64bit ncq sntf led only pmp fbs pio slum part sxs 
[    0.645788] scsi host6: ahci
[    0.645844] scsi host7: ahci
[    0.645865] ata7: SATA max UDMA/133 abar m512@0xf7210000 port 0xf7210100 irq 29
[    0.645867] ata8: SATA max UDMA/133 abar m512@0xf7210000 port 0xf7210180 irq 29
[    0.908037] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    0.921370] usb 2-1: new high-speed USB device number 2 using ehci-pci
[    0.924902] usb 4-5: new SuperSpeed USB device number 2 using xhci_hcd
[    0.941305] hub 4-5:1.0: USB hub found
[    0.941584] hub 4-5:1.0: 4 ports detected
[    0.964751] ata4: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    0.964756] ata7: SATA link down (SStatus 0 SControl 300)
[    0.964782] ata6: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    0.964786] ata8: SATA link down (SStatus 0 SControl 300)
[    0.964803] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    0.964816] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    0.965379] ata6.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded
[    0.965381] ata6.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[    0.965382] ata6.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
[    0.965876] ata6.00: ATA-9: WDC WD20EZRX-00D8PB0, 80.00A80, max UDMA/133
[    0.965878] ata6.00: 3907029168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    0.966470] ata6.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded
[    0.966472] ata6.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[    0.966473] ata6.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
[    0.966958] ata6.00: configured for UDMA/133
[    0.967766] ata4.00: ATAPI: HL-DT-ST DVDRAM GH22NS50, TN02, max UDMA/100
[    0.968047] ata5: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    0.968534] ata5.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded
[    0.968536] ata5.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[    0.968537] ata5.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
[    0.968965] ata5.00: ATA-8: WDC WD10EZRX-00L4HB0, 01.01A01, max UDMA/133
[    0.968966] ata5.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    0.969461] ata5.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded
[    0.969462] ata5.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[    0.969463] ata5.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
[    0.969882] ata5.00: configured for UDMA/133
[    0.971588] ata4.00: configured for UDMA/100
[    0.976565] ata2.00: ATA-8: SSD2SC120GB1DA16T-T, 502ABBF0, max UDMA/133
[    0.976567] ata2.00: 234441648 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    0.976882] ata1.00: ATA-8: SSD2SC120GB1DA16T-T, 502ABBF0, max UDMA/133
[    0.976883] ata1.00: 234441648 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    0.978055] usb 3-9: new high-speed USB device number 2 using xhci_hcd
[    0.986525] ata2.00: configured for UDMA/133
[    0.986771] ata1.00: configured for UDMA/133
[    0.986907] scsi 0:0:0:0: Direct-Access     ATA      SSD2SC120GB1DA16 BBF0 PQ: 0 ANSI: 5
[    0.987182] scsi 1:0:0:0: Direct-Access     ATA      SSD2SC120GB1DA16 BBF0 PQ: 0 ANSI: 5
[    0.990674] scsi 3:0:0:0: CD-ROM            HL-DT-ST DVDRAM GH22NS50  TN02 PQ: 0 ANSI: 5
[    0.999856] scsi 4:0:0:0: Direct-Access     ATA      WDC WD10EZRX-00L 1A01 PQ: 0 ANSI: 5
[    1.000105] scsi 5:0:0:0: Direct-Access     ATA      WDC WD20EZRX-00D 0A80 PQ: 0 ANSI: 5
[    1.001615] sd 0:0:0:0: [sda] 234441648 512-byte logical blocks: (120 GB/112 GiB)
[    1.001645] sd 0:0:0:0: [sda] Write Protect is off
[    1.001646] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.001659] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.001734] sd 1:0:0:0: [sdb] 234441648 512-byte logical blocks: (120 GB/112 GiB)
[    1.001759] sd 4:0:0:0: [sdc] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB)
[    1.001761] sd 4:0:0:0: [sdc] 4096-byte physical blocks
[    1.001776] sd 1:0:0:0: [sdb] Write Protect is off
[    1.001777] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    1.001778] sd 5:0:0:0: [sdd] 3907029168 512-byte logical blocks: (2.00 TB/1.82 TiB)
[    1.001780] sd 5:0:0:0: [sdd] 4096-byte physical blocks
[    1.001793] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.001794] sd 5:0:0:0: [sdd] Write Protect is off
[    1.001796] sd 5:0:0:0: [sdd] Mode Sense: 00 3a 00 00
[    1.001803] sd 5:0:0:0: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.001910]  sda: sda1
[    1.001918] sd 4:0:0:0: [sdc] Write Protect is off
[    1.001920] sd 4:0:0:0: [sdc] Mode Sense: 00 3a 00 00
[    1.001927] sd 4:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.002007] sd 0:0:0:0: [sda] Attached SCSI disk
[    1.002094]  sdb: sdb1
[    1.002260] sd 1:0:0:0: [sdb] Attached SCSI disk
[    1.018497] sr 3:0:0:0: [sr0] scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
[    1.018498] cdrom: Uniform CD-ROM driver Revision: 3.20
[    1.018602] sr 3:0:0:0: Attached scsi CD-ROM sr0
[    1.031897] hub 1-1:1.0: USB hub found
[    1.032002] hub 1-1:1.0: 6 ports detected
[    1.045274] hub 2-1:1.0: USB hub found
[    1.045378] hub 2-1:1.0: 8 ports detected
[    1.048210] usb 4-6: new SuperSpeed USB device number 3 using xhci_hcd
[    1.063509]  sdd: sdd1
[    1.063612] sd 5:0:0:0: [sdd] Attached SCSI disk
[    1.064549] hub 4-6:1.0: USB hub found
[    1.064835] hub 4-6:1.0: 4 ports detected
[    1.151903] hub 3-9:1.0: USB hub found
[    1.151929] hub 3-9:1.0: 4 ports detected
[    1.311417] usb 3-10: new high-speed USB device number 3 using xhci_hcd
[    1.434742] tsc: Refined TSC clocksource calibration: 3990.758 MHz
[    1.434743] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x730c85718cb, max_idle_ns: 881591244843 ns
[    1.485416] hub 3-10:1.0: USB hub found
[    1.485435] hub 3-10:1.0: 4 ports detected
[    1.611473] EXT4-fs (sdb1): mounted filesystem with ordered data mode. Opts: (null)
[    1.619775]  sdc: sdc1 sdc2 sdc3 sdc4
[    1.620008] sd 4:0:0:0: [sdc] Attached SCSI disk
[    1.643564] dracut: Checking ext4: /dev/disk/by-uuid/f0e6c86e-59a4-48cd-9762-a4e61ef6b982
[    1.643624] dracut: issuing e2fsck -a  /dev/disk/by-uuid/f0e6c86e-59a4-48cd-9762-a4e61ef6b982
[    1.646849] dracut: Void: Superblock last mount time is in the future.
[    1.646898] dracut: (by less than a day, probably due to the hardware clock being incorrectly set)
[    1.646936] dracut: Void: Superblock last write time is in the future.
[    1.646976] dracut: (by less than a day, probably due to the hardware clock being incorrectly set)
[    1.647012] dracut: Void: clean, 782641/7331840 files, 11683582/29304832 blocks
[    1.647738] dracut: Mounting /dev/disk/by-uuid/f0e6c86e-59a4-48cd-9762-a4e61ef6b982 with -o defaults,ro
[    1.651873] EXT4-fs (sdb1): mounted filesystem with ordered data mode. Opts: (null)
[    1.665112] dracut: Mounted root filesystem /dev/sdb1
[    1.768079] usb 3-10.1: new full-speed USB device number 4 using xhci_hcd
[    1.865239] dracut: Switching root
[    1.938826] fuse init (API version 7.23)
[    1.944729] usb 3-10.2: new full-speed USB device number 5 using xhci_hcd
[    1.998051] raid6: sse2x1   gen() 14600 MB/s
[    2.043052] usb 3-10.2: ep 0x81 - rounding interval to 64 microframes, ep desc says 80 microframes
[    2.043055] usb 3-10.2: ep 0x82 - rounding interval to 64 microframes, ep desc says 80 microframes
[    2.054712] raid6: sse2x1   xor() 11381 MB/s
[    2.111381] raid6: sse2x2   gen() 18576 MB/s
[    2.168045] raid6: sse2x2   xor() 12413 MB/s
[    2.224713] raid6: sse2x4   gen() 21403 MB/s
[    2.281381] raid6: sse2x4   xor() 14945 MB/s
[    2.338054] raid6: avx2x1   gen() 28514 MB/s
[    2.394735] raid6: avx2x2   gen() 33230 MB/s
[    2.451397] raid6: avx2x4   gen() 34311 MB/s
[    2.451398] clocksource: Switched to clocksource tsc
[    2.451399] raid6: using algorithm avx2x4 gen() 34311 MB/s
[    2.451400] raid6: using avx2x2 recovery algorithm
[    2.453238] xor: automatically using best checksumming function:
[    2.484713]    avx       : 45764.400 MB/sec
[    2.492005] Btrfs loaded
[    2.495097] loop: module loaded
[    2.496825] tun: Universal TUN/TAP device driver, 1.6
[    2.496826] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    2.499250] PPP generic driver version 2.4.2
[    2.502033] VFIO - User Level meta-driver version: 0.3
[    2.508757] Bluetooth: Core ver 2.21
[    2.508762] NET: Registered protocol family 31
[    2.508762] Bluetooth: HCI device and connection manager initialized
[    2.508764] Bluetooth: HCI socket layer initialized
[    2.508765] Bluetooth: L2CAP socket layer initialized
[    2.508770] Bluetooth: SCO socket layer initialized
[    2.509250] Bluetooth: Virtual HCI driver ver 1.5
[    2.511539] hidraw: raw HID events driver (C) Jiri Kosina
[    2.534077] udevd[582]: starting version 3.1.5
[    2.559244] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2
[    2.559249] ACPI: Power Button [PWRB]
[    2.559288] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[    2.559290] ACPI: Power Button [PWRF]
[    2.561726] FUJITSU Extended Socket Network Device Driver - version 1.0 - Copyright (c) 2015 FUJITSU LIMITED
[    2.562867] wmi: Mapper loaded
[    2.568224] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    2.569240] pps_core: LinuxPPS API ver. 1 registered
[    2.569241] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    2.569725] PTP clock support registered
[    2.572364] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
[    2.572365] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[    2.572442] e1000e 0000:00:19.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[    2.578305] thermal LNXTHERM:00: registered as thermal_zone0
[    2.578306] ACPI: Thermal Zone [TZ00] (28 C)
[    2.578682] thermal LNXTHERM:01: registered as thermal_zone1
[    2.578683] ACPI: Thermal Zone [TZ01] (30 C)
[    2.628243] input: PC Speaker as /devices/platform/pcspkr/input/input4
[    2.630298] [drm] Initialized drm 1.1.0 20060810
[    2.631238] Intel(R) Wireless WiFi driver for Linux
[    2.631240] Copyright(c) 2003- 2015 Intel Corporation
[    2.632875] iwlwifi 0000:05:00.0: Direct firmware load for iwlwifi-7260-17.ucode failed with error -2
[    2.636737] usbcore: registered new interface driver usbhid
[    2.636739] usbhid: USB HID core driver
[    2.644629] iwlwifi 0000:05:00.0: loaded firmware version 16.242414.0 op_mode iwlmvm
[    2.674354] random: nonblocking pool is initialized
[    2.686337] nvidia: module license 'NVIDIA' taints kernel.
[    2.686338] nvidia: module license 'NVIDIA' taints kernel.
[    2.686339] Disabling lock debugging due to kernel taint
[    2.692076] vgaarb: device changed decodes: PCI:0000:01:00.0,olddecodes=io+mem,decodes=none:owns=io+mem
[    2.692129] nvidia 0000:02:00.0: enabling device (0000 -> 0003)
[    2.692137] vgaarb: device changed decodes: PCI:0000:02:00.0,olddecodes=io+mem,decodes=none:owns=none
[    2.692216] [drm] Initialized nvidia-drm 0.0.0 20150116 for 0000:01:00.0 on minor 0
[    2.692244] [drm] Initialized nvidia-drm 0.0.0 20150116 for 0000:02:00.0 on minor 1
[    2.692246] NVRM: loading NVIDIA UNIX x86_64 Kernel Module  352.79  Wed Jan 13 16:17:53 PST 2016
[    2.693233] intel_rapl: Found RAPL domain package
[    2.693235] intel_rapl: Found RAPL domain core
[    2.693237] intel_rapl: Found RAPL domain dram
[    2.694164] iwlwifi 0000:05:00.0: Detected Intel(R) Dual Band Wireless AC 7260, REV=0x144
[    2.694213] iwlwifi 0000:05:00.0: L1 Disabled - LTR Enabled
[    2.694436] iwlwifi 0000:05:00.0: L1 Disabled - LTR Enabled
[    2.703749] hid-generic 0003:1038:1369.0001: hiddev0,hidraw0: USB HID v1.11 Device [SteelSeries Sensei Raw Gaming Mouse] on usb-0000:00:14.0-10.1/input0
[    2.703812] input: SteelSeries Sensei Raw Gaming Mouse as /devices/pci0000:00/0000:00:14.0/usb3/3-10/3-10.1/3-10.1:1.1/0003:1038:1369.0002/input/input6
[    2.703845] hid-generic 0003:1038:1369.0002: input,hidraw1: USB HID v1.11 Mouse [SteelSeries Sensei Raw Gaming Mouse] on usb-0000:00:14.0-10.1/input1
[    2.703905] input: SteelSeries Sensei Raw Gaming Mouse as /devices/pci0000:00/0000:00:14.0/usb3/3-10/3-10.1/3-10.1:1.2/0003:1038:1369.0003/input/input7
[    2.741607] e1000e 0000:00:19.0 eth0: registered PHC clock
[    2.741608] e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) 94:de:80:b7:d4:3b
[    2.741609] e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection
[    2.741643] e1000e 0000:00:19.0 eth0: MAC: 11, PHY: 12, PBA No: FFFFFF-0FF
[    2.741939] i801_smbus 0000:00:1f.3: enabling device (0001 -> 0003)
[    2.741944] ACPI Warning: SystemIO range 0x000000000000F000-0x000000000000F01F conflicts with OpRegion 0x000000000000F000-0x000000000000F00F (\_SB_.PCI0.SBUS.SMBI) (20150930/utaddress-254)
[    2.741948] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    2.742081] snd_hda_intel 0000:01:00.1: Disabling MSI
[    2.742084] snd_hda_intel 0000:01:00.1: Handle vga_switcheroo audio client
[    2.742158] snd_hda_intel 0000:02:00.1: Disabling MSI
[    2.742160] snd_hda_intel 0000:02:00.1: Handle vga_switcheroo audio client
[    2.742485] e1000e 0000:00:19.0 eno1: renamed from eth0
[    2.742728] iTCO_vendor_support: vendor-support=0
[    2.743044] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[    2.743057] iTCO_wdt: unable to reset NO_REBOOT flag, device disabled by hardware/BIOS
[    2.752446] snd_hda_codec_realtek hdaudioC1D2: autoconfig for ALC898: line_outs=4 (0x14/0x15/0x16/0x17/0x0) type:line
[    2.752447] snd_hda_codec_realtek hdaudioC1D2:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    2.752448] snd_hda_codec_realtek hdaudioC1D2:    hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
[    2.752449] snd_hda_codec_realtek hdaudioC1D2:    mono: mono_out=0x0
[    2.752449] snd_hda_codec_realtek hdaudioC1D2:    dig-out=0x11/0x1e
[    2.752450] snd_hda_codec_realtek hdaudioC1D2:    inputs:
[    2.752451] snd_hda_codec_realtek hdaudioC1D2:      Rear Mic=0x18
[    2.752452] snd_hda_codec_realtek hdaudioC1D2:      Front Mic=0x19
[    2.752453] snd_hda_codec_realtek hdaudioC1D2:      Line=0x1a
[    2.752453] snd_hda_codec_realtek hdaudioC1D2:      CD=0x1c
[    2.752454] snd_hda_codec_realtek hdaudioC1D2:    dig-in=0x1f
[    2.754774] hid-generic 0003:1038:1369.0003: input,hidraw2: USB HID v1.11 Keyboard [SteelSeries Sensei Raw Gaming Mouse] on usb-0000:00:14.0-10.1/input2
[    2.755107] input: SteelSeries Sensei Raw Gaming Mouse as /devices/pci0000:00/0000:00:14.0/usb3/3-10/3-10.1/3-10.1:1.3/0003:1038:1369.0004/input/input8
[    2.766997] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/sound/card1/input9
[    2.808192] hid-generic 0003:1038:1369.0004: input,hidraw3: USB HID v1.11 Device [SteelSeries Sensei Raw Gaming Mouse] on usb-0000:00:14.0-10.1/input3
[    2.808290] input: zhihaihe elec c0 zhihaihe  keyboard as /devices/pci0000:00/0000:00:14.0/usb3/3-10/3-10.2/3-10.2:1.0/0003:FFFF:104E.0005/input/input17
[    2.808407] input: HDA Intel PCH Rear Mic as /devices/pci0000:00/0000:00:1b.0/sound/card1/input10
[    2.861588] input: HDA Intel PCH Front Mic as /devices/pci0000:00/0000:00:1b.0/sound/card1/input11
[    2.861597] hid-generic 0003:FFFF:104E.0005: input,hidraw4: USB HID v1.11 Keyboard [zhihaihe elec c0 zhihaihe  keyboard] on usb-0000:00:14.0-10.2/input0
[    2.861631] input: HDA Intel PCH Line as /devices/pci0000:00/0000:00:1b.0/sound/card1/input12
[    2.861672] input: HDA Intel PCH Line Out Front as /devices/pci0000:00/0000:00:1b.0/sound/card1/input13
[    2.861722] input: HDA Intel PCH Line Out Surround as /devices/pci0000:00/0000:00:1b.0/sound/card1/input14
[    2.861799] input: HDA Intel PCH Line Out CLFE as /devices/pci0000:00/0000:00:1b.0/sound/card1/input15
[    2.861882] input: HDA Intel PCH Line Out Side as /devices/pci0000:00/0000:00:1b.0/sound/card1/input16
[    2.862260] input: zhihaihe elec c0 zhihaihe  keyboard as /devices/pci0000:00/0000:00:14.0/usb3/3-10/3-10.2/3-10.2:1.1/0003:FFFF:104E.0006/input/input18
[    2.894697] ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
[    2.895533] iwlwifi 0000:05:00.0 wlp5s0: renamed from wlan0
[    2.914857] hid-generic 0003:FFFF:104E.0006: input,hidraw5: USB HID v1.11 Keyboard [zhihaihe elec c0 zhihaihe  keyboard] on usb-0000:00:14.0-10.2/input1
[    2.917085] mousedev: PS/2 mouse device common for all mice
[    2.935066] input: Xonar DSX Headphone as /devices/pci0000:00/0000:00:1c.0/0000:03:00.0/0000:04:00.0/sound/card0/input19
[    3.158315] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.1/0000:02:00.1/sound/card3/input21
[    3.158348] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.1/0000:02:00.1/sound/card3/input23
[    3.158379] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.1/0000:02:00.1/sound/card3/input25
[    3.158485] input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.1/0000:02:00.1/sound/card3/input27
[    3.158748] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card2/input20
[    3.158775] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card2/input22
[    3.158806] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card2/input24
[    3.158846] input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card2/input26
[    3.270961] EXT4-fs (sdb1): re-mounted. Opts: (null)
[    4.248539] EXT4-fs (sdb1): re-mounted. Opts: (null)
[    4.293015] EXT4-fs (sdc1): mounted filesystem with ordered data mode. Opts: (null)
[    4.321449] EXT4-fs (sdc2): mounted filesystem with ordered data mode. Opts: (null)
[    4.343131] EXT4-fs (sdc3): mounted filesystem with ordered data mode. Opts: (null)
[    4.359253] EXT4-fs (sdc4): mounted filesystem with ordered data mode. Opts: (null)
[    4.382636] EXT4-fs (sdd1): mounted filesystem with ordered data mode. Opts: (null)
[    4.401385] nvidia_uvm: Loaded the UVM driver, major device number 242
[    4.425125] udevd[748]: starting version 3.1.5
[    4.617541] iwlwifi 0000:05:00.0: L1 Disabled - LTR Enabled
[    4.617766] iwlwifi 0000:05:00.0: L1 Disabled - LTR Enabled
[    4.812790] iwlwifi 0000:05:00.0: L1 Disabled - LTR Enabled
[    4.813030] iwlwifi 0000:05:00.0: L1 Disabled - LTR Enabled
[    5.486029] ip_tables: (C) 2000-2006 Netfilter Core Team
[    5.488312] ip6_tables: (C) 2000-2006 Netfilter Core Team
[    5.494395] Ebtables v2.0 registered
[   25.293353] e1000e: eno1 NIC Link is Up 100 Mbps Full Duplex, Flow Control: Rx/Tx
[   25.293357] e1000e 0000:00:19.0 eno1: 10/100 speed: disabling TSO

 

 

Link to comment
https://linustechtips.com/topic/566193-void-linux-vfio/
Share on other sites

Link to post
Share on other sites

Just now, AustinJ said:

@AlexTheRose I think what the issue seems to be is that the /etc/modprobe.d/vfio.conf isn't being loaded. I blacklisted the nvidia and nouveau driver in /etc/modprobe.d and nvidia loaded up just fine yet.

 

I just added "vfio-pci.ids=10de:1004,10de:0e1a" to the end of my kernel line since it doesn't seem to load properly from that location.

Link to comment
https://linustechtips.com/topic/566193-void-linux-vfio/#findComment-7439805
Share on other sites

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×