FeralInteractive / gamemode

Optimise Linux system performance on demand
BSD 3-Clause "New" or "Revised" License
4.7k stars 185 forks source link

Job for gamemoded.service failed because the control process exited with error code. #44

Closed alexsmithfanning closed 6 years ago

alexsmithfanning commented 6 years ago

Ubuntu 16.04.4 LTS AMD FX-6300 NVIDIA GeForce GTX 650 Ti

Cloned from latest master branch.

All dependencies are installed (including dbus-user-session).

alex@alex-MS-1674[±|master ✓]:~/Code/gamemode $ ./bootstrap.sh
+ meson --prefix=/usr build -Dwith-systemd-user-unit-dir=/etc/systemd/user
Directory already configured, exiting Meson. Just run your build command
(e.g. ninja) and Meson will regenerate as necessary. If ninja fails, run ninja
reconfigure to force Meson to regenerate.

If build failures persist, manually wipe your build directory to clear any
stored system data.

To change option values, run meson configure instead.
+ cd build
+ ninja
ninja: no work to do.
+ set +x
Install to /usr? [Yy] y
+ sudo ninja install
[sudo] password for alex:         
[0/1] Installing files.
Installing lib/libgamemode.so to /usr/lib/x86_64-linux-gnu/libgamemode.so
Installing lib/libgamemodeauto.so to /usr/lib/x86_64-linux-gnu/libgamemodeauto.so
Installing daemon/gamemoded to /usr/bin/gamemoded
Installing daemon/cpugovctl to /usr/libexec/cpugovctl
Installing gamemode_client.h to /usr/include/
Installing /home/alex/Code/gamemode/data/gamemoded.1 to /usr/share/man/man1
Installing /home/alex/Code/gamemode/build/data/gamemoded.service to /etc/systemd/user
Installing /home/alex/Code/gamemode/build/data/com.feralinteractive.GameMode.policy to /usr/share/polkit-1/actions
+ set +x
Enable and run the daemon? [Yy] y
+ systemctl --user daemon-reload
+ systemctl --user enable gamemoded
+ systemctl --user start gamemoded
Job for gamemoded.service failed because the control process exited with error code. See "systemctl --user status gamemoded.service" and "journalctl -xe" for details.
alex@alex-MS-1674[±|master ✓]:~/Code/gamemode $ systemctl --user status gamemoded.service
● gamemoded.service - gamemoded
   Loaded: loaded (/etc/systemd/user/gamemoded.service; enabled; vendor preset: enabled)
   Active: failed (Result: exit-code) since Sun 2018-04-29 20:33:13 CDT; 10min ago
  Process: 12523 ExecStart=/usr/bin/gamemoded -l (code=exited, status=1/FAILURE)
 Main PID: 12523 (code=exited, status=1/FAILURE)

Apr 29 20:33:13 alex-MS-1674 systemd[2644]: Starting gamemoded...
Apr 29 20:33:13 alex-MS-1674 /usr/bin/gamemoded[12523]: Note: No config file found [gamemode.ini] in working directory or in [/usr/share/gamemode/]
Apr 29 20:33:13 alex-MS-1674 systemd[2644]: gamemoded.service: Main process exited, code=exited, status=1/FAILURE
Apr 29 20:33:13 alex-MS-1674 systemd[2644]: Failed to start gamemoded.
Apr 29 20:33:13 alex-MS-1674 systemd[2644]: gamemoded.service: Unit entered failed state.
Apr 29 20:33:13 alex-MS-1674 systemd[2644]: gamemoded.service: Failed with result 'exit-code'.
mdiluz commented 6 years ago

Failing just after the config file message, and before we log current governor state, likely means we're failing in get_gov_state, but I don't see any regular exit methods there without a printf. Could well be a crash.

Would you be able to run gdb build/daemon/gamemoded with a breakpoint on get_gov_state and see what happens?

alexsmithfanning commented 6 years ago

I'm not extremely familiar with the GNU Debugger, so let me know if I didn't do something right or forgot a step.

alex@alex-MS-1674[±|master ✓]:~/Code/gamemode $ gdb build/daemon/gamemoded
GNU gdb (Ubuntu 7.11.1-0ubuntu1~16.5) 7.11.1
Copyright (C) 2016 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "x86_64-linux-gnu".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>.
Find the GDB manual and other documentation resources online at:
<http://www.gnu.org/software/gdb/documentation/>.
For help, type "help".
Type "apropos word" to search for commands related to "word"...
Reading symbols from build/daemon/gamemoded...done.
(gdb) break get_gov_state
Breakpoint 1 at 0x405509: file ../daemon/governors-query.c, line 99.
(gdb) run
Starting program: /home/alex/Code/gamemode/build/daemon/gamemoded 
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
Note: No config file found [gamemode.ini] in working directory or in [/usr/share/gamemode/]

Breakpoint 1, get_gov_state () at ../daemon/governors-query.c:99
99  {
(gdb) 
mdiluz commented 6 years ago

No worries @alexsmithfanning! This is good so far. If you repeat that and then do this:

(gdb) b exit
(gdb) c
*let it continue*
(gdb) bt

That should hopefully give us an idea of where the daemon is quitting early.

alexsmithfanning commented 6 years ago
alex@alex-MS-1674[±|master ✓]:~/Code/gamemode $ gdb build/daemon/gamemoded
GNU gdb (Ubuntu 7.11.1-0ubuntu1~16.5) 7.11.1
Copyright (C) 2016 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "x86_64-linux-gnu".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>.
Find the GDB manual and other documentation resources online at:
<http://www.gnu.org/software/gdb/documentation/>.
For help, type "help".
Type "apropos word" to search for commands related to "word"...
Reading symbols from build/daemon/gamemoded...done.
(gdb) break get_gov_state
Breakpoint 1 at 0x405509: file ../daemon/governors-query.c, line 99.
(gdb) run
Starting program: /home/alex/Code/gamemode/build/daemon/gamemoded 
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
Note: No config file found [gamemode.ini] in working directory or in [/usr/share/gamemode/]

Breakpoint 1, get_gov_state () at ../daemon/governors-query.c:99
99  {
(gdb) b exit
Breakpoint 2 at 0x7ffff7626030: file exit.c, line 104.
(gdb) c
Continuing.
Broken glob implementation (No such file or directory)

Breakpoint 2, __GI_exit (status=1) at exit.c:104
104 exit.c: No such file or directory.
(gdb) bt
#0  __GI_exit (status=1) at exit.c:104
#1  0x000000000040533b in fetch_governors (governors=0x7ffffff7be90)
    at ../daemon/governors-query.c:53
#2  0x0000000000405540 in get_gov_state () at ../daemon/governors-query.c:105
#3  0x0000000000404701 in update_initial_gov_state ()
    at ../daemon/governors.c:51
#4  0x0000000000403115 in game_mode_context_init (self=0x608520 <instance>)
    at ../daemon/gamemode.c:107
#5  0x0000000000402f4d in main (argc=1, argv=0x7fffffffc278)
    at ../daemon/main.c:172
(gdb) 
mdiluz commented 6 years ago

Aha - Broken glob implementation (No such file or directory) and governors-query.c:53. That's interesting.

fetch_governors is doing a glob on /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor, does that path (ie, cpu0 rather than cpu*) not exist for you?

alexsmithfanning commented 6 years ago
alex@alex-MS-1674[±|master ✓]:~/Code/gamemode $ ls -laH /sys/devices/system/cpu/cpu0
total 0
drwxr-xr-x  7 root root    0 May  1 10:17 .
drwxr-xr-x 14 root root    0 Apr 29 20:52 ..
drwxr-xr-x  7 root root    0 May  1 10:17 cache
-r--------  1 root root 4096 May  1 10:17 crash_notes
-r--------  1 root root 4096 May  1 10:17 crash_notes_size
lrwxrwxrwx  1 root root    0 May  1 10:17 driver -> ../../../../bus/cpu/drivers/processor
lrwxrwxrwx  1 root root    0 May  1 10:17 firmware_node -> ../../../LNXSYSTM:00/LNXCPU:00
drwxr-xr-x  2 root root    0 May  1 10:17 hotplug
drwxr-xr-x  2 root root    0 May  1 10:17 microcode
lrwxrwxrwx  1 root root    0 May  1 10:17 node0 -> ../../node/node0
drwxr-xr-x  2 root root    0 May  1 10:17 power
lrwxrwxrwx  1 root root    0 May  1 09:51 subsystem -> ../../../../bus/cpu
drwxr-xr-x  2 root root    0 May  1 10:17 topology
-rw-r--r--  1 root root 4096 May  1 09:51 uevent

It appears that /sys/devices/system/cpu/cpu0/cpufreq doesn't exist.

alexsmithfanning commented 6 years ago

Output of cpufreq-info.

alex@alex-MS-1674[±|master ✓]:~/Code/gamemode $ sudo cpufreq-info
[sudo] password for alex:         
cpufrequtils 008: cpufreq-info (C) Dominik Brodowski 2004-2009
Report errors and bugs to cpufreq@vger.kernel.org, please.
analyzing CPU 0:
  no or unknown cpufreq driver is active on this CPU
  maximum transition latency: 4294.55 ms.
analyzing CPU 1:
  no or unknown cpufreq driver is active on this CPU
  maximum transition latency: 4294.55 ms.
analyzing CPU 2:
  no or unknown cpufreq driver is active on this CPU
  maximum transition latency: 4294.55 ms.
analyzing CPU 3:
  no or unknown cpufreq driver is active on this CPU
  maximum transition latency: 4294.55 ms.
analyzing CPU 4:
  no or unknown cpufreq driver is active on this CPU
  maximum transition latency: 4294.55 ms.
analyzing CPU 5:
  no or unknown cpufreq driver is active on this CPU
  maximum transition latency: 4294.55 ms.
alexsmithfanning commented 6 years ago

My kernel message log (dmesg).

alex@alex-MS-1674[±|master ✓]:~/Code/gamemode $ dmesg
[    0.000000] random: get_random_bytes called from start_kernel+0x42/0x507 with crng_init=0
[    0.000000] Linux version 4.13.0-39-generic (buildd@lcy01-amd64-024) (gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.9)) #44~16.04.1-Ubuntu SMP Thu Apr 5 16:43:10 UTC 2018 (Ubuntu 4.13.0-39.44~16.04.1-generic 4.13.16)
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.13.0-39-generic root=UUID=43ddafb2-39b7-46ab-9dfa-5696c2b2429f ro loglevel=0 vesafb.invalid=1 quiet splash resume=LABEL=SWAP nvidia-drm.modeset=1 drm.debug=0xe
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Centaur CentaurHauls
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009d7ff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009d800-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e4000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000dff8ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000dff90000-0x00000000dff9dfff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000dff9e000-0x00000000dffdffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000dffe0000-0x00000000dfffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ffe00000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000021fffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] random: fast init done
[    0.000000] SMBIOS 2.6 present.
[    0.000000] DMI: MSI MS-7641/760GMA-P34(FX) (MS-7641)    , BIOS V25.0 05/28/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] AGP: No AGP bridge found
[    0.000000] e820: last_pfn = 0x220000 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-EFFFF uncachable
[    0.000000]   F0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000000 mask FFFF80000000 write-back
[    0.000000]   1 base 000080000000 mask FFFFC0000000 write-back
[    0.000000]   2 base 0000C0000000 mask FFFFE0000000 write-back
[    0.000000]   3 disabled
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] TOM2: 0000000220000000 aka 8704M
[    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- WT  
[    0.000000] e820: update [mem 0xe0000000-0xffffffff] usable ==> reserved
[    0.000000] e820: last_pfn = 0xdff90 max_arch_pfn = 0x400000000
[    0.000000] found SMP MP-table at [mem 0x000ff780-0x000ff78f] mapped at [ffff9140800ff780]
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] Base memory trampoline at [ffff914080097000] 97000 size 24576
[    0.000000] Using GB pages for direct mapping
[    0.000000] BRK [0x12452c000, 0x12452cfff] PGTABLE
[    0.000000] BRK [0x12452d000, 0x12452dfff] PGTABLE
[    0.000000] BRK [0x12452e000, 0x12452efff] PGTABLE
[    0.000000] BRK [0x12452f000, 0x12452ffff] PGTABLE
[    0.000000] BRK [0x124530000, 0x124530fff] PGTABLE
[    0.000000] BRK [0x124531000, 0x124531fff] PGTABLE
[    0.000000] BRK [0x124532000, 0x124532fff] PGTABLE
[    0.000000] RAMDISK: [mem 0x3236a000-0x351acfff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000000F8CF0 000014 (v00 ACPIAM)
[    0.000000] ACPI: RSDT 0x00000000DFF90000 000038 (v01 7641MS A7641100 20130528 MSFT 00000097)
[    0.000000] ACPI: FACP 0x00000000DFF90200 000084 (v01 7641MS A7641100 20130528 MSFT 00000097)
[    0.000000] ACPI BIOS Warning (bug): Optional FADT field Pm2ControlBlock has valid Length but zero Address: 0x0000000000000000/0x1 (20170531/tbfadt-658)
[    0.000000] ACPI: DSDT 0x00000000DFF90660 009C74 (v01 A7641  A7641100 00000100 INTL 20051117)
[    0.000000] ACPI: FACS 0x00000000DFF9E000 000040
[    0.000000] ACPI: APIC 0x00000000DFF90390 00010C (v01 7641MS A7641100 20130528 MSFT 00000097)
[    0.000000] ACPI: MCFG 0x00000000DFF904A0 00003C (v01 7641MS OEMMCFG  20130528 MSFT 00000097)
[    0.000000] ACPI: OEMB 0x00000000DFF9E040 000072 (v01 7641MS A7641100 20130528 MSFT 00000097)
[    0.000000] ACPI: HPET 0x00000000DFF9A660 000038 (v01 7641MS OEMHPET  20130528 MSFT 00000097)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000021fffffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x21ffd5000-0x21fffffff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x000000021fffffff]
[    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-0x00000000dff8ffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x000000021fffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000021fffffff]
[    0.000000] On node 0 totalpages: 2096940
[    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: 14271 pages used for memmap
[    0.000000]   DMA32 zone: 913296 pages, LIFO batch:31
[    0.000000]   Normal zone: 18432 pages used for memmap
[    0.000000]   Normal zone: 1179648 pages, LIFO batch:31
[    0.000000] ACPI: PM-Timer IO Port: 0x808
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] IOAPIC[0]: apic_id 22, version 33, 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 low level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8300 base: 0xfed00000
[    0.000000] smpboot: Allowing 24 CPUs, 18 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-0x000e3fff]
[    0.000000] PM: Registered nosave memory: [mem 0x000e4000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xdff90000-0xdff9dfff]
[    0.000000] PM: Registered nosave memory: [mem 0xdff9e000-0xdffdffff]
[    0.000000] PM: Registered nosave memory: [mem 0xdffe0000-0xdfffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xe0000000-0xffdfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xffe00000-0xffffffff]
[    0.000000] e820: [mem 0xe0000000-0xffdfffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.000000] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:24 nr_cpu_ids:24 nr_node_ids:1
[    0.000000] percpu: Embedded 45 pages/cpu @ffff914297000000 s146584 r8192 d29544 u262144
[    0.000000] pcpu-alloc: s146584 r8192 d29544 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.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 2064152
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.13.0-39-generic root=UUID=43ddafb2-39b7-46ab-9dfa-5696c2b2429f ro loglevel=0 vesafb.invalid=1 quiet splash resume=LABEL=SWAP nvidia-drm.modeset=1 drm.debug=0xe
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] AGP: Checking aperture...
[    0.000000] AGP: No AGP bridge found
[    0.000000] AGP: Node 0: aperture [bus addr 0x00000000-0x01ffffff] (32MB)
[    0.000000] AGP: Your BIOS doesn't leave an aperture memory hole
[    0.000000] AGP: Please enable the IOMMU option in the BIOS setup
[    0.000000] AGP: This costs you 64MB of RAM
[    0.000000] AGP: Mapping aperture over RAM [mem 0xd4000000-0xd7ffffff] (65536KB)
[    0.000000] PM: Registered nosave memory: [mem 0xd4000000-0xd7ffffff]
[    0.000000] Memory: 8047320K/8387760K available (12300K kernel code, 2481K rwdata, 4008K rodata, 2368K init, 2372K bss, 340440K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=24, Nodes=1
[    0.000000] ftrace: allocating 37858 entries in 148 pages
[    0.000000] Hierarchical RCU implementation.
[    0.000000]  RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=24.
[    0.000000]  Tasks RCU enabled.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=24
[    0.000000] NR_IRQS: 524544, nr_irqs: 616, preallocated irqs: 16
[    0.000000] spurious 8259A interrupt: IRQ7.
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.004000] tsc: Detected 4199.935 MHz processor
[    0.004000] Calibrating delay loop (skipped), value calculated using timer frequency.. 8399.87 BogoMIPS (lpj=16799740)
[    0.004000] pid_max: default: 32768 minimum: 301
[    0.004000] ACPI: Core revision 20170531
[    0.004000] ACPI: 1 ACPI AML tables successfully acquired and loaded
[    0.004000] Security Framework initialized
[    0.004000] Yama: becoming mindful.
[    0.004000] AppArmor: AppArmor initialized
[    0.008936] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.009900] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.009945] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)
[    0.009978] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)
[    0.010190] FEATURE SPEC_CTRL Not Present
[    0.010190] FEATURE IBPB Not Present
[    0.010191] CPU: Physical Processor ID: 0
[    0.010192] CPU: Processor Core ID: 0
[    0.010193] mce: CPU supports 7 MCE banks
[    0.010199] LVT offset 1 assigned for vector 0xf9
[    0.010203] Last level iTLB entries: 4KB 512, 2MB 1024, 4MB 512
[    0.010203] Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 512, 1GB 0
[    0.010205] Spectre V2 mitigation: Mitigation: Full AMD retpoline
[    0.010206] Spectre V2 mitigation: Speculation control IBPB not-supported IBRS not-supported
[    0.010207] Spectre V2 mitigation: Filling RSB on context switch
[    0.010795] Freeing SMP alternatives memory: 36K
[    0.012089] smpboot: Max logical packages: 4
[    0.012101] Switched APIC routing to physical flat.
[    0.012453] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.056000] smpboot: CPU0: AMD FX(tm)-6300 Six-Core Processor (family: 0x15, model: 0x2, stepping: 0x0)
[    0.056000] Performance Events: Fam15h core perfctr, AMD PMU driver.
[    0.056000] ... version:                0
[    0.056000] ... bit width:              48
[    0.056000] ... generic registers:      6
[    0.056000] ... value mask:             0000ffffffffffff
[    0.056000] ... max period:             00007fffffffffff
[    0.056000] ... fixed-purpose events:   0
[    0.056000] ... event mask:             000000000000003f
[    0.056000] Hierarchical SRCU implementation.
[    0.056000] smp: Bringing up secondary CPUs ...
[    0.056000] x86: Booting SMP configuration:
[    0.056000] .... node  #0, CPUs:        #1
[    0.056035] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.056107]   #2  #3  #4  #5
[    0.068002] smp: Brought up 1 node, 6 CPUs
[    0.068004] smpboot: Total of 6 processors activated (50399.22 BogoMIPS)
[    0.072462] devtmpfs: initialized
[    0.072462] x86/mm: Memory block size: 128MB
[    0.076553] evm: security.selinux
[    0.076554] evm: security.SMACK64
[    0.076554] evm: security.SMACK64EXEC
[    0.076555] evm: security.SMACK64TRANSMUTE
[    0.076555] evm: security.SMACK64MMAP
[    0.076555] evm: security.ima
[    0.076556] evm: security.capability
[    0.076576] PM: Registering ACPI NVS region [mem 0xdff9e000-0xdffdffff] (270336 bytes)
[    0.076576] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.076576] futex hash table entries: 8192 (order: 7, 524288 bytes)
[    0.076576] pinctrl core: initialized pinctrl subsystem
[    0.076576] RTC time:  1:52:50, date: 04/30/18
[    0.076576] NET: Registered protocol family 16
[    0.076616] cpuidle: using governor ladder
[    0.076616] cpuidle: using governor menu
[    0.076616] PCCT header not found.
[    0.076616] ACPI: bus type PCI registered
[    0.076616] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.076616] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.076616] PCI: not using MMCONFIG
[    0.076616] PCI: Using configuration type 1 for base access
[    0.076616] PCI: Using configuration type 1 for extended access
[    0.076616] mtrr: your CPUs had inconsistent variable MTRR settings
[    0.076616] mtrr: probably your BIOS does not setup all CPUs.
[    0.076616] mtrr: corrected configuration.
[    0.077168] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.077168] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.077170] ACPI: Added _OSI(Module Device)
[    0.077170] ACPI: Added _OSI(Processor Device)
[    0.077170] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.077170] ACPI: Added _OSI(Processor Aggregator Device)
[    0.077170] ACPI: Executed 4 blocks of module-level executable AML code
[    0.078704] ACPI: Interpreter enabled
[    0.078721] ACPI: (supports S0 S3 S4 S5)
[    0.078721] ACPI: Using IOAPIC for interrupt routing
[    0.078747] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.080001] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
[    0.080001] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.080001] ACPI: Enabled 5 GPEs in block 00 to 1F
[    0.084398] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.084402] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.084405] acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
[    0.084626] PCI host bridge to bus 0000:00
[    0.084628] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.084629] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.084630] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.084632] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000dffff window]
[    0.084633] pci_bus 0000:00: root bus resource [mem 0xf0000000-0xfebfffff window]
[    0.084634] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.084643] pci 0000:00:00.0: [1022:9600] type 00 class 0x060000
[    0.084736] pci 0000:00:02.0: [1022:9603] type 01 class 0x060400
[    0.084774] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
[    0.084842] pci 0000:00:05.0: [1022:9605] type 01 class 0x060400
[    0.084877] pci 0000:00:05.0: PME# supported from D0 D3hot D3cold
[    0.084935] pci 0000:00:06.0: [1022:9606] type 01 class 0x060400
[    0.084971] pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
[    0.085031] pci 0000:00:07.0: [1022:9607] type 01 class 0x060400
[    0.085065] pci 0000:00:07.0: PME# supported from D0 D3hot D3cold
[    0.085138] pci 0000:00:11.0: [1002:4390] type 00 class 0x01018f
[    0.085158] pci 0000:00:11.0: reg 0x10: [io  0xa000-0xa007]
[    0.085167] pci 0000:00:11.0: reg 0x14: [io  0x9000-0x9003]
[    0.085175] pci 0000:00:11.0: reg 0x18: [io  0x8000-0x8007]
[    0.085183] pci 0000:00:11.0: reg 0x1c: [io  0x7000-0x7003]
[    0.085192] pci 0000:00:11.0: reg 0x20: [io  0x6000-0x600f]
[    0.085200] pci 0000:00:11.0: reg 0x24: [mem 0xfcfffc00-0xfcffffff]
[    0.085220] pci 0000:00:11.0: set SATA to AHCI mode
[    0.085310] pci 0000:00:12.0: [1002:4397] type 00 class 0x0c0310
[    0.085326] pci 0000:00:12.0: reg 0x10: [mem 0xfcffe000-0xfcffefff]
[    0.085438] pci 0000:00:12.1: [1002:4398] type 00 class 0x0c0310
[    0.085454] pci 0000:00:12.1: reg 0x10: [mem 0xfcffd000-0xfcffdfff]
[    0.085566] pci 0000:00:12.2: [1002:4396] type 00 class 0x0c0320
[    0.085586] pci 0000:00:12.2: reg 0x10: [mem 0xfcfff800-0xfcfff8ff]
[    0.085662] pci 0000:00:12.2: supports D1 D2
[    0.085663] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
[    0.085735] pci 0000:00:13.0: [1002:4397] type 00 class 0x0c0310
[    0.085751] pci 0000:00:13.0: reg 0x10: [mem 0xfcffc000-0xfcffcfff]
[    0.085867] pci 0000:00:13.1: [1002:4398] type 00 class 0x0c0310
[    0.085883] pci 0000:00:13.1: reg 0x10: [mem 0xfcffb000-0xfcffbfff]
[    0.086002] pci 0000:00:13.2: [1002:4396] type 00 class 0x0c0320
[    0.086021] pci 0000:00:13.2: reg 0x10: [mem 0xfcfff400-0xfcfff4ff]
[    0.086097] pci 0000:00:13.2: supports D1 D2
[    0.086098] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
[    0.086168] pci 0000:00:14.0: [1002:4385] type 00 class 0x0c0500
[    0.086314] pci 0000:00:14.1: [1002:439c] type 00 class 0x01018a
[    0.086332] pci 0000:00:14.1: reg 0x10: [io  0x0000-0x0007]
[    0.086341] pci 0000:00:14.1: reg 0x14: [io  0x0000-0x0003]
[    0.086349] pci 0000:00:14.1: reg 0x18: [io  0x0000-0x0007]
[    0.086357] pci 0000:00:14.1: reg 0x1c: [io  0x0000-0x0003]
[    0.086365] pci 0000:00:14.1: reg 0x20: [io  0xff00-0xff0f]
[    0.086384] pci 0000:00:14.1: legacy IDE quirk: reg 0x10: [io  0x01f0-0x01f7]
[    0.086385] pci 0000:00:14.1: legacy IDE quirk: reg 0x14: [io  0x03f6]
[    0.086386] pci 0000:00:14.1: legacy IDE quirk: reg 0x18: [io  0x0170-0x0177]
[    0.086386] pci 0000:00:14.1: legacy IDE quirk: reg 0x1c: [io  0x0376]
[    0.086475] pci 0000:00:14.2: [1002:4383] type 00 class 0x040300
[    0.086497] pci 0000:00:14.2: reg 0x10: [mem 0xfcff4000-0xfcff7fff 64bit]
[    0.086560] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
[    0.086619] pci 0000:00:14.3: [1002:439d] type 00 class 0x060100
[    0.086750] pci 0000:00:14.4: [1002:4384] type 01 class 0x060401
[    0.086848] pci 0000:00:14.5: [1002:4399] type 00 class 0x0c0310
[    0.086866] pci 0000:00:14.5: reg 0x10: [mem 0xfcffa000-0xfcffafff]
[    0.086985] pci 0000:00:18.0: [1022:1600] type 00 class 0x060000
[    0.087042] pci 0000:00:18.1: [1022:1601] type 00 class 0x060000
[    0.087098] pci 0000:00:18.2: [1022:1602] type 00 class 0x060000
[    0.087153] pci 0000:00:18.3: [1022:1603] type 00 class 0x060000
[    0.087209] pci 0000:00:18.4: [1022:1604] type 00 class 0x060000
[    0.087263] pci 0000:00:18.5: [1022:1605] type 00 class 0x060000
[    0.087357] pci 0000:01:00.0: [10de:11c3] type 00 class 0x030000
[    0.087374] pci 0000:01:00.0: reg 0x10: [mem 0xfd000000-0xfdffffff]
[    0.087384] pci 0000:01:00.0: reg 0x14: [mem 0xf0000000-0xf7ffffff 64bit pref]
[    0.087394] pci 0000:01:00.0: reg 0x1c: [mem 0xf8000000-0xf9ffffff 64bit pref]
[    0.087400] pci 0000:01:00.0: reg 0x24: [io  0xb800-0xb87f]
[    0.087406] pci 0000:01:00.0: reg 0x30: [mem 0xfe900000-0xfe97ffff pref]
[    0.087494] pci 0000:01:00.1: [10de:0e0b] type 00 class 0x040300
[    0.087508] pci 0000:01:00.1: reg 0x10: [mem 0xfe9f8000-0xfe9fbfff]
[    0.100020] pci 0000:00:02.0: PCI bridge to [bus 01]
[    0.100023] pci 0000:00:02.0:   bridge window [io  0xb000-0xbfff]
[    0.100025] pci 0000:00:02.0:   bridge window [mem 0xfd000000-0xfe9fffff]
[    0.100028] pci 0000:00:02.0:   bridge window [mem 0xf0000000-0xf9ffffff 64bit pref]
[    0.100069] pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000
[    0.100089] pci 0000:02:00.0: reg 0x10: [io  0xc800-0xc8ff]
[    0.100108] pci 0000:02:00.0: reg 0x18: [mem 0xfbfff000-0xfbffffff 64bit pref]
[    0.100120] pci 0000:02:00.0: reg 0x20: [mem 0xfbff8000-0xfbffbfff 64bit pref]
[    0.100186] pci 0000:02:00.0: supports D1 D2
[    0.100187] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.112017] pci 0000:00:05.0: PCI bridge to [bus 02]
[    0.112020] pci 0000:00:05.0:   bridge window [io  0xc000-0xcfff]
[    0.112024] pci 0000:00:05.0:   bridge window [mem 0xfbf00000-0xfbffffff 64bit pref]
[    0.112065] pci 0000:03:00.0: [1912:0014] type 00 class 0x0c0330
[    0.112088] pci 0000:03:00.0: reg 0x10: [mem 0xfeafe000-0xfeafffff 64bit]
[    0.112171] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[    0.124016] pci 0000:00:06.0: PCI bridge to [bus 03]
[    0.124020] pci 0000:00:06.0:   bridge window [mem 0xfea00000-0xfeafffff]
[    0.124059] pci 0000:04:00.0: [1b21:0612] type 00 class 0x010601
[    0.124074] pci 0000:04:00.0: reg 0x10: [io  0xe800-0xe807]
[    0.124081] pci 0000:04:00.0: reg 0x14: [io  0xe400-0xe403]
[    0.124088] pci 0000:04:00.0: reg 0x18: [io  0xe000-0xe007]
[    0.124095] pci 0000:04:00.0: reg 0x1c: [io  0xd800-0xd803]
[    0.124102] pci 0000:04:00.0: reg 0x20: [io  0xd400-0xd41f]
[    0.124109] pci 0000:04:00.0: reg 0x24: [mem 0xfebffc00-0xfebffdff]
[    0.124190] pci 0000:00:07.0: PCI bridge to [bus 04]
[    0.124192] pci 0000:00:07.0:   bridge window [io  0xd000-0xefff]
[    0.124194] pci 0000:00:07.0:   bridge window [mem 0xfeb00000-0xfebfffff]
[    0.124264] pci 0000:00:14.4: PCI bridge to [bus 05] (subtractive decode)
[    0.124271] pci 0000:00:14.4:   bridge window [io  0x0000-0x0cf7 window] (subtractive decode)
[    0.124272] pci 0000:00:14.4:   bridge window [io  0x0d00-0xffff window] (subtractive decode)
[    0.124274] pci 0000:00:14.4:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
[    0.124275] pci 0000:00:14.4:   bridge window [mem 0x000d0000-0x000dffff window] (subtractive decode)
[    0.124276] pci 0000:00:14.4:   bridge window [mem 0xf0000000-0xfebfffff window] (subtractive decode)
[    0.124739] ACPI: PCI Interrupt Link [LNKA] (IRQs 4 7 10 *11 12 14 15)
[    0.124775] ACPI: PCI Interrupt Link [LNKB] (IRQs 4 7 *11 12 14 15)
[    0.124809] ACPI: PCI Interrupt Link [LNKC] (IRQs 4 7 *10 11 12 14 15)
[    0.124844] ACPI: PCI Interrupt Link [LNKD] (IRQs 4 *7 10 11 12 14 15)
[    0.124878] ACPI: PCI Interrupt Link [LNKE] (IRQs 4 7 10 11 12 14 15) *0, disabled.
[    0.124913] ACPI: PCI Interrupt Link [LNKF] (IRQs 4 7 10 11 12 14 15) *0, disabled.
[    0.124948] ACPI: PCI Interrupt Link [LNKG] (IRQs 4 7 *10 11 12 14 15)
[    0.124982] ACPI: PCI Interrupt Link [LNKH] (IRQs 4 7 10 11 12 14 15) *0, disabled.
[    0.128002] SCSI subsystem initialized
[    0.128014] libata version 3.00 loaded.
[    0.128025] pci 0000:01:00.0: vgaarb: setting as boot VGA device
[    0.128025] pci 0000:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.128025] pci 0000:01:00.0: vgaarb: bridge control possible
[    0.128025] vgaarb: loaded
[    0.128026] ACPI: bus type USB registered
[    0.128037] usbcore: registered new interface driver usbfs
[    0.128045] usbcore: registered new interface driver hub
[    0.128073] usbcore: registered new device driver usb
[    0.128110] EDAC MC: Ver: 3.0.0
[    0.128116] PCI: Using ACPI for IRQ routing
[    0.136433] PCI: pci_cache_line_size set to 64 bytes
[    0.136485] e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff]
[    0.136486] e820: reserve RAM buffer [mem 0xdff90000-0xdfffffff]
[    0.136567] NetLabel: Initializing
[    0.136568] NetLabel:  domain hash size = 128
[    0.136568] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.136580] NetLabel:  unlabeled traffic allowed by default
[    0.136597] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
[    0.136597] hpet0: 4 comparators, 32-bit 14.318180 MHz counter
[    0.138109] clocksource: Switched to clocksource hpet
[    0.146495] VFS: Disk quotas dquot_6.6.0
[    0.146515] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.146616] AppArmor: AppArmor Filesystem Enabled
[    0.146648] pnp: PnP ACPI init
[    0.146776] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.146822] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.146983] pnp 00:02: [dma 0 disabled]
[    0.147023] pnp 00:02: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.147110] system 00:03: [mem 0xfec00000-0xfec00fff] could not be reserved
[    0.147111] system 00:03: [mem 0xfee00000-0xfee00fff] has been reserved
[    0.147113] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.147281] system 00:04: [io  0x04d0-0x04d1] has been reserved
[    0.147283] system 00:04: [io  0x040b] has been reserved
[    0.147284] system 00:04: [io  0x04d6] has been reserved
[    0.147285] system 00:04: [io  0x0c00-0x0c01] has been reserved
[    0.147286] system 00:04: [io  0x0c14] has been reserved
[    0.147287] system 00:04: [io  0x0c50-0x0c51] has been reserved
[    0.147288] system 00:04: [io  0x0c52] has been reserved
[    0.147292] system 00:04: [io  0x0c6c] has been reserved
[    0.147293] system 00:04: [io  0x0c6f] has been reserved
[    0.147294] system 00:04: [io  0x0cd0-0x0cd1] has been reserved
[    0.147295] system 00:04: [io  0x0cd2-0x0cd3] has been reserved
[    0.147296] system 00:04: [io  0x0cd4-0x0cd5] has been reserved
[    0.147298] system 00:04: [io  0x0cd6-0x0cd7] has been reserved
[    0.147299] system 00:04: [io  0x0cd8-0x0cdf] has been reserved
[    0.147300] system 00:04: [io  0x0800-0x089f] has been reserved
[    0.147301] system 00:04: [io  0x0b00-0x0b0f] has been reserved
[    0.147302] system 00:04: [io  0x0b20-0x0b3f] has been reserved
[    0.147303] system 00:04: [io  0x0900-0x090f] has been reserved
[    0.147305] system 00:04: [io  0x0910-0x091f] has been reserved
[    0.147306] system 00:04: [io  0xfe00-0xfefe] has been reserved
[    0.147307] system 00:04: [mem 0xffb80000-0xffbfffff] has been reserved
[    0.147309] system 00:04: [mem 0xfec10000-0xfec1001f] has been reserved
[    0.147311] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.147346] pnp 00:05: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
[    0.147459] system 00:06: [io  0x0e80-0x0f5f] has been reserved
[    0.147460] system 00:06: [io  0x0ae0-0x0aef] has been reserved
[    0.147462] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.147520] system 00:07: [mem 0xe0000000-0xefffffff] has been reserved
[    0.147522] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.147766] system 00:08: [mem 0x00000000-0x0009ffff] could not be reserved
[    0.147768] system 00:08: [mem 0x000c0000-0x000cffff] could not be reserved
[    0.147769] system 00:08: [mem 0x000e0000-0x000fffff] could not be reserved
[    0.147770] system 00:08: [mem 0x00100000-0xdfffffff] could not be reserved
[    0.147771] system 00:08: [mem 0xfec00000-0xffffffff] could not be reserved
[    0.147773] system 00:08: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.147852] pnp: PnP ACPI: found 9 devices
[    0.154410] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.154431] pci 0000:00:02.0: PCI bridge to [bus 01]
[    0.154433] pci 0000:00:02.0:   bridge window [io  0xb000-0xbfff]
[    0.154435] pci 0000:00:02.0:   bridge window [mem 0xfd000000-0xfe9fffff]
[    0.154437] pci 0000:00:02.0:   bridge window [mem 0xf0000000-0xf9ffffff 64bit pref]
[    0.154440] pci 0000:00:05.0: PCI bridge to [bus 02]
[    0.154441] pci 0000:00:05.0:   bridge window [io  0xc000-0xcfff]
[    0.154444] pci 0000:00:05.0:   bridge window [mem 0xfbf00000-0xfbffffff 64bit pref]
[    0.154446] pci 0000:00:06.0: PCI bridge to [bus 03]
[    0.154448] pci 0000:00:06.0:   bridge window [mem 0xfea00000-0xfeafffff]
[    0.154451] pci 0000:00:07.0: PCI bridge to [bus 04]
[    0.154453] pci 0000:00:07.0:   bridge window [io  0xd000-0xefff]
[    0.154454] pci 0000:00:07.0:   bridge window [mem 0xfeb00000-0xfebfffff]
[    0.154458] pci 0000:00:14.4: PCI bridge to [bus 05]
[    0.154469] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.154470] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.154471] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.154472] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000dffff window]
[    0.154473] pci_bus 0000:00: resource 8 [mem 0xf0000000-0xfebfffff window]
[    0.154475] pci_bus 0000:01: resource 0 [io  0xb000-0xbfff]
[    0.154476] pci_bus 0000:01: resource 1 [mem 0xfd000000-0xfe9fffff]
[    0.154477] pci_bus 0000:01: resource 2 [mem 0xf0000000-0xf9ffffff 64bit pref]
[    0.154478] pci_bus 0000:02: resource 0 [io  0xc000-0xcfff]
[    0.154479] pci_bus 0000:02: resource 2 [mem 0xfbf00000-0xfbffffff 64bit pref]
[    0.154480] pci_bus 0000:03: resource 1 [mem 0xfea00000-0xfeafffff]
[    0.154481] pci_bus 0000:04: resource 0 [io  0xd000-0xefff]
[    0.154482] pci_bus 0000:04: resource 1 [mem 0xfeb00000-0xfebfffff]
[    0.154483] pci_bus 0000:05: resource 4 [io  0x0000-0x0cf7 window]
[    0.154485] pci_bus 0000:05: resource 5 [io  0x0d00-0xffff window]
[    0.154486] pci_bus 0000:05: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.154487] pci_bus 0000:05: resource 7 [mem 0x000d0000-0x000dffff window]
[    0.154488] pci_bus 0000:05: resource 8 [mem 0xf0000000-0xfebfffff window]
[    0.154539] NET: Registered protocol family 2
[    0.154716] TCP established hash table entries: 65536 (order: 7, 524288 bytes)
[    0.154865] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.155081] TCP: Hash tables configured (established 65536 bind 65536)
[    0.156130] UDP hash table entries: 4096 (order: 5, 131072 bytes)
[    0.156164] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
[    0.156267] NET: Registered protocol family 1
[    1.644138] pci 0000:01:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    1.644288] PCI: CLS 64 bytes, default 64
[    1.644325] Unpacking initramfs...
[    2.206606] Freeing initrd memory: 47372K
[    2.206928] PCI-DMA: Disabling AGP.
[    2.207006] PCI-DMA: aperture base @ d4000000 size 65536 KB
[    2.207006] PCI-DMA: using GART IOMMU.
[    2.207008] PCI-DMA: Reserving 64MB of IOMMU area in the AGP aperture
[    2.210385] amd_uncore: AMD NB counters detected
[    2.210549] LVT offset 0 assigned for vector 0x400
[    2.210626] perf: AMD IBS detected (0x000000ff)
[    2.210673] Scanning for low memory corruption every 60 seconds
[    2.211155] audit: initializing netlink subsys (disabled)
[    2.211213] audit: type=2000 audit(1525053171.211:1): state=initialized audit_enabled=0 res=1
[    2.211448] Initialise system trusted keyrings
[    2.211456] Key type blacklist registered
[    2.211493] workingset: timestamp_bits=36 max_order=21 bucket_order=0
[    2.212579] zbud: loaded
[    2.213013] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    2.213156] fuse init (API version 7.26)
[    2.215024] Key type asymmetric registered
[    2.215025] Asymmetric key parser 'x509' registered
[    2.215070] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
[    2.215120] io scheduler noop registered
[    2.215120] io scheduler deadline registered
[    2.215145] io scheduler cfq registered (default)
[    2.215978] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    2.216027] ACPI: Power Button [PWRB]
[    2.216057] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    2.216082] ACPI: Power Button [PWRF]
[    2.216301] GHES: HEST is not enabled!
[    2.216379] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    2.236901] 00:02: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    2.238137] Linux agpgart interface v0.103
[    2.239862] loop: module loaded
[    2.240037] libphy: Fixed MDIO Bus: probed
[    2.240038] tun: Universal TUN/TAP device driver, 1.6
[    2.240066] PPP generic driver version 2.4.2
[    2.240101] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    2.240103] ehci-pci: EHCI PCI platform driver
[    2.240222] ehci-pci 0000:00:12.2: EHCI Host Controller
[    2.240229] ehci-pci 0000:00:12.2: new USB bus registered, assigned bus number 1
[    2.240232] ehci-pci 0000:00:12.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
[    2.240241] ehci-pci 0000:00:12.2: debug port 1
[    2.240275] ehci-pci 0000:00:12.2: irq 17, io mem 0xfcfff800
[    2.256028] ehci-pci 0000:00:12.2: USB 2.0 started, EHCI 1.00
[    2.256069] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    2.256071] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.256072] usb usb1: Product: EHCI Host Controller
[    2.256073] usb usb1: Manufacturer: Linux 4.13.0-39-generic ehci_hcd
[    2.256074] usb usb1: SerialNumber: 0000:00:12.2
[    2.256165] hub 1-0:1.0: USB hub found
[    2.256171] hub 1-0:1.0: 6 ports detected
[    2.256414] ehci-pci 0000:00:13.2: EHCI Host Controller
[    2.256418] ehci-pci 0000:00:13.2: new USB bus registered, assigned bus number 2
[    2.256422] ehci-pci 0000:00:13.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
[    2.256431] ehci-pci 0000:00:13.2: debug port 1
[    2.256458] ehci-pci 0000:00:13.2: irq 19, io mem 0xfcfff400
[    2.272029] ehci-pci 0000:00:13.2: USB 2.0 started, EHCI 1.00
[    2.272080] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    2.272081] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.272082] usb usb2: Product: EHCI Host Controller
[    2.272083] usb usb2: Manufacturer: Linux 4.13.0-39-generic ehci_hcd
[    2.272084] usb usb2: SerialNumber: 0000:00:13.2
[    2.272169] hub 2-0:1.0: USB hub found
[    2.272174] hub 2-0:1.0: 6 ports detected
[    2.272296] ehci-platform: EHCI generic platform driver
[    2.272303] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    2.272305] ohci-pci: OHCI PCI platform driver
[    2.272424] ohci-pci 0000:00:12.0: OHCI PCI host controller
[    2.272429] ohci-pci 0000:00:12.0: new USB bus registered, assigned bus number 3
[    2.272446] ohci-pci 0000:00:12.0: irq 16, io mem 0xfcffe000
[    2.336071] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[    2.336072] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.336073] usb usb3: Product: OHCI PCI host controller
[    2.336074] usb usb3: Manufacturer: Linux 4.13.0-39-generic ohci_hcd
[    2.336075] usb usb3: SerialNumber: 0000:00:12.0
[    2.336163] hub 3-0:1.0: USB hub found
[    2.336171] hub 3-0:1.0: 3 ports detected
[    2.336357] ohci-pci 0000:00:12.1: OHCI PCI host controller
[    2.336361] ohci-pci 0000:00:12.1: new USB bus registered, assigned bus number 4
[    2.336380] ohci-pci 0000:00:12.1: irq 16, io mem 0xfcffd000
[    2.400072] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[    2.400074] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.400075] usb usb4: Product: OHCI PCI host controller
[    2.400076] usb usb4: Manufacturer: Linux 4.13.0-39-generic ohci_hcd
[    2.400077] usb usb4: SerialNumber: 0000:00:12.1
[    2.400171] hub 4-0:1.0: USB hub found
[    2.400178] hub 4-0:1.0: 3 ports detected
[    2.400367] ohci-pci 0000:00:13.0: OHCI PCI host controller
[    2.400371] ohci-pci 0000:00:13.0: new USB bus registered, assigned bus number 5
[    2.400389] ohci-pci 0000:00:13.0: irq 18, io mem 0xfcffc000
[    2.464070] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
[    2.464071] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.464072] usb usb5: Product: OHCI PCI host controller
[    2.464073] usb usb5: Manufacturer: Linux 4.13.0-39-generic ohci_hcd
[    2.464074] usb usb5: SerialNumber: 0000:00:13.0
[    2.464167] hub 5-0:1.0: USB hub found
[    2.464174] hub 5-0:1.0: 3 ports detected
[    2.464359] ohci-pci 0000:00:13.1: OHCI PCI host controller
[    2.464364] ohci-pci 0000:00:13.1: new USB bus registered, assigned bus number 6
[    2.464378] ohci-pci 0000:00:13.1: irq 18, io mem 0xfcffb000
[    2.528072] usb usb6: New USB device found, idVendor=1d6b, idProduct=0001
[    2.528073] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.528074] usb usb6: Product: OHCI PCI host controller
[    2.528075] usb usb6: Manufacturer: Linux 4.13.0-39-generic ohci_hcd
[    2.528076] usb usb6: SerialNumber: 0000:00:13.1
[    2.528169] hub 6-0:1.0: USB hub found
[    2.528176] hub 6-0:1.0: 3 ports detected
[    2.528362] ohci-pci 0000:00:14.5: OHCI PCI host controller
[    2.528366] ohci-pci 0000:00:14.5: new USB bus registered, assigned bus number 7
[    2.528379] ohci-pci 0000:00:14.5: irq 18, io mem 0xfcffa000
[    2.592071] usb usb7: New USB device found, idVendor=1d6b, idProduct=0001
[    2.592073] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.592074] usb usb7: Product: OHCI PCI host controller
[    2.592075] usb usb7: Manufacturer: Linux 4.13.0-39-generic ohci_hcd
[    2.592076] usb usb7: SerialNumber: 0000:00:14.5
[    2.592167] hub 7-0:1.0: USB hub found
[    2.592175] hub 7-0:1.0: 2 ports detected
[    2.592254] ohci-platform: OHCI generic platform driver
[    2.592261] uhci_hcd: USB Universal Host Controller Interface driver
[    2.592302] xhci_hcd 0000:03:00.0: Resetting
[    2.848026] usb 5-1: new low-speed USB device number 2 using ohci-pci
[    3.040062] usb 5-1: New USB device found, idVendor=258a, idProduct=0001
[    3.040063] usb 5-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.040064] usb 5-1: Product: USB KEYBOARD
[    3.040065] usb 5-1: Manufacturer: SINO WEALTH
[    3.228066] tsc: Refined TSC clocksource calibration: 4200.082 MHz
[    3.228104] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x3c8aaf2ce6b, max_idle_ns: 440795351807 ns
[    3.544026] usb 5-2: new low-speed USB device number 3 using ohci-pci
[    3.612136] xhci_hcd 0000:03:00.0: xHCI Host Controller
[    3.612141] xhci_hcd 0000:03:00.0: new USB bus registered, assigned bus number 8
[    3.617502] xhci_hcd 0000:03:00.0: hcc params 0x014051cf hci version 0x100 quirks 0x00000010
[    3.617652] usb usb8: New USB device found, idVendor=1d6b, idProduct=0002
[    3.617653] usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.617654] usb usb8: Product: xHCI Host Controller
[    3.617655] usb usb8: Manufacturer: Linux 4.13.0-39-generic xhci-hcd
[    3.617656] usb usb8: SerialNumber: 0000:03:00.0
[    3.617745] hub 8-0:1.0: USB hub found
[    3.617753] hub 8-0:1.0: 4 ports detected
[    3.617848] xhci_hcd 0000:03:00.0: xHCI Host Controller
[    3.617850] xhci_hcd 0000:03:00.0: new USB bus registered, assigned bus number 9
[    3.621080] usb usb9: We don't know the algorithms for LPM for this host, disabling LPM.
[    3.621097] usb usb9: New USB device found, idVendor=1d6b, idProduct=0003
[    3.621098] usb usb9: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.621099] usb usb9: Product: xHCI Host Controller
[    3.621100] usb usb9: Manufacturer: Linux 4.13.0-39-generic xhci-hcd
[    3.621100] usb usb9: SerialNumber: 0000:03:00.0
[    3.621183] hub 9-0:1.0: USB hub found
[    3.621191] hub 9-0:1.0: 4 ports detected
[    3.621333] i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
[    3.621334] i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
[    3.621471] serio: i8042 KBD port at 0x60,0x64 irq 1
[    3.621534] mousedev: PS/2 mouse device common for all mice
[    3.621645] rtc_cmos 00:01: RTC can wake from S4
[    3.621745] rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0
[    3.621766] rtc_cmos 00:01: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    3.621771] i2c /dev entries driver
[    3.621805] device-mapper: uevent: version 1.0.3
[    3.621861] device-mapper: ioctl: 4.37.0-ioctl (2017-09-20) initialised: dm-devel@redhat.com
[    3.621947] ledtrig-cpu: registered to indicate activity on CPUs
[    3.622264] NET: Registered protocol family 10
[    3.626871] Segment Routing with IPv6
[    3.626885] NET: Registered protocol family 17
[    3.626890] Key type dns_resolver registered
[    3.627154] RAS: Correctable Errors collector initialized.
[    3.627326] microcode: CPU0: patch_level=0x0600081c
[    3.627332] microcode: CPU1: patch_level=0x0600081c
[    3.627338] microcode: CPU2: patch_level=0x0600081c
[    3.627343] microcode: CPU3: patch_level=0x0600081c
[    3.627352] microcode: CPU4: patch_level=0x0600081c
[    3.627357] microcode: CPU5: patch_level=0x0600081c
[    3.627386] microcode: Microcode Update Driver: v2.2.
[    3.627394] sched_clock: Marking stable (3627382842, 0)->(3742725180, -115342338)
[    3.627608] registered taskstats version 1
[    3.627614] Loading compiled-in X.509 certificates
[    3.630173] Loaded X.509 cert 'Build time autogenerated kernel key: 7960992d504579530bf240371c576177395d32e2'
[    3.630189] zswap: loaded using pool lzo/zbud
[    3.634027] Key type big_key registered
[    3.634030] Key type trusted registered
[    3.635842] Key type encrypted registered
[    3.635846] AppArmor: AppArmor sha1 policy hashing enabled
[    3.635848] ima: No TPM chip found, activating TPM-bypass! (rc=-19)
[    3.635870] evm: HMAC attrs: 0x1
[    3.636111]   Magic number: 14:683:863
[    3.636204] rtc_cmos 00:01: setting system clock to 2018-04-30 01:52:53 UTC (1525053173)
[    3.636362] powernow_k8: This CPU is not supported anymore, using acpi-cpufreq instead.
[    3.637278] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    3.637278] EDD information not available.
[    3.637299] PM: Checking hibernation image partition LABEL=SWAP
[    3.641908] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
[    3.641960] PM: Hibernation image not present or could not be loaded.
[    3.644181] Freeing unused kernel memory: 2368K
[    3.644182] Write protecting the kernel read-only data: 18432k
[    3.644875] Freeing unused kernel memory: 2024K
[    3.645066] Freeing unused kernel memory: 88K
[    3.646782] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    3.701815] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    3.701827] r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
[    3.702334] r8169 0000:02:00.0 eth0: RTL8168evl/8111evl at 0xffff9fc740c65000, d8:cb:8a:51:cd:fa, XID 0c900800 IRQ 31
[    3.702336] r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
[    3.702355] ahci 0000:00:11.0: version 3.0
[    3.702557] ahci 0000:00:11.0: AHCI 0001.0100 32 slots 4 ports 3 Gbps 0xf impl SATA mode
[    3.702559] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part ccc 
[    3.703008] scsi host0: ahci
[    3.703110] scsi host1: ahci
[    3.703276] scsi host2: ahci
[    3.703488] scsi host3: ahci
[    3.703525] ata1: SATA max UDMA/133 abar m1024@0xfcfffc00 port 0xfcfffd00 irq 22
[    3.703527] ata2: SATA max UDMA/133 abar m1024@0xfcfffc00 port 0xfcfffd80 irq 22
[    3.703529] ata3: SATA max UDMA/133 abar m1024@0xfcfffc00 port 0xfcfffe00 irq 22
[    3.703530] ata4: SATA max UDMA/133 abar m1024@0xfcfffc00 port 0xfcfffe80 irq 22
[    3.704408] ahci 0000:04:00.0: SSS flag set, parallel bus scan disabled
[    3.704435] ahci 0000:04:00.0: AHCI 0001.0200 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
[    3.704438] ahci 0000:04:00.0: flags: 64bit ncq sntf stag led clo pmp pio slum part ccc sxs 
[    3.704712] scsi host5: ahci
[    3.704900] scsi host6: ahci
[    3.704947] ata7: SATA max UDMA/133 abar m512@0xfebffc00 port 0xfebffd00 irq 32
[    3.704949] ata8: SATA max UDMA/133 abar m512@0xfebffc00 port 0xfebffd80 irq 32
[    3.708046] scsi host4: pata_atiixp
[    3.712289] scsi host7: pata_atiixp
[    3.712326] ata5: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xff00 irq 14
[    3.712327] ata6: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xff08 irq 15
[    3.718366] r8169 0000:02:00.0 enp2s0: renamed from eth0
[    3.729045] usb 5-2: New USB device found, idVendor=093a, idProduct=2521
[    3.729047] usb 5-2: New USB device strings: Mfr=0, Product=2, SerialNumber=0
[    3.729048] usb 5-2: Product: USB OPTICAL MOUSE
[    3.736985] hidraw: raw HID events driver (C) Jiri Kosina
[    3.757163] usbcore: registered new interface driver usbhid
[    3.757164] usbhid: USB HID core driver
[    3.758537] input: SINO WEALTH USB KEYBOARD as /devices/pci0000:00/0000:00:13.0/usb5/5-1/5-1:1.0/0003:258A:0001.0001/input/input3
[    3.816126] hid-generic 0003:258A:0001.0001: input,hidraw0: USB HID v1.10 Keyboard [SINO WEALTH USB KEYBOARD] on usb-0000:00:13.0-1/input0
[    3.816285] input: SINO WEALTH USB KEYBOARD as /devices/pci0000:00/0000:00:13.0/usb5/5-1/5-1:1.1/0003:258A:0001.0002/input/input4
[    3.876139] hid-generic 0003:258A:0001.0002: input,hiddev0,hidraw1: USB HID v1.10 Device [SINO WEALTH USB KEYBOARD] on usb-0000:00:13.0-1/input1
[    3.876266] input: USB OPTICAL MOUSE as /devices/pci0000:00/0000:00:13.0/usb5/5-2/5-2:1.0/0003:093A:2521.0003/input/input5
[    3.876365] hid-generic 0003:093A:2521.0003: input,hidraw2: USB HID v1.11 Mouse [USB OPTICAL MOUSE] on usb-0000:00:13.0-2/input0
[    3.895301] ata6.01: ATA-10: WDC WD10EZEX-22MFCA0, 01.01A01, max UDMA/133
[    3.895302] ata6.01: 1953525168 sectors, multi 16: LBA48 NCQ (depth 0/32)
[    3.898101] ata6.01: configured for UDMA/100
[    3.992028] usb 8-2: new full-speed USB device number 2 using xhci_hcd
[    4.018536] ata3: SATA link down (SStatus 0 SControl 300)
[    4.088025] usb 2-5: new high-speed USB device number 4 using ehci-pci
[    4.180039] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    4.180060] ata4: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    4.180081] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    4.180679] ata4.00: ATAPI: TSSTcorp CDDVDW TS-H653N, 0609, max UDMA/33
[    4.180906] ata2.00: ATA-8: Hitachi HDP725050GLA360, GM4OA57A, max UDMA/133
[    4.180907] ata2.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    4.180930] ata1.00: ATA-8: WDC WD6400AAKS-22A7B2, 01.03B01, max UDMA/133
[    4.180931] ata1.00: 1250263728 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    4.181595] ata4.00: configured for UDMA/33
[    4.181885] ata2.00: configured for UDMA/133
[    4.182810] ata1.00: configured for UDMA/133
[    4.183002] scsi 0:0:0:0: Direct-Access     ATA      WDC WD6400AAKS-2 3B01 PQ: 0 ANSI: 5
[    4.184034] ata7: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    4.184225] ata7.00: ATAPI: PLDS DVD+/-RW DH-16A6S, YD12, max UDMA/100
[    4.184917] ata7.00: configured for UDMA/100
[    4.220184] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    4.220242] sd 0:0:0:0: [sda] 1250263728 512-byte logical blocks: (640 GB/596 GiB)
[    4.220262] sd 0:0:0:0: [sda] Write Protect is off
[    4.220263] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    4.220300] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    4.220375] scsi 1:0:0:0: Direct-Access     ATA      Hitachi HDP72505 A57A PQ: 0 ANSI: 5
[    4.236425] usb 2-5: New USB device found, idVendor=0424, idProduct=2507
[    4.236426] usb 2-5: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    4.236569] hub 2-5:1.0: USB hub found
[    4.236671] hub 2-5:1.0: 7 ports detected
[    4.252095] clocksource: Switched to clocksource tsc
[    4.263357]  sda: sda1
[    4.263631] sd 0:0:0:0: [sda] Attached SCSI disk
[    4.268148] sd 1:0:0:0: Attached scsi generic sg1 type 0
[    4.268190] sd 1:0:0:0: [sdb] 976773168 512-byte logical blocks: (500 GB/466 GiB)
[    4.268204] sd 1:0:0:0: [sdb] Write Protect is off
[    4.268205] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    4.268231] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    4.268833] scsi 3:0:0:0: CD-ROM            TSSTcorp CDDVDW TS-H653N  0609 PQ: 0 ANSI: 5
[    4.278963] usb 8-2: New USB device found, idVendor=0a12, idProduct=0001
[    4.278965] usb 8-2: New USB device strings: Mfr=0, Product=2, SerialNumber=0
[    4.278966] usb 8-2: Product: CSR8510 A10
[    4.298033] sr 3:0:0:0: [sr0] scsi3-mmc drive: 40x/40x writer dvd-ram cd/rw xa/form2 cdda tray
[    4.298034] cdrom: Uniform CD-ROM driver Revision: 3.20
[    4.298149] sr 3:0:0:0: Attached scsi CD-ROM sr0
[    4.298200] sr 3:0:0:0: Attached scsi generic sg2 type 5
[    4.299248] scsi 5:0:0:0: CD-ROM            PLDS     DVD+-RW DH-16A6S YD12 PQ: 0 ANSI: 5
[    4.316211]  sdb: sdb1
[    4.316480] sd 1:0:0:0: [sdb] Attached SCSI disk
[    4.330512] sr 5:0:0:0: [sr1] scsi3-mmc drive: 48x/12x writer dvd-ram cd/rw xa/form2 cdda tray
[    4.330625] sr 5:0:0:0: Attached scsi CD-ROM sr1
[    4.330687] sr 5:0:0:0: Attached scsi generic sg3 type 5
[    4.356035] usb 2-6: new high-speed USB device number 5 using ehci-pci
[    4.504382] usb 2-6: New USB device found, idVendor=0424, idProduct=2504
[    4.504384] usb 2-6: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    4.504526] hub 2-6:1.0: USB hub found
[    4.504629] hub 2-6:1.0: 4 ports detected
[    4.584016] usb 2-5.1: new full-speed USB device number 6 using ehci-pci
[    4.697475] usb 2-5.1: New USB device found, idVendor=0e6f, idProduct=0213
[    4.697477] usb 2-5.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    4.697478] usb 2-5.1: Product: Afterglow Gamepad for Xbox 360
[    4.697479] usb 2-5.1: Manufacturer: Performance Designed Products
[    4.697480] usb 2-5.1: SerialNumber: 069B18C4
[    4.804036] ata8: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    4.804736] ata8.00: ATA-9: ST1000DM003-1ER162, CC45, max UDMA/133
[    4.804738] ata8.00: 1953525168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[    4.805379] ata8.00: configured for UDMA/133
[    4.805532] scsi 6:0:0:0: Direct-Access     ATA      ST1000DM003-1ER1 CC45 PQ: 0 ANSI: 5
[    4.842976] microcode: CPU0: new patch_level=0x0600084f
[    4.848146] sd 6:0:0:0: Attached scsi generic sg4 type 0
[    4.848153] microcode: CPU2: new patch_level=0x0600084f
[    4.848253] sd 6:0:0:0: [sdc] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB)
[    4.848255] sd 6:0:0:0: [sdc] 4096-byte physical blocks
[    4.848271] sd 6:0:0:0: [sdc] Write Protect is off
[    4.848273] sd 6:0:0:0: [sdc] Mode Sense: 00 3a 00 00
[    4.848317] sd 6:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    4.853428] microcode: CPU4: new patch_level=0x0600084f
[    4.853581] scsi 7:0:1:0: Direct-Access     ATA      WDC WD10EZEX-22M 1A01 PQ: 0 ANSI: 5
[    4.889574]  sdc: sdc1 sdc2 sdc3 sdc4 sdc5
[    4.889966] sd 6:0:0:0: [sdc] Attached SCSI disk
[    4.892159] sd 7:0:1:0: Attached scsi generic sg5 type 0
[    4.892199] sd 7:0:1:0: [sdd] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB)
[    4.892200] sd 7:0:1:0: [sdd] 4096-byte physical blocks
[    4.892213] sd 7:0:1:0: [sdd] Write Protect is off
[    4.892214] sd 7:0:1:0: [sdd] Mode Sense: 00 3a 00 00
[    4.892240] sd 7:0:1:0: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    4.958985]  sdd: sdd1 sdd2 sdd3 sdd4
[    4.959347] sd 7:0:1:0: [sdd] Attached SCSI disk
[    5.116888] PM: Marking nosave pages: [mem 0x00000000-0x00000fff]
[    5.116889] PM: Marking nosave pages: [mem 0x0009d000-0x000fffff]
[    5.116891] PM: Marking nosave pages: [mem 0xdff90000-0xffffffff]
[    5.117190] PM: Marking nosave pages: [mem 0xd4000000-0xd7ffffff]
[    5.117405] PM: Basic memory bitmaps created
[    5.117837] PM: Basic memory bitmaps freed
[    5.321496] EXT4-fs (sdd3): mounted filesystem with ordered data mode. Opts: (null)
[    5.692993] random: crng init done
[    6.420630] systemd[1]: systemd 229 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ -LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN)
[    6.440150] systemd[1]: Detected architecture x86-64.
[    6.442022] systemd[1]: Set hostname to <alex-MS-1674>.
[    7.398382] systemd[1]: Listening on Journal Audit Socket.
[    7.398432] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[    7.398464] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    7.398562] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    7.399301] systemd[1]: Created slice User and Session Slice.
[    7.399311] systemd[1]: Reached target Remote File Systems (Pre).
[    7.399318] systemd[1]: Reached target Remote File Systems.
[    8.075308] lp: driver loaded but no devices found
[    8.140292] ppdev: user-space parallel port driver
[    9.979943] EXT4-fs (sdd3): re-mounted. Opts: errors=remount-ro
[   10.438262] systemd-journald[318]: Received request to flush runtime journal from PID 1
[   10.916389] Adding 10485756k swap on /swap.  Priority:-1 extents:323 across:476585984k FS
[   13.117205] ACPI Warning: SystemIO range 0x0000000000000B00-0x0000000000000B08 conflicts with OpRegion 0x0000000000000B00-0x0000000000000B0F (\SOR1) (20170531/utaddress-247)
[   13.117213] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   13.385852] kvm: Nested Virtualization enabled
[   13.385857] kvm: Nested Paging enabled
[   13.508182] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[   13.965500] ipmi message handler version 39.2
[   14.319784] ipmi device interface
[   14.338702] snd_hda_intel 0000:01:00.1: Disabling MSI
[   14.338708] snd_hda_intel 0000:01:00.1: Handle vga_switcheroo audio client
[   14.766964] snd_hda_codec_realtek hdaudioC0D3: autoconfig for ALC887-VD: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:line
[   14.766967] snd_hda_codec_realtek hdaudioC0D3:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[   14.766968] snd_hda_codec_realtek hdaudioC0D3:    hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
[   14.766969] snd_hda_codec_realtek hdaudioC0D3:    mono: mono_out=0x0
[   14.766979] snd_hda_codec_realtek hdaudioC0D3:    inputs:
[   14.766981] snd_hda_codec_realtek hdaudioC0D3:      Front Mic=0x19
[   14.766982] snd_hda_codec_realtek hdaudioC0D3:      Rear Mic=0x18
[   14.766983] snd_hda_codec_realtek hdaudioC0D3:      Line=0x1a
[   14.780570] input: HDA ATI SB Front Mic as /devices/pci0000:00/0000:00:14.2/sound/card0/input6
[   14.780621] input: HDA ATI SB Rear Mic as /devices/pci0000:00/0000:00:14.2/sound/card0/input7
[   14.780666] input: HDA ATI SB Line as /devices/pci0000:00/0000:00:14.2/sound/card0/input8
[   14.780710] input: HDA ATI SB Line Out as /devices/pci0000:00/0000:00:14.2/sound/card0/input9
[   14.780753] input: HDA ATI SB Front Headphone as /devices/pci0000:00/0000:00:14.2/sound/card0/input10
[   15.066757] Bluetooth: Core ver 2.22
[   15.066773] NET: Registered protocol family 31
[   15.066773] Bluetooth: HCI device and connection manager initialized
[   15.066776] Bluetooth: HCI socket layer initialized
[   15.066777] Bluetooth: L2CAP socket layer initialized
[   15.066782] Bluetooth: SCO socket layer initialized
[   15.188565] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:02.0/0000:01:00.1/sound/card1/input11
[   15.188617] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:02.0/0000:01:00.1/sound/card1/input12
[   15.188664] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:02.0/0000:01:00.1/sound/card1/input13
[   15.188709] input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:02.0/0000:01:00.1/sound/card1/input14
[   15.456959] nvidia: loading out-of-tree module taints kernel.
[   15.456964] nvidia: module license 'NVIDIA' taints kernel.
[   15.456964] Disabling lock debugging due to kernel taint
[   15.459898] AVX version of gcm_enc/dec engaged.
[   15.459899] AES CTR mode by8 optimization enabled
[   15.469088] nvidia: module verification failed: signature and/or required key missing - tainting kernel
[   15.478417] nvidia-nvlink: Nvlink Core is being initialized, major device number 243
[   15.478727] nvidia 0000:01:00.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=none:owns=io+mem
[   15.478840] NVRM: loading NVIDIA UNIX x86_64 Kernel Module  396.18.05  Wed Apr 25 03:03:11 PDT 2018 (using threaded interrupts)
[   15.488088] usbcore: registered new interface driver btusb
[   15.515436] nvidia-modeset: Loading NVIDIA Kernel Mode Setting Driver for UNIX platforms  396.18.05  Wed Apr 25 02:50:36 PDT 2018
[   15.518490] [drm] [nvidia-drm] [GPU ID 0x00000100] Loading driver
[   16.060307] nvidia-modeset: Allocated GPU:0 (GPU-013200b8-db5b-fdae-4ed8-546c5691ff68) @ PCI:0000:01:00.0
[   16.108661] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[   16.108662] [drm] No driver support for vblank timestamp query.
[   16.126794] [drm:drm_helper_hpd_irq_event [drm_kms_helper]] [CONNECTOR:41:DVI-I-1] status updated from unknown to connected
[   16.132724] [drm:drm_helper_hpd_irq_event [drm_kms_helper]] [CONNECTOR:44:HDMI-A-1] status updated from unknown to connected
[   16.132849] [drm:drm_helper_hpd_irq_event [drm_kms_helper]] [CONNECTOR:46:DP-1] status updated from unknown to disconnected
[   16.132880] [drm:drm_helper_hpd_irq_event [drm_kms_helper]] [CONNECTOR:48:DVI-D-1] status updated from unknown to disconnected
[   16.132893] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:41:DVI-I-1]
[   16.152541] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:41:DVI-I-1] probed modes :
[   16.152558] [drm:drm_mode_debug_printmodeline [drm]] Modeline 51:"1920x1200" 60 154000 1920 1968 2000 2080 1200 1203 1209 1235 0x0 0x9
[   16.152568] [drm:drm_mode_debug_printmodeline [drm]] Modeline 53:"1600x1200" 60 162000 1600 1664 1856 2160 1200 1201 1204 1250 0x0 0x5
[   16.152578] [drm:drm_mode_debug_printmodeline [drm]] Modeline 57:"1680x1050" 60 146250 1680 1784 1960 2240 1050 1053 1059 1089 0x0 0x6
[   16.152588] [drm:drm_mode_debug_printmodeline [drm]] Modeline 55:"1400x1050" 60 121750 1400 1488 1632 1864 1050 1053 1057 1089 0x0 0x6
[   16.152598] [drm:drm_mode_debug_printmodeline [drm]] Modeline 68:"1280x1024" 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x0 0x5
[   16.152607] [drm:drm_mode_debug_printmodeline [drm]] Modeline 52:"1280x1024" 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x0 0x5
[   16.152617] [drm:drm_mode_debug_printmodeline [drm]] Modeline 56:"1440x900" 60 106500 1440 1520 1672 1904 900 903 909 934 0x0 0x6
[   16.152627] [drm:drm_mode_debug_printmodeline [drm]] Modeline 54:"1152x864" 75 108000 1152 1216 1344 1600 864 865 868 900 0x0 0x5
[   16.152637] [drm:drm_mode_debug_printmodeline [drm]] Modeline 67:"1024x768" 75 78750 1024 1040 1136 1312 768 769 772 800 0x0 0x5
[   16.152646] [drm:drm_mode_debug_printmodeline [drm]] Modeline 66:"1024x768" 70 75000 1024 1048 1184 1328 768 771 777 806 0x0 0xa
[   16.152656] [drm:drm_mode_debug_printmodeline [drm]] Modeline 65:"1024x768" 60 65000 1024 1048 1184 1344 768 771 777 806 0x0 0xa
[   16.152666] [drm:drm_mode_debug_printmodeline [drm]] Modeline 64:"800x600" 75 49500 800 816 896 1056 600 601 604 625 0x0 0x5
[   16.152675] [drm:drm_mode_debug_printmodeline [drm]] Modeline 63:"800x600" 72 50000 800 856 976 1040 600 637 643 666 0x0 0x5
[   16.152685] [drm:drm_mode_debug_printmodeline [drm]] Modeline 62:"800x600" 60 40000 800 840 968 1056 600 601 605 628 0x0 0x5
[   16.152694] [drm:drm_mode_debug_printmodeline [drm]] Modeline 61:"800x600" 56 36000 800 824 896 1024 600 601 603 625 0x0 0x5
[   16.152704] [drm:drm_mode_debug_printmodeline [drm]] Modeline 60:"640x480" 75 31500 640 656 720 840 480 481 484 500 0x0 0xa
[   16.152714] [drm:drm_mode_debug_printmodeline [drm]] Modeline 59:"640x480" 72 31500 640 656 696 832 480 481 484 520 0x0 0xa
[   16.152724] [drm:drm_mode_debug_printmodeline [drm]] Modeline 58:"640x480" 60 25175 640 656 752 800 480 490 492 525 0x0 0xa
[   16.152728] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:44:HDMI-A-1]
[   16.160323] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:44:HDMI-A-1] probed modes :
[   16.160333] [drm:drm_mode_debug_printmodeline [drm]] Modeline 77:"1400x1050" 75 156000 1400 1504 1648 1896 1050 1053 1057 1099 0x0 0x6
[   16.160343] [drm:drm_mode_debug_printmodeline [drm]] Modeline 88:"1280x1024" 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x0 0x5
[   16.160353] [drm:drm_mode_debug_printmodeline [drm]] Modeline 72:"1280x1024" 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x0 0x5
[   16.160362] [drm:drm_mode_debug_printmodeline [drm]] Modeline 71:"1440x900" 75 136750 1440 1536 1688 1936 900 903 909 942 0x0 0x6
[   16.160372] [drm:drm_mode_debug_printmodeline [drm]] Modeline 70:"1440x900" 60 89000 1440 1488 1520 1600 900 903 909 926 0x0 0x5
[   16.160382] [drm:drm_mode_debug_printmodeline [drm]] Modeline 73:"1280x960" 60 108000 1280 1376 1488 1800 960 961 964 1000 0x0 0x5
[   16.160392] [drm:drm_mode_debug_printmodeline [drm]] Modeline 75:"1280x800" 75 106500 1280 1360 1488 1696 800 803 809 838 0x0 0x6
[   16.160401] [drm:drm_mode_debug_printmodeline [drm]] Modeline 76:"1152x864" 75 108000 1152 1216 1344 1600 864 865 868 900 0x0 0x5
[   16.160411] [drm:drm_mode_debug_printmodeline [drm]] Modeline 74:"1280x720" 60 74250 1280 1390 1430 1650 720 725 730 750 0x0 0x5
[   16.160421] [drm:drm_mode_debug_printmodeline [drm]] Modeline 87:"1024x768" 75 78750 1024 1040 1136 1312 768 769 772 800 0x0 0x5
[   16.160430] [drm:drm_mode_debug_printmodeline [drm]] Modeline 86:"1024x768" 70 75000 1024 1048 1184 1328 768 771 777 806 0x0 0xa
[   16.160440] [drm:drm_mode_debug_printmodeline [drm]] Modeline 85:"1024x768" 60 65000 1024 1048 1184 1344 768 771 777 806 0x0 0xa
[   16.160449] [drm:drm_mode_debug_printmodeline [drm]] Modeline 84:"800x600" 75 49500 800 816 896 1056 600 601 604 625 0x0 0x5
[   16.160459] [drm:drm_mode_debug_printmodeline [drm]] Modeline 83:"800x600" 72 50000 800 856 976 1040 600 637 643 666 0x0 0x5
[   16.160469] [drm:drm_mode_debug_printmodeline [drm]] Modeline 82:"800x600" 60 40000 800 840 968 1056 600 601 605 628 0x0 0x5
[   16.160478] [drm:drm_mode_debug_printmodeline [drm]] Modeline 81:"800x600" 56 36000 800 824 896 1024 600 601 603 625 0x0 0x5
[   16.160488] [drm:drm_mode_debug_printmodeline [drm]] Modeline 80:"640x480" 75 31500 640 656 720 840 480 481 484 500 0x0 0xa
[   16.160497] [drm:drm_mode_debug_printmodeline [drm]] Modeline 79:"640x480" 72 31500 640 656 696 832 480 481 484 520 0x0 0xa
[   16.160507] [drm:drm_mode_debug_printmodeline [drm]] Modeline 78:"640x480" 60 25175 640 656 752 800 480 490 492 525 0x0 0xa
[   16.160512] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:46:DP-1]
[   16.160635] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:46:DP-1] disconnected
[   16.160640] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:48:DVI-D-1]
[   16.160672] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:48:DVI-D-1] disconnected
[   16.160681] [drm] Initialized nvidia-drm 0.0.0 20160202 for 0000:01:00.0 on minor 0
[   16.230249] audit: type=1400 audit(1525053186.094:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/snap/core/4206/usr/lib/snapd/snap-confine" pid=1036 comm="apparmor_parser"
[   16.230253] audit: type=1400 audit(1525053186.094:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/snap/core/4206/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=1036 comm="apparmor_parser"
[   16.230255] audit: type=1400 audit(1525053186.094:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/snap/core/4206/usr/lib/snapd/snap-confine//snap_update_ns" pid=1036 comm="apparmor_parser"
[   16.247414] audit: type=1400 audit(1525053186.111:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lxc-container-default" pid=1034 comm="apparmor_parser"
[   16.247417] audit: type=1400 audit(1525053186.111:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lxc-container-default-cgns" pid=1034 comm="apparmor_parser"
[   16.247419] audit: type=1400 audit(1525053186.111:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lxc-container-default-with-mounting" pid=1034 comm="apparmor_parser"
[   16.247421] audit: type=1400 audit(1525053186.111:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lxc-container-default-with-nesting" pid=1034 comm="apparmor_parser"
[   16.274911] audit: type=1400 audit(1525053186.138:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/lxc-start" pid=1042 comm="apparmor_parser"
[   16.294306] MCE: In-kernel MCE decoding enabled.
[   16.317277] EDAC amd64: Node 0: DRAM ECC disabled.
[   16.317278] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[   16.356327] EDAC amd64: Node 0: DRAM ECC disabled.
[   16.356329] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[   16.388357] EDAC amd64: Node 0: DRAM ECC disabled.
[   16.388359] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[   16.404678] audit: type=1400 audit(1525053186.268:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/snapd/snap-confine" pid=1044 comm="apparmor_parser"
[   16.404683] audit: type=1400 audit(1525053186.268:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=1044 comm="apparmor_parser"
[   16.432374] EDAC amd64: Node 0: DRAM ECC disabled.
[   16.432376] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[   16.488431] EDAC amd64: Node 0: DRAM ECC disabled.
[   16.488432] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[   16.524378] EDAC amd64: Node 0: DRAM ECC disabled.
[   16.524378] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[   17.004282] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:41:DVI-I-1]
[   17.024148] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:41:DVI-I-1] probed modes :
[   17.024164] [drm:drm_mode_debug_printmodeline [drm]] Modeline 51:"1920x1200" 60 154000 1920 1968 2000 2080 1200 1203 1209 1235 0x0 0x9
[   17.024174] [drm:drm_mode_debug_printmodeline [drm]] Modeline 53:"1600x1200" 60 162000 1600 1664 1856 2160 1200 1201 1204 1250 0x0 0x5
[   17.024184] [drm:drm_mode_debug_printmodeline [drm]] Modeline 57:"1680x1050" 60 146250 1680 1784 1960 2240 1050 1053 1059 1089 0x0 0x6
[   17.024194] [drm:drm_mode_debug_printmodeline [drm]] Modeline 55:"1400x1050" 60 121750 1400 1488 1632 1864 1050 1053 1057 1089 0x0 0x6
[   17.024204] [drm:drm_mode_debug_printmodeline [drm]] Modeline 68:"1280x1024" 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x0 0x5
[   17.024213] [drm:drm_mode_debug_printmodeline [drm]] Modeline 52:"1280x1024" 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x0 0x5
[   17.024223] [drm:drm_mode_debug_printmodeline [drm]] Modeline 56:"1440x900" 60 106500 1440 1520 1672 1904 900 903 909 934 0x0 0x6
[   17.024233] [drm:drm_mode_debug_printmodeline [drm]] Modeline 54:"1152x864" 75 108000 1152 1216 1344 1600 864 865 868 900 0x0 0x5
[   17.024243] [drm:drm_mode_debug_printmodeline [drm]] Modeline 67:"1024x768" 75 78750 1024 1040 1136 1312 768 769 772 800 0x0 0x5
[   17.024252] [drm:drm_mode_debug_printmodeline [drm]] Modeline 66:"1024x768" 70 75000 1024 1048 1184 1328 768 771 777 806 0x0 0xa
[   17.024262] [drm:drm_mode_debug_printmodeline [drm]] Modeline 65:"1024x768" 60 65000 1024 1048 1184 1344 768 771 777 806 0x0 0xa
[   17.024272] [drm:drm_mode_debug_printmodeline [drm]] Modeline 64:"800x600" 75 49500 800 816 896 1056 600 601 604 625 0x0 0x5
[   17.024281] [drm:drm_mode_debug_printmodeline [drm]] Modeline 63:"800x600" 72 50000 800 856 976 1040 600 637 643 666 0x0 0x5
[   17.024291] [drm:drm_mode_debug_printmodeline [drm]] Modeline 62:"800x600" 60 40000 800 840 968 1056 600 601 605 628 0x0 0x5
[   17.024301] [drm:drm_mode_debug_printmodeline [drm]] Modeline 61:"800x600" 56 36000 800 824 896 1024 600 601 603 625 0x0 0x5
[   17.024310] [drm:drm_mode_debug_printmodeline [drm]] Modeline 60:"640x480" 75 31500 640 656 720 840 480 481 484 500 0x0 0xa
[   17.024320] [drm:drm_mode_debug_printmodeline [drm]] Modeline 59:"640x480" 72 31500 640 656 696 832 480 481 484 520 0x0 0xa
[   17.024329] [drm:drm_mode_debug_printmodeline [drm]] Modeline 58:"640x480" 60 25175 640 656 752 800 480 490 492 525 0x0 0xa
[   17.024345] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:44:HDMI-A-1]
[   17.032088] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:44:HDMI-A-1] probed modes :
[   17.032100] [drm:drm_mode_debug_printmodeline [drm]] Modeline 77:"1400x1050" 75 156000 1400 1504 1648 1896 1050 1053 1057 1099 0x0 0x6
[   17.032110] [drm:drm_mode_debug_printmodeline [drm]] Modeline 88:"1280x1024" 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x0 0x5
[   17.032120] [drm:drm_mode_debug_printmodeline [drm]] Modeline 72:"1280x1024" 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x0 0x5
[   17.032129] [drm:drm_mode_debug_printmodeline [drm]] Modeline 71:"1440x900" 75 136750 1440 1536 1688 1936 900 903 909 942 0x0 0x6
[   17.032139] [drm:drm_mode_debug_printmodeline [drm]] Modeline 70:"1440x900" 60 89000 1440 1488 1520 1600 900 903 909 926 0x0 0x5
[   17.032149] [drm:drm_mode_debug_printmodeline [drm]] Modeline 73:"1280x960" 60 108000 1280 1376 1488 1800 960 961 964 1000 0x0 0x5
[   17.032159] [drm:drm_mode_debug_printmodeline [drm]] Modeline 75:"1280x800" 75 106500 1280 1360 1488 1696 800 803 809 838 0x0 0x6
[   17.032168] [drm:drm_mode_debug_printmodeline [drm]] Modeline 76:"1152x864" 75 108000 1152 1216 1344 1600 864 865 868 900 0x0 0x5
[   17.032178] [drm:drm_mode_debug_printmodeline [drm]] Modeline 74:"1280x720" 60 74250 1280 1390 1430 1650 720 725 730 750 0x0 0x5
[   17.032188] [drm:drm_mode_debug_printmodeline [drm]] Modeline 87:"1024x768" 75 78750 1024 1040 1136 1312 768 769 772 800 0x0 0x5
[   17.032197] [drm:drm_mode_debug_printmodeline [drm]] Modeline 86:"1024x768" 70 75000 1024 1048 1184 1328 768 771 777 806 0x0 0xa
[   17.032207] [drm:drm_mode_debug_printmodeline [drm]] Modeline 85:"1024x768" 60 65000 1024 1048 1184 1344 768 771 777 806 0x0 0xa
[   17.032217] [drm:drm_mode_debug_printmodeline [drm]] Modeline 84:"800x600" 75 49500 800 816 896 1056 600 601 604 625 0x0 0x5
[   17.032226] [drm:drm_mode_debug_printmodeline [drm]] Modeline 83:"800x600" 72 50000 800 856 976 1040 600 637 643 666 0x0 0x5
[   17.032236] [drm:drm_mode_debug_printmodeline [drm]] Modeline 82:"800x600" 60 40000 800 840 968 1056 600 601 605 628 0x0 0x5
[   17.032246] [drm:drm_mode_debug_printmodeline [drm]] Modeline 81:"800x600" 56 36000 800 824 896 1024 600 601 603 625 0x0 0x5
[   17.032255] [drm:drm_mode_debug_printmodeline [drm]] Modeline 80:"640x480" 75 31500 640 656 720 840 480 481 484 500 0x0 0xa
[   17.032265] [drm:drm_mode_debug_printmodeline [drm]] Modeline 79:"640x480" 72 31500 640 656 696 832 480 481 484 520 0x0 0xa
[   17.032274] [drm:drm_mode_debug_printmodeline [drm]] Modeline 78:"640x480" 60 25175 640 656 752 800 480 490 492 525 0x0 0xa
[   17.032288] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:46:DP-1]
[   17.032421] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:46:DP-1] disconnected
[   17.032428] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:48:DVI-D-1]
[   17.032463] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:48:DVI-D-1] disconnected
[   19.400689] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:41:DVI-I-1]
[   19.420437] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:41:DVI-I-1] probed modes :
[   19.420456] [drm:drm_mode_debug_printmodeline [drm]] Modeline 51:"1920x1200" 60 154000 1920 1968 2000 2080 1200 1203 1209 1235 0x0 0x9
[   19.420466] [drm:drm_mode_debug_printmodeline [drm]] Modeline 53:"1600x1200" 60 162000 1600 1664 1856 2160 1200 1201 1204 1250 0x0 0x5
[   19.420475] [drm:drm_mode_debug_printmodeline [drm]] Modeline 57:"1680x1050" 60 146250 1680 1784 1960 2240 1050 1053 1059 1089 0x0 0x6
[   19.420485] [drm:drm_mode_debug_printmodeline [drm]] Modeline 55:"1400x1050" 60 121750 1400 1488 1632 1864 1050 1053 1057 1089 0x0 0x6
[   19.420495] [drm:drm_mode_debug_printmodeline [drm]] Modeline 68:"1280x1024" 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x0 0x5
[   19.420504] [drm:drm_mode_debug_printmodeline [drm]] Modeline 52:"1280x1024" 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x0 0x5
[   19.420514] [drm:drm_mode_debug_printmodeline [drm]] Modeline 56:"1440x900" 60 106500 1440 1520 1672 1904 900 903 909 934 0x0 0x6
[   19.420524] [drm:drm_mode_debug_printmodeline [drm]] Modeline 54:"1152x864" 75 108000 1152 1216 1344 1600 864 865 868 900 0x0 0x5
[   19.420533] [drm:drm_mode_debug_printmodeline [drm]] Modeline 67:"1024x768" 75 78750 1024 1040 1136 1312 768 769 772 800 0x0 0x5
[   19.420543] [drm:drm_mode_debug_printmodeline [drm]] Modeline 66:"1024x768" 70 75000 1024 1048 1184 1328 768 771 777 806 0x0 0xa
[   19.420553] [drm:drm_mode_debug_printmodeline [drm]] Modeline 65:"1024x768" 60 65000 1024 1048 1184 1344 768 771 777 806 0x0 0xa
[   19.420562] [drm:drm_mode_debug_printmodeline [drm]] Modeline 64:"800x600" 75 49500 800 816 896 1056 600 601 604 625 0x0 0x5
[   19.420572] [drm:drm_mode_debug_printmodeline [drm]] Modeline 63:"800x600" 72 50000 800 856 976 1040 600 637 643 666 0x0 0x5
[   19.420582] [drm:drm_mode_debug_printmodeline [drm]] Modeline 62:"800x600" 60 40000 800 840 968 1056 600 601 605 628 0x0 0x5
[   19.420591] [drm:drm_mode_debug_printmodeline [drm]] Modeline 61:"800x600" 56 36000 800 824 896 1024 600 601 603 625 0x0 0x5
[   19.420601] [drm:drm_mode_debug_printmodeline [drm]] Modeline 60:"640x480" 75 31500 640 656 720 840 480 481 484 500 0x0 0xa
[   19.420611] [drm:drm_mode_debug_printmodeline [drm]] Modeline 59:"640x480" 72 31500 640 656 696 832 480 481 484 520 0x0 0xa
[   19.420620] [drm:drm_mode_debug_printmodeline [drm]] Modeline 58:"640x480" 60 25175 640 656 752 800 480 490 492 525 0x0 0xa
[   19.420635] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:44:HDMI-A-1]
[   19.428169] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:44:HDMI-A-1] probed modes :
[   19.428179] [drm:drm_mode_debug_printmodeline [drm]] Modeline 77:"1400x1050" 75 156000 1400 1504 1648 1896 1050 1053 1057 1099 0x0 0x6
[   19.428189] [drm:drm_mode_debug_printmodeline [drm]] Modeline 88:"1280x1024" 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x0 0x5
[   19.428199] [drm:drm_mode_debug_printmodeline [drm]] Modeline 72:"1280x1024" 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x0 0x5
[   19.428209] [drm:drm_mode_debug_printmodeline [drm]] Modeline 71:"1440x900" 75 136750 1440 1536 1688 1936 900 903 909 942 0x0 0x6
[   19.428219] [drm:drm_mode_debug_printmodeline [drm]] Modeline 70:"1440x900" 60 89000 1440 1488 1520 1600 900 903 909 926 0x0 0x5
[   19.428229] [drm:drm_mode_debug_printmodeline [drm]] Modeline 73:"1280x960" 60 108000 1280 1376 1488 1800 960 961 964 1000 0x0 0x5
[   19.428238] [drm:drm_mode_debug_printmodeline [drm]] Modeline 75:"1280x800" 75 106500 1280 1360 1488 1696 800 803 809 838 0x0 0x6
[   19.428248] [drm:drm_mode_debug_printmodeline [drm]] Modeline 76:"1152x864" 75 108000 1152 1216 1344 1600 864 865 868 900 0x0 0x5
[   19.428258] [drm:drm_mode_debug_printmodeline [drm]] Modeline 74:"1280x720" 60 74250 1280 1390 1430 1650 720 725 730 750 0x0 0x5
[   19.428268] [drm:drm_mode_debug_printmodeline [drm]] Modeline 87:"1024x768" 75 78750 1024 1040 1136 1312 768 769 772 800 0x0 0x5
[   19.428277] [drm:drm_mode_debug_printmodeline [drm]] Modeline 86:"1024x768" 70 75000 1024 1048 1184 1328 768 771 777 806 0x0 0xa
[   19.428287] [drm:drm_mode_debug_printmodeline [drm]] Modeline 85:"1024x768" 60 65000 1024 1048 1184 1344 768 771 777 806 0x0 0xa
[   19.428297] [drm:drm_mode_debug_printmodeline [drm]] Modeline 84:"800x600" 75 49500 800 816 896 1056 600 601 604 625 0x0 0x5
[   19.428306] [drm:drm_mode_debug_printmodeline [drm]] Modeline 83:"800x600" 72 50000 800 856 976 1040 600 637 643 666 0x0 0x5
[   19.428316] [drm:drm_mode_debug_printmodeline [drm]] Modeline 82:"800x600" 60 40000 800 840 968 1056 600 601 605 628 0x0 0x5
[   19.428326] [drm:drm_mode_debug_printmodeline [drm]] Modeline 81:"800x600" 56 36000 800 824 896 1024 600 601 603 625 0x0 0x5
[   19.428335] [drm:drm_mode_debug_printmodeline [drm]] Modeline 80:"640x480" 75 31500 640 656 720 840 480 481 484 500 0x0 0xa
[   19.428345] [drm:drm_mode_debug_printmodeline [drm]] Modeline 79:"640x480" 72 31500 640 656 696 832 480 481 484 520 0x0 0xa
[   19.428355] [drm:drm_mode_debug_printmodeline [drm]] Modeline 78:"640x480" 60 25175 640 656 752 800 480 490 492 525 0x0 0xa
[   19.428366] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:46:DP-1]
[   19.428496] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:46:DP-1] disconnected
[   19.428504] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:48:DVI-D-1]
[   19.428537] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:48:DVI-D-1] disconnected
[   19.506700] Adding 15358972k swap on /dev/sdd4.  Priority:-2 extents:1 across:15358972k FS
[   21.127342] new mount options do not match the existing superblock, will be ignored
[   24.058577] new mount options do not match the existing superblock, will be ignored
[   24.073269] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   24.073270] Bluetooth: BNEP filters: protocol multicast
[   24.073273] Bluetooth: BNEP socket layer initialized
[   24.866887] new mount options do not match the existing superblock, will be ignored
[   25.017411] new mount options do not match the existing superblock, will be ignored
[   25.170539] new mount options do not match the existing superblock, will be ignored
[   26.657859] IPv6: ADDRCONF(NETDEV_UP): enp2s0: link is not ready
[   26.810058] r8169 0000:02:00.0 enp2s0: link down
[   26.810114] IPv6: ADDRCONF(NETDEV_UP): enp2s0: link is not ready
[   32.049083] ip_tables: (C) 2000-2006 Netfilter Core Team
[   32.114804] vboxdrv: Found 6 processor cores
[   32.132154] vboxdrv: TSC mode is Invariant, tentative frequency 4200081022 Hz
[   32.132155] vboxdrv: Successfully loaded version 5.1.34_Ubuntu (interface 0x002a0000)
[   32.136263] VBoxNetFlt: Successfully started.
[   32.140030] VBoxNetAdp: Successfully started.
[   32.145529] VBoxPciLinuxInit
[   32.147825] vboxpci: IOMMU not found (not registered)
[   32.147901] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[   32.154549] IPv6: ADDRCONF(NETDEV_UP): lxcbr0: link is not ready
[   32.172632] nf_conntrack version 0.5.0 (65536 buckets, 262144 max)
[   32.384201] kauditd_printk_skb: 26 callbacks suppressed
[   32.384203] audit: type=1400 audit(1525053202.247:38): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/usr/bin/lxc-start" pid=2442 comm="apparmor_parser"
[   32.389606] audit: type=1400 audit(1525053202.253:39): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="lxc-container-default" pid=2446 comm="apparmor_parser"
[   32.389610] audit: type=1400 audit(1525053202.253:40): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="lxc-container-default-cgns" pid=2446 comm="apparmor_parser"
[   32.389613] audit: type=1400 audit(1525053202.253:41): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="lxc-container-default-with-mounting" pid=2446 comm="apparmor_parser"
[   32.389615] audit: type=1400 audit(1525053202.253:42): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="lxc-container-default-with-nesting" pid=2446 comm="apparmor_parser"
[   37.560798] Bluetooth: RFCOMM TTY layer initialized
[   37.560804] Bluetooth: RFCOMM socket layer initialized
[   37.560808] Bluetooth: RFCOMM ver 1.11
[   50.541482]  sdc: sdc1 sdc2 sdc3 sdc4 sdc5
[   50.558224] ata6.01: configured for UDMA/100
[   50.558227] ata6: EH complete
[   50.601915] ata2.00: configured for UDMA/133
[   50.601919] ata2: EH complete
[   50.630328]  sda: sda1
[   50.694484]  sdb: sdb1
[   55.651975] nvidia-uvm: Loaded the UVM driver in 8 mode, major device number 242
[  334.132989] IPv6: ADDRCONF(NETDEV_UP): lxcbr0: link is not ready
[  432.258616] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[10288.778869] EXT4-fs (sdb1): mounted filesystem with ordered data mode. Opts: (null)
[15030.056409] PM: Syncing filesystems ... done.
[15030.337404] PM: Preparing system for sleep (mem)
[15031.111205] Freezing user space processes ... (elapsed 0.039 seconds) done.
[15031.151005] OOM killer disabled.
[15031.151006] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done.
[15031.152194] PM: Suspending system (mem)
[15031.152208] Suspending console(s) (use no_console_suspend to debug)
[15031.152516] sd 7:0:1:0: [sdd] Synchronizing SCSI cache
[15031.152626] sd 6:0:0:0: [sdc] Synchronizing SCSI cache
[15031.152670] sd 7:0:1:0: [sdd] Stopping disk
[15031.152773] sd 1:0:0:0: [sdb] Synchronizing SCSI cache
[15031.152814] sd 6:0:0:0: [sdc] Stopping disk
[15031.152850] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[15031.152862] sd 1:0:0:0: [sdb] Stopping disk
[15031.153000] sd 0:0:0:0: [sda] Stopping disk
[15031.155346] serial 00:02: disabled
[15032.033986] PM: suspend of devices complete after 881.563 msecs
[15032.034766] PM: late suspend of devices complete after 0.777 msecs
[15032.053306] PM: noirq suspend of devices complete after 18.537 msecs
[15032.053908] ACPI: Preparing to enter system sleep state S3
[15032.054454] PM: Saving platform NVS memory
[15032.054459] Disabling non-boot CPUs ...
[15032.077592] IRQ 24: no longer affine to CPU1
[15032.079287] smpboot: CPU 1 is now offline
[15032.093422] IRQ 22: no longer affine to CPU2
[15032.094434] smpboot: CPU 2 is now offline
[15032.109340] IRQ 18: no longer affine to CPU3
[15032.110352] smpboot: CPU 3 is now offline
[15032.125366] IRQ 32: no longer affine to CPU4
[15032.126376] smpboot: CPU 4 is now offline
[15032.145269] IRQ 1: no longer affine to CPU5
[15032.145272] IRQ 9: no longer affine to CPU5
[15032.145275] IRQ 15: no longer affine to CPU5
[15032.145278] IRQ 16: no longer affine to CPU5
[15032.145281] IRQ 19: no longer affine to CPU5
[15032.145286] IRQ 33: no longer affine to CPU5
[15032.146288] smpboot: CPU 5 is now offline
[15032.149067] ACPI: Low-level resume complete
[15032.149111] PM: Restoring platform NVS memory
[15032.149137] PCI-DMA: Resuming GART IOMMU
[15032.149138] PCI-DMA: Restoring GART aperture settings
[15032.149144] LVT offset 0 assigned for vector 0x400
[15032.149368] Suspended for 10.989 seconds
[15032.155094] microcode: CPU0: new patch_level=0x0600084f
[15032.155137] Enabling non-boot CPUs ...
[15032.155182] x86: Booting SMP configuration:
[15032.155183] smpboot: Booting Node 0 Processor 1 APIC 0x11
[15032.158145]  cache: parent cpu1 should not be sleeping
[15032.158242] microcode: CPU1: patch_level=0x0600084f
[15032.158414] CPU1 is up
[15032.158451] smpboot: Booting Node 0 Processor 2 APIC 0x12
[15032.161262]  cache: parent cpu2 should not be sleeping
[15032.161372] microcode: CPU2: patch_level=0x0600081c
[15032.167206] microcode: CPU2: new patch_level=0x0600084f
[15032.167441] CPU2 is up
[15032.167465] smpboot: Booting Node 0 Processor 3 APIC 0x13
[15032.170417]  cache: parent cpu3 should not be sleeping
[15032.170524] microcode: CPU3: patch_level=0x0600084f
[15032.170786] CPU3 is up
[15032.170804] smpboot: Booting Node 0 Processor 4 APIC 0x14
[15032.173592]  cache: parent cpu4 should not be sleeping
[15032.173699] microcode: CPU4: patch_level=0x0600081c
[15032.179533] microcode: CPU4: new patch_level=0x0600084f
[15032.179847] CPU4 is up
[15032.179871] smpboot: Booting Node 0 Processor 5 APIC 0x15
[15032.182865]  cache: parent cpu5 should not be sleeping
[15032.182969] microcode: CPU5: patch_level=0x0600084f
[15032.183507] CPU5 is up
[15032.190865] ACPI: Waking up from system sleep state S3
[15032.192271] ahci 0000:00:11.0: set SATA to AHCI mode
[15032.211140] PM: noirq resume of devices complete after 19.055 msecs
[15032.211938] PM: early resume of devices complete after 0.780 msecs
[15032.212236] usb usb8: root hub lost power or was reset
[15032.212238] usb usb9: root hub lost power or was reset
[15032.212793] serial 00:02: activated
[15032.213582] sd 0:0:0:0: [sda] Starting disk
[15032.213602] sd 1:0:0:0: [sdb] Starting disk
[15032.214250] sd 6:0:0:0: [sdc] Starting disk
[15032.214296] sd 7:0:1:0: [sdd] Starting disk
[15032.323327] r8169 0000:02:00.0 enp2s0: link down
[15032.515268] usb 8-2: reset full-speed USB device number 2 using xhci_hcd
[15032.525093] ata3: SATA link down (SStatus 0 SControl 300)
[15032.554682] usb 2-5: reset high-speed USB device number 4 using ehci-pci
[15032.686686] ata4: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[15032.686688] ata7: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[15032.687610] ata7.00: configured for UDMA/100
[15032.747989] ata4.00: configured for UDMA/33
[15032.806680] usb 5-2: reset low-speed USB device number 3 using ohci-pci
[15032.822681] usb 2-6: reset high-speed USB device number 5 using ehci-pci
[15033.050680] usb 2-5.1: reset full-speed USB device number 6 using ehci-pci
[15033.426682] usb 5-1: reset low-speed USB device number 2 using ohci-pci
[15033.775780] PM: resume of devices complete after 1563.840 msecs
[15033.775825] usb 8-2:1.0: rebind failed: -517
[15033.775827] usb 8-2:1.1: rebind failed: -517
[15033.775991] PM: Finishing wakeup.
[15033.775992] OOM killer enabled.
[15033.775993] Restarting tasks ... done.
[15035.122986] ata6.01: ACPI cmd ef/03:0c:00:00:00:b0 (SET FEATURES) filtered out
[15035.122989] ata6.01: ACPI cmd ef/03:46:00:00:00:b0 (SET FEATURES) filtered out
[15035.122991] ata6.01: ACPI cmd f5/00:00:00:00:00:b0 (SECURITY FREEZE LOCK) filtered out
[15035.125944] ata6.01: configured for UDMA/100
[15036.666688] ata8: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[15036.682228] ata8.00: configured for UDMA/133
[15037.244972] IPv6: ADDRCONF(NETDEV_UP): enp2s0: link is not ready
[15037.352686] r8169 0000:02:00.0 enp2s0: link down
[15037.352741] IPv6: ADDRCONF(NETDEV_UP): enp2s0: link is not ready
[15037.874695] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[15037.886028] ata2.00: configured for UDMA/133
[15039.134688] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[15039.157290] ata1.00: configured for UDMA/133
[15176.059903] Syncing filesystems ... 
[15176.207542] done.
[15176.207544] Freezing user space processes ... (elapsed 0.024 seconds) done.
[15176.232112] OOM killer disabled.
[15176.232235] PM: Marking nosave pages: [mem 0x00000000-0x00000fff]
[15176.232236] PM: Marking nosave pages: [mem 0x0009d000-0x000fffff]
[15176.232239] PM: Marking nosave pages: [mem 0xdff90000-0xffffffff]
[15176.232569] PM: Marking nosave pages: [mem 0xd4000000-0xd7ffffff]
[15176.232837] PM: Basic memory bitmaps created
[15176.232957] PM: Preallocating image memory... done (allocated 622576 pages)
[15177.225383] PM: Allocated 2490304 kbytes in 0.99 seconds (2515.45 MB/s)
[15177.225383] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done.
[15177.226987] Suspending console(s) (use no_console_suspend to debug)
[15177.227749] serial 00:02: disabled
[15177.306807] PM: freeze of devices complete after 79.816 msecs
[15177.307636] PM: late freeze of devices complete after 0.826 msecs
[15177.308794] PM: noirq freeze of devices complete after 1.155 msecs
[15177.309462] ACPI: Preparing to enter system sleep state S4
[15177.309803] PM: Saving platform NVS memory
[15177.309994] Disabling non-boot CPUs ...
[15177.327178] IRQ 18: no longer affine to CPU1
[15177.327187] IRQ 24: no longer affine to CPU1
[15177.328878] smpboot: CPU 1 is now offline
[15177.347160] IRQ 22: no longer affine to CPU2
[15177.348171] smpboot: CPU 2 is now offline
[15177.376127] smpboot: CPU 3 is now offline
[15177.391086] IRQ 32: no longer affine to CPU4
[15177.392834] smpboot: CPU 4 is now offline
[15177.407011] IRQ 1: no longer affine to CPU5
[15177.407016] IRQ 15: no longer affine to CPU5
[15177.407020] IRQ 16: no longer affine to CPU5
[15177.407023] IRQ 19: no longer affine to CPU5
[15177.407028] IRQ 33: no longer affine to CPU5
[15177.408036] smpboot: CPU 5 is now offline
[15177.408978] PM: Creating hibernation image:
[15177.533159] PM: Need to copy 630034 pages
[15177.533162] PM: Normal pages needed: 630034 + 1024, available pages: 1450366
[15177.410295] PM: Restoring platform NVS memory
[15177.410388] PCI-DMA: Resuming GART IOMMU
[15177.410389] PCI-DMA: Restoring GART aperture settings
[15177.410395] LVT offset 0 assigned for vector 0x400
[15177.410618] Suspended for 70459.740 seconds
[15177.410670] Enabling non-boot CPUs ...
[15177.410713] x86: Booting SMP configuration:
[15177.410714] smpboot: Booting Node 0 Processor 1 APIC 0x11
[15177.413614]  cache: parent cpu1 should not be sleeping
[15177.413707] microcode: CPU1: patch_level=0x0600084f
[15177.413881] CPU1 is up
[15177.413913] smpboot: Booting Node 0 Processor 2 APIC 0x12
[15177.416665]  cache: parent cpu2 should not be sleeping
[15177.416764] microcode: CPU2: patch_level=0x0600084f
[15177.416978] CPU2 is up
[15177.416995] smpboot: Booting Node 0 Processor 3 APIC 0x13
[15177.419863]  cache: parent cpu3 should not be sleeping
[15177.419968] microcode: CPU3: patch_level=0x0600084f
[15177.420214] CPU3 is up
[15177.420236] smpboot: Booting Node 0 Processor 4 APIC 0x14
[15177.422951]  cache: parent cpu4 should not be sleeping
[15177.423033] microcode: CPU4: patch_level=0x0600084f
[15177.423267] CPU4 is up
[15177.423283] smpboot: Booting Node 0 Processor 5 APIC 0x15
[15177.426216]  cache: parent cpu5 should not be sleeping
[15177.426317] microcode: CPU5: patch_level=0x0600084f
[15177.426861] CPU5 is up
[15177.434183] ACPI: Waking up from system sleep state S4
[15177.435542] PM: noirq restore of devices complete after 0.943 msecs
[15177.436350] PM: early restore of devices complete after 0.792 msecs
[15177.511101] usb usb8: root hub lost power or was reset
[15177.511103] usb usb9: root hub lost power or was reset
[15177.512549] serial 00:02: activated
[15177.524429] sd 0:0:0:0: [sda] Starting disk
[15177.524464] sd 1:0:0:0: [sdb] Starting disk
[15177.524500] sd 6:0:0:0: [sdc] Starting disk
[15177.524540] sd 7:0:1:0: [sdd] Starting disk
[15177.572456] usb usb4: root hub lost power or was reset
[15177.572457] usb usb5: root hub lost power or was reset
[15177.576437] usb usb7: root hub lost power or was reset
[15177.576438] usb usb3: root hub lost power or was reset
[15177.576471] usb usb1: root hub lost power or was reset
[15177.576529] usb usb6: root hub lost power or was reset
[15177.576554] usb usb2: root hub lost power or was reset
[15177.614632] r8169 0000:02:00.0 enp2s0: link down
[15177.694246] ata6.01: ACPI cmd ef/03:0c:00:00:00:b0 (SET FEATURES) filtered out
[15177.694248] ata6.01: ACPI cmd ef/03:46:00:00:00:b0 (SET FEATURES) filtered out
[15177.694251] ata6.01: ACPI cmd f5/00:00:00:00:00:b0 (SECURITY FREEZE LOCK) filtered out
[15177.697775] ata6.01: configured for UDMA/100
[15177.826778] ata3: SATA link down (SStatus 0 SControl 300)
[15177.869006] usb 8-2: reset full-speed USB device number 2 using xhci_hcd
[15177.988415] ata4: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[15177.988418] ata8: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[15177.988449] ata7: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[15177.988452] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[15177.988473] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[15177.989314] ata7.00: configured for UDMA/100
[15177.989975] ata4.00: configured for UDMA/33
[15177.990273] ata8.00: configured for UDMA/133
[15177.990274] ata2.00: configured for UDMA/133
[15177.990732] ata1.00: configured for UDMA/133
[15178.048401] usb 2-5: reset high-speed USB device number 4 using ehci-pci
[15178.252403] usb 5-2: reset low-speed USB device number 3 using ohci-pci
[15178.316394] usb 2-6: reset high-speed USB device number 5 using ehci-pci
[15178.544393] usb 2-5.1: reset full-speed USB device number 6 using ehci-pci
[15178.872393] usb 5-1: reset low-speed USB device number 2 using ohci-pci
[15179.221504] PM: restore of devices complete after 1710.632 msecs
[15179.221546] usb 8-2:1.0: rebind failed: -517
[15179.221548] usb 8-2:1.1: rebind failed: -517
[15179.228441] Restarting kernel threads ... done.
[15179.228864] PM: Basic memory bitmaps freed
[15179.228864] OOM killer enabled.
[15179.228865] Restarting tasks ... done.
[15180.783413] IPv6: ADDRCONF(NETDEV_UP): enp2s0: link is not ready
[15180.898551] r8169 0000:02:00.0 enp2s0: link down
[15180.898610] IPv6: ADDRCONF(NETDEV_UP): enp2s0: link is not ready
[18449.139893] Syncing filesystems ... 
[18449.461915] done.
[18449.461917] Freezing user space processes ... (elapsed 0.024 seconds) done.
[18449.486427] OOM killer disabled.
[18449.486549] PM: Marking nosave pages: [mem 0x00000000-0x00000fff]
[18449.486550] PM: Marking nosave pages: [mem 0x0009d000-0x000fffff]
[18449.486553] PM: Marking nosave pages: [mem 0xdff90000-0xffffffff]
[18449.486868] PM: Marking nosave pages: [mem 0xd4000000-0xd7ffffff]
[18449.487110] PM: Basic memory bitmaps created
[18449.487244] PM: Preallocating image memory... done (allocated 640725 pages)
[18450.255488] PM: Allocated 2562900 kbytes in 0.76 seconds (3372.23 MB/s)
[18450.255489] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done.
[18450.256890] Suspending console(s) (use no_console_suspend to debug)
[18450.257491] serial 00:02: disabled
[18450.330385] PM: freeze of devices complete after 73.491 msecs
[18450.331174] PM: late freeze of devices complete after 0.786 msecs
[18450.332209] PM: noirq freeze of devices complete after 1.033 msecs
[18450.332889] ACPI: Preparing to enter system sleep state S4
[18450.333240] PM: Saving platform NVS memory
[18450.333422] Disabling non-boot CPUs ...
[18450.357142] IRQ 24: no longer affine to CPU1
[18450.358827] smpboot: CPU 1 is now offline
[18450.373096] IRQ 22: no longer affine to CPU2
[18450.374104] smpboot: CPU 2 is now offline
[18450.389032] IRQ 18: no longer affine to CPU3
[18450.390043] smpboot: CPU 3 is now offline
[18450.417000] IRQ 32: no longer affine to CPU4
[18450.418003] smpboot: CPU 4 is now offline
[18450.432933] IRQ 15: no longer affine to CPU5
[18450.432937] IRQ 16: no longer affine to CPU5
[18450.432940] IRQ 19: no longer affine to CPU5
[18450.432945] IRQ 33: no longer affine to CPU5
[18450.433947] smpboot: CPU 5 is now offline
[18450.434861] PM: Creating hibernation image:
[18450.555894] PM: Need to copy 643479 pages
[18450.555897] PM: Normal pages needed: 643479 + 1024, available pages: 1436927
[18450.436184] PM: Restoring platform NVS memory
[18450.436280] PCI-DMA: Resuming GART IOMMU
[18450.436281] PCI-DMA: Restoring GART aperture settings
[18450.436286] LVT offset 0 assigned for vector 0x400
[18450.436512] Suspended for 43428.976 seconds
[18450.436562] Enabling non-boot CPUs ...
[18450.436607] x86: Booting SMP configuration:
[18450.436608] smpboot: Booting Node 0 Processor 1 APIC 0x11
[18450.439476]  cache: parent cpu1 should not be sleeping
[18450.439571] microcode: CPU1: patch_level=0x0600084f
[18450.439742] CPU1 is up
[18450.439777] smpboot: Booting Node 0 Processor 2 APIC 0x12
[18450.442497]  cache: parent cpu2 should not be sleeping
[18450.442594] microcode: CPU2: patch_level=0x0600084f
[18450.442802] CPU2 is up
[18450.442818] smpboot: Booting Node 0 Processor 3 APIC 0x13
[18450.445668]  cache: parent cpu3 should not be sleeping
[18450.445767] microcode: CPU3: patch_level=0x0600084f
[18450.446025] CPU3 is up
[18450.446047] smpboot: Booting Node 0 Processor 4 APIC 0x14
[18450.448741]  cache: parent cpu4 should not be sleeping
[18450.448828] microcode: CPU4: patch_level=0x0600084f
[18450.449087] CPU4 is up
[18450.449104] smpboot: Booting Node 0 Processor 5 APIC 0x15
[18450.451990]  cache: parent cpu5 should not be sleeping
[18450.452092] microcode: CPU5: patch_level=0x0600084f
[18450.452711] CPU5 is up
[18450.460029] ACPI: Waking up from system sleep state S4
[18450.461438] PM: noirq restore of devices complete after 0.962 msecs
[18450.462170] PM: early restore of devices complete after 0.716 msecs
[18450.538158] usb usb8: root hub lost power or was reset
[18450.538160] usb usb9: root hub lost power or was reset
[18450.539197] serial 00:02: activated
[18450.566620] sd 0:0:0:0: [sda] Starting disk
[18450.566660] sd 1:0:0:0: [sdb] Starting disk
[18450.566689] sd 6:0:0:0: [sdc] Starting disk
[18450.566722] sd 7:0:1:0: [sdd] Starting disk
[18450.598379] usb usb7: root hub lost power or was reset
[18450.598391] usb usb6: root hub lost power or was reset
[18450.598392] usb usb3: root hub lost power or was reset
[18450.602342] usb usb4: root hub lost power or was reset
[18450.602372] usb usb1: root hub lost power or was reset
[18450.602447] usb usb5: root hub lost power or was reset
[18450.602471] usb usb2: root hub lost power or was reset
[18450.739909] ata6.01: ACPI cmd ef/03:0c:00:00:00:b0 (SET FEATURES) filtered out
[18450.739911] ata6.01: ACPI cmd ef/03:46:00:00:00:b0 (SET FEATURES) filtered out
[18450.739912] ata6.01: ACPI cmd f5/00:00:00:00:00:b0 (SECURITY FREEZE LOCK) filtered out
[18450.742873] ata6.01: configured for UDMA/100
[18450.860122] r8169 0000:02:00.0 enp2s0: link down
[18450.868762] ata3: SATA link down (SStatus 0 SControl 300)
[18450.898915] usb 8-2: reset full-speed USB device number 2 using xhci_hcd
[18451.030326] ata7: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[18451.030336] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[18451.030347] ata8: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[18451.030360] ata4: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[18451.030380] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[18451.031153] ata7.00: configured for UDMA/100
[18451.031891] ata4.00: configured for UDMA/33
[18451.032165] ata2.00: configured for UDMA/133
[18451.032191] ata8.00: configured for UDMA/133
[18451.033108] ata1.00: configured for UDMA/133
[18451.082318] usb 2-5: reset high-speed USB device number 4 using ehci-pci
[18451.286316] usb 5-1: reset low-speed USB device number 2 using ohci-pci
[18451.350315] usb 2-6: reset high-speed USB device number 5 using ehci-pci
[18451.578317] usb 2-5.1: reset full-speed USB device number 6 using ehci-pci
[18451.906319] usb 5-2: reset low-speed USB device number 3 using ohci-pci
[18452.242423] PM: restore of devices complete after 1704.455 msecs
[18452.242464] usb 8-2:1.0: rebind failed: -517
[18452.242466] usb 8-2:1.1: rebind failed: -517
[18452.249156] Restarting kernel threads ... done.
[18452.250433] PM: Basic memory bitmaps freed
[18452.250434] OOM killer enabled.
[18452.250434] Restarting tasks ... done.
[18454.855759] IPv6: ADDRCONF(NETDEV_UP): enp2s0: link is not ready
[18454.976336] r8169 0000:02:00.0 enp2s0: link down
[18454.976401] IPv6: ADDRCONF(NETDEV_UP): enp2s0: link is not ready
[18544.170319] usb 1-2: new high-speed USB device number 2 using ehci-pci
[18544.321807] usb 1-2: New USB device found, idVendor=18d1, idProduct=4ee7
[18544.321809] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[18544.321810] usb 1-2: Product: XT1575
[18544.321811] usb 1-2: Manufacturer: motorola
[18544.321812] usb 1-2: SerialNumber: ZY223MG36K
[18549.549308] usb 1-2: USB disconnect, device number 2
[18549.918319] usb 1-2: new high-speed USB device number 3 using ehci-pci
[18550.067799] usb 1-2: New USB device found, idVendor=22b8, idProduct=002e
[18550.067800] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[18550.067801] usb 1-2: Product: XT1575
[18550.067802] usb 1-2: Manufacturer: motorola
[18550.067803] usb 1-2: SerialNumber: ZY223MG36K
[18959.322355] usb 1-2: reset high-speed USB device number 3 using ehci-pci
[18959.471206] usb 1-2: usbfs: process 14258 (events) did not claim interface 0 before use
[18970.775646] usb 1-2: USB disconnect, device number 3
[18978.482347] usb 1-2: new high-speed USB device number 4 using ehci-pci
[18978.631465] usb 1-2: New USB device found, idVendor=18d1, idProduct=4ee7
[18978.631468] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[18978.631469] usb 1-2: Product: XT1575
[18978.631470] usb 1-2: Manufacturer: motorola
[18978.631471] usb 1-2: SerialNumber: ZY223MG36K
[18981.957138] usb 1-2: USB disconnect, device number 4
[18982.290356] usb 1-2: new high-speed USB device number 5 using ehci-pci
[18982.440385] usb 1-2: New USB device found, idVendor=22b8, idProduct=002e
[18982.440387] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[18982.440388] usb 1-2: Product: XT1575
[18982.440389] usb 1-2: Manufacturer: motorola
[18982.440390] usb 1-2: SerialNumber: ZY223MG36K
[19161.623131] usb 9-4: new SuperSpeed USB device number 2 using xhci_hcd
[19161.742984] usb 9-4: New USB device found, idVendor=0951, idProduct=1666
[19161.742987] usb 9-4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[19161.742988] usb 9-4: Product: DataTraveler 3.0
[19161.742989] usb 9-4: Manufacturer: Kingston
[19161.742990] usb 9-4: SerialNumber: 1C6F65342F78EF7149550E40
[19162.004097] usb-storage 9-4:1.0: USB Mass Storage device detected
[19162.004221] scsi host8: usb-storage 9-4:1.0
[19162.004315] usbcore: registered new interface driver usb-storage
[19162.026270] usbcore: registered new interface driver uas
[19163.075816] scsi 8:0:0:0: Direct-Access     Kingston DataTraveler 3.0 PMAP PQ: 0 ANSI: 6
[19163.076149] sd 8:0:0:0: Attached scsi generic sg6 type 0
[19164.867813] sd 8:0:0:0: [sde] 61457664 512-byte logical blocks: (31.5 GB/29.3 GiB)
[19164.867925] sd 8:0:0:0: [sde] Write Protect is off
[19164.867927] sd 8:0:0:0: [sde] Mode Sense: 23 00 00 00
[19164.868046] sd 8:0:0:0: [sde] No Caching mode page found
[19164.868049] sd 8:0:0:0: [sde] Assuming drive cache: write through
[19164.897679]  sde: sde1
[19164.898612] sd 8:0:0:0: [sde] Attached SCSI removable disk
[19165.165348] usb 1-2: USB disconnect, device number 5
[19165.502372] usb 1-2: new high-speed USB device number 6 using ehci-pci
[19165.651227] usb 1-2: New USB device found, idVendor=22b8, idProduct=2e25
[19165.651229] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[19165.651231] usb 1-2: Product: XT1575
[19165.651232] usb 1-2: Manufacturer: motorola
[19165.651233] usb 1-2: SerialNumber: ZY223MG36K
[19165.762294] usbcore: registered new interface driver cdc_ether
[19165.764992] rndis_host 1-2:1.0 usb0: register 'rndis_host' at usb-0000:00:12.2-2, RNDIS device, 5a:1d:2c:58:e0:bc
[19165.765016] usbcore: registered new interface driver rndis_host
[19165.786617] rndis_host 1-2:1.0 enp0s18f2u2: renamed from usb0
[19166.364743] IPv6: ADDRCONF(NETDEV_UP): enp0s18f2u2: link is not ready
[19171.168098] F2FS-fs (sde1): Mounted with checkpoint version = 716
mdiluz commented 6 years ago

That's curious indeed.

I think you're in a similar situation to this fellow here.

Looks like your Ubuntu 16.04 doesn't support frequency scaling, so the governor modes wouldn't work for you. I'm actually unsure why, maybe that FX doesn't have support?

However, it would be preferable if the other custom scriptable features would work for you, so I could ensure that's possible, if wanted?

mdiluz commented 6 years ago

A patch that should get you past this and at least use the custom scripts, if wanted, will look like this:

diff --git a/daemon/governors-query.c b/daemon/governors-query.c
index cd9700e..ff88d91 100644
--- a/daemon/governors-query.c
+++ b/daemon/governors-query.c
@@ -50,12 +50,14 @@ int fetch_governors(char governors[MAX_GOVERNORS][MAX_GOVERNOR_LENGTH])

        /* Assert some sanity on this glob */
        if (glob(path, GLOB_NOSORT, NULL, &glo) != 0) {
-               FATAL_ERRORNO("Broken glob implementation");
+               LOG_ERROR("glob failed for cpu governors: (%s)\n", strerror(errno));
+               return 0;
        }

        if (glo.gl_pathc < 1) {
                globfree(&glo);
-               FATAL_ERROR("cpu device path not found");
+               LOG_ERROR("no cpu governors found\n");
+               return 0;
        }

        int num_governors = 0;
alexsmithfanning commented 6 years ago

Wikipedia says that the AMD FX-6300 has an original turbo clock of 4.1 GHz, and that it supports turbo core. I have it overclocked to 4.2 GHz, so I don't know how that changes the frequency scaling.

I also have AMD Cool'n'Quiet disabled. I'm not sure if that's directly related to frequency scaling or not, as AMD also has Turbo Core.

Here's my BIOS information (dmidecode):

Getting SMBIOS data from sysfs.
SMBIOS 2.6 present.
46 structures occupying 1578 bytes.
Table at 0x0009F800.

Handle 0x0000, DMI type 0, 24 bytes
BIOS Information
    Vendor: American Megatrends Inc.
    Version: V25.0
    Release Date: 05/28/2013
    Address: 0xF0000
    Runtime Size: 64 kB
    ROM Size: 2048 kB
    Characteristics:
        ISA is supported
        PCI is supported
        PNP is supported
        APM is supported
        BIOS is upgradeable
        BIOS shadowing is allowed
        ESCD support is available
        Boot from CD is supported
        Selectable boot is supported
        BIOS ROM is socketed
        EDD is supported
        5.25"/1.2 MB floppy services are supported (int 13h)
        3.5"/720 kB floppy services are supported (int 13h)
        3.5"/2.88 MB floppy services are supported (int 13h)
        Print screen service is supported (int 5h)
        8042 keyboard services are supported (int 9h)
        Serial services are supported (int 14h)
        Printer services are supported (int 17h)
        CGA/mono video services are supported (int 10h)
        ACPI is supported
        USB legacy is supported
        LS-120 boot is supported
        ATAPI Zip drive boot is supported
        BIOS boot specification is supported
        Targeted content distribution is supported
    BIOS Revision: 8.15

Handle 0x0001, DMI type 1, 27 bytes
System Information
    Manufacturer: MSI
    Product Name: MS-7641
    Version: 5.0
    Serial Number: To Be Filled By O.E.M.
    UUID: 00000000-0000-0000-0000-D8CB8A51CDFA
    Wake-up Type: Power Switch
    SKU Number: To Be Filled By O.E.M.
    Family: To Be Filled By O.E.M.

Handle 0x0002, DMI type 2, 15 bytes
Base Board Information
    Manufacturer: MSI
    Product Name: 760GMA-P34(FX) (MS-7641)    
    Version: 5.0
    Serial Number: To be filled by O.E.M.
    Asset Tag: To Be Filled By O.E.M.
    Features:
        Board is a hosting board
        Board is replaceable
    Location In Chassis: To Be Filled By O.E.M.
    Chassis Handle: 0x0003
    Type: Motherboard
    Contained Object Handles: 0

Handle 0x0003, DMI type 3, 21 bytes
Chassis Information
    Manufacturer: MSI
    Type: Desktop
    Lock: Not Present
    Version: 5.0
    Serial Number: To Be Filled By O.E.M.
    Asset Tag: To Be Filled By O.E.M.
    Boot-up State: Safe
    Power Supply State: Safe
    Thermal State: Safe
    Security Status: None
    OEM Information: 0x00000000
    Height: Unspecified
    Number Of Power Cords: 1
    Contained Elements: 0

Handle 0x0004, DMI type 4, 42 bytes
Processor Information
    Socket Designation: CPU1
    Type: Central Processor
    Family: FX
    Manufacturer: AMD              
    ID: 20 0F 60 00 FF FB 8B 17
    Signature: Family 21, Model 2, Stepping 0
    Flags:
        FPU (Floating-point unit on-chip)
        VME (Virtual mode extension)
        DE (Debugging extension)
        PSE (Page size extension)
        TSC (Time stamp counter)
        MSR (Model specific registers)
        PAE (Physical address extension)
        MCE (Machine check exception)
        CX8 (CMPXCHG8 instruction supported)
        APIC (On-chip APIC hardware supported)
        SEP (Fast system call)
        MTRR (Memory type range registers)
        PGE (Page global enable)
        MCA (Machine check architecture)
        CMOV (Conditional move instruction supported)
        PAT (Page attribute table)
        PSE-36 (36-bit page size extension)
        CLFSH (CLFLUSH instruction supported)
        MMX (MMX technology supported)
        FXSR (FXSAVE and FXSTOR instructions supported)
        SSE (Streaming SIMD extensions)
        SSE2 (Streaming SIMD extensions 2)
        HTT (Multi-threading)
    Version: AMD FX(tm)-6300 Six-Core Processor                  
    Voltage: 1.3 V
    External Clock: 200 MHz
    Max Speed: 4200 MHz
    Current Speed: 4200 MHz
    Status: Populated, Disabled By BIOS
    Upgrade: Socket AM3
    L1 Cache Handle: 0x0005
    L2 Cache Handle: 0x0006
    L3 Cache Handle: 0x0007
    Serial Number: To Be Filled By O.E.M.
    Asset Tag: To Be Filled By O.E.M.
    Part Number: To Be Filled By O.E.M.
    Core Count: 6
    Core Enabled: 6
    Thread Count: 6
    Characteristics:
        64-bit capable

Handle 0x0005, DMI type 7, 19 bytes
Cache Information
    Socket Designation: L1-Cache
    Configuration: Enabled, Not Socketed, Level 1
    Operational Mode: Write Back
    Location: Internal
    Installed Size: 288 kB
    Maximum Size: 288 kB
    Supported SRAM Types:
        Pipeline Burst
    Installed SRAM Type: Pipeline Burst
    Speed: 1 ns
    Error Correction Type: Multi-bit ECC
    System Type: Unified
    Associativity: 2-way Set-associative

Handle 0x0006, DMI type 7, 19 bytes
Cache Information
    Socket Designation: L2-Cache
    Configuration: Enabled, Not Socketed, Level 2
    Operational Mode: Write Back
    Location: Internal
    Installed Size: 6144 kB
    Maximum Size: 6144 kB
    Supported SRAM Types:
        Pipeline Burst
    Installed SRAM Type: Pipeline Burst
    Speed: 1 ns
    Error Correction Type: Multi-bit ECC
    System Type: Unified
    Associativity: 16-way Set-associative

Handle 0x0007, DMI type 7, 19 bytes
Cache Information
    Socket Designation: L3-Cache
    Configuration: Enabled, Not Socketed, Level 3
    Operational Mode: Write Back
    Location: Internal
    Installed Size: 8192 kB
    Maximum Size: 8192 kB
    Supported SRAM Types:
        Pipeline Burst
    Installed SRAM Type: Pipeline Burst
    Speed: 1 ns
    Error Correction Type: Multi-bit ECC
    System Type: Unified
    Associativity: 64-way Set-associative

Handle 0x0008, DMI type 8, 9 bytes
Port Connector Information
    Internal Reference Designator: PS1
    Internal Connector Type: None
    External Reference Designator: PS2 Mouse
    External Connector Type: PS/2
    Port Type: Mouse Port

Handle 0x0009, DMI type 8, 9 bytes
Port Connector Information
    Internal Reference Designator: PS1
    Internal Connector Type: None
    External Reference Designator: PS2 Keyboard
    External Connector Type: PS/2
    Port Type: Keyboard Port

Handle 0x000A, DMI type 8, 9 bytes
Port Connector Information
    Internal Reference Designator: COM1
    Internal Connector Type: None
    External Reference Designator: COM
    External Connector Type: DB-9 male
    Port Type: Serial Port 16550A Compatible

Handle 0x000B, DMI type 8, 9 bytes
Port Connector Information
    Internal Reference Designator: JACK1
    Internal Connector Type: None
    External Reference Designator: Audio Mic In
    External Connector Type: Mini Jack (headphones)
    Port Type: Audio Port

Handle 0x000C, DMI type 8, 9 bytes
Port Connector Information
    Internal Reference Designator: JACK1
    Internal Connector Type: None
    External Reference Designator: Audio Line In
    External Connector Type: Mini Jack (headphones)
    Port Type: Audio Port

Handle 0x000D, DMI type 8, 9 bytes
Port Connector Information
    Internal Reference Designator: JACK1
    Internal Connector Type: None
    External Reference Designator: Audio Line Out
    External Connector Type: Mini Jack (headphones)
    Port Type: Audio Port

Handle 0x000E, DMI type 8, 9 bytes
Port Connector Information
    Internal Reference Designator: USB1
    Internal Connector Type: None
    External Reference Designator: USB1
    External Connector Type: Access Bus (USB)
    Port Type: USB

Handle 0x000F, DMI type 8, 9 bytes
Port Connector Information
    Internal Reference Designator: USB1
    Internal Connector Type: None
    External Reference Designator: USB2
    External Connector Type: Access Bus (USB)
    Port Type: USB

Handle 0x0010, DMI type 8, 9 bytes
Port Connector Information
    Internal Reference Designator: USB1
    Internal Connector Type: None
    External Reference Designator: USB3
    External Connector Type: Access Bus (USB)
    Port Type: USB

Handle 0x0011, DMI type 8, 9 bytes
Port Connector Information
    Internal Reference Designator: USB1
    Internal Connector Type: None
    External Reference Designator: USB4
    External Connector Type: Access Bus (USB)
    Port Type: USB

Handle 0x0012, DMI type 8, 9 bytes
Port Connector Information
    Internal Reference Designator: LAN
    Internal Connector Type: None
    External Reference Designator: LAN
    External Connector Type: RJ-45
    Port Type: Network Port

Handle 0x0013, DMI type 8, 9 bytes
Port Connector Information
    Internal Reference Designator: JBAT1
    Internal Connector Type: Other
    External Reference Designator: Not Specified
    External Connector Type: None
    Port Type: Other

Handle 0x0014, DMI type 8, 9 bytes
Port Connector Information
    Internal Reference Designator: CD_IN1
    Internal Connector Type: On Board Sound Input From CD-ROM
    External Reference Designator: Not Specified
    External Connector Type: None
    Port Type: Audio Port

Handle 0x0015, DMI type 8, 9 bytes
Port Connector Information
    Internal Reference Designator: JCI1
    Internal Connector Type: Other
    External Reference Designator: Not Specified
    External Connector Type: None
    Port Type: Other

Handle 0x0016, DMI type 8, 9 bytes
Port Connector Information
    Internal Reference Designator: JUSB1
    Internal Connector Type: Other
    External Reference Designator: Not Specified
    External Connector Type: None
    Port Type: USB

Handle 0x0017, DMI type 8, 9 bytes
Port Connector Information
    Internal Reference Designator: JUSB2
    Internal Connector Type: Other
    External Reference Designator: Not Specified
    External Connector Type: None
    Port Type: USB

Handle 0x0018, DMI type 8, 9 bytes
Port Connector Information
    Internal Reference Designator: JUSB3
    Internal Connector Type: Other
    External Reference Designator: Not Specified
    External Connector Type: None
    Port Type: USB

Handle 0x0019, DMI type 8, 9 bytes
Port Connector Information
    Internal Reference Designator: JFP1
    Internal Connector Type: Other
    External Reference Designator: Not Specified
    External Connector Type: None
    Port Type: Other

Handle 0x001A, DMI type 8, 9 bytes
Port Connector Information
    Internal Reference Designator: JFP2
    Internal Connector Type: Other
    External Reference Designator: Not Specified
    External Connector Type: None
    Port Type: Other

Handle 0x001B, DMI type 8, 9 bytes
Port Connector Information
    Internal Reference Designator: SATA1
    Internal Connector Type: SAS/SATA Plug Receptacle
    External Reference Designator: Not Specified
    External Connector Type: None
    Port Type: SATA

Handle 0x001C, DMI type 8, 9 bytes
Port Connector Information
    Internal Reference Designator: SATA2
    Internal Connector Type: SAS/SATA Plug Receptacle
    External Reference Designator: Not Specified
    External Connector Type: None
    Port Type: SATA

Handle 0x001D, DMI type 8, 9 bytes
Port Connector Information
    Internal Reference Designator: SATA3
    Internal Connector Type: SAS/SATA Plug Receptacle
    External Reference Designator: Not Specified
    External Connector Type: None
    Port Type: SATA

Handle 0x001E, DMI type 8, 9 bytes
Port Connector Information
    Internal Reference Designator: SATA4
    Internal Connector Type: SAS/SATA Plug Receptacle
    External Reference Designator: Not Specified
    External Connector Type: None
    Port Type: SATA

Handle 0x001F, DMI type 8, 9 bytes
Port Connector Information
    Internal Reference Designator: SATA5
    Internal Connector Type: SAS/SATA Plug Receptacle
    External Reference Designator: Not Specified
    External Connector Type: None
    Port Type: SATA

Handle 0x0020, DMI type 8, 9 bytes
Port Connector Information
    Internal Reference Designator: SATA6
    Internal Connector Type: SAS/SATA Plug Receptacle
    External Reference Designator: Not Specified
    External Connector Type: None
    Port Type: SATA

Handle 0x0021, DMI type 9, 17 bytes
System Slot Information
    Designation: PCIE1
    Type: x1 PCI Express
    Current Usage: Available
    Length: Short
    ID: 1
    Characteristics:
        3.3 V is provided
        Opening is shared
        PME signal is supported
    Bus Address: 0000:00:00.0

Handle 0x0022, DMI type 9, 17 bytes
System Slot Information
    Designation: PCIE2
    Type: x16 PCI Express
    Current Usage: In Use
    Length: Long
    ID: 2
    Characteristics:
        3.3 V is provided
        Opening is shared
        PME signal is supported
    Bus Address: 0000:01:00.0

Handle 0x0023, DMI type 9, 17 bytes
System Slot Information
    Designation: PCI1
    Type: 32-bit PCI
    Current Usage: Available
    Length: Short
    ID: 1
    Characteristics:
        3.3 V is provided
        Opening is shared
        PME signal is supported
    Bus Address: 0000:00:00.0

Handle 0x0024, DMI type 13, 22 bytes
BIOS Language Information
    Language Description Format: Long
    Installable Languages: 1
        en|US|iso8859-1
    Currently Installed Language: en|US|iso8859-1

Handle 0x0025, DMI type 16, 15 bytes
Physical Memory Array
    Location: System Board Or Motherboard
    Use: System Memory
    Error Correction Type: None
    Maximum Capacity: 8 GB
    Error Information Handle: Not Provided
    Number Of Devices: 2

Handle 0x0026, DMI type 19, 15 bytes
Memory Array Mapped Address
    Starting Address: 0x00000000000
    Ending Address: 0x0021FFFFFFF
    Range Size: 8704 MB
    Physical Array Handle: 0x0025
    Partition Width: 1

Handle 0x0027, DMI type 17, 28 bytes
Memory Device
    Array Handle: 0x0025
    Error Information Handle: Not Provided
    Total Width: 64 bits
    Data Width: 64 bits
    Size: 4096 MB
    Form Factor: DIMM
    Set: None
    Locator: DIMM1
    Bank Locator: BANK0
    Type: Other
    Type Detail: Synchronous
    Speed: 1333 MHz
    Manufacturer: Manufacturer00
    Serial Number: 980D0202
    Asset Tag: AssetTagNum0
    Part Number: Team-Elite-1333   
    Rank: Unknown

Handle 0x0028, DMI type 20, 19 bytes
Memory Device Mapped Address
    Starting Address: 0x00000000000
    Ending Address: 0x000FFFFFFFF
    Range Size: 4 GB
    Physical Device Handle: 0x0027
    Memory Array Mapped Address Handle: 0x0026
    Partition Row Position: 1

Handle 0x0029, DMI type 17, 28 bytes
Memory Device
    Array Handle: 0x0025
    Error Information Handle: Not Provided
    Total Width: 64 bits
    Data Width: 64 bits
    Size: 4096 MB
    Form Factor: DIMM
    Set: None
    Locator: DIMM2
    Bank Locator: BANK1
    Type: Other
    Type Detail: Synchronous
    Speed: 1333 MHz
    Manufacturer: Manufacturer01
    Serial Number: 9A0D0202
    Asset Tag: AssetTagNum1
    Part Number: Team-Elite-1333   
    Rank: Unknown

Handle 0x002A, DMI type 20, 19 bytes
Memory Device Mapped Address
    Starting Address: 0x00100000000
    Ending Address: 0x001FFFFFFFF
    Range Size: 4 GB
    Physical Device Handle: 0x0029
    Memory Array Mapped Address Handle: 0x0026
    Partition Row Position: 1

Handle 0x002B, DMI type 32, 20 bytes
System Boot Information
    Status: No errors detected

Handle 0x002C, DMI type 41, 11 bytes
Onboard Device
    Reference Designation:   To Be Filled By O.E.M.
    Type: Video
    Status: Enabled
    Type Instance: 0

Handle 0x002D, DMI type 127, 4 bytes
End Of Table

It says that the max speed is 4200 MHz and the current speed is 4200 MHz. It might be that I have to set my own turbo clocks since I've overclocked it.

OlliC commented 6 years ago

I would try to enable AMD Cool'n'Quiet and see if it loads the right cpufreq modules then. If not you may have to load them manually. 'acpi-cpufreq' seems to be the right one.

Here someone mentioned he had to turn of auto-overclocking in the bios for the module to load. Maybe this helps... https://bbs.archlinux.org/viewtopic.php?id=172555

alexsmithfanning commented 6 years ago

Sorry for the long wait. I've been away from my computer for a few days.

modprobe acpi-cpufreq results in no output, and no module loaded (lsmod doesn't list acpi-cpufreq as a loaded module). modprobe --verbose --force acpi-cpufreq results in the exact same thing. dmesg shows nothing out of the ordinary. So much for verbosity.

Am I missing a package or something? I have cpufrequtils and libcpufreq0 installed. I noticed that there are several ACPI packages that aren't installed, but those seem to be related to development and not with support.

I don't have automatic overclocking enabled in my BIOS, as I did the overclocking myself.

So from what I can tell at this point, my CPU is basically running with no governor. Enabling AMD Cool'n'Quiet would just reduce my performance when not running gamemode as it would decrease clock speed when the power is not needed.

I'm thinking that during build (or even before building, like as soon as you run bootstrap.sh) it should check for ability to control governors, or check for overclocking, or something. I'm not sure.

mdiluz commented 6 years ago

I'm thinking that during build (or even before building, like as soon as you run bootstrap.sh) it should check for ability to control governors, or check for overclocking, or something. I'm not sure.

Yup, I'm thinking this might be a good idea - just to make it clearer that the governor part isn't going to work for you.

alexsmithfanning commented 6 years ago

I could probably figure out a way to implement it into bootstrap.sh, but that's as far as my abilities go.

alexsmithfanning commented 6 years ago

Probably something like this:

if [ ! -f "/sys/devices/system/cpu/cpu0/cpufreq/scaling_governor" ]; then

    printf "\nERROR: CPUFreq scaling governor device file was not found.\n\n"
    printf "This probably means that you have disabled processor scheduling features in your BIOS. See README.md for more information.\n"

    # In the future, when gamemode can handle the lack of governor control on its own
    printf "\nGAMEMODE's governor control feature will not work (scripts should still work). Would you like to continue anyway [Y/N]? "
    read REPLY
    case "${REPLY}" in
        "y" | "Y" )
        echo "Continuing WITHOUT governor control!"
                # Add something to the build options that tells the build system
                # that governor control is not available.
        ;;

        * )
                echo "Build has FAILED because the user chose to quit."
            exit 1
        ;;
    esac

fi
mdiluz commented 6 years ago

I've added checks in code to allow GameMode to still work, for scripts etc. in c9db0b2b8aa5a6e5c08ba3ff77a5123ce1bfe80d, and I've cleaned up and committed your addition to the bootstrap.sh script in 1592ada697f890e06a724cabb7ed8a18db5fd103.

Hopefully both of those should help, and maybe help the user in #47 too :)

Let me know if they work. I'd note that c9db0b2b8aa5a6e5c08ba3ff77a5123ce1bfe80d will still cause some error spam, so it may be beneficial later to make GameMode only check for governor support once.

mdiluz commented 6 years ago

I think with those commits and the additions to the Readme, this should be resolved in so much as it's now much more obvious what the problem will be, and GameMode will still function (partially).

The README section For those with Overclocked CPUs has information as well.

@alexsmithfanning are you happy to close this off?

alexsmithfanning commented 6 years ago

I'm happy with the changes. Thank you!

addeps3 commented 3 years ago

Im on the same CPU, does anyone know if scaling can be enabled?

Edit: I solved this by setting the BIOS to default, which I believe set AMD Cool n Quiet back to enabled, and now cpufreq directory exists.

ksepulvedag commented 2 years ago

Im on the same CPU, does anyone know if scaling can be enabled?

Edit: I solved this by setting the BIOS to default, which I believe set AMD Cool n Quiet back to enabled, and now cpufreq directory exists.

I just set AMD Cool n Quiet=Enable in my BIOS and that worked for me. (AMD Ryzen 5 3600) Thank you!