[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#644362: linux-image-2.6.39-bpo.2-686-pae: hpacucli hangs when creating disks on cciss



Package: linux-2.6
Version: 2.6.39-3~bpo60+1
Severity: normal
Tags: patch

*** Please type your report below this line ***

During a FAI controlled installation of an HP ML350 G5 server, I create
disks on the raid controller using hpacucli, like:
   echo "ctrl slot=0 ld all delete forced"                | hpacucli
   echo "ctrl slot=0 create type=ld drives=1I:1:1 raid=0" | hpacucli
   echo "ctrl slot=0 create type=ld drives=1I:1:2 raid=0" | hpacucli

When I do this with the 2.6.39 kernel from squeeze-backports, I get
the following stack-trace:

[   58.249142] sr 0:0:0:0: Attached scsi generic sg0 type 5
[  240.760011] INFO: task .hpacucli:2049 blocked for more than 120 seconds.
[  240.760873] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs"
disables this message.
[  240.761494]  f595b240 00003082 b54c80e5 00000015 f6803ec0 f59b7040
00000015 c148d1c0
[  240.763070]  00408d37 00000000 c148d1c0 f595b240 c148d1c0 c148d1c0
c103bb9e c101bc43
[  240.764112]  00000000 f5a62008 c12b2b89 00000000 f68071c0 f5a62000
f5a62008 f5a62000
[  240.764117] Call Trace:
[  240.764126]  [<c103bb9e>] ? irq_exit+0x56/0x79
[  240.764131]  [<c101bc43>] ? smp_apic_timer_interrupt+0x6b/0x75
[  240.764135]  [<c12b2b89>] ? apic_timer_interrupt+0x31/0x38
[  240.764143]  [<c1028b55>] ? mutex_spin_on_owner+0x5d/0x64
[  240.764148]  [<c12b1675>] ? __mutex_lock_common+0xe9/0x13a
[  240.764152]  [<c12b16d5>] ? __mutex_lock_slowpath+0xf/0x11
[  240.764155]  [<c12b1766>] ? mutex_lock+0x17/0x24
[  240.764157]  [<c12b1766>] ? mutex_lock+0x17/0x24
[  240.764164]  [<f84c14b7>] ? cciss_unlocked_open+0x15/0x8a [cciss]
[  240.764168]  [<c10ed886>] ? __blkdev_get+0xb5/0x2f3
[  240.764171]  [<c10edc50>] ? blkdev_get+0x18c/0x270
[  240.764175]  [<c10dd034>] ? iget5_locked+0xbf/0xf7
[  240.764178]  [<c10ec7d0>] ? I_BDEV+0x4/0x4
[  240.764180]  [<c10dbe6b>] ? unlock_new_inode+0x31/0x36
[  240.764183]  [<c10ed1fa>] ? bdget+0xd9/0xdf
[  240.764188]  [<c114bcaf>] ? register_disk+0xb5/0x118
[  240.764191]  [<c114b2c1>] ? blk_register_region+0x1b/0x1f
[  240.764194]  [<c114bdd1>] ? add_disk+0xbf/0x1d6
[  240.764197]  [<c114a9b1>] ? disk_map_sector_rcu+0x95/0x95
[  240.764200]  [<c114b107>] ? get_disk+0x6a/0x6a
[  240.764204]  [<f84c1455>] ? cciss_add_disk+0xf7/0x111 [cciss]
[  240.764209]  [<f84c414b>] ? rebuild_lun_table+0x717/0x862 [cciss]
[  240.764213]  [<f84c4635>] ? do_ioctl+0x39f/0x7d6 [cciss]
[  240.764217]  [<c1025950>] ? ptep_set_access_flags+0x44/0x4b
[  240.764221]  [<c10273c3>] ? __kunmap_atomic+0x57/0x6c
[  240.764225]  [<c10adc89>] ? do_wp_page+0x33e/0x6f0
[  240.764230]  [<f84c4296>] ? rebuild_lun_table+0x862/0x862 [cciss]
[  240.764234]  [<c114a011>] ? __blkdev_driver_ioctl+0x1d/0x25
[  240.764237]  [<c114a8bd>] ? blkdev_ioctl+0x64d/0x684
[  240.764240]  [<c10ec939>] ? block_ioctl+0x2a/0x2f
[  240.764242]  [<c10ec939>] ? block_ioctl+0x2a/0x2f
[  240.764245]  [<c10ec90f>] ? nr_blockdev_pages+0x3c/0x3c
[  240.764249]  [<c10d779b>] ? do_vfs_ioctl+0x473/0x4be
[  240.764252]  [<c12b5013>] ? do_page_fault+0x345/0x361
[  240.764255]  [<c12b5000>] ? do_page_fault+0x332/0x361
[  240.764258]  [<c10b0cb0>] ? remove_vma+0x43/0x48
[  240.764260]  [<c10b19cf>] ? do_munmap+0x20c/0x226
[  240.764263]  [<c10d782a>] ? sys_ioctl+0x44/0x64
[  240.764267]  [<c12b769f>] ? sysenter_do_call+0x12/0x28

The problem seems to be that cciss_unlocked_open() is called through the
sequence do_ioctl() -> rebuild_lun_table(). So the driver is locking
against himself. The following patch fixes it:

diff -u a/drivers/block/cciss.c b/drivers/block/cciss.c
--- a/drivers/block/cciss.c   2011-10-05 09:39:15.000000000 +0200
+++ b/drivers/block/cciss.c   2011-10-05 09:42:49.000000000 +0200
@@ -1680,7 +1680,13 @@
   case CCISS_DEREGDISK:
   case CCISS_REGNEWD:
   case CCISS_REVALIDVOLS:
-     return rebuild_lun_table(h, 0, 1);
+        {
+              int ret;
+              mutex_unlock(&cciss_mutex);
+              ret = rebuild_lun_table(h, 0, 1);
+              mutex_lock(&cciss_mutex);
+              return ret;
+        }
   case CCISS_GETLUNINFO:
      return cciss_getluninfo(h, disk, argp);
   case CCISS_PASSTHRU:

-- Package-specific info:
** Version:
Linux version 2.6.39-bpo.2-686-pae (Debian 2.6.39-3~bpo60+1)
(norbert@tretkowski.de) (gcc version 4.4.5 (Debian 4.4.5-8) ) #1 SMP
Thu Aug 4 11:02:22 UTC 2011

** Command line:
root=/dev/mapper/ahraid-root console=ttyS0 console=tty0 vga=normal

** Kernel log:
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 2.6.39-bpo.2-686-pae (Debian
2.6.39-3~bpo60+1) (norbert@tretkowski.de) (gcc version 4.4.5 (Debian
4.4.5-8) ) #1 SMP Thu Aug 4 11:02:22 UTC 2011
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 000000000009f400 (usable)
[    0.000000]  BIOS-e820: 000000000009f400 - 00000000000a0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 000000003fe58000 (usable)
[    0.000000]  BIOS-e820: 000000003fe58000 - 000000003fe60000 (ACPI data)
[    0.000000]  BIOS-e820: 000000003fe60000 - 0000000040000000 (reserved)
[    0.000000]  BIOS-e820: 00000000fec00000 - 00000000fed00000 (reserved)
[    0.000000]  BIOS-e820: 00000000fee00000 - 00000000fee10000 (reserved)
[    0.000000]  BIOS-e820: 00000000ffc00000 - 0000000100000000 (reserved)
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] DMI 2.3 present.
[    0.000000] DMI: HP ProLiant ML350 G5, BIOS D21 06/28/2007
[    0.000000] e820 update range: 0000000000000000 - 0000000000010000
(usable) ==> (reserved)
[    0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
[    0.000000] last_pfn = 0x3fe58 max_arch_pfn = 0x1000000
[    0.000000] MTRR default type: write-back
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 040000000 mask FC0000000 uncachable
[    0.000000]   1 base 080000000 mask F80000000 uncachable
[    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] found SMP MP-table at [c00f4f80] f4f80
[    0.000000] initial memory mapped : 0 - 01a00000
[    0.000000] Base memory trampoline at [c009b000] 9b000 size 16384
[    0.000000] init_memory_mapping: 0000000000000000-00000000379fe000
[    0.000000]  0000000000 - 0000200000 page 4k
[    0.000000]  0000200000 - 0037800000 page 2M
[    0.000000]  0037800000 - 00379fe000 page 4k
[    0.000000] kernel direct mapping tables up to 379fe000 @ 19fa000-1a00000
[    0.000000] RAMDISK: 3f6b4000 - 3fe38000
[    0.000000] Allocated new RAMDISK: 3727a000 - 379fdc7e
[    0.000000] Move RAMDISK from 000000003f6b4000 - 000000003fe37c7d
to 3727a000 - 379fdc7d
[    0.000000] ACPI: RSDP 000f4f00 00024 (v02 HP    )
[    0.000000] ACPI: XSDT 3fe58300 00054 (v01 HP     D21      00000002
  Ò? 0000162E)
[    0.000000] ACPI: FACP 3fe58380 000F4 (v03 HP     D21      00000002
  Ò? 0000162E)
[    0.000000] ACPI Warning: Invalid length for Pm1aControlBlock: 32,
using default 16 (20110316/tbfadt-610)
[    0.000000] ACPI: DSDT 3fe58480 02685 (v01 HP         DSDT 00000001
INTL 20030228)
[    0.000000] ACPI: FACS 3fe580c0 00040
[    0.000000] ACPI: SPCR 3fe58100 00050 (v01 HP     SPCRRBSU 00000001
  Ò? 0000162E)
[    0.000000] ACPI: MCFG 3fe58180 0003C (v01 HP     ProLiant 00000001
     00000000)
[    0.000000] ACPI: HPET 3fe581c0 00038 (v01 HP     D21      00000002
  Ò? 0000162E)
[    0.000000] ACPI: SPMI 3fe58200 00040 (v05 HP     ProLiant 00000001
  Ò? 0000162E)
[    0.000000] ACPI: APIC 3fe58240 0009E (v01 HP     00000083 00000002
     00000000)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] 132MB HIGHMEM available.
[    0.000000] 889MB LOWMEM available.
[    0.000000]   mapped low ram: 0 - 379fe000
[    0.000000]   low ram: 0 - 379fe000
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000010 -> 0x00001000
[    0.000000]   Normal   0x00001000 -> 0x000379fe
[    0.000000]   HighMem  0x000379fe -> 0x0003fe58
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[2] active PFN ranges
[    0.000000]     0: 0x00000010 -> 0x0000009f
[    0.000000]     0: 0x00000100 -> 0x0003fe58
[    0.000000] On node 0 totalpages: 261607
[    0.000000] free_area_init_node: node 0, pgdat c14187c0,
node_mem_map f6a79200
[    0.000000]   DMA zone: 32 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 3951 pages, LIFO batch:0
[    0.000000]   Normal zone: 1748 pages used for memmap
[    0.000000]   Normal zone: 221994 pages, LIFO batch:31
[    0.000000]   HighMem zone: 265 pages used for memmap
[    0.000000]   HighMem zone: 33617 pages, LIFO batch:7
[    0.000000] Using APIC driver default
[    0.000000] ACPI: PM-Timer IO Port: 0x908
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x04] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x06] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x05] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x07] disabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x08] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: IOAPIC (id[0x09] address[0xfec80000] gsi_base[24])
[    0.000000] IOAPIC[1]: apic_id 9, version 32, address 0xfec80000, GSI 24-47
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] SMP: Allowing 8 CPUs, 6 hotplug CPUs
[    0.000000] nr_irqs_gsi: 64
[    0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
[    0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
[    0.000000] Allocating PCI resources starting at 40000000 (gap:
40000000:bec00000)
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:32 nr_cpumask_bits:32
nr_cpu_ids:8 nr_node_ids:1
[    0.000000] PERCPU: Embedded 13 pages/cpu @f6800000 s30976 r0 d22272 u262144
[    0.000000] pcpu-alloc: s30976 r0 d22272 u262144 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.
Total pages: 259562
[    0.000000] Kernel command line:
BOOT_IMAGE=vmlinuz-2.6.39-bpo.2-686-pae
initrd=initrd.faiC-2.6.39-bpo.2-686-pae append ramdisk_size=8192
console=ttyS1 console=tty0
[    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Initializing CPU#0
[    0.000000] Initializing HighMem for node 0 (000379fe:0003fe58)
[    0.000000] Memory: 1023988k/1046880k available (2786k kernel code,
22440k reserved, 1434k data, 440k init, 135528k highmem)
[    0.000000] virtual kernel memory layout:
[    0.000000]     fixmap  : 0xffd36000 - 0xfffff000   (2852 kB)
[    0.000000]     pkmap   : 0xffa00000 - 0xffc00000   (2048 kB)
[    0.000000]     vmalloc : 0xf81fe000 - 0xff9fe000   ( 120 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xf79fe000   ( 889 MB)
[    0.000000]       .init : 0xc1420000 - 0xc148e000   ( 440 kB)
[    0.000000]       .data : 0xc12b8810 - 0xc141f240   (1434 kB)
[    0.000000]       .text : 0xc1000000 - 0xc12b8810   (2786 kB)
[    0.000000] Checking if this processor honours the WP bit even in
supervisor mode...Ok.
[    0.000000] Hierarchical RCU implementation.
[    0.000000]    RCU dyntick-idle grace-period acceleration is enabled.
[    0.000000]    RCU-based detection of stalled CPUs is disabled.
[    0.000000] NR_IRQS:1280
[    0.000000] CPU 0 irqstacks, hard=f600a000 soft=f600c000
[    0.000000] Extended CMOS year: 2000
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] console [ttyS1] enabled
[    0.000000] hpet clockevent registered
[    0.000000] Fast TSC calibration using PIT
[    0.000000] Detected 1999.960 MHz processor.
[    0.008004] Calibrating delay loop (skipped), value calculated
using timer frequency.. 3999.92 BogoMIPS (lpj=7999840)
[    0.010212] pid_max: default: 32768 minimum: 301
[    0.011122] Security Framework initialized
[    0.012008] SELinux:  Disabled at boot.
[    0.012784] Mount-cache hash table entries: 512
[    0.014015] Initializing cgroup subsys ns
[    0.014824] ns_cgroup deprecated: consider using the
'clone_children' flag without the ns_cgroup.
[    0.016005] Initializing cgroup subsys cpuacct
[    0.016797] Initializing cgroup subsys memory
[    0.017575] Initializing cgroup subsys devices
[    0.018402] Initializing cgroup subsys freezer
[    0.019162] Initializing cgroup subsys net_cls
[    0.020004] Initializing cgroup subsys blkio
[    0.020866] CPU: Physical Processor ID: 0
[    0.021717] CPU: Processor Core ID: 0
[    0.022516] mce: CPU supports 6 MCE banks
[    0.024012] CPU0: Thermal monitoring enabled (TM2)
[    0.024844] using mwait in idle threads.
[    0.027005] ACPI: Core revision 20110316
[    0.029409] Enabling APIC mode:  Flat.  Using 2 I/O APICs
[    0.030581] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.071525] CPU0: Intel(R) Xeon(R) CPU            5130  @ 2.00GHz stepping 06
[    0.076004] Performance Events: PEBS fmt0-, Core2 events, Broken
BIOS detected, complain to your hardware vendor.
[    0.076004] [Firmware Bug]: the BIOS has corrupted hw-PMU resources
(MSR 186 is 43003c)
[    0.076004] Intel PMU driver.
[    0.076005] PEBS disabled due to CPU errata.
[    0.076678] ... version:                2
[    0.077581] ... bit width:              40
[    0.078456] ... generic registers:      2
[    0.079349] ... value mask:             000000ffffffffff
[    0.080005] ... max period:             000000007fffffff
[    0.081077] ... fixed-purpose events:   3
[    0.081934] ... event mask:             0000000700000003
[    0.084311] NMI watchdog enabled, takes one hw-pmu counter.
[    0.085507] CPU 1 irqstacks, hard=f6116000 soft=f6118000
[    0.085510] Booting Node   0, Processors  #1
[    0.086377] smpboot cpu 1: start_ip = 9b000
[    0.012000] Initializing CPU#1
[    0.180044] NMI watchdog enabled, takes one hw-pmu counter.
[    0.181240] Brought up 2 CPUs
[    0.181871] Total of 2 processors activated (8000.06 BogoMIPS).
[    0.184151] devtmpfs: initialized
[    0.185014] print_constraints: dummy:
[    0.185099] NET: Registered protocol family 16
[    0.186139] ACPI: bus type pci registered
[    0.188155] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem
0xe0000000-0xefffffff] (base 0xe0000000)
[    0.189954] PCI: not using MMCONFIG
[    0.190982] PCI : PCI BIOS aera is rw and x. Use pci=nobios if you
want it NX.
[    0.192017] PCI: PCI BIOS revision 3.00 entry at 0xf0072, last bus=25
[    0.193279] PCI: Using configuration type 1 for base access
[    0.194807] bio: create slab <bio-0> at 0
[    0.196644] ACPI: EC: Look up EC in DSDT
[    0.198091] ACPI: Interpreter enabled
[    0.198840] ACPI: (supports S0 S4 S5)
[    0.199644] ACPI: Using IOAPIC for interrupt routing
[    0.200035] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem
0xe0000000-0xefffffff] (base 0xe0000000)
[    0.202010] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved
in ACPI motherboard resources
[    0.204014] PCI: Using MMCONFIG for extended config space
[    0.214432] ACPI: No dock devices found.
[    0.215261] HEST: Table not found.
[    0.216018] PCI: Ignoring host bridge windows from ACPI; if
necessary, use "pci=use_crs" and report a bug
[    0.217425] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7f])
[    0.218801] pci_root PNP0A03:00: host bridge window [io
0x0000-0x0cf7] (ignored)
[    0.218805] pci_root PNP0A03:00: host bridge window [io
0x0d00-0xffff] (ignored)
[    0.218808] pci_root PNP0A03:00: host bridge window [mem
0x000a0000-0x000bffff] (ignored)
[    0.218811] pci_root PNP0A03:00: host bridge window [mem
0x40000000-0xdfffffff] (ignored)
[    0.218814] pci_root PNP0A03:00: host bridge window [mem
0xf0000000-0xfebfffff] (ignored)
[    0.218829] pci 0000:00:00.0: [8086:25d0] type 0 class 0x000600
[    0.218870] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold
[    0.218874] pci 0000:00:00.0: PME# disabled
[    0.218894] pci 0000:00:02.0: [8086:25f7] type 1 class 0x000604
[    0.218930] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
[    0.218933] pci 0000:00:02.0: PME# disabled
[    0.218950] pci 0000:00:03.0: [8086:25e3] type 1 class 0x000604
[    0.218986] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
[    0.218989] pci 0000:00:03.0: PME# disabled
[    0.219006] pci 0000:00:04.0: [8086:25e4] type 1 class 0x000604
[    0.219042] pci 0000:00:04.0: PME# supported from D0 D3hot D3cold
[    0.219045] pci 0000:00:04.0: PME# disabled
[    0.219062] pci 0000:00:05.0: [8086:25e5] type 1 class 0x000604
[    0.219097] pci 0000:00:05.0: PME# supported from D0 D3hot D3cold
[    0.219101] pci 0000:00:05.0: PME# disabled
[    0.219123] pci 0000:00:10.0: [8086:25f0] type 0 class 0x000600
[    0.219152] pci 0000:00:10.1: [8086:25f0] type 0 class 0x000600
[    0.219182] pci 0000:00:10.2: [8086:25f0] type 0 class 0x000600
[    0.219215] pci 0000:00:11.0: [8086:25f1] type 0 class 0x000600
[    0.219245] pci 0000:00:13.0: [8086:25f3] type 0 class 0x000600
[    0.219275] pci 0000:00:15.0: [8086:25f5] type 0 class 0x000600
[    0.219306] pci 0000:00:16.0: [8086:25f6] type 0 class 0x000600
[    0.219344] pci 0000:00:1c.0: [8086:2690] type 1 class 0x000604
[    0.219400] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.219404] pci 0000:00:1c.0: PME# disabled
[    0.219432] pci 0000:00:1d.0: [8086:2688] type 0 class 0x000c03
[    0.219484] pci 0000:00:1d.0: reg 20: [io  0x1000-0x101f]
[    0.219520] pci 0000:00:1d.1: [8086:2689] type 0 class 0x000c03
[    0.220021] pci 0000:00:1d.1: reg 20: [io  0x1020-0x103f]
[    0.220057] pci 0000:00:1d.2: [8086:268a] type 0 class 0x000c03
[    0.220102] pci 0000:00:1d.2: reg 20: [io  0x1040-0x105f]
[    0.220132] pci 0000:00:1d.3: [8086:268b] type 0 class 0x000c03
[    0.220180] pci 0000:00:1d.3: reg 20: [io  0x1060-0x107f]
[    0.220225] pci 0000:00:1d.7: [8086:268c] type 0 class 0x000c03
[    0.220245] pci 0000:00:1d.7: reg 10: [mem 0xf5df0000-0xf5df03ff]
[    0.220315] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[    0.220320] pci 0000:00:1d.7: PME# disabled
[    0.220338] pci 0000:00:1e.0: [8086:244e] type 1 class 0x000604
[    0.220393] pci 0000:00:1f.0: [8086:2670] type 0 class 0x000601
[    0.220478] pci 0000:00:1f.1: [8086:269e] type 0 class 0x000101
[    0.220491] pci 0000:00:1f.1: reg 10: [io  0x01f0-0x01f7]
[    0.220501] pci 0000:00:1f.1: reg 14: [io  0x03f4-0x03f7]
[    0.220511] pci 0000:00:1f.1: reg 18: [io  0x0170-0x0177]
[    0.220521] pci 0000:00:1f.1: reg 1c: [io  0x0374-0x0377]
[    0.220531] pci 0000:00:1f.1: reg 20: [io  0x0500-0x050f]
[    0.220865] pci 0000:04:00.0: [8086:3500] type 1 class 0x000604
[    0.223155] pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
[    0.223246] pci 0000:04:00.0: PME# disabled
[    0.224016] pci 0000:04:00.3: [8086:350c] type 1 class 0x000604
[    0.226028] pci 0000:04:00.3: PME# supported from D0 D3hot D3cold
[    0.226119] pci 0000:04:00.3: PME# disabled
[    0.226670] pci 0000:04:00.0: disabling ASPM on pre-1.1 PCIe
device.  You can enable it with 'pcie_aspm=force'
[    0.228203] pci 0000:00:02.0: PCI bridge to [bus 04-0e]
[    0.229272] pci 0000:00:02.0:   bridge window [io  0xf000-0x0000] (disabled)
[    0.229276] pci 0000:00:02.0:   bridge window [mem 0xf9f00000-0xfbffffff]
[    0.229282] pci 0000:00:02.0:   bridge window [mem
0xfff00000-0x000fffff pref] (disabled)
[    0.231026] pci 0000:05:00.0: [8086:3510] type 1 class 0x000604
[    0.234258] pci 0000:05:00.0: PME# supported from D0 D3hot D3cold
[    0.234349] pci 0000:05:00.0: PME# disabled
[    0.234899] pci 0000:05:00.0: disabling ASPM on pre-1.1 PCIe
device.  You can enable it with 'pcie_aspm=force'
[    0.236292] pci 0000:05:01.0: [8086:3514] type 1 class 0x000604
[    0.240060] pci 0000:05:01.0: PME# supported from D0 D3hot D3cold
[    0.240151] pci 0000:05:01.0: PME# disabled
[    0.240655] pci 0000:05:00.0: disabling ASPM on pre-1.1 PCIe
device.  You can enable it with 'pcie_aspm=force'
[    0.244106] pci 0000:04:00.0: PCI bridge to [bus 05-0b]
[    0.245291] pci 0000:04:00.0:   bridge window [io  0xf000-0x0000] (disabled)
[    0.245382] pci 0000:04:00.0:   bridge window [mem 0xfa000000-0xfbffffff]
[    0.245566] pci 0000:04:00.0:   bridge window [mem
0xfff00000-0x000fffff pref] (disabled)
[    0.247352] pci 0000:05:00.0: PCI bridge to [bus 06-08]
[    0.248064] pci 0000:05:00.0:   bridge window [io  0xf000-0x0000] (disabled)
[    0.248155] pci 0000:05:00.0:   bridge window [mem
0xfff00000-0x000fffff] (disabled)
[    0.248339] pci 0000:05:00.0:   bridge window [mem
0xfff00000-0x000fffff pref] (disabled)
[    0.250446] pci 0000:09:00.0: [1166:0103] type 1 class 0x000604
[    0.253023] pci 0000:09:00.0: PME# supported from D0 D3hot D3cold
[    0.253114] pci 0000:09:00.0: PME# disabled
[    0.253801] pci 0000:09:00.0: disabling ASPM on pre-1.1 PCIe
device.  You can enable it with 'pcie_aspm=force'
[    0.255960] pci 0000:05:01.0: PCI bridge to [bus 09-0b]
[    0.256064] pci 0000:05:01.0:   bridge window [io  0xf000-0x0000] (disabled)
[    0.256156] pci 0000:05:01.0:   bridge window [mem 0xfa000000-0xfbffffff]
[    0.256339] pci 0000:05:01.0:   bridge window [mem
0xfff00000-0x000fffff pref] (disabled)
[    0.258080] pci 0000:0a:00.0: [14e4:164c] type 0 class 0x000200
[    0.258859] pci 0000:0a:00.0: reg 10: [mem 0xfa000000-0xfbffffff 64bit]
[    0.261482] pci 0000:0a:00.0: reg 30: [mem 0x00000000-0x0000ffff pref]
[    0.262443] pci 0000:0a:00.0: PME# supported from D3hot D3cold
[    0.262534] pci 0000:0a:00.0: PME# disabled
[    0.264291] pci 0000:09:00.0: PCI bridge to [bus 0a-0a]
[    0.265451] pci 0000:09:00.0:   bridge window [io
0xfffff000-0x0000] (disabled)
[    0.265542] pci 0000:09:00.0:   bridge window [mem 0xfa000000-0xfbffffff]
[    0.265726] pci 0000:09:00.0:   bridge window [mem
0xfff00000-0x000fffff pref] (disabled)
[    0.268795] pci 0000:04:00.3: PCI bridge to [bus 0c-0e]
[    0.269447] pci 0000:04:00.3:   bridge window [io  0xf000-0x0000] (disabled)
[    0.269538] pci 0000:04:00.3:   bridge window [mem
0xfff00000-0x000fffff] (disabled)
[    0.269721] pci 0000:04:00.3:   bridge window [mem
0xfff00000-0x000fffff pref] (disabled)
[    0.270159] pci 0000:00:03.0: PCI bridge to [bus 17-19]
[    0.271225] pci 0000:00:03.0:   bridge window [io  0xf000-0x0000] (disabled)
[    0.271229] pci 0000:00:03.0:   bridge window [mem
0xfff00000-0x000fffff] (disabled)
[    0.271234] pci 0000:00:03.0:   bridge window [mem
0xfff00000-0x000fffff pref] (disabled)

[    0.271262] pci 0000:00:04.0: PCI bridge to [bus 0f-11]
[    0.272020] pci 0000:00:04.0:   bridge window [io  0xf000-0x0000] (disabled)
[    0.272024] pci 0000:00:04.0:   bridge window [mem
0xfff00000-0x000fffff] (disabled)
[    0.272029] pci 0000:00:04.0:   bridge window [mem
0xfff00000-0x000fffff pref] (disabled)
[    0.272066] pci 0000:12:00.0: [1166:0103] type 1 class 0x000604
[    0.272115] pci 0000:12:00.0: PME# supported from D0 D3hot D3cold
[    0.272119] pci 0000:12:00.0: PME# disabled
[    0.272133] pci 0000:12:00.0: disabling ASPM on pre-1.1 PCIe
device.  You can enable it with 'pcie_aspm=force'
[    0.273900] pci 0000:00:05.0: PCI bridge to [bus 12-16]
[    0.275071] pci 0000:00:05.0:   bridge window [io  0x4000-0x4fff]
[    0.275075] pci 0000:00:05.0:   bridge window [mem 0xfdf00000-0xfdffffff]
[    0.275080] pci 0000:00:05.0:   bridge window [mem
0xfff00000-0x000fffff pref] (disabled)
[    0.275121] pci 0000:13:04.0: [1166:0104] type 1 class 0x000604
[    0.275188] pci 0000:13:08.0: [103c:3238] type 0 class 0x000104
[    0.275212] pci 0000:13:08.0: reg 10: [mem 0xfdf80000-0xfdffffff 64bit]
[    0.275221] pci 0000:13:08.0: reg 18: [io  0x4000-0x40ff]
[    0.275231] pci 0000:13:08.0: reg 1c: [mem 0xfdf70000-0xfdf77fff]
[    0.275255] pci 0000:13:08.0: reg 30: [mem 0x00000000-0x00003fff pref]
[    0.275278] pci 0000:13:08.0: supports D1
[    0.275314] pci 0000:12:00.0: PCI bridge to [bus 13-16]
[    0.276023] pci 0000:12:00.0:   bridge window [io  0x4000-0x4fff]
[    0.276027] pci 0000:12:00.0:   bridge window [mem 0xfdf00000-0xfdffffff]
[    0.276034] pci 0000:12:00.0:   bridge window [mem
0xfff00000-0x000fffff pref] (disabled)
[    0.276096] pci 0000:13:04.0: PCI bridge to [bus 14-16]
[    0.277169] pci 0000:13:04.0:   bridge window [io
0xfffff000-0x0000] (disabled)
[    0.277174] pci 0000:13:04.0:   bridge window [mem
0xfff00000-0x000fffff] (disabled)
[    0.277181] pci 0000:13:04.0:   bridge window [mem
0xfff00000-0x000fffff pref] (disabled)
[    0.277242] pci 0000:02:00.0: [1166:0103] type 1 class 0x000604
[    0.277307] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
[    0.277312] pci 0000:02:00.0: PME# disabled
[    0.277332] pci 0000:02:00.0: disabling ASPM on pre-1.1 PCIe
device.  You can enable it with 'pcie_aspm=force'
[    0.280026] pci 0000:00:1c.0: PCI bridge to [bus 02-03]
[    0.281062] pci 0000:00:1c.0:   bridge window [io  0xf000-0x0000] (disabled)
[    0.281066] pci 0000:00:1c.0:   bridge window [mem 0xf6000000-0xf7ffffff]
[    0.281073] pci 0000:00:1c.0:   bridge window [mem
0xfff00000-0x000fffff pref] (disabled)
[    0.281130] pci 0000:03:00.0: [14e4:164c] type 0 class 0x000200
[    0.281156] pci 0000:03:00.0: reg 10: [mem 0xf6000000-0xf7ffffff 64bit]
[    0.281208] pci 0000:03:00.0: reg 30: [mem 0x00000000-0x000007ff pref]
[    0.281240] pci 0000:03:00.0: PME# supported from D3hot D3cold
[    0.281245] pci 0000:03:00.0: PME# disabled
[    0.281302] pci 0000:02:00.0: PCI bridge to [bus 03-03]
[    0.282366] pci 0000:02:00.0:   bridge window [io
0xfffff000-0x0000] (disabled)
[    0.282372] pci 0000:02:00.0:   bridge window [mem 0xf6000000-0xf7ffffff]
[    0.282380] pci 0000:02:00.0:   bridge window [mem
0xfff00000-0x000fffff pref] (disabled)
[    0.282426] pci 0000:01:03.0: [1002:515e] type 0 class 0x000300
[    0.282444] pci 0000:01:03.0: reg 10: [mem 0xd8000000-0xdfffffff pref]
[    0.282456] pci 0000:01:03.0: reg 14: [io  0x3000-0x30ff]
[    0.282467] pci 0000:01:03.0: reg 18: [mem 0xf5ff0000-0xf5ffffff]
[    0.282503] pci 0000:01:03.0: reg 30: [mem 0x00000000-0x0001ffff pref]
[    0.282524] pci 0000:01:03.0: supports D1 D2
[    0.282543] pci 0000:01:04.0: [0e11:b203] type 0 class 0x000880
[    0.282562] pci 0000:01:04.0: reg 10: [io  0x2800-0x28ff]
[    0.282573] pci 0000:01:04.0: reg 14: [mem 0xf5fe0000-0xf5fe01ff]
[    0.282635] pci 0000:01:04.0: PME# supported from D0 D3hot D3cold
[    0.282640] pci 0000:01:04.0: PME# disabled
[    0.282661] pci 0000:01:04.2: [0e11:b204] type 0 class 0x000880
[    0.282682] pci 0000:01:04.2: reg 10: [io  0x3400-0x34ff]
[    0.282695] pci 0000:01:04.2: reg 14: [mem 0xf5fd0000-0xf5fd07ff]
[    0.282707] pci 0000:01:04.2: reg 18: [mem 0xf5fc0000-0xf5fc1fff]
[    0.282719] pci 0000:01:04.2: reg 1c: [mem 0xf5f00000-0xf5f7ffff]
[    0.282750] pci 0000:01:04.2: reg 30: [mem 0x00000000-0x0000ffff pref]
[    0.282773] pci 0000:01:04.2: PME# supported from D0 D3hot D3cold
[    0.282778] pci 0000:01:04.2: PME# disabled
[    0.282799] pci 0000:01:04.4: [103c:3300] type 0 class 0x000c03
[    0.282857] pci 0000:01:04.4: reg 20: [io  0x3800-0x381f]
[    0.282899] pci 0000:01:04.4: PME# supported from D0 D3hot D3cold
[    0.282904] pci 0000:01:04.4: PME# disabled
[    0.282925] pci 0000:01:04.6: [103c:3302] type 0 class 0x000c07
[    0.282944] pci 0000:01:04.6: reg 10: [mem 0xf5ef0000-0xf5ef00ff]
[    0.283014] pci 0000:01:04.6: PME# supported from D0 D3hot D3cold
[    0.283019] pci 0000:01:04.6: PME# disabled
[    0.283067] pci 0000:00:1e.0: PCI bridge to [bus 01-01] (subtractive decode)
[    0.284021] pci 0000:00:1e.0:   bridge window [io  0x2000-0x3fff]
[    0.284026] pci 0000:00:1e.0:   bridge window [mem 0xf5e00000-0xf5ffffff]
[    0.284033] pci 0000:00:1e.0:   bridge window [mem
0xd8000000-0xdfffffff 64bit pref]
[    0.284036] pci 0000:00:1e.0:   bridge window [io  0x0000-0xffff]
(subtractive decode)
[    0.284039] pci 0000:00:1e.0:   bridge window [mem
0x00000000-0xfffffffff] (subtractive decode)
[    0.284061] pci_bus 0000:00: on NUMA node 0
[    0.284065] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.284136] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.IP2P._PRT]
[    0.284182] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.IPTA._PRT]
[    0.284208] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PT02._PRT]
[    0.284222] ACPI Warning: For \_SB_.PCI0.PT02._PRT: Return Package
has no elements (empty) (20110316/nspredef-456)
[    0.286028] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PT02.PEX2._PRT]
[    0.286105] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PT02.IPE4._PRT]
[    0.286142] ACPI: PCI Interrupt Routing Table
[\_SB_.PCI0.PT02.IPE4.IPE1._PRT]
[    0.286194] ACPI: PCI Interrupt Routing Table
[\_SB_.PCI0.PT02.IPE4.IPE2._PRT]
[    0.286240] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PT04._PRT]
[    0.286290] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PT05.EEPB._PRT]
[    0.286319] ACPI: PCI Interrupt Routing Table
[\_SB_.PCI0.PT05.EEPB.EPPB._PRT]
[    0.286367]  pci0000:00: Requesting ACPI _OSC control (0x1d)
[    0.288020] Unable to assume _OSC PCIe control. Disabling ASPM
[    0.292304] ACPI: PCI Interrupt Link [LNKA] (IRQs *5 7 10 11)
[    0.293658] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *7 10 11)
[    0.295048] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 7 *10 11)
[    0.296377] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 7 *10 11)
[    0.297709] ACPI: PCI Interrupt Link [LNKE] (IRQs 5 7 10 11) *0, disabled.
[    0.299335] ACPI: PCI Interrupt Link [LNKF] (IRQs *5 7 10 11)
[    0.300612] ACPI: PCI Interrupt Link [LNKG] (IRQs 5 7 *10 11)
[    0.302066] ACPI: PCI Interrupt Link [LNKH] (IRQs 5 *7 10 11)
[    0.303541] vgaarb: device added:
PCI:0000:01:03.0,decodes=io+mem,owns=io+mem,locks=none
[    0.304023] vgaarb: loaded
[    0.304678] PCI: Using ACPI for IRQ routing
[    0.313021] PCI: pci_cache_line_size set to 64 bytes
[    0.313643] reserve RAM buffer: 000000000009f400 - 000000000009ffff
[    0.313646] reserve RAM buffer: 000000003fe58000 - 000000003fffffff
[    0.313773] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
[    0.315219] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.316361] hpet0: 3 comparators, 64-bit 14.318180 MHz counter
[    0.320045] Switching to clocksource hpet
[    0.322391] pnp: PnP ACPI init
[    0.323126] ACPI: bus type pnp registered
[    0.323126] Switched to NOHz mode on CPU #0
[    0.323129] Switched to NOHz mode on CPU #1
[    0.324858] pnp 00:00: [bus 00-7f]
[    0.324862] pnp 00:00: [io  0x0000-0x0cf7 window]
[    0.324865] pnp 00:00: [io  0x0d00-0xffff window]
[    0.324868] pnp 00:00: [mem 0x000a0000-0x000bffff window]
[    0.324870] pnp 00:00: [mem 0x40000000-0xdfffffff window]
[    0.324873] pnp 00:00: [mem 0xf0000000-0xfebfffff window]
[    0.324913] pnp 00:00: Plug and Play ACPI device, IDs PNP0a03 (active)
[    0.324996] pnp 00:01: [io  0x0070-0x0077]
[    0.324999] pnp 00:01: [io  0x0408-0x040f]
[    0.325001] pnp 00:01: [io  0x04d0-0x04d1]
[    0.325004] pnp 00:01: [io  0x0020-0x003f]
[    0.325006] pnp 00:01: [io  0x00a0-0x00bf]
[    0.325008] pnp 00:01: [io  0x0090-0x009f]
[    0.325010] pnp 00:01: [io  0x0050-0x0053]
[    0.325012] pnp 00:01: [io  0x0700-0x071f]
[    0.325015] pnp 00:01: [io  0x0800-0x083f]
[    0.325017] pnp 00:01: [io  0x0900-0x097f]
[    0.325019] pnp 00:01: [io  0x0010-0x001f]
[    0.325021] pnp 00:01: [io  0x0c80-0x0c83]
[    0.325023] pnp 00:01: [io  0x0cd4-0x0cd7]
[    0.325026] pnp 00:01: [io  0x0f50-0x0f58]
[    0.325028] pnp 00:01: [io  0x00f0]
[    0.325030] pnp 00:01: [io  0x0ca0-0x0ca1]
[    0.325032] pnp 00:01: [io  0x0ca4-0x0ca5]
[    0.325034] pnp 00:01: [mem 0xe0000000-0xefffffff]
[    0.325037] pnp 00:01: [mem 0xfe000000-0xfebfffff]
[    0.325039] pnp 00:01: [io  0x02f8-0x02ff]
[    0.325121] system 00:01: [io  0x0408-0x040f] has been reserved
[    0.326437] system 00:01: [io  0x04d0-0x04d1] has been reserved
[    0.327712] system 00:01: [io  0x0700-0x071f] has been reserved
[    0.328948] system 00:01: [io  0x0800-0x083f] has been reserved
[    0.330168] system 00:01: [io  0x0900-0x097f] has been reserved
[    0.331337] system 00:01: [io  0x0c80-0x0c83] has been reserved
[    0.332606] system 00:01: [io  0x0cd4-0x0cd7] has been reserved
[    0.333847] system 00:01: [io  0x0f50-0x0f58] has been reserved
[    0.335058] system 00:01: [io  0x0ca0-0x0ca1] has been reserved
[    0.336319] system 00:01: [io  0x0ca4-0x0ca5] has been reserved
[    0.337327] system 00:01: [io  0x02f8-0x02ff] has been reserved
[    0.338574] system 00:01: [mem 0xe0000000-0xefffffff] has been reserved
[    0.339943] system 00:01: [mem 0xfe000000-0xfebfffff] has been reserved
[    0.341356] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.341367] pnp 00:02: [io  0x0ca2-0x0ca3]
[    0.341399] pnp 00:02: Plug and Play ACPI device, IDs IPI0001 (active)
[    0.341422] pnp 00:03: [mem 0xfed00000-0xfed003ff]
[    0.341455] pnp 00:03: Plug and Play ACPI device, IDs PNP0103 (active)
[    0.341467] pnp 00:04: [dma 7]
[    0.341469] pnp 00:04: [io  0x0000-0x000f]
[    0.341472] pnp 00:04: [io  0x0080-0x008f]
[    0.341474] pnp 00:04: [io  0x00c0-0x00df]
[    0.341511] pnp 00:04: Plug and Play ACPI device, IDs PNP0200 (active)
[    0.341520] pnp 00:05: [io  0x0061]
[    0.341551] pnp 00:05: Plug and Play ACPI device, IDs PNP0800 (active)
[    0.341561] pnp 00:06: [io  0x0060]
[    0.341563] pnp 00:06: [io  0x0064]
[    0.341572] pnp 00:06: [irq 1]
[    0.341603] pnp 00:06: Plug and Play ACPI device, IDs PNP0303 (active)
[    0.341616] pnp 00:07: [irq 12]
[    0.341650] pnp 00:07: Plug and Play ACPI device, IDs PNP0f13
PNP0f0e (active)
[    0.341660] pnp 00:08: [io  0x002e-0x002f]
[    0.341663] pnp 00:08: [io  0x004e-0x004f]
[    0.341665] pnp 00:08: [io  0x0620-0x065f]
[    0.341667] pnp 00:08: [io  0x0680-0x069f]
[    0.341669] pnp 00:08: [io  0x0600-0x061f]
[    0.341672] pnp 00:08: [io  0x0660-0x067f]
[    0.341674] pnp 00:08: [io  0x0300-0x030f]
[    0.341707] pnp 00:08: Plug and Play ACPI device, IDs PNP0a06 (active)
[    0.341825] pnp 00:09: [irq 4]
[    0.341828] pnp 00:09: [io  0x03f8-0x03ff]
[    0.341940] pnp 00:09: Plug and Play ACPI device, IDs PNP0501
PNP0500 (active)
[    0.342021] pnp 00:0a: Plug and Play ACPI device, IDs PNP0700 (disabled)
[    0.342247] pnp: PnP ACPI: found 11 devices
[    0.343148] ACPI: ACPI bus type pnp unregistered
[    0.343980] PnPBIOS: Disabled by ACPI PNP
[    0.382447] pci 0000:00:02.0: BAR 15: assigned [mem
0x40000000-0x400fffff pref]
[    0.384022] pci 0000:00:05.0: BAR 15: assigned [mem
0x40100000-0x401fffff pref]
[    0.385534] pci 0000:00:1c.0: BAR 15: assigned [mem
0x40200000-0x402fffff pref]
[    0.387034] pci 0000:04:00.0: BAR 15: assigned [mem
0x40000000-0x400fffff pref]
[    0.388404] pci 0000:05:01.0: BAR 15: assigned [mem
0x40000000-0x400fffff pref]
[    0.389848] pci 0000:05:00.0: PCI bridge to [bus 06-08]
[    0.390900] pci 0000:05:00.0:   bridge window [io  disabled]
[    0.392132] pci 0000:05:00.0:   bridge window [mem disabled]
[    0.393335] pci 0000:05:00.0:   bridge window [mem pref disabled]
[    0.394774] pci 0000:09:00.0: BAR 15: assigned [mem
0x40000000-0x400fffff pref]
[    0.396319] pci 0000:0a:00.0: BAR 6: assigned [mem
0x40000000-0x4000ffff pref]
[    0.397763] pci 0000:09:00.0: PCI bridge to [bus 0a-0a]
[    0.398899] pci 0000:09:00.0:   bridge window [io  disabled]
[    0.400253] pci 0000:09:00.0:   bridge window [mem 0xfa000000-0xfbffffff]
[    0.401758] pci 0000:09:00.0:   bridge window [mem
0x40000000-0x400fffff pref]
[    0.403443] pci 0000:05:01.0: PCI bridge to [bus 09-0b]
[    0.404538] pci 0000:05:01.0:   bridge window [io  disabled]
[    0.405670] pci 0000:05:01.0:   bridge window [mem 0xfa000000-0xfbffffff]
[    0.406036] pci 0000:05:01.0:   bridge window [mem
0x40000000-0x400fffff pref]
[    0.407484] pci 0000:04:00.0: PCI bridge to [bus 05-0b]
[    0.408655] pci 0000:04:00.0:   bridge window [io  disabled]
[    0.409965] pci 0000:04:00.0:   bridge window [mem 0xfa000000-0xfbffffff]
[    0.411418] pci 0000:04:00.0:   bridge window [mem
0x40000000-0x400fffff pref]
[    0.413017] pci 0000:04:00.3: PCI bridge to [bus 0c-0e]
[    0.414051] pci 0000:04:00.3:   bridge window [io  disabled]
[    0.415261] pci 0000:04:00.3:   bridge window [mem disabled]
[    0.416551] pci 0000:04:00.3:   bridge window [mem pref disabled]
[    0.417973] pci 0000:00:02.0: PCI bridge to [bus 04-0e]
[    0.419028] pci 0000:00:02.0:   bridge window [io  disabled]
[    0.420206] pci 0000:00:02.0:   bridge window [mem 0xf9f00000-0xfbffffff]
[    0.421574] pci 0000:00:02.0:   bridge window [mem
0x40000000-0x400fffff pref]
[    0.422917] pci 0000:00:03.0: PCI bridge to [bus 17-19]
[    0.423661] pci 0000:00:03.0:   bridge window [io  disabled]
[    0.424603] pci 0000:00:03.0:   bridge window [mem disabled]
[    0.425822] pci 0000:00:03.0:   bridge window [mem pref disabled]
[    0.427044] pci 0000:00:04.0: PCI bridge to [bus 0f-11]
[    0.428208] pci 0000:00:04.0:   bridge window [io  disabled]
[    0.429425] pci 0000:00:04.0:   bridge window [mem disabled]
[    0.430551] pci 0000:00:04.0:   bridge window [mem pref disabled]
[    0.431805] pci 0000:12:00.0: BAR 15: assigned [mem
0x40100000-0x401fffff pref]
[    0.433221] pci 0000:13:08.0: BAR 6: assigned [mem
0x40100000-0x40103fff pref]
[    0.434775] pci 0000:13:04.0: PCI bridge to [bus 14-16]
[    0.435910] pci 0000:13:04.0:   bridge window [io  disabled]
[    0.437059] pci 0000:13:04.0:   bridge window [mem disabled]
[    0.438296] pci 0000:13:04.0:   bridge window [mem pref disabled]
[    0.439533] pci 0000:12:00.0: PCI bridge to [bus 13-16]
[    0.440494] pci 0000:12:00.0:   bridge window [io  0x4000-0x4fff]
[    0.441914] pci 0000:12:00.0:   bridge window [mem 0xfdf00000-0xfdffffff]
[    0.443268] pci 0000:12:00.0:   bridge window [mem
0x40100000-0x401fffff pref]
[    0.444740] pci 0000:00:05.0: PCI bridge to [bus 12-16]
[    0.445961] pci 0000:00:05.0:   bridge window [io  0x4000-0x4fff]
[    0.447164] pci 0000:00:05.0:   bridge window [mem 0xfdf00000-0xfdffffff]
[    0.448728] pci 0000:00:05.0:   bridge window [mem
0x40100000-0x401fffff pref]
[    0.450074] pci 0000:02:00.0: BAR 15: assigned [mem
0x40200000-0x402fffff pref]
[    0.451606] pci 0000:03:00.0: BAR 6: assigned [mem
0x40200000-0x402007ff pref]
[    0.453163] pci 0000:02:00.0: PCI bridge to [bus 03-03]
[    0.454210] pci 0000:02:00.0:   bridge window [io  disabled]
[    0.455358] pci 0000:02:00.0:   bridge window [mem 0xf6000000-0xf7ffffff]
[    0.456758] pci 0000:02:00.0:   bridge window [mem
0x40200000-0x402fffff pref]
[    0.458059] pci 0000:00:1c.0: PCI bridge to [bus 02-03]
[    0.459180] pci 0000:00:1c.0:   bridge window [io  disabled]
[    0.460264] pci 0000:00:1c.0:   bridge window [mem 0xf6000000-0xf7ffffff]
[    0.461706] pci 0000:00:1c.0:   bridge window [mem
0x40200000-0x402fffff pref]
[    0.463358] pci 0000:01:03.0: BAR 6: assigned [mem
0xf5e00000-0xf5e1ffff pref]
[    0.464795] pci 0000:01:04.2: BAR 6: assigned [mem
0xf5e20000-0xf5e2ffff pref]
[    0.466328] pci 0000:00:1e.0: PCI bridge to [bus 01-01]
[    0.467340] pci 0000:00:1e.0:   bridge window [io  0x2000-0x3fff]
[    0.468559] pci 0000:00:1e.0:   bridge window [mem 0xf5e00000-0xf5ffffff]
[    0.469983] pci 0000:00:1e.0:   bridge window [mem
0xd8000000-0xdfffffff 64bit pref]
[    0.471562] pci 0000:00:02.0: setting latency timer to 64
[    0.471704] pci 0000:04:00.0: setting latency timer to 64
[    0.471846] pci 0000:05:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.473308] pci 0000:05:00.0: setting latency timer to 64
[    0.473448] pci 0000:05:01.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[    0.474902] pci 0000:05:01.0: setting latency timer to 64
[    0.475131] pci 0000:09:00.0: setting latency timer to 64
[    0.475360] pci 0000:04:00.3: setting latency timer to 64
[    0.475408] pci 0000:00:03.0: setting latency timer to 64
[    0.475414] pci 0000:00:04.0: setting latency timer to 64
[    0.475420] pci 0000:00:05.0: setting latency timer to 64
[    0.475428] pci 0000:12:00.0: setting latency timer to 64
[    0.475438] pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.476766] pci 0000:00:1c.0: setting latency timer to 64
[    0.476774] pci 0000:02:00.0: setting latency timer to 64
[    0.476781] pci 0000:00:1e.0: setting latency timer to 64
[    0.476785] pci_bus 0000:00: resource 0 [io  0x0000-0xffff]
[    0.476788] pci_bus 0000:00: resource 1 [mem 0x00000000-0xfffffffff]
[    0.476791] pci_bus 0000:04: resource 1 [mem 0xf9f00000-0xfbffffff]
[    0.476794] pci_bus 0000:04: resource 2 [mem 0x40000000-0x400fffff pref]
[    0.476796] pci_bus 0000:05: resource 1 [mem 0xfa000000-0xfbffffff]
[    0.476799] pci_bus 0000:05: resource 2 [mem 0x40000000-0x400fffff pref]
[    0.476802] pci_bus 0000:09: resource 1 [mem 0xfa000000-0xfbffffff]
[    0.476804] pci_bus 0000:09: resource 2 [mem 0x40000000-0x400fffff pref]
[    0.476807] pci_bus 0000:0a: resource 1 [mem 0xfa000000-0xfbffffff]
[    0.476810] pci_bus 0000:0a: resource 2 [mem 0x40000000-0x400fffff pref]
[    0.476812] pci_bus 0000:12: resource 0 [io  0x4000-0x4fff]
[    0.476815] pci_bus 0000:12: resource 1 [mem 0xfdf00000-0xfdffffff]
[    0.476818] pci_bus 0000:12: resource 2 [mem 0x40100000-0x401fffff pref]
[    0.476820] pci_bus 0000:13: resource 0 [io  0x4000-0x4fff]
[    0.476823] pci_bus 0000:13: resource 1 [mem 0xfdf00000-0xfdffffff]
[    0.476825] pci_bus 0000:13: resource 2 [mem 0x40100000-0x401fffff pref]
[    0.476828] pci_bus 0000:02: resource 1 [mem 0xf6000000-0xf7ffffff]
[    0.476831] pci_bus 0000:02: resource 2 [mem 0x40200000-0x402fffff pref]
[    0.476833] pci_bus 0000:03: resource 1 [mem 0xf6000000-0xf7ffffff]
[    0.476836] pci_bus 0000:03: resource 2 [mem 0x40200000-0x402fffff pref]
[    0.476839] pci_bus 0000:01: resource 0 [io  0x2000-0x3fff]
[    0.476841] pci_bus 0000:01: resource 1 [mem 0xf5e00000-0xf5ffffff]
[    0.476844] pci_bus 0000:01: resource 2 [mem 0xd8000000-0xdfffffff
64bit pref]
[    0.476847] pci_bus 0000:01: resource 4 [io  0x0000-0xffff]
[    0.476849] pci_bus 0000:01: resource 5 [mem 0x00000000-0xfffffffff]
[    0.476902] NET: Registered protocol family 2
[    0.478001] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
[    0.479759] TCP established hash table entries: 131072 (order: 8,
1048576 bytes)
[    0.481860] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
[    0.483494] TCP: Hash tables configured (established 131072 bind 65536)
[    0.484841] TCP reno registered
[    0.485557] UDP hash table entries: 512 (order: 2, 16384 bytes)
[    0.486764] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[    0.488392] NET: Registered protocol family 1
[    0.504025] pci 0000:00:1f.0: rerouting interrupts for [8086:2670]
[    0.505521] pci 0000:01:03.0: Boot video device
[    0.506352] PCI: CLS 64 bytes, default 64
[    0.506395] Unpacking initramfs...
[    0.731628] Freeing initrd memory: 7696k freed
[    0.735908] platform rtc_cmos: registered platform RTC device (no
PNP device found)
[    0.742769] audit: initializing netlink socket (disabled)
[    0.743366] type=2000 audit(1317795604.740:1): initialized
[    0.761352] highmem bounce pool size: 64 pages
[    0.761997] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.763809] VFS: Disk quotas dquot_6.5.2
[    0.764288] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    0.765329] msgmni has been set to 1750
[    0.765732] alg: No test for stdrng (krng)
[    0.766046] Block layer SCSI generic (bsg) driver version 0.4
loaded (major 253)
[    0.767475] io scheduler noop registered
[    0.767650] io scheduler deadline registered
[    0.768544] io scheduler cfq registered (default)
[    0.769117] pcieport 0000:00:1c.0: setting latency timer to 64
[    0.769158] pcieport 0000:00:1c.0: irq 64 for MSI/MSI-X
[    0.773389] ERST: Table is not found!
[    0.773885] isapnp: Scanning for PnP cards...
[    1.128317] isapnp: No Plug & Play device found
[    1.128824] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    1.149815] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[    1.170930] serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
[    1.192654] 00:09: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[    1.193265] Linux agpgart interface v0.103
[    1.194058] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f0e:PS2M]
at 0x60,0x64 irq 1,12
[    1.196218] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.196512] serio: i8042 AUX port at 0x60,0x64 irq 12
[    1.197168] mousedev: PS/2 mouse device common for all mice
[    1.197890] rtc_cmos rtc_cmos: RTC can wake from S4
[    1.198384] rtc_cmos rtc_cmos: rtc core: registered rtc_cmos as rtc0
[    1.198791] rtc0: alarms up to one year, y3k, 114 bytes nvram, hpet irqs
[    1.199561] cpuidle: using governor ladder
[    1.200052] cpuidle: using governor menu
[    1.200456] TCP cubic registered
[    1.200800] NET: Registered protocol family 10
[    1.201886] Mobile IPv6
[    1.202153] NET: Registered protocol family 17
[    1.202760] Registering the dns_resolver key type
[    1.203198] Using IPI No-Shortcut mode
[    1.203498] PM: Hibernation image not present or could not be loaded.
[    1.203507] registered taskstats version 1
[    1.207545] rtc_cmos rtc_cmos: setting system clock to 2011-10-05
06:20:06 UTC (1317795606)
[    1.208453] Initializing network drop monitor service
[    1.209369] Freeing unused kernel memory: 440k freed
[    1.210554] Write protecting the kernel text: 2788k
[    1.211179] Write protecting the kernel read-only data: 1036k
[    1.211671] NX-protecting the kernel data: 3356k
[    1.239298] Uniform Multi-Platform E-IDE driver
[    1.242771] ide-gd driver 1.18
[    1.276035] SCSI subsystem initialized
[    1.296595] Fusion MPT base driver 3.04.18
[    1.296881] Copyright (c) 1999-2008 LSI Corporation
[    1.321002] udevd (74): /proc/74/oom_adj is deprecated, please use
/proc/74/oom_score_adj instead.
[    1.322532] udevd version 125 started
[    1.419002] thermal LNXTHERM:00: registered as thermal_zone0
[    1.419645] ACPI: Thermal Zone [THM0] (8 C)
[    1.504820] bnx2: Broadcom NetXtreme II Gigabit Ethernet Driver
bnx2 v2.1.6 (Mar 7, 2011)
[    1.505532] bnx2 0000:0a:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[    1.549828] usbcore: registered new interface driver usbfs
[    1.550162] usbcore: registered new interface driver hub
[    1.551644] usbcore: registered new device driver usb
[    1.555065] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.555918] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    1.556928] ehci_hcd 0000:00:1d.7: setting latency timer to 64
[    1.556933] ehci_hcd 0000:00:1d.7: EHCI Host Controller
[    1.557677] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned
bus number 1
[    1.560226] uhci_hcd: USB Universal Host Controller Interface driver
[    1.568112] ehci_hcd 0000:00:1d.7: debug port 1
[    1.572537] ehci_hcd 0000:00:1d.7: cache line size of 64 is not supported
[    1.572558] ehci_hcd 0000:00:1d.7: irq 16, io mem 0xf5df0000
[    1.588027] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[    1.588846] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    1.589656] usb usb1: New USB device strings: Mfr=3, Product=2,
SerialNumber=1
[    1.590338] usb usb1: Product: EHCI Host Controller
[    1.590889] usb usb1: Manufacturer: Linux 2.6.39-bpo.2-686-pae ehci_hcd
[    1.591575] usb usb1: SerialNumber: 0000:00:1d.7
[    1.592024] hub 1-0:1.0: USB hub found
[    1.592771] hub 1-0:1.0: 8 ports detected
[    1.593171] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    1.593460] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[    1.593463] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[    1.594034] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned
bus number 2
[    1.603540] bnx2 0000:0a:00.0: eth0: Broadcom NetXtreme II BCM5708
1000Base-T (B2) PCI-X 64-bit 133MHz found at mem fa000000, IRQ 17,
node addr 00:1b:78:95:0c:76
[    1.605598] bnx2 0000:03:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    1.612049] uhci_hcd 0000:00:1d.0: irq 16, io base 0x00001000
[    1.612357] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[    1.612803] usb usb2: New USB device strings: Mfr=3, Product=2,
SerialNumber=1
[    1.613541] usb usb2: Product: UHCI Host Controller
[    1.614614] usb usb2: Manufacturer: Linux 2.6.39-bpo.2-686-pae uhci_hcd
[    1.615816] usb usb2: SerialNumber: 0000:00:1d.0
[    1.616768] hub 2-0:1.0: USB hub found
[    1.617113] hub 2-0:1.0: 2 ports detected
[    1.617520] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[    1.617762] uhci_hcd 0000:00:1d.1: setting latency timer to 64
[    1.617765] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[    1.618523] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned
bus number 3
[    1.640050] uhci_hcd 0000:00:1d.1: irq 17, io base 0x00001020
[    1.640422] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[    1.641653] usb usb3: New USB device strings: Mfr=3, Product=2,
SerialNumber=1
[    1.642644] usb usb3: Product: UHCI Host Controller
[    1.643595] usb usb3: Manufacturer: Linux 2.6.39-bpo.2-686-pae uhci_hcd
[    1.644677] usb usb3: SerialNumber: 0000:00:1d.1
[    1.645416] hub 3-0:1.0: USB hub found
[    1.645742] hub 3-0:1.0: 2 ports detected
[    1.646449] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[    1.647163] uhci_hcd 0000:00:1d.2: setting latency timer to 64
[    1.647166] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[    1.648098] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned
bus number 4
[    1.664037] uhci_hcd 0000:00:1d.2: irq 18, io base 0x00001040
[    1.664667] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[    1.665213] usb usb4: New USB device strings: Mfr=3, Product=2,
SerialNumber=1
[    1.666030] usb usb4: Product: UHCI Host Controller
[    1.666916] usb usb4: Manufacturer: Linux 2.6.39-bpo.2-686-pae uhci_hcd
[    1.667970] usb usb4: SerialNumber: 0000:00:1d.2
[    1.668773] hub 4-0:1.0: USB hub found
[    1.669594] hub 4-0:1.0: 2 ports detected
[    1.670205] uhci_hcd 0000:00:1d.3: PCI INT D -> GSI 19 (level, low) -> IRQ 19
[    1.670486] uhci_hcd 0000:00:1d.3: setting latency timer to 64
[    1.670489] uhci_hcd 0000:00:1d.3: UHCI Host Controller
[    1.670932] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned
bus number 5
[    1.692061] uhci_hcd 0000:00:1d.3: irq 19, io base 0x00001060
[    1.693107] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
[    1.693625] usb usb5: New USB device strings: Mfr=3, Product=2,
SerialNumber=1
[    1.694533] usb usb5: Product: UHCI Host Controller
[    1.694750] usb usb5: Manufacturer: Linux 2.6.39-bpo.2-686-pae uhci_hcd
[    1.695434] usb usb5: SerialNumber: 0000:00:1d.3
[    1.695929] hub 5-0:1.0: USB hub found
[    1.696548] hub 5-0:1.0: 2 ports detected
[    1.696934] uhci_hcd 0000:01:04.4: PCI INT B -> GSI 22 (level, low) -> IRQ 22
[    1.697761] uhci_hcd 0000:01:04.4: UHCI Host Controller
[    1.698336] uhci_hcd 0000:01:04.4: new USB bus registered, assigned
bus number 6
[    1.708018] uhci_hcd 0000:01:04.4: port count misdetected? forcing to 2 ports
[    1.710080] uhci_hcd 0000:01:04.4: irq 22, io base 0x00003800
[    1.711305] usb usb6: New USB device found, idVendor=1d6b, idProduct=0001
[    1.711657] usb usb6: New USB device strings: Mfr=3, Product=2,
SerialNumber=1
[    1.712206] usb usb6: Product: UHCI Host Controller
[    1.712421] usb usb6: Manufacturer: Linux 2.6.39-bpo.2-686-pae uhci_hcd
[    1.712888] usb usb6: SerialNumber: 0000:01:04.4
[    1.713265] hub 6-0:1.0: USB hub found
[    1.713600] hub 6-0:1.0: 2 ports detected
[    1.732027] Refined TSC clocksource calibration: 2000.070 MHz.
[    1.732674] Switching to clocksource tsc
[    2.094908] bnx2 0000:03:00.0: eth1: Broadcom NetXtreme II BCM5708
1000Base-T (B2) PCI-X 64-bit 133MHz found at mem f6000000, IRQ 16,
node addr 00:1b:78:02:7e:d8
[    2.112035] usb 4-1: new low speed USB device number 2 using uhci_hcd
[    2.169522] bnx2 0000:0a:00.0: irq 65 for MSI/MSI-X
[    2.268008] bnx2 0000:0a:00.0: eth0: using MSI
[    2.269054] ADDRCONF(NETDEV_UP): eth0: link is not ready
[    2.280204] bnx2 0000:03:00.0: irq 66 for MSI/MSI-X
[    2.284669] usb 4-1: New USB device found, idVendor=0488, idProduct=00df
[    2.285952] usb 4-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.286605] usb 4-1: Product: GlidePoint
[    2.287054] usb 4-1: Manufacturer: Cirque
[    2.345184] input: Cirque GlidePoint as
/devices/pci0000:00/0000:00:1d.2/usb4/4-1/4-1:1.0/input/input0
[    2.346358] generic-usb 0003:0488:00DF.0001: input,hidraw0: USB HID
v1.10 Keyboard [Cirque GlidePoint] on usb-0000:00:1d.2-1/input0
[    2.347484] usbcore: registered new interface driver usbhid
[    2.348207] usbhid: USB HID core driver
[    2.400009] bnx2 0000:03:00.0: eth1: using MSI
[    2.400512] ADDRCONF(NETDEV_UP): eth1: link is not ready
[    2.416028] usb 6-1: new full speed USB device number 2 using uhci_hcd
[    2.562997] usb 6-1: New USB device found, idVendor=03f0, idProduct=1027
[    2.563259] usb 6-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.564230] usb 6-1: Product: Virtual Keyboard
[    2.564500] usb 6-1: Manufacturer: HP
[    2.596120] input: HP Virtual Keyboard as
/devices/pci0000:00/0000:00:1e.0/0000:01:04.4/usb6/6-1/6-1:1.0/input/input1
[    2.597816] generic-usb 0003:03F0:1027.0002: input,hidraw1: USB HID
v1.01 Keyboard [HP Virtual Keyboard] on usb-0000:01:04.4-1/input0
[    2.608461] input: HP Virtual Keyboard as
/devices/pci0000:00/0000:00:1e.0/0000:01:04.4/usb6/6-1/6-1:1.1/input/input2
[    2.609794] generic-usb 0003:03F0:1027.0003: input,hidraw2: USB HID
v1.01 Mouse [HP Virtual Keyboard] on usb-0000:01:04.4-1/input1
[    2.720020] usb 6-2: new full speed USB device number 3 using uhci_hcd
[    2.866928] usb 6-2: New USB device found, idVendor=03f0, idProduct=1327
[    2.867431] usb 6-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.867661] usb 6-2: Product: Virtual Hub
[    2.868071] usb 6-2: Manufacturer: HP
[    2.873494] hub 6-2:1.0: USB hub found
[    2.876786] hub 6-2:1.0: 7 ports detected
[   25.748068] bnx2 0000:03:00.0: irq 65 for MSI/MSI-X
[   25.948008] bnx2 0000:03:00.0: eth0: using MSI
[   25.948529] ADDRCONF(NETDEV_UP): eth0: link is not ready
[   27.548915] bnx2 0000:03:00.0: eth0: NIC Copper Link is Up, 100
Mbps full duplex
[   27.549728] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[   35.613746] RPC: Registered udp transport module.
[   35.614550] RPC: Registered tcp transport module.
[   35.615481] RPC: Registered tcp NFSv4.1 backchannel transport module.
[   35.625837] FS-Cache: Loaded
[   35.645909] FS-Cache: Netfs 'nfs' registered for caching
[   37.773622] bnx2 0000:0a:00.0: irq 66 for MSI/MSI-X
[   37.889164] bnx2 0000:0a:00.0: eth1: using MSI
[   37.889654] ADDRCONF(NETDEV_UP): eth1: link is not ready
[   38.448006] eth0: no IPv6 routers present
[   48.888268] md: raid1 personality registered for level 1
[   48.908494] device-mapper: uevent: version 1.0.3
[   48.908581] device-mapper: ioctl: 4.20.0-ioctl (2011-02-02)
initialised: dm-devel@redhat.com
[   57.558487] udevd version 125 started
[   57.694244] input: Power Button as
/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[   57.694251] ACPI: Power Button [PWRF]
[   57.697922] ACPI: acpi_idle registered with cpuidle
[   57.742141] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[   57.752284] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[   57.755980] Floppy drive(s): fd0 is 1.44M
[   57.775452] EDAC MC: Ver: 2.1.0 Aug  4 2011
[   57.818788] Disabling lock debugging due to kernel taint
[   57.823058] HP CISS Driver (v 4.6.28-14 )
[   57.823122] cciss 0000:13:08.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
[   57.823177] cciss 0000:13:08.0: irq 67 for MSI/MSI-X
[   57.825707] EDAC MC0: Giving out device to 'i5000_edac.c' 'I5000':
DEV 0000:00:10.0
[   57.825731] EDAC PCI0: Giving out device to module 'i5000_edac'
controller 'EDAC PCI controller': DEV '0000:00:10.0' (POLLED)
[   57.854693] hpilo 0000:01:04.2: PCI INT B -> GSI 22 (level, low) -> IRQ 22
[   57.860205] cciss 0000:13:08.0: cciss0: <0x3238> at PCI
0000:13:08.0 IRQ 67 using DAC
[   57.861875]  cciss/c0d0: p1 p2 p3
[   57.863245]  cciss/c0d1: p1 p2 p3
[   57.882305] input: PC Speaker as /devices/platform/pcspkr/input/input4
[   57.890805] ipmi message handler version 39.2
[   57.916735] intel_rng: FWH not detected
[   57.921976] IPMI System Interface driver.
[   57.922004] ipmi_si 0000:01:04.6: probing via PCI
[   57.922025] ipmi_si 0000:01:04.6: PCI INT A -> GSI 21 (level, low) -> IRQ 21
[   57.922031] ipmi_si 0000:01:04.6: [mem 0xf5ef0000-0xf5ef00ff]
regsize 1 spacing 1 irq 21
[   57.922033] ipmi_si: Adding PCI-specified kcs state machine
[   57.922057] ipmi_si: probing via ACPI
[   57.922096] ipmi_si 00:02: [io  0x0ca2-0x0ca3] regsize 1 spacing 1 irq 0
[   57.922098] ipmi_si: Adding ACPI-specified kcs state machine
[   57.922115] ipmi_si: probing via SMBIOS
[   57.922118] ipmi_si: SMBIOS: io 0xca2 regsize 1 spacing 1 irq 0
[   57.922120] ipmi_si: Adding SMBIOS-specified kcs state machine
duplicate interface
[   57.922124] ipmi_si: probing via SPMI
[   57.922127] ipmi_si: SPMI: io 0xca2 regsize 2 spacing 2 irq 0
[   57.922129] ipmi_si: Adding SPMI-specified kcs state machine
duplicate interface
[   57.922133] ipmi_si: Trying PCI-specified kcs state machine at mem
address 0xf5ef0000, slave address 0x0, irq 21
[   57.924545] libata version 3.00 loaded.
[   57.961516] ata_piix 0000:00:1f.1: version 2.13
[   57.961529] ata_piix 0000:00:1f.1: can't derive routing for PCI INT A
[   57.967772] ata_piix 0000:00:1f.1: setting latency timer to 64
[   57.970425] scsi0 : ata_piix
[   57.989581] scsi1 : ata_piix
[   57.989649] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0x500 irq 14
[   57.989653] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x508 irq 15
[   58.076039] ipmi_si 0000:01:04.6: Using irq 21
[   58.163103] ata1.00: ATAPI: HL-DT-ST RW/DVD GCC-4482B, 2.01, max UDMA/33
[   58.190500] ipmi_si 0000:01:04.6: Found new BMC (man_id: 0x00000b,
prod_id: 0x0000, dev_id: 0x11)
[   58.190512] ipmi_si 0000:01:04.6: IPMI kcs interface initialized
[   58.192188] ata1.00: configured for UDMA/33
[   58.192996] scsi 0:0:0:0: CD-ROM            HL-DT-ST RW/DVD
GCC-4482B 2.01 PQ: 0 ANSI: 5
[   58.195022] sr0: scsi3-mmc drive: 48x/48x writer cd/rw xa/form2 cdda tray
[   58.195666] cdrom: Uniform CD-ROM driver Revision: 3.20
[   58.195771] sr 0:0:0:0: Attached scsi CD-ROM sr0
[   58.221546] Error: Driver 'pcspkr' is already registered, aborting...
[   58.249142] sr 0:0:0:0: Attached scsi generic sg0 type 5
[   58.356098] input: PS/2 Logitech Mouse as
/devices/platform/i8042/serio1/input/input5
[   60.776019] floppy0: no floppy controllers found
[   60.820258] Floppy drive(s): fd0 is 1.44M
[   63.840013] floppy0: no floppy controllers found
[  240.760011] INFO: task .hpacucli:2049 blocked for more than 120 seconds.
[  240.760873] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs"
disables this message.
[  240.761489] .hpacucli       D 00000015     0  2049   2035 0x00000000
[  240.761494]  f595b240 00003082 b54c80e5 00000015 f6803ec0 f59b7040
00000015 c148d1c0
[  240.763070]  00408d37 00000000 c148d1c0 f595b240 c148d1c0 c148d1c0
c103bb9e c101bc43
[  240.764112]  00000000 f5a62008 c12b2b89 00000000 f68071c0 f5a62000
f5a62008 f5a62000
[  240.764117] Call Trace:
[  240.764126]  [<c103bb9e>] ? irq_exit+0x56/0x79
[  240.764131]  [<c101bc43>] ? smp_apic_timer_interrupt+0x6b/0x75
[  240.764135]  [<c12b2b89>] ? apic_timer_interrupt+0x31/0x38
[  240.764143]  [<c1028b55>] ? mutex_spin_on_owner+0x5d/0x64
[  240.764148]  [<c12b1675>] ? __mutex_lock_common+0xe9/0x13a
[  240.764152]  [<c12b16d5>] ? __mutex_lock_slowpath+0xf/0x11
[  240.764155]  [<c12b1766>] ? mutex_lock+0x17/0x24
[  240.764157]  [<c12b1766>] ? mutex_lock+0x17/0x24
[  240.764164]  [<f84c14b7>] ? cciss_unlocked_open+0x15/0x8a [cciss]
[  240.764168]  [<c10ed886>] ? __blkdev_get+0xb5/0x2f3
[  240.764171]  [<c10edc50>] ? blkdev_get+0x18c/0x270
[  240.764175]  [<c10dd034>] ? iget5_locked+0xbf/0xf7
[  240.764178]  [<c10ec7d0>] ? I_BDEV+0x4/0x4
[  240.764180]  [<c10dbe6b>] ? unlock_new_inode+0x31/0x36
[  240.764183]  [<c10ed1fa>] ? bdget+0xd9/0xdf
[  240.764188]  [<c114bcaf>] ? register_disk+0xb5/0x118
[  240.764191]  [<c114b2c1>] ? blk_register_region+0x1b/0x1f
[  240.764194]  [<c114bdd1>] ? add_disk+0xbf/0x1d6
[  240.764197]  [<c114a9b1>] ? disk_map_sector_rcu+0x95/0x95
[  240.764200]  [<c114b107>] ? get_disk+0x6a/0x6a
[  240.764204]  [<f84c1455>] ? cciss_add_disk+0xf7/0x111 [cciss]
[  240.764209]  [<f84c414b>] ? rebuild_lun_table+0x717/0x862 [cciss]
[  240.764213]  [<f84c4635>] ? do_ioctl+0x39f/0x7d6 [cciss]
[  240.764217]  [<c1025950>] ? ptep_set_access_flags+0x44/0x4b
[  240.764221]  [<c10273c3>] ? __kunmap_atomic+0x57/0x6c
[  240.764225]  [<c10adc89>] ? do_wp_page+0x33e/0x6f0
[  240.764230]  [<f84c4296>] ? rebuild_lun_table+0x862/0x862 [cciss]
[  240.764234]  [<c114a011>] ? __blkdev_driver_ioctl+0x1d/0x25
[  240.764237]  [<c114a8bd>] ? blkdev_ioctl+0x64d/0x684
[  240.764240]  [<c10ec939>] ? block_ioctl+0x2a/0x2f
[  240.764242]  [<c10ec939>] ? block_ioctl+0x2a/0x2f
[  240.764245]  [<c10ec90f>] ? nr_blockdev_pages+0x3c/0x3c
[  240.764249]  [<c10d779b>] ? do_vfs_ioctl+0x473/0x4be
[  240.764252]  [<c12b5013>] ? do_page_fault+0x345/0x361
[  240.764255]  [<c12b5000>] ? do_page_fault+0x332/0x361
[  240.764258]  [<c10b0cb0>] ? remove_vma+0x43/0x48
[  240.764260]  [<c10b19cf>] ? do_munmap+0x20c/0x226
[  240.764263]  [<c10d782a>] ? sys_ioctl+0x44/0x64
[  240.764267]  [<c12b769f>] ? sysenter_do_call+0x12/0x28
[  360.764009] INFO: task .hpacucli:2049 blocked for more than 120 seconds.
[  360.764935] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs"
disables this message.
[  360.765510] .hpacucli       D 00000015     0  2049   2035 0x00000000
[  360.765514]  f595b240 00003082 b54c80e5 00000015 f6803ec0 f59b7040
00000015 c148d1c0
[  360.767026]  00408d37 00000000 c148d1c0 f595b240 c148d1c0 c148d1c0
c103bb9e c101bc43
[  360.768263]  00000000 f5a62008 c12b2b89 00000000 f68071c0 f5a62000
f5a62008 f5a62000
[  360.768268] Call Trace:
[  360.768273]  [<c103bb9e>] ? irq_exit+0x56/0x79
[  360.768277]  [<c101bc43>] ? smp_apic_timer_interrupt+0x6b/0x75
[  360.768280]  [<c12b2b89>] ? apic_timer_interrupt+0x31/0x38
[  360.768285]  [<c1028b55>] ? mutex_spin_on_owner+0x5d/0x64
[  360.768289]  [<c12b1675>] ? __mutex_lock_common+0xe9/0x13a
[  360.768294]  [<c12b16d5>] ? __mutex_lock_slowpath+0xf/0x11
[  360.768297]  [<c12b1766>] ? mutex_lock+0x17/0x24
[  360.768299]  [<c12b1766>] ? mutex_lock+0x17/0x24
[  360.768304]  [<f84c14b7>] ? cciss_unlocked_open+0x15/0x8a [cciss]
[  360.768307]  [<c10ed886>] ? __blkdev_get+0xb5/0x2f3
[  360.768310]  [<c10edc50>] ? blkdev_get+0x18c/0x270
[  360.768313]  [<c10dd034>] ? iget5_locked+0xbf/0xf7
[  360.768316]  [<c10ec7d0>] ? I_BDEV+0x4/0x4
[  360.768318]  [<c10dbe6b>] ? unlock_new_inode+0x31/0x36
[  360.768321]  [<c10ed1fa>] ? bdget+0xd9/0xdf
[  360.768324]  [<c114bcaf>] ? register_disk+0xb5/0x118
[  360.768328]  [<c114b2c1>] ? blk_register_region+0x1b/0x1f
[  360.768331]  [<c114bdd1>] ? add_disk+0xbf/0x1d6
[  360.768334]  [<c114a9b1>] ? disk_map_sector_rcu+0x95/0x95
[  360.768337]  [<c114b107>] ? get_disk+0x6a/0x6a
[  360.768341]  [<f84c1455>] ? cciss_add_disk+0xf7/0x111 [cciss]
[  360.768345]  [<f84c414b>] ? rebuild_lun_table+0x717/0x862 [cciss]
[  360.768350]  [<f84c4635>] ? do_ioctl+0x39f/0x7d6 [cciss]
[  360.768353]  [<c1025950>] ? ptep_set_access_flags+0x44/0x4b
[  360.768356]  [<c10273c3>] ? __kunmap_atomic+0x57/0x6c
[  360.768359]  [<c10adc89>] ? do_wp_page+0x33e/0x6f0
[  360.768364]  [<f84c4296>] ? rebuild_lun_table+0x862/0x862 [cciss]
[  360.768368]  [<c114a011>] ? __blkdev_driver_ioctl+0x1d/0x25
[  360.768371]  [<c114a8bd>] ? blkdev_ioctl+0x64d/0x684
[  360.768374]  [<c10ec939>] ? block_ioctl+0x2a/0x2f
[  360.768377]  [<c10ec939>] ? block_ioctl+0x2a/0x2f
[  360.768379]  [<c10ec90f>] ? nr_blockdev_pages+0x3c/0x3c
[  360.768382]  [<c10d779b>] ? do_vfs_ioctl+0x473/0x4be
[  360.768385]  [<c12b5013>] ? do_page_fault+0x345/0x361
[  360.768388]  [<c12b5000>] ? do_page_fault+0x332/0x361
[  360.768391]  [<c10b0cb0>] ? remove_vma+0x43/0x48
[  360.768393]  [<c10b19cf>] ? do_munmap+0x20c/0x226
[  360.768396]  [<c10d782a>] ? sys_ioctl+0x44/0x64
[  360.768399]  [<c12b769f>] ? sysenter_do_call+0x12/0x28

** Model information
not available

** Loaded modules:
Module                  Size  Used by
sg                     21385  0
ata_generic            12439  0
snd_pcm                52731  0
snd_timer              22171  1 snd_pcm
tpm_tis                12949  0
snd                    38189  2 snd_pcm,snd_timer
tpm                    17476  1 tpm_tis
soundcore              12878  1 snd
ata_piix               21079  0
tpm_bios               12799  1 tpm
snd_page_alloc         12841  1 snd_pcm
ipmi_si                35664  0
psmouse                45863  0
libata                132100  2 ata_generic,ata_piix
hpsa                   35039  0
rng_core               12550  0
ipmi_msghandler        31057  1 ipmi_si
pcspkr                 12515  0
evdev                  17180  0
hpilo                  12753  0
joydev                 16906  0
serio_raw              12758  0
i5000_edac             12629  0
cciss                  85450  2
edac_core              30120  3 i5000_edac
i5k_amb                12773  0
shpchp                 26653  0
pci_hotplug            26303  1 shpchp
container              12525  0
processor              26983  0
button                 12783  0
dm_mod                 56401  0
raid1                  25752  0
md_mod                 80556  1 raid1
nfs                   219235  2
lockd                  60891  1 nfs
fscache                31438  1 nfs
auth_rpcgss            31819  1 nfs
nfs_acl                12463  1 nfs
sunrpc                137017  11 nfs,lockd,auth_rpcgss,nfs_acl
usbhid                 35206  0
hid                    59841  1 usbhid
uhci_hcd               21850  0
ehci_hcd               34885  0
usbcore                99225  4 usbhid,uhci_hcd,ehci_hcd
bnx2                   57443  0
thermal                13058  0
thermal_sys            17667  2 processor,thermal
sr_mod                 17418  0
cdrom                  34631  1 sr_mod
mptscsih               22263  0
mptbase                51867  1 mptscsih
aic7xxx                97720  0
sym53c8xx              60862  0
scsi_transport_spi     19032  2 aic7xxx,sym53c8xx
BusLogic               21443  0
scsi_mod              134453  10
sg,hpsa,libata,cciss,sr_mod,mptscsih,aic7xxx,sym53c8xx,scsi_transport_spi,BusLogic
nls_iso8859_1          12421  0
nls_cp437              12417  0
vfat                   16989  0
fat                    44149  1 vfat
ide_gd_mod             27391  0
ide_core               65519  1 ide_gd_mod

** PCI devices:
00:00.0 Host bridge [0600]: Intel Corporation 5000Z Chipset Memory
Controller Hub [8086:25d0] (rev b1)
   Subsystem: Hewlett-Packard Company Device [103c:31fd]
   Flags: bus master, fast devsel, latency 0
   Capabilities: [50] Power Management version 2
   Capabilities: [58] MSI: Enable- Count=1/2 Maskable- 64bit-
   Capabilities: [6c] Express Root Port (Slot-), MSI 00
   Capabilities: [100] Advanced Error Reporting

00:02.0 PCI bridge [0604]: Intel Corporation 5000 Series Chipset PCI
Express x8 Port 2-3 [8086:25f7] (rev b1) (prog-if 00 [Normal decode])
   Flags: bus master, fast devsel, latency 0
   Bus: primary=00, secondary=04, subordinate=0e, sec-latency=0
   Memory behind bridge: f9f00000-fbffffff
   Prefetchable memory behind bridge: 0000000040000000-00000000400fffff
   Capabilities: [50] Power Management version 2
   Capabilities: [58] MSI: Enable- Count=1/2 Maskable- 64bit-
   Capabilities: [6c] Express Root Port (Slot-), MSI 00
   Capabilities: [100] Advanced Error Reporting
   Kernel driver in use: pcieport
   Kernel modules: shpchp

00:03.0 PCI bridge [0604]: Intel Corporation 5000 Series Chipset PCI
Express x4 Port 3 [8086:25e3] (rev b1) (prog-if 00 [Normal decode])
   Flags: bus master, fast devsel, latency 0
   Bus: primary=00, secondary=17, subordinate=19, sec-latency=0
   Capabilities: [50] Power Management version 2
   Capabilities: [58] MSI: Enable- Count=1/2 Maskable- 64bit-
   Capabilities: [6c] Express Root Port (Slot-), MSI 00
   Capabilities: [100] Advanced Error Reporting
   Kernel driver in use: pcieport
   Kernel modules: shpchp

00:04.0 PCI bridge [0604]: Intel Corporation 5000 Series Chipset PCI
Express x4 Port 4 [8086:25e4] (rev b1) (prog-if 00 [Normal decode])
   Flags: bus master, fast devsel, latency 0
   Bus: primary=00, secondary=0f, subordinate=11, sec-latency=0
   Capabilities: [50] Power Management version 2
   Capabilities: [58] MSI: Enable- Count=1/2 Maskable- 64bit-
   Capabilities: [6c] Express Root Port (Slot-), MSI 00
   Capabilities: [100] Advanced Error Reporting
   Kernel driver in use: pcieport
   Kernel modules: shpchp

00:05.0 PCI bridge [0604]: Intel Corporation 5000 Series Chipset PCI
Express x4 Port 5 [8086:25e5] (rev b1) (prog-if 00 [Normal decode])
   Flags: bus master, fast devsel, latency 0
   Bus: primary=00, secondary=12, subordinate=16, sec-latency=0
   I/O behind bridge: 00004000-00004fff
   Memory behind bridge: fdf00000-fdffffff
   Prefetchable memory behind bridge: 0000000040100000-00000000401fffff
   Capabilities: [50] Power Management version 2
   Capabilities: [58] MSI: Enable- Count=1/2 Maskable- 64bit-
   Capabilities: [6c] Express Root Port (Slot-), MSI 00
   Capabilities: [100] Advanced Error Reporting
   Kernel driver in use: pcieport
   Kernel modules: shpchp

00:10.0 Host bridge [0600]: Intel Corporation 5000 Series Chipset FSB
Registers [8086:25f0] (rev b1)
   Subsystem: Hewlett-Packard Company Device [103c:31fd]   Subsystem:
Hewlett-Packard Company Device [103c:31fd]
   Flags: fast devsel
   Kernel driver in use: i5000_edac
   Kernel modules: i5000_edac, i5k_amb

00:10.1 Host bridge [0600]: Intel Corporation 5000 Series Chipset FSB
Registers [8086:25f0] (rev b1)
   Subsystem: Hewlett-Packard Company Device [103c:31fd]
   Flags: fast devsel
   Kernel modules: i5000_edac, i5k_amb

00:10.2 Host bridge [0600]: Intel Corporation 5000 Series Chipset FSB
Registers [8086:25f0] (rev b1)
   Subsystem: Hewlett-Packard Company Device [103c:31fd]
   Flags: fast devsel
   Kernel modules: i5000_edac, i5k_amb

00:11.0 Host bridge [0600]: Intel Corporation 5000 Series Chipset
Reserved Registers [8086:25f1] (rev b1)
   Subsystem: Hewlett-Packard Company Device [103c:31fd]
   Flags: fast devsel

00:13.0 Host bridge [0600]: Intel Corporation 5000 Series Chipset
Reserved Registers [8086:25f3] (rev b1)
   Subsystem: Hewlett-Packard Company Device [103c:31fd]
   Flags: fast devsel

00:15.0 Host bridge [0600]: Intel Corporation 5000 Series Chipset FBD
Registers [8086:25f5] (rev b1)
   Subsystem: Hewlett-Packard Company Device [103c:31fd]
   Flags: fast devsel

00:16.0 Host bridge [0600]: Intel Corporation 5000 Series Chipset FBD
Registers [8086:25f6] (rev b1)
   Subsystem: Hewlett-Packard Company Device [103c:31fd]
   Flags: fast devsel

00:1c.0 PCI bridge [0604]: Intel Corporation 631xESB/632xESB/3100
Chipset PCI Express Root Port 1 [8086:2690] (rev 09) (prog-if 00
[Normal decode])
   Flags: bus master, fast devsel, latency 0
   Bus: primary=00, secondary=02, subordinate=03, sec-latency=0
   Memory behind bridge: f6000000-f7ffffff
   Prefetchable memory behind bridge: 0000000040200000-00000000402fffff
   Capabilities: [40] Express Root Port (Slot-), MSI 00
   Capabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit-
   Capabilities: [90] Subsystem: Gammagraphx, Inc. (or missing ID)
Device [0000:0000]
   Capabilities: [a0] Power Management version 2
   Capabilities: [100] Virtual Channel
   Capabilities: [180] Root Complex Link
   Kernel driver in use: pcieport
   Kernel modules: shpchp

00:1d.0 USB Controller [0c03]: Intel Corporation 631xESB/632xESB/3100
Chipset UHCI USB Controller #1 [8086:2688] (rev 09) (prog-if 00
[UHCI])
   Subsystem: Hewlett-Packard Company Device [103c:31fe]
   Flags: bus master, medium devsel, latency 0, IRQ 16
   I/O ports at 1000 [size=32]
   Kernel driver in use: uhci_hcd
   Kernel modules: uhci-hcd

00:1d.1 USB Controller [0c03]: Intel Corporation 631xESB/632xESB/3100
Chipset UHCI USB Controller #2 [8086:2689] (rev 09) (prog-if 00
[UHCI])
   Subsystem: Hewlett-Packard Company Device [103c:31fe]
   Flags: bus master, medium devsel, latency 0, IRQ 17
   I/O ports at 1020 [size=32]
   Kernel driver in use: uhci_hcd
   Kernel modules: uhci-hcd

00:1d.2 USB Controller [0c03]: Intel Corporation 631xESB/632xESB/3100
Chipset UHCI USB Controller #3 [8086:268a] (rev 09) (prog-if 00
[UHCI])
   Subsystem: Hewlett-Packard Company Device [103c:31fe]
   Flags: bus master, medium devsel, latency 0, IRQ 18
   I/O ports at 1040 [size=32]
   Kernel driver in use: uhci_hcd
   Kernel modules: uhci-hcd

00:1d.3 USB Controller [0c03]: Intel Corporation 631xESB/632xESB/3100
Chipset UHCI USB Controller #4 [8086:268b] (rev 09) (prog-if 00
[UHCI])
   Subsystem: Hewlett-Packard Company Device [103c:31fe]
   Flags: bus master, medium devsel, latency 0, IRQ 19
   I/O ports at 1060 [size=32]
   Kernel driver in use: uhci_hcd
   Kernel modules: uhci-hcd

00:1d.7 USB Controller [0c03]: Intel Corporation 631xESB/632xESB/3100
Chipset EHCI USB2 Controller [8086:268c] (rev 09) (prog-if 20 [EHCI])
   Subsystem: Hewlett-Packard Company Device [103c:31fe]
   Flags: bus master, medium devsel, latency 0, IRQ 16
   Memory at f5df0000 (32-bit, non-prefetchable) [size=1K]
   Capabilities: [50] Power Management version 2
   Capabilities: [58] Debug port: BAR=1 offset=00a0
   Kernel driver in use: ehci_hcd
   Kernel modules: ehci-hcd

00:1e.0 PCI bridge [0604]: Intel Corporation 82801 PCI Bridge
[8086:244e] (rev d9) (prog-if 01 [Subtractive decode])
   Flags: bus master, fast devsel, latency 0
   Bus: primary=00, secondary=01, subordinate=01, sec-latency=32
   I/O behind bridge: 00002000-00003fff
   Memory behind bridge: f5e00000-f5ffffff
   Prefetchable memory behind bridge: 00000000d8000000-00000000dfffffff
   Capabilities: [50] Subsystem: Gammagraphx, Inc. (or missing ID)
Device [0000:0000]

00:1f.0 ISA bridge [0601]: Intel Corporation 631xESB/632xESB/3100
Chipset LPC Interface Controller [8086:2670] (rev 09)
   Flags: bus master, medium devsel, latency 0
   Kernel modules: intel-rng, iTCO_wdt

00:1f.1 IDE interface [0101]: Intel Corporation 631xESB/632xESB IDE
Controller [8086:269e] (rev 09) (prog-if 8a [Master SecP PriP])
   Subsystem: Hewlett-Packard Company Device [103c:31fe]
   Flags: bus master, medium devsel, latency 0, IRQ 7
   I/O ports at 01f0 [size=8]
   I/O ports at 03f4 [size=1]
   I/O ports at 0170 [size=8]
   I/O ports at 0374 [size=1]
   I/O ports at 0500 [size=16]
   Kernel driver in use: ata_piix
   Kernel modules: ata_piix

01:03.0 VGA compatible controller [0300]: ATI Technologies Inc ES1000
[1002:515e] (rev 02) (prog-if 00 [VGA controller])
   Subsystem: Hewlett-Packard Company Device [103c:31fb]
   Flags: bus master, stepping, medium devsel, latency 64, IRQ 7
   Memory at d8000000 (32-bit, prefetchable) [size=128M]
   I/O ports at 3000 [size=256]
   Memory at f5ff0000 (32-bit, non-prefetchable) [size=64K]
   [virtual] Expansion ROM at f5e00000 [disabled] [size=128K]
   Capabilities: [50] Power Management version 2
   Kernel modules: radeonfb, radeon

01:04.0 System peripheral [0880]: Compaq Computer Corporation
Integrated Lights Out Controller [0e11:b203] (rev 03)
   Subsystem: Hewlett-Packard Company Device [103c:3305]
   Flags: medium devsel, IRQ 5
   I/O ports at 2800 [size=256]
   Memory at f5fe0000 (32-bit, non-prefetchable) [size=512]
   Capabilities: [f0] Power Management version 3
   Kernel modules: hpwdt

01:04.2 System peripheral [0880]: Compaq Computer Corporation
Integrated Lights Out  Processor [0e11:b204] (rev 03)
   Subsystem: Hewlett-Packard Company Device [103c:3305]
   Flags: bus master, medium devsel, latency 64, IRQ 22
   I/O ports at 3400 [size=256]
   Memory at f5fd0000 (32-bit, non-prefetchable) [size=2K]
   Memory at f5fc0000 (32-bit, non-prefetchable) [size=8K]
   Memory at f5f00000 (32-bit, non-prefetchable) [size=512K]
   [virtual] Expansion ROM at f5e20000 [disabled] [size=64K]
   Capabilities: [f0] Power Management version 3
   Kernel driver in use: hpilo
   Kernel modules: hpilo

01:04.4 USB Controller [0c03]: Hewlett-Packard Company Proliant
iLO2/iLO3 virtual USB controller [103c:3300] (prog-if 00 [UHCI])
   Subsystem: Hewlett-Packard Company Device [103c:3305]
   Flags: bus master, medium devsel, latency 64, IRQ 22
   I/O ports at 3800 [size=32]
   Capabilities: [f0] Power Management version 3
   Kernel driver in use: uhci_hcd
   Kernel modules: uhci-hcd

01:04.6 IPMI SMIC interface [0c07]: Hewlett-Packard Company Proliant
iLO2 virtual UART [103c:3302] (prog-if 01)
   Subsystem: Hewlett-Packard Company Device [103c:3305]
   Flags: medium devsel, IRQ 21
   Memory at f5ef0000 (32-bit, non-prefetchable) [size=256]
   Capabilities: [f0] Power Management version 3
   Kernel driver in use: ipmi_si
02:00.0 PCI bridge [0604]: Broadcom EPB PCI-Express to PCI-X Bridge
[1166:0103] (rev c3) (prog-if 00 [Normal decode])
   Flags: bus master, fast devsel, latency 0
   Bus: primary=02, secondary=03, subordinate=03, sec-latency=64
   Memory behind bridge: f6000000-f7ffffff
   Prefetchable memory behind bridge: 0000000040200000-00000000402fffff
   Capabilities: [60] Express PCI/PCI-X Bridge, MSI 00
   Capabilities: [90] PCI-X bridge device
   Capabilities: [b0] Power Management version 2
   Capabilities: [100] Advanced Error Reporting
   Capabilities: [14c] Power Budgeting <?>
   Capabilities: [160] Device Serial Number 00-1b-78-ff-fe-02-7e-d8
   Kernel modules: shpchp

03:00.0 Ethernet controller [0200]: Broadcom Corporation NetXtreme II
BCM5708 Gigabit Ethernet [14e4:164c] (rev 12)
   Subsystem: Hewlett-Packard Company NC373i Integrated Multifunction
Gigabit Server Adapter [103c:7038]
   Flags: bus master, 66MHz, medium devsel, latency 64, IRQ 65
   Memory at f6000000 (64-bit, non-prefetchable) [size=32M]
   [virtual] Expansion ROM at 40200000 [disabled] [size=2K]
   Capabilities: [40] PCI-X non-bridge device
   Capabilities: [48] Power Management version 2
   Capabilities: [50] Vital Product Data
   Capabilities: [58] MSI: Enable+ Count=1/1 Maskable- 64bit+
   Kernel driver in use: bnx2
   Kernel modules: bnx2

04:00.0 PCI bridge [0604]: Intel Corporation 6311ESB/6321ESB PCI
Express Upstream Port [8086:3500] (rev 01) (prog-if 00 [Normal
decode])
   Flags: bus master, fast devsel, latency 0
   Bus: primary=04, secondary=05, subordinate=0b, sec-latency=0
   Memory behind bridge: fa000000-fbffffff
   Prefetchable memory behind bridge: 0000000040000000-00000000400fffff
   Capabilities: [44] Express Upstream Port, MSI 00
   Capabilities: [70] Power Management version 2
   Capabilities: [80] Subsystem: Gammagraphx, Inc. (or missing ID)
Device [0000:0000]
   Capabilities: [100] Advanced Error Reporting
   Kernel driver in use: pcieport
   Kernel modules: shpchp

04:00.3 PCI bridge [0604]: Intel Corporation 6311ESB/6321ESB PCI
Express to PCI-X Bridge [8086:350c] (rev 01) (prog-if 00 [Normal
decode])
   Flags: bus master, fast devsel, latency 0
   Bus: primary=04, secondary=0c, subordinate=0e, sec-latency=64
   Capabilities: [44] Express PCI/PCI-X Bridge, MSI 00
   Capabilities: [6c] Power Management version 2
   Capabilities: [80] Subsystem: Gammagraphx, Inc. (or missing ID)
Device [0000:0000]
   Capabilities: [d8] PCI-X bridge device
   Capabilities: [100] Advanced Error Reporting
   Kernel modules: shpchp
05:00.0 PCI bridge [0604]: Intel Corporation 6311ESB/6321ESB PCI
Express Downstream Port E1 [8086:3510] (rev 01) (prog-if 00 [Normal
decode])
   Flags: bus master, fast devsel, latency 0
   Bus: primary=05, secondary=06, subordinate=08, sec-latency=0
   Capabilities: [44] Express Downstream Port (Slot-), MSI 00
   Capabilities: [60] MSI: Enable- Count=1/1 Maskable- 64bit+
   Capabilities: [70] Power Management version 2
   Capabilities: [80] Subsystem: Gammagraphx, Inc. (or missing ID)
Device [0000:0000]
   Capabilities: [100] Advanced Error Reporting
   Kernel driver in use: pcieport
   Kernel modules: shpchp

05:01.0 PCI bridge [0604]: Intel Corporation 6311ESB/6321ESB PCI
Express Downstream Port E2 [8086:3514] (rev 01) (prog-if 00 [Normal
decode])
   Flags: bus master, fast devsel, latency 0
   Bus: primary=05, secondary=09, subordinate=0b, sec-latency=0
   Memory behind bridge: fa000000-fbffffff
   Prefetchable memory behind bridge: 0000000040000000-00000000400fffff
   Capabilities: [44] Express Downstream Port (Slot-), MSI 00
   Capabilities: [60] MSI: Enable- Count=1/1 Maskable- 64bit+
   Capabilities: [70] Power Management version 2
   Capabilities: [80] Subsystem: Gammagraphx, Inc. (or missing ID)
Device [0000:0000]
   Capabilities: [100] Advanced Error Reporting
   Kernel driver in use: pcieport
   Kernel modules: shpchp

09:00.0 PCI bridge [0604]: Broadcom EPB PCI-Express to PCI-X Bridge
[1166:0103] (rev c3) (prog-if 00 [Normal decode])
   Flags: bus master, fast devsel, latency 0
   Bus: primary=09, secondary=0a, subordinate=0a, sec-latency=64
   Memory behind bridge: fa000000-fbffffff
   Prefetchable memory behind bridge: 0000000040000000-00000000400fffff
   Capabilities: [60] Express PCI/PCI-X Bridge, MSI 00
   Capabilities: [90] PCI-X bridge device
   Capabilities: [b0] Power Management version 2
   Capabilities: [100] Advanced Error Reporting
   Capabilities: [14c] Power Budgeting <?>
   Capabilities: [160] Device Serial Number 00-1b-78-ff-fe-95-0c-76
   Kernel modules: shpchp

0a:00.0 Ethernet controller [0200]: Broadcom Corporation NetXtreme II
BCM5708 Gigabit Ethernet [14e4:164c] (rev 12)
   Subsystem: Hewlett-Packard Company NC373T PCI Express Multifunction
Gigabit Server Adapter [103c:7037]
   Flags: bus master, 66MHz, medium devsel, latency 64, IRQ 66
   Memory at fa000000 (64-bit, non-prefetchable) [size=32M]
   [virtual] Expansion ROM at 40000000 [disabled] [size=64K]
   Capabilities: [40] PCI-X non-bridge device
   Capabilities: [48] Power Management version 2
   Capabilities: [50] Vital Product Data
   Capabilities: [58] MSI: Enable+ Count=1/1 Maskable- 64bit+
   Kernel driver in use: bnx2
   Kernel modules: bnx2


12:00.0 PCI bridge [0604]: Broadcom EPB PCI-Express to PCI-X Bridge
[1166:0103] (rev b4) (prog-if 00 [Normal decode])
   Flags: bus master, fast devsel, latency 0
   Bus: primary=12, secondary=13, subordinate=16, sec-latency=64
   I/O behind bridge: 00004000-00004fff
   Memory behind bridge: fdf00000-fdffffff
   Prefetchable memory behind bridge: 0000000040100000-00000000401fffff
   Capabilities: [60] Express PCI/PCI-X Bridge, MSI 00
   Capabilities: [90] PCI-X bridge device
   Capabilities: [b0] Power Management version 2
   Capabilities: [100] Advanced Error Reporting
   Capabilities: [14c] Power Budgeting <?>
   Kernel modules: shpchp

13:04.0 PCI bridge [0604]: Broadcom BCM5785 [HT1000] PCI/PCI-X Bridge
[1166:0104] (rev b2) (prog-if 00 [Normal decode])
   Flags: bus master, 66MHz, medium devsel, latency 64
   Bus: primary=13, secondary=14, subordinate=16, sec-latency=64
   Capabilities: [90] PCI-X bridge device
   Kernel modules: shpchp

13:08.0 RAID bus controller [0104]: Hewlett-Packard Company Smart
Array E200i (SAS Controller) [103c:3238]
   Subsystem: Hewlett-Packard Company Smart Array E200i [103c:3211]
   Flags: bus master, fast devsel, latency 64, IRQ 67
   Memory at fdf80000 (64-bit, non-prefetchable) [size=512K]
   I/O ports at 4000 [size=256]
   Memory at fdf70000 (32-bit, non-prefetchable) [size=32K]
   [virtual] Expansion ROM at 40100000 [disabled] [size=16K]
   Capabilities: [c0] Power Management version 2
   Capabilities: [cc] MSI: Enable+ Count=1/2 Maskable- 64bit+
   Capabilities: [dc] PCI-X non-bridge device
   Kernel driver in use: cciss
   Kernel modules: cciss, hpsa

-- System Information:
Debian Release: 6.0.1
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'unstable'), (500, 'testing')
Architecture: i386 (i686)

Kernel: Linux 2.6.39-bpo.2-686-pae (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/dash

Versions of packages linux-image-2.6.39-bpo.2-686-pae depends on:
ii  debconf [debconf-2.0]       1.5.36.1     Debian configuration management sy
ii  initramfs-tools [linux-init 0.99~bpo60+1 tools for generating an initramfs
ii  linux-base                  3.3~bpo60+1  Linux image base package
ii  module-init-tools           3.3-pre4-2   tools for managing Linux kernel mo

Versions of packages linux-image-2.6.39-bpo.2-686-pae recommends:
pn  firmware-linux-free           <none>     (no description available)
ii  libc6-i686                    2.11.2-10  Embedded GNU C Library: Shared lib

Versions of packages linux-image-2.6.39-bpo.2-686-pae suggests:
ii  lilo                        1:22.6.1-9.3 LInux LOader - The Classic OS load
pn  linux-doc-2.6.39            <none>       (no description available)


Versions of packages linux-image-2.6.39-bpo.2-686-pae is related to:
ii  firmware-bnx2               0.32~bpo60+1 Binary firmware for Broadcom NetXt
pn  firmware-bnx2x              <none>       (no description available)
pn  firmware-ipw2x00            <none>       (no description available)
pn  firmware-ivtv               <none>       (no description available)
pn  firmware-iwlwifi            <none>       (no description available)
pn  firmware-linux              <none>       (no description available)
ii  firmware-linux-nonfree      0.28         Binary firmware for various driver
pn  firmware-qlogic             <none>       (no description available)
pn  firmware-ralink             <none>       (no description available)
pn  xen-hypervisor              <none>       (no description available)

-- debconf information:
  linux-image-2.6.39-bpo.2-686-pae/prerm/removing-running-kernel-2.6.39-bpo.2-686-pae:
true
  linux-image-2.6.39-bpo.2-686-pae/postinst/ignoring-ramdisk:
  linux-image-2.6.39-bpo.2-686-pae/postinst/depmod-error-initrd-2.6.39-bpo.2-686-pae:
false
  linux-image-2.6.39-bpo.2-686-pae/postinst/missing-firmware-2.6.39-bpo.2-686-pae:



Reply to: