You are not logged in.

#1 2017-09-27 00:36:57

phil.r.dubois
Member
From: Canada
Registered: 2017-09-26
Posts: 7

[Solved] Installation media cannot find USB partition ARCH_201709

Hello all.

I'm a long time lurker and first time poster here, I'm very familiar with Arch Linux and have installed it many times before, but now I've run into a problem. I just recently bought a used Dell Precision T3600 and am attempting to install Arch on it. However, regardless of whether I'm in UEFI or legacy mode, the flash drive will boot up until the point where it attempts to mount the /dev/disks/by-label/ARCH_201709 partition and it fails to find it.

I burned the iso to the flash drive using the dd method as I've done many times before and it boots just fine on my laptop. This is what I see when I boot on the workstation:

:: Mounting '/dev/disk/by-label/ARCH_201709' to '/run/archiso/bootmnt'
Waiting 30 seconds for device /dev/disk/by-label/ARCH_201709 ...
ERROR: '/dev/disk/by-label/ARCH_201709' device did not show up after 30 seconds...
   Falling back to interactive prompt
   You can try to fix the problem manually, log out when you are finished
sh: can't access tty; job control turned off
[rootfs ]# 

As a side note, it takes forever when it runs the memdisk hook before showing this message. It might have to do with the fact that the system has 32GB of RAM, but I'm not too familiar with this part of the boot process.

Further information:
Running 'cat /proc/scsi/scsi' simply displays 'Attached devices:' without listing anything.
Also, trying 'ls /dev/disk' returns 'ls: /dev/disk: no such file or directory' and there aren't any media devices in /dev .
Typing in 'blkid' returns nothing.
Booting from different USB ports does not make a difference.
I even tried updating the BIOS EFI to no effect.


Please advise,
Thanks,
Phil.

Last edited by phil.r.dubois (2017-10-03 20:30:07)

Offline

#2 2017-09-27 12:25:23

unixman
Member
Registered: 2015-03-12
Posts: 64

Re: [Solved] Installation media cannot find USB partition ARCH_201709

hi. if you xp'd archer try to use 'live usb'  method  not 'dd'.  Manually edid/build initramfs for your HW.

Check bios for usb ports 'enabled'.

Offline

#3 2017-09-28 03:01:48

phil.r.dubois
Member
From: Canada
Registered: 2017-09-26
Posts: 7

Re: [Solved] Installation media cannot find USB partition ARCH_201709

Hello unixman,

Thanks for your recommendation. First off, the BIOS does have USB ports enabled.
Now, I just attempted the Live USB method and I ran into the exact same problem, but it fails while triggering uevents. This time, my USB keyboard does not work however.

Regards,
Phil.

Last edited by phil.r.dubois (2017-09-28 04:02:54)

Offline

#4 2017-09-28 08:44:26

unixman
Member
Registered: 2015-03-12
Posts: 64

Re: [Solved] Installation media cannot find USB partition ARCH_201709

you have to manually edid then rebuild initramfs if you use Live USB method.

if your laptop supports UEFI,  I recommended to use it for boot. it is more easier to setup and more flexible IMO. So create an EFI partition on USB thumb. And follow that path so on. WIKI has great info about it. This is my own 'etc/mkinitcpio.conf' as example.

MODULES="sd_mod ata_piix ata_generic ext4 atkbd"
HOOKS="base"
COMPRESSION="cat"

You have to examine your 'MODULES' line and replace it. For me, above modules enought for mount 'root'  filesystem. Even 'atkbd' above not mandatory which i put it there just for keyboard support in 'initramfs'  phase.

Finally you pass 'root=/dev/sdX' to  kernel cmdline  where 'X'  represent  USB thumb.

Offline

#5 2017-09-29 01:46:13

phil.r.dubois
Member
From: Canada
Registered: 2017-09-26
Posts: 7

Re: [Solved] Installation media cannot find USB partition ARCH_201709

Yeah, I've tried different hooks and different modules. The problem is that I don't know enough about modules and I can't seem to find much information on the wiki. There's plenty regarding hooks so I'm sure I have it the way I need it.

Offline

#6 2017-09-29 12:30:08

unixman
Member
Registered: 2015-03-12
Posts: 64

Re: [Solved] Installation media cannot find USB partition ARCH_201709

i am not %100 certain  but below works for me.

"sd_mod ata_piix ata_generic"  --->  for legacy ata HDDs
"sd_mod ahci"                            --->  for sata ahci HDDs
"uas ehci_pci"                            --->  for USB 2.0 ports/thumbs
"uas xhci_pci"                            --->  for USB 3.0 ports/thumbs
"ext4 f2fs ... etc"                       --->  one of them for root filesystem type respectivelly

So you only need a few modules for mounting 'root'  partition. When root mounted successfully, systemd  determine and loads other modules automatically.

Normally, you even dont need keyboard module into initramfs. It is just for touruble cases.

Only 'base' hook is mandatory, others are optional and can be stripped safely for simple configurations.

But luks,raid ... etc  you need its hooks.

NOTICE: You need USB modules above.

Last edited by unixman (2017-09-29 12:46:09)

Offline

#7 2017-09-29 22:30:16

phil.r.dubois
Member
From: Canada
Registered: 2017-09-26
Posts: 7

Re: [Solved] Installation media cannot find USB partition ARCH_201709

One (or more) of those did the trick. Thanks a lot!

By the way, you don't require to list filesystems if you use the filesystems hook.

Offline

#8 2017-09-30 01:33:21

phil.r.dubois
Member
From: Canada
Registered: 2017-09-26
Posts: 7

Re: [Solved] Installation media cannot find USB partition ARCH_201709

It would seem I spoke too soon. It worked once. I installed arch onto my hard drive using the same modules and hooks that worked on the LiveUSB, rebooted, and was faced with the same problem. Just in case I did something wrong, I booted the LiveUSB and alas, the problem is back. Although I do not know why. Running blkid at the interactive prompt displays my internal hard drives this time, but none of the flash drives show up. Running lsmod shows that the necessary modules are running, so I don't know what's going on.

As a note: I encrypted my partitions on my hard drives and am using a flash drive for a boot/EFI partition. I have it set up this way on my laptop, so I know I set it up properly. However, since the system cannot locate my flash drive, it fails to boot. I can manually decrypt my root partition and mount it, and it will continue booting but once I log in, my flash drives are still not detected.

Any ideas?

Thanks,
Phil.

Last edited by phil.r.dubois (2017-09-30 01:52:59)

Offline

#9 2017-10-01 12:20:36

loqs
Member
Registered: 2014-03-06
Posts: 17,321

Re: [Solved] Installation media cannot find USB partition ARCH_201709

See the tip box by pastebin and post the output of dmesg of the installed system to a pastebin please.

Offline

#10 2017-10-02 00:12:55

phil.r.dubois
Member
From: Canada
Registered: 2017-09-26
Posts: 7

Re: [Solved] Installation media cannot find USB partition ARCH_201709

Thank you for the reply, loqs. Below is the output of dmesg. The SanDisk Cruzer mentioned is the flash drive containing the boot/EFI partition, and [  131.817712] is where it puts me into the interactive prompt and I have to manually unlock and mount the root partition. I'm not sure why it doesn't ask for a password instead since it's just the keyfile it can't find on the boot partition but I can figure that one out on my own once I actually have access to the boot partition. It's most likely an error I made in entering the UUIDs or something simple. Regardless, this USB detection problem is an issue I cannot resolve on my own.

Thanks,
Phil.

[    0.000000] random: get_random_bytes called from start_kernel+0x42/0x4b7 with crng_init=0
[    0.000000] Linux version 4.13.3-1-ARCH (builduser@tobias) (gcc version 7.2.0 (GCC)) #1 SMP PREEMPT Thu Sep 21 20:33:16 CEST 2017
[    0.000000] Command line: initrd=\intel-ucode.img initrd=\initramfs-linux.img
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000018ebafff] usable
[    0.000000] BIOS-e820: [mem 0x0000000018ebb000-0x0000000018fe7fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000018fe8000-0x0000000018fe8fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000018fe9000-0x0000000018ffffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000019000000-0x000000001dffcfff] usable
[    0.000000] BIOS-e820: [mem 0x000000001dffd000-0x000000001dffffff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000001e000000-0x00000000ac77cfff] usable
[    0.000000] BIOS-e820: [mem 0x00000000ac77d000-0x00000000ac813fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ac814000-0x00000000ad7fffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000b3ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed20000-0x00000000fed3ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed50000-0x00000000fed8ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ffa00000-0x00000000ffa3ffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000084fffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] e820: update [mem 0xab5d7018-0xab5e6057] usable ==> usable
[    0.000000] e820: update [mem 0xab5d7018-0xab5e6057] usable ==> usable
[    0.000000] e820: update [mem 0xab5c6018-0xab5d6057] usable ==> usable
[    0.000000] e820: update [mem 0xab5c6018-0xab5d6057] usable ==> usable
[    0.000000] e820: update [mem 0xab5ab018-0xab5c5657] usable ==> usable
[    0.000000] e820: update [mem 0xab5ab018-0xab5c5657] usable ==> usable
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000009ffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x0000000018ebafff] usable
[    0.000000] reserve setup_data: [mem 0x0000000018ebb000-0x0000000018fe7fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x0000000018fe8000-0x0000000018fe8fff] usable
[    0.000000] reserve setup_data: [mem 0x0000000018fe9000-0x0000000018ffffff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x0000000019000000-0x000000001dffcfff] usable
[    0.000000] reserve setup_data: [mem 0x000000001dffd000-0x000000001dffffff] ACPI data
[    0.000000] reserve setup_data: [mem 0x000000001e000000-0x00000000ab5ab017] usable
[    0.000000] reserve setup_data: [mem 0x00000000ab5ab018-0x00000000ab5c5657] usable
[    0.000000] reserve setup_data: [mem 0x00000000ab5c5658-0x00000000ab5c6017] usable
[    0.000000] reserve setup_data: [mem 0x00000000ab5c6018-0x00000000ab5d6057] usable
[    0.000000] reserve setup_data: [mem 0x00000000ab5d6058-0x00000000ab5d7017] usable
[    0.000000] reserve setup_data: [mem 0x00000000ab5d7018-0x00000000ab5e6057] usable
[    0.000000] reserve setup_data: [mem 0x00000000ab5e6058-0x00000000ac77cfff] usable
[    0.000000] reserve setup_data: [mem 0x00000000ac77d000-0x00000000ac813fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000ac814000-0x00000000ad7fffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000b0000000-0x00000000b3ffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed20000-0x00000000fed3ffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed50000-0x00000000fed8ffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000ffa00000-0x00000000ffa3ffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000084fffffff] usable
[    0.000000] efi: EFI v2.00 by American Megatrends
[    0.000000] efi:  ACPI 2.0=0x1dffff98  SMBIOS=0xac811018 
[    0.000000] random: fast init done
[    0.000000] SMBIOS 2.6 present.
[    0.000000] DMI: Dell Inc. Precision T3600/08HPGT, BIOS A15 05/08/2017
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x850000 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-D3FFF write-protect
[    0.000000]   D4000-DFFFF write-through
[    0.000000]   E0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000000 mask 3FF800000000 write-back
[    0.000000]   1 base 000800000000 mask 3FFFC0000000 write-back
[    0.000000]   2 base 000840000000 mask 3FFFF0000000 write-back
[    0.000000]   3 base 0000AE000000 mask 3FFFFE000000 uncachable
[    0.000000]   4 base 0000B0000000 mask 3FFFF0000000 uncachable
[    0.000000]   5 base 0000C0000000 mask 3FFFC0000000 uncachable
[    0.000000]   6 disabled
[    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: update [mem 0xae000000-0xffffffff] usable ==> reserved
[    0.000000] e820: last_pfn = 0xad800 max_arch_pfn = 0x400000000
[    0.000000] found SMP MP-table at [mem 0x000f1db0-0x000f1dbf] mapped at [ffff8e7f000f1db0]
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] Base memory trampoline at [ffff8e7f00094000] 94000 size 24576
[    0.000000] Using GB pages for direct mapping
[    0.000000] BRK [0x64fd5e000, 0x64fd5efff] PGTABLE
[    0.000000] BRK [0x64fd5f000, 0x64fd5ffff] PGTABLE
[    0.000000] BRK [0x64fd60000, 0x64fd60fff] PGTABLE
[    0.000000] BRK [0x64fd61000, 0x64fd61fff] PGTABLE
[    0.000000] BRK [0x64fd62000, 0x64fd62fff] PGTABLE
[    0.000000] BRK [0x64fd63000, 0x64fd63fff] PGTABLE
[    0.000000] BRK [0x64fd64000, 0x64fd64fff] PGTABLE
[    0.000000] BRK [0x64fd65000, 0x64fd65fff] PGTABLE
[    0.000000] BRK [0x64fd66000, 0x64fd66fff] PGTABLE
[    0.000000] BRK [0x64fd67000, 0x64fd67fff] PGTABLE
[    0.000000] BRK [0x64fd68000, 0x64fd68fff] PGTABLE
[    0.000000] Secure boot disabled
[    0.000000] RAMDISK: [mem 0x7ee8f000-0x7fffefff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x000000001DFFFF98 000024 (v02 DELL  )
[    0.000000] ACPI: XSDT 0x000000001DFFEE18 000074 (v01 DELL   CBX3     06222004 MSFT 00010013)
[    0.000000] ACPI: FACP 0x0000000018FF0C18 0000F4 (v04 DELL   CBX3     06222004 MSFT 00010013)
[    0.000000] ACPI: DSDT 0x0000000018FA9018 006373 (v01 DELL   CBX3     00000000 INTL 20091112)
[    0.000000] ACPI: FACS 0x0000000018FFDF40 000040
[    0.000000] ACPI: FACS 0x0000000018FF1F40 000040
[    0.000000] ACPI: APIC 0x000000001DFFDC18 000158 (v02 DELL   CBX3     06222004 MSFT 00010013)
[    0.000000] ACPI: MCFG 0x0000000018FFED18 00003C (v01 A M I  OEMMCFG. 06222004 MSFT 00000097)
[    0.000000] ACPI: TCPA 0x0000000018FFEC98 000032 (v02                 00000000      00000000)
[    0.000000] ACPI: SSDT 0x0000000018FEFA98 000306 (v01 DELLTP TPM      00003000 INTL 20091112)
[    0.000000] ACPI: HPET 0x0000000018FFEC18 000038 (v01 A M I   PCHHPET 06222004 AMI. 00000003)
[    0.000000] ACPI: BOOT 0x0000000018FFEB98 000028 (v01 DELL   CBX3     06222004 AMI  00010013)
[    0.000000] ACPI: SSDT 0x0000000018FB0018 037106 (v02 INTEL  CpuPm    00004000 INTL 20091112)
[    0.000000] ACPI: SLIC 0x0000000018FEEC18 000176 (v03 DELL   CBX3     06222004 MSFT 00010013)
[    0.000000] ACPI: DMAR 0x0000000018FF0F18 000094 (v01 A M I  OEMDMAR  00000001 INTL 00000001)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000084fffffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x84fffb000-0x84fffffff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x000000084fffffff]
[    0.000000]   Device   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000009ffff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x0000000018ebafff]
[    0.000000]   node   0: [mem 0x0000000018fe8000-0x0000000018fe8fff]
[    0.000000]   node   0: [mem 0x0000000019000000-0x000000001dffcfff]
[    0.000000]   node   0: [mem 0x000000001e000000-0x00000000ac77cfff]
[    0.000000]   node   0: [mem 0x00000000ac814000-0x00000000ad7fffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x000000084fffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000084fffffff]
[    0.000000] On node 0 totalpages: 8377793
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 45 pages reserved
[    0.000000]   DMA zone: 3999 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 11033 pages used for memmap
[    0.000000]   DMA32 zone: 706082 pages, LIFO batch:31
[    0.000000]   Normal zone: 119808 pages used for memmap
[    0.000000]   Normal zone: 7667712 pages, LIFO batch:31
[    0.000000] ACPI: PM-Timer IO Port: 0x408
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[    0.000000] IOAPIC[1]: apic_id 2, version 32, address 0xfec3f000, GSI 24-47
[    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 32 CPUs, 24 hotplug CPUs
[    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x18ebb000-0x18fe7fff]
[    0.000000] PM: Registered nosave memory: [mem 0x18fe9000-0x18ffffff]
[    0.000000] PM: Registered nosave memory: [mem 0x1dffd000-0x1dffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xab5ab000-0xab5abfff]
[    0.000000] PM: Registered nosave memory: [mem 0xab5c5000-0xab5c5fff]
[    0.000000] PM: Registered nosave memory: [mem 0xab5c6000-0xab5c6fff]
[    0.000000] PM: Registered nosave memory: [mem 0xab5d6000-0xab5d6fff]
[    0.000000] PM: Registered nosave memory: [mem 0xab5d7000-0xab5d7fff]
[    0.000000] PM: Registered nosave memory: [mem 0xab5e6000-0xab5e6fff]
[    0.000000] PM: Registered nosave memory: [mem 0xac77d000-0xac813fff]
[    0.000000] PM: Registered nosave memory: [mem 0xad800000-0xafffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xb0000000-0xb3ffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xb4000000-0xfed1ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfed3ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed40000-0xfed4ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed50000-0xfed8ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed90000-0xff9fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xffa00000-0xffa3ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xffa40000-0xffffffff]
[    0.000000] e820: [mem 0xb4000000-0xfed1ffff] 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:32 nr_node_ids:1
[    0.000000] percpu: Embedded 36 pages/cpu @ffff8e872ee00000 s106520 r8192 d32744 u262144
[    0.000000] pcpu-alloc: s106520 r8192 d32744 u262144 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 
[    0.000000] pcpu-alloc: [0] 16 17 18 19 20 21 22 23 [0] 24 25 26 27 28 29 30 31 
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 8246843
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: initrd=\intel-ucode.img initrd=\initramfs-linux.img
[    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: 32820344K/33511172K available (6603K kernel code, 1126K rwdata, 2036K rodata, 1328K init, 900K bss, 690828K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=32, Nodes=1
[    0.000000] ftrace: allocating 28108 entries in 110 pages
[    0.000000] Preemptible hierarchical RCU implementation.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=32.
[    0.000000] 	Tasks RCU enabled.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=32
[    0.000000] NR_IRQS: 8448, nr_irqs: 1088, preallocated irqs: 16
[    0.000000] Console: colour dummy device 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.003333] tsc: Detected 3591.642 MHz processor
[    0.003333] Calibrating delay loop (skipped), value calculated using timer frequency.. 7186.58 BogoMIPS (lpj=11972140)
[    0.003333] pid_max: default: 32768 minimum: 301
[    0.003333] ACPI: Core revision 20170531
[    0.014137] ACPI: 3 ACPI AML tables successfully acquired and loaded
[    0.016573] Security Framework initialized
[    0.016574] Yama: becoming mindful.
[    0.020680] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes)
[    0.022752] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes)
[    0.022833] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes)
[    0.022900] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes)
[    0.023088] CPU: Physical Processor ID: 0
[    0.023089] CPU: Processor Core ID: 0
[    0.023096] mce: CPU supports 16 MCE banks
[    0.023105] CPU0: Thermal monitoring enabled (TM1)
[    0.023126] process: using mwait in idle threads
[    0.023129] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[    0.023129] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
[    0.023479] Freeing SMP alternatives memory: 24K
[    0.025423] smpboot: Max logical packages: 8
[    0.025433] DMAR: Host address width 46
[    0.025435] DMAR: DRHD base: 0x000000fbffe000 flags: 0x1
[    0.025439] DMAR: dmar0: reg_base_addr fbffe000 ver 1:0 cap d2078c106f0462 ecap f020fa
[    0.025440] DMAR: RMRR base: 0x000000ac7c8000 end: 0x000000ac7d7fff
[    0.025441] DMAR: RHSA base: 0x000000fbffe000 proximity domain: 0x0
[    0.025443] DMAR-IR: IOAPIC id 0 under DRHD base  0xfbffe000 IOMMU 0
[    0.025444] DMAR-IR: IOAPIC id 2 under DRHD base  0xfbffe000 IOMMU 0
[    0.025444] DMAR-IR: HPET id 0 under DRHD base 0xfbffe000
[    0.025445] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[    0.025663] DMAR-IR: Enabled IRQ remapping in x2apic mode
[    0.025664] x2apic enabled
[    0.025668] Switched APIC routing to cluster x2apic.
[    0.026159] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.059204] TSC deadline timer enabled
[    0.059207] smpboot: CPU0: Intel(R) Xeon(R) CPU E5-1620 0 @ 3.60GHz (family: 0x6, model: 0x2d, stepping: 0x7)
[    0.070021] Performance Events: PEBS fmt1+, SandyBridge events, 16-deep LBR, full-width counters, Intel PMU driver.
[    0.070054] ... version:                3
[    0.070055] ... bit width:              48
[    0.070055] ... generic registers:      4
[    0.070055] ... value mask:             0000ffffffffffff
[    0.070056] ... max period:             00007fffffffffff
[    0.070056] ... fixed-purpose events:   3
[    0.070057] ... event mask:             000000070000000f
[    0.076678] Hierarchical SRCU implementation.
[    0.090512] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.096678] smp: Bringing up secondary CPUs ...
[    0.123382] x86: Booting SMP configuration:
[    0.123382] .... node  #0, CPUs:        #1  #2  #3  #4  #5  #6  #7
[    0.868700] smp: Brought up 1 node, 8 CPUs
[    0.868700] smpboot: Total of 8 processors activated (57501.72 BogoMIPS)
[    0.870915] devtmpfs: initialized
[    0.870915] x86/mm: Memory block size: 128MB
[    0.871718] PM: Registering ACPI NVS region [mem 0x18ebb000-0x18fe7fff] (1232896 bytes)
[    0.871718] PM: Registering ACPI NVS region [mem 0x18fe9000-0x18ffffff] (94208 bytes)
[    0.871718] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[    0.871718] futex hash table entries: 8192 (order: 7, 524288 bytes)
[    0.871718] pinctrl core: initialized pinctrl subsystem
[    0.871718] RTC time: 23:41:26, date: 10/01/17
[    0.874119] NET: Registered protocol family 16
[    0.874226] cpuidle: using governor ladder
[    0.874226] cpuidle: using governor menu
[    0.874226] PCCT header not found.
[    0.874226] Simple Boot Flag at 0xf3 set to 0x1
[    0.874226] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.874226] ACPI: bus type PCI registered
[    0.874226] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.874226] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xb0000000-0xb3ffffff] (base 0xb0000000)
[    0.874226] PCI: MMCONFIG at [mem 0xb0000000-0xb3ffffff] reserved in E820
[    0.874226] pmd_set_huge: Cannot satisfy [mem 0xb0000000-0xb0200000] with a huge-page mapping due to MTRR override.
[    0.874226] PCI: Using configuration type 1 for base access
[    0.874226] core: PMU erratum BJ122, BV98, HSD29 worked around, HT is on
[    0.877160] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.877160] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.877160] ACPI: Added _OSI(Module Device)
[    0.877160] ACPI: Added _OSI(Processor Device)
[    0.877160] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.877160] ACPI: Added _OSI(Processor Aggregator Device)
[    0.877160] ACPI: Executed 1 blocks of module-level executable AML code
[    0.947868] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.950502] ACPI: Interpreter enabled
[    0.950545] ACPI: (supports S0 S1 S3 S4 S5)
[    0.950547] ACPI: Using IOAPIC for interrupt routing
[    0.950596] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.964022] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-1f])
[    0.964030] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.964287] acpi PNP0A08:00: _OSC: platform does not support [AER PCIeCapability]
[    0.964406] acpi PNP0A08:00: _OSC: not requesting control; platform does not support [PCIeCapability]
[    0.964409] acpi PNP0A08:00: _OSC: OS requested [PCIeHotplug PME AER PCIeCapability]
[    0.964412] acpi PNP0A08:00: _OSC: platform willing to grant [PCIeHotplug PME]
[    0.964415] acpi PNP0A08:00: _OSC failed (AE_SUPPORT); disabling ASPM
[    0.964977] PCI host bridge to bus 0000:00
[    0.964982] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    0.964985] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    0.964987] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
[    0.964990] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.964992] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.964995] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
[    0.964997] pci_bus 0000:00: root bus resource [mem 0xb0000000-0xfbffffff window]
[    0.965000] pci_bus 0000:00: root bus resource [bus 00-1f]
[    0.965019] pci 0000:00:00.0: [8086:3c00] type 00 class 0x060000
[    0.965126] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold
[    0.965309] pci 0000:00:01.0: [8086:3c02] type 01 class 0x060400
[    0.965421] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.965611] pci 0000:00:01.1: [8086:3c03] type 01 class 0x060400
[    0.965723] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
[    0.965914] pci 0000:00:02.0: [8086:3c04] type 01 class 0x060400
[    0.966024] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
[    0.966213] pci 0000:00:03.0: [8086:3c08] type 01 class 0x060400
[    0.966325] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
[    0.966510] pci 0000:00:05.0: [8086:3c28] type 00 class 0x088000
[    0.966739] pci 0000:00:05.2: [8086:3c2a] type 00 class 0x088000
[    0.966962] pci 0000:00:05.4: [8086:3c2c] type 00 class 0x080020
[    0.966984] pci 0000:00:05.4: reg 0x10: [mem 0xdf32d000-0xdf32dfff]
[    0.967208] pci 0000:00:11.0: [8086:1d3e] type 01 class 0x060400
[    0.967334] pci 0000:00:11.0: PME# supported from D0 D3hot D3cold
[    0.967518] pci 0000:00:16.0: [8086:1d3a] type 00 class 0x078000
[    0.967551] pci 0000:00:16.0: reg 0x10: [mem 0xdf32c000-0xdf32c00f 64bit]
[    0.967646] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.967794] pci 0000:00:16.3: [8086:1d3d] type 00 class 0x070002
[    0.967819] pci 0000:00:16.3: reg 0x10: [io  0xf0a0-0xf0a7]
[    0.967828] pci 0000:00:16.3: reg 0x14: [mem 0xdf32a000-0xdf32afff]
[    0.968046] pci 0000:00:19.0: [8086:1502] type 00 class 0x020000
[    0.968072] pci 0000:00:19.0: reg 0x10: [mem 0xdf300000-0xdf31ffff]
[    0.968083] pci 0000:00:19.0: reg 0x14: [mem 0xdf329000-0xdf329fff]
[    0.968094] pci 0000:00:19.0: reg 0x18: [io  0xf040-0xf05f]
[    0.968173] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
[    0.968326] pci 0000:00:1a.0: [8086:1d2d] type 00 class 0x0c0320
[    0.968354] pci 0000:00:1a.0: reg 0x10: [mem 0xdf328000-0xdf3283ff]
[    0.968461] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    0.968617] pci 0000:00:1b.0: [8086:1d20] type 00 class 0x040300
[    0.968645] pci 0000:00:1b.0: reg 0x10: [mem 0xdf320000-0xdf323fff 64bit]
[    0.968741] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.968908] pci 0000:00:1c.0: [8086:1d16] type 01 class 0x060400
[    0.969015] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.969038] pci 0000:00:1c.0: Disabling UPDCR peer decodes
[    0.969043] pci 0000:00:1c.0: Enabling MPC IRBNCE
[    0.969046] pci 0000:00:1c.0: Intel PCH root port ACS workaround enabled
[    0.969202] pci 0000:00:1c.2: [8086:1d14] type 01 class 0x060400
[    0.969309] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[    0.969333] pci 0000:00:1c.2: Enabling MPC IRBNCE
[    0.969336] pci 0000:00:1c.2: Intel PCH root port ACS workaround enabled
[    0.969498] pci 0000:00:1d.0: [8086:1d26] type 00 class 0x0c0320
[    0.969527] pci 0000:00:1d.0: reg 0x10: [mem 0xdf327000-0xdf3273ff]
[    0.969634] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.969786] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
[    0.970007] pci 0000:00:1f.0: [8086:1d41] type 00 class 0x060100
[    0.970291] pci 0000:00:1f.2: [8086:1d02] type 00 class 0x010601
[    0.970316] pci 0000:00:1f.2: reg 0x10: [io  0xf090-0xf097]
[    0.970326] pci 0000:00:1f.2: reg 0x14: [io  0xf080-0xf083]
[    0.970336] pci 0000:00:1f.2: reg 0x18: [io  0xf070-0xf077]
[    0.970346] pci 0000:00:1f.2: reg 0x1c: [io  0xf060-0xf063]
[    0.970356] pci 0000:00:1f.2: reg 0x20: [io  0xf020-0xf03f]
[    0.970367] pci 0000:00:1f.2: reg 0x24: [mem 0xdf326000-0xdf3267ff]
[    0.970423] pci 0000:00:1f.2: PME# supported from D3hot
[    0.970575] pci 0000:00:1f.3: [8086:1d22] type 00 class 0x0c0500
[    0.970597] pci 0000:00:1f.3: reg 0x10: [mem 0xdf325000-0xdf3250ff 64bit]
[    0.970617] pci 0000:00:1f.3: reg 0x20: [io  0xf000-0xf01f]
[    0.970858] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.970925] pci 0000:00:01.1: PCI bridge to [bus 02]
[    0.971002] pci 0000:03:00.0: [10de:0df8] type 00 class 0x030000
[    0.971022] pci 0000:03:00.0: reg 0x10: [mem 0xde000000-0xdeffffff]
[    0.971033] pci 0000:03:00.0: reg 0x14: [mem 0xf0000000-0xf7ffffff 64bit pref]
[    0.971045] pci 0000:03:00.0: reg 0x1c: [mem 0xf8000000-0xf9ffffff 64bit pref]
[    0.971052] pci 0000:03:00.0: reg 0x24: [io  0xe000-0xe07f]
[    0.971060] pci 0000:03:00.0: reg 0x30: [mem 0xdf000000-0xdf07ffff pref]
[    0.971207] pci 0000:03:00.1: [10de:0bea] type 00 class 0x040300
[    0.971224] pci 0000:03:00.1: reg 0x10: [mem 0xdf080000-0xdf083fff]
[    0.980036] pci 0000:00:02.0: PCI bridge to [bus 03]
[    0.980042] pci 0000:00:02.0:   bridge window [io  0xe000-0xefff]
[    0.980046] pci 0000:00:02.0:   bridge window [mem 0xde000000-0xdf0fffff]
[    0.980053] pci 0000:00:02.0:   bridge window [mem 0xf0000000-0xf9ffffff 64bit pref]
[    0.980129] pci 0000:04:00.0: [10de:0638] type 00 class 0x030000
[    0.980149] pci 0000:04:00.0: reg 0x10: [mem 0xdc000000-0xdcffffff]
[    0.980162] pci 0000:04:00.0: reg 0x14: [mem 0xe0000000-0xefffffff 64bit pref]
[    0.980175] pci 0000:04:00.0: reg 0x1c: [mem 0xda000000-0xdbffffff 64bit]
[    0.980184] pci 0000:04:00.0: reg 0x24: [io  0xd000-0xd07f]
[    0.980193] pci 0000:04:00.0: reg 0x30: [mem 0xdd000000-0xdd07ffff pref]
[    0.990023] pci 0000:00:03.0: PCI bridge to [bus 04]
[    0.990029] pci 0000:00:03.0:   bridge window [io  0xd000-0xdfff]
[    0.990033] pci 0000:00:03.0:   bridge window [mem 0xda000000-0xdd0fffff]
[    0.990040] pci 0000:00:03.0:   bridge window [mem 0xe0000000-0xefffffff 64bit pref]
[    0.990126] pci 0000:05:00.0: [8086:1d6b] type 00 class 0x010700
[    0.990162] pci 0000:05:00.0: reg 0x10: [mem 0xfa800000-0xfa803fff 64bit pref]
[    0.990181] pci 0000:05:00.0: reg 0x18: [mem 0xfa400000-0xfa7fffff 64bit pref]
[    0.990193] pci 0000:05:00.0: reg 0x20: [io  0xc000-0xc0ff]
[    0.990333] pci 0000:05:00.0: reg 0x164: [mem 0x00000000-0x00003fff 64bit pref]
[    0.990337] pci 0000:05:00.0: VF(n) BAR0 space: [mem 0x00000000-0x0007bfff 64bit pref] (contains BAR0 for 31 VFs)
[    0.990589] pci 0000:00:11.0: PCI bridge to [bus 05]
[    0.990594] pci 0000:00:11.0:   bridge window [io  0xc000-0xcfff]
[    0.990599] pci 0000:00:11.0:   bridge window [mem 0xdf200000-0xdf2fffff]
[    0.990608] pci 0000:00:11.0:   bridge window [mem 0xfa400000-0xfa8fffff 64bit pref]
[    0.990686] pci 0000:00:1c.0: PCI bridge to [bus 06]
[    0.990795] pci 0000:07:00.0: [1033:0194] type 00 class 0x0c0330
[    0.990839] pci 0000:07:00.0: reg 0x10: [mem 0xdf100000-0xdf101fff 64bit]
[    0.990994] pci 0000:07:00.0: PME# supported from D0 D3hot D3cold
[    1.000032] pci 0000:00:1c.2: PCI bridge to [bus 07]
[    1.000040] pci 0000:00:1c.2:   bridge window [mem 0xdf100000-0xdf1fffff]
[    1.000147] pci 0000:00:1e.0: PCI bridge to [bus 08] (subtractive decode)
[    1.000159] pci 0000:00:1e.0:   bridge window [io  0x0000-0x03af window] (subtractive decode)
[    1.000161] pci 0000:00:1e.0:   bridge window [io  0x03e0-0x0cf7 window] (subtractive decode)
[    1.000164] pci 0000:00:1e.0:   bridge window [io  0x03b0-0x03df window] (subtractive decode)
[    1.000167] pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff window] (subtractive decode)
[    1.000169] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
[    1.000172] pci 0000:00:1e.0:   bridge window [mem 0x000c0000-0x000dffff window] (subtractive decode)
[    1.000174] pci 0000:00:1e.0:   bridge window [mem 0xb0000000-0xfbffffff window] (subtractive decode)
[    1.000914] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12 14 15)
[    1.001014] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 *10 11 12 14 15)
[    1.001109] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 *5 6 7 10 11 12 14 15)
[    1.001204] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 *10 11 12 14 15)
[    1.001297] ACPI: PCI Interrupt Link [LNKE] (IRQs *3 4 5 6 7 10 11 12 14 15)
[    1.001390] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    1.001484] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 *11 12 14 15)
[    1.001577] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    1.001837] ACPI: PCI Root Bridge [PCI1] (domain 0000 [bus 20-ff])
[    1.001844] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    1.002098] acpi PNP0A08:01: _OSC: platform does not support [AER PCIeCapability]
[    1.002216] acpi PNP0A08:01: _OSC: not requesting control; platform does not support [PCIeCapability]
[    1.002220] acpi PNP0A08:01: _OSC: OS requested [PCIeHotplug PME AER PCIeCapability]
[    1.002222] acpi PNP0A08:01: _OSC: platform willing to grant [PCIeHotplug PME]
[    1.002224] acpi PNP0A08:01: _OSC failed (AE_SUPPORT); disabling ASPM
[    1.002243] acpi PNP0A08:01: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
[    1.002627] PCI host bridge to bus 0000:20
[    1.002631] pci_bus 0000:20: root bus resource [io  0x03b0-0x03df window]
[    1.002633] pci_bus 0000:20: root bus resource [mem 0x000a0000-0x000bffff window]
[    1.002636] pci_bus 0000:20: root bus resource [bus 20-ff]
[    1.002805] ACPI: Enabled 4 GPEs in block 00 to 3F
[    1.002964] pci 0000:03:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[    1.002964] pci 0000:04:00.0: vgaarb: setting as boot VGA device
[    1.002964] pci 0000:04:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    1.002964] pci 0000:04:00.0: vgaarb: bridge control possible
[    1.002964] pci 0000:03:00.0: vgaarb: bridge control possible
[    1.002964] vgaarb: loaded
[    1.002964] EDAC MC: Ver: 3.0.0
[    1.003350] Registered efivars operations
[    1.025643] PCI: Using ACPI for IRQ routing
[    1.027509] PCI: Discovered peer bus 3f
[    1.027518] PCI: root bus 3f: using default resources
[    1.027519] PCI: Probing PCI hardware (bus 3f)
[    1.027564] ACPI: \: failed to evaluate _DSM (0x1001)
[    1.027566] PCI host bridge to bus 0000:3f
[    1.027569] pci_bus 0000:3f: root bus resource [io  0x0000-0xffff]
[    1.027572] pci_bus 0000:3f: root bus resource [mem 0x00000000-0x3fffffffffff]
[    1.027574] pci_bus 0000:3f: No busn resource found for root bus, will use [bus 3f-ff]
[    1.027579] pci_bus 0000:3f: busn_res: can not insert [bus 3f-ff] under domain [bus 00-ff] (conflicts with (null) [bus 20-ff])
[    1.027595] pci 0000:3f:08.0: [8086:3c80] type 00 class 0x088000
[    1.027721] pci 0000:3f:08.3: [8086:3c83] type 00 class 0x088000
[    1.027844] pci 0000:3f:08.4: [8086:3c84] type 00 class 0x088000
[    1.027971] pci 0000:3f:09.0: [8086:3c90] type 00 class 0x088000
[    1.028074] pci 0000:3f:09.3: [8086:3c93] type 00 class 0x088000
[    1.028193] pci 0000:3f:09.4: [8086:3c94] type 00 class 0x088000
[    1.028316] pci 0000:3f:0a.0: [8086:3cc0] type 00 class 0x088000
[    1.028406] pci 0000:3f:0a.1: [8086:3cc1] type 00 class 0x088000
[    1.028495] pci 0000:3f:0a.2: [8086:3cc2] type 00 class 0x088000
[    1.028587] pci 0000:3f:0a.3: [8086:3cd0] type 00 class 0x088000
[    1.028680] pci 0000:3f:0b.0: [8086:3ce0] type 00 class 0x088000
[    1.028768] pci 0000:3f:0b.3: [8086:3ce3] type 00 class 0x088000
[    1.028857] pci 0000:3f:0c.0: [8086:3ce8] type 00 class 0x088000
[    1.028945] pci 0000:3f:0c.1: [8086:3ce8] type 00 class 0x088000
[    1.029037] pci 0000:3f:0c.6: [8086:3cf4] type 00 class 0x088000
[    1.029125] pci 0000:3f:0c.7: [8086:3cf6] type 00 class 0x088000
[    1.029214] pci 0000:3f:0d.0: [8086:3ce8] type 00 class 0x088000
[    1.029308] pci 0000:3f:0d.1: [8086:3ce8] type 00 class 0x088000
[    1.029403] pci 0000:3f:0d.6: [8086:3cf5] type 00 class 0x088000
[    1.029494] pci 0000:3f:0e.0: [8086:3ca0] type 00 class 0x088000
[    1.029587] pci 0000:3f:0e.1: [8086:3c46] type 00 class 0x110100
[    1.029694] pci 0000:3f:0f.0: [8086:3ca8] type 00 class 0x088000
[    1.029809] pci 0000:3f:0f.1: [8086:3c71] type 00 class 0x088000
[    1.029922] pci 0000:3f:0f.2: [8086:3caa] type 00 class 0x088000
[    1.030041] pci 0000:3f:0f.3: [8086:3cab] type 00 class 0x088000
[    1.030157] pci 0000:3f:0f.4: [8086:3cac] type 00 class 0x088000
[    1.030271] pci 0000:3f:0f.5: [8086:3cad] type 00 class 0x088000
[    1.030380] pci 0000:3f:0f.6: [8086:3cae] type 00 class 0x088000
[    1.030477] pci 0000:3f:10.0: [8086:3cb0] type 00 class 0x088000
[    1.030590] pci 0000:3f:10.1: [8086:3cb1] type 00 class 0x088000
[    1.030705] pci 0000:3f:10.2: [8086:3cb2] type 00 class 0x088000
[    1.030818] pci 0000:3f:10.3: [8086:3cb3] type 00 class 0x088000
[    1.030933] pci 0000:3f:10.4: [8086:3cb4] type 00 class 0x088000
[    1.031050] pci 0000:3f:10.5: [8086:3cb5] type 00 class 0x088000
[    1.031167] pci 0000:3f:10.6: [8086:3cb6] type 00 class 0x088000
[    1.031281] pci 0000:3f:10.7: [8086:3cb7] type 00 class 0x088000
[    1.031391] pci 0000:3f:11.0: [8086:3cb8] type 00 class 0x088000
[    1.031495] pci 0000:3f:13.0: [8086:3ce4] type 00 class 0x088000
[    1.031585] pci 0000:3f:13.1: [8086:3c43] type 00 class 0x110100
[    1.031679] pci 0000:3f:13.4: [8086:3ce6] type 00 class 0x110100
[    1.031771] pci 0000:3f:13.5: [8086:3c44] type 00 class 0x110100
[    1.031864] pci 0000:3f:13.6: [8086:3c45] type 00 class 0x088000
[    1.031971] pci_bus 0000:3f: busn_res: [bus 3f-ff] end is updated to 3f
[    1.031975] pci_bus 0000:3f: busn_res: can not insert [bus 3f] under domain [bus 00-ff] (conflicts with (null) [bus 20-ff])
[    1.031998] PCI: pci_cache_line_size set to 64 bytes
[    1.032154] e820: reserve RAM buffer [mem 0x18ebb000-0x1bffffff]
[    1.032157] e820: reserve RAM buffer [mem 0x18fe9000-0x1bffffff]
[    1.032158] e820: reserve RAM buffer [mem 0x1dffd000-0x1fffffff]
[    1.032160] e820: reserve RAM buffer [mem 0xab5ab018-0xabffffff]
[    1.032162] e820: reserve RAM buffer [mem 0xab5c6018-0xabffffff]
[    1.032164] e820: reserve RAM buffer [mem 0xab5d7018-0xabffffff]
[    1.032166] e820: reserve RAM buffer [mem 0xac77d000-0xafffffff]
[    1.032168] e820: reserve RAM buffer [mem 0xad800000-0xafffffff]
[    1.032331] NetLabel: Initializing
[    1.032332] NetLabel:  domain hash size = 128
[    1.032333] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    1.032363] NetLabel:  unlabeled traffic allowed by default
[    1.032404] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    1.032404] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    1.035408] clocksource: Switched to clocksource hpet
[    1.050121] VFS: Disk quotas dquot_6.6.0
[    1.050146] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    1.050309] pnp: PnP ACPI init
[    1.050550] system 00:00: [mem 0xfc000000-0xfcffffff] has been reserved
[    1.050554] system 00:00: [mem 0xfd000000-0xfdffffff] has been reserved
[    1.050556] system 00:00: [mem 0xfe000000-0xfeafffff] has been reserved
[    1.050559] system 00:00: [mem 0xfeb00000-0xfebfffff] has been reserved
[    1.050563] system 00:00: [mem 0xfed00400-0xfed3ffff] could not be reserved
[    1.050566] system 00:00: [mem 0xfed45000-0xfedfffff] could not be reserved
[    1.050573] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
[    1.050778] system 00:01: [io  0x0680-0x069f] has been reserved
[    1.050781] system 00:01: [io  0x0800-0x080f] has been reserved
[    1.050784] system 00:01: [io  0xffff] has been reserved
[    1.050787] system 00:01: [io  0xffff] has been reserved
[    1.050789] system 00:01: [io  0x0400-0x0453] has been reserved
[    1.050792] system 00:01: [io  0x0458-0x047f] has been reserved
[    1.050794] system 00:01: [io  0x0500-0x057f] has been reserved
[    1.050797] system 00:01: [io  0x164e-0x164f] has been reserved
[    1.050802] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.050847] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
[    1.050960] system 00:03: [io  0x0454-0x0457] has been reserved
[    1.050965] system 00:03: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    1.051287] pnp 00:04: Plug and Play ACPI device, IDs PNP0501 (active)
[    1.051494] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.051729] system 00:06: Plug and Play ACPI device, IDs PNP0c01 (active)
[    1.051766] pnp: PnP ACPI: found 7 devices
[    1.059533] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    1.059547] pci_bus 0000:00: max bus depth: 1 pci_try_num: 2
[    1.059622] pci 0000:00:01.0: PCI bridge to [bus 01]
[    1.059636] pci 0000:00:01.1: PCI bridge to [bus 02]
[    1.059649] pci 0000:00:02.0: PCI bridge to [bus 03]
[    1.059653] pci 0000:00:02.0:   bridge window [io  0xe000-0xefff]
[    1.059659] pci 0000:00:02.0:   bridge window [mem 0xde000000-0xdf0fffff]
[    1.059663] pci 0000:00:02.0:   bridge window [mem 0xf0000000-0xf9ffffff 64bit pref]
[    1.059670] pci 0000:00:03.0: PCI bridge to [bus 04]
[    1.059674] pci 0000:00:03.0:   bridge window [io  0xd000-0xdfff]
[    1.059679] pci 0000:00:03.0:   bridge window [mem 0xda000000-0xdd0fffff]
[    1.059684] pci 0000:00:03.0:   bridge window [mem 0xe0000000-0xefffffff 64bit pref]
[    1.059697] pci 0000:05:00.0: BAR 7: assigned [mem 0xfa804000-0xfa87ffff 64bit pref]
[    1.059704] pci 0000:00:11.0: PCI bridge to [bus 05]
[    1.059707] pci 0000:00:11.0:   bridge window [io  0xc000-0xcfff]
[    1.059714] pci 0000:00:11.0:   bridge window [mem 0xdf200000-0xdf2fffff]
[    1.059719] pci 0000:00:11.0:   bridge window [mem 0xfa400000-0xfa8fffff 64bit pref]
[    1.059728] pci 0000:00:1c.0: PCI bridge to [bus 06]
[    1.059743] pci 0000:00:1c.2: PCI bridge to [bus 07]
[    1.059749] pci 0000:00:1c.2:   bridge window [mem 0xdf100000-0xdf1fffff]
[    1.059759] pci 0000:00:1e.0: PCI bridge to [bus 08]
[    1.059773] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    1.059776] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    1.059778] pci_bus 0000:00: resource 6 [io  0x03b0-0x03df window]
[    1.059780] pci_bus 0000:00: resource 7 [io  0x0d00-0xffff window]
[    1.059783] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window]
[    1.059785] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window]
[    1.059788] pci_bus 0000:00: resource 10 [mem 0xb0000000-0xfbffffff window]
[    1.059791] pci_bus 0000:03: resource 0 [io  0xe000-0xefff]
[    1.059793] pci_bus 0000:03: resource 1 [mem 0xde000000-0xdf0fffff]
[    1.059795] pci_bus 0000:03: resource 2 [mem 0xf0000000-0xf9ffffff 64bit pref]
[    1.059798] pci_bus 0000:04: resource 0 [io  0xd000-0xdfff]
[    1.059800] pci_bus 0000:04: resource 1 [mem 0xda000000-0xdd0fffff]
[    1.059802] pci_bus 0000:04: resource 2 [mem 0xe0000000-0xefffffff 64bit pref]
[    1.059805] pci_bus 0000:05: resource 0 [io  0xc000-0xcfff]
[    1.059807] pci_bus 0000:05: resource 1 [mem 0xdf200000-0xdf2fffff]
[    1.059809] pci_bus 0000:05: resource 2 [mem 0xfa400000-0xfa8fffff 64bit pref]
[    1.059812] pci_bus 0000:07: resource 1 [mem 0xdf100000-0xdf1fffff]
[    1.059814] pci_bus 0000:08: resource 4 [io  0x0000-0x03af window]
[    1.059817] pci_bus 0000:08: resource 5 [io  0x03e0-0x0cf7 window]
[    1.059819] pci_bus 0000:08: resource 6 [io  0x03b0-0x03df window]
[    1.059821] pci_bus 0000:08: resource 7 [io  0x0d00-0xffff window]
[    1.059824] pci_bus 0000:08: resource 8 [mem 0x000a0000-0x000bffff window]
[    1.059826] pci_bus 0000:08: resource 9 [mem 0x000c0000-0x000dffff window]
[    1.059828] pci_bus 0000:08: resource 10 [mem 0xb0000000-0xfbffffff window]
[    1.059915] pci_bus 0000:20: resource 4 [io  0x03b0-0x03df window]
[    1.059917] pci_bus 0000:20: resource 5 [mem 0x000a0000-0x000bffff window]
[    1.059943] pci_bus 0000:3f: resource 4 [io  0x0000-0xffff]
[    1.059945] pci_bus 0000:3f: resource 5 [mem 0x00000000-0x3fffffffffff]
[    1.060035] NET: Registered protocol family 2
[    1.060482] TCP established hash table entries: 262144 (order: 9, 2097152 bytes)
[    1.061272] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    1.061502] TCP: Hash tables configured (established 262144 bind 65536)
[    1.061630] UDP hash table entries: 16384 (order: 7, 524288 bytes)
[    1.061818] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes)
[    1.062101] NET: Registered protocol family 1
[    1.062958] pci 0000:04:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    1.063133] pci 0000:07:00.0: enabling device (0000 -> 0002)
[    1.063377] PCI: CLS 64 bytes, default 64
[    1.063427] Unpacking initramfs...
[    1.645543] Freeing initrd memory: 17856K
[    1.645630] DMAR: No ATSR found
[    1.652932] DMAR: dmar0: Using Queued invalidation
[    1.652963] DMAR: Setting RMRR:
[    1.653253] DMAR: Setting identity map for device 0000:00:1a.0 [0xac7c8000 - 0xac7d7fff]
[    1.653533] DMAR: Setting identity map for device 0000:00:1d.0 [0xac7c8000 - 0xac7d7fff]
[    1.653572] DMAR: Prepare 0-16MiB unity mapping for LPC
[    1.653837] DMAR: Setting identity map for device 0000:00:1f.0 [0x0 - 0xffffff]
[    1.653863] DMAR: Intel(R) Virtualization Technology for Directed I/O
[    1.653957] iommu: Adding device 0000:00:00.0 to group 0
[    1.653995] iommu: Adding device 0000:00:01.0 to group 1
[    1.654026] iommu: Adding device 0000:00:01.1 to group 2
[    1.654056] iommu: Adding device 0000:00:02.0 to group 3
[    1.654085] iommu: Adding device 0000:00:03.0 to group 4
[    1.654163] iommu: Adding device 0000:00:05.0 to group 5
[    1.654193] iommu: Adding device 0000:00:05.2 to group 5
[    1.654219] iommu: Adding device 0000:00:05.4 to group 5
[    1.654245] iommu: Adding device 0000:00:11.0 to group 6
[    1.654304] iommu: Adding device 0000:00:16.0 to group 7
[    1.654330] iommu: Adding device 0000:00:16.3 to group 7
[    1.654356] iommu: Adding device 0000:00:19.0 to group 8
[    1.654384] iommu: Adding device 0000:00:1a.0 to group 9
[    1.654411] iommu: Adding device 0000:00:1b.0 to group 10
[    1.654438] iommu: Adding device 0000:00:1c.0 to group 11
[    1.654465] iommu: Adding device 0000:00:1c.2 to group 12
[    1.654491] iommu: Adding device 0000:00:1d.0 to group 13
[    1.654520] iommu: Adding device 0000:00:1e.0 to group 14
[    1.654596] iommu: Adding device 0000:00:1f.0 to group 15
[    1.654624] iommu: Adding device 0000:00:1f.2 to group 15
[    1.654652] iommu: Adding device 0000:00:1f.3 to group 15
[    1.654717] iommu: Adding device 0000:03:00.0 to group 16
[    1.654752] iommu: Adding device 0000:03:00.1 to group 16
[    1.654784] iommu: Adding device 0000:04:00.0 to group 17
[    1.654836] iommu: Adding device 0000:05:00.0 to group 18
[    1.654863] iommu: Adding device 0000:07:00.0 to group 19
[    1.654941] iommu: Adding device 0000:3f:08.0 to group 20
[    1.654972] iommu: Adding device 0000:3f:08.3 to group 20
[    1.655003] iommu: Adding device 0000:3f:08.4 to group 20
[    1.655082] iommu: Adding device 0000:3f:09.0 to group 21
[    1.655114] iommu: Adding device 0000:3f:09.3 to group 21
[    1.655146] iommu: Adding device 0000:3f:09.4 to group 21
[    1.655240] iommu: Adding device 0000:3f:0a.0 to group 22
[    1.655271] iommu: Adding device 0000:3f:0a.1 to group 22
[    1.655303] iommu: Adding device 0000:3f:0a.2 to group 22
[    1.655334] iommu: Adding device 0000:3f:0a.3 to group 22
[    1.655395] iommu: Adding device 0000:3f:0b.0 to group 23
[    1.655427] iommu: Adding device 0000:3f:0b.3 to group 23
[    1.655520] iommu: Adding device 0000:3f:0c.0 to group 24
[    1.655553] iommu: Adding device 0000:3f:0c.1 to group 24
[    1.655585] iommu: Adding device 0000:3f:0c.6 to group 24
[    1.655618] iommu: Adding device 0000:3f:0c.7 to group 24
[    1.655699] iommu: Adding device 0000:3f:0d.0 to group 25
[    1.655733] iommu: Adding device 0000:3f:0d.1 to group 25
[    1.655766] iommu: Adding device 0000:3f:0d.6 to group 25
[    1.655826] iommu: Adding device 0000:3f:0e.0 to group 26
[    1.655860] iommu: Adding device 0000:3f:0e.1 to group 26
[    1.656007] iommu: Adding device 0000:3f:0f.0 to group 27
[    1.656042] iommu: Adding device 0000:3f:0f.1 to group 27
[    1.656080] iommu: Adding device 0000:3f:0f.2 to group 27
[    1.656116] iommu: Adding device 0000:3f:0f.3 to group 27
[    1.656152] iommu: Adding device 0000:3f:0f.4 to group 27
[    1.656188] iommu: Adding device 0000:3f:0f.5 to group 27
[    1.656223] iommu: Adding device 0000:3f:0f.6 to group 27
[    1.656386] iommu: Adding device 0000:3f:10.0 to group 28
[    1.656424] iommu: Adding device 0000:3f:10.1 to group 28
[    1.656461] iommu: Adding device 0000:3f:10.2 to group 28
[    1.656501] iommu: Adding device 0000:3f:10.3 to group 28
[    1.656539] iommu: Adding device 0000:3f:10.4 to group 28
[    1.656577] iommu: Adding device 0000:3f:10.5 to group 28
[    1.656615] iommu: Adding device 0000:3f:10.6 to group 28
[    1.656652] iommu: Adding device 0000:3f:10.7 to group 28
[    1.656774] iommu: Adding device 0000:3f:11.0 to group 29
[    1.656886] iommu: Adding device 0000:3f:13.0 to group 30
[    1.656928] iommu: Adding device 0000:3f:13.1 to group 30
[    1.656967] iommu: Adding device 0000:3f:13.4 to group 30
[    1.657006] iommu: Adding device 0000:3f:13.5 to group 30
[    1.657044] iommu: Adding device 0000:3f:13.6 to group 30
[    1.660850] Scanning for low memory corruption every 60 seconds
[    1.662581] Initialise system trusted keyrings
[    1.662597] Key type blacklist registered
[    1.662686] workingset: timestamp_bits=40 max_order=23 bucket_order=0
[    1.664740] zbud: loaded
[    1.666182] Key type asymmetric registered
[    1.666241] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
[    1.666315] io scheduler noop registered
[    1.666316] io scheduler deadline registered
[    1.666364] io scheduler cfq registered (default)
[    1.666366] io scheduler mq-deadline registered
[    1.666367] io scheduler kyber registered
[    1.666412] io scheduler bfq registered
[    1.668176] efifb: probing for efifb
[    1.668196] efifb: framebuffer at 0xdb000000, using 1876k, total 1875k
[    1.668198] efifb: mode is 800x600x32, linelength=3200, pages=1
[    1.668199] efifb: scrolling: redraw
[    1.668202] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    1.670569] Console: switching to colour frame buffer device 100x37
[    1.672735] fb0: EFI VGA frame buffer device
[    1.672749] intel_idle: MWAIT substates: 0x21120
[    1.672751] intel_idle: v0.4.1 model 0x2D
[    1.672990] intel_idle: lapic_timer_reliable_states 0xffffffff
[    1.683727] GHES: HEST is not enabled!
[    1.683913] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    1.704626] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    1.705440] serial 0000:00:16.3: enabling device (0000 -> 0003)
[    1.726205] 0000:00:16.3: ttyS1 at I/O 0xf0a0 (irq = 17, base_baud = 115200) is a 16550A
[    1.726738] Linux agpgart interface v0.103
[    1.728119] rtc_cmos 00:02: RTC can wake from S4
[    1.728388] rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
[    1.728434] rtc_cmos 00:02: alarms up to one year, y3k, 242 bytes nvram, hpet irqs
[    1.728453] intel_pstate: Intel P-state driver initializing
[    1.729450] ledtrig-cpu: registered to indicate activity on CPUs
[    1.729517] vlv2_plat_clk vlv2_plat_clk: vlv2_plat_clk initialized
[    1.729983] NET: Registered protocol family 10
[    1.736597] Segment Routing with IPv6
[    1.736632] NET: Registered protocol family 17
[    1.737818] RAS: Correctable Errors collector initialized.
[    1.737905] microcode: sig=0x206d7, pf=0x1, revision=0x710
[    1.738249] microcode: Microcode Update Driver: v2.2.
[    1.738264] sched_clock: Marking stable (1738238109, 0)->(1751770353, -13532244)
[    1.738706] registered taskstats version 1
[    1.738716] Loading compiled-in X.509 certificates
[    1.738748] zswap: loaded using pool lzo/zbud
[    1.739479]   Magic number: 5:672:705
[    1.739661] rtc_cmos 00:02: setting system clock to 2017-10-01 23:41:27 UTC (1506901287)
[    1.740933] PM: Hibernation image not present or could not be loaded.
[    1.743887] Freeing unused kernel memory: 1328K
[    1.743889] Write protecting the kernel read-only data: 10240k
[    1.744542] Freeing unused kernel memory: 1576K
[    1.744630] Freeing unused kernel memory: 12K
[    1.822066] ACPI: bus type USB registered
[    1.822082] usbcore: registered new interface driver usbfs
[    1.822087] usbcore: registered new interface driver hub
[    1.822120] usbcore: registered new device driver usb
[    1.822544] hidraw: raw HID events driver (C) Jiri Kosina
[    1.823777] SCSI subsystem initialized
[    1.824211] usbcore: registered new interface driver usb-storage
[    1.830859] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    1.830868] ACPI: Power Button [PWRB]
[    1.830899] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    1.830928] ACPI: Power Button [PWRF]
[    1.834533] nouveau 0000:03:00.0: enabling device (0000 -> 0003)
[    1.834616] checking generic (db000000 1d5000) vs hw (f0000000 8000000)
[    1.834617] checking generic (db000000 1d5000) vs hw (f8000000 2000000)
[    1.834641] nouveau 0000:03:00.0: NVIDIA GF108 (0c1c00a1)
[    1.967782] nouveau 0000:03:00.0: bios: version 70.08.88.00.01
[    2.076150] nouveau 0000:03:00.0: fb: 1024 MiB DDR3
[    2.663310] tsc: Refined TSC clocksource calibration: 3591.345 MHz
[    2.663319] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x33c4635c383, max_idle_ns: 440795314831 ns
[    3.163630] [TTM] Zone  kernel: Available graphics memory: 16485518 kiB
[    3.163631] [TTM] Zone   dma32: Available graphics memory: 2097152 kiB
[    3.163631] [TTM] Initializing pool allocator
[    3.163634] [TTM] Initializing DMA pool allocator
[    3.163655] nouveau 0000:03:00.0: DRM: VRAM: 1024 MiB
[    3.163656] nouveau 0000:03:00.0: DRM: GART: 1048576 MiB
[    3.163658] nouveau 0000:03:00.0: DRM: TMDS table version 2.0
[    3.163659] nouveau 0000:03:00.0: DRM: DCB version 4.0
[    3.163660] nouveau 0000:03:00.0: DRM: DCB outp 00: 02000300 00000000
[    3.163661] nouveau 0000:03:00.0: DRM: DCB outp 01: 01000302 00020030
[    3.163661] nouveau 0000:03:00.0: DRM: DCB outp 02: 028113a6 0f220010
[    3.163662] nouveau 0000:03:00.0: DRM: DCB outp 03: 02011362 00020010
[    3.163663] nouveau 0000:03:00.0: DRM: DCB conn 00: 00001030
[    3.163664] nouveau 0000:03:00.0: DRM: DCB conn 01: 00010146
[    3.195141] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    3.195142] [drm] Driver supports precise vblank timestamp query.
[    3.237698] nouveau 0000:03:00.0: DRM: MM: using COPY0 for buffer copies
[    3.373202] nouveau 0000:03:00.0: DRM: allocated 1920x1080 fb: 0x60000, bo ffff8e872a994000
[    3.373205] checking generic (db000000 1d5000) vs hw (0 0)
[    3.373282] nouveau 0000:03:00.0: fb1: nouveaufb frame buffer device
[    3.389961] [drm] Initialized nouveau 1.3.1 20120801 for 0000:03:00.0 on minor 0
[    3.390061] checking generic (db000000 1d5000) vs hw (e0000000 10000000)
[    3.390062] checking generic (db000000 1d5000) vs hw (da000000 2000000)
[    3.390062] fb: switching to nouveaufb from EFI VGA
[    3.390081] Console: switching to colour dummy device 80x25
[    3.390186] nouveau 0000:04:00.0: NVIDIA G94 (094c00a1)
[    3.513131] nouveau 0000:04:00.0: bios: version 62.94.96.00.06
[    3.533675] nouveau 0000:04:00.0: fb: 768 MiB GDDR3
[    3.585802] nouveau 0000:04:00.0: DRM: VRAM: 768 MiB
[    3.585804] nouveau 0000:04:00.0: DRM: GART: 1048576 MiB
[    3.585806] nouveau 0000:04:00.0: DRM: TMDS table version 2.0
[    3.585807] nouveau 0000:04:00.0: DRM: DCB version 4.0
[    3.585809] nouveau 0000:04:00.0: DRM: DCB outp 00: 02000300 00000028
[    3.585810] nouveau 0000:04:00.0: DRM: DCB outp 01: 01000302 00020030
[    3.585811] nouveau 0000:04:00.0: DRM: DCB outp 02: 02011386 0f200010
[    3.585812] nouveau 0000:04:00.0: DRM: DCB outp 03: 02011332 00020010
[    3.585813] nouveau 0000:04:00.0: DRM: DCB outp 04: 040223a6 0f200010
[    3.585814] nouveau 0000:04:00.0: DRM: DCB outp 05: 04022342 00020010
[    3.585814] nouveau 0000:04:00.0: DRM: DCB conn 00: 00001030
[    3.585815] nouveau 0000:04:00.0: DRM: DCB conn 01: 00050146
[    3.585817] nouveau 0000:04:00.0: DRM: DCB conn 02: 000a0246
[    3.602145] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    3.602146] [drm] Driver supports precise vblank timestamp query.
[    3.617875] nouveau 0000:04:00.0: DRM: MM: using CRYPT for buffer copies
[    3.676722] clocksource: Switched to clocksource tsc
[    3.754233] nouveau 0000:04:00.0: DRM: allocated 1920x1080 fb: 0x50000, bo ffff8e872ae3c800
[    3.754432] fbcon: nouveaufb (fb0) is primary device
[    3.926895] Console: switching to colour frame buffer device 240x67
[    4.112888] nouveau 0000:04:00.0: fb0: nouveaufb frame buffer device
[    4.112896] [drm] Initialized nouveau 1.3.1 20120801 for 0000:04:00.0 on minor 1
[    4.114509] libata version 3.00 loaded.
[    4.115401] ahci 0000:00:1f.2: version 3.0
[    4.115563] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x3 impl SATA mode
[    4.115564] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems apst 
[    4.126951] scsi host0: ahci
[    4.127020] scsi host1: ahci
[    4.127137] scsi host2: ahci
[    4.127225] scsi host3: ahci
[    4.127296] scsi host4: ahci
[    4.127520] scsi host5: ahci
[    4.127606] ata1: SATA max UDMA/133 abar m2048@0xdf326000 port 0xdf326100 irq 29
[    4.127609] ata2: SATA max UDMA/133 abar m2048@0xdf326000 port 0xdf326180 irq 29
[    4.127610] ata3: DUMMY
[    4.127611] ata4: DUMMY
[    4.127612] ata5: DUMMY
[    4.127613] ata6: DUMMY
[    4.440357] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    4.440387] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    4.440792] ata2.00: ATA-8: INTEL SSDSA2BW160G3, 4PC10362, max UDMA/133
[    4.440796] ata2.00: 312581808 sectors, multi 16: LBA48 NCQ (depth 31/32)
[    4.441238] ata2.00: configured for UDMA/133
[    4.442060] ata1.00: ATA-8: WDC WD5000AAKX-08ERMA0, 19.01H19, max UDMA/100
[    4.442064] ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    4.443880] ata1.00: configured for UDMA/100
[    4.444382] scsi 0:0:0:0: Direct-Access     ATA      WDC WD5000AAKX-0 1H19 PQ: 0 ANSI: 5
[    4.476923] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/466 GiB)
[    4.476940] sd 0:0:0:0: [sda] Write Protect is off
[    4.476943] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    4.476965] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    4.477520] scsi 1:0:0:0: Direct-Access     ATA      INTEL SSDSA2BW16 0362 PQ: 0 ANSI: 5
[    4.510273] ata2.00: Enabling discard_zeroes_data
[    4.510791] sd 1:0:0:0: [sdb] 312581808 512-byte logical blocks: (160 GB/149 GiB)
[    4.510894] sd 1:0:0:0: [sdb] Write Protect is off
[    4.510898] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    4.511073] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    4.511683] ata2.00: Enabling discard_zeroes_data
[    4.515418]  sdb: sdb1
[    4.515805] ata2.00: Enabling discard_zeroes_data
[    4.516297] sd 1:0:0:0: [sdb] Attached SCSI disk
[    4.522418]  sda: sda1
[    4.522612] sd 0:0:0:0: [sda] Attached SCSI disk
[    4.523660] usbcore: registered new interface driver uas
[    4.524017] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    4.524213] ehci-pci: EHCI PCI platform driver
[    4.524379] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    4.524384] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    4.524395] ehci-pci 0000:00:1a.0: debug port 2
[    4.528289] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[    4.528304] ehci-pci 0000:00:1a.0: irq 16, io mem 0xdf328000
[    4.539978] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    4.540252] hub 1-0:1.0: USB hub found
[    4.540263] hub 1-0:1.0: 3 ports detected
[    4.540495] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    4.540498] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    4.540508] ehci-pci 0000:00:1d.0: debug port 2
[    4.544409] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[    4.544437] ehci-pci 0000:00:1d.0: irq 17, io mem 0xdf327000
[    4.556660] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    4.557055] hub 2-0:1.0: USB hub found
[    4.557075] hub 2-0:1.0: 3 ports detected
[    4.560029] xhci_hcd 0000:07:00.0: xHCI Host Controller
[    4.560038] xhci_hcd 0000:07:00.0: new USB bus registered, assigned bus number 3
[    4.560448] xhci_hcd 0000:07:00.0: hcc params 0x014042cb hci version 0x96 quirks 0x00000004
[    4.560952] hub 3-0:1.0: USB hub found
[    4.560969] hub 3-0:1.0: 2 ports detected
[    4.561167] xhci_hcd 0000:07:00.0: xHCI Host Controller
[    4.561173] xhci_hcd 0000:07:00.0: new USB bus registered, assigned bus number 4
[    4.563634] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    4.563831] hub 4-0:1.0: USB hub found
[    4.563848] hub 4-0:1.0: 2 ports detected
[    4.611999] i8042: PNP: No PS/2 controller found.
[    4.612000] i8042: Probing ports directly.
[    4.612476] i8042: Warning: Keylock active
[    4.615159] serio: i8042 KBD port at 0x60,0x64 irq 1
[    4.615254] serio: i8042 AUX port at 0x60,0x64 irq 12
[    4.616437] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
[    4.619211] isci: Intel(R) C600 SAS Controller Driver - version 1.2.0
[    4.619230] isci 0000:05:00.0: driver configured for rev: 5 silicon
[    4.621600] isci 0000:05:00.0: Unable to obtain EFI var data for OEM parms
[    4.621603] isci 0000:05:00.0: OEM parameter table found in OROM
[    4.621604] isci 0000:05:00.0: OEM SAS parameters (version: 1.1) loaded (platform)
[    4.621839] isci 0000:05:00.0: SCU controller 0: phy 3-0 cables: {short, short, short, short}
[    4.624374] scsi host6: isci
[    4.627785] AVX version of gcm_enc/dec engaged.
[    4.627786] AES CTR mode by8 optimization enabled
[    4.859990] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    4.876657] usb 2-1: new high-speed USB device number 2 using ehci-pci
[    4.997643] hub 1-1:1.0: USB hub found
[    4.997777] hub 1-1:1.0: 6 ports detected
[    5.014155] hub 2-1:1.0: USB hub found
[    5.014275] hub 2-1:1.0: 8 ports detected
[    5.293323] usb 2-1.3: new high-speed USB device number 3 using ehci-pci
[    5.391974] usb-storage 2-1.3:1.0: USB Mass Storage device detected
[    5.392244] scsi host7: usb-storage 2-1.3:1.0
[    5.463321] usb 2-1.6: new full-speed USB device number 4 using ehci-pci
[    5.611855] usbcore: registered new interface driver usbhid
[    5.611857] usbhid: USB HID core driver
[    5.612864] input: Logitech G700 Laser Mouse as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.6/2-1.6:1.0/0003:046D:C06B.0001/input/input4
[    5.612935] hid-generic 0003:046D:C06B.0001: input,hidraw0: USB HID v1.11 Mouse [Logitech G700 Laser Mouse] on usb-0000:00:1d.0-1.6/input0
[    5.613376] input: Logitech G700 Laser Mouse as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.6/2-1.6:1.1/0003:046D:C06B.0002/input/input5
[    5.659947] usb 2-1.7: new high-speed USB device number 5 using ehci-pci
[    5.670180] hid-generic 0003:046D:C06B.0002: input,hiddev0,hidraw1: USB HID v1.11 Keyboard [Logitech G700 Laser Mouse] on usb-0000:00:1d.0-1.6/input1
[    5.759225] hub 2-1.7:1.0: USB hub found
[    5.759644] hub 2-1.7:1.0: 3 ports detected
[    5.836810] sas: phy-6:2 added to port-6:0, phy_mask:0x4 (ffffffff00000001)
[    5.836837] sas: DOING DISCOVERY on port 0, pid:5
[    5.836866] sas: DONE DISCOVERY on port 0, pid:5, result:0
[    5.836884] sas: Enter sas_scsi_recover_host busy: 0 failed: 0
[    5.836911] sas: ata7: end_device-6:0: dev error handler
[    5.996652] ata7.00: ATAPI: TSSTcorp DVD+/-RW SN-208BB, D500, max UDMA/100
[    6.000849] ata7.00: configured for UDMA/100
[    6.002536] sas: --- Exit sas_scsi_recover_host: busy: 0 failed: 0 tries: 1
[    6.004143] scsi 6:0:0:0: CD-ROM            TSSTcorp DVD+-RW SN-208BB D500 PQ: 0 ANSI: 5
[    6.016633] BUG: unable to handle kernel NULL pointer dereference at           (null)
[    6.016650] IP: isci_task_abort_task+0x43/0x460 [isci]
[    6.016654] PGD 0 
[    6.016654] P4D 0 

[    6.016661] Oops: 0000 [#1] PREEMPT SMP
[    6.016664] Modules linked in: hid_generic usbhid serio_raw crct10dif_pclmul crc32_pclmul crc32c_intel ghash_clmulni_intel pcbc aesni_intel aes_x86_64 crypto_simd glue_helper cryptd isci libsas scsi_transport_sas i8042 atkbd libps2 serio xhci_pci xhci_hcd ehci_pci ehci_hcd uas ahci libahci ata_generic ata_piix libata sd_mod nouveau button video led_class mxm_wmi wmi i2c_algo_bit drm_kms_helper syscopyarea sysfillrect sysimgblt fb_sys_fops ttm drm kvm_intel kvm irqbypass usb_storage scsi_mod hid_roccat_ryos hid_roccat hid hid_roccat_common usbcore usb_common
[    6.016744] CPU: 0 PID: 206 Comm: kworker/u64:5 Not tainted 4.13.3-1-ARCH #1
[    6.016754] Hardware name: Dell Inc. Precision T3600/08HPGT, BIOS A15 05/08/2017
[    6.016771] Workqueue: scsi_tmf_6 scmd_eh_abort_handler [scsi_mod]
[    6.016781] task: ffff8e8724389e00 task.stack: ffffbb514820c000
[    6.016799] RIP: 0010:isci_task_abort_task+0x43/0x460 [isci]
[    6.016807] RSP: 0018:ffffbb514820fc78 EFLAGS: 00010246
[    6.016816] RAX: 0000000000000000 RBX: 0000000000000000 RCX: 0000000000000000
[    6.016826] RDX: 00000000ffffffff RSI: ffff8e8723d851a8 RDI: 0000000000000000
[    6.016836] RBP: ffffbb514820fe18 R08: 0000000000000360 R09: 00000001669f09d1
[    6.016846] R10: 0000000000000000 R11: 000000000032dcd5 R12: ffff8e8723d85148
[    6.016856] R13: ffff8e8722962800 R14: ffff8e8723da2b00 R15: 0000000000000008
[    6.016866] FS:  0000000000000000(0000) GS:ffff8e872ee00000(0000) knlGS:0000000000000000
[    6.016877] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[    6.016886] CR2: 0000000000000000 CR3: 000000064fa09000 CR4: 00000000000406f0
[    6.016895] Call Trace:
[    6.016908]  ? ttwu_do_activate+0x7a/0x90
[    6.016919]  ? check_preempt_curr+0x7d/0x90
[    6.016929]  ? update_load_avg+0x426/0x5a0
[    6.016939]  ? update_curr+0xf5/0x1e0
[    6.016949]  ? dequeue_entity+0xed/0x4d0
[    6.016958]  ? dequeue_task_fair+0x49f/0x640
[    6.016968]  ? pick_next_task_fair+0x162/0x560
[    6.016978]  ? __switch_to+0x1fc/0x4d0
[    6.016989]  sas_eh_abort_handler+0x33/0x50 [libsas]
[    6.017003]  scmd_eh_abort_handler+0x49/0xf0 [scsi_mod]
[    6.017014]  process_one_work+0x1de/0x430
[    6.017023]  worker_thread+0x47/0x3f0
[    6.017033]  kthread+0x125/0x140
[    6.017041]  ? process_one_work+0x430/0x430
[    6.017050]  ? kthread_create_on_node+0x70/0x70
[    6.017061]  ret_from_fork+0x25/0x30
[    6.017069] Code: 08 48 81 ec 78 01 00 00 c7 85 78 fe ff ff 00 00 00 00 c7 85 80 fe ff ff 00 00 00 00 65 48 8b 04 25 28 00 00 00 48 89 45 d0 31 c0 <48> 8b 07 48 8b 40 30 48 8b 80 90 02 00 00 4c 8b a8 28 01 00 00 
[    6.017144] RIP: isci_task_abort_task+0x43/0x460 [isci] RSP: ffffbb514820fc78
[    6.017154] CR2: 0000000000000000
[    6.017162] ---[ end trace a3c16f0cd4990b85 ]---
[    6.039969] usb 2-1.7.3: new full-speed USB device number 6 using ehci-pci
[    6.140000] input: ROCCAT ROCCAT Ryos MK Pro as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.7/2-1.7.3/2-1.7.3:1.0/0003:1E7D:3232.0003/input/input6
[    6.196808] ryos 0003:1E7D:3232.0003: input,hidraw2: USB HID v1.11 Keyboard [ROCCAT ROCCAT Ryos MK Pro] on usb-0000:00:1d.0-1.7.3/input0
[    6.198379] input: ROCCAT ROCCAT Ryos MK Pro as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.7/2-1.7.3/2-1.7.3:1.1/0003:1E7D:3232.0004/input/input7
[    6.253661] ryos 0003:1E7D:3232.0004: input,hiddev1,hidraw3: USB HID v1.11 Pointer [ROCCAT ROCCAT Ryos MK Pro] on usb-0000:00:1d.0-1.7.3/input1
[    6.397593] scsi 7:0:0:0: Direct-Access     SanDisk  Cruzer           8.01 PQ: 0 ANSI: 0 CCS
[  124.779287] device-mapper: uevent: version 1.0.3
[  124.779428] device-mapper: ioctl: 4.36.0-ioctl (2017-06-09) initialised: dm-devel@redhat.com
[  131.817712] random: crng init done
[  223.777923] NET: Registered protocol family 38
[  269.568847] EXT4-fs (dm-2): recovery complete
[  269.569201] EXT4-fs (dm-2): mounted filesystem with ordered data mode. Opts: (null)
[  288.837118] EXT4-fs (dm-5): mounted filesystem with ordered data mode. Opts: (null)
[  355.828550] ip_tables: (C) 2000-2006 Netfilter Core Team
[  355.833415] systemd[1]: systemd 234 running in system mode. (+PAM -AUDIT -SELINUX -IMA -APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN default-hierarchy=hybrid)
[  355.833790] systemd[1]: Detected architecture x86-64.
[  355.838025] systemd[1]: Set hostname to <precision>.
[  355.925266] systemd[1]: Unnecessary job for dev-mapper-storage.device was removed.
[  355.925623] systemd[1]: Unnecessary job for /dev/mapper/storage-home was removed.
[  355.926764] systemd[1]: Listening on udev Control Socket.
[  355.928721] systemd[1]: Reached target Remote File Systems.
[  355.931822] systemd[1]: Listening on Process Core Dump Socket.
[  355.933178] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[  355.935415] systemd[1]: Listening on Journal Socket.
[  355.969245] EXT4-fs (dm-2): re-mounted. Opts: data=ordered
[  356.009944] systemd-journald[380]: Received request to flush runtime journal from PID 1
[  356.093706] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[  356.095287] i801_smbus 0000:00:1f.3: enabling device (0000 -> 0003)
[  356.095713] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[  356.096327] pps_core: LinuxPPS API ver. 1 registered
[  356.097186] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[  356.097901] mousedev: PS/2 mouse device common for all mice
[  356.099149] PTP clock support registered
[  356.136934] input: PC Speaker as /devices/platform/pcspkr/input/input8
[  356.137781] iTCO_vendor_support: vendor-support=0
[  356.140636] RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 163840 ms ovfl timer
[  356.140637] RAPL PMU: hw unit of domain pp0-core 2^-16 Joules
[  356.140637] RAPL PMU: hw unit of domain package 2^-16 Joules
[  356.140638] RAPL PMU: hw unit of domain dram 2^-16 Joules
[  356.144395] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
[  356.144396] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[  356.144583] e1000e 0000:00:19.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[  356.144584] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2)
[  356.147703] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[  356.153433] iTCO_wdt: Found a Patsburg TCO device (Version=2, TCOBASE=0x0460)
[  356.153783] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[  356.174512] EDAC sbridge: Seeking for: PCI ID 8086:3ca0
[  356.174694] EDAC sbridge: Seeking for: PCI ID 8086:3ca0
[  356.175335] EDAC sbridge: Seeking for: PCI ID 8086:3ca8
[  356.176156] EDAC sbridge: Seeking for: PCI ID 8086:3ca8
[  356.176988] EDAC sbridge: Seeking for: PCI ID 8086:3c71
[  356.177740] EDAC sbridge: Seeking for: PCI ID 8086:3c71
[  356.178520] EDAC sbridge: Seeking for: PCI ID 8086:3caa
[  356.179304] EDAC sbridge: Seeking for: PCI ID 8086:3caa
[  356.180078] EDAC sbridge: Seeking for: PCI ID 8086:3cab
[  356.180082] EDAC sbridge: Seeking for: PCI ID 8086:3cab
[  356.180083] EDAC sbridge: Seeking for: PCI ID 8086:3cac
[  356.180087] EDAC sbridge: Seeking for: PCI ID 8086:3cac
[  356.180088] EDAC sbridge: Seeking for: PCI ID 8086:3cad
[  356.180091] EDAC sbridge: Seeking for: PCI ID 8086:3cad
[  356.180093] EDAC sbridge: Seeking for: PCI ID 8086:3cb8
[  356.180097] EDAC sbridge: Seeking for: PCI ID 8086:3cb8
[  356.180098] EDAC sbridge: Seeking for: PCI ID 8086:3cf4
[  356.180100] EDAC sbridge: Seeking for: PCI ID 8086:3cf4
[  356.180101] EDAC sbridge: Seeking for: PCI ID 8086:3cf6
[  356.180103] EDAC sbridge: Seeking for: PCI ID 8086:3cf6
[  356.180104] EDAC sbridge: Seeking for: PCI ID 8086:3cf5
[  356.180107] EDAC sbridge: Seeking for: PCI ID 8086:3cf5
[  356.180215] EDAC MC0: Giving out device to module sb_edac.c controller Sandy Bridge SrcID#0_Ha#0: DEV 0000:3f:0e.0 (INTERRUPT)
[  356.180216] EDAC sbridge:  Ver: 1.1.2 
[  356.191312] intel_rapl: Found RAPL domain package
[  356.191313] intel_rapl: Found RAPL domain core
[  356.191317] intel_rapl: RAPL package 0 domain package locked by BIOS
[  356.205231] Adding 33554428k swap on /dev/mapper/system-swap.  Priority:-1 extents:1 across:33554428k SSFS
[  356.248476] e1000e 0000:00:19.0 0000:00:19.0 (uninitialized): registered PHC clock
[  356.353019] e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) 90:b1:1c:90:ae:9b
[  356.353149] e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection
[  356.353347] e1000e 0000:00:19.0 eth0: MAC: 10, PHY: 11, PBA No: 7041FF-0FF
[  356.354042] snd_hda_intel 0000:03:00.1: enabling device (0000 -> 0002)
[  356.354508] snd_hda_intel 0000:03:00.1: Disabling MSI
[  356.355062] snd_hda_intel 0000:03:00.1: Handle vga_switcheroo audio client
[  356.357124] e1000e 0000:00:19.0 enp0s25: renamed from eth0
[  356.368362] snd_hda_codec_realtek hdaudioC0D0: ALC269VB: SKU not ready 0x411111f0
[  356.369110] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC269VB: line_outs=1 (0x1b/0x0/0x0/0x0/0x0) type:line
[  356.369336] snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=1 (0x14/0x0/0x0/0x0/0x0)
[  356.369571] snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[  356.370271] snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
[  356.370925] snd_hda_codec_realtek hdaudioC0D0:    inputs:
[  356.371604] snd_hda_codec_realtek hdaudioC0D0:      Rear Mic=0x19
[  356.372292] snd_hda_codec_realtek hdaudioC0D0:      Front Mic=0x18
[  356.380402] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
[  356.381210] input: HDA Intel PCH Rear Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
[  356.381483] input: HDA Intel PCH Front Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
[  356.381537] input: HDA Intel PCH Line Out as /devices/pci0000:00/0000:00:1b.0/sound/card0/input13
[  356.381589] input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input14
[  356.646848] IPv6: ADDRCONF(NETDEV_UP): enp0s25: link is not ready
[  357.380652] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:02.0/0000:03:00.1/sound/card1/input15
[  357.381010] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:02.0/0000:03:00.1/sound/card1/input16
[  357.381445] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:02.0/0000:03:00.1/sound/card1/input17
[  357.382195] input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:02.0/0000:03:00.1/sound/card1/input18
[  359.916076] e1000e: enp0s25 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: Rx/Tx
[  359.916315] IPv6: ADDRCONF(NETDEV_CHANGE): enp0s25: link becomes ready
[  371.896851] input: PS/2 Generic Mouse as /devices/platform/i8042/serio1/input/input9

Offline

#11 2017-10-03 20:26:45

phil.r.dubois
Member
From: Canada
Registered: 2017-09-26
Posts: 7

Re: [Solved] Installation media cannot find USB partition ARCH_201709

Based on the Oops at [    6.016661], I determined that the issue had to do with a bug in the kernel. I installed linux-lts and that kernel (4.9.52-1-lts) boots without issue. I was planning on using LTS anyway but since 4.14 is expected to be the next LTS release, it's possible the bug might remain. I've never reported a bug before and I am not familiar with the procedure, and I do not have time to read up on it at this moment. I'll wait until 4.14 is released and see if the issue remains, and if so, I will look into reporting it.

Offline

Board footer

Powered by FluxBB