现在的位置: 首页 > 综合 > 正文

查看Linux内核启动时调用的init函数

2014年08月29日 ⁄ 综合 ⁄ 共 133618字 ⁄ 字号 评论关闭

Linux内核引导加载后

会调用一些初始化函数

其中有很多模块化的代码使用do_initcalls调用

这些函数通过宏pure_initcall、core_initcall、subsys_initcall、fs_initcall等声明

在内核链接的时候将函数指针加入".initcall"节

这样do_initcalls遍历该节中的函数指针进行调用

 

启动时按e键

在GRUB中加入参数initcall_debug可以查看这些函数的调用顺序

较老的内核版本需要同时指定debug参数

按F10继续引导内核

系统启动后使用demsg查看内核引导信息

 

例如Fedora17的initcall信息

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 3.8.8-100.fc17.i686 (mockbuild@bkernel01.phx2.fedoraproject.org) (gcc version 4.7.2 20120921 (Red Hat 4.7.2-2) (GCC) ) #1 SMP Wed Apr 17 17:26:59 UTC 2013
[    0.000000] Disabled fast string operations
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009f7ff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009f800-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000ca000-0x00000000000cbfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000dc000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000000feeffff] usable
[    0.000000] BIOS-e820: [mem 0x000000000fef0000-0x000000000fefefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000000feff000-0x000000000fefffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000000ff00000-0x000000000fffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec0ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fffe0000-0x00000000ffffffff] reserved
[    0.000000] Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel!
[    0.000000] SMBIOS 2.4 present.
[    0.000000] DMI: VMware, Inc. VMware Virtual Platform/440BX Desktop Reference Platform, BIOS 6.00 06/02/2011
[    0.000000] Hypervisor detected: VMware
[    0.000000] e820: update [mem 0x00000000-0x0000ffff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x10000 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-CBFFF write-protect
[    0.000000]   CC000-EFFFF uncachable
[    0.000000]   F0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 0000000000 mask FFF0000000 write-back
[    0.000000]   1 disabled
[    0.000000]   2 disabled
[    0.000000]   3 disabled
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x0, new 0x7010600070106
[    0.000000] found SMP MP-table at [mem 0x000f6bc0-0x000f6bcf] mapped at [c00f6bc0]
[    0.000000] initial memory mapped: [mem 0x00000000-0x00ffffff]
[    0.000000] Base memory trampoline at [c009b000] 9b000 size 16384
[    0.000000] init_memory_mapping: [mem 0x00000000-0x0fffffff]
[    0.000000]  [mem 0x00000000-0x003fffff] page 4k
[    0.000000]  [mem 0x00400000-0x0fffffff] page 2M
[    0.000000] kernel direct mapping tables up to 0xfffffff @ [mem 0x00ffa000-0x00ffffff]
[    0.000000] RAMDISK: [mem 0x0e55b000-0x0f6b0fff]
[    0.000000] ACPI: RSDP 000f6b50 00024 (v02 PTLTD )
[    0.000000] ACPI: XSDT 0fef01eb 0005C (v01 INTEL  440BX    06040000 VMW  01324272)
[    0.000000] ACPI: FACP 0fefee98 000F4 (v04 INTEL  440BX    06040000 PTL  000F4240)
[    0.000000] ACPI: DSDT 0fef0485 0EA13 (v01 PTLTD  Custom   06040000 MSFT 03000001)
[    0.000000] ACPI: FACS 0fefffc0 00040
[    0.000000] ACPI: BOOT 0fef045d 00028 (v01 PTLTD  $SBFTBL$ 06040000  LTP 00000001)
[    0.000000] ACPI: APIC 0fef03e3 0007A (v01 PTLTD  ? APIC   06040000  LTP 00000000)
[    0.000000] ACPI: MCFG 0fef03a7 0003C (v01 PTLTD  $PCITBL$ 06040000  LTP 00000001)
[    0.000000] ACPI: SRAT 0fef02e7 000C0 (v02 VMWARE MEMPLUG  06040000 VMW  00000001)
[    0.000000] ACPI: HPET 0fef02af 00038 (v01 VMWARE VMW HPET 06040000 VMW  00000001)
[    0.000000] ACPI: WAET 0fef0287 00028 (v01 VMWARE VMW WAET 06040000 VMW  00000001)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] 0MB HIGHMEM available.
[    0.000000] 256MB LOWMEM available.
[    0.000000]   mapped low ram: 0 - 10000000
[    0.000000]   low ram: 0 - 10000000
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x00010000-0x00ffffff]
[    0.000000]   Normal   [mem 0x01000000-0x0fffffff]
[    0.000000]   HighMem  empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x00010000-0x0009efff]
[    0.000000]   node   0: [mem 0x00100000-0x0feeffff]
[    0.000000]   node   0: [mem 0x0ff00000-0x0fffffff]
[    0.000000] On node 0 totalpages: 65407
[    0.000000] free_area_init_node: node 0, pgdat c0c1f5c0, node_mem_map cfcf0200
[    0.000000]   DMA zone: 32 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 3951 pages, LIFO batch:0
[    0.000000]   Normal zone: 480 pages used for memmap
[    0.000000]   Normal zone: 60944 pages, LIFO batch:15
[    0.000000] Using APIC driver default
[    0.000000] ACPI: PM-Timer IO Port: 0x1008
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] enabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 4, version 17, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge)
[    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: 0x8086af01 base: 0xfed00000
[    0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000ca000
[    0.000000] PM: Registered nosave memory: 00000000000ca000 - 00000000000cc000
[    0.000000] PM: Registered nosave memory: 00000000000cc000 - 00000000000dc000
[    0.000000] PM: Registered nosave memory: 00000000000dc000 - 0000000000100000
[    0.000000] PM: Registered nosave memory: 000000000fef0000 - 000000000feff000
[    0.000000] PM: Registered nosave memory: 000000000feff000 - 000000000ff00000
[    0.000000] e820: [mem 0x10000000-0xdfffffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:32 nr_cpumask_bits:32 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] PERCPU: Embedded 13 pages/cpu @cffc7000 s32384 r0 d20864 u53248
[    0.000000] pcpu-alloc: s32384 r0 d20864 u53248 alloc=13*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: 64895
[    0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-3.8.8-100.fc17.i686 root=UUID=d0a0b7f0-3b8a-4d3b-8a76-75b7ecf72b45 ro rd.md=0 rd.lvm=0 rd.dm=0 SYSFONT=True KEYTABLE=us rd.luks=0 LANG=en_US.UTF-8 rhgb quiet initcall_debug
[    0.000000] PID hash table entries: 1024 (order: 0, 4096 bytes)
[    0.000000] Dentry cache hash table entries: 32768 (order: 5, 131072 bytes)
[    0.000000] Inode-cache hash table entries: 16384 (order: 4, 65536 bytes)
[    0.000000] __ex_table already sorted, skipping sort
[    0.000000] Initializing CPU#0
[    0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
[    0.000000] allocated 524160 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 (00000000:00000000)
[    0.000000] Memory: 230800k/262144k available (5640k kernel code, 30828k reserved, 2756k data, 644k init, 0k highmem)
[    0.000000] virtual kernel memory layout:
[    0.000000]     fixmap  : 0xffa95000 - 0xfffff000   (5544 kB)
[    0.000000]     pkmap   : 0xff400000 - 0xff800000   (4096 kB)
[    0.000000]     vmalloc : 0xd0800000 - 0xff3fe000   ( 747 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xd0000000   ( 256 MB)
[    0.000000]       .init : 0xc0c34000 - 0xc0cd5000   ( 644 kB)
[    0.000000]       .data : 0xc0982105 - 0xc0c33240   (2756 kB)
[    0.000000]       .text : 0xc0400000 - 0xc0982105   (5640 kB)
[    0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[    0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000]  RCU restricting CPUs from NR_CPUS=32 to nr_cpu_ids=4.
[    0.000000] NR_IRQS:2304 nr_irqs:712 16
[    0.000000] CPU 0 irqstacks, hard=cf808000 soft=cf80a000
[    0.000000] Extended CMOS year: 2000
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] hpet clockevent registered
[    0.003000] TSC freq read from hypervisor : 3092.975 MHz
[    0.003000] tsc: Detected 3092.975 MHz processor
[    0.000326] Calibrating delay loop (skipped) preset value.. 6185.95 BogoMIPS (lpj=3092975)
[    0.000454] pid_max: default: 32768 minimum: 301
[    0.001559] Security Framework initialized
[    0.002885] SELinux:  Initializing.
[    0.003407] SELinux:  Starting in permissive mode
[    0.005609] Mount-cache hash table entries: 512
[    0.014855] Initializing cgroup subsys cpuacct
[    0.014882] Initializing cgroup subsys memory
[    0.015434] Initializing cgroup subsys devices
[    0.015519] Initializing cgroup subsys freezer
[    0.015678] Initializing cgroup subsys net_cls
[    0.015799] Initializing cgroup subsys blkio
[    0.015871] Initializing cgroup subsys perf_event
[    0.016628] Disabled fast string operations
[    0.016804] CPU: Physical Processor ID: 0
[    0.016819] CPU: Processor Core ID: 0
[    0.017198] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.017198] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.017409] mce: CPU supports 0 MCE banks
[    0.019131] Last level iTLB entries: 4KB 512, 2MB 0, 4MB 0
[    0.019131] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
[    0.019131] tlb_flushall_shift: 5
[    0.026895] Freeing SMP alternatives: 24k freed
[    0.050729] ACPI: Core revision 20121018
[    0.079910] ftrace: allocating 23496 entries in 46 pages
[    0.145068] Enabling APIC mode:  Flat.  Using 1 I/O APICs
[    0.149791] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.159964] smpboot: CPU0: Intel(R) Core(TM) i3-2100 CPU @ 3.10GHz (fam: 06, model: 2a, stepping: 07)
[    0.263504] calling  trace_init_flags_sys_exit+0x0/0x11 @ 1
[    0.263810] initcall trace_init_flags_sys_exit+0x0/0x11 returned 0 after 0 usecs
[    0.263840] calling  trace_init_flags_sys_enter+0x0/0x11 @ 1
[    0.263853] initcall trace_init_flags_sys_enter+0x0/0x11 returned 0 after 0 usecs
[    0.263856] calling  init_hw_perf_events+0x0/0x40b @ 1
[    0.263870] Performance Events: 16-deep LBR, SandyBridge events, Intel PMU driver.
[    0.264809] perf_event_intel: PEBS disabled due to CPU errata, please upgrade microcode
[    0.264868] perf_event_intel: CPUID marked event: 'cpu cycles' unavailable
[    0.264883] perf_event_intel: CPUID marked event: 'instructions' unavailable
[    0.264885] perf_event_intel: CPUID marked event: 'bus cycles' unavailable
[    0.264887] perf_event_intel: CPUID marked event: 'cache references' unavailable
[    0.264888] perf_event_intel: CPUID marked event: 'cache misses' unavailable
[    0.264890] perf_event_intel: CPUID marked event: 'branch instructions' unavailable
[    0.264891] perf_event_intel: CPUID marked event: 'branch misses' unavailable
[    0.265068] ... version:                3
[    0.265081] ... bit width:              48
[    0.265092] ... generic registers:      4
[    0.265106] ... value mask:             0000ffffffffffff
[    0.265119] ... max period:             000000007fffffff
[    0.265141] ... fixed-purpose events:   3
[    0.265155] ... event mask:             000000070000000f
[    0.265910] initcall init_hw_perf_events+0x0/0x40b returned 0 after 1953 usecs
[    0.265919] calling  register_trigger_all_cpu_backtrace+0x0/0x13 @ 1
[    0.265942] initcall register_trigger_all_cpu_backtrace+0x0/0x13 returned 0 after 0 usecs
[    0.265946] calling  spawn_ksoftirqd+0x0/0x21 @ 1
[    0.268315] initcall spawn_ksoftirqd+0x0/0x21 returned 0 after 2929 usecs
[    0.268320] calling  init_workqueues+0x0/0x306 @ 1
[    0.270808] initcall init_workqueues+0x0/0x306 returned 0 after 1953 usecs
[    0.270812] calling  migration_init+0x0/0x59 @ 1
[    0.270958] initcall migration_init+0x0/0x59 returned 0 after 0 usecs
[    0.270961] calling  cpu_stop_init+0x0/0x85 @ 1
[    0.271867] initcall cpu_stop_init+0x0/0x85 returned 0 after 976 usecs
[    0.271875] calling  rcu_scheduler_really_started+0x0/0x11 @ 1
[    0.271885] initcall rcu_scheduler_really_started+0x0/0x11 returned 0 after 0 usecs
[    0.271888] calling  rcu_spawn_gp_kthread+0x0/0x7d @ 1
[    0.272076] initcall rcu_spawn_gp_kthread+0x0/0x7d returned 0 after 0 usecs
[    0.272078] calling  relay_init+0x0/0x11 @ 1
[    0.272094] initcall relay_init+0x0/0x11 returned 0 after 0 usecs
[    0.272096] calling  tracer_alloc_buffers+0x0/0x1e9 @ 1
[    0.272971] initcall tracer_alloc_buffers+0x0/0x1e9 returned 0 after 976 usecs
[    0.272974] calling  init_events+0x0/0x5d @ 1
[    0.273110] initcall init_events+0x0/0x5d returned 0 after 0 usecs
[    0.273113] calling  init_trace_printk+0x0/0xf @ 1
[    0.273143] initcall init_trace_printk+0x0/0xf returned 0 after 976 usecs
[    0.273145] calling  init_ftrace_syscalls+0x0/0x5e @ 1
[    0.274601] initcall init_ftrace_syscalls+0x0/0x5e returned 0 after 976 usecs
[    0.274604] calling  jump_label_init_module+0x0/0xf @ 1
[    0.274619] initcall jump_label_init_module+0x0/0xf returned 0 after 0 usecs
[    0.274622] calling  dynamic_debug_init+0x0/0x219 @ 1
[    0.275539] initcall dynamic_debug_init+0x0/0x219 returned 0 after 976 usecs
[    0.277203] NMI watchdog: disabled (cpu0): hardware events not enabled
[    0.280222] CPU 1 irqstacks, hard=cf8ee000 soft=cf8f8000
[    0.292056] Initializing CPU#1
[    0.294235] Disabled fast string operations
[    0.294764] mce: CPU supports 0 MCE banks
[    0.280249] smpboot: Booting Node   0, Processors  #1
[    0.298723] CPU 2 irqstacks, hard=cf910000 soft=cf912000
[    0.309892] Initializing CPU#2
[    0.311933] Disabled fast string operations
[    0.312505] mce: CPU supports 0 MCE banks
[    0.298742]  #2
[    0.314344] CPU 3 irqstacks, hard=cf93e000 soft=cf940000
[    0.314352]  #3 OK
[    0.325770] Initializing CPU#3
[    0.327824] Disabled fast string operations
[    0.328381] mce: CPU supports 0 MCE banks
[    0.329934] Skipped synchronization checks as TSC is reliable.
[    0.330068] Brought up 4 CPUs
[    0.330144] smpboot: Total of 4 processors activated (24743.80 BogoMIPS)
[    0.337391] x86 PAT enabled: cpu 0, old 0x0, new 0x7010600070106
[    0.338150] x86 PAT enabled: cpu 1, old 0x0, new 0x7010600070106
[    0.339696] x86 PAT enabled: cpu 3, old 0x0, new 0x7010600070106
[    0.341205] x86 PAT enabled: cpu 2, old 0x0, new 0x7010600070106
[    0.367423] devtmpfs: initialized
[    0.372524] calling  ipc_ns_init+0x0/0x11 @ 1
[    0.372680] initcall ipc_ns_init+0x0/0x11 returned 0 after 0 usecs
[    0.372684] calling  init_mmap_min_addr+0x0/0x20 @ 1
[    0.372700] initcall init_mmap_min_addr+0x0/0x20 returned 0 after 0 usecs
[    0.372708] calling  init_cpufreq_transition_notifier_list+0x0/0x18 @ 1
[    0.372877] initcall init_cpufreq_transition_notifier_list+0x0/0x18 returned 0 after 0 usecs
[    0.372883] calling  net_ns_init+0x0/0xe9 @ 1
[    0.373761] initcall net_ns_init+0x0/0xe9 returned 0 after 976 usecs
[    0.373875] calling  e820_mark_nvs_memory+0x0/0x42 @ 1
[    0.373975] PM: Registering ACPI NVS region [mem 0x0feff000-0x0fefffff] (4096 bytes)
[    0.374021] initcall e820_mark_nvs_memory+0x0/0x42 returned 0 after 0 usecs
[    0.374024] calling  cpufreq_tsc+0x0/0x29 @ 1
[    0.374037] initcall cpufreq_tsc+0x0/0x29 returned 0 after 0 usecs
[    0.374040] calling  reboot_init+0x0/0x1d @ 1
[    0.374080] initcall reboot_init+0x0/0x1d returned 0 after 976 usecs
[    0.374082] calling  init_lapic_sysfs+0x0/0x1e @ 1
[    0.374168] initcall init_lapic_sysfs+0x0/0x1e returned 0 after 0 usecs
[    0.374172] calling  cpu_hotplug_pm_sync_init+0x0/0x11 @ 1
[    0.374235] initcall cpu_hotplug_pm_sync_init+0x0/0x11 returned 0 after 0 usecs
[    0.374238] calling  alloc_frozen_cpus+0x0/0x7 @ 1
[    0.374246] initcall alloc_frozen_cpus+0x0/0x7 returned 0 after 0 usecs
[    0.374249] calling  ksysfs_init+0x0/0x7a @ 1
[    0.374352] initcall ksysfs_init+0x0/0x7a returned 0 after 0 usecs
[    0.374355] calling  pm_init+0x0/0x83 @ 1
[    0.374420] initcall pm_init+0x0/0x83 returned 0 after 0 usecs
[    0.374422] calling  pm_disk_init+0x0/0x14 @ 1
[    0.374438] initcall pm_disk_init+0x0/0x14 returned 0 after 0 usecs
[    0.374442] calling  swsusp_header_init+0x0/0x30 @ 1
[    0.374499] initcall swsusp_header_init+0x0/0x30 returned 0 after 0 usecs
[    0.374501] calling  init_jiffies_clocksource+0x0/0xf @ 1
[    0.374721] initcall init_jiffies_clocksource+0x0/0xf returned 0 after 0 usecs
[    0.374726] calling  ftrace_mod_cmd_init+0x0/0xf @ 1
[    0.374769] initcall ftrace_mod_cmd_init+0x0/0xf returned 0 after 0 usecs
[    0.374772] calling  init_function_trace+0x0/0x35 @ 1
[    0.374840] initcall init_function_trace+0x0/0x35 returned 0 after 0 usecs
[    0.374842] calling  init_wakeup_tracer+0x0/0x1d @ 1
[    0.374872] initcall init_wakeup_tracer+0x0/0x1d returned 0 after 0 usecs
[    0.374874] calling  event_trace_enable+0x0/0x86 @ 1
[    0.376255] initcall event_trace_enable+0x0/0x86 returned 0 after 1953 usecs
[    0.376260] calling  init_zero_pfn+0x0/0x14 @ 1
[    0.376273] initcall init_zero_pfn+0x0/0x14 returned 0 after 0 usecs
[    0.376276] calling  memory_failure_init+0x0/0x86 @ 1
[    0.376312] initcall memory_failure_init+0x0/0x86 returned 0 after 0 usecs
[    0.376315] calling  fsnotify_init+0x0/0x22 @ 1
[    0.376336] initcall fsnotify_init+0x0/0x22 returned 0 after 0 usecs
[    0.376338] calling  filelock_init+0x0/0x2f @ 1
[    0.376366] initcall filelock_init+0x0/0x2f returned 0 after 0 usecs
[    0.376369] calling  init_script_binfmt+0x0/0x13 @ 1
[    0.376464] initcall init_script_binfmt+0x0/0x13 returned 0 after 0 usecs
[    0.376466] calling  init_elf_binfmt+0x0/0x13 @ 1
[    0.376482] initcall init_elf_binfmt+0x0/0x13 returned 0 after 0 usecs
[    0.376484] calling  debugfs_init+0x0/0x4c @ 1
[    0.376520] initcall debugfs_init+0x0/0x4c returned 0 after 0 usecs
[    0.376522] calling  securityfs_init+0x0/0x43 @ 1
[    0.376552] initcall securityfs_init+0x0/0x43 returned 0 after 0 usecs
[    0.376555] calling  prandom_init+0x0/0xa8 @ 1
[    0.376652] initcall prandom_init+0x0/0xa8 returned 0 after 0 usecs
[    0.376655] calling  test_atomic64+0x0/0x5e6 @ 1
[    0.377215] atomic64 test passed for i586+ platform with CX8 and with SSE
[    0.377225] initcall test_atomic64+0x0/0x5e6 returned 0 after 976 usecs
[    0.377227] calling  sfi_sysfs_init+0x0/0xbd @ 1
[    0.377237] initcall sfi_sysfs_init+0x0/0xbd returned 0 after 0 usecs
[    0.377245] calling  virtio_init+0x0/0x30 @ 1
[    0.377321] initcall virtio_init+0x0/0x30 returned 0 after 0 usecs
[    0.377327] calling  early_resume_init+0x0/0x1b0 @ 1
[    0.377649] RTC time: 15:22:37, date: 07/01/13
[    0.377668] initcall early_resume_init+0x0/0x1b0 returned 0 after 0 usecs
[    0.377671] calling  cpufreq_core_init+0x0/0x97 @ 1
[    0.377733] initcall cpufreq_core_init+0x0/0x97 returned 0 after 0 usecs
[    0.377736] calling  cpuidle_init+0x0/0x38 @ 1
[    0.377831] initcall cpuidle_init+0x0/0x38 returned 0 after 0 usecs
[    0.377834] calling  bsp_pm_check_init+0x0/0x11 @ 1
[    0.377883] initcall bsp_pm_check_init+0x0/0x11 returned 0 after 0 usecs
[    0.377885] calling  sock_init+0x0/0x83 @ 1
[    0.379051] initcall sock_init+0x0/0x83 returned 0 after 976 usecs
[    0.379054] calling  net_inuse_init+0x0/0x22 @ 1
[    0.379135] initcall net_inuse_init+0x0/0x22 returned 0 after 976 usecs
[    0.379138] calling  netpoll_init+0x0/0x2e @ 1
[    0.379150] initcall netpoll_init+0x0/0x2e returned 0 after 0 usecs
[    0.379153] calling  netlink_proto_init+0x0/0x16b @ 1
[    0.379507] NET: Registered protocol family 16
[    0.380563] initcall netlink_proto_init+0x0/0x16b returned 0 after 976 usecs
[    0.380673] calling  olpc_init+0x0/0x14f @ 1
[    0.380696] initcall olpc_init+0x0/0x14f returned 0 after 0 usecs
[    0.380698] calling  bdi_class_init+0x0/0x3c @ 1
[    0.382328] initcall bdi_class_init+0x0/0x3c returned 0 after 1953 usecs
[    0.382332] calling  kobject_uevent_init+0x0/0xf @ 1
[    0.382434] initcall kobject_uevent_init+0x0/0xf returned 0 after 0 usecs
[    0.382437] calling  gpiolib_sysfs_init+0x0/0x74 @ 1
[    0.382561] initcall gpiolib_sysfs_init+0x0/0x74 returned 0 after 0 usecs
[    0.382563] calling  pcibus_class_init+0x0/0x14 @ 1
[    0.382586] initcall pcibus_class_init+0x0/0x14 returned 0 after 0 usecs
[    0.382589] calling  pci_driver_init+0x0/0x14 @ 1
[    0.382632] initcall pci_driver_init+0x0/0x14 returned 0 after 0 usecs
[    0.382637] calling  backlight_class_init+0x0/0x53 @ 1
[    0.382666] initcall backlight_class_init+0x0/0x53 returned 0 after 0 usecs
[    0.382669] calling  tty_class_init+0x0/0x2b @ 1
[    0.382694] initcall tty_class_init+0x0/0x2b returned 0 after 0 usecs
[    0.382696] calling  vtconsole_class_init+0x0/0xc9 @ 1
[    0.383408] initcall vtconsole_class_init+0x0/0xc9 returned 0 after 976 usecs
[    0.383412] calling  wakeup_sources_debugfs_init+0x0/0x2f @ 1
[    0.383516] initcall wakeup_sources_debugfs_init+0x0/0x2f returned 0 after 0 usecs
[    0.383519] calling  regmap_initcall+0x0/0xc @ 1
[    0.383585] initcall regmap_initcall+0x0/0xc returned 0 after 0 usecs
[    0.383589] calling  lguest_devices_init+0x0/0x147 @ 1
[    0.383611] initcall lguest_devices_init+0x0/0x147 returned 0 after 0 usecs
[    0.383613] calling  amd_postcore_init+0x0/0x123 @ 1
[    0.383623] initcall amd_postcore_init+0x0/0x123 returned 0 after 0 usecs
[    0.383732] calling  set_real_mode_permissions+0x0/0x65 @ 1
[    0.385263] initcall set_real_mode_permissions+0x0/0x65 returned 0 after 1953 usecs
[    0.385267] calling  arch_kdebugfs_init+0x0/0x2c8 @ 1
[    0.385435] initcall arch_kdebugfs_init+0x0/0x2c8 returned 0 after 0 usecs
[    0.385439] calling  init_pit_clocksource+0x0/0x36 @ 1
[    0.385451] initcall init_pit_clocksource+0x0/0x36 returned 0 after 0 usecs
[    0.385453] calling  mtrr_if_init+0x0/0x56 @ 1
[    0.385515] initcall mtrr_if_init+0x0/0x56 returned 0 after 0 usecs
[    0.385518] calling  ffh_cstate_init+0x0/0x2a @ 1
[    0.385541] initcall ffh_cstate_init+0x0/0x2a returned 0 after 0 usecs
[    0.385544] calling  kdump_buf_page_init+0x0/0x44 @ 1
[    0.385569] initcall kdump_buf_page_init+0x0/0x44 returned 0 after 0 usecs
[    0.385571] calling  activate_jump_labels+0x0/0x30 @ 1
[    0.385614] initcall activate_jump_labels+0x0/0x30 returned 0 after 0 usecs
[    0.385618] calling  xo1_pm_init+0x0/0x33 @ 1
[    0.386114] initcall xo1_pm_init+0x0/0x33 returned 0 after 976 usecs
[    0.386117] calling  xo1_rtc_init+0x0/0x87 @ 1
[    0.386205] initcall xo1_rtc_init+0x0/0x87 returned 0 after 0 usecs
[    0.386207] calling  xo1_sci_init+0x0/0xf @ 1
[    0.386234] initcall xo1_sci_init+0x0/0xf returned 0 after 0 usecs
[    0.386237] calling  acpi_pci_init+0x0/0x54 @ 1
[    0.386330] ACPI: bus type pci registered
[    0.386407] initcall acpi_pci_init+0x0/0x54 returned 0 after 0 usecs
[    0.386409] calling  dma_bus_init+0x0/0x14 @ 1
[    0.386432] initcall dma_bus_init+0x0/0x14 returned 0 after 0 usecs
[    0.386435] calling  dma_channel_table_init+0x0/0xe8 @ 1
[    0.386492] initcall dma_channel_table_init+0x0/0xe8 returned 0 after 0 usecs
[    0.386494] calling  dmi_id_init+0x0/0x292 @ 1
[    0.386936] initcall dmi_id_init+0x0/0x292 returned 0 after 0 usecs
[    0.386938] calling  pci_arch_init+0x0/0x68 @ 1
[    0.388412] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.388632] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[    0.388692] PCI: Using MMCONFIG for extended config space
[    0.388767] PCI: Using configuration type 1 for base access
[    0.388845] initcall pci_arch_init+0x0/0x68 returned 0 after 1953 usecs
[    0.388991] calling  topology_init+0x0/0x36 @ 1
[    0.389963] initcall topology_init+0x0/0x36 returned 0 after 976 usecs
[    0.389967] calling  mtrr_init_finialize+0x0/0x30 @ 1
[    0.390003] mtrr: your CPUs had inconsistent fixed MTRR settings
[    0.390017] mtrr: your CPUs had inconsistent variable MTRR settings
[    0.390031] mtrr: probably your BIOS does not setup all CPUs.
[    0.390042] mtrr: corrected configuration.
[    0.390057] initcall mtrr_init_finialize+0x0/0x30 returned 0 after 0 usecs
[    0.390060] calling  param_sysfs_init+0x0/0x15e @ 1
[    0.392839] initcall param_sysfs_init+0x0/0x15e returned 0 after 2929 usecs
[    0.392844] calling  pm_sysrq_init+0x0/0x16 @ 1
[    0.392933] initcall pm_sysrq_init+0x0/0x16 returned 0 after 0 usecs
[    0.392939] calling  default_bdi_init+0x0/0x3c @ 1
[    0.393606] initcall default_bdi_init+0x0/0x3c returned 0 after 976 usecs
[    0.393635] calling  mem_cgroup_init+0x0/0x11 @ 1
[    0.393670] initcall mem_cgroup_init+0x0/0x11 returned 0 after 0 usecs
[    0.393676] calling  init_bio+0x0/0xf9 @ 1
[    0.394973] bio: create slab <bio-0> at 0
[    0.395649] initcall init_bio+0x0/0xf9 returned 0 after 1953 usecs
[    0.395653] calling  fsnotify_notification_init+0x0/0x9c @ 1
[    0.395758] initcall fsnotify_notification_init+0x0/0x9c returned 0 after 0 usecs
[    0.395760] calling  cryptomgr_init+0x0/0xf @ 1
[    0.395862] initcall cryptomgr_init+0x0/0xf returned 0 after 0 usecs
[    0.395864] calling  cryptd_init+0x0/0x9d @ 1
[    0.396126] initcall cryptd_init+0x0/0x9d returned 0 after 976 usecs
[    0.396128] calling  blk_settings_init+0x0/0x1d @ 1
[    0.396140] initcall blk_settings_init+0x0/0x1d returned 0 after 0 usecs
[    0.396142] calling  blk_ioc_init+0x0/0x2f @ 1
[    0.396164] initcall blk_ioc_init+0x0/0x2f returned 0 after 0 usecs
[    0.396166] calling  blk_softirq_init+0x0/0x54 @ 1
[    0.396208] initcall blk_softirq_init+0x0/0x54 returned 0 after 0 usecs
[    0.396211] calling  blk_iopoll_setup+0x0/0x54 @ 1
[    0.396250] initcall blk_iopoll_setup+0x0/0x54 returned 0 after 0 usecs
[    0.396253] calling  genhd_device_init+0x0/0x61 @ 1
[    0.396768] initcall genhd_device_init+0x0/0x61 returned 0 after 0 usecs
[    0.396772] calling  blk_dev_integrity_init+0x0/0x2f @ 1
[    0.396835] initcall blk_dev_integrity_init+0x0/0x2f returned 0 after 0 usecs
[    0.396838] calling  gpiolib_debugfs_init+0x0/0x2a @ 1
[    0.396865] initcall gpiolib_debugfs_init+0x0/0x2a returned 0 after 0 usecs
[    0.396868] calling  pwm_debugfs_init+0x0/0x2a @ 1
[    0.396887] initcall pwm_debugfs_init+0x0/0x2a returned 0 after 0 usecs
[    0.396894] calling  pci_slot_init+0x0/0x50 @ 1
[    0.396963] initcall pci_slot_init+0x0/0x50 returned 0 after 0 usecs
[    0.396966] calling  fbmem_init+0x0/0x96 @ 1
[    0.397279] initcall fbmem_init+0x0/0x96 returned 0 after 976 usecs
[    0.397283] calling  acpi_init+0x0/0x287 @ 1
[    0.397685] ACPI: Added _OSI(Module Device)
[    0.397691] ACPI: Added _OSI(Processor Device)
[    0.397693] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.397695] ACPI: Added _OSI(Processor Aggregator Device)
[    0.405040] ACPI: EC: Look up EC in DSDT
[    0.425899] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    0.452778] ACPI: Interpreter enabled
[    0.452827] ACPI: (supports S0 S1 S4 S5)
[    0.453461] ACPI: Using IOAPIC for interrupt routing
[    0.546572] initcall acpi_init+0x0/0x287 returned 0 after 139648 usecs
[    0.546583] calling  dock_init+0x0/0x83 @ 1
[    0.565580] ACPI: No dock devices found.
[    0.565608] initcall dock_init+0x0/0x83 returned 0 after 18554 usecs
[    0.565612] calling  acpi_pci_root_init+0x0/0x2a @ 1
[    0.565751] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.569477] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.569612] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.575685] PCI host bridge to bus 0000:00
[    0.576052] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.576139] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[    0.576145] pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff]
[    0.576148] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
[    0.576151] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
[    0.576154] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
[    0.576157] pci_bus 0000:00: root bus resource [mem 0x10000000-0xfebfffff]
[    0.576174] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
[    0.576178] pci_bus 0000:00: root bus resource [io  0x0d00-0xfeff]
[    0.577239] pci 0000:00:00.0: [8086:7190] type 00 class 0x060000
[    0.579572] pci 0000:00:01.0: [8086:7191] type 01 class 0x060400
[    0.580422] pci 0000:00:07.0: [8086:7110] type 00 class 0x060100
[    0.581173] pci 0000:00:07.1: [8086:7111] type 00 class 0x01018a
[    0.585247] pci 0000:00:07.1: reg 20: [io  0x10c0-0x10cf]
[    0.586716] pci 0000:00:07.3: [8086:7113] type 00 class 0x068000
[    0.587556] pci 0000:00:07.3: quirk: [io  0x1000-0x103f] claimed by PIIX4 ACPI
[    0.587598] pci 0000:00:07.3: quirk: [io  0x1040-0x104f] claimed by PIIX4 SMB
[    0.588050] pci 0000:00:07.7: [15ad:0740] type 00 class 0x088000
[    0.590396] pci 0000:00:07.7: reg 10: [io  0x1080-0x10bf]
[    0.591869] pci 0000:00:07.7: reg 14: [mem 0xc8000000-0xc8001fff 64bit]
[    0.597170] pci 0000:00:0f.0: [15ad:0405] type 00 class 0x030000
[    0.601562] pci 0000:00:0f.0: reg 10: [io  0x10d0-0x10df]
[    0.605659] pci 0000:00:0f.0: reg 14: [mem 0xd0000000-0xd7ffffff pref]
[    0.610050] pci 0000:00:0f.0: reg 18: [mem 0xc8800000-0xc8ffffff]
[    0.629125] pci 0000:00:0f.0: reg 30: [mem 0x00000000-0x00007fff pref]
[    0.629451] pci 0000:00:10.0: [1000:0030] type 00 class 0x010000
[    0.631345] pci 0000:00:10.0: reg 10: [io  0x1400-0x14ff]
[    0.633061] pci 0000:00:10.0: reg 14: [mem 0xc8040000-0xc805ffff 64bit]
[    0.634726] pci 0000:00:10.0: reg 1c: [mem 0xc8020000-0xc803ffff 64bit]
[    0.637873] pci 0000:00:10.0: reg 30: [mem 0x00000000-0x00003fff pref]
[    0.638082] pci 0000:00:11.0: [15ad:0790] type 01 class 0x060401
[    0.638804] pci 0000:00:15.0: [15ad:07a0] type 01 class 0x060400
[    0.639632] pci 0000:00:15.0: PME# supported from D0 D3hot D3cold
[    0.640048] pci 0000:00:15.1: [15ad:07a0] type 01 class 0x060400
[    0.640700] pci 0000:00:15.1: PME# supported from D0 D3hot D3cold
[    0.640925] pci 0000:00:15.2: [15ad:07a0] type 01 class 0x060400
[    0.641573] pci 0000:00:15.2: PME# supported from D0 D3hot D3cold
[    0.641839] pci 0000:00:15.3: [15ad:07a0] type 01 class 0x060400
[    0.642488] pci 0000:00:15.3: PME# supported from D0 D3hot D3cold
[    0.642781] pci 0000:00:15.4: [15ad:07a0] type 01 class 0x060400
[    0.644043] pci 0000:00:15.4: PME# supported from D0 D3hot D3cold
[    0.644379] pci 0000:00:15.5: [15ad:07a0] type 01 class 0x060400
[    0.645383] pci 0000:00:15.5: PME# supported from D0 D3hot D3cold
[    0.645755] pci 0000:00:15.6: [15ad:07a0] type 01 class 0x060400
[    0.646749] pci 0000:00:15.6: PME# supported from D0 D3hot D3cold
[    0.647100] pci 0000:00:15.7: [15ad:07a0] type 01 class 0x060400
[    0.648163] pci 0000:00:15.7: PME# supported from D0 D3hot D3cold
[    0.648533] pci 0000:00:16.0: [15ad:07a0] type 01 class 0x060400
[    0.649517] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.649854] pci 0000:00:16.1: [15ad:07a0] type 01 class 0x060400
[    0.650848] pci 0000:00:16.1: PME# supported from D0 D3hot D3cold
[    0.651191] pci 0000:00:16.2: [15ad:07a0] type 01 class 0x060400
[    0.652209] pci 0000:00:16.2: PME# supported from D0 D3hot D3cold
[    0.652590] pci 0000:00:16.3: [15ad:07a0] type 01 class 0x060400
[    0.653587] pci 0000:00:16.3: PME# supported from D0 D3hot D3cold
[    0.653919] pci 0000:00:16.4: [15ad:07a0] type 01 class 0x060400
[    0.654931] pci 0000:00:16.4: PME# supported from D0 D3hot D3cold
[    0.655276] pci 0000:00:16.5: [15ad:07a0] type 01 class 0x060400
[    0.656281] pci 0000:00:16.5: PME# supported from D0 D3hot D3cold
[    0.656625] pci 0000:00:16.6: [15ad:07a0] type 01 class 0x060400
[    0.657613] pci 0000:00:16.6: PME# supported from D0 D3hot D3cold
[    0.657954] pci 0000:00:16.7: [15ad:07a0] type 01 class 0x060400
[    0.658931] pci 0000:00:16.7: PME# supported from D0 D3hot D3cold
[    0.659355] pci 0000:00:17.0: [15ad:07a0] type 01 class 0x060400
[    0.660405] pci 0000:00:17.0: PME# supported from D0 D3hot D3cold
[    0.660736] pci 0000:00:17.1: [15ad:07a0] type 01 class 0x060400
[    0.661713] pci 0000:00:17.1: PME# supported from D0 D3hot D3cold
[    0.662057] pci 0000:00:17.2: [15ad:07a0] type 01 class 0x060400
[    0.662823] pci 0000:00:17.2: PME# supported from D0 D3hot D3cold
[    0.663059] pci 0000:00:17.3: [15ad:07a0] type 01 class 0x060400
[    0.663716] pci 0000:00:17.3: PME# supported from D0 D3hot D3cold
[    0.663959] pci 0000:00:17.4: [15ad:07a0] type 01 class 0x060400
[    0.664629] pci 0000:00:17.4: PME# supported from D0 D3hot D3cold
[    0.664853] pci 0000:00:17.5: [15ad:07a0] type 01 class 0x060400
[    0.665516] pci 0000:00:17.5: PME# supported from D0 D3hot D3cold
[    0.665740] pci 0000:00:17.6: [15ad:07a0] type 01 class 0x060400
[    0.666402] pci 0000:00:17.6: PME# supported from D0 D3hot D3cold
[    0.666626] pci 0000:00:17.7: [15ad:07a0] type 01 class 0x060400
[    0.667291] pci 0000:00:17.7: PME# supported from D0 D3hot D3cold
[    0.667537] pci 0000:00:18.0: [15ad:07a0] type 01 class 0x060400
[    0.668389] pci 0000:00:18.0: PME# supported from D0 D3hot D3cold
[    0.668727] pci 0000:00:18.1: [15ad:07a0] type 01 class 0x060400
[    0.669729] pci 0000:00:18.1: PME# supported from D0 D3hot D3cold
[    0.670124] pci 0000:00:18.2: [15ad:07a0] type 01 class 0x060400
[    0.671110] pci 0000:00:18.2: PME# supported from D0 D3hot D3cold
[    0.671442] pci 0000:00:18.3: [15ad:07a0] type 01 class 0x060400
[    0.672436] pci 0000:00:18.3: PME# supported from D0 D3hot D3cold
[    0.672767] pci 0000:00:18.4: [15ad:07a0] type 01 class 0x060400
[    0.673769] pci 0000:00:18.4: PME# supported from D0 D3hot D3cold
[    0.674136] pci 0000:00:18.5: [15ad:07a0] type 01 class 0x060400
[    0.675129] pci 0000:00:18.5: PME# supported from D0 D3hot D3cold
[    0.675513] pci 0000:00:18.6: [15ad:07a0] type 01 class 0x060400
[    0.676494] pci 0000:00:18.6: PME# supported from D0 D3hot D3cold
[    0.676870] pci 0000:00:18.7: [15ad:07a0] type 01 class 0x060400
[    0.677869] pci 0000:00:18.7: PME# supported from D0 D3hot D3cold
[    0.679353] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.680194] pci 0000:02:00.0: [15ad:0774] type 00 class 0x0c0300
[    0.684003] pci 0000:02:00.0: reg 20: [io  0x2440-0x245f]
[    0.685820] pci 0000:02:01.0: [1022:2000] type 00 class 0x020000
[    0.686615] pci 0000:02:01.0: reg 10: [io  0x2000-0x207f]
[    0.690727] pci 0000:02:01.0: reg 30: [mem 0x00000000-0x0000ffff pref]
[    0.690891] pci 0000:02:02.0: [1274:1371] type 00 class 0x040100
[    0.691623] pci 0000:02:02.0: reg 10: [io  0x2400-0x243f]
[    0.695605] pci 0000:02:03.0: [15ad:0770] type 00 class 0x0c0320
[    0.696748] pci 0000:02:03.0: reg 10: [mem 0xc9000000-0xc9000fff]
[    0.702045] pci 0000:02:05.0: [1022:2000] type 00 class 0x020000
[    0.702638] pci 0000:02:05.0: reg 10: [io  0x2080-0x20ff]
[    0.705823] pci 0000:02:05.0: reg 30: [mem 0x00000000-0x0000ffff pref]
[    0.706170] pci 0000:00:11.0: PCI bridge to [bus 02] (subtractive decode)
[    0.706231] pci 0000:00:11.0:   bridge window [io  0x2000-0x3fff]
[    0.706278] pci 0000:00:11.0:   bridge window [mem 0xc9000000-0xca3fffff]
[    0.706384] pci 0000:00:11.0:   bridge window [mem 0xd8400000-0xd89fffff 64bit pref]
[    0.706423] pci 0000:00:11.0:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[    0.706427] pci 0000:00:11.0:   bridge window [mem 0x000cc000-0x000cffff] (subtractive decode)
[    0.706429] pci 0000:00:11.0:   bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode)
[    0.706431] pci 0000:00:11.0:   bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode)
[    0.706434] pci 0000:00:11.0:   bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode)
[    0.706436] pci 0000:00:11.0:   bridge window [mem 0x10000000-0xfebfffff] (subtractive decode)
[    0.706438] pci 0000:00:11.0:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
[    0.706443] pci 0000:00:11.0:   bridge window [io  0x0d00-0xfeff] (subtractive decode)
[    0.706996] pci 0000:00:15.0: PCI bridge to [bus 03]
[    0.707018] pci 0000:00:15.0:   bridge window [io  0x4000-0x4fff]
[    0.707041] pci 0000:00:15.0:   bridge window [mem 0xca400000-0xca4fffff]
[    0.707091] pci 0000:00:15.0:   bridge window [mem 0xd8a00000-0xd8afffff 64bit pref]
[    0.707529] pci 0000:00:15.1: PCI bridge to [bus 04]
[    0.707551] pci 0000:00:15.1:   bridge window [io  0x8000-0x8fff]
[    0.707571] pci 0000:00:15.1:   bridge window [mem 0xca800000-0xca8fffff]
[    0.707609] pci 0000:00:15.1:   bridge window [mem 0xd8e00000-0xd8efffff 64bit pref]
[    0.708051] pci 0000:00:15.2: PCI bridge to [bus 05]
[    0.708073] pci 0000:00:15.2:   bridge window [io  0xc000-0xcfff]
[    0.708093] pci 0000:00:15.2:   bridge window [mem 0xcac00000-0xcacfffff]
[    0.708132] pci 0000:00:15.2:   bridge window [mem 0xd9200000-0xd92fffff 64bit pref]
[    0.708554] pci 0000:00:15.3: PCI bridge to [bus 06]
[    0.708593] pci 0000:00:15.3:   bridge window [mem 0xcb000000-0xcb0fffff]
[    0.708631] pci 0000:00:15.3:   bridge window [mem 0xd9600000-0xd96fffff 64bit pref]
[    0.709086] pci 0000:00:15.4: PCI bridge to [bus 07]
[    0.709132] pci 0000:00:15.4:   bridge window [mem 0xcb400000-0xcb4fffff]
[    0.709170] pci 0000:00:15.4:   bridge window [mem 0xd9a00000-0xd9afffff 64bit pref]
[    0.709594] pci 0000:00:15.5: PCI bridge to [bus 08]
[    0.709633] pci 0000:00:15.5:   bridge window [mem 0xcb800000-0xcb8fffff]
[    0.709671] pci 0000:00:15.5:   bridge window [mem 0xd9e00000-0xd9efffff 64bit pref]
[    0.710111] pci 0000:00:15.6: PCI bridge to [bus 09]
[    0.710149] pci 0000:00:15.6:   bridge window [mem 0xcbc00000-0xcbcfffff]
[    0.710187] pci 0000:00:15.6:   bridge window [mem 0xda200000-0xda2fffff 64bit pref]
[    0.710609] pci 0000:00:15.7: PCI bridge to [bus 0a]
[    0.710647] pci 0000:00:15.7:   bridge window [mem 0xcc000000-0xcc0fffff]
[    0.710685] pci 0000:00:15.7:   bridge window [mem 0xda600000-0xda6fffff 64bit pref]
[    0.711124] pci 0000:00:16.0: PCI bridge to [bus 0b]
[    0.711146] pci 0000:00:16.0:   bridge window [io  0x5000-0x5fff]
[    0.711166] pci 0000:00:16.0:   bridge window [mem 0xca500000-0xca5fffff]
[    0.711204] pci 0000:00:16.0:   bridge window [mem 0xd8b00000-0xd8bfffff 64bit pref]
[    0.711626] pci 0000:00:16.1: PCI bridge to [bus 0c]
[    0.711647] pci 0000:00:16.1:   bridge window [io  0x9000-0x9fff]
[    0.711668] pci 0000:00:16.1:   bridge window [mem 0xca900000-0xca9fffff]
[    0.711706] pci 0000:00:16.1:   bridge window [mem 0xd8f00000-0xd8ffffff 64bit pref]
[    0.712156] pci 0000:00:16.2: PCI bridge to [bus 0d]
[    0.712178] pci 0000:00:16.2:   bridge window [io  0xd000-0xdfff]
[    0.712199] pci 0000:00:16.2:   bridge window [mem 0xcad00000-0xcadfffff]
[    0.712237] pci 0000:00:16.2:   bridge window [mem 0xd9300000-0xd93fffff 64bit pref]
[    0.712661] pci 0000:00:16.3: PCI bridge to [bus 0e]
[    0.712699] pci 0000:00:16.3:   bridge window [mem 0xcb100000-0xcb1fffff]
[    0.712737] pci 0000:00:16.3:   bridge window [mem 0xd9700000-0xd97fffff 64bit pref]
[    0.713171] pci 0000:00:16.4: PCI bridge to [bus 0f]
[    0.713209] pci 0000:00:16.4:   bridge window [mem 0xcb500000-0xcb5fffff]
[    0.713247] pci 0000:00:16.4:   bridge window [mem 0xd9b00000-0xd9bfffff 64bit pref]
[    0.713669] pci 0000:00:16.5: PCI bridge to [bus 10]
[    0.713707] pci 0000:00:16.5:   bridge window [mem 0xcb900000-0xcb9fffff]
[    0.713745] pci 0000:00:16.5:   bridge window [mem 0xd9f00000-0xd9ffffff 64bit pref]
[    0.714185] pci 0000:00:16.6: PCI bridge to [bus 11]
[    0.714224] pci 0000:00:16.6:   bridge window [mem 0xcbd00000-0xcbdfffff]
[    0.714262] pci 0000:00:16.6:   bridge window [mem 0xda300000-0xda3fffff 64bit pref]
[    0.714689] pci 0000:00:16.7: PCI bridge to [bus 12]
[    0.714727] pci 0000:00:16.7:   bridge window [mem 0xcc100000-0xcc1fffff]
[    0.714765] pci 0000:00:16.7:   bridge window [mem 0xda700000-0xda7fffff 64bit pref]
[    0.715202] pci 0000:00:17.0: PCI bridge to [bus 13]
[    0.715223] pci 0000:00:17.0:   bridge window [io  0x6000-0x6fff]
[    0.715244] pci 0000:00:17.0:   bridge window [mem 0xca600000-0xca6fffff]
[    0.715282] pci 0000:00:17.0:   bridge window [mem 0xd8c00000-0xd8cfffff 64bit pref]
[    0.715758] pci 0000:00:17.1: PCI bridge to [bus 14]
[    0.715780] pci 0000:00:17.1:   bridge window [io  0xa000-0xafff]
[    0.715800] pci 0000:00:17.1:   bridge window [mem 0xcaa00000-0xcaafffff]
[    0.715845] pci 0000:00:17.1:   bridge window [mem 0xd9000000-0xd90fffff 64bit pref]
[    0.716284] pci 0000:00:17.2: PCI bridge to [bus 15]
[    0.716305] pci 0000:00:17.2:   bridge window [io  0xe000-0xefff]
[    0.716326] pci 0000:00:17.2:   bridge window [mem 0xcae00000-0xcaefffff]
[    0.716364] pci 0000:00:17.2:   bridge window [mem 0xd9400000-0xd94fffff 64bit pref]
[    0.716785] pci 0000:00:17.3: PCI bridge to [bus 16]
[    0.716831] pci 0000:00:17.3:   bridge window [mem 0xcb200000-0xcb2fffff]
[    0.716874] pci 0000:00:17.3:   bridge window [mem 0xd9800000-0xd98fffff 64bit pref]
[    0.717309] pci 0000:00:17.4: PCI bridge to [bus 17]
[    0.717348] pci 0000:00:17.4:   bridge window [mem 0xcb600000-0xcb6fffff]
[    0.717389] pci 0000:00:17.4:   bridge window [mem 0xd9c00000-0xd9cfffff 64bit pref]
[    0.717821] pci 0000:00:17.5: PCI bridge to [bus 18]
[    0.717861] pci 0000:00:17.5:   bridge window [mem 0xcba00000-0xcbafffff]
[    0.717900] pci 0000:00:17.5:   bridge window [mem 0xda000000-0xda0fffff 64bit pref]
[    0.718331] pci 0000:00:17.6: PCI bridge to [bus 19]
[    0.718370] pci 0000:00:17.6:   bridge window [mem 0xcbe00000-0xcbefffff]
[    0.718408] pci 0000:00:17.6:   bridge window [mem 0xda400000-0xda4fffff 64bit pref]
[    0.718847] pci 0000:00:17.7: PCI bridge to [bus 1a]
[    0.718886] pci 0000:00:17.7:   bridge window [mem 0xcc200000-0xcc2fffff]
[    0.718932] pci 0000:00:17.7:   bridge window [mem 0xda800000-0xda8fffff 64bit pref]
[    0.719355] pci 0000:00:18.0: PCI bridge to [bus 1b]
[    0.719376] pci 0000:00:18.0:   bridge window [io  0x7000-0x7fff]
[    0.719397] pci 0000:00:18.0:   bridge window [mem 0xca700000-0xca7fffff]
[    0.719434] pci 0000:00:18.0:   bridge window [mem 0xd8d00000-0xd8dfffff 64bit pref]
[    0.719865] pci 0000:00:18.1: PCI bridge to [bus 1c]
[    0.719886] pci 0000:00:18.1:   bridge window [io  0xb000-0xbfff]
[    0.719906] pci 0000:00:18.1:   bridge window [mem 0xcab00000-0xcabfffff]
[    0.719953] pci 0000:00:18.1:   bridge window [mem 0xd9100000-0xd91fffff 64bit pref]
[    0.720376] pci 0000:00:18.2: PCI bridge to [bus 1d]
[    0.720397] pci 0000:00:18.2:   bridge window [io  0xf000-0xffff]
[    0.720418] pci 0000:00:18.2:   bridge window [mem 0xcaf00000-0xcaffffff]
[    0.720456] pci 0000:00:18.2:   bridge window [mem 0xd9500000-0xd95fffff 64bit pref]
[    0.720886] pci 0000:00:18.3: PCI bridge to [bus 1e]
[    0.720934] pci 0000:00:18.3:   bridge window [mem 0xcb300000-0xcb3fffff]
[    0.720972] pci 0000:00:18.3:   bridge window [mem 0xd9900000-0xd99fffff 64bit pref]
[    0.721395] pci 0000:00:18.4: PCI bridge to [bus 1f]
[    0.721433] pci 0000:00:18.4:   bridge window [mem 0xcb700000-0xcb7fffff]
[    0.721471] pci 0000:00:18.4:   bridge window [mem 0xd9d00000-0xd9dfffff 64bit pref]
[    0.721901] pci 0000:00:18.5: PCI bridge to [bus 20]
[    0.721949] pci 0000:00:18.5:   bridge window [mem 0xcbb00000-0xcbbfffff]
[    0.721987] pci 0000:00:18.5:   bridge window [mem 0xda100000-0xda1fffff 64bit pref]
[    0.722409] pci 0000:00:18.6: PCI bridge to [bus 21]
[    0.722448] pci 0000:00:18.6:   bridge window [mem 0xcbf00000-0xcbffffff]
[    0.722486] pci 0000:00:18.6:   bridge window [mem 0xda500000-0xda5fffff 64bit pref]
[    0.722924] pci 0000:00:18.7: PCI bridge to [bus 22]
[    0.722964] pci 0000:00:18.7:   bridge window [mem 0xcc300000-0xcc3fffff]
[    0.723002] pci 0000:00:18.7:   bridge window [mem 0xda900000-0xda9fffff 64bit pref]
[    0.725317] pci_bus 0000:00: on NUMA node 0
[    0.726658]  pci0000:00: Requesting ACPI _OSC control (0x1d)
[    0.727392]  pci0000:00: ACPI _OSC control (0x15) granted
[    0.734522] initcall acpi_pci_root_init+0x0/0x2a returned 0 after 148437 usecs
[    0.734527] calling  acpi_pci_link_init+0x0/0x3a @ 1
[    0.734945] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 *9 10 11 14 15)
[    0.735144] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 *11 14 15)
[    0.735227] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 *10 11 14 15)
[    0.735302] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 *5 6 7 9 10 11 14 15)
[    0.735364] initcall acpi_pci_link_init+0x0/0x3a returned 0 after 976 usecs
[    0.735369] calling  pnp_init+0x0/0x14 @ 1
[    0.735410] initcall pnp_init+0x0/0x14 returned 0 after 0 usecs
[    0.735412] calling  misc_init+0x0/0xad @ 1
[    0.735483] initcall misc_init+0x0/0xad returned 0 after 0 usecs
[    0.735485] calling  vga_arb_device_init+0x0/0xd3 @ 1
[    0.738698] vgaarb: device added: PCI:0000:00:0f.0,decodes=io+mem,owns=io+mem,locks=none
[    0.738755] vgaarb: loaded
[    0.738784] vgaarb: bridge control possible 0000:00:0f.0
[    0.738804] initcall vga_arb_device_init+0x0/0xd3 returned 0 after 2929 usecs
[    0.738813] calling  cn_init+0x0/0xb0 @ 1
[    0.738988] initcall cn_init+0x0/0xb0 returned 0 after 976 usecs
[    0.738992] calling  init_scsi+0x0/0x90 @ 1
[    0.740131] SCSI subsystem initialized
[    0.740147] initcall init_scsi+0x0/0x90 returned 0 after 976 usecs
[    0.740150] calling  ata_init+0x0/0x29f @ 1
[    0.740365] ACPI: bus type scsi registered
[    0.741174] libata version 3.00 loaded.
[    0.741191] initcall ata_init+0x0/0x29f returned 0 after 976 usecs
[    0.741195] calling  phy_init+0x0/0x28 @ 1
[    0.741433] initcall phy_init+0x0/0x28 returned 0 after 0 usecs
[    0.741438] calling  init_pcmcia_cs+0x0/0x32 @ 1
[    0.741484] initcall init_pcmcia_cs+0x0/0x32 returned 0 after 0 usecs
[    0.741487] calling  usb_init+0x0/0x155 @ 1
[    0.741626] ACPI: bus type usb registered
[    0.742137] usbcore: registered new interface driver usbfs
[    0.742534] usbcore: registered new interface driver hub
[    0.742856] usbcore: registered new device driver usb
[    0.742884] initcall usb_init+0x0/0x155 returned 0 after 976 usecs
[    0.742888] calling  serio_init+0x0/0x33 @ 1
[    0.742991] initcall serio_init+0x0/0x33 returned 0 after 976 usecs
[    0.742995] calling  input_init+0x0/0xf9 @ 1
[    0.743146] initcall input_init+0x0/0xf9 returned 0 after 0 usecs
[    0.743150] calling  rtc_init+0x0/0x5f @ 1
[    0.743300] initcall rtc_init+0x0/0x5f returned 0 after 0 usecs
[    0.743304] calling  power_supply_class_init+0x0/0x35 @ 1
[    0.743444] initcall power_supply_class_init+0x0/0x35 returned 0 after 0 usecs
[    0.743448] calling  hwmon_init+0x0/0xea @ 1
[    0.743545] initcall hwmon_init+0x0/0xea returned 0 after 0 usecs
[    0.743549] calling  watchdog_init+0x0/0x55 @ 1
[    0.743627] initcall watchdog_init+0x0/0x55 returned 0 after 0 usecs
[    0.743631] calling  md_init+0x0/0x19d @ 1
[    0.744091] initcall md_init+0x0/0x19d returned 0 after 976 usecs
[    0.744104] calling  leds_init+0x0/0x39 @ 1
[    0.744185] initcall leds_init+0x0/0x39 returned 0 after 0 usecs
[    0.744189] calling  iommu_init+0x0/0x47 @ 1
[    0.744271] initcall iommu_init+0x0/0x47 returned 0 after 0 usecs
[    0.744275] calling  pci_subsys_init+0x0/0x44 @ 1
[    0.744308] PCI: Using ACPI for IRQ routing
[    0.814669] PCI: pci_cache_line_size set to 64 bytes
[    0.814932] pci 0000:00:18.2: no compatible bridge window for [io  0xf000-0xffff]
[    0.816605] e820: reserve RAM buffer [mem 0x0009f800-0x0009ffff]
[    0.816703] e820: reserve RAM buffer [mem 0x0fef0000-0x0fffffff]
[    0.816774] initcall pci_subsys_init+0x0/0x44 returned 0 after 70312 usecs
[    0.816778] calling  proto_init+0x0/0xf @ 1
[    0.816821] initcall proto_init+0x0/0xf returned 0 after 0 usecs
[    0.816824] calling  net_dev_init+0x0/0x1d2 @ 1
[    0.821367] initcall net_dev_init+0x0/0x1d2 returned 0 after 4882 usecs
[    0.821372] calling  neigh_init+0x0/0xa4 @ 1
[    0.821446] initcall neigh_init+0x0/0xa4 returned 0 after 0 usecs
[    0.821449] calling  fib_rules_init+0x0/0xbd @ 1
[    0.821612] initcall fib_rules_init+0x0/0xbd returned 0 after 0 usecs
[    0.821615] calling  pktsched_init+0x0/0x117 @ 1
[    0.821853] initcall pktsched_init+0x0/0x117 returned 0 after 0 usecs
[    0.821856] calling  tc_filter_init+0x0/0x6a @ 1
[    0.821916] initcall tc_filter_init+0x0/0x6a returned 0 after 976 usecs
[    0.821920] calling  tc_action_init+0x0/0x6a @ 1
[    0.821967] initcall tc_action_init+0x0/0x6a returned 0 after 0 usecs
[    0.821970] calling  genl_init+0x0/0x6c @ 1
[    0.822982] initcall genl_init+0x0/0x6c returned 0 after 976 usecs
[    0.822986] calling  cipso_v4_init+0x0/0x58 @ 1
[    0.823086] initcall cipso_v4_init+0x0/0x58 returned 0 after 0 usecs
[    0.823089] calling  wireless_nlevent_init+0x0/0xf @ 1
[    0.823168] initcall wireless_nlevent_init+0x0/0xf returned 0 after 0 usecs
[    0.823171] calling  netlbl_init+0x0/0x7d @ 1
[    0.823185] NetLabel: Initializing
[    0.823197] NetLabel:  domain hash size = 128
[    0.823207] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.824185] NetLabel:  unlabeled traffic allowed by default
[    0.824202] initcall netlbl_init+0x0/0x7d returned 0 after 976 usecs
[    0.824326] calling  hpet_late_init+0x0/0xd3 @ 1
[    0.824578] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
[    0.824644] hpet0: 16 comparators, 64-bit 14.318180 MHz counter
[    0.827857] initcall hpet_late_init+0x0/0xd3 returned 0 after 2929 usecs
[    0.827860] calling  init_amd_nbs+0x0/0xac @ 1
[    0.828038] initcall init_amd_nbs+0x0/0xac returned 0 after 976 usecs
[    0.828041] calling  clocksource_done_booting+0x0/0x4f @ 1
[    0.828185] Switching to clocksource hpet
[    0.829781] initcall clocksource_done_booting+0x0/0x4f returned 0 after 655 usecs
[    0.829848] calling  ftrace_init_debugfs+0x0/0x1f9 @ 1
[    0.833743] initcall ftrace_init_debugfs+0x0/0x1f9 returned 0 after 1473 usecs
[    0.833747] calling  tracer_init_debugfs+0x0/0x3d5 @ 1
[    0.834397] initcall tracer_init_debugfs+0x0/0x3d5 returned 0 after 630 usecs
[    0.834400] calling  init_trace_printk_function_export+0x0/0x33 @ 1
[    0.834435] initcall init_trace_printk_function_export+0x0/0x33 returned 0 after 26 usecs
[    0.834437] calling  event_trace_init+0x0/0x27c @ 1
[    0.855622] initcall event_trace_init+0x0/0x27c returned 0 after 20684 usecs
[    0.855627] calling  init_kprobe_trace+0x0/0x90 @ 1
[    0.855700] initcall init_kprobe_trace+0x0/0x90 returned 0 after 67 usecs
[    0.855702] calling  init_uprobe_trace+0x0/0x59 @ 1
[    0.855746] initcall init_uprobe_trace+0x0/0x59 returned 0 after 39 usecs
[    0.855748] calling  init_pipe_fs+0x0/0x3d @ 1
[    0.856099] initcall init_pipe_fs+0x0/0x3d returned 0 after 338 usecs
[    0.856101] calling  eventpoll_init+0x0/0xec @ 1
[    0.856965] initcall eventpoll_init+0x0/0xec returned 0 after 840 usecs
[    0.856967] calling  anon_inode_init+0x0/0x52 @ 1
[    0.857107] initcall anon_inode_init+0x0/0x52 returned 0 after 132 usecs
[    0.857109] calling  blk_scsi_ioctl_init+0x0/0x288 @ 1
[    0.857197] initcall blk_scsi_ioctl_init+0x0/0x288 returned 0 after 82 usecs
[    0.857199] calling  dynamic_debug_init_debugfs+0x0/0x6a @ 1
[    0.857242] initcall dynamic_debug_init_debugfs+0x0/0x6a returned 0 after 38 usecs
[    0.857246] calling  acpi_event_init+0x0/0x4b @ 1
[    0.858733] initcall acpi_event_init+0x0/0x4b returned 0 after 1447 usecs
[    0.858736] calling  pnp_system_init+0x0/0xf @ 1
[    0.860210] initcall pnp_system_init+0x0/0xf returned 0 after 1436 usecs
[    0.860213] calling  pnpacpi_init+0x0/0x88 @ 1
[    0.860232] pnp: PnP ACPI init
[    0.861549] ACPI: bus type pnp registered
[    0.875038] system 00:00: [io  0x1000-0x103f] has been reserved
[    0.875087] system 00:00: [io  0x1040-0x104f] has been reserved
[    0.875096] system 00:00: [io  0x0cf0-0x0cf1] has been reserved
[    0.876010] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.876348] pnp 00:01: [dma 4]
[    0.876414] pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
[    0.876585] pnp 00:02: Plug and Play ACPI device, IDs PNP0001 (active)
[    0.878309] pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.878349] pnp 00:04: Plug and Play ACPI device, IDs PNP0800 (active)
[    0.878441] pnp 00:05: Plug and Play ACPI device, IDs PNP0303 (active)
[    0.878487] pnp 00:06: Plug and Play ACPI device, IDs PNP0f13 (active)
[    0.881138] system 00:07: [mem 0xfed00000-0xfed003ff] has been reserved
[    0.881172] system 00:07: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
[    0.893792] pnp 00:08: Plug and Play ACPI device, IDs PNP0400 (active)
[    0.901934] pnp 00:09: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.909294] pnp 00:0a: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.917801] pnp 00:0b: [dma 2]
[    0.919713] pnp 00:0b: Plug and Play ACPI device, IDs PNP0700 (active)
[    0.920930] system 00:0c: [io  0x1060-0x107f] has been reserved
[    0.920935] system 00:0c: [mem 0xe0000000-0xefffffff] has been reserved
[    0.920937] system 00:0c: [mem 0xc8200000-0xc83fffff] has been reserved
[    0.920943] system 00:0c: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.971853] pnp: PnP ACPI: found 13 devices
[    0.971905] ACPI: ACPI bus type pnp unregistered
[    0.971927] initcall pnpacpi_init+0x0/0x88 returned 0 after 109108 usecs
[    0.971931] calling  chr_dev_init+0x0/0xc3 @ 1
[    0.977680] initcall chr_dev_init+0x0/0xc3 returned 0 after 5610 usecs
[    0.977684] calling  firmware_class_init+0x0/0xcb @ 1
[    0.977819] initcall firmware_class_init+0x0/0xcb returned 0 after 128 usecs
[    0.977822] calling  init_pcmcia_bus+0x0/0x63 @ 1
[    0.978218] initcall init_pcmcia_bus+0x0/0x63 returned 0 after 383 usecs
[    0.978221] calling  thermal_init+0x0/0x63 @ 1
[    0.978295] initcall thermal_init+0x0/0x63 returned 0 after 69 usecs
[    0.978298] calling  thermal_gov_fair_share_init+0x0/0xf @ 1
[    0.978446] initcall thermal_gov_fair_share_init+0x0/0xf returned 0 after 141 usecs
[    0.978449] calling  thermal_gov_step_wise_init+0x0/0xf @ 1
[    0.978516] initcall thermal_gov_step_wise_init+0x0/0xf returned 0 after 62 usecs
[    0.978519] calling  cpufreq_gov_performance_init+0x0/0xf @ 1
[    0.978659] initcall cpufreq_gov_performance_init+0x0/0xf returned 0 after 133 usecs
[    0.978662] calling  cpufreq_gov_dbs_init+0x0/0x6c @ 1
[    0.978815] initcall cpufreq_gov_dbs_init+0x0/0x6c returned 0 after 146 usecs
[    0.978818] calling  init_acpi_pm_clocksource+0x0/0x19a @ 1
[    1.013978] initcall init_acpi_pm_clocksource+0x0/0x19a returned 0 after 34335 usecs
[    1.013983] calling  pcibios_assign_resources+0x0/0xb4 @ 1
[    1.015121] pci 0000:00:15.3: bridge window [io  0x1000-0x0fff] to [bus 06] add_size 1000
[    1.015183] pci 0000:00:15.4: bridge window [io  0x1000-0x0fff] to [bus 07] add_size 1000
[    1.015241] pci 0000:00:15.5: bridge window [io  0x1000-0x0fff] to [bus 08] add_size 1000
[    1.015297] pci 0000:00:15.6: bridge window [io  0x1000-0x0fff] to [bus 09] add_size 1000
[    1.015352] pci 0000:00:15.7: bridge window [io  0x1000-0x0fff] to [bus 0a] add_size 1000
[    1.015573] pci 0000:00:16.3: bridge window [io  0x1000-0x0fff] to [bus 0e] add_size 1000
[    1.015649] pci 0000:00:16.4: bridge window [io  0x1000-0x0fff] to [bus 0f] add_size 1000
[    1.015707] pci 0000:00:16.5: bridge window [io  0x1000-0x0fff] to [bus 10] add_size 1000
[    1.015762] pci 0000:00:16.6: bridge window [io  0x1000-0x0fff] to [bus 11] add_size 1000
[    1.015818] pci 0000:00:16.7: bridge window [io  0x1000-0x0fff] to [bus 12] add_size 1000
[    1.016028] pci 0000:00:17.3: bridge window [io  0x1000-0x0fff] to [bus 16] add_size 1000
[    1.016083] pci 0000:00:17.4: bridge window [io  0x1000-0x0fff] to [bus 17] add_size 1000
[    1.016140] pci 0000:00:17.5: bridge window [io  0x1000-0x0fff] to [bus 18] add_size 1000
[    1.016195] pci 0000:00:17.6: bridge window [io  0x1000-0x0fff] to [bus 19] add_size 1000
[    1.016250] pci 0000:00:17.7: bridge window [io  0x1000-0x0fff] to [bus 1a] add_size 1000
[    1.016410] pci 0000:00:18.2: bridge window [io  0x1000-0x0fff] to [bus 1d] add_size 1000
[    1.016465] pci 0000:00:18.3: bridge window [io  0x1000-0x0fff] to [bus 1e] add_size 1000
[    1.016520] pci 0000:00:18.4: bridge window [io  0x1000-0x0fff] to [bus 1f] add_size 1000
[    1.016577] pci 0000:00:18.5: bridge window [io  0x1000-0x0fff] to [bus 20] add_size 1000
[    1.016645] pci 0000:00:18.6: bridge window [io  0x1000-0x0fff] to [bus 21] add_size 1000
[    1.016700] pci 0000:00:18.7: bridge window [io  0x1000-0x0fff] to [bus 22] add_size 1000
[    1.016986] pci 0000:00:15.3: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
[    1.016994] pci 0000:00:15.4: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
[    1.016996] pci 0000:00:15.5: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
[    1.016998] pci 0000:00:15.6: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
[    1.017000] pci 0000:00:15.7: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
[    1.017002] pci 0000:00:16.3: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
[    1.017004] pci 0000:00:16.4: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
[    1.017006] pci 0000:00:16.5: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
[    1.017008] pci 0000:00:16.6: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
[    1.017010] pci 0000:00:16.7: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
[    1.017012] pci 0000:00:17.3: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
[    1.017014] pci 0000:00:17.4: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
[    1.017018] pci 0000:00:17.5: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
[    1.017020] pci 0000:00:17.6: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
[    1.017022] pci 0000:00:17.7: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
[    1.017024] pci 0000:00:18.2: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
[    1.017026] pci 0000:00:18.3: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
[    1.017028] pci 0000:00:18.4: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
[    1.017030] pci 0000:00:18.5: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
[    1.017031] pci 0000:00:18.6: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
[    1.017033] pci 0000:00:18.7: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
[    1.017436] pci 0000:00:0f.0: BAR 6: assigned [mem 0x10000000-0x10007fff pref]
[    1.017570] pci 0000:00:10.0: BAR 6: assigned [mem 0x10008000-0x1000bfff pref]
[    1.017631] pci 0000:00:15.3: BAR 13: can't assign io (size 0x1000)
[    1.017713] pci 0000:00:15.4: BAR 13: can't assign io (size 0x1000)
[    1.017716] pci 0000:00:15.5: BAR 13: can't assign io (size 0x1000)
[    1.017719] pci 0000:00:15.6: BAR 13: can't assign io (size 0x1000)
[    1.017721] pci 0000:00:15.7: BAR 13: can't assign io (size 0x1000)
[    1.017723] pci 0000:00:16.3: BAR 13: can't assign io (size 0x1000)
[    1.017726] pci 0000:00:16.4: BAR 13: can't assign io (size 0x1000)
[    1.017728] pci 0000:00:16.5: BAR 13: can't assign io (size 0x1000)
[    1.017731] pci 0000:00:16.6: BAR 13: can't assign io (size 0x1000)
[    1.017733] pci 0000:00:16.7: BAR 13: can't assign io (size 0x1000)
[    1.017735] pci 0000:00:17.3: BAR 13: can't assign io (size 0x1000)
[    1.017738] pci 0000:00:17.4: BAR 13: can't assign io (size 0x1000)
[    1.017740] pci 0000:00:17.5: BAR 13: can't assign io (size 0x1000)
[    1.017743] pci 0000:00:17.6: BAR 13: can't assign io (size 0x1000)
[    1.017745] pci 0000:00:17.7: BAR 13: can't assign io (size 0x1000)
[    1.017747] pci 0000:00:18.2: BAR 13: can't assign io (size 0x1000)
[    1.017750] pci 0000:00:18.3: BAR 13: can't assign io (size 0x1000)
[    1.017752] pci 0000:00:18.4: BAR 13: can't assign io (size 0x1000)
[    1.017754] pci 0000:00:18.5: BAR 13: can't assign io (size 0x1000)
[    1.017757] pci 0000:00:18.6: BAR 13: can't assign io (size 0x1000)
[    1.017759] pci 0000:00:18.7: BAR 13: can't assign io (size 0x1000)
[    1.017948] pci 0000:00:01.0: PCI bridge to [bus 01]
[    1.018260] pci 0000:02:01.0: BAR 6: assigned [mem 0xd8400000-0xd840ffff pref]
[    1.018267] pci 0000:02:05.0: BAR 6: assigned [mem 0xd8410000-0xd841ffff pref]
[    1.018273] pci 0000:00:11.0: PCI bridge to [bus 02]
[    1.018319] pci 0000:00:11.0:   bridge window [io  0x2000-0x3fff]
[    1.018369] pci 0000:00:11.0:   bridge window [mem 0xc9000000-0xca3fffff]
[    1.018422] pci 0000:00:11.0:   bridge window [mem 0xd8400000-0xd89fffff 64bit pref]
[    1.018465] pci 0000:00:15.0: PCI bridge to [bus 03]
[    1.018477] pci 0000:00:15.0:   bridge window [io  0x4000-0x4fff]
[    1.018505] pci 0000:00:15.0:   bridge window [mem 0xca400000-0xca4fffff]
[    1.018525] pci 0000:00:15.0:   bridge window [mem 0xd8a00000-0xd8afffff 64bit pref]
[    1.018624] pci 0000:00:15.1: PCI bridge to [bus 04]
[    1.018638] pci 0000:00:15.1:   bridge window [io  0x8000-0x8fff]
[    1.018667] pci 0000:00:15.1:   bridge window [mem 0xca800000-0xca8fffff]
[    1.018687] pci 0000:00:15.1:   bridge window [mem 0xd8e00000-0xd8efffff 64bit pref]
[    1.018746] pci 0000:00:15.2: PCI bridge to [bus 05]
[    1.018759] pci 0000:00:15.2:   bridge window [io  0xc000-0xcfff]
[    1.018787] pci 0000:00:15.2:   bridge window [mem 0xcac00000-0xcacfffff]
[    1.018807] pci 0000:00:15.2:   bridge window [mem 0xd9200000-0xd92fffff 64bit pref]
[    1.018862] pci 0000:00:15.3: PCI bridge to [bus 06]
[    1.018891] pci 0000:00:15.3:   bridge window [mem 0xcb000000-0xcb0fffff]
[    1.018912] pci 0000:00:15.3:   bridge window [mem 0xd9600000-0xd96fffff 64bit pref]
[    1.018965] pci 0000:00:15.4: PCI bridge to [bus 07]
[    1.018995] pci 0000:00:15.4:   bridge window [mem 0xcb400000-0xcb4fffff]
[    1.019015] pci 0000:00:15.4:   bridge window [mem 0xd9a00000-0xd9afffff 64bit pref]
[    1.019068] pci 0000:00:15.5: PCI bridge to [bus 08]
[    1.019098] pci 0000:00:15.5:   bridge window [mem 0xcb800000-0xcb8fffff]
[    1.019118] pci 0000:00:15.5:   bridge window [mem 0xd9e00000-0xd9efffff 64bit pref]
[    1.019178] pci 0000:00:15.6: PCI bridge to [bus 09]
[    1.019207] pci 0000:00:15.6:   bridge window [mem 0xcbc00000-0xcbcfffff]
[    1.019228] pci 0000:00:15.6:   bridge window [mem 0xda200000-0xda2fffff 64bit pref]
[    1.019282] pci 0000:00:15.7: PCI bridge to [bus 0a]
[    1.019311] pci 0000:00:15.7:   bridge window [mem 0xcc000000-0xcc0fffff]
[    1.019331] pci 0000:00:15.7:   bridge window [mem 0xda600000-0xda6fffff 64bit pref]
[    1.019384] pci 0000:00:16.0: PCI bridge to [bus 0b]
[    1.019397] pci 0000:00:16.0:   bridge window [io  0x5000-0x5fff]
[    1.019426] pci 0000:00:16.0:   bridge window [mem 0xca500000-0xca5fffff]
[    1.019446] pci 0000:00:16.0:   bridge window [mem 0xd8b00000-0xd8bfffff 64bit pref]
[    1.019499] pci 0000:00:16.1: PCI bridge to [bus 0c]
[    1.019512] pci 0000:00:16.1:   bridge window [io  0x9000-0x9fff]
[    1.019542] pci 0000:00:16.1:   bridge window [mem 0xca900000-0xca9fffff]
[    1.019563] pci 0000:00:16.1:   bridge window [mem 0xd8f00000-0xd8ffffff 64bit pref]
[    1.019618] pci 0000:00:16.2: PCI bridge to [bus 0d]
[    1.019632] pci 0000:00:16.2:   bridge window [io  0xd000-0xdfff]
[    1.019661] pci 0000:00:16.2:   bridge window [mem 0xcad00000-0xcadfffff]
[    1.019681] pci 0000:00:16.2:   bridge window [mem 0xd9300000-0xd93fffff 64bit pref]
[    1.019735] pci 0000:00:16.3: PCI bridge to [bus 0e]
[    1.019765] pci 0000:00:16.3:   bridge window [mem 0xcb100000-0xcb1fffff]
[    1.019785] pci 0000:00:16.3:   bridge window [mem 0xd9700000-0xd97fffff 64bit pref]
[    1.019838] pci 0000:00:16.4: PCI bridge to [bus 0f]
[    1.019868] pci 0000:00:16.4:   bridge window [mem 0xcb500000-0xcb5fffff]
[    1.019888] pci 0000:00:16.4:   bridge window [mem 0xd9b00000-0xd9bfffff 64bit pref]
[    1.019941] pci 0000:00:16.5: PCI bridge to [bus 10]
[    1.019970] pci 0000:00:16.5:   bridge window [mem 0xcb900000-0xcb9fffff]
[    1.019990] pci 0000:00:16.5:   bridge window [mem 0xd9f00000-0xd9ffffff 64bit pref]
[    1.020043] pci 0000:00:16.6: PCI bridge to [bus 11]
[    1.020073] pci 0000:00:16.6:   bridge window [mem 0xcbd00000-0xcbdfffff]
[    1.020093] pci 0000:00:16.6:   bridge window [mem 0xda300000-0xda3fffff 64bit pref]
[    1.020146] pci 0000:00:16.7: PCI bridge to [bus 12]
[    1.020175] pci 0000:00:16.7:   bridge window [mem 0xcc100000-0xcc1fffff]
[    1.020196] pci 0000:00:16.7:   bridge window [mem 0xda700000-0xda7fffff 64bit pref]
[    1.020248] pci 0000:00:17.0: PCI bridge to [bus 13]
[    1.020261] pci 0000:00:17.0:   bridge window [io  0x6000-0x6fff]
[    1.020289] pci 0000:00:17.0:   bridge window [mem 0xca600000-0xca6fffff]
[    1.020309] pci 0000:00:17.0:   bridge window [mem 0xd8c00000-0xd8cfffff 64bit pref]
[    1.020362] pci 0000:00:17.1: PCI bridge to [bus 14]
[    1.020375] pci 0000:00:17.1:   bridge window [io  0xa000-0xafff]
[    1.020404] pci 0000:00:17.1:   bridge window [mem 0xcaa00000-0xcaafffff]
[    1.020424] pci 0000:00:17.1:   bridge window [mem 0xd9000000-0xd90fffff 64bit pref]
[    1.020477] pci 0000:00:17.2: PCI bridge to [bus 15]
[    1.020489] pci 0000:00:17.2:   bridge window [io  0xe000-0xefff]
[    1.020518] pci 0000:00:17.2:   bridge window [mem 0xcae00000-0xcaefffff]
[    1.020538] pci 0000:00:17.2:   bridge window [mem 0xd9400000-0xd94fffff 64bit pref]
[    1.020591] pci 0000:00:17.3: PCI bridge to [bus 16]
[    1.020640] pci 0000:00:17.3:   bridge window [mem 0xcb200000-0xcb2fffff]
[    1.020661] pci 0000:00:17.3:   bridge window [mem 0xd9800000-0xd98fffff 64bit pref]
[    1.020717] pci 0000:00:17.4: PCI bridge to [bus 17]
[    1.020747] pci 0000:00:17.4:   bridge window [mem 0xcb600000-0xcb6fffff]
[    1.020767] pci 0000:00:17.4:   bridge window [mem 0xd9c00000-0xd9cfffff 64bit pref]
[    1.020821] pci 0000:00:17.5: PCI bridge to [bus 18]
[    1.020851] pci 0000:00:17.5:   bridge window [mem 0xcba00000-0xcbafffff]
[    1.020871] pci 0000:00:17.5:   bridge window [mem 0xda000000-0xda0fffff 64bit pref]
[    1.020924] pci 0000:00:17.6: PCI bridge to [bus 19]
[    1.020953] pci 0000:00:17.6:   bridge window [mem 0xcbe00000-0xcbefffff]
[    1.020973] pci 0000:00:17.6:   bridge window [mem 0xda400000-0xda4fffff 64bit pref]
[    1.021026] pci 0000:00:17.7: PCI bridge to [bus 1a]
[    1.021056] pci 0000:00:17.7:   bridge window [mem 0xcc200000-0xcc2fffff]
[    1.021087] pci 0000:00:17.7:   bridge window [mem 0xda800000-0xda8fffff 64bit pref]
[    1.021157] pci 0000:00:18.0: PCI bridge to [bus 1b]
[    1.021175] pci 0000:00:18.0:   bridge window [io  0x7000-0x7fff]
[    1.021210] pci 0000:00:18.0:   bridge window [mem 0xca700000-0xca7fffff]
[    1.021232] pci 0000:00:18.0:   bridge window [mem 0xd8d00000-0xd8dfffff 64bit pref]
[    1.021288] pci 0000:00:18.1: PCI bridge to [bus 1c]
[    1.021300] pci 0000:00:18.1:   bridge window [io  0xb000-0xbfff]
[    1.021329] pci 0000:00:18.1:   bridge window [mem 0xcab00000-0xcabfffff]
[    1.021349] pci 0000:00:18.1:   bridge window [mem 0xd9100000-0xd91fffff 64bit pref]
[    1.021402] pci 0000:00:18.2: PCI bridge to [bus 1d]
[    1.021432] pci 0000:00:18.2:   bridge window [mem 0xcaf00000-0xcaffffff]
[    1.021452] pci 0000:00:18.2:   bridge window [mem 0xd9500000-0xd95fffff 64bit pref]
[    1.021505] pci 0000:00:18.3: PCI bridge to [bus 1e]
[    1.021535] pci 0000:00:18.3:   bridge window [mem 0xcb300000-0xcb3fffff]
[    1.021555] pci 0000:00:18.3:   bridge window [mem 0xd9900000-0xd99fffff 64bit pref]
[    1.021618] pci 0000:00:18.4: PCI bridge to [bus 1f]
[    1.021649] pci 0000:00:18.4:   bridge window [mem 0xcb700000-0xcb7fffff]
[    1.021669] pci 0000:00:18.4:   bridge window [mem 0xd9d00000-0xd9dfffff 64bit pref]
[    1.021724] pci 0000:00:18.5: PCI bridge to [bus 20]
[    1.021754] pci 0000:00:18.5:   bridge window [mem 0xcbb00000-0xcbbfffff]
[    1.021774] pci 0000:00:18.5:   bridge window [mem 0xda100000-0xda1fffff 64bit pref]
[    1.021830] pci 0000:00:18.6: PCI bridge to [bus 21]
[    1.021860] pci 0000:00:18.6:   bridge window [mem 0xcbf00000-0xcbffffff]
[    1.021880] pci 0000:00:18.6:   bridge window [mem 0xda500000-0xda5fffff 64bit pref]
[    1.021934] pci 0000:00:18.7: PCI bridge to [bus 22]
[    1.021965] pci 0000:00:18.7:   bridge window [mem 0xcc300000-0xcc3fffff]
[    1.021986] pci 0000:00:18.7:   bridge window [mem 0xda900000-0xda9fffff 64bit pref]
[    1.022646] pci 0000:00:01.0: setting latency timer to 64
[    1.023739] pci_bus 0000:00: resource 4 [mem 0x000a0000-0x000bffff]
[    1.023744] pci_bus 0000:00: resource 5 [mem 0x000cc000-0x000cffff]
[    1.023746] pci_bus 0000:00: resource 6 [mem 0x000d0000-0x000d3fff]
[    1.023748] pci_bus 0000:00: resource 7 [mem 0x000d4000-0x000d7fff]
[    1.023750] pci_bus 0000:00: resource 8 [mem 0x000d8000-0x000dbfff]
[    1.023752] pci_bus 0000:00: resource 9 [mem 0x10000000-0xfebfffff]
[    1.023754] pci_bus 0000:00: resource 10 [io  0x0000-0x0cf7]
[    1.023756] pci_bus 0000:00: resource 11 [io  0x0d00-0xfeff]
[    1.023781] pci_bus 0000:02: resource 0 [io  0x2000-0x3fff]
[    1.023783] pci_bus 0000:02: resource 1 [mem 0xc9000000-0xca3fffff]
[    1.023785] pci_bus 0000:02: resource 2 [mem 0xd8400000-0xd89fffff 64bit pref]
[    1.023787] pci_bus 0000:02: resource 4 [mem 0x000a0000-0x000bffff]
[    1.023789] pci_bus 0000:02: resource 5 [mem 0x000cc000-0x000cffff]
[    1.023790] pci_bus 0000:02: resource 6 [mem 0x000d0000-0x000d3fff]
[    1.023792] pci_bus 0000:02: resource 7 [mem 0x000d4000-0x000d7fff]
[    1.023794] pci_bus 0000:02: resource 8 [mem 0x000d8000-0x000dbfff]
[    1.023796] pci_bus 0000:02: resource 9 [mem 0x10000000-0xfebfffff]
[    1.023798] pci_bus 0000:02: resource 10 [io  0x0000-0x0cf7]
[    1.023800] pci_bus 0000:02: resource 11 [io  0x0d00-0xfeff]
[    1.023803] pci_bus 0000:03: resource 0 [io  0x4000-0x4fff]
[    1.023804] pci_bus 0000:03: resource 1 [mem 0xca400000-0xca4fffff]
[    1.023806] pci_bus 0000:03: resource 2 [mem 0xd8a00000-0xd8afffff 64bit pref]
[    1.023808] pci_bus 0000:04: resource 0 [io  0x8000-0x8fff]
[    1.023810] pci_bus 0000:04: resource 1 [mem 0xca800000-0xca8fffff]
[    1.023812] pci_bus 0000:04: resource 2 [mem 0xd8e00000-0xd8efffff 64bit pref]
[    1.023814] pci_bus 0000:05: resource 0 [io  0xc000-0xcfff]
[    1.023816] pci_bus 0000:05: resource 1 [mem 0xcac00000-0xcacfffff]
[    1.023818] pci_bus 0000:05: resource 2 [mem 0xd9200000-0xd92fffff 64bit pref]
[    1.023820] pci_bus 0000:06: resource 1 [mem 0xcb000000-0xcb0fffff]
[    1.023821] pci_bus 0000:06: resource 2 [mem 0xd9600000-0xd96fffff 64bit pref]
[    1.023823] pci_bus 0000:07: resource 1 [mem 0xcb400000-0xcb4fffff]
[    1.023825] pci_bus 0000:07: resource 2 [mem 0xd9a00000-0xd9afffff 64bit pref]
[    1.023827] pci_bus 0000:08: resource 1 [mem 0xcb800000-0xcb8fffff]
[    1.023831] pci_bus 0000:08: resource 2 [mem 0xd9e00000-0xd9efffff 64bit pref]
[    1.023834] pci_bus 0000:09: resource 1 [mem 0xcbc00000-0xcbcfffff]
[    1.023836] pci_bus 0000:09: resource 2 [mem 0xda200000-0xda2fffff 64bit pref]
[    1.023837] pci_bus 0000:0a: resource 1 [mem 0xcc000000-0xcc0fffff]
[    1.023839] pci_bus 0000:0a: resource 2 [mem 0xda600000-0xda6fffff 64bit pref]
[    1.023841] pci_bus 0000:0b: resource 0 [io  0x5000-0x5fff]
[    1.023843] pci_bus 0000:0b: resource 1 [mem 0xca500000-0xca5fffff]
[    1.023845] pci_bus 0000:0b: resource 2 [mem 0xd8b00000-0xd8bfffff 64bit pref]
[    1.023847] pci_bus 0000:0c: resource 0 [io  0x9000-0x9fff]
[    1.023849] pci_bus 0000:0c: resource 1 [mem 0xca900000-0xca9fffff]
[    1.023851] pci_bus 0000:0c: resource 2 [mem 0xd8f00000-0xd8ffffff 64bit pref]
[    1.023852] pci_bus 0000:0d: resource 0 [io  0xd000-0xdfff]
[    1.023854] pci_bus 0000:0d: resource 1 [mem 0xcad00000-0xcadfffff]
[    1.023856] pci_bus 0000:0d: resource 2 [mem 0xd9300000-0xd93fffff 64bit pref]
[    1.023858] pci_bus 0000:0e: resource 1 [mem 0xcb100000-0xcb1fffff]
[    1.023860] pci_bus 0000:0e: resource 2 [mem 0xd9700000-0xd97fffff 64bit pref]
[    1.023862] pci_bus 0000:0f: resource 1 [mem 0xcb500000-0xcb5fffff]
[    1.023864] pci_bus 0000:0f: resource 2 [mem 0xd9b00000-0xd9bfffff 64bit pref]
[    1.023866] pci_bus 0000:10: resource 1 [mem 0xcb900000-0xcb9fffff]
[    1.023868] pci_bus 0000:10: resource 2 [mem 0xd9f00000-0xd9ffffff 64bit pref]
[    1.023870] pci_bus 0000:11: resource 1 [mem 0xcbd00000-0xcbdfffff]
[    1.023872] pci_bus 0000:11: resource 2 [mem 0xda300000-0xda3fffff 64bit pref]
[    1.023873] pci_bus 0000:12: resource 1 [mem 0xcc100000-0xcc1fffff]
[    1.023875] pci_bus 0000:12: resource 2 [mem 0xda700000-0xda7fffff 64bit pref]
[    1.023877] pci_bus 0000:13: resource 0 [io  0x6000-0x6fff]
[    1.023879] pci_bus 0000:13: resource 1 [mem 0xca600000-0xca6fffff]
[    1.023881] pci_bus 0000:13: resource 2 [mem 0xd8c00000-0xd8cfffff 64bit pref]
[    1.023883] pci_bus 0000:14: resource 0 [io  0xa000-0xafff]
[    1.023885] pci_bus 0000:14: resource 1 [mem 0xcaa00000-0xcaafffff]
[    1.023886] pci_bus 0000:14: resource 2 [mem 0xd9000000-0xd90fffff 64bit pref]
[    1.023888] pci_bus 0000:15: resource 0 [io  0xe000-0xefff]
[    1.023890] pci_bus 0000:15: resource 1 [mem 0xcae00000-0xcaefffff]
[    1.023892] pci_bus 0000:15: resource 2 [mem 0xd9400000-0xd94fffff 64bit pref]
[    1.023894] pci_bus 0000:16: resource 1 [mem 0xcb200000-0xcb2fffff]
[    1.023896] pci_bus 0000:16: resource 2 [mem 0xd9800000-0xd98fffff 64bit pref]
[    1.023898] pci_bus 0000:17: resource 1 [mem 0xcb600000-0xcb6fffff]
[    1.023901] pci_bus 0000:17: resource 2 [mem 0xd9c00000-0xd9cfffff 64bit pref]
[    1.023903] pci_bus 0000:18: resource 1 [mem 0xcba00000-0xcbafffff]
[    1.023905] pci_bus 0000:18: resource 2 [mem 0xda000000-0xda0fffff 64bit pref]
[    1.023906] pci_bus 0000:19: resource 1 [mem 0xcbe00000-0xcbefffff]
[    1.023908] pci_bus 0000:19: resource 2 [mem 0xda400000-0xda4fffff 64bit pref]
[    1.023910] pci_bus 0000:1a: resource 1 [mem 0xcc200000-0xcc2fffff]
[    1.023912] pci_bus 0000:1a: resource 2 [mem 0xda800000-0xda8fffff 64bit pref]
[    1.023914] pci_bus 0000:1b: resource 0 [io  0x7000-0x7fff]
[    1.023916] pci_bus 0000:1b: resource 1 [mem 0xca700000-0xca7fffff]
[    1.023918] pci_bus 0000:1b: resource 2 [mem 0xd8d00000-0xd8dfffff 64bit pref]
[    1.023920] pci_bus 0000:1c: resource 0 [io  0xb000-0xbfff]
[    1.023921] pci_bus 0000:1c: resource 1 [mem 0xcab00000-0xcabfffff]
[    1.023923] pci_bus 0000:1c: resource 2 [mem 0xd9100000-0xd91fffff 64bit pref]
[    1.023925] pci_bus 0000:1d: resource 1 [mem 0xcaf00000-0xcaffffff]
[    1.023927] pci_bus 0000:1d: resource 2 [mem 0xd9500000-0xd95fffff 64bit pref]
[    1.023929] pci_bus 0000:1e: resource 1 [mem 0xcb300000-0xcb3fffff]
[    1.023931] pci_bus 0000:1e: resource 2 [mem 0xd9900000-0xd99fffff 64bit pref]
[    1.023933] pci_bus 0000:1f: resource 1 [mem 0xcb700000-0xcb7fffff]
[    1.023935] pci_bus 0000:1f: resource 2 [mem 0xd9d00000-0xd9dfffff 64bit pref]
[    1.023937] pci_bus 0000:20: resource 1 [mem 0xcbb00000-0xcbbfffff]
[    1.023939] pci_bus 0000:20: resource 2 [mem 0xda100000-0xda1fffff 64bit pref]
[    1.023940] pci_bus 0000:21: resource 1 [mem 0xcbf00000-0xcbffffff]
[    1.023942] pci_bus 0000:21: resource 2 [mem 0xda500000-0xda5fffff 64bit pref]
[    1.023944] pci_bus 0000:22: resource 1 [mem 0xcc300000-0xcc3fffff]
[    1.023946] pci_bus 0000:22: resource 2 [mem 0xda900000-0xda9fffff 64bit pref]
[    1.023989] initcall pcibios_assign_resources+0x0/0xb4 returned 0 after 9767 usecs
[    1.023995] calling  sysctl_core_init+0x0/0x23 @ 1
[    1.024896] initcall sysctl_core_init+0x0/0x23 returned 0 after 874 usecs
[    1.024899] calling  inet_init+0x0/0x27a @ 1
[    1.025278] NET: Registered protocol family 2
[    1.030393] TCP established hash table entries: 2048 (order: 2, 16384 bytes)
[    1.030466] TCP bind hash table entries: 2048 (order: 2, 16384 bytes)
[    1.030659] TCP: Hash tables configured (established 2048 bind 2048)
[    1.031036] TCP: reno registered
[    1.031137] UDP hash table entries: 256 (order: 1, 8192 bytes)
[    1.031202] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes)
[    1.033045] initcall inet_init+0x0/0x27a returned 0 after 7949 usecs
[    1.033049] calling  ipv4_offload_init+0x0/0x62 @ 1
[    1.033113] initcall ipv4_offload_init+0x0/0x62 returned 0 after 59 usecs
[    1.033116] calling  af_unix_init+0x0/0x4d @ 1
[    1.033140] NET: Registered protocol family 1
[    1.033293] initcall af_unix_init+0x0/0x4d returned 0 after 169 usecs
[    1.033296] calling  ipv6_offload_init+0x0/0x6b @ 1
[    1.033420] initcall ipv6_offload_init+0x0/0x6b returned 0 after 116 usecs
[    1.033424] calling  pci_apply_final_quirks+0x0/0x10f @ 1
[    1.033504] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
[    1.033698] pci 0000:00:0f.0: Boot video device
[    1.035524] PCI: CLS 32 bytes, default 64
[    1.035539] initcall pci_apply_final_quirks+0x0/0x10f returned 0 after 2061 usecs
[    1.035544] calling  populate_rootfs+0x0/0xec @ 1
[    1.038544] Unpacking initramfs...
[    1.469671] Freeing initrd memory: 17752k freed
[    1.471568] initcall populate_rootfs+0x0/0xec returned 0 after 425886 usecs
[    1.471574] calling  pci_iommu_init+0x0/0x34 @ 1
[    1.471591] initcall pci_iommu_init+0x0/0x34 returned 0 after 10 usecs
[    1.471602] calling  i8259A_init_ops+0x0/0x20 @ 1
[    1.471618] initcall i8259A_init_ops+0x0/0x20 returned 0 after 10 usecs
[    1.471620] calling  sbf_init+0x0/0xee @ 1
[    1.471632] Simple Boot Flag at 0x36 set to 0x80
[    1.471645] initcall sbf_init+0x0/0xee returned 0 after 21 usecs
[    1.471648] calling  init_tsc_clocksource+0x0/0x79 @ 1
[    1.471660] Switching to clocksource tsc
[    1.471994] initcall init_tsc_clocksource+0x0/0x79 returned 0 after 315 usecs
[    1.472005] calling  add_rtc_cmos+0x0/0x84 @ 1
[    1.472032] initcall add_rtc_cmos+0x0/0x84 returned 0 after 10 usecs
[    1.472035] calling  i8237A_init_ops+0x0/0x11 @ 1
[    1.472049] initcall i8237A_init_ops+0x0/0x11 returned 0 after 10 usecs
[    1.472058] calling  cache_sysfs_init+0x0/0x4b @ 1
[    1.473701] initcall cache_sysfs_init+0x0/0x4b returned 0 after 1599 usecs
[    1.473706] calling  intel_uncore_init+0x0/0x345 @ 1
[    1.473729] initcall intel_uncore_init+0x0/0x345 returned -19 after 10 usecs
[    1.473733] calling  thermal_throttle_init_device+0x0/0x75 @ 1
[    1.473743] initcall thermal_throttle_init_device+0x0/0x75 returned 0 after 6 usecs
[    1.473745] calling  amd_ibs_init+0x0/0x255 @ 1
[    1.473760] initcall amd_ibs_init+0x0/0x255 returned -19 after 10 usecs
[    1.473766] calling  msr_init+0x0/0x111 @ 1
[    1.475926] initcall msr_init+0x0/0x111 returned 0 after 2097 usecs
[    1.475930] calling  cpuid_init+0x0/0x111 @ 1
[    1.476252] initcall cpuid_init+0x0/0x111 returned 0 after 310 usecs
[    1.476256] calling  apm_init+0x0/0x3cd @ 1
[    1.476527] apm: BIOS not found.
[    1.476546] initcall apm_init+0x0/0x3cd returned -19 after 275 usecs
[    1.476552] calling  ioapic_init_ops+0x0/0x11 @ 1
[    1.476569] initcall ioapic_init_ops+0x0/0x11 returned 0 after 10 usecs
[    1.476574] calling  add_pcspkr+0x0/0x3b @ 1
[    1.477571] initcall add_pcspkr+0x0/0x3b returned 0 after 961 usecs
[    1.477582] calling  start_periodic_check_for_corruption+0x0/0x50 @ 1
[    1.477607] initcall start_periodic_check_for_corruption+0x0/0x50 returned 0 after 10 usecs
[    1.477612] calling  add_bus_probe+0x0/0x21 @ 1
[    1.477635] initcall add_bus_probe+0x0/0x21 returned 0 after 10 usecs
[    1.477637] calling  aes_init+0x0/0xf @ 1
[    1.482632] initcall aes_init+0x0/0xf returned 0 after 4872 usecs
[    1.482643] calling  aesni_init+0x0/0x32 @ 1
[    1.482660] initcall aesni_init+0x0/0x32 returned -19 after 10 usecs
[    1.482663] calling  olpc_create_platform_devices+0x0/0x1c @ 1
[    1.482672] initcall olpc_create_platform_devices+0x0/0x1c returned 0 after 6 usecs
[    1.482675] calling  xo15_sci_init+0x0/0xf @ 1
[    1.482690] initcall xo15_sci_init+0x0/0xf returned 0 after 10 usecs
[    1.482692] calling  proc_execdomains_init+0x0/0x27 @ 1
[    1.482724] initcall proc_execdomains_init+0x0/0x27 returned 0 after 26 usecs
[    1.482727] calling  ioresources_init+0x0/0x44 @ 1
[    1.482742] initcall ioresources_init+0x0/0x44 returned 0 after 10 usecs
[    1.482744] calling  uid_cache_init+0x0/0x7c @ 1
[    1.482760] initcall uid_cache_init+0x0/0x7c returned 0 after 10 usecs
[    1.482762] calling  init_posix_timers+0x0/0x1e0 @ 1
[    1.482817] initcall init_posix_timers+0x0/0x1e0 returned 0 after 48 usecs
[    1.482821] calling  init_posix_cpu_timers+0x0/0x9b @ 1
[    1.482835] initcall init_posix_cpu_timers+0x0/0x9b returned 0 after 10 usecs
[    1.482837] calling  proc_schedstat_init+0x0/0x27 @ 1
[    1.482851] initcall proc_schedstat_init+0x0/0x27 returned 0 after 10 usecs
[    1.482853] calling  init_sched_debug_procfs+0x0/0x30 @ 1
[    1.482866] initcall init_sched_debug_procfs+0x0/0x30 returned 0 after 10 usecs
[    1.482868] calling  snapshot_device_init+0x0/0xf @ 1
[    1.482979] initcall snapshot_device_init+0x0/0xf returned 0 after 104 usecs
[    1.482983] calling  create_proc_profile+0x0/0x1e0 @ 1
[    1.482996] initcall create_proc_profile+0x0/0x1e0 returned 0 after 10 usecs
[    1.482998] calling  timekeeping_init_ops+0x0/0x11 @ 1
[    1.483012] initcall timekeeping_init_ops+0x0/0x11 returned 0 after 10 usecs
[    1.483014] calling  init_clocksource_sysfs+0x0/0x45 @ 1
[    1.483028] initcall init_clocksource_sysfs+0x0/0x45 returned 0 after 10 usecs
[    1.483030] calling  init_timer_list_procfs+0x0/0x30 @ 1
[    1.483044] initcall init_timer_list_procfs+0x0/0x30 returned 0 after 10 usecs
[    1.483046] calling  alarmtimer_init+0x0/0x150 @ 1
[    1.483559] initcall alarmtimer_init+0x0/0x150 returned 0 after 495 usecs
[    1.483563] calling  init_tstats_procfs+0x0/0x30 @ 1
[    1.483578] initcall init_tstats_procfs+0x0/0x30 returned 0 after 10 usecs
[    1.483581] calling  futex_init+0x0/0x56 @ 1
[    1.483597] initcall futex_init+0x0/0x56 returned 0 after 10 usecs
[    1.483599] calling  proc_dma_init+0x0/0x27 @ 1
[    1.483613] initcall proc_dma_init+0x0/0x27 returned 0 after 10 usecs
[    1.483615] calling  proc_modules_init+0x0/0x27 @ 1
[    1.483629] initcall proc_modules_init+0x0/0x27 returned 0 after 10 usecs
[    1.483631] calling  kallsyms_init+0x0/0x2a @ 1
[    1.483644] initcall kallsyms_init+0x0/0x2a returned 0 after 10 usecs
[    1.483646] calling  crash_save_vmcoreinfo_init+0x0/0x4b9 @ 1
[    1.483661] initcall crash_save_vmcoreinfo_init+0x0/0x4b9 returned 0 after 10 usecs
[    1.483664] calling  crash_notes_memory_init+0x0/0x33 @ 1
[    1.483678] initcall crash_notes_memory_init+0x0/0x33 returned 0 after 10 usecs
[    1.483680] calling  pid_namespaces_init+0x0/0x32 @ 1
[    1.483693] initcall pid_namespaces_init+0x0/0x32 returned 0 after 10 usecs
[    1.483697] calling  audit_init+0x0/0x136 @ 1
[    1.483709] audit: initializing netlink socket (disabled)
[    1.484663] type=2000 audit(1372692158.318:1): initialized
[    1.484677] initcall audit_init+0x0/0x136 returned 0 after 953 usecs
[    1.484680] calling  audit_watch_init+0x0/0x31 @ 1
[    1.484695] initcall audit_watch_init+0x0/0x31 returned 0 after 10 usecs
[    1.484697] calling  audit_tree_init+0x0/0x42 @ 1
[    1.484711] initcall audit_tree_init+0x0/0x42 returned 0 after 10 usecs
[    1.484713] calling  init_kprobes+0x0/0x149 @ 1
[    1.498554] initcall init_kprobes+0x0/0x149 returned 0 after 13511 usecs
[    1.498562] calling  irq_pm_init_ops+0x0/0x11 @ 1
[    1.498579] initcall irq_pm_init_ops+0x0/0x11 returned 0 after 10 usecs
[    1.498584] calling  utsname_sysctl_init+0x0/0x11 @ 1
[    1.499556] initcall utsname_sysctl_init+0x0/0x11 returned 0 after 941 usecs
[    1.499567] calling  init_tracepoints+0x0/0x20 @ 1
[    1.499584] initcall init_tracepoints+0x0/0x20 returned 0 after 10 usecs
[    1.499588] calling  init_lstats_procfs+0x0/0x2a @ 1
[    1.499605] initcall init_lstats_procfs+0x0/0x2a returned 0 after 10 usecs
[    1.499610] calling  stack_trace_init+0x0/0xa5 @ 1
[    1.501542] initcall stack_trace_init+0x0/0xa5 returned 0 after 1874 usecs
[    1.501550] calling  init_blk_tracer+0x0/0x54 @ 1
[    1.501576] initcall init_blk_tracer+0x0/0x54 returned 0 after 10 usecs
[    1.501584] calling  perf_event_sysfs_init+0x0/0x94 @ 1
[    1.501609] initcall perf_event_sysfs_init+0x0/0x94 returned 0 after 10 usecs
[    1.501616] calling  init_uprobes+0x0/0x67 @ 1
[    1.501641] initcall init_uprobes+0x0/0x67 returned 0 after 10 usecs
[    1.501650] calling  init_per_zone_wmark_min+0x0/0x79 @ 1
[    1.502563] initcall init_per_zone_wmark_min+0x0/0x79 returned 0 after 877 usecs
[    1.502571] calling  kswapd_init+0x0/0x1d @ 1
[    1.502766] initcall kswapd_init+0x0/0x1d returned 0 after 184 usecs
[    1.502770] calling  extfrag_debug_init+0x0/0x7d @ 1
[    1.502799] initcall extfrag_debug_init+0x0/0x7d returned 0 after 24 usecs
[    1.502802] calling  setup_vmstat+0x0/0xc0 @ 1
[    1.502891] initcall setup_vmstat+0x0/0xc0 returned 0 after 81 usecs
[    1.502895] calling  mm_sysfs_init+0x0/0x22 @ 1
[    1.502946] initcall mm_sysfs_init+0x0/0x22 returned 0 after 45 usecs
[    1.502949] calling  slab_proc_init+0x0/0x2a @ 1
[    1.502963] initcall slab_proc_init+0x0/0x2a returned 0 after 10 usecs
[    1.502965] calling  proc_vmalloc_init+0x0/0x2a @ 1
[    1.502979] initcall proc_vmalloc_init+0x0/0x2a returned 0 after 10 usecs
[    1.502982] calling  init_emergency_pool+0x0/0x54 @ 1
[    1.502997] initcall init_emergency_pool+0x0/0x54 returned 0 after 10 usecs
[    1.503000] calling  procswaps_init+0x0/0x27 @ 1
[    1.503015] initcall procswaps_init+0x0/0x27 returned 0 after 10 usecs
[    1.503017] calling  init_frontswap+0x0/0x84 @ 1
[    1.503032] initcall init_frontswap+0x0/0x84 returned 0 after 10 usecs
[    1.503034] calling  hugetlb_init+0x0/0x351 @ 1
[    1.503046] HugeTLB registered 4 MB page size, pre-allocated 0 pages
[    1.503060] initcall hugetlb_init+0x0/0x351 returned 0 after 21 usecs
[    1.503062] calling  mmu_notifier_init+0x0/0xf @ 1
[    1.503077] initcall mmu_notifier_init+0x0/0xf returned 0 after 10 usecs
[    1.503079] calling  ksm_init+0x0/0x15b @ 1
[    1.503324] initcall ksm_init+0x0/0x15b returned 0 after 235 usecs
[    1.503327] calling  slab_sysfs_init+0x0/0xdd @ 1
[    1.505596] initcall slab_sysfs_init+0x0/0xdd returned 0 after 2205 usecs
[    1.505607] calling  init_cleancache+0x0/0x84 @ 1
[    1.505632] initcall init_cleancache+0x0/0x84 returned 0 after 10 usecs
[    1.505640] calling  fcntl_init+0x0/0x2f @ 1
[    1.505666] initcall fcntl_init+0x0/0x2f returned 0 after 10 usecs
[    1.505673] calling  proc_filesystems_init+0x0/0x27 @ 1
[    1.505698] initcall proc_filesystems_init+0x0/0x27 returned 0 after 10 usecs
[    1.505705] calling  dio_init+0x0/0x32 @ 1
[    1.505731] initcall dio_init+0x0/0x32 returned 0 after 10 usecs
[    1.505738] calling  fsnotify_mark_init+0x0/0x46 @ 1
[    1.505909] initcall fsnotify_mark_init+0x0/0x46 returned 0 after 161 usecs
[    1.505912] calling  dnotify_init+0x0/0x7c @ 1
[    1.505942] initcall dnotify_init+0x0/0x7c returned 0 after 24 usecs
[    1.505944] calling  inotify_user_setup+0x0/0x78 @ 1
[    1.505959] initcall inotify_user_setup+0x0/0x78 returned 0 after 10 usecs
[    1.505961] calling  fanotify_user_setup+0x0/0x5a @ 1
[    1.505975] initcall fanotify_user_setup+0x0/0x5a returned 0 after 10 usecs
[    1.505976] calling  aio_setup+0x0/0xb9 @ 1
[    1.506002] initcall aio_setup+0x0/0xb9 returned 0 after 21 usecs
[    1.506004] calling  proc_locks_init+0x0/0x27 @ 1
[    1.506018] initcall proc_locks_init+0x0/0x27 returned 0 after 10 usecs
[    1.506020] calling  init_mbcache+0x0/0x11 @ 1
[    1.506034] initcall init_mbcache+0x0/0x11 returned 0 after 10 usecs
[    1.506036] calling  dquot_init+0x0/0x10e @ 1
[    1.506048] VFS: Disk quotas dquot_6.5.2
[    1.506059] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    1.506072] initcall dquot_init+0x0/0x10e returned 0 after 32 usecs
[    1.506074] calling  init_v2_quota_format+0x0/0x1d @ 1
[    1.506089] initcall init_v2_quota_format+0x0/0x1d returned 0 after 10 usecs
[    1.506091] calling  quota_init+0x0/0x22 @ 1
[    1.506539] initcall quota_init+0x0/0x22 returned 0 after 434 usecs
[    1.506542] calling  proc_cmdline_init+0x0/0x27 @ 1
[    1.506556] initcall proc_cmdline_init+0x0/0x27 returned 0 after 10 usecs
[    1.506558] calling  proc_consoles_init+0x0/0x27 @ 1
[    1.506573] initcall proc_consoles_init+0x0/0x27 returned 0 after 10 usecs
[    1.506575] calling  proc_cpuinfo_init+0x0/0x27 @ 1
[    1.506588] initcall proc_cpuinfo_init+0x0/0x27 returned 0 after 10 usecs
[    1.506590] calling  proc_devices_init+0x0/0x27 @ 1
[    1.506604] initcall proc_devices_init+0x0/0x27 returned 0 after 10 usecs
[    1.506607] calling  proc_interrupts_init+0x0/0x27 @ 1
[    1.506621] initcall proc_interrupts_init+0x0/0x27 returned 0 after 10 usecs
[    1.506622] calling  proc_loadavg_init+0x0/0x27 @ 1
[    1.506636] initcall proc_loadavg_init+0x0/0x27 returned 0 after 10 usecs
[    1.506638] calling  proc_meminfo_init+0x0/0x27 @ 1
[    1.506652] initcall proc_meminfo_init+0x0/0x27 returned 0 after 10 usecs
[    1.506653] calling  proc_stat_init+0x0/0x27 @ 1
[    1.506667] initcall proc_stat_init+0x0/0x27 returned 0 after 10 usecs
[    1.506669] calling  proc_uptime_init+0x0/0x27 @ 1
[    1.506682] initcall proc_uptime_init+0x0/0x27 returned 0 after 10 usecs
[    1.506684] calling  proc_version_init+0x0/0x27 @ 1
[    1.506698] initcall proc_version_init+0x0/0x27 returned 0 after 10 usecs
[    1.506700] calling  proc_softirqs_init+0x0/0x27 @ 1
[    1.506713] initcall proc_softirqs_init+0x0/0x27 returned 0 after 10 usecs
[    1.506715] calling  proc_kcore_init+0x0/0xae @ 1
[    1.506729] initcall proc_kcore_init+0x0/0xae returned 0 after 10 usecs
[    1.506731] calling  vmcore_init+0x0/0x561 @ 1
[    1.506745] initcall vmcore_init+0x0/0x561 returned 0 after 10 usecs
[    1.506747] calling  proc_kmsg_init+0x0/0x2a @ 1
[    1.506760] initcall proc_kmsg_init+0x0/0x2a returned 0 after 10 usecs
[    1.506762] calling  proc_page_init+0x0/0x4a @ 1
[    1.506776] initcall proc_page_init+0x0/0x4a returned 0 after 10 usecs
[    1.506778] calling  configfs_init+0x0/0xa8 @ 1
[    1.506792] initcall configfs_init+0x0/0xa8 returned 0 after 10 usecs
[    1.506795] calling  init_devpts_fs+0x0/0x52 @ 1
[    1.507537] initcall init_devpts_fs+0x0/0x52 returned 0 after 720 usecs
[    1.507540] calling  ext4_init_fs+0x0/0x257 @ 1
[    1.507555] initcall ext4_init_fs+0x0/0x257 returned 0 after 10 usecs
[    1.507558] calling  journal_init+0x0/0x120 @ 1
[    1.507572] initcall journal_init+0x0/0x120 returned 0 after 10 usecs
[    1.507575] calling  init_ramfs_fs+0x0/0xf @ 1
[    1.507589] initcall init_ramfs_fs+0x0/0xf returned 0 after 10 usecs
[    1.507591] calling  init_hugetlbfs_fs+0x0/0x148 @ 1
[    1.508547] initcall init_hugetlbfs_fs+0x0/0x148 returned 0 after 930 usecs
[    1.508550] calling  init_iso9660_fs+0x0/0x73 @ 1
[    1.508565] initcall init_iso9660_fs+0x0/0x73 returned 0 after 10 usecs
[    1.508568] calling  init_nls_cp437+0x0/0xf @ 1
[    1.508582] initcall init_nls_cp437+0x0/0xf returned 0 after 10 usecs
[    1.508584] calling  init_nls_ascii+0x0/0xf @ 1
[    1.508598] initcall init_nls_ascii+0x0/0xf returned 0 after 10 usecs
[    1.508600] calling  init_autofs4_fs+0x0/0x24 @ 1
[    1.508722] initcall init_autofs4_fs+0x0/0x24 returned 0 after 116 usecs
[    1.508725] calling  init_pstore_fs+0x0/0xf @ 1
[    1.508738] initcall init_pstore_fs+0x0/0xf returned 0 after 10 usecs
[    1.508740] calling  ipc_init+0x0/0x20 @ 1
[    1.508752] msgmni has been set to 485
[    1.508766] initcall ipc_init+0x0/0x20 returned 0 after 21 usecs
[    1.508768] calling  ipc_sysctl_init+0x0/0x11 @ 1
[    1.508782] initcall ipc_sysctl_init+0x0/0x11 returned 0 after 10 usecs
[    1.508784] calling  init_mqueue_fs+0x0/0x93 @ 1
[    1.508799] initcall init_mqueue_fs+0x0/0x93 returned 0 after 10 usecs
[    1.508801] calling  key_proc_init+0x0/0x64 @ 1
[    1.508815] initcall key_proc_init+0x0/0x64 returned 0 after 10 usecs
[    1.508817] calling  selinux_nf_ip_init+0x0/0x68 @ 1
[    1.508829] SELinux:  Registering netfilter hooks
[    1.511510] initcall selinux_nf_ip_init+0x0/0x68 returned 0 after 2581 usecs
[    1.511571] calling  init_sel_fs+0x0/0x8b @ 1
[    1.515536] initcall init_sel_fs+0x0/0x8b returned 0 after 3859 usecs
[    1.515541] calling  selnl_init+0x0/0x53 @ 1
[    1.516553] initcall selnl_init+0x0/0x53 returned 0 after 976 usecs
[    1.516561] calling  sel_netif_init+0x0/0x5a @ 1
[    1.516585] initcall sel_netif_init+0x0/0x5a returned 0 after 10 usecs
[    1.516592] calling  sel_netnode_init+0x0/0x63 @ 1
[    1.516609] initcall sel_netnode_init+0x0/0x63 returned 0 after 10 usecs
[    1.516613] calling  sel_netport_init+0x0/0x63 @ 1
[    1.516629] initcall sel_netport_init+0x0/0x63 returned 0 after 10 usecs
[    1.516633] calling  aurule_init+0x0/0x2d @ 1
[    1.516649] initcall aurule_init+0x0/0x2d returned 0 after 10 usecs
[    1.516653] calling  crypto_wq_init+0x0/0x41 @ 1
[    1.517872] initcall crypto_wq_init+0x0/0x41 returned 0 after 1181 usecs
[    1.517879] calling  crypto_algapi_init+0x0/0xc @ 1
[    1.519537] initcall crypto_algapi_init+0x0/0xc returned 0 after 1611 usecs
[    1.519545] calling  skcipher_module_init+0x0/0x29 @ 1
[    1.519561] initcall skcipher_module_init+0x0/0x29 returned 0 after 10 usecs
[    1.519565] calling  chainiv_module_init+0x0/0xf @ 1
[    1.519582] initcall chainiv_module_init+0x0/0xf returned 0 after 10 usecs
[    1.519586] calling  eseqiv_module_init+0x0/0xf @ 1
[    1.519602] initcall eseqiv_module_init+0x0/0xf returned 0 after 10 usecs
[    1.519606] calling  seqiv_module_init+0x0/0xf @ 1
[    1.519622] initcall seqiv_module_init+0x0/0xf returned 0 after 10 usecs
[    1.519626] calling  hmac_module_init+0x0/0xf @ 1
[    1.519650] initcall hmac_module_init+0x0/0xf returned 0 after 10 usecs
[    1.519657] calling  md5_mod_init+0x0/0xf @ 1
[    1.523623] initcall md5_mod_init+0x0/0xf returned 0 after 3861 usecs
[    1.523633] calling  sha1_generic_mod_init+0x0/0xf @ 1
[    1.523923] initcall sha1_generic_mod_init+0x0/0xf returned 0 after 273 usecs
[    1.523931] calling  sha256_generic_mod_init+0x0/0x14 @ 1
[    1.526895] initcall sha256_generic_mod_init+0x0/0x14 returned 0 after 2881 usecs
[    1.526902] calling  crypto_ecb_module_init+0x0/0xf @ 1
[    1.526919] initcall crypto_ecb_module_init+0x0/0xf returned 0 after 10 usecs
[    1.526924] calling  crypto_cbc_module_init+0x0/0xf @ 1
[    1.526940] initcall crypto_cbc_module_init+0x0/0xf returned 0 after 10 usecs
[    1.526944] calling  crypto_module_init+0x0/0xf @ 1
[    1.526961] initcall crypto_module_init+0x0/0xf returned 0 after 10 usecs
[    1.526965] calling  crypto_module_init+0x0/0xf @ 1
[    1.526989] initcall crypto_module_init+0x0/0xf returned 0 after 10 usecs
[    1.526993] calling  crypto_ctr_module_init+0x0/0x33 @ 1
[    1.527017] initcall crypto_ctr_module_init+0x0/0x33 returned 0 after 10 usecs
[    1.527019] calling  aes_init+0x0/0xf @ 1
[    1.528642] initcall aes_init+0x0/0xf returned 0 after 1573 usecs
[    1.528647] calling  crc32c_mod_init+0x0/0xf @ 1
[    1.529605] initcall crc32c_mod_init+0x0/0xf returned 0 after 926 usecs
[    1.529612] calling  krng_mod_init+0x0/0xf @ 1
[    1.529819] alg: No test for stdrng (krng)
[    1.529892] initcall krng_mod_init+0x0/0xf returned 0 after 265 usecs
[    1.529899] calling  af_alg_init+0x0/0x35 @ 1
[    1.529913] NET: Registered protocol family 38
[    1.529935] initcall af_alg_init+0x0/0x35 returned 0 after 21 usecs
[    1.529942] calling  algif_hash_init+0x0/0xf @ 1
[    1.529967] initcall algif_hash_init+0x0/0xf returned 0 after 10 usecs
[    1.529973] calling  algif_skcipher_init+0x0/0xf @ 1
[    1.529998] initcall algif_skcipher_init+0x0/0xf returned 0 after 10 usecs
[    1.530004] calling  proc_genhd_init+0x0/0x44 @ 1
[    1.530029] initcall proc_genhd_init+0x0/0x44 returned 0 after 10 usecs
[    1.530035] calling  bsg_init+0x0/0x154 @ 1
[    1.531602] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    1.531619] initcall bsg_init+0x0/0x154 returned 0 after 1538 usecs
[    1.531624] calling  throtl_init+0x0/0x53 @ 1
[    1.531859] initcall throtl_init+0x0/0x53 returned 0 after 216 usecs
[    1.531867] calling  noop_init+0x0/0xf @ 1
[    1.531880] io scheduler noop registered
[    1.531903] initcall noop_init+0x0/0xf returned 0 after 21 usecs
[    1.531910] calling  deadline_init+0x0/0xf @ 1
[    1.531923] io scheduler deadline registered
[    1.531939] initcall deadline_init+0x0/0xf returned 0 after 21 usecs
[    1.531945] calling  cfq_init+0x0/0xae @ 1
[    1.531959] io scheduler cfq registered (default)
[    1.531976] initcall cfq_init+0x0/0xae returned 0 after 21 usecs
[    1.531983] calling  test_kstrtox_init+0x0/0xb2a @ 1
[    1.532633] initcall test_kstrtox_init+0x0/0xb2a returned -22 after 622 usecs
[    1.532645] initcall test_kstrtox_init+0x0/0xb2a returned with error code -22 
[    1.532656] calling  btree_module_init+0x0/0x2f @ 1
[    1.532681] initcall btree_module_init+0x0/0x2f returned 0 after 10 usecs
[    1.532693] calling  percpu_counter_startup+0x0/0x16 @ 1
[    1.532718] initcall percpu_counter_startup+0x0/0x16 returned 0 after 10 usecs
[    1.532725] calling  audit_classes_init+0x0/0x4f @ 1
[    1.532750] initcall audit_classes_init+0x0/0x4f returned 0 after 10 usecs
[    1.532757] calling  cs5535_gpio_driver_init+0x0/0xf @ 1
[    1.532781] initcall cs5535_gpio_driver_init+0x0/0xf returned 0 after 10 usecs
[    1.532789] calling  pci_proc_init+0x0/0x64 @ 1
[    1.533568] initcall pci_proc_init+0x0/0x64 returned 0 after 751 usecs
[    1.533576] calling  pcie_portdrv_init+0x0/0x6f @ 1
[    1.540566] pcieport 0000:00:15.0: irq 40 for MSI/MSI-X
[    1.544530] pcieport 0000:00:15.1: irq 41 for MSI/MSI-X
[    1.544541] pcieport 0000:00:15.2: irq 42 for MSI/MSI-X
[    1.545576] pcieport 0000:00:15.3: irq 43 for MSI/MSI-X
[    1.546528] pcieport 0000:00:15.4: irq 44 for MSI/MSI-X
[    1.547538] pcieport 0000:00:15.5: irq 45 for MSI/MSI-X
[    1.548545] pcieport 0000:00:15.6: irq 46 for MSI/MSI-X
[    1.549527] pcieport 0000:00:15.7: irq 47 for MSI/MSI-X
[    1.550525] pcieport 0000:00:16.0: irq 48 for MSI/MSI-X
[    1.551558] pcieport 0000:00:16.1: irq 49 for MSI/MSI-X
[    1.552537] pcieport 0000:00:16.2: irq 50 for MSI/MSI-X
[    1.554541] pcieport 0000:00:16.3: irq 51 for MSI/MSI-X
[    1.555525] pcieport 0000:00:16.4: irq 52 for MSI/MSI-X
[    1.556521] pcieport 0000:00:16.5: irq 53 for MSI/MSI-X
[    1.557556] pcieport 0000:00:16.6: irq 54 for MSI/MSI-X
[    1.558534] pcieport 0000:00:16.7: irq 55 for MSI/MSI-X
[    1.559533] pcieport 0000:00:17.0: irq 56 for MSI/MSI-X
[    1.560553] pcieport 0000:00:17.1: irq 57 for MSI/MSI-X
[    1.561532] pcieport 0000:00:17.2: irq 58 for MSI/MSI-X
[    1.562533] pcieport 0000:00:17.3: irq 59 for MSI/MSI-X
[    1.563552] pcieport 0000:00:17.4: irq 60 for MSI/MSI-X
[    1.564506] pcieport 0000:00:17.5: irq 61 for MSI/MSI-X
[    1.564517] pcieport 0000:00:17.6: irq 62 for MSI/MSI-X
[    1.564528] pcieport 0000:00:17.7: irq 63 for MSI/MSI-X
[    1.564539] pcieport 0000:00:18.0: irq 64 for MSI/MSI-X
[    1.564550] pcieport 0000:00:18.1: irq 65 for MSI/MSI-X
[    1.564562] pcieport 0000:00:18.2: irq 66 for MSI/MSI-X
[    1.564573] pcieport 0000:00:18.3: irq 67 for MSI/MSI-X
[    1.564584] pcieport 0000:00:18.4: irq 68 for MSI/MSI-X
[    1.564595] pcieport 0000:00:18.5: irq 69 for MSI/MSI-X
[    1.564606] pcieport 0000:00:18.6: irq 70 for MSI/MSI-X
[    1.564618] pcieport 0000:00:18.7: irq 71 for MSI/MSI-X
[    1.564640] initcall pcie_portdrv_init+0x0/0x6f returned 0 after 30329 usecs
[    1.564646] calling  aer_service_init+0x0/0x28 @ 1
[    1.564670] initcall aer_service_init+0x0/0x28 returned 0 after 10 usecs
[    1.564673] calling  pcie_pme_service_init+0x0/0xf @ 1
[    1.564685] pcieport 0000:00:15.0: Signaling PME through PCIe PME interrupt
[    1.564696] pcie_pme 0000:00:15.0:pcie01: service driver pcie_pme loaded
[    1.564707] pcieport 0000:00:15.1: Signaling PME through PCIe PME interrupt
[    1.564718] pcie_pme 0000:00:15.1:pcie01: service driver pcie_pme loaded
[    1.564730] pcieport 0000:00:15.2: Signaling PME through PCIe PME interrupt
[    1.564741] pcie_pme 0000:00:15.2:pcie01: service driver pcie_pme loaded
[    1.564752] pcieport 0000:00:15.3: Signaling PME through PCIe PME interrupt
[    1.564763] pcie_pme 0000:00:15.3:pcie01: service driver pcie_pme loaded
[    1.564774] pcieport 0000:00:15.4: Signaling PME through PCIe PME interrupt
[    1.564786] pcie_pme 0000:00:15.4:pcie01: service driver pcie_pme loaded
[    1.564797] pcieport 0000:00:15.5: Signaling PME through PCIe PME interrupt
[    1.564808] pcie_pme 0000:00:15.5:pcie01: service driver pcie_pme loaded
[    1.564819] pcieport 0000:00:15.6: Signaling PME through PCIe PME interrupt
[    1.564830] pcie_pme 0000:00:15.6:pcie01: service driver pcie_pme loaded
[    1.564842] pcieport 0000:00:15.7: Signaling PME through PCIe PME interrupt
[    1.564853] pcie_pme 0000:00:15.7:pcie01: service driver pcie_pme loaded
[    1.564864] pcieport 0000:00:16.0: Signaling PME through PCIe PME interrupt
[    1.564875] pcie_pme 0000:00:16.0:pcie01: service driver pcie_pme loaded
[    1.564886] pcieport 0000:00:16.1: Signaling PME through PCIe PME interrupt
[    1.564898] pcie_pme 0000:00:16.1:pcie01: service driver pcie_pme loaded
[    1.564909] pcieport 0000:00:16.2: Signaling PME through PCIe PME interrupt
[    1.564920] pcie_pme 0000:00:16.2:pcie01: service driver pcie_pme loaded
[    1.564931] pcieport 0000:00:16.3: Signaling PME through PCIe PME interrupt
[    1.564943] pcie_pme 0000:00:16.3:pcie01: service driver pcie_pme loaded
[    1.564954] pcieport 0000:00:16.4: Signaling PME through PCIe PME interrupt
[    1.564965] pcie_pme 0000:00:16.4:pcie01: service driver pcie_pme loaded
[    1.564976] pcieport 0000:00:16.5: Signaling PME through PCIe PME interrupt
[    1.564987] pcie_pme 0000:00:16.5:pcie01: service driver pcie_pme loaded
[    1.564999] pcieport 0000:00:16.6: Signaling PME through PCIe PME interrupt
[    1.565010] pcie_pme 0000:00:16.6:pcie01: service driver pcie_pme loaded
[    1.565021] pcieport 0000:00:16.7: Signaling PME through PCIe PME interrupt
[    1.565032] pcie_pme 0000:00:16.7:pcie01: service driver pcie_pme loaded
[    1.565043] pcieport 0000:00:17.0: Signaling PME through PCIe PME interrupt
[    1.565055] pcie_pme 0000:00:17.0:pcie01: service driver pcie_pme loaded
[    1.565066] pcieport 0000:00:17.1: Signaling PME through PCIe PME interrupt
[    1.565077] pcie_pme 0000:00:17.1:pcie01: service driver pcie_pme loaded
[    1.565088] pcieport 0000:00:17.2: Signaling PME through PCIe PME interrupt
[    1.565099] pcie_pme 0000:00:17.2:pcie01: service driver pcie_pme loaded
[    1.565111] pcieport 0000:00:17.3: Signaling PME through PCIe PME interrupt
[    1.565122] pcie_pme 0000:00:17.3:pcie01: service driver pcie_pme loaded
[    1.565133] pcieport 0000:00:17.4: Signaling PME through PCIe PME interrupt
[    1.565144] pcie_pme 0000:00:17.4:pcie01: service driver pcie_pme loaded
[    1.565156] pcieport 0000:00:17.5: Signaling PME through PCIe PME interrupt
[    1.565167] pcie_pme 0000:00:17.5:pcie01: service driver pcie_pme loaded
[    1.565178] pcieport 0000:00:17.6: Signaling PME through PCIe PME interrupt
[    1.565189] pcie_pme 0000:00:17.6:pcie01: service driver pcie_pme loaded
[    1.565200] pcieport 0000:00:17.7: Signaling PME through PCIe PME interrupt
[    1.565212] pcie_pme 0000:00:17.7:pcie01: service driver pcie_pme loaded
[    1.565223] pcieport 0000:00:18.0: Signaling PME through PCIe PME interrupt
[    1.565234] pcie_pme 0000:00:18.0:pcie01: service driver pcie_pme loaded
[    1.565245] pcieport 0000:00:18.1: Signaling PME through PCIe PME interrupt
[    1.565256] pcie_pme 0000:00:18.1:pcie01: service driver pcie_pme loaded
[    1.565268] pcieport 0000:00:18.2: Signaling PME through PCIe PME interrupt
[    1.565279] pcie_pme 0000:00:18.2:pcie01: service driver pcie_pme loaded
[    1.565290] pcieport 0000:00:18.3: Signaling PME through PCIe PME interrupt
[    1.565301] pcie_pme 0000:00:18.3:pcie01: service driver pcie_pme loaded
[    1.565312] pcieport 0000:00:18.4: Signaling PME through PCIe PME interrupt
[    1.565324] pcie_pme 0000:00:18.4:pcie01: service driver pcie_pme loaded
[    1.565335] pcieport 0000:00:18.5: Signaling PME through PCIe PME interrupt
[    1.565346] pcie_pme 0000:00:18.5:pcie01: service driver pcie_pme loaded
[    1.565357] pcieport 0000:00:18.6: Signaling PME through PCIe PME interrupt
[    1.565369] pcie_pme 0000:00:18.6:pcie01: service driver pcie_pme loaded
[    1.565380] pcieport 0000:00:18.7: Signaling PME through PCIe PME interrupt
[    1.565391] pcie_pme 0000:00:18.7:pcie01: service driver pcie_pme loaded
[    1.565413] initcall pcie_pme_service_init+0x0/0xf returned 0 after 711 usecs
[    1.565416] calling  ioapic_init+0x0/0x16 @ 1
[    1.565439] initcall ioapic_init+0x0/0x16 returned 0 after 10 usecs
[    1.565442] calling  pci_hotplug_init+0x0/0x1e @ 1
[    1.565454] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    1.565468] initcall pci_hotplug_init+0x0/0x1e returned 0 after 21 usecs
[    1.565470] calling  pcied_init+0x0/0x76 @ 1
[    1.566523] pciehp 0000:00:15.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[    1.566535] pciehp 0000:00:15.0:pcie04: service driver pciehp loaded
[    1.566546] pciehp 0000:00:15.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[    1.566557] pciehp 0000:00:15.1:pcie04: service driver pciehp loaded
[    1.566568] pciehp 0000:00:15.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[    1.566580] pciehp 0000:00:15.2:pcie04: service driver pciehp loaded
[    1.566591] pciehp 0000:00:15.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[    1.566602] pciehp 0000:00:15.3:pcie04: service driver pciehp loaded
[    1.566613] pciehp 0000:00:15.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[    1.566624] pciehp 0000:00:15.4:pcie04: service driver pciehp loaded
[    1.566636] pciehp 0000:00:15.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[    1.566647] pciehp 0000:00:15.5:pcie04: service driver pciehp loaded
[    1.566658] pciehp 0000:00:15.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[    1.566669] pciehp 0000:00:15.6:pcie04: service driver pciehp loaded
[    1.566680] pciehp 0000:00:15.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[    1.566692] pciehp 0000:00:15.7:pcie04: service driver pciehp loaded
[    1.566703] pciehp 0000:00:16.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[    1.566714] pciehp 0000:00:16.0:pcie04: service driver pciehp loaded
[    1.566725] pciehp 0000:00:16.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[    1.566736] pciehp 0000:00:16.1:pcie04: service driver pciehp loaded
[    1.566748] pciehp 0000:00:16.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[    1.566759] pciehp 0000:00:16.2:pcie04: service driver pciehp loaded
[    1.566770] pciehp 0000:00:16.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[    1.566781] pciehp 0000:00:16.3:pcie04: service driver pciehp loaded
[    1.566793] pciehp 0000:00:16.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[    1.566804] pciehp 0000:00:16.4:pcie04: service driver pciehp loaded
[    1.566815] pciehp 0000:00:16.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[    1.566826] pciehp 0000:00:16.5:pcie04: service driver pciehp loaded
[    1.566837] pciehp 0000:00:16.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[    1.566849] pciehp 0000:00:16.6:pcie04: service driver pciehp loaded
[    1.566860] pciehp 0000:00:16.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[    1.566871] pciehp 0000:00:16.7:pcie04: service driver pciehp loaded
[    1.566882] pciehp 0000:00:17.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[    1.566893] pciehp 0000:00:17.0:pcie04: service driver pciehp loaded
[    1.566905] pciehp 0000:00:17.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[    1.566916] pciehp 0000:00:17.1:pcie04: service driver pciehp loaded
[    1.566927] pciehp 0000:00:17.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[    1.566938] pciehp 0000:00:17.2:pcie04: service driver pciehp loaded
[    1.566949] pciehp 0000:00:17.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[    1.566961] pciehp 0000:00:17.3:pcie04: service driver pciehp loaded
[    1.566972] pciehp 0000:00:17.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[    1.566983] pciehp 0000:00:17.4:pcie04: service driver pciehp loaded
[    1.566994] pciehp 0000:00:17.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[    1.567006] pciehp 0000:00:17.5:pcie04: service driver pciehp loaded
[    1.567017] pciehp 0000:00:17.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[    1.567028] pciehp 0000:00:17.6:pcie04: service driver pciehp loaded
[    1.567039] pciehp 0000:00:17.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[    1.567050] pciehp 0000:00:17.7:pcie04: service driver pciehp loaded
[    1.567062] pciehp 0000:00:18.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[    1.567073] pciehp 0000:00:18.0:pcie04: service driver pciehp loaded
[    1.567084] pciehp 0000:00:18.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[    1.567095] pciehp 0000:00:18.1:pcie04: service driver pciehp loaded
[    1.567106] pciehp 0000:00:18.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[    1.567118] pciehp 0000:00:18.2:pcie04: service driver pciehp loaded
[    1.567129] pciehp 0000:00:18.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[    1.567140] pciehp 0000:00:18.3:pcie04: service driver pciehp loaded
[    1.567151] pciehp 0000:00:18.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[    1.567162] pciehp 0000:00:18.4:pcie04: service driver pciehp loaded
[    1.567174] pciehp 0000:00:18.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[    1.567185] pciehp 0000:00:18.5:pcie04: service driver pciehp loaded
[    1.567196] pciehp 0000:00:18.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[    1.567207] pciehp 0000:00:18.6:pcie04: service driver pciehp loaded
[    1.567219] pciehp 0000:00:18.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[    1.567230] pciehp 0000:00:18.7:pcie04: service driver pciehp loaded
[    1.567241] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    1.567254] initcall pcied_init+0x0/0x76 returned 0 after 1738 usecs
[    1.567257] calling  acpiphp_init+0x0/0x50 @ 1
[    1.567269] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    1.569524] acpiphp: Slot [32] registered
[    1.569535] acpiphp: Slot [33] registered
[    1.569546] acpiphp: Slot [34] registered
[    1.569558] acpiphp: Slot [35] registered
[    1.569569] acpiphp: Slot [36] registered
[    1.569580] acpiphp: Slot [37] registered
[    1.569591] acpiphp: Slot [38] registered
[    1.569602] acpiphp: Slot [39] registered
[    1.569614] acpiphp: Slot [40] registered
[    1.569625] acpiphp: Slot [41] registered
[    1.569636] acpiphp: Slot [42] registered
[    1.569647] acpiphp: Slot [43] registered
[    1.569658] acpiphp: Slot [44] registered
[    1.569670] acpiphp: Slot [45] registered
[    1.569681] acpiphp: Slot [46] registered
[    1.569692] acpiphp: Slot [47] registered
[    1.569703] acpiphp: Slot [48] registered
[    1.569715] acpiphp: Slot [49] registered
[    1.569726] acpiphp: Slot [50] registered
[    1.569737] acpiphp: Slot [51] registered
[    1.569748] acpiphp: Slot [52] registered
[    1.569759] acpiphp: Slot [53] registered
[    1.569771] acpiphp: Slot [54] registered
[    1.569782] acpiphp: Slot [55] registered
[    1.569793] acpiphp: Slot [56] registered
[    1.569804] acpiphp: Slot [57] registered
[    1.569815] acpiphp: Slot [58] registered
[    1.569827] acpiphp: Slot [59] registered
[    1.569838] acpiphp: Slot [60] registered
[    1.569849] acpiphp: Slot [61] registered
[    1.569860] acpiphp: Slot [62] registered
[    1.569871] acpiphp: Slot [63] registered
[    1.570512] initcall acpiphp_init+0x0/0x50 returned 0 after 3167 usecs
[    1.570515] calling  pci_stub_init+0x0/0x155 @ 1
[    1.570538] initcall pci_stub_init+0x0/0x155 returned 0 after 10 usecs
[    1.570541] calling  fb_console_init+0x0/0x182 @ 1
[    1.570565] initcall fb_console_init+0x0/0x182 returned 0 after 10 usecs
[    1.570569] calling  gxfb_init+0x0/0x6a @ 1
[    1.570593] initcall gxfb_init+0x0/0x6a returned 0 after 10 usecs
[    1.570596] calling  lxfb_init+0x0/0xcc @ 1
[    1.570619] initcall lxfb_init+0x0/0xcc returned 0 after 10 usecs
[    1.570622] calling  vesafb_init+0x0/0x20d @ 1
[    1.570634] vesafb: mode is 640x480x32, linelength=2560, pages=0
[    1.570645] vesafb: scrolling: redraw
[    1.570656] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    1.570667] vesafb: framebuffer at 0xd0000000, mapped to 0xd0880000, using 1216k, total 1216k
[    1.573530] Console: switching to colour frame buffer device 80x30
[    1.576519] fb0: VESA VGA frame buffer device
[    1.576536] initcall vesafb_init+0x0/0x20d returned 0 after 5770 usecs
[    1.576540] calling  efifb_init+0x0/0x255 @ 1
[    1.576554] initcall efifb_init+0x0/0x255 returned -19 after 10 usecs
[    1.576558] calling  intel_idle_init+0x0/0x32d @ 1
[    1.576570] intel_idle: does not run on family 6 model 42
[    1.576584] initcall intel_idle_init+0x0/0x32d returned -19 after 21 usecs
[    1.576589] calling  acpi_reserve_resources+0x0/0xc8 @ 1
[    1.576605] initcall acpi_reserve_resources+0x0/0xc8 returned 0 after 10 usecs
[    1.576609] calling  irqrouter_init_ops+0x0/0x26 @ 1
[    1.576625] initcall irqrouter_init_ops+0x0/0x26 returned 0 after 10 usecs
[    1.576628] calling  acpi_ac_init+0x0/0x2d @ 1
[    1.584523] ACPI: AC Adapter [ACAD] (on-line)
[    1.584621] initcall acpi_ac_init+0x0/0x2d returned 0 after 7799 usecs
[    1.584624] calling  acpi_button_driver_init+0x0/0xf @ 1
[    1.585557] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    1.585568] ACPI: Power Button [PWRF]
[    1.585590] initcall acpi_button_driver_init+0x0/0xf returned 0 after 931 usecs
[    1.585593] calling  acpi_fan_driver_init+0x0/0xf @ 1
[    1.585616] initcall acpi_fan_driver_init+0x0/0xf returned 0 after 10 usecs
[    1.585618] calling  acpi_pci_slot_init+0x0/0x1b @ 1
[    1.586533] initcall acpi_pci_slot_init+0x0/0x1b returned 0 after 882 usecs
[    1.586537] calling  acpi_processor_init+0x0/0x6e @ 1
[    1.680544] initcall acpi_processor_init+0x0/0x6e returned 0 after 91811 usecs
[    1.680554] calling  acpi_container_init+0x0/0x4d @ 1
[    1.740527] initcall acpi_container_init+0x0/0x4d returned 0 after 58568 usecs
[    1.740537] calling  acpi_thermal_init+0x0/0x3c @ 1
[    1.740552] initcall acpi_thermal_init+0x0/0x3c returned 0 after 10 usecs
[    1.740555] calling  acpi_battery_init+0x0/0x13 @ 1
[    1.740580] initcall acpi_battery_init+0x0/0x13 returned 0 after 21 usecs
[    1.740583] calling  acpi_hed_driver_init+0x0/0xf @ 1
[    1.740596] initcall acpi_hed_driver_init+0x0/0xf returned 0 after 10 usecs
[    1.740598] calling  bgrt_init+0x0/0x86 @ 1
[    1.740644] initcall bgrt_init+0x0/0x86 returned -19 after 10 usecs
[    1.740648] calling  erst_init+0x0/0x26f @ 1
[    1.740691] initcall erst_init+0x0/0x26f returned 0 after 39 usecs
[    1.740693] calling  ghes_init+0x0/0x16c @ 1
[    1.740705] GHES: HEST is not enabled!
[    1.740715] initcall ghes_init+0x0/0x16c returned -22 after 18 usecs
[    1.740726] initcall ghes_init+0x0/0x16c returned with error code -22 
[    1.740731] calling  virtio_pci_driver_init+0x0/0x16 @ 1
[    1.740795] initcall virtio_pci_driver_init+0x0/0x16 returned 0 after 59 usecs
[    1.740799] calling  pty_init+0x0/0x1fc @ 1
[    1.741114] initcall pty_init+0x0/0x1fc returned 0 after 297 usecs
[    1.741119] calling  sysrq_init+0x0/0x7a @ 1
[    1.741121] calling  1_acpi_battery_init_async+0x0/0x18 @ 6
[    1.741155] initcall sysrq_init+0x0/0x7a returned 0 after 22 usecs
[    1.741157] calling  serial8250_init+0x0/0x13c @ 1
[    1.741169] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    1.741192] initcall 1_acpi_battery_init_async+0x0/0x18 returned 0 after 47 usecs
[    1.762569] 00:09: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[    1.793678] 00:0a: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
[    1.794535] initcall serial8250_init+0x0/0x13c returned 0 after 52128 usecs
[    1.794542] calling  serial_pci_driver_init+0x0/0x16 @ 1
[    1.794561] initcall serial_pci_driver_init+0x0/0x16 returned 0 after 10 usecs
[    1.794566] calling  init_kgdboc+0x0/0x15 @ 1
[    1.794583] initcall init_kgdboc+0x0/0x15 returned 0 after 10 usecs
[    1.794594] calling  rand_initialize+0x0/0x30 @ 1
[    1.794645] initcall rand_initialize+0x0/0x30 returned 0 after 43 usecs
[    1.794650] calling  init+0x0/0xfb @ 1
[    1.794667] initcall init+0x0/0xfb returned 0 after 10 usecs
[    1.794671] calling  raw_init+0x0/0x135 @ 1
[    1.795503] initcall raw_init+0x0/0x135 returned 0 after 805 usecs
[    1.795508] calling  hpet_init+0x0/0x59 @ 1
[    1.796508] initcall hpet_init+0x0/0x59 returned 0 after 968 usecs
[    1.796515] calling  nvram_init+0x0/0x7e @ 1
[    1.796551] Non-volatile memory driver v1.3
[    1.796566] initcall nvram_init+0x0/0x7e returned 0 after 43 usecs
[    1.796570] calling  agp_init+0x0/0x32 @ 1
[    1.796583] Linux agpgart interface v0.103
[    1.796596] initcall agp_init+0x0/0x32 returned 0 after 20 usecs
[    1.796600] calling  agp_ali_init+0x0/0x27 @ 1
[    1.796617] initcall agp_ali_init+0x0/0x27 returned 0 after 10 usecs
[    1.796621] calling  agp_ati_init+0x0/0x27 @ 1
[    1.796637] initcall agp_ati_init+0x0/0x27 returned 0 after 10 usecs
[    1.796641] calling  agp_amdk7_init+0x0/0x27 @ 1
[    1.796658] initcall agp_amdk7_init+0x0/0x27 returned 0 after 10 usecs
[    1.796662] calling  agp_amd64_mod_init+0x0/0xa @ 1
[    1.797482] initcall agp_amd64_mod_init+0x0/0xa returned -19 after 795 usecs
[    1.797486] calling  agp_efficeon_init+0x0/0x3c @ 1
[    1.797500] initcall agp_efficeon_init+0x0/0x3c returned 0 after 10 usecs
[    1.797503] calling  agp_intel_init+0x0/0x27 @ 1
[    1.797515] agpgart-intel 0000:00:00.0: Intel 440BX Chipset
[    1.797843] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0x0
[    1.797858] initcall agp_intel_init+0x0/0x27 returned 0 after 342 usecs
[    1.797861] calling  agp_nvidia_init+0x0/0x27 @ 1
[    1.797876] initcall agp_nvidia_init+0x0/0x27 returned 0 after 10 usecs
[    1.797878] calling  agp_sis_init+0x0/0x27 @ 1
[    1.797892] initcall agp_sis_init+0x0/0x27 returned 0 after 10 usecs
[    1.797894] calling  agp_serverworks_init+0x0/0x27 @ 1
[    1.797908] initcall agp_serverworks_init+0x0/0x27 returned 0 after 10 usecs
[    1.797911] calling  agp_via_init+0x0/0x27 @ 1
[    1.797925] initcall agp_via_init+0x0/0x27 returned 0 after 10 usecs
[    1.797927] calling  cn_proc_init+0x0/0x31 @ 1
[    1.797941] initcall cn_proc_init+0x0/0x31 returned 0 after 10 usecs
[    1.797949] calling  topology_sysfs_init+0x0/0x4c @ 1
[    1.797963] initcall topology_sysfs_init+0x0/0x4c returned 0 after 10 usecs
[    1.797966] calling  loop_init+0x0/0x123 @ 1
[    1.798754] loop: module loaded
[    1.798767] initcall loop_init+0x0/0x123 returned 0 after 778 usecs
[    1.798769] calling  init_kgdbts+0x0/0x15 @ 1
[    1.798784] initcall init_kgdbts+0x0/0x15 returned 0 after 10 usecs
[    1.798787] calling  mac_hid_init+0x0/0x1c @ 1
[    1.798801] initcall mac_hid_init+0x0/0x1c returned 0 after 10 usecs
[    1.798804] calling  scsi_dh_init+0x0/0x35 @ 1
[    1.798818] initcall scsi_dh_init+0x0/0x35 returned 0 after 10 usecs
[    1.798821] calling  init_sd+0x0/0x121 @ 1
[    1.798836] initcall init_sd+0x0/0x121 returned 0 after 10 usecs
[    1.798839] calling  init_sr+0x0/0x3d @ 1
[    1.798853] initcall init_sr+0x0/0x3d returned 0 after 10 usecs
[    1.798855] calling  init_sg+0x0/0x10e @ 1
[    1.798869] initcall init_sg+0x0/0x10e returned 0 after 10 usecs
[    1.798872] calling  ahci_pci_driver_init+0x0/0x16 @ 1
[    1.798886] initcall ahci_pci_driver_init+0x0/0x16 returned 0 after 10 usecs
[    1.798888] calling  piix_init+0x0/0x24 @ 1
[    1.798900] ata_piix 0000:00:07.1: version 2.13
[    1.803626] scsi0 : ata_piix
[    1.804738] scsi1 : ata_piix
[    1.804749] ata1: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0x10c0 irq 14
[    1.804761] ata2: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0x10c8 irq 15
[    1.804842] calling  2_async_port_probe+0x0/0x70 @ 6
[    1.804873] initcall piix_init+0x0/0x24 returned 0 after 5835 usecs
[    1.804884] calling  net_olddevs_init+0x0/0x72 @ 1
[    1.804921] initcall net_olddevs_init+0x0/0x72 returned 0 after 31 usecs
[    1.804925] calling  fixed_mdio_bus_init+0x0/0xe0 @ 1
[    1.804973] libphy: Fixed MDIO Bus: probed
[    1.804989] initcall fixed_mdio_bus_init+0x0/0xe0 returned 0 after 56 usecs
[    1.804994] calling  cdrom_init+0x0/0x18 @ 1
[    1.805010] initcall cdrom_init+0x0/0x18 returned 0 after 10 usecs
[    1.805014] calling  nonstatic_sysfs_init+0x0/0xf @ 1
[    1.805031] initcall nonstatic_sysfs_init+0x0/0xf returned 0 after 10 usecs
[    1.805034] calling  mon_init+0x0/0xdf @ 1
[    1.805614] initcall mon_init+0x0/0xdf returned 0 after 560 usecs
[    1.805619] calling  ehci_hcd_init+0x0/0xa4 @ 1
[    1.805632] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.805646] initcall ehci_hcd_init+0x0/0xa4 returned 0 after 21 usecs
[    1.805650] calling  ehci_pci_init+0x0/0x62 @ 1
[    1.805665] ehci-pci: EHCI PCI platform driver
[    1.805676] ehci-pci 0000:02:03.0: EHCI Host Controller
[    1.805714] ehci-pci 0000:02:03.0: new USB bus registered, assigned bus number 1
[    1.805986] calling  3_async_port_probe+0x0/0x70 @ 52
[    1.806020] ehci-pci 0000:02:03.0: cache line size of 32 is not supported
[    1.806122] ehci-pci 0000:02:03.0: irq 17, io mem 0xc9000000
[    1.811490] ehci-pci 0000:02:03.0: USB 2.0 started, EHCI 1.00
[    1.813467] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    1.813478] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.813489] usb usb1: Product: EHCI Host Controller
[    1.813500] usb usb1: Manufacturer: Linux 3.8.8-100.fc17.i686 ehci_hcd
[    1.813512] usb usb1: SerialNumber: 0000:02:03.0
[    1.816464] hub 1-0:1.0: USB hub found
[    1.816476] hub 1-0:1.0: 6 ports detected
[    1.818488] initcall ehci_pci_init+0x0/0x62 returned 0 after 12529 usecs
[    1.818495] calling  ohci_hcd_mod_init+0x0/0x88 @ 1
[    1.818508] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.818524] initcall ohci_hcd_mod_init+0x0/0x88 returned 0 after 21 usecs
[    1.818529] calling  uhci_hcd_init+0x0/0xbd @ 1
[    1.818542] uhci_hcd: USB Universal Host Controller Interface driver
[    1.818553] uhci_hcd 0000:02:00.0: UHCI Host Controller
[    1.818587] uhci_hcd 0000:02:00.0: new USB bus registered, assigned bus number 2
[    1.818614] uhci_hcd 0000:02:00.0: irq 18, io base 0x00002440
[    1.819478] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[    1.819488] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.819492] usb usb2: Product: UHCI Host Controller
[    1.819496] usb usb2: Manufacturer: Linux 3.8.8-100.fc17.i686 uhci_hcd
[    1.819499] usb usb2: SerialNumber: 0000:02:00.0
[    1.819539] hub 2-0:1.0: USB hub found
[    1.819550] hub 2-0:1.0: 2 ports detected
[    1.820494] initcall uhci_hcd_init+0x0/0xbd returned 0 after 1911 usecs
[    1.820500] calling  xhci_hcd_init+0x0/0x26 @ 1
[    1.820518] initcall xhci_hcd_init+0x0/0x26 returned 0 after 10 usecs
[    1.820523] calling  usb_serial_init+0x0/0x199 @ 1
[    1.820535] usbcore: registered new interface driver usbserial
[    1.820547] usbcore: registered new interface driver usbserial_generic
[    1.820558] usbserial: USB Serial support registered for generic
[    1.820575] initcall usb_serial_init+0x0/0x199 returned 0 after 43 usecs
[    1.820580] calling  kgdbdbgp_start_thread+0x0/0x5a @ 1
[    1.820596] initcall kgdbdbgp_start_thread+0x0/0x5a returned 0 after 10 usecs
[    1.820600] calling  i8042_init+0x0/0x3dd @ 1
[    1.821467] i8042: PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:MOUS] at 0x60,0x64 irq 1,12
[    1.971059] async_waiting @ 6
[    1.971163] async_continuing @ 6 after 65 usec
[    1.971278] initcall 2_async_port_probe+0x0/0x70 returned 0 after 162544 usecs
[    2.001432] ata2.00: ATAPI: VMware Virtual IDE CDROM Drive, 00000001, max UDMA/33
[    2.002675] ata2.00: configured for UDMA/33
[    2.008074] async_waiting @ 52
[    2.008216] async_continuing @ 52 after 100 usec
[    2.017670] scsi 1:0:0:0: CD-ROM            NECVMWar VMware IDE CDR10 1.00 PQ: 0 ANSI: 5
[    2.035761] sr0: scsi3-mmc drive: 40x/40x cd/rw xa/form2 cdda tray
[    2.035951] cdrom: Uniform CD-ROM driver Revision: 3.20
[    2.329532] sr 1:0:0:0: Attached scsi CD-ROM sr0
[    2.329686] serio: i8042 KBD port at 0x60,0x64 irq 1
[    2.329748] serio: i8042 AUX port at 0x60,0x64 irq 12
[    2.329820] initcall i8042_init+0x0/0x3dd returned 0 after 497387 usecs
[    2.329824] calling  serport_init+0x0/0x2c @ 1
[    2.329848] initcall serport_init+0x0/0x2c returned 0 after 20 usecs
[    2.329851] calling  mousedev_init+0x0/0x52 @ 1
[    2.329914] mousedev: PS/2 mouse device common for all mice
[    2.329923] initcall mousedev_init+0x0/0x52 returned 0 after 67 usecs
[    2.329926] calling  evdev_init+0x0/0xf @ 1
[    2.329981] initcall evdev_init+0x0/0xf returned 0 after 50 usecs
[    2.329984] calling  atkbd_init+0x0/0x20 @ 1
[    2.330022] initcall atkbd_init+0x0/0x20 returned 0 after 34 usecs
[    2.330025] calling  psmouse_init+0x0/0x87 @ 1
[    2.330714] initcall psmouse_init+0x0/0x87 returned 0 after 667 usecs
[    2.330720] calling  cmos_init+0x0/0x5e @ 1
[    2.330785] sr 1:0:0:0: Attached scsi generic sg0 type 5
[    2.331748] initcall 3_async_port_probe+0x0/0x70 returned 0 after 513533 usecs
[    2.332319] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
[    2.332439] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    2.332465] initcall cmos_init+0x0/0x5e returned 0 after 1697 usecs
[    2.332468] calling  ce4100_i2c_driver_init+0x0/0x16 @ 1
[    2.332492] initcall ce4100_i2c_driver_init+0x0/0x16 returned 0 after 20 usecs
[    2.332495] calling  olpc_battery_driver_init+0x0/0xf @ 1
[    2.332519] initcall olpc_battery_driver_init+0x0/0xf returned 0 after 20 usecs
[    2.332521] calling  gpio_poweroff_driver_init+0x0/0xf @ 1
[    2.332542] initcall gpio_poweroff_driver_init+0x0/0xf returned 0 after 17 usecs
[    2.332545] calling  dm_init+0x0/0x34 @ 1
[    2.332566] device-mapper: uevent: version 1.0.3
[    2.332691] device-mapper: ioctl: 4.23.1-ioctl (2012-12-18) initialised: dm-devel@redhat.com
[    2.332716] initcall dm_init+0x0/0x34 returned 0 after 161 usecs
[    2.332724] calling  dm_snapshot_init+0x0/0x1be @ 1
[    2.332761] initcall dm_snapshot_init+0x0/0x1be returned 0 after 20 usecs
[    2.332782] calling  dm_mirror_init+0x0/0x2b @ 1
[    2.332942] initcall dm_mirror_init+0x0/0x2b returned 0 after 133 usecs
[    2.332946] calling  dm_dirty_log_init+0x0/0x4b @ 1
[    2.332979] initcall dm_dirty_log_init+0x0/0x4b returned 0 after 20 usecs
[    2.332983] calling  dm_zero_init+0x0/0x2e @ 1
[    2.333005] initcall dm_zero_init+0x0/0x2e returned 0 after 18 usecs
[    2.333008] calling  cpufreq_gov_powersave_init+0x0/0xf @ 1
[    2.333041] initcall cpufreq_gov_powersave_init+0x0/0xf returned 0 after 20 usecs
[    2.333044] calling  cpufreq_gov_userspace_init+0x0/0xf @ 1
[    2.333061] initcall cpufreq_gov_userspace_init+0x0/0xf returned 0 after 13 usecs
[    2.333064] calling  cpufreq_gov_dbs_init+0x0/0x23 @ 1
[    2.333097] initcall cpufreq_gov_dbs_init+0x0/0x23 returned 0 after 20 usecs
[    2.333100] calling  longrun_init+0x0/0x24 @ 1
[    2.333133] initcall longrun_init+0x0/0x24 returned -19 after 20 usecs
[    2.333149] calling  speedstep_init+0x0/0x288 @ 1
[    2.333182] initcall speedstep_init+0x0/0x288 returned -19 after 20 usecs
[    2.333185] calling  speedstep_init+0x0/0x128 @ 1
[    2.333209] initcall speedstep_init+0x0/0x128 returned -19 after 19 usecs
[    2.333212] calling  init_ladder+0x0/0xf @ 1
[    2.333226] cpuidle: using governor ladder
[    2.333392] initcall init_ladder+0x0/0xf returned 0 after 161 usecs
[    2.333396] calling  init_menu+0x0/0xf @ 1
[    2.333418] cpuidle: using governor menu
[    2.333441] initcall init_menu+0x0/0xf returned 0 after 38 usecs
[    2.333444] calling  dmi_sysfs_init+0x0/0x9d @ 1
[    2.333445] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
[    2.333757] initcall dmi_sysfs_init+0x0/0x9d returned 0 after 288 usecs
[    2.333777] calling  efivars_init+0x0/0xee @ 1
[    2.333819] EFI Variables Facility v0.08 2004-May-17
[    2.333848] initcall efivars_init+0x0/0xee returned 0 after 45 usecs
[    2.333851] calling  hid_init+0x0/0x5f @ 1
[    2.333994] initcall hid_init+0x0/0x5f returned 0 after 134 usecs
[    2.333997] calling  hid_init+0x0/0x16 @ 1
[    2.334067] initcall hid_init+0x0/0x16 returned 0 after 64 usecs
[    2.334070] calling  a4_init+0x0/0x16 @ 1
[    2.334084] initcall a4_init+0x0/0x16 returned 0 after 10 usecs
[    2.334086] calling  apple_init+0x0/0x2e @ 1
[    2.334121] initcall apple_init+0x0/0x2e returned 0 after 21 usecs
[    2.334123] calling  belkin_init+0x0/0x16 @ 1
[    2.334147] initcall belkin_init+0x0/0x16 returned 0 after 20 usecs
[    2.334149] calling  ch_init+0x0/0x16 @ 1
[    2.334181] initcall ch_init+0x0/0x16 returned 0 after 20 usecs
[    2.334184] calling  ch_init+0x0/0x16 @ 1
[    2.334208] initcall ch_init+0x0/0x16 returned 0 after 20 usecs
[    2.334210] calling  cp_init+0x0/0x16 @ 1
[    2.334242] initcall cp_init+0x0/0x16 returned 0 after 20 usecs
[    2.334244] calling  ez_init+0x0/0x16 @ 1
[    2.334268] initcall ez_init+0x0/0x16 returned 0 after 20 usecs
[    2.334270] calling  ks_init+0x0/0x16 @ 1
[    2.334294] initcall ks_init+0x0/0x16 returned 0 after 20 usecs
[    2.334296] calling  lg_init+0x0/0x16 @ 1
[    2.334318] initcall lg_init+0x0/0x16 returned 0 after 20 usecs
[    2.334318] calling  ms_init+0x0/0x16 @ 1
[    2.334388] initcall ms_init+0x0/0x16 returned 0 after 27 usecs
[    2.334390] calling  mr_init+0x0/0x16 @ 1
[    2.334414] initcall mr_init+0x0/0x16 returned 0 after 20 usecs
[    2.334417] calling  ntrig_init+0x0/0x16 @ 1
[    2.334458] initcall ntrig_init+0x0/0x16 returned 0 after 28 usecs
[    2.334461] calling  hid_init+0x0/0x45 @ 1
[    2.334850] usbcore: registered new interface driver usbhid
[    2.334870] usbhid: USB HID core driver
[    2.334897] initcall hid_init+0x0/0x45 returned 0 after 417 usecs
[    2.334901] calling  staging_init+0x0/0x7 @ 1
[    2.334910] initcall staging_init+0x0/0x7 returned 0 after 5 usecs
[    2.334912] calling  olpc_ec_init_module+0x0/0xf @ 1
[    2.334931] initcall olpc_ec_init_module+0x0/0xf returned 0 after 15 usecs
[    2.334935] calling  sock_diag_init+0x0/0xf @ 1
[    2.335109] initcall sock_diag_init+0x0/0xf returned 0 after 156 usecs
[    2.335112] calling  flow_cache_init_global+0x0/0x16a @ 1
[    2.335182] initcall flow_cache_init_global+0x0/0x16a returned 0 after 56 usecs
[    2.335185] calling  init_net_drop_monitor+0x0/0xe5 @ 1
[    2.335199] drop_monitor: Initializing network drop monitor service
[    2.335536] initcall init_net_drop_monitor+0x0/0xe5 returned 0 after 330 usecs
[    2.335539] calling  blackhole_module_init+0x0/0xf @ 1
[    2.335571] initcall blackhole_module_init+0x0/0xf returned 0 after 20 usecs
[    2.335574] calling  init_cgroup_cls+0x0/0x33 @ 1
[    2.335606] initcall init_cgroup_cls+0x0/0x33 returned 0 after 20 usecs
[    2.335608] calling  xt_init+0x0/0xc0 @ 1
[    2.335641] initcall xt_init+0x0/0xc0 returned 0 after 20 usecs
[    2.335643] calling  tcpudp_mt_init+0x0/0x14 @ 1
[    2.335676] initcall tcpudp_mt_init+0x0/0x14 returned 0 after 20 usecs
[    2.335678] calling  sysctl_ipv4_init+0x0/0x7a @ 1
[    2.335711] initcall sysctl_ipv4_init+0x0/0x7a returned 0 after 20 usecs
[    2.335714] calling  init_syncookies+0x0/0x16 @ 1
[    2.335746] initcall init_syncookies+0x0/0x16 returned 0 after 20 usecs
[    2.335748] calling  ipv4_netfilter_init+0x0/0xf @ 1
[    2.335780] initcall ipv4_netfilter_init+0x0/0xf returned 0 after 20 usecs
[    2.335782] calling  ip_tables_init+0x0/0x8d @ 1
[    2.335804] ip_tables: (C) 2000-2006 Netfilter Core Team
[    2.335826] initcall ip_tables_init+0x0/0x8d returned 0 after 39 usecs
[    2.335829] calling  iptable_filter_init+0x0/0x40 @ 1
[    2.336518] initcall iptable_filter_init+0x0/0x40 returned 0 after 652 usecs
[    2.336533] calling  reject_tg_init+0x0/0xf @ 1
[    2.336552] initcall reject_tg_init+0x0/0xf returned 0 after 15 usecs
[    2.336554] calling  cubictcp_register+0x0/0x73 @ 1
[    2.336576] TCP: cubic registered
[    2.336591] initcall cubictcp_register+0x0/0x73 returned 0 after 32 usecs
[    2.336593] calling  tcp_memcontrol_init+0x0/0x29 @ 1
[    2.336614] initcall tcp_memcontrol_init+0x0/0x29 returned 0 after 17 usecs
[    2.336616] calling  xfrm_user_init+0x0/0x41 @ 1
[    2.336628] Initializing XFRM netlink socket
[    2.336652] initcall xfrm_user_init+0x0/0x41 returned 0 after 30 usecs
[    2.336654] calling  inet6_init+0x0/0x29e @ 1
[    2.336676] NET: Registered protocol family 10
[    2.342362] initcall inet6_init+0x0/0x29e returned 0 after 5569 usecs
[    2.342367] calling  mip6_init+0x0/0xb4 @ 1
[    2.342379] mip6: Mobile IPv6
[    2.342402] initcall mip6_init+0x0/0xb4 returned 0 after 30 usecs
[    2.342405] calling  packet_init+0x0/0x39 @ 1
[    2.342426] NET: Registered protocol family 17
[    2.342450] initcall packet_init+0x0/0x39 returned 0 after 40 usecs
[    2.342453] calling  dcbnl_init+0x0/0x5e @ 1
[    2.342477] initcall dcbnl_init+0x0/0x5e returned 0 after 20 usecs
[    2.342482] calling  mcheck_init_device+0x0/0xe1 @ 1
[    2.342646] initcall mcheck_init_device+0x0/0xe1 returned 0 after 156 usecs
[    2.342667] calling  mcheck_debugfs_init+0x0/0x3e @ 1
[    2.343362] initcall mcheck_debugfs_init+0x0/0x3e returned 0 after 673 usecs
[    2.343365] calling  severities_debugfs_init+0x0/0x40 @ 1
[    2.343389] initcall severities_debugfs_init+0x0/0x40 returned 0 after 20 usecs
[    2.343391] calling  threshold_init_device+0x0/0x3f @ 1
[    2.343415] initcall threshold_init_device+0x0/0x3f returned 0 after 20 usecs
[    2.343417] calling  hpet_insert_resource+0x0/0x21 @ 1
[    2.343441] initcall hpet_insert_resource+0x0/0x21 returned 0 after 20 usecs
[    2.343446] calling  update_mp_table+0x0/0x40e @ 1
[    2.343469] initcall update_mp_table+0x0/0x40e returned 0 after 20 usecs
[    2.343471] calling  lapic_insert_resource+0x0/0x34 @ 1
[    2.343494] initcall lapic_insert_resource+0x0/0x34 returned 0 after 18 usecs
[    2.343496] calling  io_apic_bug_finalize+0x0/0x1a @ 1
[    2.343509] initcall io_apic_bug_finalize+0x0/0x1a returned 0 after 10 usecs
[    2.343511] calling  print_ICs+0x0/0x4a7 @ 1
[    2.343521] initcall print_ICs+0x0/0x4a7 returned 0 after 7 usecs
[    2.343523] calling  print_ipi_mode+0x0/0x2e @ 1
[    2.343538] Using IPI No-Shortcut mode
[    2.343544] initcall print_ipi_mode+0x0/0x2e returned 0 after 18 usecs
[    2.343547] calling  check_early_ioremap_leak+0x0/0x54 @ 1
[    2.343564] initcall check_early_ioremap_leak+0x0/0x54 returned 0 after 14 usecs
[    2.343567] calling  pat_memtype_list_init+0x0/0x3a @ 1
[    2.343591] initcall pat_memtype_list_init+0x0/0x3a returned 0 after 20 usecs
[    2.343600] calling  init_oops_id+0x0/0x50 @ 1
[    2.343624] initcall init_oops_id+0x0/0x50 returned 0 after 20 usecs
[    2.343626] calling  printk_late_init+0x0/0x56 @ 1
[    2.343650] initcall printk_late_init+0x0/0x56 returned 0 after 20 usecs
[    2.343653] calling  sched_init_debug+0x0/0x2a @ 1
[    2.343677] initcall sched_init_debug+0x0/0x2a returned 0 after 20 usecs
[    2.343679] calling  pm_qos_power_init+0x0/0x5b @ 1
[    2.344045] initcall pm_qos_power_init+0x0/0x5b returned 0 after 354 usecs
[    2.344048] calling  pm_debugfs_init+0x0/0x2a @ 1
[    2.344071] initcall pm_debugfs_init+0x0/0x2a returned 0 after 20 usecs
[    2.344077] calling  software_resume+0x0/0x340 @ 1
[    2.344099] PM: Hibernation image not present or could not be loaded.
[    2.344109] initcall software_resume+0x0/0x340 returned -2 after 28 usecs
[    2.344130] initcall software_resume+0x0/0x340 returned with error code -2 
[    2.344138] calling  debugfs_kprobe_init+0x0/0x90 @ 1
[    2.344163] initcall debugfs_kprobe_init+0x0/0x90 returned 0 after 20 usecs
[    2.344165] calling  taskstats_init+0x0/0x85 @ 1
[    2.344187] registered taskstats version 1
[    2.344197] initcall taskstats_init+0x0/0x85 returned 0 after 28 usecs
[    2.344199] calling  clear_boot_tracer+0x0/0x30 @ 1
[    2.344209] initcall clear_boot_tracer+0x0/0x30 returned 0 after 7 usecs
[    2.344211] calling  kdb_ftrace_register+0x0/0x35 @ 1
[    2.344351] initcall kdb_ftrace_register+0x0/0x35 returned 0 after 133 usecs
[    2.344354] calling  max_swapfiles_check+0x0/0x7 @ 1
[    2.344364] initcall max_swapfiles_check+0x0/0x7 returned 0 after 7 usecs
[    2.344366] calling  prandom_reseed+0x0/0x83 @ 1
[    2.344390] initcall prandom_reseed+0x0/0x83 returned 0 after 20 usecs
[    2.344392] calling  pci_resource_alignment_sysfs_init+0x0/0x19 @ 1
[    2.344410] initcall pci_resource_alignment_sysfs_init+0x0/0x19 returned 0 after 14 usecs
[    2.344413] calling  pci_sysfs_init+0x0/0x44 @ 1
[    2.348366] initcall pci_sysfs_init+0x0/0x44 returned 0 after 3855 usecs
[    2.348371] calling  random_int_secret_init+0x0/0x16 @ 1
[    2.348394] initcall random_int_secret_init+0x0/0x16 returned 0 after 20 usecs
[    2.348401] calling  deferred_probe_initcall+0x0/0x70 @ 1
[    2.348676] initcall deferred_probe_initcall+0x0/0x70 returned 0 after 264 usecs
[    2.348682] calling  late_resume_init+0x0/0x190 @ 1
[    2.348703]   Magic number: 5:493:385
[    2.348724] thermal cooling_device0: hash matches
[    2.348747] initcall late_resume_init+0x0/0x190 returned 0 after 60 usecs
[    2.348750] calling  rtc_hctosys+0x0/0x107 @ 1
[    2.348916] rtc_cmos 00:03: setting system clock to 2013-07-01 15:22:40 UTC (1372692160)
[    2.348940] initcall rtc_hctosys+0x0/0x107 returned 0 after 181 usecs
[    2.348946] calling  powernowk8_init+0x0/0xd4 @ 1
[    2.348970] initcall powernowk8_init+0x0/0xd4 returned -19 after 20 usecs
[    2.348973] calling  acpi_cpufreq_init+0x0/0x24d @ 1
[    2.349364] initcall acpi_cpufreq_init+0x0/0x24d returned -19 after 376 usecs
[    2.349367] calling  pcc_cpufreq_init+0x0/0x4f0 @ 1
[    2.349393] initcall pcc_cpufreq_init+0x0/0x4f0 returned -19 after 20 usecs
[    2.349396] calling  powernow_init+0x0/0xfa @ 1
[    2.349420] initcall powernow_init+0x0/0xfa returned -19 after 20 usecs
[    2.349422] calling  cpufreq_p4_init+0x0/0x48 @ 1
[    2.349445] initcall cpufreq_p4_init+0x0/0x48 returned -19 after 19 usecs
[    2.349447] calling  firmware_memmap_init+0x0/0x29 @ 1
[    2.349471] initcall firmware_memmap_init+0x0/0x29 returned 0 after 20 usecs
[    2.349473] calling  pci_mmcfg_late_insert_resources+0x0/0x43 @ 1
[    2.349497] initcall pci_mmcfg_late_insert_resources+0x0/0x43 returned 0 after 20 usecs
[    2.349499] calling  net_secret_init+0x0/0x16 @ 1
[    2.349523] initcall net_secret_init+0x0/0x16 returned 0 after 20 usecs
[    2.349525] calling  tcp_congestion_default+0x0/0xf @ 1
[    2.349548] initcall tcp_congestion_default+0x0/0xf returned 0 after 20 usecs
[    2.349551] calling  tcp_fastopen_init+0x0/0x40 @ 1
[    2.349575] initcall tcp_fastopen_init+0x0/0x40 returned 0 after 20 usecs
[    2.349577] calling  initialize_hashrnd+0x0/0x16 @ 1
[    2.349596] initcall initialize_hashrnd+0x0/0x16 returned 0 after 15 usecs
[    2.353354] Freeing unused kernel memory: 644k freed
[    2.355589] Write protecting the kernel text: 5644k
[    2.355658] Write protecting the kernel read-only data: 2224k
[    2.482420] dracut: dracut-018-105.git20120927.fc17
[    2.498431] dracut: rd.luks=0: removing cryptoluks activation
[    2.502464] dracut: rd.lvm=0: removing LVM activation
[    2.513616] udevd[114]: starting version 182
[    2.533366] usb 2-1: new full-speed USB device number 2 using uhci_hcd
[    2.537668] psmouse serio1: hgpk: ID: 10 00 64
[    2.540829] input: ImPS/2 Generic Wheel Mouse as /devices/platform/i8042/serio1/input/input2
[    2.541870] calling  i2c_init+0x0/0x1000 [i2c_core] @ 123
[    2.542119] initcall i2c_init+0x0/0x1000 [i2c_core] returned 0 after 208 usecs
[    2.544061] calling  drm_core_init+0x0/0x1000 [drm] @ 123
[    2.544192] [drm] Initialized drm 1.1.0 20060810
[    2.544234] initcall drm_core_init+0x0/0x1000 [drm] returned 0 after 144 usecs
[    2.544747] calling  ttm_init+0x0/0x1000 [ttm] @ 123
[    2.544830] initcall ttm_init+0x0/0x1000 [ttm] returned 0 after 46 usecs
[    2.545699] calling  vmwgfx_init+0x0/0x1000 [vmwgfx] @ 123
[    2.549908] [drm] Capabilities:
[    2.549928] [drm]   Rect copy.
[    2.549950] [drm]   Cursor.
[    2.549970] [drm]   Cursor bypass.
[    2.549991] [drm]   Cursor bypass 2.
[    2.550012] [drm]   8bit emulation.
[    2.550032] [drm]   Alpha cursor.
[    2.550072] [drm]   Extended Fifo.
[    2.550093] [drm]   Multimon.
[    2.550114] [drm]   Pitchlock.
[    2.550134] [drm]   Irq mask.
[    2.550155] [drm]   Display Topology.
[    2.550176] [drm]   GMR.
[    2.550196] [drm]   Traces.
[    2.550217] [drm]   GMR2.
[    2.550238] [drm]   Screen Object 2.
[    2.550242] [drm] Max GMR ids is 64
[    2.550245] [drm] Max GMR descriptors is 4096
[    2.550249] [drm] Max number of GMR pages is 196608
[    2.550271] [drm] Max dedicated hypervisor surface memory is 786432 kiB
[    2.550304] [drm] VRAM at 0xd0000000 size is 32768 kiB
[    2.550327] [drm] MMIO at 0xc8800000 size is 2048 kiB
[    2.550395] [drm] global init.
[    2.552072] [TTM] Zone  kernel: Available graphics memory: 124610 kiB
[    2.552092] [TTM] Initializing pool allocator
[    2.553669] vmwgfx 0000:00:0f.0: BAR 1: can't reserve [mem 0xd0000000-0xd7ffffff pref]
[    2.553734] [drm] It appears like vesafb is loaded. Ignore above error if any.
[    2.554646] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[    2.554667] [drm] No driver support for vblank timestamp query.
[    2.554884] [drm] Screen objects system initialized
[    2.555269] [drm] Initialized vmwgfx 2.4.0 20120209 for 0000:00:0f.0 on minor 0
[    2.555269] initcall vmwgfx_init+0x0/0x1000 [vmwgfx] returned 0 after 9334 usecs
[    2.567532] dracut: Starting plymouth daemon
[    2.587334] [drm] width 640
[    2.587355] [drm] height 480
[    2.587376] [drm] bpp 32
[    2.587396] [drm] Fifo max 0x00200000 min 0x00001000 cap 0x0000077f
[    2.592309] [drm] width 640
[    2.592315] [drm] height 480
[    2.592318] [drm] bpp 32
[    2.592339] [drm] Fifo max 0x00200000 min 0x00001000 cap 0x0000077f
[    2.593313] [drm] width 640
[    2.593318] [drm] height 480
[    2.593320] [drm] bpp 32
[    2.593340] [drm] Fifo max 0x00200000 min 0x00001000 cap 0x0000077f
[    2.636657] dracut: rd.dm=0: removing DM RAID activation
[    2.645465] dracut: rd.md=0: removing MD RAID activation
[    2.657748] usb 2-1: New USB device found, idVendor=0e0f, idProduct=0003
[    2.657769] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.657789] usb 2-1: Product: VMware Virtual USB Mouse
[    2.657810] usb 2-1: Manufacturer: VMware
[    2.668071] input: VMware VMware Virtual USB Mouse as /devices/pci0000:00/0000:00:11.0/0000:02:00.0/usb2/2-1/2-1:1.0/input/input3
[    2.669630] hid-generic 0003:0E0F:0003.0001: input,hidraw0: USB HID v1.10 Mouse [VMware VMware Virtual USB Mouse] on usb-0000:02:00.0-1/input0
[    2.674647] input: VMware VMware Virtual USB Mouse as /devices/pci0000:00/0000:00:11.0/0000:02:00.0/usb2/2-1/2-1:1.1/input/input4
[    2.674802] hid-generic 0003:0E0F:0003.0002: input,hidraw1: USB HID v1.10 Mouse [VMware VMware Virtual USB Mouse] on usb-0000:02:00.0-1/input1
[    2.703418] calling  spi_transport_init+0x0/0x1000 [scsi_transport_spi] @ 209
[    2.703535] initcall spi_transport_init+0x0/0x1000 [scsi_transport_spi] returned 0 after 106 usecs
[    2.703902] calling  fusion_init+0x0/0x1000 [mptbase] @ 209
[    2.703925] Fusion MPT base driver 3.04.20
[    2.703936] Copyright (c) 1999-2008 LSI Corporation
[    2.703960] initcall fusion_init+0x0/0x1000 [mptbase] returned 0 after 50 usecs
[    2.704671] calling  mptspi_init+0x0/0x1000 [mptspi] @ 209
[    2.704697] Fusion MPT SPI Host driver 3.04.20
[    2.705796] mptbase: ioc0: Initiating bringup
[    2.725501] ioc0: LSI53C1030 B0: Capabilities={Initiator}
[    2.727443] calling  crc32c_intel_mod_init+0x0/0x1000 [crc32c_intel] @ 210
[    2.729978] initcall crc32c_intel_mod_init+0x0/0x1000 [crc32c_intel] returned 0 after 2463 usecs
[    2.771300] scsi2 : ioc0: LSI53C1030 B0, FwRev=01032920h, Ports=1, MaxQ=128, IRQ=17
[    2.777342] usb 2-2: new full-speed USB device number 3 using uhci_hcd
[    2.799654] initcall mptspi_init+0x0/0x1000 [mptspi] returned 0 after 92564 usecs
[    2.802401] scsi 2:0:0:0: Direct-Access     VMware,  VMware Virtual S 1.0  PQ: 0 ANSI: 2
[    2.802430] scsi target2:0:0: Beginning Domain Validation
[    2.803843] scsi target2:0:0: Domain Validation skipping write tests
[    2.803871] scsi target2:0:0: Ending Domain Validation
[    2.803948] scsi target2:0:0: FAST-40 WIDE SCSI 80.0 MB/s ST (25 ns, offset 127)
[    2.808642] sd 2:0:0:0: Attached scsi generic sg1 type 0
[    2.812456] sd 2:0:0:0: [sda] 41943040 512-byte logical blocks: (21.4 GB/20.0 GiB)
[    2.812554] sd 2:0:0:0: [sda] Write Protect is off
[    2.812583] sd 2:0:0:0: [sda] Mode Sense: 61 00 00 00
[    2.812728] sd 2:0:0:0: [sda] Cache data unavailable
[    2.812756] sd 2:0:0:0: [sda] Assuming drive cache: write through
[    2.813527] sd 2:0:0:0: [sda] Cache data unavailable
[    2.813535] sd 2:0:0:0: [sda] Assuming drive cache: write through
[    2.831509]  sda: sda1 sda2 sda3
[    2.833749] sd 2:0:0:0: [sda] Cache data unavailable
[    2.833753] sd 2:0:0:0: [sda] Assuming drive cache: write through
[    2.833779] sd 2:0:0:0: [sda] Attached SCSI disk
[    2.898347] usb 2-2: New USB device found, idVendor=0e0f, idProduct=0002
[    2.898357] usb 2-2: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    2.898364] usb 2-2: Product: VMware Virtual USB Hub
[    2.902531] hub 2-2:1.0: USB hub found
[    2.904337] hub 2-2:1.0: 7 ports detected
[    2.999235] EXT4-fs (sda2): INFO: recovery required on readonly filesystem
[    2.999264] EXT4-fs (sda2): write access will be enabled during recovery
[    3.070204] EXT4-fs (sda2): recovery complete
[    3.070690] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
[    3.453167] dracut: Checking ext4: /dev/disk/by-uuid/d0a0b7f0-3b8a-4d3b-8a76-75b7ecf72b45
[    3.453235] dracut: issuing e2fsck -a  /dev/disk/by-uuid/d0a0b7f0-3b8a-4d3b-8a76-75b7ecf72b45
[    3.531699] dracut: _Fedora-17-i686-: clean, 136862/1155072 files, 1995071/4598528 blocks
[    3.532404] dracut: Remounting /dev/disk/by-uuid/d0a0b7f0-3b8a-4d3b-8a76-75b7ecf72b45 with -o ro
[    3.572158] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
[    3.734168] dracut: Mounted root filesystem /dev/sda2
[    4.012074] dracut: Switching root
[    5.198121] type=1404 audit(1372692163.347:2): enforcing=1 old_enforcing=0 auid=4294967295 ses=4294967295
[    5.509766] SELinux: 2048 avtab hash slots, 104250 rules.
[    5.534752] SELinux: 2048 avtab hash slots, 104250 rules.
[    5.636676] SELinux:  9 users, 15 roles, 4234 types, 233 bools, 1 sens, 1024 cats
[    5.636713] SELinux:  83 classes, 104250 rules
[    5.642710] SELinux:  Permission wake_alarm in class capability2 not defined in policy.
[    5.642722] SELinux:  Permission block_suspend in class capability2 not defined in policy.
[    5.642730] SELinux:  Permission attach_queue in class tun_socket not defined in policy.
[    5.642746] SELinux: the above unknown classes and permissions will be allowed
[    5.642845] SELinux:  Completing initialization.
[    5.642854] SELinux:  Setting up existing superblocks.
[    5.642954] SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts
[    5.643053] SELinux: initialized (dev rootfs, type rootfs), uses genfs_contexts
[    5.643088] SELinux: initialized (dev bdev, type bdev), uses genfs_contexts
[    5.643105] SELinux: initialized (dev proc, type proc), uses genfs_contexts
[    5.643204] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[    5.643651] SELinux: initialized (dev devtmpfs, type devtmpfs), uses transition SIDs
[    5.643750] SELinux: initialized (dev sockfs, type sockfs), uses task SIDs
[    5.643763] SELinux: initialized (dev debugfs, type debugfs), uses genfs_contexts
[    5.643862] SELinux: initialized (dev pipefs, type pipefs), uses task SIDs
[    5.643870] SELinux: initialized (dev anon_inodefs, type anon_inodefs), uses genfs_contexts
[    5.643873] SELinux: initialized (dev devpts, type devpts), uses transition SIDs
[    5.643885] SELinux: initialized (dev hugetlbfs, type hugetlbfs), uses transition SIDs
[    5.643891] SELinux: initialized (dev mqueue, type mqueue), uses transition SIDs
[    5.643897] SELinux: initialized (dev selinuxfs, type selinuxfs), uses genfs_contexts
[    5.643909] SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts
[    5.644008] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[    5.644027] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[    5.644126] SELinux: initialized (dev sda2, type ext4), uses xattr
[    5.644724] SELinux: initialized (dev securityfs, type securityfs), uses genfs_contexts
[    5.664654] type=1403 audit(1372692163.815:3): policy loaded auid=4294967295 ses=4294967295
[    5.671962] systemd[1]: Successfully loaded SELinux policy in 608ms 821us.
[    5.884611] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[    5.894637] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    6.027651] systemd[1]: Relabelled /dev and /run in 132ms 976us.
[    6.116600] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    6.128601] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    6.133612] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    6.138590] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    6.143624] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    6.148592] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    6.153597] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    6.158589] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    6.158629] systemd[1]: systemd 44 running in system mode. (+PAM +LIBWRAP +AUDIT +SELINUX +IMA +SYSVINIT +LIBCRYPTSETUP; fedora)
[    6.237569] systemd[1]: Set hostname to <localhost.localdomain>.
[   22.798711] systemd[1]: Cannot add dependency job for unit mdmonitor-takeover.service, ignoring: Unit mdmonitor-takeover.service failed to load: No such file or directory. See system logs and 'systemctl status mdmonitor-takeover.service' for details.
[   23.155314] SELinux: initialized (dev autofs, type autofs), uses genfs_contexts
[   25.536738] udevd[335]: starting version 182
[   25.628521] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[   25.628609] SELinux: initialized (dev hugetlbfs, type hugetlbfs), uses transition SIDs
[   25.633262] SELinux: initialized (dev configfs, type configfs), uses genfs_contexts
[   25.647338] systemd-journald[328]: Fixed max_use=12.1M max_size=1.5M min_size=64.0K keep_free=6.0M
[   25.648377] systemd-journald[328]: Vacuuming...
[   25.962362] calling  uinput_init+0x0/0x1000 [uinput] @ 325
[   25.962742] initcall uinput_init+0x0/0x1000 [uinput] returned 0 after 350 usecs
[   26.007090] EXT4-fs (sda2): re-mounted. Opts: (null)
[   28.683635] calling  microcode_init+0x0/0x17f [microcode] @ 372
[   28.684833] microcode: CPU0 sig=0x206a7, pf=0x1, revision=0x25
[   28.980088] calling  piix4_driver_init+0x0/0x1000 [i2c_piix4] @ 371
[   29.223180] piix4_smbus 0000:00:07.3: Host SMBus controller not enabled!
[   29.446470] microcode: CPU1 sig=0x206a7, pf=0x1, revision=0x25
[   29.446914] microcode: CPU2 sig=0x206a7, pf=0x1, revision=0x25
[   29.447266] microcode: CPU3 sig=0x206a7, pf=0x1, revision=0x25
[   29.448655] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[   29.448696] initcall microcode_init+0x0/0x17f [microcode] returned 0 after 747231 usecs
[   29.576965] calling  vmballoon_init+0x0/0x1000 [vmw_balloon] @ 362
[   29.588593] initcall vmballoon_init+0x0/0x1000 [vmw_balloon] returned 0 after 11346 usecs
[   30.175762] calling  parport_default_proc_register+0x0/0x1000 [parport] @ 358
[   30.185098] calling  init_soundcore+0x0/0x1000 [soundcore] @ 387
[   30.185986] initcall init_soundcore+0x0/0x1000 [soundcore] returned 0 after 856 usecs
[   30.314976] initcall piix4_driver_init+0x0/0x1000 [i2c_piix4] returned 0 after 1303814 usecs
[   30.420562] calling  coretemp_init+0x0/0x1000 [coretemp] @ 372
[   30.466473] calling  pcnet32_init_module+0x0/0x1000 [pcnet32] @ 386
[   30.467324] pcnet32: pcnet32.c:v1.35 21.Apr.2008 tsbogend@alpha.franken.de
[   30.472643] pcnet32: PCnet/PCI II 79C970A at 0x2000, 00:0c:29:a6:61:69 assigned IRQ 19
[   30.500664] pcnet32: eth0: registered as PCnet/PCI II 79C970A
[   30.507571] pcnet32: PCnet/PCI II 79C970A at 0x2080, 00:0c:29:a6:61:73 assigned IRQ 19
[   30.573831] initcall coretemp_init+0x0/0x1000 [coretemp] returned 0 after 149613 usecs
[   30.574612] pcnet32: eth1: registered as PCnet/PCI II 79C970A
[   30.574693] pcnet32: 2 cards_found
[   30.574709] initcall pcnet32_init_module+0x0/0x1000 [pcnet32] returned 0 after 105714 usecs
[   30.978420] initcall parport_default_proc_register+0x0/0x1000 [parport] returned 0 after 783976 usecs
[   31.033146] calling  parport_pc_init+0x0/0xf5e [parport_pc] @ 358
[   31.034400] parport_pc 00:08: reported by Plug and Play ACPI
[   31.059283] parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE]
[   31.061319] calling  ppdev_init+0x0/0x1000 [ppdev] @ 362
[   31.155369] ppdev: user-space parallel port driver
[   31.155497] initcall ppdev_init+0x0/0x1000 [ppdev] returned 0 after 91936 usecs
[   31.473308] calling  alsa_sound_init+0x0/0xa0 [snd] @ 387
[   31.475791] initcall alsa_sound_init+0x0/0xa0 [snd] returned 0 after 2400 usecs
[   31.484750] initcall parport_pc_init+0x0/0xf5e [parport_pc] returned 0 after 441053 usecs
[   31.648511] calling  alsa_timer_init+0x0/0x1000 [snd_timer] @ 387
[   31.680293] initcall alsa_timer_init+0x0/0x1000 [snd_timer] returned 0 after 31021 usecs
[   31.945552] calling  snd_mem_init+0x0/0x1000 [snd_page_alloc] @ 387
[   31.945762] initcall snd_mem_init+0x0/0x1000 [snd_page_alloc] returned 0 after 185 usecs
[   32.509845] calling  alsa_pcm_init+0x0/0x1000 [snd_pcm] @ 465
[   32.510218] initcall alsa_pcm_init+0x0/0x1000 [snd_pcm] returned 0 after 349 usecs
[   32.758763] calling  alsa_seq_device_init+0x0/0x1000 [snd_seq_device] @ 467
[   32.759004] initcall alsa_seq_device_init+0x0/0x1000 [snd_seq_device] returned 0 after 218 usecs
[   32.769856] calling  alsa_seq_init+0x0/0x48 [snd_seq] @ 467
[   32.773513] initcall alsa_seq_init+0x0/0x48 [snd_seq] returned 0 after 3549 usecs
[   32.955998] calling  ac97_bus_init+0x0/0x1000 [ac97_bus] @ 387
[   32.967088] initcall ac97_bus_init+0x0/0x1000 [ac97_bus] returned 0 after 10809 usecs
[   32.998408] calling  alsa_ac97_init+0x0/0x1000 [snd_ac97_codec] @ 387
[   32.998519] initcall alsa_ac97_init+0x0/0x1000 [snd_ac97_codec] returned 0 after 90 usecs
[   33.012914] calling  alsa_rawmidi_init+0x0/0x1000 [snd_rawmidi] @ 387
[   33.013326] initcall alsa_rawmidi_init+0x0/0x1000 [snd_rawmidi] returned 0 after 385 usecs
[   33.023790] calling  gameport_init+0x0/0x1000 [gameport] @ 387
[   33.024859] initcall gameport_init+0x0/0x1000 [gameport] returned 0 after 1031 usecs
[   33.033416] calling  ens137x_driver_init+0x0/0x1000 [snd_ens1371] @ 387
[   33.328720] Adding 2064380k swap on /dev/sda3.  Priority:0 extents:1 across:2064380k 
[   34.008253] initcall ens137x_driver_init+0x0/0x1000 [snd_ens1371] returned 0 after 952163 usecs
[   34.773862] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[   35.038939] SELinux: initialized (dev sda1, type ext4), uses xattr
[   42.068884] calling  ip6_tables_init+0x0/0x1000 [ip6_tables] @ 608
[   42.069160] ip6_tables: (C) 2000-2006 Netfilter Core Team
[   42.069177] initcall ip6_tables_init+0x0/0x1000 [ip6_tables] returned 0 after 263 usecs
[   42.169323] calling  ip6table_filter_init+0x0/0x1000 [ip6table_filter] @ 615
[   42.173322] initcall ip6table_filter_init+0x0/0x1000 [ip6table_filter] returned 0 after 3889 usecs
[   42.397363] calling  nf_conntrack_standalone_init+0x0/0x1000 [nf_conntrack] @ 617
[   42.397560] nf_conntrack version 0.5.0 (3894 buckets, 15576 max)
[   42.398964] initcall nf_conntrack_standalone_init+0x0/0x1000 [nf_conntrack] returned 0 after 1551 usecs
[   42.500650] calling  state_mt_init+0x0/0x1000 [xt_state] @ 617
[   42.500751] initcall state_mt_init+0x0/0x1000 [xt_state] returned 0 after 90 usecs
[   42.571022] calling  nf_defrag_init+0x0/0x1000 [nf_defrag_ipv4] @ 621
[   42.571456] initcall nf_defrag_init+0x0/0x1000 [nf_defrag_ipv4] returned 0 after 389 usecs
[   42.599389] calling  nf_conntrack_l3proto_ipv4_init+0x0/0x1000 [nf_conntrack_ipv4] @ 621
[   42.600810] initcall nf_conntrack_l3proto_ipv4_init+0x0/0x1000 [nf_conntrack_ipv4] returned 0 after 1375 usecs
[   42.602313] calling  nf_defrag_init+0x0/0x1000 [nf_defrag_ipv6] @ 623
[   42.603740] initcall nf_defrag_init+0x0/0x1000 [nf_defrag_ipv6] returned 0 after 1384 usecs
[   42.617024] calling  nf_conntrack_l3proto_ipv6_init+0x0/0x1000 [nf_conntrack_ipv6] @ 623
[   42.617983] initcall nf_conntrack_l3proto_ipv6_init+0x0/0x1000 [nf_conntrack_ipv6] returned 0 after 926 usecs
[   42.725264] calling  reject_tg6_init+0x0/0x1000 [ip6t_REJECT] @ 626
[   42.725337] initcall reject_tg6_init+0x0/0x1000 [ip6t_REJECT] returned 0 after 64 usecs
[   47.704998] pcnet32 0000:02:01.0 p3p1: link up
[   48.580430] pcnet32 0000:02:05.0 p3p2: link up
[   48.724360] calling  rfkill_init+0x0/0x81 [rfkill] @ 651
[   48.725014] initcall rfkill_init+0x0/0x81 [rfkill] returned 0 after 629 usecs
[   48.768286] calling  bt_init+0x0/0x89 [bluetooth] @ 651
[   48.768416] Bluetooth: Core ver 2.16
[   48.768701] NET: Registered protocol family 31
[   48.768745] Bluetooth: HCI device and connection manager initialized
[   48.768938] Bluetooth: HCI socket layer initialized
[   48.769038] Bluetooth: L2CAP socket layer initialized
[   48.769533] Bluetooth: SCO socket layer initialized
[   48.769602] initcall bt_init+0x0/0x89 [bluetooth] returned 0 after 1259 usecs
[   48.789907] calling  bnep_init+0x0/0x88 [bnep] @ 654
[   48.790005] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   48.790028] Bluetooth: BNEP filters: protocol multicast
[   48.790115] Bluetooth: BNEP socket layer initialized
[   48.790146] initcall bnep_init+0x0/0x88 [bnep] returned 0 after 225 usecs

 

抱歉!评论已关闭.