linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [BISECTED, REGRESSION] Successful resume from suspend but freezes after I/O
@ 2009-12-07 17:56 Volker Lanz
  2009-12-07 18:24 ` Yinghai Lu
  0 siblings, 1 reply; 15+ messages in thread
From: Volker Lanz @ 2009-12-07 17:56 UTC (permalink / raw)
  To: linux-kernel; +Cc: yinghai, mingo

Hi,

updating to my distro's new 2.6.31 kernel on an x86_64 quad core machine with 
6 GB of RAM I noticed resuming from suspend still worked as before, but the 
machine will now reproducably freeze (have to hard reset) afterwards as soon 
as I do something disk I/O heavy, though the problem is probably not related 
to disk activity at all.

A current mainline 2.6.32 checkout shows the same behaviour.

I git-bisected the problem to this commit:


-----------------------------------------------------------------------------
commit 78a8b35bc7abf8b8333d6f625e08c0f7cc1c3742
Author: Yinghai Lu <yinghai@kernel.org>
Date:   Thu Mar 12 22:36:01 2009 -0700

    x86: make e820_update_range() handle small range update

    Impact: enhance e820 code to handle more cases

    Try to handle new range which could be covered by one entry.

    Signed-off-by: Yinghai Lu <yinghai@kernel.org>
    Cc: jbeulich@novell.com
    LKML-Reference: <49B9F0C1.10402@kernel.org>
    Signed-off-by: Ingo Molnar <mingo@elte.hu>
-----------------------------------------------------------------------------


A kernel built from this revision does not boot, so the first booting kernel 
to show the problem actually seems to be:


-----------------------------------------------------------------------------
commit 6d7942dc2a70a7e74c352107b150265602671588
Author: Yinghai Lu <yinghai@kernel.org>
Date:   Sat Mar 14 14:32:41 2009 -0700

    x86: fix 64k corruption-check

    Impact: fix boot crash

    Need to exit early if the addr is far above 64k.

    The crash got exposed by:

      78a8b35: x86: make e820_update_range() handle small range update

    Signed-off-by: Yinghai Lu <yinghai@kernel.org>
    Cc: <stable@kernel.org>
    LKML-Reference: <49BC2279.2030101@kernel.org>
    Signed-off-by: Ingo Molnar <mingo@elte.hu>
-----------------------------------------------------------------------------


The last kernel to work without problems thus seems to be this one:


-----------------------------------------------------------------------------
commit 773e673de27297d07d852e7e9bfd1a695cae1da2
Author: Yinghai Lu <yinghai@kernel.org>
Date:   Thu Mar 12 21:35:18 2009 -0700

    x86: fix e820_update_range()

    Impact: fix left range size on head

    | commit 5c0e6f035df983210e4d22213aed624ced502d3d
    |    x86: fix code paths used by update_mptable
    |    Impact: fix crashes under Xen due to unrobust e820 code

    fixes one e820 bug, but introduces another bug.

    Need to update size for left range at first in case it is header.

    also add __e820_add_region take more parameter.

    Signed-off-by: Yinghai Lu <yinghai@kernel.org>
    Cc: jbeulich@novell.com
    LKML-Reference: <49B9E286.502@kernel.org>
    Signed-off-by: Ingo Molnar <mingo@elte.hu>
-----------------------------------------------------------------------------


The problem is 100% reproducable on this machine: Resuming and then copying 
/usr/ to $HOME will freeze after a few hundred MB have been copied. Earlier 
kernels worked fine for the last couple of months.

What additional information is required to help diagnose and hopefully fix the 
problem?


Volker


^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [BISECTED, REGRESSION] Successful resume from suspend but freezes after I/O
  2009-12-07 17:56 [BISECTED, REGRESSION] Successful resume from suspend but freezes after I/O Volker Lanz
@ 2009-12-07 18:24 ` Yinghai Lu
  2009-12-07 19:13   ` Volker Lanz
  0 siblings, 1 reply; 15+ messages in thread
From: Yinghai Lu @ 2009-12-07 18:24 UTC (permalink / raw)
  To: Volker Lanz; +Cc: linux-kernel, mingo

Volker Lanz wrote:
> Hi,
> 
> updating to my distro's new 2.6.31 kernel on an x86_64 quad core machine with 
> 6 GB of RAM I noticed resuming from suspend still worked as before, but the 
> machine will now reproducably freeze (have to hard reset) afterwards as soon 
> as I do something disk I/O heavy, though the problem is probably not related 
> to disk activity at all.
> 
> A current mainline 2.6.32 checkout shows the same behaviour.
> 
> I git-bisected the problem to this commit:
> 
> 
> -----------------------------------------------------------------------------
> commit 78a8b35bc7abf8b8333d6f625e08c0f7cc1c3742
> Author: Yinghai Lu <yinghai@kernel.org>
> Date:   Thu Mar 12 22:36:01 2009 -0700
> 
>     x86: make e820_update_range() handle small range update
> 
>     Impact: enhance e820 code to handle more cases
> 
>     Try to handle new range which could be covered by one entry.
> 
>     Signed-off-by: Yinghai Lu <yinghai@kernel.org>
>     Cc: jbeulich@novell.com
>     LKML-Reference: <49B9F0C1.10402@kernel.org>
>     Signed-off-by: Ingo Molnar <mingo@elte.hu>
> -----------------------------------------------------------------------------
> 
> 
> A kernel built from this revision does not boot, so the first booting kernel 
> to show the problem actually seems to be:
> 
> 
> -----------------------------------------------------------------------------
> commit 6d7942dc2a70a7e74c352107b150265602671588
> Author: Yinghai Lu <yinghai@kernel.org>
> Date:   Sat Mar 14 14:32:41 2009 -0700
> 
>     x86: fix 64k corruption-check
> 
>     Impact: fix boot crash
> 
>     Need to exit early if the addr is far above 64k.
> 
>     The crash got exposed by:
> 
>       78a8b35: x86: make e820_update_range() handle small range update
> 
>     Signed-off-by: Yinghai Lu <yinghai@kernel.org>
>     Cc: <stable@kernel.org>
>     LKML-Reference: <49BC2279.2030101@kernel.org>
>     Signed-off-by: Ingo Molnar <mingo@elte.hu>
> -----------------------------------------------------------------------------
> 
> 
> The last kernel to work without problems thus seems to be this one:
> 
> 
> -----------------------------------------------------------------------------
> commit 773e673de27297d07d852e7e9bfd1a695cae1da2
> Author: Yinghai Lu <yinghai@kernel.org>
> Date:   Thu Mar 12 21:35:18 2009 -0700
> 
>     x86: fix e820_update_range()
> 
>     Impact: fix left range size on head
> 
>     | commit 5c0e6f035df983210e4d22213aed624ced502d3d
>     |    x86: fix code paths used by update_mptable
>     |    Impact: fix crashes under Xen due to unrobust e820 code
> 
>     fixes one e820 bug, but introduces another bug.
> 
>     Need to update size for left range at first in case it is header.
> 
>     also add __e820_add_region take more parameter.
> 
>     Signed-off-by: Yinghai Lu <yinghai@kernel.org>
>     Cc: jbeulich@novell.com
>     LKML-Reference: <49B9E286.502@kernel.org>
>     Signed-off-by: Ingo Molnar <mingo@elte.hu>
> -----------------------------------------------------------------------------
> 
> 
> The problem is 100% reproducable on this machine: Resuming and then copying 
> /usr/ to $HOME will freeze after a few hundred MB have been copied. Earlier 
> kernels worked fine for the last couple of months.
> 
> What additional information is required to help diagnose and hopefully fix the 
> problem?

whole boot log with CONFIG_PCI_DEBUG and debug on command line.

YH

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [BISECTED, REGRESSION] Successful resume from suspend but freezes after I/O
  2009-12-07 18:24 ` Yinghai Lu
@ 2009-12-07 19:13   ` Volker Lanz
  2009-12-07 19:23     ` Yinghai Lu
  0 siblings, 1 reply; 15+ messages in thread
From: Volker Lanz @ 2009-12-07 19:13 UTC (permalink / raw)
  To: Yinghai Lu; +Cc: linux-kernel, mingo

On Monday 07 December 2009 19:24:02 Yinghai Lu wrote:
> Volker Lanz wrote:
> > Hi,
> >
> > updating to my distro's new 2.6.31 kernel on an x86_64 quad core machine
> > with 6 GB of RAM I noticed resuming from suspend still worked as before,
> > but the machine will now reproducably freeze (have to hard reset)
> > afterwards as soon as I do something disk I/O heavy, though the problem
> > is probably not related to disk activity at all.
> >
> > A current mainline 2.6.32 checkout shows the same behaviour.
> >
> > I git-bisected the problem to this commit:
> >
> >
> > -------------------------------------------------------------------------
> >---- commit 78a8b35bc7abf8b8333d6f625e08c0f7cc1c3742
> > Author: Yinghai Lu <yinghai@kernel.org>
> > Date:   Thu Mar 12 22:36:01 2009 -0700
> >
> >     x86: make e820_update_range() handle small range update
> >
> >     Impact: enhance e820 code to handle more cases
> >
> >     Try to handle new range which could be covered by one entry.
> >
> >     Signed-off-by: Yinghai Lu <yinghai@kernel.org>
> >     Cc: jbeulich@novell.com
> >     LKML-Reference: <49B9F0C1.10402@kernel.org>
> >     Signed-off-by: Ingo Molnar <mingo@elte.hu>
> > -------------------------------------------------------------------------
> >----
> >
> >
> > A kernel built from this revision does not boot, so the first booting
> > kernel to show the problem actually seems to be:
> >
> >
> > -------------------------------------------------------------------------
> >---- commit 6d7942dc2a70a7e74c352107b150265602671588
> > Author: Yinghai Lu <yinghai@kernel.org>
> > Date:   Sat Mar 14 14:32:41 2009 -0700
> >
> >     x86: fix 64k corruption-check
> >
> >     Impact: fix boot crash
> >
> >     Need to exit early if the addr is far above 64k.
> >
> >     The crash got exposed by:
> >
> >       78a8b35: x86: make e820_update_range() handle small range update
> >
> >     Signed-off-by: Yinghai Lu <yinghai@kernel.org>
> >     Cc: <stable@kernel.org>
> >     LKML-Reference: <49BC2279.2030101@kernel.org>
> >     Signed-off-by: Ingo Molnar <mingo@elte.hu>
> > -------------------------------------------------------------------------
> >----
> >
> >
> > The last kernel to work without problems thus seems to be this one:
> >
> >
> > -------------------------------------------------------------------------
> >---- commit 773e673de27297d07d852e7e9bfd1a695cae1da2
> > Author: Yinghai Lu <yinghai@kernel.org>
> > Date:   Thu Mar 12 21:35:18 2009 -0700
> >
> >     x86: fix e820_update_range()
> >
> >     Impact: fix left range size on head
> >
> >     | commit 5c0e6f035df983210e4d22213aed624ced502d3d
> >     |    x86: fix code paths used by update_mptable
> >     |    Impact: fix crashes under Xen due to unrobust e820 code
> >
> >     fixes one e820 bug, but introduces another bug.
> >
> >     Need to update size for left range at first in case it is header.
> >
> >     also add __e820_add_region take more parameter.
> >
> >     Signed-off-by: Yinghai Lu <yinghai@kernel.org>
> >     Cc: jbeulich@novell.com
> >     LKML-Reference: <49B9E286.502@kernel.org>
> >     Signed-off-by: Ingo Molnar <mingo@elte.hu>
> > -------------------------------------------------------------------------
> >----
> >
> >
> > The problem is 100% reproducable on this machine: Resuming and then
> > copying /usr/ to $HOME will freeze after a few hundred MB have been
> > copied. Earlier kernels worked fine for the last couple of months.
> >
> > What additional information is required to help diagnose and hopefully
> > fix the problem?
> 
> whole boot log with CONFIG_PCI_DEBUG and debug on command line.

Here it is. It's huge, I hope you were expecting that...


-----------------------------------------------------------------------------
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 2.6.29-rc7-01054-g6d7942d (vl@trevor) (gcc 
version 4.4.1 (Ubuntu 4.4.1-4ubuntu8) ) #21 SMP Mon Dec 7 19:56:44 CET 2009
[    0.000000] Command line: root=UUID=160351ee-c9b0-4a72-9fd5-9962c8137a7e ro 
nosplash debug
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Centaur CentaurHauls
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
[    0.000000]  BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 00000000cfee0000 (usable)
[    0.000000]  BIOS-e820: 00000000cfee0000 - 00000000cfee2000 (ACPI NVS)
[    0.000000]  BIOS-e820: 00000000cfee2000 - 00000000cfef0000 (ACPI data)
[    0.000000]  BIOS-e820: 00000000cfef0000 - 00000000cff00000 (reserved)
[    0.000000]  BIOS-e820: 00000000e0000000 - 00000000e4000000 (reserved)
[    0.000000]  BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)
[    0.000000]  BIOS-e820: 0000000100000000 - 00000001b0000000 (usable)
[    0.000000] DMI 2.4 present.
[    0.000000] last_pfn = 0x1b0000 max_arch_pfn = 0x100000000
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 
0x7010600070106
[    0.000000] last_pfn = 0xcfee0 max_arch_pfn = 0x100000000
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] modified physical RAM map:
[    0.000000]  modified: 0000000000000000 - 0000000000001000 (usable)
[    0.000000]  modified: 0000000000001000 - 0000000000006000 (reserved)
[    0.000000]  modified: 0000000000006000 - 000000000009f800 (usable)
[    0.000000]  modified: 000000000009f800 - 00000000000a0000 (reserved)
[    0.000000]  modified: 00000000000f0000 - 0000000000100000 (reserved)
[    0.000000]  modified: 0000000000100000 - 00000000cfee0000 (usable)
[    0.000000]  modified: 00000000cfee0000 - 00000000cfee2000 (ACPI NVS)
[    0.000000]  modified: 00000000cfee2000 - 00000000cfef0000 (ACPI data)
[    0.000000]  modified: 00000000cfef0000 - 00000000cff00000 (reserved)
[    0.000000]  modified: 00000000e0000000 - 00000000e4000000 (reserved)
[    0.000000]  modified: 00000000fec00000 - 0000000100000000 (reserved)
[    0.000000]  modified: 0000000100000000 - 00000001b0000000 (usable)
[    0.000000] init_memory_mapping: 0000000000000000-00000000cfee0000
[    0.000000]  0000000000 - 00cfe00000 page 2M
[    0.000000]  00cfe00000 - 00cfee0000 page 4k
[    0.000000] kernel direct mapping tables up to cfee0000 @ 8000-e000
[    0.000000] init_memory_mapping: 0000000100000000-00000001b0000000
[    0.000000]  0100000000 - 01b0000000 page 2M
[    0.000000] kernel direct mapping tables up to 1b0000000 @ c000-14000
[    0.000000] RAMDISK: 3499d000 - 37feffc4
[    0.000000] ACPI: RSDP 000F7280, 0014 (r0 GBT   )
[    0.000000] ACPI: RSDT CFEE2040, 004C (r1 GBT    GBTUACPI 42302E31 GBTU  
1010101)
[    0.000000] ACPI: FACP CFEE20C0, 0074 (r1 GBT    GBTUACPI 42302E31 GBTU  
1010101)
[    0.000000] FADT: X_PM1a_EVT_BLK.bit_width (16) does not match PM1_EVT_LEN 
(4)
[    0.000000] ACPI: DSDT CFEE2180, 4CD9 (r1 GBT    GBTUACPI     1000 MSFT  
100000C)
[    0.000000] ACPI: FACS CFEE0000, 0040
[    0.000000] ACPI: EUDS CFEE7580, 0500 (r1 GBT                    0             
0)
[    0.000000] ACPI: HPET CFEE74C0, 0038 (r1 GBT    GBTUACPI 42302E31 GBTU       
98)
[    0.000000] ACPI: MCFG CFEE7540, 003C (r1 GBT    GBTUACPI 42302E31 GBTU  
1010101)
[    0.000000] ACPI: APIC CFEE6EC0, 0084 (r1 GBT    GBTUACPI 42302E31 GBTU  
1010101)
[    0.000000] ACPI: SSDT CFEE83B0, 018A (r1  PmRef  Cpu0Cst     3001 INTL 
20040311)
[    0.000000] ACPI: SSDT CFEE8540, 018A (r1  PmRef  Cpu1Cst     3001 INTL 
20040311)
[    0.000000] ACPI: SSDT CFEE86D0, 018A (r1  PmRef  Cpu2Cst     3001 INTL 
20040311)
[    0.000000] ACPI: SSDT CFEE8860, 018A (r1  PmRef  Cpu3Cst     3001 INTL 
20040311)
[    0.000000] ACPI: SSDT CFEE89F0, 03AB (r1  PmRef    CpuPm     3000 INTL 
20040311)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at 0000000000000000-00000001b0000000
[    0.000000] Bootmem setup node 0 0000000000000000-00000001b0000000
[    0.000000]   NODE_DATA [000000000000f000 - 0000000000013fff]
[    0.000000]   bootmap [0000000000014000 -  0000000000049fff] pages 36
[    0.000000] (7 early reservations) ==> bootmem [0000000000 - 01b0000000]
[    0.000000]   #0 [0000000000 - 0000001000]   BIOS data page ==> [0000000000 
- 0000001000]
[    0.000000]   #1 [0000006000 - 0000008000]       TRAMPOLINE ==> [0000006000 
- 0000008000]
[    0.000000]   #2 [0000200000 - 0000b002f8]    TEXT DATA BSS ==> [0000200000 
- 0000b002f8]
[    0.000000]   #3 [003499d000 - 0037feffc4]          RAMDISK ==> [003499d000 
- 0037feffc4]
[    0.000000]   #4 [000009f800 - 0000100000]    BIOS reserved ==> [000009f800 
- 0000100000]
[    0.000000]   #5 [0000008000 - 000000c000]          PGTABLE ==> [0000008000 
- 000000c000]
[    0.000000]   #6 [000000c000 - 000000f000]          PGTABLE ==> [000000c000 
- 000000f000]
[    0.000000] found SMP MP-table at [ffff8800000f5890] f5890
[    0.000000]  [ffffe20000000000-ffffe20005ffffff] PMD -> [ffff880028200000-
ffff88002d7fffff] on node 0
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000000 -> 0x00001000
[    0.000000]   DMA32    0x00001000 -> 0x00100000
[    0.000000]   Normal   0x00100000 -> 0x001b0000
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[4] active PFN ranges
[    0.000000]     0: 0x00000000 -> 0x00000001
[    0.000000]     0: 0x00000006 -> 0x0000009f
[    0.000000]     0: 0x00000100 -> 0x000cfee0
[    0.000000]     0: 0x00100000 -> 0x001b0000
[    0.000000] On node 0 totalpages: 1572474
[    0.000000]   DMA zone: 56 pages used for memmap
[    0.000000]   DMA zone: 2410 pages reserved
[    0.000000]   DMA zone: 1528 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 14280 pages used for memmap
[    0.000000]   DMA32 zone: 833304 pages, LIFO batch:31
[    0.000000]   Normal zone: 9856 pages used for memmap
[    0.000000]   Normal zone: 711040 pages, LIFO batch:31
[    0.000000] ACPI: PM-Timer IO Port: 0x408
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x03] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] dfl dfl lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 2, version 0, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] SMP: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 24
[    0.000000] PM: Registered nosave memory: 0000000000001000 - 
0000000000006000
[    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] PM: Registered nosave memory: 00000000cfee0000 - 
00000000cfee2000
[    0.000000] PM: Registered nosave memory: 00000000cfee2000 - 
00000000cfef0000
[    0.000000] PM: Registered nosave memory: 00000000cfef0000 - 
00000000cff00000
[    0.000000] PM: Registered nosave memory: 00000000cff00000 - 
00000000e0000000
[    0.000000] PM: Registered nosave memory: 00000000e0000000 - 
00000000e4000000
[    0.000000] PM: Registered nosave memory: 00000000e4000000 - 
00000000fec00000
[    0.000000] PM: Registered nosave memory: 00000000fec00000 - 
0000000100000000
[    0.000000] Allocating PCI resources starting at e6000000 (gap: 
e4000000:1ac00000)
[    0.000000] NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] PERCPU: Embedded 27 pages at ffff880028034000, static data 
80608 bytes
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total 
pages: 1545872
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: root=UUID=160351ee-
c9b0-4a72-9fd5-9962c8137a7e ro nosplash debug
[    0.000000] Initializing CPU#0
[    0.000000] xsave/xrstor: enabled xstate_bv 0x3, cntxt size 0x240
[    0.000000] Experimental hierarchical RCU implementation.
[    0.000000] Experimental hierarchical RCU init done.
[    0.000000] NR_IRQS:4352 nr_irqs:440
[    0.000000] PID hash table entries: 4096 (order: 12, 32768 bytes)
[    0.000000] Fast TSC calibration using PIT
[    0.000000] Detected 2833.325 MHz processor.
[    0.010000] Console: colour VGA+ 80x25
[    0.010000] console [tty0] enabled
[    0.010000] allocated 62914560 bytes of page_cgroup
[    0.010000] please try cgroup_disable=memory option if you don't want
[    0.010000] Checking aperture...
[    0.010000] No AGP bridge found
[    0.010000] Calgary: detecting Calgary via BIOS EBDA area
[    0.010000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[    0.010000] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.010000] Placing 64MB software IO TLB between ffff880020000000 - 
ffff880024000000
[    0.010000] software IO TLB at phys 0x20000000 - 0x24000000
[    0.010000] Memory: 6008820k/7077888k available (4755k kernel code, 787992k 
absent, 281076k reserved, 2561k data, 624k init)
[    0.010000] SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, 
Nodes=1
[    0.010000] hpet clockevent registered
[    0.010000] HPET: 4 timers in total, 0 timers will be used for per-cpu 
timer
[    0.010000] Calibrating delay loop (skipped), value calculated using timer 
frequency.. 5666.65 BogoMIPS (lpj=28333250)
[    0.010000] Security Framework initialized
[    0.010000] SELinux:  Disabled at boot.
[    0.010000] Dentry cache hash table entries: 1048576 (order: 11, 8388608 
bytes)
[    0.010000] Inode-cache hash table entries: 524288 (order: 10, 4194304 
bytes)
[    0.010000] Mount-cache hash table entries: 256
[    0.010000] Initializing cgroup subsys ns
[    0.010000] Initializing cgroup subsys cpuacct
[    0.010000] Initializing cgroup subsys memory
[    0.010000] Initializing cgroup subsys freezer
[    0.010000] Initializing cgroup subsys net_cls
[    0.010000] CPU: L1 I cache: 32K, L1 D cache: 32K
[    0.010000] CPU: L2 cache: 6144K
[    0.010000] [ds] using Core 2/Atom configuration
[    0.010000] CPU 0/0x0 -> Node 0
[    0.010000] CPU: Physical Processor ID: 0
[    0.010000] CPU: Processor Core ID: 0
[    0.010000] CPU0: Thermal monitoring enabled (TM2)
[    0.010000] using mwait in idle threads.
[    0.010000] ACPI: Core revision 20081204
[    0.017969] Setting APIC routing to flat
[    0.018308] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.118373] CPU0: Intel(R) Core(TM)2 Quad CPU    Q9550  @ 2.83GHz stepping 
0a
[    0.120000] Booting processor 1 APIC 0x3 ip 0x6000
[    0.010000] Initializing CPU#1
[    0.010000] Calibrating delay using timer specific routine.. 5666.01 
BogoMIPS (lpj=28330075)
[    0.010000] CPU: L1 I cache: 32K, L1 D cache: 32K
[    0.010000] CPU: L2 cache: 6144K
[    0.010000] [ds] using Core 2/Atom configuration
[    0.010000] CPU 1/0x3 -> Node 0
[    0.010000] CPU: Physical Processor ID: 0
[    0.010000] CPU: Processor Core ID: 3
[    0.010000] CPU1: Thermal monitoring enabled (TM2)
[    0.010000] x86 PAT enabled: cpu 1, old 0x7040600070406, new 
0x7010600070106
[    0.271497] CPU1: Intel(R) Core(TM)2 Quad CPU    Q9550  @ 2.83GHz stepping 
0a
[    0.271985] checking TSC synchronization [CPU#0 -> CPU#1]: passed.
[    0.280060] Booting processor 2 APIC 0x2 ip 0x6000
[    0.010000] Initializing CPU#2
[    0.010000] Calibrating delay using timer specific routine.. 5666.02 
BogoMIPS (lpj=28330122)
[    0.010000] CPU: L1 I cache: 32K, L1 D cache: 32K
[    0.010000] CPU: L2 cache: 6144K
[    0.010000] [ds] using Core 2/Atom configuration
[    0.010000] CPU 2/0x2 -> Node 0
[    0.010000] CPU: Physical Processor ID: 0
[    0.010000] CPU: Processor Core ID: 2
[    0.010000] CPU2: Thermal monitoring enabled (TM2)
[    0.010000] x86 PAT enabled: cpu 2, old 0x7040600070406, new 
0x7010600070106
[    0.441427] CPU2: Intel(R) Core(TM)2 Quad CPU    Q9550  @ 2.83GHz stepping 
0a
[    0.441919] checking TSC synchronization [CPU#0 -> CPU#2]: passed.
[    0.450107] Booting processor 3 APIC 0x1 ip 0x6000
[    0.010000] Initializing CPU#3
[    0.010000] Calibrating delay using timer specific routine.. 5665.98 
BogoMIPS (lpj=28329923)
[    0.010000] CPU: L1 I cache: 32K, L1 D cache: 32K
[    0.010000] CPU: L2 cache: 6144K
[    0.010000] [ds] using Core 2/Atom configuration
[    0.010000] CPU 3/0x1 -> Node 0
[    0.010000] CPU: Physical Processor ID: 0
[    0.010000] CPU: Processor Core ID: 1
[    0.010000] CPU3: Thermal monitoring enabled (TM2)
[    0.010000] x86 PAT enabled: cpu 3, old 0x7040600070406, new 
0x7010600070106
[    0.611419] CPU3: Intel(R) Core(TM)2 Quad CPU    Q9550  @ 2.83GHz stepping 
0a
[    0.611922] checking TSC synchronization [CPU#0 -> CPU#3]: passed.
[    0.620015] Brought up 4 CPUs
[    0.620054] Total of 4 processors activated (22664.67 BogoMIPS).
[    0.620139] CPU0 attaching sched-domain:
[    0.620178]  domain 0: span 0,3 level MC
[    0.620242]   groups: 0 3
[    0.620359]   domain 1: span 0-3 level CPU
[    0.620424]    groups: 0,3 1-2
[    0.620542] CPU1 attaching sched-domain:
[    0.620580]  domain 0: span 1-2 level MC
[    0.620644]   groups: 1 2
[    0.620761]   domain 1: span 0-3 level CPU
[    0.620826]    groups: 1-2 0,3
[    0.620944] CPU2 attaching sched-domain:
[    0.620981]  domain 0: span 1-2 level MC
[    0.621046]   groups: 2 1
[    0.621162]   domain 1: span 0-3 level CPU
[    0.621226]    groups: 1-2 0,3
[    0.621344] CPU3 attaching sched-domain:
[    0.621382]  domain 0: span 0,3 level MC
[    0.621446]   groups: 3 0
[    0.621563]   domain 1: span 0-3 level CPU
[    0.621627]    groups: 0,3 1-2
[    0.621845] net_namespace: 1840 bytes
[    0.621845] Booting paravirtualized kernel on bare hardware
[    0.621845] regulator: core version 0.5
[    0.621845] Time: 20:04:17  Date: 12/07/09
[    0.621845] NET: Registered protocol family 16
[    0.621845] ACPI: bus type pci registered
[    0.621845] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 63
[    0.621845] PCI: MCFG area at e0000000 reserved in E820
[    0.622150] PCI: Using MMCONFIG at e0000000 - e3ffffff
[    0.622189] PCI: Using configuration type 1 for base access
[    0.622693] bio: create slab <bio-0> at 0
[    0.622742] ACPI: EC: Look up EC in DSDT
[    0.633005] ACPI: Interpreter enabled
[    0.633048] ACPI: (supports S0 S3 S4 S5)
[    0.633209] ACPI: Using IOAPIC for interrupt routing
[    0.636668] ACPI: No dock devices found.
[    0.636716] ACPI: PCI Root Bridge [PCI0] (0000:00)
[    0.636773] PCI: Scanning bus 0000:00
[    0.636818] pci 0000:00:00.0: found [8086:2e20] class 000600 header type 00
[    0.636875] pci 0000:00:00.0: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.636931] pci 0000:00:01.0: found [8086:2e21] class 000604 header type 01
[    0.636978] pci 0000:00:01.0: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.637028] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.637069] pci 0000:00:01.0: PME# disabled
[    0.637140] pci 0000:00:1a.0: found [8086:3a37] class 000c03 header type 00
[    0.637199] pci 0000:00:1a.0: reg 20 io port: [0xe100-0xe11f]
[    0.637247] pci 0000:00:1a.0: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.637314] pci 0000:00:1a.1: found [8086:3a38] class 000c03 header type 00
[    0.637373] pci 0000:00:1a.1: reg 20 io port: [0xe200-0xe21f]
[    0.637421] pci 0000:00:1a.1: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.637488] pci 0000:00:1a.2: found [8086:3a39] class 000c03 header type 00
[    0.637547] pci 0000:00:1a.2: reg 20 io port: [0xe000-0xe01f]
[    0.637595] pci 0000:00:1a.2: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.637668] pci 0000:00:1a.7: found [8086:3a3c] class 000c03 header type 00
[    0.637715] pci 0000:00:1a.7: reg 10 32bit mmio: [0xe9305000-0xe93053ff]
[    0.637780] pci 0000:00:1a.7: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.637850] pci 0000:00:1b.0: found [8086:3a3e] class 000403 header type 00
[    0.637899] pci 0000:00:1b.0: reg 10 64bit mmio: [0xe9300000-0xe9303fff]
[    0.637956] pci 0000:00:1b.0: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.638011] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.638052] pci 0000:00:1b.0: PME# disabled
[    0.638105] pci 0000:00:1c.0: found [8086:3a40] class 000604 header type 01
[    0.638156] pci 0000:00:1c.0: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.638213] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.638255] pci 0000:00:1c.0: PME# disabled
[    0.638310] pci 0000:00:1c.3: found [8086:3a46] class 000604 header type 01
[    0.638361] pci 0000:00:1c.3: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.638418] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[    0.638460] pci 0000:00:1c.3: PME# disabled
[    0.638513] pci 0000:00:1c.4: found [8086:3a48] class 000604 header type 01
[    0.638565] pci 0000:00:1c.4: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.638622] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    0.638663] pci 0000:00:1c.4: PME# disabled
[    0.638724] pci 0000:00:1d.0: found [8086:3a34] class 000c03 header type 00
[    0.638782] pci 0000:00:1d.0: reg 20 io port: [0xe300-0xe31f]
[    0.638831] pci 0000:00:1d.0: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.638898] pci 0000:00:1d.1: found [8086:3a35] class 000c03 header type 00
[    0.638956] pci 0000:00:1d.1: reg 20 io port: [0xe400-0xe41f]
[    0.639005] pci 0000:00:1d.1: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.639071] pci 0000:00:1d.2: found [8086:3a36] class 000c03 header type 00
[    0.639130] pci 0000:00:1d.2: reg 20 io port: [0xe500-0xe51f]
[    0.639178] pci 0000:00:1d.2: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.639249] pci 0000:00:1d.7: found [8086:3a3a] class 000c03 header type 00
[    0.639296] pci 0000:00:1d.7: reg 10 32bit mmio: [0xe9304000-0xe93043ff]
[    0.639361] pci 0000:00:1d.7: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.639428] pci 0000:00:1e.0: found [8086:244e] class 000604 header type 01
[    0.639479] pci 0000:00:1e.0: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.639548] pci 0000:00:1f.0: found [8086:3a18] class 000601 header type 00
[    0.639624] pci 0000:00:1f.0: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.639698] pci 0000:00:1f.2: found [8086:3a20] class 000101 header type 00
[    0.639743] pci 0000:00:1f.2: reg 10 io port: [0x00-0x07]
[    0.639785] pci 0000:00:1f.2: reg 14 io port: [0x00-0x03]
[    0.639827] pci 0000:00:1f.2: reg 18 io port: [0x00-0x07]
[    0.639869] pci 0000:00:1f.2: reg 1c io port: [0x00-0x03]
[    0.639911] pci 0000:00:1f.2: reg 20 io port: [0xf000-0xf00f]
[    0.639953] pci 0000:00:1f.2: reg 24 io port: [0xf100-0xf10f]
[    0.640009] pci 0000:00:1f.2: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.640071] pci 0000:00:1f.3: found [8086:3a30] class 000c05 header type 00
[    0.640119] pci 0000:00:1f.3: reg 10 64bit mmio: [0xe9306000-0xe93060ff]
[    0.640169] pci 0000:00:1f.3: reg 20 io port: [0x500-0x51f]
[    0.640216] pci 0000:00:1f.3: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.640276] pci 0000:00:1f.5: found [8086:3a26] class 000101 header type 00
[    0.640321] pci 0000:00:1f.5: reg 10 io port: [0xe700-0xe707]
[    0.640363] pci 0000:00:1f.5: reg 14 io port: [0xe800-0xe803]
[    0.640406] pci 0000:00:1f.5: reg 18 io port: [0xe900-0xe907]
[    0.640448] pci 0000:00:1f.5: reg 1c io port: [0xea00-0xea03]
[    0.640490] pci 0000:00:1f.5: reg 20 io port: [0xeb00-0xeb0f]
[    0.640532] pci 0000:00:1f.5: reg 24 io port: [0xec00-0xec0f]
[    0.640578] pci 0000:00:1f.5: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.640635] PCI: Fixups for bus 0000:00
[    0.640673] pci 0000:00:01.0: scanning behind bridge, config 010100, pass 0
[    0.640716] PCI: Scanning bus 0000:01
[    0.640766] pci 0000:01:00.0: found [10de:0402] class 000300 header type 00
[    0.640811] pci 0000:01:00.0: reg 10 32bit mmio: [0xe6000000-0xe6ffffff]
[    0.640857] pci 0000:01:00.0: reg 14 64bit mmio: [0xd0000000-0xdfffffff]
[    0.640902] pci 0000:01:00.0: reg 1c 64bit mmio: [0xe4000000-0xe5ffffff]
[    0.640946] pci 0000:01:00.0: reg 24 io port: [0xb000-0xb07f]
[    0.640988] pci 0000:01:00.0: reg 30 32bit mmio: [0x000000-0x01ffff]
[    0.641070] PCI: Fixups for bus 0000:01
[    0.641109] pci 0000:00:01.0: bridge io port: [0xb000-0xbfff]
[    0.641149] pci 0000:00:01.0: bridge 32bit mmio: [0xe4000000-0xe7ffffff]
[    0.641191] pci 0000:00:01.0: bridge 64bit mmio pref: 
[0xd0000000-0xdfffffff]
[    0.641231] PCI: Bus scan for 0000:01 returning with max=01
[    0.641272] pci 0000:00:1c.0: scanning behind bridge, config 020200, pass 0
[    0.641315] PCI: Scanning bus 0000:02
[    0.641374] PCI: Fixups for bus 0000:02
[    0.641417] PCI: Bus scan for 0000:02 returning with max=02
[    0.641458] pci 0000:00:1c.3: scanning behind bridge, config 030300, pass 0
[    0.642117] PCI: Scanning bus 0000:03
[    0.642177] pci 0000:03:00.0: found [197b:2363] class 000101 header type 00
[    0.642220] pci 0000:03:00.0: calling quirk_jmicron_ata+0x0/0x140
[    0.642308] pci 0000:03:00.0: reg 24 32bit mmio: [0xe9000000-0xe9001fff]
[    0.642381] pci 0000:03:00.0: PME# supported from D3hot
[    0.642423] pci 0000:03:00.0: PME# disabled
[    0.642496] pci 0000:03:00.1: found [197b:2363] class 000101 header type 00
[    0.642537] pci 0000:03:00.1: calling quirk_jmicron_ata+0x0/0x140
[    0.642586] pci 0000:03:00.1: reg 10 io port: [0xc000-0xc007]
[    0.642632] pci 0000:03:00.1: reg 14 io port: [0xc100-0xc103]
[    0.642678] pci 0000:03:00.1: reg 18 io port: [0xc200-0xc207]
[    0.642723] pci 0000:03:00.1: reg 1c io port: [0xc300-0xc303]
[    0.642769] pci 0000:03:00.1: reg 20 io port: [0xc400-0xc40f]
[    0.642880] PCI: Fixups for bus 0000:03
[    0.642919] pci 0000:00:1c.3: bridge io port: [0xc000-0xcfff]
[    0.642960] pci 0000:00:1c.3: bridge 32bit mmio: [0xe9000000-0xe90fffff]
[    0.643003] PCI: Bus scan for 0000:03 returning with max=03
[    0.643044] pci 0000:00:1c.4: scanning behind bridge, config 040400, pass 0
[    0.643087] PCI: Scanning bus 0000:04
[    0.643149] pci 0000:04:00.0: found [10ec:8168] class 000200 header type 00
[    0.643197] pci 0000:04:00.0: reg 10 io port: [0xd000-0xd0ff]
[    0.643252] pci 0000:04:00.0: reg 18 64bit mmio: [0xe9110000-0xe9110fff]
[    0.643303] pci 0000:04:00.0: reg 20 64bit mmio: [0xe9100000-0xe910ffff]
[    0.643349] pci 0000:04:00.0: reg 30 32bit mmio: [0x000000-0x00ffff]
[    0.643421] pci 0000:04:00.0: supports D1 D2
[    0.643459] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.643502] pci 0000:04:00.0: PME# disabled
[    0.643579] PCI: Fixups for bus 0000:04
[    0.643618] pci 0000:00:1c.4: bridge io port: [0xd000-0xdfff]
[    0.643658] pci 0000:00:1c.4: bridge 32bit mmio: [0xe8000000-0xe8ffffff]
[    0.643702] pci 0000:00:1c.4: bridge 64bit mmio pref: 
[0xe9100000-0xe91fffff]
[    0.643743] PCI: Bus scan for 0000:04 returning with max=04
[    0.643784] pci 0000:00:1e.0: scanning behind bridge, config 050500, pass 0
[    0.643828] PCI: Scanning bus 0000:05
[    0.643888] pci 0000:05:07.0: found [104c:8024] class 000c00 header type 00
[    0.643935] pci 0000:05:07.0: reg 10 32bit mmio: [0xe9204000-0xe92047ff]
[    0.643980] pci 0000:05:07.0: reg 14 32bit mmio: [0xe9200000-0xe9203fff]
[    0.644054] pci 0000:05:07.0: supports D1 D2
[    0.644093] pci 0000:05:07.0: PME# supported from D0 D1 D2 D3hot
[    0.644134] pci 0000:05:07.0: PME# disabled
[    0.644200] PCI: Fixups for bus 0000:05
[    0.644238] pci 0000:00:1e.0: transparent bridge
[    0.644279] pci 0000:00:1e.0: bridge 32bit mmio: [0xe9200000-0xe92fffff]
[    0.644322] PCI: Bus scan for 0000:05 returning with max=05
[    0.644363] pci 0000:00:01.0: scanning behind bridge, config 010100, pass 1
[    0.644405] pci 0000:00:1c.0: scanning behind bridge, config 020200, pass 1
[    0.644449] pci 0000:00:1c.3: scanning behind bridge, config 030300, pass 1
[    0.644492] pci 0000:00:1c.4: scanning behind bridge, config 040400, pass 1
[    0.644536] pci 0000:00:1e.0: scanning behind bridge, config 050500, pass 1
[    0.644578] PCI: Bus scan for 0000:00 returning with max=05
[    0.644621] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.644761] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX0._PRT]
[    0.644841] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX3._PRT]
[    0.644921] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX4._PRT]
[    0.644999] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB0._PRT]
[    0.657882] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 *10 11 12 14 
15)
[    0.658354] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 11 12 14 
15) *0, disabled.
[    0.658881] ACPI: PCI Interrupt Link [LNKC] (IRQs *3 4 5 6 7 9 10 11 12 14 
15)
[    0.659352] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 *11 12 14 
15)
[    0.659822] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 11 12 14 
15) *0, disabled.
[    0.660360] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 *4 5 6 7 9 10 11 12 14 
15)
[    0.660830] ACPI: PCI Interrupt Link [LNK0] (IRQs 3 4 *5 6 7 9 10 11 12 14 
15)
[    0.661300] ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 6 *7 9 10 11 12 14 
15)
[    0.661973] SCSI subsystem initialized
[    0.661973] libata version 3.00 loaded.
[    0.661973] usbcore: registered new interface driver usbfs
[    0.661973] usbcore: registered new interface driver hub
[    0.661973] usbcore: registered new device driver usb
[    0.661973] ACPI: WMI: Mapper loaded
[    0.661973] PCI: Using ACPI for IRQ routing
[    0.690009] Bluetooth: Core ver 2.14
[    0.690059] NET: Registered protocol family 31
[    0.690063] Bluetooth: HCI device and connection manager initialized
[    0.690104] Bluetooth: HCI socket layer initialized
[    0.690142] NetLabel: Initializing
[    0.690180] NetLabel:  domain hash size = 128
[    0.690218] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.690264] NetLabel:  unlabeled traffic allowed by default
[    0.690337] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
[    0.690509] hpet0: 4 comparators, 64-bit 14.318180 MHz counter
[    0.720005] Switched to high resolution mode on CPU 0
[    0.721700] Switched to high resolution mode on CPU 2
[    0.721759] Switched to high resolution mode on CPU 1
[    0.722003] Switched to high resolution mode on CPU 3
[    0.750009] pnp: PnP ACPI init
[    0.750054] ACPI: bus type pnp registered
[    0.751849] pnp: PnP ACPI: found 12 devices
[    0.751888] ACPI: ACPI bus type pnp unregistered
[    0.751931] system 00:01: ioport range 0x4d0-0x4d1 has been reserved
[    0.751972] system 00:01: ioport range 0x290-0x29f has been reserved
[    0.752012] system 00:01: ioport range 0x800-0x87f has been reserved
[    0.752053] system 00:01: ioport range 0x290-0x294 has been reserved
[    0.752093] system 00:01: ioport range 0x880-0x88f has been reserved
[    0.752134] system 00:01: ioport range 0x4c0-0x4ff could not be reserved
[    0.752177] system 00:08: ioport range 0x400-0x4bf has been reserved
[    0.752220] system 00:09: iomem range 0xe0000000-0xe3ffffff has been 
reserved
[    0.752263] system 00:0a: iomem range 0xccc00-0xcffff has been reserved
[    0.752303] system 00:0a: iomem range 0xf0000-0xf7fff could not be reserved
[    0.752344] system 00:0a: iomem range 0xf8000-0xfbfff could not be reserved
[    0.752385] system 00:0a: iomem range 0xfc000-0xfffff could not be reserved
[    0.752427] system 00:0a: iomem range 0xcfee0000-0xcfefffff could not be 
reserved
[    0.752475] system 00:0a: iomem range 0x0-0x9ffff could not be reserved
[    0.752531] system 00:0a: iomem range 0x100000-0xcfedffff could not be 
reserved
[    0.752580] system 00:0a: iomem range 0xfec00000-0xfec00fff has been 
reserved
[    0.752621] system 00:0a: iomem range 0xfed10000-0xfed1dfff has been 
reserved
[    0.752662] system 00:0a: iomem range 0xfed20000-0xfed8ffff has been 
reserved
[    0.752703] system 00:0a: iomem range 0xfee00000-0xfee00fff has been 
reserved
[    0.752744] system 00:0a: iomem range 0xffb00000-0xffb7ffff has been 
reserved
[    0.752785] system 00:0a: iomem range 0xfff00000-0xffffffff has been 
reserved
[    0.752826] system 00:0a: iomem range 0xe0000-0xeffff has been reserved
[    0.757480] pci 0000:01:00.0: BAR 6: got res [0xe7000000-0xe701ffff] bus 
[0xe7000000-0xe701ffff] flags 0x27200
[    0.757532] pci 0000:00:01.0: PCI bridge, secondary bus 0000:01
[    0.757572] pci 0000:00:01.0:   IO window: 0xb000-0xbfff
[    0.757612] pci 0000:00:01.0:   MEM window: 0xe4000000-0xe7ffffff
[    0.757653] pci 0000:00:01.0:   PREFETCH window: 
0x000000d0000000-0x000000dfffffff
[    0.757703] pci 0000:00:1c.0: PCI bridge, secondary bus 0000:02
[    0.757742] pci 0000:00:1c.0:   IO window: disabled
[    0.757783] pci 0000:00:1c.0:   MEM window: disabled
[    0.757823] pci 0000:00:1c.0:   PREFETCH window: disabled
[    0.757865] pci 0000:00:1c.3: PCI bridge, secondary bus 0000:03
[    0.757905] pci 0000:00:1c.3:   IO window: 0xc000-0xcfff
[    0.757947] pci 0000:00:1c.3:   MEM window: 0xe9000000-0xe90fffff
[    0.757988] pci 0000:00:1c.3:   PREFETCH window: disabled
[    0.758030] pci 0000:04:00.0: BAR 6: got res [0xe9120000-0xe912ffff] bus 
[0xe9120000-0xe912ffff] flags 0x27200
[    0.758081] pci 0000:00:1c.4: PCI bridge, secondary bus 0000:04
[    0.758121] pci 0000:00:1c.4:   IO window: 0xd000-0xdfff
[    0.758163] pci 0000:00:1c.4:   MEM window: 0xe8000000-0xe8ffffff
[    0.758204] pci 0000:00:1c.4:   PREFETCH window: 
0x000000e9100000-0x000000e91fffff
[    0.758255] pci 0000:00:1e.0: PCI bridge, secondary bus 0000:05
[    0.758295] pci 0000:00:1e.0:   IO window: disabled
[    0.758336] pci 0000:00:1e.0:   MEM window: 0xe9200000-0xe92fffff
[    0.758377] pci 0000:00:1e.0:   PREFETCH window: disabled
[    0.758422]   alloc irq_desc for 16 on cpu 0 node 0
[    0.758461]   alloc kstat_irqs on cpu 0 node 0
[    0.758501] pci 0000:00:01.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.758542] pci 0000:00:01.0: setting latency timer to 64
[    0.758585] pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.758627] pci 0000:00:1c.0: setting latency timer to 64
[    0.758669]   alloc irq_desc for 19 on cpu 0 node 0
[    0.758708]   alloc kstat_irqs on cpu 0 node 0
[    0.758747] pci 0000:00:1c.3: PCI INT D -> GSI 19 (level, low) -> IRQ 19
[    0.758789] pci 0000:00:1c.3: setting latency timer to 64
[    0.758832] pci 0000:00:1c.4: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.758874] pci 0000:00:1c.4: setting latency timer to 64
[    0.758916] pci 0000:00:1e.0: setting latency timer to 64
[    0.758956] pci_bus 0000:00: resource 0 io:  [0x00-0xffff]
[    0.758996] pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffffffffffff]
[    0.759037] pci_bus 0000:01: resource 0 io:  [0xb000-0xbfff]
[    0.759076] pci_bus 0000:01: resource 1 mem: [0xe4000000-0xe7ffffff]
[    0.759116] pci_bus 0000:01: resource 2 mem: [0xd0000000-0xdfffffff]
[    0.759157] pci_bus 0000:01: resource 3 mem: [0x0-0x0]
[    0.759195] pci_bus 0000:02: resource 0 mem: [0x0-0x0]
[    0.759234] pci_bus 0000:02: resource 1 mem: [0x0-0x0]
[    0.759273] pci_bus 0000:02: resource 2 mem: [0x0-0x0]
[    0.759312] pci_bus 0000:02: resource 3 mem: [0x0-0x0]
[    0.759351] pci_bus 0000:03: resource 0 io:  [0xc000-0xcfff]
[    0.759391] pci_bus 0000:03: resource 1 mem: [0xe9000000-0xe90fffff]
[    0.759431] pci_bus 0000:03: resource 2 mem: [0x0-0x0]
[    0.759469] pci_bus 0000:03: resource 3 mem: [0x0-0x0]
[    0.759508] pci_bus 0000:04: resource 0 io:  [0xd000-0xdfff]
[    0.759548] pci_bus 0000:04: resource 1 mem: [0xe8000000-0xe8ffffff]
[    0.759588] pci_bus 0000:04: resource 2 mem: [0xe9100000-0xe91fffff]
[    0.759628] pci_bus 0000:04: resource 3 mem: [0x0-0x0]
[    0.759667] pci_bus 0000:05: resource 0 mem: [0x0-0x0]
[    0.759706] pci_bus 0000:05: resource 1 mem: [0xe9200000-0xe92fffff]
[    0.759746] pci_bus 0000:05: resource 2 mem: [0x0-0x0]
[    0.760398] pci_bus 0000:05: resource 3 io:  [0x00-0xffff]
[    0.760437] pci_bus 0000:05: resource 4 mem: [0x000000-0xffffffffffffffff]
[    0.760495] NET: Registered protocol family 2
[    0.860203] IP route cache hash table entries: 262144 (order: 9, 2097152 
bytes)
[    0.861134] TCP established hash table entries: 524288 (order: 11, 8388608 
bytes)
[    0.864359] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.864964] TCP: Hash tables configured (established 524288 bind 65536)
[    0.865005] TCP reno registered
[    0.890115] NET: Registered protocol family 1
[    0.890614] checking if image is initramfs... it is
[    2.666303] Freeing initrd memory: 55627k freed
[    2.692716] Scanning for low memory corruption every 60 seconds
[    2.692862] audit: initializing netlink socket (disabled)
[    2.692913] type=2000 audit(1260216258.690:1): initialized
[    2.699348] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    2.700414] VFS: Disk quotas dquot_6.5.2
[    2.700490] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    2.700920] fuse init (API version 7.11)
[    2.701011] msgmni has been set to 11844
[    2.701223] alg: No test for stdrng (krng)
[    2.701279] io scheduler noop registered
[    2.701319] io scheduler anticipatory registered
[    2.701357] io scheduler deadline registered
[    2.701436] io scheduler cfq registered (default)
[    2.701481] pci 0000:00:00.0: calling quirk_e100_interrupt+0x0/0x181
[    2.701523] pci 0000:00:00.0: calling quirk_cardbus_legacy+0x0/0x30
[    2.701564] pci 0000:00:00.0: calling quirk_usb_early_handoff+0x0/0x399
[    2.701606] pci 0000:00:00.0: calling pci_fixup_video+0x0/0xba
[    2.701647] pci 0000:00:01.0: calling quirk_e100_interrupt+0x0/0x181
[    2.701687] pci 0000:00:01.0: calling quirk_cardbus_legacy+0x0/0x30
[    2.701728] pci 0000:00:01.0: calling quirk_usb_early_handoff+0x0/0x399
[    2.701768] pci 0000:00:01.0: calling pci_fixup_video+0x0/0xba
[    2.701809] pci 0000:00:1a.0: calling quirk_e100_interrupt+0x0/0x181
[    2.701849] pci 0000:00:1a.0: calling quirk_cardbus_legacy+0x0/0x30
[    2.701890] pci 0000:00:1a.0: calling quirk_usb_early_handoff+0x0/0x399
[    2.701943] pci 0000:00:1a.0: calling pci_fixup_video+0x0/0xba
[    2.701984] pci 0000:00:1a.1: calling quirk_e100_interrupt+0x0/0x181
[    2.702024] pci 0000:00:1a.1: calling quirk_cardbus_legacy+0x0/0x30
[    2.702065] pci 0000:00:1a.1: calling quirk_usb_early_handoff+0x0/0x399
[    2.702116] pci 0000:00:1a.1: calling pci_fixup_video+0x0/0xba
[    2.702157] pci 0000:00:1a.2: calling quirk_e100_interrupt+0x0/0x181
[    2.702197] pci 0000:00:1a.2: calling quirk_cardbus_legacy+0x0/0x30
[    2.702238] pci 0000:00:1a.2: calling quirk_usb_early_handoff+0x0/0x399
[    2.702288] pci 0000:00:1a.2: calling pci_fixup_video+0x0/0xba
[    2.702329] pci 0000:00:1a.7: calling quirk_e100_interrupt+0x0/0x181
[    2.702369] pci 0000:00:1a.7: calling quirk_cardbus_legacy+0x0/0x30
[    2.702419] pci 0000:00:1a.7: calling quirk_usb_early_handoff+0x0/0x399
[    2.702478] pci 0000:00:1a.7: calling pci_fixup_video+0x0/0xba
[    2.702525] pci 0000:00:1b.0: calling quirk_e100_interrupt+0x0/0x181
[    2.702565] pci 0000:00:1b.0: calling quirk_cardbus_legacy+0x0/0x30
[    2.702606] pci 0000:00:1b.0: calling quirk_usb_early_handoff+0x0/0x399
[    2.702646] pci 0000:00:1b.0: calling pci_fixup_video+0x0/0xba
[    2.702687] pci 0000:00:1c.0: calling quirk_e100_interrupt+0x0/0x181
[    2.702727] pci 0000:00:1c.0: calling quirk_cardbus_legacy+0x0/0x30
[    2.702768] pci 0000:00:1c.0: calling quirk_usb_early_handoff+0x0/0x399
[    2.702809] pci 0000:00:1c.0: calling pci_fixup_video+0x0/0xba
[    2.702849] pci 0000:00:1c.3: calling quirk_e100_interrupt+0x0/0x181
[    2.702890] pci 0000:00:1c.3: calling quirk_cardbus_legacy+0x0/0x30
[    2.702930] pci 0000:00:1c.3: calling quirk_usb_early_handoff+0x0/0x399
[    2.702971] pci 0000:00:1c.3: calling pci_fixup_video+0x0/0xba
[    2.703011] pci 0000:00:1c.4: calling quirk_e100_interrupt+0x0/0x181
[    2.703052] pci 0000:00:1c.4: calling quirk_cardbus_legacy+0x0/0x30
[    2.703092] pci 0000:00:1c.4: calling quirk_usb_early_handoff+0x0/0x399
[    2.703133] pci 0000:00:1c.4: calling pci_fixup_video+0x0/0xba
[    2.703173] pci 0000:00:1d.0: calling quirk_e100_interrupt+0x0/0x181
[    2.703214] pci 0000:00:1d.0: calling quirk_cardbus_legacy+0x0/0x30
[    2.703254] pci 0000:00:1d.0: calling quirk_usb_early_handoff+0x0/0x399
[    2.703305] pci 0000:00:1d.0: calling pci_fixup_video+0x0/0xba
[    2.703346] pci 0000:00:1d.1: calling quirk_e100_interrupt+0x0/0x181
[    2.703387] pci 0000:00:1d.1: calling quirk_cardbus_legacy+0x0/0x30
[    2.703427] pci 0000:00:1d.1: calling quirk_usb_early_handoff+0x0/0x399
[    2.703478] pci 0000:00:1d.1: calling pci_fixup_video+0x0/0xba
[    2.703519] pci 0000:00:1d.2: calling quirk_e100_interrupt+0x0/0x181
[    2.703559] pci 0000:00:1d.2: calling quirk_cardbus_legacy+0x0/0x30
[    2.703600] pci 0000:00:1d.2: calling quirk_usb_early_handoff+0x0/0x399
[    2.703651] pci 0000:00:1d.2: calling pci_fixup_video+0x0/0xba
[    2.703692] pci 0000:00:1d.7: calling quirk_e100_interrupt+0x0/0x181
[    2.703732] pci 0000:00:1d.7: calling quirk_cardbus_legacy+0x0/0x30
[    2.703772] pci 0000:00:1d.7: calling quirk_usb_early_handoff+0x0/0x399
[    2.703835] pci 0000:00:1d.7: calling pci_fixup_video+0x0/0xba
[    2.703876] pci 0000:00:1e.0: calling quirk_e100_interrupt+0x0/0x181
[    2.703917] pci 0000:00:1e.0: calling quirk_cardbus_legacy+0x0/0x30
[    2.703957] pci 0000:00:1e.0: calling quirk_usb_early_handoff+0x0/0x399
[    2.703998] pci 0000:00:1e.0: calling pci_fixup_video+0x0/0xba
[    2.704039] pci 0000:00:1f.0: calling quirk_e100_interrupt+0x0/0x181
[    2.704079] pci 0000:00:1f.0: calling quirk_cardbus_legacy+0x0/0x30
[    2.704119] pci 0000:00:1f.0: calling quirk_usb_early_handoff+0x0/0x399
[    2.704160] pci 0000:00:1f.0: calling pci_fixup_video+0x0/0xba
[    2.704201] pci 0000:00:1f.2: calling quirk_e100_interrupt+0x0/0x181
[    2.704241] pci 0000:00:1f.2: calling quirk_cardbus_legacy+0x0/0x30
[    2.704282] pci 0000:00:1f.2: calling quirk_usb_early_handoff+0x0/0x399
[    2.704323] pci 0000:00:1f.2: calling pci_fixup_video+0x0/0xba
[    2.704363] pci 0000:00:1f.3: calling quirk_e100_interrupt+0x0/0x181
[    2.704404] pci 0000:00:1f.3: calling quirk_cardbus_legacy+0x0/0x30
[    2.704444] pci 0000:00:1f.3: calling quirk_usb_early_handoff+0x0/0x399
[    2.704485] pci 0000:00:1f.3: calling pci_fixup_video+0x0/0xba
[    2.704525] pci 0000:00:1f.5: calling quirk_e100_interrupt+0x0/0x181
[    2.704566] pci 0000:00:1f.5: calling quirk_cardbus_legacy+0x0/0x30
[    2.704606] pci 0000:00:1f.5: calling quirk_usb_early_handoff+0x0/0x399
[    2.704647] pci 0000:00:1f.5: calling pci_fixup_video+0x0/0xba
[    2.704688] pci 0000:01:00.0: calling nv_msi_ht_cap_quirk+0x0/0x1ed
[    2.704734] pci 0000:01:00.0: calling quirk_cardbus_legacy+0x0/0x30
[    2.704774] pci 0000:01:00.0: calling quirk_usb_early_handoff+0x0/0x399
[    2.704815] pci 0000:01:00.0: calling pci_fixup_video+0x0/0xba
[    2.704856] pci 0000:01:00.0: Boot video device
[    2.704895] pci 0000:03:00.0: calling quirk_cardbus_legacy+0x0/0x30
[    2.704936] pci 0000:03:00.0: calling quirk_usb_early_handoff+0x0/0x399
[    2.704976] pci 0000:03:00.0: calling pci_fixup_video+0x0/0xba
[    2.705017] pci 0000:03:00.1: calling quirk_cardbus_legacy+0x0/0x30
[    2.705058] pci 0000:03:00.1: calling quirk_usb_early_handoff+0x0/0x399
[    2.705098] pci 0000:03:00.1: calling pci_fixup_video+0x0/0xba
[    2.705139] pci 0000:04:00.0: calling quirk_cardbus_legacy+0x0/0x30
[    2.705179] pci 0000:04:00.0: calling quirk_usb_early_handoff+0x0/0x399
[    2.705220] pci 0000:04:00.0: calling pci_fixup_video+0x0/0xba
[    2.705260] pci 0000:05:07.0: calling quirk_cardbus_legacy+0x0/0x30
[    2.705301] pci 0000:05:07.0: calling quirk_usb_early_handoff+0x0/0x399
[    2.705342] pci 0000:05:07.0: calling pci_fixup_video+0x0/0xba
[    2.705440] pcieport-driver 0000:00:01.0: setting latency timer to 64
[    2.705509]   alloc irq_desc for 24 on cpu 0 node 0
[    2.705548]   alloc kstat_irqs on cpu 0 node 0
[    2.705591] pcieport-driver 0000:00:01.0: irq 24 for MSI/MSI-X
[    2.705674] pcieport-driver 0000:00:1c.0: setting latency timer to 64
[    2.705750]   alloc irq_desc for 25 on cpu 0 node 0
[    2.705789]   alloc kstat_irqs on cpu 0 node 0
[    2.705830] pcieport-driver 0000:00:1c.0: irq 25 for MSI/MSI-X
[    2.705929] pcieport-driver 0000:00:1c.3: setting latency timer to 64
[    2.706006]   alloc irq_desc for 26 on cpu 0 node 0
[    2.706044]   alloc kstat_irqs on cpu 0 node 0
[    2.706085] pcieport-driver 0000:00:1c.3: irq 26 for MSI/MSI-X
[    2.706187] pcieport-driver 0000:00:1c.4: setting latency timer to 64
[    2.706263]   alloc irq_desc for 27 on cpu 0 node 0
[    2.706302]   alloc kstat_irqs on cpu 0 node 0
[    2.706342] pcieport-driver 0000:00:1c.4: irq 27 for MSI/MSI-X
[    2.706449] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    2.706965] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    2.707117] input: Power Button (FF) as 
/devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    2.707167] ACPI: Power Button (FF) [PWRF]
[    2.707233] input: Power Button (CM) as 
/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1
[    2.707283] ACPI: Power Button (CM) [PWRB]
[    2.707679] ACPI: SSDT CFEE7AD0, 022A (r1  PmRef  Cpu0Ist     3000 INTL 
20040311)
[    2.707961] ACPI: CPU0 (power states: C1[C1] C2[C2] C3[C3])
[    2.708120] processor ACPI_CPU:00: registered as cooling_device0
[    2.708161] ACPI: Processor [CPU0] (supports 8 throttling states)
[    2.708406] ACPI: SSDT CFEE7F90, 0152 (r1  PmRef  Cpu1Ist     3000 INTL 
20040311)
[    2.708742] ACPI Error (psparse-0537): Method parse/execution failed 
[\_PR_.CPU1._PDC] (Node ffff8801af044f20), AE_ALREADY_EXISTS
[    2.708877] ACPI: Marking method _PDC as Serialized because of 
AE_ALREADY_EXISTS error
[    2.709140] ACPI: CPU1 (power states: C1[C1] C2[C2] C3[C3])
[    2.709307] processor ACPI_CPU:01: registered as cooling_device1
[    2.709349] ACPI: Processor [CPU1] (supports 8 throttling states)
[    2.709637] ACPI: SSDT CFEE80F0, 0152 (r1  PmRef  Cpu2Ist     3000 INTL 
20040311)
[    2.709997] ACPI Error (psparse-0537): Method parse/execution failed 
[\_PR_.CPU2._PDC] (Node ffff8801af044fa0), AE_ALREADY_EXISTS
[    2.710142] ACPI: Marking method _PDC as Serialized because of 
AE_ALREADY_EXISTS error
[    2.710352] ACPI: CPU2 (power states: C1[C1] C2[C2] C3[C3])
[    2.710510] processor ACPI_CPU:02: registered as cooling_device2
[    2.710551] ACPI: Processor [CPU2] (supports 8 throttling states)
[    2.710812] ACPI: SSDT CFEE8250, 0152 (r1  PmRef  Cpu3Ist     3000 INTL 
20040311)
[    2.711149] ACPI Error (psparse-0537): Method parse/execution failed 
[\_PR_.CPU3._PDC] (Node ffff8801af04b020), AE_ALREADY_EXISTS
[    2.711283] ACPI: Marking method _PDC as Serialized because of 
AE_ALREADY_EXISTS error
[    2.711516] ACPI: CPU3 (power states: C1[C1] C2[C2] C3[C3])
[    2.711677] processor ACPI_CPU:03: registered as cooling_device3
[    2.711719] ACPI: Processor [CPU3] (supports 8 throttling states)
[    2.803909] Linux agpgart interface v0.103
[    2.803953] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    2.804644] brd: module loaded
[    2.804889] loop: module loaded
[    2.805096] Fixed MDIO Bus: probed
[    2.805750] PPP generic driver version 2.4.2
[    2.805822] input: Macintosh mouse button emulation as 
/devices/virtual/input/input2
[    2.805886] Driver 'sd' needs updating - please use bus_type methods
[    2.805931] Driver 'sr' needs updating - please use bus_type methods
[    2.806006] ahci 0000:03:00.0: version 3.0
[    2.806020] ahci 0000:03:00.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
[    2.830031] ahci 0000:03:00.0: AHCI 0001.0000 32 slots 2 ports 3 Gbps 0x3 
impl SATA mode
[    2.830083] ahci 0000:03:00.0: flags: 64bit ncq pm led clo pmp pio slum 
part 
[    2.830134] ahci 0000:03:00.0: setting latency timer to 64
[    2.830332] scsi0 : ahci
[    2.830447] scsi1 : ahci
[    2.830539] ata1: SATA max UDMA/133 abar m8192@0xe9000000 port 0xe9000100 
irq 19
[    2.830589] ata2: SATA max UDMA/133 abar m8192@0xe9000000 port 0xe9000180 
irq 19
[    3.180022] ata1: SATA link down (SStatus 0 SControl 300)
[    3.550021] ata2: SATA link down (SStatus 0 SControl 300)
[    3.570050] ata_piix 0000:00:1f.2: version 2.12
[    3.570097] ata_piix 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 
19
[    3.570155] ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
[    3.570354] ata_piix 0000:00:1f.2: setting latency timer to 64
[    3.570463] scsi2 : ata_piix
[    3.570575] scsi3 : ata_piix
[    3.571146] ata3: SATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xf000 irq 14
[    3.571189] ata4: SATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xf008 irq 15
[    4.430053] ata3.00: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    4.430109] ata3.01: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    4.496205] ata3.00: HPA detected: current 1953523055, native 1953525168
[    4.496250] ata3.00: ATA-8: ST31000528AS, CC34, max UDMA/133
[    4.496292] ata3.00: 1953523055 sectors, multi 16: LBA48 NCQ (depth 0/32)
[    4.496474] ata3.01: ATA-7: ST3300831AS, 3.02, max UDMA/133
[    4.496516] ata3.01: 586072368 sectors, multi 16: LBA48 NCQ (depth 0/32)
[    4.556223] ata3.00: configured for UDMA/133
[    4.590299] ata3.01: configured for UDMA/133
[    4.590423] scsi 2:0:0:0: Direct-Access     ATA      ST31000528AS     CC34 
PQ: 0 ANSI: 5
[    4.590537] sd 2:0:0:0: [sda] 1953523055 512-byte hardware sectors: (1.00 
TB/931 GiB)
[    4.590595] sd 2:0:0:0: [sda] Write Protect is off
[    4.590634] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    4.590688] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, 
doesn't support DPO or FUA
[    4.590772] sd 2:0:0:0: [sda] 1953523055 512-byte hardware sectors: (1.00 
TB/931 GiB)
[    4.590829] sd 2:0:0:0: [sda] Write Protect is off
[    4.590868] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    4.590921] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, 
doesn't support DPO or FUA
[    4.590972]  sda: sda1 sda2 < sda5 sda6 sda7 sda8 sda9 >
[    4.662355] sd 2:0:0:0: [sda] Attached SCSI disk
[    4.662418] sd 2:0:0:0: Attached scsi generic sg0 type 0
[    4.662495] scsi 2:0:1:0: Direct-Access     ATA      ST3300831AS      3.02 
PQ: 0 ANSI: 5
[    4.662606] sd 2:0:1:0: [sdb] 586072368 512-byte hardware sectors: (300 
GB/279 GiB)
[    4.662665] sd 2:0:1:0: [sdb] Write Protect is off
[    4.662704] sd 2:0:1:0: [sdb] Mode Sense: 00 3a 00 00
[    4.662758] sd 2:0:1:0: [sdb] Write cache: enabled, read cache: enabled, 
doesn't support DPO or FUA
[    4.662836] sd 2:0:1:0: [sdb] 586072368 512-byte hardware sectors: (300 
GB/279 GiB)
[    4.662893] sd 2:0:1:0: [sdb] Write Protect is off
[    4.662932] sd 2:0:1:0: [sdb] Mode Sense: 00 3a 00 00
[    4.662985] sd 2:0:1:0: [sdb] Write cache: enabled, read cache: enabled, 
doesn't support DPO or FUA
[    4.663036]  sdb: sdb1
[    4.682863] sd 2:0:1:0: [sdb] Attached SCSI disk
[    4.682925] sd 2:0:1:0: Attached scsi generic sg1 type 0
[    5.540051] ata4.00: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    5.540108] ata4.01: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    5.600280] ata4.00: ATA-8: SAMSUNG HD501LJ, CR100-11, max UDMA7
[    5.600323] ata4.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 0/32)
[    5.600384] ata4.01: ATAPI: HL-DT-STDVD-RAM GH22NS30, 1.01, max UDMA/100
[    5.620295] ata4.00: configured for UDMA/133
[    5.660188] ata4.01: configured for UDMA/100
[    5.660561] scsi 3:0:0:0: Direct-Access     ATA      SAMSUNG HD501LJ  CR10 
PQ: 0 ANSI: 5
[    5.660668] sd 3:0:0:0: [sdc] 976773168 512-byte hardware sectors: (500 
GB/465 GiB)
[    5.660725] sd 3:0:0:0: [sdc] Write Protect is off
[    5.660764] sd 3:0:0:0: [sdc] Mode Sense: 00 3a 00 00
[    5.660817] sd 3:0:0:0: [sdc] Write cache: enabled, read cache: enabled, 
doesn't support DPO or FUA
[    5.660899] sd 3:0:0:0: [sdc] 976773168 512-byte hardware sectors: (500 
GB/465 GiB)
[    5.660955] sd 3:0:0:0: [sdc] Write Protect is off
[    5.660995] sd 3:0:0:0: [sdc] Mode Sense: 00 3a 00 00
[    5.661048] sd 3:0:0:0: [sdc] Write cache: enabled, read cache: enabled, 
doesn't support DPO or FUA
[    5.661099]  sdc: sdc2 < sdc5 sdc6 sdc7 > sdc3
[    5.733039] sd 3:0:0:0: [sdc] Attached SCSI disk
[    5.733101] sd 3:0:0:0: Attached scsi generic sg2 type 0
[    5.734301] scsi 3:0:1:0: CD-ROM            HL-DT-ST DVD-RAM GH22NS30 1.01 
PQ: 0 ANSI: 5
[    5.737903] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 
cdda tray
[    5.737954] Uniform CD-ROM driver Revision: 3.20
[    5.738060] sr 3:0:1:0: Attached scsi CD-ROM sr0
[    5.738121] sr 3:0:1:0: Attached scsi generic sg3 type 5
[    5.738178] ata_piix 0000:00:1f.5: PCI INT B -> GSI 19 (level, low) -> IRQ 
19
[    5.738221] ata_piix 0000:00:1f.5: MAP [ P0 -- P1 -- ]
[    5.738416] ata_piix 0000:00:1f.5: setting latency timer to 64
[    5.738509] scsi4 : ata_piix
[    5.738615] scsi5 : ata_piix
[    5.739034] ata5: SATA max UDMA/133 cmd 0xe700 ctl 0xe800 bmdma 0xeb00 irq 
19
[    5.739077] ata6: SATA max UDMA/133 cmd 0xe900 ctl 0xea00 bmdma 0xeb08 irq 
19
[    6.090639] ata5: SATA link down (SStatus 0 SControl 300)
[    6.450638] ata6: SATA link down (SStatus 0 SControl 300)
[    6.450901] pata_jmicron 0000:03:00.1: enabling device (0000 -> 0001)
[    6.450944] pata_jmicron 0000:03:00.1: PCI INT B -> GSI 16 (level, low) -> 
IRQ 16
[    6.451009] pata_jmicron 0000:03:00.1: enabling bus mastering
[    6.451052] pata_jmicron 0000:03:00.1: setting latency timer to 64
[    6.451133] scsi6 : pata_jmicron
[    6.451208] scsi7 : pata_jmicron
[    6.451697] ata7: PATA max UDMA/100 cmd 0xc000 ctl 0xc100 bmdma 0xc400 irq 
16
[    6.451738] ata8: PATA max UDMA/100 cmd 0xc200 ctl 0xc300 bmdma 0xc408 irq 
16
[    6.781589] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    6.781643]   alloc irq_desc for 18 on cpu 0 node 0
[    6.781682]   alloc kstat_irqs on cpu 0 node 0
[    6.781722] ehci_hcd 0000:00:1a.7: PCI INT C -> GSI 18 (level, low) -> IRQ 
18
[    6.781769] ehci_hcd 0000:00:1a.7: setting latency timer to 64
[    6.781810] ehci_hcd 0000:00:1a.7: EHCI Host Controller
[    6.781882] ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus 
number 1
[    6.785832] ehci_hcd 0000:00:1a.7: cache line size of 32 is not supported
[    6.785881] ehci_hcd 0000:00:1a.7: irq 18, io mem 0xe9305000
[    6.800010] ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00
[    6.800119] usb usb1: configuration #1 chosen from 1 choice
[    6.800180] hub 1-0:1.0: USB hub found
[    6.800221] hub 1-0:1.0: 6 ports detected
[    6.800328]   alloc irq_desc for 23 on cpu 0 node 0
[    6.800367]   alloc kstat_irqs on cpu 0 node 0
[    6.800407] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 
23
[    6.800453] ehci_hcd 0000:00:1d.7: setting latency timer to 64
[    6.800493] ehci_hcd 0000:00:1d.7: EHCI Host Controller
[    6.800559] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus 
number 2
[    6.804507] ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported
[    6.804554] ehci_hcd 0000:00:1d.7: irq 23, io mem 0xe9304000
[    6.820006] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[    6.820101] usb usb2: configuration #1 chosen from 1 choice
[    6.820163] hub 2-0:1.0: USB hub found
[    6.820204] hub 2-0:1.0: 6 ports detected
[    6.820300] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    6.820348] uhci_hcd: USB Universal Host Controller Interface driver
[    6.820418] uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 
16
[    6.820462] uhci_hcd 0000:00:1a.0: setting latency timer to 64
[    6.820502] uhci_hcd 0000:00:1a.0: UHCI Host Controller
[    6.820566] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus 
number 3
[    6.820632] uhci_hcd 0000:00:1a.0: irq 16, io base 0x0000e100
[    6.820720] usb usb3: configuration #1 chosen from 1 choice
[    6.820774] hub 3-0:1.0: USB hub found
[    6.820815] hub 3-0:1.0: 2 ports detected
[    6.820905]   alloc irq_desc for 21 on cpu 0 node 0
[    6.820944]   alloc kstat_irqs on cpu 0 node 0
[    6.820984] uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 
21
[    6.821027] uhci_hcd 0000:00:1a.1: setting latency timer to 64
[    6.821068] uhci_hcd 0000:00:1a.1: UHCI Host Controller
[    6.821137] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus 
number 4
[    6.821209] uhci_hcd 0000:00:1a.1: irq 21, io base 0x0000e200
[    6.821302] usb usb4: configuration #1 chosen from 1 choice
[    6.821355] hub 4-0:1.0: USB hub found
[    6.821396] hub 4-0:1.0: 2 ports detected
[    6.821485] uhci_hcd 0000:00:1a.2: PCI INT C -> GSI 18 (level, low) -> IRQ 
18
[    6.821529] uhci_hcd 0000:00:1a.2: setting latency timer to 64
[    6.821569] uhci_hcd 0000:00:1a.2: UHCI Host Controller
[    6.821633] uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus 
number 5
[    6.821698] uhci_hcd 0000:00:1a.2: irq 18, io base 0x0000e000
[    6.821785] usb usb5: configuration #1 chosen from 1 choice
[    6.821838] hub 5-0:1.0: USB hub found
[    6.821879] hub 5-0:1.0: 2 ports detected
[    6.821967] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 
23
[    6.822011] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[    6.822051] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[    6.822711] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus 
number 6
[    6.822776] uhci_hcd 0000:00:1d.0: irq 23, io base 0x0000e300
[    6.822863] usb usb6: configuration #1 chosen from 1 choice
[    6.822918] hub 6-0:1.0: USB hub found
[    6.822959] hub 6-0:1.0: 2 ports detected
[    6.823049] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 
19
[    6.823092] uhci_hcd 0000:00:1d.1: setting latency timer to 64
[    6.823133] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[    6.823197] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus 
number 7
[    6.823262] uhci_hcd 0000:00:1d.1: irq 19, io base 0x0000e400
[    6.823349] usb usb7: configuration #1 chosen from 1 choice
[    6.823407] hub 7-0:1.0: USB hub found
[    6.823447] hub 7-0:1.0: 2 ports detected
[    6.823537] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 
18
[    6.823580] uhci_hcd 0000:00:1d.2: setting latency timer to 64
[    6.823621] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[    6.823683] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus 
number 8
[    6.823748] uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000e500
[    6.823840] usb usb8: configuration #1 chosen from 1 choice
[    6.823893] hub 8-0:1.0: USB hub found
[    6.823935] hub 8-0:1.0: 2 ports detected
[    6.824054] PNP: No PS/2 controller found. Probing ports directly.
[    6.824376] serio: i8042 KBD port at 0x60,0x64 irq 1
[    6.824420] serio: i8042 AUX port at 0x60,0x64 irq 12
[    6.843781] mice: PS/2 mouse device common for all mice
[    6.943809] rtc_cmos 00:04: RTC can wake from S4
[    6.943884] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
[    6.943943] rtc0: alarms up to one month, 242 bytes nvram, hpet irqs
[    6.944042] device-mapper: uevent: version 1.0.3
[    6.944129] device-mapper: ioctl: 4.14.0-ioctl (2008-04-23) initialised: 
dm-devel@redhat.com
[    6.944262] device-mapper: multipath: version 1.0.5 loaded
[    6.944304] device-mapper: multipath round-robin: version 1.0.0 loaded
[    6.944514] cpuidle: using governor ladder
[    6.944700] cpuidle: using governor menu
[    6.944992] TCP cubic registered
[    6.945113] NET: Registered protocol family 10
[    6.945427] lo: Disabled Privacy Extensions
[    6.945651] NET: Registered protocol family 17
[    6.945699] Bluetooth: L2CAP ver 2.11
[    6.945737] Bluetooth: L2CAP socket layer initialized
[    6.945776] Bluetooth: SCO (Voice Link) ver 0.6
[    6.945815] Bluetooth: SCO socket layer initialized
[    6.945879] Bluetooth: RFCOMM socket layer initialized
[    6.945925] Bluetooth: RFCOMM TTY layer initialized
[    6.945967] Bluetooth: RFCOMM ver 1.10
[    6.947638] Marking TSC unstable due to TSC halts in idle
[    6.951271] registered taskstats version 1
[    6.951414]   Magic number: 5:198:93
[    6.951527] rtc_cmos 00:04: setting system clock to 2009-12-07 20:04:23 UTC 
(1260216263)
[    6.951582] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    6.951622] EDD information not available.
[    6.951696] Freeing unused kernel memory: 624k freed
[    6.951845] Write protecting the kernel read-only data: 6772k
[    7.045512] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    7.045579] r8169 0000:04:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    7.045630] r8169 0000:04:00.0: enabling Mem-Wr-Inval
[    7.045681] r8169 0000:04:00.0: setting latency timer to 64
[    7.045800]   alloc irq_desc for 28 on cpu 0 node 0
[    7.045842]   alloc kstat_irqs on cpu 0 node 0
[    7.045889] r8169 0000:04:00.0: irq 28 for MSI/MSI-X
[    7.046024] r8169 0000:04:00.0: Missing EEPROM signature: 0000
[    7.046459] eth0: RTL8168c/8111c at 0xffffc20000c5c000, 00:1f:d0:9d:27:af, 
XID 3c4000c0 IRQ 28
[    7.068759] ohci1394 0000:05:07.0: PCI INT A -> GSI 23 (level, low) -> IRQ 
23
[    7.130054] ohci1394: fw-host0: OHCI-1394 1.1 (PCI): IRQ=[23]  
MMIO=[e9204000-e92047ff]  Max Packet=[2048]  IR/IT contexts=[4/8]
[    7.651956] kjournald starting.  Commit interval 5 seconds
[    7.651980] EXT3-fs: mounted filesystem with ordered data mode.
[    7.772530] usb 3-1: new full speed USB device using uhci_hcd and address 2
[    8.056786] usb 3-1: configuration #1 chosen from 1 choice
[    8.333788] usb 5-1: new low speed USB device using uhci_hcd and address 2
[    8.450425] ieee1394: Host added: ID:BUS[0-00:1023]  GUID[007c2d6400001fd0]
[    8.524843] usb 5-1: configuration #1 chosen from 1 choice
[    8.800042] usb 5-2: new full speed USB device using uhci_hcd and address 3
[    8.980869] usb 5-2: configuration #1 chosen from 1 choice
[    9.261291] usb 8-1: new full speed USB device using uhci_hcd and address 2
[    9.434890] usb 8-1: configuration #1 chosen from 1 choice
[    9.436854] hub 8-1:1.0: USB hub found
[    9.438822] hub 8-1:1.0: 4 ports detected
[    9.721285] usb 8-2: new low speed USB device using uhci_hcd and address 3
[    9.900922] usb 8-2: configuration #1 chosen from 1 choice
[    9.982826] usb 8-1.4: new low speed USB device using uhci_hcd and address 
4
[   10.132878] usb 8-1.4: configuration #1 chosen from 1 choice
[   12.958357] udev: starting version 147
[   13.545994] nvidia: module license 'NVIDIA' taints kernel.
[   13.799818] nvidia 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[   13.799824] nvidia 0000:01:00.0: setting latency timer to 64
[   13.800187] NVRM: loading NVIDIA UNIX x86_64 Kernel Module  185.18.36  Fri 
Aug 14 17:35:21 PDT 2009
[   14.220041] usbcore: registered new interface driver hiddev
[   14.238120] input: Logitech USB RECEIVER as 
/devices/pci0000:00/0000:00:1d.2/usb8/8-2/8-2:1.0/input/input3
[   14.313867] generic-usb 0003:046D:C50E.0001: input,hidraw0: USB HID v1.11 
Mouse [Logitech USB RECEIVER] on usb-0000:00:1d.2-2/input0
[   14.328095] input: CHESEN PS2 to USB Converter as 
/devices/pci0000:00/0000:00:1d.2/usb8/8-1/8-1.4/8-1.4:1.0/input/input4
[   14.375754] ip_tables: (C) 2000-2006 Netfilter Core Team
[   14.392623] generic-usb 0003:0A81:0205.0002: input,hidraw1: USB HID v1.10 
Keyboard [CHESEN PS2 to USB Converter] on usb-0000:00:1d.2-1.4/input0
[   14.411531] Linux video capture interface: v2.00
[   14.417145] input: CHESEN PS2 to USB Converter as 
/devices/pci0000:00/0000:00:1d.2/usb8/8-1/8-1.4/8-1.4:1.1/input/input5
[   14.432938] lp: driver loaded but no devices found
[   14.510156] generic-usb 0003:0A81:0205.0003: input,hidraw2: USB HID v1.10 
Mouse [CHESEN PS2 to USB Converter] on usb-0000:00:1d.2-1.4/input1
[   14.510186] usbcore: registered new interface driver usbhid
[   14.510189] usbhid: v2.6:USB HID core driver
[   14.672447] pwc: Philips webcam module version 10.0.13 loaded.
[   14.672449] pwc: Supports Philips PCA645/646, PCVC675/680/690, 
PCVC720[40]/730/740/750 & PCVC830/840.
[   14.672451] pwc: Also supports the Askey VC010, various Logitech Quickcams, 
Samsung MPC-C10 and MPC-C30,
[   14.672452] pwc: the Creative WebCam 5 & Pro Ex, SOTEC Afina Eye and 
Visionite VCS-UC300 and VCS-UM100.
[   14.672471] pwc: Logitech QuickCam 4000 Pro USB webcam detected.
[   14.672547] pwc: Registered as /dev/video0.
[   14.675806] usbcore: registered new interface driver Philips webcam
[   15.158552]   alloc irq_desc for 22 on cpu 0 node 0
[   15.158555]   alloc kstat_irqs on cpu 0 node 0
[   15.158560] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 
22
[   15.158733] HDA Intel 0000:00:1b.0: setting latency timer to 64
[   15.361076] usbcore: registered new interface driver snd-usb-audio
[   15.649258] Adding 6562544k swap on /dev/mapper/cryptoswap.  Priority:-1 
extents:1 across:6562544k 
[   16.516327] EXT3 FS on sda8, internal journal
[   16.975508] r8169: eth0: link up
[   16.975513] r8169: eth0: link up
[   17.327586] kjournald starting.  Commit interval 5 seconds
[   17.327604] EXT3-fs: mounted filesystem with ordered data mode.
[   17.375307] kjournald starting.  Commit interval 5 seconds
[   17.381488] EXT3 FS on sda6, internal journal
[   17.381491] EXT3-fs: mounted filesystem with ordered data mode.
[   17.550320] kjournald starting.  Commit interval 5 seconds
[   17.550346] EXT3-fs: mounted filesystem with ordered data mode.
[   17.570280] kjournald starting.  Commit interval 5 seconds
[   17.570567] EXT3 FS on sdc6, internal journal
[   17.570569] EXT3-fs: mounted filesystem with ordered data mode.
[   19.008616] ppdev: user-space parallel port driver
[   20.715390] RPC: Registered udp transport module.
[   20.715392] RPC: Registered tcp transport module.
[   25.525338] kjournald starting.  Commit interval 5 seconds
[   25.525361] EXT3-fs warning: maximal mount count reached, running e2fsck is 
recommended
[   25.525843] EXT3 FS on dm-1, internal journal
[   25.525848] EXT3-fs: mounted filesystem with ordered data mode.
[   27.371276] eth0: no IPv6 routers present
-----------------------------------------------------------------------------


Volker






^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [BISECTED, REGRESSION] Successful resume from suspend but freezes after I/O
  2009-12-07 19:13   ` Volker Lanz
@ 2009-12-07 19:23     ` Yinghai Lu
  2009-12-07 20:36       ` Volker Lanz
  0 siblings, 1 reply; 15+ messages in thread
From: Yinghai Lu @ 2009-12-07 19:23 UTC (permalink / raw)
  To: Volker Lanz; +Cc: linux-kernel, mingo

Volker Lanz wrote:
> On Monday 07 December 2009 19:24:02 Yinghai Lu wrote:
>> Volker Lanz wrote:
>>> Hi,
>>>
>>> updating to my distro's new 2.6.31 kernel on an x86_64 quad core machine
>>> with 6 GB of RAM I noticed resuming from suspend still worked as before,
>>> but the machine will now reproducably freeze (have to hard reset)
>>> afterwards as soon as I do something disk I/O heavy, though the problem
>>> is probably not related to disk activity at all.
>>>
>>> A current mainline 2.6.32 checkout shows the same behaviour.
>>>
>>> I git-bisected the problem to this commit:
>>>
>>>
>>> -------------------------------------------------------------------------
>>> ---- commit 78a8b35bc7abf8b8333d6f625e08c0f7cc1c3742
>>> Author: Yinghai Lu <yinghai@kernel.org>
>>> Date:   Thu Mar 12 22:36:01 2009 -0700
>>>
>>>     x86: make e820_update_range() handle small range update
>>>
>>>     Impact: enhance e820 code to handle more cases
>>>
>>>     Try to handle new range which could be covered by one entry.
>>>
>>>     Signed-off-by: Yinghai Lu <yinghai@kernel.org>
>>>     Cc: jbeulich@novell.com
>>>     LKML-Reference: <49B9F0C1.10402@kernel.org>
>>>     Signed-off-by: Ingo Molnar <mingo@elte.hu>
>>> -------------------------------------------------------------------------
>>> ----
>>>
>>>
>>> A kernel built from this revision does not boot, so the first booting
>>> kernel to show the problem actually seems to be:
>>>
>>>
>>> -------------------------------------------------------------------------
>>> ---- commit 6d7942dc2a70a7e74c352107b150265602671588
>>> Author: Yinghai Lu <yinghai@kernel.org>
>>> Date:   Sat Mar 14 14:32:41 2009 -0700
>>>
>>>     x86: fix 64k corruption-check
>>>
>>>     Impact: fix boot crash
>>>
>>>     Need to exit early if the addr is far above 64k.
>>>
>>>     The crash got exposed by:
>>>
>>>       78a8b35: x86: make e820_update_range() handle small range update
>>>
>>>     Signed-off-by: Yinghai Lu <yinghai@kernel.org>
>>>     Cc: <stable@kernel.org>
>>>     LKML-Reference: <49BC2279.2030101@kernel.org>
>>>     Signed-off-by: Ingo Molnar <mingo@elte.hu>
>>> -------------------------------------------------------------------------
>>> ----
>>>
>>>
>>> The last kernel to work without problems thus seems to be this one:
>>>
>>>
>>> -------------------------------------------------------------------------
>>> ---- commit 773e673de27297d07d852e7e9bfd1a695cae1da2
>>> Author: Yinghai Lu <yinghai@kernel.org>
>>> Date:   Thu Mar 12 21:35:18 2009 -0700
>>>
>>>     x86: fix e820_update_range()
>>>
>>>     Impact: fix left range size on head
>>>
>>>     | commit 5c0e6f035df983210e4d22213aed624ced502d3d
>>>     |    x86: fix code paths used by update_mptable
>>>     |    Impact: fix crashes under Xen due to unrobust e820 code
>>>
>>>     fixes one e820 bug, but introduces another bug.
>>>
>>>     Need to update size for left range at first in case it is header.
>>>
>>>     also add __e820_add_region take more parameter.
>>>
>>>     Signed-off-by: Yinghai Lu <yinghai@kernel.org>
>>>     Cc: jbeulich@novell.com
>>>     LKML-Reference: <49B9E286.502@kernel.org>
>>>     Signed-off-by: Ingo Molnar <mingo@elte.hu>
>>> -------------------------------------------------------------------------
>>> ----
>>>
>>>
>>> The problem is 100% reproducable on this machine: Resuming and then
>>> copying /usr/ to $HOME will freeze after a few hundred MB have been
>>> copied. Earlier kernels worked fine for the last couple of months.
>>>
>>> What additional information is required to help diagnose and hopefully
>>> fix the problem?
>> whole boot log with CONFIG_PCI_DEBUG and debug on command line.
> 
> Here it is. It's huge, I hope you were expecting that...

and the one with current tip?

http://people.redhat.com/mingo/tip.git/readme.txt

YH

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [BISECTED, REGRESSION] Successful resume from suspend but freezes after I/O
  2009-12-07 19:23     ` Yinghai Lu
@ 2009-12-07 20:36       ` Volker Lanz
  2009-12-07 22:01         ` Yinghai Lu
  2009-12-07 23:05         ` Yinghai Lu
  0 siblings, 2 replies; 15+ messages in thread
From: Volker Lanz @ 2009-12-07 20:36 UTC (permalink / raw)
  To: Yinghai Lu; +Cc: linux-kernel, mingo

On Monday 07 December 2009 20:23:08 Yinghai Lu wrote:
> Volker Lanz wrote:
> > On Monday 07 December 2009 19:24:02 Yinghai Lu wrote:
> >> Volker Lanz wrote:
> >>> Hi,
> >>>
> >>> updating to my distro's new 2.6.31 kernel on an x86_64 quad core
> >>> machine with 6 GB of RAM I noticed resuming from suspend still worked
> >>> as before, but the machine will now reproducably freeze (have to hard
> >>> reset) afterwards as soon as I do something disk I/O heavy, though the
> >>> problem is probably not related to disk activity at all.
> >>>
> >>> A current mainline 2.6.32 checkout shows the same behaviour.
> >>>
> >>> I git-bisected the problem to this commit:
> >>>
> >>>
> >>> -----------------------------------------------------------------------
> >>>-- ---- commit 78a8b35bc7abf8b8333d6f625e08c0f7cc1c3742
> >>> Author: Yinghai Lu <yinghai@kernel.org>
> >>> Date:   Thu Mar 12 22:36:01 2009 -0700
> >>>
> >>>     x86: make e820_update_range() handle small range update
> >>>
> >>>     Impact: enhance e820 code to handle more cases
> >>>
> >>>     Try to handle new range which could be covered by one entry.
> >>>
> >>>     Signed-off-by: Yinghai Lu <yinghai@kernel.org>
> >>>     Cc: jbeulich@novell.com
> >>>     LKML-Reference: <49B9F0C1.10402@kernel.org>
> >>>     Signed-off-by: Ingo Molnar <mingo@elte.hu>
> >>> -----------------------------------------------------------------------
> >>>-- ----
> >>>
> >>>
> >>> A kernel built from this revision does not boot, so the first booting
> >>> kernel to show the problem actually seems to be:
> >>>
> >>>
> >>> -----------------------------------------------------------------------
> >>>-- ---- commit 6d7942dc2a70a7e74c352107b150265602671588
> >>> Author: Yinghai Lu <yinghai@kernel.org>
> >>> Date:   Sat Mar 14 14:32:41 2009 -0700
> >>>
> >>>     x86: fix 64k corruption-check
> >>>
> >>>     Impact: fix boot crash
> >>>
> >>>     Need to exit early if the addr is far above 64k.
> >>>
> >>>     The crash got exposed by:
> >>>
> >>>       78a8b35: x86: make e820_update_range() handle small range update
> >>>
> >>>     Signed-off-by: Yinghai Lu <yinghai@kernel.org>
> >>>     Cc: <stable@kernel.org>
> >>>     LKML-Reference: <49BC2279.2030101@kernel.org>
> >>>     Signed-off-by: Ingo Molnar <mingo@elte.hu>
> >>> -----------------------------------------------------------------------
> >>>-- ----
> >>>
> >>>
> >>> The last kernel to work without problems thus seems to be this one:
> >>>
> >>>
> >>> -----------------------------------------------------------------------
> >>>-- ---- commit 773e673de27297d07d852e7e9bfd1a695cae1da2
> >>> Author: Yinghai Lu <yinghai@kernel.org>
> >>> Date:   Thu Mar 12 21:35:18 2009 -0700
> >>>
> >>>     x86: fix e820_update_range()
> >>>
> >>>     Impact: fix left range size on head
> >>>
> >>>     | commit 5c0e6f035df983210e4d22213aed624ced502d3d
> >>>     |    x86: fix code paths used by update_mptable
> >>>     |    Impact: fix crashes under Xen due to unrobust e820 code
> >>>
> >>>     fixes one e820 bug, but introduces another bug.
> >>>
> >>>     Need to update size for left range at first in case it is header.
> >>>
> >>>     also add __e820_add_region take more parameter.
> >>>
> >>>     Signed-off-by: Yinghai Lu <yinghai@kernel.org>
> >>>     Cc: jbeulich@novell.com
> >>>     LKML-Reference: <49B9E286.502@kernel.org>
> >>>     Signed-off-by: Ingo Molnar <mingo@elte.hu>
> >>> -----------------------------------------------------------------------
> >>>-- ----
> >>>
> >>>
> >>> The problem is 100% reproducable on this machine: Resuming and then
> >>> copying /usr/ to $HOME will freeze after a few hundred MB have been
> >>> copied. Earlier kernels worked fine for the last couple of months.
> >>>
> >>> What additional information is required to help diagnose and hopefully
> >>> fix the problem?
> >>
> >> whole boot log with CONFIG_PCI_DEBUG and debug on command line.
> >
> > Here it is. It's huge, I hope you were expecting that...
> 
> and the one with current tip?
> 
> http://people.redhat.com/mingo/tip.git/readme.txt

With this kernel, the problem persists. Here's the log:


-----------------------------------------------------------------------------
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 2.6.32-tip-02731-gd17424f (vl@trevor) (gcc 
version 4.4.1 (Ubuntu 4.4.1-4ubuntu8) ) #22 SMP Mon Dec 7 21:09:21 CET 2009
[    0.000000] Command line: root=UUID=160351ee-c9b0-4a72-9fd5-9962c8137a7e ro 
nosplash debug
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
[    0.000000]  BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 00000000cfee0000 (usable)
[    0.000000]  BIOS-e820: 00000000cfee0000 - 00000000cfee2000 (ACPI NVS)
[    0.000000]  BIOS-e820: 00000000cfee2000 - 00000000cfef0000 (ACPI data)
[    0.000000]  BIOS-e820: 00000000cfef0000 - 00000000cff00000 (reserved)
[    0.000000]  BIOS-e820: 00000000e0000000 - 00000000e4000000 (reserved)
[    0.000000]  BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)
[    0.000000]  BIOS-e820: 0000000100000000 - 00000001b0000000 (usable)
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] DMI 2.4 present.
[    0.000000] last_pfn = 0x1b0000 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-CBFFF write-protect
[    0.000000]   CC000-EFFFF uncachable
[    0.000000]   F0000-FFFFF write-through
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000 mask F00000000 write-back
[    0.000000]   1 base 0E0000000 mask FE0000000 uncachable
[    0.000000]   2 base 0D0000000 mask FF0000000 uncachable
[    0.000000]   3 base 100000000 mask F00000000 write-back
[    0.000000]   4 base 1C0000000 mask FC0000000 uncachable
[    0.000000]   5 base 1B0000000 mask FF0000000 uncachable
[    0.000000]   6 base 0CFF00000 mask FFFF00000 uncachable
[    0.000000]   7 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 
0x7010600070106
[    0.000000] e820 update range: 00000000cff00000 - 0000000100000000 (usable) 
==> (reserved)
[    0.000000] last_pfn = 0xcfee0 max_arch_pfn = 0x400000000
[    0.000000] e820 update range: 0000000000001000 - 0000000000006000 (usable) 
==> (reserved)
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] modified physical RAM map:
[    0.000000]  modified: 0000000000000000 - 0000000000001000 (usable)
[    0.000000]  modified: 0000000000001000 - 0000000000006000 (reserved)
[    0.000000]  modified: 0000000000006000 - 000000000009f800 (usable)
[    0.000000]  modified: 000000000009f800 - 00000000000a0000 (reserved)
[    0.000000]  modified: 00000000000f0000 - 0000000000100000 (reserved)
[    0.000000]  modified: 0000000000100000 - 00000000cfee0000 (usable)
[    0.000000]  modified: 00000000cfee0000 - 00000000cfee2000 (ACPI NVS)
[    0.000000]  modified: 00000000cfee2000 - 00000000cfef0000 (ACPI data)
[    0.000000]  modified: 00000000cfef0000 - 00000000cff00000 (reserved)
[    0.000000]  modified: 00000000e0000000 - 00000000e4000000 (reserved)
[    0.000000]  modified: 00000000fec00000 - 0000000100000000 (reserved)
[    0.000000]  modified: 0000000100000000 - 00000001b0000000 (usable)
[    0.000000] initial memory mapped : 0 - 20000000
[    0.000000] init_memory_mapping: 0000000000000000-00000000cfee0000
[    0.000000]  0000000000 - 00cfe00000 page 2M
[    0.000000]  00cfe00000 - 00cfee0000 page 4k
[    0.000000] kernel direct mapping tables up to cfee0000 @ c000-12000
[    0.000000] init_memory_mapping: 0000000100000000-00000001b0000000
[    0.000000]  0100000000 - 01b0000000 page 2M
[    0.000000] kernel direct mapping tables up to 1b0000000 @ 10000-18000
[    0.000000] RAMDISK: 34054000 - 37fef801
[    0.000000] ACPI: RSDP 00000000000f7280 00014 (v00 GBT   )
[    0.000000] ACPI: RSDT 00000000cfee2040 0004C (v01 GBT    GBTUACPI 42302E31 
GBTU 01010101)
[    0.000000] ACPI: FACP 00000000cfee20c0 00074 (v01 GBT    GBTUACPI 42302E31 
GBTU 01010101)
[    0.000000] ACPI: DSDT 00000000cfee2180 04CD9 (v01 GBT    GBTUACPI 00001000 
MSFT 0100000C)
[    0.000000] ACPI: FACS 00000000cfee0000 00040
[    0.000000] ACPI: EUDS 00000000cfee7580 00500 (v01 GBT             00000000      
00000000)
[    0.000000] ACPI: HPET 00000000cfee74c0 00038 (v01 GBT    GBTUACPI 42302E31 
GBTU 00000098)
[    0.000000] ACPI: MCFG 00000000cfee7540 0003C (v01 GBT    GBTUACPI 42302E31 
GBTU 01010101)
[    0.000000] ACPI: APIC 00000000cfee6ec0 00084 (v01 GBT    GBTUACPI 42302E31 
GBTU 01010101)
[    0.000000] ACPI: SSDT 00000000cfee83b0 0018A (v01  PmRef  Cpu0Cst 00003001 
INTL 20040311)
[    0.000000] ACPI: SSDT 00000000cfee8540 0018A (v01  PmRef  Cpu1Cst 00003001 
INTL 20040311)
[    0.000000] ACPI: SSDT 00000000cfee86d0 0018A (v01  PmRef  Cpu2Cst 00003001 
INTL 20040311)
[    0.000000] ACPI: SSDT 00000000cfee8860 0018A (v01  PmRef  Cpu3Cst 00003001 
INTL 20040311)
[    0.000000] ACPI: SSDT 00000000cfee89f0 003AB (v01  PmRef    CpuPm 00003000 
INTL 20040311)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] found SMP MP-table at [ffff8800000f5890] f5890
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at 0000000000000000-00000001b0000000
[    0.000000] Bootmem setup node 0 0000000000000000-00000001b0000000
[    0.000000]   NODE_DATA [0000000000013000 - 0000000000017fff]
[    0.000000]   bootmap [0000000000018000 -  000000000004dfff] pages 36
[    0.000000] (13 early reservations) ==> bootmem [0000000000 - 01b0000000]
[    0.000000]   #0 [0000000000 - 0000001000]   BIOS data page ==> [0000000000 
- 0000001000]
[    0.000000]   #1 [0000006000 - 0000008000]       TRAMPOLINE ==> [0000006000 
- 0000008000]
[    0.000000]   #2 [0001000000 - 0001c89284]    TEXT DATA BSS ==> [0001000000 
- 0001c89284]
[    0.000000]   #3 [0034054000 - 0037fef801]          RAMDISK ==> [0034054000 
- 0037fef801]
[    0.000000]   #4 [0001c8a000 - 0001c8a0f6]              BRK ==> [0001c8a000 
- 0001c8a0f6]
[    0.000000]   #5 [0000008000 - 000000c000]      ACPI WAKEUP ==> [0000008000 
- 000000c000]
[    0.000000]   #6 [000000c000 - 0000010000]          PGTABLE ==> [000000c000 
- 0000010000]
[    0.000000]   #7 [0000010000 - 0000013000]          PGTABLE ==> [0000010000 
- 0000013000]
[    0.000000]   #8 [00000f58a0 - 0000100000]    BIOS reserved ==> [00000f58a0 
- 0000100000]
[    0.000000]   #9 [00000f5890 - 00000f58a0]     MP-table mpf ==> [00000f5890 
- 00000f58a0]
[    0.000000]   #10 [000009f800 - 00000f0d00]    BIOS reserved ==> 
[000009f800 - 00000f0d00]
[    0.000000]   #11 [00000f0ebc - 00000f5890]    BIOS reserved ==> 
[00000f0ebc - 00000f5890]
[    0.000000]   #12 [00000f0d00 - 00000f0ebc]     MP-table mpc ==> 
[00000f0d00 - 00000f0ebc]
[    0.000000]  [ffffea0000000000-ffffea0005ffffff] PMD -> [ffff880028600000-
ffff88002dbfffff] on node 0
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000000 -> 0x00001000
[    0.000000]   DMA32    0x00001000 -> 0x00100000
[    0.000000]   Normal   0x00100000 -> 0x001b0000
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[4] active PFN ranges
[    0.000000]     0: 0x00000000 -> 0x00000001
[    0.000000]     0: 0x00000006 -> 0x0000009f
[    0.000000]     0: 0x00000100 -> 0x000cfee0
[    0.000000]     0: 0x00100000 -> 0x001b0000
[    0.000000] On node 0 totalpages: 1572474
[    0.000000]   DMA zone: 56 pages used for memmap
[    0.000000]   DMA zone: 109 pages reserved
[    0.000000]   DMA zone: 3829 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 14280 pages used for memmap
[    0.000000]   DMA32 zone: 833304 pages, LIFO batch:31
[    0.000000]   Normal zone: 9856 pages used for memmap
[    0.000000]   Normal zone: 711040 pages, LIFO batch:31
[    0.000000] ACPI: PM-Timer IO Port: 0x408
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x03] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] dfl dfl lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] SMP: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 24
[    0.000000] PM: Registered nosave memory: 0000000000001000 - 
0000000000006000
[    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] PM: Registered nosave memory: 00000000cfee0000 - 
00000000cfee2000
[    0.000000] PM: Registered nosave memory: 00000000cfee2000 - 
00000000cfef0000
[    0.000000] PM: Registered nosave memory: 00000000cfef0000 - 
00000000cff00000
[    0.000000] PM: Registered nosave memory: 00000000cff00000 - 
00000000e0000000
[    0.000000] PM: Registered nosave memory: 00000000e0000000 - 
00000000e4000000
[    0.000000] PM: Registered nosave memory: 00000000e4000000 - 
00000000fec00000
[    0.000000] PM: Registered nosave memory: 00000000fec00000 - 
0000000100000000
[    0.000000] Allocating PCI resources starting at e4000000 (gap: 
e4000000:1ac00000)
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] PERCPU: Embedded 30 pages/cpu @ffff880028200000 s91416 r8192 
d23272 u524288
[    0.000000] pcpu-alloc: s91416 r8192 d23272 u524288 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total 
pages: 1548173
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: root=UUID=160351ee-
c9b0-4a72-9fd5-9962c8137a7e ro nosplash debug
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Initializing CPU#0
[    0.000000] xsave/xrstor: enabled xstate_bv 0x3, cntxt size 0x240
[    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: 6057076k/7077888k available (5318k kernel code, 787992k 
absent, 232820k reserved, 5695k data, 652k init)
[    0.000000] SLUB: Genslabs=14, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, 
Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] NR_IRQS:4352 nr_irqs:440
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] allocated 62914560 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want 
memory cgroups
[    0.000000] hpet clockevent registered
[    0.000000] Fast TSC calibration using PIT
[    0.000000] Detected 2833.355 MHz processor.
[    0.010005] Calibrating delay loop (skipped), value calculated using timer 
frequency.. 5666.71 BogoMIPS (lpj=28333550)
[    0.010102] Security Framework initialized
[    0.010145] SELinux:  Disabled at boot.
[    0.010690] Dentry cache hash table entries: 1048576 (order: 11, 8388608 
bytes)
[    0.015409] Inode-cache hash table entries: 524288 (order: 10, 4194304 
bytes)
[    0.017728] Mount-cache hash table entries: 256
[    0.017893] Initializing cgroup subsys ns
[    0.017935] Initializing cgroup subsys cpuacct
[    0.017975] Initializing cgroup subsys memory
[    0.018017] Initializing cgroup subsys freezer
[    0.018056] Initializing cgroup subsys net_cls
[    0.018112] CPU 0/0x0 -> Node 0
[    0.018149] CPU: Physical Processor ID: 0
[    0.018187] CPU: Processor Core ID: 0
[    0.018226] mce: CPU supports 6 MCE banks
[    0.018269] CPU0: Thermal monitoring enabled (TM2)
[    0.018309] using mwait in idle threads.
[    0.018347] Performance Events: Core2 events, Intel PMU driver.
[    0.018442] ... version:                2
[    0.018479] ... bit width:              40
[    0.018517] ... generic registers:      2
[    0.018555] ... value mask:             000000ffffffffff
[    0.018594] ... max period:             000000007fffffff
[    0.018632] ... fixed-purpose events:   3
[    0.018670] ... event mask:             0000000700000003
[    0.019692] ACPI: Core revision 20090903
[    0.027900] Setting APIC routing to flat
[    0.028240] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.127856] CPU0: Intel(R) Core(TM)2 Quad CPU    Q9550  @ 2.83GHz stepping 
0a
[    0.130000] Booting processor 1 APIC 0x3 ip 0x6000
[    0.130000] Initializing CPU#1
[    0.130000] CPU 1/0x3 -> Node 0
[    0.130000] CPU: Physical Processor ID: 0
[    0.130000] CPU: Processor Core ID: 3
[    0.130000] CPU1: Thermal monitoring enabled (TM2)
[    0.280090] CPU1: Intel(R) Core(TM)2 Quad CPU    Q9550  @ 2.83GHz stepping 
0a
[    0.290059] Booting processor 2 APIC 0x2 ip 0x6000
[    0.290050] Initializing CPU#2
[    0.290050] CPU 2/0x2 -> Node 0
[    0.290050] CPU: Physical Processor ID: 0
[    0.290050] CPU: Processor Core ID: 2
[    0.290050] CPU2: Thermal monitoring enabled (TM2)
[    0.450090] CPU2: Intel(R) Core(TM)2 Quad CPU    Q9550  @ 2.83GHz stepping 
0a
[    0.460059] Booting processor 3 APIC 0x1 ip 0x6000
[    0.460049] Initializing CPU#3
[    0.460049] CPU 3/0x1 -> Node 0
[    0.460049] CPU: Physical Processor ID: 0
[    0.460049] CPU: Processor Core ID: 1
[    0.460049] CPU3: Thermal monitoring enabled (TM2)
[    0.620088] CPU3: Intel(R) Core(TM)2 Quad CPU    Q9550  @ 2.83GHz stepping 
0a
[    0.630013] Brought up 4 CPUs
[    0.630052] Total of 4 processors activated (22664.82 BogoMIPS).
[    0.632719] regulator: core version 0.5
[    0.632778] Time: 21:22:24  Date: 12/07/09
[    0.632844] NET: Registered protocol family 16
[    0.632966] ACPI: bus type pci registered
[    0.633053] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 63
[    0.633094] PCI: MCFG area at e0000000 reserved in E820
[    0.634412] PCI: Using MMCONFIG at e0000000 - e3ffffff
[    0.634451] PCI: Using configuration type 1 for base access
[    0.635112] bio: create slab <bio-0> at 0
[    0.635613] ACPI: EC: Look up EC in DSDT
[    0.640352] ACPI: Interpreter enabled
[    0.640395] ACPI: (supports S0 S3 S4 S5)
[    0.640553] ACPI: Using IOAPIC for interrupt routing
[    0.644231] ACPI: No dock devices found.
[    0.644344] ACPI: PCI Root Bridge [PCI0] (0000:00)
[    0.644402] PCI: Scanning bus 0000:00
[    0.644445] pci 0000:00:00.0: found [8086:2e20] class 000600 header type 00
[    0.644503] pci 0000:00:00.0: calling quirk_resource_alignment+0x0/0x19f
[    0.644544] pci 0000:00:00.0: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.644597] pci 0000:00:01.0: found [8086:2e21] class 000604 header type 01
[    0.644651] pci 0000:00:01.0: calling quirk_resource_alignment+0x0/0x19f
[    0.644692] pci 0000:00:01.0: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.644741] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.644782] pci 0000:00:01.0: PME# disabled
[    0.644848] pci 0000:00:1a.0: found [8086:3a37] class 000c03 header type 00
[    0.644913] pci 0000:00:1a.0: reg 20 io port: [0xe100-0xe11f]
[    0.644962] pci 0000:00:1a.0: calling quirk_resource_alignment+0x0/0x19f
[    0.645003] pci 0000:00:1a.0: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.645064] pci 0000:00:1a.1: found [8086:3a38] class 000c03 header type 00
[    0.645128] pci 0000:00:1a.1: reg 20 io port: [0xe200-0xe21f]
[    0.645177] pci 0000:00:1a.1: calling quirk_resource_alignment+0x0/0x19f
[    0.645218] pci 0000:00:1a.1: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.645278] pci 0000:00:1a.2: found [8086:3a39] class 000c03 header type 00
[    0.645343] pci 0000:00:1a.2: reg 20 io port: [0xe000-0xe01f]
[    0.645391] pci 0000:00:1a.2: calling quirk_resource_alignment+0x0/0x19f
[    0.645432] pci 0000:00:1a.2: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.645498] pci 0000:00:1a.7: found [8086:3a3c] class 000c03 header type 00
[    0.645552] pci 0000:00:1a.7: reg 10 32bit mmio: [0xe9305000-0xe93053ff]
[    0.645617] pci 0000:00:1a.7: calling quirk_resource_alignment+0x0/0x19f
[    0.645658] pci 0000:00:1a.7: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.645723] pci 0000:00:1b.0: found [8086:3a3e] class 000403 header type 00
[    0.645777] pci 0000:00:1b.0: reg 10 64bit mmio: [0xe9300000-0xe9303fff]
[    0.645835] pci 0000:00:1b.0: calling quirk_resource_alignment+0x0/0x19f
[    0.645876] pci 0000:00:1b.0: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.645930] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.645972] pci 0000:00:1b.0: PME# disabled
[    0.646022] pci 0000:00:1c.0: found [8086:3a40] class 000604 header type 01
[    0.646080] pci 0000:00:1c.0: calling quirk_resource_alignment+0x0/0x19f
[    0.646121] pci 0000:00:1c.0: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.646178] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.646219] pci 0000:00:1c.0: PME# disabled
[    0.646272] pci 0000:00:1c.3: found [8086:3a46] class 000604 header type 01
[    0.646330] pci 0000:00:1c.3: calling quirk_resource_alignment+0x0/0x19f
[    0.646370] pci 0000:00:1c.3: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.646428] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[    0.646469] pci 0000:00:1c.3: PME# disabled
[    0.646520] pci 0000:00:1c.4: found [8086:3a48] class 000604 header type 01
[    0.646578] pci 0000:00:1c.4: calling quirk_resource_alignment+0x0/0x19f
[    0.646619] pci 0000:00:1c.4: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.646676] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    0.646717] pci 0000:00:1c.4: PME# disabled
[    0.646771] pci 0000:00:1d.0: found [8086:3a34] class 000c03 header type 00
[    0.646836] pci 0000:00:1d.0: reg 20 io port: [0xe300-0xe31f]
[    0.646885] pci 0000:00:1d.0: calling quirk_resource_alignment+0x0/0x19f
[    0.646926] pci 0000:00:1d.0: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.646986] pci 0000:00:1d.1: found [8086:3a35] class 000c03 header type 00
[    0.647051] pci 0000:00:1d.1: reg 20 io port: [0xe400-0xe41f]
[    0.647099] pci 0000:00:1d.1: calling quirk_resource_alignment+0x0/0x19f
[    0.647140] pci 0000:00:1d.1: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.647201] pci 0000:00:1d.2: found [8086:3a36] class 000c03 header type 00
[    0.647266] pci 0000:00:1d.2: reg 20 io port: [0xe500-0xe51f]
[    0.647314] pci 0000:00:1d.2: calling quirk_resource_alignment+0x0/0x19f
[    0.647355] pci 0000:00:1d.2: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.647420] pci 0000:00:1d.7: found [8086:3a3a] class 000c03 header type 00
[    0.647473] pci 0000:00:1d.7: reg 10 32bit mmio: [0xe9304000-0xe93043ff]
[    0.647538] pci 0000:00:1d.7: calling quirk_resource_alignment+0x0/0x19f
[    0.647579] pci 0000:00:1d.7: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.647641] pci 0000:00:1e.0: found [8086:244e] class 000604 header type 01
[    0.647700] pci 0000:00:1e.0: calling quirk_resource_alignment+0x0/0x19f
[    0.647740] pci 0000:00:1e.0: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.647802] pci 0000:00:1f.0: found [8086:3a18] class 000601 header type 00
[    0.647885] pci 0000:00:1f.0: calling quirk_resource_alignment+0x0/0x19f
[    0.647926] pci 0000:00:1f.0: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.647993] pci 0000:00:1f.2: found [8086:3a20] class 000101 header type 00
[    0.648046] pci 0000:00:1f.2: reg 10 io port: [0x00-0x07]
[    0.648088] pci 0000:00:1f.2: reg 14 io port: [0x00-0x03]
[    0.648130] pci 0000:00:1f.2: reg 18 io port: [0x00-0x07]
[    0.648172] pci 0000:00:1f.2: reg 1c io port: [0x00-0x03]
[    0.648214] pci 0000:00:1f.2: reg 20 io port: [0xf000-0xf00f]
[    0.648256] pci 0000:00:1f.2: reg 24 io port: [0xf100-0xf10f]
[    0.648302] pci 0000:00:1f.2: calling quirk_resource_alignment+0x0/0x19f
[    0.648343] pci 0000:00:1f.2: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.648403] pci 0000:00:1f.3: found [8086:3a30] class 000c05 header type 00
[    0.648452] pci 0000:00:1f.3: reg 10 64bit mmio: [0xe9306000-0xe93060ff]
[    0.648502] pci 0000:00:1f.3: reg 20 io port: [0x500-0x51f]
[    0.648549] pci 0000:00:1f.3: calling quirk_resource_alignment+0x0/0x19f
[    0.648590] pci 0000:00:1f.3: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.648642] pci 0000:00:1f.5: found [8086:3a26] class 000101 header type 00
[    0.648695] pci 0000:00:1f.5: reg 10 io port: [0xe700-0xe707]
[    0.648738] pci 0000:00:1f.5: reg 14 io port: [0xe800-0xe803]
[    0.648780] pci 0000:00:1f.5: reg 18 io port: [0xe900-0xe907]
[    0.648822] pci 0000:00:1f.5: reg 1c io port: [0xea00-0xea03]
[    0.648865] pci 0000:00:1f.5: reg 20 io port: [0xeb00-0xeb0f]
[    0.648907] pci 0000:00:1f.5: reg 24 io port: [0xec00-0xec0f]
[    0.648952] pci 0000:00:1f.5: calling quirk_resource_alignment+0x0/0x19f
[    0.648993] pci 0000:00:1f.5: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.649050] PCI: Fixups for bus 0000:00
[    0.649089] pci 0000:00:01.0: scanning behind bridge, config 010100, pass 0
[    0.649131] PCI: Scanning bus 0000:01
[    0.649177] pci 0000:01:00.0: found [10de:0402] class 000300 header type 00
[    0.649227] pci 0000:01:00.0: reg 10 32bit mmio: [0xe6000000-0xe6ffffff]
[    0.649273] pci 0000:01:00.0: reg 14 64bit mmio pref: 
[0xd0000000-0xdfffffff]
[    0.649319] pci 0000:01:00.0: reg 1c 64bit mmio: [0xe4000000-0xe5ffffff]
[    0.649362] pci 0000:01:00.0: reg 24 io port: [0xb000-0xb07f]
[    0.649404] pci 0000:01:00.0: reg 30 32bit mmio pref: [0x000000-0x01ffff]
[    0.649447] pci 0000:01:00.0: calling quirk_resource_alignment+0x0/0x19f
[    0.649529] PCI: Fixups for bus 0000:01
[    0.649568] pci 0000:00:01.0: bridge io port: [0xb000-0xbfff]
[    0.650002] pci 0000:00:01.0: bridge 32bit mmio: [0xe4000000-0xe7ffffff]
[    0.650650] pci 0000:00:01.0: bridge 64bit mmio pref: 
[0xd0000000-0xdfffffff]
[    0.650691] PCI: Bus scan for 0000:01 returning with max=01
[    0.650732] pci 0000:00:1c.0: scanning behind bridge, config 020200, pass 0
[    0.650779] PCI: Scanning bus 0000:02
[    0.650841] PCI: Fixups for bus 0000:02
[    0.650884] PCI: Bus scan for 0000:02 returning with max=02
[    0.650925] pci 0000:00:1c.3: scanning behind bridge, config 030300, pass 0
[    0.650968] PCI: Scanning bus 0000:03
[    0.651020] pci 0000:03:00.0: found [197b:2363] class 000101 header type 00
[    0.651072] pci 0000:03:00.0: calling quirk_jmicron_ata+0x0/0x140
[    0.651160] pci 0000:03:00.0: reg 24 32bit mmio: [0xe9000000-0xe9001fff]
[    0.651210] pci 0000:03:00.0: calling quirk_resource_alignment+0x0/0x19f
[    0.651274] pci 0000:03:00.0: PME# supported from D3hot
[    0.651316] pci 0000:03:00.0: PME# disabled
[    0.651378] pci 0000:03:00.1: found [197b:2363] class 000101 header type 00
[    0.651431] pci 0000:03:00.1: calling quirk_jmicron_ata+0x0/0x140
[    0.651480] pci 0000:03:00.1: reg 10 io port: [0xc000-0xc007]
[    0.651525] pci 0000:03:00.1: reg 14 io port: [0xc100-0xc103]
[    0.651571] pci 0000:03:00.1: reg 18 io port: [0xc200-0xc207]
[    0.651617] pci 0000:03:00.1: reg 1c io port: [0xc300-0xc303]
[    0.651662] pci 0000:03:00.1: reg 20 io port: [0xc400-0xc40f]
[    0.651719] pci 0000:03:00.1: calling quirk_resource_alignment+0x0/0x19f
[    0.651816] PCI: Fixups for bus 0000:03
[    0.651855] pci 0000:00:1c.3: bridge io port: [0xc000-0xcfff]
[    0.651896] pci 0000:00:1c.3: bridge 32bit mmio: [0xe9000000-0xe90fffff]
[    0.651940] PCI: Bus scan for 0000:03 returning with max=03
[    0.651981] pci 0000:00:1c.4: scanning behind bridge, config 040400, pass 0
[    0.652024] PCI: Scanning bus 0000:04
[    0.652076] pci 0000:04:00.0: found [10ec:8168] class 000200 header type 00
[    0.652135] pci 0000:04:00.0: reg 10 io port: [0xd000-0xd0ff]
[    0.652190] pci 0000:04:00.0: reg 18 64bit mmio pref: 
[0xe9110000-0xe9110fff]
[    0.652241] pci 0000:04:00.0: reg 20 64bit mmio pref: 
[0xe9100000-0xe910ffff]
[    0.652287] pci 0000:04:00.0: reg 30 32bit mmio pref: [0x000000-0x00ffff]
[    0.652331] pci 0000:04:00.0: calling quirk_resource_alignment+0x0/0x19f
[    0.652400] pci 0000:04:00.0: supports D1 D2
[    0.652438] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.652481] pci 0000:04:00.0: PME# disabled
[    0.652559] PCI: Fixups for bus 0000:04
[    0.652599] pci 0000:00:1c.4: bridge io port: [0xd000-0xdfff]
[    0.652640] pci 0000:00:1c.4: bridge 32bit mmio: [0xe8000000-0xe8ffffff]
[    0.652683] pci 0000:00:1c.4: bridge 64bit mmio pref: 
[0xe9100000-0xe91fffff]
[    0.652724] PCI: Bus scan for 0000:04 returning with max=04
[    0.652765] pci 0000:00:1e.0: scanning behind bridge, config 050500, pass 0
[    0.652807] PCI: Scanning bus 0000:05
[    0.652863] pci 0000:05:07.0: found [104c:8024] class 000c00 header type 00
[    0.652918] pci 0000:05:07.0: reg 10 32bit mmio: [0xe9204000-0xe92047ff]
[    0.652963] pci 0000:05:07.0: reg 14 32bit mmio: [0xe9200000-0xe9203fff]
[    0.653026] pci 0000:05:07.0: calling quirk_resource_alignment+0x0/0x19f
[    0.653078] pci 0000:05:07.0: supports D1 D2
[    0.653117] pci 0000:05:07.0: PME# supported from D0 D1 D2 D3hot
[    0.653158] pci 0000:05:07.0: PME# disabled
[    0.653225] PCI: Fixups for bus 0000:05
[    0.653263] pci 0000:00:1e.0: transparent bridge
[    0.653304] pci 0000:00:1e.0: bridge 32bit mmio: [0xe9200000-0xe92fffff]
[    0.653348] PCI: Bus scan for 0000:05 returning with max=05
[    0.653388] pci 0000:00:01.0: scanning behind bridge, config 010100, pass 1
[    0.653431] pci 0000:00:1c.0: scanning behind bridge, config 020200, pass 1
[    0.653474] pci 0000:00:1c.3: scanning behind bridge, config 030300, pass 1
[    0.653517] pci 0000:00:1c.4: scanning behind bridge, config 040400, pass 1
[    0.653561] pci 0000:00:1e.0: scanning behind bridge, config 050500, pass 1
[    0.653604] PCI: Bus scan for 0000:00 returning with max=05
[    0.653645] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.653784] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX0._PRT]
[    0.653865] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX3._PRT]
[    0.653949] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX4._PRT]
[    0.654028] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB0._PRT]
[    0.666430] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 *10 11 12 14 
15)
[    0.666890] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 11 12 14 
15) *0, disabled.
[    0.667404] ACPI: PCI Interrupt Link [LNKC] (IRQs *3 4 5 6 7 9 10 11 12 14 
15)
[    0.667863] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 *11 12 14 
15)
[    0.668322] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 11 12 14 
15) *0, disabled.
[    0.668835] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 *4 5 6 7 9 10 11 12 14 
15)
[    0.669294] ACPI: PCI Interrupt Link [LNK0] (IRQs 3 4 *5 6 7 9 10 11 12 14 
15)
[    0.669753] ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 6 *7 9 10 11 12 14 
15)
[    0.670217] vgaarb: device added: 
PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
[    0.670277] vgaarb: loaded
[    0.670386] SCSI subsystem initialized
[    0.670512] libata version 3.00 loaded.
[    0.670596] usbcore: registered new interface driver usbfs
[    0.670647] usbcore: registered new interface driver hub
[    0.670701] usbcore: registered new device driver usb
[    0.670822] ACPI: WMI: Mapper loaded
[    0.670860] PCI: Using ACPI for IRQ routing
[    0.671016] Bluetooth: Core ver 2.15
[    0.671072] NET: Registered protocol family 31
[    0.671110] Bluetooth: HCI device and connection manager initialized
[    0.671151] Bluetooth: HCI socket layer initialized
[    0.671190] NetLabel: Initializing
[    0.671227] NetLabel:  domain hash size = 128
[    0.671265] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.671311] NetLabel:  unlabeled traffic allowed by default
[    0.671364] HPET: 4 timers in total, 0 timers will be used for per-cpu 
timer
[    0.671409] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
[    0.671582] hpet0: 4 comparators, 64-bit 14.318180 MHz counter
[    0.690004] Switching to clocksource tsc
[    0.691273] pnp: PnP ACPI init
[    0.691317] ACPI: bus type pnp registered
[    0.693002] pnp: PnP ACPI: found 12 devices
[    0.693041] ACPI: ACPI bus type pnp unregistered
[    0.693084] system 00:01: ioport range 0x4d0-0x4d1 has been reserved
[    0.693125] system 00:01: ioport range 0x290-0x29f has been reserved
[    0.693165] system 00:01: ioport range 0x800-0x87f has been reserved
[    0.693206] system 00:01: ioport range 0x290-0x294 has been reserved
[    0.693246] system 00:01: ioport range 0x880-0x88f has been reserved
[    0.693287] system 00:01: ioport range 0x4c0-0x4ff could not be reserved
[    0.693330] system 00:08: ioport range 0x400-0x4bf has been reserved
[    0.693373] system 00:09: iomem range 0xe0000000-0xe3ffffff has been 
reserved
[    0.693416] system 00:0a: iomem range 0xccc00-0xcffff has been reserved
[    0.693457] system 00:0a: iomem range 0xf0000-0xf7fff could not be reserved
[    0.693498] system 00:0a: iomem range 0xf8000-0xfbfff could not be reserved
[    0.693539] system 00:0a: iomem range 0xfc000-0xfffff could not be reserved
[    0.693580] system 00:0a: iomem range 0xcfee0000-0xcfefffff could not be 
reserved
[    0.693629] system 00:0a: iomem range 0x0-0x9ffff could not be reserved
[    0.693669] system 00:0a: iomem range 0x100000-0xcfedffff could not be 
reserved
[    0.693718] system 00:0a: iomem range 0xfec00000-0xfec00fff could not be 
reserved
[    0.693767] system 00:0a: iomem range 0xfed10000-0xfed1dfff has been 
reserved
[    0.693808] system 00:0a: iomem range 0xfed20000-0xfed8ffff has been 
reserved
[    0.693849] system 00:0a: iomem range 0xfee00000-0xfee00fff has been 
reserved
[    0.693890] system 00:0a: iomem range 0xffb00000-0xffb7ffff has been 
reserved
[    0.693932] system 00:0a: iomem range 0xfff00000-0xffffffff has been 
reserved
[    0.693973] system 00:0a: iomem range 0xe0000-0xeffff has been reserved
[    0.698648] pci 0000:01:00.0: BAR 6: got res [0xe7000000-0xe701ffff] bus 
[0xe7000000-0xe701ffff] flags 0x27200
[    0.698699] pci 0000:00:01.0: PCI bridge, secondary bus 0000:01
[    0.698740] pci 0000:00:01.0:   IO window: 0xb000-0xbfff
[    0.698780] pci 0000:00:01.0:   MEM window: 0xe4000000-0xe7ffffff
[    0.698821] pci 0000:00:01.0:   PREFETCH window: 
0x000000d0000000-0x000000dfffffff
[    0.698870] pci 0000:00:1c.0: PCI bridge, secondary bus 0000:02
[    0.698911] pci 0000:00:1c.0:   IO window: 0x1000-0x1fff
[    0.698952] pci 0000:00:1c.0:   MEM window: 0xe9400000-0xe95fffff
[    0.698993] pci 0000:00:1c.0:   PREFETCH window: 
0x000000e9600000-0x000000e97fffff
[    0.699045] pci 0000:00:1c.3: PCI bridge, secondary bus 0000:03
[    0.699085] pci 0000:00:1c.3:   IO window: 0xc000-0xcfff
[    0.699126] pci 0000:00:1c.3:   MEM window: 0xe9000000-0xe90fffff
[    0.699168] pci 0000:00:1c.3:   PREFETCH window: 
0x000000e9800000-0x000000e99fffff
[    0.699220] pci 0000:04:00.0: BAR 6: got res [0xe9120000-0xe912ffff] bus 
[0xe9120000-0xe912ffff] flags 0x27200
[    0.699270] pci 0000:00:1c.4: PCI bridge, secondary bus 0000:04
[    0.699311] pci 0000:00:1c.4:   IO window: 0xd000-0xdfff
[    0.699352] pci 0000:00:1c.4:   MEM window: 0xe8000000-0xe8ffffff
[    0.699393] pci 0000:00:1c.4:   PREFETCH window: 
0x000000e9100000-0x000000e91fffff
[    0.699444] pci 0000:00:1e.0: PCI bridge, secondary bus 0000:05
[    0.699498] pci 0000:00:1e.0:   IO window: disabled
[    0.699539] pci 0000:00:1e.0:   MEM window: 0xe9200000-0xe92fffff
[    0.699581] pci 0000:00:1e.0:   PREFETCH window: disabled
[    0.699625]   alloc irq_desc for 16 on node -1
[    0.699663]   alloc kstat_irqs on node -1
[    0.699703] pci 0000:00:01.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.699751] pci 0000:00:01.0: setting latency timer to 64
[    0.699795] pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.699836] pci 0000:00:1c.0: setting latency timer to 64
[    0.699879]   alloc irq_desc for 19 on node -1
[    0.699918]   alloc kstat_irqs on node -1
[    0.699956] pci 0000:00:1c.3: PCI INT D -> GSI 19 (level, low) -> IRQ 19
[    0.699998] pci 0000:00:1c.3: setting latency timer to 64
[    0.700041] pci 0000:00:1c.4: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.700083] pci 0000:00:1c.4: setting latency timer to 64
[    0.700125] pci 0000:00:1e.0: setting latency timer to 64
[    0.700166] pci_bus 0000:00: resource 0 io:  [0x00-0xffff]
[    0.700205] pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffffffffffff]
[    0.700246] pci_bus 0000:01: resource 0 io:  [0xb000-0xbfff]
[    0.700285] pci_bus 0000:01: resource 1 mem: [0xe4000000-0xe7ffffff]
[    0.700326] pci_bus 0000:01: resource 2 pref mem [0xd0000000-0xdfffffff]
[    0.700366] pci_bus 0000:02: resource 0 io:  [0x1000-0x1fff]
[    0.701002] pci_bus 0000:02: resource 1 mem: [0xe9400000-0xe95fffff]
[    0.701042] pci_bus 0000:02: resource 2 pref mem [0xe9600000-0xe97fffff]
[    0.701083] pci_bus 0000:03: resource 0 io:  [0xc000-0xcfff]
[    0.701122] pci_bus 0000:03: resource 1 mem: [0xe9000000-0xe90fffff]
[    0.701163] pci_bus 0000:03: resource 2 pref mem [0xe9800000-0xe99fffff]
[    0.701203] pci_bus 0000:04: resource 0 io:  [0xd000-0xdfff]
[    0.701243] pci_bus 0000:04: resource 1 mem: [0xe8000000-0xe8ffffff]
[    0.701283] pci_bus 0000:04: resource 2 pref mem [0xe9100000-0xe91fffff]
[    0.701324] pci_bus 0000:05: resource 1 mem: [0xe9200000-0xe92fffff]
[    0.701364] pci_bus 0000:05: resource 3 io:  [0x00-0xffff]
[    0.701403] pci_bus 0000:05: resource 4 mem: [0x000000-0xffffffffffffffff]
[    0.701462] NET: Registered protocol family 2
[    0.701670] IP route cache hash table entries: 262144 (order: 9, 2097152 
bytes)
[    0.702574] TCP established hash table entries: 524288 (order: 11, 8388608 
bytes)
[    0.705993] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.706603] TCP: Hash tables configured (established 524288 bind 65536)
[    0.706644] TCP reno registered
[    0.706775] NET: Registered protocol family 1
[    0.706834] pci 0000:00:00.0: calling quirk_e100_interrupt+0x0/0x192
[    0.706876] pci 0000:00:00.0: calling quirk_cardbus_legacy+0x0/0x30
[    0.706917] pci 0000:00:00.0: calling quirk_usb_early_handoff+0x0/0x580
[    0.706959] pci 0000:00:00.0: calling pci_fixup_video+0x0/0xbd
[    0.707000] pci 0000:00:01.0: calling quirk_e100_interrupt+0x0/0x192
[    0.707041] pci 0000:00:01.0: calling quirk_cardbus_legacy+0x0/0x30
[    0.707081] pci 0000:00:01.0: calling quirk_usb_early_handoff+0x0/0x580
[    0.707122] pci 0000:00:01.0: calling pci_fixup_video+0x0/0xbd
[    0.707163] pci 0000:00:1a.0: calling quirk_e100_interrupt+0x0/0x192
[    0.707204] pci 0000:00:1a.0: calling quirk_cardbus_legacy+0x0/0x30
[    0.707244] pci 0000:00:1a.0: calling quirk_usb_early_handoff+0x0/0x580
[    0.707297] pci 0000:00:1a.0: calling pci_fixup_video+0x0/0xbd
[    0.707338] pci 0000:00:1a.1: calling quirk_e100_interrupt+0x0/0x192
[    0.707378] pci 0000:00:1a.1: calling quirk_cardbus_legacy+0x0/0x30
[    0.707419] pci 0000:00:1a.1: calling quirk_usb_early_handoff+0x0/0x580
[    0.707470] pci 0000:00:1a.1: calling pci_fixup_video+0x0/0xbd
[    0.707511] pci 0000:00:1a.2: calling quirk_e100_interrupt+0x0/0x192
[    0.707552] pci 0000:00:1a.2: calling quirk_cardbus_legacy+0x0/0x30
[    0.707592] pci 0000:00:1a.2: calling quirk_usb_early_handoff+0x0/0x580
[    0.707644] pci 0000:00:1a.2: calling pci_fixup_video+0x0/0xbd
[    0.707685] pci 0000:00:1a.7: calling quirk_e100_interrupt+0x0/0x192
[    0.707725] pci 0000:00:1a.7: calling quirk_cardbus_legacy+0x0/0x30
[    0.707766] pci 0000:00:1a.7: calling quirk_usb_early_handoff+0x0/0x580
[    0.707826] pci 0000:00:1a.7: calling pci_fixup_video+0x0/0xbd
[    0.707867] pci 0000:00:1b.0: calling quirk_e100_interrupt+0x0/0x192
[    0.707908] pci 0000:00:1b.0: calling quirk_cardbus_legacy+0x0/0x30
[    0.707948] pci 0000:00:1b.0: calling quirk_usb_early_handoff+0x0/0x580
[    0.707989] pci 0000:00:1b.0: calling pci_fixup_video+0x0/0xbd
[    0.708030] pci 0000:00:1c.0: calling quirk_e100_interrupt+0x0/0x192
[    0.708070] pci 0000:00:1c.0: calling quirk_cardbus_legacy+0x0/0x30
[    0.708111] pci 0000:00:1c.0: calling quirk_usb_early_handoff+0x0/0x580
[    0.708151] pci 0000:00:1c.0: calling pci_fixup_video+0x0/0xbd
[    0.708192] pci 0000:00:1c.3: calling quirk_e100_interrupt+0x0/0x192
[    0.708232] pci 0000:00:1c.3: calling quirk_cardbus_legacy+0x0/0x30
[    0.708273] pci 0000:00:1c.3: calling quirk_usb_early_handoff+0x0/0x580
[    0.708314] pci 0000:00:1c.3: calling pci_fixup_video+0x0/0xbd
[    0.708354] pci 0000:00:1c.4: calling quirk_e100_interrupt+0x0/0x192
[    0.708395] pci 0000:00:1c.4: calling quirk_cardbus_legacy+0x0/0x30
[    0.708435] pci 0000:00:1c.4: calling quirk_usb_early_handoff+0x0/0x580
[    0.708476] pci 0000:00:1c.4: calling pci_fixup_video+0x0/0xbd
[    0.708517] pci 0000:00:1d.0: calling quirk_e100_interrupt+0x0/0x192
[    0.708558] pci 0000:00:1d.0: calling quirk_cardbus_legacy+0x0/0x30
[    0.708598] pci 0000:00:1d.0: calling quirk_usb_early_handoff+0x0/0x580
[    0.708649] pci 0000:00:1d.0: calling pci_fixup_video+0x0/0xbd
[    0.708690] pci 0000:00:1d.1: calling quirk_e100_interrupt+0x0/0x192
[    0.708731] pci 0000:00:1d.1: calling quirk_cardbus_legacy+0x0/0x30
[    0.708771] pci 0000:00:1d.1: calling quirk_usb_early_handoff+0x0/0x580
[    0.708822] pci 0000:00:1d.1: calling pci_fixup_video+0x0/0xbd
[    0.708864] pci 0000:00:1d.2: calling quirk_e100_interrupt+0x0/0x192
[    0.708904] pci 0000:00:1d.2: calling quirk_cardbus_legacy+0x0/0x30
[    0.708944] pci 0000:00:1d.2: calling quirk_usb_early_handoff+0x0/0x580
[    0.708996] pci 0000:00:1d.2: calling pci_fixup_video+0x0/0xbd
[    0.709037] pci 0000:00:1d.7: calling quirk_e100_interrupt+0x0/0x192
[    0.709077] pci 0000:00:1d.7: calling quirk_cardbus_legacy+0x0/0x30
[    0.709118] pci 0000:00:1d.7: calling quirk_usb_early_handoff+0x0/0x580
[    0.709183] pci 0000:00:1d.7: calling pci_fixup_video+0x0/0xbd
[    0.709224] pci 0000:00:1e.0: calling quirk_e100_interrupt+0x0/0x192
[    0.709265] pci 0000:00:1e.0: calling quirk_cardbus_legacy+0x0/0x30
[    0.709306] pci 0000:00:1e.0: calling quirk_usb_early_handoff+0x0/0x580
[    0.709346] pci 0000:00:1e.0: calling pci_fixup_video+0x0/0xbd
[    0.709387] pci 0000:00:1f.0: calling quirk_e100_interrupt+0x0/0x192
[    0.709428] pci 0000:00:1f.0: calling quirk_cardbus_legacy+0x0/0x30
[    0.709468] pci 0000:00:1f.0: calling quirk_usb_early_handoff+0x0/0x580
[    0.709536] pci 0000:00:1f.0: calling pci_fixup_video+0x0/0xbd
[    0.709577] pci 0000:00:1f.2: calling quirk_e100_interrupt+0x0/0x192
[    0.709618] pci 0000:00:1f.2: calling quirk_cardbus_legacy+0x0/0x30
[    0.709658] pci 0000:00:1f.2: calling quirk_usb_early_handoff+0x0/0x580
[    0.709699] pci 0000:00:1f.2: calling pci_fixup_video+0x0/0xbd
[    0.709750] pci 0000:00:1f.3: calling quirk_e100_interrupt+0x0/0x192
[    0.709791] pci 0000:00:1f.3: calling quirk_cardbus_legacy+0x0/0x30
[    0.709831] pci 0000:00:1f.3: calling quirk_usb_early_handoff+0x0/0x580
[    0.709872] pci 0000:00:1f.3: calling pci_fixup_video+0x0/0xbd
[    0.709913] pci 0000:00:1f.5: calling quirk_e100_interrupt+0x0/0x192
[    0.709954] pci 0000:00:1f.5: calling quirk_cardbus_legacy+0x0/0x30
[    0.709994] pci 0000:00:1f.5: calling quirk_usb_early_handoff+0x0/0x580
[    0.710035] pci 0000:00:1f.5: calling pci_fixup_video+0x0/0xbd
[    0.710075] pci 0000:01:00.0: calling nv_msi_ht_cap_quirk_leaf+0x0/0xd
[    0.710122] pci 0000:01:00.0: calling quirk_cardbus_legacy+0x0/0x30
[    0.710163] pci 0000:01:00.0: calling quirk_usb_early_handoff+0x0/0x580
[    0.710203] pci 0000:01:00.0: calling pci_fixup_video+0x0/0xbd
[    0.710244] pci 0000:01:00.0: Boot video device
[    0.710284] pci 0000:03:00.0: calling quirk_cardbus_legacy+0x0/0x30
[    0.710324] pci 0000:03:00.0: calling quirk_usb_early_handoff+0x0/0x580
[    0.710365] pci 0000:03:00.0: calling pci_fixup_video+0x0/0xbd
[    0.710405] pci 0000:03:00.1: calling quirk_cardbus_legacy+0x0/0x30
[    0.710446] pci 0000:03:00.1: calling quirk_usb_early_handoff+0x0/0x580
[    0.710486] pci 0000:03:00.1: calling pci_fixup_video+0x0/0xbd
[    0.710527] pci 0000:04:00.0: calling quirk_cardbus_legacy+0x0/0x30
[    0.710567] pci 0000:04:00.0: calling quirk_usb_early_handoff+0x0/0x580
[    0.710608] pci 0000:04:00.0: calling pci_fixup_video+0x0/0xbd
[    0.710649] pci 0000:05:07.0: calling quirk_cardbus_legacy+0x0/0x30
[    0.710689] pci 0000:05:07.0: calling quirk_usb_early_handoff+0x0/0x580
[    0.710730] pci 0000:05:07.0: calling pci_fixup_video+0x0/0xbd
[    0.710809] Trying to unpack rootfs image as initramfs...
[    1.812734] Freeing initrd memory: 65134k freed
[    1.843111] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    1.843156] Placing 64MB software IO TLB between ffff880020000000 - 
ffff880024000000
[    1.843205] software IO TLB at phys 0x20000000 - 0x24000000
[    1.843519] Scanning for low memory corruption every 60 seconds
[    1.843700] audit: initializing netlink socket (disabled)
[    1.843753] type=2000 audit(1260220944.840:1): initialized
[    1.854067] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    1.855065] VFS: Disk quotas dquot_6.5.2
[    1.855139] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    1.855555] fuse init (API version 7.13)
[    1.855645] msgmni has been set to 11957
[    1.855869] alg: No test for stdrng (krng)
[    1.855914] io scheduler noop registered
[    1.855952] io scheduler anticipatory registered
[    1.855990] io scheduler deadline registered
[    1.856051] io scheduler cfq registered (default)
[    1.856173]   alloc irq_desc for 24 on node -1
[    1.856212]   alloc kstat_irqs on node -1
[    1.856256] pcieport 0000:00:01.0: irq 24 for MSI/MSI-X
[    1.856298] pcieport 0000:00:01.0: setting latency timer to 64
[    1.856405]   alloc irq_desc for 25 on node -1
[    1.856443]   alloc kstat_irqs on node -1
[    1.856485] pcieport 0000:00:1c.0: irq 25 for MSI/MSI-X
[    1.856528] pcieport 0000:00:1c.0: setting latency timer to 64
[    1.856649]   alloc irq_desc for 26 on node -1
[    1.856687]   alloc kstat_irqs on node -1
[    1.856729] pcieport 0000:00:1c.3: irq 26 for MSI/MSI-X
[    1.856772] pcieport 0000:00:1c.3: setting latency timer to 64
[    1.856893]   alloc irq_desc for 27 on node -1
[    1.856931]   alloc kstat_irqs on node -1
[    1.856973] pcieport 0000:00:1c.4: irq 27 for MSI/MSI-X
[    1.857016] pcieport 0000:00:1c.4: setting latency timer to 64
[    1.857114] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    1.857219] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    1.857366] input: Power Button as 
/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    1.857417] ACPI: Power Button [PWRB]
[    1.857496] input: Power Button as 
/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    1.857544] ACPI: Power Button [PWRF]
[    1.857951] ACPI: SSDT 00000000cfee7ad0 0022A (v01  PmRef  Cpu0Ist 00003000 
INTL 20040311)
[    1.858207] Marking TSC unstable due to TSC halts in idle
[    1.858274] processor LNXCPU:00: registered as cooling_device0
[    1.858490] ACPI: SSDT 00000000cfee7f90 00152 (v01  PmRef  Cpu1Ist 00003000 
INTL 20040311)
[    1.858812] ACPI Error (psparse-0537): Method parse/execution failed 
[\_PR_.CPU1._PDC] (Node ffff8801a9048f40), AE_ALREADY_EXISTS
[    1.858946] ACPI: Marking method _PDC as Serialized because of 
AE_ALREADY_EXISTS error
[    1.859099] Switching to clocksource hpet
[    1.859287] processor LNXCPU:01: registered as cooling_device1
[    1.859530] ACPI: SSDT 00000000cfee80f0 00152 (v01  PmRef  Cpu2Ist 00003000 
INTL 20040311)
[    1.859851] ACPI Error (psparse-0537): Method parse/execution failed 
[\_PR_.CPU2._PDC] (Node ffff8801a9048fc0), AE_ALREADY_EXISTS
[    1.859991] ACPI: Marking method _PDC as Serialized because of 
AE_ALREADY_EXISTS error
[    1.860227] processor LNXCPU:02: registered as cooling_device2
[    1.860434] ACPI: SSDT 00000000cfee8250 00152 (v01  PmRef  Cpu3Ist 00003000 
INTL 20040311)
[    1.860756] ACPI Error (psparse-0537): Method parse/execution failed 
[\_PR_.CPU3._PDC] (Node ffff8801a904f040), AE_ALREADY_EXISTS
[    1.860890] ACPI: Marking method _PDC as Serialized because of 
AE_ALREADY_EXISTS error
[    1.861733] processor LNXCPU:03: registered as cooling_device3
[    1.864013] Linux agpgart interface v0.103
[    1.864057] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    1.864930] brd: module loaded
[    1.865271] loop: module loaded
[    1.865349] input: Macintosh mouse button emulation as 
/devices/virtual/input/input2
[    1.865455] ahci 0000:03:00.0: version 3.0
[    1.865504] ahci 0000:03:00.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
[    1.883786] ahci 0000:03:00.0: AHCI 0001.0000 32 slots 2 ports 3 Gbps 0x3 
impl SATA mode
[    1.883838] ahci 0000:03:00.0: flags: 64bit ncq pm led clo pmp pio slum 
part 
[    1.883888] ahci 0000:03:00.0: setting latency timer to 64
[    1.884054] scsi0 : ahci
[    1.884139] scsi1 : ahci
[    1.884229] ata1: SATA max UDMA/133 abar m8192@0xe9000000 port 0xe9000100 
irq 19
[    1.884279] ata2: SATA max UDMA/133 abar m8192@0xe9000000 port 0xe9000180 
irq 19
[    2.230026] ata1: SATA link down (SStatus 0 SControl 300)
[    2.600025] ata2: SATA link down (SStatus 0 SControl 300)
[    2.620049] ata_piix 0000:00:1f.2: version 2.13
[    2.620096] ata_piix 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 
19
[    2.620145] ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
[    2.620342] ata_piix 0000:00:1f.2: setting latency timer to 64
[    2.620427] scsi2 : ata_piix
[    2.620500] scsi3 : ata_piix
[    2.621072] ata3: SATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xf000 irq 14
[    2.621115] ata4: SATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xf008 irq 15
[    3.480056] ata3.00: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    3.480113] ata3.01: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    3.546220] ata3.00: HPA detected: current 1953523055, native 1953525168
[    3.546266] ata3.00: ATA-8: ST31000528AS, CC34, max UDMA/133
[    3.546312] ata3.00: 1953523055 sectors, multi 16: LBA48 NCQ (depth 0/32)
[    3.546507] ata3.01: ATA-7: ST3300831AS, 3.02, max UDMA/133
[    3.546549] ata3.01: 586072368 sectors, multi 16: LBA48 NCQ (depth 0/32)
[    3.606228] ata3.00: configured for UDMA/133
[    3.620303] ata3.01: configured for UDMA/133
[    3.620432] scsi 2:0:0:0: Direct-Access     ATA      ST31000528AS     CC34 
PQ: 0 ANSI: 5
[    3.620540] sd 2:0:0:0: [sda] 1953523055 512-byte logical blocks: (1.00 
TB/931 GiB)
[    3.620617] sd 2:0:0:0: [sda] Write Protect is off
[    3.620656] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    3.620710] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, 
doesn't support DPO or FUA
[    3.620842]  sda: sda1 sda2 < sda5 sda6 sda7 sda8 sda9 >
[    3.709735] sd 2:0:0:0: [sda] Attached SCSI disk
[    3.709803] sd 2:0:0:0: Attached scsi generic sg0 type 0
[    3.709883] scsi 2:0:1:0: Direct-Access     ATA      ST3300831AS      3.02 
PQ: 0 ANSI: 5
[    3.709983] sd 2:0:1:0: [sdb] 586072368 512-byte logical blocks: (300 
GB/279 GiB)
[    3.710062] sd 2:0:1:0: [sdb] Write Protect is off
[    3.710101] sd 2:0:1:0: [sdb] Mode Sense: 00 3a 00 00
[    3.710154] sd 2:0:1:0: [sdb] Write cache: enabled, read cache: enabled, 
doesn't support DPO or FUA
[    3.710276]  sdb: sdb1
[    3.733490] sd 2:0:1:0: [sdb] Attached SCSI disk
[    3.733553] sd 2:0:1:0: Attached scsi generic sg1 type 0
[    4.590055] ata4.00: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    4.590112] ata4.01: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    4.630289] ata4.00: ATA-8: SAMSUNG HD501LJ, CR100-11, max UDMA7
[    4.630332] ata4.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 0/32)
[    4.630394] ata4.01: ATAPI: HL-DT-STDVD-RAM GH22NS30, 1.01, max UDMA/100
[    4.650303] ata4.00: configured for UDMA/133
[    4.690193] ata4.01: configured for UDMA/100
[    4.690568] scsi 3:0:0:0: Direct-Access     ATA      SAMSUNG HD501LJ  CR10 
PQ: 0 ANSI: 5
[    4.690686] sd 3:0:0:0: [sdc] 976773168 512-byte logical blocks: (500 
GB/465 GiB)
[    4.690761] sd 3:0:0:0: [sdc] Write Protect is off
[    4.690801] sd 3:0:0:0: [sdc] Mode Sense: 00 3a 00 00
[    4.690853] sd 3:0:0:0: [sdc] Write cache: enabled, read cache: enabled, 
doesn't support DPO or FUA
[    4.690972]  sdc: sdc2 < sdc5 sdc6 sdc7 > sdc3
[    4.771287] sd 3:0:0:0: [sdc] Attached SCSI disk
[    4.771349] sd 3:0:0:0: Attached scsi generic sg2 type 0
[    4.772662] scsi 3:0:1:0: CD-ROM            HL-DT-ST DVD-RAM GH22NS30 1.01 
PQ: 0 ANSI: 5
[    4.776309] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 
cdda tray
[    4.776361] Uniform CD-ROM driver Revision: 3.20
[    4.776469] sr 3:0:1:0: Attached scsi CD-ROM sr0
[    4.776532] sr 3:0:1:0: Attached scsi generic sg3 type 5
[    4.776585] ata_piix 0000:00:1f.5: PCI INT B -> GSI 19 (level, low) -> IRQ 
19
[    4.776628] ata_piix 0000:00:1f.5: MAP [ P0 -- P1 -- ]
[    4.776823] ata_piix 0000:00:1f.5: setting latency timer to 64
[    4.776889] scsi4 : ata_piix
[    4.776959] scsi5 : ata_piix
[    4.777364] ata5: SATA max UDMA/133 cmd 0xe700 ctl 0xe800 bmdma 0xeb00 irq 
19
[    4.777407] ata6: SATA max UDMA/133 cmd 0xe900 ctl 0xea00 bmdma 0xeb08 irq 
19
[    5.130659] ata5: SATA link down (SStatus 0 SControl 300)
[    5.490657] ata6: SATA link down (SStatus 0 SControl 300)
[    5.490918] pata_jmicron 0000:03:00.1: enabling device (0000 -> 0001)
[    5.490961] pata_jmicron 0000:03:00.1: PCI INT B -> GSI 16 (level, low) -> 
IRQ 16
[    5.491026] pata_jmicron 0000:03:00.1: enabling bus mastering
[    5.491069] pata_jmicron 0000:03:00.1: setting latency timer to 64
[    5.491147] scsi6 : pata_jmicron
[    5.491217] scsi7 : pata_jmicron
[    5.491729] ata7: PATA max UDMA/100 cmd 0xc000 ctl 0xc100 bmdma 0xc400 irq 
16
[    5.491771] ata8: PATA max UDMA/100 cmd 0xc200 ctl 0xc300 bmdma 0xc408 irq 
16
[    5.821774] Fixed MDIO Bus: probed
[    5.821834] PPP generic driver version 2.4.2
[    5.821914] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    5.821965]   alloc irq_desc for 18 on node -1
[    5.822004]   alloc kstat_irqs on node -1
[    5.822044] ehci_hcd 0000:00:1a.7: PCI INT C -> GSI 18 (level, low) -> IRQ 
18
[    5.822090] ehci_hcd 0000:00:1a.7: setting latency timer to 64
[    5.822131] ehci_hcd 0000:00:1a.7: EHCI Host Controller
[    5.822198] ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus 
number 1
[    5.826136] ehci_hcd 0000:00:1a.7: cache line size of 32 is not supported
[    5.826183] ehci_hcd 0000:00:1a.7: irq 18, io mem 0xe9305000
[    5.850012] ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00
[    5.850124] usb usb1: configuration #1 chosen from 1 choice
[    5.850186] hub 1-0:1.0: USB hub found
[    5.850227] hub 1-0:1.0: 6 ports detected
[    5.850306]   alloc irq_desc for 23 on node -1
[    5.850344]   alloc kstat_irqs on node -1
[    5.850384] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 
23
[    5.850430] ehci_hcd 0000:00:1d.7: setting latency timer to 64
[    5.850470] ehci_hcd 0000:00:1d.7: EHCI Host Controller
[    5.850533] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus 
number 2
[    5.854488] ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported
[    5.854536] ehci_hcd 0000:00:1d.7: irq 23, io mem 0xe9304000
[    5.870012] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[    5.870103] usb usb2: configuration #1 chosen from 1 choice
[    5.870173] hub 2-0:1.0: USB hub found
[    5.870214] hub 2-0:1.0: 6 ports detected
[    5.870290] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    5.870339] uhci_hcd: USB Universal Host Controller Interface driver
[    5.870410] uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 
16
[    5.870453] uhci_hcd 0000:00:1a.0: setting latency timer to 64
[    5.870493] uhci_hcd 0000:00:1a.0: UHCI Host Controller
[    5.870554] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus 
number 3
[    5.870620] uhci_hcd 0000:00:1a.0: irq 16, io base 0x0000e100
[    5.870708] usb usb3: configuration #1 chosen from 1 choice
[    5.870765] hub 3-0:1.0: USB hub found
[    5.870806] hub 3-0:1.0: 2 ports detected
[    5.870871]   alloc irq_desc for 21 on node -1
[    5.870910]   alloc kstat_irqs on node -1
[    5.870949] uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 
21
[    5.870992] uhci_hcd 0000:00:1a.1: setting latency timer to 64
[    5.871033] uhci_hcd 0000:00:1a.1: UHCI Host Controller
[    5.871092] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus 
number 4
[    5.871163] uhci_hcd 0000:00:1a.1: irq 21, io base 0x0000e200
[    5.871249] usb usb4: configuration #1 chosen from 1 choice
[    5.871306] hub 4-0:1.0: USB hub found
[    5.871347] hub 4-0:1.0: 2 ports detected
[    5.871413] uhci_hcd 0000:00:1a.2: PCI INT C -> GSI 18 (level, low) -> IRQ 
18
[    5.871456] uhci_hcd 0000:00:1a.2: setting latency timer to 64
[    5.871496] uhci_hcd 0000:00:1a.2: UHCI Host Controller
[    5.871552] uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus 
number 5
[    5.871617] uhci_hcd 0000:00:1a.2: irq 18, io base 0x0000e000
[    5.871706] usb usb5: configuration #1 chosen from 1 choice
[    5.871760] hub 5-0:1.0: USB hub found
[    5.871800] hub 5-0:1.0: 2 ports detected
[    5.871867] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 
23
[    5.871911] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[    5.871951] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[    5.872007] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus 
number 6
[    5.872072] uhci_hcd 0000:00:1d.0: irq 23, io base 0x0000e300
[    5.872159] usb usb6: configuration #1 chosen from 1 choice
[    5.872214] hub 6-0:1.0: USB hub found
[    5.872256] hub 6-0:1.0: 2 ports detected
[    5.872323] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 
19
[    5.872367] uhci_hcd 0000:00:1d.1: setting latency timer to 64
[    5.872407] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[    5.872470] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus 
number 7
[    5.872535] uhci_hcd 0000:00:1d.1: irq 19, io base 0x0000e400
[    5.872623] usb usb7: configuration #1 chosen from 1 choice
[    5.873275] hub 7-0:1.0: USB hub found
[    5.873317] hub 7-0:1.0: 2 ports detected
[    5.873385] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 
18
[    5.873428] uhci_hcd 0000:00:1d.2: setting latency timer to 64
[    5.873468] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[    5.873524] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus 
number 8
[    5.873590] uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000e500
[    5.873678] usb usb8: configuration #1 chosen from 1 choice
[    5.873732] hub 8-0:1.0: USB hub found
[    5.873772] hub 8-0:1.0: 2 ports detected
[    5.873869] PNP: No PS/2 controller found. Probing ports directly.
[    5.874253] serio: i8042 KBD port at 0x60,0x64 irq 1
[    5.874297] serio: i8042 AUX port at 0x60,0x64 irq 12
[    5.874418] mice: PS/2 mouse device common for all mice
[    5.874499] Driver 'rtc_cmos' needs updating - please use bus_type methods
[    5.874565] rtc_cmos 00:04: RTC can wake from S4
[    5.874623] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
[    5.874681] rtc0: alarms up to one month, 242 bytes nvram, hpet irqs
[    5.874797] device-mapper: uevent: version 1.0.3
[    5.874884] device-mapper: ioctl: 4.15.0-ioctl (2009-04-01) initialised: 
dm-devel@redhat.com
[    5.875013] device-mapper: multipath: version 1.1.0 loaded
[    5.875053] device-mapper: multipath round-robin: version 1.0.0 loaded
[    5.875353] cpuidle: using governor ladder
[    5.875544] cpuidle: using governor menu
[    5.875821] TCP cubic registered
[    5.875954] NET: Registered protocol family 10
[    5.876293] lo: Disabled Privacy Extensions
[    5.876518] NET: Registered protocol family 17
[    5.876567] Bluetooth: L2CAP ver 2.14
[    5.876605] Bluetooth: L2CAP socket layer initialized
[    5.876644] Bluetooth: SCO (Voice Link) ver 0.6
[    5.876682] Bluetooth: SCO socket layer initialized
[    5.876736] Bluetooth: RFCOMM TTY layer initialized
[    5.876775] Bluetooth: RFCOMM socket layer initialized
[    5.876814] Bluetooth: RFCOMM ver 1.11
[    5.882144] PM: Resume from disk failed.
[    5.882194] registered taskstats version 1
[    5.882564]   Magic number: 5:613:398
[    5.882699] rtc_cmos 00:04: setting system clock to 2009-12-07 21:22:29 UTC 
(1260220949)
[    5.882755] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    5.882794] EDD information not available.
[    5.882873] Freeing unused kernel memory: 652k freed
[    5.883017] Write protecting the kernel read-only data: 10240k
[    5.883246] Freeing unused kernel memory: 808k freed
[    5.883550] Freeing unused kernel memory: 1764k freed
[    5.976979] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    5.977040] r8169 0000:04:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    5.977087] r8169 0000:04:00.0: enabling Mem-Wr-Inval
[    5.977167] r8169 0000:04:00.0: setting latency timer to 64
[    5.977247]   alloc irq_desc for 28 on node -1
[    5.977291]   alloc kstat_irqs on node -1
[    5.977341] r8169 0000:04:00.0: irq 28 for MSI/MSI-X
[    5.977778] eth0: RTL8168c/8111c at 0xffffc90000c5c000, 00:1f:d0:9d:27:af, 
XID 1c4000c0 IRQ 28
[    5.980983] Floppy drive(s): fd0 is 1.44M
[    6.005636] ohci1394 0000:05:07.0: PCI INT A -> GSI 23 (level, low) -> IRQ 
23
[    6.006235] FDC 0 is a post-1991 82077
[    6.063833] ohci1394: fw-host0: OHCI-1394 1.1 (PCI): IRQ=[23]  
MMIO=[e9204000-e92047ff]  Max Packet=[2048]  IR/IT contexts=[4/8]
[    6.458065] kjournald starting.  Commit interval 5 seconds
[    6.458075] EXT3-fs: mounted filesystem with writeback data mode.
[    6.810046] usb 3-1: new full speed USB device using uhci_hcd and address 2
[    7.106807] usb 3-1: configuration #1 chosen from 1 choice
[    7.390029] usb 5-1: new low speed USB device using uhci_hcd and address 2
[    7.390128] ieee1394: Host added: ID:BUS[0-00:1023]  GUID[007c2d6400001fd0]
[    7.562823] usb 5-1: configuration #1 chosen from 1 choice
[    7.840038] usb 5-2: new full speed USB device using uhci_hcd and address 3
[    8.019777] usb 5-2: configuration #1 chosen from 1 choice
[    8.300039] usb 8-1: new full speed USB device using uhci_hcd and address 2
[    8.476735] usb 8-1: configuration #1 chosen from 1 choice
[    8.478696] hub 8-1:1.0: USB hub found
[    8.480677] hub 8-1:1.0: 4 ports detected
[    8.760029] usb 8-2: new low speed USB device using uhci_hcd and address 3
[    8.938728] usb 8-2: configuration #1 chosen from 1 choice
[    9.021674] usb 8-1.4: new low speed USB device using uhci_hcd and address 
4
[    9.163725] usb 8-1.4: configuration #1 chosen from 1 choice
[   11.782064] udev: starting version 147
[   12.299406] usbcore: registered new interface driver hiddev
[   12.316947] input: Logitech USB RECEIVER as 
/devices/pci0000:00/0000:00:1d.2/usb8/8-2/8-2:1.0/input/input3
[   12.317025] generic-usb 0003:046D:C50E.0001: input,hidraw0: USB HID v1.11 
Mouse [Logitech USB RECEIVER] on usb-0000:00:1d.2-2/input0
[   12.330897] input: CHESEN PS2 to USB Converter as 
/devices/pci0000:00/0000:00:1d.2/usb8/8-1/8-1.4/8-1.4:1.0/input/input4
[   12.330934] generic-usb 0003:0A81:0205.0002: input,hidraw1: USB HID v1.10 
Keyboard [CHESEN PS2 to USB Converter] on usb-0000:00:1d.2-1.4/input0
[   12.361985] input: CHESEN PS2 to USB Converter as 
/devices/pci0000:00/0000:00:1d.2/usb8/8-1/8-1.4/8-1.4:1.1/input/input5
[   12.362100] generic-usb 0003:0A81:0205.0003: input,hidraw2: USB HID v1.10 
Mouse [CHESEN PS2 to USB Converter] on usb-0000:00:1d.2-1.4/input1
[   12.362124] usbcore: registered new interface driver usbhid
[   12.362148] usbhid: v2.6:USB HID core driver
[   12.529906] lp: driver loaded but no devices found
[   12.602382] ip_tables: (C) 2000-2006 Netfilter Core Team
[   13.283068] nvidia: module license 'NVIDIA' taints kernel.
[   13.283071] Disabling lock debugging due to kernel taint
[   13.644907]   alloc irq_desc for 22 on node -1
[   13.644910]   alloc kstat_irqs on node -1
[   13.644918] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 
22
[   13.645025] HDA Intel 0000:00:1b.0: setting latency timer to 64
[   13.740059] nvidia 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[   13.740065] nvidia 0000:01:00.0: setting latency timer to 64
[   13.740190] NVRM: loading NVIDIA UNIX x86_64 Kernel Module  185.18.36  Fri 
Aug 14 17:35:21 PDT 2009
[   13.798095] input: HDA Digital PCBeep as 
/devices/pci0000:00/0000:00:1b.0/input/input6
[   13.879985] usbcore: registered new interface driver snd-usb-audio
[   14.126815] Adding 6562544k swap on /dev/mapper/cryptoswap.  Priority:-1 
extents:1 across:6562544k 
[   15.530195] EXT3 FS on sda8, internal journal
[   15.906396] r8169: eth0: link up
[   15.906398] r8169: eth0: link up
[   16.308462] kjournald starting.  Commit interval 5 seconds
[   16.308468] EXT3-fs: mounted filesystem with writeback data mode.
[   16.347904] kjournald starting.  Commit interval 5 seconds
[   16.348154] EXT3 FS on sda6, internal journal
[   16.348156] EXT3-fs: mounted filesystem with writeback data mode.
[   16.522213] kjournald starting.  Commit interval 5 seconds
[   16.522219] EXT3-fs: mounted filesystem with writeback data mode.
[   16.542184] kjournald starting.  Commit interval 5 seconds
[   16.542520] EXT3 FS on sdc6, internal journal
[   16.542522] EXT3-fs: mounted filesystem with writeback data mode.
[   17.720700] RPC: Registered udp transport module.
[   17.720703] RPC: Registered tcp transport module.
[   17.720704] RPC: Registered tcp NFSv4.1 backchannel transport module.
[   17.891520] ppdev: user-space parallel port driver
[   18.340322] svc: failed to register lockdv1 RPC service (errno 97).
[   25.734557] kjournald starting.  Commit interval 5 seconds
[   25.734568] EXT3-fs warning: maximal mount count reached, running e2fsck is 
recommended
[   25.750204] EXT3 FS on dm-1, internal journal
[   25.750209] EXT3-fs: mounted filesystem with writeback data mode.
[   26.792535] eth0: no IPv6 routers present
[   28.008085] CPUFREQ: Per core ondemand sysfs interface is deprecated - 
up_threshold
-----------------------------------------------------------------------------


Volker

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [BISECTED, REGRESSION] Successful resume from suspend but freezes after I/O
  2009-12-07 20:36       ` Volker Lanz
@ 2009-12-07 22:01         ` Yinghai Lu
  2009-12-08  0:07           ` Volker Lanz
  2009-12-07 23:05         ` Yinghai Lu
  1 sibling, 1 reply; 15+ messages in thread
From: Yinghai Lu @ 2009-12-07 22:01 UTC (permalink / raw)
  To: Volker Lanz; +Cc: linux-kernel, mingo

Volker Lanz wrote:
> On Monday 07 December 2009 20:23:08 Yinghai Lu wrote:
>> Volker Lanz wrote:
>>> On Monday 07 December 2009 19:24:02 Yinghai Lu wrote:
>>>> Volker Lanz wrote:
>>>>> Hi,
>>>>>
>>>>> updating to my distro's new 2.6.31 kernel on an x86_64 quad core
>>>>> machine with 6 GB of RAM I noticed resuming from suspend still worked
>>>>> as before, but the machine will now reproducably freeze (have to hard
>>>>> reset) afterwards as soon as I do something disk I/O heavy, though the
>>>>> problem is probably not related to disk activity at all.
>>>>>
>>>>> A current mainline 2.6.32 checkout shows the same behaviour.
>>>>>
>>>>> I git-bisected the problem to this commit:
>>>>>
>>>>>
>>>>> -----------------------------------------------------------------------
>>>>> -- ---- commit 78a8b35bc7abf8b8333d6f625e08c0f7cc1c3742
>>>>> Author: Yinghai Lu <yinghai@kernel.org>
>>>>> Date:   Thu Mar 12 22:36:01 2009 -0700
>>>>>
>>>>>     x86: make e820_update_range() handle small range update
>>>>>
>>>>>     Impact: enhance e820 code to handle more cases
>>>>>
>>>>>     Try to handle new range which could be covered by one entry.
>>>>>
>>>>>     Signed-off-by: Yinghai Lu <yinghai@kernel.org>
>>>>>     Cc: jbeulich@novell.com
>>>>>     LKML-Reference: <49B9F0C1.10402@kernel.org>
>>>>>     Signed-off-by: Ingo Molnar <mingo@elte.hu>
>>>>> -----------------------------------------------------------------------
>>>>> -- ----
>>>>>
>>>>>
>>>>> A kernel built from this revision does not boot, so the first booting
>>>>> kernel to show the problem actually seems to be:
>>>>>
>>>>>
>>>>> -----------------------------------------------------------------------
>>>>> -- ---- commit 6d7942dc2a70a7e74c352107b150265602671588
>>>>> Author: Yinghai Lu <yinghai@kernel.org>
>>>>> Date:   Sat Mar 14 14:32:41 2009 -0700
>>>>>
>>>>>     x86: fix 64k corruption-check
>>>>>
>>>>>     Impact: fix boot crash
>>>>>
>>>>>     Need to exit early if the addr is far above 64k.
>>>>>
>>>>>     The crash got exposed by:
>>>>>
>>>>>       78a8b35: x86: make e820_update_range() handle small range update
>>>>>
>>>>>     Signed-off-by: Yinghai Lu <yinghai@kernel.org>
>>>>>     Cc: <stable@kernel.org>
>>>>>     LKML-Reference: <49BC2279.2030101@kernel.org>
>>>>>     Signed-off-by: Ingo Molnar <mingo@elte.hu>
>>>>> -----------------------------------------------------------------------
>>>>> -- ----
>>>>>
>>>>>
>>>>> The last kernel to work without problems thus seems to be this one:
>>>>>
>>>>>
>>>>> -----------------------------------------------------------------------
>>>>> -- ---- commit 773e673de27297d07d852e7e9bfd1a695cae1da2
>>>>> Author: Yinghai Lu <yinghai@kernel.org>
>>>>> Date:   Thu Mar 12 21:35:18 2009 -0700
>>>>>
>>>>>     x86: fix e820_update_range()
>>>>>
>>>>>     Impact: fix left range size on head
>>>>>
>>>>>     | commit 5c0e6f035df983210e4d22213aed624ced502d3d
>>>>>     |    x86: fix code paths used by update_mptable
>>>>>     |    Impact: fix crashes under Xen due to unrobust e820 code
>>>>>
>>>>>     fixes one e820 bug, but introduces another bug.
>>>>>
>>>>>     Need to update size for left range at first in case it is header.
>>>>>
>>>>>     also add __e820_add_region take more parameter.
>>>>>
>>>>>     Signed-off-by: Yinghai Lu <yinghai@kernel.org>
>>>>>     Cc: jbeulich@novell.com
>>>>>     LKML-Reference: <49B9E286.502@kernel.org>
>>>>>     Signed-off-by: Ingo Molnar <mingo@elte.hu>
>>>>> -----------------------------------------------------------------------
>>>>> -- ----
>>>>>
>>>>>
>>>>> The problem is 100% reproducable on this machine: Resuming and then
>>>>> copying /usr/ to $HOME will freeze after a few hundred MB have been
>>>>> copied. Earlier kernels worked fine for the last couple of months.
>>>>>
>>>>> What additional information is required to help diagnose and hopefully
>>>>> fix the problem?
>>>> whole boot log with CONFIG_PCI_DEBUG and debug on command line.
>>> Here it is. It's huge, I hope you were expecting that...
>> and the one with current tip?
>>
>> http://people.redhat.com/mingo/tip.git/readme.txt
> 
> With this kernel, the problem persists. Here's the log:
> 
> 
> -----------------------------------------------------------------------------
> [    0.000000] Initializing cgroup subsys cpuset
> [    0.000000] Initializing cgroup subsys cpu
> [    0.000000] Linux version 2.6.32-tip-02731-gd17424f (vl@trevor) (gcc 
> version 4.4.1 (Ubuntu 4.4.1-4ubuntu8) ) #22 SMP Mon Dec 7 21:09:21 CET 2009
> [    0.000000] Command line: root=UUID=160351ee-c9b0-4a72-9fd5-9962c8137a7e ro 
> nosplash debug
> [    0.000000] BIOS-provided physical RAM map:
> [    0.000000]  BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
> [    0.000000]  BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
> [    0.000000]  BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
> [    0.000000]  BIOS-e820: 0000000000100000 - 00000000cfee0000 (usable)
> [    0.000000]  BIOS-e820: 00000000cfee0000 - 00000000cfee2000 (ACPI NVS)
> [    0.000000]  BIOS-e820: 00000000cfee2000 - 00000000cfef0000 (ACPI data)
> [    0.000000]  BIOS-e820: 00000000cfef0000 - 00000000cff00000 (reserved)
> [    0.000000]  BIOS-e820: 00000000e0000000 - 00000000e4000000 (reserved)
> [    0.000000]  BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)
> [    0.000000]  BIOS-e820: 0000000100000000 - 00000001b0000000 (usable)
> [    0.000000] NX (Execute Disable) protection: active
> [    0.000000] DMI 2.4 present.
> [    0.000000] last_pfn = 0x1b0000 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-CBFFF write-protect
> [    0.000000]   CC000-EFFFF uncachable
> [    0.000000]   F0000-FFFFF write-through
> [    0.000000] MTRR variable ranges enabled:
> [    0.000000]   0 base 000000000 mask F00000000 write-back
> [    0.000000]   1 base 0E0000000 mask FE0000000 uncachable
> [    0.000000]   2 base 0D0000000 mask FF0000000 uncachable
> [    0.000000]   3 base 100000000 mask F00000000 write-back
> [    0.000000]   4 base 1C0000000 mask FC0000000 uncachable
> [    0.000000]   5 base 1B0000000 mask FF0000000 uncachable
> [    0.000000]   6 base 0CFF00000 mask FFFF00000 uncachable
> [    0.000000]   7 disabled
> [    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 
> 0x7010600070106
> [    0.000000] e820 update range: 00000000cff00000 - 0000000100000000 (usable) 
> ==> (reserved)
> [    0.000000] last_pfn = 0xcfee0 max_arch_pfn = 0x400000000
> [    0.000000] e820 update range: 0000000000001000 - 0000000000006000 (usable) 
> ==> (reserved)
> [    0.000000] Scanning 1 areas for low memory corruption
> [    0.000000] modified physical RAM map:
> [    0.000000]  modified: 0000000000000000 - 0000000000001000 (usable)
> [    0.000000]  modified: 0000000000001000 - 0000000000006000 (reserved)
> [    0.000000]  modified: 0000000000006000 - 000000000009f800 (usable)
> [    0.000000]  modified: 000000000009f800 - 00000000000a0000 (reserved)
> [    0.000000]  modified: 00000000000f0000 - 0000000000100000 (reserved)
> [    0.000000]  modified: 0000000000100000 - 00000000cfee0000 (usable)
> [    0.000000]  modified: 00000000cfee0000 - 00000000cfee2000 (ACPI NVS)
> [    0.000000]  modified: 00000000cfee2000 - 00000000cfef0000 (ACPI data)
> [    0.000000]  modified: 00000000cfef0000 - 00000000cff00000 (reserved)
> [    0.000000]  modified: 00000000e0000000 - 00000000e4000000 (reserved)
> [    0.000000]  modified: 00000000fec00000 - 0000000100000000 (reserved)
> [    0.000000]  modified: 0000000100000000 - 00000001b0000000 (usable)

can you try to disable

CONFIG_X86_CHECK_BIOS_CORRUPTION
and
CONFIG_X86_RESERVE_LOW_64K

YH

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [BISECTED, REGRESSION] Successful resume from suspend but freezes after I/O
  2009-12-07 20:36       ` Volker Lanz
  2009-12-07 22:01         ` Yinghai Lu
@ 2009-12-07 23:05         ` Yinghai Lu
  2009-12-08  1:13           ` Volker Lanz
  1 sibling, 1 reply; 15+ messages in thread
From: Yinghai Lu @ 2009-12-07 23:05 UTC (permalink / raw)
  To: Volker Lanz; +Cc: linux-kernel, mingo

Volker Lanz wrote:
> On Monday 07 December 2009 20:23:08 Yinghai Lu wrote:
>> Volker Lanz wrote:
>>> On Monday 07 December 2009 19:24:02 Yinghai Lu wrote:
>>>> Volker Lanz wrote:
>>>>> Hi,
>>>>>
>>>>> updating to my distro's new 2.6.31 kernel on an x86_64 quad core
>>>>> machine with 6 GB of RAM I noticed resuming from suspend still worked
>>>>> as before, but the machine will now reproducably freeze (have to hard
>>>>> reset) afterwards as soon as I do something disk I/O heavy, though the
>>>>> problem is probably not related to disk activity at all.
>>>>>
>>>>> A current mainline 2.6.32 checkout shows the same behaviour.
>>>>>
>>>>> I git-bisected the problem to this commit:
>>>>>
>>>>>
>>>>> -----------------------------------------------------------------------
>>>>> -- ---- commit 78a8b35bc7abf8b8333d6f625e08c0f7cc1c3742
>>>>> Author: Yinghai Lu <yinghai@kernel.org>
>>>>> Date:   Thu Mar 12 22:36:01 2009 -0700
>>>>>
>>>>>     x86: make e820_update_range() handle small range update
>>>>>
>>>>>     Impact: enhance e820 code to handle more cases
>>>>>
>>>>>     Try to handle new range which could be covered by one entry.
>>>>>
>>>>>     Signed-off-by: Yinghai Lu <yinghai@kernel.org>
>>>>>     Cc: jbeulich@novell.com
>>>>>     LKML-Reference: <49B9F0C1.10402@kernel.org>
>>>>>     Signed-off-by: Ingo Molnar <mingo@elte.hu>
>>>>> -----------------------------------------------------------------------
>>>>> -- ----
>>>>>
>>>>>
>>>>> A kernel built from this revision does not boot, so the first booting
>>>>> kernel to show the problem actually seems to be:
>>>>>
>>>>>
>>>>> -----------------------------------------------------------------------
>>>>> -- ---- commit 6d7942dc2a70a7e74c352107b150265602671588
>>>>> Author: Yinghai Lu <yinghai@kernel.org>
>>>>> Date:   Sat Mar 14 14:32:41 2009 -0700
>>>>>
>>>>>     x86: fix 64k corruption-check
>>>>>
>>>>>     Impact: fix boot crash
>>>>>
>>>>>     Need to exit early if the addr is far above 64k.
>>>>>
>>>>>     The crash got exposed by:
>>>>>
>>>>>       78a8b35: x86: make e820_update_range() handle small range update
>>>>>
>>>>>     Signed-off-by: Yinghai Lu <yinghai@kernel.org>
>>>>>     Cc: <stable@kernel.org>
>>>>>     LKML-Reference: <49BC2279.2030101@kernel.org>
>>>>>     Signed-off-by: Ingo Molnar <mingo@elte.hu>
>>>>> -----------------------------------------------------------------------
>>>>> -- ----
>>>>>
>>>>>
>>>>> The last kernel to work without problems thus seems to be this one:
>>>>>
>>>>>
>>>>> -----------------------------------------------------------------------
>>>>> -- ---- commit 773e673de27297d07d852e7e9bfd1a695cae1da2
>>>>> Author: Yinghai Lu <yinghai@kernel.org>
>>>>> Date:   Thu Mar 12 21:35:18 2009 -0700
>>>>>
>>>>>     x86: fix e820_update_range()
>>>>>
>>>>>     Impact: fix left range size on head
>>>>>
>>>>>     | commit 5c0e6f035df983210e4d22213aed624ced502d3d
>>>>>     |    x86: fix code paths used by update_mptable
>>>>>     |    Impact: fix crashes under Xen due to unrobust e820 code
>>>>>
>>>>>     fixes one e820 bug, but introduces another bug.
>>>>>
>>>>>     Need to update size for left range at first in case it is header.
>>>>>
>>>>>     also add __e820_add_region take more parameter.
>>>>>
>>>>>     Signed-off-by: Yinghai Lu <yinghai@kernel.org>
>>>>>     Cc: jbeulich@novell.com
>>>>>     LKML-Reference: <49B9E286.502@kernel.org>
>>>>>     Signed-off-by: Ingo Molnar <mingo@elte.hu>
>>>>> -----------------------------------------------------------------------
>>>>> -- ----
>>>>>
>>>>>
>>>>> The problem is 100% reproducable on this machine: Resuming and then
>>>>> copying /usr/ to $HOME will freeze after a few hundred MB have been
>>>>> copied. Earlier kernels worked fine for the last couple of months.
>>>>>
>>>>> What additional information is required to help diagnose and hopefully
>>>>> fix the problem?
>>>> whole boot log with CONFIG_PCI_DEBUG and debug on command line.
>>> Here it is. It's huge, I hope you were expecting that...
>> and the one with current tip?
>>
>> http://people.redhat.com/mingo/tip.git/readme.txt
> 
> With this kernel, the problem persists. Here's the log:
> 
> 
> -----------------------------------------------------------------------------
> [    0.000000] Initializing cgroup subsys cpuset
> [    0.000000] Initializing cgroup subsys cpu
> [    0.000000] Linux version 2.6.32-tip-02731-gd17424f (vl@trevor) (gcc 
> version 4.4.1 (Ubuntu 4.4.1-4ubuntu8) ) #22 SMP Mon Dec 7 21:09:21 CET 2009
> [    0.000000] Command line: root=UUID=160351ee-c9b0-4a72-9fd5-9962c8137a7e ro 
> nosplash debug
> [    0.000000] BIOS-provided physical RAM map:
> [    0.000000]  BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
> [    0.000000]  BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
> [    0.000000]  BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
> [    0.000000]  BIOS-e820: 0000000000100000 - 00000000cfee0000 (usable)
> [    0.000000]  BIOS-e820: 00000000cfee0000 - 00000000cfee2000 (ACPI NVS)
> [    0.000000]  BIOS-e820: 00000000cfee2000 - 00000000cfef0000 (ACPI data)
> [    0.000000]  BIOS-e820: 00000000cfef0000 - 00000000cff00000 (reserved)
> [    0.000000]  BIOS-e820: 00000000e0000000 - 00000000e4000000 (reserved)
> [    0.000000]  BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)
> [    0.000000]  BIOS-e820: 0000000100000000 - 00000001b0000000 (usable)
> [    0.000000] NX (Execute Disable) protection: active
> [    0.000000] DMI 2.4 present.
> [    0.000000] last_pfn = 0x1b0000 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-CBFFF write-protect
> [    0.000000]   CC000-EFFFF uncachable
> [    0.000000]   F0000-FFFFF write-through
> [    0.000000] MTRR variable ranges enabled:
> [    0.000000]   0 base 000000000 mask F00000000 write-back
> [    0.000000]   1 base 0E0000000 mask FE0000000 uncachable
> [    0.000000]   2 base 0D0000000 mask FF0000000 uncachable
> [    0.000000]   3 base 100000000 mask F00000000 write-back
> [    0.000000]   4 base 1C0000000 mask FC0000000 uncachable
> [    0.000000]   5 base 1B0000000 mask FF0000000 uncachable
> [    0.000000]   6 base 0CFF00000 mask FFFF00000 uncachable
> [    0.000000]   7 disabled
> [    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 
> 0x7010600070106
> [    0.000000] e820 update range: 00000000cff00000 - 0000000100000000 (usable) 
> ==> (reserved)
> [    0.000000] last_pfn = 0xcfee0 max_arch_pfn = 0x400000000
> [    0.000000] e820 update range: 0000000000001000 - 0000000000006000 (usable) 
> ==> (reserved)
> [    0.000000] Scanning 1 areas for low memory corruption
> [    0.000000] modified physical RAM map:
> [    0.000000]  modified: 0000000000000000 - 0000000000001000 (usable)
> [    0.000000]  modified: 0000000000001000 - 0000000000006000 (reserved)
> [    0.000000]  modified: 0000000000006000 - 000000000009f800 (usable)
> [    0.000000]  modified: 000000000009f800 - 00000000000a0000 (reserved)
> [    0.000000]  modified: 00000000000f0000 - 0000000000100000 (reserved)
> [    0.000000]  modified: 0000000000100000 - 00000000cfee0000 (usable)
> [    0.000000]  modified: 00000000cfee0000 - 00000000cfee2000 (ACPI NVS)
> [    0.000000]  modified: 00000000cfee2000 - 00000000cfef0000 (ACPI data)
> [    0.000000]  modified: 00000000cfef0000 - 00000000cff00000 (reserved)
> [    0.000000]  modified: 00000000e0000000 - 00000000e4000000 (reserved)
> [    0.000000]  modified: 00000000fec00000 - 0000000100000000 (reserved)
> [    0.000000]  modified: 0000000100000000 - 00000001b0000000 (usable)

the updated e820 table is the same to the one for 2.6.29...

so could be some other patch cause the problem.

please check if revert
2547089ca2db132e307ef68848ba029a8ec2f341
could help.

YH

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [BISECTED, REGRESSION] Successful resume from suspend but freezes after I/O
  2009-12-07 22:01         ` Yinghai Lu
@ 2009-12-08  0:07           ` Volker Lanz
  0 siblings, 0 replies; 15+ messages in thread
From: Volker Lanz @ 2009-12-08  0:07 UTC (permalink / raw)
  To: Yinghai Lu; +Cc: linux-kernel, mingo

On Monday 07 December 2009 23:01:43 Yinghai Lu wrote:
> can you try to disable
> 
> CONFIG_X86_CHECK_BIOS_CORRUPTION
> and
> CONFIG_X86_RESERVE_LOW_64K

Still freezes and produces this log:

-----------------------------------------------------------------------------
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 2.6.32-tip-02731-gd17424f (vl@trevor) (gcc 
version 4.4.1 (Ubuntu 4.4.1-4ubuntu8) ) #24 SMP Tue Dec 8 00:51:32 CET 2009
[    0.000000] Command line: root=UUID=160351ee-c9b0-4a72-9fd5-9962c8137a7e ro 
nosplash debug
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
[    0.000000]  BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 00000000cfee0000 (usable)
[    0.000000]  BIOS-e820: 00000000cfee0000 - 00000000cfee2000 (ACPI NVS)
[    0.000000]  BIOS-e820: 00000000cfee2000 - 00000000cfef0000 (ACPI data)
[    0.000000]  BIOS-e820: 00000000cfef0000 - 00000000cff00000 (reserved)
[    0.000000]  BIOS-e820: 00000000e0000000 - 00000000e4000000 (reserved)
[    0.000000]  BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)
[    0.000000]  BIOS-e820: 0000000100000000 - 00000001b0000000 (usable)
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] DMI 2.4 present.
[    0.000000] last_pfn = 0x1b0000 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-CBFFF write-protect
[    0.000000]   CC000-EFFFF uncachable
[    0.000000]   F0000-FFFFF write-through
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000 mask F00000000 write-back
[    0.000000]   1 base 0E0000000 mask FE0000000 uncachable
[    0.000000]   2 base 0D0000000 mask FF0000000 uncachable
[    0.000000]   3 base 100000000 mask F00000000 write-back
[    0.000000]   4 base 1C0000000 mask FC0000000 uncachable
[    0.000000]   5 base 1B0000000 mask FF0000000 uncachable
[    0.000000]   6 base 0CFF00000 mask FFFF00000 uncachable
[    0.000000]   7 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 
0x7010600070106
[    0.000000] e820 update range: 00000000cff00000 - 0000000100000000 (usable) 
==> (reserved)
[    0.000000] last_pfn = 0xcfee0 max_arch_pfn = 0x400000000
[    0.000000] initial memory mapped : 0 - 20000000
[    0.000000] init_memory_mapping: 0000000000000000-00000000cfee0000
[    0.000000]  0000000000 - 00cfe00000 page 2M
[    0.000000]  00cfe00000 - 00cfee0000 page 4k
[    0.000000] kernel direct mapping tables up to cfee0000 @ 8000-e000
[    0.000000] init_memory_mapping: 0000000100000000-00000001b0000000
[    0.000000]  0100000000 - 01b0000000 page 2M
[    0.000000] kernel direct mapping tables up to 1b0000000 @ c000-14000
[    0.000000] RAMDISK: 34054000 - 37fefd2f
[    0.000000] ACPI: RSDP 00000000000f7280 00014 (v00 GBT   )
[    0.000000] ACPI: RSDT 00000000cfee2040 0004C (v01 GBT    GBTUACPI 42302E31 
GBTU 01010101)
[    0.000000] ACPI: FACP 00000000cfee20c0 00074 (v01 GBT    GBTUACPI 42302E31 
GBTU 01010101)
[    0.000000] ACPI: DSDT 00000000cfee2180 04CD9 (v01 GBT    GBTUACPI 00001000 
MSFT 0100000C)
[    0.000000] ACPI: FACS 00000000cfee0000 00040
[    0.000000] ACPI: EUDS 00000000cfee7580 00500 (v01 GBT             00000000      
00000000)
[    0.000000] ACPI: HPET 00000000cfee74c0 00038 (v01 GBT    GBTUACPI 42302E31 
GBTU 00000098)
[    0.000000] ACPI: MCFG 00000000cfee7540 0003C (v01 GBT    GBTUACPI 42302E31 
GBTU 01010101)
[    0.000000] ACPI: APIC 00000000cfee6ec0 00084 (v01 GBT    GBTUACPI 42302E31 
GBTU 01010101)
[    0.000000] ACPI: SSDT 00000000cfee83b0 0018A (v01  PmRef  Cpu0Cst 00003001 
INTL 20040311)
[    0.000000] ACPI: SSDT 00000000cfee8540 0018A (v01  PmRef  Cpu1Cst 00003001 
INTL 20040311)
[    0.000000] ACPI: SSDT 00000000cfee86d0 0018A (v01  PmRef  Cpu2Cst 00003001 
INTL 20040311)
[    0.000000] ACPI: SSDT 00000000cfee8860 0018A (v01  PmRef  Cpu3Cst 00003001 
INTL 20040311)
[    0.000000] ACPI: SSDT 00000000cfee89f0 003AB (v01  PmRef    CpuPm 00003000 
INTL 20040311)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] found SMP MP-table at [ffff8800000f5890] f5890
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at 0000000000000000-00000001b0000000
[    0.000000] Bootmem setup node 0 0000000000000000-00000001b0000000
[    0.000000]   NODE_DATA [000000000000f000 - 0000000000013fff]
[    0.000000]   bootmap [0000000000014000 -  0000000000049fff] pages 36
[    0.000000] (13 early reservations) ==> bootmem [0000000000 - 01b0000000]
[    0.000000]   #0 [0000000000 - 0000001000]   BIOS data page ==> [0000000000 
- 0000001000]
[    0.000000]   #1 [0000006000 - 0000008000]       TRAMPOLINE ==> [0000006000 
- 0000008000]
[    0.000000]   #2 [0001000000 - 0001c89184]    TEXT DATA BSS ==> [0001000000 
- 0001c89184]
[    0.000000]   #3 [0034054000 - 0037fefd2f]          RAMDISK ==> [0034054000 
- 0037fefd2f]
[    0.000000]   #4 [0001c8a000 - 0001c8a0f6]              BRK ==> [0001c8a000 
- 0001c8a0f6]
[    0.000000]   #5 [0000001000 - 0000005000]      ACPI WAKEUP ==> [0000001000 
- 0000005000]
[    0.000000]   #6 [0000008000 - 000000c000]          PGTABLE ==> [0000008000 
- 000000c000]
[    0.000000]   #7 [000000c000 - 000000f000]          PGTABLE ==> [000000c000 
- 000000f000]
[    0.000000]   #8 [00000f58a0 - 0000100000]    BIOS reserved ==> [00000f58a0 
- 0000100000]
[    0.000000]   #9 [00000f5890 - 00000f58a0]     MP-table mpf ==> [00000f5890 
- 00000f58a0]
[    0.000000]   #10 [000009f800 - 00000f0d00]    BIOS reserved ==> 
[000009f800 - 00000f0d00]
[    0.000000]   #11 [00000f0ebc - 00000f5890]    BIOS reserved ==> 
[00000f0ebc - 00000f5890]
[    0.000000]   #12 [00000f0d00 - 00000f0ebc]     MP-table mpc ==> 
[00000f0d00 - 00000f0ebc]
[    0.000000]  [ffffea0000000000-ffffea0005ffffff] PMD -> [ffff880028600000-
ffff88002dbfffff] on node 0
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000000 -> 0x00001000
[    0.000000]   DMA32    0x00001000 -> 0x00100000
[    0.000000]   Normal   0x00100000 -> 0x001b0000
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[3] active PFN ranges
[    0.000000]     0: 0x00000000 -> 0x0000009f
[    0.000000]     0: 0x00000100 -> 0x000cfee0
[    0.000000]     0: 0x00100000 -> 0x001b0000
[    0.000000] On node 0 totalpages: 1572479
[    0.000000]   DMA zone: 56 pages used for memmap
[    0.000000]   DMA zone: 109 pages reserved
[    0.000000]   DMA zone: 3834 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 14280 pages used for memmap
[    0.000000]   DMA32 zone: 833304 pages, LIFO batch:31
[    0.000000]   Normal zone: 9856 pages used for memmap
[    0.000000]   Normal zone: 711040 pages, LIFO batch:31
[    0.000000] ACPI: PM-Timer IO Port: 0x408
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x03] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] dfl dfl lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] SMP: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 24
[    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] PM: Registered nosave memory: 00000000cfee0000 - 
00000000cfee2000
[    0.000000] PM: Registered nosave memory: 00000000cfee2000 - 
00000000cfef0000
[    0.000000] PM: Registered nosave memory: 00000000cfef0000 - 
00000000cff00000
[    0.000000] PM: Registered nosave memory: 00000000cff00000 - 
00000000e0000000
[    0.000000] PM: Registered nosave memory: 00000000e0000000 - 
00000000e4000000
[    0.000000] PM: Registered nosave memory: 00000000e4000000 - 
00000000fec00000
[    0.000000] PM: Registered nosave memory: 00000000fec00000 - 
0000000100000000
[    0.000000] Allocating PCI resources starting at e4000000 (gap: 
e4000000:1ac00000)
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] PERCPU: Embedded 30 pages/cpu @ffff880028200000 s91416 r8192 
d23272 u524288
[    0.000000] pcpu-alloc: s91416 r8192 d23272 u524288 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total 
pages: 1548178
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: root=UUID=160351ee-
c9b0-4a72-9fd5-9962c8137a7e ro nosplash debug
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Initializing CPU#0
[    0.000000] xsave/xrstor: enabled xstate_bv 0x3, cntxt size 0x240
[    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: 6057096k/7077888k available (5317k kernel code, 787972k 
absent, 232820k reserved, 5695k data, 652k init)
[    0.000000] SLUB: Genslabs=14, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, 
Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] NR_IRQS:4352 nr_irqs:440
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] allocated 62914560 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want 
memory cgroups
[    0.000000] hpet clockevent registered
[    0.000000] Fast TSC calibration using PIT
[    0.000000] Detected 2832.939 MHz processor.
[    0.010005] Calibrating delay loop (skipped), value calculated using timer 
frequency.. 5665.87 BogoMIPS (lpj=28329390)
[    0.010102] Security Framework initialized
[    0.010145] SELinux:  Disabled at boot.
[    0.010695] Dentry cache hash table entries: 1048576 (order: 11, 8388608 
bytes)
[    0.015425] Inode-cache hash table entries: 524288 (order: 10, 4194304 
bytes)
[    0.017744] Mount-cache hash table entries: 256
[    0.017910] Initializing cgroup subsys ns
[    0.017951] Initializing cgroup subsys cpuacct
[    0.017991] Initializing cgroup subsys memory
[    0.018619] Initializing cgroup subsys freezer
[    0.018657] Initializing cgroup subsys net_cls
[    0.018713] CPU 0/0x0 -> Node 0
[    0.018751] CPU: Physical Processor ID: 0
[    0.018788] CPU: Processor Core ID: 0
[    0.018827] mce: CPU supports 6 MCE banks
[    0.018870] CPU0: Thermal monitoring enabled (TM2)
[    0.018910] using mwait in idle threads.
[    0.018948] Performance Events: Core2 events, Intel PMU driver.
[    0.019043] ... version:                2
[    0.019081] ... bit width:              40
[    0.019118] ... generic registers:      2
[    0.019156] ... value mask:             000000ffffffffff
[    0.019195] ... max period:             000000007fffffff
[    0.019233] ... fixed-purpose events:   3
[    0.019271] ... event mask:             0000000700000003
[    0.020332] ACPI: Core revision 20090903
[    0.028442] Setting APIC routing to flat
[    0.028781] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.128834] CPU0: Intel(R) Core(TM)2 Quad CPU    Q9550  @ 2.83GHz stepping 
0a
[    0.130000] Booting processor 1 APIC 0x3 ip 0x6000
[    0.130000] Initializing CPU#1
[    0.130000] CPU 1/0x3 -> Node 0
[    0.130000] CPU: Physical Processor ID: 0
[    0.130000] CPU: Processor Core ID: 3
[    0.130000] CPU1: Thermal monitoring enabled (TM2)
[    0.280052] CPU1: Intel(R) Core(TM)2 Quad CPU    Q9550  @ 2.83GHz stepping 
0a
[    0.290060] Booting processor 2 APIC 0x2 ip 0x6000
[    0.290051] Initializing CPU#2
[    0.290051] CPU 2/0x2 -> Node 0
[    0.290051] CPU: Physical Processor ID: 0
[    0.290051] CPU: Processor Core ID: 2
[    0.290051] CPU2: Thermal monitoring enabled (TM2)
[    0.450108] CPU2: Intel(R) Core(TM)2 Quad CPU    Q9550  @ 2.83GHz stepping 
0a
[    0.460059] Booting processor 3 APIC 0x1 ip 0x6000
[    0.460050] Initializing CPU#3
[    0.460050] CPU 3/0x1 -> Node 0
[    0.460050] CPU: Physical Processor ID: 0
[    0.460050] CPU: Processor Core ID: 1
[    0.460050] CPU3: Thermal monitoring enabled (TM2)
[    0.620064] CPU3: Intel(R) Core(TM)2 Quad CPU    Q9550  @ 2.83GHz stepping 
0a
[    0.630012] Brought up 4 CPUs
[    0.630052] Total of 4 processors activated (22663.99 BogoMIPS).
[    0.632708] regulator: core version 0.5
[    0.632766] Time:  0:58:25  Date: 12/08/09
[    0.632833] NET: Registered protocol family 16
[    0.632955] ACPI: bus type pci registered
[    0.633042] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 63
[    0.633083] PCI: MCFG area at e0000000 reserved in E820
[    0.634390] PCI: Using MMCONFIG at e0000000 - e3ffffff
[    0.634429] PCI: Using configuration type 1 for base access
[    0.635096] bio: create slab <bio-0> at 0
[    0.635599] ACPI: EC: Look up EC in DSDT
[    0.640344] ACPI: Interpreter enabled
[    0.640387] ACPI: (supports S0 S3 S4 S5)
[    0.640545] ACPI: Using IOAPIC for interrupt routing
[    0.644159] ACPI: No dock devices found.
[    0.644271] ACPI: PCI Root Bridge [PCI0] (0000:00)
[    0.644329] PCI: Scanning bus 0000:00
[    0.644372] pci 0000:00:00.0: found [8086:2e20] class 000600 header type 00
[    0.644430] pci 0000:00:00.0: calling quirk_resource_alignment+0x0/0x19f
[    0.644472] pci 0000:00:00.0: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.644525] pci 0000:00:01.0: found [8086:2e21] class 000604 header type 01
[    0.644578] pci 0000:00:01.0: calling quirk_resource_alignment+0x0/0x19f
[    0.644619] pci 0000:00:01.0: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.644668] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.644709] pci 0000:00:01.0: PME# disabled
[    0.644775] pci 0000:00:1a.0: found [8086:3a37] class 000c03 header type 00
[    0.644840] pci 0000:00:1a.0: reg 20 io port: [0xe100-0xe11f]
[    0.644889] pci 0000:00:1a.0: calling quirk_resource_alignment+0x0/0x19f
[    0.644930] pci 0000:00:1a.0: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.644990] pci 0000:00:1a.1: found [8086:3a38] class 000c03 header type 00
[    0.645055] pci 0000:00:1a.1: reg 20 io port: [0xe200-0xe21f]
[    0.645103] pci 0000:00:1a.1: calling quirk_resource_alignment+0x0/0x19f
[    0.645144] pci 0000:00:1a.1: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.645204] pci 0000:00:1a.2: found [8086:3a39] class 000c03 header type 00
[    0.645269] pci 0000:00:1a.2: reg 20 io port: [0xe000-0xe01f]
[    0.645318] pci 0000:00:1a.2: calling quirk_resource_alignment+0x0/0x19f
[    0.645358] pci 0000:00:1a.2: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.645425] pci 0000:00:1a.7: found [8086:3a3c] class 000c03 header type 00
[    0.645479] pci 0000:00:1a.7: reg 10 32bit mmio: [0xe9305000-0xe93053ff]
[    0.645543] pci 0000:00:1a.7: calling quirk_resource_alignment+0x0/0x19f
[    0.645584] pci 0000:00:1a.7: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.645649] pci 0000:00:1b.0: found [8086:3a3e] class 000403 header type 00
[    0.645703] pci 0000:00:1b.0: reg 10 64bit mmio: [0xe9300000-0xe9303fff]
[    0.645760] pci 0000:00:1b.0: calling quirk_resource_alignment+0x0/0x19f
[    0.645801] pci 0000:00:1b.0: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.645856] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.645897] pci 0000:00:1b.0: PME# disabled
[    0.645947] pci 0000:00:1c.0: found [8086:3a40] class 000604 header type 01
[    0.646005] pci 0000:00:1c.0: calling quirk_resource_alignment+0x0/0x19f
[    0.646046] pci 0000:00:1c.0: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.646103] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.646144] pci 0000:00:1c.0: PME# disabled
[    0.646197] pci 0000:00:1c.3: found [8086:3a46] class 000604 header type 01
[    0.646255] pci 0000:00:1c.3: calling quirk_resource_alignment+0x0/0x19f
[    0.646296] pci 0000:00:1c.3: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.646352] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[    0.646393] pci 0000:00:1c.3: PME# disabled
[    0.646445] pci 0000:00:1c.4: found [8086:3a48] class 000604 header type 01
[    0.646502] pci 0000:00:1c.4: calling quirk_resource_alignment+0x0/0x19f
[    0.646543] pci 0000:00:1c.4: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.646600] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    0.646641] pci 0000:00:1c.4: PME# disabled
[    0.646696] pci 0000:00:1d.0: found [8086:3a34] class 000c03 header type 00
[    0.646760] pci 0000:00:1d.0: reg 20 io port: [0xe300-0xe31f]
[    0.646809] pci 0000:00:1d.0: calling quirk_resource_alignment+0x0/0x19f
[    0.646850] pci 0000:00:1d.0: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.646910] pci 0000:00:1d.1: found [8086:3a35] class 000c03 header type 00
[    0.646975] pci 0000:00:1d.1: reg 20 io port: [0xe400-0xe41f]
[    0.647023] pci 0000:00:1d.1: calling quirk_resource_alignment+0x0/0x19f
[    0.647064] pci 0000:00:1d.1: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.647124] pci 0000:00:1d.2: found [8086:3a36] class 000c03 header type 00
[    0.647189] pci 0000:00:1d.2: reg 20 io port: [0xe500-0xe51f]
[    0.647237] pci 0000:00:1d.2: calling quirk_resource_alignment+0x0/0x19f
[    0.647278] pci 0000:00:1d.2: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.647343] pci 0000:00:1d.7: found [8086:3a3a] class 000c03 header type 00
[    0.647396] pci 0000:00:1d.7: reg 10 32bit mmio: [0xe9304000-0xe93043ff]
[    0.647461] pci 0000:00:1d.7: calling quirk_resource_alignment+0x0/0x19f
[    0.647502] pci 0000:00:1d.7: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.647563] pci 0000:00:1e.0: found [8086:244e] class 000604 header type 01
[    0.647622] pci 0000:00:1e.0: calling quirk_resource_alignment+0x0/0x19f
[    0.647663] pci 0000:00:1e.0: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.647724] pci 0000:00:1f.0: found [8086:3a18] class 000601 header type 00
[    0.647808] pci 0000:00:1f.0: calling quirk_resource_alignment+0x0/0x19f
[    0.647849] pci 0000:00:1f.0: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.647915] pci 0000:00:1f.2: found [8086:3a20] class 000101 header type 00
[    0.647968] pci 0000:00:1f.2: reg 10 io port: [0x00-0x07]
[    0.648010] pci 0000:00:1f.2: reg 14 io port: [0x00-0x03]
[    0.648052] pci 0000:00:1f.2: reg 18 io port: [0x00-0x07]
[    0.648094] pci 0000:00:1f.2: reg 1c io port: [0x00-0x03]
[    0.648136] pci 0000:00:1f.2: reg 20 io port: [0xf000-0xf00f]
[    0.648178] pci 0000:00:1f.2: reg 24 io port: [0xf100-0xf10f]
[    0.648224] pci 0000:00:1f.2: calling quirk_resource_alignment+0x0/0x19f
[    0.648265] pci 0000:00:1f.2: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.648325] pci 0000:00:1f.3: found [8086:3a30] class 000c05 header type 00
[    0.648374] pci 0000:00:1f.3: reg 10 64bit mmio: [0xe9306000-0xe93060ff]
[    0.648423] pci 0000:00:1f.3: reg 20 io port: [0x500-0x51f]
[    0.648471] pci 0000:00:1f.3: calling quirk_resource_alignment+0x0/0x19f
[    0.648512] pci 0000:00:1f.3: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.648564] pci 0000:00:1f.5: found [8086:3a26] class 000101 header type 00
[    0.648617] pci 0000:00:1f.5: reg 10 io port: [0xe700-0xe707]
[    0.648659] pci 0000:00:1f.5: reg 14 io port: [0xe800-0xe803]
[    0.648701] pci 0000:00:1f.5: reg 18 io port: [0xe900-0xe907]
[    0.648744] pci 0000:00:1f.5: reg 1c io port: [0xea00-0xea03]
[    0.648786] pci 0000:00:1f.5: reg 20 io port: [0xeb00-0xeb0f]
[    0.648828] pci 0000:00:1f.5: reg 24 io port: [0xec00-0xec0f]
[    0.648873] pci 0000:00:1f.5: calling quirk_resource_alignment+0x0/0x19f
[    0.648914] pci 0000:00:1f.5: calling pci_fixup_transparent_bridge+0x0/0x2a
[    0.648972] PCI: Fixups for bus 0000:00
[    0.649010] pci 0000:00:01.0: scanning behind bridge, config 010100, pass 0
[    0.649052] PCI: Scanning bus 0000:01
[    0.649098] pci 0000:01:00.0: found [10de:0402] class 000300 header type 00
[    0.649148] pci 0000:01:00.0: reg 10 32bit mmio: [0xe6000000-0xe6ffffff]
[    0.649194] pci 0000:01:00.0: reg 14 64bit mmio pref: 
[0xd0000000-0xdfffffff]
[    0.649240] pci 0000:01:00.0: reg 1c 64bit mmio: [0xe4000000-0xe5ffffff]
[    0.649283] pci 0000:01:00.0: reg 24 io port: [0xb000-0xb07f]
[    0.649325] pci 0000:01:00.0: reg 30 32bit mmio pref: [0x000000-0x01ffff]
[    0.649368] pci 0000:01:00.0: calling quirk_resource_alignment+0x0/0x19f
[    0.649450] PCI: Fixups for bus 0000:01
[    0.649488] pci 0000:00:01.0: bridge io port: [0xb000-0xbfff]
[    0.649529] pci 0000:00:01.0: bridge 32bit mmio: [0xe4000000-0xe7ffffff]
[    0.649571] pci 0000:00:01.0: bridge 64bit mmio pref: 
[0xd0000000-0xdfffffff]
[    0.649611] PCI: Bus scan for 0000:01 returning with max=01
[    0.649652] pci 0000:00:1c.0: scanning behind bridge, config 020200, pass 0
[    0.650009] PCI: Scanning bus 0000:02
[    0.650070] PCI: Fixups for bus 0000:02
[    0.650114] PCI: Bus scan for 0000:02 returning with max=02
[    0.650164] pci 0000:00:1c.3: scanning behind bridge, config 030300, pass 0
[    0.650216] PCI: Scanning bus 0000:03
[    0.650269] pci 0000:03:00.0: found [197b:2363] class 000101 header type 00
[    0.650320] pci 0000:03:00.0: calling quirk_jmicron_ata+0x0/0x140
[    0.650408] pci 0000:03:00.0: reg 24 32bit mmio: [0xe9000000-0xe9001fff]
[    0.650458] pci 0000:03:00.0: calling quirk_resource_alignment+0x0/0x19f
[    0.650522] pci 0000:03:00.0: PME# supported from D3hot
[    0.650564] pci 0000:03:00.0: PME# disabled
[    0.650626] pci 0000:03:00.1: found [197b:2363] class 000101 header type 00
[    0.650679] pci 0000:03:00.1: calling quirk_jmicron_ata+0x0/0x140
[    0.650728] pci 0000:03:00.1: reg 10 io port: [0xc000-0xc007]
[    0.650773] pci 0000:03:00.1: reg 14 io port: [0xc100-0xc103]
[    0.651417] pci 0000:03:00.1: reg 18 io port: [0xc200-0xc207]
[    0.651462] pci 0000:03:00.1: reg 1c io port: [0xc300-0xc303]
[    0.651508] pci 0000:03:00.1: reg 20 io port: [0xc400-0xc40f]
[    0.651565] pci 0000:03:00.1: calling quirk_resource_alignment+0x0/0x19f
[    0.651661] PCI: Fixups for bus 0000:03
[    0.651700] pci 0000:00:1c.3: bridge io port: [0xc000-0xcfff]
[    0.651741] pci 0000:00:1c.3: bridge 32bit mmio: [0xe9000000-0xe90fffff]
[    0.651784] PCI: Bus scan for 0000:03 returning with max=03
[    0.651825] pci 0000:00:1c.4: scanning behind bridge, config 040400, pass 0
[    0.651868] PCI: Scanning bus 0000:04
[    0.651921] pci 0000:04:00.0: found [10ec:8168] class 000200 header type 00
[    0.651979] pci 0000:04:00.0: reg 10 io port: [0xd000-0xd0ff]
[    0.652034] pci 0000:04:00.0: reg 18 64bit mmio pref: 
[0xe9110000-0xe9110fff]
[    0.652085] pci 0000:04:00.0: reg 20 64bit mmio pref: 
[0xe9100000-0xe910ffff]
[    0.652131] pci 0000:04:00.0: reg 30 32bit mmio pref: [0x000000-0x00ffff]
[    0.652175] pci 0000:04:00.0: calling quirk_resource_alignment+0x0/0x19f
[    0.652244] pci 0000:04:00.0: supports D1 D2
[    0.652282] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.652325] pci 0000:04:00.0: PME# disabled
[    0.652403] PCI: Fixups for bus 0000:04
[    0.652442] pci 0000:00:1c.4: bridge io port: [0xd000-0xdfff]
[    0.652483] pci 0000:00:1c.4: bridge 32bit mmio: [0xe8000000-0xe8ffffff]
[    0.652526] pci 0000:00:1c.4: bridge 64bit mmio pref: 
[0xe9100000-0xe91fffff]
[    0.652567] PCI: Bus scan for 0000:04 returning with max=04
[    0.652608] pci 0000:00:1e.0: scanning behind bridge, config 050500, pass 0
[    0.652651] PCI: Scanning bus 0000:05
[    0.652706] pci 0000:05:07.0: found [104c:8024] class 000c00 header type 00
[    0.652761] pci 0000:05:07.0: reg 10 32bit mmio: [0xe9204000-0xe92047ff]
[    0.652805] pci 0000:05:07.0: reg 14 32bit mmio: [0xe9200000-0xe9203fff]
[    0.652868] pci 0000:05:07.0: calling quirk_resource_alignment+0x0/0x19f
[    0.652921] pci 0000:05:07.0: supports D1 D2
[    0.652959] pci 0000:05:07.0: PME# supported from D0 D1 D2 D3hot
[    0.653000] pci 0000:05:07.0: PME# disabled
[    0.653068] PCI: Fixups for bus 0000:05
[    0.653105] pci 0000:00:1e.0: transparent bridge
[    0.653147] pci 0000:00:1e.0: bridge 32bit mmio: [0xe9200000-0xe92fffff]
[    0.653190] PCI: Bus scan for 0000:05 returning with max=05
[    0.653230] pci 0000:00:01.0: scanning behind bridge, config 010100, pass 1
[    0.653273] pci 0000:00:1c.0: scanning behind bridge, config 020200, pass 1
[    0.653316] pci 0000:00:1c.3: scanning behind bridge, config 030300, pass 1
[    0.653359] pci 0000:00:1c.4: scanning behind bridge, config 040400, pass 1
[    0.653403] pci 0000:00:1e.0: scanning behind bridge, config 050500, pass 1
[    0.653445] PCI: Bus scan for 0000:00 returning with max=05
[    0.653486] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.653624] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX0._PRT]
[    0.653704] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX3._PRT]
[    0.653788] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX4._PRT]
[    0.653866] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB0._PRT]
[    0.665892] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 *10 11 12 14 
15)
[    0.666349] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 11 12 14 
15) *0, disabled.
[    0.666859] ACPI: PCI Interrupt Link [LNKC] (IRQs *3 4 5 6 7 9 10 11 12 14 
15)
[    0.667316] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 *11 12 14 
15)
[    0.667772] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 11 12 14 
15) *0, disabled.
[    0.668281] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 *4 5 6 7 9 10 11 12 14 
15)
[    0.668737] ACPI: PCI Interrupt Link [LNK0] (IRQs 3 4 *5 6 7 9 10 11 12 14 
15)
[    0.669193] ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 6 *7 9 10 11 12 14 
15)
[    0.669651] vgaarb: device added: 
PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
[    0.669702] vgaarb: loaded
[    0.669812] SCSI subsystem initialized
[    0.669935] libata version 3.00 loaded.
[    0.670035] usbcore: registered new interface driver usbfs
[    0.670086] usbcore: registered new interface driver hub
[    0.670150] usbcore: registered new device driver usb
[    0.670277] ACPI: WMI: Mapper loaded
[    0.670315] PCI: Using ACPI for IRQ routing
[    0.670471] Bluetooth: Core ver 2.15
[    0.670526] NET: Registered protocol family 31
[    0.670564] Bluetooth: HCI device and connection manager initialized
[    0.670605] Bluetooth: HCI socket layer initialized
[    0.670644] NetLabel: Initializing
[    0.670681] NetLabel:  domain hash size = 128
[    0.670719] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.670765] NetLabel:  unlabeled traffic allowed by default
[    0.670819] HPET: 4 timers in total, 0 timers will be used for per-cpu 
timer
[    0.670864] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
[    0.671036] hpet0: 4 comparators, 64-bit 14.318180 MHz counter
[    0.680021] Switching to clocksource tsc
[    0.681262] pnp: PnP ACPI init
[    0.681305] ACPI: bus type pnp registered
[    0.682946] pnp: PnP ACPI: found 12 devices
[    0.682984] ACPI: ACPI bus type pnp unregistered
[    0.683028] system 00:01: ioport range 0x4d0-0x4d1 has been reserved
[    0.683068] system 00:01: ioport range 0x290-0x29f has been reserved
[    0.683109] system 00:01: ioport range 0x800-0x87f has been reserved
[    0.683149] system 00:01: ioport range 0x290-0x294 has been reserved
[    0.683190] system 00:01: ioport range 0x880-0x88f has been reserved
[    0.683230] system 00:01: ioport range 0x4c0-0x4ff could not be reserved
[    0.683273] system 00:08: ioport range 0x400-0x4bf has been reserved
[    0.683316] system 00:09: iomem range 0xe0000000-0xe3ffffff has been 
reserved
[    0.683358] system 00:0a: iomem range 0xccc00-0xcffff has been reserved
[    0.683399] system 00:0a: iomem range 0xf0000-0xf7fff could not be reserved
[    0.683440] system 00:0a: iomem range 0xf8000-0xfbfff could not be reserved
[    0.683481] system 00:0a: iomem range 0xfc000-0xfffff could not be reserved
[    0.683522] system 00:0a: iomem range 0xcfee0000-0xcfefffff could not be 
reserved
[    0.683571] system 00:0a: iomem range 0x0-0x9ffff could not be reserved
[    0.683612] system 00:0a: iomem range 0x100000-0xcfedffff could not be 
reserved
[    0.683660] system 00:0a: iomem range 0xfec00000-0xfec00fff could not be 
reserved
[    0.683709] system 00:0a: iomem range 0xfed10000-0xfed1dfff has been 
reserved
[    0.683750] system 00:0a: iomem range 0xfed20000-0xfed8ffff has been 
reserved
[    0.683791] system 00:0a: iomem range 0xfee00000-0xfee00fff has been 
reserved
[    0.683832] system 00:0a: iomem range 0xffb00000-0xffb7ffff has been 
reserved
[    0.683873] system 00:0a: iomem range 0xfff00000-0xffffffff has been 
reserved
[    0.683915] system 00:0a: iomem range 0xe0000-0xeffff has been reserved
[    0.688589] pci 0000:01:00.0: BAR 6: got res [0xe7000000-0xe701ffff] bus 
[0xe7000000-0xe701ffff] flags 0x27200
[    0.688641] pci 0000:00:01.0: PCI bridge, secondary bus 0000:01
[    0.688681] pci 0000:00:01.0:   IO window: 0xb000-0xbfff
[    0.688721] pci 0000:00:01.0:   MEM window: 0xe4000000-0xe7ffffff
[    0.688762] pci 0000:00:01.0:   PREFETCH window: 
0x000000d0000000-0x000000dfffffff
[    0.688811] pci 0000:00:1c.0: PCI bridge, secondary bus 0000:02
[    0.688852] pci 0000:00:1c.0:   IO window: 0x1000-0x1fff
[    0.688893] pci 0000:00:1c.0:   MEM window: 0xe9400000-0xe95fffff
[    0.688934] pci 0000:00:1c.0:   PREFETCH window: 
0x000000e9600000-0x000000e97fffff
[    0.688985] pci 0000:00:1c.3: PCI bridge, secondary bus 0000:03
[    0.689026] pci 0000:00:1c.3:   IO window: 0xc000-0xcfff
[    0.689067] pci 0000:00:1c.3:   MEM window: 0xe9000000-0xe90fffff
[    0.689108] pci 0000:00:1c.3:   PREFETCH window: 
0x000000e9800000-0x000000e99fffff
[    0.689160] pci 0000:04:00.0: BAR 6: got res [0xe9120000-0xe912ffff] bus 
[0xe9120000-0xe912ffff] flags 0x27200
[    0.689211] pci 0000:00:1c.4: PCI bridge, secondary bus 0000:04
[    0.689251] pci 0000:00:1c.4:   IO window: 0xd000-0xdfff
[    0.689292] pci 0000:00:1c.4:   MEM window: 0xe8000000-0xe8ffffff
[    0.689333] pci 0000:00:1c.4:   PREFETCH window: 
0x000000e9100000-0x000000e91fffff
[    0.689384] pci 0000:00:1e.0: PCI bridge, secondary bus 0000:05
[    0.689424] pci 0000:00:1e.0:   IO window: disabled
[    0.689464] pci 0000:00:1e.0:   MEM window: 0xe9200000-0xe92fffff
[    0.689521] pci 0000:00:1e.0:   PREFETCH window: disabled
[    0.689565]   alloc irq_desc for 16 on node -1
[    0.689609]   alloc kstat_irqs on node -1
[    0.689654] pci 0000:00:01.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.689705] pci 0000:00:01.0: setting latency timer to 64
[    0.689748] pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.689790] pci 0000:00:1c.0: setting latency timer to 64
[    0.689833]   alloc irq_desc for 19 on node -1
[    0.689871]   alloc kstat_irqs on node -1
[    0.689910] pci 0000:00:1c.3: PCI INT D -> GSI 19 (level, low) -> IRQ 19
[    0.689951] pci 0000:00:1c.3: setting latency timer to 64
[    0.689995] pci 0000:00:1c.4: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.690036] pci 0000:00:1c.4: setting latency timer to 64
[    0.690078] pci 0000:00:1e.0: setting latency timer to 64
[    0.690119] pci_bus 0000:00: resource 0 io:  [0x00-0xffff]
[    0.690159] pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffffffffffff]
[    0.690199] pci_bus 0000:01: resource 0 io:  [0xb000-0xbfff]
[    0.690239] pci_bus 0000:01: resource 1 mem: [0xe4000000-0xe7ffffff]
[    0.690279] pci_bus 0000:01: resource 2 pref mem [0xd0000000-0xdfffffff]
[    0.690319] pci_bus 0000:02: resource 0 io:  [0x1000-0x1fff]
[    0.690359] pci_bus 0000:02: resource 1 mem: [0xe9400000-0xe95fffff]
[    0.690399] pci_bus 0000:02: resource 2 pref mem [0xe9600000-0xe97fffff]
[    0.690440] pci_bus 0000:03: resource 0 io:  [0xc000-0xcfff]
[    0.690479] pci_bus 0000:03: resource 1 mem: [0xe9000000-0xe90fffff]
[    0.690519] pci_bus 0000:03: resource 2 pref mem [0xe9800000-0xe99fffff]
[    0.690560] pci_bus 0000:04: resource 0 io:  [0xd000-0xdfff]
[    0.690599] pci_bus 0000:04: resource 1 mem: [0xe8000000-0xe8ffffff]
[    0.690640] pci_bus 0000:04: resource 2 pref mem [0xe9100000-0xe91fffff]
[    0.690680] pci_bus 0000:05: resource 1 mem: [0xe9200000-0xe92fffff]
[    0.690720] pci_bus 0000:05: resource 3 io:  [0x00-0xffff]
[    0.690760] pci_bus 0000:05: resource 4 mem: [0x000000-0xffffffffffffffff]
[    0.690819] NET: Registered protocol family 2
[    0.691025] IP route cache hash table entries: 262144 (order: 9, 2097152 
bytes)
[    0.691931] TCP established hash table entries: 524288 (order: 11, 8388608 
bytes)
[    0.695359] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.695967] TCP: Hash tables configured (established 524288 bind 65536)
[    0.696606] TCP reno registered
[    0.696740] NET: Registered protocol family 1
[    0.696799] pci 0000:00:00.0: calling quirk_e100_interrupt+0x0/0x192
[    0.696841] pci 0000:00:00.0: calling quirk_cardbus_legacy+0x0/0x30
[    0.696882] pci 0000:00:00.0: calling quirk_usb_early_handoff+0x0/0x580
[    0.696924] pci 0000:00:00.0: calling pci_fixup_video+0x0/0xbd
[    0.696965] pci 0000:00:01.0: calling quirk_e100_interrupt+0x0/0x192
[    0.697005] pci 0000:00:01.0: calling quirk_cardbus_legacy+0x0/0x30
[    0.697046] pci 0000:00:01.0: calling quirk_usb_early_handoff+0x0/0x580
[    0.697086] pci 0000:00:01.0: calling pci_fixup_video+0x0/0xbd
[    0.697127] pci 0000:00:1a.0: calling quirk_e100_interrupt+0x0/0x192
[    0.697168] pci 0000:00:1a.0: calling quirk_cardbus_legacy+0x0/0x30
[    0.697208] pci 0000:00:1a.0: calling quirk_usb_early_handoff+0x0/0x580
[    0.697261] pci 0000:00:1a.0: calling pci_fixup_video+0x0/0xbd
[    0.697303] pci 0000:00:1a.1: calling quirk_e100_interrupt+0x0/0x192
[    0.697343] pci 0000:00:1a.1: calling quirk_cardbus_legacy+0x0/0x30
[    0.697384] pci 0000:00:1a.1: calling quirk_usb_early_handoff+0x0/0x580
[    0.697435] pci 0000:00:1a.1: calling pci_fixup_video+0x0/0xbd
[    0.697476] pci 0000:00:1a.2: calling quirk_e100_interrupt+0x0/0x192
[    0.697516] pci 0000:00:1a.2: calling quirk_cardbus_legacy+0x0/0x30
[    0.697556] pci 0000:00:1a.2: calling quirk_usb_early_handoff+0x0/0x580
[    0.697608] pci 0000:00:1a.2: calling pci_fixup_video+0x0/0xbd
[    0.697649] pci 0000:00:1a.7: calling quirk_e100_interrupt+0x0/0x192
[    0.697690] pci 0000:00:1a.7: calling quirk_cardbus_legacy+0x0/0x30
[    0.697730] pci 0000:00:1a.7: calling quirk_usb_early_handoff+0x0/0x580
[    0.697790] pci 0000:00:1a.7: calling pci_fixup_video+0x0/0xbd
[    0.697831] pci 0000:00:1b.0: calling quirk_e100_interrupt+0x0/0x192
[    0.697871] pci 0000:00:1b.0: calling quirk_cardbus_legacy+0x0/0x30
[    0.697912] pci 0000:00:1b.0: calling quirk_usb_early_handoff+0x0/0x580
[    0.697952] pci 0000:00:1b.0: calling pci_fixup_video+0x0/0xbd
[    0.697993] pci 0000:00:1c.0: calling quirk_e100_interrupt+0x0/0x192
[    0.698034] pci 0000:00:1c.0: calling quirk_cardbus_legacy+0x0/0x30
[    0.698074] pci 0000:00:1c.0: calling quirk_usb_early_handoff+0x0/0x580
[    0.698115] pci 0000:00:1c.0: calling pci_fixup_video+0x0/0xbd
[    0.698156] pci 0000:00:1c.3: calling quirk_e100_interrupt+0x0/0x192
[    0.698197] pci 0000:00:1c.3: calling quirk_cardbus_legacy+0x0/0x30
[    0.698237] pci 0000:00:1c.3: calling quirk_usb_early_handoff+0x0/0x580
[    0.698278] pci 0000:00:1c.3: calling pci_fixup_video+0x0/0xbd
[    0.698319] pci 0000:00:1c.4: calling quirk_e100_interrupt+0x0/0x192
[    0.698359] pci 0000:00:1c.4: calling quirk_cardbus_legacy+0x0/0x30
[    0.698400] pci 0000:00:1c.4: calling quirk_usb_early_handoff+0x0/0x580
[    0.698440] pci 0000:00:1c.4: calling pci_fixup_video+0x0/0xbd
[    0.698481] pci 0000:00:1d.0: calling quirk_e100_interrupt+0x0/0x192
[    0.698522] pci 0000:00:1d.0: calling quirk_cardbus_legacy+0x0/0x30
[    0.698562] pci 0000:00:1d.0: calling quirk_usb_early_handoff+0x0/0x580
[    0.698614] pci 0000:00:1d.0: calling pci_fixup_video+0x0/0xbd
[    0.698655] pci 0000:00:1d.1: calling quirk_e100_interrupt+0x0/0x192
[    0.698695] pci 0000:00:1d.1: calling quirk_cardbus_legacy+0x0/0x30
[    0.698736] pci 0000:00:1d.1: calling quirk_usb_early_handoff+0x0/0x580
[    0.698787] pci 0000:00:1d.1: calling pci_fixup_video+0x0/0xbd
[    0.698828] pci 0000:00:1d.2: calling quirk_e100_interrupt+0x0/0x192
[    0.698868] pci 0000:00:1d.2: calling quirk_cardbus_legacy+0x0/0x30
[    0.698909] pci 0000:00:1d.2: calling quirk_usb_early_handoff+0x0/0x580
[    0.698960] pci 0000:00:1d.2: calling pci_fixup_video+0x0/0xbd
[    0.699001] pci 0000:00:1d.7: calling quirk_e100_interrupt+0x0/0x192
[    0.699042] pci 0000:00:1d.7: calling quirk_cardbus_legacy+0x0/0x30
[    0.699082] pci 0000:00:1d.7: calling quirk_usb_early_handoff+0x0/0x580
[    0.699148] pci 0000:00:1d.7: calling pci_fixup_video+0x0/0xbd
[    0.699189] pci 0000:00:1e.0: calling quirk_e100_interrupt+0x0/0x192
[    0.699230] pci 0000:00:1e.0: calling quirk_cardbus_legacy+0x0/0x30
[    0.699270] pci 0000:00:1e.0: calling quirk_usb_early_handoff+0x0/0x580
[    0.699311] pci 0000:00:1e.0: calling pci_fixup_video+0x0/0xbd
[    0.699352] pci 0000:00:1f.0: calling quirk_e100_interrupt+0x0/0x192
[    0.699392] pci 0000:00:1f.0: calling quirk_cardbus_legacy+0x0/0x30
[    0.699432] pci 0000:00:1f.0: calling quirk_usb_early_handoff+0x0/0x580
[    0.699473] pci 0000:00:1f.0: calling pci_fixup_video+0x0/0xbd
[    0.699546] pci 0000:00:1f.2: calling quirk_e100_interrupt+0x0/0x192
[    0.699586] pci 0000:00:1f.2: calling quirk_cardbus_legacy+0x0/0x30
[    0.699636] pci 0000:00:1f.2: calling quirk_usb_early_handoff+0x0/0x580
[    0.699687] pci 0000:00:1f.2: calling pci_fixup_video+0x0/0xbd
[    0.699728] pci 0000:00:1f.3: calling quirk_e100_interrupt+0x0/0x192
[    0.699769] pci 0000:00:1f.3: calling quirk_cardbus_legacy+0x0/0x30
[    0.699809] pci 0000:00:1f.3: calling quirk_usb_early_handoff+0x0/0x580
[    0.699850] pci 0000:00:1f.3: calling pci_fixup_video+0x0/0xbd
[    0.699891] pci 0000:00:1f.5: calling quirk_e100_interrupt+0x0/0x192
[    0.699931] pci 0000:00:1f.5: calling quirk_cardbus_legacy+0x0/0x30
[    0.699972] pci 0000:00:1f.5: calling quirk_usb_early_handoff+0x0/0x580
[    0.700012] pci 0000:00:1f.5: calling pci_fixup_video+0x0/0xbd
[    0.700053] pci 0000:01:00.0: calling nv_msi_ht_cap_quirk_leaf+0x0/0xd
[    0.700100] pci 0000:01:00.0: calling quirk_cardbus_legacy+0x0/0x30
[    0.700140] pci 0000:01:00.0: calling quirk_usb_early_handoff+0x0/0x580
[    0.700181] pci 0000:01:00.0: calling pci_fixup_video+0x0/0xbd
[    0.700222] pci 0000:01:00.0: Boot video device
[    0.700261] pci 0000:03:00.0: calling quirk_cardbus_legacy+0x0/0x30
[    0.700301] pci 0000:03:00.0: calling quirk_usb_early_handoff+0x0/0x580
[    0.700342] pci 0000:03:00.0: calling pci_fixup_video+0x0/0xbd
[    0.700383] pci 0000:03:00.1: calling quirk_cardbus_legacy+0x0/0x30
[    0.700423] pci 0000:03:00.1: calling quirk_usb_early_handoff+0x0/0x580
[    0.700464] pci 0000:03:00.1: calling pci_fixup_video+0x0/0xbd
[    0.700504] pci 0000:04:00.0: calling quirk_cardbus_legacy+0x0/0x30
[    0.700545] pci 0000:04:00.0: calling quirk_usb_early_handoff+0x0/0x580
[    0.700585] pci 0000:04:00.0: calling pci_fixup_video+0x0/0xbd
[    0.700626] pci 0000:05:07.0: calling quirk_cardbus_legacy+0x0/0x30
[    0.700666] pci 0000:05:07.0: calling quirk_usb_early_handoff+0x0/0x580
[    0.700707] pci 0000:05:07.0: calling pci_fixup_video+0x0/0xbd
[    0.700787] Trying to unpack rootfs image as initramfs...
[    1.811056] Freeing initrd memory: 65135k freed
[    1.841393] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    1.841437] Placing 64MB software IO TLB between ffff880020000000 - 
ffff880024000000
[    1.841486] software IO TLB at phys 0x20000000 - 0x24000000
[    1.841911] audit: initializing netlink socket (disabled)
[    1.841963] type=2000 audit(1260233905.830:1): initialized
[    1.852106] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    1.853125] VFS: Disk quotas dquot_6.5.2
[    1.853199] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    1.853621] fuse init (API version 7.13)
[    1.853712] msgmni has been set to 11957
[    1.853938] alg: No test for stdrng (krng)
[    1.853982] io scheduler noop registered
[    1.854020] io scheduler anticipatory registered
[    1.854058] io scheduler deadline registered
[    1.854120] io scheduler cfq registered (default)
[    1.854241]   alloc irq_desc for 24 on node -1
[    1.854280]   alloc kstat_irqs on node -1
[    1.854324] pcieport 0000:00:01.0: irq 24 for MSI/MSI-X
[    1.854366] pcieport 0000:00:01.0: setting latency timer to 64
[    1.854473]   alloc irq_desc for 25 on node -1
[    1.854511]   alloc kstat_irqs on node -1
[    1.854552] pcieport 0000:00:1c.0: irq 25 for MSI/MSI-X
[    1.854596] pcieport 0000:00:1c.0: setting latency timer to 64
[    1.854715]   alloc irq_desc for 26 on node -1
[    1.854753]   alloc kstat_irqs on node -1
[    1.854795] pcieport 0000:00:1c.3: irq 26 for MSI/MSI-X
[    1.854838] pcieport 0000:00:1c.3: setting latency timer to 64
[    1.854958]   alloc irq_desc for 27 on node -1
[    1.854997]   alloc kstat_irqs on node -1
[    1.855038] pcieport 0000:00:1c.4: irq 27 for MSI/MSI-X
[    1.855081] pcieport 0000:00:1c.4: setting latency timer to 64
[    1.855181] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    1.855286] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    1.855435] input: Power Button as 
/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    1.855485] ACPI: Power Button [PWRB]
[    1.855563] input: Power Button as 
/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    1.855611] ACPI: Power Button [PWRF]
[    1.856023] ACPI: SSDT 00000000cfee7ad0 0022A (v01  PmRef  Cpu0Ist 00003000 
INTL 20040311)
[    1.856278] Marking TSC unstable due to TSC halts in idle
[    1.856344] processor LNXCPU:00: registered as cooling_device0
[    1.856560] ACPI: SSDT 00000000cfee7f90 00152 (v01  PmRef  Cpu1Ist 00003000 
INTL 20040311)
[    1.856881] ACPI Error (psparse-0537): Method parse/execution failed 
[\_PR_.CPU1._PDC] (Node ffff8801a9048f40), AE_ALREADY_EXISTS
[    1.857016] ACPI: Marking method _PDC as Serialized because of 
AE_ALREADY_EXISTS error
[    1.857168] Switching to clocksource hpet
[    1.857355] processor LNXCPU:01: registered as cooling_device1
[    1.857596] ACPI: SSDT 00000000cfee80f0 00152 (v01  PmRef  Cpu2Ist 00003000 
INTL 20040311)
[    1.857918] ACPI Error (psparse-0537): Method parse/execution failed 
[\_PR_.CPU2._PDC] (Node ffff8801a9048fc0), AE_ALREADY_EXISTS
[    1.858052] ACPI: Marking method _PDC as Serialized because of 
AE_ALREADY_EXISTS error
[    1.858267] processor LNXCPU:02: registered as cooling_device2
[    1.858474] ACPI: SSDT 00000000cfee8250 00152 (v01  PmRef  Cpu3Ist 00003000 
INTL 20040311)
[    1.858796] ACPI Error (psparse-0537): Method parse/execution failed 
[\_PR_.CPU3._PDC] (Node ffff8801a904f040), AE_ALREADY_EXISTS
[    1.858930] ACPI: Marking method _PDC as Serialized because of 
AE_ALREADY_EXISTS error
[    1.859170] processor LNXCPU:03: registered as cooling_device3
[    1.861417] Linux agpgart interface v0.103
[    1.861461] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    1.862338] brd: module loaded
[    1.862696] loop: module loaded
[    1.862774] input: Macintosh mouse button emulation as 
/devices/virtual/input/input2
[    1.862880] ahci 0000:03:00.0: version 3.0
[    1.862930] ahci 0000:03:00.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
[    1.883784] ahci 0000:03:00.0: AHCI 0001.0000 32 slots 2 ports 3 Gbps 0x3 
impl SATA mode
[    1.883836] ahci 0000:03:00.0: flags: 64bit ncq pm led clo pmp pio slum 
part 
[    1.883887] ahci 0000:03:00.0: setting latency timer to 64
[    1.884055] scsi0 : ahci
[    1.884139] scsi1 : ahci
[    1.884230] ata1: SATA max UDMA/133 abar m8192@0xe9000000 port 0xe9000100 
irq 19
[    1.884280] ata2: SATA max UDMA/133 abar m8192@0xe9000000 port 0xe9000180 
irq 19
[    2.230026] ata1: SATA link down (SStatus 0 SControl 300)
[    2.600025] ata2: SATA link down (SStatus 0 SControl 300)
[    2.620048] ata_piix 0000:00:1f.2: version 2.13
[    2.620095] ata_piix 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 
19
[    2.620144] ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
[    2.620341] ata_piix 0000:00:1f.2: setting latency timer to 64
[    2.620424] scsi2 : ata_piix
[    2.620497] scsi3 : ata_piix
[    2.621064] ata3: SATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xf000 irq 14
[    2.621107] ata4: SATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xf008 irq 15
[    3.480056] ata3.00: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    3.480113] ata3.01: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    3.546222] ata3.00: HPA detected: current 1953523055, native 1953525168
[    3.546268] ata3.00: ATA-8: ST31000528AS, CC34, max UDMA/133
[    3.546315] ata3.00: 1953523055 sectors, multi 16: LBA48 NCQ (depth 0/32)
[    3.546491] ata3.01: ATA-7: ST3300831AS, 3.02, max UDMA/133
[    3.546532] ata3.01: 586072368 sectors, multi 16: LBA48 NCQ (depth 0/32)
[    3.606227] ata3.00: configured for UDMA/133
[    3.620301] ata3.01: configured for UDMA/133
[    3.620431] scsi 2:0:0:0: Direct-Access     ATA      ST31000528AS     CC34 
PQ: 0 ANSI: 5
[    3.620540] sd 2:0:0:0: [sda] 1953523055 512-byte logical blocks: (1.00 
TB/931 GiB)
[    3.620617] sd 2:0:0:0: [sda] Write Protect is off
[    3.620657] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    3.620710] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, 
doesn't support DPO or FUA
[    3.620843]  sda: sda1 sda2 < sda5 sda6 sda7 sda8 sda9 >
[    3.709071] sd 2:0:0:0: [sda] Attached SCSI disk
[    3.709139] sd 2:0:0:0: Attached scsi generic sg0 type 0
[    3.709218] scsi 2:0:1:0: Direct-Access     ATA      ST3300831AS      3.02 
PQ: 0 ANSI: 5
[    3.709318] sd 2:0:1:0: [sdb] 586072368 512-byte logical blocks: (300 
GB/279 GiB)
[    3.709394] sd 2:0:1:0: [sdb] Write Protect is off
[    3.709433] sd 2:0:1:0: [sdb] Mode Sense: 00 3a 00 00
[    3.709486] sd 2:0:1:0: [sdb] Write cache: enabled, read cache: enabled, 
doesn't support DPO or FUA
[    3.709609]  sdb: sdb1
[    3.728148] sd 2:0:1:0: [sdb] Attached SCSI disk
[    3.728212] sd 2:0:1:0: Attached scsi generic sg1 type 0
[    4.580055] ata4.00: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    4.580112] ata4.01: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    4.620286] ata4.00: HPA detected: current 976771055, native 976773168
[    4.620330] ata4.00: ATA-8: SAMSUNG HD501LJ, CR100-11, max UDMA7
[    4.620372] ata4.00: 976771055 sectors, multi 16: LBA48 NCQ (depth 0/32)
[    4.620432] ata4.01: ATAPI: HL-DT-STDVD-RAM GH22NS30, 1.01, max UDMA/100
[    4.640301] ata4.00: configured for UDMA/133
[    4.680191] ata4.01: configured for UDMA/100
[    4.680567] scsi 3:0:0:0: Direct-Access     ATA      SAMSUNG HD501LJ  CR10 
PQ: 0 ANSI: 5
[    4.680684] sd 3:0:0:0: [sdc] 976771055 512-byte logical blocks: (500 
GB/465 GiB)
[    4.680759] sd 3:0:0:0: [sdc] Write Protect is off
[    4.680798] sd 3:0:0:0: [sdc] Mode Sense: 00 3a 00 00
[    4.680851] sd 3:0:0:0: [sdc] Write cache: enabled, read cache: enabled, 
doesn't support DPO or FUA
[    4.680969]  sdc: sdc2 < sdc5 sdc6 sdc7 > sdc3
[    4.741871] sd 3:0:0:0: [sdc] Attached SCSI disk
[    4.741934] sd 3:0:0:0: Attached scsi generic sg2 type 0
[    4.743158] scsi 3:0:1:0: CD-ROM            HL-DT-ST DVD-RAM GH22NS30 1.01 
PQ: 0 ANSI: 5
[    4.746828] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 
cdda tray
[    4.746880] Uniform CD-ROM driver Revision: 3.20
[    4.746989] sr 3:0:1:0: Attached scsi CD-ROM sr0
[    4.747051] sr 3:0:1:0: Attached scsi generic sg3 type 5
[    4.747105] ata_piix 0000:00:1f.5: PCI INT B -> GSI 19 (level, low) -> IRQ 
19
[    4.747147] ata_piix 0000:00:1f.5: MAP [ P0 -- P1 -- ]
[    4.747343] ata_piix 0000:00:1f.5: setting latency timer to 64
[    4.747409] scsi4 : ata_piix
[    4.747479] scsi5 : ata_piix
[    4.747880] ata5: SATA max UDMA/133 cmd 0xe700 ctl 0xe800 bmdma 0xeb00 irq 
19
[    4.747922] ata6: SATA max UDMA/133 cmd 0xe900 ctl 0xea00 bmdma 0xeb08 irq 
19
[    5.100654] ata5: SATA link down (SStatus 0 SControl 300)
[    5.460629] ata6: SATA link down (SStatus 0 SControl 300)
[    5.460890] pata_jmicron 0000:03:00.1: enabling device (0000 -> 0001)
[    5.460933] pata_jmicron 0000:03:00.1: PCI INT B -> GSI 16 (level, low) -> 
IRQ 16
[    5.460998] pata_jmicron 0000:03:00.1: enabling bus mastering
[    5.461040] pata_jmicron 0000:03:00.1: setting latency timer to 64
[    5.461117] scsi6 : pata_jmicron
[    5.461188] scsi7 : pata_jmicron
[    5.461692] ata7: PATA max UDMA/100 cmd 0xc000 ctl 0xc100 bmdma 0xc400 irq 
16
[    5.461734] ata8: PATA max UDMA/100 cmd 0xc200 ctl 0xc300 bmdma 0xc408 irq 
16
[    5.791753] Fixed MDIO Bus: probed
[    5.791812] PPP generic driver version 2.4.2
[    5.791892] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    5.791943]   alloc irq_desc for 18 on node -1
[    5.791981]   alloc kstat_irqs on node -1
[    5.792021] ehci_hcd 0000:00:1a.7: PCI INT C -> GSI 18 (level, low) -> IRQ 
18
[    5.792068] ehci_hcd 0000:00:1a.7: setting latency timer to 64
[    5.792109] ehci_hcd 0000:00:1a.7: EHCI Host Controller
[    5.792175] ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus 
number 1
[    5.796118] ehci_hcd 0000:00:1a.7: cache line size of 32 is not supported
[    5.796167] ehci_hcd 0000:00:1a.7: irq 18, io mem 0xe9305000
[    5.820012] ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00
[    5.820125] usb usb1: configuration #1 chosen from 1 choice
[    5.820187] hub 1-0:1.0: USB hub found
[    5.820228] hub 1-0:1.0: 6 ports detected
[    5.820307]   alloc irq_desc for 23 on node -1
[    5.820345]   alloc kstat_irqs on node -1
[    5.820385] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 
23
[    5.820431] ehci_hcd 0000:00:1d.7: setting latency timer to 64
[    5.820471] ehci_hcd 0000:00:1d.7: EHCI Host Controller
[    5.820534] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus 
number 2
[    5.824470] ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported
[    5.824517] ehci_hcd 0000:00:1d.7: irq 23, io mem 0xe9304000
[    5.840012] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[    5.840103] usb usb2: configuration #1 chosen from 1 choice
[    5.840173] hub 2-0:1.0: USB hub found
[    5.840214] hub 2-0:1.0: 6 ports detected
[    5.840291] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    5.840339] uhci_hcd: USB Universal Host Controller Interface driver
[    5.840410] uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 
16
[    5.840453] uhci_hcd 0000:00:1a.0: setting latency timer to 64
[    5.840494] uhci_hcd 0000:00:1a.0: UHCI Host Controller
[    5.840554] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus 
number 3
[    5.840621] uhci_hcd 0000:00:1a.0: irq 16, io base 0x0000e100
[    5.840710] usb usb3: configuration #1 chosen from 1 choice
[    5.840766] hub 3-0:1.0: USB hub found
[    5.840807] hub 3-0:1.0: 2 ports detected
[    5.840873]   alloc irq_desc for 21 on node -1
[    5.840911]   alloc kstat_irqs on node -1
[    5.840950] uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 
21
[    5.840994] uhci_hcd 0000:00:1a.1: setting latency timer to 64
[    5.841034] uhci_hcd 0000:00:1a.1: UHCI Host Controller
[    5.841092] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus 
number 4
[    5.841162] uhci_hcd 0000:00:1a.1: irq 21, io base 0x0000e200
[    5.841249] usb usb4: configuration #1 chosen from 1 choice
[    5.841305] hub 4-0:1.0: USB hub found
[    5.841345] hub 4-0:1.0: 2 ports detected
[    5.841411] uhci_hcd 0000:00:1a.2: PCI INT C -> GSI 18 (level, low) -> IRQ 
18
[    5.841454] uhci_hcd 0000:00:1a.2: setting latency timer to 64
[    5.841494] uhci_hcd 0000:00:1a.2: UHCI Host Controller
[    5.841550] uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus 
number 5
[    5.841615] uhci_hcd 0000:00:1a.2: irq 18, io base 0x0000e000
[    5.841703] usb usb5: configuration #1 chosen from 1 choice
[    5.841757] hub 5-0:1.0: USB hub found
[    5.841798] hub 5-0:1.0: 2 ports detected
[    5.841866] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 
23
[    5.841909] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[    5.841950] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[    5.842006] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus 
number 6
[    5.842071] uhci_hcd 0000:00:1d.0: irq 23, io base 0x0000e300
[    5.842158] usb usb6: configuration #1 chosen from 1 choice
[    5.842212] hub 6-0:1.0: USB hub found
[    5.842254] hub 6-0:1.0: 2 ports detected
[    5.842322] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 
19
[    5.842365] uhci_hcd 0000:00:1d.1: setting latency timer to 64
[    5.842405] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[    5.842468] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus 
number 7
[    5.842534] uhci_hcd 0000:00:1d.1: irq 19, io base 0x0000e400
[    5.842621] usb usb7: configuration #1 chosen from 1 choice
[    5.842675] hub 7-0:1.0: USB hub found
[    5.842717] hub 7-0:1.0: 2 ports detected
[    5.842784] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 
18
[    5.842828] uhci_hcd 0000:00:1d.2: setting latency timer to 64
[    5.842868] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[    5.842924] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus 
number 8
[    5.842989] uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000e500
[    5.843076] usb usb8: configuration #1 chosen from 1 choice
[    5.843131] hub 8-0:1.0: USB hub found
[    5.843171] hub 8-0:1.0: 2 ports detected
[    5.843270] PNP: No PS/2 controller found. Probing ports directly.
[    5.843646] serio: i8042 KBD port at 0x60,0x64 irq 1
[    5.843690] serio: i8042 AUX port at 0x60,0x64 irq 12
[    5.843811] mice: PS/2 mouse device common for all mice
[    5.843892] Driver 'rtc_cmos' needs updating - please use bus_type methods
[    5.843956] rtc_cmos 00:04: RTC can wake from S4
[    5.844014] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
[    5.844670] rtc0: alarms up to one month, 242 bytes nvram, hpet irqs
[    5.844788] device-mapper: uevent: version 1.0.3
[    5.844876] device-mapper: ioctl: 4.15.0-ioctl (2009-04-01) initialised: 
dm-devel@redhat.com
[    5.845005] device-mapper: multipath: version 1.1.0 loaded
[    5.845045] device-mapper: multipath round-robin: version 1.0.0 loaded
[    5.845346] cpuidle: using governor ladder
[    5.845537] cpuidle: using governor menu
[    5.845818] TCP cubic registered
[    5.845953] NET: Registered protocol family 10
[    5.846293] lo: Disabled Privacy Extensions
[    5.846520] NET: Registered protocol family 17
[    5.846568] Bluetooth: L2CAP ver 2.14
[    5.846606] Bluetooth: L2CAP socket layer initialized
[    5.846645] Bluetooth: SCO (Voice Link) ver 0.6
[    5.846683] Bluetooth: SCO socket layer initialized
[    5.846736] Bluetooth: RFCOMM TTY layer initialized
[    5.846775] Bluetooth: RFCOMM socket layer initialized
[    5.846814] Bluetooth: RFCOMM ver 1.11
[    5.852150] PM: Resume from disk failed.
[    5.852199] registered taskstats version 1
[    5.852565]   Magic number: 5:77:961
[    5.852699] rtc_cmos 00:04: setting system clock to 2009-12-08 00:58:30 UTC 
(1260233910)
[    5.852757] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    5.852797] EDD information not available.
[    5.852875] Freeing unused kernel memory: 652k freed
[    5.853020] Write protecting the kernel read-only data: 10240k
[    5.853244] Freeing unused kernel memory: 808k freed
[    5.853549] Freeing unused kernel memory: 1768k freed
[    5.947623] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    5.947696] r8169 0000:04:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    5.947744] r8169 0000:04:00.0: enabling Mem-Wr-Inval
[    5.947825] r8169 0000:04:00.0: setting latency timer to 64
[    5.947910]   alloc irq_desc for 28 on node -1
[    5.947953]   alloc kstat_irqs on node -1
[    5.948006] r8169 0000:04:00.0: irq 28 for MSI/MSI-X
[    5.948482] eth0: RTL8168c/8111c at 0xffffc90000c5c000, 00:1f:d0:9d:27:af, 
XID 1c4000c0 IRQ 28
[    5.951194] Floppy drive(s): fd0 is 1.44M
[    5.951296] DOR0=4
[    5.951337] floppy interrupt on bizarre fdc 1
[    5.951381] handler=(null)
[    5.974212] ohci1394 0000:05:07.0: PCI INT A -> GSI 23 (level, low) -> IRQ 
23
[    5.983876] FDC 0 is a post-1991 82077
[    6.031318] ohci1394: fw-host0: OHCI-1394 1.1 (PCI): IRQ=[23]  
MMIO=[e9204000-e92047ff]  Max Packet=[2048]  IR/IT contexts=[4/8]
[    6.424084] kjournald starting.  Commit interval 5 seconds
[    6.424094] EXT3-fs: mounted filesystem with writeback data mode.
[    6.780027] usb 3-1: new full speed USB device using uhci_hcd and address 2
[    7.085817] usb 3-1: configuration #1 chosen from 1 choice
[    7.350429] ieee1394: Host added: ID:BUS[0-00:1023]  GUID[007c2d6400001fd0]
[    7.370045] usb 5-1: new low speed USB device using uhci_hcd and address 2
[    7.543795] usb 5-1: configuration #1 chosen from 1 choice
[    7.820039] usb 5-2: new full speed USB device using uhci_hcd and address 3
[    7.998774] usb 5-2: configuration #1 chosen from 1 choice
[    8.350029] usb 8-1: new full speed USB device using uhci_hcd and address 2
[    8.527169] usb 8-1: configuration #1 chosen from 1 choice
[    8.529095] hub 8-1:1.0: USB hub found
[    8.531074] hub 8-1:1.0: 4 ports detected
[    8.810034] usb 8-2: new low speed USB device using uhci_hcd and address 3
[    9.048128] usb 8-2: configuration #1 chosen from 1 choice
[    9.131075] usb 8-1.4: new low speed USB device using uhci_hcd and address 
4
[    9.272139] usb 8-1.4: configuration #1 chosen from 1 choice
[   11.748097] udev: starting version 147
[   11.864974] usbcore: registered new interface driver hiddev
[   11.883321] input: Logitech USB RECEIVER as 
/devices/pci0000:00/0000:00:1d.2/usb8/8-2/8-2:1.0/input/input3
[   11.883418] generic-usb 0003:046D:C50E.0001: input,hidraw0: USB HID v1.11 
Mouse [Logitech USB RECEIVER] on usb-0000:00:1d.2-2/input0
[   11.897294] input: CHESEN PS2 to USB Converter as 
/devices/pci0000:00/0000:00:1d.2/usb8/8-1/8-1.4/8-1.4:1.0/input/input4
[   11.897346] generic-usb 0003:0A81:0205.0002: input,hidraw1: USB HID v1.10 
Keyboard [CHESEN PS2 to USB Converter] on usb-0000:00:1d.2-1.4/input0
[   11.929345] input: CHESEN PS2 to USB Converter as 
/devices/pci0000:00/0000:00:1d.2/usb8/8-1/8-1.4/8-1.4:1.1/input/input5
[   11.929397] generic-usb 0003:0A81:0205.0003: input,hidraw2: USB HID v1.10 
Mouse [CHESEN PS2 to USB Converter] on usb-0000:00:1d.2-1.4/input1
[   11.929423] usbcore: registered new interface driver usbhid
[   11.929425] usbhid: v2.6:USB HID core driver
[   12.518804] lp: driver loaded but no devices found
[   12.619174] nvidia: module license 'NVIDIA' taints kernel.
[   12.619177] Disabling lock debugging due to kernel taint
[   13.075529] nvidia 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[   13.075541] nvidia 0000:01:00.0: setting latency timer to 64
[   13.075683] NVRM: loading NVIDIA UNIX x86_64 Kernel Module  185.18.36  Fri 
Aug 14 17:35:21 PDT 2009
[   13.303377] ip_tables: (C) 2000-2006 Netfilter Core Team
[   14.007467]   alloc irq_desc for 22 on node -1
[   14.007470]   alloc kstat_irqs on node -1
[   14.007475] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 
22
[   14.007626] HDA Intel 0000:00:1b.0: setting latency timer to 64
[   14.147337] input: HDA Digital PCBeep as 
/devices/pci0000:00/0000:00:1b.0/input/input6
[   14.231107] usbcore: registered new interface driver snd-usb-audio
[   14.879252] Adding 6562544k swap on /dev/mapper/cryptoswap.  Priority:-1 
extents:1 across:6562544k 
[   15.279906] EXT3 FS on sda8, internal journal
[   15.447909] r8169: eth0: link up
[   15.447904] r8169: eth0: link up
[   15.883264] kjournald starting.  Commit interval 5 seconds
[   15.883278] EXT3-fs: mounted filesystem with writeback data mode.
[   15.922683] kjournald starting.  Commit interval 5 seconds
[   15.922913] EXT3 FS on sda6, internal journal
[   15.922915] EXT3-fs: mounted filesystem with writeback data mode.
[   16.086401] kjournald starting.  Commit interval 5 seconds
[   16.086407] EXT3-fs: mounted filesystem with writeback data mode.
[   16.092691] kjournald starting.  Commit interval 5 seconds
[   16.092937] EXT3 FS on sdc6, internal journal
[   16.092939] EXT3-fs: mounted filesystem with writeback data mode.
[   17.563582] ppdev: user-space parallel port driver
[   18.794389] RPC: Registered udp transport module.
[   18.794391] RPC: Registered tcp transport module.
[   18.794392] RPC: Registered tcp NFSv4.1 backchannel transport module.
[   19.106071] svc: failed to register lockdv1 RPC service (errno 97).
[   24.999224] kjournald starting.  Commit interval 5 seconds
[   24.999231] EXT3-fs warning: maximal mount count reached, running e2fsck is 
recommended
[   25.011481] EXT3 FS on dm-1, internal journal
[   25.011485] EXT3-fs: mounted filesystem with writeback data mode.
[   26.303812] eth0: no IPv6 routers present
[   27.231500] CPUFREQ: Per core ondemand sysfs interface is deprecated - 
up_threshold
-----------------------------------------------------------------------------


Volker

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [BISECTED, REGRESSION] Successful resume from suspend but freezes after I/O
  2009-12-07 23:05         ` Yinghai Lu
@ 2009-12-08  1:13           ` Volker Lanz
  2009-12-21  8:54             ` Volker Lanz
  0 siblings, 1 reply; 15+ messages in thread
From: Volker Lanz @ 2009-12-08  1:13 UTC (permalink / raw)
  To: Yinghai Lu; +Cc: linux-kernel, mingo

On Tuesday 08 December 2009 00:05:11 Yinghai Lu wrote:
> the updated e820 table is the same to the one for 2.6.29...
> 
> so could be some other patch cause the problem.
> 
> please check if revert
> 2547089ca2db132e307ef68848ba029a8ec2f341
> could help.

I reverted to one commit before that, which would be 
eaa959df299157e2640fcb3321537501b6afd9e6
if I am not mistaken. I built and booted that kernel and could reproduce the 
freeze with it (TBH this was not surprising to me, because I originally pinned 
down the problem by bisecting the commits and this commit is after the one 
bisecting found. Am I missing a detail here?)

But strangely enough the freeze this time produced an oops before it locked 
the machine. I couldn't save it to a file but took a picture. The screenshot 
is here:
http://banane.volker-lanz.de/08122009013.jpg
The oops is _not _reproducable. After a reboot with this same kernel, a 
suspend/resume cycle and some I/O the machine locks again without showing the 
oops.

Volker

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [BISECTED, REGRESSION] Successful resume from suspend but freezes after I/O
  2009-12-08  1:13           ` Volker Lanz
@ 2009-12-21  8:54             ` Volker Lanz
  2009-12-28 23:40               ` Rafael J. Wysocki
  2010-01-13  7:35               ` Yinghai Lu
  0 siblings, 2 replies; 15+ messages in thread
From: Volker Lanz @ 2009-12-21  8:54 UTC (permalink / raw)
  To: Yinghai Lu; +Cc: linux-kernel, mingo

On Tuesday 08 December 2009 02:13:20 Volker Lanz wrote:
> On Tuesday 08 December 2009 00:05:11 Yinghai Lu wrote:
> > the updated e820 table is the same to the one for 2.6.29...
> >
> > so could be some other patch cause the problem.
> >
> > please check if revert
> > 2547089ca2db132e307ef68848ba029a8ec2f341
> > could help.
> 
> I reverted to one commit before that, which would be
> eaa959df299157e2640fcb3321537501b6afd9e6
> if I am not mistaken. I built and booted that kernel and could reproduce
>  the freeze with it (TBH this was not surprising to me, because I
>  originally pinned down the problem by bisecting the commits and this
>  commit is after the one bisecting found. Am I missing a detail here?)
> 
> But strangely enough the freeze this time produced an oops before it locked
> the machine. I couldn't save it to a file but took a picture. The
>  screenshot is here:
> http://banane.volker-lanz.de/08122009013.jpg
> The oops is _not _reproducable. After a reboot with this same kernel, a
> suspend/resume cycle and some I/O the machine locks again without showing
>  the oops.
> 
> Volker
> 

Any news on this problem? Anything else I can do to help debug the situation? 
The prospect of being confined to distros with kernels < 2.6.29 for the next 
couple of years on this machine worries me, obviously.


Volker

-- 
Volker Lanz
http://www.volker-lanz.de

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [BISECTED, REGRESSION] Successful resume from suspend but freezes after I/O
  2009-12-21  8:54             ` Volker Lanz
@ 2009-12-28 23:40               ` Rafael J. Wysocki
  2010-01-13  7:35               ` Yinghai Lu
  1 sibling, 0 replies; 15+ messages in thread
From: Rafael J. Wysocki @ 2009-12-28 23:40 UTC (permalink / raw)
  To: Volker Lanz; +Cc: Yinghai Lu, linux-kernel, mingo

On Monday 21 December 2009, Volker Lanz wrote:
> On Tuesday 08 December 2009 02:13:20 Volker Lanz wrote:
> > On Tuesday 08 December 2009 00:05:11 Yinghai Lu wrote:
> > > the updated e820 table is the same to the one for 2.6.29...
> > >
> > > so could be some other patch cause the problem.
> > >
> > > please check if revert
> > > 2547089ca2db132e307ef68848ba029a8ec2f341
> > > could help.
> > 
> > I reverted to one commit before that, which would be
> > eaa959df299157e2640fcb3321537501b6afd9e6
> > if I am not mistaken. I built and booted that kernel and could reproduce
> >  the freeze with it (TBH this was not surprising to me, because I
> >  originally pinned down the problem by bisecting the commits and this
> >  commit is after the one bisecting found. Am I missing a detail here?)
> > 
> > But strangely enough the freeze this time produced an oops before it locked
> > the machine. I couldn't save it to a file but took a picture. The
> >  screenshot is here:
> > http://banane.volker-lanz.de/08122009013.jpg
> > The oops is _not _reproducable. After a reboot with this same kernel, a
> > suspend/resume cycle and some I/O the machine locks again without showing
> >  the oops.
> > 
> > Volker
> > 
> 
> Any news on this problem? Anything else I can do to help debug the situation? 
> The prospect of being confined to distros with kernels < 2.6.29 for the next 
> couple of years on this machine worries me, obviously.

I have created a Bugzilla entry for this bug at
http://bugzilla.kernel.org/show_bug.cgi?id=14921

Please use it for further tracking of this bug.

Rafael

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [BISECTED, REGRESSION] Successful resume from suspend but freezes  after I/O
  2009-12-21  8:54             ` Volker Lanz
  2009-12-28 23:40               ` Rafael J. Wysocki
@ 2010-01-13  7:35               ` Yinghai Lu
  2010-01-13 18:04                 ` Volker Lanz
  1 sibling, 1 reply; 15+ messages in thread
From: Yinghai Lu @ 2010-01-13  7:35 UTC (permalink / raw)
  To: Volker Lanz; +Cc: linux-kernel, mingo

On Mon, Dec 21, 2009 at 12:54 AM, Volker Lanz <vl@fidra.de> wrote:
> On Tuesday 08 December 2009 02:13:20 Volker Lanz wrote:
>> On Tuesday 08 December 2009 00:05:11 Yinghai Lu wrote:
>> > the updated e820 table is the same to the one for 2.6.29...
>> >
>> > so could be some other patch cause the problem.
>> >
>> > please check if revert
>> > 2547089ca2db132e307ef68848ba029a8ec2f341
>> > could help.
>>
>> I reverted to one commit before that, which would be
>> eaa959df299157e2640fcb3321537501b6afd9e6
>> if I am not mistaken. I built and booted that kernel and could reproduce
>>  the freeze with it (TBH this was not surprising to me, because I
>>  originally pinned down the problem by bisecting the commits and this
>>  commit is after the one bisecting found. Am I missing a detail here?)
>>
>> But strangely enough the freeze this time produced an oops before it locked
>> the machine. I couldn't save it to a file but took a picture. The
>>  screenshot is here:
>> http://banane.volker-lanz.de/08122009013.jpg
>> The oops is _not _reproducable. After a reboot with this same kernel, a
>> suspend/resume cycle and some I/O the machine locks again without showing
>>  the oops.
>>
>> Volker
>>
>
> Any news on this problem? Anything else I can do to help debug the situation?
> The prospect of being confined to distros with kernels < 2.6.29 for the next
> couple of years on this machine worries me, obviously.
>

as 6d794 said that is used fix exposed bug.
...
please checkout out

c61cf4cfe7c73c7aa62dde3ff82cd475b9c41481

and boot with debug.

YH

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [BISECTED, REGRESSION] Successful resume from suspend but freezes after I/O
  2010-01-13  7:35               ` Yinghai Lu
@ 2010-01-13 18:04                 ` Volker Lanz
  2010-01-13 19:57                   ` Yinghai Lu
  0 siblings, 1 reply; 15+ messages in thread
From: Volker Lanz @ 2010-01-13 18:04 UTC (permalink / raw)
  To: Yinghai Lu; +Cc: linux-kernel, mingo

On Wednesday 13 January 2010 08:35:39 Yinghai Lu wrote:
> On Mon, Dec 21, 2009 at 12:54 AM, Volker Lanz <vl@fidra.de> wrote:
> > Any news on this problem? Anything else I can do to help debug the
> > situation? The prospect of being confined to distros with kernels <
> > 2.6.29 for the next couple of years on this machine worries me,
> > obviously.
> 
> as 6d794 said that is used fix exposed bug.

I beg your pardon?

> please checkout out
> 
> c61cf4cfe7c73c7aa62dde3ff82cd475b9c41481
> 
> and boot with debug.

This is the boot log:

-----------------------------------------------------------------------------

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 2.6.29-rc7 (vl@trevor) (gcc version 4.4.1 (Ubuntu 
4.4.1-4ubuntu8) ) #2 SMP Wed Jan 13 18:04:42 CET 2010
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-2.6.29-rc7 
root=UUID=160351ee-c9b0-4a72-9fd5-9962c8137a7e ro debug nosplash
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Centaur CentaurHauls
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
[    0.000000]  BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 00000000cfee0000 (usable)
[    0.000000]  BIOS-e820: 00000000cfee0000 - 00000000cfee2000 (ACPI NVS)
[    0.000000]  BIOS-e820: 00000000cfee2000 - 00000000cfef0000 (ACPI data)
[    0.000000]  BIOS-e820: 00000000cfef0000 - 00000000cff00000 (reserved)
[    0.000000]  BIOS-e820: 00000000e0000000 - 00000000e4000000 (reserved)
[    0.000000]  BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)
[    0.000000]  BIOS-e820: 0000000100000000 - 00000001b0000000 (usable)
[    0.000000] DMI 2.4 present.
[    0.000000] last_pfn = 0x1b0000 max_arch_pfn = 0x100000000
[    0.000000] e820 update range: 00000000cff00000 - 0000000100000000 (usable) 
==> (reserved)
[    0.000000] last_pfn = 0xcfee0 max_arch_pfn = 0x100000000
[    0.000000] e820 update range: 0000000000001000 - 0000000000006000 (usable) 
==> (reserved)
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] modified physical RAM map:
[    0.000000]  modified: 0000000000000000 - 0000000000001000 (usable)
[    0.000000]  modified: 0000000000001000 - 0000000000006000 (reserved)
[    0.000000]  modified: 0000000000006000 - 000000000009f800 (usable)
[    0.000000]  modified: 000000000009f800 - 00000000000a0000 (reserved)
[    0.000000]  modified: 00000000000f0000 - 0000000000100000 (reserved)
[    0.000000]  modified: 0000000000100000 - 00000000cfee0000 (usable)
[    0.000000]  modified: 00000000cfee0000 - 00000000cfee2000 (ACPI NVS)
[    0.000000]  modified: 00000000cfee2000 - 00000000cfef0000 (ACPI data)
[    0.000000]  modified: 00000000cfef0000 - 00000000cff00000 (reserved)
[    0.000000]  modified: 00000000e0000000 - 00000000e4000000 (reserved)
[    0.000000]  modified: 00000000fec00000 - 0000000100000000 (reserved)
[    0.000000]  modified: 0000000100000000 - 00000001b0000000 (usable)
[    0.000000] init_memory_mapping: 0000000000000000-00000000cfee0000
[    0.000000]  0000000000 - 00cfe00000 page 2M
[    0.000000]  00cfe00000 - 00cfee0000 page 4k
[    0.000000] kernel direct mapping tables up to cfee0000 @ 8000-e000
[    0.000000] init_memory_mapping: 0000000100000000-00000001b0000000
[    0.000000]  0100000000 - 01b0000000 page 2M
[    0.000000] kernel direct mapping tables up to 1b0000000 @ c000-14000
[    0.000000] RAMDISK: 34bb5000 - 37fefa73
[    0.000000] ACPI: RSDP 000F7280, 0014 (r0 GBT   )
[    0.000000] ACPI: RSDT CFEE2040, 004C (r1 GBT    GBTUACPI 42302E31 GBTU  
1010101)
[    0.000000] ACPI: FACP CFEE20C0, 0074 (r1 GBT    GBTUACPI 42302E31 GBTU  
1010101)
[    0.000000] FADT: X_PM1a_EVT_BLK.bit_width (16) does not match PM1_EVT_LEN 
(4)
[    0.000000] ACPI: DSDT CFEE2180, 4CD9 (r1 GBT    GBTUACPI     1000 MSFT  
100000C)
[    0.000000] ACPI: FACS CFEE0000, 0040
[    0.000000] ACPI: EUDS CFEE7580, 0500 (r1 GBT                    0             
0)
[    0.000000] ACPI: HPET CFEE74C0, 0038 (r1 GBT    GBTUACPI 42302E31 GBTU       
98)
[    0.000000] ACPI: MCFG CFEE7540, 003C (r1 GBT    GBTUACPI 42302E31 GBTU  
1010101)
[    0.000000] ACPI: APIC CFEE6EC0, 0084 (r1 GBT    GBTUACPI 42302E31 GBTU  
1010101)
[    0.000000] ACPI: SSDT CFEE83B0, 018A (r1  PmRef  Cpu0Cst     3001 INTL 
20040311)
[    0.000000] ACPI: SSDT CFEE8540, 018A (r1  PmRef  Cpu1Cst     3001 INTL 
20040311)
[    0.000000] ACPI: SSDT CFEE86D0, 018A (r1  PmRef  Cpu2Cst     3001 INTL 
20040311)
[    0.000000] ACPI: SSDT CFEE8860, 018A (r1  PmRef  Cpu3Cst     3001 INTL 
20040311)
[    0.000000] ACPI: SSDT CFEE89F0, 03AB (r1  PmRef    CpuPm     3000 INTL 
20040311)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] (7 early reservations) ==> bootmem [0000000000 - 01b0000000]
[    0.000000]   #0 [0000000000 - 0000001000]   BIOS data page ==> [0000000000 
- 0000001000]
[    0.000000]   #1 [0000006000 - 0000008000]       TRAMPOLINE ==> [0000006000 
- 0000008000]
[    0.000000]   #2 [0000200000 - 0000adaff8]    TEXT DATA BSS ==> [0000200000 
- 0000adaff8]
[    0.000000]   #3 [0034bb5000 - 0037fefa73]          RAMDISK ==> [0034bb5000 
- 0037fefa73]
[    0.000000]   #4 [000009f800 - 0000100000]    BIOS reserved ==> [000009f800 
- 0000100000]
[    0.000000]   #5 [0000008000 - 000000c000]          PGTABLE ==> [0000008000 
- 000000c000]
[    0.000000]   #6 [000000c000 - 000000f000]          PGTABLE ==> [000000c000 
- 000000f000]
[    0.000000] found SMP MP-table at [ffff8800000f5890] f5890
[    0.000000]  [ffffe20000000000-ffffe20005ffffff] PMD -> [ffff880028200000-
ffff88002e1fffff] on node 0
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000000 -> 0x00001000
[    0.000000]   DMA32    0x00001000 -> 0x00100000
[    0.000000]   Normal   0x00100000 -> 0x001b0000
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[4] active PFN ranges
[    0.000000]     0: 0x00000000 -> 0x00000001
[    0.000000]     0: 0x00000006 -> 0x0000009f
[    0.000000]     0: 0x00000100 -> 0x000cfee0
[    0.000000]     0: 0x00100000 -> 0x001b0000
[    0.000000] On node 0 totalpages: 1572474
[    0.000000]   DMA zone: 56 pages used for memmap
[    0.000000]   DMA zone: 2372 pages reserved
[    0.000000]   DMA zone: 1566 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 14280 pages used for memmap
[    0.000000]   DMA32 zone: 833304 pages, LIFO batch:31
[    0.000000]   Normal zone: 9856 pages used for memmap
[    0.000000]   Normal zone: 711040 pages, LIFO batch:31
[    0.000000] ACPI: PM-Timer IO Port: 0x408
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x03] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] dfl dfl lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 2, version 0, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] SMP: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 24
[    0.000000] PM: Registered nosave memory: 0000000000001000 - 
0000000000006000
[    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] PM: Registered nosave memory: 00000000cfee0000 - 
00000000cfee2000
[    0.000000] PM: Registered nosave memory: 00000000cfee2000 - 
00000000cfef0000
[    0.000000] PM: Registered nosave memory: 00000000cfef0000 - 
00000000cff00000
[    0.000000] PM: Registered nosave memory: 00000000cff00000 - 
00000000e0000000
[    0.000000] PM: Registered nosave memory: 00000000e0000000 - 
00000000e4000000
[    0.000000] PM: Registered nosave memory: 00000000e4000000 - 
00000000fec00000
[    0.000000] PM: Registered nosave memory: 00000000fec00000 - 
0000000100000000
[    0.000000] Allocating PCI resources starting at e6000000 (gap: 
e4000000:1ac00000)
[    0.000000] NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] PERCPU: Embedded 29 pages at ffff880028034000, static data 88992 
bytes
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total 
pages: 1545910
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.29-rc7 
root=UUID=160351ee-c9b0-4a72-9fd5-9962c8137a7e ro debug nosplash
[    0.000000] Initializing CPU#0
[    0.000000] xsave/xrstor: enabled xstate_bv 0x3, cntxt size 0x240
[    0.000000] NR_IRQS:2304
[    0.000000] PID hash table entries: 4096 (order: 12, 32768 bytes)
[    0.000000] Fast TSC calibration using PIT
[    0.000000] Detected 2832.938 MHz processor.
[    0.004000] Console: colour VGA+ 80x25
[    0.004000] console [tty0] enabled
[    0.004000] Dentry cache hash table entries: 1048576 (order: 11, 8388608 
bytes)
[    0.004000] Inode-cache hash table entries: 524288 (order: 10, 4194304 
bytes)
[    0.004000] allocated 70778880 bytes of page_cgroup
[    0.004000] please try cgroup_disable=memory option if you don't want
[    0.004000] Checking aperture...
[    0.004000] No AGP bridge found
[    0.004000] Calgary: detecting Calgary via BIOS EBDA area
[    0.004000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[    0.004000] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.004000] Placing 64MB software IO TLB between ffff880020000000 - 
ffff880024000000
[    0.004000] software IO TLB at phys 0x20000000 - 0x24000000
[    0.004000] Memory: 5979968k/7077888k available (4647k kernel code, 787992k 
absent, 308996k reserved, 2463k data, 528k init)
[    0.004000] SLUB: Genslabs=12, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, 
Nodes=1
[    0.004000] hpet clockevent registered
[    0.004000] HPET: 4 timers in total, 0 timers will be used for per-cpu 
timer
[    0.004000] Calibrating delay loop (skipped), value calculated using timer 
frequency.. 5665.87 BogoMIPS (lpj=11331752)
[    0.004000] Security Framework initialized
[    0.004000] SELinux:  Disabled at boot.
[    0.004000] Mount-cache hash table entries: 256
[    0.004000] Initializing cgroup subsys ns
[    0.004000] Initializing cgroup subsys cpuacct
[    0.004000] Initializing cgroup subsys memory
[    0.004000] Initializing cgroup subsys freezer
[    0.004000] CPU: L1 I cache: 32K, L1 D cache: 32K
[    0.004000] CPU: L2 cache: 6144K
[    0.004000] [ds] using Core 2/Atom configuration
[    0.004000] CPU: Physical Processor ID: 0
[    0.004000] CPU: Processor Core ID: 0
[    0.004000] using mwait in idle threads.
[    0.004000] ACPI: Core revision 20081204
[    0.010847] Setting APIC routing to flat
[    0.011237] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.050963] CPU0: Intel(R) Core(TM)2 Quad CPU    Q9550  @ 2.83GHz stepping 
0a
[    0.052001] Booting processor 1 APIC 0x3 ip 0x6000
[    0.004000] Initializing CPU#1
[    0.004000] Calibrating delay using timer specific routine.. 5665.98 
BogoMIPS (lpj=11331961)
[    0.004000] CPU: L1 I cache: 32K, L1 D cache: 32K
[    0.004000] CPU: L2 cache: 6144K
[    0.004000] [ds] using Core 2/Atom configuration
[    0.004000] CPU: Physical Processor ID: 0
[    0.004000] CPU: Processor Core ID: 3
[    0.136751] CPU1: Intel(R) Core(TM)2 Quad CPU    Q9550  @ 2.83GHz stepping 
0a
[    0.137725] checking TSC synchronization [CPU#0 -> CPU#1]: passed.
[    0.140120] Booting processor 2 APIC 0x2 ip 0x6000
[    0.004000] Initializing CPU#2
[    0.004000] Calibrating delay using timer specific routine.. 5665.98 
BogoMIPS (lpj=11331978)
[    0.004000] CPU: L1 I cache: 32K, L1 D cache: 32K
[    0.004000] CPU: L2 cache: 6144K
[    0.004000] [ds] using Core 2/Atom configuration
[    0.004000] CPU: Physical Processor ID: 0
[    0.004000] CPU: Processor Core ID: 2
[    0.232761] CPU2: Intel(R) Core(TM)2 Quad CPU    Q9550  @ 2.83GHz stepping 
0a
[    0.233137] checking TSC synchronization [CPU#0 -> CPU#2]: passed.
[    0.236111] Booting processor 3 APIC 0x1 ip 0x6000
[    0.004000] Initializing CPU#3
[    0.004000] Calibrating delay using timer specific routine.. 5665.95 
BogoMIPS (lpj=11331915)
[    0.004000] CPU: L1 I cache: 32K, L1 D cache: 32K
[    0.004000] CPU: L2 cache: 6144K
[    0.004000] [ds] using Core 2/Atom configuration
[    0.004000] CPU: Physical Processor ID: 0
[    0.004000] CPU: Processor Core ID: 1
[    0.328759] CPU3: Intel(R) Core(TM)2 Quad CPU    Q9550  @ 2.83GHz stepping 
0a
[    0.329145] checking TSC synchronization [CPU#0 -> CPU#3]: passed.
[    0.332071] Brought up 4 CPUs
[    0.332110] Total of 4 processors activated (22663.80 BogoMIPS).
[    0.332190] CPU0 attaching sched-domain:
[    0.332229]  domain 0: span 0,3 level MC
[    0.332294]   groups: 0 3
[    0.332411]   domain 1: span 0-3 level CPU
[    0.332486]    groups: 0,3 1-2
[    0.332604] CPU1 attaching sched-domain:
[    0.332642]  domain 0: span 1-2 level MC
[    0.332707]   groups: 1 2
[    0.332823]   domain 1: span 0-3 level CPU
[    0.332888]    groups: 1-2 0,3
[    0.333006] CPU2 attaching sched-domain:
[    0.333044]  domain 0: span 1-2 level MC
[    0.333108]   groups: 2 1
[    0.333225]   domain 1: span 0-3 level CPU
[    0.333290]    groups: 1-2 0,3
[    0.333408] CPU3 attaching sched-domain:
[    0.333446]  domain 0: span 0,3 level MC
[    0.333510]   groups: 3 0
[    0.333627]   domain 1: span 0-3 level CPU
[    0.333691]    groups: 0,3 1-2
[    0.333904] net_namespace: 1840 bytes
[    0.333904] Booting paravirtualized kernel on bare hardware
[    0.333904] regulator: core version 0.5
[    0.333904] Time: 18:45:28  Date: 01/13/10
[    0.333904] NET: Registered protocol family 16
[    0.336014] ACPI: bus type pci registered
[    0.336100] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 63
[    0.336141] PCI: MCFG area at e0000000 reserved in E820
[    0.337508] PCI: Using MMCONFIG at e0000000 - e3ffffff
[    0.337547] PCI: Using configuration type 1 for base access
[    0.338043] bio: create slab <bio-0> at 0
[    0.338093] ACPI: EC: Look up EC in DSDT
[    0.343850] ACPI: Interpreter enabled
[    0.343892] ACPI: (supports S0 S3 S4 S5)
[    0.344039] ACPI: Using IOAPIC for interrupt routing
[    0.347473] ACPI: No dock devices found.
[    0.347520] ACPI: PCI Root Bridge [PCI0] (0000:00)
[    0.347625] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.347666] pci 0000:00:01.0: PME# disabled
[    0.347755] pci 0000:00:1a.0: reg 20 io port: [0xe100-0xe11f]
[    0.347847] pci 0000:00:1a.1: reg 20 io port: [0xe200-0xe21f]
[    0.347939] pci 0000:00:1a.2: reg 20 io port: [0xe000-0xe01f]
[    0.348048] pci 0000:00:1a.7: reg 10 32bit mmio: [0xe9305000-0xe93053ff]
[    0.348150] pci 0000:00:1b.0: reg 10 64bit mmio: [0xe9300000-0xe9303fff]
[    0.348221] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.348262] pci 0000:00:1b.0: PME# disabled
[    0.348342] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.348383] pci 0000:00:1c.0: PME# disabled
[    0.348464] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[    0.348505] pci 0000:00:1c.3: PME# disabled
[    0.348586] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    0.348627] pci 0000:00:1c.4: PME# disabled
[    0.348705] pci 0000:00:1d.0: reg 20 io port: [0xe300-0xe31f]
[    0.348797] pci 0000:00:1d.1: reg 20 io port: [0xe400-0xe41f]
[    0.348888] pci 0000:00:1d.2: reg 20 io port: [0xe500-0xe51f]
[    0.348982] pci 0000:00:1d.7: reg 10 32bit mmio: [0xe9304000-0xe93043ff]
[    0.349183] pci 0000:00:1f.2: reg 10 io port: [0x00-0x07]
[    0.349225] pci 0000:00:1f.2: reg 14 io port: [0x00-0x03]
[    0.349266] pci 0000:00:1f.2: reg 18 io port: [0x00-0x07]
[    0.349308] pci 0000:00:1f.2: reg 1c io port: [0x00-0x03]
[    0.349350] pci 0000:00:1f.2: reg 20 io port: [0xf000-0xf00f]
[    0.349392] pci 0000:00:1f.2: reg 24 io port: [0xf100-0xf10f]
[    0.349465] pci 0000:00:1f.3: reg 10 64bit mmio: [0xe9306000-0xe93060ff]
[    0.349514] pci 0000:00:1f.3: reg 20 io port: [0x500-0x51f]
[    0.349594] pci 0000:00:1f.5: reg 10 io port: [0xe700-0xe707]
[    0.349637] pci 0000:00:1f.5: reg 14 io port: [0xe800-0xe803]
[    0.349679] pci 0000:00:1f.5: reg 18 io port: [0xe900-0xe907]
[    0.349721] pci 0000:00:1f.5: reg 1c io port: [0xea00-0xea03]
[    0.349763] pci 0000:00:1f.5: reg 20 io port: [0xeb00-0xeb0f]
[    0.349805] pci 0000:00:1f.5: reg 24 io port: [0xec00-0xec0f]
[    0.349886] pci 0000:01:00.0: reg 10 32bit mmio: [0xe6000000-0xe6ffffff]
[    0.349932] pci 0000:01:00.0: reg 14 64bit mmio: [0xd0000000-0xdfffffff]
[    0.349977] pci 0000:01:00.0: reg 1c 64bit mmio: [0xe4000000-0xe5ffffff]
[    0.350020] pci 0000:01:00.0: reg 24 io port: [0xb000-0xb07f]
[    0.350063] pci 0000:01:00.0: reg 30 32bit mmio: [0x000000-0x01ffff]
[    0.350146] pci 0000:00:01.0: bridge io port: [0xb000-0xbfff]
[    0.350186] pci 0000:00:01.0: bridge 32bit mmio: [0xe4000000-0xe7ffffff]
[    0.350228] pci 0000:00:01.0: bridge 64bit mmio pref: [0xd0000000-0xdfffffff]
[    0.350375] pci 0000:03:00.0: reg 24 32bit mmio: [0xe9000000-0xe9001fff]
[    0.350448] pci 0000:03:00.0: PME# supported from D3hot
[    0.350490] pci 0000:03:00.0: PME# disabled
[    0.350572] pci 0000:03:00.1: reg 10 io port: [0xc000-0xc007]
[    0.350617] pci 0000:03:00.1: reg 14 io port: [0xc100-0xc103]
[    0.350663] pci 0000:03:00.1: reg 18 io port: [0xc200-0xc207]
[    0.350708] pci 0000:03:00.1: reg 1c io port: [0xc300-0xc303]
[    0.350754] pci 0000:03:00.1: reg 20 io port: [0xc400-0xc40f]
[    0.350866] pci 0000:00:1c.3: bridge io port: [0xc000-0xcfff]
[    0.350907] pci 0000:00:1c.3: bridge 32bit mmio: [0xe9000000-0xe90fffff]
[    0.350986] pci 0000:04:00.0: reg 10 io port: [0xd000-0xd0ff]
[    0.351041] pci 0000:04:00.0: reg 18 64bit mmio: [0xe9110000-0xe9110fff]
[    0.351092] pci 0000:04:00.0: reg 20 64bit mmio: [0xe9100000-0xe910ffff]
[    0.351137] pci 0000:04:00.0: reg 30 32bit mmio: [0x000000-0x00ffff]
[    0.351209] pci 0000:04:00.0: supports D1 D2
[    0.351248] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.351290] pci 0000:04:00.0: PME# disabled
[    0.351368] pci 0000:00:1c.4: bridge io port: [0xd000-0xdfff]
[    0.351409] pci 0000:00:1c.4: bridge 32bit mmio: [0xe8000000-0xe8ffffff]
[    0.351452] pci 0000:00:1c.4: bridge 64bit mmio pref: [0xe9100000-0xe91fffff]
[    0.351526] pci 0000:05:07.0: reg 10 32bit mmio: [0xe9204000-0xe92047ff]
[    0.351570] pci 0000:05:07.0: reg 14 32bit mmio: [0xe9200000-0xe9203fff]
[    0.351645] pci 0000:05:07.0: supports D1 D2
[    0.351683] pci 0000:05:07.0: PME# supported from D0 D1 D2 D3hot
[    0.351725] pci 0000:05:07.0: PME# disabled
[    0.351790] pci 0000:00:1e.0: transparent bridge
[    0.351832] pci 0000:00:1e.0: bridge 32bit mmio: [0xe9200000-0xe92fffff]
[    0.351889] pci_bus 0000:00: on NUMA node 0
[    0.351930] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.352084] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX0._PRT]
[    0.352164] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX3._PRT]
[    0.352245] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX4._PRT]
[    0.352322] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB0._PRT]
[    0.365232] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 *10 11 12 14 
15)
[    0.365714] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 11 12 14 
15) *0, disabled.
[    0.366240] ACPI: PCI Interrupt Link [LNKC] (IRQs *3 4 5 6 7 9 10 11 12 14 
15)
[    0.366712] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 *11 12 14 
15)
[    0.367182] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 11 12 14 
15) *0, disabled.
[    0.367708] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 *4 5 6 7 9 10 11 12 14 
15)
[    0.368174] ACPI: PCI Interrupt Link [LNK0] (IRQs 3 4 *5 6 7 9 10 11 12 14 
15)
[    0.368644] ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 6 *7 9 10 11 12 14 
15)
[    0.369307] SCSI subsystem initialized
[    0.369307] libata version 3.00 loaded.
[    0.369307] usbcore: registered new interface driver usbfs
[    0.369307] usbcore: registered new interface driver hub
[    0.369307] usbcore: registered new device driver usb
[    0.369307] ACPI: WMI: Mapper loaded
[    0.369307] PCI: Using ACPI for IRQ routing
[    0.384007] Bluetooth: Core ver 2.14
[    0.384059] NET: Registered protocol family 31
[    0.384066] Bluetooth: HCI device and connection manager initialized
[    0.384106] Bluetooth: HCI socket layer initialized
[    0.384145] NET: Registered protocol family 8
[    0.384183] NET: Registered protocol family 20
[    0.384228] NetLabel: Initializing
[    0.384266] NetLabel:  domain hash size = 128
[    0.384304] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.384350] NetLabel:  unlabeled traffic allowed by default
[    0.384421] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
[    0.384594] hpet0: 4 comparators, 64-bit 14.318180 MHz counter
[    0.403989] pnp: PnP ACPI init
[    0.404636] ACPI: bus type pnp registered
[    0.406417] pnp: PnP ACPI: found 12 devices
[    0.406456] ACPI: ACPI bus type pnp unregistered
[    0.406499] system 00:01: ioport range 0x4d0-0x4d1 has been reserved
[    0.406539] system 00:01: ioport range 0x290-0x29f has been reserved
[    0.406580] system 00:01: ioport range 0x800-0x87f has been reserved
[    0.406620] system 00:01: ioport range 0x290-0x294 has been reserved
[    0.406660] system 00:01: ioport range 0x880-0x88f has been reserved
[    0.406700] system 00:01: ioport range 0x4c0-0x4ff could not be reserved
[    0.406744] system 00:08: ioport range 0x400-0x4bf has been reserved
[    0.406788] system 00:09: iomem range 0xe0000000-0xe3ffffff has been reserved
[    0.406831] system 00:0a: iomem range 0xccc00-0xcffff has been reserved
[    0.406871] system 00:0a: iomem range 0xf0000-0xf7fff could not be reserved
[    0.406912] system 00:0a: iomem range 0xf8000-0xfbfff could not be reserved
[    0.406953] system 00:0a: iomem range 0xfc000-0xfffff could not be reserved
[    0.406994] system 00:0a: iomem range 0xcfee0000-0xcfefffff could not be 
reserved
[    0.407042] system 00:0a: iomem range 0x0-0x9ffff could not be reserved
[    0.407083] system 00:0a: iomem range 0x100000-0xcfedffff could not be 
reserved
[    0.407131] system 00:0a: iomem range 0xfec00000-0xfec00fff has been 
reserved
[    0.407172] system 00:0a: iomem range 0xfed10000-0xfed1dfff has been 
reserved
[    0.407213] system 00:0a: iomem range 0xfed20000-0xfed8ffff has been reserved
[    0.407254] system 00:0a: iomem range 0xfee00000-0xfee00fff has been 
reserved
[    0.407295] system 00:0a: iomem range 0xffb00000-0xffb7ffff has been reserved
[    0.407336] system 00:0a: iomem range 0xfff00000-0xffffffff has been reserved
[    0.407377] system 00:0a: iomem range 0xe0000-0xeffff has been reserved
[    0.412003] pci 0000:00:01.0: PCI bridge, secondary bus 0000:01
[    0.412043] pci 0000:00:01.0:   IO window: 0xb000-0xbfff
[    0.412084] pci 0000:00:01.0:   MEM window: 0xe4000000-0xe7ffffff
[    0.412125] pci 0000:00:01.0:   PREFETCH window: 
0x000000d0000000-0x000000dfffffff
[    0.412174] pci 0000:00:1c.0: PCI bridge, secondary bus 0000:02
[    0.412214] pci 0000:00:1c.0:   IO window: disabled
[    0.412254] pci 0000:00:1c.0:   MEM window: disabled
[    0.412294] pci 0000:00:1c.0:   PREFETCH window: disabled
[    0.412337] pci 0000:00:1c.3: PCI bridge, secondary bus 0000:03
[    0.412377] pci 0000:00:1c.3:   IO window: 0xc000-0xcfff
[    0.412418] pci 0000:00:1c.3:   MEM window: 0xe9000000-0xe90fffff
[    0.412459] pci 0000:00:1c.3:   PREFETCH window: disabled
[    0.412501] pci 0000:00:1c.4: PCI bridge, secondary bus 0000:04
[    0.412541] pci 0000:00:1c.4:   IO window: 0xd000-0xdfff
[    0.412583] pci 0000:00:1c.4:   MEM window: 0xe8000000-0xe8ffffff
[    0.412624] pci 0000:00:1c.4:   PREFETCH window: 
0x000000e9100000-0x000000e91fffff
[    0.412675] pci 0000:00:1e.0: PCI bridge, secondary bus 0000:05
[    0.412714] pci 0000:00:1e.0:   IO window: disabled
[    0.412755] pci 0000:00:1e.0:   MEM window: 0xe9200000-0xe92fffff
[    0.412796] pci 0000:00:1e.0:   PREFETCH window: disabled
[    0.412848] pci 0000:00:01.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.412894] pci 0000:00:01.0: setting latency timer to 64
[    0.412937] pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.412978] pci 0000:00:1c.0: setting latency timer to 64
[    0.413022] pci 0000:00:1c.3: PCI INT D -> GSI 19 (level, low) -> IRQ 19
[    0.413063] pci 0000:00:1c.3: setting latency timer to 64
[    0.413106] pci 0000:00:1c.4: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.413147] pci 0000:00:1c.4: setting latency timer to 64
[    0.413190] pci 0000:00:1e.0: setting latency timer to 64
[    0.413230] pci_bus 0000:00: resource 0 io:  [0x00-0xffff]
[    0.413269] pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffffffffffff]
[    0.413310] pci_bus 0000:01: resource 0 io:  [0xb000-0xbfff]
[    0.413349] pci_bus 0000:01: resource 1 mem: [0xe4000000-0xe7ffffff]
[    0.413389] pci_bus 0000:01: resource 2 mem: [0xd0000000-0xdfffffff]
[    0.413429] pci_bus 0000:01: resource 3 mem: [0x0-0x0]
[    0.413478] pci_bus 0000:02: resource 0 mem: [0x0-0x0]
[    0.413517] pci_bus 0000:02: resource 1 mem: [0x0-0x0]
[    0.413556] pci_bus 0000:02: resource 2 mem: [0x0-0x0]
[    0.413595] pci_bus 0000:02: resource 3 mem: [0x0-0x0]
[    0.413634] pci_bus 0000:03: resource 0 io:  [0xc000-0xcfff]
[    0.413673] pci_bus 0000:03: resource 1 mem: [0xe9000000-0xe90fffff]
[    0.413713] pci_bus 0000:03: resource 2 mem: [0x0-0x0]
[    0.413752] pci_bus 0000:03: resource 3 mem: [0x0-0x0]
[    0.413791] pci_bus 0000:04: resource 0 io:  [0xd000-0xdfff]
[    0.413830] pci_bus 0000:04: resource 1 mem: [0xe8000000-0xe8ffffff]
[    0.413870] pci_bus 0000:04: resource 2 mem: [0xe9100000-0xe91fffff]
[    0.413910] pci_bus 0000:04: resource 3 mem: [0x0-0x0]
[    0.413949] pci_bus 0000:05: resource 0 mem: [0x0-0x0]
[    0.413988] pci_bus 0000:05: resource 1 mem: [0xe9200000-0xe92fffff]
[    0.414028] pci_bus 0000:05: resource 2 mem: [0x0-0x0]
[    0.414067] pci_bus 0000:05: resource 3 io:  [0x00-0xffff]
[    0.414106] pci_bus 0000:05: resource 4 mem: [0x000000-0xffffffffffffffff]
[    0.414163] NET: Registered protocol family 2
[    0.447952] IP route cache hash table entries: 262144 (order: 9, 2097152 
bytes)
[    0.448363] TCP established hash table entries: 262144 (order: 10, 4194304 
bytes)
[    0.449442] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.449914] TCP: Hash tables configured (established 262144 bind 65536)
[    0.449955] TCP reno registered
[    0.459959] NET: Registered protocol family 1
[    0.460064] checking if image is initramfs...<7>Switched to high resolution 
mode on CPU 2
[    0.501151] Switched to high resolution mode on CPU 3
[    0.501236] Switched to high resolution mode on CPU 1
[    0.503873] Switched to high resolution mode on CPU 0
[    1.254494]  it is
[    2.152422] Freeing initrd memory: 53482k freed
[    2.177807] Scanning for low memory corruption every 60 seconds
[    2.177954] audit: initializing netlink socket (disabled)
[    2.178006] type=2000 audit(1263408330.176:1): initialized
[    2.184415] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    2.185395] VFS: Disk quotas dquot_6.5.2
[    2.185470] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    2.185895] fuse init (API version 7.11)
[    2.185981] msgmni has been set to 11785
[    2.186190] alg: No test for stdrng (krng)
[    2.186234] io scheduler noop registered
[    2.186274] io scheduler anticipatory registered
[    2.186312] io scheduler deadline registered
[    2.186372] io scheduler cfq registered (default)
[    2.186541] pci 0000:01:00.0: Boot video device
[    2.186639] pcieport-driver 0000:00:01.0: setting latency timer to 64
[    2.186712] pcieport-driver 0000:00:01.0: irq 24 for MSI/MSI-X
[    2.186791] pcieport-driver 0000:00:1c.0: setting latency timer to 64
[    2.186870] pcieport-driver 0000:00:1c.0: irq 25 for MSI/MSI-X
[    2.186965] pcieport-driver 0000:00:1c.3: setting latency timer to 64
[    2.187042] pcieport-driver 0000:00:1c.3: irq 26 for MSI/MSI-X
[    2.187140] pcieport-driver 0000:00:1c.4: setting latency timer to 64
[    2.187218] pcieport-driver 0000:00:1c.4: irq 27 for MSI/MSI-X
[    2.187319] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    2.187833] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    2.187975] input: Power Button (FF) as 
/devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    2.188034] ACPI: Power Button (FF) [PWRF]
[    2.188099] input: Power Button (CM) as 
/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1
[    2.188149] ACPI: Power Button (CM) [PWRB]
[    2.188552] ACPI: SSDT CFEE7AD0, 022A (r1  PmRef  Cpu0Ist     3000 INTL 
20040311)
[    2.188834] ACPI: CPU0 (power states: C1[C1] C2[C2] C3[C3])
[    2.189006] processor ACPI_CPU:00: registered as cooling_device0
[    2.189052] ACPI: Processor [CPU0] (supports 8 throttling states)
[    2.189310] ACPI: SSDT CFEE7F90, 0152 (r1  PmRef  Cpu1Ist     3000 INTL 
20040311)
[    2.189658] ACPI Error (psparse-0537): Method parse/execution failed 
[\_PR_.CPU1._PDC] (Node ffff8801af815ec0), AE_ALREADY_EXISTS
[    2.189793] ACPI: Marking method _PDC as Serialized because of 
AE_ALREADY_EXISTS error
[    2.190045] ACPI: CPU1 (power states: C1[C1] C2[C2] C3[C3])
[    2.190211] processor ACPI_CPU:01: registered as cooling_device1
[    2.190253] ACPI: Processor [CPU1] (supports 8 throttling states)
[    2.190535] ACPI: SSDT CFEE80F0, 0152 (r1  PmRef  Cpu2Ist     3000 INTL 
20040311)
[    2.190869] ACPI Error (psparse-0537): Method parse/execution failed 
[\_PR_.CPU2._PDC] (Node ffff8801af815f40), AE_ALREADY_EXISTS
[    2.191004] ACPI: Marking method _PDC as Serialized because of 
AE_ALREADY_EXISTS error
[    2.191211] ACPI: CPU2 (power states: C1[C1] C2[C2] C3[C3])
[    2.191369] processor ACPI_CPU:02: registered as cooling_device2
[    2.191409] ACPI: Processor [CPU2] (supports 8 throttling states)
[    2.191657] ACPI: SSDT CFEE8250, 0152 (r1  PmRef  Cpu3Ist     3000 INTL 
20040311)
[    2.192010] ACPI Error (psparse-0537): Method parse/execution failed 
[\_PR_.CPU3._PDC] (Node ffff8801af815fc0), AE_ALREADY_EXISTS
[    2.192149] ACPI: Marking method _PDC as Serialized because of 
AE_ALREADY_EXISTS error
[    2.192377] ACPI: CPU3 (power states: C1[C1] C2[C2] C3[C3])
[    2.192545] processor ACPI_CPU:03: registered as cooling_device3
[    2.192587] ACPI: Processor [CPU3] (supports 8 throttling states)
[    2.194202] XENFS: not registering filesystem on non-xen platform
[    2.221656] Linux agpgart interface v0.103
[    2.221699] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    2.222377] brd: module loaded
[    2.222617] loop: module loaded
[    2.222696] Fixed MDIO Bus: probed
[    2.222736] PPP generic driver version 2.4.2
[    2.222806] input: Macintosh mouse button emulation as 
/devices/virtual/input/input2
[    2.222870] Driver 'sd' needs updating - please use bus_type methods
[    2.222915] Driver 'sr' needs updating - please use bus_type methods
[    2.222982] ahci 0000:03:00.0: version 3.0
[    2.223031] ahci 0000:03:00.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
[    2.237531] ahci 0000:03:00.0: AHCI 0001.0000 32 slots 2 ports 3 Gbps 0x3 
impl SATA mode
[    2.237583] ahci 0000:03:00.0: flags: 64bit ncq pm led clo pmp pio slum part 
[    2.237628] ahci 0000:03:00.0: setting latency timer to 64
[    2.237827] scsi0 : ahci
[    2.237945] scsi1 : ahci
[    2.238040] ata1: SATA max UDMA/133 abar m8192@0xe9000000 port 0xe9000100 
irq 19
[    2.238689] ata2: SATA max UDMA/133 abar m8192@0xe9000000 port 0xe9000180 
irq 19
[    2.556022] ata1: SATA link down (SStatus 0 SControl 300)
[    2.892021] ata2: SATA link down (SStatus 0 SControl 300)
[    2.908044] ata_piix 0000:00:1f.2: version 2.12
[    2.908090] ata_piix 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 
19
[    2.908149] ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
[    2.908349] ata_piix 0000:00:1f.2: setting latency timer to 64
[    2.908457] scsi2 : ata_piix
[    2.908565] scsi3 : ata_piix
[    2.909155] ata3: SATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xf000 irq 14
[    2.909198] ata4: SATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xf008 irq 15
[    3.704052] ata3.00: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    3.704108] ata3.01: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    3.746202] ata3.00: HPA detected: current 1953523055, native 1953525168
[    3.746246] ata3.00: ATA-8: ST31000528AS, CC34, max UDMA/133
[    3.746287] ata3.00: 1953523055 sectors, multi 16: LBA48 NCQ (depth 0/32)
[    3.746496] ata3.01: ATA-7: ST3300831AS, 3.02, max UDMA/133
[    3.746537] ata3.01: 586072368 sectors, multi 16: LBA48 NCQ (depth 0/32)
[    3.802227] ata3.00: configured for UDMA/133
[    3.808305] ata3.01: configured for UDMA/133
[    3.808433] scsi 2:0:0:0: Direct-Access     ATA      ST31000528AS     CC34 
PQ: 0 ANSI: 5
[    3.808539] sd 2:0:0:0: [sda] 1953523055 512-byte hardware sectors: (1.00 
TB/931 GiB)
[    3.808597] sd 2:0:0:0: [sda] Write Protect is off
[    3.808636] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    3.808690] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, 
doesn't support DPO or FUA
[    3.808777] sd 2:0:0:0: [sda] 1953523055 512-byte hardware sectors: (1.00 
TB/931 GiB)
[    3.808834] sd 2:0:0:0: [sda] Write Protect is off
[    3.808873] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    3.808927] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, 
doesn't support DPO or FUA
[    3.808978]  sda: sda1 sda2 < sda5 sda6 sda7 sda8 sda9 >
[    3.889484] sd 2:0:0:0: [sda] Attached SCSI disk
[    3.889550] sd 2:0:0:0: Attached scsi generic sg0 type 0
[    3.889630] scsi 2:0:1:0: Direct-Access     ATA      ST3300831AS      3.02 
PQ: 0 ANSI: 5
[    3.889727] sd 2:0:1:0: [sdb] 586072368 512-byte hardware sectors: (300 
GB/279 GiB)
[    3.889784] sd 2:0:1:0: [sdb] Write Protect is off
[    3.889823] sd 2:0:1:0: [sdb] Mode Sense: 00 3a 00 00
[    3.889876] sd 2:0:1:0: [sdb] Write cache: enabled, read cache: enabled, 
doesn't support DPO or FUA
[    3.889956] sd 2:0:1:0: [sdb] 586072368 512-byte hardware sectors: (300 
GB/279 GiB)
[    3.890013] sd 2:0:1:0: [sdb] Write Protect is off
[    3.890052] sd 2:0:1:0: [sdb] Mode Sense: 00 3a 00 00
[    3.890105] sd 2:0:1:0: [sdb] Write cache: enabled, read cache: enabled, 
doesn't support DPO or FUA
[    3.890156]  sdb: sdb1
[    3.907773] sd 2:0:1:0: [sdb] Attached SCSI disk
[    3.907838] sd 2:0:1:0: Attached scsi generic sg1 type 0
[    4.700051] ata4.00: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    4.700108] ata4.01: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    4.716278] ata4.00: ATA-8: SAMSUNG HD501LJ, CR100-11, max UDMA7
[    4.716320] ata4.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 0/32)
[    4.716382] ata4.01: ATAPI: HL-DT-STDVD-RAM GH22NS30, 1.01, max UDMA/100
[    4.724295] ata4.00: configured for UDMA/133
[    4.740187] ata4.01: configured for UDMA/100
[    4.740562] scsi 3:0:0:0: Direct-Access     ATA      SAMSUNG HD501LJ  CR10 
PQ: 0 ANSI: 5
[    4.740669] sd 3:0:0:0: [sdc] 976773168 512-byte hardware sectors: (500 
GB/465 GiB)
[    4.740725] sd 3:0:0:0: [sdc] Write Protect is off
[    4.740764] sd 3:0:0:0: [sdc] Mode Sense: 00 3a 00 00
[    4.740817] sd 3:0:0:0: [sdc] Write cache: enabled, read cache: enabled, 
doesn't support DPO or FUA
[    4.740896] sd 3:0:0:0: [sdc] 976773168 512-byte hardware sectors: (500 
GB/465 GiB)
[    4.740952] sd 3:0:0:0: [sdc] Write Protect is off
[    4.740991] sd 3:0:0:0: [sdc] Mode Sense: 00 3a 00 00
[    4.741044] sd 3:0:0:0: [sdc] Write cache: enabled, read cache: enabled, 
doesn't support DPO or FUA
[    4.741096]  sdc: sdc2 < sdc5 sdc6 sdc7 > sdc3
[    4.808997] sd 3:0:0:0: [sdc] Attached SCSI disk
[    4.809058] sd 3:0:0:0: Attached scsi generic sg2 type 0
[    4.810235] scsi 3:0:1:0: CD-ROM            HL-DT-ST DVD-RAM GH22NS30 1.01 
PQ: 0 ANSI: 5
[    4.813825] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 
cdda tray
[    4.813877] Uniform CD-ROM driver Revision: 3.20
[    4.814008] sr 3:0:1:0: Attached scsi CD-ROM sr0
[    4.814079] sr 3:0:1:0: Attached scsi generic sg3 type 5
[    4.814139] ata_piix 0000:00:1f.5: PCI INT B -> GSI 19 (level, low) -> IRQ 
19
[    4.814182] ata_piix 0000:00:1f.5: MAP [ P0 -- P1 -- ]
[    4.814379] ata_piix 0000:00:1f.5: setting latency timer to 64
[    4.814503] scsi4 : ata_piix
[    4.814626] scsi5 : ata_piix
[    4.815041] ata5: SATA max UDMA/133 cmd 0xe700 ctl 0xe800 bmdma 0xeb00 irq 
19
[    4.815083] ata6: SATA max UDMA/133 cmd 0xe900 ctl 0xea00 bmdma 0xeb08 irq 
19
[    5.142563] ata5: SATA link down (SStatus 0 SControl 300)
[    5.470557] ata6: SATA link down (SStatus 0 SControl 300)
[    5.470817] pata_jmicron 0000:03:00.1: enabling device (0000 -> 0001)
[    5.470860] pata_jmicron 0000:03:00.1: PCI INT B -> GSI 16 (level, low) -> 
IRQ 16
[    5.470925] pata_jmicron 0000:03:00.1: setting latency timer to 64
[    5.471033] scsi6 : pata_jmicron
[    5.471142] scsi7 : pata_jmicron
[    5.471639] ata7: PATA max UDMA/100 cmd 0xc000 ctl 0xc100 bmdma 0xc400 irq 
16
[    5.471681] ata8: PATA max UDMA/100 cmd 0xc200 ctl 0xc300 bmdma 0xc408 irq 
16
[    5.791532] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    5.791584] ehci_hcd 0000:00:1a.7: PCI INT C -> GSI 18 (level, low) -> IRQ 
18
[    5.791631] ehci_hcd 0000:00:1a.7: setting latency timer to 64
[    5.791672] ehci_hcd 0000:00:1a.7: EHCI Host Controller
[    5.791745] ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus 
number 1
[    5.795697] ehci_hcd 0000:00:1a.7: cache line size of 32 is not supported
[    5.795745] ehci_hcd 0000:00:1a.7: irq 18, io mem 0xe9305000
[    5.808007] ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00
[    5.808100] usb usb1: configuration #1 chosen from 1 choice
[    5.808163] hub 1-0:1.0: USB hub found
[    5.808204] hub 1-0:1.0: 6 ports detected
[    5.808303] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 
23
[    5.808348] ehci_hcd 0000:00:1d.7: setting latency timer to 64
[    5.808389] ehci_hcd 0000:00:1d.7: EHCI Host Controller
[    5.808451] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus 
number 2
[    5.812391] ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported
[    5.812438] ehci_hcd 0000:00:1d.7: irq 23, io mem 0xe9304000
[    5.824007] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[    5.824095] usb usb2: configuration #1 chosen from 1 choice
[    5.824154] hub 2-0:1.0: USB hub found
[    5.824194] hub 2-0:1.0: 6 ports detected
[    5.824285] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    5.824333] uhci_hcd: USB Universal Host Controller Interface driver
[    5.824413] uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 
16
[    5.824457] uhci_hcd 0000:00:1a.0: setting latency timer to 64
[    5.824497] uhci_hcd 0000:00:1a.0: UHCI Host Controller
[    5.824562] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus 
number 3
[    5.824627] uhci_hcd 0000:00:1a.0: irq 16, io base 0x0000e100
[    5.824714] usb usb3: configuration #1 chosen from 1 choice
[    5.824767] hub 3-0:1.0: USB hub found
[    5.824807] hub 3-0:1.0: 2 ports detected
[    5.824892] uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 
21
[    5.824935] uhci_hcd 0000:00:1a.1: setting latency timer to 64
[    5.824975] uhci_hcd 0000:00:1a.1: UHCI Host Controller
[    5.825050] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus 
number 4
[    5.825121] uhci_hcd 0000:00:1a.1: irq 21, io base 0x0000e200
[    5.825205] usb usb4: configuration #1 chosen from 1 choice
[    5.825258] hub 4-0:1.0: USB hub found
[    5.825298] hub 4-0:1.0: 2 ports detected
[    5.825382] uhci_hcd 0000:00:1a.2: PCI INT C -> GSI 18 (level, low) -> IRQ 
18
[    5.825425] uhci_hcd 0000:00:1a.2: setting latency timer to 64
[    5.825466] uhci_hcd 0000:00:1a.2: UHCI Host Controller
[    5.825533] uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus 
number 5
[    5.825598] uhci_hcd 0000:00:1a.2: irq 18, io base 0x0000e000
[    5.825681] usb usb5: configuration #1 chosen from 1 choice
[    5.825735] hub 5-0:1.0: USB hub found
[    5.825775] hub 5-0:1.0: 2 ports detected
[    5.825858] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 
23
[    5.825902] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[    5.825942] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[    5.826008] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus 
number 6
[    5.826073] uhci_hcd 0000:00:1d.0: irq 23, io base 0x0000e300
[    5.826157] usb usb6: configuration #1 chosen from 1 choice
[    5.826211] hub 6-0:1.0: USB hub found
[    5.826251] hub 6-0:1.0: 2 ports detected
[    5.826335] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 
19
[    5.826379] uhci_hcd 0000:00:1d.1: setting latency timer to 64
[    5.826419] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[    5.826481] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus 
number 7
[    5.826545] uhci_hcd 0000:00:1d.1: irq 19, io base 0x0000e400
[    5.826629] usb usb7: configuration #1 chosen from 1 choice
[    5.826682] hub 7-0:1.0: USB hub found
[    5.826724] hub 7-0:1.0: 2 ports detected
[    5.826811] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 
18
[    5.826855] uhci_hcd 0000:00:1d.2: setting latency timer to 64
[    5.826895] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[    5.826959] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus 
number 8
[    5.827024] uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000e500
[    5.827107] usb usb8: configuration #1 chosen from 1 choice
[    5.827759] hub 8-0:1.0: USB hub found
[    5.827799] hub 8-0:1.0: 2 ports detected
[    5.827909] usbcore: registered new interface driver libusual
[    5.827980] PNP: No PS/2 controller found. Probing ports directly.
[    5.828313] serio: i8042 KBD port at 0x60,0x64 irq 1
[    5.828356] serio: i8042 AUX port at 0x60,0x64 irq 12
[    5.837033] mice: PS/2 mouse device common for all mice
[    5.873054] rtc_cmos 00:04: RTC can wake from S4
[    5.873122] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
[    5.873180] rtc0: alarms up to one month, 242 bytes nvram, hpet irqs
[    5.873276] device-mapper: uevent: version 1.0.3
[    5.873415] device-mapper: ioctl: 4.14.0-ioctl (2008-04-23) initialised: 
dm-devel@redhat.com
[    5.873775] device-mapper: multipath: version 1.0.5 loaded
[    5.873815] device-mapper: multipath round-robin: version 1.0.0 loaded
[    5.874269] cpuidle: using governor ladder
[    5.874450] cpuidle: using governor menu
[    5.874555] Marking TSC unstable due to TSC halts in idle
[    5.874829] TCP cubic registered
[    5.874942] NET: Registered protocol family 10
[    5.875250] lo: Disabled Privacy Extensions
[    5.875472] NET: Registered protocol family 17
[    5.875519] Bluetooth: L2CAP ver 2.11
[    5.875557] Bluetooth: L2CAP socket layer initialized
[    5.875596] Bluetooth: SCO (Voice Link) ver 0.6
[    5.875634] Bluetooth: SCO socket layer initialized
[    5.875713] Bluetooth: RFCOMM socket layer initialized
[    5.875770] Bluetooth: RFCOMM TTY layer initialized
[    5.875810] Bluetooth: RFCOMM ver 1.10
[    5.881239] registered taskstats version 1
[    5.881384]   Magic number: 10:91:797
[    5.881496] rtc_cmos 00:04: setting system clock to 2010-01-13 18:45:34 UTC 
(1263408334)
[    5.881565] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    5.881605] EDD information not available.
[    5.881679] Freeing unused kernel memory: 528k freed
[    5.881810] Write protecting the kernel read-only data: 6548k
[    5.971463] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    5.971521] r8169 0000:04:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    5.971575] r8169 0000:04:00.0: setting latency timer to 64
[    5.971683] r8169 0000:04:00.0: irq 28 for MSI/MSI-X
[    5.971816] r8169 0000:04:00.0: Missing EEPROM signature: 0000
[    5.972314] eth0: RTL8168c/8111c at 0xffffc20000058000, 00:1f:d0:9d:27:af, 
XID 3c4000c0 IRQ 28
[    5.987335] ohci1394 0000:05:07.0: PCI INT A -> GSI 23 (level, low) -> IRQ 
23
[    6.041039] ohci1394: fw-host0: OHCI-1394 1.1 (PCI): IRQ=[23]  
MMIO=[e9204000-e92047ff]  Max Packet=[2048]  IR/IT contexts=[4/8]
[    6.401059] usb 2-2: new high speed USB device using ehci_hcd and address 2
[    6.536196] usb 2-2: configuration #1 chosen from 1 choice
[    6.540763] Initializing USB Mass Storage driver...
[    6.540894] scsi8 : SCSI emulation for USB Mass Storage devices
[    6.541065] usb-storage: device found at 2
[    6.541070] usbcore: registered new interface driver usb-storage
[    6.541071] USB Mass Storage support registered.
[    6.541185] usb-storage: waiting for device to settle before scanning
[    6.862708] kjournald starting.  Commit interval 5 seconds
[    6.862778] EXT3-fs: mounted filesystem with ordered data mode.
[    6.941554] usb 3-1: new full speed USB device using uhci_hcd and address 2
[    7.220815] usb 3-1: configuration #1 chosen from 1 choice
[    7.316771] ieee1394: Host added: ID:BUS[0-00:1023]  GUID[007c2d6400001fd0]
[    7.461540] usb 5-1: new low speed USB device using uhci_hcd and address 2
[    7.629738] usb 5-1: configuration #1 chosen from 1 choice
[    7.872061] usb 5-2: new full speed USB device using uhci_hcd and address 3
[    8.041760] usb 5-2: configuration #1 chosen from 1 choice
[    8.281066] usb 8-1: new full speed USB device using uhci_hcd and address 2
[    8.449185] usb 8-1: configuration #1 chosen from 1 choice
[    8.451164] hub 8-1:1.0: USB hub found
[    8.453104] hub 8-1:1.0: 4 ports detected
[    8.696049] usb 8-2: new low speed USB device using uhci_hcd and address 3
[    8.871164] usb 8-2: configuration #1 chosen from 1 choice
[    8.950118] usb 8-1.4: new low speed USB device using uhci_hcd and address 
4
[    9.090161] usb 8-1.4: configuration #1 chosen from 1 choice
[   11.540264] usb-storage: device scan complete
[   11.542811] scsi 8:0:0:0: Direct-Access     HTS72606 0M9AT00          0000 
PQ: 0 ANSI: 0
[   11.544034] sd 8:0:0:0: [sdd] 117210240 512-byte hardware sectors: (60.0 
GB/55.8 GiB)
[   11.544920] sd 8:0:0:0: [sdd] Write Protect is off
[   11.544960] sd 8:0:0:0: [sdd] Mode Sense: 27 00 00 00
[   11.544999] sd 8:0:0:0: [sdd] Assuming drive cache: write through
[   11.545674] sd 8:0:0:0: [sdd] 117210240 512-byte hardware sectors: (60.0 
GB/55.8 GiB)
[   11.546672] sd 8:0:0:0: [sdd] Write Protect is off
[   11.546713] sd 8:0:0:0: [sdd] Mode Sense: 27 00 00 00
[   11.546754] sd 8:0:0:0: [sdd] Assuming drive cache: write through
[   11.546796]  sdd: sdd1 < sdd5 sdd6 sdd7 sdd8 sdd9 sdd10 sdd11 > sdd2 sdd3
[   12.055696] sd 8:0:0:0: [sdd] Attached SCSI disk
[   12.055781] sd 8:0:0:0: Attached scsi generic sg4 type 0
[   13.826655] udev: starting version 147
[   14.364913] ip_tables: (C) 2000-2006 Netfilter Core Team
[   14.748074] usbcore: registered new interface driver hiddev
[   14.766406] input: Logitech USB RECEIVER as 
/devices/pci0000:00/0000:00:1d.2/usb8/8-2/8-2:1.0/input/input3
[   14.797633] generic-usb 0003:046D:C50E.0001: input,hidraw0: USB HID v1.11 
Mouse [Logitech USB RECEIVER] on usb-0000:00:1d.2-2/input0
[   14.811361] input: CHESEN PS2 to USB Converter as 
/devices/pci0000:00/0000:00:1d.2/usb8/8-1/8-1.4/8-1.4:1.0/input/input4
[   14.834373] Linux video capture interface: v2.00
[   14.837086] generic-usb 0003:0A81:0205.0002: input,hidraw1: USB HID v1.10 
Keyboard [CHESEN PS2 to USB Converter] on usb-0000:00:1d.2-1.4/input0
[   14.862305] lp: driver loaded but no devices found
[   14.886301] pwc: Philips webcam module version 10.0.13 loaded.
[   14.886303] pwc: Supports Philips PCA645/646, PCVC675/680/690, 
PCVC720[40]/730/740/750 & PCVC830/840.
[   14.886304] pwc: Also supports the Askey VC010, various Logitech Quickcams, 
Samsung MPC-C10 and MPC-C30,
[   14.886305] pwc: the Creative WebCam 5 & Pro Ex, SOTEC Afina Eye and 
Visionite VCS-UC300 and VCS-UM100.
[   14.886328] pwc: Logitech QuickCam 4000 Pro USB webcam detected.
[   14.886376] pwc: Registered as /dev/video0.
[   14.893763] usbcore: registered new interface driver Philips webcam
[   14.969460] input: CHESEN PS2 to USB Converter as 
/devices/pci0000:00/0000:00:1d.2/usb8/8-1/8-1.4/8-1.4:1.1/input/input5
[   15.012124] generic-usb 0003:0A81:0205.0003: input,hidraw2: USB HID v1.10 
Mouse [CHESEN PS2 to USB Converter] on usb-0000:00:1d.2-1.4/input1
[   15.012157] usbcore: registered new interface driver usbhid
[   15.012159] usbhid: v2.6:USB HID core driver
[   15.070864] coretemp coretemp.0: Using relative temperature scale!
[   15.070900] coretemp coretemp.1: Using relative temperature scale!
[   15.070935] coretemp coretemp.2: Using relative temperature scale!
[   15.070965] coretemp coretemp.3: Using relative temperature scale!
[   15.110474] it87: Found IT8718F chip at 0x290, revision 5
[   15.110481] it87: in3 is VCC (+5V)
[   15.477911] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 
22
[   15.478042] HDA Intel 0000:00:1b.0: setting latency timer to 64
[   15.631984] usbcore: registered new interface driver snd-usb-audio
[   15.961530] Adding 6562544k swap on /dev/mapper/cryptoswap.  Priority:-1 
extents:1 across:6562544k 
[   16.959186] EXT3 FS on sda8, internal journal
[   17.129400] kjournald starting.  Commit interval 5 seconds
[   17.129406] EXT3-fs: mounted filesystem with ordered data mode.
[   17.154176] kjournald starting.  Commit interval 5 seconds
[   17.157745] EXT3 FS on sda6, internal journal
[   17.157749] EXT3-fs: mounted filesystem with ordered data mode.
[   17.323107] kjournald starting.  Commit interval 5 seconds
[   17.323402] EXT3 FS on sdc5, internal journal
[   17.323406] EXT3-fs: mounted filesystem with ordered data mode.
[   17.351397] kjournald starting.  Commit interval 5 seconds
[   17.351714] EXT3 FS on sdc6, internal journal
[   17.351718] EXT3-fs: mounted filesystem with ordered data mode.
[   17.407807] r8169: eth0: link up
[   17.407812] r8169: eth0: link up
[   18.284149] mtrr: base(0xe5000000) is not aligned on a size(0xe00000) 
boundary
[   22.680532] RPC: Registered udp transport module.
[   22.680535] RPC: Registered tcp transport module.
[   27.557009] eth0: no IPv6 routers present
[   33.661083] mtrr: base(0xe5000000) is not aligned on a size(0xe00000) 
boundary


-----------------------------------------------------------------------------

I did not try to suspend/resume with this kernel as I suppose this is only 
about some printed out debug information in the boot log, right?


Volker

PS. I am no longer subscribed to LKML, please CC.


-- 
Volker Lanz
http://www.volker-lanz.de

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [BISECTED, REGRESSION] Successful resume from suspend but freezes after I/O
  2010-01-13 18:04                 ` Volker Lanz
@ 2010-01-13 19:57                   ` Yinghai Lu
  2010-01-14 13:05                     ` Volker Lanz
  0 siblings, 1 reply; 15+ messages in thread
From: Yinghai Lu @ 2010-01-13 19:57 UTC (permalink / raw)
  To: Volker Lanz; +Cc: linux-kernel, mingo

On 01/13/2010 10:04 AM, Volker Lanz wrote:
> On Wednesday 13 January 2010 08:35:39 Yinghai Lu wrote:
>> On Mon, Dec 21, 2009 at 12:54 AM, Volker Lanz <vl@fidra.de> wrote:
>>> Any news on this problem? Anything else I can do to help debug the
>>> situation? The prospect of being confined to distros with kernels <
>>> 2.6.29 for the next couple of years on this machine worries me,
>>> obviously.
>>
>> as 6d794 said that is used fix exposed bug.
> 
> I beg your pardon?
> 
>> please checkout out
>>
>> c61cf4cfe7c73c7aa62dde3ff82cd475b9c41481
>>
>> and boot with debug.
> 
> This is the boot log:
> 
> -----------------------------------------------------------------------------
> 
> [    0.000000] Initializing cgroup subsys cpuset
> [    0.000000] Initializing cgroup subsys cpu
> [    0.000000] Linux version 2.6.29-rc7 (vl@trevor) (gcc version 4.4.1 (Ubuntu 
> 4.4.1-4ubuntu8) ) #2 SMP Wed Jan 13 18:04:42 CET 2010
> [    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-2.6.29-rc7 
> root=UUID=160351ee-c9b0-4a72-9fd5-9962c8137a7e ro debug nosplash
> [    0.000000] KERNEL supported cpus:
> [    0.000000]   Intel GenuineIntel
> [    0.000000]   AMD AuthenticAMD
> [    0.000000]   Centaur CentaurHauls
> [    0.000000] BIOS-provided physical RAM map:
> [    0.000000]  BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
> [    0.000000]  BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
> [    0.000000]  BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
> [    0.000000]  BIOS-e820: 0000000000100000 - 00000000cfee0000 (usable)
> [    0.000000]  BIOS-e820: 00000000cfee0000 - 00000000cfee2000 (ACPI NVS)
> [    0.000000]  BIOS-e820: 00000000cfee2000 - 00000000cfef0000 (ACPI data)
> [    0.000000]  BIOS-e820: 00000000cfef0000 - 00000000cff00000 (reserved)
> [    0.000000]  BIOS-e820: 00000000e0000000 - 00000000e4000000 (reserved)
> [    0.000000]  BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)
> [    0.000000]  BIOS-e820: 0000000100000000 - 00000001b0000000 (usable)
> [    0.000000] DMI 2.4 present.
> [    0.000000] last_pfn = 0x1b0000 max_arch_pfn = 0x100000000
> [    0.000000] e820 update range: 00000000cff00000 - 0000000100000000 (usable) 
> ==> (reserved)
> [    0.000000] last_pfn = 0xcfee0 max_arch_pfn = 0x100000000
> [    0.000000] e820 update range: 0000000000001000 - 0000000000006000 (usable) 
> ==> (reserved)
> [    0.000000] Scanning 1 areas for low memory corruption
> [    0.000000] modified physical RAM map:
> [    0.000000]  modified: 0000000000000000 - 0000000000001000 (usable)
> [    0.000000]  modified: 0000000000001000 - 0000000000006000 (reserved)
> [    0.000000]  modified: 0000000000006000 - 000000000009f800 (usable)
> [    0.000000]  modified: 000000000009f800 - 00000000000a0000 (reserved)
> [    0.000000]  modified: 00000000000f0000 - 0000000000100000 (reserved)
> [    0.000000]  modified: 0000000000100000 - 00000000cfee0000 (usable)
> [    0.000000]  modified: 00000000cfee0000 - 00000000cfee2000 (ACPI NVS)
> [    0.000000]  modified: 00000000cfee2000 - 00000000cfef0000 (ACPI data)
> [    0.000000]  modified: 00000000cfef0000 - 00000000cff00000 (reserved)
> [    0.000000]  modified: 00000000e0000000 - 00000000e4000000 (reserved)
> [    0.000000]  modified: 00000000fec00000 - 0000000100000000 (reserved)
> [    0.000000]  modified: 0000000100000000 - 00000001b0000000 (usable)

so e820_update_range does right job...

please you try to disable

X86_CHECK_BIOS_CORRUPTION

and

CONFIG_X86_RESERVE_LOW_64K

YH

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [BISECTED, REGRESSION] Successful resume from suspend but freezes after I/O
  2010-01-13 19:57                   ` Yinghai Lu
@ 2010-01-14 13:05                     ` Volker Lanz
  0 siblings, 0 replies; 15+ messages in thread
From: Volker Lanz @ 2010-01-14 13:05 UTC (permalink / raw)
  To: Yinghai Lu; +Cc: linux-kernel, mingo

On Wednesday 13 January 2010 20:57:21 Yinghai Lu wrote:
> so e820_update_range does right job...
> 
> please you try to disable
> 
> X86_CHECK_BIOS_CORRUPTION
> 
> and
> 
> CONFIG_X86_RESERVE_LOW_64K

I did a checkout of master and built with these two settings disabled. Here's 
how it went when I booted that and suspended/resumed (I have no idea why the 
file system went crazy):

-----------------------------------------------------------------------------

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 2.6.32 (vl@trevor) (gcc version 4.4.1 (Ubuntu 
4.4.1-4ubuntu8) ) #3 SMP Thu Jan 14 13:14:22 CET 2010
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-2.6.32 
root=UUID=160351ee-c9b0-4a72-9fd5-9962c8137a7e ro debug nosplash
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Centaur CentaurHauls
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
[    0.000000]  BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 00000000dfee0000 (usable)
[    0.000000]  BIOS-e820: 00000000dfee0000 - 00000000dfee2000 (ACPI NVS)
[    0.000000]  BIOS-e820: 00000000dfee2000 - 00000000dfef0000 (ACPI data)
[    0.000000]  BIOS-e820: 00000000dfef0000 - 00000000dff00000 (reserved)
[    0.000000]  BIOS-e820: 00000000f0000000 - 00000000f4000000 (reserved)
[    0.000000]  BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)
[    0.000000]  BIOS-e820: 0000000100000000 - 00000001a0000000 (usable)
[    0.000000] DMI 2.4 present.
[    0.000000] last_pfn = 0x1a0000 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-CBFFF write-protect
[    0.000000]   CC000-EFFFF uncachable
[    0.000000]   F0000-FFFFF write-through
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000 mask F00000000 write-back
[    0.000000]   1 base 0E0000000 mask FE0000000 uncachable
[    0.000000]   2 base 100000000 mask F00000000 write-back
[    0.000000]   3 base 1C0000000 mask FC0000000 uncachable
[    0.000000]   4 base 1A0000000 mask FE0000000 uncachable
[    0.000000]   5 base 0DFF00000 mask FFFF00000 uncachable
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] e820 update range: 00000000dff00000 - 0000000100000000 (usable) 
==> (reserved)
[    0.000000] last_pfn = 0xdfee0 max_arch_pfn = 0x400000000
[    0.000000] initial memory mapped : 0 - 20000000
[    0.000000] init_memory_mapping: 0000000000000000-00000000dfee0000
[    0.000000]  0000000000 - 00dfe00000 page 2M
[    0.000000]  00dfe00000 - 00dfee0000 page 4k
[    0.000000] kernel direct mapping tables up to dfee0000 @ 8000-e000
[    0.000000] init_memory_mapping: 0000000100000000-00000001a0000000
[    0.000000]  0100000000 - 01a0000000 page 2M
[    0.000000] kernel direct mapping tables up to 1a0000000 @ c000-14000
[    0.000000] RAMDISK: 33b14000 - 37fef9ee
[    0.000000] ACPI: RSDP 00000000000f7280 00014 (v00 GBT   )
[    0.000000] ACPI: RSDT 00000000dfee2040 0004C (v01 GBT    GBTUACPI 42302E31 
GBTU 01010101)
[    0.000000] ACPI: FACP 00000000dfee20c0 00074 (v01 GBT    GBTUACPI 42302E31 
GBTU 01010101)
[    0.000000] ACPI: DSDT 00000000dfee2180 04CD9 (v01 GBT    GBTUACPI 00001000 
MSFT 0100000C)
[    0.000000] ACPI: FACS 00000000dfee0000 00040
[    0.000000] ACPI: EUDS 00000000dfee7580 00500 (v01 GBT             00000000      
00000000)
[    0.000000] ACPI: HPET 00000000dfee74c0 00038 (v01 GBT    GBTUACPI 42302E31 
GBTU 00000098)
[    0.000000] ACPI: MCFG 00000000dfee7540 0003C (v01 GBT    GBTUACPI 42302E31 
GBTU 01010101)
[    0.000000] ACPI: APIC 00000000dfee6ec0 00084 (v01 GBT    GBTUACPI 42302E31 
GBTU 01010101)
[    0.000000] ACPI: SSDT 00000000dfee83b0 0018A (v01  PmRef  Cpu0Cst 00003001 
INTL 20040311)
[    0.000000] ACPI: SSDT 00000000dfee8540 0018A (v01  PmRef  Cpu1Cst 00003001 
INTL 20040311)
[    0.000000] ACPI: SSDT 00000000dfee86d0 0018A (v01  PmRef  Cpu2Cst 00003001 
INTL 20040311)
[    0.000000] ACPI: SSDT 00000000dfee8860 0018A (v01  PmRef  Cpu3Cst 00003001 
INTL 20040311)
[    0.000000] ACPI: SSDT 00000000dfee89f0 003AB (v01  PmRef    CpuPm 00003000 
INTL 20040311)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] (8 early reservations) ==> bootmem [0000000000 - 01a0000000]
[    0.000000]   #0 [0000000000 - 0000001000]   BIOS data page ==> [0000000000 
- 0000001000]
[    0.000000]   #1 [0000006000 - 0000008000]       TRAMPOLINE ==> [0000006000 
- 0000008000]
[    0.000000]   #2 [0001000000 - 0001ac2584]    TEXT DATA BSS ==> [0001000000 
- 0001ac2584]
[    0.000000]   #3 [0033b14000 - 0037fef9ee]          RAMDISK ==> [0033b14000 
- 0037fef9ee]
[    0.000000]   #4 [000009f800 - 0000100000]    BIOS reserved ==> [000009f800 
- 0000100000]
[    0.000000]   #5 [0001ac3000 - 0001ac30f6]              BRK ==> [0001ac3000 
- 0001ac30f6]
[    0.000000]   #6 [0000008000 - 000000c000]          PGTABLE ==> [0000008000 
- 000000c000]
[    0.000000]   #7 [000000c000 - 000000f000]          PGTABLE ==> [000000c000 
- 000000f000]
[    0.000000] found SMP MP-table at [ffff8800000f5890] f5890
[    0.000000]  [ffffea0000000000-ffffea0005bfffff] PMD -> [ffff880028600000-
ffff88002dbfffff] on node 0
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000000 -> 0x00001000
[    0.000000]   DMA32    0x00001000 -> 0x00100000
[    0.000000]   Normal   0x00100000 -> 0x001a0000
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[3] active PFN ranges
[    0.000000]     0: 0x00000000 -> 0x0000009f
[    0.000000]     0: 0x00000100 -> 0x000dfee0
[    0.000000]     0: 0x00100000 -> 0x001a0000
[    0.000000] On node 0 totalpages: 1572479
[    0.000000]   DMA zone: 56 pages used for memmap
[    0.000000]   DMA zone: 106 pages reserved
[    0.000000]   DMA zone: 3837 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 14280 pages used for memmap
[    0.000000]   DMA32 zone: 898840 pages, LIFO batch:31
[    0.000000]   Normal zone: 8960 pages used for memmap
[    0.000000]   Normal zone: 646400 pages, LIFO batch:31
[    0.000000] ACPI: PM-Timer IO Port: 0x408
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x03] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] dfl dfl lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] SMP: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 24
[    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] PM: Registered nosave memory: 00000000dfee0000 - 
00000000dfee2000
[    0.000000] PM: Registered nosave memory: 00000000dfee2000 - 
00000000dfef0000
[    0.000000] PM: Registered nosave memory: 00000000dfef0000 - 
00000000dff00000
[    0.000000] PM: Registered nosave memory: 00000000dff00000 - 
00000000f0000000
[    0.000000] PM: Registered nosave memory: 00000000f0000000 - 
00000000f4000000
[    0.000000] PM: Registered nosave memory: 00000000f4000000 - 
00000000fec00000
[    0.000000] PM: Registered nosave memory: 00000000fec00000 - 
0000000100000000
[    0.000000] Allocating PCI resources starting at dff00000 (gap: 
dff00000:10100000)
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] PERCPU: Embedded 30 pages/cpu @ffff880028200000 s90200 r8192 
d24488 u524288
[    0.000000] pcpu-alloc: s90200 r8192 d24488 u524288 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total 
pages: 1549077
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.32 
root=UUID=160351ee-c9b0-4a72-9fd5-9962c8137a7e ro debug nosplash
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Dentry cache hash table entries: 1048576 (order: 11, 8388608 
bytes)
[    0.000000] Inode-cache hash table entries: 524288 (order: 10, 4194304 
bytes)
[    0.000000] Initializing CPU#0
[    0.000000] xsave/xrstor: enabled xstate_bv 0x3, cntxt size 0x240
[    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] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.000000] Placing 64MB software IO TLB between ffff880020000000 - 
ffff880024000000
[    0.000000] software IO TLB at phys 0x20000000 - 0x24000000
[    0.000000] Memory: 6040356k/6815744k available (5307k kernel code, 525828k 
absent, 248644k reserved, 3593k data, 548k init)
[    0.000000] SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, 
Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] NR_IRQS:2304
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] allocated 62914560 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want 
memory cgroups
[    0.000000] hpet clockevent registered
[    0.000000] HPET: 4 timers in total, 0 timers will be used for per-cpu 
timer
[    0.000000] Fast TSC calibration using PIT
[    0.000000] Detected 2833.327 MHz processor.
[    0.004005] Calibrating delay loop (skipped), value calculated using timer 
frequency.. 5666.65 BogoMIPS (lpj=11333308)
[    0.004101] Security Framework initialized
[    0.004149] SELinux:  Disabled at boot.
[    0.004192] Mount-cache hash table entries: 256
[    0.004349] Initializing cgroup subsys ns
[    0.004390] Initializing cgroup subsys cpuacct
[    0.004430] Initializing cgroup subsys memory
[    0.004472] Initializing cgroup subsys freezer
[    0.004525] CPU: L1 I cache: 32K, L1 D cache: 32K
[    0.004590] CPU: L2 cache: 6144K
[    0.004629] CPU: Physical Processor ID: 0
[    0.004666] CPU: Processor Core ID: 0
[    0.004705] using mwait in idle threads.
[    0.004742] Performance Events: Core2 events, Intel PMU driver.
[    0.005425] ... version:                2
[    0.005462] ... bit width:              40
[    0.005500] ... generic registers:      2
[    0.005538] ... value mask:             000000ffffffffff
[    0.005577] ... max period:             000000007fffffff
[    0.005616] ... fixed-purpose events:   3
[    0.005654] ... event mask:             0000000700000003
[    0.008746] ACPI: Core revision 20090903
[    0.016058] Setting APIC routing to flat
[    0.016453] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.056999] CPU0: Intel(R) Core(TM)2 Quad CPU    Q9550  @ 2.83GHz stepping 
0a
[    0.060001] Booting processor 1 APIC 0x3 ip 0x6000
[    0.008000] Initializing CPU#1
[    0.008000] Calibrating delay using timer specific routine.. 5665.98 
BogoMIPS (lpj=11331967)
[    0.008000] CPU: L1 I cache: 32K, L1 D cache: 32K
[    0.008000] CPU: L2 cache: 6144K
[    0.008000] CPU: Physical Processor ID: 0
[    0.008000] CPU: Processor Core ID: 3
[    0.144085] CPU1: Intel(R) Core(TM)2 Quad CPU    Q9550  @ 2.83GHz stepping 
0a
[    0.144413] checking TSC synchronization [CPU#0 -> CPU#1]: passed.
[    0.148121] Booting processor 2 APIC 0x2 ip 0x6000
[    0.008000] Initializing CPU#2
[    0.008000] Calibrating delay using timer specific routine.. 5665.98 
BogoMIPS (lpj=11331966)
[    0.008000] CPU: L1 I cache: 32K, L1 D cache: 32K
[    0.008000] CPU: L2 cache: 6144K
[    0.008000] CPU: Physical Processor ID: 0
[    0.008000] CPU: Processor Core ID: 2
[    0.236093] CPU2: Intel(R) Core(TM)2 Quad CPU    Q9550  @ 2.83GHz stepping 
0a
[    0.236421] checking TSC synchronization [CPU#0 -> CPU#2]: passed.
[    0.240118] Booting processor 3 APIC 0x1 ip 0x6000
[    0.008000] Initializing CPU#3
[    0.008000] Calibrating delay using timer specific routine.. 5665.95 
BogoMIPS (lpj=11331900)
[    0.008000] CPU: L1 I cache: 32K, L1 D cache: 32K
[    0.008000] CPU: L2 cache: 6144K
[    0.008000] CPU: Physical Processor ID: 0
[    0.008000] CPU: Processor Core ID: 1
[    0.328098] CPU3: Intel(R) Core(TM)2 Quad CPU    Q9550  @ 2.83GHz stepping 
0a
[    0.328427] checking TSC synchronization [CPU#0 -> CPU#3]: passed.
[    0.332078] Brought up 4 CPUs
[    0.332117] Total of 4 processors activated (22664.57 BogoMIPS).
[    0.334338] CPU0 attaching sched-domain:
[    0.334377]  domain 0: span 0,3 level MC
[    0.334442]   groups: 0 3
[    0.334560]   domain 1: span 0-3 level CPU
[    0.334625]    groups: 0,3 (cpu_power = 2048) 1-2 (cpu_power = 2048)
[    0.334801] CPU1 attaching sched-domain:
[    0.334839]  domain 0: span 1-2 level MC
[    0.334903]   groups: 1 2
[    0.335020]   domain 1: span 0-3 level CPU
[    0.335085]    groups: 1-2 (cpu_power = 2048) 0,3 (cpu_power = 2048)
[    0.335260] CPU2 attaching sched-domain:
[    0.335298]  domain 0: span 1-2 level MC
[    0.335362]   groups: 2 1
[    0.335480]   domain 1: span 0-3 level CPU
[    0.336041]    groups: 1-2 (cpu_power = 2048) 0,3 (cpu_power = 2048)
[    0.336216] CPU3 attaching sched-domain:
[    0.336254]  domain 0: span 0,3 level MC
[    0.336318]   groups: 3 0
[    0.336446]   domain 1: span 0-3 level CPU
[    0.336511]    groups: 0,3 (cpu_power = 2048) 1-2 (cpu_power = 2048)
[    0.336797] regulator: core version 0.5
[    0.336797] Time: 13:30:58  Date: 01/14/10
[    0.336797] NET: Registered protocol family 16
[    0.336797] ACPI: bus type pci registered
[    0.336797] PCI: MCFG configuration 0: base f0000000 segment 0 buses 0 - 63
[    0.336797] PCI: MCFG area at f0000000 reserved in E820
[    0.337417] PCI: Using MMCONFIG at f0000000 - f3ffffff
[    0.337456] PCI: Using configuration type 1 for base access
[    0.338023] bio: create slab <bio-0> at 0
[    0.340356] ACPI: EC: Look up EC in DSDT
[    0.344001] ACPI: Interpreter enabled
[    0.344001] ACPI: (supports S0 S3 S4 S5)
[    0.344001] ACPI: Using IOAPIC for interrupt routing
[    0.349209] ACPI: No dock devices found.
[    0.349320] ACPI: PCI Root Bridge [PCI0] (0000:00)
[    0.349430] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.349471] pci 0000:00:01.0: PME# disabled
[    0.349563] pci 0000:00:1a.0: reg 20 io port: [0xe200-0xe21f]
[    0.349655] pci 0000:00:1a.1: reg 20 io port: [0xe000-0xe01f]
[    0.349747] pci 0000:00:1a.2: reg 20 io port: [0xe100-0xe11f]
[    0.349832] pci 0000:00:1a.7: reg 10 32bit mmio: [0xf8205000-0xf82053ff]
[    0.349934] pci 0000:00:1b.0: reg 10 64bit mmio: [0xf8200000-0xf8203fff]
[    0.350005] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.350046] pci 0000:00:1b.0: PME# disabled
[    0.350130] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.350171] pci 0000:00:1c.0: PME# disabled
[    0.350257] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[    0.350298] pci 0000:00:1c.3: PME# disabled
[    0.350382] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    0.350424] pci 0000:00:1c.4: PME# disabled
[    0.350502] pci 0000:00:1d.0: reg 20 io port: [0xe300-0xe31f]
[    0.350594] pci 0000:00:1d.1: reg 20 io port: [0xe400-0xe41f]
[    0.350687] pci 0000:00:1d.2: reg 20 io port: [0xe500-0xe51f]
[    0.350771] pci 0000:00:1d.7: reg 10 32bit mmio: [0xf8204000-0xf82043ff]
[    0.350976] pci 0000:00:1f.2: reg 10 io port: [0x00-0x07]
[    0.351019] pci 0000:00:1f.2: reg 14 io port: [0x00-0x03]
[    0.351061] pci 0000:00:1f.2: reg 18 io port: [0x00-0x07]
[    0.351103] pci 0000:00:1f.2: reg 1c io port: [0x00-0x03]
[    0.351145] pci 0000:00:1f.2: reg 20 io port: [0xf000-0xf00f]
[    0.351188] pci 0000:00:1f.2: reg 24 io port: [0xf100-0xf10f]
[    0.351261] pci 0000:00:1f.3: reg 10 64bit mmio: [0xf8206000-0xf82060ff]
[    0.351310] pci 0000:00:1f.3: reg 20 io port: [0x500-0x51f]
[    0.351381] pci 0000:00:1f.5: reg 10 io port: [0xe700-0xe707]
[    0.351423] pci 0000:00:1f.5: reg 14 io port: [0xe800-0xe803]
[    0.351466] pci 0000:00:1f.5: reg 18 io port: [0xe900-0xe907]
[    0.351508] pci 0000:00:1f.5: reg 1c io port: [0xea00-0xea03]
[    0.351551] pci 0000:00:1f.5: reg 20 io port: [0xeb00-0xeb0f]
[    0.351603] pci 0000:00:1f.5: reg 24 io port: [0xec00-0xec0f]
[    0.351685] pci 0000:01:00.0: reg 10 32bit mmio: [0xf6000000-0xf6ffffff]
[    0.351731] pci 0000:01:00.0: reg 14 64bit mmio pref: [0xe0000000-0xefffffff]
[    0.351778] pci 0000:01:00.0: reg 1c 64bit mmio: [0xf4000000-0xf5ffffff]
[    0.351821] pci 0000:01:00.0: reg 24 io port: [0xc000-0xc07f]
[    0.351863] pci 0000:01:00.0: reg 30 32bit mmio pref: [0x000000-0x01ffff]
[    0.351949] pci 0000:00:01.0: bridge io port: [0xc000-0xcfff]
[    0.351989] pci 0000:00:01.0: bridge 32bit mmio: [0xf4000000-0xf7ffffff]
[    0.352005] pci 0000:00:01.0: bridge 64bit mmio pref: [0xe0000000-0xefffffff]
[    0.352163] pci 0000:03:00.0: reg 24 32bit mmio: [0xf8000000-0xf8001fff]
[    0.352236] pci 0000:03:00.0: PME# supported from D3hot
[    0.352278] pci 0000:03:00.0: PME# disabled
[    0.352359] pci 0000:03:00.1: reg 10 io port: [0xd000-0xd007]
[    0.352405] pci 0000:03:00.1: reg 14 io port: [0xd100-0xd103]
[    0.352451] pci 0000:03:00.1: reg 18 io port: [0xd200-0xd207]
[    0.352496] pci 0000:03:00.1: reg 1c io port: [0xd300-0xd303]
[    0.352542] pci 0000:03:00.1: reg 20 io port: [0xd400-0xd40f]
[    0.352656] pci 0000:00:1c.3: bridge io port: [0xd000-0xdfff]
[    0.352698] pci 0000:00:1c.3: bridge 32bit mmio: [0xf8000000-0xf80fffff]
[    0.352808] pci 0000:05:07.0: reg 10 32bit mmio: [0xf8104000-0xf81047ff]
[    0.352853] pci 0000:05:07.0: reg 14 32bit mmio: [0xf8100000-0xf8103fff]
[    0.352927] pci 0000:05:07.0: supports D1 D2
[    0.352966] pci 0000:05:07.0: PME# supported from D0 D1 D2 D3hot
[    0.353007] pci 0000:05:07.0: PME# disabled
[    0.353075] pci 0000:00:1e.0: transparent bridge
[    0.353116] pci 0000:00:1e.0: bridge 32bit mmio: [0xf8100000-0xf81fffff]
[    0.353173] pci_bus 0000:00: on NUMA node 0
[    0.353213] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.353348] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX0._PRT]
[    0.353427] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX3._PRT]
[    0.353510] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX4._PRT]
[    0.353587] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB0._PRT]
[    0.365767] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 *10 11 12 14 
15)
[    0.366229] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 11 12 14 
15) *0, disabled.
[    0.366743] ACPI: PCI Interrupt Link [LNKC] (IRQs *3 4 5 6 7 9 10 11 12 14 
15)
[    0.367203] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 *11 12 14 
15)
[    0.367672] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 11 12 14 
15) *0, disabled.
[    0.368201] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 *4 5 6 7 9 10 11 12 14 
15)
[    0.368661] ACPI: PCI Interrupt Link [LNK0] (IRQs 3 4 *5 6 7 9 10 11 12 14 
15)
[    0.369121] ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 6 *7 9 10 11 12 14 
15)
[    0.369579] vgaarb: device added: 
PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
[    0.369629] vgaarb: loaded
[    0.369735] SCSI subsystem initialized
[    0.369785] libata version 3.00 loaded.
[    0.369785] usbcore: registered new interface driver usbfs
[    0.369785] usbcore: registered new interface driver hub
[    0.369785] usbcore: registered new device driver usb
[    0.369785] ACPI: WMI: Mapper loaded
[    0.369785] PCI: Using ACPI for IRQ routing
[    0.369785] Bluetooth: Core ver 2.15
[    0.369785] NET: Registered protocol family 31
[    0.369785] Bluetooth: HCI device and connection manager initialized
[    0.369785] Bluetooth: HCI socket layer initialized
[    0.369785] NET: Registered protocol family 8
[    0.369785] NET: Registered protocol family 20
[    0.369785] NetLabel: Initializing
[    0.369785] NetLabel:  domain hash size = 128
[    0.369785] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.369785] NetLabel:  unlabeled traffic allowed by default
[    0.369785] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
[    0.369785] hpet0: 4 comparators, 64-bit 14.318180 MHz counter
[    0.376015] Switching to clocksource tsc
[    0.377240] pnp: PnP ACPI init
[    0.377294] ACPI: bus type pnp registered
[    0.379017] pnp: PnP ACPI: found 12 devices
[    0.379056] ACPI: ACPI bus type pnp unregistered
[    0.379102] system 00:01: ioport range 0x4d0-0x4d1 has been reserved
[    0.379142] system 00:01: ioport range 0x290-0x29f has been reserved
[    0.379183] system 00:01: ioport range 0x800-0x87f has been reserved
[    0.379224] system 00:01: ioport range 0x290-0x294 has been reserved
[    0.379265] system 00:01: ioport range 0x880-0x88f has been reserved
[    0.379305] system 00:01: ioport range 0x4c0-0x4ff could not be reserved
[    0.379349] system 00:08: ioport range 0x400-0x4bf has been reserved
[    0.379392] system 00:09: iomem range 0xf0000000-0xf3ffffff has been reserved
[    0.379435] system 00:0a: iomem range 0xccc00-0xcffff has been reserved
[    0.379476] system 00:0a: iomem range 0xf0000-0xf7fff could not be reserved
[    0.379517] system 00:0a: iomem range 0xf8000-0xfbfff could not be reserved
[    0.379558] system 00:0a: iomem range 0xfc000-0xfffff could not be reserved
[    0.379600] system 00:0a: iomem range 0xdfee0000-0xdfefffff could not be 
reserved
[    0.379653] system 00:0a: iomem range 0x0-0x9ffff could not be reserved
[    0.379699] system 00:0a: iomem range 0x100000-0xdfedffff could not be 
reserved
[    0.379756] system 00:0a: iomem range 0xfec00000-0xfec00fff could not be 
reserved
[    0.379805] system 00:0a: iomem range 0xfed10000-0xfed1dfff has been 
reserved
[    0.379847] system 00:0a: iomem range 0xfed20000-0xfed8ffff has been reserved
[    0.379888] system 00:0a: iomem range 0xfee00000-0xfee00fff has been 
reserved
[    0.379929] system 00:0a: iomem range 0xffb00000-0xffb7ffff has been reserved
[    0.379971] system 00:0a: iomem range 0xfff00000-0xffffffff has been reserved
[    0.380012] system 00:0a: iomem range 0xe0000-0xeffff has been reserved
[    0.384664] pci 0000:00:01.0: PCI bridge, secondary bus 0000:01
[    0.384705] pci 0000:00:01.0:   IO window: 0xc000-0xcfff
[    0.384745] pci 0000:00:01.0:   MEM window: 0xf4000000-0xf7ffffff
[    0.384786] pci 0000:00:01.0:   PREFETCH window: 
0x000000e0000000-0x000000efffffff
[    0.384836] pci 0000:00:1c.0: PCI bridge, secondary bus 0000:02
[    0.384877] pci 0000:00:1c.0:   IO window: 0x1000-0x1fff
[    0.384918] pci 0000:00:1c.0:   MEM window: 0xf8300000-0xf84fffff
[    0.384960] pci 0000:00:1c.0:   PREFETCH window: 
0x000000f8500000-0x000000f86fffff
[    0.385012] pci 0000:00:1c.3: PCI bridge, secondary bus 0000:03
[    0.385052] pci 0000:00:1c.3:   IO window: 0xd000-0xdfff
[    0.385093] pci 0000:00:1c.3:   MEM window: 0xf8000000-0xf80fffff
[    0.385135] pci 0000:00:1c.3:   PREFETCH window: 
0x000000f8700000-0x000000f88fffff
[    0.385186] pci 0000:00:1c.4: PCI bridge, secondary bus 0000:04
[    0.385227] pci 0000:00:1c.4:   IO window: 0x2000-0x2fff
[    0.385268] pci 0000:00:1c.4:   MEM window: 0xf8900000-0xf8afffff
[    0.385309] pci 0000:00:1c.4:   PREFETCH window: 
0x000000f8b00000-0x000000f8cfffff
[    0.385361] pci 0000:00:1e.0: PCI bridge, secondary bus 0000:05
[    0.385401] pci 0000:00:1e.0:   IO window: disabled
[    0.385442] pci 0000:00:1e.0:   MEM window: 0xf8100000-0xf81fffff
[    0.385483] pci 0000:00:1e.0:   PREFETCH window: disabled
[    0.385529] pci 0000:00:01.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.385571] pci 0000:00:01.0: setting latency timer to 64
[    0.385615] pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.385656] pci 0000:00:1c.0: setting latency timer to 64
[    0.385701] pci 0000:00:1c.3: PCI INT D -> GSI 19 (level, low) -> IRQ 19
[    0.385743] pci 0000:00:1c.3: setting latency timer to 64
[    0.385786] pci 0000:00:1c.4: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.385828] pci 0000:00:1c.4: setting latency timer to 64
[    0.385870] pci 0000:00:1e.0: setting latency timer to 64
[    0.385911] pci_bus 0000:00: resource 0 io:  [0x00-0xffff]
[    0.385951] pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffffffffffff]
[    0.385992] pci_bus 0000:01: resource 0 io:  [0xc000-0xcfff]
[    0.386032] pci_bus 0000:01: resource 1 mem: [0xf4000000-0xf7ffffff]
[    0.386072] pci_bus 0000:01: resource 2 pref mem [0xe0000000-0xefffffff]
[    0.386113] pci_bus 0000:02: resource 0 io:  [0x1000-0x1fff]
[    0.386152] pci_bus 0000:02: resource 1 mem: [0xf8300000-0xf84fffff]
[    0.386193] pci_bus 0000:02: resource 2 pref mem [0xf8500000-0xf86fffff]
[    0.386233] pci_bus 0000:03: resource 0 io:  [0xd000-0xdfff]
[    0.386273] pci_bus 0000:03: resource 1 mem: [0xf8000000-0xf80fffff]
[    0.386313] pci_bus 0000:03: resource 2 pref mem [0xf8700000-0xf88fffff]
[    0.386354] pci_bus 0000:04: resource 0 io:  [0x2000-0x2fff]
[    0.386394] pci_bus 0000:04: resource 1 mem: [0xf8900000-0xf8afffff]
[    0.386434] pci_bus 0000:04: resource 2 pref mem [0xf8b00000-0xf8cfffff]
[    0.386475] pci_bus 0000:05: resource 1 mem: [0xf8100000-0xf81fffff]
[    0.386515] pci_bus 0000:05: resource 3 io:  [0x00-0xffff]
[    0.386555] pci_bus 0000:05: resource 4 mem: [0x000000-0xffffffffffffffff]
[    0.386618] NET: Registered protocol family 2
[    0.386715] IP route cache hash table entries: 262144 (order: 9, 2097152 
bytes)
[    0.387142] TCP established hash table entries: 262144 (order: 10, 4194304 
bytes)
[    0.388327] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.388826] TCP: Hash tables configured (established 262144 bind 65536)
[    0.388867] TCP reno registered
[    0.388972] NET: Registered protocol family 1
[    0.389159] pci 0000:01:00.0: Boot video device
[    0.389239] Trying to unpack rootfs image as initramfs...
[    1.528694] Freeing initrd memory: 70510k freed
[    1.562166] audit: initializing netlink socket (disabled)
[    1.562221] type=2000 audit(1263475858.561:1): initialized
[    1.569545] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    1.570627] VFS: Disk quotas dquot_6.5.2
[    1.570700] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    1.571149] fuse init (API version 7.13)
[    1.571238] msgmni has been set to 11937
[    1.571657] alg: No test for stdrng (krng)
[    1.571710] io scheduler noop registered
[    1.571753] io scheduler anticipatory registered
[    1.571792] io scheduler deadline registered
[    1.571837] io scheduler cfq registered (default)
[    1.572010] pcieport 0000:00:01.0: irq 24 for MSI/MSI-X
[    1.572052] pcieport 0000:00:01.0: setting latency timer to 64
[    1.572161] pcieport 0000:00:1c.0: irq 25 for MSI/MSI-X
[    1.572205] pcieport 0000:00:1c.0: setting latency timer to 64
[    1.572329] pcieport 0000:00:1c.3: irq 26 for MSI/MSI-X
[    1.572372] pcieport 0000:00:1c.3: setting latency timer to 64
[    1.572518] pcieport 0000:00:1c.4: irq 27 for MSI/MSI-X
[    1.572562] pcieport 0000:00:1c.4: setting latency timer to 64
[    1.572661] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    1.572768] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    1.572915] input: Power Button as 
/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    1.572966] ACPI: Power Button [PWRB]
[    1.573051] input: Power Button as 
/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    1.573100] ACPI: Power Button [PWRF]
[    1.573512] ACPI: SSDT 00000000dfee7ad0 0022A (v01  PmRef  Cpu0Ist 00003000 
INTL 20040311)
[    1.573789] Marking TSC unstable due to TSC halts in idle
[    1.573859] processor LNXCPU:00: registered as cooling_device0
[    1.574077] ACPI: SSDT 00000000dfee7f90 00152 (v01  PmRef  Cpu1Ist 00003000 
INTL 20040311)
[    1.574400] ACPI Error (psparse-0537): Method parse/execution failed 
[\_PR_.CPU1._PDC] (Node ffff88019f815ee0), AE_ALREADY_EXISTS
[    1.574536] ACPI: Marking method _PDC as Serialized because of 
AE_ALREADY_EXISTS error
[    1.574702] Switching to clocksource hpet
[    1.574784] processor LNXCPU:01: registered as cooling_device1
[    1.575099] ACPI: SSDT 00000000dfee80f0 00152 (v01  PmRef  Cpu2Ist 00003000 
INTL 20040311)
[    1.575417] ACPI Error (psparse-0537): Method parse/execution failed 
[\_PR_.CPU2._PDC] (Node ffff88019f815f60), AE_ALREADY_EXISTS
[    1.575552] ACPI: Marking method _PDC as Serialized because of 
AE_ALREADY_EXISTS error
[    1.575766] processor LNXCPU:02: registered as cooling_device2
[    1.575980] ACPI: SSDT 00000000dfee8250 00152 (v01  PmRef  Cpu3Ist 00003000 
INTL 20040311)
[    1.576317] ACPI Error (psparse-0537): Method parse/execution failed 
[\_PR_.CPU3._PDC] (Node ffff88019f815fe0), AE_ALREADY_EXISTS
[    1.576451] ACPI: Marking method _PDC as Serialized because of 
AE_ALREADY_EXISTS error
[    1.576666] processor LNXCPU:03: registered as cooling_device3
[    1.578347] XENFS: not registering filesystem on non-xen platform
[    1.579157] Linux agpgart interface v0.103
[    1.579198] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    1.580058] brd: module loaded
[    1.580400] loop: module loaded
[    1.580483] input: Macintosh mouse button emulation as 
/devices/virtual/input/input2
[    1.580603] ahci 0000:03:00.0: version 3.0
[    1.580654] ahci 0000:03:00.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
[    1.593534] ahci 0000:03:00.0: AHCI 0001.0000 32 slots 2 ports 3 Gbps 0x3 
impl SATA mode
[    1.593586] ahci 0000:03:00.0: flags: 64bit ncq pm led clo pmp pio slum part 
[    1.593636] ahci 0000:03:00.0: setting latency timer to 64
[    1.593828] scsi0 : ahci
[    1.593955] scsi1 : ahci
[    1.594057] ata1: SATA max UDMA/133 abar m8192@0xf8000000 port 0xf8000100 
irq 19
[    1.594107] ata2: SATA max UDMA/133 abar m8192@0xf8000000 port 0xf8000180 
irq 19
[    1.594192] ata_piix 0000:00:1f.2: version 2.13
[    1.594248] ata_piix 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 
19
[    1.594291] ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
[    1.594490] ata_piix 0000:00:1f.2: setting latency timer to 64
[    1.594600] scsi2 : ata_piix
[    1.594708] scsi3 : ata_piix
[    1.595288] ata3: SATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xf000 irq 14
[    1.595331] ata4: SATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xf008 irq 15
[    1.595403] ata_piix 0000:00:1f.5: PCI INT B -> GSI 19 (level, low) -> IRQ 
19
[    1.595467] ata_piix 0000:00:1f.5: MAP [ P0 -- P1 -- ]
[    1.595667] ata_piix 0000:00:1f.5: setting latency timer to 64
[    1.595761] scsi4 : ata_piix
[    1.595873] scsi5 : ata_piix
[    1.596284] ata5: SATA max UDMA/133 cmd 0xe700 ctl 0xe800 bmdma 0xeb00 irq 
19
[    1.596326] ata6: SATA max UDMA/133 cmd 0xe900 ctl 0xea00 bmdma 0xeb08 irq 
19
[    1.597270] pata_jmicron 0000:03:00.1: enabling device (0000 -> 0001)
[    1.597313] pata_jmicron 0000:03:00.1: PCI INT B -> GSI 16 (level, low) -> 
IRQ 16
[    1.597382] pata_jmicron 0000:03:00.1: setting latency timer to 64
[    1.597479] scsi6 : pata_jmicron
[    1.597595] scsi7 : pata_jmicron
[    1.598112] ata7: PATA max UDMA/100 cmd 0xd000 ctl 0xd100 bmdma 0xd400 irq 
16
[    1.598153] ata8: PATA max UDMA/100 cmd 0xd200 ctl 0xd300 bmdma 0xd408 irq 
16
[    1.598429] Fixed MDIO Bus: probed
[    1.598469] PPP generic driver version 2.4.2
[    1.598561] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.598614] ehci_hcd 0000:00:1a.7: PCI INT C -> GSI 18 (level, low) -> IRQ 
18
[    1.598661] ehci_hcd 0000:00:1a.7: setting latency timer to 64
[    1.598701] ehci_hcd 0000:00:1a.7: EHCI Host Controller
[    1.598765] ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus 
number 1
[    1.602726] ehci_hcd 0000:00:1a.7: cache line size of 32 is not supported
[    1.602774] ehci_hcd 0000:00:1a.7: irq 18, io mem 0xf8205000
[    1.617510] ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00
[    1.617624] usb usb1: configuration #1 chosen from 1 choice
[    1.617682] hub 1-0:1.0: USB hub found
[    1.617723] hub 1-0:1.0: 6 ports detected
[    1.617802] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 
23
[    1.617848] ehci_hcd 0000:00:1d.7: setting latency timer to 64
[    1.617889] ehci_hcd 0000:00:1d.7: EHCI Host Controller
[    1.617947] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus 
number 2
[    1.621892] ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported
[    1.621940] ehci_hcd 0000:00:1d.7: irq 23, io mem 0xf8204000
[    1.636012] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[    1.636106] usb usb2: configuration #1 chosen from 1 choice
[    1.636171] hub 2-0:1.0: USB hub found
[    1.636212] hub 2-0:1.0: 6 ports detected
[    1.636287] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.636337] uhci_hcd: USB Universal Host Controller Interface driver
[    1.636407] uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 
16
[    1.636450] uhci_hcd 0000:00:1a.0: setting latency timer to 64
[    1.636491] uhci_hcd 0000:00:1a.0: UHCI Host Controller
[    1.636553] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus 
number 3
[    1.636619] uhci_hcd 0000:00:1a.0: irq 16, io base 0x0000e200
[    1.636707] usb usb3: configuration #1 chosen from 1 choice
[    1.636762] hub 3-0:1.0: USB hub found
[    1.636803] hub 3-0:1.0: 2 ports detected
[    1.636874] uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 
21
[    1.636918] uhci_hcd 0000:00:1a.1: setting latency timer to 64
[    1.636958] uhci_hcd 0000:00:1a.1: UHCI Host Controller
[    1.637016] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus 
number 4
[    1.637087] uhci_hcd 0000:00:1a.1: irq 21, io base 0x0000e000
[    1.637175] usb usb4: configuration #1 chosen from 1 choice
[    1.637229] hub 4-0:1.0: USB hub found
[    1.637270] hub 4-0:1.0: 2 ports detected
[    1.637338] uhci_hcd 0000:00:1a.2: PCI INT C -> GSI 18 (level, low) -> IRQ 
18
[    1.637381] uhci_hcd 0000:00:1a.2: setting latency timer to 64
[    1.637422] uhci_hcd 0000:00:1a.2: UHCI Host Controller
[    1.637479] uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus 
number 5
[    1.637552] uhci_hcd 0000:00:1a.2: irq 18, io base 0x0000e100
[    1.637644] usb usb5: configuration #1 chosen from 1 choice
[    1.637700] hub 5-0:1.0: USB hub found
[    1.637741] hub 5-0:1.0: 2 ports detected
[    1.637809] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 
23
[    1.637853] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[    1.637893] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[    1.637950] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus 
number 6
[    1.638015] uhci_hcd 0000:00:1d.0: irq 23, io base 0x0000e300
[    1.638102] usb usb6: configuration #1 chosen from 1 choice
[    1.638156] hub 6-0:1.0: USB hub found
[    1.638197] hub 6-0:1.0: 2 ports detected
[    1.638264] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 
19
[    1.638307] uhci_hcd 0000:00:1d.1: setting latency timer to 64
[    1.638348] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[    1.638407] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus 
number 7
[    1.638472] uhci_hcd 0000:00:1d.1: irq 19, io base 0x0000e400
[    1.638559] usb usb7: configuration #1 chosen from 1 choice
[    1.638615] hub 7-0:1.0: USB hub found
[    1.638655] hub 7-0:1.0: 2 ports detected
[    1.638723] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 
18
[    1.638767] uhci_hcd 0000:00:1d.2: setting latency timer to 64
[    1.638807] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[    1.638863] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus 
number 8
[    1.638928] uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000e500
[    1.639016] usb usb8: configuration #1 chosen from 1 choice
[    1.639074] hub 8-0:1.0: USB hub found
[    1.639115] hub 8-0:1.0: 2 ports detected
[    1.639207] usbcore: registered new interface driver libusual
[    1.639276] PNP: No PS/2 controller found. Probing ports directly.
[    1.639654] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.639699] serio: i8042 AUX port at 0x60,0x64 irq 12
[    1.639807] mice: PS/2 mouse device common for all mice
[    1.639904] Driver 'rtc_cmos' needs updating - please use bus_type methods
[    1.639968] rtc_cmos 00:04: RTC can wake from S4
[    1.640043] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
[    1.640101] rtc0: alarms up to one month, 242 bytes nvram, hpet irqs
[    1.640215] device-mapper: uevent: version 1.0.3
[    1.640340] device-mapper: ioctl: 4.15.0-ioctl (2009-04-01) initialised: 
dm-devel@redhat.com
[    1.640578] device-mapper: multipath: version 1.1.0 loaded
[    1.640643] device-mapper: multipath round-robin: version 1.0.0 loaded
[    1.641169] cpuidle: using governor ladder
[    1.641361] cpuidle: using governor menu
[    1.641632] TCP cubic registered
[    1.641747] NET: Registered protocol family 10
[    1.642088] lo: Disabled Privacy Extensions
[    1.642314] NET: Registered protocol family 17
[    1.642363] Bluetooth: L2CAP ver 2.14
[    1.642401] Bluetooth: L2CAP socket layer initialized
[    1.642441] Bluetooth: SCO (Voice Link) ver 0.6
[    1.642479] Bluetooth: SCO socket layer initialized
[    1.642553] Bluetooth: RFCOMM TTY layer initialized
[    1.642601] Bluetooth: RFCOMM socket layer initialized
[    1.642640] Bluetooth: RFCOMM ver 1.11
[    1.647910] PM: Resume from disk failed.
[    1.647959] registered taskstats version 1
[    1.648305]   Magic number: 10:874:533
[    1.648361] bdi 1:11: hash matches
[    1.648473] rtc_cmos 00:04: setting system clock to 2010-01-14 13:30:59 UTC 
(1263475859)
[    1.648547] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    1.648590] EDD information not available.
[    1.912048] ata1: SATA link down (SStatus 0 SControl 300)
[    1.912130] ata2: SATA link down (SStatus 0 SControl 300)
[    1.927603] ata5: SATA link down (SStatus 0 SControl 300)
[    1.938182] ata6: SATA link down (SStatus 0 SControl 300)
[    2.216039] usb 2-2: new high speed USB device using ehci_hcd and address 2
[    2.350715] usb 2-2: configuration #1 chosen from 1 choice
[    2.404092] ata3.00: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    2.404156] ata3.01: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    2.405575] ata4.00: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    2.405642] ata4.01: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    2.437841] ata4.00: ATA-8: SAMSUNG HD501LJ, CR100-11, max UDMA7
[    2.437884] ata4.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 0/32)
[    2.437945] ata4.01: ATAPI: HL-DT-STDVD-RAM GH22NS30, 1.01, max UDMA/100
[    2.445853] ata4.00: configured for UDMA/133
[    2.446267] ata3.00: HPA detected: current 1953523055, native 1953525168
[    2.446312] ata3.00: ATA-8: ST31000528AS, CC34, max UDMA/133
[    2.446368] ata3.00: 1953523055 sectors, multi 16: LBA48 NCQ (depth 0/32)
[    2.446581] ata3.01: ATA-7: ST3300831AS, 3.02, max UDMA/133
[    2.446624] ata3.01: 586072368 sectors, multi 16: LBA48 NCQ (depth 0/32)
[    2.460251] ata4.01: configured for UDMA/100
[    2.502283] ata3.00: configured for UDMA/133
[    2.516368] ata3.01: configured for UDMA/133
[    2.516525] scsi 2:0:0:0: Direct-Access     ATA      ST31000528AS     CC34 
PQ: 0 ANSI: 5
[    2.516672] sd 2:0:0:0: Attached scsi generic sg0 type 0
[    2.516710] sd 2:0:0:0: [sda] 1953523055 512-byte logical blocks: (1.00 
TB/931 GiB)
[    2.516740] sd 2:0:0:0: [sda] Write Protect is off
[    2.516742] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    2.516757] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, 
doesn't support DPO or FUA
[    2.516852]  sda: sda1
[    2.530520] scsi 2:0:1:0: Direct-Access     ATA      ST3300831AS      3.02 
PQ: 0 ANSI: 5
[    2.530611] sd 2:0:1:0: Attached scsi generic sg1 type 0
[    2.530614] sd 2:0:1:0: [sdb] 586072368 512-byte logical blocks: (300 
GB/279 GiB)
[    2.530648] sd 2:0:1:0: [sdb] Write Protect is off
[    2.530650] sd 2:0:1:0: [sdb] Mode Sense: 00 3a 00 00
[    2.530665] scsi 3:0:0:0: Direct-Access     ATA      SAMSUNG HD501LJ  CR10 
PQ: 0 ANSI: 5
[    2.530667] sd 2:0:1:0: [sdb] Write cache: enabled, read cache: enabled, 
doesn't support DPO or FUA
[    2.530743] sd 3:0:0:0: Attached scsi generic sg2 type 0
[    2.530932]  sda2 <
[    2.531375] sd 3:0:0:0: [sdc] 976773168 512-byte logical blocks: (500 
GB/465 GiB)
[    2.531986] scsi 3:0:1:0: CD-ROM            HL-DT-ST DVD-RAM GH22NS30 1.01 
PQ: 0 ANSI: 5
[    2.534442] sd 3:0:0:0: [sdc] Write Protect is off
[    2.534489] sd 3:0:0:0: [sdc] Mode Sense: 00 3a 00 00
[    2.535718] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 
cdda tray
[    2.536401] Uniform CD-ROM driver Revision: 3.20
[    2.536423] sd 3:0:0:0: [sdc] Write cache: enabled, read cache: enabled, 
doesn't support DPO or FUA
[    2.536522]  sdc:
[    2.536550] sr 3:0:1:0: Attached scsi CD-ROM sr0
[    2.536585] sr 3:0:1:0: Attached scsi generic sg3 type 5
[    2.543010]  sdb: sda5 sdb1
[    2.574475] sd 2:0:1:0: [sdb] Attached SCSI disk
[    2.574522]  sda6 sda7 sdc2 < sdc5 sda8 sda9 >
[    2.620082] sd 2:0:0:0: [sda] Attached SCSI disk
[    2.622684]  sdc6 sdc7 > sdc3
[    2.664544] sd 3:0:0:0: [sdc] Attached SCSI disk
[    2.703445] Freeing unused kernel memory: 548k freed
[    2.703580] Write protecting the kernel read-only data: 7632k
[    2.756037] usb 3-1: new full speed USB device using uhci_hcd and address 2
[    2.807702] Floppy drive(s): fd0 is 1.44M
[    2.826271] FDC 0 is a post-1991 82077
[    2.826442] ohci1394 0000:05:07.0: PCI INT A -> GSI 23 (level, low) -> IRQ 
23
[    2.881641] ohci1394: fw-host0: OHCI-1394 1.1 (PCI): IRQ=[23]  
MMIO=[f8104000-f81047ff]  Max Packet=[2048]  IR/IT contexts=[4/8]
[    3.042804] usb 3-1: configuration #1 chosen from 1 choice
[    3.284044] usb 5-1: new low speed USB device using uhci_hcd and address 2
[    3.453695] usb 5-1: configuration #1 chosen from 1 choice
[    3.518522] EXT3-fs: INFO: recovery required on readonly filesystem.
[    3.518565] EXT3-fs: write access will be enabled during recovery.
[    3.696538] usb 5-2: new full speed USB device using uhci_hcd and address 3
[    3.864739] usb 5-2: configuration #1 chosen from 1 choice
[    4.104037] usb 8-1: new full speed USB device using uhci_hcd and address 2
[    4.152427] ieee1394: Host added: ID:BUS[0-00:1023]  GUID[007c2d6400001fd0]
[    4.278110] usb 8-1: configuration #1 chosen from 1 choice
[    4.280065] hub 8-1:1.0: USB hub found
[    4.282018] hub 8-1:1.0: 4 ports detected
[    4.528048] usb 8-2: new low speed USB device using uhci_hcd and address 3
[    4.703095] usb 8-2: configuration #1 chosen from 1 choice
[    4.709940] usbcore: registered new interface driver hiddev
[    4.728379] input: Logitech USB RECEIVER as 
/devices/pci0000:00/0000:00:1d.2/usb8/8-2/8-2:1.0/input/input3
[    4.728556] generic-usb 0003:046D:C50E.0001: input,hidraw0: USB HID v1.11 
Mouse [Logitech USB RECEIVER] on usb-0000:00:1d.2-2/input0
[    4.728636] usbcore: registered new interface driver usbhid
[    4.728704] usbhid: v2.6:USB HID core driver
[    4.783020] usb 8-1.4: new low speed USB device using uhci_hcd and address 
4
[    4.923116] usb 8-1.4: configuration #1 chosen from 1 choice
[    4.950242] input: CHESEN PS2 to USB Converter as 
/devices/pci0000:00/0000:00:1d.2/usb8/8-1/8-1.4/8-1.4:1.0/input/input4
[    4.950344] generic-usb 0003:0A81:0205.0002: input,hidraw1: USB HID v1.10 
Keyboard [CHESEN PS2 to USB Converter] on usb-0000:00:1d.2-1.4/input0
[    4.978292] input: CHESEN PS2 to USB Converter as 
/devices/pci0000:00/0000:00:1d.2/usb8/8-1/8-1.4/8-1.4:1.1/input/input5
[    4.978389] generic-usb 0003:0A81:0205.0003: input,hidraw2: USB HID v1.10 
Mouse [CHESEN PS2 to USB Converter] on usb-0000:00:1d.2-1.4/input1
[   13.504143] kjournald starting.  Commit interval 5 seconds
[   13.504170] EXT3-fs: sda8: orphan cleanup on readonly fs
[   13.504176] ext3_orphan_cleanup: deleting unreferenced inode 860297
[   13.504206] ext3_orphan_cleanup: deleting unreferenced inode 860290
[   13.533775] ext3_orphan_cleanup: deleting unreferenced inode 860268
[   13.533829] ext3_orphan_cleanup: deleting unreferenced inode 860258
[   13.540044] ext3_orphan_cleanup: deleting unreferenced inode 860254
[   13.540094] ext3_orphan_cleanup: deleting unreferenced inode 860252
[   13.542952] ext3_orphan_cleanup: deleting unreferenced inode 860203
[   13.549223] ext3_orphan_cleanup: deleting unreferenced inode 860179
[   13.560210] EXT3-fs: sda8: 8 orphan inodes deleted
[   13.560251] EXT3-fs: recovery complete.
[   13.581521] EXT3-fs: mounted filesystem with writeback data mode.
[   20.765269] udev: starting version 147
[   20.952447] lp: driver loaded but no devices found
[   22.063222] nvidia: module license 'NVIDIA' taints kernel.
[   22.063226] Disabling lock debugging due to kernel taint
[   22.337606] ip_tables: (C) 2000-2006 Netfilter Core Team
[   22.528018] nvidia 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[   22.528024] nvidia 0000:01:00.0: setting latency timer to 64
[   22.528277] NVRM: loading NVIDIA UNIX x86_64 Kernel Module  185.18.36  Fri 
Aug 14 17:35:21 PDT 2009
[   22.579815] Linux video capture interface: v2.00
[   22.761716] pwc: Philips webcam module version 10.0.13 loaded.
[   22.761718] pwc: Supports Philips PCA645/646, PCVC675/680/690, 
PCVC720[40]/730/740/750 & PCVC830/840.
[   22.761719] pwc: Also supports the Askey VC010, various Logitech Quickcams, 
Samsung MPC-C10 and MPC-C30,
[   22.761721] pwc: the Creative WebCam 5 & Pro Ex, SOTEC Afina Eye and 
Visionite VCS-UC300 and VCS-UM100.
[   22.761742] pwc: Logitech QuickCam 4000 Pro USB webcam detected.
[   22.762711] pwc: Registered as /dev/video0.
[   22.765769] input: PWC snapshot button as 
/devices/pci0000:00/0000:00:1a.0/usb3/3-1/input/input6
[   22.765844] usbcore: registered new interface driver Philips webcam
[   22.861723] it87: Found IT8718F chip at 0x290, revision 5
[   22.861732] it87: in3 is VCC (+5V)
[   23.394182] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 
22
[   23.394376] HDA Intel 0000:00:1b.0: setting latency timer to 64
[   23.591994] usbcore: registered new interface driver snd-usb-audio
[   23.946600] Intel AES-NI instructions are not detected.
[   24.085846] padlock: VIA PadLock not detected.
[   24.320389] padlock: VIA PadLock Hash Engine not detected.
[   24.393876] Adding 6562544k swap on /dev/mapper/cryptoswap.  Priority:-1 
extents:1 across:6562544k 
[   24.504721] EXT3 FS on sda8, internal journal
[   24.667044] kjournald starting.  Commit interval 5 seconds
[   24.667057] EXT3-fs: mounted filesystem with writeback data mode.
[   24.690847] kjournald starting.  Commit interval 5 seconds
[   24.691125] EXT3 FS on sda6, internal journal
[   24.691129] EXT3-fs: mounted filesystem with writeback data mode.
[   24.889948] kjournald starting.  Commit interval 5 seconds
[   24.890234] EXT3 FS on sdc5, internal journal
[   24.890239] EXT3-fs: mounted filesystem with writeback data mode.
[   24.919298] kjournald starting.  Commit interval 5 seconds
[   24.919563] EXT3 FS on sdc6, internal journal
[   24.919567] EXT3-fs: mounted filesystem with writeback data mode.
[   36.851649] kjournald starting.  Commit interval 5 seconds
[   36.851656] EXT3-fs warning: maximal mount count reached, running e2fsck is 
recommended
[   36.853411] EXT3 FS on dm-1, internal journal
[   36.853414] EXT3-fs: mounted filesystem with writeback data mode.
[   41.713695] CPUFREQ: Per core ondemand sysfs interface is deprecated - 
up_threshold
[  105.902182] kjournald starting.  Commit interval 5 seconds
[  105.902223] EXT3-fs warning: maximal mount count reached, running e2fsck is 
recommended
[  105.905178] EXT3 FS on dm-1, internal journal
[  105.905182] EXT3-fs: mounted filesystem with writeback data mode.
[  132.141209] vboxdrv: Trying to deactivate the NMI watchdog permanently...
[  132.141212] vboxdrv: Successfully done.
[  132.141213] vboxdrv: Found 4 processor cores.
[  132.141525] VBoxDrv: dbg - g_abExecMemory=ffffffffa0cbb0e0
[  132.141611] vboxdrv: fAsync=0 offMin=0x39e offMax=0x7b51
[  132.141996] vboxdrv: TSC mode is 'synchronous', kernel timer mode is 
'normal'.
[  132.141999] vboxdrv: Successfully loaded version 3.1.2 (interface 
0x00100001).
[  132.505707] ppdev: user-space parallel port driver
[  390.693702] PM: Syncing filesystems ... done.
[  390.821528] PM: Preparing system for mem sleep
[  390.821533] Freezing user space processes ... (elapsed 0.00 seconds) done.
[  390.822220] Freezing remaining freezable tasks ... (elapsed 0.00 seconds) 
done.
[  390.822254] PM: Entering mem sleep
[  390.822268] Suspending console(s) (use no_console_suspend to debug)
[  391.005552] sd 3:0:0:0: [sdc] Synchronizing SCSI cache
[  391.006010] sd 3:0:0:0: [sdc] Stopping disk
[  391.429533] sd 2:0:1:0: [sdb] Synchronizing SCSI cache
[  391.429681] sd 2:0:1:0: [sdb] Stopping disk
[  391.429822] sd 2:0:0:0: [sda] Synchronizing SCSI cache
[  391.430025] sd 2:0:0:0: [sda] Stopping disk
[  391.968178] ACPI handle has no context!
[  391.968233] ACPI handle has no context!
[  391.984207] pata_jmicron 0000:03:00.1: PCI INT B disabled
[  392.032274] ahci 0000:03:00.0: PCI INT A disabled
[  392.099861] ata_piix 0000:00:1f.5: PCI INT B disabled
[  392.112201] ata_piix 0000:00:1f.2: PCI INT B disabled
[  392.128112] ehci_hcd 0000:00:1d.7: PCI INT A disabled
[  392.128118] uhci_hcd 0000:00:1d.2: PCI INT C disabled
[  392.128123] uhci_hcd 0000:00:1d.1: PCI INT B disabled
[  392.128129] uhci_hcd 0000:00:1d.0: PCI INT A disabled
[  392.232198] HDA Intel 0000:00:1b.0: PCI INT A disabled
[  392.248109] ehci_hcd 0000:00:1a.7: PCI INT C disabled
[  392.248115] uhci_hcd 0000:00:1a.2: PCI INT C disabled
[  392.248120] uhci_hcd 0000:00:1a.1: PCI INT B disabled
[  392.248126] uhci_hcd 0000:00:1a.0: PCI INT A disabled
[  392.248186] PM: suspend devices took 1.428 seconds
[  392.280646] ACPI: Preparing to enter system sleep state S3
[  392.284305] Disabling non-boot CPUs ...
[  392.286565] CPU 1 is now offline
[  392.286823] CPU0 attaching NULL sched-domain.
[  392.286825] CPU1 attaching NULL sched-domain.
[  392.286827] CPU2 attaching NULL sched-domain.
[  392.286829] CPU3 attaching NULL sched-domain.
[  392.320016] CPU0 attaching sched-domain:
[  392.320018]  domain 0: span 0,3 level MC
[  392.320019]   groups: 0 3
[  392.320022]   domain 1: span 0,2-3 level CPU
[  392.320023]    groups: 0,3 (cpu_power = 2048) 2
[  392.320026] CPU2 attaching sched-domain:
[  392.320028]  domain 0: span 0,2-3 level CPU
[  392.320029]   groups: 2 0,3 (cpu_power = 2048)
[  392.320032] CPU3 attaching sched-domain:
[  392.320033]  domain 0: span 0,3 level MC
[  392.320034]   groups: 3 0
[  392.320036]   domain 1: span 0,2-3 level CPU
[  392.320038]    groups: 0,3 (cpu_power = 2048) 2
[  392.320374] CPU1 is down
[  392.424006] CPU 2 is now offline
[  392.424160] CPU0 attaching NULL sched-domain.
[  392.424162] CPU2 attaching NULL sched-domain.
[  392.424163] CPU3 attaching NULL sched-domain.
[  392.456012] CPU0 attaching sched-domain:
[  392.456013]  domain 0: span 0,3 level MC
[  392.456014]   groups: 0 3
[  392.456017] CPU3 attaching sched-domain:
[  392.456018]  domain 0: span 0,3 level MC
[  392.456019]   groups: 3 0
[  392.456224] CPU2 is down
[  392.560012] CPU 3 is now offline
[  392.560015] SMP alternatives: switching to UP code
[  392.564674] CPU0 attaching NULL sched-domain.
[  392.564676] CPU3 attaching NULL sched-domain.
[  392.564680] CPU0 attaching NULL sched-domain.
[  392.564821] CPU3 is down
[  392.564827] Back to C!
[  392.564827] Enabling non-boot CPUs ...
[  392.564827] SMP alternatives: switching to SMP code
[  392.569509] Booting processor 1 APIC 0x3 ip 0x6000
[  392.286700] Initializing CPU#1
[  392.286700] Calibrating delay using timer specific routine.. 5666.01 
BogoMIPS (lpj=11332026)
[  392.286700] CPU: L1 I cache: 32K, L1 D cache: 32K
[  392.286700] CPU: L2 cache: 6144K
[  392.286700] CPU: Physical Processor ID: 0
[  392.286700] CPU: Processor Core ID: 3
[  392.660038] CPU1: Intel 06/17 stepping 0a
[  392.660098] CPU0 attaching NULL sched-domain.
[  392.672010] CPU0 attaching sched-domain:
[  392.672012]  domain 0: span 0-1 level CPU
[  392.672013]   groups: 0 1
[  392.672016] CPU1 attaching sched-domain:
[  392.672017]  domain 0: span 0-1 level CPU
[  392.672019]   groups: 1 0
[  392.672274] CPU1 is up
[  392.672469] Booting processor 2 APIC 0x2 ip 0x6000
[  392.424063] Initializing CPU#2
[  392.424063] Calibrating delay using timer specific routine.. 5666.00 
BogoMIPS (lpj=11332002)
[  392.424063] CPU: L1 I cache: 32K, L1 D cache: 32K
[  392.424063] CPU: L2 cache: 6144K
[  392.424063] CPU: Physical Processor ID: 0
[  392.424063] CPU: Processor Core ID: 2
[  392.760018] CPU2: Intel 06/17 stepping 0a
[  392.760107] CPU0 attaching NULL sched-domain.
[  392.760109] CPU1 attaching NULL sched-domain.
[  392.780011] CPU0 attaching sched-domain:
[  392.780012]  domain 0: span 0-2 level CPU
[  392.780014]   groups: 0 1-2 (cpu_power = 2048)
[  392.780017] CPU1 attaching sched-domain:
[  392.780018]  domain 0: span 1-2 level MC
[  392.780019]   groups: 1 2
[  392.780021]   domain 1: span 0-2 level CPU
[  392.780023]    groups: 1-2 (cpu_power = 2048) 0
[  392.780026] CPU2 attaching sched-domain:
[  392.780027]  domain 0: span 1-2 level MC
[  392.780028]   groups: 2 1
[  392.780030]   domain 1: span 0-2 level CPU
[  392.780031]    groups: 1-2 (cpu_power = 2048) 0
[  392.780359] CPU2 is up
[  392.780588] Booting processor 3 APIC 0x1 ip 0x6000
[  392.564563] Initializing CPU#3
[  392.564563] Calibrating delay using timer specific routine.. 5665.94 
BogoMIPS (lpj=11331884)
[  392.564563] CPU: L1 I cache: 32K, L1 D cache: 32K
[  392.564563] CPU: L2 cache: 6144K
[  392.564563] CPU: Physical Processor ID: 0
[  392.564563] CPU: Processor Core ID: 1
[  392.868037] CPU3: Intel 06/17 stepping 0a
[  392.868128] CPU0 attaching NULL sched-domain.
[  392.868130] CPU1 attaching NULL sched-domain.
[  392.868132] CPU2 attaching NULL sched-domain.
[  392.884012] CPU0 attaching sched-domain:
[  392.884014]  domain 0: span 0,3 level MC
[  392.884015]   groups: 0 3
[  392.884017]   domain 1: span 0-3 level CPU
[  392.884019]    groups: 0,3 (cpu_power = 2048) 1-2 (cpu_power = 2048)
[  392.884022] CPU1 attaching sched-domain:
[  392.884024]  domain 0: span 1-2 level MC
[  392.884025]   groups: 1 2
[  392.884027]   domain 1: span 0-3 level CPU
[  392.884028]    groups: 1-2 (cpu_power = 2048) 0,3 (cpu_power = 2048)
[  392.884031] CPU2 attaching sched-domain:
[  392.884033]  domain 0: span 1-2 level MC
[  392.884034]   groups: 2 1
[  392.884036]   domain 1: span 0-3 level CPU
[  392.884037]    groups: 1-2 (cpu_power = 2048) 0,3 (cpu_power = 2048)
[  392.884040] CPU3 attaching sched-domain:
[  392.884041]  domain 0: span 0,3 level MC
[  392.884043]   groups: 3 0
[  392.884045]   domain 1: span 0-3 level CPU
[  392.884046]    groups: 0,3 (cpu_power = 2048) 1-2 (cpu_power = 2048)
[  392.884508] CPU3 is up
[  392.886642] ACPI: Waking up from system sleep state S3
[  392.888073] HDA Intel 0000:00:1b.0: restoring config space at offset 0xf (was 
0x100, writing 0x105)
[  392.888084] HDA Intel 0000:00:1b.0: restoring config space at offset 0x4 (was 
0x4, writing 0xf8200004)
[  392.888088] HDA Intel 0000:00:1b.0: restoring config space at offset 0x3 (was 
0x0, writing 0x8)
[  392.888091] HDA Intel 0000:00:1b.0: restoring config space at offset 0x1 (was 
0x100000, writing 0x100002)
[  392.888108] pcieport 0000:00:1c.0: restoring config space at offset 0xf (was 
0x100, writing 0x10a)
[  392.888115] pcieport 0000:00:1c.0: restoring config space at offset 0x9 (was 
0x10001, writing 0xf861f851)
[  392.888118] pcieport 0000:00:1c.0: restoring config space at offset 0x8 (was 
0x0, writing 0xf840f830)
[  392.888121] pcieport 0000:00:1c.0: restoring config space at offset 0x7 (was 
0x20000000, writing 0x1010)
[  392.888126] pcieport 0000:00:1c.0: restoring config space at offset 0x3 (was 
0x810000, writing 0x810008)
[  392.888129] pcieport 0000:00:1c.0: restoring config space at offset 0x1 (was 
0x100000, writing 0x100407)
[  392.888154] pcieport 0000:00:1c.3: restoring config space at offset 0xf (was 
0x400, writing 0x40b)
[  392.888160] pcieport 0000:00:1c.3: restoring config space at offset 0x9 (was 
0x10001, writing 0xf881f871)
[  392.888163] pcieport 0000:00:1c.3: restoring config space at offset 0x8 (was 
0x0, writing 0xf800f800)
[  392.888166] pcieport 0000:00:1c.3: restoring config space at offset 0x7 (was 
0x0, writing 0xd0d0)
[  392.888171] pcieport 0000:00:1c.3: restoring config space at offset 0x3 (was 
0x810000, writing 0x810008)
[  392.888175] pcieport 0000:00:1c.3: restoring config space at offset 0x1 (was 
0x100000, writing 0x100407)
[  392.888199] pcieport 0000:00:1c.4: restoring config space at offset 0xf (was 
0x100, writing 0x10a)
[  392.888205] pcieport 0000:00:1c.4: restoring config space at offset 0x9 (was 
0x10001, writing 0xf8c1f8b1)
[  392.888208] pcieport 0000:00:1c.4: restoring config space at offset 0x8 (was 
0x0, writing 0xf8a0f890)
[  392.888211] pcieport 0000:00:1c.4: restoring config space at offset 0x7 (was 
0x2000f0f0, writing 0x2020)
[  392.888216] pcieport 0000:00:1c.4: restoring config space at offset 0x3 (was 
0x810000, writing 0x810008)
[  392.888220] pcieport 0000:00:1c.4: restoring config space at offset 0x1 (was 
0x100003, writing 0x100407)
[  392.888419] ata_piix 0000:00:1f.5: restoring config space at offset 0x1 (was 
0x2b00003, writing 0x2b00007)
[  392.888435] nvidia 0000:01:00.0: restoring config space at offset 0xf (was 
0x100, writing 0x10a)
[  392.888441] nvidia 0000:01:00.0: restoring config space at offset 0x9 (was 
0x1, writing 0xc001)
[  392.888444] nvidia 0000:01:00.0: restoring config space at offset 0x7 (was 
0x4, writing 0xf4000004)
[  392.888447] nvidia 0000:01:00.0: restoring config space at offset 0x5 (was 
0xc, writing 0xe000000c)
[  392.888450] nvidia 0000:01:00.0: restoring config space at offset 0x4 (was 
0x0, writing 0xf6000000)
[  392.888454] nvidia 0000:01:00.0: restoring config space at offset 0x1 (was 
0x100000, writing 0x100007)
[  392.888483] ahci 0000:03:00.0: restoring config space at offset 0xf (was 
0x100, writing 0x10b)
[  392.888497] ahci 0000:03:00.0: restoring config space at offset 0x8 (was 
0xd401, writing 0x0)
[  392.888502] ahci 0000:03:00.0: restoring config space at offset 0x7 (was 
0xd301, writing 0x0)
[  392.888506] ahci 0000:03:00.0: restoring config space at offset 0x6 (was 
0xd201, writing 0x0)
[  392.888511] ahci 0000:03:00.0: restoring config space at offset 0x5 (was 
0xd101, writing 0x0)
[  392.888515] ahci 0000:03:00.0: restoring config space at offset 0x4 (was 
0xd001, writing 0x0)
[  392.888520] ahci 0000:03:00.0: restoring config space at offset 0x3 (was 0x0, 
writing 0x800008)
[  392.888524] ahci 0000:03:00.0: restoring config space at offset 0x2 (was 
0x1018502, writing 0x1060102)
[  392.888568] pata_jmicron 0000:03:00.1: restoring config space at offset 0x8 
(was 0x1, writing 0xd401)
[  392.888573] pata_jmicron 0000:03:00.1: restoring config space at offset 0x7 
(was 0x1, writing 0xd301)
[  392.888577] pata_jmicron 0000:03:00.1: restoring config space at offset 0x6 
(was 0x1, writing 0xd201)
[  392.888582] pata_jmicron 0000:03:00.1: restoring config space at offset 0x5 
(was 0x1, writing 0xd101)
[  392.888586] pata_jmicron 0000:03:00.1: restoring config space at offset 0x4 
(was 0x1, writing 0xd001)
[  392.888594] pata_jmicron 0000:03:00.1: restoring config space at offset 0x1 
(was 0x100000, writing 0x100005)
[  392.888611] ohci1394 0000:05:07.0: restoring config space at offset 0xf (was 
0x4020100, writing 0x4020107)
[  392.888624] ohci1394 0000:05:07.0: restoring config space at offset 0x5 (was 
0x0, writing 0xf8100000)
[  392.888627] ohci1394 0000:05:07.0: restoring config space at offset 0x4 (was 
0x0, writing 0xf8104000)
[  392.888631] ohci1394 0000:05:07.0: restoring config space at offset 0x3 (was 
0x0, writing 0x2008)
[  392.888635] ohci1394 0000:05:07.0: restoring config space at offset 0x1 (was 
0x2100000, writing 0x2100006)
[  392.888770] uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 
16
[  392.888774] uhci_hcd 0000:00:1a.0: setting latency timer to 64
[  392.888792] usb usb3: root hub lost power or was reset
[  392.888822] uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 
21
[  392.888825] uhci_hcd 0000:00:1a.1: setting latency timer to 64
[  392.888842] usb usb4: root hub lost power or was reset
[  392.888854] uhci_hcd 0000:00:1a.2: PCI INT C -> GSI 18 (level, low) -> IRQ 
18
[  392.888858] uhci_hcd 0000:00:1a.2: setting latency timer to 64
[  392.888874] usb usb5: root hub lost power or was reset
[  392.888894] ehci_hcd 0000:00:1a.7: PCI INT C -> GSI 18 (level, low) -> IRQ 
18
[  392.888898] ehci_hcd 0000:00:1a.7: setting latency timer to 64
[  392.888904] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 
22
[  392.888908] HDA Intel 0000:00:1b.0: setting latency timer to 64
[  392.984271] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 
23
[  392.984276] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[  392.984296] usb usb6: root hub lost power or was reset
[  392.984316] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 
19
[  392.984319] uhci_hcd 0000:00:1d.1: setting latency timer to 64
[  392.984338] usb usb7: root hub lost power or was reset
[  392.984359] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 
18
[  392.984363] uhci_hcd 0000:00:1d.2: setting latency timer to 64
[  392.984382] usb usb8: root hub lost power or was reset
[  392.984412] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 
23
[  392.984421] ehci_hcd 0000:00:1d.7: setting latency timer to 64
[  392.984428] pci 0000:00:1e.0: setting latency timer to 64
[  392.984433] ata_piix 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 
19
[  392.984437] ata_piix 0000:00:1f.2: setting latency timer to 64
[  392.985757] ata_piix 0000:00:1f.5: PCI INT B -> GSI 19 (level, low) -> IRQ 
19
[  392.985760] ata_piix 0000:00:1f.5: setting latency timer to 64
[  393.434970] ahci 0000:03:00.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
[  393.434976] ahci 0000:03:00.0: setting latency timer to 64
[  393.448157] pata_jmicron 0000:03:00.1: PCI INT B -> GSI 16 (level, low) -> 
IRQ 16
[  393.448168] pata_jmicron 0000:03:00.1: setting latency timer to 64
[  393.504121] ohci1394: fw-host0: OHCI-1394 1.1 (PCI): IRQ=[23]  
MMIO=[f8104000-f81047ff]  Max Packet=[2048]  IR/IT contexts=[4/8]
[  393.550661] ata6: SATA link down (SStatus 4 SControl 300)
[  393.561259] ata5: SATA link down (SStatus 4 SControl 300)
[  393.768048] ata1: SATA link down (SStatus 0 SControl 300)
[  393.768075] ata2: SATA link down (SStatus 0 SControl 300)
[  394.028100] ata4.00: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[  394.028125] ata4.01: SATA link down (SStatus 0 SControl 123)
[  394.028129] ata3.00: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[  394.028142] ata3.01: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[  394.036345] ata4.01: ACPI cmd ef/03:45:00:00:00:b0 (SET FEATURES) filtered 
out
[  394.036356] ata3.01: ACPI cmd ef/03:45:00:00:00:b0 (SET FEATURES) filtered 
out
[  394.036366] ata4.01: ACPI cmd ef/03:45:00:00:00:b0 (SET FEATURES) filtered 
out
[  394.036374] ata3.01: ACPI cmd ef/03:45:00:00:00:b0 (SET FEATURES) filtered 
out
[  394.036383] ata4.01: ACPI cmd ef/03:0c:00:00:00:b0 (SET FEATURES) filtered 
out
[  394.036391] ata3.01: ACPI cmd ef/03:0c:00:00:00:b0 (SET FEATURES) filtered 
out
[  394.044215] ata4.00: ACPI cmd ef/03:45:00:00:00:a0 (SET FEATURES) filtered 
out
[  394.044217] ata4.00: ACPI cmd ef/03:45:00:00:00:a0 (SET FEATURES) filtered 
out
[  394.044220] ata4.00: ACPI cmd ef/03:0c:00:00:00:a0 (SET FEATURES) filtered 
out
[  394.044348] ata4.00: n_sectors mismatch 976773168 != 976771055
[  394.044350] ata4.00: revalidation failed (errno=-19)
[  394.044353] ata4.00: limiting SATA link speed to 1.5 Gbps
[  394.044711] ata3.00: ACPI cmd ef/03:45:00:00:00:a0 (SET FEATURES) filtered 
out
[  394.044713] ata3.00: ACPI cmd ef/03:45:00:00:00:a0 (SET FEATURES) filtered 
out
[  394.044716] ata3.00: ACPI cmd ef/03:0c:00:00:00:a0 (SET FEATURES) filtered 
out
[  394.130264] ata3.00: configured for UDMA/133
[  394.136855] ata3.01: configured for UDMA/133
[  396.576622] sd 2:0:0:0: [sda] Starting disk
[  396.590335] sd 2:0:1:0: [sdb] Starting disk
[  396.610677] sd 3:0:0:0: [sdc] Starting disk
[  399.824075] ata4.00: SATA link up 1.5 Gbps (SStatus 113 SControl 310)
[  399.824087] ata4.01: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[  399.856340] ata4.00: n_sectors mismatch 976773168 != 976771055
[  399.856342] ata4.00: revalidation failed (errno=-19)
[  399.856344] ata4.00: disabled
[  399.860026] sd 3:0:0:0: rejecting I/O to offline device
[  399.860033] sd 3:0:0:0: rejecting I/O to offline device
[  399.860058] sd 3:0:0:0: [sdc] START_STOP FAILED
[  399.860060] sd 3:0:0:0: [sdc] Result: hostbyte=DID_NO_CONNECT 
driverbyte=DRIVER_OK
[  399.860065] PM: Device 3:0:0:0 failed to resume: error 65536
[  400.656594] ata4.00: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[  400.656606] ata4.01: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[  400.688844] ata4.00: HPA detected: current 976771055, native 976773168
[  400.688848] ata4.00: ATA-8: SAMSUNG HD501LJ, CR100-11, max UDMA7
[  400.688850] ata4.00: 976771055 sectors, multi 0: LBA48 NCQ (depth 0/32)
[  400.700336] ata4.00: configured for UDMA/133
[  400.712739] ata4.01: configured for UDMA/100
[  400.713798] sd 3:0:0:0: [sdc] 976771055 512-byte logical blocks: (500 
GB/465 GiB)
[  400.713877] sdc: detected capacity change from 500107862016 to 500106780160
[  400.714096] ata4.00: detaching (SCSI 3:0:0:0)
[  402.860034] 
[  402.860035] floppy driver state
[  402.860036] -------------------
[  402.860039] now=4294993011 last interrupt=4294898622 diff=94389 last called 
handler=ffffffffa00147f0
[  402.860040] timeout_message=lock fdc
[  402.860041] last output bytes:
[  402.860043]  8 80 4294893002
[  402.860044]  8 80 4294893002
[  402.860046]  8 80 4294893002
[  402.860047]  8 80 4294893002
[  402.860048] 12 80 4294898620
[  402.860049]  0 90 4294898620
[  402.860051] 13 90 4294898620
[  402.860052]  0 90 4294898620
[  402.860053] 1a 90 4294898620
[  402.860054]  0 90 4294898620
[  402.860055]  3 90 4294898620
[  402.860057] c1 90 4294898620
[  402.860058] 10 90 4294898620
[  402.860059]  7 90 4294898620
[  402.860060]  0 90 4294898620
[  402.860062]  8 81 4294898621
[  402.860063]  f 80 4294898621
[  402.860064]  0 90 4294898621
[  402.860065]  1 91 4294898621
[  402.860067]  8 81 4294898622
[  402.860068] last result at 4294898622
[  402.860069] last redo_fd_request at 4294898627
[  402.860070] 20  1 
[  402.860076] status=0
[  402.860077] fdc_busy=1
[  402.860078] do_floppy=ffffffffa0010740
[  402.860079] cont=ffffffffa0017900
[  402.860081] current_req=(null)
[  402.860082] command_status=-1
[  402.860083] 
[  402.860085] floppy0: floppy timeout called
[  402.972034] usb 3-1: reset full speed USB device using uhci_hcd and address 
2
[  403.611363] snd-usb-audio 3-1:1.1: no reset_resume for driver snd-usb-
audio?
[  403.611365] snd-usb-audio 3-1:1.2: no reset_resume for driver snd-usb-
audio?
[  403.868037] usb 5-1: reset low speed USB device using uhci_hcd and address 
2
[  404.280032] usb 5-2: reset full speed USB device using uhci_hcd and address 
3
[  404.540032] usb 8-1: reset full speed USB device using uhci_hcd and address 
2
[  405.164033] usb 8-2: reset low speed USB device using uhci_hcd and address 
3
[  405.471835] input input3: event field not found
[  405.471837] input input3: event field not found
[  405.471838] input input3: event field not found
[  405.471840] input input3: event field not found
[  405.471841] input input3: event field not found
[  405.471842] input input3: event field not found
[  405.471844] input input3: event field not found
[  405.733842] usb 8-1.4: reset low speed USB device using uhci_hcd and 
address 4
[  406.051468] pwc: Logitech QuickCam 4000 Pro USB webcam detected.
[  406.051506] pwc: Registered as /dev/video0.
[  406.054456] input: PWC snapshot button as 
/devices/pci0000:00/0000:00:1a.0/usb3/3-1/input/input7
[  406.289780] PM: resume devices took 13.400 seconds
[  406.289781] ------------[ cut here ]------------
[  406.289786] WARNING: at kernel/power/suspend_test.c:53 
suspend_test_finish+0x83/0x90()
[  406.289788] Hardware name: EP45-UD3
[  406.289789] Component: resume devices, time: 13400
[  406.289790] Modules linked in: binfmt_misc ppdev vboxnetadp vboxnetflt 
vboxdrv sha256_generic cryptd aes_x86_64 aes_generic dm_crypt 
snd_hda_codec_realtek snd_hda_intel snd_hda_codec snd_usb_audio snd_pcm_oss 
snd_mixer_oss snd_pcm snd_seq_dummy snd_usb_lib snd_hwdep snd_seq_oss 
snd_seq_midi snd_rawmidi snd_seq_midi_event snd_seq snd_timer snd_seq_device 
it87 snd iptable_filter hwmon_vid pwc videodev soundcore coretemp psmouse 
ip_tables v4l1_compat snd_page_alloc nvidia(P) serio_raw x_tables 
v4l2_compat_ioctl32 lp parport usbhid ohci1394 ieee1394 floppy intel_agp
[  406.289812] Pid: 6339, comm: pm-suspend Tainted: P           2.6.32 #3
[  406.289813] Call Trace:
[  406.289817]  [<ffffffff810599e8>] warn_slowpath_common+0x78/0xb0
[  406.289819]  [<ffffffff81059a7c>] warn_slowpath_fmt+0x3c/0x40
[  406.289822]  [<ffffffff81092eb3>] suspend_test_finish+0x83/0x90
[  406.289824]  [<ffffffff81092ae1>] suspend_devices_and_enter+0xb1/0x220
[  406.289826]  [<ffffffff81092d7a>] enter_state+0x12a/0x150
[  406.289828]  [<ffffffff81092391>] state_store+0x91/0x100
[  406.289831]  [<ffffffff8126a957>] kobj_attr_store+0x17/0x20
[  406.289834]  [<ffffffff8117dc70>] sysfs_write_file+0xe0/0x160
[  406.289836]  [<ffffffff81118ce8>] vfs_write+0xb8/0x1a0
[  406.289838]  [<ffffffff81116c18>] ? filp_close+0x58/0x90
[  406.289840]  [<ffffffff8111978c>] sys_write+0x4c/0x80
[  406.289843]  [<ffffffff81011ec2>] system_call_fastpath+0x16/0x1b
[  406.289844] ---[ end trace 7a7c8001a337e95c ]---
[  406.290057] PM: Finishing wakeup.
[  406.290058] Restarting tasks ... done.
[  406.313243] Aborting journal on device sdc5.
[  406.313301] journal commit I/O error
[  406.318748] ext3_abort called.
[  406.318793] EXT3-fs error (device sdc5): ext3_journal_start_sb: Detected 
aborted journal
[  406.318907] Remounting filesystem read-only
[  406.377115] sd 3:0:0:0: [sdc] Synchronizing SCSI cache
[  406.377543] sd 3:0:0:0: [sdc] Stopping disk
[  406.410829] EXT3-fs error (device sdc5): ext3_find_entry: reading directory 
#2100332 offset 0
[  406.413649] EXT3-fs error (device sdc5): ext3_find_entry: reading directory 
#8716647 offset 0
[  406.413712] EXT3-fs error (device sdc5): ext3_find_entry: reading directory 
#8716647 offset 0
[  406.790299] scsi 3:0:0:0: Direct-Access     ATA      SAMSUNG HD501LJ  CR10 
PQ: 0 ANSI: 5
[  406.790408] sd 3:0:0:0: Attached scsi generic sg2 type 0
[  406.790502] sd 3:0:0:0: [sdd] 976771055 512-byte logical blocks: (500 
GB/465 GiB)
[  406.790535] sd 3:0:0:0: [sdd] Write Protect is off
[  406.790537] sd 3:0:0:0: [sdd] Mode Sense: 00 3a 00 00
[  406.790552] sd 3:0:0:0: [sdd] Write cache: enabled, read cache: enabled, 
doesn't support DPO or FUA
[  406.790676]  sdd:
[  406.838755] EXT3-fs error (device sdc5): ext3_find_entry: reading directory 
#1671707 offset 0
[  406.846527] EXT3-fs error (device sdc5): ext3_find_entry: reading directory 
#1703951 offset 0
[  406.851860] EXT3-fs error (device sdc5): ext3_find_entry: reading directory 
#7949711 offset 0
[  406.864289] EXT3-fs error (device sdc5): ext3_find_entry: reading directory 
#1671707 offset 0
[  407.221932] EXT3-fs error (device sdc5): ext3_find_entry: reading directory 
#1671707 offset 0
[  407.222095] EXT3-fs error (device sdc5): ext3_find_entry: reading directory 
#1671411 offset 0
[  407.223168] EXT3-fs error (device sdc5): ext3_find_entry: reading directory 
#7949711 offset 0
[  407.224119] EXT3-fs error (device sdc5): ext3_find_entry: reading directory 
#7949711 offset 0
[  408.229724] EXT3-fs error (device sdc5): ext3_find_entry: reading directory 
#7996256 offset 0
[  408.230823] EXT3-fs error (device sdc5): ext3_find_entry: reading directory 
#1671408 offset 0
[  408.480617] EXT3-fs error (device sdc5): ext3_find_entry: reading directory 
#1671707 offset 0
[  409.383987]  sdd2 < sdd5 sdd6 sdd7 > sdd3
[  409.461329] sd 3:0:0:0: [sdd] Attached SCSI disk
[  410.097822] EXT3-fs error (device sdc5): ext3_find_entry: reading directory 
#1671707 offset 0
[  410.097894] EXT3-fs error (device sdc5): ext3_find_entry: reading directory 
#1671411 offset 0
[  410.098465] EXT3-fs error (device sdc5): ext3_find_entry: reading directory 
#1671411 offset 0
[  410.098488] EXT3-fs error (device sdc5): ext3_find_entry: reading directory 
#1671707 offset 0
[  417.256286] EXT3-fs error (device sdc5): ext3_find_entry: reading directory 
#1671408 offset 0
[  417.265994] EXT3-fs error (device sdc5): ext3_find_entry: reading directory 
#7996256 offset 0
[  417.266011] EXT3-fs error (device sdc5): ext3_find_entry: reading directory 
#7996256 offset 0
[  417.316199] EXT3-fs error (device sdc5): ext3_find_entry: reading directory 
#1671707 offset 0
[  417.338127] EXT3-fs error (device sdc5): ext3_find_entry: reading directory 
#1671408 offset 0
[  417.371663] EXT3-fs error (device sdc5): ext3_find_entry: reading directory 
#1671707 offset 0
[  417.453656] EXT3-fs error (device sdc5): ext3_find_entry: reading directory 
#1671663 offset 0
[  417.453676] EXT3-fs error (device sdc5): ext3_find_entry: reading directory 
#1671663 offset 0
[  417.457121] EXT3-fs error (device sdc5): ext3_find_entry: reading directory 
#1671663 offset 0
[  417.457168] EXT3-fs error (device sdc5): ext3_find_entry: reading directory 
#7949840 offset 0
[  417.458331] EXT3-fs error (device sdc5): ext3_find_entry: reading directory 
#1671663 offset 0
[  417.458369] EXT3-fs error (device sdc5): ext3_find_entry: reading directory 
#7949840 offset 0
[  417.459514] EXT3-fs error (device sdc5): ext3_find_entry: reading directory 
#1671663 offset 0
[  417.459552] EXT3-fs error (device sdc5): ext3_find_entry: reading directory 
#7949840 offset 0
[  417.460717] EXT3-fs error (device sdc5): ext3_find_entry: reading directory 
#1671663 offset 0
[  417.460755] EXT3-fs error (device sdc5): ext3_find_entry: reading directory 
#7949840 offset 0
[  417.462003] EXT3-fs error (device sdc5): ext3_find_entry: reading directory 
#1671663 offset 0
[  417.462042] EXT3-fs error (device sdc5): ext3_find_entry: reading directory 
#7949840 offset 0
[  417.463215] EXT3-fs error (device sdc5): ext3_find_entry: reading directory 
#1671663 offset 0
[  417.463253] EXT3-fs error (device sdc5): ext3_find_entry: reading directory 
#7949840 offset 0
[  417.464389] EXT3-fs error (device sdc5): ext3_find_entry: reading directory 
#1671663 offset 0
[  417.464427] EXT3-fs error (device sdc5): ext3_find_entry: reading directory 
#7949840 offset 0
[  417.465591] EXT3-fs error (device sdc5): ext3_find_entry: reading directory 
#1671663 offset 0
[  417.465635] EXT3-fs error (device sdc5): ext3_find_entry: reading directory 
#7949840 offset 0
[  417.466786] EXT3-fs error (device sdc5): ext3_find_entry: reading directory 
#1671663 offset 0
[  417.466825] EXT3-fs error (device sdc5): ext3_find_entry: reading directory 
#7949840 offset 0
[  417.468004] EXT3-fs error (device sdc5): ext3_find_entry: reading directory 
#1671663 offset 0
[  417.468040] EXT3-fs error (device sdc5): ext3_find_entry: reading directory 
#7949840 offset 0
[  417.469181] EXT3-fs error (device sdc5): ext3_find_entry: reading directory 
#1671663 offset 0
[  417.469219] EXT3-fs error (device sdc5): ext3_find_entry: reading directory 
#7949840 offset 0
[  417.470395] EXT3-fs error (device sdc5): ext3_find_entry: reading directory 
#1671663 offset 0
[  417.470440] EXT3-fs error (device sdc5): ext3_find_entry: reading directory 
#7949840 offset 0
[  417.471850] EXT3-fs error (device sdc5): ext3_find_entry: reading directory 
#1671411 offset 0


-----------------------------------------------------------------------------

This was before I began a disk-io-intenstive task (on / as /home was read-
only) which then froze the machine instantly.


Volker


-- 
Volker Lanz
http://www.volker-lanz.de

^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2010-01-14 13:06 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-12-07 17:56 [BISECTED, REGRESSION] Successful resume from suspend but freezes after I/O Volker Lanz
2009-12-07 18:24 ` Yinghai Lu
2009-12-07 19:13   ` Volker Lanz
2009-12-07 19:23     ` Yinghai Lu
2009-12-07 20:36       ` Volker Lanz
2009-12-07 22:01         ` Yinghai Lu
2009-12-08  0:07           ` Volker Lanz
2009-12-07 23:05         ` Yinghai Lu
2009-12-08  1:13           ` Volker Lanz
2009-12-21  8:54             ` Volker Lanz
2009-12-28 23:40               ` Rafael J. Wysocki
2010-01-13  7:35               ` Yinghai Lu
2010-01-13 18:04                 ` Volker Lanz
2010-01-13 19:57                   ` Yinghai Lu
2010-01-14 13:05                     ` Volker Lanz

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).