You are not logged in.

#1 2014-05-23 04:37:27

hariskar
Member
From: Greece/Kavala
Registered: 2012-10-16
Posts: 185

Better hardware, kernel loads slower..

I changed motherboard, processor and graphic card. I kept all other the same. I put the hard disks with arch linux installation. Now kernel loads slower and userspace also (a little):

Old:
Startup finished in 1.597s (kernel) + 1.020s (userspace) = 2.618s
New:
Startup finished in 2.929s (kernel) + 1.212s (userspace) = 4.142s

Any idea why this is happening? Would it help if I reinstalled?

Old CPU: INTEL CORE 2 DUO E8400 3.00 GHZ LGA775 - 1333 FSB - BOX
New CPU: INTEL CORE I3-4330 3.50GHZ LGA1150 - BOX

Offline

#2 2014-05-23 07:24:56

m1st3rkr3p
Member
Registered: 2014-02-21
Posts: 34

Re: Better hardware, kernel loads slower..

have you recompiled the kernel?? since the drivers are inside the kernel.

Offline

#3 2014-05-23 07:46:20

hariskar
Member
From: Greece/Kavala
Registered: 2012-10-16
Posts: 185

Re: Better hardware, kernel loads slower..

I have done mkinitcpio -p linux

Last edited by hariskar (2014-05-23 07:56:54)

Offline

#4 2014-05-23 08:06:08

gedgon
Member
From: Poland
Registered: 2011-01-27
Posts: 95

Re: Better hardware, kernel loads slower..

If you are using Linux 3.14, intel_pstate is (one of) the reason(s). Please compare with linux-lts or with

intel_pstate=disable

in your bootloader kernel line.

Offline

#5 2014-05-23 08:19:35

hariskar
Member
From: Greece/Kavala
Registered: 2012-10-16
Posts: 185

Re: Better hardware, kernel loads slower..

OK, I will try it.
Previous motherboard was ASUS P5K-VM
and th new one is ASUS H81M-PLUS RETAIL

Thank you

Offline

#6 2014-05-23 14:16:09

hariskar
Member
From: Greece/Kavala
Registered: 2012-10-16
Posts: 185

Re: Better hardware, kernel loads slower..

gedgon wrote:

If you are using Linux 3.14, intel_pstate is (one of) the reason(s). Please compare with linux-lts or with

intel_pstate=disable

in your bootloader kernel line.

I tried

intel_pstate=disable

but did not work.
Is it possible that some modules that were loading fo previous hardware are still loading plus the new ones and that is why the load time is longer?

Is mkinitcpio -p linux enough for recompile the kernel?

Offline

#7 2014-05-23 14:35:21

xvzf
Member
Registered: 2014-05-18
Posts: 86

Re: Better hardware, kernel loads slower..

Have you set up anything in /etc/modprobe.d ?

Offline

#8 2014-05-23 14:39:10

hariskar
Member
From: Greece/Kavala
Registered: 2012-10-16
Posts: 185

Re: Better hardware, kernel loads slower..

Only blacklist.conf
with
blacklist battery

inside

Offline

#9 2014-05-23 19:40:41

xvzf
Member
Registered: 2014-05-18
Posts: 86

Re: Better hardware, kernel loads slower..

Hm,
I don't think this matters.. can you post the output of systemd-analyse?

Offline

#10 2014-05-24 08:29:22

hariskar
Member
From: Greece/Kavala
Registered: 2012-10-16
Posts: 185

Re: Better hardware, kernel loads slower..

Old

$ systemd-analyze
Startup finished in 1.597s (kernel) + 1.020s (userspace) = 2.618s
[hk@arch ~]$ systemd-analyze blame
           233ms systemd-logind.service
           157ms alsa-restore.service
           138ms home-hk-sdb.mount
            89ms dhcpcd.service
            89ms systemd-user-sessions.service
            76ms systemd-fsck@dev-disk-by\x2duuid-774f3bda\x2dc223\x2d47f8\x2db18e\x2df18a9f85d7cc.service
            69ms udisks2.service
            68ms systemd-remount-fs.service
            48ms polkit.service
            37ms systemd-update-utmp.service
            30ms dev-hugepages.mount
            29ms systemd-udev-trigger.service
            24ms dev-mqueue.mount
            19ms user@1000.service
            16ms systemd-sysctl.service
            15ms systemd-journal-flush.service
            15ms systemd-vconsole-setup.service
            15ms sys-kernel-config.mount
            15ms tmp.mount
            13ms systemd-tmpfiles-setup-dev.service
            10ms sys-kernel-debug.mount
            10ms home.mount
             8ms systemd-tmpfiles-setup.service
             6ms systemd-udevd.service
             6ms systemd-random-seed.service
             5ms dev-disk-by\x2duuid-e1eb2e2d\x2d13d3\x2d4930\x2dab01\x2d832b0ab36b48.swap
             5ms kmod-static-nodes.service

Now with new and better hardware

$ systemd-analyze
Startup finished in 2.906s (kernel) + 1.146s (userspace) = 4.053s
$ systemd-analyze blame
           326ms alsa-restore.service
           205ms home-hk-sdb.mount
           166ms dhcpcd.service
           158ms systemd-logind.service
           153ms systemd-user-sessions.service
            82ms systemd-udev-trigger.service
            70ms polkit.service
            66ms systemd-fsck@dev-disk-by\x2duuid-774f3bda\x2dc223\x2d47f8\x2db18e\x2df18a9f85d7cc.service
            58ms systemd-remount-fs.service
            57ms dev-hugepages.mount
            57ms systemd-vconsole-setup.service
            56ms systemd-sysctl.service
            52ms dev-mqueue.mount
            51ms dev-disk-by\x2duuid-e1eb2e2d\x2d13d3\x2d4930\x2dab01\x2d832b0ab36b48.swap
            49ms udisks2.service
            46ms kmod-static-nodes.service
            43ms systemd-update-utmp.service
            40ms systemd-backlight@backlight:eeepc-wmi.service
            37ms sys-kernel-config.mount
            35ms sys-kernel-debug.mount
            30ms user@1000.service
            25ms systemd-journal-flush.service
            22ms home.mount
             9ms systemd-tmpfiles-setup-dev.service
             8ms tmp.mount
             4ms systemd-tmpfiles-setup.service
             4ms systemd-random-seed.service
             2ms systemd-udevd.service
             1ms sys-fs-fuse-connections.mount

Last edited by hariskar (2014-05-24 08:29:58)

Offline

#11 2014-05-24 08:59:26

ooo
Member
Registered: 2013-04-10
Posts: 1,638

Re: Better hardware, kernel loads slower..

since this is about kernel startup times, investigating dmesg output would be more beneficial.
it is timestamped, so you should be able to determine where kernel is spending most time when booting.

post the output here, preferably from both systems, if you can't figure it out

Offline

#12 2014-05-24 09:37:16

hariskar
Member
From: Greece/Kavala
Registered: 2012-10-16
Posts: 185

Re: Better hardware, kernel loads slower..

This is dmesg output of new system. Unfortunately I don't have a dmesg of old system, I suppose old dmesg outputs are not stored somewhere.
Thank you

dmesg
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 3.14.4-1-ARCH (nobody@var-lib-archbuild-testing-i686-tobias) (gcc version 4.9.0 20140507 (prerelease) (GCC) ) #1 SMP PREEMPT Tue May 13 16:44:54 CEST 2014
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009ebff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009ec00-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000ca54cfff] usable
[    0.000000] BIOS-e820: [mem 0x00000000ca54d000-0x00000000ca553fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000ca554000-0x00000000ca99efff] usable
[    0.000000] BIOS-e820: [mem 0x00000000ca99f000-0x00000000cadc2fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000cadc3000-0x00000000dd7dafff] usable
[    0.000000] BIOS-e820: [mem 0x00000000dd7db000-0x00000000dd9e0fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000dd9e1000-0x00000000dd9f6fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000dd9f7000-0x00000000ddf2ffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000ddf30000-0x00000000deffefff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000defff000-0x00000000deffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000021effffff] usable
[    0.000000] Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel!
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: ASUS All Series/H81M-PLUS, BIOS 0805 02/20/2014
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0xdf000 max_arch_pfn = 0x100000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-CFFFF write-protect
[    0.000000]   D0000-E7FFF uncachable
[    0.000000]   E8000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 0000000000 mask 7E00000000 write-back
[    0.000000]   1 base 0200000000 mask 7FF0000000 write-back
[    0.000000]   2 base 0210000000 mask 7FF8000000 write-back
[    0.000000]   3 base 0218000000 mask 7FFC000000 write-back
[    0.000000]   4 base 021C000000 mask 7FFE000000 write-back
[    0.000000]   5 base 021E000000 mask 7FFF000000 write-back
[    0.000000]   6 base 00E0000000 mask 7FE0000000 uncachable
[    0.000000]   7 disabled
[    0.000000]   8 disabled
[    0.000000]   9 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] e820: update [mem 0xe0000000-0xffffffff] usable ==> reserved
[    0.000000] found SMP MP-table at [mem 0x000fd780-0x000fd78f] mapped at [c00fd780]
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] initial memory mapped: [mem 0x00000000-0x01bfffff]
[    0.000000] Base memory trampoline at [c009a000] 9a000 size 16384
[    0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[    0.000000]  [mem 0x00000000-0x000fffff] page 4k
[    0.000000] init_memory_mapping: [mem 0x37000000-0x373fffff]
[    0.000000]  [mem 0x37000000-0x373fffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x30000000-0x36ffffff]
[    0.000000]  [mem 0x30000000-0x36ffffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x00100000-0x2fffffff]
[    0.000000]  [mem 0x00100000-0x003fffff] page 4k
[    0.000000]  [mem 0x00400000-0x2fffffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x37400000-0x377fdfff]
[    0.000000]  [mem 0x37400000-0x377fdfff] page 4k
[    0.000000] BRK [0x01798000, 0x01798fff] PGTABLE
[    0.000000] RAMDISK: [mem 0x379c2000-0x37cd8fff]
[    0.000000] Allocated new RAMDISK: [mem 0x374e7000-0x377fdc5f]
[    0.000000] Move RAMDISK from [mem 0x379c2000-0x37cd8c5f] to [mem 0x374e7000-0x377fdc5f]
[    0.000000] ACPI: RSDP 000f0490 000024 (v02 ALASKA)
[    0.000000] ACPI: XSDT dd9e5080 000074 (v01 ALASKA    A M I 01072009 AMI  00010013)
[    0.000000] ACPI: FACP dd9f1cf8 00010C (v05 ALASKA    A M I 01072009 AMI  00010013)
[    0.000000] ACPI: DSDT dd9e5188 00CB70 (v02 ALASKA    A M I 00000031 INTL 20091112)
[    0.000000] ACPI: FACS ddf2e080 000040
[    0.000000] ACPI: APIC dd9f1e08 000072 (v03 ALASKA    A M I 01072009 AMI  00010013)
[    0.000000] ACPI: FPDT dd9f1e80 000044 (v01 ALASKA    A M I 01072009 AMI  00010013)
[    0.000000] ACPI: LPIT dd9f1ec8 00005C (v01 ALASKA    A M I 00000000 AMI. 00000005)
[    0.000000] ACPI: SSDT dd9f1f28 000539 (v01  PmRef  Cpu0Ist 00003000 INTL 20091112)
[    0.000000] ACPI: SSDT dd9f2468 000AD8 (v01  PmRef    CpuPm 00003000 INTL 20091112)
[    0.000000] ACPI: MCFG dd9f2f40 00003C (v01 ALASKA    A M I 01072009 MSFT 00000097)
[    0.000000] ACPI: HPET dd9f2f80 000038 (v01 ALASKA    A M I 01072009 AMI. 00000005)
[    0.000000] ACPI: SSDT dd9f2fb8 000495 (v01 IdeRef IdeTable 00001000 INTL 20091112)
[    0.000000] ACPI: SSDT dd9f3450 0034E1 (v01 SaSsdt  SaSsdt  00003000 INTL 20091112)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] 2680MB HIGHMEM available.
[    0.000000] 887MB LOWMEM available.
[    0.000000]   mapped low ram: 0 - 377fe000
[    0.000000]   low ram: 0 - 377fe000
[    0.000000] BRK [0x01799000, 0x01799fff] PGTABLE
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x00001000-0x00ffffff]
[    0.000000]   Normal   [mem 0x01000000-0x377fdfff]
[    0.000000]   HighMem  [mem 0x377fe000-0xdeffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x00001000-0x0009dfff]
[    0.000000]   node   0: [mem 0x00100000-0xca54cfff]
[    0.000000]   node   0: [mem 0xca554000-0xca99efff]
[    0.000000]   node   0: [mem 0xcadc3000-0xdd7dafff]
[    0.000000]   node   0: [mem 0xdefff000-0xdeffffff]
[    0.000000] On node 0 totalpages: 906062
[    0.000000] free_area_init_node: node 0, pgdat c15fc600, node_mem_map f5907020
[    0.000000]   DMA zone: 32 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 3997 pages, LIFO batch:0
[    0.000000]   Normal zone: 1744 pages used for memmap
[    0.000000]   Normal zone: 223230 pages, LIFO batch:31
[    0.000000]   HighMem zone: 5361 pages used for memmap
[    0.000000]   HighMem zone: 678835 pages, LIFO batch:31
[    0.000000] Using APIC driver default
[    0.000000] ACPI: PM-Timer IO Port: 0x1808
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x08] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[    0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x0009efff]
[    0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
[    0.000000] e820: [mem 0xdf000000-0xf7ffffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] PERCPU: Embedded 14 pages/cpu @f58bd000 s33792 r0 d23552 u57344
[    0.000000] pcpu-alloc: s33792 r0 d23552 u57344 alloc=14*4096
[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 904286
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=71bfd1e3-3353-4745-9c0a-200ed8ca5512 rw quiet
[    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Initializing CPU#0
[    0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
[    0.000000] allocated 7307256 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    0.000000] Initializing HighMem for node 0 (000377fe:000df000)
[    0.000000] Initializing Movable for node 0 (00000000:00000000)
[    0.000000] Memory: 3576448K/3624248K available (4445K kernel code, 470K rwdata, 1280K rodata, 568K init, 956K bss, 47800K reserved, 2715340K highmem)
[    0.000000] virtual kernel memory layout:
    fixmap  : 0xfff15000 - 0xfffff000   ( 936 kB)
    pkmap   : 0xff800000 - 0xffc00000   (4096 kB)
    vmalloc : 0xf7ffe000 - 0xff7fe000   ( 120 MB)
    lowmem  : 0xc0000000 - 0xf77fe000   ( 887 MB)
      .init : 0xc160f000 - 0xc169d000   ( 568 kB)
      .data : 0xc1457b12 - 0xc160eb40   (1756 kB)
      .text : 0xc1000000 - 0xc1457b12   (4446 kB)
[    0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] Preemptible hierarchical RCU implementation.
[    0.000000] 	RCU dyntick-idle grace-period acceleration is enabled.
[    0.000000] 	Dump stacks of tasks blocking RCU-preempt GP.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=4.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[    0.000000] NR_IRQS:2304 nr_irqs:712 16
[    0.000000] CPU 0 irqstacks, hard=f4c08000 soft=f4c0a000
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 3500.205 MHz processor
[    0.000018] Calibrating delay loop (skipped), value calculated using timer frequency.. 7003.09 BogoMIPS (lpj=11667350)
[    0.000019] pid_max: default: 32768 minimum: 301
[    0.000022] ACPI: Core revision 20131218
[    0.004770] ACPI: All ACPI Tables successfully acquired
[    0.004923] Security Framework initialized
[    0.004928] Yama: becoming mindful.
[    0.004934] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
[    0.004935] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
[    0.005036] Initializing cgroup subsys memory
[    0.005039] Initializing cgroup subsys devices
[    0.005040] Initializing cgroup subsys freezer
[    0.005041] Initializing cgroup subsys net_cls
[    0.005042] Initializing cgroup subsys blkio
[    0.005057] CPU: Physical Processor ID: 0
[    0.005058] CPU: Processor Core ID: 0
[    0.005061] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.006510] mce: CPU supports 7 MCE banks
[    0.006518] CPU0: Thermal monitoring enabled (TM1)
[    0.006526] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 1024
Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 1024, 1GB 4
tlb_flushall_shift: 6
[    0.006605] Freeing SMP alternatives memory: 16K (c169d000 - c16a1000)
[    0.007026] ftrace: allocating 18913 entries in 37 pages
[    0.011660] Enabling APIC mode:  Flat.  Using 1 I/O APICs
[    0.012027] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.045080] smpboot: CPU0: Intel(R) Core(TM) i3-4330 CPU @ 3.50GHz (fam: 06, model: 3c, stepping: 03)
[    0.045083] TSC deadline timer enabled
[    0.045088] Performance Events: PEBS fmt2+, 16-deep LBR, Haswell events, full-width counters, Intel PMU driver.
[    0.045092] ... version:                3
[    0.045093] ... bit width:              48
[    0.045093] ... generic registers:      4
[    0.045094] ... value mask:             0000ffffffffffff
[    0.045095] ... max period:             0000ffffffffffff
[    0.045095] ... fixed-purpose events:   3
[    0.045096] ... event mask:             000000070000000f
[    0.068574] CPU 1 irqstacks, hard=f4cf4000 soft=f4cf6000
[    0.068575] x86: Booting SMP configuration:
[    0.068576] .... node  #0, CPUs:      #1
[    0.078924] Initializing CPU#1
[    0.083256] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.089946] CPU 2 irqstacks, hard=f4d80000 soft=f4d82000
[    0.089947]  #2
[    0.100321] Initializing CPU#2
[    0.111320] CPU 3 irqstacks, hard=f4de4000 soft=f4de6000
[    0.111321]  #3
[    0.121668] Initializing CPU#3
[    0.125975] x86: Booted up 1 node, 4 CPUs
[    0.125977] smpboot: Total of 4 processors activated (28012.37 BogoMIPS)
[    0.128909] devtmpfs: initialized
[    0.129019] PM: Registering ACPI NVS region [mem 0xca54d000-0xca553fff] (28672 bytes)
[    0.129020] PM: Registering ACPI NVS region [mem 0xdd9f7000-0xddf2ffff] (5476352 bytes)
[    0.129528] pinctrl core: initialized pinctrl subsystem
[    0.129555] RTC time:  9:25:38, date: 05/24/14
[    0.129576] NET: Registered protocol family 16
[    0.129619] cpuidle: using governor ladder
[    0.129619] cpuidle: using governor menu
[    0.129641] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.129642] ACPI: bus type PCI registered
[    0.129644] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.129682] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[    0.129684] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
[    0.129684] PCI: Using MMCONFIG for extended config space
[    0.129685] PCI: Using configuration type 1 for base access
[    0.130079] bio: create slab <bio-0> at 0
[    0.130129] ACPI: Added _OSI(Module Device)
[    0.130130] ACPI: Added _OSI(Processor Device)
[    0.130131] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.130132] ACPI: Added _OSI(Processor Aggregator Device)
[    0.132495] ACPI: Executed 1 blocks of module-level executable AML code
[    0.133971] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    0.146071] ACPI: SSDT dd9d6c18 0003D3 (v01  PmRef  Cpu0Cst 00003001 INTL 20091112)
[    0.146356] ACPI: Dynamic OEM Table Load:
[    0.146357] ACPI: SSDT   (null) 0003D3 (v01  PmRef  Cpu0Cst 00003001 INTL 20091112)
[    0.159507] ACPI: SSDT dd9d6618 0005AA (v01  PmRef    ApIst 00003000 INTL 20091112)
[    0.159834] ACPI: Dynamic OEM Table Load:
[    0.159835] ACPI: SSDT   (null) 0005AA (v01  PmRef    ApIst 00003000 INTL 20091112)
[    0.172781] ACPI: SSDT dd9d5d98 000119 (v01  PmRef    ApCst 00003000 INTL 20091112)
[    0.173064] ACPI: Dynamic OEM Table Load:
[    0.173065] ACPI: SSDT   (null) 000119 (v01  PmRef    ApCst 00003000 INTL 20091112)
[    0.186425] ACPI: Interpreter enabled
[    0.186431] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20131218/hwxface-580)
[    0.186434] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20131218/hwxface-580)
[    0.186443] ACPI: (supports S0 S3 S4 S5)
[    0.186444] ACPI: Using IOAPIC for interrupt routing
[    0.186460] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.186568] ACPI: No dock devices found.
[    0.191664] ACPI: Power Resource [FN00] (off)
[    0.191712] ACPI: Power Resource [FN01] (off)
[    0.191758] ACPI: Power Resource [FN02] (off)
[    0.191804] ACPI: Power Resource [FN03] (off)
[    0.191848] ACPI: Power Resource [FN04] (off)
[    0.192278] ACPI: \_PR_.CPU4: failed to get CPU APIC ID.
[    0.192280] ACPI: \_PR_.CPU5: failed to get CPU APIC ID.
[    0.192281] ACPI: \_PR_.CPU6: failed to get CPU APIC ID.
[    0.192283] ACPI: \_PR_.CPU7: failed to get CPU APIC ID.
[    0.192398] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
[    0.192401] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.192631] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
[    0.192945] PCI host bridge to bus 0000:00
[    0.192947] pci_bus 0000:00: root bus resource [bus 00-3e]
[    0.192948] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
[    0.192949] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
[    0.192950] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[    0.192951] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
[    0.192952] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
[    0.192953] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
[    0.192954] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
[    0.192955] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
[    0.192956] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff]
[    0.192957] pci_bus 0000:00: root bus resource [mem 0xe0000000-0xfeafffff]
[    0.192962] pci 0000:00:00.0: [8086:0c00] type 00 class 0x060000
[    0.193013] pci 0000:00:01.0: [8086:0c01] type 01 class 0x060400
[    0.193038] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.193065] pci 0000:00:01.0: System wakeup disabled by ACPI
[    0.193108] pci 0000:00:16.0: [8086:8c3a] type 00 class 0x078000
[    0.193125] pci 0000:00:16.0: reg 0x10: [mem 0xf7205000-0xf720500f 64bit]
[    0.193177] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.193229] pci 0000:00:1a.0: [8086:8c2d] type 00 class 0x0c0320
[    0.193246] pci 0000:00:1a.0: reg 0x10: [mem 0xf7203000-0xf72033ff]
[    0.193320] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    0.193350] pci 0000:00:1a.0: System wakeup disabled by ACPI
[    0.193374] pci 0000:00:1c.0: [8086:8c10] type 01 class 0x060400
[    0.193428] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.193451] pci 0000:00:1c.0: System wakeup disabled by ACPI
[    0.193474] pci 0000:00:1c.1: [8086:8c12] type 01 class 0x060400
[    0.193528] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.193551] pci 0000:00:1c.1: System wakeup disabled by ACPI
[    0.193573] pci 0000:00:1c.2: [8086:8c14] type 01 class 0x060400
[    0.193627] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[    0.193650] pci 0000:00:1c.2: System wakeup disabled by ACPI
[    0.193681] pci 0000:00:1d.0: [8086:8c26] type 00 class 0x0c0320
[    0.193697] pci 0000:00:1d.0: reg 0x10: [mem 0xf7202000-0xf72023ff]
[    0.193771] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.193801] pci 0000:00:1d.0: System wakeup disabled by ACPI
[    0.193826] pci 0000:00:1f.0: [8086:8c5c] type 00 class 0x060100
[    0.193949] pci 0000:00:1f.2: [8086:8c00] type 00 class 0x01018f
[    0.193959] pci 0000:00:1f.2: reg 0x10: [io  0xf0d0-0xf0d7]
[    0.193964] pci 0000:00:1f.2: reg 0x14: [io  0xf0c0-0xf0c3]
[    0.193970] pci 0000:00:1f.2: reg 0x18: [io  0xf0b0-0xf0b7]
[    0.193975] pci 0000:00:1f.2: reg 0x1c: [io  0xf0a0-0xf0a3]
[    0.193981] pci 0000:00:1f.2: reg 0x20: [io  0xf090-0xf09f]
[    0.193986] pci 0000:00:1f.2: reg 0x24: [io  0xf080-0xf08f]
[    0.194038] pci 0000:00:1f.3: [8086:8c22] type 00 class 0x0c0500
[    0.194049] pci 0000:00:1f.3: reg 0x10: [mem 0xf7201000-0xf72010ff 64bit]
[    0.194065] pci 0000:00:1f.3: reg 0x20: [io  0xf000-0xf01f]
[    0.194112] pci 0000:00:1f.5: [8086:8c08] type 00 class 0x010185
[    0.194121] pci 0000:00:1f.5: reg 0x10: [io  0xf070-0xf077]
[    0.194127] pci 0000:00:1f.5: reg 0x14: [io  0xf060-0xf063]
[    0.194132] pci 0000:00:1f.5: reg 0x18: [io  0xf050-0xf057]
[    0.194138] pci 0000:00:1f.5: reg 0x1c: [io  0xf040-0xf043]
[    0.194143] pci 0000:00:1f.5: reg 0x20: [io  0xf030-0xf03f]
[    0.194149] pci 0000:00:1f.5: reg 0x24: [io  0xf020-0xf02f]
[    0.194228] pci 0000:01:00.0: [10de:1284] type 00 class 0x030000
[    0.194234] pci 0000:01:00.0: reg 0x10: [mem 0xf6000000-0xf6ffffff]
[    0.194241] pci 0000:01:00.0: reg 0x14: [mem 0xe8000000-0xefffffff 64bit pref]
[    0.194248] pci 0000:01:00.0: reg 0x1c: [mem 0xf0000000-0xf1ffffff 64bit pref]
[    0.194252] pci 0000:01:00.0: reg 0x24: [io  0xe000-0xe07f]
[    0.194257] pci 0000:01:00.0: reg 0x30: [mem 0xf7000000-0xf707ffff pref]
[    0.194289] pci 0000:01:00.0: System wakeup disabled by ACPI
[    0.194313] pci 0000:01:00.1: [10de:0e0f] type 00 class 0x040300
[    0.194320] pci 0000:01:00.1: reg 0x10: [mem 0xf7080000-0xf7083fff]
[    0.199469] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.199470] pci 0000:00:01.0:   bridge window [io  0xe000-0xefff]
[    0.199472] pci 0000:00:01.0:   bridge window [mem 0xf6000000-0xf70fffff]
[    0.199474] pci 0000:00:01.0:   bridge window [mem 0xe8000000-0xf1ffffff 64bit pref]
[    0.199513] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.199586] pci 0000:03:00.0: [10b5:8111] type 01 class 0x060400
[    0.199729] pci 0000:03:00.0: System wakeup disabled by ACPI
[    0.206151] pci 0000:00:1c.1: PCI bridge to [bus 03-04]
[    0.206154] pci 0000:00:1c.1:   bridge window [io  0xd000-0xdfff]
[    0.206239] pci 0000:04:04.0: [13f6:8788] type 00 class 0x040100
[    0.206269] pci 0000:04:04.0: reg 0x10: [io  0xd000-0xd0ff]
[    0.206412] pci 0000:04:04.0: supports D1 D2
[    0.206491] pci 0000:03:00.0: PCI bridge to [bus 04]
[    0.206496] pci 0000:03:00.0:   bridge window [io  0xd000-0xdfff]
[    0.206575] pci 0000:05:00.0: [10ec:8168] type 00 class 0x020000
[    0.206590] pci 0000:05:00.0: reg 0x10: [io  0xc000-0xc0ff]
[    0.206616] pci 0000:05:00.0: reg 0x18: [mem 0xf7100000-0xf7100fff 64bit]
[    0.206632] pci 0000:05:00.0: reg 0x20: [mem 0xf2100000-0xf2103fff 64bit pref]
[    0.206717] pci 0000:05:00.0: supports D1 D2
[    0.206718] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.206745] pci 0000:05:00.0: System wakeup disabled by ACPI
[    0.212833] pci 0000:00:1c.2: PCI bridge to [bus 05]
[    0.212835] pci 0000:00:1c.2:   bridge window [io  0xc000-0xcfff]
[    0.212837] pci 0000:00:1c.2:   bridge window [mem 0xf7100000-0xf71fffff]
[    0.212841] pci 0000:00:1c.2:   bridge window [mem 0xf2100000-0xf21fffff 64bit pref]
[    0.212859] pci_bus 0000:00: on NUMA node 0
[    0.212860] acpi PNP0A08:00: Disabling ASPM (FADT indicates it is unsupported)
[    0.213079] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12 14 15)
[    0.213107] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 *10 11 12 14 15)
[    0.213133] ACPI: PCI Interrupt Link [LNKC] (IRQs *3 4 5 6 7 10 11 12 14 15)
[    0.213159] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 10 11 12 14 *15)
[    0.213185] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 *5 6 7 10 11 12 14 15)
[    0.213211] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    0.213237] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    0.213263] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 *7 10 11 12 14 15)
[    0.213357] ACPI: Enabled 5 GPEs in block 00 to 3F
[    0.213396] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
[    0.213398] vgaarb: loaded
[    0.213398] vgaarb: bridge control possible 0000:01:00.0
[    0.213410] PCI: Using ACPI for IRQ routing
[    0.214529] PCI: pci_cache_line_size set to 64 bytes
[    0.214565] e820: reserve RAM buffer [mem 0x0009ec00-0x0009ffff]
[    0.214566] e820: reserve RAM buffer [mem 0xca54d000-0xcbffffff]
[    0.214567] e820: reserve RAM buffer [mem 0xca99f000-0xcbffffff]
[    0.214568] e820: reserve RAM buffer [mem 0xdd7db000-0xdfffffff]
[    0.214569] e820: reserve RAM buffer [mem 0xdf000000-0xdfffffff]
[    0.214618] NetLabel: Initializing
[    0.214619] NetLabel:  domain hash size = 128
[    0.214620] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.214627] NetLabel:  unlabeled traffic allowed by default
[    0.214643] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.214646] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    0.216664] Switched to clocksource hpet
[    0.219590] pnp: PnP ACPI init
[    0.219599] ACPI: bus type PNP registered
[    0.219642] system 00:00: [mem 0xfed40000-0xfed44fff] has been reserved
[    0.219644] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.219650] pnp 00:01: [dma 4]
[    0.219660] pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
[    0.219673] pnp 00:02: Plug and Play ACPI device, IDs INT0800 (active)
[    0.219721] pnp 00:03: Plug and Play ACPI device, IDs PNP0103 (active)
[    0.219747] pnp 00:04: Plug and Play ACPI device, IDs PNP0c04 (active)
[    0.219812] system 00:05: [io  0x0680-0x069f] has been reserved
[    0.219814] system 00:05: [io  0xffff] has been reserved
[    0.219815] system 00:05: [io  0xffff] has been reserved
[    0.219816] system 00:05: [io  0xffff] has been reserved
[    0.219817] system 00:05: [io  0x1c00-0x1cfe] has been reserved
[    0.219818] system 00:05: [io  0x1d00-0x1dfe] has been reserved
[    0.219819] system 00:05: [io  0x1e00-0x1efe] has been reserved
[    0.219820] system 00:05: [io  0x1f00-0x1ffe] has been reserved
[    0.219821] system 00:05: [io  0x1800-0x18fe] could not be reserved
[    0.219822] system 00:05: [io  0x164e-0x164f] has been reserved
[    0.219824] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.219838] pnp 00:06: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.219863] system 00:07: [io  0x1854-0x1857] has been reserved
[    0.219864] system 00:07: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    0.219907] system 00:08: [io  0x0290-0x029f] has been reserved
[    0.219909] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.219936] system 00:09: [io  0x04d0-0x04d1] has been reserved
[    0.219937] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.219962] pnp 00:0a: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
[    0.220199] system 00:0b: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.220201] system 00:0b: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.220202] system 00:0b: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.220203] system 00:0b: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.220204] system 00:0b: [mem 0xf8000000-0xfbffffff] has been reserved
[    0.220205] system 00:0b: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.220206] system 00:0b: [mem 0xfed90000-0xfed93fff] has been reserved
[    0.220207] system 00:0b: [mem 0xfed45000-0xfed8ffff] has been reserved
[    0.220208] system 00:0b: [mem 0xff000000-0xffffffff] has been reserved
[    0.220210] system 00:0b: [mem 0xfee00000-0xfeefffff] could not be reserved
[    0.220211] system 00:0b: [mem 0xf7fdf000-0xf7fdffff] has been reserved
[    0.220213] system 00:0b: [mem 0xf7fe0000-0xf7feffff] has been reserved
[    0.220214] system 00:0b: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.220331] pnp: PnP ACPI: found 12 devices
[    0.220332] ACPI: bus type PNP unregistered
[    0.256073] pci 0000:00:1c.0: bridge window [io  0x1000-0x0fff] to [bus 02] add_size 1000
[    0.256075] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000
[    0.256076] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff] to [bus 02] add_size 200000
[    0.256092] pci 0000:00:1c.0: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 200000
[    0.256093] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
[    0.256094] pci 0000:00:1c.0: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
[    0.256098] pci 0000:00:1c.0: BAR 14: assigned [mem 0xe0000000-0xe01fffff]
[    0.256100] pci 0000:00:1c.0: BAR 15: assigned [mem 0xe0200000-0xe03fffff 64bit pref]
[    0.256102] pci 0000:00:1c.0: BAR 13: assigned [io  0x2000-0x2fff]
[    0.256103] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.256105] pci 0000:00:01.0:   bridge window [io  0xe000-0xefff]
[    0.256107] pci 0000:00:01.0:   bridge window [mem 0xf6000000-0xf70fffff]
[    0.256109] pci 0000:00:01.0:   bridge window [mem 0xe8000000-0xf1ffffff 64bit pref]
[    0.256111] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.256113] pci 0000:00:1c.0:   bridge window [io  0x2000-0x2fff]
[    0.256116] pci 0000:00:1c.0:   bridge window [mem 0xe0000000-0xe01fffff]
[    0.256118] pci 0000:00:1c.0:   bridge window [mem 0xe0200000-0xe03fffff 64bit pref]
[    0.256122] pci 0000:03:00.0: PCI bridge to [bus 04]
[    0.256125] pci 0000:03:00.0:   bridge window [io  0xd000-0xdfff]
[    0.256145] pci 0000:00:1c.1: PCI bridge to [bus 03-04]
[    0.256146] pci 0000:00:1c.1:   bridge window [io  0xd000-0xdfff]
[    0.256154] pci 0000:00:1c.2: PCI bridge to [bus 05]
[    0.256155] pci 0000:00:1c.2:   bridge window [io  0xc000-0xcfff]
[    0.256158] pci 0000:00:1c.2:   bridge window [mem 0xf7100000-0xf71fffff]
[    0.256161] pci 0000:00:1c.2:   bridge window [mem 0xf2100000-0xf21fffff 64bit pref]
[    0.256165] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    0.256166] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    0.256167] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    0.256168] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000d3fff]
[    0.256169] pci_bus 0000:00: resource 8 [mem 0x000d4000-0x000d7fff]
[    0.256170] pci_bus 0000:00: resource 9 [mem 0x000d8000-0x000dbfff]
[    0.256171] pci_bus 0000:00: resource 10 [mem 0x000dc000-0x000dffff]
[    0.256172] pci_bus 0000:00: resource 11 [mem 0x000e0000-0x000e3fff]
[    0.256173] pci_bus 0000:00: resource 12 [mem 0x000e4000-0x000e7fff]
[    0.256174] pci_bus 0000:00: resource 13 [mem 0xe0000000-0xfeafffff]
[    0.256175] pci_bus 0000:01: resource 0 [io  0xe000-0xefff]
[    0.256176] pci_bus 0000:01: resource 1 [mem 0xf6000000-0xf70fffff]
[    0.256177] pci_bus 0000:01: resource 2 [mem 0xe8000000-0xf1ffffff 64bit pref]
[    0.256178] pci_bus 0000:02: resource 0 [io  0x2000-0x2fff]
[    0.256179] pci_bus 0000:02: resource 1 [mem 0xe0000000-0xe01fffff]
[    0.256180] pci_bus 0000:02: resource 2 [mem 0xe0200000-0xe03fffff 64bit pref]
[    0.256181] pci_bus 0000:03: resource 0 [io  0xd000-0xdfff]
[    0.256182] pci_bus 0000:04: resource 0 [io  0xd000-0xdfff]
[    0.256183] pci_bus 0000:05: resource 0 [io  0xc000-0xcfff]
[    0.256184] pci_bus 0000:05: resource 1 [mem 0xf7100000-0xf71fffff]
[    0.256185] pci_bus 0000:05: resource 2 [mem 0xf2100000-0xf21fffff 64bit pref]
[    0.256199] NET: Registered protocol family 2
[    0.256283] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
[    0.256290] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
[    0.256298] TCP: Hash tables configured (established 8192 bind 8192)
[    0.256304] TCP: reno registered
[    0.256305] UDP hash table entries: 512 (order: 2, 16384 bytes)
[    0.256308] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[    0.256331] NET: Registered protocol family 1
[    0.256513] pci 0000:01:00.0: Boot video device
[    0.256526] PCI: CLS 64 bytes, default 64
[    0.256551] Unpacking initramfs...
[    0.295687] Freeing initrd memory: 3164K (f74e7000 - f77fe000)
[    0.295793] RAPL PMU detected, hw unit 2^-14 Joules, API unit is 2^-32 Joules, 3 fixed counters 655360 ms ovfl timer
[    0.295813] apm: BIOS not found.
[    0.295829] Scanning for low memory corruption every 60 seconds
[    0.295986] futex hash table entries: 1024 (order: 4, 65536 bytes)
[    0.304210] bounce pool size: 64 pages
[    0.304215] HugeTLB registered 4 MB page size, pre-allocated 0 pages
[    0.304963] zbud: loaded
[    0.305013] VFS: Disk quotas dquot_6.5.2
[    0.305036] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    0.305114] msgmni has been set to 1688
[    0.305149] Key type big_key registered
[    0.305256] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    0.305277] io scheduler noop registered
[    0.305278] io scheduler deadline registered
[    0.305295] io scheduler cfq registered (default)
[    0.305395] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
[    0.305475] pcieport 0000:00:1c.0: irq 41 for MSI/MSI-X
[    0.305564] pcieport 0000:00:1c.1: irq 42 for MSI/MSI-X
[    0.305645] pcieport 0000:00:1c.2: irq 43 for MSI/MSI-X
[    0.305700] pcieport 0000:00:01.0: Signaling PME through PCIe PME interrupt
[    0.305701] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
[    0.305702] pci 0000:01:00.1: Signaling PME through PCIe PME interrupt
[    0.305704] pcie_pme 0000:00:01.0:pcie01: service driver pcie_pme loaded
[    0.305715] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
[    0.305717] pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded
[    0.305727] pcieport 0000:00:1c.1: Signaling PME through PCIe PME interrupt
[    0.305728] pci 0000:03:00.0: Signaling PME through PCIe PME interrupt
[    0.305729] pci 0000:04:04.0: Signaling PME through PCIe PME interrupt
[    0.305731] pcie_pme 0000:00:1c.1:pcie01: service driver pcie_pme loaded
[    0.305741] pcieport 0000:00:1c.2: Signaling PME through PCIe PME interrupt
[    0.305742] pci 0000:05:00.0: Signaling PME through PCIe PME interrupt
[    0.305744] pcie_pme 0000:00:1c.2:pcie01: service driver pcie_pme loaded
[    0.305751] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.305775] pciehp 0000:00:1c.0:pcie04: Slot #0 AttnBtn- AttnInd- PwrInd- PwrCtrl- MRL- Interlock- NoCompl+ LLActRep+
[    0.305794] pciehp 0000:00:1c.0:pcie04: service driver pciehp loaded
[    0.305797] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.305813] vesafb: mode is 1280x1024x32, linelength=5120, pages=0
[    0.305813] vesafb: scrolling: redraw
[    0.305814] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    0.305972] vesafb: framebuffer at 0xf1000000, mapped to 0xf8080000, using 5120k, total 5120k
[    0.371508] Console: switching to colour frame buffer device 160x64
[    0.436997] fb0: VESA VGA frame buffer device
[    0.437006] intel_idle: MWAIT substates: 0x42120
[    0.437007] intel_idle: v0.4 model 0x3C
[    0.437008] intel_idle: lapic_timer_reliable_states 0xffffffff
[    0.437101] GHES: HEST is not enabled!
[    0.437108] isapnp: Scanning for PnP cards...
[    0.749147] isapnp: No Plug & Play device found
[    0.749171] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[    0.749494] rtc_cmos 00:06: RTC can wake from S4
[    0.749588] rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
[    0.749610] rtc_cmos 00:06: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[    0.749623] Intel P-state driver initializing.
[    0.749628] Intel pstate controlling: cpu 0
[    0.749637] Intel pstate controlling: cpu 1
[    0.749645] Intel pstate controlling: cpu 2
[    0.749655] Intel pstate controlling: cpu 3
[    0.749668] ledtrig-cpu: registered to indicate activity on CPUs
[    0.749730] TCP: cubic registered
[    0.749785] NET: Registered protocol family 10
[    0.749901] NET: Registered protocol family 17
[    0.749988] Using IPI No-Shortcut mode
[    0.750050] registered taskstats version 1
[    0.750397]   Magic number: 14:125:425
[    0.750457] rtc_cmos 00:06: setting system clock to 2014-05-24 09:25:39 UTC (1400923539)
[    0.750493] PM: Hibernation image not present or could not be loaded.
[    0.750575] Freeing unused kernel memory: 568K (c160f000 - c169d000)
[    0.750594] Write protecting the kernel text: 4448k
[    0.750610] Write protecting the kernel read-only data: 1284k
[    0.754150] random: systemd-tmpfile urandom read with 0 bits of entropy available
[    0.754894] systemd-udevd[58]: starting version 212
[    0.762279] i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
[    0.762282] i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
[    0.762929] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.770875] ACPI: bus type USB registered
[    0.770898] usbcore: registered new interface driver usbfs
[    0.770907] usbcore: registered new interface driver hub
[    0.770940] usbcore: registered new device driver usb
[    0.771406] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.771583] ehci-pci: EHCI PCI platform driver
[    0.771667] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    0.771670] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    0.771680] ehci-pci 0000:00:1a.0: debug port 2
[    0.771750] SCSI subsystem initialized
[    0.772328] libata version 3.00 loaded.
[    0.775584] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[    0.775594] ehci-pci 0000:00:1a.0: irq 20, io mem 0xf7203000
[    0.784171] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    0.784286] hub 1-0:1.0: USB hub found
[    0.784290] hub 1-0:1.0: 2 ports detected
[    0.784434] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    0.784437] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    0.784446] ehci-pci 0000:00:1d.0: debug port 2
[    0.788359] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[    0.788369] ehci-pci 0000:00:1d.0: irq 23, io mem 0xf7202000
[    0.797534] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    0.797703] hub 2-0:1.0: USB hub found
[    0.797708] hub 2-0:1.0: 2 ports detected
[    0.797843] ata_piix 0000:00:1f.2: version 2.13
[    0.797933] ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
[    0.811468] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
[    0.952080] scsi0 : ata_piix
[    0.952357] scsi1 : ata_piix
[    0.952472] ata1: SATA max UDMA/133 cmd 0xf0d0 ctl 0xf0c0 bmdma 0xf090 irq 19
[    0.952480] ata2: SATA max UDMA/133 cmd 0xf0b0 ctl 0xf0a0 bmdma 0xf098 irq 19
[    0.952711] ata_piix 0000:00:1f.5: MAP [ P0 -- P1 -- ]
[    0.953392] scsi2 : ata_piix
[    0.953596] scsi3 : ata_piix
[    0.953699] ata3: SATA max UDMA/133 cmd 0xf070 ctl 0xf060 bmdma 0xf030 irq 19
[    0.953705] ata4: SATA max UDMA/133 cmd 0xf050 ctl 0xf040 bmdma 0xf038 irq 19
[    1.091399] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    1.215648] hub 1-1:1.0: USB hub found
[    1.215811] hub 1-1:1.0: 4 ports detected
[    1.298310] tsc: Refined TSC clocksource calibration: 3499.997 MHz
[    1.321734] usb 2-1: new high-speed USB device number 2 using ehci-pci
[    1.425235] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    1.425356] ata4: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    1.432065] ata4.00: ATAPI: TSSTcorp CDDVDW SH-224DB, SB01, max UDMA/100
[    1.432387] ata3.00: ATA-9: WDC WD40EZRX-00SPEB0, 80.00A80, max UDMA/133
[    1.432396] ata3.00: 7814037168 sectors, multi 16: LBA48 NCQ (depth 0/32)
[    1.438899] ata3.00: configured for UDMA/133
[    1.445408] ata4.00: configured for UDMA/100
[    1.446281] hub 2-1:1.0: USB hub found
[    1.446396] hub 2-1:1.0: 6 ports detected
[    1.712429] usb 2-1.6: new low-speed USB device number 3 using ehci-pci
[    2.296447] ata1.01: failed to resume link (SControl 0)
[    2.296526] ata2.01: failed to resume link (SControl 0)
[    2.299903] Switched to clocksource tsc
[    2.450069] ata2.00: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    2.450089] ata2.01: SATA link down (SStatus 0 SControl 0)
[    2.450237] ata1.00: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    2.450254] ata1.01: SATA link down (SStatus 0 SControl 0)
[    2.457152] ata1.00: ATA-8: Corsair Neutron GTX SSD, M311, max UDMA/133
[    2.457162] ata1.00: 937703088 sectors, multi 16: LBA48 NCQ (depth 0/32)
[    2.457257] ata2.00: ATA-8: ST31000528AS, CC38, max UDMA/133
[    2.457265] ata2.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 0/32)
[    2.463674] ata1.00: configured for UDMA/133
[    2.463985] scsi 0:0:0:0: Direct-Access     ATA      Corsair Neutron  M311 PQ: 0 ANSI: 5
[    2.470493] ata2.00: configured for UDMA/133
[    2.470785] scsi 1:0:0:0: Direct-Access     ATA      ST31000528AS     CC38 PQ: 0 ANSI: 5
[    2.471308] scsi 2:0:0:0: Direct-Access     ATA      WDC WD40EZRX-00S 80.0 PQ: 0 ANSI: 5
[    2.473652] scsi 3:0:0:0: CD-ROM            TSSTcorp CDDVDW SH-224DB  SB01 PQ: 0 ANSI: 5
[    2.483249] sd 0:0:0:0: [sda] 937703088 512-byte logical blocks: (480 GB/447 GiB)
[    2.483290] sd 1:0:0:0: [sdb] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[    2.483390] sd 2:0:0:0: [sdc] 7814037168 512-byte logical blocks: (4.00 TB/3.63 TiB)
[    2.483398] sd 2:0:0:0: [sdc] 4096-byte physical blocks
[    2.483445] sd 1:0:0:0: [sdb] Write Protect is off
[    2.483452] sd 0:0:0:0: [sda] Write Protect is off
[    2.483458] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    2.483466] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    2.483512] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.483526] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.483549] sd 2:0:0:0: [sdc] Write Protect is off
[    2.483557] sd 2:0:0:0: [sdc] Mode Sense: 00 3a 00 00
[    2.483614] sd 2:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.485683]  sda: sda1 sda2 sda3 < sda5 sda6 sda7 sda8 >
[    2.486964] sd 0:0:0:0: [sda] Attached SCSI disk
[    2.492826] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
[    2.492832] cdrom: Uniform CD-ROM driver Revision: 3.20
[    2.493122] sr 3:0:0:0: Attached scsi CD-ROM sr0
[    2.505132]  sdc: unknown partition table
[    2.505618] sd 2:0:0:0: [sdc] Attached SCSI disk
[    2.514799]  sdb: sdb1
[    2.515634] sd 1:0:0:0: [sdb] Attached SCSI disk
[    2.856407] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null)
[    2.930564] systemd[1]: systemd 212 running in system mode. (+PAM -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ +SECCOMP -APPARMOR)
[    2.930947] systemd[1]: Detected architecture 'x86'.
[    2.931316] systemd[1]: Set hostname to <arch>.
[    3.021719] systemd[1]: Cannot add dependency job for unit display-manager.service, ignoring: Unit display-manager.service failed to load: No such file or directory.
[    3.022591] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
[    3.022710] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    3.022737] systemd[1]: Starting Remote File Systems.
[    3.022759] systemd[1]: Reached target Remote File Systems.
[    3.022780] systemd[1]: Starting Encrypted Volumes.
[    3.022797] systemd[1]: Reached target Encrypted Volumes.
[    3.022837] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
[    3.023000] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    3.023029] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
[    3.023086] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[    3.023105] systemd[1]: Starting Paths.
[    3.023123] systemd[1]: Reached target Paths.
[    3.023144] systemd[1]: Expecting device dev-disk-by\x2duuid-e1eb2e2d\x2d13d3\x2d4930\x2dab01\x2d832b0ab36b48.device...
[    3.023164] systemd[1]: Expecting device dev-disk-by\x2duuid-2c03b285\x2d7c3d\x2d4951\x2d9f50\x2d47f0b7c36246.device...
[    3.023182] systemd[1]: Expecting device dev-disk-by\x2duuid-774f3bda\x2dc223\x2d47f8\x2db18e\x2df18a9f85d7cc.device...
[    3.023200] systemd[1]: Starting Root Slice.
[    3.033742] systemd[1]: Created slice Root Slice.
[    3.033769] systemd[1]: Starting Delayed Shutdown Socket.
[    3.033829] systemd[1]: Listening on Delayed Shutdown Socket.
[    3.033848] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
[    3.033891] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[    3.033911] systemd[1]: Starting Device-mapper event daemon FIFOs.
[    3.033954] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[    3.033977] systemd[1]: Starting udev Control Socket.
[    3.034013] systemd[1]: Listening on udev Control Socket.
[    3.034035] systemd[1]: Starting udev Kernel Socket.
[    3.034067] systemd[1]: Listening on udev Kernel Socket.
[    3.034086] systemd[1]: Starting User and Session Slice.
[    3.034379] systemd[1]: Created slice User and Session Slice.
[    3.034402] systemd[1]: Starting LVM2 metadata daemon socket.
[    3.034450] systemd[1]: Listening on LVM2 metadata daemon socket.
[    3.034472] systemd[1]: Starting Journal Socket.
[    3.034552] systemd[1]: Listening on Journal Socket.
[    3.034581] systemd[1]: Starting System Slice.
[    3.034846] systemd[1]: Created slice System Slice.
[    3.034878] systemd[1]: Started File System Check on Root Device.
[    3.034895] systemd[1]: Starting system-systemd\x2dfsck.slice.
[    3.035171] systemd[1]: Created slice system-systemd\x2dfsck.slice.
[    3.035195] systemd[1]: Starting Remount Root and Kernel File Systems...
[    3.035822] systemd[1]: Mounting Huge Pages File System...
[    3.037729] systemd[1]: Started Set Up Additional Binary Formats.
[    3.037768] systemd[1]: Starting udev Coldplug all Devices...
[    3.040064] systemd[1]: Starting Apply Kernel Variables...
[    3.040917] systemd[1]: Mounting POSIX Message Queue File System...
[    3.041581] systemd[1]: Starting Setup Virtual Console...
[    3.048665] systemd[1]: Starting Create list of required static device nodes for the current kernel...
[    3.051806] systemd[1]: Started Load Kernel Modules.
[    3.051906] systemd[1]: Mounting Configuration File System...
[    3.052866] systemd[1]: Mounting Debug File System...
[    3.053789] systemd[1]: Starting system-getty.slice.
[    3.054603] systemd[1]: Created slice system-getty.slice.
[    3.054701] systemd[1]: Mounted FUSE Control File System.
[    3.054748] systemd[1]: Starting Journal Service...
[    3.056244] systemd[1]: Started Journal Service.
[    3.098069] EXT4-fs (sda5): re-mounted. Opts: discard
[    3.170352] systemd-udevd[161]: starting version 212
[    3.234382] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1
[    3.234395] ACPI: Power Button [PWRB]
[    3.234862] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[    3.234871] ACPI: Power Button [PWRF]
[    3.247477] wmi: Mapper loaded
[    3.264719] thermal LNXTHERM:00: registered as thermal_zone0
[    3.264722] ACPI: Thermal Zone [TZ00] (28 C)
[    3.265005] thermal LNXTHERM:01: registered as thermal_zone1
[    3.265008] ACPI: Thermal Zone [TZ01] (30 C)
[    3.268371] mei_me 0000:00:16.0: irq 44 for MSI/MSI-X
[    3.275719] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    3.285351] ACPI Warning: SystemIO range 0x0000f000-0x0000f01f conflicts with OpRegion 0x0000f000-0x0000f00f (\_SB_.PCI0.SBUS.SMBI) (20131218/utaddress-258)
[    3.285356] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    3.298572] ACPI Warning: SystemIO range 0x00001828-0x0000182f conflicts with OpRegion 0x00001800-0x0000187f (\PMIO) (20131218/utaddress-258)
[    3.298576] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    3.298579] ACPI Warning: SystemIO range 0x00001c30-0x00001c3f conflicts with OpRegion 0x00001c00-0x00001c3f (\GPRL) (20131218/utaddress-258)
[    3.298581] ACPI Warning: SystemIO range 0x00001c30-0x00001c3f conflicts with OpRegion 0x00001c00-0x00001fff (\GPR_) (20131218/utaddress-258)
[    3.298583] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    3.298584] ACPI Warning: SystemIO range 0x00001c00-0x00001c2f conflicts with OpRegion 0x00001c00-0x00001c3f (\GPRL) (20131218/utaddress-258)
[    3.298586] ACPI Warning: SystemIO range 0x00001c00-0x00001c2f conflicts with OpRegion 0x00001c00-0x00001fff (\GPR_) (20131218/utaddress-258)
[    3.298588] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    3.298589] lpc_ich: Resource conflict(s) found affecting gpio_ich
[    3.304044] ACPI: Fan [FAN0] (off)
[    3.304075] ACPI: Fan [FAN1] (off)
[    3.304101] ACPI: Fan [FAN2] (off)
[    3.304127] ACPI: Fan [FAN3] (off)
[    3.304152] ACPI: Fan [FAN4] (off)
[    3.305338] input: PC Speaker as /devices/platform/pcspkr/input/input3
[    3.309573] random: nonblocking pool is initialized
[    3.313544] microcode: CPU0 sig=0x306c3, pf=0x2, revision=0x12
[    3.321364] microcode: CPU1 sig=0x306c3, pf=0x2, revision=0x12
[    3.321378] microcode: CPU2 sig=0x306c3, pf=0x2, revision=0x12
[    3.321388] microcode: CPU3 sig=0x306c3, pf=0x2, revision=0x12
[    3.321426] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    3.329611] Linux agpgart interface v0.103
[    3.337248] [drm] Initialized drm 1.1.0 20060810
[    3.337267] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    3.337284] r8169 0000:05:00.0: can't disable ASPM; OS doesn't have ASPM control
[    3.342158] r8169 0000:05:00.0: irq 45 for MSI/MSI-X
[    3.342481] r8169 0000:05:00.0 eth0: RTL8168g/8111g at 0xf8f2c000, e0:3f:49:b0:03:2d, XID 0c000800 IRQ 45
[    3.342487] r8169 0000:05:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
[    3.369949] kvm: disabled by bios
[    3.375929] hda_intel: Disabling MSI
[    3.375935] hda-intel 0000:01:00.1: Handle VGA-switcheroo audio client
[    3.392090] iTCO_vendor_support: vendor-support=0
[    3.392975] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
[    3.393002] iTCO_wdt: Found a Lynx Point TCO device (Version=2, TCOBASE=0x1860)
[    3.393238] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[    3.395230] asus_wmi: ASUS WMI generic driver loaded
[    3.396000] asus_wmi: Initialization: 0x0
[    3.396022] asus_wmi: BIOS WMI version: 0.9
[    3.396065] asus_wmi: SFUN value: 0x0
[    3.396432] input: Eee PC WMI hotkeys as /devices/platform/eeepc-wmi/input/input4
[    3.401764] asus_wmi: Disabling ACPI video driver
[    3.408549] systemd-udevd[174]: renamed network interface eth0 to enp5s0
[    3.442673] nvidia: module license 'NVIDIA' taints kernel.
[    3.442676] Disabling lock debugging due to kernel taint
[    3.447537] Adding 5853180k swap on /dev/sda6.  Priority:-1 extents:1 across:5853180k SSFS
[    3.448110] vgaarb: device changed decodes: PCI:0000:01:00.0,olddecodes=io+mem,decodes=none:owns=none
[    3.448226] [drm] Initialized nvidia-drm 0.0.0 20130102 for 0000:01:00.0 on minor 0
[    3.448230] NVRM: loading NVIDIA UNIX x86 Kernel Module  337.19  Tue Apr 29 19:10:22 PDT 2014
[    3.538139] EXT4-fs (sda7): mounted filesystem with ordered data mode. Opts: discard
[    3.711917] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input6
[    3.712055] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input5
[    3.777511] EXT4-fs (sdc): mounted filesystem with ordered data mode. Opts: data=ordered
[    3.788792] systemd-journald[143]: Received request to flush runtime journal from PID 1
[    4.015997] nct6775: Enabling hardware monitor logical device mappings.
[    4.016017] nct6775: Found NCT6791D or compatible chip at 0x2e:0x290
[    4.061087] r8169 0000:05:00.0 enp5s0: link down
[    4.061117] r8169 0000:05:00.0 enp5s0: link down
[    4.061150] IPv6: ADDRCONF(NETDEV_UP): enp5s0: link is not ready
[    6.691181] r8169 0000:05:00.0 enp5s0: link up
[    6.691196] IPv6: ADDRCONF(NETDEV_CHANGE): enp5s0: link becomes ready
[    6.893985] hidraw: raw HID events driver (C) Jiri Kosina
[    6.903539] usbcore: registered new interface driver usbhid
[    6.903545] usbhid: USB HID core driver
[    6.922073] input: Microsoft Microsoft Basic Optical Mouse as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.6/2-1.6:1.0/0003:045E:0084.0001/input/input7
[    6.922353] hid-generic 0003:045E:0084.0001: input,hidraw0: USB HID v1.11 Mouse [Microsoft Microsoft Basic Optical Mouse] on usb-0000:00:1d.0-1.6/input0
[    6.926972] mousedev: PS/2 mouse device common for all mice
[    9.620881] nvidia 0000:01:00.0: irq 46 for MSI/MSI-X
[   10.219824] NVRM: Your system is not currently configured to drive a VGA console
[   10.219829] NVRM: on the primary VGA device. The NVIDIA Linux graphics driver
[   10.219832] NVRM: requires the use of a text-mode VGA console. Use of other console
[   10.219835] NVRM: drivers including, but not limited to, vesafb, may result in
[   10.219837] NVRM: corruption and stability problems, and is not supported.
[   11.353691] fuse init (API version 7.22)

Offline

#13 2014-05-25 18:41:29

xvzf
Member
Registered: 2014-05-18
Posts: 86

Re: Better hardware, kernel loads slower..

Hm,
I can't see any significant problems in the dmesg log, the basic kernel boots in around 10 seconds.

What makes me suspicious are the systemd startup times, they're up to two times longer than with your old CPU

Can you tell us wich file system you are using?
Are you using any optimized packages or have you recompiled some?

Cheers

Offline

#14 2014-05-25 19:36:55

hariskar
Member
From: Greece/Kavala
Registered: 2012-10-16
Posts: 185

Re: Better hardware, kernel loads slower..

Thank you xvzf,

The filesystem is ext4.
I don't use any optimized or recompiled packages.

Offline

#15 2014-05-26 19:25:24

xvzf
Member
Registered: 2014-05-18
Posts: 86

Re: Better hardware, kernel loads slower..

Hello,

I can't explain why it takes so long.. Kernel boot time is 3 seconds, not 10, I'm sorry.

Can you test the disk performance with hdparm -Tt /dev/sd*  on both, the new and the old system?

I don't think the SATA ports on your new mainboard, but just to eleminate this potential bottleneck.

Wich RAM are you using? Still the same or have you changed anything?

Offline

#16 2014-05-26 21:16:51

hariskar
Member
From: Greece/Kavala
Registered: 2012-10-16
Posts: 185

Re: Better hardware, kernel loads slower..

Bew system:

$ sudo hdparm -Tt /dev/sda
/dev/sda:
 Timing cached reads:   20876 MB in  2.00 seconds = 10450.53 MB/sec
 Timing buffered disk reads: 1192 MB in  3.00 seconds = 397.27 MB/sec

I can not test the old anymore because it does not exist.
New RAM CORSAIR CMZ8GX3M2A1600C9 VENGEANCE 8GB (2X4GB) PC3-12800 DUAL CHANNEL KIT

I think I had 4GB in previous system.
Should I do something with SATA ports? The disk is on the quickest port 6GB/sec.

Thank you!

Offline

Board footer

Powered by FluxBB