Linux下可以在/proc/cpuinfo中看到每个cpu的详细信息。
但是对于双核的cpu,在cpuinfo中会看到两个cpu。常常会让人误以为是两个单核的cpu。
其实应该通过Physical Processor ID来区分单核和双核。而Physical Processor ID可以从cpuinfo或者dmesg中找到
例如
root@debian:~:0# dmesg | grep CPU | grep ID
CPU0: Initial APIC ID: 0, Physical Processor ID: 0
CPU1: Initial APIC ID: 1, Physical Processor ID: 0
CPU2: Initial APIC ID: 6, Physical Processor ID: 3
CPU3: Initial APIC ID: 7, Physical Processor ID: 3
可以看到,这台机器有两个双核的CPU,ID分别是0和3。


于 2014-05-02 19:12:31发表:
我的主板上有两颗 Intel Xeon E5645 用:
at 0
cat /proc/cpuinfo |grep "physical id"|sort|uniq |wc -l
2
用:dmesg | grep CPU | grep ID 只能看到一个CPU0 如何解释?
好像是CPU0只能是CPU0的通道,我的这个通道上挂了两个物理cpu
dmesg:
----
bill@ccc2:~$ dmesg
[ 0.000000] Initializing cgroup subsys cpuset
[ 0.000000] Initializing cgroup subsys cpu
[ 0.000000] Linux version 3.2.0-60-generic (buildd@toyol) (gcc version 4.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu5) ) #91-Ubuntu SMP Wed Feb 19 03:54:44 UTC 2014 (Ubuntu 3.2.0-60.91-generic 3.2.55)
[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-3.2.0-60-generic root=UUID=d999c7f0-dd64-431c-8f58-264d078a5800 ro crashkernel=384M-2G:64M,2G-:128M
[ 0.000000] KERNEL supported cpus:
[ 0.000000] Intel GenuineIntel
[ 0.000000] AMD AuthenticAMD
[ 0.000000] Centaur CentaurHauls
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: 0000000000000000 - 0000000000099400 (usable)
[ 0.000000] BIOS-e820: 0000000000099400 - 00000000000a0000 (reserved)
[ 0.000000] BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
[ 0.000000] BIOS-e820: 0000000000100000 - 00000000bf790000 (usable)
[ 0.000000] BIOS-e820: 00000000bf790000 - 00000000bf79e000 (ACPI data)
[ 0.000000] BIOS-e820: 00000000bf79e000 - 00000000bf7d0000 (ACPI NVS)
[ 0.000000] BIOS-e820: 00000000bf7d0000 - 00000000bf7e0000 (reserved)
[ 0.000000] BIOS-e820: 00000000bf7ec000 - 00000000c0000000 (reserved)
[ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
[ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
[ 0.000000] BIOS-e820: 00000000ffa00000 - 0000000100000000 (reserved)
[ 0.000000] BIOS-e820: 0000000100000000 - 0000000440000000 (usable)
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] SMBIOS 2.6 present.
[ 0.000000] DMI: empty empty/S7002, BIOS 'V0.05 ' 04/20/2010
[ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
[ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
[ 0.000000] No AGP bridge found
[ 0.000000] last_pfn = 0x440000 max_arch_pfn = 0x400000000
[ 0.000000] MTRR default type: uncachable
[ 0.000000] MTRR fixed ranges enabled:
[ 0.000000] 00000-9FFFF write-back
[ 0.000000] A0000-BFFFF uncachable
[ 0.000000] C0000-CFFFF write-protect
[ 0.000000] D0000-DFFFF uncachable
[ 0.000000] E0000-E3FFF write-protect
[ 0.000000] E4000-E7FFF write-through
[ 0.000000] E8000-EBFFF write-protect
[ 0.000000] EC000-EFFFF write-through
[ 0.000000] F0000-FFFFF write-protect
[ 0.000000] MTRR variable ranges enabled:
[ 0.000000] 0 base 0000000000 mask FC00000000 write-back
[ 0.000000] 1 base 0400000000 mask FFC0000000 write-back
[ 0.000000] 2 base 00C0000000 mask FFC0000000 uncachable
[ 0.000000] 3 base 00BF800000 mask FFFF800000 uncachable
[ 0.000000] 4 disabled
[ 0.000000] 5 disabled
[ 0.000000] 6 disabled
[ 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] original variable MTRRs
[ 0.000000] reg 0, base: 0GB, range: 16GB, type WB
[ 0.000000] reg 1, base: 16GB, range: 1GB, type WB
[ 0.000000] reg 2, base: 3GB, range: 1GB, type UC
[ 0.000000] reg 3, base: 3064MB, range: 8MB, type UC
[ 0.000000] total RAM covered: 16376M
[ 0.000000] Found optimal setting for mtrr clean up
[ 0.000000] gran_size: 64K chunk_size: 16M num_reg: 6 lose cover RAM: 0G
[ 0.000000] New variable MTRRs
[ 0.000000] reg 0, base: 0GB, range: 2GB, type WB
[ 0.000000] reg 1, base: 2GB, range: 1GB, type WB
[ 0.000000] reg 2, base: 3064MB, range: 8MB, type UC
[ 0.000000] reg 3, base: 4GB, range: 4GB, type WB
[ 0.000000] reg 4, base: 8GB, range: 8GB, type WB
[ 0.000000] reg 5, base: 16GB, range: 1GB, type WB
[ 0.000000] e820 update range: 00000000bf800000 - 0000000100000000 (usable) ==> (reserved)
[ 0.000000] last_pfn = 0xbf790 max_arch_pfn = 0x400000000
[ 0.000000] found SMP MP-table at [ffff8800000ff780] ff780
[ 0.000000] initial memory mapped : 0 - 20000000
[ 0.000000] Base memory trampoline at [ffff880000094000] 94000 size 20480
[ 0.000000] Using GB pages for direct mapping
[ 0.000000] init_memory_mapping: 0000000000000000-00000000bf790000
[ 0.000000] 0000000000 - 0080000000 page 1G
[ 0.000000] 0080000000 - 00bf600000 page 2M
[ 0.000000] 00bf600000 - 00bf790000 page 4k
[ 0.000000] kernel direct mapping tables up to bf790000 @ 1fffd000-20000000
[ 0.000000] init_memory_mapping: 0000000100000000-0000000440000000
[ 0.000000] 0100000000 - 0440000000 page 1G
[ 0.000000] kernel direct mapping tables up to 440000000 @ bf78f000-bf790000
[ 0.000000] RAMDISK: 364be000 - 37257000
[ 0.000000] Reserving 128MB of memory at 736MB for crashkernel (System RAM: 17408MB)
[ 0.000000] ACPI: RSDP 00000000000fa1b0 00024 (v02 ACPIAM)
[ 0.000000] ACPI: XSDT 00000000bf790100 00064 (v01 042010 XSDT1019 20100420 MSFT 00000097)
[ 0.000000] ACPI: FACP 00000000bf790290 000F4 (v04 042010 FACP1019 20100420 MSFT 00000097)
[ 0.000000] ACPI: DSDT 00000000bf7904f0 0568D (v02 7001_ 7001_001 00000001 INTL 20051117)
[ 0.000000] ACPI: FACS 00000000bf79e000 00040
[ 0.000000] ACPI: APIC 00000000bf790390 0011E (v02 042010 APIC1019 20100420 MSFT 00000097)
[ 0.000000] ACPI: MCFG 00000000bf7904b0 0003C (v01 042010 OEMMCFG 20100420 MSFT 00000097)
[ 0.000000] ACPI: OEMB 00000000bf79e040 0007A (v01 042010 OEMB1019 20100420 MSFT 00000097)
[ 0.000000] ACPI: HPET 00000000bf79a4f0 00038 (v01 042010 OEMHPET 20100420 MSFT 00000097)
[ 0.000000] ACPI: SRAT 00000000bf79a530 00250 (v02 042010 OEMSRAT 00000001 INTL 00000001)
[ 0.000000] ACPI: DMAR 00000000bf79e0c0 00138 (v01 AMI OEMDMAR 00000001 MSFT 00000097)
[ 0.000000] ACPI: SSDT 00000000bf7a4020 00363 (v01 DpgPmm CpuPm 00000012 INTL 20051117)
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] SRAT: PXM 0 -> APIC 0x00 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x02 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x04 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x10 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x12 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x14 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x01 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x03 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x05 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x11 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x13 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x15 -> Node 0
[ 0.000000] SRAT: PXM 1 -> APIC 0x20 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x22 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x24 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x30 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x32 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x34 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x21 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x23 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x25 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x31 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x33 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x35 -> Node 1
[ 0.000000] SRAT: Node 0 PXM 0 0-a0000
[ 0.000000] SRAT: Node 0 PXM 0 100000-c0000000
[ 0.000000] SRAT: Node 0 PXM 0 100000000-240000000
[ 0.000000] SRAT: Node 1 PXM 1 240000000-440000000
[ 0.000000] NUMA: Node 0 [0,a0000) + [100000,c0000000) -> [0,c0000000)
[ 0.000000] NUMA: Node 0 [0,c0000000) + [100000000,240000000) -> [0,240000000)
[ 0.000000] Initmem setup node 0 0000000000000000-0000000240000000
[ 0.000000] NODE_DATA [000000023fffb000 - 000000023fffffff]
[ 0.000000] Initmem setup node 1 0000000240000000-0000000440000000
[ 0.000000] NODE_DATA [000000043fffb000 - 000000043fffffff]
[ 0.000000] [ffffea0000000000-ffffea0008ffffff] PMD -> [ffff880237e00000-ffff88023fdfffff] on node 0
[ 0.000000] [ffffea0009000000-ffffea0010ffffff] PMD -> [ffff880437600000-ffff88043f5fffff] on node 1
[ 0.000000] Zone PFN ranges:
[ 0.000000] DMA 0x00000010 -> 0x00001000
[ 0.000000] DMA32 0x00001000 -> 0x00100000
[ 0.000000] Normal 0x00100000 -> 0x00440000
[ 0.000000] Movable zone start PFN for each node
[ 0.000000] early_node_map[4] active PFN ranges
[ 0.000000] 0: 0x00000010 -> 0x00000099
[ 0.000000] 0: 0x00000100 -> 0x000bf790
[ 0.000000] 0: 0x00100000 -> 0x00240000
[ 0.000000] 1: 0x00240000 -> 0x00440000
[ 0.000000] On node 0 totalpages: 2094873
[ 0.000000] DMA zone: 64 pages used for memmap
[ 0.000000] DMA zone: 5 pages reserved
[ 0.000000] DMA zone: 3908 pages, LIFO batch:0
[ 0.000000] DMA32 zone: 16320 pages used for memmap
[ 0.000000] DMA32 zone: 763856 pages, LIFO batch:31
[ 0.000000] Normal zone: 20480 pages used for memmap
[ 0.000000] Normal zone: 1290240 pages, LIFO batch:31
[ 0.000000] On node 1 totalpages: 2097152
[ 0.000000] Normal zone: 32768 pages used for memmap
[ 0.000000] Normal zone: 2064384 pages, LIFO batch:31
[ 0.000000] ACPI: PM-Timer IO Port: 0x808
[ 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[0x04] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x10] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x12] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x14] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x20] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x22] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x09] lapic_id[0x24] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x0a] lapic_id[0x30] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x0b] lapic_id[0x32] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x0c] lapic_id[0x34] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x0d] lapic_id[0x01] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x0e] lapic_id[0x03] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x0f] lapic_id[0x05] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x10] lapic_id[0x11] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x11] lapic_id[0x13] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x12] lapic_id[0x15] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x13] lapic_id[0x21] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x14] lapic_id[0x23] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x15] lapic_id[0x25] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x16] lapic_id[0x31] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x17] lapic_id[0x33] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x18] lapic_id[0x35] enabled)
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high dfl lint[0x1])
[ 0.000000] ACPI: IOAPIC (id[0x06] address[0xfec00000] gsi_base[0])
[ 0.000000] IOAPIC[0]: apic_id 6, version 32, address 0xfec00000, GSI 0-23
[ 0.000000] ACPI: IOAPIC (id[0x07] address[0xfec8a000] gsi_base[24])
[ 0.000000] IOAPIC[1]: apic_id 7, version 32, address 0xfec8a000, GSI 24-47
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.000000] ACPI: IRQ0 used by override.
[ 0.000000] ACPI: 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: 0x8086a301 base: 0xfed00000
[ 0.000000] SMP: Allowing 24 CPUs, 0 hotplug CPUs
[ 0.000000] nr_irqs_gsi: 64
[ 0.000000] PM: Registered nosave memory: 0000000000099000 - 000000000009a000
[ 0.000000] PM: Registered nosave memory: 000000000009a000 - 00000000000a0000
[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
[ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
[ 0.000000] PM: Registered nosave memory: 00000000bf790000 - 00000000bf79e000
[ 0.000000] PM: Registered nosave memory: 00000000bf79e000 - 00000000bf7d0000
[ 0.000000] PM: Registered nosave memory: 00000000bf7d0000 - 00000000bf7e0000
[ 0.000000] PM: Registered nosave memory: 00000000bf7e0000 - 00000000bf7ec000
[ 0.000000] PM: Registered nosave memory: 00000000bf7ec000 - 00000000c0000000
[ 0.000000] PM: Registered nosave memory: 00000000c0000000 - 00000000e0000000
[ 0.000000] PM: Registered nosave memory: 00000000e0000000 - 00000000f0000000
[ 0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000fee00000
[ 0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000
[ 0.000000] PM: Registered nosave memory: 00000000fee01000 - 00000000ffa00000
[ 0.000000] PM: Registered nosave memory: 00000000ffa00000 - 0000000100000000
[ 0.000000] Allocating PCI resources starting at c0000000 (gap: c0000000:20000000)
[ 0.000000] Booting paravirtualized kernel on bare hardware
[ 0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:24 nr_node_ids:2
[ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff880237c00000 s83136 r8192 d23360 u131072
[ 0.000000] pcpu-alloc: s83136 r8192 d23360 u131072 alloc=1*2097152
[ 0.000000] pcpu-alloc: [0] 00 01 02 03 04 05 12 13 14 15 16 17 -- -- -- --
[ 0.000000] pcpu-alloc: [1] 06 07 08 09 10 11 18 19 20 21 22 23 -- -- -- --
[ 0.000000] Built 2 zonelists in Zone order, mobility grouping on. Total pages: 4122388
[ 0.000000] Policy zone: Normal
[ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.2.0-60-generic root=UUID=d999c7f0-dd64-431c-8f58-264d078a5800 ro crashkernel=384M-2G:64M,2G-:128M
[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[ 0.000000] Checking aperture...
[ 0.000000] No AGP bridge found
[ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
[ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[ 0.000000] Memory: 16276268k/17825792k available (6588k kernel code, 1057692k absent, 491832k reserved, 6618k data, 924k init)
[ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=24, Nodes=2
[ 0.000000] Hierarchical RCU implementation.
[ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
[ 0.000000] NR_IRQS:16640 nr_irqs:1280 16
[ 0.000000] Extended CMOS year: 2000
[ 0.000000] Console: colour dummy device 80x25
[ 0.000000] console [tty0] enabled
[ 0.000000] allocated 134217728 bytes of page_cgroup
[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[ 0.000000] hpet clockevent registered
[ 0.000000] Fast TSC calibration using PIT
[ 0.004000] Detected 2400.129 MHz processor.
[ 0.000008] Calibrating delay loop (skipped), value calculated using timer frequency.. 4800.25 BogoMIPS (lpj=9600516)
[ 0.000017] pid_max: default: 32768 minimum: 301
[ 0.000082] Security Framework initialized
[ 0.000100] AppArmor: AppArmor initialized
[ 0.000103] Yama: becoming mindful.
[ 0.001426] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
[ 0.005724] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[ 0.007439] Mount-cache hash table entries: 256
[ 0.007647] Initializing cgroup subsys cpuacct
[ 0.007660] Initializing cgroup subsys memory
[ 0.007689] Initializing cgroup subsys devices
[ 0.007693] Initializing cgroup subsys freezer
[ 0.007698] Initializing cgroup subsys blkio
[ 0.007708] Initializing cgroup subsys perf_event
[ 0.007750] CPU: Physical Processor ID: 0
[ 0.007754] CPU: Processor Core ID: 0
[ 0.007762] mce: CPU supports 9 MCE banks
[ 0.007780] CPU0: Thermal monitoring enabled (TM1)
[ 0.007794] using mwait in idle threads.
[ 0.010095] ACPI: Core revision 20110623
[ 0.035368] ftrace: allocating 26601 entries in 105 pages
[ 0.043357] DMAR: Host address width 40
[ 0.043362] DMAR: DRHD base: 0x000000fbffe000 flags: 0x1
[ 0.043375] IOMMU 0: reg_base_addr fbffe000 ver 1:0 cap c90780106f0462 ecap f0207e
[ 0.043381] DMAR: RMRR base: 0x000000000ec000 end: 0x000000000effff
[ 0.043385] DMAR: RMRR base: 0x000000bf7ec000 end: 0x000000bf7fffff
[ 0.043389] DMAR: ATSR flags: 0x0
[ 0.043495] IOAPIC id 6 under DRHD base 0xfbffe000 IOMMU 0
[ 0.043499] IOAPIC id 7 under DRHD base 0xfbffe000 IOMMU 0
[ 0.043722] Enabled IRQ remapping in xapic mode
[ 0.043728] Switched APIC routing to physical flat.
[ 0.044311] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.083939] CPU0: Intel(R) Xeon(R) CPU E5645 @ 2.40GHz stepping 02
[ 0.190001] Performance Events: PEBS fmt1+, Westmere events, Intel PMU driver.
[ 0.190011] ... version: 3
[ 0.190015] ... bit width: 48
[ 0.190017] ... generic registers: 4
[ 0.190021] ... value mask: 0000ffffffffffff
[ 0.190024] ... max period: 000000007fffffff
[ 0.190027] ... fixed-purpose events: 3
[ 0.190030] ... event mask: 000000070000000f
[ 0.190594] NMI watchdog enabled, takes one hw-pmu counter.
[ 0.190702] Booting Node 0, Processors #1
[ 0.190707] smpboot cpu 1: start_ip = 94000
[ 0.297941] NMI watchdog enabled, takes one hw-pmu counter.
[ 0.298071] #2
[ 0.298073] smpboot cpu 2: start_ip = 94000
[ 0.405833] NMI watchdog enabled, takes one hw-pmu counter.
[ 0.405952] #3
[ 0.405954] smpboot cpu 3: start_ip = 94000
[ 0.513625] NMI watchdog enabled, takes one hw-pmu counter.
[ 0.513740] #4
[ 0.513743] smpboot cpu 4: start_ip = 94000
[ 0.621505] NMI watchdog enabled, takes one hw-pmu counter.
[ 0.621635] #5
[ 0.621638] smpboot cpu 5: start_ip = 94000
[ 0.729299] NMI watchdog enabled, takes one hw-pmu counter.
[ 0.729430] Ok.
[ 0.729434] Booting Node 1, Processors #6
[ 0.729437] smpboot cpu 6: start_ip = 94000
[ 0.837111] NMI watchdog enabled, takes one hw-pmu counter.
[ 0.837207] #7
[ 0.837209] smpboot cpu 7: start_ip = 94000
[ 0.944964] NMI watchdog enabled, takes one hw-pmu counter.
[ 0.945072] #8
[ 0.945075] smpboot cpu 8: start_ip = 94000
[ 1.052749] NMI watchdog enabled, takes one hw-pmu counter.
[ 1.052845] #9
[ 1.052848] smpboot cpu 9: start_ip = 94000
[ 1.160600] NMI watchdog enabled, takes one hw-pmu counter.
[ 1.160703] #10
[ 1.160706] smpboot cpu 10: start_ip = 94000
[ 1.268463] NMI watchdog enabled, takes one hw-pmu counter.
[ 1.268567] #11
[ 1.268570] smpboot cpu 11: start_ip = 94000
[ 1.376323] NMI watchdog enabled, takes one hw-pmu counter.
[ 1.376414] Ok.
[ 1.376418] Booting Node 0, Processors #12
[ 1.376421] smpboot cpu 12: start_ip = 94000
[ 1.484145] NMI watchdog enabled, takes one hw-pmu counter.
[ 1.484256] #13
[ 1.484258] smpboot cpu 13: start_ip = 94000
[ 1.591955] NMI watchdog enabled, takes one hw-pmu counter.
[ 1.592059] #14
[ 1.592061] smpboot cpu 14: start_ip = 94000
[ 1.699797] NMI watchdog enabled, takes one hw-pmu counter.
[ 1.699893] #15
[ 1.699895] smpboot cpu 15: start_ip = 94000
[ 1.807660] NMI watchdog enabled, takes one hw-pmu counter.
[ 1.807767] #16
[ 1.807769] smpboot cpu 16: start_ip = 94000
[ 1.915407] NMI watchdog enabled, takes one hw-pmu counter.
[ 1.915514] #17
[ 1.915517] smpboot cpu 17: start_ip = 94000
[ 2.023264] NMI watchdog enabled, takes one hw-pmu counter.
[ 2.023381] Ok.
[ 2.023384] Booting Node 1, Processors #18
[ 2.023387] smpboot cpu 18: start_ip = 94000
[ 2.131111] NMI watchdog enabled, takes one hw-pmu counter.
[ 2.131196] #19
[ 2.131198] smpboot cpu 19: start_ip = 94000
[ 2.238925] NMI watchdog enabled, takes one hw-pmu counter.
[ 2.239004] #20
[ 2.239006] smpboot cpu 20: start_ip = 94000
[ 2.346754] NMI watchdog enabled, takes one hw-pmu counter.
[ 2.346846] #21
[ 2.346848] smpboot cpu 21: start_ip = 94000
[ 2.454575] NMI watchdog enabled, takes one hw-pmu counter.
[ 2.454655] #22
[ 2.454657] smpboot cpu 22: start_ip = 94000
[ 2.562458] NMI watchdog enabled, takes one hw-pmu counter.
[ 2.562543] #23 Ok.
[ 2.562545] smpboot cpu 23: start_ip = 94000
[ 2.670272] NMI watchdog enabled, takes one hw-pmu counter.
[ 2.670299] Brought up 24 CPUs
[ 2.670305] Total of 24 processors activated (115204.40 BogoMIPS).
[ 2.707833] devtmpfs: initialized
[ 2.709253] EVM: security.selinux
[ 2.709257] EVM: security.SMACK64
[ 2.709259] EVM: security.capability
[ 2.709296] PM: Registering ACPI NVS region at bf79e000 (204800 bytes)
[ 2.710143] print_constraints: dummy:
[ 2.710174] RTC time: 1:12:11, date: 05/02/14
[ 2.710225] NET: Registered protocol family 16
[ 2.710346] Trying to unpack rootfs image as initramfs...
[ 2.710356] ACPI: bus type pci registered
[ 2.710429] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[ 2.710435] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[ 2.741415] PCI: Using configuration type 1 for base access
[ 2.742666] bio: create slab
[ 2.742773] ACPI: Added _OSI(Module Device)
[ 2.742777] ACPI: Added _OSI(Processor Device)
[ 2.742779] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 2.742782] ACPI: Added _OSI(Processor Aggregator Device)
[ 2.743664] ACPI: EC: Look up EC in DSDT
[ 2.744701] ACPI: Executed 1 blocks of module-level executable AML code
[ 2.822030] ACPI: SSDT 00000000bf79e200 0477C (v01 DpgPmm P001Ist 00000011 INTL 20051117)
[ 2.822578] ACPI: Dynamic OEM Table Load:
[ 2.822583] ACPI: SSDT (null) 0477C (v01 DpgPmm P001Ist 00000011 INTL 20051117)
[ 2.822725] ACPI: SSDT 00000000bf7a2980 00C88 (v01 PmRef P001Cst 00003001 INTL 20051117)
[ 2.823048] ACPI: Dynamic OEM Table Load:
[ 2.823052] ACPI: SSDT (null) 00C88 (v01 PmRef P001Cst 00003001 INTL 20051117)
[ 2.823165] ACPI: SSDT 00000000bf7a3610 00A0A (v01 PmRef Cpu0Tst 00003000 INTL 20051117)
[ 2.823559] ACPI: Dynamic OEM Table Load:
[ 2.823563] ACPI: SSDT (null) 00A0A (v01 PmRef Cpu0Tst 00003000 INTL 20051117)
[ 2.882187] ACPI: Interpreter enabled
[ 2.882196] ACPI: (supports S0 S1 S4 S5)
[ 2.882214] ACPI: Using IOAPIC for interrupt routing
[ 2.888059] ACPI: No dock devices found.
[ 2.888063] HEST: Table not found.
[ 2.888066] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 2.888149] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[ 2.888300] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7]
[ 2.888304] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff]
[ 2.888308] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
[ 2.888312] pci_root PNP0A08:00: host bridge window [mem 0x000d0000-0x000dffff]
[ 2.888316] pci_root PNP0A08:00: host bridge window [mem 0xc0000000-0xdfffffff]
[ 2.888320] pci_root PNP0A08:00: host bridge window [mem 0xf0000000-0xfed8ffff]
[ 2.888338] pci 0000:00:00.0: [8086:3403] type 0 class 0x000600
[ 2.888388] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold
[ 2.888392] pci 0000:00:00.0: PME# disabled
[ 2.888411] pci 0000:00:01.0: [8086:3408] type 1 class 0x000604
[ 2.888463] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[ 2.888466] pci 0000:00:01.0: PME# disabled
[ 2.888487] pci 0000:00:03.0: [8086:340a] type 1 class 0x000604
[ 2.888539] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
[ 2.888542] pci 0000:00:03.0: PME# disabled
[ 2.888563] pci 0000:00:07.0: [8086:340e] type 1 class 0x000604
[ 2.888615] pci 0000:00:07.0: PME# supported from D0 D3hot D3cold
[ 2.888618] pci 0000:00:07.0: PME# disabled
[ 2.888638] pci 0000:00:08.0: [8086:340f] type 1 class 0x000604
[ 2.888689] pci 0000:00:08.0: PME# supported from D0 D3hot D3cold
[ 2.888692] pci 0000:00:08.0: PME# disabled
[ 2.888713] pci 0000:00:09.0: [8086:3410] type 1 class 0x000604
[ 2.888764] pci 0000:00:09.0: PME# supported from D0 D3hot D3cold
[ 2.888767] pci 0000:00:09.0: PME# disabled
[ 2.888786] pci 0000:00:0a.0: [8086:3411] type 1 class 0x000604
[ 2.888837] pci 0000:00:0a.0: PME# supported from D0 D3hot D3cold
[ 2.888840] pci 0000:00:0a.0: PME# disabled
[ 2.888861] pci 0000:00:13.0: [8086:342d] type 0 class 0x000800
[ 2.888871] pci 0000:00:13.0: reg 10: [mem 0xfec8a000-0xfec8afff]
[ 2.888916] pci 0000:00:13.0: PME# supported from D0 D3hot D3cold
[ 2.888919] pci 0000:00:13.0: PME# disabled
[ 2.888934] pci 0000:00:14.0: [8086:342e] type 0 class 0x000800
[ 2.888996] pci 0000:00:14.1: [8086:3422] type 0 class 0x000800
[ 2.889056] pci 0000:00:14.2: [8086:3423] type 0 class 0x000800
[ 2.889113] pci 0000:00:14.3: [8086:3438] type 0 class 0x000800
[ 2.889168] pci 0000:00:16.0: [8086:3430] type 0 class 0x000880
[ 2.889179] pci 0000:00:16.0: reg 10: [mem 0xfbbd4000-0xfbbd7fff 64bit]
[ 2.889245] pci 0000:00:16.1: [8086:3431] type 0 class 0x000880
[ 2.889256] pci 0000:00:16.1: reg 10: [mem 0xfbbd8000-0xfbbdbfff 64bit]
[ 2.889320] pci 0000:00:16.2: [8086:3432] type 0 class 0x000880
[ 2.889331] pci 0000:00:16.2: reg 10: [mem 0xfbbdc000-0xfbbdffff 64bit]
[ 2.889395] pci 0000:00:16.3: [8086:3433] type 0 class 0x000880
[ 2.889406] pci 0000:00:16.3: reg 10: [mem 0xfbbe0000-0xfbbe3fff 64bit]
[ 2.889470] pci 0000:00:16.4: [8086:3429] type 0 class 0x000880
[ 2.889481] pci 0000:00:16.4: reg 10: [mem 0xfbbe4000-0xfbbe7fff 64bit]
[ 2.889546] pci 0000:00:16.5: [8086:342a] type 0 class 0x000880
[ 2.889557] pci 0000:00:16.5: reg 10: [mem 0xfbbe8000-0xfbbebfff 64bit]
[ 2.889621] pci 0000:00:16.6: [8086:342b] type 0 class 0x000880
[ 2.889632] pci 0000:00:16.6: reg 10: [mem 0xfbbec000-0xfbbeffff 64bit]
[ 2.889696] pci 0000:00:16.7: [8086:342c] type 0 class 0x000880
[ 2.889707] pci 0000:00:16.7: reg 10: [mem 0xfbbf0000-0xfbbf3fff 64bit]
[ 2.889774] pci 0000:00:1a.0: [8086:3a37] type 0 class 0x000c03
[ 2.889814] pci 0000:00:1a.0: reg 20: [io 0x8400-0x841f]
[ 2.889871] pci 0000:00:1a.1: [8086:3a38] type 0 class 0x000c03
[ 2.889911] pci 0000:00:1a.1: reg 20: [io 0x8480-0x849f]
[ 2.889959] pci 0000:00:1a.2: [8086:3a39] type 0 class 0x000c03
[ 2.890000] pci 0000:00:1a.2: reg 20: [io 0x8800-0x881f]
[ 2.890057] pci 0000:00:1a.7: [8086:3a3c] type 0 class 0x000c03
[ 2.890077] pci 0000:00:1a.7: reg 10: [mem 0xfbbf6000-0xfbbf63ff]
[ 2.890163] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
[ 2.890167] pci 0000:00:1a.7: PME# disabled
[ 2.890187] pci 0000:00:1c.0: [8086:3a40] type 1 class 0x000604
[ 2.890252] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 2.890255] pci 0000:00:1c.0: PME# disabled
[ 2.890278] pci 0000:00:1c.4: [8086:3a48] type 1 class 0x000604
[ 2.890344] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[ 2.890347] pci 0000:00:1c.4: PME# disabled
[ 2.890367] pci 0000:00:1c.5: [8086:3a4a] type 1 class 0x000604
[ 2.890432] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
[ 2.890436] pci 0000:00:1c.5: PME# disabled
[ 2.890458] pci 0000:00:1d.0: [8086:3a34] type 0 class 0x000c03
[ 2.890498] pci 0000:00:1d.0: reg 20: [io 0x8880-0x889f]
[ 2.890546] pci 0000:00:1d.1: [8086:3a35] type 0 class 0x000c03
[ 2.890586] pci 0000:00:1d.1: reg 20: [io 0x8c00-0x8c1f]
[ 2.890637] pci 0000:00:1d.2: [8086:3a36] type 0 class 0x000c03
[ 2.890677] pci 0000:00:1d.2: reg 20: [io 0x9000-0x901f]
[ 2.890735] pci 0000:00:1d.7: [8086:3a3a] type 0 class 0x000c03
[ 2.890754] pci 0000:00:1d.7: reg 10: [mem 0xfbbf8000-0xfbbf83ff]
[ 2.890840] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[ 2.890844] pci 0000:00:1d.7: PME# disabled
[ 2.890862] pci 0000:00:1e.0: [8086:244e] type 1 class 0x000604
[ 2.890921] pci 0000:00:1f.0: [8086:3a16] type 0 class 0x000601
[ 2.890998] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0a00 (mask 00ff)
[ 2.891004] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 2 PIO at 0ca0 (mask 000f)
[ 2.891051] pci 0000:00:1f.2: [8086:3a20] type 0 class 0x000101
[ 2.891065] pci 0000:00:1f.2: reg 10: [io 0x9c00-0x9c07]
[ 2.891072] pci 0000:00:1f.2: reg 14: [io 0x9880-0x9883]
[ 2.891080] pci 0000:00:1f.2: reg 18: [io 0x9800-0x9807]
[ 2.891087] pci 0000:00:1f.2: reg 1c: [io 0x9480-0x9483]
[ 2.891095] pci 0000:00:1f.2: reg 20: [io 0x9400-0x940f]
[ 2.891102] pci 0000:00:1f.2: reg 24: [io 0x9080-0x908f]
[ 2.891146] pci 0000:00:1f.3: [8086:3a30] type 0 class 0x000c05
[ 2.891160] pci 0000:00:1f.3: reg 10: [mem 0xfbbfa000-0xfbbfa0ff 64bit]
[ 2.891180] pci 0000:00:1f.3: reg 20: [io 0x0400-0x041f]
[ 2.891211] pci 0000:00:1f.5: [8086:3a26] type 0 class 0x000101
[ 2.891225] pci 0000:00:1f.5: reg 10: [io 0xac00-0xac07]
[ 2.891233] pci 0000:00:1f.5: reg 14: [io 0xa880-0xa883]
[ 2.891240] pci 0000:00:1f.5: reg 18: [io 0xa800-0xa807]
[ 2.891247] pci 0000:00:1f.5: reg 1c: [io 0xa480-0xa483]
[ 2.891255] pci 0000:00:1f.5: reg 20: [io 0xa400-0xa40f]
[ 2.891262] pci 0000:00:1f.5: reg 24: [io 0xa080-0xa08f]
[ 2.891334] pci 0000:00:01.0: PCI bridge to [bus 0a-0a]
[ 2.891373] pci 0000:00:03.0: PCI bridge to [bus 09-09]
[ 2.891412] pci 0000:00:07.0: PCI bridge to [bus 08-08]
[ 2.891452] pci 0000:00:08.0: PCI bridge to [bus 07-07]
[ 2.891491] pci 0000:00:09.0: PCI bridge to [bus 06-06]
[ 2.891530] pci 0000:00:0a.0: PCI bridge to [bus 05-05]
[ 2.891587] pci 0000:04:00.0: [1000:0079] type 0 class 0x000104
[ 2.891601] pci 0000:04:00.0: reg 10: [io 0xe000-0xe0ff]
[ 2.891617] pci 0000:04:00.0: reg 14: [mem 0xfbefc000-0xfbefffff 64bit]
[ 2.891633] pci 0000:04:00.0: reg 1c: [mem 0xfbe80000-0xfbebffff 64bit]
[ 2.891653] pci 0000:04:00.0: reg 30: [mem 0xfbe40000-0xfbe7ffff pref]
[ 2.891715] pci 0000:04:00.0: supports D1 D2
[ 2.897832] pci 0000:00:1c.0: PCI bridge to [bus 04-04]
[ 2.897837] pci 0000:00:1c.0: bridge window [io 0xe000-0xefff]
[ 2.897841] pci 0000:00:1c.0: bridge window [mem 0xfbe00000-0xfbefffff]
[ 2.897910] pci 0000:03:00.0: [8086:10d3] type 0 class 0x000200
[ 2.897934] pci 0000:03:00.0: reg 10: [mem 0xfbde0000-0xfbdfffff]
[ 2.897966] pci 0000:03:00.0: reg 18: [io 0xdc00-0xdc1f]
[ 2.897983] pci 0000:03:00.0: reg 1c: [mem 0xfbddc000-0xfbddffff]
[ 2.898120] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[ 2.898126] pci 0000:03:00.0: PME# disabled
[ 2.905820] pci 0000:00:1c.4: PCI bridge to [bus 03-03]
[ 2.905826] pci 0000:00:1c.4: bridge window [io 0xd000-0xdfff]
[ 2.905829] pci 0000:00:1c.4: bridge window [mem 0xfbd00000-0xfbdfffff]
[ 2.905896] pci 0000:02:00.0: [8086:10d3] type 0 class 0x000200
[ 2.905920] pci 0000:02:00.0: reg 10: [mem 0xfbce0000-0xfbcfffff]
[ 2.905953] pci 0000:02:00.0: reg 18: [io 0xcc00-0xcc1f]
[ 2.905970] pci 0000:02:00.0: reg 1c: [mem 0xfbcdc000-0xfbcdffff]
[ 2.906109] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
[ 2.906115] pci 0000:02:00.0: PME# disabled
[ 2.913809] pci 0000:00:1c.5: PCI bridge to [bus 02-02]
[ 2.913814] pci 0000:00:1c.5: bridge window [io 0xc000-0xcfff]
[ 2.913818] pci 0000:00:1c.5: bridge window [mem 0xfbc00000-0xfbcfffff]
[ 2.913851] pci 0000:01:00.0: [1a03:2000] type 0 class 0x000300
[ 2.913868] pci 0000:01:00.0: reg 10: [mem 0xfb000000-0xfb7fffff]
[ 2.913878] pci 0000:01:00.0: reg 14: [mem 0xfafe0000-0xfaffffff]
[ 2.913887] pci 0000:01:00.0: reg 18: [io 0xbc00-0xbc7f]
[ 2.913946] pci 0000:01:00.0: supports D1 D2
[ 2.913947] pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 2.913951] pci 0000:01:00.0: PME# disabled
[ 2.913993] pci 0000:00:1e.0: PCI bridge to [bus 01-01] (subtractive decode)
[ 2.913999] pci 0000:00:1e.0: bridge window [io 0xb000-0xbfff]
[ 2.914003] pci 0000:00:1e.0: bridge window [mem 0xfaf00000-0xfb7fffff]
[ 2.914009] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
[ 2.914011] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
[ 2.914013] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[ 2.914015] pci 0000:00:1e.0: bridge window [mem 0x000d0000-0x000dffff] (subtractive decode)
[ 2.914017] pci 0000:00:1e.0: bridge window [mem 0xc0000000-0xdfffffff] (subtractive decode)
[ 2.914019] pci 0000:00:1e.0: bridge window [mem 0xf0000000-0xfed8ffff] (subtractive decode)
[ 2.914054] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[ 2.914215] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P1._PRT]
[ 2.914288] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P4._PRT]
[ 2.914321] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P8._PRT]
[ 2.914348] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P9._PRT]
[ 2.914375] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.NPE1._PRT]
[ 2.914398] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.NPE3._PRT]
[ 2.914422] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.NPE7._PRT]
[ 2.914445] pci0000:00: Requesting ACPI _OSC control (0x1d)
[ 2.914450] pci0000:00: ACPI _OSC request failed (AE_NOT_FOUND), returned control mask: 0x1d
[ 2.914454] ACPI _OSC control for PCIe not granted, disabling ASPM
[ 2.921554] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 6 7 *10 11 12 14 15)
[ 2.921596] ACPI: PCI Interrupt Link [LNKB] (IRQs *5)
[ 2.921633] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 6 7 10 11 12 14 *15)
[ 2.921672] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 6 7 10 *11 12 14 15)
[ 2.921711] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 6 7 10 11 12 14 15) *0, disabled.
[ 2.921752] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 6 *7 10 11 12 14 15)
[ 2.921797] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 6 7 10 11 12 14 15) *0, disabled.
[ 2.921839] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 6 7 10 11 12 *14 15)
[ 2.921959] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
[ 2.921964] vgaarb: loaded
[ 2.921966] vgaarb: bridge control possible 0000:01:00.0
[ 2.922057] i2c-core: driver [aat2870] using legacy suspend method
[ 2.922061] i2c-core: driver [aat2870] using legacy resume method
[ 2.922124] SCSI subsystem initialized
[ 2.922184] libata version 3.00 loaded.
[ 2.922228] usbcore: registered new interface driver usbfs
[ 2.922239] usbcore: registered new interface driver hub
[ 2.922265] usbcore: registered new device driver usb
[ 2.922354] PCI: Using ACPI for IRQ routing
[ 2.928051] PCI: Discovered peer bus fe
[ 2.928086] pci 0000:fe:00.0: [8086:2c70] type 0 class 0x000600
[ 2.928109] pci 0000:fe:00.1: [8086:2d81] type 0 class 0x000600
[ 2.928132] pci 0000:fe:02.0: [8086:2d90] type 0 class 0x000600
[ 2.928154] pci 0000:fe:02.1: [8086:2d91] type 0 class 0x000600
[ 2.928174] pci 0000:fe:02.2: [8086:2d92] type 0 class 0x000600
[ 2.928193] pci 0000:fe:02.3: [8086:2d93] type 0 class 0x000600
[ 2.928213] pci 0000:fe:02.4: [8086:2d94] type 0 class 0x000600
[ 2.928232] pci 0000:fe:02.5: [8086:2d95] type 0 class 0x000600
[ 2.928253] pci 0000:fe:03.0: [8086:2d98] type 0 class 0x000600
[ 2.928272] pci 0000:fe:03.1: [8086:2d99] type 0 class 0x000600
[ 2.928292] pci 0000:fe:03.2: [8086:2d9a] type 0 class 0x000600
[ 2.928313] pci 0000:fe:03.4: [8086:2d9c] type 0 class 0x000600
[ 2.928334] pci 0000:fe:04.0: [8086:2da0] type 0 class 0x000600
[ 2.928354] pci 0000:fe:04.1: [8086:2da1] type 0 class 0x000600
[ 2.928374] pci 0000:fe:04.2: [8086:2da2] type 0 class 0x000600
[ 2.928393] pci 0000:fe:04.3: [8086:2da3] type 0 class 0x000600
[ 2.928415] pci 0000:fe:05.0: [8086:2da8] type 0 class 0x000600
[ 2.928434] pci 0000:fe:05.1: [8086:2da9] type 0 class 0x000600
[ 2.928454] pci 0000:fe:05.2: [8086:2daa] type 0 class 0x000600
[ 2.928475] pci 0000:fe:05.3: [8086:2dab] type 0 class 0x000600
[ 2.928496] pci 0000:fe:06.0: [8086:2db0] type 0 class 0x000600
[ 2.928516] pci 0000:fe:06.1: [8086:2db1] type 0 class 0x000600
[ 2.928536] pci 0000:fe:06.2: [8086:2db2] type 0 class 0x000600
[ 2.928555] pci 0000:fe:06.3: [8086:2db3] type 0 class 0x000600
[ 2.929089] PCI: Discovered peer bus ff
[ 2.929122] pci 0000:ff:00.0: [8086:2c70] type 0 class 0x000600
[ 2.929140] pci 0000:ff:00.1: [8086:2d81] type 0 class 0x000600
[ 2.929160] pci 0000:ff:02.0: [8086:2d90] type 0 class 0x000600
[ 2.929179] pci 0000:ff:02.1: [8086:2d91] type 0 class 0x000600
[ 2.929196] pci 0000:ff:02.2: [8086:2d92] type 0 class 0x000600
[ 2.929213] pci 0000:ff:02.3: [8086:2d93] type 0 class 0x000600
[ 2.929230] pci 0000:ff:02.4: [8086:2d94] type 0 class 0x000600
[ 2.929247] pci 0000:ff:02.5: [8086:2d95] type 0 class 0x000600
[ 2.929265] pci 0000:ff:03.0: [8086:2d98] type 0 class 0x000600
[ 2.929282] pci 0000:ff:03.1: [8086:2d99] type 0 class 0x000600
[ 2.929299] pci 0000:ff:03.2: [8086:2d9a] type 0 class 0x000600
[ 2.929319] pci 0000:ff:03.4: [8086:2d9c] type 0 class 0x000600
[ 2.929338] pci 0000:ff:04.0: [8086:2da0] type 0 class 0x000600
[ 2.929355] pci 0000:ff:04.1: [8086:2da1] type 0 class 0x000600
[ 2.929372] pci 0000:ff:04.2: [8086:2da2] type 0 class 0x000600
[ 2.929389] pci 0000:ff:04.3: [8086:2da3] type 0 class 0x000600
[ 2.929408] pci 0000:ff:05.0: [8086:2da8] type 0 class 0x000600
[ 2.929425] pci 0000:ff:05.1: [8086:2da9] type 0 class 0x000600
[ 2.929442] pci 0000:ff:05.2: [8086:2daa] type 0 class 0x000600
[ 2.929462] pci 0000:ff:05.3: [8086:2dab] type 0 class 0x000600
[ 2.929481] pci 0000:ff:06.0: [8086:2db0] type 0 class 0x000600
[ 2.929498] pci 0000:ff:06.1: [8086:2db1] type 0 class 0x000600
[ 2.929515] pci 0000:ff:06.2: [8086:2db2] type 0 class 0x000600
[ 2.929532] pci 0000:ff:06.3: [8086:2db3] type 0 class 0x000600
[ 2.930087] PCI: pci_cache_line_size set to 64 bytes
[ 2.930260] reserve RAM buffer: 0000000000099400 - 000000000009ffff
[ 2.930262] reserve RAM buffer: 00000000bf790000 - 00000000bfffffff
[ 2.930359] NetLabel: Initializing
[ 2.930363] NetLabel: domain hash size = 128
[ 2.930365] NetLabel: protocols = UNLABELED CIPSOv4
[ 2.930377] NetLabel: unlabeled traffic allowed by default
[ 2.930424] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
[ 2.930430] hpet0: 4 comparators, 64-bit 14.318180 MHz counter
[ 2.932462] Switching to clocksource hpet
[ 2.938843] AppArmor: AppArmor Filesystem Enabled
[ 2.938863] pnp: PnP ACPI init
[ 2.938877] ACPI: bus type pnp registered
[ 2.938963] pnp 00:00: [bus 00-ff]
[ 2.938965] pnp 00:00: [io 0x0cf8-0x0cff]
[ 2.938967] pnp 00:00: [io 0x0000-0x0cf7 window]
[ 2.938969] pnp 00:00: [io 0x0d00-0xffff window]
[ 2.938971] pnp 00:00: [mem 0x000a0000-0x000bffff window]
[ 2.938973] pnp 00:00: [mem 0x000d0000-0x000dffff window]
[ 2.938975] pnp 00:00: [mem 0xc0000000-0xdfffffff window]
[ 2.938977] pnp 00:00: [mem 0xf0000000-0xfed8ffff window]
[ 2.939029] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
[ 2.939038] pnp 00:01: [mem 0xfbf00000-0xfbffffff]
[ 2.939040] pnp 00:01: [mem 0xfc000000-0xfcffffff]
[ 2.939042] pnp 00:01: [mem 0xfd000000-0xfdffffff]
[ 2.939043] pnp 00:01: [mem 0xfe000000-0xfebfffff]
[ 2.939045] pnp 00:01: [mem 0xfec8a000-0xfec8afff]
[ 2.939047] pnp 00:01: [mem 0xfed10000-0xfed10fff]
[ 2.939119] system 00:01: [mem 0xfbf00000-0xfbffffff] has been reserved
[ 2.939124] system 00:01: [mem 0xfc000000-0xfcffffff] has been reserved
[ 2.939128] system 00:01: [mem 0xfd000000-0xfdffffff] has been reserved
[ 2.939132] system 00:01: [mem 0xfe000000-0xfebfffff] has been reserved
[ 2.939136] system 00:01: [mem 0xfec8a000-0xfec8afff] could not be reserved
[ 2.939140] system 00:01: [mem 0xfed10000-0xfed10fff] has been reserved
[ 2.939145] system 00:01: Plug and Play ACPI device, IDs PNP0c01 (active)
[ 2.939177] pnp 00:02: [dma 4]
[ 2.939178] pnp 00:02: [io 0x0000-0x000f]
[ 2.939182] pnp 00:02: [io 0x0081-0x0083]
[ 2.939184] pnp 00:02: [io 0x0087]
[ 2.939186] pnp 00:02: [io 0x0089-0x008b]
[ 2.939187] pnp 00:02: [io 0x008f]
[ 2.939188] pnp 00:02: [io 0x00c0-0x00df]
[ 2.939217] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
[ 2.939226] pnp 00:03: [io 0x0070-0x0071]
[ 2.939239] pnp 00:03: [irq 8]
[ 2.939266] pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active)
[ 2.939307] pnp 00:04: [io 0x0061]
[ 2.939333] pnp 00:04: Plug and Play ACPI device, IDs PNP0800 (active)
[ 2.939341] pnp 00:05: [io 0x00f0-0x00ff]
[ 2.939349] pnp 00:05: [irq 13]
[ 2.939377] pnp 00:05: Plug and Play ACPI device, IDs PNP0c04 (active)
[ 2.939568] pnp 00:06: [io 0x03f8-0x03ff]
[ 2.939576] pnp 00:06: [irq 4]
[ 2.939578] pnp 00:06: [dma 0 disabled]
[ 2.939645] pnp 00:06: Plug and Play ACPI device, IDs PNP0501 (active)
[ 2.939825] pnp 00:07: [io 0x02f8-0x02ff]
[ 2.939833] pnp 00:07: [irq 3]
[ 2.939834] pnp 00:07: [dma 0 disabled]
[ 2.939917] pnp 00:07: Plug and Play ACPI device, IDs PNP0501 (active)
[ 2.940140] pnp 00:08: [io 0x0000-0xffffffffffffffff disabled]
[ 2.940142] pnp 00:08: [io 0x0a00-0x0a0f]
[ 2.940144] pnp 00:08: [io 0x0a10-0x0a1f]
[ 2.940211] system 00:08: [io 0x0a00-0x0a0f] has been reserved
[ 2.940216] system 00:08: [io 0x0a10-0x0a1f] has been reserved
[ 2.940221] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 2.940313] pnp 00:09: [io 0x0010-0x001f]
[ 2.940315] pnp 00:09: [io 0x0022-0x003f]
[ 2.940316] pnp 00:09: [io 0x0044-0x005f]
[ 2.940318] pnp 00:09: [io 0x0062-0x0063]
[ 2.940319] pnp 00:09: [io 0x0065-0x006f]
[ 2.940321] pnp 00:09: [io 0x0072-0x007f]
[ 2.940322] pnp 00:09: [io 0x0080]
[ 2.940324] pnp 00:09: [io 0x0084-0x0086]
[ 2.940325] pnp 00:09: [io 0x0088]
[ 2.940327] pnp 00:09: [io 0x008c-0x008e]
[ 2.940328] pnp 00:09: [io 0x0090-0x009f]
[ 2.940330] pnp 00:09: [io 0x00a2-0x00bf]
[ 2.940331] pnp 00:09: [io 0x00e0-0x00ef]
[ 2.940333] pnp 00:09: [io 0x04d0-0x04d1]
[ 2.940334] pnp 00:09: [io 0x0800-0x087f]
[ 2.940336] pnp 00:09: [io 0x0000-0xffffffffffffffff disabled]
[ 2.940338] pnp 00:09: [io 0x0500-0x057f]
[ 2.940340] pnp 00:09: [mem 0xfed1c000-0xfed1ffff]
[ 2.940341] pnp 00:09: [mem 0xfed20000-0xfed3ffff]
[ 2.940343] pnp 00:09: [mem 0xfed40000-0xfed8ffff]
[ 2.940442] system 00:09: [io 0x04d0-0x04d1] has been reserved
[ 2.940446] system 00:09: [io 0x0800-0x087f] has been reserved
[ 2.940450] system 00:09: [io 0x0500-0x057f] has been reserved
[ 2.940455] system 00:09: [mem 0xfed1c000-0xfed1ffff] has been reserved
[ 2.940459] system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved
[ 2.940463] system 00:09: [mem 0xfed40000-0xfed8ffff] has been reserved
[ 2.940467] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 2.940515] pnp 00:0a: [mem 0xfed00000-0xfed003ff]
[ 2.940544] pnp 00:0a: Plug and Play ACPI device, IDs PNP0103 (active)
[ 2.940606] pnp 00:0b: [io 0x0060]
[ 2.940610] pnp 00:0b: [io 0x0064]
[ 2.940612] pnp 00:0b: [mem 0xfec00000-0xfec00fff]
[ 2.940614] pnp 00:0b: [mem 0xfee00000-0xfee00fff]
[ 2.940683] system 00:0b: [mem 0xfec00000-0xfec00fff] could not be reserved
[ 2.940688] system 00:0b: [mem 0xfee00000-0xfee00fff] has been reserved
[ 2.940692] system 00:0b: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 2.940722] pnp 00:0c: [mem 0xe0000000-0xefffffff]
[ 2.940791] system 00:0c: [mem 0xe0000000-0xefffffff] has been reserved
[ 2.940797] system 00:0c: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 2.940930] pnp 00:0d: [mem 0x00000000-0x0009ffff]
[ 2.940932] pnp 00:0d: [mem 0x000c0000-0x000cffff]
[ 2.940933] pnp 00:0d: [mem 0x000e0000-0x000fffff]
[ 2.940935] pnp 00:0d: [mem 0x00100000-0xbfffffff]
[ 2.940937] pnp 00:0d: [mem 0xfed90000-0xffffffff]
[ 2.941014] system 00:0d: [mem 0x00000000-0x0009ffff] could not be reserved
[ 2.941020] system 00:0d: [mem 0x000c0000-0x000cffff] could not be reserved
[ 2.941024] system 00:0d: [mem 0x000e0000-0x000fffff] could not be reserved
[ 2.941028] system 00:0d: [mem 0x00100000-0xbfffffff] could not be reserved
[ 2.941032] system 00:0d: [mem 0xfed90000-0xffffffff] could not be reserved
[ 2.941036] system 00:0d: Plug and Play ACPI device, IDs PNP0c01 (active)
[ 2.941140] pnp: PnP ACPI: found 14 devices
[ 2.941143] ACPI: ACPI bus type pnp unregistered
[ 2.948051] PCI: max bus depth: 1 pci_try_num: 2
[ 2.948115] pci 0000:00:1c.5: BAR 15: assigned [mem 0xc0000000-0xc01fffff 64bit pref]
[ 2.948121] pci 0000:00:1c.4: BAR 15: assigned [mem 0xc0200000-0xc03fffff 64bit pref]
[ 2.948126] pci 0000:00:1c.0: BAR 15: assigned [mem 0xc0400000-0xc05fffff 64bit pref]
[ 2.948131] pci 0000:00:01.0: PCI bridge to [bus 0a-0a]
[ 2.948140] pci 0000:00:03.0: PCI bridge to [bus 09-09]
[ 2.948149] pci 0000:00:07.0: PCI bridge to [bus 08-08]
[ 2.948158] pci 0000:00:08.0: PCI bridge to [bus 07-07]
[ 2.948167] pci 0000:00:09.0: PCI bridge to [bus 06-06]
[ 2.948176] pci 0000:00:0a.0: PCI bridge to [bus 05-05]
[ 2.948186] pci 0000:00:1c.0: PCI bridge to [bus 04-04]
[ 2.948190] pci 0000:00:1c.0: bridge window [io 0xe000-0xefff]
[ 2.948196] pci 0000:00:1c.0: bridge window [mem 0xfbe00000-0xfbefffff]
[ 2.948201] pci 0000:00:1c.0: bridge window [mem 0xc0400000-0xc05fffff 64bit pref]
[ 2.948209] pci 0000:00:1c.4: PCI bridge to [bus 03-03]
[ 2.948212] pci 0000:00:1c.4: bridge window [io 0xd000-0xdfff]
[ 2.948218] pci 0000:00:1c.4: bridge window [mem 0xfbd00000-0xfbdfffff]
[ 2.948223] pci 0000:00:1c.4: bridge window [mem 0xc0200000-0xc03fffff 64bit pref]
[ 2.948231] pci 0000:00:1c.5: PCI bridge to [bus 02-02]
[ 2.948235] pci 0000:00:1c.5: bridge window [io 0xc000-0xcfff]
[ 2.948241] pci 0000:00:1c.5: bridge window [mem 0xfbc00000-0xfbcfffff]
[ 2.948246] pci 0000:00:1c.5: bridge window [mem 0xc0000000-0xc01fffff 64bit pref]
[ 2.948253] pci 0000:00:1e.0: PCI bridge to [bus 01-01]
[ 2.948257] pci 0000:00:1e.0: bridge window [io 0xb000-0xbfff]
[ 2.948263] pci 0000:00:1e.0: bridge window [mem 0xfaf00000-0xfb7fffff]
[ 2.948278] pci 0000:00:01.0: setting latency timer to 64
[ 2.948284] pci 0000:00:03.0: setting latency timer to 64
[ 2.948290] pci 0000:00:07.0: setting latency timer to 64
[ 2.948295] pci 0000:00:08.0: setting latency timer to 64
[ 2.948300] pci 0000:00:09.0: setting latency timer to 64
[ 2.948305] pci 0000:00:0a.0: setting latency timer to 64
[ 2.948322] pci 0000:00:1c.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[ 2.948327] pci 0000:00:1c.0: setting latency timer to 64
[ 2.948333] pci 0000:00:1c.4: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[ 2.948338] pci 0000:00:1c.4: setting latency timer to 64
[ 2.948350] pci 0000:00:1c.5: PCI INT B -> GSI 16 (level, low) -> IRQ 16
[ 2.948355] pci 0000:00:1c.5: setting latency timer to 64
[ 2.948361] pci 0000:00:1e.0: setting latency timer to 64
[ 2.948365] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
[ 2.948375] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
[ 2.948377] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[ 2.948379] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000dffff]
[ 2.948381] pci_bus 0000:00: resource 8 [mem 0xc0000000-0xdfffffff]
[ 2.948383] pci_bus 0000:00: resource 9 [mem 0xf0000000-0xfed8ffff]
[ 2.948386] pci_bus 0000:04: resource 0 [io 0xe000-0xefff]
[ 2.948388] pci_bus 0000:04: resource 1 [mem 0xfbe00000-0xfbefffff]
[ 2.948390] pci_bus 0000:04: resource 2 [mem 0xc0400000-0xc05fffff 64bit pref]
[ 2.948392] pci_bus 0000:03: resource 0 [io 0xd000-0xdfff]
[ 2.948394] pci_bus 0000:03: resource 1 [mem 0xfbd00000-0xfbdfffff]
[ 2.948396] pci_bus 0000:03: resource 2 [mem 0xc0200000-0xc03fffff 64bit pref]
[ 2.948399] pci_bus 0000:02: resource 0 [io 0xc000-0xcfff]
[ 2.948401] pci_bus 0000:02: resource 1 [mem 0xfbc00000-0xfbcfffff]
[ 2.948403] pci_bus 0000:02: resource 2 [mem 0xc0000000-0xc01fffff 64bit pref]
[ 2.948405] pci_bus 0000:01: resource 0 [io 0xb000-0xbfff]
[ 2.948407] pci_bus 0000:01: resource 1 [mem 0xfaf00000-0xfb7fffff]
[ 2.948409] pci_bus 0000:01: resource 4 [io 0x0000-0x0cf7]
[ 2.948412] pci_bus 0000:01: resource 5 [io 0x0d00-0xffff]
[ 2.948414] pci_bus 0000:01: resource 6 [mem 0x000a0000-0x000bffff]
[ 2.948416] pci_bus 0000:01: resource 7 [mem 0x000d0000-0x000dffff]
[ 2.948418] pci_bus 0000:01: resource 8 [mem 0xc0000000-0xdfffffff]
[ 2.948420] pci_bus 0000:01: resource 9 [mem 0xf0000000-0xfed8ffff]
[ 2.948422] pci_bus 0000:fe: resource 0 [io 0x0000-0xffff]
[ 2.948424] pci_bus 0000:fe: resource 1 [mem 0x00000000-0xffffffffff]
[ 2.948427] pci_bus 0000:ff: resource 0 [io 0x0000-0xffff]
[ 2.948428] pci_bus 0000:ff: resource 1 [mem 0x00000000-0xffffffffff]
[ 2.948480] NET: Registered protocol family 2
[ 2.948803] IP route cache hash table entries: 524288 (order: 10, 4194304 bytes)
[ 2.949971] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
[ 2.951587] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[ 2.951785] TCP: Hash tables configured (established 524288 bind 65536)
[ 2.951789] TCP reno registered
[ 2.951811] UDP hash table entries: 8192 (order: 6, 262144 bytes)
[ 2.951885] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes)
[ 2.952073] NET: Registered protocol family 1
[ 2.952123] pci 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 2.952141] pci 0000:00:1a.0: PCI INT A disabled
[ 2.952160] pci 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21
[ 2.952177] pci 0000:00:1a.1: PCI INT B disabled
[ 2.952192] pci 0000:00:1a.2: PCI INT D -> GSI 19 (level, low) -> IRQ 19
[ 2.952209] pci 0000:00:1a.2: PCI INT D disabled
[ 2.952224] pci 0000:00:1a.7: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[ 2.952254] pci 0000:00:1a.7: PCI INT C disabled
[ 2.952278] pci 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[ 2.952295] pci 0000:00:1d.0: PCI INT A disabled
[ 2.952302] pci 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[ 2.952319] pci 0000:00:1d.1: PCI INT B disabled
[ 2.952326] pci 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[ 2.952343] pci 0000:00:1d.2: PCI INT C disabled
[ 2.952351] pci 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[ 2.952414] pci 0000:00:1d.7: PCI INT A disabled
[ 2.952440] pci 0000:01:00.0: Boot video device
[ 2.952502] PCI: CLS 256 bytes, default 64
[ 2.952511] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 2.952515] Placing 64MB software IO TLB between ffff8800bb790000 - ffff8800bf790000
[ 2.952519] software IO TLB at phys 0xbb790000 - 0xbf790000
[ 2.953943] audit: initializing netlink socket (disabled)
[ 2.953953] type=2000 audit(1398993131.424:1): initialized
[ 2.959550] Freeing initrd memory: 13924k freed
[ 2.977331] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[ 2.980059] VFS: Disk quotas dquot_6.5.2
[ 2.980124] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 2.980699] fuse init (API version 7.17)
[ 2.980799] msgmni has been set to 31816
[ 2.981182] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[ 2.981216] io scheduler noop registered
[ 2.981219] io scheduler deadline registered
[ 2.981256] io scheduler cfq registered (default)
[ 2.981616] pcieport 0000:00:1c.0: setting latency timer to 64
[ 2.981662] pcieport 0000:00:1c.0: irq 65 for MSI/MSI-X
[ 2.981719] pcieport 0000:00:1c.4: setting latency timer to 64
[ 2.981757] pcieport 0000:00:1c.4: irq 66 for MSI/MSI-X
[ 2.981810] pcieport 0000:00:1c.5: setting latency timer to 64
[ 2.981848] pcieport 0000:00:1c.5: irq 67 for MSI/MSI-X
[ 2.981929] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[ 2.981947] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[ 2.982009] intel_idle: MWAIT substates: 0x1120
[ 2.982011] intel_idle: v0.4 model 0x2C
[ 2.982012] intel_idle: lapic_timer_reliable_states 0xffffffff
[ 2.982194] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[ 2.982205] ACPI: Power Button [PWRB]
[ 2.982248] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[ 2.982254] ACPI: Power Button [PWRF]
[ 2.987092] ERST: Table is not found!
[ 2.987098] GHES: HEST is not enabled!
[ 2.987182] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 3.007526] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[ 3.092492] serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
[ 3.190182] 00:06: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[ 3.228360] 00:07: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
[ 3.228701] Linux agpgart interface v0.103
[ 3.230457] brd: module loaded
[ 3.231314] loop: module loaded
[ 3.231518] ata_piix 0000:00:1f.2: version 2.13
[ 3.231532] ata_piix 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[ 3.231539] ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
[ 3.231586] ata_piix 0000:00:1f.2: setting latency timer to 64
[ 3.231880] scsi0 : ata_piix
[ 3.231989] scsi1 : ata_piix
[ 3.232837] ata1: SATA max UDMA/133 cmd 0x9c00 ctl 0x9880 bmdma 0x9400 irq 19
[ 3.232844] ata2: SATA max UDMA/133 cmd 0x9800 ctl 0x9480 bmdma 0x9408 irq 19
[ 3.232864] ata_piix 0000:00:1f.5: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[ 3.232872] ata_piix 0000:00:1f.5: MAP [ P0 -- P1 -- ]
[ 3.232911] ata_piix 0000:00:1f.5: setting latency timer to 64
[ 3.233104] scsi2 : ata_piix
[ 3.233194] scsi3 : ata_piix
[ 3.233946] ata3: SATA max UDMA/133 cmd 0xac00 ctl 0xa880 bmdma 0xa400 irq 19
[ 3.233952] ata4: SATA max UDMA/133 cmd 0xa800 ctl 0xa480 bmdma 0xa408 irq 19
[ 3.234290] Fixed MDIO Bus: probed
[ 3.234312] tun: Universal TUN/TAP device driver, 1.6
[ 3.234314] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[ 3.234364] PPP generic driver version 2.4.2
[ 3.234466] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 3.234484] ehci_hcd 0000:00:1a.7: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[ 3.234521] ehci_hcd 0000:00:1a.7: setting latency timer to 64
[ 3.234524] ehci_hcd 0000:00:1a.7: EHCI Host Controller
[ 3.234571] ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1
[ 3.234598] ehci_hcd 0000:00:1a.7: debug port 1
[ 3.238489] ehci_hcd 0000:00:1a.7: cache line size of 256 is not supported
[ 3.238510] ehci_hcd 0000:00:1a.7: irq 18, io mem 0xfbbf6000
[ 3.251918] ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00
[ 3.252070] hub 1-0:1.0: USB hub found
[ 3.252077] hub 1-0:1.0: 6 ports detected
[ 3.252176] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[ 3.252192] ehci_hcd 0000:00:1d.7: setting latency timer to 64
[ 3.252195] ehci_hcd 0000:00:1d.7: EHCI Host Controller
[ 3.252245] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2
[ 3.252270] ehci_hcd 0000:00:1d.7: debug port 1
[ 3.256162] ehci_hcd 0000:00:1d.7: cache line size of 256 is not supported
[ 3.256175] ehci_hcd 0000:00:1d.7: irq 23, io mem 0xfbbf8000
[ 3.271888] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[ 3.272018] hub 2-0:1.0: USB hub found
[ 3.272028] hub 2-0:1.0: 6 ports detected
[ 3.272115] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 3.272132] uhci_hcd: USB Universal Host Controller Interface driver
[ 3.272149] uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 3.272157] uhci_hcd 0000:00:1a.0: setting latency timer to 64
[ 3.272160] uhci_hcd 0000:00:1a.0: UHCI Host Controller
[ 3.272215] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
[ 3.272250] uhci_hcd 0000:00:1a.0: irq 16, io base 0x00008400
[ 3.272372] hub 3-0:1.0: USB hub found
[ 3.272378] hub 3-0:1.0: 2 ports detected
[ 3.272450] uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21
[ 3.272459] uhci_hcd 0000:00:1a.1: setting latency timer to 64
[ 3.272462] uhci_hcd 0000:00:1a.1: UHCI Host Controller
[ 3.272513] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
[ 3.272550] uhci_hcd 0000:00:1a.1: irq 21, io base 0x00008480
[ 3.272666] hub 4-0:1.0: USB hub found
[ 3.272672] hub 4-0:1.0: 2 ports detected
[ 3.272744] uhci_hcd 0000:00:1a.2: PCI INT D -> GSI 19 (level, low) -> IRQ 19
[ 3.272752] uhci_hcd 0000:00:1a.2: setting latency timer to 64
[ 3.272755] uhci_hcd 0000:00:1a.2: UHCI Host Controller
[ 3.272803] uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 5
[ 3.272831] uhci_hcd 0000:00:1a.2: irq 19, io base 0x00008800
[ 3.272951] hub 5-0:1.0: USB hub found
[ 3.272956] hub 5-0:1.0: 2 ports detected
[ 3.273029] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[ 3.273037] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[ 3.273040] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[ 3.273091] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 6
[ 3.273116] uhci_hcd 0000:00:1d.0: irq 23, io base 0x00008880
[ 3.273239] hub 6-0:1.0: USB hub found
[ 3.273244] hub 6-0:1.0: 2 ports detected
[ 3.273317] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[ 3.273326] uhci_hcd 0000:00:1d.1: setting latency timer to 64
[ 3.273328] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[ 3.273377] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 7
[ 3.273403] uhci_hcd 0000:00:1d.1: irq 19, io base 0x00008c00
[ 3.273525] hub 7-0:1.0: USB hub found
[ 3.273530] hub 7-0:1.0: 2 ports detected
[ 3.273606] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[ 3.273614] uhci_hcd 0000:00:1d.2: setting latency timer to 64
[ 3.273617] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[ 3.273666] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 8
[ 3.273691] uhci_hcd 0000:00:1d.2: irq 18, io base 0x00009000
[ 3.273809] hub 8-0:1.0: USB hub found
[ 3.273815] hub 8-0:1.0: 2 ports detected
[ 3.273945] usbcore: registered new interface driver libusual
[ 3.273981] i8042: PNP: No PS/2 controller found. Probing ports directly.
[ 3.276883] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 3.276892] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 3.277025] mousedev: PS/2 mouse device common for all mice
[ 3.277166] rtc_cmos 00:03: RTC can wake from S4
[ 3.277276] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
[ 3.277303] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[ 3.277388] device-mapper: uevent: version 1.0.3
[ 3.277470] device-mapper: ioctl: 4.22.0-ioctl (2011-10-19) initialised: dm-devel@redhat.com
[ 3.277975] cpuidle: using governor ladder
[ 3.278732] cpuidle: using governor menu
[ 3.278736] EFI Variables Facility v0.08 2004-May-17
[ 3.278975] TCP cubic registered
[ 3.279084] NET: Registered protocol family 10
[ 3.279561] NET: Registered protocol family 17
[ 3.279567] Registering the dns_resolver key type
[ 3.279700] PM: Hibernation image not present or could not be loaded.
[ 3.279712] registered taskstats version 1
[ 3.286043] Magic number: 14:412:204
[ 3.286202] rtc_cmos 00:03: setting system clock to 2014-05-02 01:12:12 UTC (1398993132)
[ 3.292443] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[ 3.292447] EDD information not available.
[ 3.562206] ata4: SATA link down (SStatus 0 SControl 300)
[ 3.715310] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 3.723760] ata3.00: ATA-8: ST2000DL001-9VT156, CC41, max UDMA/133
[ 3.723769] ata3.00: 3907029168 sectors, multi 16: LBA48
[ 3.732272] ata3.00: configured for UDMA/133
[ 3.881799] ata2.00: SATA link down (SStatus 0 SControl 300)
[ 3.881814] ata2.01: SATA link down (SStatus 0 SControl 300)
[ 3.950900] Refined TSC clocksource calibration: 2400.084 MHz.
[ 3.950910] Switching to clocksource tsc
[ 4.026834] ata1.00: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[ 4.026854] ata1.01: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 4.042951] ata1.00: ATAPI: TSSTcorpDVD-ROM TS-H353C, CM00, max UDMA/33
[ 4.043161] ata1.01: ATA-8: WDC WD1003FBYX-01Y7B1, 01.01V02, max UDMA/133
[ 4.043171] ata1.01: 1953525168 sectors, multi 16: LBA48 NCQ (depth 0/32)
[ 4.058933] ata1.00: configured for UDMA/33
[ 4.067655] ata1.01: configured for UDMA/133
[ 4.069379] scsi 0:0:0:0: CD-ROM TSSTcorp DVD-ROM TS-H353C CM00 PQ: 0 ANSI: 5
[ 4.072158] sr0: scsi3-mmc drive: 1x/48x cd/rw xa/form2 cdda tray
[ 4.072166] cdrom: Uniform CD-ROM driver Revision: 3.20
[ 4.072434] sr 0:0:0:0: Attached scsi CD-ROM sr0
[ 4.072695] sr 0:0:0:0: Attached scsi generic sg0 type 5
[ 4.073355] scsi 0:0:1:0: Direct-Access ATA WDC WD1003FBYX-0 01.0 PQ: 0 ANSI: 5
[ 4.073631] sd 0:0:1:0: Attached scsi generic sg1 type 0
[ 4.073681] sd 0:0:1:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[ 4.074150] sd 0:0:1:0: [sda] Write Protect is off
[ 4.074158] sd 0:0:1:0: [sda] Mode Sense: 00 3a 00 00
[ 4.074162] scsi 2:0:0:0: Direct-Access ATA ST2000DL001-9VT1 CC41 PQ: 0 ANSI: 5
[ 4.074422] sd 0:0:1:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 4.074443] sd 2:0:0:0: Attached scsi generic sg2 type 0
[ 4.074479] sd 2:0:0:0: [sdb] 3907029168 512-byte logical blocks: (2.00 TB/1.81 TiB)
[ 4.074489] sd 2:0:0:0: [sdb] 4096-byte physical blocks
[ 4.074960] sd 2:0:0:0: [sdb] Write Protect is off
[ 4.074969] sd 2:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[ 4.075092] sd 2:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 4.101909] sda: sda1 sda2 sda3 sda4
[ 4.104302] sd 0:0:1:0: [sda] Attached SCSI disk
[ 4.128319] sdb: sdb1 sdb2 < sdb5 sdb6 sdb7 >
[ 4.131049] sd 2:0:0:0: [sdb] Attached SCSI disk
[ 4.134385] Freeing unused kernel memory: 924k freed
[ 4.134573] Write protecting the kernel read-only data: 12288k
[ 4.143222] Freeing unused kernel memory: 1584k freed
[ 4.149222] Freeing unused kernel memory: 1188k freed
[ 4.167017] udevd[189]: starting version 175
[ 4.202181] megasas: 00.00.06.12-rc1 Wed. Oct. 5 17:00:00 PDT 2011
[ 4.202210] e1000e: Intel(R) PRO/1000 Network Driver - 1.5.1-k
[ 4.202217] e1000e: Copyright(c) 1999 - 2011 Intel Corporation.
[ 4.202228] megasas: 0x1000:0x0079:0x1014:0x03c7: bus 4:slot 0:func 0
[ 4.202250] e1000e 0000:03:00.0: Disabling ASPM L0s L1
[ 4.202255] megaraid_sas 0000:04:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 4.202263] megaraid_sas 0000:04:00.0: setting latency timer to 64
[ 4.202278] e1000e 0000:03:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 4.202304] e1000e 0000:03:00.0: setting latency timer to 64
[ 4.202404] megasas: FW now in Ready state
[ 4.202572] megaraid_sas 0000:04:00.0: irq 68 for MSI/MSI-X
[ 4.202577] e1000e 0000:03:00.0: irq 69 for MSI/MSI-X
[ 4.202589] e1000e 0000:03:00.0: irq 70 for MSI/MSI-X
[ 4.202599] e1000e 0000:03:00.0: irq 71 for MSI/MSI-X
[ 4.226590] megasas_init_mfi: fw_support_ieee=0
[ 4.226602] megasas: INIT adapter done
[ 4.298415] scsi4 : LSI SAS based MegaRAID driver
[ 4.300967] scsi 4:0:0:0: Direct-Access ATA ST2000NM0033-9ZM SN03 PQ: 0 ANSI: 5
[ 4.302272] scsi 4:0:1:0: Direct-Access ATA ST2000NM0033-9ZM SN03 PQ: 0 ANSI: 5
[ 4.309819] e1000e 0000:03:00.0: eth0: (PCI Express:2.5GT/s:Width x1) 00:e0:81:d3:60:cd
[ 4.309826] e1000e 0000:03:00.0: eth0: Intel(R) PRO/1000 Network Connection
[ 4.309912] e1000e 0000:03:00.0: eth0: MAC: 3, PHY: 8, PBA No: FFFFFF-0FF
[ 4.309926] e1000e 0000:02:00.0: Disabling ASPM L0s L1
[ 4.309944] e1000e 0000:02:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[ 4.309965] e1000e 0000:02:00.0: setting latency timer to 64
[ 4.310773] e1000e 0000:02:00.0: irq 72 for MSI/MSI-X
[ 4.310782] e1000e 0000:02:00.0: irq 73 for MSI/MSI-X
[ 4.310789] e1000e 0000:02:00.0: irq 74 for MSI/MSI-X
[ 4.320627] scsi 4:2:0:0: Direct-Access LSI MR9260-8i 2.11 PQ: 0 ANSI: 5
[ 4.334495] sd 4:2:0:0: [sdc] 3905945600 512-byte logical blocks: (1.99 TB/1.81 TiB)
[ 4.334509] sd 4:2:0:0: Attached scsi generic sg3 type 0
[ 4.334593] sd 4:2:0:0: [sdc] Write Protect is off
[ 4.334597] sd 4:2:0:0: [sdc] Mode Sense: 1f 00 10 08
[ 4.334642] sd 4:2:0:0: [sdc] Write cache: disabled, read cache: enabled, supports DPO and FUA
[ 4.335554] sdc: sdc1 sdc2 sdc3 sdc4
[ 4.336936] sd 4:2:0:0: [sdc] Attached SCSI disk
[ 4.423297] e1000e 0000:02:00.0: eth1: (PCI Express:2.5GT/s:Width x1) 00:e0:81:d3:60:cc
[ 4.423304] e1000e 0000:02:00.0: eth1: Intel(R) PRO/1000 Network Connection
[ 4.423390] e1000e 0000:02:00.0: eth1: MAC: 3, PHY: 8, PBA No: FFFFFF-0FF
[ 4.485429] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[ 12.975351] init: mount_ro main process (431) terminated with status 32
[ 13.106702] Adding 16777212k swap on /dev/sdb6. Priority:-1 extents:1 across:16777212k
[ 14.336375] ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 14.336380] ADDRCONF(NETDEV_UP): eth1: link is not ready
[ 14.375668] udevd[592]: starting version 175
[ 14.527033] lp: driver loaded but no devices found
[ 14.567877] i801_smbus 0000:00:1f.3: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[ 14.687083] dca service started, version 1.12.1
[ 14.717551] device-mapper: multipath: version 1.3.2 loaded
[ 14.858038] EDAC MC: Ver: 2.1.0
[ 14.914266] w83793 0-002f: Registered watchdog chardev major 10, minor: 130
[ 14.914625] ioatdma: Intel(R) QuickData Technology Driver 4.00
[ 14.914664] ioatdma 0000:00:16.0: enabling device (0000 -> 0002)
[ 14.914687] ioatdma 0000:00:16.0: PCI INT A -> GSI 43 (level, low) -> IRQ 43
[ 14.914714] ioatdma 0000:00:16.0: setting latency timer to 64
[ 14.914807] ioatdma 0000:00:16.0: irq 75 for MSI/MSI-X
[ 14.915210] ioatdma 0000:00:16.1: enabling device (0000 -> 0002)
[ 14.915229] ioatdma 0000:00:16.1: PCI INT B -> GSI 44 (level, low) -> IRQ 44
[ 14.915260] ioatdma 0000:00:16.1: setting latency timer to 64
[ 14.915347] ioatdma 0000:00:16.1: irq 76 for MSI/MSI-X
[ 14.915628] ioatdma 0000:00:16.2: enabling device (0000 -> 0002)
[ 14.915641] ioatdma 0000:00:16.2: PCI INT C -> GSI 45 (level, low) -> IRQ 45
[ 14.915657] ioatdma 0000:00:16.2: setting latency timer to 64
[ 14.915717] ioatdma 0000:00:16.2: irq 77 for MSI/MSI-X
[ 14.915900] ioatdma 0000:00:16.3: enabling device (0000 -> 0002)
[ 14.915912] ioatdma 0000:00:16.3: PCI INT D -> GSI 46 (level, low) -> IRQ 46
[ 14.916650] ioatdma 0000:00:16.3: setting latency timer to 64
[ 14.916707] ioatdma 0000:00:16.3: irq 78 for MSI/MSI-X
[ 14.916869] ioatdma 0000:00:16.4: enabling device (0000 -> 0002)
[ 14.916873] ioatdma 0000:00:16.4: PCI INT A -> GSI 43 (level, low) -> IRQ 43
[ 14.916890] ioatdma 0000:00:16.4: setting latency timer to 64
[ 14.916947] ioatdma 0000:00:16.4: irq 79 for MSI/MSI-X
[ 14.917086] ioatdma 0000:00:16.5: enabling device (0000 -> 0002)
[ 14.917090] ioatdma 0000:00:16.5: PCI INT B -> GSI 44 (level, low) -> IRQ 44
[ 14.917105] ioatdma 0000:00:16.5: setting latency timer to 64
[ 14.917159] ioatdma 0000:00:16.5: irq 80 for MSI/MSI-X
[ 14.917308] ioatdma 0000:00:16.6: enabling device (0000 -> 0002)
[ 14.917311] ioatdma 0000:00:16.6: PCI INT C -> GSI 45 (level, low) -> IRQ 45
[ 14.917326] ioatdma 0000:00:16.6: setting latency timer to 64
[ 14.917384] ioatdma 0000:00:16.6: irq 81 for MSI/MSI-X
[ 14.917550] ioatdma 0000:00:16.7: enabling device (0000 -> 0002)
[ 14.917554] ioatdma 0000:00:16.7: PCI INT D -> GSI 46 (level, low) -> IRQ 46
[ 14.917569] ioatdma 0000:00:16.7: setting latency timer to 64
[ 14.917623] ioatdma 0000:00:16.7: irq 82 for MSI/MSI-X
[ 14.921558] EDAC MC1: Giving out device to 'i7core_edac.c' 'i7 core #1': DEV 0000:fe:03.0
[ 14.921587] EDAC PCI0: Giving out device to module 'i7core_edac' controller 'EDAC PCI controller': DEV '0000:fe:03.0' (POLLED)
[ 14.922017] EDAC MC0: Giving out device to 'i7core_edac.c' 'i7 core #0': DEV 0000:ff:03.0
[ 14.922032] EDAC PCI1: Giving out device to module 'i7core_edac' controller 'EDAC PCI controller': DEV '0000:ff:03.0' (POLLED)
[ 14.922453] EDAC i7core: Driver loaded, 2 memory controller(s) found.
[ 15.206023] type=1400 audit(1398993144.436:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient" pid=920 comm="apparmor_parser"
[ 15.206083] type=1400 audit(1398993144.436:3): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=920 comm="apparmor_parser"
[ 15.206132] type=1400 audit(1398993144.436:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=920 comm="apparmor_parser"
[ 15.210654] type=1400 audit(1398993144.440:5): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=914 comm="apparmor_parser"
[ 15.210707] type=1400 audit(1398993144.440:6): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=914 comm="apparmor_parser"
[ 15.210752] type=1400 audit(1398993144.440:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=914 comm="apparmor_parser"
[ 15.218466] type=1400 audit(1398993144.448:8): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=912 comm="apparmor_parser"
[ 15.218520] type=1400 audit(1398993144.448:9): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=912 comm="apparmor_parser"
[ 15.218566] type=1400 audit(1398993144.448:10): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=912 comm="apparmor_parser"
[ 15.331156] ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 15.650147] vesafb: mode is 640x480x32, linelength=2560, pages=0
[ 15.650150] vesafb: scrolling: redraw
[ 15.650152] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[ 15.678445] vesafb: framebuffer at 0xfb000000, mapped to 0xffffc90012b00000, using 1216k, total 1216k
[ 15.678743] Console: switching to colour frame buffer device 80x30
[ 15.700143] fb0: VESA VGA frame buffer device
[ 17.609506] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
[ 17.921539] EXT4-fs (sdc1): mounted filesystem with ordered data mode. Opts: (null)
[ 17.966440] EXT4-fs (sdc2): mounted filesystem with ordered data mode. Opts: (null)
[ 18.013722] EXT4-fs (sdc3): mounted filesystem with ordered data mode. Opts: (null)
[ 18.070834] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: user_xattr
[ 18.111831] EXT4-fs (sda4): mounted filesystem with ordered data mode. Opts: (null)
[ 18.251035] EXT4-fs (sdb1): mounted filesystem with ordered data mode. Opts: errors=remount-ro
[ 18.272409] EXT4-fs (sdc4): mounted filesystem with ordered data mode. Opts: (null)
[ 18.312410] EXT4-fs (sdb7): mounted filesystem with ordered data mode. Opts: (null)
[ 19.032975] e1000e: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: Rx/Tx
[ 19.034778] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[ 29.387960] eth0: no IPv6 routers present
[ 173.475194] EXT4-fs (sdb5): mounted filesystem with ordered data mode. Opts: (null)
[ 173.550504] init: failsafe main process (1313) killed by TERM signal
[ 174.117748] RPC: Registered named UNIX socket transport module.
[ 174.117751] RPC: Registered udp transport module.
[ 174.117753] RPC: Registered tcp transport module.
[ 174.117755] RPC: Registered tcp NFSv4.1 backchannel transport module.
[ 174.247480] Bluetooth: Core ver 2.16
[ 174.247498] NET: Registered protocol family 31
[ 174.247500] Bluetooth: HCI device and connection manager initialized
[ 174.247502] Bluetooth: HCI socket layer initialized
[ 174.247503] Bluetooth: L2CAP socket layer initialized
[ 174.247549] Bluetooth: SCO socket layer initialized
[ 174.249339] ppdev: user-space parallel port driver
[ 174.273787] Bluetooth: RFCOMM TTY layer initialized
[ 174.273795] Bluetooth: RFCOMM socket layer initialized
[ 174.273797] Bluetooth: RFCOMM ver 1.11
[ 174.296884] FS-Cache: Loaded
[ 174.338452] FS-Cache: Netfs 'nfs' registered for caching
[ 174.364719] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
[ 174.474037] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 174.474039] Bluetooth: BNEP filters: protocol multicast
[ 174.896188] type=1400 audit(1398993327.957:11): apparmor="STATUS" operation="profile_load" name="/usr/lib/cups/backend/cups-pdf" pid=1410 comm="apparmor_parser"
[ 174.896387] type=1400 audit(1398993327.957:12): apparmor="STATUS" operation="profile_load" name="/usr/sbin/cupsd" pid=1410 comm="apparmor_parser"
[ 176.436707] type=1400 audit(1398993329.501:13): apparmor="STATUS" operation="profile_load" name="/usr/sbin/mysqld" pid=1528 comm="apparmor_parser"
[ 176.656818] kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL does not work properly. Using workaround
[ 177.891803] Bridge firewalling registered
[ 178.006774] svc: failed to register lockdv1 RPC service (errno 97).
[ 178.006974] NFSD: Using /var/lib/nfs/v4recovery as the NFSv4 state recovery directory
[ 178.014499] NFSD: starting 90-second grace period
[ 178.184495] ip_tables: (C) 2000-2006 Netfilter Core Team
[ 178.233187] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
[ 178.273268] ADDRCONF(NETDEV_UP): virbr0: link is not ready
[ 178.698049] Ebtables v2.0 registered
[ 178.768430] ip6_tables: (C) 2000-2006 Netfilter Core Team
[ 6973.863850] e1000e: eth0 NIC Link is Down
[ 6983.078601] e1000e: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: Rx/Tx
[ 8495.471981] e1000e: eth0 NIC Link is Down
[ 8500.105743] e1000e: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: Rx/Tx
[24494.641101] ioctl32(e2fsck:18451): Unknown cmd fd(4) cmd(80041272){t:12;sz:4} arg(fff4a5f0) on /home/bill/OUT/RT863LH1ENCNDEV_1.0.0/target/product/rk30sdk/unsparse_userdata.img
[24494.641110] ioctl32(e2fsck:18451): Unknown cmd fd(4) cmd(00001260){t:12;sz:0} arg(fff4a5ec) on /home/bill/OUT/RT863LH1ENCNDEV_1.0.0/target/product/rk30sdk/unsparse_userdata.img
[24673.053163] ioctl32(e2fsck:7225): Unknown cmd fd(4) cmd(80041272){t:12;sz:4} arg(ff8d9980) on /home/bill/OUT/RT863LH1ENCNDEV_1.0.0/target/product/rk30sdk/obj/PACKAGING/systemimage_intermediates/unsparse_system.img
[24673.053173] ioctl32(e2fsck:7225): Unknown cmd fd(4) cmd(00001260){t:12;sz:0} arg(ff8d997c) on /home/bill/OUT/RT863LH1ENCNDEV_1.0.0/target/product/rk30sdk/obj/PACKAGING/systemimage_intermediates/unsparse_system.img
[24756.461671] ioctl32(e2fsck:8318): Unknown cmd fd(3) cmd(0000125e){t:12;sz:0} arg(ffeafd84) on /home/bill/AAA/rk3066box_4.2.2_r1/rockdev/Image/system.img
[24756.461794] ioctl32(e2fsck:8318): Unknown cmd fd(4) cmd(80041272){t:12;sz:4} arg(ffeafe40) on /home/bill/AAA/rk3066box_4.2.2_r1/rockdev/Image/system.img
[24756.461802] ioctl32(e2fsck:8318): Unknown cmd fd(4) cmd(00001260){t:12;sz:0} arg(ffeafe3c) on /home/bill/AAA/rk3066box_4.2.2_r1/rockdev/Image/system.img
[24765.539209] ioctl32(e2fsck:8326): Unknown cmd fd(3) cmd(0000125e){t:12;sz:0} arg(ffb86f14) on /home/bill/AAA/rk3066box_4.2.2_r1/rockdev/Image/system.img
[24765.539331] ioctl32(e2fsck:8326): Unknown cmd fd(4) cmd(80041272){t:12;sz:4} arg(ffb86fd0) on /home/bill/AAA/rk3066box_4.2.2_r1/rockdev/Image/system.img
[24765.539339] ioctl32(e2fsck:8326): Unknown cmd fd(4) cmd(00001260){t:12;sz:0} arg(ffb86fcc) on /home/bill/AAA/rk3066box_4.2.2_r1/rockdev/Image/system.img
bill@ccc2:~$
----
于 2014-05-02 18:59:23发表:
cat /proc/cpuinfo |grep "physical id"|sort|uniq |wc -l
打印cpu 数量