You are not logged in.

#1 2017-10-28 09:01:39

amaro
Member
From: 5.11.1-1-ck-ivybridge, xfce
Registered: 2014-05-09
Posts: 364

[SOLVED] dmesg gives unknown option unknown parameter

Hey, guys!

I had some problems yesterday with my external hard drive and while looking for a solution saw the following in dmesg

11:42:53 ~ $ dmesg | grep unknown
[    2.350567] i915: unknown parameter 'lvds_downclock' ignored
[    2.350574] i915: unknown parameter 'preliminary_hw_support' ignored
[    7.845982] cgroup: cgroup2: unknown option "nsdelegate"
[   18.578096] hp_accel: laptop model unknown, using default axes configuration
11:43:01 ~ $ dmesg | grep failed
[   21.625686] radeon 0000:01:00.0: failed VCE resume (-110).
[   36.799858] radeon 0000:01:00.0: failed VCE resume (-110).

I tried the solution from this thread https://bbs.archlinux.org/viewtopic.php?id=230115 and added intel_iommu=off to the kernel command line with no effect.

GRUB_CMDLINE_LINUX="acpi_osi=Linux elevator=bfq acpi_enforce_resources=lax loglevel=3 rd.systemd.show_status=false rd.udev.log-priority=3 intel_iommu=off"

Any suggestions are highly welcomed as this exceeds my knowledge.

Thanks in advance!

Last edited by amaro (2017-10-29 11:36:57)

Offline

#2 2017-10-28 11:05:14

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

Re: [SOLVED] dmesg gives unknown option unknown parameter

[    7.845982] cgroup: cgroup2: unknown option "nsdelegate"

Would expect this from linux-lts but

elevator=bfq

linux-lts does not support bfq so what kernel are you using?  please post the complete dmesg output.

[    2.350567] i915: unknown parameter 'lvds_downclock' ignored
[    2.350574] i915: unknown parameter 'preliminary_hw_support' ignored

Are there any *.conf files in /etc/modprobe.d/ or /usr/lib/modprobe.d/ that are referencing the i915 module?
Edit:
https://github.com/torvalds/linux/commi … 4823edc995
So not a 4.9 series kernel but not 4.13 series as cgroup2 does not support the nsdelegate option.

Last edited by loqs (2017-10-28 11:22:03)

Offline

#3 2017-10-28 14:48:25

amaro
Member
From: 5.11.1-1-ck-ivybridge, xfce
Registered: 2014-05-09
Posts: 364

Re: [SOLVED] dmesg gives unknown option unknown parameter

@loqs
You were right.

cd /etc/modprobe.d/

14:43:08 /etc/modprobe.d $ ls
blacklist-ralink.conf  crda.txt  i915.conf  modprobe.conf  nobeep.conf	options.txt  uvcvideo.conf

14:43:12 /etc/modprobe.d $ cat i915.conf
options i915 enable_rc6=1 enable_fbc=1 lvds_downclock=1 semaphores=1 enable_execlists=0  preliminary_hw_support=1  enable_psr=1

14:45:53 /etc/modprobe.d $ cd /usr/lib/modprobe.d/

14:46:10 /usr/lib/modprobe.d $ ls
systemd.conf

I made the following changes

options i915 enable_rc6=1 enable_fbc=1 enable_psr=1 semaphores=1 enable_execlists=0
#lvds_downclock=1
#preliminary_hw_support=1
GRUB_CMDLINE_LINUX="acpi_osi=Linux acpi_enforce_resources=lax"

Then

sudo grub-mkconfig -o /boot/grub/grub.cfg

Reboot

dmesg | grep failed
[   16.475758] radeon 0000:01:00.0: failed VCE resume (-110).
[   35.089265] radeon 0000:01:00.0: failed VCE resume (-110).
17:37:37 ~ $ dmesg | grep unknown
[    6.506238] cgroup: cgroup2: unknown option "nsdelegate"
[   14.734029] hp_accel: laptop model unknown, using default axes configuration

It's better now but not perfect.

Here's the complete output

17:36:24 ~ $ dmesg
[    0.000000] microcode: microcode updated early to revision 0x1c, date = 2015-02-26
[    0.000000] Linux version 4.12.14-1-ck-ivybridge (squishy@ease) (gcc version 7.2.0 (GCC) ) #1 SMP PREEMPT Wed Sep 20 16:20:59 EDT 2017
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-linux-ck-ivybridge root=/dev/sda4 rw acpi_osi=Linux acpi_enforce_resources=lax
[    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: Enabled xstate features 0x3, context size is 576 bytes, using 'standard' format.
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009dbff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009dc00-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000020200000-0x0000000040003fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000040004000-0x0000000040004fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000040005000-0x00000000a6cf3fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000a6cf4000-0x00000000a7ebcfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000a7ebd000-0x00000000a7fbcfff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000a7fbd000-0x00000000a7ffefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000a7fff000-0x00000000a7ffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000a8000000-0x00000000af1fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed13fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed18000-0x00000000fed19fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ffb00000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000014fdfffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: Hewlett-Packard HP ProBook 470 G0/1948, BIOS 68IRF Ver. F.20 08/19/2013
[    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 = 0x14fe00 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-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 0FF800000 mask FFF800000 write-protect
[    0.000000]   1 base 000000000 mask F80000000 write-back
[    0.000000]   2 base 080000000 mask FE0000000 write-back
[    0.000000]   3 base 0A0000000 mask FF8000000 write-back
[    0.000000]   4 base 0A8000000 mask FFF000000 uncachable
[    0.000000]   5 base 100000000 mask FC0000000 write-back
[    0.000000]   6 base 140000000 mask FE0000000 write-back
[    0.000000]   7 base 150000000 mask FF0000000 uncachable
[    0.000000]   8 base 14FE00000 mask FFFE00000 uncachable
[    0.000000]   9 disabled
[    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- WT  
[    0.000000] e820: last_pfn = 0xa8000 max_arch_pfn = 0x400000000
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] Base memory trampoline at [ffff921400097000] 97000 size 24576
[    0.000000] BRK [0x82f42000, 0x82f42fff] PGTABLE
[    0.000000] BRK [0x82f43000, 0x82f43fff] PGTABLE
[    0.000000] BRK [0x82f44000, 0x82f44fff] PGTABLE
[    0.000000] BRK [0x82f45000, 0x82f45fff] PGTABLE
[    0.000000] BRK [0x82f46000, 0x82f46fff] PGTABLE
[    0.000000] BRK [0x82f47000, 0x82f47fff] PGTABLE
[    0.000000] BRK [0x82f48000, 0x82f48fff] PGTABLE
[    0.000000] BRK [0x82f49000, 0x82f49fff] PGTABLE
[    0.000000] BRK [0x82f4a000, 0x82f4afff] PGTABLE
[    0.000000] RAMDISK: [mem 0x36dc5000-0x376d9fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000000F2F10 000024 (v02 HPQOEM)
[    0.000000] ACPI: XSDT 0x00000000A7FFE120 000094 (v01 HPQOEM SLIC-MPC 0000000F      01000013)
[    0.000000] ACPI: FACP 0x00000000A7FFC000 00010C (v05 HPQOEM 1948     0000000F HP   00000001)
[    0.000000] ACPI: DSDT 0x00000000A7FD5000 021907 (v02 HPQOEM 1948     00000001 INTL 20110112)
[    0.000000] ACPI: FACS 0x00000000A7E72000 000040
[    0.000000] ACPI: FACS 0x00000000A7E72000 000040
[    0.000000] ACPI: HPET 0x00000000A7FFB000 000038 (v01 HPQOEM 1948     00000001 HP   00000001)
[    0.000000] ACPI: APIC 0x00000000A7FFA000 0000BC (v01 HPQOEM 1948     00000001 HP   00000001)
[    0.000000] ACPI: MCFG 0x00000000A7FF9000 00003C (v01 HPQOEM 1948     00000001 HP   00000001)
[    0.000000] ACPI: ASF! 0x00000000A7FF8000 0000A5 (v32 HPQOEM 1948     00000001 HP   00000001)
[    0.000000] ACPI: SSDT 0x00000000A7FD2000 0002CA (v01 HPQOEM SataAhci 00001000 INTL 20110112)
[    0.000000] ACPI: SSDT 0x00000000A7FD1000 00048A (v01 HPQOEM PtidDevc 00001000 INTL 20110112)
[    0.000000] ACPI: SLIC 0x00000000A7FD0000 000176 (v01 HPQOEM SLIC-MPC 00000001 HP   00000001)
[    0.000000] ACPI: MSDM 0x00000000A7FCF000 000055 (v03 HPQOEM SLIC-MPC 00000000 HP   00000001)
[    0.000000] ACPI: FPDT 0x00000000A7FCE000 000044 (v01 HPQOEM 1948     00000001 HP   00000001)
[    0.000000] ACPI: BGRT 0x00000000A7FCD000 000038 (v00 HPQOEM 1948     00000001 HP   00000001)
[    0.000000] ACPI: SSDT 0x00000000A7FCC000 000764 (v01 PmRef  Cpu0Ist  00003000 INTL 20110112)
[    0.000000] ACPI: SSDT 0x00000000A7FCB000 000AAD (v01 PmRef  CpuPm    00003000 INTL 20110112)
[    0.000000] ACPI: SSDT 0x00000000A7FCA000 000B46 (v01 SgRef  SgTabl   00001000 INTL 20110112)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x000000014fdfffff]
[    0.000000]   Device   empty
[    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-0x000000001fffffff]
[    0.000000]   node   0: [mem 0x0000000020200000-0x0000000040003fff]
[    0.000000]   node   0: [mem 0x0000000040005000-0x00000000a6cf3fff]
[    0.000000]   node   0: [mem 0x00000000a7fff000-0x00000000a7ffffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x000000014fdfffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000014fdfffff]
[    0.000000] On node 0 totalpages: 1009808
[    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: 10604 pages used for memmap
[    0.000000]   DMA32 zone: 678644 pages, LIFO batch:31
[    0.000000]   Normal zone: 5112 pages used for memmap
[    0.000000]   Normal zone: 327168 pages, LIFO batch:31
[    0.000000] Reserving Intel graphics memory at 0x00000000a9200000-0x00000000af1fffff
[    0.000000] ACPI: PM-Timer IO Port: 0x408
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.000000] IOAPIC[0]: apic_id 0, 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: 0x8086a201 base: 0xfed00000
[    0.000000] smpboot: Allowing 8 CPUs, 6 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 0x20000000-0x201fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x40004000-0x40004fff]
[    0.000000] PM: Registered nosave memory: [mem 0xa6cf4000-0xa7ebcfff]
[    0.000000] PM: Registered nosave memory: [mem 0xa7ebd000-0xa7fbcfff]
[    0.000000] PM: Registered nosave memory: [mem 0xa7fbd000-0xa7ffefff]
[    0.000000] PM: Registered nosave memory: [mem 0xa8000000-0xaf1fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xaf200000-0xdfffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xe0000000-0xefffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xf0000000-0xfebfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfed0ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed10000-0xfed13fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed14000-0xfed17fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed18000-0xfed19fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed1a000-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-0xffafffff]
[    0.000000] PM: Registered nosave memory: [mem 0xffb00000-0xffffffff]
[    0.000000] e820: [mem 0xaf200000-0xdfffffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.000000] setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:8 nr_node_ids:1
[    0.000000] percpu: Embedded 36 pages/cpu @ffff92154fa00000 s107096 r8192 d32168 u262144
[    0.000000] pcpu-alloc: s107096 r8192 d32168 u262144 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 994007
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux-ck-ivybridge root=/dev/sda4 rw acpi_osi=Linux acpi_enforce_resources=lax
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 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: 3877368K/4039232K available (6429K kernel code, 1060K rwdata, 2056K rodata, 1300K init, 888K bss, 161864K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[    0.000000] ftrace: allocating 27798 entries in 109 pages
[    0.000000] Preemptible hierarchical RCU implementation.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=8.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
[    0.000000] NR_IRQS:8448 nr_irqs:488 16
[    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.010000] tsc: Detected 1795.789 MHz processor
[    0.010000] Calibrating delay loop (skipped), value calculated using timer frequency.. 3591.57 BogoMIPS (lpj=17957890)
[    0.010000] pid_max: default: 32768 minimum: 301
[    0.010000] ACPI: Core revision 20170303
[    0.024976] ACPI: 6 ACPI AML tables successfully acquired and loaded
[    0.025012] Security Framework initialized
[    0.025014] Yama: becoming mindful.
[    0.025033] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.025034] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.025260] CPU: Physical Processor ID: 0
[    0.025261] CPU: Processor Core ID: 0
[    0.025266] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.025266] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.025269] mce: CPU supports 7 MCE banks
[    0.025279] CPU0: Thermal monitoring enabled (TM1)
[    0.025289] process: using mwait in idle threads
[    0.025292] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[    0.025293] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
[    0.025443] Freeing SMP alternatives memory: 24K
[    0.030064] smpboot: Max logical packages: 4
[    0.030139] x2apic: IRQ remapping doesn't support X2APIC mode
[    0.030601] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.137936] TSC deadline timer enabled
[    0.137940] smpboot: CPU0: Intel(R) Celeron(R) CPU 1000M @ 1.80GHz (family: 0x6, model: 0x3a, stepping: 0x9)
[    0.140012] Performance Events: PEBS fmt1+, IvyBridge events, 16-deep LBR, full-width counters, Intel PMU driver.
[    0.140052] ... version:                3
[    0.140052] ... bit width:              48
[    0.140053] ... generic registers:      8
[    0.140054] ... value mask:             0000ffffffffffff
[    0.140055] ... max period:             00007fffffffffff
[    0.140055] ... fixed-purpose events:   3
[    0.140056] ... event mask:             00000007000000ff
[    0.200170] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.220003] smp: Bringing up secondary CPUs ...
[    0.290003] SCHED: No cpumask for kworker/1:0/18 weight 1
[    0.300002] SCHED: No cpumask for kworker/1:0H/19 weight 1
[    0.300031] x86: Booting SMP configuration:
[    0.300032] .... node  #0, CPUs:      #1
[    0.452039] smp: Brought up 1 node, 2 CPUs
[    0.452039] smpboot: Total of 2 processors activated (7183.56 BogoMIPS)
[    0.452039] MuQSS locality CPU 0 to 1: 2
[    0.452039] sched_clock: Marking stable (450000000, 0)->(466038545, -16038545)
[    0.451573] devtmpfs: initialized
[    0.451635] x86/mm: Memory block size: 128MB
[    0.454408] PM: Registering ACPI NVS region [mem 0xa7ebd000-0xa7fbcfff] (1048576 bytes)
[    0.454472] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.454477] futex hash table entries: 2048 (order: 5, 131072 bytes)
[    0.454545] pinctrl core: initialized pinctrl subsystem
[    0.454588] RTC time: 14:35:24, date: 10/28/17
[    0.454683] NET: Registered protocol family 16
[    0.454863] cpuidle: using governor ladder
[    0.454892] cpuidle: using governor menu
[    0.454894] PCCT header not found.
[    0.454920] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.454921] ACPI: bus type PCI registered
[    0.454923] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.454998] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.455012] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[    0.455028] PCI: Using configuration type 1 for base access
[    0.455107] core: PMU erratum BJ122, BV98, HSD29 workaround disabled, HT off
[    0.455184] mtrr: your CPUs had inconsistent variable MTRR settings
[    0.455185] mtrr: probably your BIOS does not setup all CPUs.
[    0.455185] mtrr: corrected configuration.
[    0.455233] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.455940] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.456161] ACPI: Added _OSI(Module Device)
[    0.456162] ACPI: Added _OSI(Processor Device)
[    0.456163] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.456164] ACPI: Added _OSI(Processor Aggregator Device)
[    0.456166] ACPI: Added _OSI(Linux)
[    0.456378] ACPI: Executed 1 blocks of module-level executable AML code
[    0.463889] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query honored via cmdline
[    0.489582] ACPI: Dynamic OEM Table Load:
[    0.489594] ACPI: SSDT 0xFFFF92154A895000 000861 (v01 PmRef  Cpu0Cst  00003001 INTL 20110112)
[    0.490000] ACPI: Dynamic OEM Table Load:
[    0.490007] ACPI: SSDT 0xFFFF92154B266400 000303 (v01 PmRef  ApIst    00003000 INTL 20110112)
[    0.490294] ACPI: Dynamic OEM Table Load:
[    0.490300] ACPI: SSDT 0xFFFF92154A8C7000 000119 (v01 PmRef  ApCst    00003000 INTL 20110112)
[    0.490926] ACPI : EC: EC started
[    0.490928] ACPI : EC: interrupt blocked
[    2.000814] ACPI: \_SB_.PCI0.LPCB.EC0_: Used as first EC
[    2.000816] ACPI: \_SB_.PCI0.LPCB.EC0_: GPE=0x16, EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    2.000818] ACPI: \_SB_.PCI0.LPCB.EC0_: Used as boot DSDT EC to handle transactions
[    2.000819] ACPI: Interpreter enabled
[    2.000849] ACPI: (supports S0 S3 S4 S5)
[    2.000850] ACPI: Using IOAPIC for interrupt routing
[    2.000877] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    2.003571] ACPI: Power Resource [APPR] (off)
[    2.006284] ACPI: Power Resource [COMP] (on)
[    2.006598] ACPI: Power Resource [LPP] (on)
[    2.011089] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
[    2.011095] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    2.012996] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
[    2.012997] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[    2.013520] PCI host bridge to bus 0000:00
[    2.013523] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    2.013525] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    2.013526] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    2.013528] pci_bus 0000:00: root bus resource [mem 0xaf200000-0xdfffffff window]
[    2.013529] pci_bus 0000:00: root bus resource [mem 0xf0000000-0xfedfffff window]
[    2.013531] pci_bus 0000:00: root bus resource [mem 0xfee01000-0xffffffff window]
[    2.013533] pci_bus 0000:00: root bus resource [bus 00-3e]
[    2.013542] pci 0000:00:00.0: [8086:0154] type 00 class 0x060000
[    2.013657] pci 0000:00:01.0: [8086:0151] type 01 class 0x060400
[    2.013705] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    2.013798] pci 0000:00:02.0: [8086:0156] type 00 class 0x030000
[    2.013810] pci 0000:00:02.0: reg 0x10: [mem 0xd0000000-0xd03fffff 64bit]
[    2.013818] pci 0000:00:02.0: reg 0x18: [mem 0xc0000000-0xcfffffff 64bit pref]
[    2.013823] pci 0000:00:02.0: reg 0x20: [io  0x3000-0x303f]
[    2.013971] pci 0000:00:14.0: [8086:1e31] type 00 class 0x0c0330
[    2.013992] pci 0000:00:14.0: reg 0x10: [mem 0xd0800000-0xd080ffff 64bit]
[    2.014069] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    2.014118] pci 0000:00:14.0: System wakeup disabled by ACPI
[    2.014162] pci 0000:00:16.0: [8086:1e3a] type 00 class 0x078000
[    2.014185] pci 0000:00:16.0: reg 0x10: [mem 0xd0814000-0xd081400f 64bit]
[    2.014280] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    2.014373] pci 0000:00:1a.0: [8086:1e2d] type 00 class 0x0c0320
[    2.014392] pci 0000:00:1a.0: reg 0x10: [mem 0xd0819000-0xd08193ff]
[    2.014495] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    2.014544] pci 0000:00:1a.0: System wakeup disabled by ACPI
[    2.014586] pci 0000:00:1b.0: [8086:1e20] type 00 class 0x040300
[    2.014607] pci 0000:00:1b.0: reg 0x10: [mem 0xd0810000-0xd0813fff 64bit]
[    2.014699] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    2.014787] pci 0000:00:1c.0: [8086:1e10] type 01 class 0x060400
[    2.014906] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    2.014996] pci 0000:00:1c.2: [8086:1e14] type 01 class 0x060400
[    2.015112] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[    2.015169] pci 0000:00:1c.2: System wakeup disabled by ACPI
[    2.015213] pci 0000:00:1c.3: [8086:1e16] type 01 class 0x060400
[    2.015328] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[    2.015386] pci 0000:00:1c.3: System wakeup disabled by ACPI
[    2.015436] pci 0000:00:1d.0: [8086:1e26] type 00 class 0x0c0320
[    2.015456] pci 0000:00:1d.0: reg 0x10: [mem 0xd0818000-0xd08183ff]
[    2.015559] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    2.015608] pci 0000:00:1d.0: System wakeup disabled by ACPI
[    2.015647] pci 0000:00:1f.0: [8086:1e59] type 00 class 0x060100
[    2.015842] pci 0000:00:1f.2: [8086:1e03] type 00 class 0x010601
[    2.015860] pci 0000:00:1f.2: reg 0x10: [io  0x3068-0x306f]
[    2.015869] pci 0000:00:1f.2: reg 0x14: [io  0x3074-0x3077]
[    2.015878] pci 0000:00:1f.2: reg 0x18: [io  0x3060-0x3067]
[    2.015887] pci 0000:00:1f.2: reg 0x1c: [io  0x3070-0x3073]
[    2.015895] pci 0000:00:1f.2: reg 0x20: [io  0x3040-0x305f]
[    2.015904] pci 0000:00:1f.2: reg 0x24: [mem 0xd0817000-0xd08177ff]
[    2.015961] pci 0000:00:1f.2: PME# supported from D3hot
[    2.016093] pci 0000:01:00.0: [1002:6600] type 00 class 0x030000
[    2.016111] pci 0000:01:00.0: reg 0x10: [mem 0xb0000000-0xbfffffff 64bit pref]
[    2.016122] pci 0000:01:00.0: reg 0x18: [mem 0xd0700000-0xd073ffff 64bit]
[    2.016129] pci 0000:01:00.0: reg 0x20: [io  0x2000-0x20ff]
[    2.016141] pci 0000:01:00.0: reg 0x30: [mem 0xfffe0000-0xffffffff pref]
[    2.016203] pci 0000:01:00.0: supports D1 D2
[    2.016204] pci 0000:01:00.0: PME# supported from D1 D2 D3hot
[    2.040269] pci 0000:00:01.0: PCI bridge to [bus 01]
[    2.040273] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    2.040288] pci 0000:00:01.0:   bridge window [mem 0xd0700000-0xd07fffff]
[    2.040292] pci 0000:00:01.0:   bridge window [mem 0xb0000000-0xbfffffff 64bit pref]
[    2.040352] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    2.040360] pci 0000:00:1c.0:   bridge window [mem 0xd0600000-0xd06fffff]
[    2.040468] pci 0000:00:1c.2: PCI bridge to [bus 03]
[    2.040475] pci 0000:00:1c.2:   bridge window [mem 0xd0500000-0xd05fffff]
[    2.040578] pci 0000:04:00.0: [1814:3290] type 00 class 0x028000
[    2.040607] pci 0000:04:00.0: reg 0x10: [mem 0xd0410000-0xd041ffff]
[    2.040793] pci 0000:04:00.0: PME# supported from D0 D3hot
[    2.040837] pci 0000:04:00.0: System wakeup disabled by ACPI
[    2.040896] pci 0000:04:00.1: [1814:3298] type 00 class 0x0d1100
[    2.040923] pci 0000:04:00.1: reg 0x10: [mem 0xd0400000-0xd040ffff]
[    2.041108] pci 0000:04:00.1: supports D1
[    2.041109] pci 0000:04:00.1: PME# supported from D0 D1 D3hot
[    2.070333] pci 0000:00:1c.3: PCI bridge to [bus 04]
[    2.070340] pci 0000:00:1c.3:   bridge window [mem 0xd0400000-0xd04fffff]
[    2.070371] pci_bus 0000:00: on NUMA node 0
[    2.071384] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 *10 11 12 14 15)
[    2.071441] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 *5 6 10 11 12 14 15)
[    2.071497] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 *10 11 12 14 15)
[    2.071552] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 *10 11 12 14 15)
[    2.071606] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 *10 11 12 14 15)
[    2.071660] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    2.071715] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 *11 12 14 15)
[    2.071769] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    2.072063] ACPI: Enabled 5 GPEs in block 00 to 3F
[    2.072255] ACPI : EC: interrupt unblocked
[    2.072261] ACPI : EC: event unblocked
[    2.072268] ACPI: \_SB_.PCI0.LPCB.EC0_: GPE=0x16, EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    2.072270] ACPI: \_SB_.PCI0.LPCB.EC0_: Used as boot DSDT EC to handle transactions and events
[    2.072377] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    2.072380] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    2.072386] pci 0000:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[    2.072388] pci 0000:01:00.0: vgaarb: bridge control possible
[    2.072389] pci 0000:00:02.0: vgaarb: no bridge control possible
[    2.072390] vgaarb: loaded
[    2.072476] SCSI subsystem initialized
[    2.072490] EDAC MC: Ver: 3.0.0
[    2.072634] PCI: Using ACPI for IRQ routing
[    2.079756] PCI: pci_cache_line_size set to 64 bytes
[    2.079816] e820: reserve RAM buffer [mem 0x0009dc00-0x0009ffff]
[    2.079818] e820: reserve RAM buffer [mem 0x40004000-0x43ffffff]
[    2.079819] e820: reserve RAM buffer [mem 0xa6cf4000-0xa7ffffff]
[    2.079820] e820: reserve RAM buffer [mem 0x14fe00000-0x14fffffff]
[    2.079923] NetLabel: Initializing
[    2.079924] NetLabel:  domain hash size = 128
[    2.079924] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    2.079942] NetLabel:  unlabeled traffic allowed by default
[    2.080384] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    2.080391] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    2.082417] clocksource: Switched to clocksource hpet
[    2.093487] VFS: Disk quotas dquot_6.6.0
[    2.093513] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    2.093594] pnp: PnP ACPI init
[    2.093816] system 00:00: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    2.093818] system 00:00: [mem 0xfed10000-0xfed17fff] could not be reserved
[    2.093820] system 00:00: [mem 0xfed18000-0xfed18fff] has been reserved
[    2.093822] system 00:00: [mem 0xfed19000-0xfed19fff] has been reserved
[    2.093823] system 00:00: [mem 0xe0000000-0xefffffff] has been reserved
[    2.093825] system 00:00: [mem 0xfed20000-0xfed3ffff] has been reserved
[    2.093827] system 00:00: [mem 0xfed90000-0xfed93fff] has been reserved
[    2.093829] system 00:00: [mem 0xfed45000-0xfed8ffff] has been reserved
[    2.093831] system 00:00: [mem 0xfec00000-0xfec00fff] could not be reserved
[    2.093835] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    2.094046] system 00:01: [io  0xfe00-0xfe0f] has been reserved
[    2.094048] system 00:01: [io  0xfe80-0xfe8f] has been reserved
[    2.094050] system 00:01: [mem 0xfed40000-0xfed44fff] has been reserved
[    2.094053] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    2.094145] system 00:02: [io  0x0200-0x027f] has been reserved
[    2.094147] system 00:02: [io  0x1000-0x100f] has been reserved
[    2.094148] system 00:02: [io  0xffff] has been reserved
[    2.094150] system 00:02: [io  0xffff] has been reserved
[    2.094152] system 00:02: [io  0x0400-0x047f] has been reserved
[    2.094155] system 00:02: [io  0x0500-0x057f] has been reserved
[    2.094156] system 00:02: [io  0xef80-0xef9f] has been reserved
[    2.094159] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[    2.094186] pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active)
[    2.094333] pnp 00:04: Plug and Play ACPI device, IDs HPQ8001 PNP0303 (active)
[    2.094356] pnp 00:05: Plug and Play ACPI device, IDs SYN300c SYN0100 SYN0002 PNP0f13 (active)
[    2.094688] system 00:06: [mem 0x20000000-0x201fffff] has been reserved
[    2.094690] system 00:06: [mem 0x40004000-0x40004fff] has been reserved
[    2.094693] system 00:06: Plug and Play ACPI device, IDs PNP0c01 (active)
[    2.094894] pnp: PnP ACPI: found 7 devices
[    2.101292] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    2.101298] pci 0000:01:00.0: can't claim BAR 6 [mem 0xfffe0000-0xffffffff pref]: no compatible bridge window
[    2.101337] pci 0000:01:00.0: BAR 6: assigned [mem 0xd0740000-0xd075ffff pref]
[    2.101339] pci 0000:00:01.0: PCI bridge to [bus 01]
[    2.101342] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    2.101345] pci 0000:00:01.0:   bridge window [mem 0xd0700000-0xd07fffff]
[    2.101347] pci 0000:00:01.0:   bridge window [mem 0xb0000000-0xbfffffff 64bit pref]
[    2.101351] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    2.101357] pci 0000:00:1c.0:   bridge window [mem 0xd0600000-0xd06fffff]
[    2.101367] pci 0000:00:1c.2: PCI bridge to [bus 03]
[    2.101373] pci 0000:00:1c.2:   bridge window [mem 0xd0500000-0xd05fffff]
[    2.101383] pci 0000:00:1c.3: PCI bridge to [bus 04]
[    2.101388] pci 0000:00:1c.3:   bridge window [mem 0xd0400000-0xd04fffff]
[    2.101399] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    2.101400] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    2.101402] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    2.101404] pci_bus 0000:00: resource 7 [mem 0xaf200000-0xdfffffff window]
[    2.101405] pci_bus 0000:00: resource 8 [mem 0xf0000000-0xfedfffff window]
[    2.101406] pci_bus 0000:00: resource 9 [mem 0xfee01000-0xffffffff window]
[    2.101408] pci_bus 0000:01: resource 0 [io  0x2000-0x2fff]
[    2.101409] pci_bus 0000:01: resource 1 [mem 0xd0700000-0xd07fffff]
[    2.101411] pci_bus 0000:01: resource 2 [mem 0xb0000000-0xbfffffff 64bit pref]
[    2.101413] pci_bus 0000:02: resource 1 [mem 0xd0600000-0xd06fffff]
[    2.101414] pci_bus 0000:03: resource 1 [mem 0xd0500000-0xd05fffff]
[    2.101416] pci_bus 0000:04: resource 1 [mem 0xd0400000-0xd04fffff]
[    2.101549] NET: Registered protocol family 2
[    2.101724] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
[    2.101785] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
[    2.101882] TCP: Hash tables configured (established 32768 bind 32768)
[    2.101915] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[    2.101928] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[    2.101986] NET: Registered protocol family 1
[    2.102005] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    2.102014] pci 0000:00:14.0: enabling device (0000 -> 0002)
[    2.102168] pci 0000:00:14.0: can't derive routing for PCI INT A
[    2.102169] pci 0000:00:14.0: PCI INT A: no GSI
[    2.102835] PCI: CLS 64 bytes, default 64
[    2.102882] Unpacking initramfs...
[    2.265110] Freeing initrd memory: 9300K
[    2.265123] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    2.265127] software IO TLB [mem 0xa2cf4000-0xa6cf4000] (64MB) mapped at [ffff9214a2cf4000-ffff9214a6cf3fff]
[    2.265208] resource sanity check: requesting [mem 0xfed10000-0xfed15fff], which spans more than Reserved [mem 0xfed10000-0xfed13fff]
[    2.265213] caller snb_uncore_imc_init_box+0x6c/0xb0 mapping multiple BARs
[    2.265342] Scanning for low memory corruption every 60 seconds
[    2.266019] Initialise system trusted keyrings
[    2.266031] Key type blacklist registered
[    2.266080] workingset: timestamp_bits=46 max_order=20 bucket_order=0
[    2.267265] zbud: loaded
[    2.268063] Key type asymmetric registered
[    2.268075] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
[    2.268107] io scheduler noop registered
[    2.268108] io scheduler deadline registered
[    2.268136] io scheduler cfq registered
[    2.268137] io scheduler mq-deadline registered
[    2.268137] io scheduler kyber registered
[    2.268162] io scheduler bfq registered (default)
[    2.269222] pcieport 0000:00:01.0: Signaling PME with IRQ 24
[    2.269273] pcieport 0000:00:1c.0: Signaling PME with IRQ 25
[    2.269319] pcieport 0000:00:1c.2: Signaling PME with IRQ 26
[    2.269368] pcieport 0000:00:1c.3: Signaling PME with IRQ 27
[    2.269397] intel_idle: MWAIT substates: 0x120
[    2.269398] intel_idle: v0.4.1 model 0x3A
[    2.269472] intel_idle: lapic_timer_reliable_states 0xffffffff
[    2.269605] GHES: HEST is not enabled!
[    2.269689] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    2.270231] Linux agpgart interface v0.103
[    2.270414] rtc_cmos 00:03: RTC can wake from S4
[    2.270550] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
[    2.270615] rtc_cmos 00:03: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[    2.270626] intel_pstate: Intel P-state driver initializing
[    2.270708] ledtrig-cpu: registered to indicate activity on CPUs
[    2.270753] vlv2_plat_clk vlv2_plat_clk: vlv2_plat_clk initialized
[    2.271062] NET: Registered protocol family 10
[    2.276355] Segment Routing with IPv6
[    2.276388] NET: Registered protocol family 17
[    2.276598] RAS: Correctable Errors collector initialized.
[    2.276650] microcode: sig=0x306a9, pf=0x10, revision=0x1c
[    2.276710] microcode: Microcode Update Driver: v2.2.
[    2.276878] registered taskstats version 1
[    2.276888] Loading compiled-in X.509 certificates
[    2.276910] zswap: loaded using pool lzo/zbud
[    2.277413]   Magic number: 5:643:587
[    2.277528] rtc_cmos 00:03: setting system clock to 2017-10-28 14:35:26 UTC (1509201326)
[    2.278773] PM: Hibernation image not present or could not be loaded.
[    2.281080] Freeing unused kernel memory: 1300K
[    2.281082] Write protecting the kernel read-only data: 12288k
[    2.281808] Freeing unused kernel memory: 1748K
[    2.290017] Freeing unused kernel memory: 2040K
[    2.290020] MuQSS CPU scheduler v0.160 by Con Kolivas.
[    2.313843] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0
[    2.313848] ACPI: Sleep Button [SLPB]
[    2.313975] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input1
[    2.314005] ACPI: Lid Switch [LID]
[    2.314054] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[    2.314056] ACPI: Power Button [PWRF]
[    2.325321] [drm] Memory usable by graphics device = 2048M
[    2.325324] [drm] Replacing VGA console driver
[    2.325987] Console: switching to colour dummy device 80x25
[    2.331447] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    2.331449] [drm] Driver supports precise vblank timestamp query.
[    2.333971] i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=none:owns=io+mem
[    2.376691] [drm] Initialized i915 1.6.0 20170403 for 0000:00:02.0 on minor 0
[    2.378523] [Firmware Bug]: ACPI(DGFX) defines _DOD but not _DOS
[    2.379440] ACPI: Video Device [DGFX] (multi-head: yes  rom: no  post: no)
[    2.379873] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/LNXVIDEO:00/input/input3
[    2.380346] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    2.380697] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input4
[    2.403915] fbcon: inteldrmfb (fb0) is primary device
[    3.131735] Console: switching to colour frame buffer device 200x56
[    3.155347] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[    3.251792] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[    3.253760] i8042: Detected active multiplexing controller, rev 1.1
[    3.254637] serio: i8042 KBD port at 0x60,0x64 irq 1
[    3.254769] serio: i8042 AUX0 port at 0x60,0x64 irq 12
[    3.254805] serio: i8042 AUX1 port at 0x60,0x64 irq 12
[    3.254846] serio: i8042 AUX2 port at 0x60,0x64 irq 12
[    3.254878] serio: i8042 AUX3 port at 0x60,0x64 irq 12
[    3.265542] ACPI: bus type USB registered
[    3.265569] usbcore: registered new interface driver usbfs
[    3.265578] usbcore: registered new interface driver hub
[    3.265608] usbcore: registered new device driver usb
[    3.266177] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    3.266484] ehci-pci: EHCI PCI platform driver
[    3.266744] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    3.266752] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    3.266767] ehci-pci 0000:00:1a.0: debug port 2
[    3.269985] libata version 3.00 loaded.
[    3.272009] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[    3.272205] ehci-pci 0000:00:1a.0: irq 16, io mem 0xd0819000
[    3.282315] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    3.282534] tsc: Refined TSC clocksource calibration: 1795.920 MHz
[    3.282541] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x19e31b7216c, max_idle_ns: 440795249889 ns
[    3.282591] hub 1-0:1.0: USB hub found
[    3.282607] hub 1-0:1.0: 2 ports detected
[    3.283008] xhci_hcd 0000:00:14.0: can't derive routing for PCI INT A
[    3.283009] xhci_hcd 0000:00:14.0: PCI INT A: no GSI
[    3.283039] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    3.283045] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[    3.284146] xhci_hcd 0000:00:14.0: hcc params 0x20007181 hci version 0x100 quirks 0x0000b930
[    3.284152] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    3.284487] hub 2-0:1.0: USB hub found
[    3.284504] hub 2-0:1.0: 4 ports detected
[    3.288452] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    3.288458] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
[    3.288670] hub 3-0:1.0: USB hub found
[    3.288684] hub 3-0:1.0: 4 ports detected
[    3.289153] ahci 0000:00:1f.2: version 3.0
[    3.289421] ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
[    3.289449] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 3 Gbps 0x3 impl SATA mode
[    3.289451] ahci 0000:00:1f.2: flags: 64bit ncq stag pm led clo pio slum part ems apst 
[    3.292221] scsi host0: ahci
[    3.302445] scsi host1: ahci
[    3.302744] scsi host2: ahci
[    3.302899] scsi host3: ahci
[    3.313046] scsi host4: ahci
[    3.314742] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input5
[    3.323257] scsi host5: ahci
[    3.323365] ata1: SATA max UDMA/133 abar m2048@0xd0817000 port 0xd0817100 irq 30
[    3.323368] ata2: SATA max UDMA/133 abar m2048@0xd0817000 port 0xd0817180 irq 30
[    3.323370] ata3: DUMMY
[    3.323371] ata4: DUMMY
[    3.323372] ata5: DUMMY
[    3.323374] ata6: DUMMY
[    3.323836] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    3.323846] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 4
[    3.323864] ehci-pci 0000:00:1d.0: debug port 2
[    3.327773] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[    3.327839] ehci-pci 0000:00:1d.0: irq 16, io mem 0xd0818000
[    3.340682] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    3.340990] hub 4-0:1.0: USB hub found
[    3.341003] hub 4-0:1.0: 2 ports detected
[    3.642562] usb 2-4: new high-speed USB device number 2 using xhci_hcd
[    3.642565] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    3.654177] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    3.692567] usb 4-1: new high-speed USB device number 2 using ehci-pci
[    3.711422] ata1.00: ACPI cmd 00/00:00:00:00:00:a0 (NOP) rejected by device (Stat=0x51 Err=0x04)
[    3.711746] ata1.00: ATA-9: ST500LM000-1EJ162, SM11, max UDMA/133
[    3.711749] ata1.00: 976773168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[    3.755778] ata1.00: ACPI cmd 00/00:00:00:00:00:a0 (NOP) rejected by device (Stat=0x51 Err=0x04)
[    3.756131] ata1.00: configured for UDMA/133
[    3.756574] scsi 0:0:0:0: Direct-Access     ATA      ST500LM000-1EJ16 SM11 PQ: 0 ANSI: 5
[    3.806053] hub 1-1:1.0: USB hub found
[    3.806174] hub 1-1:1.0: 6 ports detected
[    3.809074] usb-storage 2-4:1.2: USB Mass Storage device detected
[    3.809293] scsi host6: usb-storage 2-4:1.2
[    3.809416] usbcore: registered new interface driver usb-storage
[    3.809914] usbcore: registered new interface driver uas
[    3.861876] hub 4-1:1.0: USB hub found
[    3.861929] hub 4-1:1.0: 6 ports detected
[    4.112600] usb 1-1.3: new high-speed USB device number 3 using ehci-pci
[    4.144200] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    4.148334] ata2.00: ACPI cmd 00/00:00:00:00:00:a0 (NOP) rejected by device (Stat=0x51 Err=0x04)
[    4.148340] ata2.00: ATAPI: hp       CDDVDW SU-208CB, HH00, max UDMA/100
[    4.151049] ata2.00: ACPI cmd 00/00:00:00:00:00:a0 (NOP) rejected by device (Stat=0x51 Err=0x04)
[    4.151055] ata2.00: configured for UDMA/100
[    4.154408] scsi 1:0:0:0: CD-ROM            hp       CDDVDW SU-208CB  HH00 PQ: 0 ANSI: 5
[    4.178059] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/466 GiB)
[    4.178063] sd 0:0:0:0: [sda] 4096-byte physical blocks
[    4.178073] sd 0:0:0:0: [sda] Write Protect is off
[    4.178076] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    4.178089] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    4.195931] sr 1:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[    4.195934] cdrom: Uniform CD-ROM driver Revision: 3.20
[    4.196169] sr 1:0:0:0: Attached scsi CD-ROM sr0
[    4.223027]  sda: sda1 sda2 sda3 sda4
[    4.223533] sd 0:0:0:0: [sda] Attached SCSI disk
[    4.292717] clocksource: Switched to clocksource tsc
[    4.347013] random: fast init done
[    4.819480] EXT4-fs (sda4): mounted filesystem with ordered data mode. Opts: (null)
[    4.893926] scsi 6:0:0:0: Direct-Access     ZTE      MMC Storage      2.31 PQ: 0 ANSI: 2
[    4.935366] sd 6:0:0:0: [sdb] Attached SCSI removable disk
[    6.502319] ip_tables: (C) 2000-2006 Netfilter Core Team
[    6.506238] cgroup: cgroup2: unknown option "nsdelegate"
[    6.551812] systemd[1]: systemd 235 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)
[    6.552000] systemd[1]: Detected architecture x86-64.
[    6.576541] systemd[1]: Set hostname to <ahp>.
[    8.424164] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    8.424547] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[    8.424824] systemd[1]: Reached target User and Group Name Lookups.
[    8.425720] systemd[1]: Created slice System Slice.
[    8.428136] systemd[1]: Listening on Process Core Dump Socket.
[    8.428435] systemd[1]: Listening on LVM2 metadata daemon socket.
[    8.493949] systemd[1]: Listening on Journal Socket.
[    8.736619] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    8.736680] sr 1:0:0:0: Attached scsi generic sg1 type 5
[    8.736724] sd 6:0:0:0: Attached scsi generic sg2 type 0
[    8.836219] EXT4-fs (sda4): Ignoring removed nobh option
[    8.836225] EXT4-fs (sda4): Mount option "nouser_xattr" will be removed by 3.5
               Contact linux-ext4@vger.kernel.org if you think we should keep it.

[    8.836254] EXT4-fs (sda4): re-mounted. Opts: barrier=0,data=ordered,nobh,errors=remount-ro,nouser_xattr
[    8.913307] systemd-journald[198]: Received request to flush runtime journal from PID 1
[    9.258038] systemd-sysctl (203): drop_caches: 3
[    9.558846] Adding 8388604k swap on /swapfile.  Priority:-1 extents:622 across:181051388k FS
[   14.143798] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[   14.179796] ACPI: AC Adapter [AC] (on-line)
[   14.319963] input: HP Wireless hotkeys as /devices/virtual/input/input10
[   14.693697] ACPI: Battery Slot [BAT0] (battery present)
[   14.694153] wmi: Mapper loaded
[   14.698311] (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().
[   14.703261] thermal LNXTHERM:00: registered as thermal_zone0
[   14.703265] ACPI: Thermal Zone [CPUZ] (46 C)
[   14.728115] thermal LNXTHERM:01: registered as thermal_zone1
[   14.728118] ACPI: Thermal Zone [GFXZ] (0 C)
[   14.734029] hp_accel: laptop model unknown, using default axes configuration
[   14.877259] lis3lv02d: 8 bits 3DC sensor found
[   14.882375] thermal LNXTHERM:02: registered as thermal_zone2
[   14.882379] ACPI: Thermal Zone [EXTZ] (35 C)
[   15.330103] thermal LNXTHERM:03: registered as thermal_zone3
[   15.330107] ACPI: Thermal Zone [LOCZ] (43 C)
[   15.576363] [drm] radeon kernel modesetting enabled.
[   15.576385] vga_switcheroo: detected switching method \_SB_.PCI0.GFX0.ATPX handle
[   15.576487] ATPX version 1, functions 0x00000003
[   15.671995] AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
[   15.671998] AMD IOMMUv2 functionality not available on this system
[   15.673200] snd_hda_codec_idt hdaudioC0D0: autoconfig for 92HD91BXX: line_outs=1 (0xd/0x0/0x0/0x0/0x0) type:speaker
[   15.673204] snd_hda_codec_idt hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[   15.673207] snd_hda_codec_idt hdaudioC0D0:    hp_outs=1 (0xb/0x0/0x0/0x0/0x0)
[   15.673209] snd_hda_codec_idt hdaudioC0D0:    mono: mono_out=0x0
[   15.673211] snd_hda_codec_idt hdaudioC0D0:    inputs:
[   15.673213] snd_hda_codec_idt hdaudioC0D0:      Internal Mic=0x11
[   15.673216] snd_hda_codec_idt hdaudioC0D0:      Mic=0xc
[   15.781023] snd_hda_intel 0000:00:1b.0: bound 0000:00:02.0 (ops vgt_balloon_space [i915])
[   15.789855] thermal LNXTHERM:04: registered as thermal_zone4
[   15.789859] ACPI: Thermal Zone [BATZ] (0 C)
[   15.790561] thermal LNXTHERM:05: registered as thermal_zone5
[   15.790564] ACPI: Thermal Zone [PCHZ] (127 C)
[   15.802496] CRAT table not found
[   15.802499] Finished initializing topology ret=0
[   15.806858] kfd kfd: Initialized module
[   15.807137] radeon 0000:01:00.0: enabling device (0000 -> 0003)
[   15.807223] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
[   15.807328] [drm] initializing kernel modesetting (OLAND 0x1002:0x6600 0x103C:0x194D 0x00).
[   15.807345] vga_switcheroo: enabled
[   15.807436] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
[   15.807490] input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input13
[   15.807539] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input14
[   15.824070] ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042F conflicts with OpRegion 0x0000000000000400-0x000000000000047F (\PMIO) (20170303/utaddress-247)
[   15.824079] ACPI: This conflict may cause random problems and system instability
[   15.824080] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   15.824087] ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20170303/utaddress-247)
[   15.824092] ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054F conflicts with OpRegion 0x0000000000000500-0x000000000000055F (\_SB.PCI0.PEGP.DGFX.GPIO) (20170303/utaddress-247)
[   15.824096] ACPI: This conflict may cause random problems and system instability
[   15.824096] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   15.824097] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20170303/utaddress-247)
[   15.824101] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053F conflicts with OpRegion 0x0000000000000500-0x000000000000055F (\_SB.PCI0.PEGP.DGFX.GPIO) (20170303/utaddress-247)
[   15.824104] ACPI: This conflict may cause random problems and system instability
[   15.824105] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   15.824105] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20170303/utaddress-247)
[   15.824109] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052F conflicts with OpRegion 0x0000000000000500-0x000000000000055F (\_SB.PCI0.PEGP.DGFX.GPIO) (20170303/utaddress-247)
[   15.824112] ACPI: This conflict may cause random problems and system instability
[   15.824113] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   15.921412] ATOM BIOS: HP
[   15.921426] [drm] GPU not posted. posting now...
[   15.925542] radeon 0000:01:00.0: VRAM: 1024M 0x0000000000000000 - 0x000000003FFFFFFF (1024M used)
[   15.925545] radeon 0000:01:00.0: GTT: 2048M 0x0000000040000000 - 0x00000000BFFFFFFF
[   15.925554] [drm] Detected VRAM RAM=1024M, BAR=256M
[   15.925556] [drm] RAM width 128bits DDR
[   15.925605] [TTM] Zone  kernel: Available graphics memory: 1945890 kiB
[   15.925606] [TTM] Initializing pool allocator
[   15.925610] [TTM] Initializing DMA pool allocator
[   15.925629] [drm] radeon: 1024M of VRAM memory ready
[   15.925630] [drm] radeon: 2048M of GTT memory ready.
[   15.925638] [drm] Loading oland Microcode
[   16.251159] [drm] Internal thermal controller without fan control
[   16.251286] [drm] probing gen 2 caps for device 8086:151 = 261ad02/6
[   16.260824] [drm] radeon: dpm initialized
[   16.297833] RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 163840 ms ovfl timer
[   16.297835] RAPL PMU: hw unit of domain pp0-core 2^-16 Joules
[   16.297837] RAPL PMU: hw unit of domain package 2^-16 Joules
[   16.297838] RAPL PMU: hw unit of domain pp1-gpu 2^-16 Joules
[   16.362181] [drm] Found VCE firmware/feedback version 50.0.1 / 17!
[   16.362206] [drm] GART: num cpu pages 524288, num gpu pages 524288
[   16.364336] [drm] probing gen 2 caps for device 8086:151 = 261ad02/6
[   16.364341] [drm] PCIE gen 2 link speeds already enabled
[   16.368862] [drm] PCIE GART of 2048M enabled (table at 0x00000000001D6000).
[   16.369069] radeon 0000:01:00.0: WB enabled
[   16.369074] radeon 0000:01:00.0: fence driver on ring 0 use gpu addr 0x0000000040000c00 and cpu addr 0xffff9215477f0c00
[   16.369077] radeon 0000:01:00.0: fence driver on ring 1 use gpu addr 0x0000000040000c04 and cpu addr 0xffff9215477f0c04
[   16.369079] radeon 0000:01:00.0: fence driver on ring 2 use gpu addr 0x0000000040000c08 and cpu addr 0xffff9215477f0c08
[   16.369081] radeon 0000:01:00.0: fence driver on ring 3 use gpu addr 0x0000000040000c0c and cpu addr 0xffff9215477f0c0c
[   16.369084] radeon 0000:01:00.0: fence driver on ring 4 use gpu addr 0x0000000040000c10 and cpu addr 0xffff9215477f0c10
[   16.369489] radeon 0000:01:00.0: fence driver on ring 5 use gpu addr 0x0000000000075a18 and cpu addr 0xffffaf4c81e35a18
[   16.429545] input: ST LIS3LV02DL Accelerometer as /devices/platform/lis3lv02d/input/input19
[   16.475758] radeon 0000:01:00.0: failed VCE resume (-110).
[   16.475762] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[   16.475763] [drm] Driver supports precise vblank timestamp query.
[   16.475765] radeon 0000:01:00.0: radeon: MSI limited to 32-bit
[   16.475814] radeon 0000:01:00.0: radeon: using MSI.
[   16.475870] [drm] radeon: irq initialized.
[   16.712505] [drm] ring test on 0 succeeded in 1 usecs
[   16.712511] [drm] ring test on 1 succeeded in 1 usecs
[   16.712514] [drm] ring test on 2 succeeded in 1 usecs
[   16.712522] [drm] ring test on 3 succeeded in 3 usecs
[   16.712528] [drm] ring test on 4 succeeded in 3 usecs
[   16.890084] [drm] ring test on 5 succeeded in 2 usecs
[   16.890089] [drm] UVD initialized successfully.
[   16.890370] [drm] ib test on ring 0 succeeded in 0 usecs
[   16.890397] [drm] ib test on ring 1 succeeded in 0 usecs
[   16.890422] [drm] ib test on ring 2 succeeded in 0 usecs
[   16.890444] [drm] ib test on ring 3 succeeded in 0 usecs
[   16.890464] [drm] ib test on ring 4 succeeded in 0 usecs
[   16.901424] psmouse serio4: synaptics: queried max coordinates: x [..5716], y [..4886]
[   16.939278] psmouse serio4: synaptics: queried min coordinates: x [1220..], y [986..]
[   16.975566] intel_rapl: Found RAPL domain package
[   16.975569] intel_rapl: Found RAPL domain core
[   16.975570] intel_rapl: Found RAPL domain uncore
[   17.014157] psmouse serio4: synaptics: Touchpad model: 1, fw: 7.5, id: 0x1e0b1, caps: 0xf00173/0x640000/0xa2400/0x0, board id: 2654, fw id: 1323623
[   17.060457] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio4/input/input18
[   17.563629] [drm] ib test on ring 5 succeeded
[   17.565794] [drm] Radeon Display Connectors
[   17.570153] [drm] Initialized radeon 2.50.0 20080528 for 0000:01:00.0 on minor 1
[   18.029702] [drm] amdgpu kernel modesetting enabled.
[   18.029723] vga_switcheroo: detected switching method \_SB_.PCI0.GFX0.ATPX handle
[   18.029825] ATPX version 1, functions 0x00000003
[   18.101058] ieee80211 phy0: rt2x00_set_rt: Info - RT chipset 3290, rev 0015 detected
[   18.107585] ppdev: user-space parallel port driver
[   18.115480] ieee80211 phy0: rt2x00_set_rf: Info - RF chipset 3290 detected
[   18.132879] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
[   18.181295] iTCO_vendor_support: vendor-support=0
[   18.182962] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[   18.183040] iTCO_wdt: Found a Panther Point TCO device (Version=2, TCOBASE=0x0460)
[   18.183166] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[   18.186101] gpio_ich: GPIO from 436 to 511 on gpio_ich
[   18.212933] input: HP WMI hotkeys as /devices/virtual/input/input20
[   18.226651] rt2800pci 0000:04:00.0 wlo1: renamed from wlan0
[   18.231050] mousedev: PS/2 mouse device common for all mice
[   19.934301] usbcore: registered new interface driver usbserial
[   19.934317] usbcore: registered new interface driver usbserial_generic
[   19.934330] usbserial: USB Serial support registered for generic
[   20.197894] random: crng init done
[   20.309186] snd_hda_intel 0000:00:1b.0: control 2:0:0:Digital Capture Volume:0 is already present
[   20.328958] usbcore: registered new interface driver option
[   20.328979] usbserial: USB Serial support registered for GSM modem (1-port)
[   20.329640] option 2-4:1.0: GSM modem (1-port) converter detected
[   20.329757] usb 2-4: GSM modem (1-port) converter now attached to ttyUSB0
[   20.329835] option 2-4:1.1: GSM modem (1-port) converter detected
[   20.330091] usb 2-4: GSM modem (1-port) converter now attached to ttyUSB1
[   20.330186] option 2-4:1.3: GSM modem (1-port) converter detected
[   20.330272] usb 2-4: GSM modem (1-port) converter now attached to ttyUSB2
[   25.820864] fuse init (API version 7.26)
[   26.400310] IPv6: ADDRCONF(NETDEV_UP): wlo1: link is not ready
[   26.400388] ieee80211 phy0: rt2x00lib_request_firmware: Info - Loading firmware file 'rt3290.bin'
[   26.444930] ieee80211 phy0: rt2x00lib_request_firmware: Info - Firmware detected - version: 0.37
[   26.525668] IPv6: ADDRCONF(NETDEV_UP): wlo1: link is not ready
[   26.611176] IPv6: ADDRCONF(NETDEV_UP): wlo1: link is not ready
[   27.009359] IPv6: ADDRCONF(NETDEV_UP): wlo1: link is not ready
[   34.981387] [drm] probing gen 2 caps for device 8086:151 = 261ad02/6
[   34.981392] [drm] enabling PCIE gen 2 link speeds, disable with radeon.pcie_gen2=0
[   34.987016] [drm] PCIE GART of 2048M enabled (table at 0x00000000001D6000).
[   34.987134] radeon 0000:01:00.0: WB enabled
[   34.987138] radeon 0000:01:00.0: fence driver on ring 0 use gpu addr 0x0000000040000c00 and cpu addr 0xffff9215477f0c00
[   34.987139] radeon 0000:01:00.0: fence driver on ring 1 use gpu addr 0x0000000040000c04 and cpu addr 0xffff9215477f0c04
[   34.987141] radeon 0000:01:00.0: fence driver on ring 2 use gpu addr 0x0000000040000c08 and cpu addr 0xffff9215477f0c08
[   34.987142] radeon 0000:01:00.0: fence driver on ring 3 use gpu addr 0x0000000040000c0c and cpu addr 0xffff9215477f0c0c
[   34.987144] radeon 0000:01:00.0: fence driver on ring 4 use gpu addr 0x0000000040000c10 and cpu addr 0xffff9215477f0c10
[   34.987547] radeon 0000:01:00.0: fence driver on ring 5 use gpu addr 0x0000000000075a18 and cpu addr 0xffffaf4c81e35a18
[   35.089265] radeon 0000:01:00.0: failed VCE resume (-110).
[   35.275404] [drm] ring test on 0 succeeded in 1 usecs
[   35.275410] [drm] ring test on 1 succeeded in 1 usecs
[   35.275414] [drm] ring test on 2 succeeded in 1 usecs
[   35.275421] [drm] ring test on 3 succeeded in 3 usecs
[   35.275426] [drm] ring test on 4 succeeded in 3 usecs
[   35.452873] [drm] ring test on 5 succeeded in 2 usecs
[   35.452877] [drm] UVD initialized successfully.
[   35.452907] [drm] ib test on ring 0 succeeded in 0 usecs
[   35.452932] [drm] ib test on ring 1 succeeded in 0 usecs
[   35.452955] [drm] ib test on ring 2 succeeded in 0 usecs
[   35.452984] [drm] ib test on ring 3 succeeded in 0 usecs
[   35.453004] [drm] ib test on ring 4 succeeded in 0 usecs
[   36.104972] [drm] ib test on ring 5 succeeded
[   42.237615] PPP generic driver version 2.4.2
[   42.315641] PPP BSD Compression module registered
[   42.423172] PPP Deflate Compression module registered

Last edited by amaro (2017-10-28 15:03:29)

Offline

#4 2017-10-28 15:59:53

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

Re: [SOLVED] dmesg gives unknown option unknown parameter

Update the ck-ivybridge package to 4.13.10-1 and that should remove the

[    6.506238] cgroup: cgroup2: unknown option "nsdelegate"

as well as including many other fixes.

Offline

#5 2017-10-29 05:37:45

amaro
Member
From: 5.11.1-1-ck-ivybridge, xfce
Registered: 2014-05-09
Posts: 364

Re: [SOLVED] dmesg gives unknown option unknown parameter

Thank you, loqs! 4.13.10-1 did it.
Do you have any suggestions about the radeon messages or I they can be ignored?

Offline

#6 2017-10-29 09:15:45

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

Re: [SOLVED] dmesg gives unknown option unknown parameter

For the radeon messages saw this thread by coincidence https://bbs.archlinux.org/viewtopic.php … 8#p1745538

Offline

#7 2017-10-29 11:34:23

amaro
Member
From: 5.11.1-1-ck-ivybridge, xfce
Registered: 2014-05-09
Posts: 364

Re: [SOLVED] dmesg gives unknown option unknown parameter

Excellent.
I found the solution here https://bugzilla.kernel.org/show_bug.cgi?id=107381#c18

"For persistent changes edit file /etc/modprobe.d/radeon.conf to add the line"

options radeon vce=0

"After the next reboot you can check the changes by using"

systool -vm radeon

Thank you very much, loqs!

Last edited by amaro (2017-10-29 11:50:19)

Offline

Board footer

Powered by FluxBB