zoukankan      html  css  js  c++  java
  • 单机搭建Android开发环境(三)

    单机搭建Android开发环境,第一篇重点介绍了如何优化Windows 7系统,以提高开发主机的性能并延长SSD的使用寿命。第二篇重点介绍了基于VMWare安装64位版的Ubuntu 12.04,并安装sshd、vim和samba。本篇将重点介绍VMWare配置的优化以及Ubuntu 12.04系统的优化,进一步减少对SSD无谓的写操作并提高Ubuntu的开机启动速度和运行性能。最终优化的结果,在SSD上启动Ubuntu 12.04,大概不到9秒。

    首先通过修改*.vmx配置文件,取消生成日志,减少对SSD的写操作,

      logging = "FALSE"

    修改*.vmx配置文件,禁用硬盘内存文件(*.vmem),减少对SSD的写操作,同时提高虚拟机的性能,

      mainMem.useNamedFile = "FALSE"

    有关提高VMWare性能的配置如下: 

    snapshot.disabled = "TRUE"
    MemTrimRate=0
    sched.mem.pshare.enable = "FALSE"
    sched.mem.maxmemctl=0
    MemAllowAutoScaleDown = "FALSE"
    mem.ShareScanTotal=0
    mem.ShareScanVM=0
    mem.ShareScanThreshold=4096
    prefvmx.minVmMemPct = "100"
    prefvmx.useRecommendedLockedMemSize = "TRUE"
    mainMem.partialLazySave = "FALSE"
    mainMem.partialLazyRestore = "FALSE"
    priority.grabbed = "high"
    priority.ungrabbed = "normal"

     以上优化选项仅供参考,效果如何,以实测为准。

    通过dmesg命令查看系统启动信息,可以发现几处有明显的停顿,其中第一处如下,

      [ 3.572126] ACPI: Interpreter enabled

      [ 3.572260] ACPI: (supports S0 S1 S4 S5)

      [ 3.572530] ACPI: Using IOAPIC for interrupt routing

      [ 14.383799] ACPI: No dock devices found.

    此处停顿了大概10秒,可通过修改*.vmx文件如下属性做优化,

      mem.hotadd = "FALSE"

    第二处如下,

      [ 5.760334] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)

      [ 5.998530] usb 2-2.1: new full-speed USB device number 4 using uhci_hcd

      [ 11.410208] ADDRCONF(NETDEV_UP): eth0: link is not ready

      [ 11.447128] udevd[470]: starting version 175

      [ 11.651791] Adding 3905532k swap on /dev/sda1. Priority:-1 extents:1 across:3905532k

    此处停顿了大概5秒,跟eth0有关,可以通过如下步骤进行优化,

    a)查找网卡对应的模块名称,执行命令,

      lspci -v

    可以看到模块名称为e1000,Ethernet controller详细信息如下,

      02:01.0 Ethernet controller: Intel Corporation 82545EM Gigabit Ethernet Controller (Copper) (rev 01)

      Subsystem: VMware PRO/1000 MT Single Port Adapter

      Flags: bus master, 66MHz, medium devsel, latency 0, IRQ 19

      Memory at fd5c0000 (64-bit, non-prefetchable) [size=128K]

      Memory at fdff0000 (64-bit, non-prefetchable) [size=64K]

      I/O ports at 2000 [size=64]

      [virtual] Expansion ROM at e7b00000 [disabled] [size=64K]

      Capabilities: <access denied>

      Kernel driver in use: e1000

      Kernel modules: e1000

    b)增加blacklist,执行如下命令,

      echo "blacklist e1000" | sudo tee /etc/modprobe.d/blacklist-ethernet.conf

    c)修改文件/etc/rc.local

      sudo vim /etc/rc.local

    在exit 0前一行增加

      modprobe e1000

      exit 0

    d)修改超时时间

      sudo vim /etc/init/failsafe.conf

    # The point here is to wait for 2 minutes before forcibly booting

    # the system. Anything that is in an "or" condition with 'started

    # failsafe' in rc-sysinit deserves consideration for mentioning in

    # these messages. currently only static-network-up counts for that.

     

    # sleep 20

     

    # Plymouth errors should not stop the script because we *must* reach

    # the end of this script to avoid letting the system spin forever

    # waiting on it to start.

    $PLYMOUTH message --text="Waiting for network configuration..." || :

    # sleep 40

     

    $PLYMOUTH message --text="Waiting up to 60 more seconds for network configuration..." || :

    # sleep 59

    $PLYMOUTH message --text="Booting system without full network configuration..." || :

    注释掉所有的sleep,并保存。

    e)重新创建initrd

      sudo dpkg-reconfigure linux-image-$(uname -r)

     执行命令

      sudo reboot

    重启Ubuntu,如下所示处仍有停顿,因IPv6而起,

      [ 22.993369] eth0: no IPv6 routers present

    修改配置文件/etc/sysctl.conf

      sudo vim /etc/sysctl.conf

    增加如下设置禁用ipv6

      net.ipv6.conf.all.disable_ipv6 = 1

      net.ipv6.conf.default.disable_ipv6 = 1

      net.ipv6.conf.lo.disable_ipv6 = 1

    经过以上修改,重新启动Ubuntu,dmesg信息如下,系统在8S内启动完成。

    [    0.000000] Initializing cgroup subsys cpuset
    [    0.000000] Initializing cgroup subsys cpu
    [    0.000000] Linux version 3.2.0-23-generic (buildd@crested) (gcc version 4.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu4) ) #36-Ubuntu SMP Tue Apr 10 20:39:51 UTC 2012 (Ubuntu 3.2.0-23.36-generic 3.2.14)
    [    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-3.2.0-23-generic root=UUID=265046be-0609-4ca9-ac6f-ea5bba7ed74e ro
    [    0.000000] KERNEL supported cpus:
    [    0.000000]   Intel GenuineIntel
    [    0.000000]   AMD AuthenticAMD
    [    0.000000]   Centaur CentaurHauls
    [    0.000000] Disabled fast string operations
    [    0.000000] BIOS-provided physical RAM map:
    [    0.000000]  BIOS-e820: 0000000000000000 - 000000000009e800 (usable)
    [    0.000000]  BIOS-e820: 000000000009e800 - 00000000000a0000 (reserved)
    [    0.000000]  BIOS-e820: 00000000000dc000 - 0000000000100000 (reserved)
    [    0.000000]  BIOS-e820: 0000000000100000 - 00000000bfee0000 (usable)
    [    0.000000]  BIOS-e820: 00000000bfee0000 - 00000000bfeff000 (ACPI data)
    [    0.000000]  BIOS-e820: 00000000bfeff000 - 00000000bff00000 (ACPI NVS)
    [    0.000000]  BIOS-e820: 00000000bff00000 - 00000000c0000000 (usable)
    [    0.000000]  BIOS-e820: 00000000f0000000 - 00000000f8000000 (reserved)
    [    0.000000]  BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved)
    [    0.000000]  BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
    [    0.000000]  BIOS-e820: 00000000fffe0000 - 0000000100000000 (reserved)
    [    0.000000]  BIOS-e820: 0000000100000000 - 0000000440000000 (usable)
    [    0.000000] NX (Execute Disable) protection: active
    [    0.000000] DMI present.
    [    0.000000] DMI: VMware, Inc. VMware Virtual Platform/440BX Desktop Reference Platform, BIOS 6.00 07/02/2015
    [    0.000000] Hypervisor detected: VMware
    [    0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
    [    0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
    [    0.000000] No AGP bridge found
    [    0.000000] last_pfn = 0x440000 max_arch_pfn = 0x400000000
    [    0.000000] MTRR default type: uncachable
    [    0.000000] MTRR fixed ranges enabled:
    [    0.000000]   00000-9FFFF write-back
    [    0.000000]   A0000-BFFFF uncachable
    [    0.000000]   C0000-C7FFF write-protect
    [    0.000000]   C8000-CBFFF write-back
    [    0.000000]   CC000-EFFFF uncachable
    [    0.000000]   F0000-FFFFF write-protect
    [    0.000000] MTRR variable ranges enabled:
    [    0.000000]   0 base 000C0000000 mask 3FFC0000000 uncachable
    [    0.000000]   1 base 00000000000 mask 3F800000000 write-back
    [    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 0x7040600070406, new 0x7010600070106
    [    0.000000] original variable MTRRs
    [    0.000000] reg 0, base: 3GB, range: 1GB, type UC
    [    0.000000] reg 1, base: 0GB, range: 32GB, type WB
    [    0.000000] total RAM covered: 31744M
    [    0.000000] Found optimal setting for mtrr clean up
    [    0.000000]  gran_size: 64K     chunk_size: 64K     num_reg: 5      lose cover RAM: 0G
    [    0.000000] New variable MTRRs
    [    0.000000] reg 0, base: 0GB, range: 2GB, type WB
    [    0.000000] reg 1, base: 2GB, range: 1GB, type WB
    [    0.000000] reg 2, base: 4GB, range: 4GB, type WB
    [    0.000000] reg 3, base: 8GB, range: 8GB, type WB
    [    0.000000] reg 4, base: 16GB, range: 16GB, type WB
    [    0.000000] e820 update range: 00000000c0000000 - 0000000100000000 (usable) ==> (reserved)
    [    0.000000] last_pfn = 0xc0000 max_arch_pfn = 0x400000000
    [    0.000000] found SMP MP-table at [ffff8800000f6a80] f6a80
    [    0.000000] initial memory mapped : 0 - 20000000
    [    0.000000] Base memory trampoline at [ffff880000099000] 99000 size 20480
    [    0.000000] Using GB pages for direct mapping
    [    0.000000] init_memory_mapping: 0000000000000000-00000000c0000000
    [    0.000000]  0000000000 - 00c0000000 page 1G
    [    0.000000] kernel direct mapping tables up to c0000000 @ 1ffff000-20000000
    [    0.000000] init_memory_mapping: 0000000100000000-0000000440000000
    [    0.000000]  0100000000 - 0440000000 page 1G
    [    0.000000] kernel direct mapping tables up to 440000000 @ bffff000-c0000000
    [    0.000000] RAMDISK: 364e4000 - 3726a000
    [    0.000000] ACPI: RSDP 00000000000f6a10 00024 (v02 PTLTD )
    [    0.000000] ACPI: XSDT 00000000bfeeb633 0005C (v01 INTEL  440BX    06040000 VMW  01324272)
    [    0.000000] ACPI: FACP 00000000bfefee73 000F4 (v04 INTEL  440BX    06040000 PTL  000F4240)
    [    0.000000] ACPI: DSDT 00000000bfeed1dd 11C96 (v01 PTLTD  Custom   06040000 MSFT 03000001)
    [    0.000000] ACPI: FACS 00000000bfefffc0 00040
    [    0.000000] ACPI: BOOT 00000000bfeed1b5 00028 (v01 PTLTD  $SBFTBL$ 06040000  LTP 00000001)
    [    0.000000] ACPI: APIC 00000000bfeec8bd 00742 (v01 PTLTD  ? APIC   06040000  LTP 00000000)
    [    0.000000] ACPI: MCFG 00000000bfeec881 0003C (v01 PTLTD  $PCITBL$ 06040000  LTP 00000001)
    [    0.000000] ACPI: SRAT 00000000bfeeb72f 008D0 (v02 VMWARE MEMPLUG  06040000 VMW  00000001)
    [    0.000000] ACPI: HPET 00000000bfeeb6f7 00038 (v01 VMWARE VMW HPET 06040000 VMW  00000001)
    [    0.000000] ACPI: WAET 00000000bfeeb6cf 00028 (v01 VMWARE VMW WAET 06040000 VMW  00000001)
    [    0.000000] ACPI: Local APIC address 0xfee00000
    [    0.000000] system APIC only can use physical flat
    [    0.000000] Setting APIC routing to physical flat.
    [    0.000000] SRAT: PXM 0 -> APIC 0x00 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x02 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x04 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x06 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x08 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x0a -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x0c -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x0e -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x10 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x12 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x14 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x16 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x18 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x1a -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x1c -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x1e -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x20 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x22 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x24 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x26 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x28 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x2a -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x2c -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x2e -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x30 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x32 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x34 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x36 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x38 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x3a -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x3c -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x3e -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x40 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x42 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x44 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x46 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x48 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x4a -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x4c -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x4e -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x50 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x52 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x54 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x56 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x58 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x5a -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x5c -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x5e -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x60 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x62 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x64 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x66 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x68 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x6a -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x6c -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x6e -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x70 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x72 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x74 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x76 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x78 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x7a -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x7c -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x7e -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x80 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x82 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x84 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x86 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x88 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x8a -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x8c -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x8e -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x90 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x92 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x94 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x96 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x98 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x9a -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x9c -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0x9e -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0xa0 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0xa2 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0xa4 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0xa6 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0xa8 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0xaa -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0xac -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0xae -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0xb0 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0xb2 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0xb4 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0xb6 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0xb8 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0xba -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0xbc -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0xbe -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0xc0 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0xc2 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0xc4 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0xc6 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0xc8 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0xca -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0xcc -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0xce -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0xd0 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0xd2 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0xd4 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0xd6 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0xd8 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0xda -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0xdc -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0xde -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0xe0 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0xe2 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0xe4 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0xe6 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0xe8 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0xea -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0xec -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0xee -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0xf0 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0xf2 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0xf4 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0xf6 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0xf8 -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0xfa -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0xfc -> Node 0
    [    0.000000] SRAT: PXM 0 -> APIC 0xfe -> Node 0
    [    0.000000] SRAT: Node 0 PXM 0 0-a0000
    [    0.000000] SRAT: Node 0 PXM 0 100000-10000000
    [    0.000000] SRAT: Node 0 PXM 0 10000000-c0000000
    [    0.000000] SRAT: Node 0 PXM 0 100000000-440000000
    [    0.000000] NUMA: Node 0 [0,a0000) + [100000,10000000) -> [0,10000000)
    [    0.000000] NUMA: Node 0 [0,10000000) + [10000000,c0000000) -> [0,c0000000)
    [    0.000000] NUMA: Node 0 [0,c0000000) + [100000000,440000000) -> [0,440000000)
    [    0.000000] Initmem setup node 0 0000000000000000-0000000440000000
    [    0.000000]   NODE_DATA [000000043fffb000 - 000000043fffffff]
    [    0.000000]  [ffffea0000000000-ffffea0010ffffff] PMD -> [ffff88042f600000-ffff88043f5fffff] on node 0
    [    0.000000] Zone PFN ranges:
    [    0.000000]   DMA      0x00000010 -> 0x00001000
    [    0.000000]   DMA32    0x00001000 -> 0x00100000
    [    0.000000]   Normal   0x00100000 -> 0x00440000
    [    0.000000] Movable zone start PFN for each node
    [    0.000000] early_node_map[4] active PFN ranges
    [    0.000000]     0: 0x00000010 -> 0x0000009e
    [    0.000000]     0: 0x00000100 -> 0x000bfee0
    [    0.000000]     0: 0x000bff00 -> 0x000c0000
    [    0.000000]     0: 0x00100000 -> 0x00440000
    [    0.000000] On node 0 totalpages: 4194158
    [    0.000000]   DMA zone: 64 pages used for memmap
    [    0.000000]   DMA zone: 5 pages reserved
    [    0.000000]   DMA zone: 3913 pages, LIFO batch:0
    [    0.000000]   DMA32 zone: 16320 pages used for memmap
    [    0.000000]   DMA32 zone: 765984 pages, LIFO batch:31
    [    0.000000]   Normal zone: 53248 pages used for memmap
    [    0.000000]   Normal zone: 3354624 pages, LIFO batch:31
    [    0.000000] ACPI: PM-Timer IO Port: 0x1008
    [    0.000000] ACPI: Local APIC address 0xfee00000
    [    0.000000] system APIC only can use physical flat
    [    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x02] enabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x04] enabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x06] enabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x08] enabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x0a] enabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x0c] enabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x0e] enabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x10] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x09] lapic_id[0x12] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x0a] lapic_id[0x14] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x0b] lapic_id[0x16] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x0c] lapic_id[0x18] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x0d] lapic_id[0x1a] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x0e] lapic_id[0x1c] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x0f] lapic_id[0x1e] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x10] lapic_id[0x20] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x11] lapic_id[0x22] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x12] lapic_id[0x24] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x13] lapic_id[0x26] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x14] lapic_id[0x28] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x15] lapic_id[0x2a] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x16] lapic_id[0x2c] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x17] lapic_id[0x2e] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x18] lapic_id[0x30] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x19] lapic_id[0x32] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x1a] lapic_id[0x34] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x1b] lapic_id[0x36] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x1c] lapic_id[0x38] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x1d] lapic_id[0x3a] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x1e] lapic_id[0x3c] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x1f] lapic_id[0x3e] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x20] lapic_id[0x40] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x21] lapic_id[0x42] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x22] lapic_id[0x44] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x23] lapic_id[0x46] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x24] lapic_id[0x48] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x25] lapic_id[0x4a] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x26] lapic_id[0x4c] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x27] lapic_id[0x4e] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x28] lapic_id[0x50] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x29] lapic_id[0x52] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x2a] lapic_id[0x54] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x2b] lapic_id[0x56] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x2c] lapic_id[0x58] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x2d] lapic_id[0x5a] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x2e] lapic_id[0x5c] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x2f] lapic_id[0x5e] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x30] lapic_id[0x60] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x31] lapic_id[0x62] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x32] lapic_id[0x64] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x33] lapic_id[0x66] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x34] lapic_id[0x68] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x35] lapic_id[0x6a] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x36] lapic_id[0x6c] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x37] lapic_id[0x6e] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x38] lapic_id[0x70] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x39] lapic_id[0x72] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x3a] lapic_id[0x74] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x3b] lapic_id[0x76] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x3c] lapic_id[0x78] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x3d] lapic_id[0x7a] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x3e] lapic_id[0x7c] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x3f] lapic_id[0x7e] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x40] lapic_id[0x80] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x41] lapic_id[0x82] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x42] lapic_id[0x84] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x43] lapic_id[0x86] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x44] lapic_id[0x88] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x45] lapic_id[0x8a] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x46] lapic_id[0x8c] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x47] lapic_id[0x8e] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x48] lapic_id[0x90] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x49] lapic_id[0x92] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x4a] lapic_id[0x94] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x4b] lapic_id[0x96] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x4c] lapic_id[0x98] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x4d] lapic_id[0x9a] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x4e] lapic_id[0x9c] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x4f] lapic_id[0x9e] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x50] lapic_id[0xa0] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x51] lapic_id[0xa2] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x52] lapic_id[0xa4] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x53] lapic_id[0xa6] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x54] lapic_id[0xa8] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x55] lapic_id[0xaa] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x56] lapic_id[0xac] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x57] lapic_id[0xae] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x58] lapic_id[0xb0] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x59] lapic_id[0xb2] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x5a] lapic_id[0xb4] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x5b] lapic_id[0xb6] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x5c] lapic_id[0xb8] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x5d] lapic_id[0xba] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x5e] lapic_id[0xbc] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x5f] lapic_id[0xbe] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x60] lapic_id[0xc0] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x61] lapic_id[0xc2] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x62] lapic_id[0xc4] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x63] lapic_id[0xc6] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x64] lapic_id[0xc8] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x65] lapic_id[0xca] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x66] lapic_id[0xcc] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x67] lapic_id[0xce] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x68] lapic_id[0xd0] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x69] lapic_id[0xd2] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x6a] lapic_id[0xd4] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x6b] lapic_id[0xd6] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x6c] lapic_id[0xd8] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x6d] lapic_id[0xda] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x6e] lapic_id[0xdc] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x6f] lapic_id[0xde] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x70] lapic_id[0xe0] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x71] lapic_id[0xe2] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x72] lapic_id[0xe4] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x73] lapic_id[0xe6] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x74] lapic_id[0xe8] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x75] lapic_id[0xea] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x76] lapic_id[0xec] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x77] lapic_id[0xee] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x78] lapic_id[0xf0] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x79] lapic_id[0xf2] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x7a] lapic_id[0xf4] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x7b] lapic_id[0xf6] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x7c] lapic_id[0xf8] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x7d] lapic_id[0xfa] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x7e] lapic_id[0xfc] disabled)
    [    0.000000] ACPI: LAPIC (acpi_id[0x7f] lapic_id[0xfe] disabled)
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x18] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x19] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x1a] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x1b] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x1c] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x1d] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x1e] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x1f] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x20] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x21] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x22] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x23] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x24] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x25] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x26] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x27] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x28] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x29] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x2a] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x2b] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x2c] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x2d] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x2e] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x2f] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x30] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x31] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x32] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x33] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x34] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x35] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x36] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x37] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x38] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x39] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x3a] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x3b] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x3c] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x3d] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x3e] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x3f] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x40] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x41] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x42] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x43] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x44] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x45] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x46] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x47] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x48] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x49] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x4a] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x4b] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x4c] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x4d] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x4e] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x4f] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x50] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x51] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x52] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x53] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x54] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x55] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x56] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x57] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x58] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x59] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x5a] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x5b] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x5c] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x5d] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x5e] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x5f] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x60] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x61] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x62] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x63] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x64] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x65] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x66] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x67] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x68] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x69] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x6a] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x6b] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x6c] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x6d] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x6e] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x6f] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x70] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x71] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x72] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x73] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x74] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x75] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x76] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x77] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x78] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x79] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x7a] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x7b] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x7c] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x7d] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x7e] high edge lint[0x1])
    [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x7f] high edge lint[0x1])
    [    0.000000] ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
    [    0.000000] IOAPIC[0]: apic_id 1, 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] SMP: Allowing 128 CPUs, 120 hotplug CPUs
    [    0.000000] nr_irqs_gsi: 40
    [    0.000000] PM: Registered nosave memory: 000000000009e000 - 000000000009f000
    [    0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    [    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000dc000
    [    0.000000] PM: Registered nosave memory: 00000000000dc000 - 0000000000100000
    [    0.000000] PM: Registered nosave memory: 00000000bfee0000 - 00000000bfeff000
    [    0.000000] PM: Registered nosave memory: 00000000bfeff000 - 00000000bff00000
    [    0.000000] PM: Registered nosave memory: 00000000c0000000 - 00000000f0000000
    [    0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000f8000000
    [    0.000000] PM: Registered nosave memory: 00000000f8000000 - 00000000fec00000
    [    0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec10000
    [    0.000000] PM: Registered nosave memory: 00000000fec10000 - 00000000fee00000
    [    0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000
    [    0.000000] PM: Registered nosave memory: 00000000fee01000 - 00000000fffe0000
    [    0.000000] PM: Registered nosave memory: 00000000fffe0000 - 0000000100000000
    [    0.000000] Allocating PCI resources starting at c0000000 (gap: c0000000:30000000)
    [    0.000000] Booting paravirtualized kernel on bare hardware
    [    0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:128 nr_node_ids:1
    [    0.000000] PERCPU: Embedded 28 pages/cpu @ffff88042e600000 s83072 r8192 d23424 u131072
    [    0.000000] pcpu-alloc: s83072 r8192 d23424 u131072 alloc=1*2097152
    [    0.000000] pcpu-alloc: [0] 000 001 002 003 004 005 006 007 008 009 010 011 012 013 014 015 
    [    0.000000] pcpu-alloc: [0] 016 017 018 019 020 021 022 023 024 025 026 027 028 029 030 031 
    [    0.000000] pcpu-alloc: [0] 032 033 034 035 036 037 038 039 040 041 042 043 044 045 046 047 
    [    0.000000] pcpu-alloc: [0] 048 049 050 051 052 053 054 055 056 057 058 059 060 061 062 063 
    [    0.000000] pcpu-alloc: [0] 064 065 066 067 068 069 070 071 072 073 074 075 076 077 078 079 
    [    0.000000] pcpu-alloc: [0] 080 081 082 083 084 085 086 087 088 089 090 091 092 093 094 095 
    [    0.000000] pcpu-alloc: [0] 096 097 098 099 100 101 102 103 104 105 106 107 108 109 110 111 
    [    0.000000] pcpu-alloc: [0] 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 
    [    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 4124521
    [    0.000000] Policy zone: Normal
    [    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.2.0-23-generic root=UUID=265046be-0609-4ca9-ac6f-ea5bba7ed74e ro
    [    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [    0.000000] xsave/xrstor: enabled xstate_bv 0x7, cntxt size 0x340
    [    0.000000] Checking aperture...
    [    0.000000] No AGP bridge found
    [    0.000000] Calgary: detecting Calgary via BIOS EBDA area
    [    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    [    0.000000] Memory: 16404428k/17825792k available (6566k kernel code, 1049160k absent, 372204k reserved, 6637k data, 920k init)
    [    0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=128, Nodes=1
    [    0.000000] Hierarchical RCU implementation.
    [    0.000000]     RCU dyntick-idle grace-period acceleration is enabled.
    [    0.000000] NR_IRQS:16640 nr_irqs:1704 16
    [    0.000000] Extended CMOS year: 2000
    [    0.000000] Console: colour VGA+ 80x25
    [    0.000000] console [tty0] enabled
    [    0.000000] allocated 134217728 bytes of page_cgroup
    [    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [    0.000000] hpet clockevent registered
    [    0.004000] TSC freq read from hypervisor : 2494.359 MHz
    [    0.004000] Detected 2494.359 MHz processor.
    [    0.000026] Calibrating delay loop (skipped) preset value.. 4988.71 BogoMIPS (lpj=9977436)
    [    0.000147] pid_max: default: 131072 minimum: 1024
    [    0.000275] Security Framework initialized
    [    0.000360] AppArmor: AppArmor initialized
    [    0.000416] Yama: becoming mindful.
    [    0.001935] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
    [    0.059437] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    [    0.088002] Mount-cache hash table entries: 256
    [    0.088922] Initializing cgroup subsys cpuacct
    [    0.089003] Initializing cgroup subsys memory
    [    0.089071] Initializing cgroup subsys devices
    [    0.089127] Initializing cgroup subsys freezer
    [    0.089182] Initializing cgroup subsys blkio
    [    0.089349] Initializing cgroup subsys perf_event
    [    0.089493] Disabled fast string operations
    [    0.089550] CPU: Physical Processor ID: 0
    [    0.089610] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    [    0.089610] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    [    0.090627] mce: CPU supports 0 MCE banks
    [    0.095305] ACPI: Core revision 20110623
    [    0.140235] ftrace: allocating 27049 entries in 107 pages
    [    0.283452] x2apic not enabled, IRQ remapping init failed
    [    0.295603] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [    0.365481] CPU0: Intel(R) Core(TM) i7-4710MQ CPU @ 2.50GHz stepping 03
    [    0.471280] Performance Events: generic architected perfmon v1, core PMU driver.
    [    0.471421] ... version:                1
    [    0.471484] ... bit               48
    [    0.471538] ... generic registers:      4
    [    0.471590] ... value mask:             0000ffffffffffff
    [    0.471650] ... max period:             000000007fffffff
    [    0.471711] ... fixed-purpose events:   0
    [    0.471763] ... event mask:             000000000000000f
    [    0.472376] NMI watchdog enabled, takes one hw-pmu counter.
    [    0.472964] Booting Node   0, Processors  #1
    [    0.473027] smpboot cpu 1: start_ip = 99000
    [    0.484286] Disabled fast string operations
    [    0.485210] mce: CPU supports 0 MCE banks
    [    0.485384] NMI watchdog enabled, takes one hw-pmu counter.
    [    0.486415]  #2
    [    0.486458] smpboot cpu 2: start_ip = 99000
    [    0.497718] Disabled fast string operations
    [    0.498610] mce: CPU supports 0 MCE banks
    [    0.498767] NMI watchdog enabled, takes one hw-pmu counter.
    [    0.499514]  #3
    [    0.499549] smpboot cpu 3: start_ip = 99000
    [    0.510787] Disabled fast string operations
    [    0.511724] mce: CPU supports 0 MCE banks
    [    0.511843] NMI watchdog enabled, takes one hw-pmu counter.
    [    0.512759]  #4
    [    0.512790] smpboot cpu 4: start_ip = 99000
    [    0.524008] Disabled fast string operations
    [    0.524900] mce: CPU supports 0 MCE banks
    [    0.525055] NMI watchdog enabled, takes one hw-pmu counter.
    [    0.526023]  #5
    [    0.526054] smpboot cpu 5: start_ip = 99000
    [    0.537266] Disabled fast string operations
    [    0.538319] mce: CPU supports 0 MCE banks
    [    0.538462] NMI watchdog enabled, takes one hw-pmu counter.
    [    0.539251]  #6
    [    0.539282] smpboot cpu 6: start_ip = 99000
    [    0.551125] Disabled fast string operations
    [    0.552049] mce: CPU supports 0 MCE banks
    [    0.552211] NMI watchdog enabled, takes one hw-pmu counter.
    [    0.552971]  #7
    [    0.553002] smpboot cpu 7: start_ip = 99000
    [    0.564237] Disabled fast string operations
    [    0.565127] mce: CPU supports 0 MCE banks
    [    0.565288] NMI watchdog enabled, takes one hw-pmu counter.
    [    0.565605] Brought up 8 CPUs
    [    0.565655] Total of 8 processors activated (39909.74 BogoMIPS).
    [    0.660216] devtmpfs: initialized
    [    0.661835] EVM: security.selinux
    [    0.661887] EVM: security.SMACK64
    [    0.661935] EVM: security.capability
    [    0.662241] PM: Registering ACPI NVS region at bfeff000 (4096 bytes)
    [    0.662982] print_constraints: dummy: 
    [    0.682977] RTC time: 12:52:01, date: 03/14/16
    [    0.683360] NET: Registered protocol family 16
    [    0.683591] Trying to unpack rootfs image as initramfs...
    [    0.698155] ACPI: bus type pci registered
    [    0.701116] PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xf0000000-0xf7ffffff] (base 0xf0000000)
    [    0.701228] PCI: MMCONFIG at [mem 0xf0000000-0xf7ffffff] reserved in E820
    [    0.748079] PCI: Using configuration type 1 for base access
    [    0.749956] bio: create slab <bio-0> at 0
    [    0.750439] ACPI: Added _OSI(Module Device)
    [    0.750497] ACPI: Added _OSI(Processor Device)
    [    0.750552] ACPI: Added _OSI(3.0 _SCP Extensions)
    [    0.750609] ACPI: Added _OSI(Processor Aggregator Device)
    [    0.753904] ACPI: EC: Look up EC in DSDT
    [    0.760285] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [    1.096866] Freeing initrd memory: 13848k freed
    [    3.547386] ACPI: Interpreter enabled
    [    3.547488] ACPI: (supports S0 S1 S4 S5)
    [    3.547714] ACPI: Using IOAPIC for interrupt routing
    [    3.583629] ACPI: No dock devices found.
    [    3.583693] HEST: Table not found.
    [    3.583744] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [    3.584613] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7f])
    [    3.585839] pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff]
    [    3.585927] pci_root PNP0A03:00: host bridge window [mem 0x000cc000-0x000cffff]
    [    3.586012] pci_root PNP0A03:00: host bridge window [mem 0x000d0000-0x000d3fff]
    [    3.586097] pci_root PNP0A03:00: host bridge window [mem 0x000d4000-0x000d7fff]
    [    3.586181] pci_root PNP0A03:00: host bridge window [mem 0x000d8000-0x000dbfff]
    [    3.586265] pci_root PNP0A03:00: host bridge window [mem 0xc0000000-0xfebfffff]
    [    3.586349] pci_root PNP0A03:00: host bridge window [io  0x0000-0x0cf7]
    [    3.586417] pci_root PNP0A03:00: host bridge window [io  0x0d00-0xfeff]
    [    3.586565] pci 0000:00:00.0: [8086:7190] type 0 class 0x000600
    [    3.586996] pci 0000:00:01.0: [8086:7191] type 1 class 0x000604
    [    3.587390] pci 0000:00:07.0: [8086:7110] type 0 class 0x000601
    [    3.587979] pci 0000:00:07.1: [8086:7111] type 0 class 0x000101
    [    3.590585] pci 0000:00:07.1: reg 20: [io  0x1060-0x106f]
    [    3.591449] pci 0000:00:07.3: [8086:7113] type 0 class 0x000680
    [    3.594218] pci 0000:00:07.3: quirk: [io  0x1000-0x103f] claimed by PIIX4 ACPI
    [    3.594321] pci 0000:00:07.3: quirk: [io  0x1040-0x104f] claimed by PIIX4 SMB
    [    3.594670] pci 0000:00:07.7: [15ad:0740] type 0 class 0x000880
    [    3.595883] pci 0000:00:07.7: reg 10: [io  0x1080-0x10bf]
    [    3.597832] pci 0000:00:07.7: reg 14: [mem 0xfebfe000-0xfebfffff 64bit]
    [    3.602665] pci 0000:00:0f.0: [15ad:0405] type 0 class 0x000300
    [    3.608114] pci 0000:00:0f.0: reg 10: [io  0x1070-0x107f]
    [    3.613163] pci 0000:00:0f.0: reg 14: [mem 0xe8000000-0xefffffff pref]
    [    3.618241] pci 0000:00:0f.0: reg 18: [mem 0xfe000000-0xfe7fffff]
    [    3.639170] pci 0000:00:0f.0: reg 30: [mem 0x00000000-0x00007fff pref]
    [    3.639602] pci 0000:00:10.0: [1000:0030] type 0 class 0x000100
    [    3.641553] pci 0000:00:10.0: reg 10: [io  0x1400-0x14ff]
    [    3.644199] pci 0000:00:10.0: reg 14: [mem 0xfeba0000-0xfebbffff 64bit]
    [    3.646889] pci 0000:00:10.0: reg 1c: [mem 0xfebc0000-0xfebdffff 64bit]
    [    3.650342] pci 0000:00:10.0: reg 30: [mem 0x00000000-0x00003fff pref]
    [    3.650659] pci 0000:00:11.0: [15ad:0790] type 1 class 0x000604
    [    3.651442] pci 0000:00:15.0: [15ad:07a0] type 1 class 0x000604
    [    3.652141] pci 0000:00:15.0: PME# supported from D0 D3hot D3cold
    [    3.652163] pci 0000:00:15.0: PME# disabled
    [    3.652415] pci 0000:00:15.1: [15ad:07a0] type 1 class 0x000604
    [    3.653090] pci 0000:00:15.1: PME# supported from D0 D3hot D3cold
    [    3.653111] pci 0000:00:15.1: PME# disabled
    [    3.653323] pci 0000:00:15.2: [15ad:07a0] type 1 class 0x000604
    [    3.654015] pci 0000:00:15.2: PME# supported from D0 D3hot D3cold
    [    3.654036] pci 0000:00:15.2: PME# disabled
    [    3.654247] pci 0000:00:15.3: [15ad:07a0] type 1 class 0x000604
    [    3.654967] pci 0000:00:15.3: PME# supported from D0 D3hot D3cold
    [    3.654989] pci 0000:00:15.3: PME# disabled
    [    3.655204] pci 0000:00:15.4: [15ad:07a0] type 1 class 0x000604
    [    3.655876] pci 0000:00:15.4: PME# supported from D0 D3hot D3cold
    [    3.655897] pci 0000:00:15.4: PME# disabled
    [    3.656108] pci 0000:00:15.5: [15ad:07a0] type 1 class 0x000604
    [    3.656844] pci 0000:00:15.5: PME# supported from D0 D3hot D3cold
    [    3.656866] pci 0000:00:15.5: PME# disabled
    [    3.657081] pci 0000:00:15.6: [15ad:07a0] type 1 class 0x000604
    [    3.657758] pci 0000:00:15.6: PME# supported from D0 D3hot D3cold
    [    3.657778] pci 0000:00:15.6: PME# disabled
    [    3.657991] pci 0000:00:15.7: [15ad:07a0] type 1 class 0x000604
    [    3.658699] pci 0000:00:15.7: PME# supported from D0 D3hot D3cold
    [    3.658720] pci 0000:00:15.7: PME# disabled
    [    3.659050] pci 0000:00:16.0: [15ad:07a0] type 1 class 0x000604
    [    3.659725] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    [    3.659746] pci 0000:00:16.0: PME# disabled
    [    3.659957] pci 0000:00:16.1: [15ad:07a0] type 1 class 0x000604
    [    3.660639] pci 0000:00:16.1: PME# supported from D0 D3hot D3cold
    [    3.660659] pci 0000:00:16.1: PME# disabled
    [    3.660872] pci 0000:00:16.2: [15ad:07a0] type 1 class 0x000604
    [    3.661545] pci 0000:00:16.2: PME# supported from D0 D3hot D3cold
    [    3.661565] pci 0000:00:16.2: PME# disabled
    [    3.661777] pci 0000:00:16.3: [15ad:07a0] type 1 class 0x000604
    [    3.662468] pci 0000:00:16.3: PME# supported from D0 D3hot D3cold
    [    3.662488] pci 0000:00:16.3: PME# disabled
    [    3.662700] pci 0000:00:16.4: [15ad:07a0] type 1 class 0x000604
    [    3.663380] pci 0000:00:16.4: PME# supported from D0 D3hot D3cold
    [    3.663401] pci 0000:00:16.4: PME# disabled
    [    3.663613] pci 0000:00:16.5: [15ad:07a0] type 1 class 0x000604
    [    3.664286] pci 0000:00:16.5: PME# supported from D0 D3hot D3cold
    [    3.664306] pci 0000:00:16.5: PME# disabled
    [    3.664526] pci 0000:00:16.6: [15ad:07a0] type 1 class 0x000604
    [    3.665199] pci 0000:00:16.6: PME# supported from D0 D3hot D3cold
    [    3.665219] pci 0000:00:16.6: PME# disabled
    [    3.665433] pci 0000:00:16.7: [15ad:07a0] type 1 class 0x000604
    [    3.666107] pci 0000:00:16.7: PME# supported from D0 D3hot D3cold
    [    3.666127] pci 0000:00:16.7: PME# disabled
    [    3.666488] pci 0000:00:17.0: [15ad:07a0] type 1 class 0x000604
    [    3.667160] pci 0000:00:17.0: PME# supported from D0 D3hot D3cold
    [    3.667180] pci 0000:00:17.0: PME# disabled
    [    3.667401] pci 0000:00:17.1: [15ad:07a0] type 1 class 0x000604
    [    3.668071] pci 0000:00:17.1: PME# supported from D0 D3hot D3cold
    [    3.668092] pci 0000:00:17.1: PME# disabled
    [    3.668304] pci 0000:00:17.2: [15ad:07a0] type 1 class 0x000604
    [    3.668986] pci 0000:00:17.2: PME# supported from D0 D3hot D3cold
    [    3.669007] pci 0000:00:17.2: PME# disabled
    [    3.669218] pci 0000:00:17.3: [15ad:07a0] type 1 class 0x000604
    [    3.669894] pci 0000:00:17.3: PME# supported from D0 D3hot D3cold
    [    3.669914] pci 0000:00:17.3: PME# disabled
    [    3.670126] pci 0000:00:17.4: [15ad:07a0] type 1 class 0x000604
    [    3.670815] pci 0000:00:17.4: PME# supported from D0 D3hot D3cold
    [    3.670835] pci 0000:00:17.4: PME# disabled
    [    3.671047] pci 0000:00:17.5: [15ad:07a0] type 1 class 0x000604
    [    3.671716] pci 0000:00:17.5: PME# supported from D0 D3hot D3cold
    [    3.671737] pci 0000:00:17.5: PME# disabled
    [    3.671948] pci 0000:00:17.6: [15ad:07a0] type 1 class 0x000604
    [    3.672618] pci 0000:00:17.6: PME# supported from D0 D3hot D3cold
    [    3.672638] pci 0000:00:17.6: PME# disabled
    [    3.672849] pci 0000:00:17.7: [15ad:07a0] type 1 class 0x000604
    [    3.673519] pci 0000:00:17.7: PME# supported from D0 D3hot D3cold
    [    3.673539] pci 0000:00:17.7: PME# disabled
    [    3.673870] pci 0000:00:18.0: [15ad:07a0] type 1 class 0x000604
    [    3.674556] pci 0000:00:18.0: PME# supported from D0 D3hot D3cold
    [    3.674576] pci 0000:00:18.0: PME# disabled
    [    3.674788] pci 0000:00:18.1: [15ad:07a0] type 1 class 0x000604
    [    3.675480] pci 0000:00:18.1: PME# supported from D0 D3hot D3cold
    [    3.675501] pci 0000:00:18.1: PME# disabled
    [    3.675713] pci 0000:00:18.2: [15ad:07a0] type 1 class 0x000604
    [    3.676385] pci 0000:00:18.2: PME# supported from D0 D3hot D3cold
    [    3.676405] pci 0000:00:18.2: PME# disabled
    [    3.676617] pci 0000:00:18.3: [15ad:07a0] type 1 class 0x000604
    [    3.677288] pci 0000:00:18.3: PME# supported from D0 D3hot D3cold
    [    3.677309] pci 0000:00:18.3: PME# disabled
    [    3.677529] pci 0000:00:18.4: [15ad:07a0] type 1 class 0x000604
    [    3.678200] pci 0000:00:18.4: PME# supported from D0 D3hot D3cold
    [    3.678220] pci 0000:00:18.4: PME# disabled
    [    3.678467] pci 0000:00:18.5: [15ad:07a0] type 1 class 0x000604
    [    3.679137] pci 0000:00:18.5: PME# supported from D0 D3hot D3cold
    [    3.679157] pci 0000:00:18.5: PME# disabled
    [    3.679371] pci 0000:00:18.6: [15ad:07a0] type 1 class 0x000604
    [    3.680040] pci 0000:00:18.6: PME# supported from D0 D3hot D3cold
    [    3.680060] pci 0000:00:18.6: PME# disabled
    [    3.680272] pci 0000:00:18.7: [15ad:07a0] type 1 class 0x000604
    [    3.680949] pci 0000:00:18.7: PME# supported from D0 D3hot D3cold
    [    3.680969] pci 0000:00:18.7: PME# disabled
    [    3.681519] pci 0000:00:01.0: PCI bridge to [bus 01-01]
    [    3.682033] pci 0000:02:01.0: [8086:100f] type 0 class 0x000200
    [    3.684827] pci 0000:02:01.0: reg 10: [mem 0xfd5c0000-0xfd5dffff 64bit]
    [    3.687477] pci 0000:02:01.0: reg 18: [mem 0xfdff0000-0xfdffffff 64bit]
    [    3.689318] pci 0000:02:01.0: reg 20: [io  0x2000-0x203f]
    [    3.692956] pci 0000:02:01.0: reg 30: [mem 0x00000000-0x0000ffff pref]
    [    3.693433] pci 0000:02:04.0: [15ad:07e0] type 0 class 0x000106
    [    3.698744] pci 0000:02:04.0: reg 24: [mem 0xfd5ef000-0xfd5effff]
    [    3.699639] pci 0000:02:04.0: reg 30: [mem 0x00000000-0x0000ffff pref]
    [    3.700036] pci 0000:02:04.0: PME# supported from D3hot
    [    3.700057] pci 0000:02:04.0: PME# disabled
    [    3.700411] pci 0000:00:11.0: PCI bridge to [bus 02-02] (subtractive decode)
    [    3.700514] pci 0000:00:11.0:   bridge window [io  0x2000-0x3fff]
    [    3.700534] pci 0000:00:11.0:   bridge window [mem 0xfd500000-0xfdffffff]
    [    3.700573] pci 0000:00:11.0:   bridge window [mem 0xe7b00000-0xe7ffffff 64bit pref]
    [    3.700576] pci 0000:00:11.0:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [    3.700578] pci 0000:00:11.0:   bridge window [mem 0x000cc000-0x000cffff] (subtractive decode)
    [    3.700579] pci 0000:00:11.0:   bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode)
    [    3.700581] pci 0000:00:11.0:   bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode)
    [    3.700582] pci 0000:00:11.0:   bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode)
    [    3.700584] pci 0000:00:11.0:   bridge window [mem 0xc0000000-0xfebfffff] (subtractive decode)
    [    3.700585] pci 0000:00:11.0:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
    [    3.700587] pci 0000:00:11.0:   bridge window [io  0x0d00-0xfeff] (subtractive decode)
    [    3.701004] pci 0000:00:15.0: PCI bridge to [bus 03-03]
    [    3.701085] pci 0000:00:15.0:   bridge window [io  0x4000-0x4fff]
    [    3.701105] pci 0000:00:15.0:   bridge window [mem 0xfd400000-0xfd4fffff]
    [    3.701144] pci 0000:00:15.0:   bridge window [mem 0xe7a00000-0xe7afffff 64bit pref]
    [    3.701560] pci 0000:00:15.1: PCI bridge to [bus 04-04]
    [    3.701640] pci 0000:00:15.1:   bridge window [io  0x8000-0x8fff]
    [    3.701660] pci 0000:00:15.1:   bridge window [mem 0xfd000000-0xfd0fffff]
    [    3.701699] pci 0000:00:15.1:   bridge window [mem 0xe7600000-0xe76fffff 64bit pref]
    [    3.702104] pci 0000:00:15.2: PCI bridge to [bus 05-05]
    [    3.702184] pci 0000:00:15.2:   bridge window [io  0xc000-0xcfff]
    [    3.702204] pci 0000:00:15.2:   bridge window [mem 0xfcc00000-0xfccfffff]
    [    3.702243] pci 0000:00:15.2:   bridge window [mem 0xe7200000-0xe72fffff 64bit pref]
    [    3.702664] pci 0000:00:15.3: PCI bridge to [bus 06-06]
    [    3.702763] pci 0000:00:15.3:   bridge window [mem 0xfc800000-0xfc8fffff]
    [    3.702802] pci 0000:00:15.3:   bridge window [mem 0xe6e00000-0xe6efffff 64bit pref]
    [    3.703207] pci 0000:00:15.4: PCI bridge to [bus 07-07]
    [    3.703305] pci 0000:00:15.4:   bridge window [mem 0xfc400000-0xfc4fffff]
    [    3.703351] pci 0000:00:15.4:   bridge window [mem 0xe6a00000-0xe6afffff 64bit pref]
    [    3.703757] pci 0000:00:15.5: PCI bridge to [bus 08-08]
    [    3.703855] pci 0000:00:15.5:   bridge window [mem 0xfc000000-0xfc0fffff]
    [    3.703894] pci 0000:00:15.5:   bridge window [mem 0xe6600000-0xe66fffff 64bit pref]
    [    3.704300] pci 0000:00:15.6: PCI bridge to [bus 09-09]
    [    3.704407] pci 0000:00:15.6:   bridge window [mem 0xfbc00000-0xfbcfffff]
    [    3.704445] pci 0000:00:15.6:   bridge window [mem 0xe6200000-0xe62fffff 64bit pref]
    [    3.704851] pci 0000:00:15.7: PCI bridge to [bus 0a-0a]
    [    3.704949] pci 0000:00:15.7:   bridge window [mem 0xfb800000-0xfb8fffff]
    [    3.704988] pci 0000:00:15.7:   bridge window [mem 0xe5e00000-0xe5efffff 64bit pref]
    [    3.705400] pci 0000:00:16.0: PCI bridge to [bus 0b-0b]
    [    3.705480] pci 0000:00:16.0:   bridge window [io  0x5000-0x5fff]
    [    3.705500] pci 0000:00:16.0:   bridge window [mem 0xfd300000-0xfd3fffff]
    [    3.705538] pci 0000:00:16.0:   bridge window [mem 0xe7900000-0xe79fffff 64bit pref]
    [    3.705944] pci 0000:00:16.1: PCI bridge to [bus 0c-0c]
    [    3.706025] pci 0000:00:16.1:   bridge window [io  0x9000-0x9fff]
    [    3.706045] pci 0000:00:16.1:   bridge window [mem 0xfcf00000-0xfcffffff]
    [    3.706084] pci 0000:00:16.1:   bridge window [mem 0xe7500000-0xe75fffff 64bit pref]
    [    3.706505] pci 0000:00:16.2: PCI bridge to [bus 0d-0d]
    [    3.706586] pci 0000:00:16.2:   bridge window [io  0xd000-0xdfff]
    [    3.706606] pci 0000:00:16.2:   bridge window [mem 0xfcb00000-0xfcbfffff]
    [    3.706644] pci 0000:00:16.2:   bridge window [mem 0xe7100000-0xe71fffff 64bit pref]
    [    3.707049] pci 0000:00:16.3: PCI bridge to [bus 0e-0e]
    [    3.707147] pci 0000:00:16.3:   bridge window [mem 0xfc700000-0xfc7fffff]
    [    3.707186] pci 0000:00:16.3:   bridge window [mem 0xe6d00000-0xe6dfffff 64bit pref]
    [    3.707597] pci 0000:00:16.4: PCI bridge to [bus 0f-0f]
    [    3.707695] pci 0000:00:16.4:   bridge window [mem 0xfc300000-0xfc3fffff]
    [    3.707734] pci 0000:00:16.4:   bridge window [mem 0xe6900000-0xe69fffff 64bit pref]
    [    3.708148] pci 0000:00:16.5: PCI bridge to [bus 10-10]
    [    3.708248] pci 0000:00:16.5:   bridge window [mem 0xfbf00000-0xfbffffff]
    [    3.708287] pci 0000:00:16.5:   bridge window [mem 0xe6500000-0xe65fffff 64bit pref]
    [    3.708698] pci 0000:00:16.6: PCI bridge to [bus 11-11]
    [    3.708798] pci 0000:00:16.6:   bridge window [mem 0xfbb00000-0xfbbfffff]
    [    3.708837] pci 0000:00:16.6:   bridge window [mem 0xe6100000-0xe61fffff 64bit pref]
    [    3.709249] pci 0000:00:16.7: PCI bridge to [bus 12-12]
    [    3.709350] pci 0000:00:16.7:   bridge window [mem 0xfb700000-0xfb7fffff]
    [    3.709388] pci 0000:00:16.7:   bridge window [mem 0xe5d00000-0xe5dfffff 64bit pref]
    [    3.709798] pci 0000:00:17.0: PCI bridge to [bus 13-13]
    [    3.709878] pci 0000:00:17.0:   bridge window [io  0x6000-0x6fff]
    [    3.709898] pci 0000:00:17.0:   bridge window [mem 0xfd200000-0xfd2fffff]
    [    3.709937] pci 0000:00:17.0:   bridge window [mem 0xe7800000-0xe78fffff 64bit pref]
    [    3.710496] pci 0000:00:17.1: PCI bridge to [bus 14-14]
    [    3.710578] pci 0000:00:17.1:   bridge window [io  0xa000-0xafff]
    [    3.710598] pci 0000:00:17.1:   bridge window [mem 0xfce00000-0xfcefffff]
    [    3.710636] pci 0000:00:17.1:   bridge window [mem 0xe7400000-0xe74fffff 64bit pref]
    [    3.711044] pci 0000:00:17.2: PCI bridge to [bus 15-15]
    [    3.711124] pci 0000:00:17.2:   bridge window [io  0xe000-0xefff]
    [    3.711144] pci 0000:00:17.2:   bridge window [mem 0xfca00000-0xfcafffff]
    [    3.711182] pci 0000:00:17.2:   bridge window [mem 0xe7000000-0xe70fffff 64bit pref]
    [    3.711588] pci 0000:00:17.3: PCI bridge to [bus 16-16]
    [    3.711686] pci 0000:00:17.3:   bridge window [mem 0xfc600000-0xfc6fffff]
    [    3.711724] pci 0000:00:17.3:   bridge window [mem 0xe6c00000-0xe6cfffff 64bit pref]
    [    3.712130] pci 0000:00:17.4: PCI bridge to [bus 17-17]
    [    3.712228] pci 0000:00:17.4:   bridge window [mem 0xfc200000-0xfc2fffff]
    [    3.712267] pci 0000:00:17.4:   bridge window [mem 0xe6800000-0xe68fffff 64bit pref]
    [    3.712680] pci 0000:00:17.5: PCI bridge to [bus 18-18]
    [    3.712778] pci 0000:00:17.5:   bridge window [mem 0xfbe00000-0xfbefffff]
    [    3.712817] pci 0000:00:17.5:   bridge window [mem 0xe6400000-0xe64fffff 64bit pref]
    [    3.713222] pci 0000:00:17.6: PCI bridge to [bus 19-19]
    [    3.713341] pci 0000:00:17.6:   bridge window [mem 0xfba00000-0xfbafffff]
    [    3.713379] pci 0000:00:17.6:   bridge window [mem 0xe6000000-0xe60fffff 64bit pref]
    [    3.713785] pci 0000:00:17.7: PCI bridge to [bus 1a-1a]
    [    3.713883] pci 0000:00:17.7:   bridge window [mem 0xfb600000-0xfb6fffff]
    [    3.713921] pci 0000:00:17.7:   bridge window [mem 0xe5c00000-0xe5cfffff 64bit pref]
    [    3.714345] pci 0000:00:18.0: PCI bridge to [bus 1b-1b]
    [    3.714425] pci 0000:00:18.0:   bridge window [io  0x7000-0x7fff]
    [    3.714445] pci 0000:00:18.0:   bridge window [mem 0xfd100000-0xfd1fffff]
    [    3.714484] pci 0000:00:18.0:   bridge window [mem 0xe7700000-0xe77fffff 64bit pref]
    [    3.714891] pci 0000:00:18.1: PCI bridge to [bus 1c-1c]
    [    3.714971] pci 0000:00:18.1:   bridge window [io  0xb000-0xbfff]
    [    3.714991] pci 0000:00:18.1:   bridge window [mem 0xfcd00000-0xfcdfffff]
    [    3.715029] pci 0000:00:18.1:   bridge window [mem 0xe7300000-0xe73fffff 64bit pref]
    [    3.715454] pci 0000:00:18.2: PCI bridge to [bus 1d-1d]
    [    3.715578] pci 0000:00:18.2:   bridge window [mem 0xfc900000-0xfc9fffff]
    [    3.715618] pci 0000:00:18.2:   bridge window [mem 0xe6f00000-0xe6ffffff 64bit pref]
    [    3.716035] pci 0000:00:18.3: PCI bridge to [bus 1e-1e]
    [    3.716136] pci 0000:00:18.3:   bridge window [mem 0xfc500000-0xfc5fffff]
    [    3.716174] pci 0000:00:18.3:   bridge window [mem 0xe6b00000-0xe6bfffff 64bit pref]
    [    3.716583] pci 0000:00:18.4: PCI bridge to [bus 1f-1f]
    [    3.716682] pci 0000:00:18.4:   bridge window [mem 0xfc100000-0xfc1fffff]
    [    3.716720] pci 0000:00:18.4:   bridge window [mem 0xe6700000-0xe67fffff 64bit pref]
    [    3.717127] pci 0000:00:18.5: PCI bridge to [bus 20-20]
    [    3.717226] pci 0000:00:18.5:   bridge window [mem 0xfbd00000-0xfbdfffff]
    [    3.717265] pci 0000:00:18.5:   bridge window [mem 0xe6300000-0xe63fffff 64bit pref]
    [    3.717701] pci 0000:00:18.6: PCI bridge to [bus 21-21]
    [    3.717800] pci 0000:00:18.6:   bridge window [mem 0xfb900000-0xfb9fffff]
    [    3.717839] pci 0000:00:18.6:   bridge window [mem 0xe5f00000-0xe5ffffff 64bit pref]
    [    3.718258] pci 0000:00:18.7: PCI bridge to [bus 22-22]
    [    3.718368] pci 0000:00:18.7:   bridge window [mem 0xfb500000-0xfb5fffff]
    [    3.718407] pci 0000:00:18.7:   bridge window [mem 0xe5b00000-0xe5bfffff 64bit pref]
    [    3.719872] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [    3.720482]  pci0000:00: Requesting ACPI _OSC control (0x1d)
    [    3.720793]  pci0000:00: ACPI _OSC control (0x15) granted
    [    3.792494] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 *9 10 11 14 15)
    [    3.792837] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 *11 14 15)
    [    3.793166] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 *10 11 14 15)
    [    3.793506] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 *7 9 10 11 14 15)
    [    3.794001] vgaarb: device added: PCI:0000:00:0f.0,decodes=io+mem,owns=io+mem,locks=none
    [    3.794104] vgaarb: loaded
    [    3.794148] vgaarb: bridge control possible 0000:00:0f.0
    [    3.794340] i2c-core: driver [aat2870] using legacy suspend method
    [    3.794410] i2c-core: driver [aat2870] using legacy resume method
    [    3.794585] SCSI subsystem initialized
    [    3.794804] libata version 3.00 loaded.
    [    3.794871] usbcore: registered new interface driver usbfs
    [    3.794943] usbcore: registered new interface driver hub
    [    3.795156] usbcore: registered new device driver usb
    [    3.795484] PCI: Using ACPI for IRQ routing
    [    3.822790] PCI: pci_cache_line_size set to 64 bytes
    [    3.823703] reserve RAM buffer: 000000000009e800 - 000000000009ffff 
    [    3.823705] reserve RAM buffer: 00000000bfee0000 - 00000000bfffffff 
    [    3.823898] NetLabel: Initializing
    [    3.823956] NetLabel:  domain hash size = 128
    [    3.824010] NetLabel:  protocols = UNLABELED CIPSOv4
    [    3.824075] NetLabel:  unlabeled traffic allowed by default
    [    3.824603] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
    [    3.825023] hpet0: 16 comparators, 64-bit 14.318180 MHz counter
    [    3.827166] Switching to clocksource hpet
    [    3.999240] AppArmor: AppArmor Filesystem Enabled
    [    3.999333] pnp: PnP ACPI init
    [    3.999394] ACPI: bus type pnp registered
    [    4.000108] pnp 00:00: [bus 00-7f]
    [    4.000111] pnp 00:00: [mem 0x000a0000-0x000bffff window]
    [    4.000112] pnp 00:00: [mem 0x000c0000-0x000c3fff window]
    [    4.000113] pnp 00:00: [mem 0x000c4000-0x000c7fff window]
    [    4.000115] pnp 00:00: [mem 0x000c8000-0x000cbfff window]
    [    4.000116] pnp 00:00: [mem 0x000cc000-0x000cffff window]
    [    4.000117] pnp 00:00: [mem 0x000d0000-0x000d3fff window]
    [    4.000118] pnp 00:00: [mem 0x000d4000-0x000d7fff window]
    [    4.000120] pnp 00:00: [mem 0x000d8000-0x000dbfff window]
    [    4.000121] pnp 00:00: [mem 0x000dc000-0x000dffff window]
    [    4.000122] pnp 00:00: [mem 0x000e0000-0x000e3fff window]
    [    4.000123] pnp 00:00: [mem 0x000e4000-0x000e7fff window]
    [    4.000124] pnp 00:00: [mem 0x000e8000-0x000ebfff window]
    [    4.000125] pnp 00:00: [mem 0x000ec000-0x000effff window]
    [    4.000127] pnp 00:00: [mem 0xc0000000-0xfebfffff window]
    [    4.000128] pnp 00:00: [mem 0x00000000 window]
    [    4.000152] pnp 00:00: [io  0x0cf8-0x0cff]
    [    4.000154] pnp 00:00: [io  0x0000-0x0cf7 window]
    [    4.000155] pnp 00:00: [io  0x0d00-0xfeff window]
    [    4.000248] pnp 00:00: Plug and Play ACPI device, IDs PNP0a03 PNP0a08 (active)
    [    4.000332] pnp 00:01: [io  0x0010-0x001f]
    [    4.000334] pnp 00:01: [io  0x0024-0x0025]
    [    4.000335] pnp 00:01: [io  0x0028-0x0029]
    [    4.000336] pnp 00:01: [io  0x002c-0x002d]
    [    4.000337] pnp 00:01: [io  0x002e-0x002f]
    [    4.000338] pnp 00:01: [io  0x0030-0x0031]
    [    4.000339] pnp 00:01: [io  0x0034-0x0035]
    [    4.000340] pnp 00:01: [io  0x0038-0x0039]
    [    4.000341] pnp 00:01: [io  0x003c-0x003d]
    [    4.000342] pnp 00:01: [io  0x0050-0x0053]
    [    4.000343] pnp 00:01: [io  0x0072-0x0077]
    [    4.000344] pnp 00:01: [io  0x0080]
    [    4.000345] pnp 00:01: [io  0x0090-0x009f]
    [    4.000346] pnp 00:01: [io  0x00a4-0x00a5]
    [    4.000347] pnp 00:01: [io  0x00a8-0x00a9]
    [    4.000348] pnp 00:01: [io  0x00ac-0x00ad]
    [    4.000349] pnp 00:01: [io  0x00b0-0x00b5]
    [    4.000350] pnp 00:01: [io  0x00b8-0x00b9]
    [    4.000351] pnp 00:01: [io  0x00bc-0x00bd]
    [    4.000352] pnp 00:01: [io  0x1000-0x103f]
    [    4.000353] pnp 00:01: [io  0x1040-0x104f]
    [    4.000354] pnp 00:01: [io  0x0cf0-0x0cf1]
    [    4.000413] system 00:01: [io  0x1000-0x103f] has been reserved
    [    4.000483] system 00:01: [io  0x1040-0x104f] has been reserved
    [    4.000549] system 00:01: [io  0x0cf0-0x0cf1] has been reserved
    [    4.000614] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    [    4.000621] pnp 00:02: [io  0x0000-0x000f]
    [    4.000622] pnp 00:02: [io  0x0081-0x008f]
    [    4.000623] pnp 00:02: [io  0x00c0-0x00df]
    [    4.000625] pnp 00:02: [dma 4]
    [    4.000638] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
    [    4.000643] pnp 00:03: [io  0x0020-0x0021]
    [    4.000644] pnp 00:03: [io  0x00a0-0x00a1]
    [    4.000645] pnp 00:03: [io  0x04d0-0x04d1]
    [    4.000647] pnp 00:03: [irq 2 disabled]
    [    4.000698] pnp 00:03: Plug and Play ACPI device, IDs PNP0001 (active)
    [    4.000706] pnp 00:04: [io  0x0070-0x0071]
    [    4.000717] pnp 00:04: [irq 8]
    [    4.000730] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
    [    4.000735] pnp 00:05: [io  0x0061]
    [    4.000747] pnp 00:05: Plug and Play ACPI device, IDs PNP0800 (active)
    [    4.000751] pnp 00:06: [io  0x0060]
    [    4.000752] pnp 00:06: [io  0x0064]
    [    4.000757] pnp 00:06: [irq 1]
    [    4.000804] pnp 00:06: Plug and Play ACPI device, IDs PNP0303 (active)
    [    4.000936] pnp 00:07: [irq 12]
    [    4.000962] pnp 00:07: Plug and Play ACPI device, IDs VMW0003 PNP0f13 (active)
    [    4.001118] pnp 00:08: [mem 0xfed00000-0xfed003ff]
    [    4.001153] system 00:08: [mem 0xfed00000-0xfed003ff] has been reserved
    [    4.001226] system 00:08: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
    [    4.002722] pnp 00:09: [mem 0xf0000000-0xf7ffffff]
    [    4.002746] pnp 00:09: [io  0xfce0-0xfcff]
    [    4.002747] pnp 00:09: [mem 0xfe800000-0xfe9fffff]
    [    4.002821] system 00:09: [io  0xfce0-0xfcff] has been reserved
    [    4.002892] system 00:09: [mem 0xf0000000-0xf7ffffff] has been reserved
    [    4.002972] system 00:09: [mem 0xfe800000-0xfe9fffff] has been reserved
    [    4.003042] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
    [    4.007032] pnp: PnP ACPI: found 10 devices
    [    4.007089] ACPI: ACPI bus type pnp unregistered
    [    4.017372] PCI: max bus depth: 1 pci_try_num: 2
    [    4.019260] pci 0000:00:0f.0: BAR 6: assigned [mem 0xc0000000-0xc0007fff pref]
    [    4.019355] pci 0000:00:10.0: BAR 6: assigned [mem 0xc0008000-0xc000bfff pref]
    [    4.019441] pci 0000:00:18.7: BAR 13: can't assign io (size 0x1000)
    [    4.019508] pci 0000:00:18.6: BAR 13: can't assign io (size 0x1000)
    [    4.019575] pci 0000:00:18.5: BAR 13: can't assign io (size 0x1000)
    [    4.019642] pci 0000:00:18.4: BAR 13: can't assign io (size 0x1000)
    [    4.019708] pci 0000:00:18.3: BAR 13: can't assign io (size 0x1000)
    [    4.019775] pci 0000:00:18.2: BAR 13: can't assign io (size 0x1000)
    [    4.019842] pci 0000:00:17.7: BAR 13: can't assign io (size 0x1000)
    [    4.019908] pci 0000:00:17.6: BAR 13: can't assign io (size 0x1000)
    [    4.019990] pci 0000:00:17.5: BAR 13: can't assign io (size 0x1000)
    [    4.020056] pci 0000:00:17.4: BAR 13: can't assign io (size 0x1000)
    [    4.020123] pci 0000:00:17.3: BAR 13: can't assign io (size 0x1000)
    [    4.020189] pci 0000:00:16.7: BAR 13: can't assign io (size 0x1000)
    [    4.020256] pci 0000:00:16.6: BAR 13: can't assign io (size 0x1000)
    [    4.020323] pci 0000:00:16.5: BAR 13: can't assign io (size 0x1000)
    [    4.020390] pci 0000:00:16.4: BAR 13: can't assign io (size 0x1000)
    [    4.020458] pci 0000:00:16.3: BAR 13: can't assign io (size 0x1000)
    [    4.020524] pci 0000:00:15.7: BAR 13: can't assign io (size 0x1000)
    [    4.020591] pci 0000:00:15.6: BAR 13: can't assign io (size 0x1000)
    [    4.020658] pci 0000:00:15.5: BAR 13: can't assign io (size 0x1000)
    [    4.020724] pci 0000:00:15.4: BAR 13: can't assign io (size 0x1000)
    [    4.020790] pci 0000:00:15.3: BAR 13: can't assign io (size 0x1000)
    [    4.020857] pci 0000:00:01.0: PCI bridge to [bus 01-01]
    [    4.021013] pci 0000:02:01.0: BAR 6: assigned [mem 0xe7b00000-0xe7b0ffff pref]
    [    4.021098] pci 0000:02:04.0: BAR 6: assigned [mem 0xe7b10000-0xe7b1ffff pref]
    [    4.021181] pci 0000:00:11.0: PCI bridge to [bus 02-02]
    [    4.021251] pci 0000:00:11.0:   bridge window [io  0x2000-0x3fff]
    [    4.021345] pci 0000:00:11.0:   bridge window [mem 0xfd500000-0xfdffffff]
    [    4.021435] pci 0000:00:11.0:   bridge window [mem 0xe7b00000-0xe7ffffff 64bit pref]
    [    4.021560] pci 0000:00:15.0: PCI bridge to [bus 03-03]
    [    4.021630] pci 0000:00:15.0:   bridge window [io  0x4000-0x4fff]
    [    4.021724] pci 0000:00:15.0:   bridge window [mem 0xfd400000-0xfd4fffff]
    [    4.021825] pci 0000:00:15.0:   bridge window [mem 0xe7a00000-0xe7afffff 64bit pref]
    [    4.021972] pci 0000:00:15.1: PCI bridge to [bus 04-04]
    [    4.022043] pci 0000:00:15.1:   bridge window [io  0x8000-0x8fff]
    [    4.022138] pci 0000:00:15.1:   bridge window [mem 0xfd000000-0xfd0fffff]
    [    4.022401] pci 0000:00:15.1:   bridge window [mem 0xe7600000-0xe76fffff 64bit pref]
    [    4.022530] pci 0000:00:15.2: PCI bridge to [bus 05-05]
    [    4.022601] pci 0000:00:15.2:   bridge window [io  0xc000-0xcfff]
    [    4.022695] pci 0000:00:15.2:   bridge window [mem 0xfcc00000-0xfccfffff]
    [    4.022784] pci 0000:00:15.2:   bridge window [mem 0xe7200000-0xe72fffff 64bit pref]
    [    4.022920] pci 0000:00:15.3: PCI bridge to [bus 06-06]
    [    4.023010] pci 0000:00:15.3:   bridge window [mem 0xfc800000-0xfc8fffff]
    [    4.023099] pci 0000:00:15.3:   bridge window [mem 0xe6e00000-0xe6efffff 64bit pref]
    [    4.023226] pci 0000:00:15.4: PCI bridge to [bus 07-07]
    [    4.023315] pci 0000:00:15.4:   bridge window [mem 0xfc400000-0xfc4fffff]
    [    4.023404] pci 0000:00:15.4:   bridge window [mem 0xe6a00000-0xe6afffff 64bit pref]
    [    4.023532] pci 0000:00:15.5: PCI bridge to [bus 08-08]
    [    4.023621] pci 0000:00:15.5:   bridge window [mem 0xfc000000-0xfc0fffff]
    [    4.023710] pci 0000:00:15.5:   bridge window [mem 0xe6600000-0xe66fffff 64bit pref]
    [    4.023839] pci 0000:00:15.6: PCI bridge to [bus 09-09]
    [    4.023936] pci 0000:00:15.6:   bridge window [mem 0xfbc00000-0xfbcfffff]
    [    4.024057] pci 0000:00:15.6:   bridge window [mem 0xe6200000-0xe62fffff 64bit pref]
    [    4.024186] pci 0000:00:15.7: PCI bridge to [bus 0a-0a]
    [    4.024283] pci 0000:00:15.7:   bridge window [mem 0xfb800000-0xfb8fffff]
    [    4.024375] pci 0000:00:15.7:   bridge window [mem 0xe5e00000-0xe5efffff 64bit pref]
    [    4.024506] pci 0000:00:16.0: PCI bridge to [bus 0b-0b]
    [    4.024579] pci 0000:00:16.0:   bridge window [io  0x5000-0x5fff]
    [    4.024674] pci 0000:00:16.0:   bridge window [mem 0xfd300000-0xfd3fffff]
    [    4.024766] pci 0000:00:16.0:   bridge window [mem 0xe7900000-0xe79fffff 64bit pref]
    [    4.024896] pci 0000:00:16.1: PCI bridge to [bus 0c-0c]
    [    4.024994] pci 0000:00:16.1:   bridge window [io  0x9000-0x9fff]
    [    4.025090] pci 0000:00:16.1:   bridge window [mem 0xfcf00000-0xfcffffff]
    [    4.025180] pci 0000:00:16.1:   bridge window [mem 0xe7500000-0xe75fffff 64bit pref]
    [    4.025335] pci 0000:00:16.2: PCI bridge to [bus 0d-0d]
    [    4.025407] pci 0000:00:16.2:   bridge window [io  0xd000-0xdfff]
    [    4.025501] pci 0000:00:16.2:   bridge window [mem 0xfcb00000-0xfcbfffff]
    [    4.025590] pci 0000:00:16.2:   bridge window [mem 0xe7100000-0xe71fffff 64bit pref]
    [    4.025718] pci 0000:00:16.3: PCI bridge to [bus 0e-0e]
    [    4.025829] pci 0000:00:16.3:   bridge window [mem 0xfc700000-0xfc7fffff]
    [    4.025926] pci 0000:00:16.3:   bridge window [mem 0xe6d00000-0xe6dfffff 64bit pref]
    [    4.026055] pci 0000:00:16.4: PCI bridge to [bus 0f-0f]
    [    4.026143] pci 0000:00:16.4:   bridge window [mem 0xfc300000-0xfc3fffff]
    [    4.026233] pci 0000:00:16.4:   bridge window [mem 0xe6900000-0xe69fffff 64bit pref]
    [    4.026361] pci 0000:00:16.5: PCI bridge to [bus 10-10]
    [    4.026450] pci 0000:00:16.5:   bridge window [mem 0xfbf00000-0xfbffffff]
    [    4.026539] pci 0000:00:16.5:   bridge window [mem 0xe6500000-0xe65fffff 64bit pref]
    [    4.026666] pci 0000:00:16.6: PCI bridge to [bus 11-11]
    [    4.026756] pci 0000:00:16.6:   bridge window [mem 0xfbb00000-0xfbbfffff]
    [    4.026844] pci 0000:00:16.6:   bridge window [mem 0xe6100000-0xe61fffff 64bit pref]
    [    4.026982] pci 0000:00:16.7: PCI bridge to [bus 12-12]
    [    4.027071] pci 0000:00:16.7:   bridge window [mem 0xfb700000-0xfb7fffff]
    [    4.027160] pci 0000:00:16.7:   bridge window [mem 0xe5d00000-0xe5dfffff 64bit pref]
    [    4.027288] pci 0000:00:17.0: PCI bridge to [bus 13-13]
    [    4.027359] pci 0000:00:17.0:   bridge window [io  0x6000-0x6fff]
    [    4.027453] pci 0000:00:17.0:   bridge window [mem 0xfd200000-0xfd2fffff]
    [    4.027542] pci 0000:00:17.0:   bridge window [mem 0xe7800000-0xe78fffff 64bit pref]
    [    4.027671] pci 0000:00:17.1: PCI bridge to [bus 14-14]
    [    4.027742] pci 0000:00:17.1:   bridge window [io  0xa000-0xafff]
    [    4.027836] pci 0000:00:17.1:   bridge window [mem 0xfce00000-0xfcefffff]
    [    4.027948] pci 0000:00:17.1:   bridge window [mem 0xe7400000-0xe74fffff 64bit pref]
    [    4.028078] pci 0000:00:17.2: PCI bridge to [bus 15-15]
    [    4.028149] pci 0000:00:17.2:   bridge window [io  0xe000-0xefff]
    [    4.028243] pci 0000:00:17.2:   bridge window [mem 0xfca00000-0xfcafffff]
    [    4.028332] pci 0000:00:17.2:   bridge window [mem 0xe7000000-0xe70fffff 64bit pref]
    [    4.028461] pci 0000:00:17.3: PCI bridge to [bus 16-16]
    [    4.028550] pci 0000:00:17.3:   bridge window [mem 0xfc600000-0xfc6fffff]
    [    4.028640] pci 0000:00:17.3:   bridge window [mem 0xe6c00000-0xe6cfffff 64bit pref]
    [    4.028769] pci 0000:00:17.4: PCI bridge to [bus 17-17]
    [    4.028858] pci 0000:00:17.4:   bridge window [mem 0xfc200000-0xfc2fffff]
    [    4.028959] pci 0000:00:17.4:   bridge window [mem 0xe6800000-0xe68fffff 64bit pref]
    [    4.029088] pci 0000:00:17.5: PCI bridge to [bus 18-18]
    [    4.029177] pci 0000:00:17.5:   bridge window [mem 0xfbe00000-0xfbefffff]
    [    4.029267] pci 0000:00:17.5:   bridge window [mem 0xe6400000-0xe64fffff 64bit pref]
    [    4.029396] pci 0000:00:17.6: PCI bridge to [bus 19-19]
    [    4.029485] pci 0000:00:17.6:   bridge window [mem 0xfba00000-0xfbafffff]
    [    4.029575] pci 0000:00:17.6:   bridge window [mem 0xe6000000-0xe60fffff 64bit pref]
    [    4.029703] pci 0000:00:17.7: PCI bridge to [bus 1a-1a]
    [    4.029804] pci 0000:00:17.7:   bridge window [mem 0xfb600000-0xfb6fffff]
    [    4.029895] pci 0000:00:17.7:   bridge window [mem 0xe5c00000-0xe5cfffff 64bit pref]
    [    4.030044] pci 0000:00:18.0: PCI bridge to [bus 1b-1b]
    [    4.030116] pci 0000:00:18.0:   bridge window [io  0x7000-0x7fff]
    [    4.030210] pci 0000:00:18.0:   bridge window [mem 0xfd100000-0xfd1fffff]
    [    4.030308] pci 0000:00:18.0:   bridge window [mem 0xe7700000-0xe77fffff 64bit pref]
    [    4.030438] pci 0000:00:18.1: PCI bridge to [bus 1c-1c]
    [    4.030509] pci 0000:00:18.1:   bridge window [io  0xb000-0xbfff]
    [    4.030604] pci 0000:00:18.1:   bridge window [mem 0xfcd00000-0xfcdfffff]
    [    4.030694] pci 0000:00:18.1:   bridge window [mem 0xe7300000-0xe73fffff 64bit pref]
    [    4.030822] pci 0000:00:18.2: PCI bridge to [bus 1d-1d]
    [    4.030915] pci 0000:00:18.2:   bridge window [mem 0xfc900000-0xfc9fffff]
    [    4.031004] pci 0000:00:18.2:   bridge window [mem 0xe6f00000-0xe6ffffff 64bit pref]
    [    4.031132] pci 0000:00:18.3: PCI bridge to [bus 1e-1e]
    [    4.031221] pci 0000:00:18.3:   bridge window [mem 0xfc500000-0xfc5fffff]
    [    4.031311] pci 0000:00:18.3:   bridge window [mem 0xe6b00000-0xe6bfffff 64bit pref]
    [    4.031439] pci 0000:00:18.4: PCI bridge to [bus 1f-1f]
    [    4.031529] pci 0000:00:18.4:   bridge window [mem 0xfc100000-0xfc1fffff]
    [    4.031618] pci 0000:00:18.4:   bridge window [mem 0xe6700000-0xe67fffff 64bit pref]
    [    4.031746] pci 0000:00:18.5: PCI bridge to [bus 20-20]
    [    4.031836] pci 0000:00:18.5:   bridge window [mem 0xfbd00000-0xfbdfffff]
    [    4.031935] pci 0000:00:18.5:   bridge window [mem 0xe6300000-0xe63fffff 64bit pref]
    [    4.032063] pci 0000:00:18.6: PCI bridge to [bus 21-21]
    [    4.032152] pci 0000:00:18.6:   bridge window [mem 0xfb900000-0xfb9fffff]
    [    4.032241] pci 0000:00:18.6:   bridge window [mem 0xe5f00000-0xe5ffffff 64bit pref]
    [    4.032370] pci 0000:00:18.7: PCI bridge to [bus 22-22]
    [    4.032460] pci 0000:00:18.7:   bridge window [mem 0xfb500000-0xfb5fffff]
    [    4.032550] pci 0000:00:18.7:   bridge window [mem 0xe5b00000-0xe5bfffff 64bit pref]
    [    4.032713] pci 0000:00:01.0: setting latency timer to 64
    [    4.032793] pci 0000:00:15.0: setting latency timer to 64
    [    4.032841] pci 0000:00:15.1: setting latency timer to 64
    [    4.032890] pci 0000:00:15.2: setting latency timer to 64
    [    4.032948] pci 0000:00:15.3: setting latency timer to 64
    [    4.032996] pci 0000:00:15.4: setting latency timer to 64
    [    4.033045] pci 0000:00:15.5: setting latency timer to 64
    [    4.033094] pci 0000:00:15.6: setting latency timer to 64
    [    4.033142] pci 0000:00:15.7: setting latency timer to 64
    [    4.033191] pci 0000:00:16.0: setting latency timer to 64
    [    4.033239] pci 0000:00:16.1: setting latency timer to 64
    [    4.033288] pci 0000:00:16.2: setting latency timer to 64
    [    4.033336] pci 0000:00:16.3: setting latency timer to 64
    [    4.033384] pci 0000:00:16.4: setting latency timer to 64
    [    4.033432] pci 0000:00:16.5: setting latency timer to 64
    [    4.033480] pci 0000:00:16.6: setting latency timer to 64
    [    4.033529] pci 0000:00:16.7: setting latency timer to 64
    [    4.033577] pci 0000:00:17.0: setting latency timer to 64
    [    4.033625] pci 0000:00:17.1: setting latency timer to 64
    [    4.033674] pci 0000:00:17.2: setting latency timer to 64
    [    4.033722] pci 0000:00:17.3: setting latency timer to 64
    [    4.033770] pci 0000:00:17.4: setting latency timer to 64
    [    4.033832] pci 0000:00:17.5: setting latency timer to 64
    [    4.033880] pci 0000:00:17.6: setting latency timer to 64
    [    4.033937] pci 0000:00:17.7: setting latency timer to 64
    [    4.033985] pci 0000:00:18.0: setting latency timer to 64
    [    4.034034] pci 0000:00:18.1: setting latency timer to 64
    [    4.034082] pci 0000:00:18.2: setting latency timer to 64
    [    4.034130] pci 0000:00:18.3: setting latency timer to 64
    [    4.034179] pci 0000:00:18.4: setting latency timer to 64
    [    4.034228] pci 0000:00:18.5: setting latency timer to 64
    [    4.034276] pci 0000:00:18.6: setting latency timer to 64
    [    4.034324] pci 0000:00:18.7: setting latency timer to 64
    [    4.034336] pci_bus 0000:00: resource 4 [mem 0x000a0000-0x000bffff]
    [    4.034338] pci_bus 0000:00: resource 5 [mem 0x000cc000-0x000cffff]
    [    4.034339] pci_bus 0000:00: resource 6 [mem 0x000d0000-0x000d3fff]
    [    4.034340] pci_bus 0000:00: resource 7 [mem 0x000d4000-0x000d7fff]
    [    4.034342] pci_bus 0000:00: resource 8 [mem 0x000d8000-0x000dbfff]
    [    4.034343] pci_bus 0000:00: resource 9 [mem 0xc0000000-0xfebfffff]
    [    4.034344] pci_bus 0000:00: resource 10 [io  0x0000-0x0cf7]
    [    4.034346] pci_bus 0000:00: resource 11 [io  0x0d00-0xfeff]
    [    4.034347] pci_bus 0000:02: resource 0 [io  0x2000-0x3fff]
    [    4.034349] pci_bus 0000:02: resource 1 [mem 0xfd500000-0xfdffffff]
    [    4.034350] pci_bus 0000:02: resource 2 [mem 0xe7b00000-0xe7ffffff 64bit pref]
    [    4.034351] pci_bus 0000:02: resource 4 [mem 0x000a0000-0x000bffff]
    [    4.034353] pci_bus 0000:02: resource 5 [mem 0x000cc000-0x000cffff]
    [    4.034354] pci_bus 0000:02: resource 6 [mem 0x000d0000-0x000d3fff]
    [    4.034355] pci_bus 0000:02: resource 7 [mem 0x000d4000-0x000d7fff]
    [    4.034356] pci_bus 0000:02: resource 8 [mem 0x000d8000-0x000dbfff]
    [    4.034358] pci_bus 0000:02: resource 9 [mem 0xc0000000-0xfebfffff]
    [    4.034359] pci_bus 0000:02: resource 10 [io  0x0000-0x0cf7]
    [    4.034360] pci_bus 0000:02: resource 11 [io  0x0d00-0xfeff]
    [    4.034362] pci_bus 0000:03: resource 0 [io  0x4000-0x4fff]
    [    4.034363] pci_bus 0000:03: resource 1 [mem 0xfd400000-0xfd4fffff]
    [    4.034364] pci_bus 0000:03: resource 2 [mem 0xe7a00000-0xe7afffff 64bit pref]
    [    4.034365] pci_bus 0000:04: resource 0 [io  0x8000-0x8fff]
    [    4.034367] pci_bus 0000:04: resource 1 [mem 0xfd000000-0xfd0fffff]
    [    4.034368] pci_bus 0000:04: resource 2 [mem 0xe7600000-0xe76fffff 64bit pref]
    [    4.034369] pci_bus 0000:05: resource 0 [io  0xc000-0xcfff]
    [    4.034371] pci_bus 0000:05: resource 1 [mem 0xfcc00000-0xfccfffff]
    [    4.034372] pci_bus 0000:05: resource 2 [mem 0xe7200000-0xe72fffff 64bit pref]
    [    4.034373] pci_bus 0000:06: resource 1 [mem 0xfc800000-0xfc8fffff]
    [    4.034375] pci_bus 0000:06: resource 2 [mem 0xe6e00000-0xe6efffff 64bit pref]
    [    4.034376] pci_bus 0000:07: resource 1 [mem 0xfc400000-0xfc4fffff]
    [    4.034377] pci_bus 0000:07: resource 2 [mem 0xe6a00000-0xe6afffff 64bit pref]
    [    4.034379] pci_bus 0000:08: resource 1 [mem 0xfc000000-0xfc0fffff]
    [    4.034380] pci_bus 0000:08: resource 2 [mem 0xe6600000-0xe66fffff 64bit pref]
    [    4.034382] pci_bus 0000:09: resource 1 [mem 0xfbc00000-0xfbcfffff]
    [    4.034383] pci_bus 0000:09: resource 2 [mem 0xe6200000-0xe62fffff 64bit pref]
    [    4.034384] pci_bus 0000:0a: resource 1 [mem 0xfb800000-0xfb8fffff]
    [    4.034386] pci_bus 0000:0a: resource 2 [mem 0xe5e00000-0xe5efffff 64bit pref]
    [    4.034387] pci_bus 0000:0b: resource 0 [io  0x5000-0x5fff]
    [    4.034388] pci_bus 0000:0b: resource 1 [mem 0xfd300000-0xfd3fffff]
    [    4.034390] pci_bus 0000:0b: resource 2 [mem 0xe7900000-0xe79fffff 64bit pref]
    [    4.034391] pci_bus 0000:0c: resource 0 [io  0x9000-0x9fff]
    [    4.034392] pci_bus 0000:0c: resource 1 [mem 0xfcf00000-0xfcffffff]
    [    4.034393] pci_bus 0000:0c: resource 2 [mem 0xe7500000-0xe75fffff 64bit pref]
    [    4.034395] pci_bus 0000:0d: resource 0 [io  0xd000-0xdfff]
    [    4.034396] pci_bus 0000:0d: resource 1 [mem 0xfcb00000-0xfcbfffff]
    [    4.034397] pci_bus 0000:0d: resource 2 [mem 0xe7100000-0xe71fffff 64bit pref]
    [    4.034399] pci_bus 0000:0e: resource 1 [mem 0xfc700000-0xfc7fffff]
    [    4.034400] pci_bus 0000:0e: resource 2 [mem 0xe6d00000-0xe6dfffff 64bit pref]
    [    4.034402] pci_bus 0000:0f: resource 1 [mem 0xfc300000-0xfc3fffff]
    [    4.034403] pci_bus 0000:0f: resource 2 [mem 0xe6900000-0xe69fffff 64bit pref]
    [    4.034404] pci_bus 0000:10: resource 1 [mem 0xfbf00000-0xfbffffff]
    [    4.034406] pci_bus 0000:10: resource 2 [mem 0xe6500000-0xe65fffff 64bit pref]
    [    4.034407] pci_bus 0000:11: resource 1 [mem 0xfbb00000-0xfbbfffff]
    [    4.034408] pci_bus 0000:11: resource 2 [mem 0xe6100000-0xe61fffff 64bit pref]
    [    4.034410] pci_bus 0000:12: resource 1 [mem 0xfb700000-0xfb7fffff]
    [    4.034411] pci_bus 0000:12: resource 2 [mem 0xe5d00000-0xe5dfffff 64bit pref]
    [    4.034413] pci_bus 0000:13: resource 0 [io  0x6000-0x6fff]
    [    4.034414] pci_bus 0000:13: resource 1 [mem 0xfd200000-0xfd2fffff]
    [    4.034415] pci_bus 0000:13: resource 2 [mem 0xe7800000-0xe78fffff 64bit pref]
    [    4.034417] pci_bus 0000:14: resource 0 [io  0xa000-0xafff]
    [    4.034418] pci_bus 0000:14: resource 1 [mem 0xfce00000-0xfcefffff]
    [    4.034419] pci_bus 0000:14: resource 2 [mem 0xe7400000-0xe74fffff 64bit pref]
    [    4.034421] pci_bus 0000:15: resource 0 [io  0xe000-0xefff]
    [    4.034422] pci_bus 0000:15: resource 1 [mem 0xfca00000-0xfcafffff]
    [    4.034423] pci_bus 0000:15: resource 2 [mem 0xe7000000-0xe70fffff 64bit pref]
    [    4.034425] pci_bus 0000:16: resource 1 [mem 0xfc600000-0xfc6fffff]
    [    4.034426] pci_bus 0000:16: resource 2 [mem 0xe6c00000-0xe6cfffff 64bit pref]
    [    4.034427] pci_bus 0000:17: resource 1 [mem 0xfc200000-0xfc2fffff]
    [    4.034429] pci_bus 0000:17: resource 2 [mem 0xe6800000-0xe68fffff 64bit pref]
    [    4.034430] pci_bus 0000:18: resource 1 [mem 0xfbe00000-0xfbefffff]
    [    4.034431] pci_bus 0000:18: resource 2 [mem 0xe6400000-0xe64fffff 64bit pref]
    [    4.034433] pci_bus 0000:19: resource 1 [mem 0xfba00000-0xfbafffff]
    [    4.034434] pci_bus 0000:19: resource 2 [mem 0xe6000000-0xe60fffff 64bit pref]
    [    4.034436] pci_bus 0000:1a: resource 1 [mem 0xfb600000-0xfb6fffff]
    [    4.034437] pci_bus 0000:1a: resource 2 [mem 0xe5c00000-0xe5cfffff 64bit pref]
    [    4.034438] pci_bus 0000:1b: resource 0 [io  0x7000-0x7fff]
    [    4.034440] pci_bus 0000:1b: resource 1 [mem 0xfd100000-0xfd1fffff]
    [    4.034441] pci_bus 0000:1b: resource 2 [mem 0xe7700000-0xe77fffff 64bit pref]
    [    4.034442] pci_bus 0000:1c: resource 0 [io  0xb000-0xbfff]
    [    4.034444] pci_bus 0000:1c: resource 1 [mem 0xfcd00000-0xfcdfffff]
    [    4.034445] pci_bus 0000:1c: resource 2 [mem 0xe7300000-0xe73fffff 64bit pref]
    [    4.034446] pci_bus 0000:1d: resource 1 [mem 0xfc900000-0xfc9fffff]
    [    4.034448] pci_bus 0000:1d: resource 2 [mem 0xe6f00000-0xe6ffffff 64bit pref]
    [    4.034449] pci_bus 0000:1e: resource 1 [mem 0xfc500000-0xfc5fffff]
    [    4.034450] pci_bus 0000:1e: resource 2 [mem 0xe6b00000-0xe6bfffff 64bit pref]
    [    4.034452] pci_bus 0000:1f: resource 1 [mem 0xfc100000-0xfc1fffff]
    [    4.034453] pci_bus 0000:1f: resource 2 [mem 0xe6700000-0xe67fffff 64bit pref]
    [    4.034455] pci_bus 0000:20: resource 1 [mem 0xfbd00000-0xfbdfffff]
    [    4.034456] pci_bus 0000:20: resource 2 [mem 0xe6300000-0xe63fffff 64bit pref]
    [    4.034457] pci_bus 0000:21: resource 1 [mem 0xfb900000-0xfb9fffff]
    [    4.034459] pci_bus 0000:21: resource 2 [mem 0xe5f00000-0xe5ffffff 64bit pref]
    [    4.034460] pci_bus 0000:22: resource 1 [mem 0xfb500000-0xfb5fffff]
    [    4.034461] pci_bus 0000:22: resource 2 [mem 0xe5b00000-0xe5bfffff 64bit pref]
    [    4.034558] NET: Registered protocol family 2
    [    4.035107] IP route cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [    4.050766] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
    [    4.079496] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [    4.083094] TCP: Hash tables configured (established 524288 bind 65536)
    [    4.083167] TCP reno registered
    [    4.083241] UDP hash table entries: 8192 (order: 6, 262144 bytes)
    [    4.084211] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes)
    [    4.086103] NET: Registered protocol family 1
    [    4.086286] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
    [    4.086435] pci 0000:00:0f.0: Boot video device
    [    4.086807] PCI: CLS mismatch (32 != 64), using 64 bytes
    [    4.086811] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [    4.086895] Placing 64MB software IO TLB between ffff8800bbee0000 - ffff8800bfee0000
    [    4.086982] software IO TLB at phys 0xbbee0000 - 0xbfee0000
    [    4.087152] Simple Boot Flag at 0x36 set to 0x80
    [    4.087212] Switching to clocksource tsc
    [    4.152830] audit: initializing netlink socket (disabled)
    [    4.153341] type=2000 audit(1457959922.786:1): initialized
    [    4.194673] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [    4.239368] VFS: Disk quotas dquot_6.5.2
    [    4.239560] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [    4.240889] fuse init (API version 7.17)
    [    4.241099] msgmni has been set to 32066
    [    4.242469] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
    [    4.242730] io scheduler noop registered
    [    4.242785] io scheduler deadline registered
    [    4.242903] io scheduler cfq registered (default)
    [    4.243299] pcieport 0000:00:15.0: setting latency timer to 64
    [    4.243837] pcieport 0000:00:15.0: irq 40 for MSI/MSI-X
    [    4.244375] pcieport 0000:00:15.1: setting latency timer to 64
    [    4.244835] pcieport 0000:00:15.1: irq 41 for MSI/MSI-X
    [    4.245325] pcieport 0000:00:15.2: setting latency timer to 64
    [    4.245805] pcieport 0000:00:15.2: irq 42 for MSI/MSI-X
    [    4.246309] pcieport 0000:00:15.3: setting latency timer to 64
    [    4.246772] pcieport 0000:00:15.3: irq 43 for MSI/MSI-X
    [    4.247236] pcieport 0000:00:15.4: setting latency timer to 64
    [    4.247698] pcieport 0000:00:15.4: irq 44 for MSI/MSI-X
    [    4.248198] pcieport 0000:00:15.5: setting latency timer to 64
    [    4.248661] pcieport 0000:00:15.5: irq 45 for MSI/MSI-X
    [    4.249126] pcieport 0000:00:15.6: setting latency timer to 64
    [    4.249590] pcieport 0000:00:15.6: irq 46 for MSI/MSI-X
    [    4.250208] pcieport 0000:00:15.7: setting latency timer to 64
    [    4.250704] pcieport 0000:00:15.7: irq 47 for MSI/MSI-X
    [    4.251343] pcieport 0000:00:16.0: setting latency timer to 64
    [    4.251851] pcieport 0000:00:16.0: irq 48 for MSI/MSI-X
    [    4.252361] pcieport 0000:00:16.1: setting latency timer to 64
    [    4.252838] pcieport 0000:00:16.1: irq 49 for MSI/MSI-X
    [    4.253305] pcieport 0000:00:16.2: setting latency timer to 64
    [    4.253781] pcieport 0000:00:16.2: irq 50 for MSI/MSI-X
    [    4.254283] pcieport 0000:00:16.3: setting latency timer to 64
    [    4.254742] pcieport 0000:00:16.3: irq 51 for MSI/MSI-X
    [    4.255245] pcieport 0000:00:16.4: setting latency timer to 64
    [    4.255701] pcieport 0000:00:16.4: irq 52 for MSI/MSI-X
    [    4.256171] pcieport 0000:00:16.5: setting latency timer to 64
    [    4.256635] pcieport 0000:00:16.5: irq 53 for MSI/MSI-X
    [    4.257168] pcieport 0000:00:16.6: setting latency timer to 64
    [    4.257651] pcieport 0000:00:16.6: irq 54 for MSI/MSI-X
    [    4.258120] pcieport 0000:00:16.7: setting latency timer to 64
    [    4.258572] pcieport 0000:00:16.7: irq 55 for MSI/MSI-X
    [    4.259088] pcieport 0000:00:17.0: setting latency timer to 64
    [    4.259543] pcieport 0000:00:17.0: irq 56 for MSI/MSI-X
    [    4.260016] pcieport 0000:00:17.1: setting latency timer to 64
    [    4.260469] pcieport 0000:00:17.1: irq 57 for MSI/MSI-X
    [    4.260980] pcieport 0000:00:17.2: setting latency timer to 64
    [    4.261434] pcieport 0000:00:17.2: irq 58 for MSI/MSI-X
    [    4.261918] pcieport 0000:00:17.3: setting latency timer to 64
    [    4.262371] pcieport 0000:00:17.3: irq 59 for MSI/MSI-X
    [    4.262887] pcieport 0000:00:17.4: setting latency timer to 64
    [    4.263344] pcieport 0000:00:17.4: irq 60 for MSI/MSI-X
    [    4.263819] pcieport 0000:00:17.5: setting latency timer to 64
    [    4.264272] pcieport 0000:00:17.5: irq 61 for MSI/MSI-X
    [    4.264774] pcieport 0000:00:17.6: setting latency timer to 64
    [    4.265229] pcieport 0000:00:17.6: irq 62 for MSI/MSI-X
    [    4.265829] pcieport 0000:00:17.7: setting latency timer to 64
    [    4.266283] pcieport 0000:00:17.7: irq 63 for MSI/MSI-X
    [    4.266791] pcieport 0000:00:18.0: setting latency timer to 64
    [    4.267363] pcieport 0000:00:18.0: irq 64 for MSI/MSI-X
    [    4.267884] pcieport 0000:00:18.1: setting latency timer to 64
    [    4.268339] pcieport 0000:00:18.1: irq 65 for MSI/MSI-X
    [    4.268806] pcieport 0000:00:18.2: setting latency timer to 64
    [    4.269259] pcieport 0000:00:18.2: irq 66 for MSI/MSI-X
    [    4.269804] pcieport 0000:00:18.3: setting latency timer to 64
    [    4.270276] pcieport 0000:00:18.3: irq 67 for MSI/MSI-X
    [    4.270755] pcieport 0000:00:18.4: setting latency timer to 64
    [    4.271208] pcieport 0000:00:18.4: irq 68 for MSI/MSI-X
    [    4.271741] pcieport 0000:00:18.5: setting latency timer to 64
    [    4.272195] pcieport 0000:00:18.5: irq 69 for MSI/MSI-X
    [    4.272661] pcieport 0000:00:18.6: setting latency timer to 64
    [    4.273113] pcieport 0000:00:18.6: irq 70 for MSI/MSI-X
    [    4.273635] pcieport 0000:00:18.7: setting latency timer to 64
    [    4.274090] pcieport 0000:00:18.7: irq 71 for MSI/MSI-X
    [    4.274588] pcieport 0000:00:15.0: Signaling PME through PCIe PME interrupt
    [    4.274708] pcie_pme 0000:00:15.0:pcie01: service driver pcie_pme loaded
    [    4.274812] pcieport 0000:00:15.1: Signaling PME through PCIe PME interrupt
    [    4.274904] pcie_pme 0000:00:15.1:pcie01: service driver pcie_pme loaded
    [    4.275045] pcieport 0000:00:15.2: Signaling PME through PCIe PME interrupt
    [    4.275138] pcie_pme 0000:00:15.2:pcie01: service driver pcie_pme loaded
    [    4.275241] pcieport 0000:00:15.3: Signaling PME through PCIe PME interrupt
    [    4.275332] pcie_pme 0000:00:15.3:pcie01: service driver pcie_pme loaded
    [    4.275469] pcieport 0000:00:15.4: Signaling PME through PCIe PME interrupt
    [    4.275562] pcie_pme 0000:00:15.4:pcie01: service driver pcie_pme loaded
    [    4.275674] pcieport 0000:00:15.5: Signaling PME through PCIe PME interrupt
    [    4.275766] pcie_pme 0000:00:15.5:pcie01: service driver pcie_pme loaded
    [    4.275869] pcieport 0000:00:15.6: Signaling PME through PCIe PME interrupt
    [    4.275960] pcie_pme 0000:00:15.6:pcie01: service driver pcie_pme loaded
    [    4.276062] pcieport 0000:00:15.7: Signaling PME through PCIe PME interrupt
    [    4.276154] pcie_pme 0000:00:15.7:pcie01: service driver pcie_pme loaded
    [    4.276257] pcieport 0000:00:16.0: Signaling PME through PCIe PME interrupt
    [    4.276348] pcie_pme 0000:00:16.0:pcie01: service driver pcie_pme loaded
    [    4.276451] pcieport 0000:00:16.1: Signaling PME through PCIe PME interrupt
    [    4.276542] pcie_pme 0000:00:16.1:pcie01: service driver pcie_pme loaded
    [    4.276684] pcieport 0000:00:16.2: Signaling PME through PCIe PME interrupt
    [    4.276778] pcie_pme 0000:00:16.2:pcie01: service driver pcie_pme loaded
    [    4.276881] pcieport 0000:00:16.3: Signaling PME through PCIe PME interrupt
    [    4.276973] pcie_pme 0000:00:16.3:pcie01: service driver pcie_pme loaded
    [    4.277075] pcieport 0000:00:16.4: Signaling PME through PCIe PME interrupt
    [    4.277167] pcie_pme 0000:00:16.4:pcie01: service driver pcie_pme loaded
    [    4.277269] pcieport 0000:00:16.5: Signaling PME through PCIe PME interrupt
    [    4.277361] pcie_pme 0000:00:16.5:pcie01: service driver pcie_pme loaded
    [    4.277463] pcieport 0000:00:16.6: Signaling PME through PCIe PME interrupt
    [    4.277565] pcie_pme 0000:00:16.6:pcie01: service driver pcie_pme loaded
    [    4.277679] pcieport 0000:00:16.7: Signaling PME through PCIe PME interrupt
    [    4.277771] pcie_pme 0000:00:16.7:pcie01: service driver pcie_pme loaded
    [    4.277906] pcieport 0000:00:17.0: Signaling PME through PCIe PME interrupt
    [    4.277999] pcie_pme 0000:00:17.0:pcie01: service driver pcie_pme loaded
    [    4.278103] pcieport 0000:00:17.1: Signaling PME through PCIe PME interrupt
    [    4.278195] pcie_pme 0000:00:17.1:pcie01: service driver pcie_pme loaded
    [    4.278297] pcieport 0000:00:17.2: Signaling PME through PCIe PME interrupt
    [    4.278715] pcie_pme 0000:00:17.2:pcie01: service driver pcie_pme loaded
    [    4.278820] pcieport 0000:00:17.3: Signaling PME through PCIe PME interrupt
    [    4.278912] pcie_pme 0000:00:17.3:pcie01: service driver pcie_pme loaded
    [    4.279015] pcieport 0000:00:17.4: Signaling PME through PCIe PME interrupt
    [    4.279107] pcie_pme 0000:00:17.4:pcie01: service driver pcie_pme loaded
    [    4.279210] pcieport 0000:00:17.5: Signaling PME through PCIe PME interrupt
    [    4.279301] pcie_pme 0000:00:17.5:pcie01: service driver pcie_pme loaded
    [    4.279438] pcieport 0000:00:17.6: Signaling PME through PCIe PME interrupt
    [    4.279532] pcie_pme 0000:00:17.6:pcie01: service driver pcie_pme loaded
    [    4.279637] pcieport 0000:00:17.7: Signaling PME through PCIe PME interrupt
    [    4.279728] pcie_pme 0000:00:17.7:pcie01: service driver pcie_pme loaded
    [    4.279831] pcieport 0000:00:18.0: Signaling PME through PCIe PME interrupt
    [    4.279923] pcie_pme 0000:00:18.0:pcie01: service driver pcie_pme loaded
    [    4.280025] pcieport 0000:00:18.1: Signaling PME through PCIe PME interrupt
    [    4.280117] pcie_pme 0000:00:18.1:pcie01: service driver pcie_pme loaded
    [    4.280240] pcieport 0000:00:18.2: Signaling PME through PCIe PME interrupt
    [    4.280333] pcie_pme 0000:00:18.2:pcie01: service driver pcie_pme loaded
    [    4.280435] pcieport 0000:00:18.3: Signaling PME through PCIe PME interrupt
    [    4.280527] pcie_pme 0000:00:18.3:pcie01: service driver pcie_pme loaded
    [    4.280692] pcieport 0000:00:18.4: Signaling PME through PCIe PME interrupt
    [    4.280789] pcie_pme 0000:00:18.4:pcie01: service driver pcie_pme loaded
    [    4.280896] pcieport 0000:00:18.5: Signaling PME through PCIe PME interrupt
    [    4.280989] pcie_pme 0000:00:18.5:pcie01: service driver pcie_pme loaded
    [    4.281127] pcieport 0000:00:18.6: Signaling PME through PCIe PME interrupt
    [    4.281220] pcie_pme 0000:00:18.6:pcie01: service driver pcie_pme loaded
    [    4.281323] pcieport 0000:00:18.7: Signaling PME through PCIe PME interrupt
    [    4.281415] pcie_pme 0000:00:18.7:pcie01: service driver pcie_pme loaded
    [    4.281434] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [    4.281983] pciehp 0000:00:15.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
    [    4.282137] pciehp 0000:00:15.0:pcie04: service driver pciehp loaded
    [    4.282198] pciehp 0000:00:15.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
    [    4.282347] pciehp 0000:00:15.1:pcie04: service driver pciehp loaded
    [    4.282408] pciehp 0000:00:15.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
    [    4.282556] pciehp 0000:00:15.2:pcie04: service driver pciehp loaded
    [    4.282628] pciehp 0000:00:15.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
    [    4.282777] pciehp 0000:00:15.3:pcie04: service driver pciehp loaded
    [    4.282837] pciehp 0000:00:15.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
    [    4.283022] pciehp 0000:00:15.4:pcie04: service driver pciehp loaded
    [    4.283116] pciehp 0000:00:15.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
    [    4.283267] pciehp 0000:00:15.5:pcie04: service driver pciehp loaded
    [    4.283328] pciehp 0000:00:15.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
    [    4.283477] pciehp 0000:00:15.6:pcie04: service driver pciehp loaded
    [    4.283538] pciehp 0000:00:15.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
    [    4.283708] pciehp 0000:00:15.7:pcie04: service driver pciehp loaded
    [    4.283768] pciehp 0000:00:16.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
    [    4.283919] pciehp 0000:00:16.0:pcie04: service driver pciehp loaded
    [    4.283980] pciehp 0000:00:16.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
    [    4.284130] pciehp 0000:00:16.1:pcie04: service driver pciehp loaded
    [    4.284191] pciehp 0000:00:16.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
    [    4.284342] pciehp 0000:00:16.2:pcie04: service driver pciehp loaded
    [    4.284439] pciehp 0000:00:16.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
    [    4.284601] pciehp 0000:00:16.3:pcie04: service driver pciehp loaded
    [    4.284662] pciehp 0000:00:16.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
    [    4.284851] pciehp 0000:00:16.4:pcie04: service driver pciehp loaded
    [    4.284912] pciehp 0000:00:16.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
    [    4.285062] pciehp 0000:00:16.5:pcie04: service driver pciehp loaded
    [    4.285124] pciehp 0000:00:16.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
    [    4.285273] pciehp 0000:00:16.6:pcie04: service driver pciehp loaded
    [    4.285334] pciehp 0000:00:16.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
    [    4.285498] pciehp 0000:00:16.7:pcie04: service driver pciehp loaded
    [    4.285559] pciehp 0000:00:17.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
    [    4.285720] pciehp 0000:00:17.0:pcie04: service driver pciehp loaded
    [    4.285781] pciehp 0000:00:17.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
    [    4.285968] pciehp 0000:00:17.1:pcie04: service driver pciehp loaded
    [    4.286029] pciehp 0000:00:17.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
    [    4.286180] pciehp 0000:00:17.2:pcie04: service driver pciehp loaded
    [    4.286275] pciehp 0000:00:17.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
    [    4.286426] pciehp 0000:00:17.3:pcie04: service driver pciehp loaded
    [    4.286487] pciehp 0000:00:17.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
    [    4.286647] pciehp 0000:00:17.4:pcie04: service driver pciehp loaded
    [    4.286707] pciehp 0000:00:17.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
    [    4.286856] pciehp 0000:00:17.5:pcie04: service driver pciehp loaded
    [    4.286917] pciehp 0000:00:17.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
    [    4.287067] pciehp 0000:00:17.6:pcie04: service driver pciehp loaded
    [    4.287127] pciehp 0000:00:17.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
    [    4.287316] pciehp 0000:00:17.7:pcie04: service driver pciehp loaded
    [    4.287378] pciehp 0000:00:18.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
    [    4.287527] pciehp 0000:00:18.0:pcie04: service driver pciehp loaded
    [    4.287597] pciehp 0000:00:18.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
    [    4.287746] pciehp 0000:00:18.1:pcie04: service driver pciehp loaded
    [    4.287807] pciehp 0000:00:18.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
    [    4.287956] pciehp 0000:00:18.2:pcie04: service driver pciehp loaded
    [    4.288017] pciehp 0000:00:18.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
    [    4.288186] pciehp 0000:00:18.3:pcie04: service driver pciehp loaded
    [    4.288247] pciehp 0000:00:18.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
    [    4.288396] pciehp 0000:00:18.4:pcie04: service driver pciehp loaded
    [    4.288457] pciehp 0000:00:18.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
    [    4.288647] pciehp 0000:00:18.5:pcie04: service driver pciehp loaded
    [    4.288709] pciehp 0000:00:18.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
    [    4.288858] pciehp 0000:00:18.6:pcie04: service driver pciehp loaded
    [    4.288920] pciehp 0000:00:18.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
    [    4.289069] pciehp 0000:00:18.7:pcie04: service driver pciehp loaded
    [    4.289076] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [    4.289414] ACPI: Deprecated procfs I/F for AC is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
    [    4.289657] ACPI: AC Adapter [ACAD] (on-line)
    [    4.289828] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
    [    4.289918] ACPI: Power Button [PWRF]
    [    4.427131] ERST: Table is not found!
    [    4.427203] GHES: HEST is not enabled!
    [    4.427350] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
    [    4.526200] Linux agpgart interface v0.103
    [    4.526478] agpgart-intel 0000:00:00.0: Intel 440BX Chipset
    [    4.532849] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0x0
    [    4.536069] brd: module loaded
    [    4.539874] loop: module loaded
    [    4.540038] ahci 0000:02:04.0: version 3.0
    [    4.540123] ahci 0000:02:04.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
    [    4.540526] ahci 0000:02:04.0: irq 72 for MSI/MSI-X
    [    4.542656] ahci 0000:02:04.0: AHCI 0001.0300 32 slots 30 ports 6 Gbps 0x3fffffff impl SATA mode
    [    4.542767] ahci 0000:02:04.0: flags: 64bit ncq clo only 
    [    4.561201] scsi0 : ahci
    [    4.561528] scsi1 : ahci
    [    4.561798] scsi2 : ahci
    [    4.562095] scsi3 : ahci
    [    4.562424] scsi4 : ahci
    [    4.562694] scsi5 : ahci
    [    4.562977] scsi6 : ahci
    [    4.563288] scsi7 : ahci
    [    4.563587] scsi8 : ahci
    [    4.563923] scsi9 : ahci
    [    4.564193] scsi10 : ahci
    [    4.564520] scsi11 : ahci
    [    4.565011] scsi12 : ahci
    [    4.565409] scsi13 : ahci
    [    4.565729] scsi14 : ahci
    [    4.565979] scsi15 : ahci
    [    4.566244] scsi16 : ahci
    [    4.566520] scsi17 : ahci
    [    4.566813] scsi18 : ahci
    [    4.567130] scsi19 : ahci
    [    4.567451] scsi20 : ahci
    [    4.567704] scsi21 : ahci
    [    4.567887] scsi22 : ahci
    [    4.568130] scsi23 : ahci
    [    4.568423] scsi24 : ahci
    [    4.568635] scsi25 : ahci
    [    4.568974] scsi26 : ahci
    [    4.569307] scsi27 : ahci
    [    4.569660] scsi28 : ahci
    [    4.569939] scsi29 : ahci
    [    4.570069] ata1: SATA max UDMA/133 abar m4096@0xfd5ef000 port 0xfd5ef100 irq 72
    [    4.570157] ata2: SATA max UDMA/133 abar m4096@0xfd5ef000 port 0xfd5ef180 irq 72
    [    4.570254] ata3: SATA max UDMA/133 abar m4096@0xfd5ef000 port 0xfd5ef200 irq 72
    [    4.570338] ata4: SATA max UDMA/133 abar m4096@0xfd5ef000 port 0xfd5ef280 irq 72
    [    4.570422] ata5: SATA max UDMA/133 abar m4096@0xfd5ef000 port 0xfd5ef300 irq 72
    [    4.570506] ata6: SATA max UDMA/133 abar m4096@0xfd5ef000 port 0xfd5ef380 irq 72
    [    4.570590] ata7: SATA max UDMA/133 abar m4096@0xfd5ef000 port 0xfd5ef400 irq 72
    [    4.570673] ata8: SATA max UDMA/133 abar m4096@0xfd5ef000 port 0xfd5ef480 irq 72
    [    4.570757] ata9: SATA max UDMA/133 abar m4096@0xfd5ef000 port 0xfd5ef500 irq 72
    [    4.570841] ata10: SATA max UDMA/133 abar m4096@0xfd5ef000 port 0xfd5ef580 irq 72
    [    4.570925] ata11: SATA max UDMA/133 abar m4096@0xfd5ef000 port 0xfd5ef600 irq 72
    [    4.571009] ata12: SATA max UDMA/133 abar m4096@0xfd5ef000 port 0xfd5ef680 irq 72
    [    4.571094] ata13: SATA max UDMA/133 abar m4096@0xfd5ef000 port 0xfd5ef700 irq 72
    [    4.571178] ata14: SATA max UDMA/133 abar m4096@0xfd5ef000 port 0xfd5ef780 irq 72
    [    4.571283] ata15: SATA max UDMA/133 abar m4096@0xfd5ef000 port 0xfd5ef800 irq 72
    [    4.571371] ata16: SATA max UDMA/133 abar m4096@0xfd5ef000 port 0xfd5ef880 irq 72
    [    4.571458] ata17: SATA max UDMA/133 abar m4096@0xfd5ef000 port 0xfd5ef900 irq 72
    [    4.571546] ata18: SATA max UDMA/133 abar m4096@0xfd5ef000 port 0xfd5ef980 irq 72
    [    4.571633] ata19: SATA max UDMA/133 abar m4096@0xfd5ef000 port 0xfd5efa00 irq 72
    [    4.571721] ata20: SATA max UDMA/133 abar m4096@0xfd5ef000 port 0xfd5efa80 irq 72
    [    4.571809] ata21: SATA max UDMA/133 abar m4096@0xfd5ef000 port 0xfd5efb00 irq 72
    [    4.571897] ata22: SATA max UDMA/133 abar m4096@0xfd5ef000 port 0xfd5efb80 irq 72
    [    4.571984] ata23: SATA max UDMA/133 abar m4096@0xfd5ef000 port 0xfd5efc00 irq 72
    [    4.572070] ata24: SATA max UDMA/133 abar m4096@0xfd5ef000 port 0xfd5efc80 irq 72
    [    4.572155] ata25: SATA max UDMA/133 abar m4096@0xfd5ef000 port 0xfd5efd00 irq 72
    [    4.572250] ata26: SATA max UDMA/133 abar m4096@0xfd5ef000 port 0xfd5efd80 irq 72
    [    4.572334] ata27: SATA max UDMA/133 abar m4096@0xfd5ef000 port 0xfd5efe00 irq 72
    [    4.572595] ata28: SATA max UDMA/133 abar m4096@0xfd5ef000 port 0xfd5efe80 irq 72
    [    4.572682] ata29: SATA max UDMA/133 abar m4096@0xfd5ef000 port 0xfd5eff00 irq 72
    [    4.572771] ata30: SATA max UDMA/133 abar m4096@0xfd5ef000 port 0xfd5eff80 irq 72
    [    4.573041] ata_piix 0000:00:07.1: version 2.13
    [    4.574142] scsi30 : ata_piix
    [    4.574530] scsi31 : ata_piix
    [    4.574665] ata31: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0x1060 irq 14
    [    4.574740] ata32: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0x1068 irq 15
    [    4.575277] Fixed MDIO Bus: probed
    [    4.575341] tun: Universal TUN/TAP device driver, 1.6
    [    4.575415] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
    [    4.575617] PPP generic driver version 2.4.2
    [    4.575848] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [    4.575948] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    [    4.576022] uhci_hcd: USB Universal Host Controller Interface driver
    [    4.576174] usbcore: registered new interface driver libusual
    [    4.576274] i8042: PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:MOUS] at 0x60,0x64 irq 1,12
    [    4.577478] serio: i8042 KBD port at 0x60,0x64 irq 1
    [    4.577549] serio: i8042 AUX port at 0x60,0x64 irq 12
    [    4.577988] mousedev: PS/2 mouse device common for all mice
    [    4.598814] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
    [    4.599207] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
    [    4.599720] device-mapper: uevent: version 1.0.3
    [    4.600016] device-mapper: ioctl: 4.22.0-ioctl (2011-10-19) initialised: dm-devel@redhat.com
    [    4.600115] cpuidle: using governor ladder
    [    4.600169] cpuidle: using governor menu
    [    4.600250] EFI Variables Facility v0.08 2004-May-17
    [    4.600677] TCP cubic registered
    [    4.600885] NET: Registered protocol family 10
    [    4.602376] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
    [    4.604083] NET: Registered protocol family 17
    [    4.604157] Registering the dns_resolver key type
    [    4.604643] PM: Hibernation image not present or could not be loaded.
    [    4.604653] registered taskstats version 1
    [    4.641251]   Magic number: 8:643:885
    [    4.641340] ata_device dev27.0: hash matches
    [    4.641395]  dev27.0: hash matches
    [    4.641683] rtc_cmos 00:04: setting system clock to 2016-03-14 12:52:05 UTC (1457959925)
    [    4.642013] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
    [    4.642079] EDD information not available.
    [    4.893090] ata7: SATA link down (SStatus 0 SControl 300)
    [    4.893508] ata9: SATA link down (SStatus 0 SControl 300)
    [    4.893713] ata3: SATA link down (SStatus 0 SControl 300)
    [    4.894113] ata8: SATA link down (SStatus 0 SControl 300)
    [    4.894469] ata1: SATA link down (SStatus 0 SControl 300)
    [    4.894631] ata10: SATA link down (SStatus 0 SControl 300)
    [    4.897061] ata28: SATA link down (SStatus 0 SControl 300)
    [    4.897338] ata19: SATA link down (SStatus 0 SControl 300)
    [    4.897607] ata15: SATA link down (SStatus 0 SControl 300)
    [    4.897732] ata30: SATA link down (SStatus 0 SControl 300)
    [    4.897849] ata26: SATA link down (SStatus 0 SControl 300)
    [    4.897949] ata5: SATA link down (SStatus 0 SControl 300)
    [    4.898069] ata18: SATA link down (SStatus 0 SControl 300)
    [    4.898167] ata16: SATA link down (SStatus 0 SControl 300)
    [    4.898274] ata6: SATA link down (SStatus 0 SControl 300)
    [    4.898381] ata22: SATA link down (SStatus 0 SControl 300)
    [    4.898478] ata13: SATA link down (SStatus 0 SControl 300)
    [    4.898574] ata25: SATA link down (SStatus 0 SControl 300)
    [    4.898670] ata29: SATA link down (SStatus 0 SControl 300)
    [    4.898766] ata20: SATA link down (SStatus 0 SControl 300)
    [    4.898971] ata17: SATA link down (SStatus 0 SControl 300)
    [    4.899121] ata4: SATA link down (SStatus 0 SControl 300)
    [    4.899492] ata12: SATA link down (SStatus 0 SControl 300)
    [    4.899595] ata21: SATA link down (SStatus 0 SControl 300)
    [    4.899711] ata2: SATA link down (SStatus 0 SControl 300)
    [    4.899825] ata14: SATA link down (SStatus 0 SControl 300)
    [    4.899951] ata27: SATA link down (SStatus 0 SControl 300)
    [    4.900061] ata23: SATA link down (SStatus 0 SControl 300)
    [    4.900238] ata24: SATA link down (SStatus 0 SControl 300)
    [    4.900392] ata11: SATA link down (SStatus 0 SControl 300)
    [    4.903464] Freeing unused kernel memory: 920k freed
    [    4.903697] Write protecting the kernel read-only data: 12288k
    [    4.909961] Freeing unused kernel memory: 1608k freed
    [    4.913883] Freeing unused kernel memory: 1196k freed
    [    4.943737] udevd[173]: starting version 175
    [    5.068499] Fusion MPT base driver 3.04.20
    [    5.068603] Copyright (c) 1999-2008 LSI Corporation
    [    5.082373] Fusion MPT SPI Host driver 3.04.20
    [    5.082608] mptspi 0000:00:10.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
    [    5.095276] mptbase: ioc0: Initiating bringup
    [    5.176824] ioc0: LSI53C1030 B0: Capabilities={Initiator}
    [    5.349733] scsi32 : ioc0: LSI53C1030 B0, FwRev=01032920h, Ports=1, MaxQ=128, IRQ=17
    [    5.461894] scsi 32:0:0:0: Direct-Access     VMware,  VMware Virtual S 1.0  PQ: 0 ANSI: 2
    [    5.462295] scsi target32:0:0: Beginning Domain Validation
    [    5.464574] scsi target32:0:0: Domain Validation skipping write tests
    [    5.464780] scsi target32:0:0: Ending Domain Validation
    [    5.465038] scsi target32:0:0: FAST-40 WIDE SCSI 80.0 MB/s ST (25 ns, offset 127)
    [    5.467928] sd 32:0:0:0: [sda] 1048576000 512-byte logical blocks: (536 GB/500 GiB)
    [    5.468076] sd 32:0:0:0: [sda] Write Protect is off
    [    5.468137] sd 32:0:0:0: [sda] Mode Sense: 61 00 00 00
    [    5.468176] sd 32:0:0:0: [sda] Cache data unavailable
    [    5.468238] sd 32:0:0:0: [sda] Assuming drive cache: write through
    [    5.468564] sd 32:0:0:0: [sda] Cache data unavailable
    [    5.468626] sd 32:0:0:0: [sda] Assuming drive cache: write through
    [    5.469057] sd 32:0:0:0: Attached scsi generic sg0 type 0
    [    5.471372]  sda: sda1 sda2
    [    5.473410] sd 32:0:0:0: [sda] Cache data unavailable
    [    5.473476] sd 32:0:0:0: [sda] Assuming drive cache: write through
    [    5.473543] sd 32:0:0:0: [sda] Attached SCSI disk
    [    5.551343] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
    [    6.112017] udevd[498]: starting version 175
    [    6.121537] Adding 3905532k swap on /dev/sda1.  Priority:-1 extents:1 across:3905532k 
    [    6.128313] lp: driver loaded but no devices found
    [    6.191009] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    [    6.212469] piix4_smbus 0000:00:07.3: Host SMBus controller not enabled!
    [    6.222784] EXT4-fs (sda2): re-mounted. Opts: errors=remount-ro
    [    6.439990] input: ImPS/2 Generic Wheel Mouse as /devices/platform/i8042/serio1/input/input2
    [    6.491075] type=1400 audit(1457959927.348:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient" pid=819 comm="apparmor_parser"
    [    6.491339] type=1400 audit(1457959927.348:3): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=819 comm="apparmor_parser"
    [    6.491479] type=1400 audit(1457959927.348:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=819 comm="apparmor_parser"
    [    6.957259] init: udev-fallback-graphics main process (962) terminated with status 1
    [    7.626963] init: failsafe main process (945) killed by TERM signal
    [    7.663727] type=1400 audit(1457959928.520:5): apparmor="STATUS" operation="profile_load" name="/usr/sbin/tcpdump" pid=1027 comm="apparmor_parser"
    [    7.663845] type=1400 audit(1457959928.520:6): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=1025 comm="apparmor_parser"
    [    7.664108] type=1400 audit(1457959928.520:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=1025 comm="apparmor_parser"
    [    7.664249] type=1400 audit(1457959928.520:8): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=1025 comm="apparmor_parser"
    [    7.797486] e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI
    [    7.797488] e1000: Copyright (c) 1999-2006 Intel Corporation.
    [    7.797594] e1000 0000:02:01.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
    [    7.797626] e1000 0000:02:01.0: setting latency timer to 64
    [    8.167728] e1000 0000:02:01.0: eth0: (PCI:66MHz:32-bit) 00:0c:29:9e:f0:5e
    [    8.167735] e1000 0000:02:01.0: eth0: Intel(R) PRO/1000 Network Connection
    [    8.201432] e1000: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None
    [    8.202658] ADDRCONF(NETDEV_UP): eth0: link is not ready
    [    8.203441] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
    View Code
  • 相关阅读:
    C++ 声明、定义、初始化、赋值
    skynet源码赏析
    python基础6函数 柒哥
    Python基础4数据类型详解下 柒哥
    Python基础1变量 柒哥
    Python基础2数据类型 柒哥
    Python基础3数据类型详解上 柒哥
    Python基础5条件分支与循环 柒哥
    PHP面试(A02)
    Envoy 配置
  • 原文地址:https://www.cnblogs.com/we-hjb/p/5277176.html
Copyright © 2011-2022 走看看