2009-01-08 19:16:18

by Alexey Dobriyan

[permalink] [raw]
Subject: Too async libata breakage

commit f29d3b23238e1955a8094e038c72546e99308e61 aka
"fastboot: Make libata initialization even more async"
results in no findable /dev/sda2 to mount / here.

Kernel correctly sees sda as 750GB drive and the rest too.

CONFIG_ATA_PIIX is in use, everything built-in, plain partitions,
no initrd, DM, MD etc.


2009-01-08 19:26:54

by Arjan van de Ven

[permalink] [raw]
Subject: Re: Too async libata breakage

On Thu, 8 Jan 2009 22:15:56 +0300
"Alexey Dobriyan" <[email protected]> wrote:

> commit f29d3b23238e1955a8094e038c72546e99308e61 aka
> "fastboot: Make libata initialization even more async"
> results in no findable /dev/sda2 to mount / here.
>
> Kernel correctly sees sda as 750GB drive and the rest too.
>
> CONFIG_ATA_PIIX is in use, everything built-in, plain partitions,
> no initrd, DM, MD etc.

hmm.
no initrd;

can you try an experiment?
if you edit init/do_mounts.c and find the "async_synchronize_full" call.
that is just after a while() loop.
Can you put another call to synchronize_full to also just before that
while loop and see if that fixes it ?

--
Arjan van de Ven Intel Open Source Technology Centre
For development, discussion and tips for power savings,
visit http://www.lesswatts.org

2009-01-08 20:02:44

by Alexey Dobriyan

[permalink] [raw]
Subject: Re: Too async libata breakage

> On Thu, 8 Jan 2009 22:15:56 +0300
> "Alexey Dobriyan" <[email protected]> wrote:
>
> > commit f29d3b23238e1955a8094e038c72546e99308e61 aka
> > "fastboot: Make libata initialization even more async"
> > results in no findable /dev/sda2 to mount / here.
> >
> > Kernel correctly sees sda as 750GB drive and the rest too.
> >
> > CONFIG_ATA_PIIX is in use, everything built-in, plain partitions,
> > no initrd, DM, MD etc.
>
> hmm.
> no initrd;
>
> can you try an experiment?
> if you edit init/do_mounts.c and find the "async_synchronize_full" call.
> that is just after a while() loop.
> Can you put another call to synchronize_full to also just before that
> while loop and see if that fixes it ?

Additional async_synchronize_full() helps and box boot to the end.

Hopefully noone depends on /proc/partitions being in alphabetical order. :-)

2009-01-08 20:18:17

by Pekka Paalanen

[permalink] [raw]
Subject: Re: Too async libata breakage

On Thu, 8 Jan 2009 23:02:33 +0300
"Alexey Dobriyan" <[email protected]> wrote:

> > On Thu, 8 Jan 2009 22:15:56 +0300
> > "Alexey Dobriyan" <[email protected]> wrote:
> >
> > > commit f29d3b23238e1955a8094e038c72546e99308e61 aka
> > > "fastboot: Make libata initialization even more async"
> > > results in no findable /dev/sda2 to mount / here.
> > >
> > > Kernel correctly sees sda as 750GB drive and the rest too.
> > >
> > > CONFIG_ATA_PIIX is in use, everything built-in, plain partitions,
> > > no initrd, DM, MD etc.
> >
> > hmm.
> > no initrd;
> >
> > can you try an experiment?
> > if you edit init/do_mounts.c and find the "async_synchronize_full" call.
> > that is just after a while() loop.
> > Can you put another call to synchronize_full to also just before that
> > while loop and see if that fixes it ?
>
> Additional async_synchronize_full() helps and box boot to the end.

I just hit this bug, too. I don't have the kernel logs to attach here,
but it looks like sd has just found sda, when mounting root fs is
attempted, and sda partitions have not been read yet. This leads to
panic as root cannot be mounted. I have only tried
linus/master and Ingo's tip/master today, no bisecting.

My setup is Thinkpad T61, Core 2 Duo, a SATA disk, no initrd.

Adding rootdelay=5 allows me to boot properly, and so does the
experiment suggested above.

I'm not subscribed, so please cc me. Thanks.

--
Pekka Paalanen
http://www.iki.fi/pq/

2009-01-08 20:51:32

by Arjan van de Ven

[permalink] [raw]
Subject: [fix] Too async libata breakage


> > Additional async_synchronize_full() helps and box boot to the end.

Hi Linus,

can you add the patch below to your tree? This makes the
async_synchronize_full() a real absolute async barrier, rather than
just synchronizing the work scheduled upto the starting point.
It's a bit too much for some cases (so later on I might introduce the
softer synchronization again) but it solves some real problems
for people so this should go into -rc1 please...

>From ca1827b142e41b54c612026b3c0b5d239f21a715 Mon Sep 17 00:00:00 2001
From: Arjan van de Ven <[email protected]>
Date: Thu, 8 Jan 2009 12:35:11 -0800
Subject: [PATCH] async: make async_synchronize_full() more serializing

turns out that there are real problems with allowing async
tasks that are scheduled from async tasks to run after
the async_synchronize_full() returns.

This patch makes the _full more strict and a complete
synchronization. Later I might need to add back a lighter
form of synchronization for other uses.. but not right now.

Signed-off-by: Arjan van de Ven <[email protected]>
---
kernel/async.c | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/kernel/async.c b/kernel/async.c
index 9737338..64cc916 100644
--- a/kernel/async.c
+++ b/kernel/async.c
@@ -206,7 +206,9 @@ EXPORT_SYMBOL_GPL(async_schedule_special);

void async_synchronize_full(void)
{
- async_synchronize_cookie(next_cookie);
+ do {
+ async_synchronize_cookie(next_cookie);
+ } while (!list_empty(&async_running) || !list_empty(&async_pending));
}
EXPORT_SYMBOL_GPL(async_synchronize_full);

--
1.5.5.1



--
Arjan van de Ven Intel Open Source Technology Centre
For development, discussion and tips for power savings,
visit http://www.lesswatts.org

2009-01-08 21:23:32

by Justin P. Mattock

[permalink] [raw]
Subject: Re: [fix] Too async libata breakage

Arjan van de Ven wrote:
>>> Additional async_synchronize_full() helps and box boot to the end.
>>>
>
> Hi Linus,
>
> can you add the patch below to your tree? This makes the
> async_synchronize_full() a real absolute async barrier, rather than
> just synchronizing the work scheduled upto the starting point.
> It's a bit too much for some cases (so later on I might introduce the
> softer synchronization again) but it solves some real problems
> for people so this should go into -rc1 please...
>
> >From ca1827b142e41b54c612026b3c0b5d239f21a715 Mon Sep 17 00:00:00 2001
> From: Arjan van de Ven <[email protected]>
> Date: Thu, 8 Jan 2009 12:35:11 -0800
> Subject: [PATCH] async: make async_synchronize_full() more serializing
>
> turns out that there are real problems with allowing async
> tasks that are scheduled from async tasks to run after
> the async_synchronize_full() returns.
>
> This patch makes the _full more strict and a complete
> synchronization. Later I might need to add back a lighter
> form of synchronization for other uses.. but not right now.
>
> Signed-off-by: Arjan van de Ven <[email protected]>
> ---
> kernel/async.c | 4 +++-
> 1 files changed, 3 insertions(+), 1 deletions(-)
>
> diff --git a/kernel/async.c b/kernel/async.c
> index 9737338..64cc916 100644
> --- a/kernel/async.c
> +++ b/kernel/async.c
> @@ -206,7 +206,9 @@ EXPORT_SYMBOL_GPL(async_schedule_special);
>
> void async_synchronize_full(void)
> {
> - async_synchronize_cookie(next_cookie);
> + do {
> + async_synchronize_cookie(next_cookie);
> + } while (!list_empty(&async_running) || !list_empty(&async_pending));
> }
> EXPORT_SYMBOL_GPL(async_synchronize_full);
>
>
I'm getting this as well,
happens three to two times in a row,
then I'll get a good bootup.
going to try and see if I can grab a log
with ohci1394

regards;

Justin P. Mattock

2009-01-08 22:20:58

by Justin P. Mattock

[permalink] [raw]
Subject: Re: [fix] Too async libata breakage

Port 0 (ohci1394) opened, 2 nodes detected
Loaded system.map </home/amy/Desktop/System.map> <1116316> bytes
2 nodes available, local node is: 1
0: ffc0, uuid: ffe31900 7ed82afe
1: ffc1, uuid: 805b0600 55720f01 [LOCAL]
kernel buffer at phys 5d3090 len 262144
<5>[ 0.000000] Linux version 2.6.28-07485-g9e42d0c (root@unix) (gcc version 4.3.3 20081217 (prerelease) (Ubuntu 4.3.2-2ubuntu9) ) #8 SMP Thu Jan 8 12:39:28 P ST 2009
<4>[ 0.000000] KERNEL supported cpus:
<4>[ 0.000000] Intel GenuineIntel
<4>[ 0.000000] AMD AuthenticAMD
<4>[ 0.000000] NSC Geode by NSC
<4>[ 0.000000] Cyrix CyrixInstead
<4>[ 0.000000] Centaur CentaurHauls
<4>[ 0.000000] Transmeta GenuineTMx86
<4>[ 0.000000] Transmeta TransmetaCPU
<4>[ 0.000000] UMC UMC UMC UMC
<6>[ 0.000000] BIOS-provided physical RAM map:
<6>[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
<6>[ 0.000000] BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
<6>[ 0.000000] BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
<6>[ 0.000000] BIOS-e820: 0000000000100000 - 000000003f0ea000 (usable)
<6>[ 0.000000] BIOS-e820: 000000003f0ea000 - 000000003f2eb000 (ACPI NVS)
<6>[ 0.000000] BIOS-e820: 000000003f2eb000 - 000000003febe000 (ACPI data)
<6>[ 0.000000] BIOS-e820: 000000003febe000 - 000000003feef000 (ACPI NVS)
<6>[ 0.000000] BIOS-e820: 000000003feef000 - 000000003ff00000 (ACPI data)
<6>[ 0.000000] BIOS-e820: 000000003ff00000 - 0000000040000000 (reserved)
<6>[ 0.000000] BIOS-e820: 00000000f0000000 - 00000000f4000000 (reserved)
<6>[ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
<6>[ 0.000000] BIOS-e820: 00000000fed14000 - 00000000fed1a000 (reserved)
<6>[ 0.000000] BIOS-e820: 00000000fed1c000 - 00000000fed20000 (reserved)
<6>[ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
<6>[ 0.000000] BIOS-e820: 00000000ffe00000 - 0000000100000000 (reserved)
<6>[ 0.000000] DMI 2.4 present.
<6>[ 0.000000] last_pfn = 0x3f0ea max_arch_pfn = 0x100000
<6>[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
<7>[ 0.000000] kernel direct mapping tables up to 377fe000 @ 7000-d000
<6>[ 0.000000] init_ohci1394_dma: initializing OHCI-1394 at 0c:03.0
<6>[ 0.000000] init_ohci1394_dma: finished initializing OHCI DMA
<4>[ 0.000000] ACPI: RSDP 000FE020, 0024 (r2 APPLE )
<4>[ 0.000000] ACPI: XSDT 3FEFD1C0, 0074 (r1 APPLE Apple00 A5 1000013)
<4>[ 0.000000] ACPI: FACP 3FEFB000, 00F4 (r3 APPLE Apple00 A5 Loki 5F)
<4>[ 0.000000] ACPI: DSDT 3FEF0000, 48D1 (r1 APPLE MacBookP 20002 INTL 20050309)
<4>[ 0.000000] ACPI: FACS 3FEC0000, 0040
<4>[ 0.000000] ACPI: HPET 3FEFA000, 0038 (r1 APPLE Apple00 1 Loki 5F)
<4>[ 0.000000] ACPI: APIC 3FEF9000, 0068 (r1 APPLE Apple00 1 Loki 5F)
<4>[ 0.000000] ACPI: MCFG 3FEF8000, 003C (r1 APPLE Apple00 1 Loki 5F)
<4>[ 0.000000] ACPI: ASF! 3FEF7000, 00A0 (r32 APPLE Apple00 1 Loki 5F)
<4>[ 0.000000] ACPI: SBST 3FEF6000, 0030 (r1 APPLE Apple00 1 Loki 5F)
<4>[ 0.000000] ACPI: ECDT 3FEF5000, 0053 (r1 APPLE Apple00 1 Loki 5F)
<4>[ 0.000000] ACPI: SSDT 3FEEF000, 04DC (r1 APPLE CpuPm 3000 INTL 20050309)
<4>[ 0.000000] ACPI: SSDT 3FEBD000, 064F (r1 SataRe SataPri 1000 INTL 20050309)
<4>[ 0.000000] ACPI: SSDT 3FEBC000, 069C (r1 SataRe SataSec 1000 INTL 20050309)
<7>[ 0.000000] ACPI: Local APIC address 0xfee00000
<5>[ 0.000000] 120MB HIGHMEM available.
<5>[ 0.000000] 887MB LOWMEM available.
<6>[ 0.000000] mapped low ram: 0 - 377fe000
<6>[ 0.000000] low ram: 00000000 - 377fe000
<6>[ 0.000000] bootmap 00009000 - 0000ff00
<6>[ 0.000000] (8 early reservations) ==> bootmem [0000000000 - 00377fe000]
<6>[ 0.000000] #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000]
<6>[ 0.000000] #1 [0000001000 - 0000002000] EX TRAMPOLINE ==> [0000001000 - 0000002000]
<6>[ 0.000000] #2 [0000006000 - 0000007000] TRAMPOLINE ==> [0000006000 - 0000007000]
<6>[ 0.000000] #3 [0000100000 - 0000669210] TEXT DATA BSS ==> [0000100000 - 0000669210]
<6>[ 0.000000] #4 [000066a000 - 000066d000] INIT_PG_TABLE ==> [000066a000 - 000066d000]
<6>[ 0.000000] #5 [000009fc00 - 0000100000] BIOS reserved ==> [000009fc00 - 0000100000]
<6>[ 0.000000] #6 [0000007000 - 0000009000] PGTABLE ==> [0000007000 - 0000009000]
<6>[ 0.000000] #7 [0000009000 - 0000010000] BOOTMAP ==> [0000009000 - 0000010000]
<4>[ 0.000000] Zone PFN ranges:
<4>[ 0.000000] DMA 0x00000000 -> 0x00001000
<4>[ 0.000000] Normal 0x00001000 -> 0x000377fe
<4>[ 0.000000] HighMem 0x000377fe -> 0x0003f0ea
<4>[ 0.000000] Movable zone start PFN for each node
<4>[ 0.000000] early_node_map[2] active PFN ranges
<4>[ 0.000000] 0: 0x00000000 -> 0x0000009f
<4>[ 0.000000] 0: 0x00000100 -> 0x0003f0ea
<7>[ 0.000000] On node 0 totalpages: 258185
<7>[ 0.000000] free_area_init_node: node 0, pgdat c053bb40, node_mem_map c1000000
<7>[ 0.000000] DMA zone: 32 pages used for memmap
<7>[ 0.000000] DMA zone: 0 pages reserved
<7>[ 0.000000] DMA zone: 3967 pages, LIFO batch:0
<7>[ 0.000000] Normal zone: 1744 pages used for memmap
<7>[ 0.000000] Normal zone: 221486 pages, LIFO batch:31
<7>[ 0.000000] HighMem zone: 242 pages used for memmap
<7>[ 0.000000] HighMem zone: 30714 pages, LIFO batch:7
<6>[ 0.000000] Using APIC driver default
<6>[ 0.000000] ACPI: PM-Timer IO Port: 0x408
<7>[ 0.000000] ACPI: Local APIC address 0xfee00000
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
<6>[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
<6>[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
<6>[ 0.000000] ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
<6>[ 0.000000] IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-23
<6>[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
<6>[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
<7>[ 0.000000] ACPI: IRQ0 used by override.
<7>[ 0.000000] ACPI: IRQ2 used by override.
<7>[ 0.000000] ACPI: IRQ9 used by override.
<4>[ 0.000000] Enabling APIC mode: Flat. Using 1 I/O APICs
<6>[ 0.000000] Using ACPI (MADT) for SMP configuration information
<6>[ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
<6>[ 0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs
<6>[ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
<6>[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
<6>[ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
<6>[ 0.000000] Allocating PCI resources starting at 50000000 (gap: 40000000:b0000000)
<6>[ 0.000000] NR_CPUS:2 nr_cpumask_bits:2 nr_cpu_ids:2 nr_node_ids:1
<6>[ 0.000000] PERCPU: Allocating 40960 bytes of per cpu data
<4>[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 256167
<5>[ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.28-07485-g9e42d0c root=/dev/sda1 vga=790 debug pnpacpi=off pci=routeirq acpi_osi=Darwin audi t=1 selinux=1 ohci1394_dma=early enforcing=0
<6>[ 0.000000] ACPI: Added _OSI(Darwin)
<6>[ 0.000000] audit: enabled (after initialization)
<6>[ 0.000000] Enabling fast FPU save and restore... done.
<6>[ 0.000000] Enabling unmasked SIMD FPU exception support... done.
<6>[ 0.000000] Initializing CPU#0
<4>[ 0.000000] PID hash table entries: 4096 (order: 12, 16384 bytes)
<6>[ 0.000000] Extended CMOS year: 2000
<4>[ 0.000000] TSC: Unable to calibrate against PIT
<6>[ 0.000000] TSC: using PMTIMER reference calibration
<4>[ 0.000000] Detected 2161.192 MHz processor.
<4>[ 0.010000] Console: colour dummy device 80x25
<6>[ 0.010000] console [tty0] enabled
<6>[ 0.010000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
<6>[ 0.010000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
<6>[ 0.010000] Memory: 1017788k/1033128k available (2967k kernel code, 14592k reserved, 1458k data, 404k init, 123824k highmem)
<6>[ 0.010000] virtual kernel memory layout:
<6>[ 0.010000] fixmap : 0xfff9e000 - 0xfffff000 ( 388 kB)
<6>[ 0.010000] pkmap : 0xff800000 - 0xffc00000 (4096 kB)
<6>[ 0.010000] vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB)
<6>[ 0.010000] lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB)
<6>[ 0.010000] .init : 0xc055a000 - 0xc05bf000 ( 404 kB)
<6>[ 0.010000] .data : 0xc03e5e9e - 0xc05529c4 (1458 kB)
<6>[ 0.010000] .text : 0xc0100000 - 0xc03e5e9e (2967 kB)
<6>[ 0.010000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
<6>[ 0.010000] SLUB: Genslabs=12, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
<7>[ 0.010000] hpet clockevent registered
<6>[ 0.010000] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
<6>[ 0.010000] Calibrating delay loop (skipped), value calculated using timer frequency.. 4322.38 BogoMIPS (lpj=21611920)
<6>[ 0.010000] Security Framework initialized
<6>[ 0.010000] SELinux: Initializing.
<7>[ 0.010000] SELinux: Starting in permissive mode
<6>[ 0.010000] Failure registering Root Plug module with the kernel
<4>[ 0.010000] Mount-cache hash table entries: 512
<6>[ 0.010000] CPU: L1 I cache: 32K, L1 D cache: 32K
<6>[ 0.010000] CPU: L2 cache: 4096K
<6>[ 0.010000] [ds] using core 2 configuration
<6>[ 0.010000] CPU: Physical Processor ID: 0
<6>[ 0.010000] CPU: Processor Core ID: 0
<6>[ 0.010000] Intel machine check architecture supported.
<6>[ 0.010000] Intel machine check reporting enabled on CPU#0.
<6>[ 0.010000] using mwait in idle threads.
<6>[ 0.010000] Checking 'hlt' instruction... OK.
<6>[ 0.041108] ACPI: Core revision 20080926
<6>[ 0.061495] ftrace: converting mcount calls to 0f 1f 44 00 00
<6>[ 0.061503] ftrace: allocating 15022 entries in 59 pages
<7>[ 0.067559] alloc irq_2_pin on cpu 0 node 0
<7>[ 0.067569] alloc irq_2_pin on cpu 0 node 0
<7>[ 0.067575] alloc irq_2_pin on cpu 0 node 0
<7>[ 0.067581] alloc irq_2_pin on cpu 0 node 0
<7>[ 0.067587] alloc irq_2_pin on cpu 0 node 0
<7>[ 0.067593] alloc irq_2_pin on cpu 0 node 0
<7>[ 0.067599] alloc irq_2_pin on cpu 0 node 0
<7>[ 0.067604] alloc irq_2_pin on cpu 0 node 0
<7>[ 0.067610] alloc irq_2_pin on cpu 0 node 0
<7>[ 0.067616] alloc irq_2_pin on cpu 0 node 0
<7>[ 0.067622] alloc irq_2_pin on cpu 0 node 0
<7>[ 0.067628] alloc irq_2_pin on cpu 0 node 0
<7>[ 0.067634] alloc irq_2_pin on cpu 0 node 0
<7>[ 0.067640] alloc irq_2_pin on cpu 0 node 0
<7>[ 0.067646] alloc irq_2_pin on cpu 0 node 0
<6>[ 0.067803] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
<6>[ 0.167822] CPU0: Intel(R) Core(TM)2 CPU T7400 @ 2.16GHz stepping 06
<6>[ 0.170000] Testing tracer nop: PASSED
<6>[ 0.170000] Booting processor 1 APIC 0x1 ip 0x6000

<6>[ 0.010000] Initializing CPU#1
<6>[ 0.010000] Calibrating delay using timer specific routine.. 4322.51 BogoMIPS (lpj=21612591)
<6>[ 0.010000] CPU: L1 I cache: 32K, L1 D cache: 32K
<6>[ 0.010000] CPU: L2 cache: 4096K
<6>[ 0.010000] [ds] using core 2 configuration
<6>[ 0.010000] CPU: Physical Processor ID: 0
<6>[ 0.010000] CPU: Processor Core ID: 1
<6>[ 0.010000] Intel machine check architecture supported.
<6>[ 0.010000] Intel machine check reporting enabled on CPU#1.
<6>[ 0.010000] x86 PAT enabled: cpu 1, old 0x7040600070406, new 0x7010600070106
<6>[ 0.321762] CPU1: Intel(R) Core(TM)2 CPU T7400 @ 2.16GHz stepping 06
<6>[ 0.321798] checking TSC synchronization [CPU#0 -> CPU#1]: passed.
<6>[ 0.330032] Brought up 2 CPUs
<6>[ 0.330037] Total of 2 processors activated (8644.90 BogoMIPS).
<7>[ 0.330105] CPU0 attaching sched-domain:
<7>[ 0.330109] domain 0: span 0-1 level MC
<7>[ 0.330113] groups: 0 1
<7>[ 0.330120] CPU1 attaching sched-domain:
<7>[ 0.330124] domain 0: span 0-1 level MC
<7>[ 0.330127] groups: 1 0
<6>[ 0.330215] net_namespace: 800 bytes
<6>[ 0.330215] Booting paravirtualized kernel on bare hardware
<6>[ 0.330328] NET: Registered protocol family 16
<6>[ 0.330328] EISA bus registered
<6>[ 0.330328] ACPI: bus type pci registered
<6>[ 0.330328] PCI: Using configuration type 1 for base access
<4>[ 0.340108] bio: create slab <bio-0> at 0
<6>[ 0.341226] ACPI: EC: EC description table is found, configuring boot EC
<6>[ 0.341477] ACPI: EC: non-query interrupt received, switching to interrupt mode
<6>[ 0.355446] ACPI: Interpreter enabled
<6>[ 0.355453] ACPI: (supports S0 S3 S4 S5)
<6>[ 0.355528] ACPI: Using IOAPIC for interrupt routing
<6>[ 0.371513] ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
<6>[ 0.371513] ACPI: EC: driver started in interrupt mode
<6>[ 0.371513] ACPI: No dock devices found.
<6>[ 0.371513] ACPI: PCI Root Bridge [PCI0] (0000:00)
<6>[ 0.371513] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
<6>[ 0.371513] pci 0000:00:01.0: PME# disabled
<7>[ 0.371513] pci 0000:00:07.0: reg 10 32bit mmio: [0x50404000-0x50404fff]
<7>[ 0.371513] pci 0000:00:1b.0: reg 10 64bit mmio: [0x50400000-0x50403fff]
<6>[ 0.371513] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
<6>[ 0.371513] pci 0000:00:1b.0: PME# disabled
<6>[ 0.371513] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
<6>[ 0.371513] pci 0000:00:1c.0: PME# disabled
<6>[ 0.371513] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
<6>[ 0.371513] pci 0000:00:1c.1: PME# disabled
<6>[ 0.371513] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
<6>[ 0.371513] pci 0000:00:1c.2: PME# disabled
<7>[ 0.371513] pci 0000:00:1d.0: reg 20 io port: [0x4080-0x409f]
<7>[ 0.371513] pci 0000:00:1d.1: reg 20 io port: [0x4060-0x407f]
<7>[ 0.371513] pci 0000:00:1d.2: reg 20 io port: [0x4040-0x405f]
<7>[ 0.371513] pci 0000:00:1d.3: reg 20 io port: [0x4020-0x403f]
<7>[ 0.371513] pci 0000:00:1d.7: reg 10 32bit mmio: [0x50405400-0x504057ff]
<6>[ 0.371513] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
<6>[ 0.371513] pci 0000:00:1d.7: PME# disabled
<6>[ 0.371513] pci 0000:00:1f.0: quirk: region 0400-047f claimed by ICH6 ACPI/GPIO/TCO
<6>[ 0.371513] pci 0000:00:1f.0: quirk: region 0500-053f claimed by ICH6 GPIO
<6>[ 0.371513] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0680 (mask 000f)
<6>[ 0.371513] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 2 PIO at 1640 (mask 000f)
<6>[ 0.371513] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 4 PIO at 0300 (mask 001f)
<7>[ 0.371513] pci 0000:00:1f.1: reg 10 io port: [0x40d8-0x40df]
<7>[ 0.371513] pci 0000:00:1f.1: reg 14 io port: [0x40ec-0x40ef]
<7>[ 0.371513] pci 0000:00:1f.1: reg 18 io port: [0x40d0-0x40d7]
<7>[ 0.371513] pci 0000:00:1f.1: reg 1c io port: [0x40e8-0x40eb]
<7>[ 0.371513] pci 0000:00:1f.1: reg 20 io port: [0x40b0-0x40bf]
<7>[ 0.371513] pci 0000:00:1f.2: reg 10 io port: [0x40c8-0x40cf]
<7>[ 0.371513] pci 0000:00:1f.2: reg 14 io port: [0x40e4-0x40e7]
<7>[ 0.371513] pci 0000:00:1f.2: reg 18 io port: [0x40c0-0x40c7]
<7>[ 0.371513] pci 0000:00:1f.2: reg 1c io port: [0x40e0-0x40e3]
<7>[ 0.371513] pci 0000:00:1f.2: reg 20 io port: [0x40a0-0x40af]
<7>[ 0.371513] pci 0000:00:1f.2: reg 24 32bit mmio: [0x50405000-0x504053ff]
<6>[ 0.371513] pci 0000:00:1f.2: PME# supported from D3hot
<6>[ 0.371513] pci 0000:00:1f.2: PME# disabled
<7>[ 0.371578] pci 0000:00:1f.3: reg 20 io port: [0xefa0-0xefbf]
<7>[ 0.371656] pci 0000:01:00.0: reg 10 32bit mmio: [0x40000000-0x47ffffff]
<7>[ 0.371666] pci 0000:01:00.0: reg 14 io port: [0x3000-0x30ff]
<7>[ 0.371677] pci 0000:01:00.0: reg 18 32bit mmio: [0x50300000-0x5030ffff]
<7>[ 0.371699] pci 0000:01:00.0: reg 30 32bit mmio: [0xfffe0000-0xffffffff]
<7>[ 0.371731] pci 0000:01:00.0: supports D1 D2
<7>[ 0.371793] pci 0000:00:01.0: bridge io port: [0x3000-0x3fff]
<7>[ 0.371798] pci 0000:00:01.0: bridge 32bit mmio: [0x50300000-0x503fffff]
<7>[ 0.371806] pci 0000:00:01.0: bridge 64bit mmio pref: [0x40000000-0x47ffffff]
<7>[ 0.371888] pci 0000:02:00.0: reg 10 64bit mmio: [0x50200000-0x50203fff]
<7>[ 0.371901] pci 0000:02:00.0: reg 18 io port: [0x2000-0x20ff]
<7>[ 0.371939] pci 0000:02:00.0: reg 30 32bit mmio: [0xfffe0000-0xffffffff]
<7>[ 0.371998] pci 0000:02:00.0: supports D1 D2
<6>[ 0.372001] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
<6>[ 0.372010] pci 0000:02:00.0: PME# disabled
<7>[ 0.372077] pci 0000:00:1c.0: bridge io port: [0x2000-0x2fff]
<7>[ 0.372084] pci 0000:00:1c.0: bridge 32bit mmio: [0x50200000-0x502fffff]
<7>[ 0.372164] pci 0000:03:00.0: reg 10 64bit mmio: [0x50100000-0x5010ffff]
<7>[ 0.372261] pci 0000:03:00.0: supports D1
<6>[ 0.372264] pci 0000:03:00.0: PME# supported from D0 D1 D3hot
<6>[ 0.372272] pci 0000:03:00.0: PME# disabled
<7>[ 0.372352] pci 0000:00:1c.1: bridge 32bit mmio: [0x50100000-0x501fffff]
<7>[ 0.372422] pci 0000:00:1c.2: bridge io port: [0x1000-0x1fff]
<7>[ 0.372429] pci 0000:00:1c.2: bridge 32bit mmio: [0x4c100000-0x500fffff]
<7>[ 0.372439] pci 0000:00:1c.2: bridge 64bit mmio pref: [0x48000000-0x4bffffff]
<7>[ 0.372498] pci 0000:0c:03.0: reg 10 32bit mmio: [0x4c004000-0x4c0047ff]
<7>[ 0.372510] pci 0000:0c:03.0: reg 14 32bit mmio: [0x4c000000-0x4c003fff]
<7>[ 0.372578] pci 0000:0c:03.0: supports D1 D2
<6>[ 0.372582] pci 0000:0c:03.0: PME# supported from D0 D1 D2 D3hot
<6>[ 0.372589] pci 0000:0c:03.0: PME# disabled
<6>[ 0.372653] pci 0000:00:1e.0: transparent bridge
<7>[ 0.372663] pci 0000:00:1e.0: bridge 32bit mmio: [0x4c000000-0x4c0fffff]
<7>[ 0.372701] pci_bus 0000:00: on NUMA node 0
<7>[ 0.372715] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
<7>[ 0.381727] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEGP._PRT]
<7>[ 0.382333] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT]
<7>[ 0.382924] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT]
<7>[ 0.383509] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP03._PRT]
<7>[ 0.384122] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCIB._PRT]

<6>[ 0.401127] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
<6>[ 0.401127] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 *11 12 14 15)
<6>[ 0.401127] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
<6>[ 0.401127] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 *11 12 14 15)
<6>[ 0.401401] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
<6>[ 0.401691] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled.
<6>[ 0.410042] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 *10 12 14 15)
<6>[ 0.410328] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 *11 12 14 15)
<5>[ 0.410446] SCSI subsystem initialized
<7>[ 0.410446] libata version 3.00 loaded.
<6>[ 0.410446] usbcore: registered new interface driver usbfs
<6>[ 0.410446] usbcore: registered new interface driver hub
<6>[ 0.410446] usbcore: registered new device driver usb
<6>[ 0.410446] PCI: Using ACPI for IRQ routing
<6>[ 0.410446] PCI: Routing PCI interrupts for all devices because "pci=routeirq" specified
<7>[ 0.410446] alloc irq_2_pin on cpu 0 node 0
<6>[ 0.410446] pci 0000:00:01.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
<6>[ 0.410446] pci 0000:00:07.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
<7>[ 0.410446] alloc irq_2_pin on cpu 0 node 0
<6>[ 0.410446] pci 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
<7>[ 0.410446] alloc irq_2_pin on cpu 0 node 0
<6>[ 0.410446] pci 0000:00:1c.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
<6>[ 0.410446] pci 0000:00:1c.1: PCI INT B -> GSI 16 (level, low) -> IRQ 16
<7>[ 0.410446] alloc irq_2_pin on cpu 0 node 0
<6>[ 0.410446] pci 0000:00:1c.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
<7>[ 0.410446] alloc irq_2_pin on cpu 0 node 0
<6>[ 0.410446] pci 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
<7>[ 0.410446] alloc irq_2_pin on cpu 0 node 0
<6>[ 0.410446] pci 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
<6>[ 0.410446] pci 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
<6>[ 0.410446] pci 0000:00:1d.3: PCI INT D -> GSI 16 (level, low) -> IRQ 16
<6>[ 0.410446] pci 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
<6>[ 0.410446] pci 0000:00:1f.1: PCI INT A -> GSI 18 (level, low) -> IRQ 18
<6>[ 0.410446] pci 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
<6>[ 0.410446] pci 0000:00:1f.3: PCI INT B -> GSI 19 (level, low) -> IRQ 19
<6>[ 0.410446] vendor=8086 device=27a1
<6>[ 0.410446] pci 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
<6>[ 0.410446] vendor=8086 device=27d0
<6>[ 0.410446] pci 0000:02:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
<6>[ 0.410446] vendor=8086 device=27d2
<6>[ 0.410446] pci 0000:03:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
<6>[ 0.410446] vendor=8086 device=2448
<6>[ 0.410446] pci 0000:0c:03.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
<6>[ 0.440090] cfg80211: Using static regulatory domain info
<6>[ 0.440090] cfg80211: Regulatory domain: US
<6>[ 0.440090] (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
<6>[ 0.440090] (2402000 KHz - 2472000 KHz @ 40000 KHz), (600 mBi, 2700 mBm)
<6>[ 0.440090] (5170000 KHz - 5190000 KHz @ 40000 KHz), (600 mBi, 2300 mBm)
<6>[ 0.440090] (5190000 KHz - 5210000 KHz @ 40000 KHz), (600 mBi, 2300 mBm)
<6>[ 0.440090] (5210000 KHz - 5230000 KHz @ 40000 KHz), (600 mBi, 2300 mBm)
<6>[ 0.440090] (5230000 KHz - 5330000 KHz @ 40000 KHz), (600 mBi, 2300 mBm)
<6>[ 0.440090] (5735000 KHz - 5835000 KHz @ 40000 KHz), (600 mBi, 3000 mBm)
<6>[ 0.440093] cfg80211: Calling CRDA for country: US
<6>[ 0.440122] NetLabel: Initializing
<6>[ 0.440122] NetLabel: domain hash size = 128
<6>[ 0.440122] NetLabel: protocols = UNLABELED CIPSOv4
<6>[ 0.440141] NetLabel: unlabeled traffic allowed by default
<6>[ 0.440155] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
<6>[ 0.440162] hpet0: 3 comparators, 64-bit 14.318180 MHz counter
<6>[ 0.470029] pnp: PnP ACPI: disabled
<7>[ 0.501835] Switched to high resolution mode on CPU 1
<6>[ 0.505920] pci 0000:00:01.0: PCI bridge, secondary bus 0000:01
<6>[ 0.505927] pci 0000:00:01.0: IO window: 0x3000-0x3fff
<6>[ 0.505934] pci 0000:00:01.0: MEM window: 0x50300000-0x503fffff
<6>[ 0.505939] pci 0000:00:01.0: PREFETCH window: 0x00000040000000-0x00000047ffffff
<6>[ 0.505949] pci 0000:00:1c.0: PCI bridge, secondary bus 0000:02
<6>[ 0.505955] pci 0000:00:1c.0: IO window: 0x2000-0x2fff
<6>[ 0.505963] pci 0000:00:1c.0: MEM window: 0x50200000-0x502fffff
<6>[ 0.505970] pci 0000:00:1c.0: PREFETCH window: 0x00000050500000-0x000000505fffff
<6>[ 0.505981] pci 0000:00:1c.1: PCI bridge, secondary bus 0000:03
<6>[ 0.505985] pci 0000:00:1c.1: IO window: disabled
<6>[ 0.505993] pci 0000:00:1c.1: MEM window: 0x50100000-0x501fffff
<6>[ 0.506000] pci 0000:00:1c.1: PREFETCH window: disabled
<6>[ 0.506009] pci 0000:00:1c.2: PCI bridge, secondary bus 0000:04
<6>[ 0.506015] pci 0000:00:1c.2: IO window: 0x1000-0x1fff
<6>[ 0.506023] pci 0000:00:1c.2: MEM window: 0x4c100000-0x500fffff
<6>[ 0.506030] pci 0000:00:1c.2: PREFETCH window: 0x00000048000000-0x0000004bffffff
<6>[ 0.506041] pci 0000:00:1e.0: PCI bridge, secondary bus 0000:0c
<6>[ 0.506045] pci 0000:00:1e.0: IO window: disabled
<6>[ 0.506053] pci 0000:00:1e.0: MEM window: 0x4c000000-0x4c0fffff
<6>[ 0.506060] pci 0000:00:1e.0: PREFETCH window: disabled
<6>[ 0.506073] pci 0000:00:01.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
<7>[ 0.506080] pci 0000:00:01.0: setting latency timer to 64
<6>[ 0.506087] pci 0000:00:1c.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
<7>[ 0.506094] pci 0000:00:1c.0: setting latency timer to 64
<6>[ 0.506102] pci 0000:00:1c.1: PCI INT B -> GSI 16 (level, low) -> IRQ 16
<7>[ 0.506109] pci 0000:00:1c.1: setting latency timer to 64
<6>[ 0.506117] pci 0000:00:1c.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
<7>[ 0.506124] pci 0000:00:1c.2: setting latency timer to 64
<7>[ 0.510005] Switched to high resolution mode on CPU 0
<6>[ 0.510565] pci 0000:00:1e.0: power state changed by ACPI to D0
<7>[ 0.510575] pci 0000:00:1e.0: setting latency timer to 64
<7>[ 0.510581] pci_bus 0000:00: resource 0 io: [0x00-0xffff]
<7>[ 0.510585] pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffff]
<7>[ 0.510590] pci_bus 0000:01: resource 0 io: [0x3000-0x3fff]
<7>[ 0.510594] pci_bus 0000:01: resource 1 mem: [0x50300000-0x503fffff]
<7>[ 0.510598] pci_bus 0000:01: resource 2 mem: [0x40000000-0x47ffffff]
<7>[ 0.510602] pci_bus 0000:01: resource 3 mem: [0x0-0x0]
<7>[ 0.510606] pci_bus 0000:02: resource 0 io: [0x2000-0x2fff]
<7>[ 0.510610] pci_bus 0000:02: resource 1 mem: [0x50200000-0x502fffff]
<7>[ 0.510614] pci_bus 0000:02: resource 2 mem: [0x50500000-0x505fffff]
<7>[ 0.510618] pci_bus 0000:02: resource 3 mem: [0x0-0x0]
<7>[ 0.510622] pci_bus 0000:03: resource 0 mem: [0x0-0x0]
<7>[ 0.510625] pci_bus 0000:03: resource 1 mem: [0x50100000-0x501fffff]
<7>[ 0.510630] pci_bus 0000:03: resource 2 mem: [0x0-0x0]
<7>[ 0.510633] pci_bus 0000:03: resource 3 mem: [0x0-0x0]
<7>[ 0.510637] pci_bus 0000:04: resource 0 io: [0x1000-0x1fff]
<7>[ 0.510641] pci_bus 0000:04: resource 1 mem: [0x4c100000-0x500fffff]
<7>[ 0.510645] pci_bus 0000:04: resource 2 mem: [0x48000000-0x4bffffff]
<7>[ 0.510649] pci_bus 0000:04: resource 3 mem: [0x0-0x0]
<7>[ 0.510653] pci_bus 0000:0c: resource 0 mem: [0x0-0x0]
<7>[ 0.510657] pci_bus 0000:0c: resource 1 mem: [0x4c000000-0x4c0fffff]
<7>[ 0.510661] pci_bus 0000:0c: resource 2 mem: [0x0-0x0]
<7>[ 0.510665] pci_bus 0000:0c: resource 3 io: [0x00-0xffff]
<7>[ 0.510669] pci_bus 0000:0c: resource 4 mem: [0x000000-0xffffffff]
<6>[ 0.510703] NET: Registered protocol family 2
<6>[ 0.540086] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
<6>[ 0.540446] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
<6>[ 0.540892] TCP bind hash table entries: 65536 (order: 8, 1310720 bytes)
<6>[ 0.541444] TCP: Hash tables configured (established 131072 bind 65536)
<6>[ 0.541448] TCP reno registered
<6>[ 0.550162] NET: Registered protocol family 1
<6>[ 0.551235] platform rtc_cmos: registered platform RTC device (no PNP device found)
<6>[ 0.553515] Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
<4>[ 0.555130] Initializing RT-Tester: OK
<6>[ 0.555260] audit: initializing netlink socket (enabled)
<5>[ 0.555326] type=2000 audit(1231452424.550:1): initialized
<6>[ 0.558603] Testing tracer sched_switch: PASSED
<6>[ 0.660046] Testing tracer function: PASSED
<6>[ 0.790733] Testing dynamic ftrace: PASSED
<6>[ 1.030057] Testing tracer irqsoff: PASSED
<6>[ 1.040311] Testing tracer wakeup: PASSED
<4>[ 1.370271] highmem bounce pool size: 64 pages
<6>[ 1.370280] HugeTLB registered 4 MB page size, pre-allocated 0 pages

<6>[ 1.388770] fuse init (API version 7.11)
<6>[ 1.389459] msgmni has been set to 1746
<7>[ 1.389725] SELinux: Registering netfilter hooks
<6>[ 1.390618] alg: No test for stdrng (krng)
<6>[ 1.390637] io scheduler noop registered
<6>[ 1.391023] io scheduler cfq registered (default)
<7>[ 1.391175] pci 0000:01:00.0: Boot video device
<6>[ 1.391859] vesafb: framebuffer at 0x40000000, mapped to 0xf8100000, using 3072k, total 16384k
<6>[ 1.391866] vesafb: mode is 1024x768x16, linelength=2048, pages=9
<6>[ 1.391870] vesafb: protected mode interface info at c000:ad0c
<6>[ 1.391874] vesafb: pmi: set display start = c00cad94, set palette = c00cae50
<6>[ 1.391878] vesafb: scrolling: redraw
<6>[ 1.391882] vesafb: Truecolor: size=0:5:5:5, shift=0:10:5:0

<4>[ 1.416203] Console: switching to colour frame buffer device 128x48

<6>[ 1.438376] fb0: VESA VGA frame buffer device

<6>[ 1.454068] loop: module loaded
<6>[ 1.454220] Linux video capture interface: v2.00
<6>[ 1.454707] input: Macintosh mouse button emulation as /class/input/input0

<4>[ 1.455368] Driver 'sd' needs updating - please use bus_type methods
<4>[ 1.455772] Driver 'sr' needs updating - please use bus_type methods
<7>[ 1.456457] ata_piix 0000:00:1f.1: version 2.12
<6>[ 1.456763] ata_piix 0000:00:1f.1: power state changed by ACPI to D0
<6>[ 1.457061] ata_piix 0000:00:1f.1: PCI INT A -> GSI 18 (level, low) -> IRQ 18
<7>[ 1.457433] ata_piix 0000:00:1f.1: setting latency timer to 64
<6>[ 1.457800] scsi0 : ata_piix
<6>[ 1.458503] scsi1 : ata_piix
<6>[ 1.460671] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0x40b0 irq 14
<6>[ 1.460992] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x40b8 irq 15
<6>[ 1.461330] ata_piix 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
<6>[ 1.461735] ata_piix 0000:00:1f.2: MAP [ P0 P2 -- -- ]

<7>[ 1.620022] ata_piix 0000:00:1f.2: setting latency timer to 64

<6>[ 1.631577] scsi2 : ata_piix

<6>[ 1.639319] scsi3 : ata_piix
<6>[ 1.643111] ata1.00: ATAPI: MATSHITADVD-R UJ-857D, KCV9, max UDMA/66

<6>[ 1.658409] ata3: SATA max UDMA/133 cmd 0x40c8 ctl 0x40e4 bmdma 0x40a0 irq 19

<6>[ 1.666169] ata4: SATA max UDMA/133 cmd 0x40c0 ctl 0x40e0 bmdma 0x40a8 irq 19
<6>[ 1.674201] usbcore: registered new interface driver usblcd

<6>[ 1.682008] usbcore: registered new interface driver usbled
<6>[ 1.683043] ata1.00: configured for UDMA/66

<6>[ 1.698370] PNP: No PS/2 controller found. Probing ports directly.

<3>[ 1.707143] i8042.c: No controller found.

<5>[ 1.714972] scsi 0:0:0:0: CD-ROM MATSHITA DVD-R UJ-857D KCV9 PQ: 0 ANSI: 5
<6>[ 1.723852] mice: PS/2 mouse device common for all mice

<6>[ 1.733181] device-mapper: ioctl: 4.14.0-ioctl (2008-04-23) initialised: [email protected]

<6>[ 1.741522] EDAC MC: Ver: 2.1.0 Jan 8 2009
<6>[ 1.750382] cpuidle: using governor ladder

<6>[ 1.758683] cpuidle: using governor menu
<4>[ 1.758700] sr0: scsi3-mmc drive: 24x/24x writer cd/rw xa/form2 cdda tray
<6>[ 1.758704] Uniform CD-ROM driver Revision: 3.20

<7>[ 1.783949] sr 0:0:0:0: Attached scsi CD-ROM sr0
<6>[ 1.786169] usbcore: registered new interface driver hiddev
<6>[ 1.786289] usbcore: registered new interface driver usbhid
<6>[ 1.786293] usbhid: v2.6:USB HID core driver
<6>[ 1.786432] Advanced Linux Sound Architecture Driver Version 1.0.18a.
<6>[ 1.786565] ALSA device list:
<6>[ 1.786566] No soundcards found.
<6>[ 1.786784] oprofile: using NMI interrupt.
<6>[ 1.787063] IPVS: Registered protocols (TCP, AH, ESP)
<6>[ 1.787249] IPVS: Connection hash table configured (size=4096, memory=32Kbytes)
<6>[ 1.787274] IPVS: ipvs loaded.
<6>[ 1.787612] Initializing XFRM netlink socket
<6>[ 1.787639] NET: Registered protocol family 17
<6>[ 1.787646] NET: Registered protocol family 15
<6>[ 1.787681] Using IPI No-Shortcut mode

<5>[ 1.902173] sr 0:0:0:0: Attached scsi generic sg0 type 5

<6>[ 1.925157] ata3.01: ATA-8: FUJITSU MHW2120BH, 00810013, max UDMA/100

<6>[ 1.933027] ata3.01: 234441648 sectors, multi 16: LBA48 NCQ (depth 0/32)

<6>[ 1.970534] ata3.01: configured for UDMA/100

<5>[ 1.978581] scsi 2:0:1:0: Direct-Access ATA FUJITSU MHW2120B 0081 PQ: 0 ANSI: 5

<5>[ 1.987177] sd 2:0:1:0: [sda] 234441648 512-byte hardware sectors: (120 GB/111 GiB)
<5>[ 1.995576] sd 2:0:1:0: [sda] Write Protect is off

<7>[ 2.003768] sd 2:0:1:0: [sda] Mode Sense: 00 3a 00 00
<5>[ 2.012019] sd 2:0:1:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
<5>[ 2.012055] sd 2:0:1:0: Attached scsi generic sg1 type 0
<4>[ 2.012270] VFS: Cannot open root device "sda1" or unknown-block(0,0)
<4>[ 2.012271] Please append a correct "root=" boot option; here are the available partitions:
<4>[ 2.012276] 0b00 1048575 sr0 driver: sr
<0>[ 2.012279] Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(0,0)



Attachments:
unabletomount (32.11 kB)

2009-01-08 22:29:40

by Arjan van de Ven

[permalink] [raw]
Subject: Re: [fix] Too async libata breakage

On Thu, 08 Jan 2009 14:20:38 -0800
"Justin P. Mattock" <[email protected]> wrote:

> Arjan van de Ven wrote:
> >>> Additional async_synchronize_full() helps and box boot to the end.
> >>>
> >
> > Hi Linus,
> >
> > can you add the patch below to your tree? This makes the
> > async_synchronize_full() a real absolute async barrier, rather than
> > just synchronizing the work scheduled upto the starting point.
> > It's a bit too much for some cases (so later on I might introduce
> > the softer synchronization again) but it solves some real problems
> > for people so this should go into -rc1 please...
> >
> > >From ca1827b142e41b54c612026b3c0b5d239f21a715 Mon Sep 17 00:00:00
> > >2001
> > From: Arjan van de Ven <[email protected]>
> > Date: Thu, 8 Jan 2009 12:35:11 -0800
> > Subject: [PATCH] async: make async_synchronize_full() more
> > serializing
> >
> > turns out that there are real problems with allowing async
> > tasks that are scheduled from async tasks to run after
> > the async_synchronize_full() returns.
> >
> > This patch makes the _full more strict and a complete
> > synchronization. Later I might need to add back a lighter
> > form of synchronization for other uses.. but not right now.
> >
> > Signed-off-by: Arjan van de Ven <[email protected]>
> > ---
> > kernel/async.c | 4 +++-
> > 1 files changed, 3 insertions(+), 1 deletions(-)
> >
> > diff --git a/kernel/async.c b/kernel/async.c
> > index 9737338..64cc916 100644
> > --- a/kernel/async.c
> > +++ b/kernel/async.c
> > @@ -206,7 +206,9 @@ EXPORT_SYMBOL_GPL(async_schedule_special);
> >
> > void async_synchronize_full(void)
> > {
> > - async_synchronize_cookie(next_cookie);
> > + do {
> > + async_synchronize_cookie(next_cookie);
> > + } while (!list_empty(&async_running)
> > || !list_empty(&async_pending)); }
> > EXPORT_SYMBOL_GPL(async_synchronize_full);
> >
> >
> I have to say that ohci/firescope is nice
> poof right up: dmesg shows up:
> attach is the results.
> unfortunantly nothing different than
> what the boot screen shows.

just to make clear: this is with the patch right?
because if not... try that..

--
Arjan van de Ven Intel Open Source Technology Centre
For development, discussion and tips for power savings,
visit http://www.lesswatts.org

2009-01-08 23:27:03

by Justin P. Mattock

[permalink] [raw]
Subject: Re: [fix] Too async libata breakage

Arjan van de Ven wrote:
> On Thu, 08 Jan 2009 14:20:38 -0800
> "Justin P. Mattock" <[email protected]> wrote:
>
>
>> Arjan van de Ven wrote:
>>
>>>>> Additional async_synchronize_full() helps and box boot to the end.
>>>>>
>>>>>
>>> Hi Linus,
>>>
>>> can you add the patch below to your tree? This makes the
>>> async_synchronize_full() a real absolute async barrier, rather than
>>> just synchronizing the work scheduled upto the starting point.
>>> It's a bit too much for some cases (so later on I might introduce
>>> the softer synchronization again) but it solves some real problems
>>> for people so this should go into -rc1 please...
>>>
>>> >From ca1827b142e41b54c612026b3c0b5d239f21a715 Mon Sep 17 00:00:00
>>>
>>>> 2001
>>>>
>>> From: Arjan van de Ven <[email protected]>
>>> Date: Thu, 8 Jan 2009 12:35:11 -0800
>>> Subject: [PATCH] async: make async_synchronize_full() more
>>> serializing
>>>
>>> turns out that there are real problems with allowing async
>>> tasks that are scheduled from async tasks to run after
>>> the async_synchronize_full() returns.
>>>
>>> This patch makes the _full more strict and a complete
>>> synchronization. Later I might need to add back a lighter
>>> form of synchronization for other uses.. but not right now.
>>>
>>> Signed-off-by: Arjan van de Ven <[email protected]>
>>> ---
>>> kernel/async.c | 4 +++-
>>> 1 files changed, 3 insertions(+), 1 deletions(-)
>>>
>>> diff --git a/kernel/async.c b/kernel/async.c
>>> index 9737338..64cc916 100644
>>> --- a/kernel/async.c
>>> +++ b/kernel/async.c
>>> @@ -206,7 +206,9 @@ EXPORT_SYMBOL_GPL(async_schedule_special);
>>>
>>> void async_synchronize_full(void)
>>> {
>>> - async_synchronize_cookie(next_cookie);
>>> + do {
>>> + async_synchronize_cookie(next_cookie);
>>> + } while (!list_empty(&async_running)
>>> || !list_empty(&async_pending)); }
>>> EXPORT_SYMBOL_GPL(async_synchronize_full);
>>>
>>>
>>>
>> I have to say that ohci/firescope is nice
>> poof right up: dmesg shows up:
>> attach is the results.
>> unfortunantly nothing different than
>> what the boot screen shows.
>>
>
> just to make clear: this is with the patch right?
> because if not... try that..
>
>
this is without,
I'll have to give that patch a try.

regards;

Justin P. Mattock

2009-01-09 00:16:35

by Justin P. Mattock

[permalink] [raw]
Subject: Re: [fix] Too async libata breakage

[ 0.000000] Linux version 2.6.28-07812-g5fbbf5f (root@unix) (gcc version 4.3.3 20081217 (prerelease) (Ubuntu 4.3.2-2ubuntu9) ) #9 SMP Thu Jan 8 15:57:17 PST 2009
[ 0.000000] KERNEL supported cpus:
[ 0.000000] Intel GenuineIntel
[ 0.000000] AMD AuthenticAMD
[ 0.000000] NSC Geode by NSC
[ 0.000000] Cyrix CyrixInstead
[ 0.000000] Centaur CentaurHauls
[ 0.000000] Transmeta GenuineTMx86
[ 0.000000] Transmeta TransmetaCPU
[ 0.000000] UMC UMC UMC UMC
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
[ 0.000000] BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
[ 0.000000] BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
[ 0.000000] BIOS-e820: 0000000000100000 - 000000003f0ea000 (usable)
[ 0.000000] BIOS-e820: 000000003f0ea000 - 000000003f2eb000 (ACPI NVS)
[ 0.000000] BIOS-e820: 000000003f2eb000 - 000000003febe000 (ACPI data)
[ 0.000000] BIOS-e820: 000000003febe000 - 000000003feef000 (ACPI NVS)
[ 0.000000] BIOS-e820: 000000003feef000 - 000000003ff00000 (ACPI data)
[ 0.000000] BIOS-e820: 000000003ff00000 - 0000000040000000 (reserved)
[ 0.000000] BIOS-e820: 00000000f0000000 - 00000000f4000000 (reserved)
[ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
[ 0.000000] BIOS-e820: 00000000fed14000 - 00000000fed1a000 (reserved)
[ 0.000000] BIOS-e820: 00000000fed1c000 - 00000000fed20000 (reserved)
[ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
[ 0.000000] BIOS-e820: 00000000ffe00000 - 0000000100000000 (reserved)
[ 0.000000] DMI 2.4 present.
[ 0.000000] last_pfn = 0x3f0ea max_arch_pfn = 0x100000
[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[ 0.000000] kernel direct mapping tables up to 377fe000 @ 7000-d000
[ 0.000000] init_ohci1394_dma: initializing OHCI-1394 at 0c:03.0
[ 0.000000] init_ohci1394_dma: finished initializing OHCI DMA
[ 0.000000] ACPI: RSDP 000FE020, 0024 (r2 APPLE )
[ 0.000000] ACPI: XSDT 3FEFD1C0, 0074 (r1 APPLE Apple00 A5 1000013)
[ 0.000000] ACPI: FACP 3FEFB000, 00F4 (r3 APPLE Apple00 A5 Loki 5F)
[ 0.000000] ACPI: DSDT 3FEF0000, 48D1 (r1 APPLE MacBookP 20002 INTL 20050309)
[ 0.000000] ACPI: FACS 3FEC0000, 0040
[ 0.000000] ACPI: HPET 3FEFA000, 0038 (r1 APPLE Apple00 1 Loki 5F)
[ 0.000000] ACPI: APIC 3FEF9000, 0068 (r1 APPLE Apple00 1 Loki 5F)
[ 0.000000] ACPI: MCFG 3FEF8000, 003C (r1 APPLE Apple00 1 Loki 5F)
[ 0.000000] ACPI: ASF! 3FEF7000, 00A0 (r32 APPLE Apple00 1 Loki 5F)
[ 0.000000] ACPI: SBST 3FEF6000, 0030 (r1 APPLE Apple00 1 Loki 5F)
[ 0.000000] ACPI: ECDT 3FEF5000, 0053 (r1 APPLE Apple00 1 Loki 5F)
[ 0.000000] ACPI: SSDT 3FEEF000, 04DC (r1 APPLE CpuPm 3000 INTL 20050309)
[ 0.000000] ACPI: SSDT 3FEBD000, 064F (r1 SataRe SataPri 1000 INTL 20050309)
[ 0.000000] ACPI: SSDT 3FEBC000, 069C (r1 SataRe SataSec 1000 INTL 20050309)
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] 120MB HIGHMEM available.
[ 0.000000] 887MB LOWMEM available.
[ 0.000000] mapped low ram: 0 - 377fe000
[ 0.000000] low ram: 00000000 - 377fe000
[ 0.000000] bootmap 00009000 - 0000ff00
[ 0.000000] (8 early reservations) ==> bootmem [0000000000 - 00377fe000]
[ 0.000000] #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000]
[ 0.000000] #1 [0000001000 - 0000002000] EX TRAMPOLINE ==> [0000001000 - 0000002000]
[ 0.000000] #2 [0000006000 - 0000007000] TRAMPOLINE ==> [0000006000 - 0000007000]
[ 0.000000] #3 [0000100000 - 0000669210] TEXT DATA BSS ==> [0000100000 - 0000669210]
[ 0.000000] #4 [000066a000 - 000066d000] INIT_PG_TABLE ==> [000066a000 - 000066d000]
[ 0.000000] #5 [000009fc00 - 0000100000] BIOS reserved ==> [000009fc00 - 0000100000]
[ 0.000000] #6 [0000007000 - 0000009000] PGTABLE ==> [0000007000 - 0000009000]
[ 0.000000] #7 [0000009000 - 0000010000] BOOTMAP ==> [0000009000 - 0000010000]
[ 0.000000] Zone PFN ranges:
[ 0.000000] DMA 0x00000000 -> 0x00001000
[ 0.000000] Normal 0x00001000 -> 0x000377fe
[ 0.000000] HighMem 0x000377fe -> 0x0003f0ea
[ 0.000000] Movable zone start PFN for each node
[ 0.000000] early_node_map[2] active PFN ranges
[ 0.000000] 0: 0x00000000 -> 0x0000009f
[ 0.000000] 0: 0x00000100 -> 0x0003f0ea
[ 0.000000] On node 0 totalpages: 258185
[ 0.000000] free_area_init_node: node 0, pgdat c053bb40, node_mem_map c1000000
[ 0.000000] DMA zone: 32 pages used for memmap
[ 0.000000] DMA zone: 0 pages reserved
[ 0.000000] DMA zone: 3967 pages, LIFO batch:0
[ 0.000000] Normal zone: 1744 pages used for memmap
[ 0.000000] Normal zone: 221486 pages, LIFO batch:31
[ 0.000000] HighMem zone: 242 pages used for memmap
[ 0.000000] HighMem zone: 30714 pages, LIFO batch:7
[ 0.000000] Using APIC driver default
[ 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[0x01] enabled)
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.000000] ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
[ 0.000000] IOAPIC[0]: apic_id 1, 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] Enabling APIC mode: Flat. Using 1 I/O APICs
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[ 0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs
[ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
[ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
[ 0.000000] Allocating PCI resources starting at 50000000 (gap: 40000000:b0000000)
[ 0.000000] NR_CPUS:2 nr_cpumask_bits:2 nr_cpu_ids:2 nr_node_ids:1
[ 0.000000] PERCPU: Allocating 40960 bytes of per cpu data
[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 256167
[ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.28-07812-g5fbbf5f root=/dev/sda1 vga=790 debug pnpacpi=off pci=routeirq acpi_osi=Darwin audit=1 selinux=1 ohci1394_dma=early enforcing=0
[ 0.000000] ACPI: Added _OSI(Darwin)
[ 0.000000] audit: enabled (after initialization)
[ 0.000000] Enabling fast FPU save and restore... done.
[ 0.000000] Enabling unmasked SIMD FPU exception support... done.
[ 0.000000] Initializing CPU#0
[ 0.000000] PID hash table entries: 4096 (order: 12, 16384 bytes)
[ 0.000000] Extended CMOS year: 2000
[ 0.000000] TSC: Unable to calibrate against PIT
[ 0.000000] TSC: using PMTIMER reference calibration
[ 0.000000] Detected 2161.212 MHz processor.
[ 0.010000] Console: colour dummy device 80x25
[ 0.010000] console [tty0] enabled
[ 0.010000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[ 0.010000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[ 0.010000] Memory: 1017788k/1033128k available (2968k kernel code, 14592k reserved, 1457k data, 404k init, 123824k highmem)
[ 0.010000] virtual kernel memory layout:
[ 0.010000] fixmap : 0xfff9e000 - 0xfffff000 ( 388 kB)
[ 0.010000] pkmap : 0xff800000 - 0xffc00000 (4096 kB)
[ 0.010000] vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB)
[ 0.010000] lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB)
[ 0.010000] .init : 0xc055a000 - 0xc05bf000 ( 404 kB)
[ 0.010000] .data : 0xc03e635e - 0xc05529c4 (1457 kB)
[ 0.010000] .text : 0xc0100000 - 0xc03e635e (2968 kB)
[ 0.010000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[ 0.010000] SLUB: Genslabs=12, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[ 0.010000] hpet clockevent registered
[ 0.010000] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
[ 0.010000] Calibrating delay loop (skipped), value calculated using timer frequency.. 4322.42 BogoMIPS (lpj=21612120)
[ 0.010000] Security Framework initialized
[ 0.010000] SELinux: Initializing.
[ 0.010000] SELinux: Starting in permissive mode
[ 0.010000] Failure registering Root Plug module with the kernel
[ 0.010000] Mount-cache hash table entries: 512
[ 0.010000] CPU: L1 I cache: 32K, L1 D cache: 32K
[ 0.010000] CPU: L2 cache: 4096K
[ 0.010000] [ds] using core 2 configuration
[ 0.010000] CPU: Physical Processor ID: 0
[ 0.010000] CPU: Processor Core ID: 0
[ 0.010000] Intel machine check architecture supported.
[ 0.010000] Intel machine check reporting enabled on CPU#0.
[ 0.010000] using mwait in idle threads.
[ 0.010000] Checking 'hlt' instruction... OK.
[ 0.041107] ACPI: Core revision 20080926
[ 0.061151] ftrace: converting mcount calls to 0f 1f 44 00 00
[ 0.061159] ftrace: allocating 15027 entries in 59 pages
[ 0.067219] alloc irq_2_pin on cpu 0 node 0
[ 0.067228] alloc irq_2_pin on cpu 0 node 0
[ 0.067234] alloc irq_2_pin on cpu 0 node 0
[ 0.067240] alloc irq_2_pin on cpu 0 node 0
[ 0.067246] alloc irq_2_pin on cpu 0 node 0
[ 0.067252] alloc irq_2_pin on cpu 0 node 0
[ 0.067258] alloc irq_2_pin on cpu 0 node 0
[ 0.067264] alloc irq_2_pin on cpu 0 node 0
[ 0.067270] alloc irq_2_pin on cpu 0 node 0
[ 0.067275] alloc irq_2_pin on cpu 0 node 0
[ 0.067281] alloc irq_2_pin on cpu 0 node 0
[ 0.067287] alloc irq_2_pin on cpu 0 node 0
[ 0.067293] alloc irq_2_pin on cpu 0 node 0
[ 0.067299] alloc irq_2_pin on cpu 0 node 0
[ 0.067304] alloc irq_2_pin on cpu 0 node 0
[ 0.067461] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.167480] CPU0: Intel(R) Core(TM)2 CPU T7400 @ 2.16GHz stepping 06
[ 0.170000] Testing tracer nop: PASSED
[ 0.170000] Booting processor 1 APIC 0x1 ip 0x6000
[ 0.010000] Initializing CPU#1
[ 0.010000] Calibrating delay using timer specific routine.. 4322.51 BogoMIPS (lpj=21612593)
[ 0.010000] CPU: L1 I cache: 32K, L1 D cache: 32K
[ 0.010000] CPU: L2 cache: 4096K
[ 0.010000] [ds] using core 2 configuration
[ 0.010000] CPU: Physical Processor ID: 0
[ 0.010000] CPU: Processor Core ID: 1
[ 0.010000] Intel machine check architecture supported.
[ 0.010000] Intel machine check reporting enabled on CPU#1.
[ 0.010000] x86 PAT enabled: cpu 1, old 0x7040600070406, new 0x7010600070106
[ 0.321750] CPU1: Intel(R) Core(TM)2 CPU T7400 @ 2.16GHz stepping 06
[ 0.321786] checking TSC synchronization [CPU#0 -> CPU#1]: passed.
[ 0.330032] Brought up 2 CPUs
[ 0.330037] Total of 2 processors activated (8644.94 BogoMIPS).
[ 0.330104] CPU0 attaching sched-domain:
[ 0.330109] domain 0: span 0-1 level MC
[ 0.330113] groups: 0 1
[ 0.330120] CPU1 attaching sched-domain:
[ 0.330123] domain 0: span 0-1 level MC
[ 0.330127] groups: 1 0
[ 0.330215] net_namespace: 800 bytes
[ 0.330215] Booting paravirtualized kernel on bare hardware
[ 0.330327] NET: Registered protocol family 16
[ 0.330327] EISA bus registered
[ 0.330327] ACPI: bus type pci registered
[ 0.330327] PCI: Using configuration type 1 for base access
[ 0.340112] bio: create slab <bio-0> at 0
[ 0.341245] ACPI: EC: EC description table is found, configuring boot EC
[ 0.341497] ACPI: EC: non-query interrupt received, switching to interrupt mode
[ 0.355528] ACPI: Interpreter enabled
[ 0.355536] ACPI: (supports S0 S3 S4 S5)
[ 0.355609] ACPI: Using IOAPIC for interrupt routing
[ 0.371528] ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
[ 0.371528] ACPI: EC: driver started in interrupt mode
[ 0.371528] ACPI: No dock devices found.
[ 0.371528] ACPI: PCI Root Bridge [PCI0] (0000:00)
[ 0.371528] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[ 0.371528] pci 0000:00:01.0: PME# disabled
[ 0.371528] pci 0000:00:07.0: reg 10 32bit mmio: [0x50404000-0x50404fff]
[ 0.371528] pci 0000:00:1b.0: reg 10 64bit mmio: [0x50400000-0x50403fff]
[ 0.371528] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 0.371528] pci 0000:00:1b.0: PME# disabled
[ 0.371528] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.371528] pci 0000:00:1c.0: PME# disabled
[ 0.371528] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[ 0.371528] pci 0000:00:1c.1: PME# disabled
[ 0.371528] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[ 0.371528] pci 0000:00:1c.2: PME# disabled
[ 0.371528] pci 0000:00:1d.0: reg 20 io port: [0x4080-0x409f]
[ 0.371528] pci 0000:00:1d.1: reg 20 io port: [0x4060-0x407f]
[ 0.371528] pci 0000:00:1d.2: reg 20 io port: [0x4040-0x405f]
[ 0.371528] pci 0000:00:1d.3: reg 20 io port: [0x4020-0x403f]
[ 0.371528] pci 0000:00:1d.7: reg 10 32bit mmio: [0x50405400-0x504057ff]
[ 0.371528] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[ 0.371528] pci 0000:00:1d.7: PME# disabled
[ 0.371528] pci 0000:00:1f.0: quirk: region 0400-047f claimed by ICH6 ACPI/GPIO/TCO
[ 0.371528] pci 0000:00:1f.0: quirk: region 0500-053f claimed by ICH6 GPIO
[ 0.371528] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0680 (mask 000f)
[ 0.371528] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 2 PIO at 1640 (mask 000f)
[ 0.371528] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 4 PIO at 0300 (mask 001f)
[ 0.371528] pci 0000:00:1f.1: reg 10 io port: [0x40d8-0x40df]
[ 0.371528] pci 0000:00:1f.1: reg 14 io port: [0x40ec-0x40ef]
[ 0.371528] pci 0000:00:1f.1: reg 18 io port: [0x40d0-0x40d7]
[ 0.371528] pci 0000:00:1f.1: reg 1c io port: [0x40e8-0x40eb]
[ 0.371528] pci 0000:00:1f.1: reg 20 io port: [0x40b0-0x40bf]
[ 0.371528] pci 0000:00:1f.2: reg 10 io port: [0x40c8-0x40cf]
[ 0.371528] pci 0000:00:1f.2: reg 14 io port: [0x40e4-0x40e7]
[ 0.371528] pci 0000:00:1f.2: reg 18 io port: [0x40c0-0x40c7]
[ 0.371528] pci 0000:00:1f.2: reg 1c io port: [0x40e0-0x40e3]
[ 0.371528] pci 0000:00:1f.2: reg 20 io port: [0x40a0-0x40af]
[ 0.371528] pci 0000:00:1f.2: reg 24 32bit mmio: [0x50405000-0x504053ff]
[ 0.371528] pci 0000:00:1f.2: PME# supported from D3hot
[ 0.371528] pci 0000:00:1f.2: PME# disabled
[ 0.371588] pci 0000:00:1f.3: reg 20 io port: [0xefa0-0xefbf]
[ 0.371666] pci 0000:01:00.0: reg 10 32bit mmio: [0x40000000-0x47ffffff]
[ 0.371677] pci 0000:01:00.0: reg 14 io port: [0x3000-0x30ff]
[ 0.371687] pci 0000:01:00.0: reg 18 32bit mmio: [0x50300000-0x5030ffff]
[ 0.371709] pci 0000:01:00.0: reg 30 32bit mmio: [0xfffe0000-0xffffffff]
[ 0.371741] pci 0000:01:00.0: supports D1 D2
[ 0.371803] pci 0000:00:01.0: bridge io port: [0x3000-0x3fff]
[ 0.371809] pci 0000:00:01.0: bridge 32bit mmio: [0x50300000-0x503fffff]
[ 0.371816] pci 0000:00:01.0: bridge 64bit mmio pref: [0x40000000-0x47ffffff]
[ 0.371899] pci 0000:02:00.0: reg 10 64bit mmio: [0x50200000-0x50203fff]
[ 0.371912] pci 0000:02:00.0: reg 18 io port: [0x2000-0x20ff]
[ 0.371950] pci 0000:02:00.0: reg 30 32bit mmio: [0xfffe0000-0xffffffff]
[ 0.372009] pci 0000:02:00.0: supports D1 D2
[ 0.372012] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.372021] pci 0000:02:00.0: PME# disabled
[ 0.372087] pci 0000:00:1c.0: bridge io port: [0x2000-0x2fff]
[ 0.372094] pci 0000:00:1c.0: bridge 32bit mmio: [0x50200000-0x502fffff]
[ 0.372175] pci 0000:03:00.0: reg 10 64bit mmio: [0x50100000-0x5010ffff]
[ 0.372272] pci 0000:03:00.0: supports D1
[ 0.372276] pci 0000:03:00.0: PME# supported from D0 D1 D3hot
[ 0.372284] pci 0000:03:00.0: PME# disabled
[ 0.372362] pci 0000:00:1c.1: bridge 32bit mmio: [0x50100000-0x501fffff]
[ 0.372431] pci 0000:00:1c.2: bridge io port: [0x1000-0x1fff]
[ 0.372438] pci 0000:00:1c.2: bridge 32bit mmio: [0x4c100000-0x500fffff]
[ 0.372448] pci 0000:00:1c.2: bridge 64bit mmio pref: [0x48000000-0x4bffffff]
[ 0.372508] pci 0000:0c:03.0: reg 10 32bit mmio: [0x4c004000-0x4c0047ff]
[ 0.372519] pci 0000:0c:03.0: reg 14 32bit mmio: [0x4c000000-0x4c003fff]
[ 0.372587] pci 0000:0c:03.0: supports D1 D2
[ 0.372591] pci 0000:0c:03.0: PME# supported from D0 D1 D2 D3hot
[ 0.372598] pci 0000:0c:03.0: PME# disabled
[ 0.380057] pci 0000:00:1e.0: transparent bridge
[ 0.380066] pci 0000:00:1e.0: bridge 32bit mmio: [0x4c000000-0x4c0fffff]
[ 0.380105] pci_bus 0000:00: on NUMA node 0
[ 0.380119] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[ 0.381972] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEGP._PRT]
[ 0.382568] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT]
[ 0.383151] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT]
[ 0.383731] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP03._PRT]
[ 0.384339] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCIB._PRT]
[ 0.401133] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
[ 0.401133] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 *11 12 14 15)
[ 0.401133] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
[ 0.401133] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 *11 12 14 15)
[ 0.401401] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
[ 0.401689] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled.
[ 0.410231] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 *10 12 14 15)
[ 0.410516] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 *11 12 14 15)
[ 0.410634] SCSI subsystem initialized
[ 0.410634] libata version 3.00 loaded.
[ 0.410634] usbcore: registered new interface driver usbfs
[ 0.410634] usbcore: registered new interface driver hub
[ 0.410634] usbcore: registered new device driver usb
[ 0.410634] PCI: Using ACPI for IRQ routing
[ 0.410634] PCI: Routing PCI interrupts for all devices because "pci=routeirq" specified
[ 0.410634] alloc irq_2_pin on cpu 0 node 0
[ 0.410634] pci 0000:00:01.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 0.410634] pci 0000:00:07.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 0.410634] alloc irq_2_pin on cpu 0 node 0
[ 0.410634] pci 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[ 0.410634] alloc irq_2_pin on cpu 0 node 0
[ 0.410634] pci 0000:00:1c.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[ 0.410634] pci 0000:00:1c.1: PCI INT B -> GSI 16 (level, low) -> IRQ 16
[ 0.410634] alloc irq_2_pin on cpu 0 node 0
[ 0.410634] pci 0000:00:1c.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[ 0.410634] alloc irq_2_pin on cpu 0 node 0
[ 0.410634] pci 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[ 0.410634] alloc irq_2_pin on cpu 0 node 0
[ 0.410634] pci 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[ 0.410634] pci 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[ 0.410634] pci 0000:00:1d.3: PCI INT D -> GSI 16 (level, low) -> IRQ 16
[ 0.410634] pci 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[ 0.410634] pci 0000:00:1f.1: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[ 0.410634] pci 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[ 0.410634] pci 0000:00:1f.3: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[ 0.410634] vendor=8086 device=27a1
[ 0.410634] pci 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 0.410634] vendor=8086 device=27d0
[ 0.410634] pci 0000:02:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 0.410634] vendor=8086 device=27d2
[ 0.410634] pci 0000:03:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[ 0.410634] vendor=8086 device=2448
[ 0.410634] pci 0000:0c:03.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
[ 0.440091] cfg80211: Using static regulatory domain info
[ 0.440091] cfg80211: Regulatory domain: US
[ 0.440091] (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[ 0.440091] (2402000 KHz - 2472000 KHz @ 40000 KHz), (600 mBi, 2700 mBm)
[ 0.440091] (5170000 KHz - 5190000 KHz @ 40000 KHz), (600 mBi, 2300 mBm)
[ 0.440091] (5190000 KHz - 5210000 KHz @ 40000 KHz), (600 mBi, 2300 mBm)
[ 0.440091] (5210000 KHz - 5230000 KHz @ 40000 KHz), (600 mBi, 2300 mBm)
[ 0.440091] (5230000 KHz - 5330000 KHz @ 40000 KHz), (600 mBi, 2300 mBm)
[ 0.440091] (5735000 KHz - 5835000 KHz @ 40000 KHz), (600 mBi, 3000 mBm)
[ 0.440094] cfg80211: Calling CRDA for country: US
[ 0.440122] NetLabel: Initializing
[ 0.440122] NetLabel: domain hash size = 128
[ 0.440122] NetLabel: protocols = UNLABELED CIPSOv4
[ 0.440141] NetLabel: unlabeled traffic allowed by default
[ 0.440155] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[ 0.440162] hpet0: 3 comparators, 64-bit 14.318180 MHz counter
[ 0.470029] pnp: PnP ACPI: disabled
[ 0.501822] Switched to high resolution mode on CPU 1
[ 0.505909] pci 0000:00:01.0: PCI bridge, secondary bus 0000:01
[ 0.505917] pci 0000:00:01.0: IO window: 0x3000-0x3fff
[ 0.505923] pci 0000:00:01.0: MEM window: 0x50300000-0x503fffff
[ 0.505929] pci 0000:00:01.0: PREFETCH window: 0x00000040000000-0x00000047ffffff
[ 0.505938] pci 0000:00:1c.0: PCI bridge, secondary bus 0000:02
[ 0.505944] pci 0000:00:1c.0: IO window: 0x2000-0x2fff
[ 0.505952] pci 0000:00:1c.0: MEM window: 0x50200000-0x502fffff
[ 0.505959] pci 0000:00:1c.0: PREFETCH window: 0x00000050500000-0x000000505fffff
[ 0.505970] pci 0000:00:1c.1: PCI bridge, secondary bus 0000:03
[ 0.505974] pci 0000:00:1c.1: IO window: disabled
[ 0.505982] pci 0000:00:1c.1: MEM window: 0x50100000-0x501fffff
[ 0.505988] pci 0000:00:1c.1: PREFETCH window: disabled
[ 0.505998] pci 0000:00:1c.2: PCI bridge, secondary bus 0000:04
[ 0.506003] pci 0000:00:1c.2: IO window: 0x1000-0x1fff
[ 0.506012] pci 0000:00:1c.2: MEM window: 0x4c100000-0x500fffff
[ 0.506019] pci 0000:00:1c.2: PREFETCH window: 0x00000048000000-0x0000004bffffff
[ 0.506030] pci 0000:00:1e.0: PCI bridge, secondary bus 0000:0c
[ 0.506033] pci 0000:00:1e.0: IO window: disabled
[ 0.506041] pci 0000:00:1e.0: MEM window: 0x4c000000-0x4c0fffff
[ 0.506048] pci 0000:00:1e.0: PREFETCH window: disabled
[ 0.506061] pci 0000:00:01.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 0.506067] pci 0000:00:01.0: setting latency timer to 64
[ 0.506074] pci 0000:00:1c.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[ 0.506082] pci 0000:00:1c.0: setting latency timer to 64
[ 0.506090] pci 0000:00:1c.1: PCI INT B -> GSI 16 (level, low) -> IRQ 16
[ 0.506097] pci 0000:00:1c.1: setting latency timer to 64
[ 0.506104] pci 0000:00:1c.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[ 0.506112] pci 0000:00:1c.2: setting latency timer to 64
[ 0.510004] Switched to high resolution mode on CPU 0
[ 0.510545] pci 0000:00:1e.0: power state changed by ACPI to D0
[ 0.510555] pci 0000:00:1e.0: setting latency timer to 64
[ 0.510561] pci_bus 0000:00: resource 0 io: [0x00-0xffff]
[ 0.510566] pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffff]
[ 0.510570] pci_bus 0000:01: resource 0 io: [0x3000-0x3fff]
[ 0.510574] pci_bus 0000:01: resource 1 mem: [0x50300000-0x503fffff]
[ 0.510578] pci_bus 0000:01: resource 2 mem: [0x40000000-0x47ffffff]
[ 0.510582] pci_bus 0000:01: resource 3 mem: [0x0-0x0]
[ 0.510586] pci_bus 0000:02: resource 0 io: [0x2000-0x2fff]
[ 0.510590] pci_bus 0000:02: resource 1 mem: [0x50200000-0x502fffff]
[ 0.510594] pci_bus 0000:02: resource 2 mem: [0x50500000-0x505fffff]
[ 0.510598] pci_bus 0000:02: resource 3 mem: [0x0-0x0]
[ 0.510602] pci_bus 0000:03: resource 0 mem: [0x0-0x0]
[ 0.510606] pci_bus 0000:03: resource 1 mem: [0x50100000-0x501fffff]
[ 0.510610] pci_bus 0000:03: resource 2 mem: [0x0-0x0]
[ 0.510613] pci_bus 0000:03: resource 3 mem: [0x0-0x0]
[ 0.510617] pci_bus 0000:04: resource 0 io: [0x1000-0x1fff]
[ 0.510621] pci_bus 0000:04: resource 1 mem: [0x4c100000-0x500fffff]
[ 0.510625] pci_bus 0000:04: resource 2 mem: [0x48000000-0x4bffffff]
[ 0.510629] pci_bus 0000:04: resource 3 mem: [0x0-0x0]
[ 0.510633] pci_bus 0000:0c: resource 0 mem: [0x0-0x0]
[ 0.510637] pci_bus 0000:0c: resource 1 mem: [0x4c000000-0x4c0fffff]
[ 0.510641] pci_bus 0000:0c: resource 2 mem: [0x0-0x0]
[ 0.510645] pci_bus 0000:0c: resource 3 io: [0x00-0xffff]
[ 0.510648] pci_bus 0000:0c: resource 4 mem: [0x000000-0xffffffff]
[ 0.510682] NET: Registered protocol family 2
[ 0.540086] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
[ 0.540448] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[ 0.540898] TCP bind hash table entries: 65536 (order: 8, 1310720 bytes)
[ 0.541448] TCP: Hash tables configured (established 131072 bind 65536)
[ 0.541453] TCP reno registered
[ 0.550163] NET: Registered protocol family 1
[ 0.551235] platform rtc_cmos: registered platform RTC device (no PNP device found)
[ 0.553512] Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
[ 0.555127] Initializing RT-Tester: OK
[ 0.555257] audit: initializing netlink socket (enabled)
[ 0.555322] type=2000 audit(1231459427.550:1): initialized
[ 0.558397] Testing tracer sched_switch: PASSED
[ 0.660046] Testing tracer function: PASSED
[ 0.790743] Testing dynamic ftrace: PASSED
[ 1.030058] Testing tracer irqsoff: PASSED
[ 1.040354] Testing tracer wakeup: PASSED
[ 1.370268] highmem bounce pool size: 64 pages
[ 1.370277] HugeTLB registered 4 MB page size, pre-allocated 0 pages
[ 1.388688] fuse init (API version 7.11)
[ 1.389362] msgmni has been set to 1746
[ 1.389625] SELinux: Registering netfilter hooks
[ 1.390488] alg: No test for stdrng (krng)
[ 1.390507] io scheduler noop registered
[ 1.390888] io scheduler cfq registered (default)
[ 1.391044] pci 0000:01:00.0: Boot video device
[ 1.391734] vesafb: framebuffer at 0x40000000, mapped to 0xf8100000, using 3072k, total 16384k
[ 1.391741] vesafb: mode is 1024x768x16, linelength=2048, pages=9
[ 1.391745] vesafb: protected mode interface info at c000:ad0c
[ 1.391749] vesafb: pmi: set display start = c00cad94, set palette = c00cae50
[ 1.391753] vesafb: scrolling: redraw
[ 1.391757] vesafb: Truecolor: size=0:5:5:5, shift=0:10:5:0
[ 1.416121] Console: switching to colour frame buffer device 128x48
[ 1.438335] fb0: VESA VGA frame buffer device
[ 1.453873] loop: module loaded
[ 1.454025] Linux video capture interface: v2.00
[ 1.454514] input: Macintosh mouse button emulation as /class/input/input0
[ 1.455175] Driver 'sd' needs updating - please use bus_type methods
[ 1.455577] Driver 'sr' needs updating - please use bus_type methods
[ 1.456262] ata_piix 0000:00:1f.1: version 2.12
[ 1.456568] ata_piix 0000:00:1f.1: power state changed by ACPI to D0
[ 1.456867] ata_piix 0000:00:1f.1: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[ 1.457240] ata_piix 0000:00:1f.1: setting latency timer to 64
[ 1.457606] scsi0 : ata_piix
[ 1.458305] scsi1 : ata_piix
[ 1.460476] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0x40b0 irq 14
[ 1.460797] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x40b8 irq 15
[ 1.461136] ata_piix 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[ 1.461584] ata_piix 0000:00:1f.2: MAP [ P0 P2 -- -- ]
[ 1.620021] ata_piix 0000:00:1f.2: setting latency timer to 64
[ 1.631397] scsi2 : ata_piix
[ 1.639179] scsi3 : ata_piix
[ 1.642999] ata1.00: ATAPI: MATSHITADVD-R UJ-857D, KCV9, max UDMA/66
[ 1.658248] ata3: SATA max UDMA/133 cmd 0x40c8 ctl 0x40e4 bmdma 0x40a0 irq 19
[ 1.665969] ata4: SATA max UDMA/133 cmd 0x40c0 ctl 0x40e0 bmdma 0x40a8 irq 19
[ 1.673977] usbcore: registered new interface driver usblcd
[ 1.681822] usbcore: registered new interface driver usbled
[ 1.682913] ata1.00: configured for UDMA/66
[ 1.698133] PNP: No PS/2 controller found. Probing ports directly.
[ 1.706934] i8042.c: No controller found.
[ 1.714799] scsi 0:0:0:0: CD-ROM MATSHITA DVD-R UJ-857D KCV9 PQ: 0 ANSI: 5
[ 1.723637] mice: PS/2 mouse device common for all mice
[ 1.731716] ------------[ cut here ]------------
[ 1.739745] WARNING: at drivers/ata/libata-sff.c:1017 ata_sff_hsm_move+0x49c/0x6d0()
[ 1.741682] Hardware name: MacBookPro2,2
[ 1.741682] Modules linked in:
[ 1.741682] Pid: 1, comm: swapper Not tainted 2.6.28-07812-g5fbbf5f #9
[ 1.741682] Call Trace:
[ 1.741682] [<c01292ca>] warn_slowpath+0x76/0xad
[ 1.741682] [<c0263865>] ? cfb_fillrect+0x182/0x275
[ 1.741682] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
[ 1.741682] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
[ 1.741682] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
[ 1.741682] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
[ 1.741682] [<c015a307>] handle_IRQ_event+0x34/0x69
[ 1.741682] [<c015b47e>] handle_edge_irq+0xc8/0x109
[ 1.741682] [<c0104bc9>] do_IRQ+0x92/0xad
[ 1.741682] [<c010396c>] common_interrupt+0x2c/0x34
[ 1.741682] [<c012007b>] ? sched_debug_show+0x803/0xbbd
[ 1.741682] [<c012da4f>] ? __do_softirq+0x6b/0x154
[ 1.741682] [<c012db6c>] ? do_softirq+0x34/0x7e
[ 1.741682] [<c012db8a>] do_softirq+0x52/0x7e
[ 1.741682] [<c012dcd6>] irq_exit+0x49/0x77
[ 1.741682] [<c03e56e9>] __irqentry_text_start+0x79/0x87
[ 1.741682] [<c0103aa1>] apic_timer_interrupt+0x2d/0x34
[ 1.741682] [<c0129e84>] ? vprintk+0x2aa/0x2d5
[ 1.741682] [<c03df731>] printk+0x14/0x1b
[ 1.741682] [<c05780e8>] mousedev_init+0x70/0x78
[ 1.741682] [<c0101137>] _stext+0x4f/0x127
[ 1.741682] [<c0578078>] ? mousedev_init+0x0/0x78
[ 1.741682] [<c015be1c>] ? register_irq_proc+0x84/0xa0
[ 1.741682] [<c015be90>] ? init_irq_proc+0x58/0x65
[ 1.741682] [<c055a309>] kernel_init+0x105/0x156
[ 1.741682] [<c055a204>] ? kernel_init+0x0/0x156
[ 1.741682] [<c0103bcb>] kernel_thread_helper+0x7/0x10
[ 1.741682] ---[ end trace a1303c5fb15c2002 ]---
[ 1.991585] device-mapper: ioctl: 4.14.0-ioctl (2008-04-23) initialised: [email protected]
[ 1.999594] EDAC MC: Ver: 2.1.0 Jan 8 2009
[ 2.008048] cpuidle: using governor ladder
[ 2.013026] ------------[ cut here ]------------
[ 2.013028] WARNING: at drivers/ata/libata-sff.c:1017 ata_sff_hsm_move+0x49c/0x6d0()
[ 2.013030] Hardware name: MacBookPro2,2
[ 2.013031] Modules linked in:
[ 2.013033] Pid: 578, comm: scsi_eh_3 Tainted: G W 2.6.28-07812-g5fbbf5f #9
[ 2.013035] Call Trace:
[ 2.013038] [<c01292ca>] warn_slowpath+0x76/0xad
[ 2.013042] [<c011bbac>] ? update_curr+0xae/0x189
[ 2.013045] [<c011e7c1>] ? dequeue_entity+0x1b/0x20d
[ 2.013048] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
[ 2.013050] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
[ 2.013053] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
[ 2.013056] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
[ 2.013059] [<c015a307>] handle_IRQ_event+0x34/0x69
[ 2.013061] [<c015b47e>] handle_edge_irq+0xc8/0x109
[ 2.013064] [<c0104bc9>] do_IRQ+0x92/0xad
[ 2.013066] [<c010396c>] common_interrupt+0x2c/0x34
[ 2.013068] [<c012007b>] ? sched_debug_show+0x803/0xbbd
[ 2.013071] [<c012da4f>] ? __do_softirq+0x6b/0x154
[ 2.013073] [<c012db6c>] ? do_softirq+0x34/0x7e
[ 2.013075] [<c012db8a>] do_softirq+0x52/0x7e
[ 2.013077] [<c012dcd6>] irq_exit+0x49/0x77
[ 2.013080] [<c03e56e9>] __irqentry_text_start+0x79/0x87
[ 2.013082] [<c0103aa1>] apic_timer_interrupt+0x2d/0x34
[ 2.013085] [<c03e007b>] ? schedule+0x695/0x8f1
[ 2.013088] [<c03e214c>] ? _spin_unlock_irqrestore+0x31/0x3c
[ 2.013090] [<c02e8818>] ata_eh_thaw_port+0x3b/0x3f
[ 2.013093] [<c02e94b4>] ata_eh_reset+0x6cc/0x9bd
[ 2.013096] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
[ 2.013098] [<c02eeb26>] ? ata_sff_prereset+0x0/0x9e
[ 2.013101] [<c02eea18>] ? ata_sff_softreset+0x0/0x10e
[ 2.013105] [<c02e032a>] ? ata_dev_init+0x5d/0x80
[ 2.013107] [<c02ead0a>] ata_eh_recover+0x29c/0xafd
[ 2.013110] [<c02eea18>] ? ata_sff_softreset+0x0/0x10e
[ 2.013112] [<c02ecf23>] ? ata_sff_postreset+0x0/0x5a
[ 2.013115] [<c02eea18>] ? ata_sff_softreset+0x0/0x10e
[ 2.013117] [<c02eeb26>] ? ata_sff_prereset+0x0/0x9e
[ 2.013120] [<c011e7c1>] ? dequeue_entity+0x1b/0x20d
[ 2.013122] [<c011ef1c>] ? dequeue_task_fair+0x5c/0x61
[ 2.013125] [<c0101e73>] ? __switch_to+0xce/0x14f
[ 2.013127] [<c03e210f>] ? _spin_unlock_irq+0x12/0x1e
[ 2.013130] [<c03e210f>] ? _spin_unlock_irq+0x12/0x1e
[ 2.013132] [<c0125c92>] ? finish_task_switch+0x37/0x8a
[ 2.013134] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
[ 2.013137] [<c0131627>] ? lock_timer_base+0x24/0x43
[ 2.013140] [<c02eea18>] ? ata_sff_softreset+0x0/0x10e
[ 2.013143] [<c02eeb26>] ? ata_sff_prereset+0x0/0x9e
[ 2.013145] [<c02eb6f8>] ata_do_eh+0x30/0x72
[ 2.013148] [<c02ecf23>] ? ata_sff_postreset+0x0/0x5a
[ 2.013150] [<c02ecf19>] ata_sff_error_handler+0x12b/0x135
[ 2.013153] [<c02ecf23>] ? ata_sff_postreset+0x0/0x5a
[ 2.013155] [<c02eea18>] ? ata_sff_softreset+0x0/0x10e
[ 2.013158] [<c02ebec7>] ata_scsi_error+0x2b5/0x5e6
[ 2.013162] [<c02ce15b>] scsi_error_handler+0xc1/0x454
[ 2.013164] [<c012390a>] ? default_wake_function+0x10/0x12
[ 2.013167] [<c03e2148>] ? _spin_unlock_irqrestore+0x2d/0x3c
[ 2.013169] [<c011e4d1>] ? complete+0x39/0x43
[ 2.013171] [<c02ce09a>] ? scsi_error_handler+0x0/0x454
[ 2.013175] [<c0139f9c>] kthread+0x40/0x66
[ 2.013178] [<c0139f5c>] ? kthread+0x0/0x66
[ 2.013180] [<c0103bcb>] kernel_thread_helper+0x7/0x10
[ 2.013182] ---[ end trace a1303c5fb15c2003 ]---
[ 2.418087] cpuidle: using governor menu
[ 2.420564] ata3.01: ATA-8: FUJITSU MHW2120BH, 00810013, max UDMA/100
[ 2.420566] ata3.01: 234441648 sectors, multi 16: LBA48 NCQ (depth 0/32)
[ 2.436869] ------------[ cut here ]------------
[ 2.442849] WARNING: at drivers/ata/libata-sff.c:1017 ata_sff_hsm_move+0x49c/0x6d0()
[ 2.446154] Hardware name: MacBookPro2,2
[ 2.446154] Modules linked in:
[ 2.446154] Pid: 1, comm: swapper Tainted: G W 2.6.28-07812-g5fbbf5f #9
[ 2.446154] Call Trace:
[ 2.446154] [<c01292ca>] warn_slowpath+0x76/0xad
[ 2.446154] [<c011e7c1>] ? dequeue_entity+0x1b/0x20d
[ 2.446154] [<c0101e73>] ? __switch_to+0xce/0x14f
[ 2.446154] [<c03e210f>] ? _spin_unlock_irq+0x12/0x1e
[ 2.446154] [<c0243563>] ? _raw_spin_trylock+0xf/0x30
[ 2.446154] [<c0125c92>] ? finish_task_switch+0x37/0x8a
[ 2.446154] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
[ 2.446154] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
[ 2.446154] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
[ 2.446154] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
[ 2.446154] [<c015a307>] handle_IRQ_event+0x34/0x69
[ 2.446154] [<c015b47e>] handle_edge_irq+0xc8/0x109
[ 2.446154] [<c0104bc9>] do_IRQ+0x92/0xad
[ 2.446154] [<c010396c>] common_interrupt+0x2c/0x34
[ 2.446154] [<c01c00d8>] ? proc_task_readdir+0x76/0x283
[ 2.446154] [<c0243830>] ? _raw_spin_lock+0x0/0xf8
[ 2.446154] [<c03e21f4>] ? _spin_lock+0xd/0xf
[ 2.446154] [<c01c79a1>] sysfs_new_dirent+0x5a/0xe0
[ 2.446154] [<c01c7347>] sysfs_add_file_mode+0x2b/0x72
[ 2.446154] [<c024382c>] ? _raw_spin_unlock+0x74/0x78
[ 2.446154] [<c03e2164>] ? _spin_unlock+0xd/0xf
[ 2.446154] [<c01c73a1>] sysfs_add_file+0x13/0x18
[ 2.446154] [<c01c7445>] sysfs_create_file+0x25/0x27
[ 2.446154] [<c02b2857>] driver_create_file+0x1b/0x1d
[ 2.446154] [<c02b1955>] bus_add_driver+0xd9/0x1c2
[ 2.446154] [<c02b275b>] driver_register+0x86/0xe6
[ 2.446154] [<c03215a9>] __hid_register_driver+0x43/0x68
[ 2.446154] [<c0325ba2>] ch_init+0x19/0x1b
[ 2.446154] [<c0101137>] _stext+0x4f/0x127
[ 2.446154] [<c0325b89>] ? ch_init+0x0/0x1b
[ 2.446154] [<c015be1c>] ? register_irq_proc+0x84/0xa0
[ 2.446154] [<c015be90>] ? init_irq_proc+0x58/0x65
[ 2.446154] [<c055a309>] kernel_init+0x105/0x156
[ 2.446154] [<c055a204>] ? kernel_init+0x0/0x156
[ 2.446154] [<c0103bcb>] kernel_thread_helper+0x7/0x10
[ 2.446154] ---[ end trace a1303c5fb15c2004 ]---
[ 2.716828] sr0: scsi3-mmc drive: 24x/24x writer cd/rw xa/form2 cdda tray
[ 2.723345] Uniform CD-ROM driver Revision: 3.20
[ 2.730033] sr 0:0:0:0: Attached scsi CD-ROM sr0
[ 2.730551] usbcore: registered new interface driver hiddev
[ 2.730678] usbcore: registered new interface driver usbhid
[ 2.730682] usbhid: v2.6:USB HID core driver
[ 2.730815] Advanced Linux Sound Architecture Driver Version 1.0.18a.
[ 2.730948] ALSA device list:
[ 2.730949] No soundcards found.
[ 2.731177] oprofile: using NMI interrupt.
[ 2.731457] IPVS: Registered protocols (TCP, AH, ESP)
[ 2.731645] IPVS: Connection hash table configured (size=4096, memory=32Kbytes)
[ 2.731678] IPVS: ipvs loaded.
[ 2.732016] Initializing XFRM netlink socket
[ 2.732045] NET: Registered protocol family 17
[ 2.732052] NET: Registered protocol family 15
[ 2.732076] Using IPI No-Shortcut mode
[ 2.824729] sr 0:0:0:0: Attached scsi generic sg0 type 5
[ 2.918677] ata3.01: configured for UDMA/100
[ 2.925304] scsi 2:0:1:0: Direct-Access ATA FUJITSU MHW2120B 0081 PQ: 0 ANSI: 5
[ 2.932641] sd 2:0:1:0: Attached scsi generic sg1 type 0
[ 2.932659] sd 2:0:1:0: [sda] 234441648 512-byte hardware sectors: (120 GB/111 GiB)
[ 2.932685] sd 2:0:1:0: [sda] Write Protect is off
[ 2.932687] sd 2:0:1:0: [sda] Mode Sense: 00 3a 00 00
[ 2.932737] sd 2:0:1:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 2.932828] sd 2:0:1:0: [sda] 234441648 512-byte hardware sectors: (120 GB/111 GiB)
[ 2.932854] sd 2:0:1:0: [sda] Write Protect is off
[ 2.932856] sd 2:0:1:0: [sda] Mode Sense: 00 3a 00 00
[ 2.932904] sd 2:0:1:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 2.932907] sda: sda1 sda2
[ 3.005746] sd 2:0:1:0: [sda] Attached SCSI disk
[ 3.101785] kjournald starting. Commit interval 5 seconds
[ 3.101804] EXT3-fs: mounted filesystem with ordered data mode.
[ 3.101836] VFS: Mounted root (ext3 filesystem) readonly on device 8:1.
[ 3.125701] Freeing unused kernel memory: 404k freed
[ 3.741752] SELinux: 8192 avtab hash slots, 145595 rules.
[ 3.841778] SELinux: 8192 avtab hash slots, 145595 rules.
[ 4.020490] SELinux: 7 users, 9 roles, 2684 types, 95 bools, 1 sens, 256 cats
[ 4.028803] SELinux: 73 classes, 145595 rules
[ 4.043720] SELinux: class kernel_service not defined in policy
[ 4.052375] SELinux: the above unknown classes and permissions will be denied
[ 4.060934] SELinux: Completing initialization.
[ 4.069411] SELinux: Setting up existing superblocks.
[ 4.107025] SELinux: initialized (dev sda1, type ext3), uses xattr
[ 4.262397] SELinux: initialized (dev selinuxfs, type selinuxfs), uses genfs_contexts
[ 4.270995] SELinux: initialized (dev mqueue, type mqueue), uses transition SIDs
[ 4.279530] SELinux: initialized (dev hugetlbfs, type hugetlbfs), uses genfs_contexts
[ 4.288267] SELinux: initialized (dev devpts, type devpts), uses transition SIDs
[ 4.296993] SELinux: initialized (dev inotifyfs, type inotifyfs), uses genfs_contexts
[ 4.305715] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[ 4.314409] SELinux: initialized (dev anon_inodefs, type anon_inodefs), uses genfs_contexts
[ 4.323285] SELinux: initialized (dev pipefs, type pipefs), uses task SIDs
[ 4.332188] SELinux: initialized (dev debugfs, type debugfs), uses genfs_contexts
[ 4.341186] SELinux: initialized (dev sockfs, type sockfs), uses task SIDs
[ 4.350053] SELinux: initialized (dev proc, type proc), uses genfs_contexts
[ 4.358842] SELinux: initialized (dev bdev, type bdev), uses genfs_contexts
[ 4.367571] SELinux: initialized (dev rootfs, type rootfs), uses genfs_contexts
[ 4.376340] SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts
[ 4.426230] type=1403 audit(1231459431.420:2): policy loaded auid=4294967295 ses=4294967295
[ 5.116633] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[ 5.572098] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[ 5.655227] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[ 10.080513] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[ 10.336705] ------------[ cut here ]------------
[ 10.354651] WARNING: at drivers/ata/libata-sff.c:1017 ata_sff_hsm_move+0x49c/0x6d0()
[ 10.354651] Hardware name: MacBookPro2,2
[ 10.354651] Modules linked in:
[ 10.354651] Pid: 889, comm: udevd Tainted: G W 2.6.28-07812-g5fbbf5f #9
[ 10.354651] Call Trace:
[ 10.354651] [<c01292ca>] warn_slowpath+0x76/0xad
[ 10.354651] [<c011b7ad>] ? resched_task+0x25/0x69
[ 10.354651] [<c03e2141>] ? _spin_unlock_irqrestore+0x26/0x3c
[ 10.354651] [<c01238ef>] ? try_to_wake_up+0x245/0x250
[ 10.354651] [<c016e6cf>] ? get_page_from_freelist+0x2a6/0x3ed
[ 10.354651] [<c0169974>] ? find_get_page+0x22/0x86
[ 10.354651] [<c016ea87>] ? __alloc_pages_internal+0x9b/0x36a
[ 10.354651] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
[ 10.354651] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
[ 10.354651] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
[ 10.354651] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
[ 10.354651] [<c015a307>] handle_IRQ_event+0x34/0x69
[ 10.354651] [<c015b47e>] handle_edge_irq+0xc8/0x109
[ 10.354651] [<c0104bc9>] do_IRQ+0x92/0xad
[ 10.354651] [<c010396c>] common_interrupt+0x2c/0x34
[ 10.354651] [<c03e007b>] ? schedule+0x695/0x8f1
[ 10.354651] [<c03e3ee5>] ? do_page_fault+0x272/0x6f9
[ 10.354651] [<c011e70c>] ? set_next_entity+0xa7/0x113
[ 10.354651] [<c011eeb9>] ? pick_next_task_fair+0x73/0x7a
[ 10.354651] [<c018aed4>] ? __slab_free+0x280/0x2b8
[ 10.354651] [<c018a64d>] ? check_object+0x139/0x190
[ 10.354651] [<c03e2423>] ? error_code+0x73/0x7c
[ 10.354651] [<c03e3c73>] ? do_page_fault+0x0/0x6f9
[ 10.354651] [<c0240320>] ? trace_hardirqs_on_thunk+0xc/0x10
[ 10.354651] [<c0240330>] ? trace_hardirqs_off_thunk+0xc/0x10
[ 10.354651] [<c03e2423>] ? error_code+0x73/0x7c
[ 10.354651] [<c03e3c73>] ? do_page_fault+0x0/0x6f9
[ 10.354651] [<c03e3c73>] ? do_page_fault+0x0/0x6f9
[ 10.354651] [<c03e2427>] error_code+0x77/0x7c
[ 10.354651] ---[ end trace a1303c5fb15c2006 ]---
[ 10.647515] ------------[ cut here ]------------
[ 10.654832] WARNING: at drivers/ata/libata-sff.c:1017 ata_sff_hsm_move+0x49c/0x6d0()
[ 10.656261] Hardware name: MacBookPro2,2
[ 10.656261] Modules linked in:
[ 10.656261] Pid: 893, comm: udevd Tainted: G W 2.6.28-07812-g5fbbf5f #9
[ 10.656261] Call Trace:
[ 10.656261] [<c01292ca>] warn_slowpath+0x76/0xad
[ 10.656261] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
[ 10.656261] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
[ 10.656261] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
[ 10.656261] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
[ 10.656261] [<c015a307>] handle_IRQ_event+0x34/0x69
[ 10.656261] [<c015b47e>] handle_edge_irq+0xc8/0x109
[ 10.656261] [<c0104bc9>] do_IRQ+0x92/0xad
[ 10.656261] [<c010396c>] common_interrupt+0x2c/0x34
[ 10.656261] [<c011007b>] ? acpi_processor_ffh_cstate_enter+0x3/0x2c
[ 10.656261] [<c016a048>] ? filemap_fault+0x9/0x308
[ 10.656261] [<c011a603>] ? ptep_set_access_flags+0x5f/0x69
[ 10.656261] [<c011b332>] ? kunmap_atomic+0x72/0x92
[ 10.656261] [<c024382c>] ? _raw_spin_unlock+0x74/0x78
[ 10.656261] [<c0179723>] __do_fault+0x40/0x345
[ 10.656261] [<c017b345>] handle_mm_fault+0x29e/0x606
[ 10.656261] [<c03e405c>] ? do_page_fault+0x3e9/0x6f9
[ 10.656261] [<c03e3ee3>] ? do_page_fault+0x270/0x6f9
[ 10.656261] [<c03e3fed>] do_page_fault+0x37a/0x6f9
[ 10.656261] [<c018a64d>] ? check_object+0x139/0x190
[ 10.656261] [<c014129b>] ? getnstimeofday+0x56/0xdf
[ 10.656261] [<c03e2141>] ? _spin_unlock_irqrestore+0x26/0x3c
[ 10.656261] [<c013cee5>] ? hrtimer_start_range_ns+0x234/0x23f
[ 10.656261] [<c03e2141>] ? _spin_unlock_irqrestore+0x26/0x3c
[ 10.656261] [<c013cee5>] ? hrtimer_start_range_ns+0x234/0x23f
[ 10.656261] [<c03e210f>] ? _spin_unlock_irq+0x12/0x1e
[ 10.656261] [<c03e210f>] ? _spin_unlock_irq+0x12/0x1e
[ 10.656261] [<c012c65d>] ? do_setitimer+0x160/0x2d9
[ 10.656261] [<c0240330>] ? trace_hardirqs_off_thunk+0xc/0x10
[ 10.656261] [<c03e2423>] ? error_code+0x73/0x7c
[ 10.656261] [<c03e3c73>] ? do_page_fault+0x0/0x6f9
[ 10.656261] [<c03e3c73>] ? do_page_fault+0x0/0x6f9
[ 10.656261] [<c03e2427>] error_code+0x77/0x7c
[ 10.656261] ---[ end trace a1303c5fb15c2007 ]---
[ 10.910249] ------------[ cut here ]------------
[ 10.916793] WARNING: at drivers/ata/libata-sff.c:1017 ata_sff_hsm_move+0x49c/0x6d0()
[ 10.920003] Hardware name: MacBookPro2,2
[ 10.920003] Modules linked in:
[ 10.920003] Pid: 891, comm: udevd Tainted: G W 2.6.28-07812-g5fbbf5f #9
[ 10.920003] Call Trace:
[ 10.920003] [<c01292ca>] warn_slowpath+0x76/0xad
[ 10.920003] [<c0180030>] ? move_page_tables+0x88/0x28b
[ 10.920003] [<c018aed4>] ? __slab_free+0x280/0x2b8
[ 10.920003] [<c018beb3>] ? kmem_cache_free+0xae/0xc2
[ 10.920003] [<c034872d>] ? __kfree_skb+0x73/0x76
[ 10.920003] [<c034872d>] ? __kfree_skb+0x73/0x76
[ 10.920003] [<c0348760>] ? kfree_skb+0x30/0x32
[ 10.920003] [<c03ab36c>] ? unix_dgram_sendmsg+0x437/0x47b
[ 10.920003] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
[ 10.920003] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
[ 10.920003] [<c017b345>] ? handle_mm_fault+0x29e/0x606
[ 10.920003] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
[ 10.920003] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
[ 10.920003] [<c015a307>] handle_IRQ_event+0x34/0x69
[ 10.920003] [<c015b47e>] handle_edge_irq+0xc8/0x109
[ 10.920003] [<c0104bc9>] do_IRQ+0x92/0xad
[ 10.920003] [<c010396c>] common_interrupt+0x2c/0x34
[ 10.920003] [<c0116eed>] ? __ticket_spin_trylock+0x4/0x21
[ 10.920003] [<c0243883>] _raw_spin_lock+0x53/0xf8
[ 10.920003] [<c018a64d>] ? check_object+0x139/0x190
[ 10.920003] [<c03e21f4>] _spin_lock+0xd/0xf
[ 10.920003] [<c023aa85>] _atomic_dec_and_lock+0x29/0x48
[ 10.920003] [<c019e26d>] iput+0x29/0x53
[ 10.920003] [<c019bea5>] dentry_iput+0x81/0x9c
[ 10.920003] [<c019bf74>] d_kill+0x32/0x4c
[ 10.920003] [<c019c663>] dput+0x101/0x10a
[ 10.920003] [<c018fed3>] __fput+0x13b/0x15c
[ 10.920003] [<c018ff12>] fput+0x1e/0x20
[ 10.920003] [<c018d67f>] filp_close+0x56/0x60
[ 10.920003] [<c018d6f8>] sys_close+0x6f/0xa9
[ 10.920003] [<c010329f>] sysenter_do_call+0x12/0x34
[ 10.920003] ---[ end trace a1303c5fb15c2008 ]---
[ 11.187174] ------------[ cut here ]------------
[ 11.190008] WARNING: at drivers/ata/libata-sff.c:1017 ata_sff_hsm_move+0x49c/0x6d0()
[ 11.196573] Hardware name: MacBookPro2,2
[ 11.203397] Modules linked in:
[ 11.209319] Pid: 923, comm: path_id Tainted: G W 2.6.28-07812-g5fbbf5f #9
[ 11.219223] Call Trace:
[ 11.219223] [<c01292ca>] warn_slowpath+0x76/0xad
[ 11.219223] [<c0230030>] ? elv_attr_store+0x15/0x5e
[ 11.219223] [<c011160a>] ? flush_tlb_page+0x47/0x6e
[ 11.219223] [<c011a603>] ? ptep_set_access_flags+0x5f/0x69
[ 11.219223] [<c011b332>] ? kunmap_atomic+0x72/0x92
[ 11.256355] [<c024382c>] ? _raw_spin_unlock+0x74/0x78
[ 11.256355] [<c017a1b4>] ? do_wp_page+0x586/0x5eb
[ 11.272445] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
[ 11.272445] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
[ 11.272445] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
[ 11.272445] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
[ 11.272445] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
[ 11.304326] [<c015a307>] handle_IRQ_event+0x34/0x69
[ 11.304326] [<c015b47e>] handle_edge_irq+0xc8/0x109
[ 11.304326] [<c0104bc9>] do_IRQ+0x92/0xad
[ 11.304326] [<c010396c>] common_interrupt+0x2c/0x34
[ 11.304326] [<c0196c85>] ? putname+0x29/0x34
[ 11.304326] [<c018007b>] ? move_page_tables+0xd3/0x28b
[ 11.304326] [<c018beb7>] ? kmem_cache_free+0xb2/0xc2
[ 11.304326] [<c0196c85>] ? putname+0x29/0x34
[ 11.304326] [<c0196c85>] putname+0x29/0x34
[ 11.304326] [<c0198701>] user_path_at+0x4a/0x67
[ 11.304326] [<c013a41e>] ? remove_wait_queue+0x35/0x39
[ 11.304326] [<c018feec>] ? __fput+0x154/0x15c
[ 11.304326] [<c018e048>] sys_chdir+0x23/0x64
[ 11.304326] [<c010329f>] sysenter_do_call+0x12/0x34
[ 11.304326] ---[ end trace a1303c5fb15c2009 ]---
[ 11.404868] ------------[ cut here ]------------
[ 11.411491] WARNING: at drivers/ata/libata-sff.c:1017 ata_sff_hsm_move+0x49c/0x6d0()
[ 11.412573] Hardware name: MacBookPro2,2
[ 11.412573] Modules linked in:
[ 11.412573] Pid: 966, comm: udevd Tainted: G W 2.6.28-07812-g5fbbf5f #9
[ 11.412573] Call Trace:
[ 11.412573] [<c01292ca>] warn_slowpath+0x76/0xad
[ 11.412573] [<c0169974>] ? find_get_page+0x22/0x86
[ 11.412573] [<c0169cb5>] ? find_lock_page+0x18/0x4c
[ 11.412573] [<c016a0d0>] ? filemap_fault+0x91/0x308
[ 11.412573] [<c011b332>] ? kunmap_atomic+0x72/0x92
[ 11.412573] [<c0169c9a>] ? unlock_page+0x43/0x46
[ 11.412573] [<c01799f0>] ? __do_fault+0x30d/0x345
[ 11.412573] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
[ 11.412573] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
[ 11.412573] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
[ 11.412573] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
[ 11.412573] [<c015a307>] handle_IRQ_event+0x34/0x69
[ 11.412573] [<c015b47e>] handle_edge_irq+0xc8/0x109
[ 11.412573] [<c0104bc9>] do_IRQ+0x92/0xad
[ 11.412573] [<c0196cb5>] ? getname+0x25/0xbc
[ 11.412573] [<c010396c>] common_interrupt+0x2c/0x34
[ 11.412573] [<c0196cb5>] ? getname+0x25/0xbc
[ 11.412573] [<c018007b>] ? move_page_tables+0xd3/0x28b
[ 11.412573] [<c018bf5a>] ? kmem_cache_alloc+0x93/0xcc
[ 11.412573] [<c0196cb5>] ? getname+0x25/0xbc
[ 11.412573] [<c0196cb5>] getname+0x25/0xbc
[ 11.412573] [<c01986d1>] user_path_at+0x1a/0x67
[ 11.412573] [<c03e210f>] ? _spin_unlock_irq+0x12/0x1e
[ 11.412573] [<c03e210f>] ? _spin_unlock_irq+0x12/0x1e
[ 11.412573] [<c012c65d>] ? do_setitimer+0x160/0x2d9
[ 11.412573] [<c0191e60>] sys_readlinkat+0x2b/0x86
[ 11.412573] [<c0191ed3>] sys_readlink+0x18/0x1a
[ 11.412573] [<c010329f>] sysenter_do_call+0x12/0x34
[ 11.412573] ---[ end trace a1303c5fb15c200a ]---
[ 11.631708] ------------[ cut here ]------------
[ 11.637944] WARNING: at drivers/ata/libata-sff.c:1017 ata_sff_hsm_move+0x49c/0x6d0()
[ 11.640002] Hardware name: MacBookPro2,2
[ 11.640002] Modules linked in:
[ 11.640002] Pid: 960, comm: udevd Tainted: G W 2.6.28-07812-g5fbbf5f #9
[ 11.640002] Call Trace:
[ 11.640002] [<c01292ca>] warn_slowpath+0x76/0xad
[ 11.640002] [<c0169974>] ? find_get_page+0x22/0x86
[ 11.640002] [<c0169cb5>] ? find_lock_page+0x18/0x4c
[ 11.640002] [<c016a0d0>] ? filemap_fault+0x91/0x308
[ 11.640002] [<c011b332>] ? kunmap_atomic+0x72/0x92
[ 11.640002] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
[ 11.640002] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
[ 11.640002] [<c018aed4>] ? __slab_free+0x280/0x2b8
[ 11.640002] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
[ 11.640002] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
[ 11.640002] [<c015a307>] handle_IRQ_event+0x34/0x69
[ 11.640002] [<c015b47e>] handle_edge_irq+0xc8/0x109
[ 11.640002] [<c0104bc9>] do_IRQ+0x92/0xad
[ 11.640002] [<c0196cb5>] ? getname+0x25/0xbc
[ 11.640002] [<c010396c>] common_interrupt+0x2c/0x34
[ 11.640002] [<c0196cb5>] ? getname+0x25/0xbc
[ 11.640002] [<c018007b>] ? move_page_tables+0xd3/0x28b
[ 11.640002] [<c018bf5a>] ? kmem_cache_alloc+0x93/0xcc
[ 11.640002] [<c0196cb5>] ? getname+0x25/0xbc
[ 11.640002] [<c0196cb5>] getname+0x25/0xbc
[ 11.640002] [<c01986d1>] user_path_at+0x1a/0x67
[ 11.640002] [<c012c65d>] ? do_setitimer+0x160/0x2d9
[ 11.640002] [<c0191e60>] sys_readlinkat+0x2b/0x86
[ 11.640002] [<c0191ed3>] sys_readlink+0x18/0x1a
[ 11.640002] [<c010329f>] sysenter_do_call+0x12/0x34
[ 11.640002] ---[ end trace a1303c5fb15c200b ]---
[ 11.859983] ------------[ cut here ]------------
[ 11.863325] WARNING: at drivers/ata/libata-sff.c:1017 ata_sff_hsm_move+0x49c/0x6d0()
[ 11.870937] Hardware name: MacBookPro2,2
[ 11.878612] Modules linked in:
[ 11.882417] Pid: 988, comm: udevd Tainted: G W 2.6.28-07812-g5fbbf5f #9
[ 11.889932] Call Trace:
[ 11.896866] [<c01292ca>] warn_slowpath+0x76/0xad
[ 11.901313] [<c011b332>] ? kunmap_atomic+0x72/0x92
[ 11.906787] [<c01799f0>] ? __do_fault+0x30d/0x345
[ 11.906787] [<c0212f70>] ? avc_has_perm+0x3e/0x48
[ 11.906787] [<c018a64d>] ? check_object+0x139/0x190
[ 11.932317] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
[ 11.932317] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
[ 11.932317] [<c0217852>] ? selinux_inode_alloc_security+0x2e/0x73
[ 11.932317] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
[ 11.932317] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
[ 11.932317] [<c015a307>] handle_IRQ_event+0x34/0x69
[ 11.932317] [<c015b47e>] handle_edge_irq+0xc8/0x109
[ 11.932317] [<c0104bc9>] do_IRQ+0x92/0xad
[ 11.932317] [<c0196cb5>] ? getname+0x25/0xbc
[ 11.932317] [<c010396c>] common_interrupt+0x2c/0x34
[ 11.932317] [<c0196cb5>] ? getname+0x25/0xbc
[ 11.932317] [<c018007b>] ? move_page_tables+0xd3/0x28b
[ 12.009738] [<c018bf5a>] ? kmem_cache_alloc+0x93/0xcc
[ 12.009738] [<c0196cb5>] ? getname+0x25/0xbc
[ 12.009738] [<c0196cb5>] getname+0x25/0xbc
[ 12.009738] [<c018d74b>] do_sys_open+0x19/0xbc
[ 12.009738] [<c018d83a>] sys_open+0x23/0x2b
[ 12.009738] [<c010329f>] sysenter_do_call+0x12/0x34
[ 12.009738] ---[ end trace a1303c5fb15c200c ]---
[ 12.065027] ------------[ cut here ]------------
[ 12.070720] WARNING: at drivers/ata/libata-sff.c:1017 ata_sff_hsm_move+0x49c/0x6d0()
[ 12.070720] Hardware name: MacBookPro2,2
[ 12.070720] Modules linked in:
[ 12.070720] Pid: 1018, comm: udevd Tainted: G W 2.6.28-07812-g5fbbf5f #9
[ 12.070720] Call Trace:
[ 12.070720] [<c01292ca>] warn_slowpath+0x76/0xad
[ 12.070720] [<c0190029>] ? get_empty_filp+0x82/0x175
[ 12.070720] [<c018fd49>] ? file_free_rcu+0x35/0x38
[ 12.070720] [<c011160a>] ? flush_tlb_page+0x47/0x6e
[ 12.070720] [<c011a603>] ? ptep_set_access_flags+0x5f/0x69
[ 12.070720] [<c011b332>] ? kunmap_atomic+0x72/0x92
[ 12.070720] [<c024382c>] ? _raw_spin_unlock+0x74/0x78
[ 12.070720] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
[ 12.070720] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
[ 12.070720] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
[ 12.070720] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
[ 12.070720] [<c015a307>] handle_IRQ_event+0x34/0x69
[ 12.070720] [<c015b47e>] handle_edge_irq+0xc8/0x109
[ 12.070720] [<c0104bc9>] do_IRQ+0x92/0xad
[ 12.070720] [<c010396c>] common_interrupt+0x2c/0x34
[ 12.070720] [<c03e007b>] ? schedule+0x695/0x8f1
[ 12.070720] [<c03e3ee5>] ? do_page_fault+0x272/0x6f9
[ 12.070720] [<c0190029>] ? get_empty_filp+0x82/0x175
[ 12.070720] [<c018fd49>] ? file_free_rcu+0x35/0x38
[ 12.070720] [<c018a64d>] ? check_object+0x139/0x190
[ 12.070720] [<c03e2423>] ? error_code+0x73/0x7c
[ 12.070720] [<c03e3c73>] ? do_page_fault+0x0/0x6f9
[ 12.070720] [<c0240320>] ? trace_hardirqs_on_thunk+0xc/0x10
[ 12.070720] [<c0240330>] ? trace_hardirqs_off_thunk+0xc/0x10
[ 12.070720] [<c03e2423>] ? error_code+0x73/0x7c
[ 12.070720] [<c03e3c73>] ? do_page_fault+0x0/0x6f9
[ 12.070720] [<c03e3c73>] ? do_page_fault+0x0/0x6f9
[ 12.070720] [<c03e2427>] error_code+0x77/0x7c
[ 12.070720] ---[ end trace a1303c5fb15c200d ]---
[ 12.300395] ------------[ cut here ]------------
[ 12.306909] WARNING: at drivers/ata/libata-sff.c:1017 ata_sff_hsm_move+0x49c/0x6d0()
[ 12.310003] Hardware name: MacBookPro2,2
[ 12.310003] Modules linked in:
[ 12.310003] Pid: 999, comm: udevd Tainted: G W 2.6.28-07812-g5fbbf5f #9
[ 12.310003] Call Trace:
[ 12.310003] [<c01292ca>] warn_slowpath+0x76/0xad
[ 12.310003] [<c024382c>] ? _raw_spin_unlock+0x74/0x78
[ 12.310003] [<c03e2164>] ? _spin_unlock+0xd/0xf
[ 12.310003] [<c016e6cf>] ? get_page_from_freelist+0x2a6/0x3ed
[ 12.310003] [<c0169974>] ? find_get_page+0x22/0x86
[ 12.310003] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
[ 12.310003] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
[ 12.310003] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
[ 12.310003] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
[ 12.310003] [<c015a307>] handle_IRQ_event+0x34/0x69
[ 12.310003] [<c015b47e>] handle_edge_irq+0xc8/0x109
[ 12.310003] [<c0104bc9>] do_IRQ+0x92/0xad
[ 12.310003] [<c010396c>] common_interrupt+0x2c/0x34
[ 12.310003] [<c03e00d8>] ? schedule+0x6f2/0x8f1
[ 12.310003] [<c013d32b>] ? down_read_trylock+0x17/0x20
[ 12.310003] [<c03e3f32>] do_page_fault+0x2bf/0x6f9
[ 12.310003] [<c011e70c>] ? set_next_entity+0xa7/0x113
[ 12.310003] [<c014129b>] ? getnstimeofday+0x56/0xdf
[ 12.310003] [<c023de7b>] ? rb_insert_color+0x9b/0xc0
[ 12.310003] [<c03e2141>] ? _spin_unlock_irqrestore+0x26/0x3c
[ 12.310003] [<c013cee5>] ? hrtimer_start_range_ns+0x234/0x23f
[ 12.310003] [<c03e2141>] ? _spin_unlock_irqrestore+0x26/0x3c
[ 12.310003] [<c013cee5>] ? hrtimer_start_range_ns+0x234/0x23f
[ 12.310003] [<c03e210f>] ? _spin_unlock_irq+0x12/0x1e
[ 12.310003] [<c03e210f>] ? _spin_unlock_irq+0x12/0x1e
[ 12.310003] [<c012c65d>] ? do_setitimer+0x160/0x2d9
[ 12.310003] [<c0240330>] ? trace_hardirqs_off_thunk+0xc/0x10
[ 12.310003] [<c03e2423>] ? error_code+0x73/0x7c
[ 12.310003] [<c03e3c73>] ? do_page_fault+0x0/0x6f9
[ 12.310003] [<c03e3c73>] ? do_page_fault+0x0/0x6f9
[ 12.310003] [<c03e2427>] error_code+0x77/0x7c
[ 12.310003] ---[ end trace a1303c5fb15c200e ]---
[ 12.547900] ------------[ cut here ]------------
[ 12.554293] WARNING: at drivers/ata/libata-sff.c:1017 ata_sff_hsm_move+0x49c/0x6d0()
[ 12.555950] Hardware name: MacBookPro2,2
[ 12.555950] Modules linked in:
[ 12.555950] Pid: 998, comm: udevd Tainted: G W 2.6.28-07812-g5fbbf5f #9
[ 12.555950] Call Trace:
[ 12.555950] [<c01292ca>] warn_slowpath+0x76/0xad
[ 12.555950] [<c018a64d>] ? check_object+0x139/0x190
[ 12.601146] [<c03e3ee3>] ? do_page_fault+0x270/0x6f9
[ 12.601146] [<c03e405c>] ? do_page_fault+0x3e9/0x6f9
[ 12.601146] [<c018bcfd>] ? kfree+0xd5/0xe9
[ 12.601146] [<c015c92f>] ? call_rcu+0x63/0x74
[ 12.601146] [<c018fd0e>] ? put_filp+0x47/0x4d
[ 12.601146] [<c0196c53>] ? release_open_intent+0x16/0x1f
[ 12.601146] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
[ 12.601146] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
[ 12.601146] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
[ 12.601146] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
[ 12.601146] [<c015a307>] handle_IRQ_event+0x34/0x69
[ 12.601146] [<c015b47e>] handle_edge_irq+0xc8/0x109
[ 12.601146] [<c0104bc9>] do_IRQ+0x92/0xad
[ 12.601146] [<c010396c>] common_interrupt+0x2c/0x34
[ 12.601146] ---[ end trace a1303c5fb15c200f ]---
[ 13.284938] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 13.291470] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[ 13.298252] ehci_hcd 0000:00:1d.7: setting latency timer to 64
[ 13.304854] ehci_hcd 0000:00:1d.7: EHCI Host Controller
[ 13.311515] SELinux: initialized (dev usbfs, type usbfs), uses genfs_contexts
[ 13.318446] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1
[ 13.329311] ehci_hcd 0000:00:1d.7: debug port 1
[ 13.336097] ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported
[ 13.343004] ehci_hcd 0000:00:1d.7: irq 23, io mem 0x50405400
[ 13.353762] uhci_hcd: USB Universal Host Controller Interface driver
[ 13.370019] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[ 13.377209] usb usb1: configuration #1 chosen from 1 choice
[ 13.384493] hub 1-0:1.0: USB hub found
[ 13.391672] hub 1-0:1.0: 8 ports detected
[ 13.399148] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[ 13.406480] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[ 13.413789] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[ 13.421231] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[ 13.428842] uhci_hcd 0000:00:1d.0: irq 23, io base 0x00004080
[ 13.436540] usb usb2: configuration #1 chosen from 1 choice
[ 13.444197] hub 2-0:1.0: USB hub found
[ 13.451552] hub 2-0:1.0: 2 ports detected
[ 13.458975] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[ 13.466437] uhci_hcd 0000:00:1d.1: setting latency timer to 64
[ 13.473771] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[ 13.481058] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
[ 13.488498] uhci_hcd 0000:00:1d.1: irq 19, io base 0x00004060
[ 13.496018] usb usb3: configuration #1 chosen from 1 choice
[ 13.503449] hub 3-0:1.0: USB hub found
[ 13.510859] hub 3-0:1.0: 2 ports detected
[ 13.518497] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[ 13.526175] uhci_hcd 0000:00:1d.2: setting latency timer to 64
[ 13.533870] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[ 13.541559] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
[ 13.549437] uhci_hcd 0000:00:1d.2: irq 18, io base 0x00004040
[ 13.557390] usb usb4: configuration #1 chosen from 1 choice
[ 13.565294] hub 4-0:1.0: USB hub found
[ 13.573097] hub 4-0:1.0: 2 ports detected
[ 13.581087] uhci_hcd 0000:00:1d.3: PCI INT D -> GSI 16 (level, low) -> IRQ 16
[ 13.589132] uhci_hcd 0000:00:1d.3: setting latency timer to 64
[ 13.597138] uhci_hcd 0000:00:1d.3: UHCI Host Controller
[ 13.605162] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
[ 13.613286] uhci_hcd 0000:00:1d.3: irq 16, io base 0x00004020
[ 13.621399] usb usb5: configuration #1 chosen from 1 choice
[ 13.629380] hub 5-0:1.0: USB hub found
[ 13.637200] hub 5-0:1.0: 2 ports detected
[ 13.645307] applesmc: Apple MacBook Pro detected:
[ 13.653097] applesmc: - Model with accelerometer
[ 13.660716] applesmc: - Model with light sensors and backlight
[ 13.668338] applesmc: - Model with 12 temperature sensors
[ 13.676681] applesmc: device has already been initialized (0xe0, 0x00).
[ 13.684342] applesmc: device successfully initialized.
[ 13.692489] applesmc: 2 fans found.
[ 13.701817] input: applesmc as /class/input/input1
[ 13.715662] ACPI: SSDT 3FEB8C10, 02AE (r1 APPLE Cpu0Ist 3000 INTL 20050309)
[ 13.724496] ACPI: SSDT 3FEB8910, 02A0 (r1 APPLE Cpu0Cst 3001 INTL 20050309)
[ 13.732983] Monitor-Mwait will be used to enter C-1 state
[ 13.740617] Monitor-Mwait will be used to enter C-2 state
[ 13.748040] Monitor-Mwait will be used to enter C-3 state
[ 13.755584] ACPI: CPU0 (power states: C1[C1] C2[C2] C3[C3])
[ 13.763035] processor ACPI_CPU:00: registered as cooling_device0
[ 13.770415] ACPI: Processor [CPU0] (supports 8 throttling states)
[ 13.777506] Registered led device: smc::kbd_backlight
[ 13.777564] applesmc: driver successfully loaded.
[ 13.794571] ACPI: SSDT 3FEB8F10, 0087 (r1 APPLE Cpu1Ist 3000 INTL 20050309)
[ 13.803173] ACPI: SSDT 3FEB7F10, 0085 (r1 APPLE Cpu1Cst 3000 INTL 20050309)
[ 13.812001] power_supply ADP1: uevent
[ 13.819503] power_supply ADP1: No power supply yet
[ 13.820003] Marking TSC unstable due to TSC halts in idle
[ 13.834468] power_supply ADP1: power_supply_changed
[ 13.841867] ACPI: AC Adapter [ADP1] (on-line)
[ 13.849641] power_supply ADP1: power_supply_changed_work
[ 13.857179] power_supply ADP1: power_supply_update_gen_leds 1
[ 13.864752] power_supply ADP1: uevent
[ 13.872036] power_supply ADP1: POWER_SUPPLY_NAME=ADP1
[ 13.879354] power_supply ADP1: Static prop TYPE=Mains
[ 13.886618] power_supply ADP1: 1 dynamic props
[ 13.893837] power_supply ADP1: prop ONLINE=1
[ 13.902140] ACPI: CPU1 (power states: C1[C1] C2[C2] C3[C3])
[ 13.909466] processor ACPI_CPU:01: registered as cooling_device1
[ 13.916851] ACPI: Processor [CPU1] (supports 8 throttling states)
[ 13.924395] input: Power Button (FF) as /class/input/input2
[ 13.931737] usb 1-4: new high speed USB device using ehci_hcd and address 3
[ 13.950201] ACPI: Power Button (FF) [PWRF]
[ 13.958024] input: Lid Switch as /class/input/input3
[ 13.968542] ACPI: Lid Switch [LID0]
[ 13.976398] input: Power Button (CM) as /class/input/input4
[ 14.002877] ACPI: Power Button (CM) [PWRB]
[ 14.010648] input: Sleep Button (CM) as /class/input/input5
[ 14.020939] ACPI: Sleep Button (CM) [SLPB]
[ 14.074326] ath9k: 0.1
[ 14.082114] vendor=8086 device=27d2
[ 14.089785] ath9k 0000:03:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[ 14.097693] ath9k 0000:03:00.0: setting latency timer to 64
[ 14.106683] usb 1-4: configuration #1 chosen from 1 choice
[ 14.236207] wmaster0 (ath9k): not using net_device_ops yet
[ 14.244537] phy0: Selected rate control algorithm 'ath9k_rate_control'
[ 14.259072] wlan0 (ath9k): not using net_device_ops yet
[ 14.267523] Registered led device: ath9k-phy0:radio
[ 14.275623] Registered led device: ath9k-phy0:assoc
[ 14.283583] Registered led device: ath9k-phy0:tx
[ 14.291543] Registered led device: ath9k-phy0:rx
[ 14.299295] phy0: Atheros AR5418 MAC/BB Rev:2 AR5133 RF Rev:81: mem=0xf87c0000, irq=17
[ 14.388731] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[ 14.396836] HDA Intel 0000:00:1b.0: setting latency timer to 64
[ 14.476366] vendor=8086 device=2448
[ 14.484231] ohci1394 0000:0c:03.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
[ 14.535254] uvcvideo: Found UVC 1.00 device Built-in iSight (05ac:8501)
[ 14.546047] uvcvideo: UVC non compliance - GET_DEF(PROBE) not supported. Enabling workaround.
[ 14.555067] usbcore: registered new interface driver uvcvideo
[ 14.561065] ohci1394: fw-host0: OHCI-1394 1.1 (PCI): IRQ=[19] MMIO=[4c004000-4c0047ff] Max Packet=[4096] IR/IT contexts=[4/8]
[ 14.581819] USB Video Class driver (v0.1.0)
[ 14.598141] hda_codec: STAC922x, Apple subsys_id=106b1e00
[ 14.652639] usb 2-2: new full speed USB device using uhci_hcd and address 2
[ 14.663553] input: HDA Intel at 0x50400000 irq 22 Line In at Ext Rear Jack as /class/input/input6
[ 14.675749] input: HDA Intel at 0x50400000 irq 22 HP Out at Ext Rear Jack as /class/input/input7
[ 14.854162] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[ 14.868561] usb 2-2: configuration #1 chosen from 1 choice
[ 14.888742] input: Apple Computer Apple Internal Keyboard / Trackpad as /class/input/input8
[ 14.955922] apple 0003:05AC:021A.0001: input: USB HID v1.11 Keyboard [Apple Computer Apple Internal Keyboard / Trackpad] on usb-0000:00:1d.0-2/input0
[ 14.985518] input: Apple Computer Apple Internal Keyboard / Trackpad as /class/input/input9
[ 15.027744] apple 0003:05AC:021A.0002: input: USB HID v1.11 Device [Apple Computer Apple Internal Keyboard / Trackpad] on usb-0000:00:1d.0-2/input2
[ 15.065440] appletouch: Geyser mode initialized.
[ 15.087882] input: appletouch as /class/input/input10
[ 15.102830] usbcore: registered new interface driver appletouch
[ 15.119656] ieee1394: raw1394: /dev/raw1394 device initialized
[ 15.300071] usb 4-2: new full speed USB device using uhci_hcd and address 2
[ 15.481609] ip_tables: (C) 2000-2006 Netfilter Core Team
[ 15.504556] usb 4-2: configuration #1 chosen from 1 choice
[ 15.524400] generic-usb 0003:05AC:8240.0003: hiddev0: USB HID v1.11 Device [Apple Computer, Inc. IR Receiver] on usb-0000:00:1d.2-2/input0
[ 15.630952] nf_conntrack version 0.5.0 (16142 buckets, 64568 max)
[ 15.643399] CONFIG_NF_CT_ACCT is deprecated and will be removed soon. Please use
[ 15.655794] nf_conntrack.acct=1 kernel paramater, acct=1 nf_conntrack module option or
[ 15.668507] sysctl net.netfilter.nf_conntrack_acct=1 to enable it.
[ 15.729891] arp_tables: (C) 2002 David S. Miller
[ 15.822589] usb 5-1: new full speed USB device using uhci_hcd and address 2
[ 15.847786] usbcore: registered new interface driver isight_firmware
[ 15.895872] ipmi message handler version 39.2
[ 15.925039] IPMI Watchdog: driver initialized
[ 16.047443] usb 5-1: configuration #1 chosen from 1 choice
[ 16.051353] usbhid 5-1:1.0: couldn't find an input interrupt endpoint
[ 16.240682] Adding 2988360k swap on /dev/sda2. Priority:-1 extents:1 across:2988360k
[ 16.430438] ieee1394: Host added: ID:BUS[0-00:1023] GUID[0019e3fffe2ad87e]
[ 16.675156] EXT3 FS on sda1, internal journal
[ 19.771491] applesmc: light sensor data length set to 6
[ 20.550550] ------------[ cut here ]------------
[ 20.550554] WARNING: at drivers/ata/libata-sff.c:1017 ata_sff_hsm_move+0x49c/0x6d0()
[ 20.550556] Hardware name: MacBookPro2,2
[ 20.550558] Modules linked in: fan battery container ipt_LOG xt_limit xt_tcpudp xt_state ipt_addrtype nf_nat_irc nf_conntrack_irc nf_nat_ftp nf_nat nf_conntrack_ftp ipmi_watchdog ipmi_msghandler isight_firmware uinput arpt_mangle arptable_filter arp_tables nf_conntrack_ipv4 nf_conntrack nf_defrag_ipv4 iptable_mangle iptable_filter ip_tables x_tables coretemp eeprom acpi_cpufreq cpufreq_powersave cpufreq_performance cpufreq_ondemand cpufreq_conservative firewire_sbp2 firewire_core raw1394 appletouch snd_hda_codec_idt uvcvideo ohci1394 thermal joydev snd_hda_intel snd_hda_codec ath9k ieee1394 video ac button processor applesmc uhci_hcd ehci_hcd snd_hwdep snd_pcm snd_page_alloc pata_acpi evdev
[ 20.550621] Pid: 0, comm: swapper Tainted: G W 2.6.28-07812-g5fbbf5f #9
[ 20.550623] Call Trace:
[ 20.550630] [<c01292ca>] warn_slowpath+0x76/0xad
[ 20.550635] [<c013e562>] ? sched_clock_cpu+0x137/0x146
[ 20.550639] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
[ 20.550642] [<c013c4e7>] ? hrtimer_forward+0xf9/0x10f
[ 20.550646] [<c014129b>] ? getnstimeofday+0x56/0xdf
[ 20.550650] [<c01119f4>] ? lapic_next_event+0x18/0x1c
[ 20.550653] [<c0143380>] ? clockevents_program_event+0xe0/0xef
[ 20.550659] [<c03e2141>] ? _spin_unlock_irqrestore+0x26/0x3c
[ 20.550662] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
[ 20.550665] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
[ 20.550669] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
[ 20.550672] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
[ 20.550677] [<c015a307>] handle_IRQ_event+0x34/0x69
[ 20.550680] [<c015b47e>] handle_edge_irq+0xc8/0x109
[ 20.550684] [<c0104bc9>] do_IRQ+0x92/0xad
[ 20.550687] [<c010396c>] common_interrupt+0x2c/0x34
[ 20.550699] [<f806c727>] ? acpi_idle_enter_bm+0x2df/0x36b [processor]
[ 20.550703] [<c0144b5a>] ? tick_nohz_restart_sched_tick+0x139/0x14b
[ 20.550708] [<c031e695>] cpuidle_idle_call+0x65/0x98
[ 20.550711] [<c01023b7>] cpu_idle+0x84/0xa5
[ 20.550714] [<c03d388f>] rest_init+0x53/0x55
[ 20.550717] ---[ end trace a1303c5fb15c2010 ]---
[ 20.551664] ------------[ cut here ]------------
[ 20.551669] WARNING: at drivers/ata/libata-sff.c:1017 ata_sff_hsm_move+0x49c/0x6d0()
[ 20.551673] Hardware name: MacBookPro2,2
[ 20.551676] Modules linked in: fan battery container ipt_LOG xt_limit xt_tcpudp xt_state ipt_addrtype nf_nat_irc nf_conntrack_irc nf_nat_ftp nf_nat nf_conntrack_ftp ipmi_watchdog ipmi_msghandler isight_firmware uinput arpt_mangle arptable_filter arp_tables nf_conntrack_ipv4 nf_conntrack nf_defrag_ipv4 iptable_mangle iptable_filter ip_tables x_tables coretemp eeprom acpi_cpufreq cpufreq_powersave cpufreq_performance cpufreq_ondemand cpufreq_conservative firewire_sbp2 firewire_core raw1394 appletouch snd_hda_codec_idt uvcvideo ohci1394 thermal joydev snd_hda_intel snd_hda_codec ath9k ieee1394 video ac button processor applesmc uhci_hcd ehci_hcd snd_hwdep snd_pcm snd_page_alloc pata_acpi evdev
[ 20.551785] Pid: 0, comm: swapper Tainted: G W 2.6.28-07812-g5fbbf5f #9
[ 20.551789] Call Trace:
[ 20.551797] [<c01292ca>] warn_slowpath+0x76/0xad
[ 20.551805] [<c03e2141>] ? _spin_unlock_irqrestore+0x26/0x3c
[ 20.551812] [<c01238ef>] ? try_to_wake_up+0x245/0x250
[ 20.551819] [<c03e2141>] ? _spin_unlock_irqrestore+0x26/0x3c
[ 20.551828] [<c02ce674>] ? scsi_eh_scmd_add+0x83/0x8c
[ 20.551835] [<c03e2141>] ? _spin_unlock_irqrestore+0x26/0x3c
[ 20.551842] [<c02ce674>] ? scsi_eh_scmd_add+0x83/0x8c
[ 20.551849] [<c02ce6cf>] ? scsi_times_out+0x52/0x6c
[ 20.551856] [<c0235c66>] ? blk_rq_timed_out+0x11/0x4b
[ 20.551863] [<c0235ce3>] ? blk_abort_request+0x43/0x46
[ 20.551870] [<c02ebb5c>] ? ata_qc_schedule_eh+0x49/0x50
[ 20.551877] [<c02e1d9f>] ? ata_qc_complete+0x75/0x1a9
[ 20.551884] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
[ 20.551892] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
[ 20.551899] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
[ 20.551906] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
[ 20.551914] [<c015a307>] handle_IRQ_event+0x34/0x69
[ 20.551921] [<c015b47e>] handle_edge_irq+0xc8/0x109
[ 20.551928] [<c0104bc9>] do_IRQ+0x92/0xad
[ 20.551934] [<c010396c>] common_interrupt+0x2c/0x34
[ 20.551954] [<f806c727>] ? acpi_idle_enter_bm+0x2df/0x36b [processor]
[ 20.551961] [<c0144b5a>] ? tick_nohz_restart_sched_tick+0x139/0x14b
[ 20.551969] [<c031e695>] cpuidle_idle_call+0x65/0x98
[ 20.551975] [<c01023b7>] cpu_idle+0x84/0xa5
[ 20.551982] [<c03d388f>] rest_init+0x53/0x55
[ 20.551986] ---[ end trace a1303c5fb15c2011 ]---
[ 20.558509] ------------[ cut here ]------------
[ 20.558512] WARNING: at drivers/ata/libata-sff.c:1017 ata_sff_hsm_move+0x49c/0x6d0()
[ 20.558514] Hardware name: MacBookPro2,2
[ 20.558516] Modules linked in: fan battery container ipt_LOG xt_limit xt_tcpudp xt_state ipt_addrtype nf_nat_irc nf_conntrack_irc nf_nat_ftp nf_nat nf_conntrack_ftp ipmi_watchdog ipmi_msghandler isight_firmware uinput arpt_mangle arptable_filter arp_tables nf_conntrack_ipv4 nf_conntrack nf_defrag_ipv4 iptable_mangle iptable_filter ip_tables x_tables coretemp eeprom acpi_cpufreq cpufreq_powersave cpufreq_performance cpufreq_ondemand cpufreq_conservative firewire_sbp2 firewire_core raw1394 appletouch snd_hda_codec_idt uvcvideo ohci1394 thermal joydev snd_hda_intel snd_hda_codec ath9k ieee1394 video ac button processor applesmc uhci_hcd ehci_hcd snd_hwdep snd_pcm snd_page_alloc pata_acpi evdev
[ 20.558573] Pid: 2519, comm: hald-addon-macb Tainted: G W 2.6.28-07812-g5fbbf5f #9
[ 20.558575] Call Trace:
[ 20.558580] [<c01292ca>] warn_slowpath+0x76/0xad
[ 20.558585] [<c011b332>] ? kunmap_atomic+0x72/0x92
[ 20.558588] [<c024382c>] ? _raw_spin_unlock+0x74/0x78
[ 20.558600] [<c03e3ee3>] ? do_page_fault+0x270/0x6f9
[ 20.558600] [<c03e405c>] ? do_page_fault+0x3e9/0x6f9
[ 20.558600] [<c023c89f>] ? prio_tree_insert+0x18c/0x1ff
[ 20.558602] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
[ 20.558606] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
[ 20.558610] [<c03e2164>] ? _spin_unlock+0xd/0xf
[ 20.558613] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
[ 20.558617] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
[ 20.558630] [<c015a307>] handle_IRQ_event+0x34/0x69
[ 20.558630] [<c015b47e>] handle_edge_irq+0xc8/0x109
[ 20.558630] [<c0104bc9>] do_IRQ+0x92/0xad
[ 20.558631] [<c010396c>] common_interrupt+0x2c/0x34
[ 20.558633] ---[ end trace a1303c5fb15c2012 ]---
[ 20.623177] ------------[ cut here ]------------
[ 20.623181] WARNING: at drivers/ata/libata-sff.c:1017 ata_sff_hsm_move+0x49c/0x6d0()
[ 20.623184] Hardware name: MacBookPro2,2
[ 20.623185] Modules linked in: fan battery container ipt_LOG xt_limit xt_tcpudp xt_state ipt_addrtype nf_nat_irc nf_conntrack_irc nf_nat_ftp nf_nat nf_conntrack_ftp ipmi_watchdog ipmi_msghandler isight_firmware uinput arpt_mangle arptable_filter arp_tables nf_conntrack_ipv4 nf_conntrack nf_defrag_ipv4 iptable_mangle iptable_filter ip_tables x_tables coretemp eeprom acpi_cpufreq cpufreq_powersave cpufreq_performance cpufreq_ondemand cpufreq_conservative firewire_sbp2 firewire_core raw1394 appletouch snd_hda_codec_idt uvcvideo ohci1394 thermal joydev snd_hda_intel snd_hda_codec ath9k ieee1394 video ac button processor applesmc uhci_hcd ehci_hcd snd_hwdep snd_pcm snd_page_alloc pata_acpi evdev
[ 20.623245] Pid: 2519, comm: hald-addon-macb Tainted: G W 2.6.28-07812-g5fbbf5f #9
[ 20.623247] Call Trace:
[ 20.623252] [<c01292ca>] warn_slowpath+0x76/0xad
[ 20.623257] [<c011b332>] ? kunmap_atomic+0x72/0x92
[ 20.623260] [<c024382c>] ? _raw_spin_unlock+0x74/0x78
[ 20.623264] [<c03e3ee3>] ? do_page_fault+0x270/0x6f9
[ 20.623267] [<c03e405c>] ? do_page_fault+0x3e9/0x6f9
[ 20.623272] [<c03e2164>] ? _spin_unlock+0xd/0xf
[ 20.623276] [<c017e7d2>] ? vma_adjust+0x31a/0x378
[ 20.623279] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
[ 20.623283] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
[ 20.623286] [<c017f421>] ? mmap_region+0x17e/0x435
[ 20.623289] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
[ 20.623293] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
[ 20.623296] [<c015a307>] handle_IRQ_event+0x34/0x69
[ 20.623300] [<c015b47e>] handle_edge_irq+0xc8/0x109
[ 20.623304] [<c0104bc9>] do_IRQ+0x92/0xad
[ 20.623307] [<c010396c>] common_interrupt+0x2c/0x34
[ 20.623309] ---[ end trace a1303c5fb15c2013 ]---
[ 20.624217] ------------[ cut here ]------------
[ 20.624220] WARNING: at drivers/ata/libata-sff.c:1017 ata_sff_hsm_move+0x49c/0x6d0()
[ 20.624222] Hardware name: MacBookPro2,2
[ 20.624224] Modules linked in: fan battery container ipt_LOG xt_limit xt_tcpudp xt_state ipt_addrtype nf_nat_irc nf_conntrack_irc nf_nat_ftp nf_nat nf_conntrack_ftp ipmi_watchdog ipmi_msghandler isight_firmware uinput arpt_mangle arptable_filter arp_tables nf_conntrack_ipv4 nf_conntrack nf_defrag_ipv4 iptable_mangle iptable_filter ip_tables x_tables coretemp eeprom acpi_cpufreq cpufreq_powersave cpufreq_performance cpufreq_ondemand cpufreq_conservative firewire_sbp2 firewire_core raw1394 appletouch snd_hda_codec_idt uvcvideo ohci1394 thermal joydev snd_hda_intel snd_hda_codec ath9k ieee1394 video ac button processor applesmc uhci_hcd ehci_hcd snd_hwdep snd_pcm snd_page_alloc pata_acpi evdev
[ 20.624279] Pid: 2519, comm: hald-addon-macb Tainted: G W 2.6.28-07812-g5fbbf5f #9
[ 20.624281] Call Trace:
[ 20.624285] [<c01292ca>] warn_slowpath+0x76/0xad
[ 20.624289] [<c023fac6>] ? vsnprintf+0x866/0x8c5
[ 20.624293] [<c03e2141>] ? _spin_unlock_irqrestore+0x26/0x3c
[ 20.624296] [<c01299ba>] ? release_console_sem+0x1b8/0x1e5
[ 20.624300] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
[ 20.624303] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
[ 20.624307] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
[ 20.624310] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
[ 20.624314] [<c015a307>] handle_IRQ_event+0x34/0x69
[ 20.624317] [<c015b47e>] handle_edge_irq+0xc8/0x109
[ 20.624320] [<c0104bc9>] do_IRQ+0x92/0xad
[ 20.624323] [<c010396c>] common_interrupt+0x2c/0x34
[ 20.624328] [<c017734f>] ? __inc_zone_state+0x1b/0x7b
[ 20.624331] [<c01773cc>] __inc_zone_page_state+0x1d/0x1f
[ 20.624334] [<c018168f>] page_add_new_anon_rmap+0x44/0x6a
[ 20.624338] [<c017b2a5>] handle_mm_fault+0x1fe/0x606
[ 20.624343] [<c02155a8>] ? selinux_socket_unix_stream_connect+0xa4/0xac
[ 20.624346] [<c03e3ee3>] ? do_page_fault+0x270/0x6f9
[ 20.624349] [<c03e3fed>] do_page_fault+0x37a/0x6f9
[ 20.624352] [<c03e20e4>] ? _read_unlock+0xd/0xf
[ 20.624357] [<c03454d3>] ? sock_def_readable+0x60/0x65
[ 20.624362] [<c03acb34>] ? unix_stream_connect+0x338/0x398
[ 20.624365] [<c0343d18>] ? sys_connect+0x65/0x82
[ 20.624368] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
[ 20.624371] [<c03e210f>] ? _spin_unlock_irq+0x12/0x1e
[ 20.624374] [<c03e210f>] ? _spin_unlock_irq+0x12/0x1e
[ 20.624379] [<c01326c9>] ? do_sigaction+0x13d/0x14e
[ 20.624382] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
[ 20.624385] [<c0240330>] ? trace_hardirqs_off_thunk+0xc/0x10
[ 20.624388] [<c03e2423>] ? error_code+0x73/0x7c
[ 20.624391] [<c03e3c73>] ? do_page_fault+0x0/0x6f9
[ 20.624394] [<c03e3c73>] ? do_page_fault+0x0/0x6f9
[ 20.624397] [<c03e2427>] error_code+0x77/0x7c
[ 20.624400] ---[ end trace a1303c5fb15c2014 ]---
[ 20.625285] ------------[ cut here ]------------
[ 20.625288] WARNING: at drivers/ata/libata-sff.c:1017 ata_sff_hsm_move+0x49c/0x6d0()
[ 20.625290] Hardware name: MacBookPro2,2
[ 20.625292] Modules linked in: fan battery container ipt_LOG xt_limit xt_tcpudp xt_state ipt_addrtype nf_nat_irc nf_conntrack_irc nf_nat_ftp nf_nat nf_conntrack_ftp ipmi_watchdog ipmi_msghandler isight_firmware uinput arpt_mangle arptable_filter arp_tables nf_conntrack_ipv4 nf_conntrack nf_defrag_ipv4 iptable_mangle iptable_filter ip_tables x_tables coretemp eeprom acpi_cpufreq cpufreq_powersave cpufreq_performance cpufreq_ondemand cpufreq_conservative firewire_sbp2 firewire_core raw1394 appletouch snd_hda_codec_idt uvcvideo ohci1394 thermal joydev snd_hda_intel snd_hda_codec ath9k ieee1394 video ac button processor applesmc uhci_hcd ehci_hcd snd_hwdep snd_pcm snd_page_alloc pata_acpi evdev
[ 20.625344] Pid: 2466, comm: hald Tainted: G W 2.6.28-07812-g5fbbf5f #9
[ 20.625346] Call Trace:
[ 20.625349] [<c01292ca>] warn_slowpath+0x76/0xad
[ 20.625353] [<c0213328>] ? selinux_socket_recvmsg+0x1a/0x1c
[ 20.625357] [<c0342ccb>] ? sock_aio_read+0x109/0x117
[ 20.625361] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
[ 20.625364] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
[ 20.625367] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
[ 20.625371] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
[ 20.625374] [<c015a307>] handle_IRQ_event+0x34/0x69
[ 20.625377] [<c015b47e>] handle_edge_irq+0xc8/0x109
[ 20.625381] [<c0104bc9>] do_IRQ+0x92/0xad
[ 20.625384] [<c010396c>] common_interrupt+0x2c/0x34
[ 20.625386] ---[ end trace a1303c5fb15c2015 ]---
[ 20.660553] ------------[ cut here ]------------
[ 20.660556] WARNING: at drivers/ata/libata-sff.c:1017 ata_sff_hsm_move+0x49c/0x6d0()
[ 20.660558] Hardware name: MacBookPro2,2
[ 20.660560] Modules linked in: fan battery container ipt_LOG xt_limit xt_tcpudp xt_state ipt_addrtype nf_nat_irc nf_conntrack_irc nf_nat_ftp nf_nat nf_conntrack_ftp ipmi_watchdog ipmi_msghandler isight_firmware uinput arpt_mangle arptable_filter arp_tables nf_conntrack_ipv4 nf_conntrack nf_defrag_ipv4 iptable_mangle iptable_filter ip_tables x_tables coretemp eeprom acpi_cpufreq cpufreq_powersave cpufreq_performance cpufreq_ondemand cpufreq_conservative firewire_sbp2 firewire_core raw1394 appletouch snd_hda_codec_idt uvcvideo ohci1394 thermal joydev snd_hda_intel snd_hda_codec ath9k ieee1394 video ac button processor applesmc uhci_hcd ehci_hcd snd_hwdep snd_pcm snd_page_alloc pata_acpi evdev
[ 20.660619] Pid: 2519, comm: hald-addon-macb Tainted: G W 2.6.28-07812-g5fbbf5f #9
[ 20.660621] Call Trace:
[ 20.660626] [<c01292ca>] warn_slowpath+0x76/0xad
[ 20.660631] [<c013cca6>] ? hrtimer_cancel+0x12/0x1d
[ 20.660635] [<c03e1285>] ? schedule_hrtimeout_range+0x10b/0x12a
[ 20.660639] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
[ 20.660642] [<c03e2148>] ? _spin_unlock_irqrestore+0x2d/0x3c
[ 20.660647] [<c013a41e>] ? remove_wait_queue+0x35/0x39
[ 20.660651] [<c019a87b>] ? poll_freewait+0x34/0x7d
[ 20.660654] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
[ 20.660658] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
[ 20.660661] [<c011b332>] ? kunmap_atomic+0x72/0x92
[ 20.660665] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
[ 20.660668] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
[ 20.660672] [<c015a307>] handle_IRQ_event+0x34/0x69
[ 20.660676] [<c015b47e>] handle_edge_irq+0xc8/0x109
[ 20.660679] [<c0104bc9>] do_IRQ+0x92/0xad
[ 20.660682] [<c010396c>] common_interrupt+0x2c/0x34
[ 20.660687] [<c016e758>] ? get_page_from_freelist+0x32f/0x3ed
[ 20.660691] [<c016ea87>] __alloc_pages_internal+0x9b/0x36a
[ 20.660694] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
[ 20.660697] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
[ 20.660700] [<c016ed6f>] get_zeroed_page+0x19/0x2b
[ 20.660704] [<c01c82f5>] sysfs_follow_link+0x22/0x13d
[ 20.660708] [<c01971a5>] __link_path_walk+0x459/0xc5a
[ 20.660712] [<c0215291>] ? selinux_file_alloc_security+0x2d/0x46
[ 20.660715] [<c0197b43>] path_walk+0x55/0xaa
[ 20.660718] [<c0197d66>] do_path_lookup+0x145/0x18d
[ 20.660721] [<c0197e50>] path_lookup_open+0x4b/0x7c
[ 20.660724] [<c01988d6>] do_filp_open+0xa8/0x6e8
[ 20.660728] [<c018bb89>] ? __slab_alloc+0x409/0x4a8
[ 20.660731] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
[ 20.660734] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
[ 20.660737] [<c0196cb5>] ? getname+0x25/0xbc
[ 20.660739] [<c024382c>] ? _raw_spin_unlock+0x74/0x78
[ 20.660743] [<c018d779>] do_sys_open+0x47/0xbc
[ 20.660746] [<c018d83a>] sys_open+0x23/0x2b
[ 20.660749] [<c010329f>] sysenter_do_call+0x12/0x34
[ 20.660751] ---[ end trace a1303c5fb15c2016 ]---
[ 20.662220] ------------[ cut here ]------------
[ 20.662223] WARNING: at drivers/ata/libata-sff.c:1017 ata_sff_hsm_move+0x49c/0x6d0()
[ 20.662225] Hardware name: MacBookPro2,2
[ 20.662226] Modules linked in: fan battery container ipt_LOG xt_limit xt_tcpudp xt_state ipt_addrtype nf_nat_irc nf_conntrack_irc nf_nat_ftp nf_nat nf_conntrack_ftp ipmi_watchdog ipmi_msghandler isight_firmware uinput arpt_mangle arptable_filter arp_tables nf_conntrack_ipv4 nf_conntrack nf_defrag_ipv4 iptable_mangle iptable_filter ip_tables x_tables coretemp eeprom acpi_cpufreq cpufreq_powersave cpufreq_performance cpufreq_ondemand cpufreq_conservative firewire_sbp2 firewire_core raw1394 appletouch snd_hda_codec_idt uvcvideo ohci1394 thermal joydev snd_hda_intel snd_hda_codec ath9k ieee1394 video ac button processor applesmc uhci_hcd ehci_hcd snd_hwdep snd_pcm snd_page_alloc pata_acpi evdev
[ 20.662280] Pid: 2423, comm: klogd Tainted: G W 2.6.28-07812-g5fbbf5f #9
[ 20.662282] Call Trace:
[ 20.662286] [<c01292ca>] warn_slowpath+0x76/0xad
[ 20.662290] [<c03e0b94>] ? __mutex_lock_slowpath+0x25b/0x263
[ 20.662293] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
[ 20.662296] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
[ 20.662298] [<c024382c>] ? _raw_spin_unlock+0x74/0x78
[ 20.662302] [<c03e2164>] ? _spin_unlock+0xd/0xf
[ 20.662306] [<c01a1823>] ? mnt_drop_write+0x68/0xcc
[ 20.662309] [<c019e22a>] ? touch_atime+0xa5/0xbf
[ 20.662313] [<c019541e>] ? pipe_read+0x2f7/0x305
[ 20.662316] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
[ 20.662320] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
[ 20.662323] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
[ 20.662327] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
[ 20.662330] [<c015a307>] handle_IRQ_event+0x34/0x69
[ 20.662334] [<c015b47e>] handle_edge_irq+0xc8/0x109
[ 20.662337] [<c0104bc9>] do_IRQ+0x92/0xad
[ 20.662340] [<c010396c>] common_interrupt+0x2c/0x34
[ 20.662342] ---[ end trace a1303c5fb15c2017 ]---
[ 20.663258] ------------[ cut here ]------------
[ 20.663260] WARNING: at drivers/ata/libata-sff.c:1017 ata_sff_hsm_move+0x49c/0x6d0()
[ 20.663262] Hardware name: MacBookPro2,2
[ 20.663264] Modules linked in: fan battery container ipt_LOG xt_limit xt_tcpudp xt_state ipt_addrtype nf_nat_irc nf_conntrack_irc nf_nat_ftp nf_nat nf_conntrack_ftp ipmi_watchdog ipmi_msghandler isight_firmware uinput arpt_mangle arptable_filter arp_tables nf_conntrack_ipv4 nf_conntrack nf_defrag_ipv4 iptable_mangle iptable_filter ip_tables x_tables coretemp eeprom acpi_cpufreq cpufreq_powersave cpufreq_performance cpufreq_ondemand cpufreq_conservative firewire_sbp2 firewire_core raw1394 appletouch snd_hda_codec_idt uvcvideo ohci1394 thermal joydev snd_hda_intel snd_hda_codec ath9k ieee1394 video ac button processor applesmc uhci_hcd ehci_hcd snd_hwdep snd_pcm snd_page_alloc pata_acpi evdev
[ 20.663318] Pid: 2420, comm: dd Tainted: G W 2.6.28-07812-g5fbbf5f #9
[ 20.663320] Call Trace:
[ 20.663323] [<c01292ca>] warn_slowpath+0x76/0xad
[ 20.663327] [<c03e2141>] ? _spin_unlock_irqrestore+0x26/0x3c
[ 20.663331] [<c01238ef>] ? try_to_wake_up+0x245/0x250
[ 20.663334] [<c011bbac>] ? update_curr+0xae/0x189
[ 20.663337] [<c01206a1>] ? enqueue_entity+0x26c/0x274
[ 20.663341] [<c011b7ad>] ? resched_task+0x25/0x69
[ 20.663344] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
[ 20.663347] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
[ 20.663351] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
[ 20.663354] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
[ 20.663358] [<c015a307>] handle_IRQ_event+0x34/0x69
[ 20.663361] [<c015b47e>] handle_edge_irq+0xc8/0x109
[ 20.663364] [<c0104bc9>] do_IRQ+0x92/0xad
[ 20.663368] [<c010396c>] common_interrupt+0x2c/0x34
[ 20.663371] [<c03e007b>] ? schedule+0x695/0x8f1
[ 20.663374] [<c03e2111>] ? _spin_unlock_irq+0x14/0x1e
[ 20.663378] [<c0125c92>] finish_task_switch+0x37/0x8a
[ 20.663381] [<c03e026d>] schedule+0x887/0x8f1
[ 20.663385] [<c0240330>] ? trace_hardirqs_off_thunk+0xc/0x10
[ 20.663388] [<c0103210>] ? resume_userspace+0x14/0x28
[ 20.663391] [<c010344e>] work_resched+0x5/0x2d
[ 20.663393] ---[ end trace a1303c5fb15c2018 ]---
[ 20.845321] usb 5-1: usbfs: USBDEVFS_CONTROL failed cmd hid2hci rqt 64 rq 0 len 0 ret -84
[ 20.857262] Bluetooth: Core ver 2.14
[ 20.857453] NET: Registered protocol family 31
[ 20.857455] Bluetooth: HCI device and connection manager initialized
[ 20.857458] Bluetooth: HCI socket layer initialized
[ 20.888021] Bluetooth: L2CAP ver 2.11
[ 20.888024] Bluetooth: L2CAP socket layer initialized
[ 20.923756] Bluetooth: RFCOMM socket layer initialized
[ 20.923774] Bluetooth: RFCOMM TTY layer initialized
[ 20.923776] Bluetooth: RFCOMM ver 1.10
[ 20.929141] Bluetooth: SCO (Voice Link) ver 0.6
[ 20.929144] Bluetooth: SCO socket layer initialized
[ 21.131910] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 21.131913] Bluetooth: BNEP filters: protocol multicast
[ 21.162684] usb 5-1: USB disconnect, address 2
[ 21.442611] usb 5-1: new full speed USB device using uhci_hcd and address 3
[ 21.650582] usb 5-1: configuration #1 chosen from 1 choice
[ 21.843958] Bluetooth: Generic Bluetooth USB driver ver 0.4
[ 21.844233] usbcore: registered new interface driver btusb
[ 23.000127] Clocksource tsc unstable (delta = -287147024 ns)
[ 25.540092] type=1400 audit(1231459452.540:3): avc: denied { sys_module } for pid=2655 comm="wpa_supplicant" capability=16 scontext=system_u:system_r:system_dbusd_t:s0 tcontext=system_u:system_r:system_dbusd_t:s0 tclass=capability
[ 25.557328] type=1300 audit(1231459452.540:3): arch=40000003 syscall=54 success=no exit=-19 a0=9 a1=8933 a2=bf8c5ffc a3=bf8c5ffc items=0 ppid=1 pid=2655 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="wpa_supplicant" exe="/sbin/wpa_supplicant" subj=system_u:system_r:system_dbusd_t:s0 key=(null)
[ 28.491934] wlan0: authenticate with AP 00:1e:2a:00:67:f0
[ 28.494478] wlan0: authenticated
[ 28.494484] wlan0: associate with AP 00:1e:2a:00:67:f0
[ 28.497063] wlan0: RX AssocResp from 00:1e:2a:00:67:f0 (capab=0x431 status=0 aid=3)
[ 28.497070] wlan0: associated
[ 32.982515] vendor=8086 device=27a1
[ 32.982521] pci 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 33.051858] Linux agpgart interface v0.103
[ 33.171948] [drm] Initialized drm 1.1.0 20060810
[ 33.229680] pci 0000:01:00.0: setting latency timer to 64
[ 33.229967] [drm] Initialized radeon 1.29.0 20080528 on minor 0
[ 33.649629] Xorg:2805 map pfn expected mapping type write-combining for 40000000-48000000, got uncached-minus
[ 33.774038] [drm] Setting GART location based on new memory map
[ 33.775456] [drm] Loading R500 Microcode
[ 33.775515] [drm] Num pipes: 1
[ 33.775530] [drm] writeback test succeeded in 1 usecs
[ 38.154775] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[ 38.156080] input: justinmattock’s mouse #1 as /class/input/input11
[ 38.200232] generic-bluetooth 0005:0000:0000.0004: input: BLUETOOTH HID v0.00 Mouse [justinmattock’s mouse #1] on 00:17:F2:B4:BC:F5


Attachments:
dmesg (91.13 kB)

2009-01-09 00:24:54

by Linus Torvalds

[permalink] [raw]
Subject: Re: [fix] Too async libata breakage



On Thu, 8 Jan 2009, Justin P. Mattock wrote:
>
> O.K. attached is the results of
> dmesg after doing a git-pull
> (system didn't freeze, but there's
> a slew of warnings); i.g.

That's a different thing now - some very annoying warnings indeed.

Tejun, I think it's yours. And I think it should be removed, or at the
very least changed into a WARN_ON_ONCE. Because spamming the console with
this is not a good idea:

Linus

> [ 1.739745] WARNING: at drivers/ata/libata-sff.c:1017 ata_sff_hsm_move+0x49c/0x6d0()
> [ 1.741682] Hardware name: MacBookPro2,2
> [ 1.741682] Modules linked in:
> [ 1.741682] Pid: 1, comm: swapper Not tainted 2.6.28-07812-g5fbbf5f #9
> [ 1.741682] Call Trace:
> [ 1.741682] [<c01292ca>] warn_slowpath+0x76/0xad
> [ 1.741682] [<c0263865>] ? cfb_fillrect+0x182/0x275
> [ 1.741682] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
> [ 1.741682] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
> [ 1.741682] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
> [ 1.741682] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
> [ 1.741682] [<c015a307>] handle_IRQ_event+0x34/0x69
> [ 1.741682] [<c015b47e>] handle_edge_irq+0xc8/0x109
> [ 1.741682] [<c0104bc9>] do_IRQ+0x92/0xad
> [ 1.741682] [<c010396c>] common_interrupt+0x2c/0x34
> [ 1.741682] [<c012007b>] ? sched_debug_show+0x803/0xbbd
> [ 1.741682] [<c012da4f>] ? __do_softirq+0x6b/0x154
> [ 1.741682] [<c012db6c>] ? do_softirq+0x34/0x7e
> [ 1.741682] [<c012db8a>] do_softirq+0x52/0x7e
> [ 1.741682] [<c012dcd6>] irq_exit+0x49/0x77
> [ 1.741682] [<c03e56e9>] __irqentry_text_start+0x79/0x87
> [ 1.741682] [<c0103aa1>] apic_timer_interrupt+0x2d/0x34
> [ 1.741682] [<c0129e84>] ? vprintk+0x2aa/0x2d5
> [ 1.741682] [<c03df731>] printk+0x14/0x1b
> [ 1.741682] [<c05780e8>] mousedev_init+0x70/0x78
> [ 1.741682] [<c0101137>] _stext+0x4f/0x127
> [ 1.741682] [<c0578078>] ? mousedev_init+0x0/0x78
> [ 1.741682] [<c015be1c>] ? register_irq_proc+0x84/0xa0
> [ 1.741682] [<c015be90>] ? init_irq_proc+0x58/0x65
> [ 1.741682] [<c055a309>] kernel_init+0x105/0x156
> [ 1.741682] [<c055a204>] ? kernel_init+0x0/0x156
> [ 1.741682] [<c0103bcb>] kernel_thread_helper+0x7/0x10
> [ 1.741682] ---[ end trace a1303c5fb15c2002 ]---
>
> [ 2.013026] ------------[ cut here ]------------
> [ 2.013028] WARNING: at drivers/ata/libata-sff.c:1017
> ata_sff_hsm_move+0x49c/0x6d0()
> [ 2.013030] Hardware name: MacBookPro2,2
> [ 2.013031] Modules linked in:
> [ 2.013033] Pid: 578, comm: scsi_eh_3 Tainted: G W
> 2.6.28-07812-g5fbbf5f #9
> [ 2.013035] Call Trace:
> [ 2.013038] [<c01292ca>] warn_slowpath+0x76/0xad
> [ 2.013042] [<c011bbac>] ? update_curr+0xae/0x189
> [ 2.013045] [<c011e7c1>] ? dequeue_entity+0x1b/0x20d
> [ 2.013048] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
> [ 2.013050] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
> [ 2.013053] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
> [ 2.013056] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
> [ 2.013059] [<c015a307>] handle_IRQ_event+0x34/0x69
> [ 2.013061] [<c015b47e>] handle_edge_irq+0xc8/0x109
> [ 2.013064] [<c0104bc9>] do_IRQ+0x92/0xad
> [ 2.013066] [<c010396c>] common_interrupt+0x2c/0x34
> [ 2.013068] [<c012007b>] ? sched_debug_show+0x803/0xbbd
> [ 2.013071] [<c012da4f>] ? __do_softirq+0x6b/0x154
> [ 2.013073] [<c012db6c>] ? do_softirq+0x34/0x7e
> [ 2.013075] [<c012db8a>] do_softirq+0x52/0x7e
> [ 2.013077] [<c012dcd6>] irq_exit+0x49/0x77
> [ 2.013080] [<c03e56e9>] __irqentry_text_start+0x79/0x87
> [ 2.013082] [<c0103aa1>] apic_timer_interrupt+0x2d/0x34
> [ 2.013085] [<c03e007b>] ? schedule+0x695/0x8f1
> [ 2.013088] [<c03e214c>] ? _spin_unlock_irqrestore+0x31/0x3c
> [ 2.013090] [<c02e8818>] ata_eh_thaw_port+0x3b/0x3f
> [ 2.013093] [<c02e94b4>] ata_eh_reset+0x6cc/0x9bd
> [ 2.013096] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
> [ 2.013098] [<c02eeb26>] ? ata_sff_prereset+0x0/0x9e
> [ 2.013101] [<c02eea18>] ? ata_sff_softreset+0x0/0x10e
> [ 2.013105] [<c02e032a>] ? ata_dev_init+0x5d/0x80
> [ 2.013107] [<c02ead0a>] ata_eh_recover+0x29c/0xafd
> [ 2.013110] [<c02eea18>] ? ata_sff_softreset+0x0/0x10e
> [ 2.013112] [<c02ecf23>] ? ata_sff_postreset+0x0/0x5a
> [ 2.013115] [<c02eea18>] ? ata_sff_softreset+0x0/0x10e
> [ 2.013117] [<c02eeb26>] ? ata_sff_prereset+0x0/0x9e
> [ 2.013120] [<c011e7c1>] ? dequeue_entity+0x1b/0x20d
> [ 2.013122] [<c011ef1c>] ? dequeue_task_fair+0x5c/0x61
> [ 2.013125] [<c0101e73>] ? __switch_to+0xce/0x14f
> [ 2.013127] [<c03e210f>] ? _spin_unlock_irq+0x12/0x1e
> [ 2.013130] [<c03e210f>] ? _spin_unlock_irq+0x12/0x1e
> [ 2.013132] [<c0125c92>] ? finish_task_switch+0x37/0x8a
> [ 2.013134] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
> [ 2.013137] [<c0131627>] ? lock_timer_base+0x24/0x43
> [ 2.013140] [<c02eea18>] ? ata_sff_softreset+0x0/0x10e
> [ 2.013143] [<c02eeb26>] ? ata_sff_prereset+0x0/0x9e
> [ 2.013145] [<c02eb6f8>] ata_do_eh+0x30/0x72
> [ 2.013148] [<c02ecf23>] ? ata_sff_postreset+0x0/0x5a
> [ 2.013150] [<c02ecf19>] ata_sff_error_handler+0x12b/0x135
> [ 2.013153] [<c02ecf23>] ? ata_sff_postreset+0x0/0x5a
> [ 2.013155] [<c02eea18>] ? ata_sff_softreset+0x0/0x10e
> [ 2.013158] [<c02ebec7>] ata_scsi_error+0x2b5/0x5e6
> [ 2.013162] [<c02ce15b>] scsi_error_handler+0xc1/0x454
> [ 2.013164] [<c012390a>] ? default_wake_function+0x10/0x12
> [ 2.013167] [<c03e2148>] ? _spin_unlock_irqrestore+0x2d/0x3c
> [ 2.013169] [<c011e4d1>] ? complete+0x39/0x43
> [ 2.013171] [<c02ce09a>] ? scsi_error_handler+0x0/0x454
> [ 2.013175] [<c0139f9c>] kthread+0x40/0x66
> [ 2.013178] [<c0139f5c>] ? kthread+0x0/0x66
> [ 2.013180] [<c0103bcb>] kernel_thread_helper+0x7/0x10
> [ 2.013182] ---[ end trace a1303c5fb15c2003 ]---
>
> [ 2.436869] ------------[ cut here ]------------
> [ 2.442849] WARNING: at drivers/ata/libata-sff.c:1017
> ata_sff_hsm_move+0x49c/0x6d0()
> [ 2.446154] Hardware name: MacBookPro2,2
> [ 2.446154] Modules linked in:
> [ 2.446154] Pid: 1, comm: swapper Tainted: G W
> 2.6.28-07812-g5fbbf5f #9
> [ 2.446154] Call Trace:
> [ 2.446154] [<c01292ca>] warn_slowpath+0x76/0xad
> [ 2.446154] [<c011e7c1>] ? dequeue_entity+0x1b/0x20d
> [ 2.446154] [<c0101e73>] ? __switch_to+0xce/0x14f
> [ 2.446154] [<c03e210f>] ? _spin_unlock_irq+0x12/0x1e
> [ 2.446154] [<c0243563>] ? _raw_spin_trylock+0xf/0x30
> [ 2.446154] [<c0125c92>] ? finish_task_switch+0x37/0x8a
> [ 2.446154] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
> [ 2.446154] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
> [ 2.446154] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
> [ 2.446154] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
> [ 2.446154] [<c015a307>] handle_IRQ_event+0x34/0x69
> [ 2.446154] [<c015b47e>] handle_edge_irq+0xc8/0x109
> [ 2.446154] [<c0104bc9>] do_IRQ+0x92/0xad
> [ 2.446154] [<c010396c>] common_interrupt+0x2c/0x34
> [ 2.446154] [<c01c00d8>] ? proc_task_readdir+0x76/0x283
> [ 2.446154] [<c0243830>] ? _raw_spin_lock+0x0/0xf8
> [ 2.446154] [<c03e21f4>] ? _spin_lock+0xd/0xf
> [ 2.446154] [<c01c79a1>] sysfs_new_dirent+0x5a/0xe0
> [ 2.446154] [<c01c7347>] sysfs_add_file_mode+0x2b/0x72
> [ 2.446154] [<c024382c>] ? _raw_spin_unlock+0x74/0x78
> [ 2.446154] [<c03e2164>] ? _spin_unlock+0xd/0xf
> [ 2.446154] [<c01c73a1>] sysfs_add_file+0x13/0x18
> [ 2.446154] [<c01c7445>] sysfs_create_file+0x25/0x27
> [ 2.446154] [<c02b2857>] driver_create_file+0x1b/0x1d
> [ 2.446154] [<c02b1955>] bus_add_driver+0xd9/0x1c2
> [ 2.446154] [<c02b275b>] driver_register+0x86/0xe6
> [ 2.446154] [<c03215a9>] __hid_register_driver+0x43/0x68
> [ 2.446154] [<c0325ba2>] ch_init+0x19/0x1b
> [ 2.446154] [<c0101137>] _stext+0x4f/0x127
> [ 2.446154] [<c0325b89>] ? ch_init+0x0/0x1b
> [ 2.446154] [<c015be1c>] ? register_irq_proc+0x84/0xa0
> [ 2.446154] [<c015be90>] ? init_irq_proc+0x58/0x65
> [ 2.446154] [<c055a309>] kernel_init+0x105/0x156
> [ 2.446154] [<c055a204>] ? kernel_init+0x0/0x156
> [ 2.446154] [<c0103bcb>] kernel_thread_helper+0x7/0x10
> [ 2.446154] ---[ end trace a1303c5fb15c2004 ]---
>
>
> [ 10.336705] ------------[ cut here ]------------
> [ 10.354651] WARNING: at drivers/ata/libata-sff.c:1017
> ata_sff_hsm_move+0x49c/0x6d0()
> [ 10.354651] Hardware name: MacBookPro2,2
> [ 10.354651] Modules linked in:
> [ 10.354651] Pid: 889, comm: udevd Tainted: G W
> 2.6.28-07812-g5fbbf5f #9
> [ 10.354651] Call Trace:
> [ 10.354651] [<c01292ca>] warn_slowpath+0x76/0xad
> [ 10.354651] [<c011b7ad>] ? resched_task+0x25/0x69
> [ 10.354651] [<c03e2141>] ? _spin_unlock_irqrestore+0x26/0x3c
> [ 10.354651] [<c01238ef>] ? try_to_wake_up+0x245/0x250
> [ 10.354651] [<c016e6cf>] ? get_page_from_freelist+0x2a6/0x3ed
> [ 10.354651] [<c0169974>] ? find_get_page+0x22/0x86
> [ 10.354651] [<c016ea87>] ? __alloc_pages_internal+0x9b/0x36a
> [ 10.354651] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
> [ 10.354651] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
> [ 10.354651] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
> [ 10.354651] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
> [ 10.354651] [<c015a307>] handle_IRQ_event+0x34/0x69
> [ 10.354651] [<c015b47e>] handle_edge_irq+0xc8/0x109
> [ 10.354651] [<c0104bc9>] do_IRQ+0x92/0xad
> [ 10.354651] [<c010396c>] common_interrupt+0x2c/0x34
> [ 10.354651] [<c03e007b>] ? schedule+0x695/0x8f1
> [ 10.354651] [<c03e3ee5>] ? do_page_fault+0x272/0x6f9
> [ 10.354651] [<c011e70c>] ? set_next_entity+0xa7/0x113
> [ 10.354651] [<c011eeb9>] ? pick_next_task_fair+0x73/0x7a
> [ 10.354651] [<c018aed4>] ? __slab_free+0x280/0x2b8
> [ 10.354651] [<c018a64d>] ? check_object+0x139/0x190
> [ 10.354651] [<c03e2423>] ? error_code+0x73/0x7c
> [ 10.354651] [<c03e3c73>] ? do_page_fault+0x0/0x6f9
> [ 10.354651] [<c0240320>] ? trace_hardirqs_on_thunk+0xc/0x10
> [ 10.354651] [<c0240330>] ? trace_hardirqs_off_thunk+0xc/0x10
> [ 10.354651] [<c03e2423>] ? error_code+0x73/0x7c
> [ 10.354651] [<c03e3c73>] ? do_page_fault+0x0/0x6f9
> [ 10.354651] [<c03e3c73>] ? do_page_fault+0x0/0x6f9
> [ 10.354651] [<c03e2427>] error_code+0x77/0x7c
> [ 10.354651] ---[ end trace a1303c5fb15c2006 ]---
> [ 10.647515] ------------[ cut here ]------------
>
> [ 10.647515] ------------[ cut here ]------------
> [ 10.654832] WARNING: at drivers/ata/libata-sff.c:1017
> ata_sff_hsm_move+0x49c/0x6d0()
> [ 10.656261] Hardware name: MacBookPro2,2
> [ 10.656261] Modules linked in:
> [ 10.656261] Pid: 893, comm: udevd Tainted: G W
> 2.6.28-07812-g5fbbf5f #9
> [ 10.656261] Call Trace:
> [ 10.656261] [<c01292ca>] warn_slowpath+0x76/0xad
> [ 10.656261] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
> [ 10.656261] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
> [ 10.656261] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
> [ 10.656261] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
> [ 10.656261] [<c015a307>] handle_IRQ_event+0x34/0x69
> [ 10.656261] [<c015b47e>] handle_edge_irq+0xc8/0x109
> [ 10.656261] [<c0104bc9>] do_IRQ+0x92/0xad
> [ 10.656261] [<c010396c>] common_interrupt+0x2c/0x34
> [ 10.656261] [<c011007b>] ? acpi_processor_ffh_cstate_enter+0x3/0x2c
> [ 10.656261] [<c016a048>] ? filemap_fault+0x9/0x308
> [ 10.656261] [<c011a603>] ? ptep_set_access_flags+0x5f/0x69
> [ 10.656261] [<c011b332>] ? kunmap_atomic+0x72/0x92
> [ 10.656261] [<c024382c>] ? _raw_spin_unlock+0x74/0x78
> [ 10.656261] [<c0179723>] __do_fault+0x40/0x345
> [ 10.656261] [<c017b345>] handle_mm_fault+0x29e/0x606
> [ 10.656261] [<c03e405c>] ? do_page_fault+0x3e9/0x6f9
> [ 10.656261] [<c03e3ee3>] ? do_page_fault+0x270/0x6f9
> [ 10.656261] [<c03e3fed>] do_page_fault+0x37a/0x6f9
> [ 10.656261] [<c018a64d>] ? check_object+0x139/0x190
> [ 10.656261] [<c014129b>] ? getnstimeofday+0x56/0xdf
> [ 10.656261] [<c03e2141>] ? _spin_unlock_irqrestore+0x26/0x3c
> [ 10.656261] [<c013cee5>] ? hrtimer_start_range_ns+0x234/0x23f
> [ 10.656261] [<c03e2141>] ? _spin_unlock_irqrestore+0x26/0x3c
> [ 10.656261] [<c013cee5>] ? hrtimer_start_range_ns+0x234/0x23f
> [ 10.656261] [<c03e210f>] ? _spin_unlock_irq+0x12/0x1e
> [ 10.656261] [<c03e210f>] ? _spin_unlock_irq+0x12/0x1e
> [ 10.656261] [<c012c65d>] ? do_setitimer+0x160/0x2d9
> [ 10.656261] [<c0240330>] ? trace_hardirqs_off_thunk+0xc/0x10
> [ 10.656261] [<c03e2423>] ? error_code+0x73/0x7c
> [ 10.656261] [<c03e3c73>] ? do_page_fault+0x0/0x6f9
> [ 10.656261] [<c03e3c73>] ? do_page_fault+0x0/0x6f9
> [ 10.656261] [<c03e2427>] error_code+0x77/0x7c
> [ 10.656261] ---[ end trace a1303c5fb15c2007 ]---
> [ 10.910249] ------------[ cut here ]------------
>
> [ 10.910249] ------------[ cut here ]------------
> [ 10.916793] WARNING: at drivers/ata/libata-sff.c:1017
> ata_sff_hsm_move+0x49c/0x6d0()
> [ 10.920003] Hardware name: MacBookPro2,2
> [ 10.920003] Modules linked in:
> [ 10.920003] Pid: 891, comm: udevd Tainted: G W
> 2.6.28-07812-g5fbbf5f #9
> [ 10.920003] Call Trace:
> [ 10.920003] [<c01292ca>] warn_slowpath+0x76/0xad
> [ 10.920003] [<c0180030>] ? move_page_tables+0x88/0x28b
> [ 10.920003] [<c018aed4>] ? __slab_free+0x280/0x2b8
> [ 10.920003] [<c018beb3>] ? kmem_cache_free+0xae/0xc2
> [ 10.920003] [<c034872d>] ? __kfree_skb+0x73/0x76
> [ 10.920003] [<c034872d>] ? __kfree_skb+0x73/0x76
> [ 10.920003] [<c0348760>] ? kfree_skb+0x30/0x32
> [ 10.920003] [<c03ab36c>] ? unix_dgram_sendmsg+0x437/0x47b
> [ 10.920003] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
> [ 10.920003] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
> [ 10.920003] [<c017b345>] ? handle_mm_fault+0x29e/0x606
> [ 10.920003] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
> [ 10.920003] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
> [ 10.920003] [<c015a307>] handle_IRQ_event+0x34/0x69
> [ 10.920003] [<c015b47e>] handle_edge_irq+0xc8/0x109
> [ 10.920003] [<c0104bc9>] do_IRQ+0x92/0xad
> [ 10.920003] [<c010396c>] common_interrupt+0x2c/0x34
> [ 10.920003] [<c0116eed>] ? __ticket_spin_trylock+0x4/0x21
> [ 10.920003] [<c0243883>] _raw_spin_lock+0x53/0xf8
> [ 10.920003] [<c018a64d>] ? check_object+0x139/0x190
> [ 10.920003] [<c03e21f4>] _spin_lock+0xd/0xf
> [ 10.920003] [<c023aa85>] _atomic_dec_and_lock+0x29/0x48
> [ 10.920003] [<c019e26d>] iput+0x29/0x53
> [ 10.920003] [<c019bea5>] dentry_iput+0x81/0x9c
> [ 10.920003] [<c019bf74>] d_kill+0x32/0x4c
> [ 10.920003] [<c019c663>] dput+0x101/0x10a
> [ 10.920003] [<c018fed3>] __fput+0x13b/0x15c
> [ 10.920003] [<c018ff12>] fput+0x1e/0x20
> [ 10.920003] [<c018d67f>] filp_close+0x56/0x60
> [ 10.920003] [<c018d6f8>] sys_close+0x6f/0xa9
> [ 10.920003] [<c010329f>] sysenter_do_call+0x12/0x34
> [ 10.920003] ---[ end trace a1303c5fb15c2008 ]---
> [ 11.187174] ------------[ cut here ]------------
> [ 11.190008] WARNING: at drivers/ata/libata-sff.c:1017
> ata_sff_hsm_move+0x49c/0x6d0()
> [ 11.196573] Hardware name: MacBookPro2,2
> [ 11.203397] Modules linked in:
> [ 11.209319] Pid: 923, comm: path_id Tainted: G W
> 2.6.28-07812-g5fbbf5f #9
> [ 11.219223] Call Trace:
> [ 11.219223] [<c01292ca>] warn_slowpath+0x76/0xad
> [ 11.219223] [<c0230030>] ? elv_attr_store+0x15/0x5e
> [ 11.219223] [<c011160a>] ? flush_tlb_page+0x47/0x6e
> [ 11.219223] [<c011a603>] ? ptep_set_access_flags+0x5f/0x69
> [ 11.219223] [<c011b332>] ? kunmap_atomic+0x72/0x92
> [ 11.256355] [<c024382c>] ? _raw_spin_unlock+0x74/0x78
> [ 11.256355] [<c017a1b4>] ? do_wp_page+0x586/0x5eb
> [ 11.272445] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
> [ 11.272445] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
> [ 11.272445] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
> [ 11.272445] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
> [ 11.272445] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
> [ 11.304326] [<c015a307>] handle_IRQ_event+0x34/0x69
> [ 11.304326] [<c015b47e>] handle_edge_irq+0xc8/0x109
> [ 11.304326] [<c0104bc9>] do_IRQ+0x92/0xad
> [ 11.304326] [<c010396c>] common_interrupt+0x2c/0x34
> [ 11.304326] [<c0196c85>] ? putname+0x29/0x34
> [ 11.304326] [<c018007b>] ? move_page_tables+0xd3/0x28b
> [ 11.304326] [<c018beb7>] ? kmem_cache_free+0xb2/0xc2
> [ 11.304326] [<c0196c85>] ? putname+0x29/0x34
> [ 11.304326] [<c0196c85>] putname+0x29/0x34
> [ 11.304326] [<c0198701>] user_path_at+0x4a/0x67
> [ 11.304326] [<c013a41e>] ? remove_wait_queue+0x35/0x39
> [ 11.304326] [<c018feec>] ? __fput+0x154/0x15c
> [ 11.304326] [<c018e048>] sys_chdir+0x23/0x64
> [ 11.304326] [<c010329f>] sysenter_do_call+0x12/0x34
> [ 11.304326] ---[ end trace a1303c5fb15c2009 ]---
> [ 11.404868] ------------[ cut here ]------------
> [ 11.411491] WARNING: at drivers/ata/libata-sff.c:1017
> ata_sff_hsm_move+0x49c/0x6d0()
> [ 11.412573] Hardware name: MacBookPro2,2
> [ 11.412573] Modules linked in:
> [ 11.412573] Pid: 966, comm: udevd Tainted: G W
> 2.6.28-07812-g5fbbf5f #9
> [ 11.412573] Call Trace:
> [ 11.412573] [<c01292ca>] warn_slowpath+0x76/0xad
> [ 11.412573] [<c0169974>] ? find_get_page+0x22/0x86
> [ 11.412573] [<c0169cb5>] ? find_lock_page+0x18/0x4c
> [ 11.412573] [<c016a0d0>] ? filemap_fault+0x91/0x308
> [ 11.412573] [<c011b332>] ? kunmap_atomic+0x72/0x92
> [ 11.412573] [<c0169c9a>] ? unlock_page+0x43/0x46
> [ 11.412573] [<c01799f0>] ? __do_fault+0x30d/0x345
> [ 11.412573] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
> [ 11.412573] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
> [ 11.412573] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
> [ 11.412573] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
> [ 11.412573] [<c015a307>] handle_IRQ_event+0x34/0x69
> [ 11.412573] [<c015b47e>] handle_edge_irq+0xc8/0x109
> [ 11.412573] [<c0104bc9>] do_IRQ+0x92/0xad
> [ 11.412573] [<c0196cb5>] ? getname+0x25/0xbc
> [ 11.412573] [<c010396c>] common_interrupt+0x2c/0x34
> [ 11.412573] [<c0196cb5>] ? getname+0x25/0xbc
> [ 11.412573] [<c018007b>] ? move_page_tables+0xd3/0x28b
> [ 11.412573] [<c018bf5a>] ? kmem_cache_alloc+0x93/0xcc
> [ 11.412573] [<c0196cb5>] ? getname+0x25/0xbc
> [ 11.412573] [<c0196cb5>] getname+0x25/0xbc
> [ 11.412573] [<c01986d1>] user_path_at+0x1a/0x67
> [ 11.412573] [<c03e210f>] ? _spin_unlock_irq+0x12/0x1e
> [ 11.412573] [<c03e210f>] ? _spin_unlock_irq+0x12/0x1e
> [ 11.412573] [<c012c65d>] ? do_setitimer+0x160/0x2d9
> [ 11.412573] [<c0191e60>] sys_readlinkat+0x2b/0x86
> [ 11.412573] [<c0191ed3>] sys_readlink+0x18/0x1a
> [ 11.412573] [<c010329f>] sysenter_do_call+0x12/0x34
> [ 11.412573] ---[ end trace a1303c5fb15c200a ]---
> [ 11.631708] ------------[ cut here ]------------
> [ 11.637944] WARNING: at drivers/ata/libata-sff.c:1017
> ata_sff_hsm_move+0x49c/0x6d0()
> [ 11.640002] Hardware name: MacBookPro2,2
> [ 11.640002] Modules linked in:
> [ 11.640002] Pid: 960, comm: udevd Tainted: G W
> 2.6.28-07812-g5fbbf5f #9
> [ 11.640002] Call Trace:
> [ 11.640002] [<c01292ca>] warn_slowpath+0x76/0xad
> [ 11.640002] [<c0169974>] ? find_get_page+0x22/0x86
> [ 11.640002] [<c0169cb5>] ? find_lock_page+0x18/0x4c
> [ 11.640002] [<c016a0d0>] ? filemap_fault+0x91/0x308
> [ 11.640002] [<c011b332>] ? kunmap_atomic+0x72/0x92
> [ 11.640002] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
> [ 11.640002] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
> [ 11.640002] [<c018aed4>] ? __slab_free+0x280/0x2b8
> [ 11.640002] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
> [ 11.640002] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
> [ 11.640002] [<c015a307>] handle_IRQ_event+0x34/0x69
> [ 11.640002] [<c015b47e>] handle_edge_irq+0xc8/0x109
> [ 11.640002] [<c0104bc9>] do_IRQ+0x92/0xad
> [ 11.640002] [<c0196cb5>] ? getname+0x25/0xbc
> [ 11.640002] [<c010396c>] common_interrupt+0x2c/0x34
> [ 11.640002] [<c0196cb5>] ? getname+0x25/0xbc
> [ 11.640002] [<c018007b>] ? move_page_tables+0xd3/0x28b
> [ 11.640002] [<c018bf5a>] ? kmem_cache_alloc+0x93/0xcc
> [ 11.640002] [<c0196cb5>] ? getname+0x25/0xbc
> [ 11.640002] [<c0196cb5>] getname+0x25/0xbc
> [ 11.640002] [<c01986d1>] user_path_at+0x1a/0x67
> [ 11.640002] [<c012c65d>] ? do_setitimer+0x160/0x2d9
> [ 11.640002] [<c0191e60>] sys_readlinkat+0x2b/0x86
> [ 11.640002] [<c0191ed3>] sys_readlink+0x18/0x1a
> [ 11.640002] [<c010329f>] sysenter_do_call+0x12/0x34
> [ 11.640002] ---[ end trace a1303c5fb15c200b ]---
> [ 11.859983] ------------[ cut here ]------------
> [ 11.863325] WARNING: at drivers/ata/libata-sff.c:1017
> ata_sff_hsm_move+0x49c/0x6d0()
> [ 11.870937] Hardware name: MacBookPro2,2
> [ 11.878612] Modules linked in:
> [ 11.882417] Pid: 988, comm: udevd Tainted: G W
> 2.6.28-07812-g5fbbf5f #9
> [ 11.889932] Call Trace:
> [ 11.896866] [<c01292ca>] warn_slowpath+0x76/0xad
> [ 11.901313] [<c011b332>] ? kunmap_atomic+0x72/0x92
> [ 11.906787] [<c01799f0>] ? __do_fault+0x30d/0x345
> [ 11.906787] [<c0212f70>] ? avc_has_perm+0x3e/0x48
> [ 11.906787] [<c018a64d>] ? check_object+0x139/0x190
> [ 11.932317] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
> [ 11.932317] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
> [ 11.932317] [<c0217852>] ? selinux_inode_alloc_security+0x2e/0x73
> [ 11.932317] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
> [ 11.932317] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
> [ 11.932317] [<c015a307>] handle_IRQ_event+0x34/0x69
> [ 11.932317] [<c015b47e>] handle_edge_irq+0xc8/0x109
> [ 11.932317] [<c0104bc9>] do_IRQ+0x92/0xad
> [ 11.932317] [<c0196cb5>] ? getname+0x25/0xbc
> [ 11.932317] [<c010396c>] common_interrupt+0x2c/0x34
> [ 11.932317] [<c0196cb5>] ? getname+0x25/0xbc
> [ 11.932317] [<c018007b>] ? move_page_tables+0xd3/0x28b
> [ 12.009738] [<c018bf5a>] ? kmem_cache_alloc+0x93/0xcc
> [ 12.009738] [<c0196cb5>] ? getname+0x25/0xbc
> [ 12.009738] [<c0196cb5>] getname+0x25/0xbc
> [ 12.009738] [<c018d74b>] do_sys_open+0x19/0xbc
> [ 12.009738] [<c018d83a>] sys_open+0x23/0x2b
> [ 12.009738] [<c010329f>] sysenter_do_call+0x12/0x34
> [ 12.009738] ---[ end trace a1303c5fb15c200c ]---
> [ 12.065027] ------------[ cut here ]------------
> [ 12.070720] WARNING: at drivers/ata/libata-sff.c:1017
> ata_sff_hsm_move+0x49c/0x6d0()
> [ 12.070720] Hardware name: MacBookPro2,2
> [ 12.070720] Modules linked in:
> [ 12.070720] Pid: 1018, comm: udevd Tainted: G W
> 2.6.28-07812-g5fbbf5f #9
> [ 12.070720] Call Trace:
> [ 12.070720] [<c01292ca>] warn_slowpath+0x76/0xad
> [ 12.070720] [<c0190029>] ? get_empty_filp+0x82/0x175
> [ 12.070720] [<c018fd49>] ? file_free_rcu+0x35/0x38
> [ 12.070720] [<c011160a>] ? flush_tlb_page+0x47/0x6e
> [ 12.070720] [<c011a603>] ? ptep_set_access_flags+0x5f/0x69
> [ 12.070720] [<c011b332>] ? kunmap_atomic+0x72/0x92
> [ 12.070720] [<c024382c>] ? _raw_spin_unlock+0x74/0x78
> [ 12.070720] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
> [ 12.070720] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
> [ 12.070720] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
> [ 12.070720] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
> [ 12.070720] [<c015a307>] handle_IRQ_event+0x34/0x69
> [ 12.070720] [<c015b47e>] handle_edge_irq+0xc8/0x109
> [ 12.070720] [<c0104bc9>] do_IRQ+0x92/0xad
> [ 12.070720] [<c010396c>] common_interrupt+0x2c/0x34
> [ 12.070720] [<c03e007b>] ? schedule+0x695/0x8f1
> [ 12.070720] [<c03e3ee5>] ? do_page_fault+0x272/0x6f9
> [ 12.070720] [<c0190029>] ? get_empty_filp+0x82/0x175
> [ 12.070720] [<c018fd49>] ? file_free_rcu+0x35/0x38
> [ 12.070720] [<c018a64d>] ? check_object+0x139/0x190
> [ 12.070720] [<c03e2423>] ? error_code+0x73/0x7c
> [ 12.070720] [<c03e3c73>] ? do_page_fault+0x0/0x6f9
> [ 12.070720] [<c0240320>] ? trace_hardirqs_on_thunk+0xc/0x10
> [ 12.070720] [<c0240330>] ? trace_hardirqs_off_thunk+0xc/0x10
> [ 12.070720] [<c03e2423>] ? error_code+0x73/0x7c
> [ 12.070720] [<c03e3c73>] ? do_page_fault+0x0/0x6f9
> [ 12.070720] [<c03e3c73>] ? do_page_fault+0x0/0x6f9
> [ 12.070720] [<c03e2427>] error_code+0x77/0x7c
> [ 12.070720] ---[ end trace a1303c5fb15c200d ]---
> [ 12.300395] ------------[ cut here ]------------
> [ 12.306909] WARNING: at drivers/ata/libata-sff.c:1017
> ata_sff_hsm_move+0x49c/0x6d0()
> [ 12.310003] Hardware name: MacBookPro2,2
> [ 12.310003] Modules linked in:
> [ 12.310003] Pid: 999, comm: udevd Tainted: G W
> 2.6.28-07812-g5fbbf5f #9
> [ 12.310003] Call Trace:
> [ 12.310003] [<c01292ca>] warn_slowpath+0x76/0xad
> [ 12.310003] [<c024382c>] ? _raw_spin_unlock+0x74/0x78
> [ 12.310003] [<c03e2164>] ? _spin_unlock+0xd/0xf
> [ 12.310003] [<c016e6cf>] ? get_page_from_freelist+0x2a6/0x3ed
> [ 12.310003] [<c0169974>] ? find_get_page+0x22/0x86
> [ 12.310003] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
> [ 12.310003] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
> [ 12.310003] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
> [ 12.310003] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
> [ 12.310003] [<c015a307>] handle_IRQ_event+0x34/0x69
> [ 12.310003] [<c015b47e>] handle_edge_irq+0xc8/0x109
> [ 12.310003] [<c0104bc9>] do_IRQ+0x92/0xad
> [ 12.310003] [<c010396c>] common_interrupt+0x2c/0x34
> [ 12.310003] [<c03e00d8>] ? schedule+0x6f2/0x8f1
> [ 12.310003] [<c013d32b>] ? down_read_trylock+0x17/0x20
> [ 12.310003] [<c03e3f32>] do_page_fault+0x2bf/0x6f9
> [ 12.310003] [<c011e70c>] ? set_next_entity+0xa7/0x113
> [ 12.310003] [<c014129b>] ? getnstimeofday+0x56/0xdf
> [ 12.310003] [<c023de7b>] ? rb_insert_color+0x9b/0xc0
> [ 12.310003] [<c03e2141>] ? _spin_unlock_irqrestore+0x26/0x3c
> [ 12.310003] [<c013cee5>] ? hrtimer_start_range_ns+0x234/0x23f
> [ 12.310003] [<c03e2141>] ? _spin_unlock_irqrestore+0x26/0x3c
> [ 12.310003] [<c013cee5>] ? hrtimer_start_range_ns+0x234/0x23f
> [ 12.310003] [<c03e210f>] ? _spin_unlock_irq+0x12/0x1e
> [ 12.310003] [<c03e210f>] ? _spin_unlock_irq+0x12/0x1e
> [ 12.310003] [<c012c65d>] ? do_setitimer+0x160/0x2d9
> [ 12.310003] [<c0240330>] ? trace_hardirqs_off_thunk+0xc/0x10
> [ 12.310003] [<c03e2423>] ? error_code+0x73/0x7c
> [ 12.310003] [<c03e3c73>] ? do_page_fault+0x0/0x6f9
> [ 12.310003] [<c03e3c73>] ? do_page_fault+0x0/0x6f9
> [ 12.310003] [<c03e2427>] error_code+0x77/0x7c
> [ 12.310003] ---[ end trace a1303c5fb15c200e ]---
> [ 12.547900] ------------[ cut here ]------------
> [ 12.554293] WARNING: at drivers/ata/libata-sff.c:1017
> ata_sff_hsm_move+0x49c/0x6d0()
> [ 12.555950] Hardware name: MacBookPro2,2
> [ 12.555950] Modules linked in:
> [ 12.555950] Pid: 998, comm: udevd Tainted: G W
> 2.6.28-07812-g5fbbf5f #9
> [ 12.555950] Call Trace:
> [ 12.555950] [<c01292ca>] warn_slowpath+0x76/0xad
> [ 12.555950] [<c018a64d>] ? check_object+0x139/0x190
> [ 12.601146] [<c03e3ee3>] ? do_page_fault+0x270/0x6f9
> [ 12.601146] [<c03e405c>] ? do_page_fault+0x3e9/0x6f9
> [ 12.601146] [<c018bcfd>] ? kfree+0xd5/0xe9
> [ 12.601146] [<c015c92f>] ? call_rcu+0x63/0x74
> [ 12.601146] [<c018fd0e>] ? put_filp+0x47/0x4d
> [ 12.601146] [<c0196c53>] ? release_open_intent+0x16/0x1f
> [ 12.601146] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
> [ 12.601146] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
> [ 12.601146] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
> [ 12.601146] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
> [ 12.601146] [<c015a307>] handle_IRQ_event+0x34/0x69
> [ 12.601146] [<c015b47e>] handle_edge_irq+0xc8/0x109
> [ 12.601146] [<c0104bc9>] do_IRQ+0x92/0xad
> [ 12.601146] [<c010396c>] common_interrupt+0x2c/0x34
> [ 12.601146] ---[ end trace a1303c5fb15c200f ]---
>
> [ 20.550550] ------------[ cut here ]------------
> [ 20.550554] WARNING: at drivers/ata/libata-sff.c:1017
> ata_sff_hsm_move+0x49c/0x6d0()
> [ 20.550556] Hardware name: MacBookPro2,2
> [ 20.550558] Modules linked in: fan battery container ipt_LOG xt_limit
> xt_tcpudp xt_state ipt_addrtype nf_nat_irc nf_conntrack_irc nf_nat_ftp nf_nat
> nf_conntrack_ftp ipmi_watchdog ipmi_msghandler isight_firmware uinput
> arpt_mangle arptable_filter arp_tables nf_conntrack_ipv4 nf_conntrack
> nf_defrag_ipv4 iptable_mangle iptable_filter ip_tables x_tables coretemp
> eeprom acpi_cpufreq cpufreq_powersave cpufreq_performance cpufreq_ondemand
> cpufreq_conservative firewire_sbp2 firewire_core raw1394 appletouch
> snd_hda_codec_idt uvcvideo ohci1394 thermal joydev snd_hda_intel snd_hda_codec
> ath9k ieee1394 video ac button processor applesmc uhci_hcd ehci_hcd snd_hwdep
> snd_pcm snd_page_alloc pata_acpi evdev
> [ 20.550621] Pid: 0, comm: swapper Tainted: G W
> 2.6.28-07812-g5fbbf5f #9
> [ 20.550623] Call Trace:
> [ 20.550630] [<c01292ca>] warn_slowpath+0x76/0xad
> [ 20.550635] [<c013e562>] ? sched_clock_cpu+0x137/0x146
> [ 20.550639] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
> [ 20.550642] [<c013c4e7>] ? hrtimer_forward+0xf9/0x10f
> [ 20.550646] [<c014129b>] ? getnstimeofday+0x56/0xdf
> [ 20.550650] [<c01119f4>] ? lapic_next_event+0x18/0x1c
> [ 20.550653] [<c0143380>] ? clockevents_program_event+0xe0/0xef
> [ 20.550659] [<c03e2141>] ? _spin_unlock_irqrestore+0x26/0x3c
> [ 20.550662] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
> [ 20.550665] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
> [ 20.550669] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
> [ 20.550672] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
> [ 20.550677] [<c015a307>] handle_IRQ_event+0x34/0x69
> [ 20.550680] [<c015b47e>] handle_edge_irq+0xc8/0x109
> [ 20.550684] [<c0104bc9>] do_IRQ+0x92/0xad
> [ 20.550687] [<c010396c>] common_interrupt+0x2c/0x34
> [ 20.550699] [<f806c727>] ? acpi_idle_enter_bm+0x2df/0x36b [processor]
> [ 20.550703] [<c0144b5a>] ? tick_nohz_restart_sched_tick+0x139/0x14b
> [ 20.550708] [<c031e695>] cpuidle_idle_call+0x65/0x98
> [ 20.550711] [<c01023b7>] cpu_idle+0x84/0xa5
> [ 20.550714] [<c03d388f>] rest_init+0x53/0x55
> [ 20.550717] ---[ end trace a1303c5fb15c2010 ]---
> [ 20.551664] ------------[ cut here ]------------
> [ 20.551669] WARNING: at drivers/ata/libata-sff.c:1017
> ata_sff_hsm_move+0x49c/0x6d0()
> [ 20.551673] Hardware name: MacBookPro2,2
> [ 20.551676] Modules linked in: fan battery container ipt_LOG xt_limit
> xt_tcpudp xt_state ipt_addrtype nf_nat_irc nf_conntrack_irc nf_nat_ftp nf_nat
> nf_conntrack_ftp ipmi_watchdog ipmi_msghandler isight_firmware uinput
> arpt_mangle arptable_filter arp_tables nf_conntrack_ipv4 nf_conntrack
> nf_defrag_ipv4 iptable_mangle iptable_filter ip_tables x_tables coretemp
> eeprom acpi_cpufreq cpufreq_powersave cpufreq_performance cpufreq_ondemand
> cpufreq_conservative firewire_sbp2 firewire_core raw1394 appletouch
> snd_hda_codec_idt uvcvideo ohci1394 thermal joydev snd_hda_intel snd_hda_codec
> ath9k ieee1394 video ac button processor applesmc uhci_hcd ehci_hcd snd_hwdep
> snd_pcm snd_page_alloc pata_acpi evdev
> [ 20.551785] Pid: 0, comm: swapper Tainted: G W
> 2.6.28-07812-g5fbbf5f #9
> [ 20.551789] Call Trace:
> [ 20.551797] [<c01292ca>] warn_slowpath+0x76/0xad
> [ 20.551805] [<c03e2141>] ? _spin_unlock_irqrestore+0x26/0x3c
> [ 20.551812] [<c01238ef>] ? try_to_wake_up+0x245/0x250
> [ 20.551819] [<c03e2141>] ? _spin_unlock_irqrestore+0x26/0x3c
> [ 20.551828] [<c02ce674>] ? scsi_eh_scmd_add+0x83/0x8c
> [ 20.551835] [<c03e2141>] ? _spin_unlock_irqrestore+0x26/0x3c
> [ 20.551842] [<c02ce674>] ? scsi_eh_scmd_add+0x83/0x8c
> [ 20.551849] [<c02ce6cf>] ? scsi_times_out+0x52/0x6c
> [ 20.551856] [<c0235c66>] ? blk_rq_timed_out+0x11/0x4b
> [ 20.551863] [<c0235ce3>] ? blk_abort_request+0x43/0x46
> [ 20.551870] [<c02ebb5c>] ? ata_qc_schedule_eh+0x49/0x50
> [ 20.551877] [<c02e1d9f>] ? ata_qc_complete+0x75/0x1a9
> [ 20.551884] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
> [ 20.551892] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
> [ 20.551899] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
> [ 20.551906] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
> [ 20.551914] [<c015a307>] handle_IRQ_event+0x34/0x69
> [ 20.551921] [<c015b47e>] handle_edge_irq+0xc8/0x109
> [ 20.551928] [<c0104bc9>] do_IRQ+0x92/0xad
> [ 20.551934] [<c010396c>] common_interrupt+0x2c/0x34
> [ 20.551954] [<f806c727>] ? acpi_idle_enter_bm+0x2df/0x36b [processor]
> [ 20.551961] [<c0144b5a>] ? tick_nohz_restart_sched_tick+0x139/0x14b
> [ 20.551969] [<c031e695>] cpuidle_idle_call+0x65/0x98
> [ 20.551975] [<c01023b7>] cpu_idle+0x84/0xa5
> [ 20.551982] [<c03d388f>] rest_init+0x53/0x55
> [ 20.551986] ---[ end trace a1303c5fb15c2011 ]---
> [ 20.558509] ------------[ cut here ]------------
> [ 20.558512] WARNING: at drivers/ata/libata-sff.c:1017
> ata_sff_hsm_move+0x49c/0x6d0()
> [ 20.558514] Hardware name: MacBookPro2,2
> [ 20.558516] Modules linked in: fan battery container ipt_LOG xt_limit
> xt_tcpudp xt_state ipt_addrtype nf_nat_irc nf_conntrack_irc nf_nat_ftp nf_nat
> nf_conntrack_ftp ipmi_watchdog ipmi_msghandler isight_firmware uinput
> arpt_mangle arptable_filter arp_tables nf_conntrack_ipv4 nf_conntrack
> nf_defrag_ipv4 iptable_mangle iptable_filter ip_tables x_tables coretemp
> eeprom acpi_cpufreq cpufreq_powersave cpufreq_performance cpufreq_ondemand
> cpufreq_conservative firewire_sbp2 firewire_core raw1394 appletouch
> snd_hda_codec_idt uvcvideo ohci1394 thermal joydev snd_hda_intel snd_hda_codec
> ath9k ieee1394 video ac button processor applesmc uhci_hcd ehci_hcd snd_hwdep
> snd_pcm snd_page_alloc pata_acpi evdev
> [ 20.558573] Pid: 2519, comm: hald-addon-macb Tainted: G W
> 2.6.28-07812-g5fbbf5f #9
> [ 20.558575] Call Trace:
> [ 20.558580] [<c01292ca>] warn_slowpath+0x76/0xad
> [ 20.558585] [<c011b332>] ? kunmap_atomic+0x72/0x92
> [ 20.558588] [<c024382c>] ? _raw_spin_unlock+0x74/0x78
> [ 20.558600] [<c03e3ee3>] ? do_page_fault+0x270/0x6f9
> [ 20.558600] [<c03e405c>] ? do_page_fault+0x3e9/0x6f9
> [ 20.558600] [<c023c89f>] ? prio_tree_insert+0x18c/0x1ff
> [ 20.558602] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
> [ 20.558606] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
> [ 20.558610] [<c03e2164>] ? _spin_unlock+0xd/0xf
> [ 20.558613] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
> [ 20.558617] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
> [ 20.558630] [<c015a307>] handle_IRQ_event+0x34/0x69
> [ 20.558630] [<c015b47e>] handle_edge_irq+0xc8/0x109
> [ 20.558630] [<c0104bc9>] do_IRQ+0x92/0xad
> [ 20.558631] [<c010396c>] common_interrupt+0x2c/0x34
> [ 20.558633] ---[ end trace a1303c5fb15c2012 ]---
> [ 20.623177] ------------[ cut here ]------------
> [ 20.623181] WARNING: at drivers/ata/libata-sff.c:1017
> ata_sff_hsm_move+0x49c/0x6d0()
> [ 20.623184] Hardware name: MacBookPro2,2
> [ 20.623185] Modules linked in: fan battery container ipt_LOG xt_limit
> xt_tcpudp xt_state ipt_addrtype nf_nat_irc nf_conntrack_irc nf_nat_ftp nf_nat
> nf_conntrack_ftp ipmi_watchdog ipmi_msghandler isight_firmware uinput
> arpt_mangle arptable_filter arp_tables nf_conntrack_ipv4 nf_conntrack
> nf_defrag_ipv4 iptable_mangle iptable_filter ip_tables x_tables coretemp
> eeprom acpi_cpufreq cpufreq_powersave cpufreq_performance cpufreq_ondemand
> cpufreq_conservative firewire_sbp2 firewire_core raw1394 appletouch
> snd_hda_codec_idt uvcvideo ohci1394 thermal joydev snd_hda_intel snd_hda_codec
> ath9k ieee1394 video ac button processor applesmc uhci_hcd ehci_hcd snd_hwdep
> snd_pcm snd_page_alloc pata_acpi evdev
> [ 20.623245] Pid: 2519, comm: hald-addon-macb Tainted: G W
> 2.6.28-07812-g5fbbf5f #9
> [ 20.623247] Call Trace:
> [ 20.623252] [<c01292ca>] warn_slowpath+0x76/0xad
> [ 20.623257] [<c011b332>] ? kunmap_atomic+0x72/0x92
> [ 20.623260] [<c024382c>] ? _raw_spin_unlock+0x74/0x78
> [ 20.623264] [<c03e3ee3>] ? do_page_fault+0x270/0x6f9
> [ 20.623267] [<c03e405c>] ? do_page_fault+0x3e9/0x6f9
> [ 20.623272] [<c03e2164>] ? _spin_unlock+0xd/0xf
> [ 20.623276] [<c017e7d2>] ? vma_adjust+0x31a/0x378
> [ 20.623279] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
> [ 20.623283] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
> [ 20.623286] [<c017f421>] ? mmap_region+0x17e/0x435
> [ 20.623289] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
> [ 20.623293] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
> [ 20.623296] [<c015a307>] handle_IRQ_event+0x34/0x69
> [ 20.623300] [<c015b47e>] handle_edge_irq+0xc8/0x109
> [ 20.623304] [<c0104bc9>] do_IRQ+0x92/0xad
> [ 20.623307] [<c010396c>] common_interrupt+0x2c/0x34
> [ 20.623309] ---[ end trace a1303c5fb15c2013 ]---
> [ 20.624217] ------------[ cut here ]------------
> [ 20.624220] WARNING: at drivers/ata/libata-sff.c:1017
> ata_sff_hsm_move+0x49c/0x6d0()
> [ 20.624222] Hardware name: MacBookPro2,2
> [ 20.624224] Modules linked in: fan battery container ipt_LOG xt_limit
> xt_tcpudp xt_state ipt_addrtype nf_nat_irc nf_conntrack_irc nf_nat_ftp nf_nat
> nf_conntrack_ftp ipmi_watchdog ipmi_msghandler isight_firmware uinput
> arpt_mangle arptable_filter arp_tables nf_conntrack_ipv4 nf_conntrack
> nf_defrag_ipv4 iptable_mangle iptable_filter ip_tables x_tables coretemp
> eeprom acpi_cpufreq cpufreq_powersave cpufreq_performance cpufreq_ondemand
> cpufreq_conservative firewire_sbp2 firewire_core raw1394 appletouch
> snd_hda_codec_idt uvcvideo ohci1394 thermal joydev snd_hda_intel snd_hda_codec
> ath9k ieee1394 video ac button processor applesmc uhci_hcd ehci_hcd snd_hwdep
> snd_pcm snd_page_alloc pata_acpi evdev
> [ 20.624279] Pid: 2519, comm: hald-addon-macb Tainted: G W
> 2.6.28-07812-g5fbbf5f #9
> [ 20.624281] Call Trace:
> [ 20.624285] [<c01292ca>] warn_slowpath+0x76/0xad
> [ 20.624289] [<c023fac6>] ? vsnprintf+0x866/0x8c5
> [ 20.624293] [<c03e2141>] ? _spin_unlock_irqrestore+0x26/0x3c
> [ 20.624296] [<c01299ba>] ? release_console_sem+0x1b8/0x1e5
> [ 20.624300] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
> [ 20.624303] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
> [ 20.624307] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
> [ 20.624310] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
> [ 20.624314] [<c015a307>] handle_IRQ_event+0x34/0x69
> [ 20.624317] [<c015b47e>] handle_edge_irq+0xc8/0x109
> [ 20.624320] [<c0104bc9>] do_IRQ+0x92/0xad
> [ 20.624323] [<c010396c>] common_interrupt+0x2c/0x34
> [ 20.624328] [<c017734f>] ? __inc_zone_state+0x1b/0x7b
> [ 20.624331] [<c01773cc>] __inc_zone_page_state+0x1d/0x1f
> [ 20.624334] [<c018168f>] page_add_new_anon_rmap+0x44/0x6a
> [ 20.624338] [<c017b2a5>] handle_mm_fault+0x1fe/0x606
> [ 20.624343] [<c02155a8>] ? selinux_socket_unix_stream_connect+0xa4/0xac
> [ 20.624346] [<c03e3ee3>] ? do_page_fault+0x270/0x6f9
> [ 20.624349] [<c03e3fed>] do_page_fault+0x37a/0x6f9
> [ 20.624352] [<c03e20e4>] ? _read_unlock+0xd/0xf
> [ 20.624357] [<c03454d3>] ? sock_def_readable+0x60/0x65
> [ 20.624362] [<c03acb34>] ? unix_stream_connect+0x338/0x398
> [ 20.624365] [<c0343d18>] ? sys_connect+0x65/0x82
> [ 20.624368] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
> [ 20.624371] [<c03e210f>] ? _spin_unlock_irq+0x12/0x1e
> [ 20.624374] [<c03e210f>] ? _spin_unlock_irq+0x12/0x1e
> [ 20.624379] [<c01326c9>] ? do_sigaction+0x13d/0x14e
> [ 20.624382] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
> [ 20.624385] [<c0240330>] ? trace_hardirqs_off_thunk+0xc/0x10
> [ 20.624388] [<c03e2423>] ? error_code+0x73/0x7c
> [ 20.624391] [<c03e3c73>] ? do_page_fault+0x0/0x6f9
> [ 20.624394] [<c03e3c73>] ? do_page_fault+0x0/0x6f9
> [ 20.624397] [<c03e2427>] error_code+0x77/0x7c
> [ 20.624400] ---[ end trace a1303c5fb15c2014 ]---
> [ 20.625285] ------------[ cut here ]------------
> [ 20.625288] WARNING: at drivers/ata/libata-sff.c:1017
> ata_sff_hsm_move+0x49c/0x6d0()
> [ 20.625290] Hardware name: MacBookPro2,2
> [ 20.625292] Modules linked in: fan battery container ipt_LOG xt_limit
> xt_tcpudp xt_state ipt_addrtype nf_nat_irc nf_conntrack_irc nf_nat_ftp nf_nat
> nf_conntrack_ftp ipmi_watchdog ipmi_msghandler isight_firmware uinput
> arpt_mangle arptable_filter arp_tables nf_conntrack_ipv4 nf_conntrack
> nf_defrag_ipv4 iptable_mangle iptable_filter ip_tables x_tables coretemp
> eeprom acpi_cpufreq cpufreq_powersave cpufreq_performance cpufreq_ondemand
> cpufreq_conservative firewire_sbp2 firewire_core raw1394 appletouch
> snd_hda_codec_idt uvcvideo ohci1394 thermal joydev snd_hda_intel snd_hda_codec
> ath9k ieee1394 video ac button processor applesmc uhci_hcd ehci_hcd snd_hwdep
> snd_pcm snd_page_alloc pata_acpi evdev
> [ 20.625344] Pid: 2466, comm: hald Tainted: G W
> 2.6.28-07812-g5fbbf5f #9
> [ 20.625346] Call Trace:
> [ 20.625349] [<c01292ca>] warn_slowpath+0x76/0xad
> [ 20.625353] [<c0213328>] ? selinux_socket_recvmsg+0x1a/0x1c
> [ 20.625357] [<c0342ccb>] ? sock_aio_read+0x109/0x117
> [ 20.625361] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
> [ 20.625364] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
> [ 20.625367] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
> [ 20.625371] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
> [ 20.625374] [<c015a307>] handle_IRQ_event+0x34/0x69
> [ 20.625377] [<c015b47e>] handle_edge_irq+0xc8/0x109
> [ 20.625381] [<c0104bc9>] do_IRQ+0x92/0xad
> [ 20.625384] [<c010396c>] common_interrupt+0x2c/0x34
> [ 20.625386] ---[ end trace a1303c5fb15c2015 ]---
> [ 20.660553] ------------[ cut here ]------------
> [ 20.660556] WARNING: at drivers/ata/libata-sff.c:1017
> ata_sff_hsm_move+0x49c/0x6d0()
> [ 20.660558] Hardware name: MacBookPro2,2
> [ 20.660560] Modules linked in: fan battery container ipt_LOG xt_limit
> xt_tcpudp xt_state ipt_addrtype nf_nat_irc nf_conntrack_irc nf_nat_ftp nf_nat
> nf_conntrack_ftp ipmi_watchdog ipmi_msghandler isight_firmware uinput
> arpt_mangle arptable_filter arp_tables nf_conntrack_ipv4 nf_conntrack
> nf_defrag_ipv4 iptable_mangle iptable_filter ip_tables x_tables coretemp
> eeprom acpi_cpufreq cpufreq_powersave cpufreq_performance cpufreq_ondemand
> cpufreq_conservative firewire_sbp2 firewire_core raw1394 appletouch
> snd_hda_codec_idt uvcvideo ohci1394 thermal joydev snd_hda_intel snd_hda_codec
> ath9k ieee1394 video ac button processor applesmc uhci_hcd ehci_hcd snd_hwdep
> snd_pcm snd_page_alloc pata_acpi evdev
> [ 20.660619] Pid: 2519, comm: hald-addon-macb Tainted: G W
> 2.6.28-07812-g5fbbf5f #9
> [ 20.660621] Call Trace:
> [ 20.660626] [<c01292ca>] warn_slowpath+0x76/0xad
> [ 20.660631] [<c013cca6>] ? hrtimer_cancel+0x12/0x1d
> [ 20.660635] [<c03e1285>] ? schedule_hrtimeout_range+0x10b/0x12a
> [ 20.660639] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
> [ 20.660642] [<c03e2148>] ? _spin_unlock_irqrestore+0x2d/0x3c
> [ 20.660647] [<c013a41e>] ? remove_wait_queue+0x35/0x39
> [ 20.660651] [<c019a87b>] ? poll_freewait+0x34/0x7d
> [ 20.660654] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
> [ 20.660658] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
> [ 20.660661] [<c011b332>] ? kunmap_atomic+0x72/0x92
> [ 20.660665] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
> [ 20.660668] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
> [ 20.660672] [<c015a307>] handle_IRQ_event+0x34/0x69
> [ 20.660676] [<c015b47e>] handle_edge_irq+0xc8/0x109
> [ 20.660679] [<c0104bc9>] do_IRQ+0x92/0xad
> [ 20.660682] [<c010396c>] common_interrupt+0x2c/0x34
> [ 20.660687] [<c016e758>] ? get_page_from_freelist+0x32f/0x3ed
> [ 20.660691] [<c016ea87>] __alloc_pages_internal+0x9b/0x36a
> [ 20.660694] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
> [ 20.660697] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
> [ 20.660700] [<c016ed6f>] get_zeroed_page+0x19/0x2b
> [ 20.660704] [<c01c82f5>] sysfs_follow_link+0x22/0x13d
> [ 20.660708] [<c01971a5>] __link_path_walk+0x459/0xc5a
> [ 20.660712] [<c0215291>] ? selinux_file_alloc_security+0x2d/0x46
> [ 20.660715] [<c0197b43>] path_walk+0x55/0xaa
> [ 20.660718] [<c0197d66>] do_path_lookup+0x145/0x18d
> [ 20.660721] [<c0197e50>] path_lookup_open+0x4b/0x7c
> [ 20.660724] [<c01988d6>] do_filp_open+0xa8/0x6e8
> [ 20.660728] [<c018bb89>] ? __slab_alloc+0x409/0x4a8
> [ 20.660731] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
> [ 20.660734] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
> [ 20.660737] [<c0196cb5>] ? getname+0x25/0xbc
> [ 20.660739] [<c024382c>] ? _raw_spin_unlock+0x74/0x78
> [ 20.660743] [<c018d779>] do_sys_open+0x47/0xbc
> [ 20.660746] [<c018d83a>] sys_open+0x23/0x2b
> [ 20.660749] [<c010329f>] sysenter_do_call+0x12/0x34
> [ 20.660751] ---[ end trace a1303c5fb15c2016 ]---
> [ 20.662220] ------------[ cut here ]------------
> [ 20.662223] WARNING: at drivers/ata/libata-sff.c:1017
> ata_sff_hsm_move+0x49c/0x6d0()
> [ 20.662225] Hardware name: MacBookPro2,2
> [ 20.662226] Modules linked in: fan battery container ipt_LOG xt_limit
> xt_tcpudp xt_state ipt_addrtype nf_nat_irc nf_conntrack_irc nf_nat_ftp nf_nat
> nf_conntrack_ftp ipmi_watchdog ipmi_msghandler isight_firmware uinput
> arpt_mangle arptable_filter arp_tables nf_conntrack_ipv4 nf_conntrack
> nf_defrag_ipv4 iptable_mangle iptable_filter ip_tables x_tables coretemp
> eeprom acpi_cpufreq cpufreq_powersave cpufreq_performance cpufreq_ondemand
> cpufreq_conservative firewire_sbp2 firewire_core raw1394 appletouch
> snd_hda_codec_idt uvcvideo ohci1394 thermal joydev snd_hda_intel snd_hda_codec
> ath9k ieee1394 video ac button processor applesmc uhci_hcd ehci_hcd snd_hwdep
> snd_pcm snd_page_alloc pata_acpi evdev
> [ 20.662280] Pid: 2423, comm: klogd Tainted: G W
> 2.6.28-07812-g5fbbf5f #9
> [ 20.662282] Call Trace:
> [ 20.662286] [<c01292ca>] warn_slowpath+0x76/0xad
> [ 20.662290] [<c03e0b94>] ? __mutex_lock_slowpath+0x25b/0x263
> [ 20.662293] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
> [ 20.662296] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
> [ 20.662298] [<c024382c>] ? _raw_spin_unlock+0x74/0x78
> [ 20.662302] [<c03e2164>] ? _spin_unlock+0xd/0xf
> [ 20.662306] [<c01a1823>] ? mnt_drop_write+0x68/0xcc
> [ 20.662309] [<c019e22a>] ? touch_atime+0xa5/0xbf
> [ 20.662313] [<c019541e>] ? pipe_read+0x2f7/0x305
> [ 20.662316] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
> [ 20.662320] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
> [ 20.662323] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
> [ 20.662327] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
> [ 20.662330] [<c015a307>] handle_IRQ_event+0x34/0x69
> [ 20.662334] [<c015b47e>] handle_edge_irq+0xc8/0x109
> [ 20.662337] [<c0104bc9>] do_IRQ+0x92/0xad
> [ 20.662340] [<c010396c>] common_interrupt+0x2c/0x34
> [ 20.662342] ---[ end trace a1303c5fb15c2017 ]---
> [ 20.663258] ------------[ cut here ]------------
> [ 20.663260] WARNING: at drivers/ata/libata-sff.c:1017
> ata_sff_hsm_move+0x49c/0x6d0()
> [ 20.663262] Hardware name: MacBookPro2,2
> [ 20.663264] Modules linked in: fan battery container ipt_LOG xt_limit
> xt_tcpudp xt_state ipt_addrtype nf_nat_irc nf_conntrack_irc nf_nat_ftp nf_nat
> nf_conntrack_ftp ipmi_watchdog ipmi_msghandler isight_firmware uinput
> arpt_mangle arptable_filter arp_tables nf_conntrack_ipv4 nf_conntrack
> nf_defrag_ipv4 iptable_mangle iptable_filter ip_tables x_tables coretemp
> eeprom acpi_cpufreq cpufreq_powersave cpufreq_performance cpufreq_ondemand
> cpufreq_conservative firewire_sbp2 firewire_core raw1394 appletouch
> snd_hda_codec_idt uvcvideo ohci1394 thermal joydev snd_hda_intel snd_hda_codec
> ath9k ieee1394 video ac button processor applesmc uhci_hcd ehci_hcd snd_hwdep
> snd_pcm snd_page_alloc pata_acpi evdev
> [ 20.663318] Pid: 2420, comm: dd Tainted: G W 2.6.28-07812-g5fbbf5f
> #9
> [ 20.663320] Call Trace:
> [ 20.663323] [<c01292ca>] warn_slowpath+0x76/0xad
> [ 20.663327] [<c03e2141>] ? _spin_unlock_irqrestore+0x26/0x3c
> [ 20.663331] [<c01238ef>] ? try_to_wake_up+0x245/0x250
> [ 20.663334] [<c011bbac>] ? update_curr+0xae/0x189
> [ 20.663337] [<c01206a1>] ? enqueue_entity+0x26c/0x274
> [ 20.663341] [<c011b7ad>] ? resched_task+0x25/0x69
> [ 20.663344] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
> [ 20.663347] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
> [ 20.663351] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
> [ 20.663354] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
> [ 20.663358] [<c015a307>] handle_IRQ_event+0x34/0x69
> [ 20.663361] [<c015b47e>] handle_edge_irq+0xc8/0x109
> [ 20.663364] [<c0104bc9>] do_IRQ+0x92/0xad
> [ 20.663368] [<c010396c>] common_interrupt+0x2c/0x34
> [ 20.663371] [<c03e007b>] ? schedule+0x695/0x8f1
> [ 20.663374] [<c03e2111>] ? _spin_unlock_irq+0x14/0x1e
> [ 20.663378] [<c0125c92>] finish_task_switch+0x37/0x8a
> [ 20.663381] [<c03e026d>] schedule+0x887/0x8f1
> [ 20.663385] [<c0240330>] ? trace_hardirqs_off_thunk+0xc/0x10
> [ 20.663388] [<c0103210>] ? resume_userspace+0x14/0x28
> [ 20.663391] [<c010344e>] work_resched+0x5/0x2d
> [ 20.663393] ---[ end trace a1303c5fb15c2018 ]---
>
> this was just after compiling. rebooted to this.
> seems harmless,(just warnings);
>
>
> regards;
>
> Justin P. Mattock
>
>
>
>
>
>

2009-01-09 00:34:21

by Justin P. Mattock

[permalink] [raw]
Subject: Re: [fix] Too async libata breakage

Linus Torvalds wrote:
> On Thu, 8 Jan 2009, Justin P. Mattock wrote:
>
>> O.K. attached is the results of
>> dmesg after doing a git-pull
>> (system didn't freeze, but there's
>> a slew of warnings); i.g.
>>
>
> That's a different thing now - some very annoying warnings indeed.
>
> Tejun, I think it's yours. And I think it should be removed, or at the
> very least changed into a WARN_ON_ONCE. Because spamming the console with
> this is not a good idea:
>
> Linus
>
>
That's fine.
better than having the machine freeze,
three times, before a bootup.

regards;

Justin P. Mattock
>> [ 1.739745] WARNING: at drivers/ata/libata-sff.c:1017 ata_sff_hsm_move+0x49c/0x6d0()
>> [ 1.741682] Hardware name: MacBookPro2,2
>> [ 1.741682] Modules linked in:
>> [ 1.741682] Pid: 1, comm: swapper Not tainted 2.6.28-07812-g5fbbf5f #9
>> [ 1.741682] Call Trace:
>> [ 1.741682] [<c01292ca>] warn_slowpath+0x76/0xad
>> [ 1.741682] [<c0263865>] ? cfb_fillrect+0x182/0x275
>> [ 1.741682] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
>> [ 1.741682] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
>> [ 1.741682] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
>> [ 1.741682] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
>> [ 1.741682] [<c015a307>] handle_IRQ_event+0x34/0x69
>> [ 1.741682] [<c015b47e>] handle_edge_irq+0xc8/0x109
>> [ 1.741682] [<c0104bc9>] do_IRQ+0x92/0xad
>> [ 1.741682] [<c010396c>] common_interrupt+0x2c/0x34
>> [ 1.741682] [<c012007b>] ? sched_debug_show+0x803/0xbbd
>> [ 1.741682] [<c012da4f>] ? __do_softirq+0x6b/0x154
>> [ 1.741682] [<c012db6c>] ? do_softirq+0x34/0x7e
>> [ 1.741682] [<c012db8a>] do_softirq+0x52/0x7e
>> [ 1.741682] [<c012dcd6>] irq_exit+0x49/0x77
>> [ 1.741682] [<c03e56e9>] __irqentry_text_start+0x79/0x87
>> [ 1.741682] [<c0103aa1>] apic_timer_interrupt+0x2d/0x34
>> [ 1.741682] [<c0129e84>] ? vprintk+0x2aa/0x2d5
>> [ 1.741682] [<c03df731>] printk+0x14/0x1b
>> [ 1.741682] [<c05780e8>] mousedev_init+0x70/0x78
>> [ 1.741682] [<c0101137>] _stext+0x4f/0x127
>> [ 1.741682] [<c0578078>] ? mousedev_init+0x0/0x78
>> [ 1.741682] [<c015be1c>] ? register_irq_proc+0x84/0xa0
>> [ 1.741682] [<c015be90>] ? init_irq_proc+0x58/0x65
>> [ 1.741682] [<c055a309>] kernel_init+0x105/0x156
>> [ 1.741682] [<c055a204>] ? kernel_init+0x0/0x156
>> [ 1.741682] [<c0103bcb>] kernel_thread_helper+0x7/0x10
>> [ 1.741682] ---[ end trace a1303c5fb15c2002 ]---
>>
>> [ 2.013026] ------------[ cut here ]------------
>> [ 2.013028] WARNING: at drivers/ata/libata-sff.c:1017
>> ata_sff_hsm_move+0x49c/0x6d0()
>> [ 2.013030] Hardware name: MacBookPro2,2
>> [ 2.013031] Modules linked in:
>> [ 2.013033] Pid: 578, comm: scsi_eh_3 Tainted: G W
>> 2.6.28-07812-g5fbbf5f #9
>> [ 2.013035] Call Trace:
>> [ 2.013038] [<c01292ca>] warn_slowpath+0x76/0xad
>> [ 2.013042] [<c011bbac>] ? update_curr+0xae/0x189
>> [ 2.013045] [<c011e7c1>] ? dequeue_entity+0x1b/0x20d
>> [ 2.013048] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
>> [ 2.013050] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
>> [ 2.013053] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
>> [ 2.013056] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
>> [ 2.013059] [<c015a307>] handle_IRQ_event+0x34/0x69
>> [ 2.013061] [<c015b47e>] handle_edge_irq+0xc8/0x109
>> [ 2.013064] [<c0104bc9>] do_IRQ+0x92/0xad
>> [ 2.013066] [<c010396c>] common_interrupt+0x2c/0x34
>> [ 2.013068] [<c012007b>] ? sched_debug_show+0x803/0xbbd
>> [ 2.013071] [<c012da4f>] ? __do_softirq+0x6b/0x154
>> [ 2.013073] [<c012db6c>] ? do_softirq+0x34/0x7e
>> [ 2.013075] [<c012db8a>] do_softirq+0x52/0x7e
>> [ 2.013077] [<c012dcd6>] irq_exit+0x49/0x77
>> [ 2.013080] [<c03e56e9>] __irqentry_text_start+0x79/0x87
>> [ 2.013082] [<c0103aa1>] apic_timer_interrupt+0x2d/0x34
>> [ 2.013085] [<c03e007b>] ? schedule+0x695/0x8f1
>> [ 2.013088] [<c03e214c>] ? _spin_unlock_irqrestore+0x31/0x3c
>> [ 2.013090] [<c02e8818>] ata_eh_thaw_port+0x3b/0x3f
>> [ 2.013093] [<c02e94b4>] ata_eh_reset+0x6cc/0x9bd
>> [ 2.013096] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
>> [ 2.013098] [<c02eeb26>] ? ata_sff_prereset+0x0/0x9e
>> [ 2.013101] [<c02eea18>] ? ata_sff_softreset+0x0/0x10e
>> [ 2.013105] [<c02e032a>] ? ata_dev_init+0x5d/0x80
>> [ 2.013107] [<c02ead0a>] ata_eh_recover+0x29c/0xafd
>> [ 2.013110] [<c02eea18>] ? ata_sff_softreset+0x0/0x10e
>> [ 2.013112] [<c02ecf23>] ? ata_sff_postreset+0x0/0x5a
>> [ 2.013115] [<c02eea18>] ? ata_sff_softreset+0x0/0x10e
>> [ 2.013117] [<c02eeb26>] ? ata_sff_prereset+0x0/0x9e
>> [ 2.013120] [<c011e7c1>] ? dequeue_entity+0x1b/0x20d
>> [ 2.013122] [<c011ef1c>] ? dequeue_task_fair+0x5c/0x61
>> [ 2.013125] [<c0101e73>] ? __switch_to+0xce/0x14f
>> [ 2.013127] [<c03e210f>] ? _spin_unlock_irq+0x12/0x1e
>> [ 2.013130] [<c03e210f>] ? _spin_unlock_irq+0x12/0x1e
>> [ 2.013132] [<c0125c92>] ? finish_task_switch+0x37/0x8a
>> [ 2.013134] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
>> [ 2.013137] [<c0131627>] ? lock_timer_base+0x24/0x43
>> [ 2.013140] [<c02eea18>] ? ata_sff_softreset+0x0/0x10e
>> [ 2.013143] [<c02eeb26>] ? ata_sff_prereset+0x0/0x9e
>> [ 2.013145] [<c02eb6f8>] ata_do_eh+0x30/0x72
>> [ 2.013148] [<c02ecf23>] ? ata_sff_postreset+0x0/0x5a
>> [ 2.013150] [<c02ecf19>] ata_sff_error_handler+0x12b/0x135
>> [ 2.013153] [<c02ecf23>] ? ata_sff_postreset+0x0/0x5a
>> [ 2.013155] [<c02eea18>] ? ata_sff_softreset+0x0/0x10e
>> [ 2.013158] [<c02ebec7>] ata_scsi_error+0x2b5/0x5e6
>> [ 2.013162] [<c02ce15b>] scsi_error_handler+0xc1/0x454
>> [ 2.013164] [<c012390a>] ? default_wake_function+0x10/0x12
>> [ 2.013167] [<c03e2148>] ? _spin_unlock_irqrestore+0x2d/0x3c
>> [ 2.013169] [<c011e4d1>] ? complete+0x39/0x43
>> [ 2.013171] [<c02ce09a>] ? scsi_error_handler+0x0/0x454
>> [ 2.013175] [<c0139f9c>] kthread+0x40/0x66
>> [ 2.013178] [<c0139f5c>] ? kthread+0x0/0x66
>> [ 2.013180] [<c0103bcb>] kernel_thread_helper+0x7/0x10
>> [ 2.013182] ---[ end trace a1303c5fb15c2003 ]---
>>
>> [ 2.436869] ------------[ cut here ]------------
>> [ 2.442849] WARNING: at drivers/ata/libata-sff.c:1017
>> ata_sff_hsm_move+0x49c/0x6d0()
>> [ 2.446154] Hardware name: MacBookPro2,2
>> [ 2.446154] Modules linked in:
>> [ 2.446154] Pid: 1, comm: swapper Tainted: G W
>> 2.6.28-07812-g5fbbf5f #9
>> [ 2.446154] Call Trace:
>> [ 2.446154] [<c01292ca>] warn_slowpath+0x76/0xad
>> [ 2.446154] [<c011e7c1>] ? dequeue_entity+0x1b/0x20d
>> [ 2.446154] [<c0101e73>] ? __switch_to+0xce/0x14f
>> [ 2.446154] [<c03e210f>] ? _spin_unlock_irq+0x12/0x1e
>> [ 2.446154] [<c0243563>] ? _raw_spin_trylock+0xf/0x30
>> [ 2.446154] [<c0125c92>] ? finish_task_switch+0x37/0x8a
>> [ 2.446154] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
>> [ 2.446154] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
>> [ 2.446154] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
>> [ 2.446154] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
>> [ 2.446154] [<c015a307>] handle_IRQ_event+0x34/0x69
>> [ 2.446154] [<c015b47e>] handle_edge_irq+0xc8/0x109
>> [ 2.446154] [<c0104bc9>] do_IRQ+0x92/0xad
>> [ 2.446154] [<c010396c>] common_interrupt+0x2c/0x34
>> [ 2.446154] [<c01c00d8>] ? proc_task_readdir+0x76/0x283
>> [ 2.446154] [<c0243830>] ? _raw_spin_lock+0x0/0xf8
>> [ 2.446154] [<c03e21f4>] ? _spin_lock+0xd/0xf
>> [ 2.446154] [<c01c79a1>] sysfs_new_dirent+0x5a/0xe0
>> [ 2.446154] [<c01c7347>] sysfs_add_file_mode+0x2b/0x72
>> [ 2.446154] [<c024382c>] ? _raw_spin_unlock+0x74/0x78
>> [ 2.446154] [<c03e2164>] ? _spin_unlock+0xd/0xf
>> [ 2.446154] [<c01c73a1>] sysfs_add_file+0x13/0x18
>> [ 2.446154] [<c01c7445>] sysfs_create_file+0x25/0x27
>> [ 2.446154] [<c02b2857>] driver_create_file+0x1b/0x1d
>> [ 2.446154] [<c02b1955>] bus_add_driver+0xd9/0x1c2
>> [ 2.446154] [<c02b275b>] driver_register+0x86/0xe6
>> [ 2.446154] [<c03215a9>] __hid_register_driver+0x43/0x68
>> [ 2.446154] [<c0325ba2>] ch_init+0x19/0x1b
>> [ 2.446154] [<c0101137>] _stext+0x4f/0x127
>> [ 2.446154] [<c0325b89>] ? ch_init+0x0/0x1b
>> [ 2.446154] [<c015be1c>] ? register_irq_proc+0x84/0xa0
>> [ 2.446154] [<c015be90>] ? init_irq_proc+0x58/0x65
>> [ 2.446154] [<c055a309>] kernel_init+0x105/0x156
>> [ 2.446154] [<c055a204>] ? kernel_init+0x0/0x156
>> [ 2.446154] [<c0103bcb>] kernel_thread_helper+0x7/0x10
>> [ 2.446154] ---[ end trace a1303c5fb15c2004 ]---
>>
>>
>> [ 10.336705] ------------[ cut here ]------------
>> [ 10.354651] WARNING: at drivers/ata/libata-sff.c:1017
>> ata_sff_hsm_move+0x49c/0x6d0()
>> [ 10.354651] Hardware name: MacBookPro2,2
>> [ 10.354651] Modules linked in:
>> [ 10.354651] Pid: 889, comm: udevd Tainted: G W
>> 2.6.28-07812-g5fbbf5f #9
>> [ 10.354651] Call Trace:
>> [ 10.354651] [<c01292ca>] warn_slowpath+0x76/0xad
>> [ 10.354651] [<c011b7ad>] ? resched_task+0x25/0x69
>> [ 10.354651] [<c03e2141>] ? _spin_unlock_irqrestore+0x26/0x3c
>> [ 10.354651] [<c01238ef>] ? try_to_wake_up+0x245/0x250
>> [ 10.354651] [<c016e6cf>] ? get_page_from_freelist+0x2a6/0x3ed
>> [ 10.354651] [<c0169974>] ? find_get_page+0x22/0x86
>> [ 10.354651] [<c016ea87>] ? __alloc_pages_internal+0x9b/0x36a
>> [ 10.354651] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
>> [ 10.354651] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
>> [ 10.354651] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
>> [ 10.354651] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
>> [ 10.354651] [<c015a307>] handle_IRQ_event+0x34/0x69
>> [ 10.354651] [<c015b47e>] handle_edge_irq+0xc8/0x109
>> [ 10.354651] [<c0104bc9>] do_IRQ+0x92/0xad
>> [ 10.354651] [<c010396c>] common_interrupt+0x2c/0x34
>> [ 10.354651] [<c03e007b>] ? schedule+0x695/0x8f1
>> [ 10.354651] [<c03e3ee5>] ? do_page_fault+0x272/0x6f9
>> [ 10.354651] [<c011e70c>] ? set_next_entity+0xa7/0x113
>> [ 10.354651] [<c011eeb9>] ? pick_next_task_fair+0x73/0x7a
>> [ 10.354651] [<c018aed4>] ? __slab_free+0x280/0x2b8
>> [ 10.354651] [<c018a64d>] ? check_object+0x139/0x190
>> [ 10.354651] [<c03e2423>] ? error_code+0x73/0x7c
>> [ 10.354651] [<c03e3c73>] ? do_page_fault+0x0/0x6f9
>> [ 10.354651] [<c0240320>] ? trace_hardirqs_on_thunk+0xc/0x10
>> [ 10.354651] [<c0240330>] ? trace_hardirqs_off_thunk+0xc/0x10
>> [ 10.354651] [<c03e2423>] ? error_code+0x73/0x7c
>> [ 10.354651] [<c03e3c73>] ? do_page_fault+0x0/0x6f9
>> [ 10.354651] [<c03e3c73>] ? do_page_fault+0x0/0x6f9
>> [ 10.354651] [<c03e2427>] error_code+0x77/0x7c
>> [ 10.354651] ---[ end trace a1303c5fb15c2006 ]---
>> [ 10.647515] ------------[ cut here ]------------
>>
>> [ 10.647515] ------------[ cut here ]------------
>> [ 10.654832] WARNING: at drivers/ata/libata-sff.c:1017
>> ata_sff_hsm_move+0x49c/0x6d0()
>> [ 10.656261] Hardware name: MacBookPro2,2
>> [ 10.656261] Modules linked in:
>> [ 10.656261] Pid: 893, comm: udevd Tainted: G W
>> 2.6.28-07812-g5fbbf5f #9
>> [ 10.656261] Call Trace:
>> [ 10.656261] [<c01292ca>] warn_slowpath+0x76/0xad
>> [ 10.656261] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
>> [ 10.656261] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
>> [ 10.656261] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
>> [ 10.656261] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
>> [ 10.656261] [<c015a307>] handle_IRQ_event+0x34/0x69
>> [ 10.656261] [<c015b47e>] handle_edge_irq+0xc8/0x109
>> [ 10.656261] [<c0104bc9>] do_IRQ+0x92/0xad
>> [ 10.656261] [<c010396c>] common_interrupt+0x2c/0x34
>> [ 10.656261] [<c011007b>] ? acpi_processor_ffh_cstate_enter+0x3/0x2c
>> [ 10.656261] [<c016a048>] ? filemap_fault+0x9/0x308
>> [ 10.656261] [<c011a603>] ? ptep_set_access_flags+0x5f/0x69
>> [ 10.656261] [<c011b332>] ? kunmap_atomic+0x72/0x92
>> [ 10.656261] [<c024382c>] ? _raw_spin_unlock+0x74/0x78
>> [ 10.656261] [<c0179723>] __do_fault+0x40/0x345
>> [ 10.656261] [<c017b345>] handle_mm_fault+0x29e/0x606
>> [ 10.656261] [<c03e405c>] ? do_page_fault+0x3e9/0x6f9
>> [ 10.656261] [<c03e3ee3>] ? do_page_fault+0x270/0x6f9
>> [ 10.656261] [<c03e3fed>] do_page_fault+0x37a/0x6f9
>> [ 10.656261] [<c018a64d>] ? check_object+0x139/0x190
>> [ 10.656261] [<c014129b>] ? getnstimeofday+0x56/0xdf
>> [ 10.656261] [<c03e2141>] ? _spin_unlock_irqrestore+0x26/0x3c
>> [ 10.656261] [<c013cee5>] ? hrtimer_start_range_ns+0x234/0x23f
>> [ 10.656261] [<c03e2141>] ? _spin_unlock_irqrestore+0x26/0x3c
>> [ 10.656261] [<c013cee5>] ? hrtimer_start_range_ns+0x234/0x23f
>> [ 10.656261] [<c03e210f>] ? _spin_unlock_irq+0x12/0x1e
>> [ 10.656261] [<c03e210f>] ? _spin_unlock_irq+0x12/0x1e
>> [ 10.656261] [<c012c65d>] ? do_setitimer+0x160/0x2d9
>> [ 10.656261] [<c0240330>] ? trace_hardirqs_off_thunk+0xc/0x10
>> [ 10.656261] [<c03e2423>] ? error_code+0x73/0x7c
>> [ 10.656261] [<c03e3c73>] ? do_page_fault+0x0/0x6f9
>> [ 10.656261] [<c03e3c73>] ? do_page_fault+0x0/0x6f9
>> [ 10.656261] [<c03e2427>] error_code+0x77/0x7c
>> [ 10.656261] ---[ end trace a1303c5fb15c2007 ]---
>> [ 10.910249] ------------[ cut here ]------------
>>
>> [ 10.910249] ------------[ cut here ]------------
>> [ 10.916793] WARNING: at drivers/ata/libata-sff.c:1017
>> ata_sff_hsm_move+0x49c/0x6d0()
>> [ 10.920003] Hardware name: MacBookPro2,2
>> [ 10.920003] Modules linked in:
>> [ 10.920003] Pid: 891, comm: udevd Tainted: G W
>> 2.6.28-07812-g5fbbf5f #9
>> [ 10.920003] Call Trace:
>> [ 10.920003] [<c01292ca>] warn_slowpath+0x76/0xad
>> [ 10.920003] [<c0180030>] ? move_page_tables+0x88/0x28b
>> [ 10.920003] [<c018aed4>] ? __slab_free+0x280/0x2b8
>> [ 10.920003] [<c018beb3>] ? kmem_cache_free+0xae/0xc2
>> [ 10.920003] [<c034872d>] ? __kfree_skb+0x73/0x76
>> [ 10.920003] [<c034872d>] ? __kfree_skb+0x73/0x76
>> [ 10.920003] [<c0348760>] ? kfree_skb+0x30/0x32
>> [ 10.920003] [<c03ab36c>] ? unix_dgram_sendmsg+0x437/0x47b
>> [ 10.920003] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
>> [ 10.920003] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
>> [ 10.920003] [<c017b345>] ? handle_mm_fault+0x29e/0x606
>> [ 10.920003] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
>> [ 10.920003] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
>> [ 10.920003] [<c015a307>] handle_IRQ_event+0x34/0x69
>> [ 10.920003] [<c015b47e>] handle_edge_irq+0xc8/0x109
>> [ 10.920003] [<c0104bc9>] do_IRQ+0x92/0xad
>> [ 10.920003] [<c010396c>] common_interrupt+0x2c/0x34
>> [ 10.920003] [<c0116eed>] ? __ticket_spin_trylock+0x4/0x21
>> [ 10.920003] [<c0243883>] _raw_spin_lock+0x53/0xf8
>> [ 10.920003] [<c018a64d>] ? check_object+0x139/0x190
>> [ 10.920003] [<c03e21f4>] _spin_lock+0xd/0xf
>> [ 10.920003] [<c023aa85>] _atomic_dec_and_lock+0x29/0x48
>> [ 10.920003] [<c019e26d>] iput+0x29/0x53
>> [ 10.920003] [<c019bea5>] dentry_iput+0x81/0x9c
>> [ 10.920003] [<c019bf74>] d_kill+0x32/0x4c
>> [ 10.920003] [<c019c663>] dput+0x101/0x10a
>> [ 10.920003] [<c018fed3>] __fput+0x13b/0x15c
>> [ 10.920003] [<c018ff12>] fput+0x1e/0x20
>> [ 10.920003] [<c018d67f>] filp_close+0x56/0x60
>> [ 10.920003] [<c018d6f8>] sys_close+0x6f/0xa9
>> [ 10.920003] [<c010329f>] sysenter_do_call+0x12/0x34
>> [ 10.920003] ---[ end trace a1303c5fb15c2008 ]---
>> [ 11.187174] ------------[ cut here ]------------
>> [ 11.190008] WARNING: at drivers/ata/libata-sff.c:1017
>> ata_sff_hsm_move+0x49c/0x6d0()
>> [ 11.196573] Hardware name: MacBookPro2,2
>> [ 11.203397] Modules linked in:
>> [ 11.209319] Pid: 923, comm: path_id Tainted: G W
>> 2.6.28-07812-g5fbbf5f #9
>> [ 11.219223] Call Trace:
>> [ 11.219223] [<c01292ca>] warn_slowpath+0x76/0xad
>> [ 11.219223] [<c0230030>] ? elv_attr_store+0x15/0x5e
>> [ 11.219223] [<c011160a>] ? flush_tlb_page+0x47/0x6e
>> [ 11.219223] [<c011a603>] ? ptep_set_access_flags+0x5f/0x69
>> [ 11.219223] [<c011b332>] ? kunmap_atomic+0x72/0x92
>> [ 11.256355] [<c024382c>] ? _raw_spin_unlock+0x74/0x78
>> [ 11.256355] [<c017a1b4>] ? do_wp_page+0x586/0x5eb
>> [ 11.272445] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
>> [ 11.272445] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
>> [ 11.272445] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
>> [ 11.272445] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
>> [ 11.272445] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
>> [ 11.304326] [<c015a307>] handle_IRQ_event+0x34/0x69
>> [ 11.304326] [<c015b47e>] handle_edge_irq+0xc8/0x109
>> [ 11.304326] [<c0104bc9>] do_IRQ+0x92/0xad
>> [ 11.304326] [<c010396c>] common_interrupt+0x2c/0x34
>> [ 11.304326] [<c0196c85>] ? putname+0x29/0x34
>> [ 11.304326] [<c018007b>] ? move_page_tables+0xd3/0x28b
>> [ 11.304326] [<c018beb7>] ? kmem_cache_free+0xb2/0xc2
>> [ 11.304326] [<c0196c85>] ? putname+0x29/0x34
>> [ 11.304326] [<c0196c85>] putname+0x29/0x34
>> [ 11.304326] [<c0198701>] user_path_at+0x4a/0x67
>> [ 11.304326] [<c013a41e>] ? remove_wait_queue+0x35/0x39
>> [ 11.304326] [<c018feec>] ? __fput+0x154/0x15c
>> [ 11.304326] [<c018e048>] sys_chdir+0x23/0x64
>> [ 11.304326] [<c010329f>] sysenter_do_call+0x12/0x34
>> [ 11.304326] ---[ end trace a1303c5fb15c2009 ]---
>> [ 11.404868] ------------[ cut here ]------------
>> [ 11.411491] WARNING: at drivers/ata/libata-sff.c:1017
>> ata_sff_hsm_move+0x49c/0x6d0()
>> [ 11.412573] Hardware name: MacBookPro2,2
>> [ 11.412573] Modules linked in:
>> [ 11.412573] Pid: 966, comm: udevd Tainted: G W
>> 2.6.28-07812-g5fbbf5f #9
>> [ 11.412573] Call Trace:
>> [ 11.412573] [<c01292ca>] warn_slowpath+0x76/0xad
>> [ 11.412573] [<c0169974>] ? find_get_page+0x22/0x86
>> [ 11.412573] [<c0169cb5>] ? find_lock_page+0x18/0x4c
>> [ 11.412573] [<c016a0d0>] ? filemap_fault+0x91/0x308
>> [ 11.412573] [<c011b332>] ? kunmap_atomic+0x72/0x92
>> [ 11.412573] [<c0169c9a>] ? unlock_page+0x43/0x46
>> [ 11.412573] [<c01799f0>] ? __do_fault+0x30d/0x345
>> [ 11.412573] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
>> [ 11.412573] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
>> [ 11.412573] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
>> [ 11.412573] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
>> [ 11.412573] [<c015a307>] handle_IRQ_event+0x34/0x69
>> [ 11.412573] [<c015b47e>] handle_edge_irq+0xc8/0x109
>> [ 11.412573] [<c0104bc9>] do_IRQ+0x92/0xad
>> [ 11.412573] [<c0196cb5>] ? getname+0x25/0xbc
>> [ 11.412573] [<c010396c>] common_interrupt+0x2c/0x34
>> [ 11.412573] [<c0196cb5>] ? getname+0x25/0xbc
>> [ 11.412573] [<c018007b>] ? move_page_tables+0xd3/0x28b
>> [ 11.412573] [<c018bf5a>] ? kmem_cache_alloc+0x93/0xcc
>> [ 11.412573] [<c0196cb5>] ? getname+0x25/0xbc
>> [ 11.412573] [<c0196cb5>] getname+0x25/0xbc
>> [ 11.412573] [<c01986d1>] user_path_at+0x1a/0x67
>> [ 11.412573] [<c03e210f>] ? _spin_unlock_irq+0x12/0x1e
>> [ 11.412573] [<c03e210f>] ? _spin_unlock_irq+0x12/0x1e
>> [ 11.412573] [<c012c65d>] ? do_setitimer+0x160/0x2d9
>> [ 11.412573] [<c0191e60>] sys_readlinkat+0x2b/0x86
>> [ 11.412573] [<c0191ed3>] sys_readlink+0x18/0x1a
>> [ 11.412573] [<c010329f>] sysenter_do_call+0x12/0x34
>> [ 11.412573] ---[ end trace a1303c5fb15c200a ]---
>> [ 11.631708] ------------[ cut here ]------------
>> [ 11.637944] WARNING: at drivers/ata/libata-sff.c:1017
>> ata_sff_hsm_move+0x49c/0x6d0()
>> [ 11.640002] Hardware name: MacBookPro2,2
>> [ 11.640002] Modules linked in:
>> [ 11.640002] Pid: 960, comm: udevd Tainted: G W
>> 2.6.28-07812-g5fbbf5f #9
>> [ 11.640002] Call Trace:
>> [ 11.640002] [<c01292ca>] warn_slowpath+0x76/0xad
>> [ 11.640002] [<c0169974>] ? find_get_page+0x22/0x86
>> [ 11.640002] [<c0169cb5>] ? find_lock_page+0x18/0x4c
>> [ 11.640002] [<c016a0d0>] ? filemap_fault+0x91/0x308
>> [ 11.640002] [<c011b332>] ? kunmap_atomic+0x72/0x92
>> [ 11.640002] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
>> [ 11.640002] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
>> [ 11.640002] [<c018aed4>] ? __slab_free+0x280/0x2b8
>> [ 11.640002] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
>> [ 11.640002] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
>> [ 11.640002] [<c015a307>] handle_IRQ_event+0x34/0x69
>> [ 11.640002] [<c015b47e>] handle_edge_irq+0xc8/0x109
>> [ 11.640002] [<c0104bc9>] do_IRQ+0x92/0xad
>> [ 11.640002] [<c0196cb5>] ? getname+0x25/0xbc
>> [ 11.640002] [<c010396c>] common_interrupt+0x2c/0x34
>> [ 11.640002] [<c0196cb5>] ? getname+0x25/0xbc
>> [ 11.640002] [<c018007b>] ? move_page_tables+0xd3/0x28b
>> [ 11.640002] [<c018bf5a>] ? kmem_cache_alloc+0x93/0xcc
>> [ 11.640002] [<c0196cb5>] ? getname+0x25/0xbc
>> [ 11.640002] [<c0196cb5>] getname+0x25/0xbc
>> [ 11.640002] [<c01986d1>] user_path_at+0x1a/0x67
>> [ 11.640002] [<c012c65d>] ? do_setitimer+0x160/0x2d9
>> [ 11.640002] [<c0191e60>] sys_readlinkat+0x2b/0x86
>> [ 11.640002] [<c0191ed3>] sys_readlink+0x18/0x1a
>> [ 11.640002] [<c010329f>] sysenter_do_call+0x12/0x34
>> [ 11.640002] ---[ end trace a1303c5fb15c200b ]---
>> [ 11.859983] ------------[ cut here ]------------
>> [ 11.863325] WARNING: at drivers/ata/libata-sff.c:1017
>> ata_sff_hsm_move+0x49c/0x6d0()
>> [ 11.870937] Hardware name: MacBookPro2,2
>> [ 11.878612] Modules linked in:
>> [ 11.882417] Pid: 988, comm: udevd Tainted: G W
>> 2.6.28-07812-g5fbbf5f #9
>> [ 11.889932] Call Trace:
>> [ 11.896866] [<c01292ca>] warn_slowpath+0x76/0xad
>> [ 11.901313] [<c011b332>] ? kunmap_atomic+0x72/0x92
>> [ 11.906787] [<c01799f0>] ? __do_fault+0x30d/0x345
>> [ 11.906787] [<c0212f70>] ? avc_has_perm+0x3e/0x48
>> [ 11.906787] [<c018a64d>] ? check_object+0x139/0x190
>> [ 11.932317] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
>> [ 11.932317] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
>> [ 11.932317] [<c0217852>] ? selinux_inode_alloc_security+0x2e/0x73
>> [ 11.932317] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
>> [ 11.932317] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
>> [ 11.932317] [<c015a307>] handle_IRQ_event+0x34/0x69
>> [ 11.932317] [<c015b47e>] handle_edge_irq+0xc8/0x109
>> [ 11.932317] [<c0104bc9>] do_IRQ+0x92/0xad
>> [ 11.932317] [<c0196cb5>] ? getname+0x25/0xbc
>> [ 11.932317] [<c010396c>] common_interrupt+0x2c/0x34
>> [ 11.932317] [<c0196cb5>] ? getname+0x25/0xbc
>> [ 11.932317] [<c018007b>] ? move_page_tables+0xd3/0x28b
>> [ 12.009738] [<c018bf5a>] ? kmem_cache_alloc+0x93/0xcc
>> [ 12.009738] [<c0196cb5>] ? getname+0x25/0xbc
>> [ 12.009738] [<c0196cb5>] getname+0x25/0xbc
>> [ 12.009738] [<c018d74b>] do_sys_open+0x19/0xbc
>> [ 12.009738] [<c018d83a>] sys_open+0x23/0x2b
>> [ 12.009738] [<c010329f>] sysenter_do_call+0x12/0x34
>> [ 12.009738] ---[ end trace a1303c5fb15c200c ]---
>> [ 12.065027] ------------[ cut here ]------------
>> [ 12.070720] WARNING: at drivers/ata/libata-sff.c:1017
>> ata_sff_hsm_move+0x49c/0x6d0()
>> [ 12.070720] Hardware name: MacBookPro2,2
>> [ 12.070720] Modules linked in:
>> [ 12.070720] Pid: 1018, comm: udevd Tainted: G W
>> 2.6.28-07812-g5fbbf5f #9
>> [ 12.070720] Call Trace:
>> [ 12.070720] [<c01292ca>] warn_slowpath+0x76/0xad
>> [ 12.070720] [<c0190029>] ? get_empty_filp+0x82/0x175
>> [ 12.070720] [<c018fd49>] ? file_free_rcu+0x35/0x38
>> [ 12.070720] [<c011160a>] ? flush_tlb_page+0x47/0x6e
>> [ 12.070720] [<c011a603>] ? ptep_set_access_flags+0x5f/0x69
>> [ 12.070720] [<c011b332>] ? kunmap_atomic+0x72/0x92
>> [ 12.070720] [<c024382c>] ? _raw_spin_unlock+0x74/0x78
>> [ 12.070720] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
>> [ 12.070720] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
>> [ 12.070720] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
>> [ 12.070720] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
>> [ 12.070720] [<c015a307>] handle_IRQ_event+0x34/0x69
>> [ 12.070720] [<c015b47e>] handle_edge_irq+0xc8/0x109
>> [ 12.070720] [<c0104bc9>] do_IRQ+0x92/0xad
>> [ 12.070720] [<c010396c>] common_interrupt+0x2c/0x34
>> [ 12.070720] [<c03e007b>] ? schedule+0x695/0x8f1
>> [ 12.070720] [<c03e3ee5>] ? do_page_fault+0x272/0x6f9
>> [ 12.070720] [<c0190029>] ? get_empty_filp+0x82/0x175
>> [ 12.070720] [<c018fd49>] ? file_free_rcu+0x35/0x38
>> [ 12.070720] [<c018a64d>] ? check_object+0x139/0x190
>> [ 12.070720] [<c03e2423>] ? error_code+0x73/0x7c
>> [ 12.070720] [<c03e3c73>] ? do_page_fault+0x0/0x6f9
>> [ 12.070720] [<c0240320>] ? trace_hardirqs_on_thunk+0xc/0x10
>> [ 12.070720] [<c0240330>] ? trace_hardirqs_off_thunk+0xc/0x10
>> [ 12.070720] [<c03e2423>] ? error_code+0x73/0x7c
>> [ 12.070720] [<c03e3c73>] ? do_page_fault+0x0/0x6f9
>> [ 12.070720] [<c03e3c73>] ? do_page_fault+0x0/0x6f9
>> [ 12.070720] [<c03e2427>] error_code+0x77/0x7c
>> [ 12.070720] ---[ end trace a1303c5fb15c200d ]---
>> [ 12.300395] ------------[ cut here ]------------
>> [ 12.306909] WARNING: at drivers/ata/libata-sff.c:1017
>> ata_sff_hsm_move+0x49c/0x6d0()
>> [ 12.310003] Hardware name: MacBookPro2,2
>> [ 12.310003] Modules linked in:
>> [ 12.310003] Pid: 999, comm: udevd Tainted: G W
>> 2.6.28-07812-g5fbbf5f #9
>> [ 12.310003] Call Trace:
>> [ 12.310003] [<c01292ca>] warn_slowpath+0x76/0xad
>> [ 12.310003] [<c024382c>] ? _raw_spin_unlock+0x74/0x78
>> [ 12.310003] [<c03e2164>] ? _spin_unlock+0xd/0xf
>> [ 12.310003] [<c016e6cf>] ? get_page_from_freelist+0x2a6/0x3ed
>> [ 12.310003] [<c0169974>] ? find_get_page+0x22/0x86
>> [ 12.310003] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
>> [ 12.310003] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
>> [ 12.310003] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
>> [ 12.310003] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
>> [ 12.310003] [<c015a307>] handle_IRQ_event+0x34/0x69
>> [ 12.310003] [<c015b47e>] handle_edge_irq+0xc8/0x109
>> [ 12.310003] [<c0104bc9>] do_IRQ+0x92/0xad
>> [ 12.310003] [<c010396c>] common_interrupt+0x2c/0x34
>> [ 12.310003] [<c03e00d8>] ? schedule+0x6f2/0x8f1
>> [ 12.310003] [<c013d32b>] ? down_read_trylock+0x17/0x20
>> [ 12.310003] [<c03e3f32>] do_page_fault+0x2bf/0x6f9
>> [ 12.310003] [<c011e70c>] ? set_next_entity+0xa7/0x113
>> [ 12.310003] [<c014129b>] ? getnstimeofday+0x56/0xdf
>> [ 12.310003] [<c023de7b>] ? rb_insert_color+0x9b/0xc0
>> [ 12.310003] [<c03e2141>] ? _spin_unlock_irqrestore+0x26/0x3c
>> [ 12.310003] [<c013cee5>] ? hrtimer_start_range_ns+0x234/0x23f
>> [ 12.310003] [<c03e2141>] ? _spin_unlock_irqrestore+0x26/0x3c
>> [ 12.310003] [<c013cee5>] ? hrtimer_start_range_ns+0x234/0x23f
>> [ 12.310003] [<c03e210f>] ? _spin_unlock_irq+0x12/0x1e
>> [ 12.310003] [<c03e210f>] ? _spin_unlock_irq+0x12/0x1e
>> [ 12.310003] [<c012c65d>] ? do_setitimer+0x160/0x2d9
>> [ 12.310003] [<c0240330>] ? trace_hardirqs_off_thunk+0xc/0x10
>> [ 12.310003] [<c03e2423>] ? error_code+0x73/0x7c
>> [ 12.310003] [<c03e3c73>] ? do_page_fault+0x0/0x6f9
>> [ 12.310003] [<c03e3c73>] ? do_page_fault+0x0/0x6f9
>> [ 12.310003] [<c03e2427>] error_code+0x77/0x7c
>> [ 12.310003] ---[ end trace a1303c5fb15c200e ]---
>> [ 12.547900] ------------[ cut here ]------------
>> [ 12.554293] WARNING: at drivers/ata/libata-sff.c:1017
>> ata_sff_hsm_move+0x49c/0x6d0()
>> [ 12.555950] Hardware name: MacBookPro2,2
>> [ 12.555950] Modules linked in:
>> [ 12.555950] Pid: 998, comm: udevd Tainted: G W
>> 2.6.28-07812-g5fbbf5f #9
>> [ 12.555950] Call Trace:
>> [ 12.555950] [<c01292ca>] warn_slowpath+0x76/0xad
>> [ 12.555950] [<c018a64d>] ? check_object+0x139/0x190
>> [ 12.601146] [<c03e3ee3>] ? do_page_fault+0x270/0x6f9
>> [ 12.601146] [<c03e405c>] ? do_page_fault+0x3e9/0x6f9
>> [ 12.601146] [<c018bcfd>] ? kfree+0xd5/0xe9
>> [ 12.601146] [<c015c92f>] ? call_rcu+0x63/0x74
>> [ 12.601146] [<c018fd0e>] ? put_filp+0x47/0x4d
>> [ 12.601146] [<c0196c53>] ? release_open_intent+0x16/0x1f
>> [ 12.601146] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
>> [ 12.601146] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
>> [ 12.601146] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
>> [ 12.601146] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
>> [ 12.601146] [<c015a307>] handle_IRQ_event+0x34/0x69
>> [ 12.601146] [<c015b47e>] handle_edge_irq+0xc8/0x109
>> [ 12.601146] [<c0104bc9>] do_IRQ+0x92/0xad
>> [ 12.601146] [<c010396c>] common_interrupt+0x2c/0x34
>> [ 12.601146] ---[ end trace a1303c5fb15c200f ]---
>>
>> [ 20.550550] ------------[ cut here ]------------
>> [ 20.550554] WARNING: at drivers/ata/libata-sff.c:1017
>> ata_sff_hsm_move+0x49c/0x6d0()
>> [ 20.550556] Hardware name: MacBookPro2,2
>> [ 20.550558] Modules linked in: fan battery container ipt_LOG xt_limit
>> xt_tcpudp xt_state ipt_addrtype nf_nat_irc nf_conntrack_irc nf_nat_ftp nf_nat
>> nf_conntrack_ftp ipmi_watchdog ipmi_msghandler isight_firmware uinput
>> arpt_mangle arptable_filter arp_tables nf_conntrack_ipv4 nf_conntrack
>> nf_defrag_ipv4 iptable_mangle iptable_filter ip_tables x_tables coretemp
>> eeprom acpi_cpufreq cpufreq_powersave cpufreq_performance cpufreq_ondemand
>> cpufreq_conservative firewire_sbp2 firewire_core raw1394 appletouch
>> snd_hda_codec_idt uvcvideo ohci1394 thermal joydev snd_hda_intel snd_hda_codec
>> ath9k ieee1394 video ac button processor applesmc uhci_hcd ehci_hcd snd_hwdep
>> snd_pcm snd_page_alloc pata_acpi evdev
>> [ 20.550621] Pid: 0, comm: swapper Tainted: G W
>> 2.6.28-07812-g5fbbf5f #9
>> [ 20.550623] Call Trace:
>> [ 20.550630] [<c01292ca>] warn_slowpath+0x76/0xad
>> [ 20.550635] [<c013e562>] ? sched_clock_cpu+0x137/0x146
>> [ 20.550639] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
>> [ 20.550642] [<c013c4e7>] ? hrtimer_forward+0xf9/0x10f
>> [ 20.550646] [<c014129b>] ? getnstimeofday+0x56/0xdf
>> [ 20.550650] [<c01119f4>] ? lapic_next_event+0x18/0x1c
>> [ 20.550653] [<c0143380>] ? clockevents_program_event+0xe0/0xef
>> [ 20.550659] [<c03e2141>] ? _spin_unlock_irqrestore+0x26/0x3c
>> [ 20.550662] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
>> [ 20.550665] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
>> [ 20.550669] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
>> [ 20.550672] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
>> [ 20.550677] [<c015a307>] handle_IRQ_event+0x34/0x69
>> [ 20.550680] [<c015b47e>] handle_edge_irq+0xc8/0x109
>> [ 20.550684] [<c0104bc9>] do_IRQ+0x92/0xad
>> [ 20.550687] [<c010396c>] common_interrupt+0x2c/0x34
>> [ 20.550699] [<f806c727>] ? acpi_idle_enter_bm+0x2df/0x36b [processor]
>> [ 20.550703] [<c0144b5a>] ? tick_nohz_restart_sched_tick+0x139/0x14b
>> [ 20.550708] [<c031e695>] cpuidle_idle_call+0x65/0x98
>> [ 20.550711] [<c01023b7>] cpu_idle+0x84/0xa5
>> [ 20.550714] [<c03d388f>] rest_init+0x53/0x55
>> [ 20.550717] ---[ end trace a1303c5fb15c2010 ]---
>> [ 20.551664] ------------[ cut here ]------------
>> [ 20.551669] WARNING: at drivers/ata/libata-sff.c:1017
>> ata_sff_hsm_move+0x49c/0x6d0()
>> [ 20.551673] Hardware name: MacBookPro2,2
>> [ 20.551676] Modules linked in: fan battery container ipt_LOG xt_limit
>> xt_tcpudp xt_state ipt_addrtype nf_nat_irc nf_conntrack_irc nf_nat_ftp nf_nat
>> nf_conntrack_ftp ipmi_watchdog ipmi_msghandler isight_firmware uinput
>> arpt_mangle arptable_filter arp_tables nf_conntrack_ipv4 nf_conntrack
>> nf_defrag_ipv4 iptable_mangle iptable_filter ip_tables x_tables coretemp
>> eeprom acpi_cpufreq cpufreq_powersave cpufreq_performance cpufreq_ondemand
>> cpufreq_conservative firewire_sbp2 firewire_core raw1394 appletouch
>> snd_hda_codec_idt uvcvideo ohci1394 thermal joydev snd_hda_intel snd_hda_codec
>> ath9k ieee1394 video ac button processor applesmc uhci_hcd ehci_hcd snd_hwdep
>> snd_pcm snd_page_alloc pata_acpi evdev
>> [ 20.551785] Pid: 0, comm: swapper Tainted: G W
>> 2.6.28-07812-g5fbbf5f #9
>> [ 20.551789] Call Trace:
>> [ 20.551797] [<c01292ca>] warn_slowpath+0x76/0xad
>> [ 20.551805] [<c03e2141>] ? _spin_unlock_irqrestore+0x26/0x3c
>> [ 20.551812] [<c01238ef>] ? try_to_wake_up+0x245/0x250
>> [ 20.551819] [<c03e2141>] ? _spin_unlock_irqrestore+0x26/0x3c
>> [ 20.551828] [<c02ce674>] ? scsi_eh_scmd_add+0x83/0x8c
>> [ 20.551835] [<c03e2141>] ? _spin_unlock_irqrestore+0x26/0x3c
>> [ 20.551842] [<c02ce674>] ? scsi_eh_scmd_add+0x83/0x8c
>> [ 20.551849] [<c02ce6cf>] ? scsi_times_out+0x52/0x6c
>> [ 20.551856] [<c0235c66>] ? blk_rq_timed_out+0x11/0x4b
>> [ 20.551863] [<c0235ce3>] ? blk_abort_request+0x43/0x46
>> [ 20.551870] [<c02ebb5c>] ? ata_qc_schedule_eh+0x49/0x50
>> [ 20.551877] [<c02e1d9f>] ? ata_qc_complete+0x75/0x1a9
>> [ 20.551884] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
>> [ 20.551892] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
>> [ 20.551899] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
>> [ 20.551906] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
>> [ 20.551914] [<c015a307>] handle_IRQ_event+0x34/0x69
>> [ 20.551921] [<c015b47e>] handle_edge_irq+0xc8/0x109
>> [ 20.551928] [<c0104bc9>] do_IRQ+0x92/0xad
>> [ 20.551934] [<c010396c>] common_interrupt+0x2c/0x34
>> [ 20.551954] [<f806c727>] ? acpi_idle_enter_bm+0x2df/0x36b [processor]
>> [ 20.551961] [<c0144b5a>] ? tick_nohz_restart_sched_tick+0x139/0x14b
>> [ 20.551969] [<c031e695>] cpuidle_idle_call+0x65/0x98
>> [ 20.551975] [<c01023b7>] cpu_idle+0x84/0xa5
>> [ 20.551982] [<c03d388f>] rest_init+0x53/0x55
>> [ 20.551986] ---[ end trace a1303c5fb15c2011 ]---
>> [ 20.558509] ------------[ cut here ]------------
>> [ 20.558512] WARNING: at drivers/ata/libata-sff.c:1017
>> ata_sff_hsm_move+0x49c/0x6d0()
>> [ 20.558514] Hardware name: MacBookPro2,2
>> [ 20.558516] Modules linked in: fan battery container ipt_LOG xt_limit
>> xt_tcpudp xt_state ipt_addrtype nf_nat_irc nf_conntrack_irc nf_nat_ftp nf_nat
>> nf_conntrack_ftp ipmi_watchdog ipmi_msghandler isight_firmware uinput
>> arpt_mangle arptable_filter arp_tables nf_conntrack_ipv4 nf_conntrack
>> nf_defrag_ipv4 iptable_mangle iptable_filter ip_tables x_tables coretemp
>> eeprom acpi_cpufreq cpufreq_powersave cpufreq_performance cpufreq_ondemand
>> cpufreq_conservative firewire_sbp2 firewire_core raw1394 appletouch
>> snd_hda_codec_idt uvcvideo ohci1394 thermal joydev snd_hda_intel snd_hda_codec
>> ath9k ieee1394 video ac button processor applesmc uhci_hcd ehci_hcd snd_hwdep
>> snd_pcm snd_page_alloc pata_acpi evdev
>> [ 20.558573] Pid: 2519, comm: hald-addon-macb Tainted: G W
>> 2.6.28-07812-g5fbbf5f #9
>> [ 20.558575] Call Trace:
>> [ 20.558580] [<c01292ca>] warn_slowpath+0x76/0xad
>> [ 20.558585] [<c011b332>] ? kunmap_atomic+0x72/0x92
>> [ 20.558588] [<c024382c>] ? _raw_spin_unlock+0x74/0x78
>> [ 20.558600] [<c03e3ee3>] ? do_page_fault+0x270/0x6f9
>> [ 20.558600] [<c03e405c>] ? do_page_fault+0x3e9/0x6f9
>> [ 20.558600] [<c023c89f>] ? prio_tree_insert+0x18c/0x1ff
>> [ 20.558602] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
>> [ 20.558606] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
>> [ 20.558610] [<c03e2164>] ? _spin_unlock+0xd/0xf
>> [ 20.558613] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
>> [ 20.558617] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
>> [ 20.558630] [<c015a307>] handle_IRQ_event+0x34/0x69
>> [ 20.558630] [<c015b47e>] handle_edge_irq+0xc8/0x109
>> [ 20.558630] [<c0104bc9>] do_IRQ+0x92/0xad
>> [ 20.558631] [<c010396c>] common_interrupt+0x2c/0x34
>> [ 20.558633] ---[ end trace a1303c5fb15c2012 ]---
>> [ 20.623177] ------------[ cut here ]------------
>> [ 20.623181] WARNING: at drivers/ata/libata-sff.c:1017
>> ata_sff_hsm_move+0x49c/0x6d0()
>> [ 20.623184] Hardware name: MacBookPro2,2
>> [ 20.623185] Modules linked in: fan battery container ipt_LOG xt_limit
>> xt_tcpudp xt_state ipt_addrtype nf_nat_irc nf_conntrack_irc nf_nat_ftp nf_nat
>> nf_conntrack_ftp ipmi_watchdog ipmi_msghandler isight_firmware uinput
>> arpt_mangle arptable_filter arp_tables nf_conntrack_ipv4 nf_conntrack
>> nf_defrag_ipv4 iptable_mangle iptable_filter ip_tables x_tables coretemp
>> eeprom acpi_cpufreq cpufreq_powersave cpufreq_performance cpufreq_ondemand
>> cpufreq_conservative firewire_sbp2 firewire_core raw1394 appletouch
>> snd_hda_codec_idt uvcvideo ohci1394 thermal joydev snd_hda_intel snd_hda_codec
>> ath9k ieee1394 video ac button processor applesmc uhci_hcd ehci_hcd snd_hwdep
>> snd_pcm snd_page_alloc pata_acpi evdev
>> [ 20.623245] Pid: 2519, comm: hald-addon-macb Tainted: G W
>> 2.6.28-07812-g5fbbf5f #9
>> [ 20.623247] Call Trace:
>> [ 20.623252] [<c01292ca>] warn_slowpath+0x76/0xad
>> [ 20.623257] [<c011b332>] ? kunmap_atomic+0x72/0x92
>> [ 20.623260] [<c024382c>] ? _raw_spin_unlock+0x74/0x78
>> [ 20.623264] [<c03e3ee3>] ? do_page_fault+0x270/0x6f9
>> [ 20.623267] [<c03e405c>] ? do_page_fault+0x3e9/0x6f9
>> [ 20.623272] [<c03e2164>] ? _spin_unlock+0xd/0xf
>> [ 20.623276] [<c017e7d2>] ? vma_adjust+0x31a/0x378
>> [ 20.623279] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
>> [ 20.623283] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
>> [ 20.623286] [<c017f421>] ? mmap_region+0x17e/0x435
>> [ 20.623289] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
>> [ 20.623293] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
>> [ 20.623296] [<c015a307>] handle_IRQ_event+0x34/0x69
>> [ 20.623300] [<c015b47e>] handle_edge_irq+0xc8/0x109
>> [ 20.623304] [<c0104bc9>] do_IRQ+0x92/0xad
>> [ 20.623307] [<c010396c>] common_interrupt+0x2c/0x34
>> [ 20.623309] ---[ end trace a1303c5fb15c2013 ]---
>> [ 20.624217] ------------[ cut here ]------------
>> [ 20.624220] WARNING: at drivers/ata/libata-sff.c:1017
>> ata_sff_hsm_move+0x49c/0x6d0()
>> [ 20.624222] Hardware name: MacBookPro2,2
>> [ 20.624224] Modules linked in: fan battery container ipt_LOG xt_limit
>> xt_tcpudp xt_state ipt_addrtype nf_nat_irc nf_conntrack_irc nf_nat_ftp nf_nat
>> nf_conntrack_ftp ipmi_watchdog ipmi_msghandler isight_firmware uinput
>> arpt_mangle arptable_filter arp_tables nf_conntrack_ipv4 nf_conntrack
>> nf_defrag_ipv4 iptable_mangle iptable_filter ip_tables x_tables coretemp
>> eeprom acpi_cpufreq cpufreq_powersave cpufreq_performance cpufreq_ondemand
>> cpufreq_conservative firewire_sbp2 firewire_core raw1394 appletouch
>> snd_hda_codec_idt uvcvideo ohci1394 thermal joydev snd_hda_intel snd_hda_codec
>> ath9k ieee1394 video ac button processor applesmc uhci_hcd ehci_hcd snd_hwdep
>> snd_pcm snd_page_alloc pata_acpi evdev
>> [ 20.624279] Pid: 2519, comm: hald-addon-macb Tainted: G W
>> 2.6.28-07812-g5fbbf5f #9
>> [ 20.624281] Call Trace:
>> [ 20.624285] [<c01292ca>] warn_slowpath+0x76/0xad
>> [ 20.624289] [<c023fac6>] ? vsnprintf+0x866/0x8c5
>> [ 20.624293] [<c03e2141>] ? _spin_unlock_irqrestore+0x26/0x3c
>> [ 20.624296] [<c01299ba>] ? release_console_sem+0x1b8/0x1e5
>> [ 20.624300] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
>> [ 20.624303] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
>> [ 20.624307] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
>> [ 20.624310] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
>> [ 20.624314] [<c015a307>] handle_IRQ_event+0x34/0x69
>> [ 20.624317] [<c015b47e>] handle_edge_irq+0xc8/0x109
>> [ 20.624320] [<c0104bc9>] do_IRQ+0x92/0xad
>> [ 20.624323] [<c010396c>] common_interrupt+0x2c/0x34
>> [ 20.624328] [<c017734f>] ? __inc_zone_state+0x1b/0x7b
>> [ 20.624331] [<c01773cc>] __inc_zone_page_state+0x1d/0x1f
>> [ 20.624334] [<c018168f>] page_add_new_anon_rmap+0x44/0x6a
>> [ 20.624338] [<c017b2a5>] handle_mm_fault+0x1fe/0x606
>> [ 20.624343] [<c02155a8>] ? selinux_socket_unix_stream_connect+0xa4/0xac
>> [ 20.624346] [<c03e3ee3>] ? do_page_fault+0x270/0x6f9
>> [ 20.624349] [<c03e3fed>] do_page_fault+0x37a/0x6f9
>> [ 20.624352] [<c03e20e4>] ? _read_unlock+0xd/0xf
>> [ 20.624357] [<c03454d3>] ? sock_def_readable+0x60/0x65
>> [ 20.624362] [<c03acb34>] ? unix_stream_connect+0x338/0x398
>> [ 20.624365] [<c0343d18>] ? sys_connect+0x65/0x82
>> [ 20.624368] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
>> [ 20.624371] [<c03e210f>] ? _spin_unlock_irq+0x12/0x1e
>> [ 20.624374] [<c03e210f>] ? _spin_unlock_irq+0x12/0x1e
>> [ 20.624379] [<c01326c9>] ? do_sigaction+0x13d/0x14e
>> [ 20.624382] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
>> [ 20.624385] [<c0240330>] ? trace_hardirqs_off_thunk+0xc/0x10
>> [ 20.624388] [<c03e2423>] ? error_code+0x73/0x7c
>> [ 20.624391] [<c03e3c73>] ? do_page_fault+0x0/0x6f9
>> [ 20.624394] [<c03e3c73>] ? do_page_fault+0x0/0x6f9
>> [ 20.624397] [<c03e2427>] error_code+0x77/0x7c
>> [ 20.624400] ---[ end trace a1303c5fb15c2014 ]---
>> [ 20.625285] ------------[ cut here ]------------
>> [ 20.625288] WARNING: at drivers/ata/libata-sff.c:1017
>> ata_sff_hsm_move+0x49c/0x6d0()
>> [ 20.625290] Hardware name: MacBookPro2,2
>> [ 20.625292] Modules linked in: fan battery container ipt_LOG xt_limit
>> xt_tcpudp xt_state ipt_addrtype nf_nat_irc nf_conntrack_irc nf_nat_ftp nf_nat
>> nf_conntrack_ftp ipmi_watchdog ipmi_msghandler isight_firmware uinput
>> arpt_mangle arptable_filter arp_tables nf_conntrack_ipv4 nf_conntrack
>> nf_defrag_ipv4 iptable_mangle iptable_filter ip_tables x_tables coretemp
>> eeprom acpi_cpufreq cpufreq_powersave cpufreq_performance cpufreq_ondemand
>> cpufreq_conservative firewire_sbp2 firewire_core raw1394 appletouch
>> snd_hda_codec_idt uvcvideo ohci1394 thermal joydev snd_hda_intel snd_hda_codec
>> ath9k ieee1394 video ac button processor applesmc uhci_hcd ehci_hcd snd_hwdep
>> snd_pcm snd_page_alloc pata_acpi evdev
>> [ 20.625344] Pid: 2466, comm: hald Tainted: G W
>> 2.6.28-07812-g5fbbf5f #9
>> [ 20.625346] Call Trace:
>> [ 20.625349] [<c01292ca>] warn_slowpath+0x76/0xad
>> [ 20.625353] [<c0213328>] ? selinux_socket_recvmsg+0x1a/0x1c
>> [ 20.625357] [<c0342ccb>] ? sock_aio_read+0x109/0x117
>> [ 20.625361] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
>> [ 20.625364] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
>> [ 20.625367] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
>> [ 20.625371] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
>> [ 20.625374] [<c015a307>] handle_IRQ_event+0x34/0x69
>> [ 20.625377] [<c015b47e>] handle_edge_irq+0xc8/0x109
>> [ 20.625381] [<c0104bc9>] do_IRQ+0x92/0xad
>> [ 20.625384] [<c010396c>] common_interrupt+0x2c/0x34
>> [ 20.625386] ---[ end trace a1303c5fb15c2015 ]---
>> [ 20.660553] ------------[ cut here ]------------
>> [ 20.660556] WARNING: at drivers/ata/libata-sff.c:1017
>> ata_sff_hsm_move+0x49c/0x6d0()
>> [ 20.660558] Hardware name: MacBookPro2,2
>> [ 20.660560] Modules linked in: fan battery container ipt_LOG xt_limit
>> xt_tcpudp xt_state ipt_addrtype nf_nat_irc nf_conntrack_irc nf_nat_ftp nf_nat
>> nf_conntrack_ftp ipmi_watchdog ipmi_msghandler isight_firmware uinput
>> arpt_mangle arptable_filter arp_tables nf_conntrack_ipv4 nf_conntrack
>> nf_defrag_ipv4 iptable_mangle iptable_filter ip_tables x_tables coretemp
>> eeprom acpi_cpufreq cpufreq_powersave cpufreq_performance cpufreq_ondemand
>> cpufreq_conservative firewire_sbp2 firewire_core raw1394 appletouch
>> snd_hda_codec_idt uvcvideo ohci1394 thermal joydev snd_hda_intel snd_hda_codec
>> ath9k ieee1394 video ac button processor applesmc uhci_hcd ehci_hcd snd_hwdep
>> snd_pcm snd_page_alloc pata_acpi evdev
>> [ 20.660619] Pid: 2519, comm: hald-addon-macb Tainted: G W
>> 2.6.28-07812-g5fbbf5f #9
>> [ 20.660621] Call Trace:
>> [ 20.660626] [<c01292ca>] warn_slowpath+0x76/0xad
>> [ 20.660631] [<c013cca6>] ? hrtimer_cancel+0x12/0x1d
>> [ 20.660635] [<c03e1285>] ? schedule_hrtimeout_range+0x10b/0x12a
>> [ 20.660639] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
>> [ 20.660642] [<c03e2148>] ? _spin_unlock_irqrestore+0x2d/0x3c
>> [ 20.660647] [<c013a41e>] ? remove_wait_queue+0x35/0x39
>> [ 20.660651] [<c019a87b>] ? poll_freewait+0x34/0x7d
>> [ 20.660654] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
>> [ 20.660658] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
>> [ 20.660661] [<c011b332>] ? kunmap_atomic+0x72/0x92
>> [ 20.660665] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
>> [ 20.660668] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
>> [ 20.660672] [<c015a307>] handle_IRQ_event+0x34/0x69
>> [ 20.660676] [<c015b47e>] handle_edge_irq+0xc8/0x109
>> [ 20.660679] [<c0104bc9>] do_IRQ+0x92/0xad
>> [ 20.660682] [<c010396c>] common_interrupt+0x2c/0x34
>> [ 20.660687] [<c016e758>] ? get_page_from_freelist+0x32f/0x3ed
>> [ 20.660691] [<c016ea87>] __alloc_pages_internal+0x9b/0x36a
>> [ 20.660694] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
>> [ 20.660697] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
>> [ 20.660700] [<c016ed6f>] get_zeroed_page+0x19/0x2b
>> [ 20.660704] [<c01c82f5>] sysfs_follow_link+0x22/0x13d
>> [ 20.660708] [<c01971a5>] __link_path_walk+0x459/0xc5a
>> [ 20.660712] [<c0215291>] ? selinux_file_alloc_security+0x2d/0x46
>> [ 20.660715] [<c0197b43>] path_walk+0x55/0xaa
>> [ 20.660718] [<c0197d66>] do_path_lookup+0x145/0x18d
>> [ 20.660721] [<c0197e50>] path_lookup_open+0x4b/0x7c
>> [ 20.660724] [<c01988d6>] do_filp_open+0xa8/0x6e8
>> [ 20.660728] [<c018bb89>] ? __slab_alloc+0x409/0x4a8
>> [ 20.660731] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
>> [ 20.660734] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
>> [ 20.660737] [<c0196cb5>] ? getname+0x25/0xbc
>> [ 20.660739] [<c024382c>] ? _raw_spin_unlock+0x74/0x78
>> [ 20.660743] [<c018d779>] do_sys_open+0x47/0xbc
>> [ 20.660746] [<c018d83a>] sys_open+0x23/0x2b
>> [ 20.660749] [<c010329f>] sysenter_do_call+0x12/0x34
>> [ 20.660751] ---[ end trace a1303c5fb15c2016 ]---
>> [ 20.662220] ------------[ cut here ]------------
>> [ 20.662223] WARNING: at drivers/ata/libata-sff.c:1017
>> ata_sff_hsm_move+0x49c/0x6d0()
>> [ 20.662225] Hardware name: MacBookPro2,2
>> [ 20.662226] Modules linked in: fan battery container ipt_LOG xt_limit
>> xt_tcpudp xt_state ipt_addrtype nf_nat_irc nf_conntrack_irc nf_nat_ftp nf_nat
>> nf_conntrack_ftp ipmi_watchdog ipmi_msghandler isight_firmware uinput
>> arpt_mangle arptable_filter arp_tables nf_conntrack_ipv4 nf_conntrack
>> nf_defrag_ipv4 iptable_mangle iptable_filter ip_tables x_tables coretemp
>> eeprom acpi_cpufreq cpufreq_powersave cpufreq_performance cpufreq_ondemand
>> cpufreq_conservative firewire_sbp2 firewire_core raw1394 appletouch
>> snd_hda_codec_idt uvcvideo ohci1394 thermal joydev snd_hda_intel snd_hda_codec
>> ath9k ieee1394 video ac button processor applesmc uhci_hcd ehci_hcd snd_hwdep
>> snd_pcm snd_page_alloc pata_acpi evdev
>> [ 20.662280] Pid: 2423, comm: klogd Tainted: G W
>> 2.6.28-07812-g5fbbf5f #9
>> [ 20.662282] Call Trace:
>> [ 20.662286] [<c01292ca>] warn_slowpath+0x76/0xad
>> [ 20.662290] [<c03e0b94>] ? __mutex_lock_slowpath+0x25b/0x263
>> [ 20.662293] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
>> [ 20.662296] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
>> [ 20.662298] [<c024382c>] ? _raw_spin_unlock+0x74/0x78
>> [ 20.662302] [<c03e2164>] ? _spin_unlock+0xd/0xf
>> [ 20.662306] [<c01a1823>] ? mnt_drop_write+0x68/0xcc
>> [ 20.662309] [<c019e22a>] ? touch_atime+0xa5/0xbf
>> [ 20.662313] [<c019541e>] ? pipe_read+0x2f7/0x305
>> [ 20.662316] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
>> [ 20.662320] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
>> [ 20.662323] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
>> [ 20.662327] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
>> [ 20.662330] [<c015a307>] handle_IRQ_event+0x34/0x69
>> [ 20.662334] [<c015b47e>] handle_edge_irq+0xc8/0x109
>> [ 20.662337] [<c0104bc9>] do_IRQ+0x92/0xad
>> [ 20.662340] [<c010396c>] common_interrupt+0x2c/0x34
>> [ 20.662342] ---[ end trace a1303c5fb15c2017 ]---
>> [ 20.663258] ------------[ cut here ]------------
>> [ 20.663260] WARNING: at drivers/ata/libata-sff.c:1017
>> ata_sff_hsm_move+0x49c/0x6d0()
>> [ 20.663262] Hardware name: MacBookPro2,2
>> [ 20.663264] Modules linked in: fan battery container ipt_LOG xt_limit
>> xt_tcpudp xt_state ipt_addrtype nf_nat_irc nf_conntrack_irc nf_nat_ftp nf_nat
>> nf_conntrack_ftp ipmi_watchdog ipmi_msghandler isight_firmware uinput
>> arpt_mangle arptable_filter arp_tables nf_conntrack_ipv4 nf_conntrack
>> nf_defrag_ipv4 iptable_mangle iptable_filter ip_tables x_tables coretemp
>> eeprom acpi_cpufreq cpufreq_powersave cpufreq_performance cpufreq_ondemand
>> cpufreq_conservative firewire_sbp2 firewire_core raw1394 appletouch
>> snd_hda_codec_idt uvcvideo ohci1394 thermal joydev snd_hda_intel snd_hda_codec
>> ath9k ieee1394 video ac button processor applesmc uhci_hcd ehci_hcd snd_hwdep
>> snd_pcm snd_page_alloc pata_acpi evdev
>> [ 20.663318] Pid: 2420, comm: dd Tainted: G W 2.6.28-07812-g5fbbf5f
>> #9
>> [ 20.663320] Call Trace:
>> [ 20.663323] [<c01292ca>] warn_slowpath+0x76/0xad
>> [ 20.663327] [<c03e2141>] ? _spin_unlock_irqrestore+0x26/0x3c
>> [ 20.663331] [<c01238ef>] ? try_to_wake_up+0x245/0x250
>> [ 20.663334] [<c011bbac>] ? update_curr+0xae/0x189
>> [ 20.663337] [<c01206a1>] ? enqueue_entity+0x26c/0x274
>> [ 20.663341] [<c011b7ad>] ? resched_task+0x25/0x69
>> [ 20.663344] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
>> [ 20.663347] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
>> [ 20.663351] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
>> [ 20.663354] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
>> [ 20.663358] [<c015a307>] handle_IRQ_event+0x34/0x69
>> [ 20.663361] [<c015b47e>] handle_edge_irq+0xc8/0x109
>> [ 20.663364] [<c0104bc9>] do_IRQ+0x92/0xad
>> [ 20.663368] [<c010396c>] common_interrupt+0x2c/0x34
>> [ 20.663371] [<c03e007b>] ? schedule+0x695/0x8f1
>> [ 20.663374] [<c03e2111>] ? _spin_unlock_irq+0x14/0x1e
>> [ 20.663378] [<c0125c92>] finish_task_switch+0x37/0x8a
>> [ 20.663381] [<c03e026d>] schedule+0x887/0x8f1
>> [ 20.663385] [<c0240330>] ? trace_hardirqs_off_thunk+0xc/0x10
>> [ 20.663388] [<c0103210>] ? resume_userspace+0x14/0x28
>> [ 20.663391] [<c010344e>] work_resched+0x5/0x2d
>> [ 20.663393] ---[ end trace a1303c5fb15c2018 ]---
>>
>> this was just after compiling. rebooted to this.
>> seems harmless,(just warnings);
>>
>>
>> regards;
>>
>> Justin P. Mattock
>>
>>
>>
>>
>>
>>
>>
>
>

2009-01-09 10:05:48

by Justin P. Mattock

[permalink] [raw]
Subject: Re: [fix] Too async libata breakage

Linus Torvalds wrote:
> On Thu, 8 Jan 2009, Justin P. Mattock wrote:
>
>> O.K. attached is the results of
>> dmesg after doing a git-pull
>> (system didn't freeze, but there's
>> a slew of warnings); i.g.
>>
>
> That's a different thing now - some very annoying warnings indeed.
>
> Tejun, I think it's yours. And I think it should be removed, or at the
> very least changed into a WARN_ON_ONCE. Because spamming the console with
> this is not a good idea:
>
> Linus
>
>
>> [ 1.739745] WARNING: at drivers/ata/libata-sff.c:1017 ata_sff_hsm_move+0x49c/0x6d0()
>> [ 1.741682] Hardware name: MacBookPro2,2
>> [ 1.741682] Modules linked in:
>> [ 1.741682] Pid: 1, comm: swapper Not tainted 2.6.28-07812-g5fbbf5f #9
>> [ 1.741682] Call Trace:
>> [ 1.741682] [<c01292ca>] warn_slowpath+0x76/0xad
>> [ 1.741682] [<c0263865>] ? cfb_fillrect+0x182/0x275
>> [ 1.741682] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
>> [ 1.741682] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
>> [ 1.741682] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
>> [ 1.741682] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
>> [ 1.741682] [<c015a307>] handle_IRQ_event+0x34/0x69
>> [ 1.741682] [<c015b47e>] handle_edge_irq+0xc8/0x109
>> [ 1.741682] [<c0104bc9>] do_IRQ+0x92/0xad
>> [ 1.741682] [<c010396c>] common_interrupt+0x2c/0x34
>> [ 1.741682] [<c012007b>] ? sched_debug_show+0x803/0xbbd
>> [ 1.741682] [<c012da4f>] ? __do_softirq+0x6b/0x154
>> [ 1.741682] [<c012db6c>] ? do_softirq+0x34/0x7e
>> [ 1.741682] [<c012db8a>] do_softirq+0x52/0x7e
>> [ 1.741682] [<c012dcd6>] irq_exit+0x49/0x77
>> [ 1.741682] [<c03e56e9>] __irqentry_text_start+0x79/0x87
>> [ 1.741682] [<c0103aa1>] apic_timer_interrupt+0x2d/0x34
>> [ 1.741682] [<c0129e84>] ? vprintk+0x2aa/0x2d5
>> [ 1.741682] [<c03df731>] printk+0x14/0x1b
>> [ 1.741682] [<c05780e8>] mousedev_init+0x70/0x78
>> [ 1.741682] [<c0101137>] _stext+0x4f/0x127
>> [ 1.741682] [<c0578078>] ? mousedev_init+0x0/0x78
>> [ 1.741682] [<c015be1c>] ? register_irq_proc+0x84/0xa0
>> [ 1.741682] [<c015be90>] ? init_irq_proc+0x58/0x65
>> [ 1.741682] [<c055a309>] kernel_init+0x105/0x156
>> [ 1.741682] [<c055a204>] ? kernel_init+0x0/0x156
>> [ 1.741682] [<c0103bcb>] kernel_thread_helper+0x7/0x10
>> [ 1.741682] ---[ end trace a1303c5fb15c2002 ]---
>>
>> [ 2.013026] ------------[ cut here ]------------
>> [ 2.013028] WARNING: at drivers/ata/libata-sff.c:1017
>> ata_sff_hsm_move+0x49c/0x6d0()
>> [ 2.013030] Hardware name: MacBookPro2,2
>> [ 2.013031] Modules linked in:
>> [ 2.013033] Pid: 578, comm: scsi_eh_3 Tainted: G W
>> 2.6.28-07812-g5fbbf5f #9
>> [ 2.013035] Call Trace:
>> [ 2.013038] [<c01292ca>] warn_slowpath+0x76/0xad
>> [ 2.013042] [<c011bbac>] ? update_curr+0xae/0x189
>> [ 2.013045] [<c011e7c1>] ? dequeue_entity+0x1b/0x20d
>> [ 2.013048] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
>> [ 2.013050] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
>> [ 2.013053] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
>> [ 2.013056] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
>> [ 2.013059] [<c015a307>] handle_IRQ_event+0x34/0x69
>> [ 2.013061] [<c015b47e>] handle_edge_irq+0xc8/0x109
>> [ 2.013064] [<c0104bc9>] do_IRQ+0x92/0xad
>> [ 2.013066] [<c010396c>] common_interrupt+0x2c/0x34
>> [ 2.013068] [<c012007b>] ? sched_debug_show+0x803/0xbbd
>> [ 2.013071] [<c012da4f>] ? __do_softirq+0x6b/0x154
>> [ 2.013073] [<c012db6c>] ? do_softirq+0x34/0x7e
>> [ 2.013075] [<c012db8a>] do_softirq+0x52/0x7e
>> [ 2.013077] [<c012dcd6>] irq_exit+0x49/0x77
>> [ 2.013080] [<c03e56e9>] __irqentry_text_start+0x79/0x87
>> [ 2.013082] [<c0103aa1>] apic_timer_interrupt+0x2d/0x34
>> [ 2.013085] [<c03e007b>] ? schedule+0x695/0x8f1
>> [ 2.013088] [<c03e214c>] ? _spin_unlock_irqrestore+0x31/0x3c
>> [ 2.013090] [<c02e8818>] ata_eh_thaw_port+0x3b/0x3f
>> [ 2.013093] [<c02e94b4>] ata_eh_reset+0x6cc/0x9bd
>> [ 2.013096] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
>> [ 2.013098] [<c02eeb26>] ? ata_sff_prereset+0x0/0x9e
>> [ 2.013101] [<c02eea18>] ? ata_sff_softreset+0x0/0x10e
>> [ 2.013105] [<c02e032a>] ? ata_dev_init+0x5d/0x80
>> [ 2.013107] [<c02ead0a>] ata_eh_recover+0x29c/0xafd
>> [ 2.013110] [<c02eea18>] ? ata_sff_softreset+0x0/0x10e
>> [ 2.013112] [<c02ecf23>] ? ata_sff_postreset+0x0/0x5a
>> [ 2.013115] [<c02eea18>] ? ata_sff_softreset+0x0/0x10e
>> [ 2.013117] [<c02eeb26>] ? ata_sff_prereset+0x0/0x9e
>> [ 2.013120] [<c011e7c1>] ? dequeue_entity+0x1b/0x20d
>> [ 2.013122] [<c011ef1c>] ? dequeue_task_fair+0x5c/0x61
>> [ 2.013125] [<c0101e73>] ? __switch_to+0xce/0x14f
>> [ 2.013127] [<c03e210f>] ? _spin_unlock_irq+0x12/0x1e
>> [ 2.013130] [<c03e210f>] ? _spin_unlock_irq+0x12/0x1e
>> [ 2.013132] [<c0125c92>] ? finish_task_switch+0x37/0x8a
>> [ 2.013134] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
>> [ 2.013137] [<c0131627>] ? lock_timer_base+0x24/0x43
>> [ 2.013140] [<c02eea18>] ? ata_sff_softreset+0x0/0x10e
>> [ 2.013143] [<c02eeb26>] ? ata_sff_prereset+0x0/0x9e
>> [ 2.013145] [<c02eb6f8>] ata_do_eh+0x30/0x72
>> [ 2.013148] [<c02ecf23>] ? ata_sff_postreset+0x0/0x5a
>> [ 2.013150] [<c02ecf19>] ata_sff_error_handler+0x12b/0x135
>> [ 2.013153] [<c02ecf23>] ? ata_sff_postreset+0x0/0x5a
>> [ 2.013155] [<c02eea18>] ? ata_sff_softreset+0x0/0x10e
>> [ 2.013158] [<c02ebec7>] ata_scsi_error+0x2b5/0x5e6
>> [ 2.013162] [<c02ce15b>] scsi_error_handler+0xc1/0x454
>> [ 2.013164] [<c012390a>] ? default_wake_function+0x10/0x12
>> [ 2.013167] [<c03e2148>] ? _spin_unlock_irqrestore+0x2d/0x3c
>> [ 2.013169] [<c011e4d1>] ? complete+0x39/0x43
>> [ 2.013171] [<c02ce09a>] ? scsi_error_handler+0x0/0x454
>> [ 2.013175] [<c0139f9c>] kthread+0x40/0x66
>> [ 2.013178] [<c0139f5c>] ? kthread+0x0/0x66
>> [ 2.013180] [<c0103bcb>] kernel_thread_helper+0x7/0x10
>> [ 2.013182] ---[ end trace a1303c5fb15c2003 ]---
>>
>> [ 2.436869] ------------[ cut here ]------------
>> [ 2.442849] WARNING: at drivers/ata/libata-sff.c:1017
>> ata_sff_hsm_move+0x49c/0x6d0()
>> [ 2.446154] Hardware name: MacBookPro2,2
>> [ 2.446154] Modules linked in:
>> [ 2.446154] Pid: 1, comm: swapper Tainted: G W
>> 2.6.28-07812-g5fbbf5f #9
>> [ 2.446154] Call Trace:
>> [ 2.446154] [<c01292ca>] warn_slowpath+0x76/0xad
>> [ 2.446154] [<c011e7c1>] ? dequeue_entity+0x1b/0x20d
>> [ 2.446154] [<c0101e73>] ? __switch_to+0xce/0x14f
>> [ 2.446154] [<c03e210f>] ? _spin_unlock_irq+0x12/0x1e
>> [ 2.446154] [<c0243563>] ? _raw_spin_trylock+0xf/0x30
>> [ 2.446154] [<c0125c92>] ? finish_task_switch+0x37/0x8a
>> [ 2.446154] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
>> [ 2.446154] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
>> [ 2.446154] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
>> [ 2.446154] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
>> [ 2.446154] [<c015a307>] handle_IRQ_event+0x34/0x69
>> [ 2.446154] [<c015b47e>] handle_edge_irq+0xc8/0x109
>> [ 2.446154] [<c0104bc9>] do_IRQ+0x92/0xad
>> [ 2.446154] [<c010396c>] common_interrupt+0x2c/0x34
>> [ 2.446154] [<c01c00d8>] ? proc_task_readdir+0x76/0x283
>> [ 2.446154] [<c0243830>] ? _raw_spin_lock+0x0/0xf8
>> [ 2.446154] [<c03e21f4>] ? _spin_lock+0xd/0xf
>> [ 2.446154] [<c01c79a1>] sysfs_new_dirent+0x5a/0xe0
>> [ 2.446154] [<c01c7347>] sysfs_add_file_mode+0x2b/0x72
>> [ 2.446154] [<c024382c>] ? _raw_spin_unlock+0x74/0x78
>> [ 2.446154] [<c03e2164>] ? _spin_unlock+0xd/0xf
>> [ 2.446154] [<c01c73a1>] sysfs_add_file+0x13/0x18
>> [ 2.446154] [<c01c7445>] sysfs_create_file+0x25/0x27
>> [ 2.446154] [<c02b2857>] driver_create_file+0x1b/0x1d
>> [ 2.446154] [<c02b1955>] bus_add_driver+0xd9/0x1c2
>> [ 2.446154] [<c02b275b>] driver_register+0x86/0xe6
>> [ 2.446154] [<c03215a9>] __hid_register_driver+0x43/0x68
>> [ 2.446154] [<c0325ba2>] ch_init+0x19/0x1b
>> [ 2.446154] [<c0101137>] _stext+0x4f/0x127
>> [ 2.446154] [<c0325b89>] ? ch_init+0x0/0x1b
>> [ 2.446154] [<c015be1c>] ? register_irq_proc+0x84/0xa0
>> [ 2.446154] [<c015be90>] ? init_irq_proc+0x58/0x65
>> [ 2.446154] [<c055a309>] kernel_init+0x105/0x156
>> [ 2.446154] [<c055a204>] ? kernel_init+0x0/0x156
>> [ 2.446154] [<c0103bcb>] kernel_thread_helper+0x7/0x10
>> [ 2.446154] ---[ end trace a1303c5fb15c2004 ]---
>>
>>
>> [ 10.336705] ------------[ cut here ]------------
>> [ 10.354651] WARNING: at drivers/ata/libata-sff.c:1017
>> ata_sff_hsm_move+0x49c/0x6d0()
>> [ 10.354651] Hardware name: MacBookPro2,2
>> [ 10.354651] Modules linked in:
>> [ 10.354651] Pid: 889, comm: udevd Tainted: G W
>> 2.6.28-07812-g5fbbf5f #9
>> [ 10.354651] Call Trace:
>> [ 10.354651] [<c01292ca>] warn_slowpath+0x76/0xad
>> [ 10.354651] [<c011b7ad>] ? resched_task+0x25/0x69
>> [ 10.354651] [<c03e2141>] ? _spin_unlock_irqrestore+0x26/0x3c
>> [ 10.354651] [<c01238ef>] ? try_to_wake_up+0x245/0x250
>> [ 10.354651] [<c016e6cf>] ? get_page_from_freelist+0x2a6/0x3ed
>> [ 10.354651] [<c0169974>] ? find_get_page+0x22/0x86
>> [ 10.354651] [<c016ea87>] ? __alloc_pages_internal+0x9b/0x36a
>> [ 10.354651] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
>> [ 10.354651] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
>> [ 10.354651] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
>> [ 10.354651] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
>> [ 10.354651] [<c015a307>] handle_IRQ_event+0x34/0x69
>> [ 10.354651] [<c015b47e>] handle_edge_irq+0xc8/0x109
>> [ 10.354651] [<c0104bc9>] do_IRQ+0x92/0xad
>> [ 10.354651] [<c010396c>] common_interrupt+0x2c/0x34
>> [ 10.354651] [<c03e007b>] ? schedule+0x695/0x8f1
>> [ 10.354651] [<c03e3ee5>] ? do_page_fault+0x272/0x6f9
>> [ 10.354651] [<c011e70c>] ? set_next_entity+0xa7/0x113
>> [ 10.354651] [<c011eeb9>] ? pick_next_task_fair+0x73/0x7a
>> [ 10.354651] [<c018aed4>] ? __slab_free+0x280/0x2b8
>> [ 10.354651] [<c018a64d>] ? check_object+0x139/0x190
>> [ 10.354651] [<c03e2423>] ? error_code+0x73/0x7c
>> [ 10.354651] [<c03e3c73>] ? do_page_fault+0x0/0x6f9
>> [ 10.354651] [<c0240320>] ? trace_hardirqs_on_thunk+0xc/0x10
>> [ 10.354651] [<c0240330>] ? trace_hardirqs_off_thunk+0xc/0x10
>> [ 10.354651] [<c03e2423>] ? error_code+0x73/0x7c
>> [ 10.354651] [<c03e3c73>] ? do_page_fault+0x0/0x6f9
>> [ 10.354651] [<c03e3c73>] ? do_page_fault+0x0/0x6f9
>> [ 10.354651] [<c03e2427>] error_code+0x77/0x7c
>> [ 10.354651] ---[ end trace a1303c5fb15c2006 ]---
>> [ 10.647515] ------------[ cut here ]------------
>>
>> [ 10.647515] ------------[ cut here ]------------
>> [ 10.654832] WARNING: at drivers/ata/libata-sff.c:1017
>> ata_sff_hsm_move+0x49c/0x6d0()
>> [ 10.656261] Hardware name: MacBookPro2,2
>> [ 10.656261] Modules linked in:
>> [ 10.656261] Pid: 893, comm: udevd Tainted: G W
>> 2.6.28-07812-g5fbbf5f #9
>> [ 10.656261] Call Trace:
>> [ 10.656261] [<c01292ca>] warn_slowpath+0x76/0xad
>> [ 10.656261] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
>> [ 10.656261] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
>> [ 10.656261] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
>> [ 10.656261] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
>> [ 10.656261] [<c015a307>] handle_IRQ_event+0x34/0x69
>> [ 10.656261] [<c015b47e>] handle_edge_irq+0xc8/0x109
>> [ 10.656261] [<c0104bc9>] do_IRQ+0x92/0xad
>> [ 10.656261] [<c010396c>] common_interrupt+0x2c/0x34
>> [ 10.656261] [<c011007b>] ? acpi_processor_ffh_cstate_enter+0x3/0x2c
>> [ 10.656261] [<c016a048>] ? filemap_fault+0x9/0x308
>> [ 10.656261] [<c011a603>] ? ptep_set_access_flags+0x5f/0x69
>> [ 10.656261] [<c011b332>] ? kunmap_atomic+0x72/0x92
>> [ 10.656261] [<c024382c>] ? _raw_spin_unlock+0x74/0x78
>> [ 10.656261] [<c0179723>] __do_fault+0x40/0x345
>> [ 10.656261] [<c017b345>] handle_mm_fault+0x29e/0x606
>> [ 10.656261] [<c03e405c>] ? do_page_fault+0x3e9/0x6f9
>> [ 10.656261] [<c03e3ee3>] ? do_page_fault+0x270/0x6f9
>> [ 10.656261] [<c03e3fed>] do_page_fault+0x37a/0x6f9
>> [ 10.656261] [<c018a64d>] ? check_object+0x139/0x190
>> [ 10.656261] [<c014129b>] ? getnstimeofday+0x56/0xdf
>> [ 10.656261] [<c03e2141>] ? _spin_unlock_irqrestore+0x26/0x3c
>> [ 10.656261] [<c013cee5>] ? hrtimer_start_range_ns+0x234/0x23f
>> [ 10.656261] [<c03e2141>] ? _spin_unlock_irqrestore+0x26/0x3c
>> [ 10.656261] [<c013cee5>] ? hrtimer_start_range_ns+0x234/0x23f
>> [ 10.656261] [<c03e210f>] ? _spin_unlock_irq+0x12/0x1e
>> [ 10.656261] [<c03e210f>] ? _spin_unlock_irq+0x12/0x1e
>> [ 10.656261] [<c012c65d>] ? do_setitimer+0x160/0x2d9
>> [ 10.656261] [<c0240330>] ? trace_hardirqs_off_thunk+0xc/0x10
>> [ 10.656261] [<c03e2423>] ? error_code+0x73/0x7c
>> [ 10.656261] [<c03e3c73>] ? do_page_fault+0x0/0x6f9
>> [ 10.656261] [<c03e3c73>] ? do_page_fault+0x0/0x6f9
>> [ 10.656261] [<c03e2427>] error_code+0x77/0x7c
>> [ 10.656261] ---[ end trace a1303c5fb15c2007 ]---
>> [ 10.910249] ------------[ cut here ]------------
>>
>> [ 10.910249] ------------[ cut here ]------------
>> [ 10.916793] WARNING: at drivers/ata/libata-sff.c:1017
>> ata_sff_hsm_move+0x49c/0x6d0()
>> [ 10.920003] Hardware name: MacBookPro2,2
>> [ 10.920003] Modules linked in:
>> [ 10.920003] Pid: 891, comm: udevd Tainted: G W
>> 2.6.28-07812-g5fbbf5f #9
>> [ 10.920003] Call Trace:
>> [ 10.920003] [<c01292ca>] warn_slowpath+0x76/0xad
>> [ 10.920003] [<c0180030>] ? move_page_tables+0x88/0x28b
>> [ 10.920003] [<c018aed4>] ? __slab_free+0x280/0x2b8
>> [ 10.920003] [<c018beb3>] ? kmem_cache_free+0xae/0xc2
>> [ 10.920003] [<c034872d>] ? __kfree_skb+0x73/0x76
>> [ 10.920003] [<c034872d>] ? __kfree_skb+0x73/0x76
>> [ 10.920003] [<c0348760>] ? kfree_skb+0x30/0x32
>> [ 10.920003] [<c03ab36c>] ? unix_dgram_sendmsg+0x437/0x47b
>> [ 10.920003] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
>> [ 10.920003] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
>> [ 10.920003] [<c017b345>] ? handle_mm_fault+0x29e/0x606
>> [ 10.920003] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
>> [ 10.920003] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
>> [ 10.920003] [<c015a307>] handle_IRQ_event+0x34/0x69
>> [ 10.920003] [<c015b47e>] handle_edge_irq+0xc8/0x109
>> [ 10.920003] [<c0104bc9>] do_IRQ+0x92/0xad
>> [ 10.920003] [<c010396c>] common_interrupt+0x2c/0x34
>> [ 10.920003] [<c0116eed>] ? __ticket_spin_trylock+0x4/0x21
>> [ 10.920003] [<c0243883>] _raw_spin_lock+0x53/0xf8
>> [ 10.920003] [<c018a64d>] ? check_object+0x139/0x190
>> [ 10.920003] [<c03e21f4>] _spin_lock+0xd/0xf
>> [ 10.920003] [<c023aa85>] _atomic_dec_and_lock+0x29/0x48
>> [ 10.920003] [<c019e26d>] iput+0x29/0x53
>> [ 10.920003] [<c019bea5>] dentry_iput+0x81/0x9c
>> [ 10.920003] [<c019bf74>] d_kill+0x32/0x4c
>> [ 10.920003] [<c019c663>] dput+0x101/0x10a
>> [ 10.920003] [<c018fed3>] __fput+0x13b/0x15c
>> [ 10.920003] [<c018ff12>] fput+0x1e/0x20
>> [ 10.920003] [<c018d67f>] filp_close+0x56/0x60
>> [ 10.920003] [<c018d6f8>] sys_close+0x6f/0xa9
>> [ 10.920003] [<c010329f>] sysenter_do_call+0x12/0x34
>> [ 10.920003] ---[ end trace a1303c5fb15c2008 ]---
>> [ 11.187174] ------------[ cut here ]------------
>> [ 11.190008] WARNING: at drivers/ata/libata-sff.c:1017
>> ata_sff_hsm_move+0x49c/0x6d0()
>> [ 11.196573] Hardware name: MacBookPro2,2
>> [ 11.203397] Modules linked in:
>> [ 11.209319] Pid: 923, comm: path_id Tainted: G W
>> 2.6.28-07812-g5fbbf5f #9
>> [ 11.219223] Call Trace:
>> [ 11.219223] [<c01292ca>] warn_slowpath+0x76/0xad
>> [ 11.219223] [<c0230030>] ? elv_attr_store+0x15/0x5e
>> [ 11.219223] [<c011160a>] ? flush_tlb_page+0x47/0x6e
>> [ 11.219223] [<c011a603>] ? ptep_set_access_flags+0x5f/0x69
>> [ 11.219223] [<c011b332>] ? kunmap_atomic+0x72/0x92
>> [ 11.256355] [<c024382c>] ? _raw_spin_unlock+0x74/0x78
>> [ 11.256355] [<c017a1b4>] ? do_wp_page+0x586/0x5eb
>> [ 11.272445] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
>> [ 11.272445] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
>> [ 11.272445] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
>> [ 11.272445] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
>> [ 11.272445] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
>> [ 11.304326] [<c015a307>] handle_IRQ_event+0x34/0x69
>> [ 11.304326] [<c015b47e>] handle_edge_irq+0xc8/0x109
>> [ 11.304326] [<c0104bc9>] do_IRQ+0x92/0xad
>> [ 11.304326] [<c010396c>] common_interrupt+0x2c/0x34
>> [ 11.304326] [<c0196c85>] ? putname+0x29/0x34
>> [ 11.304326] [<c018007b>] ? move_page_tables+0xd3/0x28b
>> [ 11.304326] [<c018beb7>] ? kmem_cache_free+0xb2/0xc2
>> [ 11.304326] [<c0196c85>] ? putname+0x29/0x34
>> [ 11.304326] [<c0196c85>] putname+0x29/0x34
>> [ 11.304326] [<c0198701>] user_path_at+0x4a/0x67
>> [ 11.304326] [<c013a41e>] ? remove_wait_queue+0x35/0x39
>> [ 11.304326] [<c018feec>] ? __fput+0x154/0x15c
>> [ 11.304326] [<c018e048>] sys_chdir+0x23/0x64
>> [ 11.304326] [<c010329f>] sysenter_do_call+0x12/0x34
>> [ 11.304326] ---[ end trace a1303c5fb15c2009 ]---
>> [ 11.404868] ------------[ cut here ]------------
>> [ 11.411491] WARNING: at drivers/ata/libata-sff.c:1017
>> ata_sff_hsm_move+0x49c/0x6d0()
>> [ 11.412573] Hardware name: MacBookPro2,2
>> [ 11.412573] Modules linked in:
>> [ 11.412573] Pid: 966, comm: udevd Tainted: G W
>> 2.6.28-07812-g5fbbf5f #9
>> [ 11.412573] Call Trace:
>> [ 11.412573] [<c01292ca>] warn_slowpath+0x76/0xad
>> [ 11.412573] [<c0169974>] ? find_get_page+0x22/0x86
>> [ 11.412573] [<c0169cb5>] ? find_lock_page+0x18/0x4c
>> [ 11.412573] [<c016a0d0>] ? filemap_fault+0x91/0x308
>> [ 11.412573] [<c011b332>] ? kunmap_atomic+0x72/0x92
>> [ 11.412573] [<c0169c9a>] ? unlock_page+0x43/0x46
>> [ 11.412573] [<c01799f0>] ? __do_fault+0x30d/0x345
>> [ 11.412573] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
>> [ 11.412573] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
>> [ 11.412573] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
>> [ 11.412573] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
>> [ 11.412573] [<c015a307>] handle_IRQ_event+0x34/0x69
>> [ 11.412573] [<c015b47e>] handle_edge_irq+0xc8/0x109
>> [ 11.412573] [<c0104bc9>] do_IRQ+0x92/0xad
>> [ 11.412573] [<c0196cb5>] ? getname+0x25/0xbc
>> [ 11.412573] [<c010396c>] common_interrupt+0x2c/0x34
>> [ 11.412573] [<c0196cb5>] ? getname+0x25/0xbc
>> [ 11.412573] [<c018007b>] ? move_page_tables+0xd3/0x28b
>> [ 11.412573] [<c018bf5a>] ? kmem_cache_alloc+0x93/0xcc
>> [ 11.412573] [<c0196cb5>] ? getname+0x25/0xbc
>> [ 11.412573] [<c0196cb5>] getname+0x25/0xbc
>> [ 11.412573] [<c01986d1>] user_path_at+0x1a/0x67
>> [ 11.412573] [<c03e210f>] ? _spin_unlock_irq+0x12/0x1e
>> [ 11.412573] [<c03e210f>] ? _spin_unlock_irq+0x12/0x1e
>> [ 11.412573] [<c012c65d>] ? do_setitimer+0x160/0x2d9
>> [ 11.412573] [<c0191e60>] sys_readlinkat+0x2b/0x86
>> [ 11.412573] [<c0191ed3>] sys_readlink+0x18/0x1a
>> [ 11.412573] [<c010329f>] sysenter_do_call+0x12/0x34
>> [ 11.412573] ---[ end trace a1303c5fb15c200a ]---
>> [ 11.631708] ------------[ cut here ]------------
>> [ 11.637944] WARNING: at drivers/ata/libata-sff.c:1017
>> ata_sff_hsm_move+0x49c/0x6d0()
>> [ 11.640002] Hardware name: MacBookPro2,2
>> [ 11.640002] Modules linked in:
>> [ 11.640002] Pid: 960, comm: udevd Tainted: G W
>> 2.6.28-07812-g5fbbf5f #9
>> [ 11.640002] Call Trace:
>> [ 11.640002] [<c01292ca>] warn_slowpath+0x76/0xad
>> [ 11.640002] [<c0169974>] ? find_get_page+0x22/0x86
>> [ 11.640002] [<c0169cb5>] ? find_lock_page+0x18/0x4c
>> [ 11.640002] [<c016a0d0>] ? filemap_fault+0x91/0x308
>> [ 11.640002] [<c011b332>] ? kunmap_atomic+0x72/0x92
>> [ 11.640002] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
>> [ 11.640002] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
>> [ 11.640002] [<c018aed4>] ? __slab_free+0x280/0x2b8
>> [ 11.640002] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
>> [ 11.640002] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
>> [ 11.640002] [<c015a307>] handle_IRQ_event+0x34/0x69
>> [ 11.640002] [<c015b47e>] handle_edge_irq+0xc8/0x109
>> [ 11.640002] [<c0104bc9>] do_IRQ+0x92/0xad
>> [ 11.640002] [<c0196cb5>] ? getname+0x25/0xbc
>> [ 11.640002] [<c010396c>] common_interrupt+0x2c/0x34
>> [ 11.640002] [<c0196cb5>] ? getname+0x25/0xbc
>> [ 11.640002] [<c018007b>] ? move_page_tables+0xd3/0x28b
>> [ 11.640002] [<c018bf5a>] ? kmem_cache_alloc+0x93/0xcc
>> [ 11.640002] [<c0196cb5>] ? getname+0x25/0xbc
>> [ 11.640002] [<c0196cb5>] getname+0x25/0xbc
>> [ 11.640002] [<c01986d1>] user_path_at+0x1a/0x67
>> [ 11.640002] [<c012c65d>] ? do_setitimer+0x160/0x2d9
>> [ 11.640002] [<c0191e60>] sys_readlinkat+0x2b/0x86
>> [ 11.640002] [<c0191ed3>] sys_readlink+0x18/0x1a
>> [ 11.640002] [<c010329f>] sysenter_do_call+0x12/0x34
>> [ 11.640002] ---[ end trace a1303c5fb15c200b ]---
>> [ 11.859983] ------------[ cut here ]------------
>> [ 11.863325] WARNING: at drivers/ata/libata-sff.c:1017
>> ata_sff_hsm_move+0x49c/0x6d0()
>> [ 11.870937] Hardware name: MacBookPro2,2
>> [ 11.878612] Modules linked in:
>> [ 11.882417] Pid: 988, comm: udevd Tainted: G W
>> 2.6.28-07812-g5fbbf5f #9
>> [ 11.889932] Call Trace:
>> [ 11.896866] [<c01292ca>] warn_slowpath+0x76/0xad
>> [ 11.901313] [<c011b332>] ? kunmap_atomic+0x72/0x92
>> [ 11.906787] [<c01799f0>] ? __do_fault+0x30d/0x345
>> [ 11.906787] [<c0212f70>] ? avc_has_perm+0x3e/0x48
>> [ 11.906787] [<c018a64d>] ? check_object+0x139/0x190
>> [ 11.932317] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
>> [ 11.932317] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
>> [ 11.932317] [<c0217852>] ? selinux_inode_alloc_security+0x2e/0x73
>> [ 11.932317] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
>> [ 11.932317] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
>> [ 11.932317] [<c015a307>] handle_IRQ_event+0x34/0x69
>> [ 11.932317] [<c015b47e>] handle_edge_irq+0xc8/0x109
>> [ 11.932317] [<c0104bc9>] do_IRQ+0x92/0xad
>> [ 11.932317] [<c0196cb5>] ? getname+0x25/0xbc
>> [ 11.932317] [<c010396c>] common_interrupt+0x2c/0x34
>> [ 11.932317] [<c0196cb5>] ? getname+0x25/0xbc
>> [ 11.932317] [<c018007b>] ? move_page_tables+0xd3/0x28b
>> [ 12.009738] [<c018bf5a>] ? kmem_cache_alloc+0x93/0xcc
>> [ 12.009738] [<c0196cb5>] ? getname+0x25/0xbc
>> [ 12.009738] [<c0196cb5>] getname+0x25/0xbc
>> [ 12.009738] [<c018d74b>] do_sys_open+0x19/0xbc
>> [ 12.009738] [<c018d83a>] sys_open+0x23/0x2b
>> [ 12.009738] [<c010329f>] sysenter_do_call+0x12/0x34
>> [ 12.009738] ---[ end trace a1303c5fb15c200c ]---
>> [ 12.065027] ------------[ cut here ]------------
>> [ 12.070720] WARNING: at drivers/ata/libata-sff.c:1017
>> ata_sff_hsm_move+0x49c/0x6d0()
>> [ 12.070720] Hardware name: MacBookPro2,2
>> [ 12.070720] Modules linked in:
>> [ 12.070720] Pid: 1018, comm: udevd Tainted: G W
>> 2.6.28-07812-g5fbbf5f #9
>> [ 12.070720] Call Trace:
>> [ 12.070720] [<c01292ca>] warn_slowpath+0x76/0xad
>> [ 12.070720] [<c0190029>] ? get_empty_filp+0x82/0x175
>> [ 12.070720] [<c018fd49>] ? file_free_rcu+0x35/0x38
>> [ 12.070720] [<c011160a>] ? flush_tlb_page+0x47/0x6e
>> [ 12.070720] [<c011a603>] ? ptep_set_access_flags+0x5f/0x69
>> [ 12.070720] [<c011b332>] ? kunmap_atomic+0x72/0x92
>> [ 12.070720] [<c024382c>] ? _raw_spin_unlock+0x74/0x78
>> [ 12.070720] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
>> [ 12.070720] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
>> [ 12.070720] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
>> [ 12.070720] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
>> [ 12.070720] [<c015a307>] handle_IRQ_event+0x34/0x69
>> [ 12.070720] [<c015b47e>] handle_edge_irq+0xc8/0x109
>> [ 12.070720] [<c0104bc9>] do_IRQ+0x92/0xad
>> [ 12.070720] [<c010396c>] common_interrupt+0x2c/0x34
>> [ 12.070720] [<c03e007b>] ? schedule+0x695/0x8f1
>> [ 12.070720] [<c03e3ee5>] ? do_page_fault+0x272/0x6f9
>> [ 12.070720] [<c0190029>] ? get_empty_filp+0x82/0x175
>> [ 12.070720] [<c018fd49>] ? file_free_rcu+0x35/0x38
>> [ 12.070720] [<c018a64d>] ? check_object+0x139/0x190
>> [ 12.070720] [<c03e2423>] ? error_code+0x73/0x7c
>> [ 12.070720] [<c03e3c73>] ? do_page_fault+0x0/0x6f9
>> [ 12.070720] [<c0240320>] ? trace_hardirqs_on_thunk+0xc/0x10
>> [ 12.070720] [<c0240330>] ? trace_hardirqs_off_thunk+0xc/0x10
>> [ 12.070720] [<c03e2423>] ? error_code+0x73/0x7c
>> [ 12.070720] [<c03e3c73>] ? do_page_fault+0x0/0x6f9
>> [ 12.070720] [<c03e3c73>] ? do_page_fault+0x0/0x6f9
>> [ 12.070720] [<c03e2427>] error_code+0x77/0x7c
>> [ 12.070720] ---[ end trace a1303c5fb15c200d ]---
>> [ 12.300395] ------------[ cut here ]------------
>> [ 12.306909] WARNING: at drivers/ata/libata-sff.c:1017
>> ata_sff_hsm_move+0x49c/0x6d0()
>> [ 12.310003] Hardware name: MacBookPro2,2
>> [ 12.310003] Modules linked in:
>> [ 12.310003] Pid: 999, comm: udevd Tainted: G W
>> 2.6.28-07812-g5fbbf5f #9
>> [ 12.310003] Call Trace:
>> [ 12.310003] [<c01292ca>] warn_slowpath+0x76/0xad
>> [ 12.310003] [<c024382c>] ? _raw_spin_unlock+0x74/0x78
>> [ 12.310003] [<c03e2164>] ? _spin_unlock+0xd/0xf
>> [ 12.310003] [<c016e6cf>] ? get_page_from_freelist+0x2a6/0x3ed
>> [ 12.310003] [<c0169974>] ? find_get_page+0x22/0x86
>> [ 12.310003] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
>> [ 12.310003] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
>> [ 12.310003] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
>> [ 12.310003] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
>> [ 12.310003] [<c015a307>] handle_IRQ_event+0x34/0x69
>> [ 12.310003] [<c015b47e>] handle_edge_irq+0xc8/0x109
>> [ 12.310003] [<c0104bc9>] do_IRQ+0x92/0xad
>> [ 12.310003] [<c010396c>] common_interrupt+0x2c/0x34
>> [ 12.310003] [<c03e00d8>] ? schedule+0x6f2/0x8f1
>> [ 12.310003] [<c013d32b>] ? down_read_trylock+0x17/0x20
>> [ 12.310003] [<c03e3f32>] do_page_fault+0x2bf/0x6f9
>> [ 12.310003] [<c011e70c>] ? set_next_entity+0xa7/0x113
>> [ 12.310003] [<c014129b>] ? getnstimeofday+0x56/0xdf
>> [ 12.310003] [<c023de7b>] ? rb_insert_color+0x9b/0xc0
>> [ 12.310003] [<c03e2141>] ? _spin_unlock_irqrestore+0x26/0x3c
>> [ 12.310003] [<c013cee5>] ? hrtimer_start_range_ns+0x234/0x23f
>> [ 12.310003] [<c03e2141>] ? _spin_unlock_irqrestore+0x26/0x3c
>> [ 12.310003] [<c013cee5>] ? hrtimer_start_range_ns+0x234/0x23f
>> [ 12.310003] [<c03e210f>] ? _spin_unlock_irq+0x12/0x1e
>> [ 12.310003] [<c03e210f>] ? _spin_unlock_irq+0x12/0x1e
>> [ 12.310003] [<c012c65d>] ? do_setitimer+0x160/0x2d9
>> [ 12.310003] [<c0240330>] ? trace_hardirqs_off_thunk+0xc/0x10
>> [ 12.310003] [<c03e2423>] ? error_code+0x73/0x7c
>> [ 12.310003] [<c03e3c73>] ? do_page_fault+0x0/0x6f9
>> [ 12.310003] [<c03e3c73>] ? do_page_fault+0x0/0x6f9
>> [ 12.310003] [<c03e2427>] error_code+0x77/0x7c
>> [ 12.310003] ---[ end trace a1303c5fb15c200e ]---
>> [ 12.547900] ------------[ cut here ]------------
>> [ 12.554293] WARNING: at drivers/ata/libata-sff.c:1017
>> ata_sff_hsm_move+0x49c/0x6d0()
>> [ 12.555950] Hardware name: MacBookPro2,2
>> [ 12.555950] Modules linked in:
>> [ 12.555950] Pid: 998, comm: udevd Tainted: G W
>> 2.6.28-07812-g5fbbf5f #9
>> [ 12.555950] Call Trace:
>> [ 12.555950] [<c01292ca>] warn_slowpath+0x76/0xad
>> [ 12.555950] [<c018a64d>] ? check_object+0x139/0x190
>> [ 12.601146] [<c03e3ee3>] ? do_page_fault+0x270/0x6f9
>> [ 12.601146] [<c03e405c>] ? do_page_fault+0x3e9/0x6f9
>> [ 12.601146] [<c018bcfd>] ? kfree+0xd5/0xe9
>> [ 12.601146] [<c015c92f>] ? call_rcu+0x63/0x74
>> [ 12.601146] [<c018fd0e>] ? put_filp+0x47/0x4d
>> [ 12.601146] [<c0196c53>] ? release_open_intent+0x16/0x1f
>> [ 12.601146] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
>> [ 12.601146] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
>> [ 12.601146] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
>> [ 12.601146] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
>> [ 12.601146] [<c015a307>] handle_IRQ_event+0x34/0x69
>> [ 12.601146] [<c015b47e>] handle_edge_irq+0xc8/0x109
>> [ 12.601146] [<c0104bc9>] do_IRQ+0x92/0xad
>> [ 12.601146] [<c010396c>] common_interrupt+0x2c/0x34
>> [ 12.601146] ---[ end trace a1303c5fb15c200f ]---
>>
>> [ 20.550550] ------------[ cut here ]------------
>> [ 20.550554] WARNING: at drivers/ata/libata-sff.c:1017
>> ata_sff_hsm_move+0x49c/0x6d0()
>> [ 20.550556] Hardware name: MacBookPro2,2
>> [ 20.550558] Modules linked in: fan battery container ipt_LOG xt_limit
>> xt_tcpudp xt_state ipt_addrtype nf_nat_irc nf_conntrack_irc nf_nat_ftp nf_nat
>> nf_conntrack_ftp ipmi_watchdog ipmi_msghandler isight_firmware uinput
>> arpt_mangle arptable_filter arp_tables nf_conntrack_ipv4 nf_conntrack
>> nf_defrag_ipv4 iptable_mangle iptable_filter ip_tables x_tables coretemp
>> eeprom acpi_cpufreq cpufreq_powersave cpufreq_performance cpufreq_ondemand
>> cpufreq_conservative firewire_sbp2 firewire_core raw1394 appletouch
>> snd_hda_codec_idt uvcvideo ohci1394 thermal joydev snd_hda_intel snd_hda_codec
>> ath9k ieee1394 video ac button processor applesmc uhci_hcd ehci_hcd snd_hwdep
>> snd_pcm snd_page_alloc pata_acpi evdev
>> [ 20.550621] Pid: 0, comm: swapper Tainted: G W
>> 2.6.28-07812-g5fbbf5f #9
>> [ 20.550623] Call Trace:
>> [ 20.550630] [<c01292ca>] warn_slowpath+0x76/0xad
>> [ 20.550635] [<c013e562>] ? sched_clock_cpu+0x137/0x146
>> [ 20.550639] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
>> [ 20.550642] [<c013c4e7>] ? hrtimer_forward+0xf9/0x10f
>> [ 20.550646] [<c014129b>] ? getnstimeofday+0x56/0xdf
>> [ 20.550650] [<c01119f4>] ? lapic_next_event+0x18/0x1c
>> [ 20.550653] [<c0143380>] ? clockevents_program_event+0xe0/0xef
>> [ 20.550659] [<c03e2141>] ? _spin_unlock_irqrestore+0x26/0x3c
>> [ 20.550662] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
>> [ 20.550665] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
>> [ 20.550669] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
>> [ 20.550672] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
>> [ 20.550677] [<c015a307>] handle_IRQ_event+0x34/0x69
>> [ 20.550680] [<c015b47e>] handle_edge_irq+0xc8/0x109
>> [ 20.550684] [<c0104bc9>] do_IRQ+0x92/0xad
>> [ 20.550687] [<c010396c>] common_interrupt+0x2c/0x34
>> [ 20.550699] [<f806c727>] ? acpi_idle_enter_bm+0x2df/0x36b [processor]
>> [ 20.550703] [<c0144b5a>] ? tick_nohz_restart_sched_tick+0x139/0x14b
>> [ 20.550708] [<c031e695>] cpuidle_idle_call+0x65/0x98
>> [ 20.550711] [<c01023b7>] cpu_idle+0x84/0xa5
>> [ 20.550714] [<c03d388f>] rest_init+0x53/0x55
>> [ 20.550717] ---[ end trace a1303c5fb15c2010 ]---
>> [ 20.551664] ------------[ cut here ]------------
>> [ 20.551669] WARNING: at drivers/ata/libata-sff.c:1017
>> ata_sff_hsm_move+0x49c/0x6d0()
>> [ 20.551673] Hardware name: MacBookPro2,2
>> [ 20.551676] Modules linked in: fan battery container ipt_LOG xt_limit
>> xt_tcpudp xt_state ipt_addrtype nf_nat_irc nf_conntrack_irc nf_nat_ftp nf_nat
>> nf_conntrack_ftp ipmi_watchdog ipmi_msghandler isight_firmware uinput
>> arpt_mangle arptable_filter arp_tables nf_conntrack_ipv4 nf_conntrack
>> nf_defrag_ipv4 iptable_mangle iptable_filter ip_tables x_tables coretemp
>> eeprom acpi_cpufreq cpufreq_powersave cpufreq_performance cpufreq_ondemand
>> cpufreq_conservative firewire_sbp2 firewire_core raw1394 appletouch
>> snd_hda_codec_idt uvcvideo ohci1394 thermal joydev snd_hda_intel snd_hda_codec
>> ath9k ieee1394 video ac button processor applesmc uhci_hcd ehci_hcd snd_hwdep
>> snd_pcm snd_page_alloc pata_acpi evdev
>> [ 20.551785] Pid: 0, comm: swapper Tainted: G W
>> 2.6.28-07812-g5fbbf5f #9
>> [ 20.551789] Call Trace:
>> [ 20.551797] [<c01292ca>] warn_slowpath+0x76/0xad
>> [ 20.551805] [<c03e2141>] ? _spin_unlock_irqrestore+0x26/0x3c
>> [ 20.551812] [<c01238ef>] ? try_to_wake_up+0x245/0x250
>> [ 20.551819] [<c03e2141>] ? _spin_unlock_irqrestore+0x26/0x3c
>> [ 20.551828] [<c02ce674>] ? scsi_eh_scmd_add+0x83/0x8c
>> [ 20.551835] [<c03e2141>] ? _spin_unlock_irqrestore+0x26/0x3c
>> [ 20.551842] [<c02ce674>] ? scsi_eh_scmd_add+0x83/0x8c
>> [ 20.551849] [<c02ce6cf>] ? scsi_times_out+0x52/0x6c
>> [ 20.551856] [<c0235c66>] ? blk_rq_timed_out+0x11/0x4b
>> [ 20.551863] [<c0235ce3>] ? blk_abort_request+0x43/0x46
>> [ 20.551870] [<c02ebb5c>] ? ata_qc_schedule_eh+0x49/0x50
>> [ 20.551877] [<c02e1d9f>] ? ata_qc_complete+0x75/0x1a9
>> [ 20.551884] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
>> [ 20.551892] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
>> [ 20.551899] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
>> [ 20.551906] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
>> [ 20.551914] [<c015a307>] handle_IRQ_event+0x34/0x69
>> [ 20.551921] [<c015b47e>] handle_edge_irq+0xc8/0x109
>> [ 20.551928] [<c0104bc9>] do_IRQ+0x92/0xad
>> [ 20.551934] [<c010396c>] common_interrupt+0x2c/0x34
>> [ 20.551954] [<f806c727>] ? acpi_idle_enter_bm+0x2df/0x36b [processor]
>> [ 20.551961] [<c0144b5a>] ? tick_nohz_restart_sched_tick+0x139/0x14b
>> [ 20.551969] [<c031e695>] cpuidle_idle_call+0x65/0x98
>> [ 20.551975] [<c01023b7>] cpu_idle+0x84/0xa5
>> [ 20.551982] [<c03d388f>] rest_init+0x53/0x55
>> [ 20.551986] ---[ end trace a1303c5fb15c2011 ]---
>> [ 20.558509] ------------[ cut here ]------------
>> [ 20.558512] WARNING: at drivers/ata/libata-sff.c:1017
>> ata_sff_hsm_move+0x49c/0x6d0()
>> [ 20.558514] Hardware name: MacBookPro2,2
>> [ 20.558516] Modules linked in: fan battery container ipt_LOG xt_limit
>> xt_tcpudp xt_state ipt_addrtype nf_nat_irc nf_conntrack_irc nf_nat_ftp nf_nat
>> nf_conntrack_ftp ipmi_watchdog ipmi_msghandler isight_firmware uinput
>> arpt_mangle arptable_filter arp_tables nf_conntrack_ipv4 nf_conntrack
>> nf_defrag_ipv4 iptable_mangle iptable_filter ip_tables x_tables coretemp
>> eeprom acpi_cpufreq cpufreq_powersave cpufreq_performance cpufreq_ondemand
>> cpufreq_conservative firewire_sbp2 firewire_core raw1394 appletouch
>> snd_hda_codec_idt uvcvideo ohci1394 thermal joydev snd_hda_intel snd_hda_codec
>> ath9k ieee1394 video ac button processor applesmc uhci_hcd ehci_hcd snd_hwdep
>> snd_pcm snd_page_alloc pata_acpi evdev
>> [ 20.558573] Pid: 2519, comm: hald-addon-macb Tainted: G W
>> 2.6.28-07812-g5fbbf5f #9
>> [ 20.558575] Call Trace:
>> [ 20.558580] [<c01292ca>] warn_slowpath+0x76/0xad
>> [ 20.558585] [<c011b332>] ? kunmap_atomic+0x72/0x92
>> [ 20.558588] [<c024382c>] ? _raw_spin_unlock+0x74/0x78
>> [ 20.558600] [<c03e3ee3>] ? do_page_fault+0x270/0x6f9
>> [ 20.558600] [<c03e405c>] ? do_page_fault+0x3e9/0x6f9
>> [ 20.558600] [<c023c89f>] ? prio_tree_insert+0x18c/0x1ff
>> [ 20.558602] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
>> [ 20.558606] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
>> [ 20.558610] [<c03e2164>] ? _spin_unlock+0xd/0xf
>> [ 20.558613] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
>> [ 20.558617] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
>> [ 20.558630] [<c015a307>] handle_IRQ_event+0x34/0x69
>> [ 20.558630] [<c015b47e>] handle_edge_irq+0xc8/0x109
>> [ 20.558630] [<c0104bc9>] do_IRQ+0x92/0xad
>> [ 20.558631] [<c010396c>] common_interrupt+0x2c/0x34
>> [ 20.558633] ---[ end trace a1303c5fb15c2012 ]---
>> [ 20.623177] ------------[ cut here ]------------
>> [ 20.623181] WARNING: at drivers/ata/libata-sff.c:1017
>> ata_sff_hsm_move+0x49c/0x6d0()
>> [ 20.623184] Hardware name: MacBookPro2,2
>> [ 20.623185] Modules linked in: fan battery container ipt_LOG xt_limit
>> xt_tcpudp xt_state ipt_addrtype nf_nat_irc nf_conntrack_irc nf_nat_ftp nf_nat
>> nf_conntrack_ftp ipmi_watchdog ipmi_msghandler isight_firmware uinput
>> arpt_mangle arptable_filter arp_tables nf_conntrack_ipv4 nf_conntrack
>> nf_defrag_ipv4 iptable_mangle iptable_filter ip_tables x_tables coretemp
>> eeprom acpi_cpufreq cpufreq_powersave cpufreq_performance cpufreq_ondemand
>> cpufreq_conservative firewire_sbp2 firewire_core raw1394 appletouch
>> snd_hda_codec_idt uvcvideo ohci1394 thermal joydev snd_hda_intel snd_hda_codec
>> ath9k ieee1394 video ac button processor applesmc uhci_hcd ehci_hcd snd_hwdep
>> snd_pcm snd_page_alloc pata_acpi evdev
>> [ 20.623245] Pid: 2519, comm: hald-addon-macb Tainted: G W
>> 2.6.28-07812-g5fbbf5f #9
>> [ 20.623247] Call Trace:
>> [ 20.623252] [<c01292ca>] warn_slowpath+0x76/0xad
>> [ 20.623257] [<c011b332>] ? kunmap_atomic+0x72/0x92
>> [ 20.623260] [<c024382c>] ? _raw_spin_unlock+0x74/0x78
>> [ 20.623264] [<c03e3ee3>] ? do_page_fault+0x270/0x6f9
>> [ 20.623267] [<c03e405c>] ? do_page_fault+0x3e9/0x6f9
>> [ 20.623272] [<c03e2164>] ? _spin_unlock+0xd/0xf
>> [ 20.623276] [<c017e7d2>] ? vma_adjust+0x31a/0x378
>> [ 20.623279] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
>> [ 20.623283] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
>> [ 20.623286] [<c017f421>] ? mmap_region+0x17e/0x435
>> [ 20.623289] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
>> [ 20.623293] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
>> [ 20.623296] [<c015a307>] handle_IRQ_event+0x34/0x69
>> [ 20.623300] [<c015b47e>] handle_edge_irq+0xc8/0x109
>> [ 20.623304] [<c0104bc9>] do_IRQ+0x92/0xad
>> [ 20.623307] [<c010396c>] common_interrupt+0x2c/0x34
>> [ 20.623309] ---[ end trace a1303c5fb15c2013 ]---
>> [ 20.624217] ------------[ cut here ]------------
>> [ 20.624220] WARNING: at drivers/ata/libata-sff.c:1017
>> ata_sff_hsm_move+0x49c/0x6d0()
>> [ 20.624222] Hardware name: MacBookPro2,2
>> [ 20.624224] Modules linked in: fan battery container ipt_LOG xt_limit
>> xt_tcpudp xt_state ipt_addrtype nf_nat_irc nf_conntrack_irc nf_nat_ftp nf_nat
>> nf_conntrack_ftp ipmi_watchdog ipmi_msghandler isight_firmware uinput
>> arpt_mangle arptable_filter arp_tables nf_conntrack_ipv4 nf_conntrack
>> nf_defrag_ipv4 iptable_mangle iptable_filter ip_tables x_tables coretemp
>> eeprom acpi_cpufreq cpufreq_powersave cpufreq_performance cpufreq_ondemand
>> cpufreq_conservative firewire_sbp2 firewire_core raw1394 appletouch
>> snd_hda_codec_idt uvcvideo ohci1394 thermal joydev snd_hda_intel snd_hda_codec
>> ath9k ieee1394 video ac button processor applesmc uhci_hcd ehci_hcd snd_hwdep
>> snd_pcm snd_page_alloc pata_acpi evdev
>> [ 20.624279] Pid: 2519, comm: hald-addon-macb Tainted: G W
>> 2.6.28-07812-g5fbbf5f #9
>> [ 20.624281] Call Trace:
>> [ 20.624285] [<c01292ca>] warn_slowpath+0x76/0xad
>> [ 20.624289] [<c023fac6>] ? vsnprintf+0x866/0x8c5
>> [ 20.624293] [<c03e2141>] ? _spin_unlock_irqrestore+0x26/0x3c
>> [ 20.624296] [<c01299ba>] ? release_console_sem+0x1b8/0x1e5
>> [ 20.624300] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
>> [ 20.624303] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
>> [ 20.624307] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
>> [ 20.624310] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
>> [ 20.624314] [<c015a307>] handle_IRQ_event+0x34/0x69
>> [ 20.624317] [<c015b47e>] handle_edge_irq+0xc8/0x109
>> [ 20.624320] [<c0104bc9>] do_IRQ+0x92/0xad
>> [ 20.624323] [<c010396c>] common_interrupt+0x2c/0x34
>> [ 20.624328] [<c017734f>] ? __inc_zone_state+0x1b/0x7b
>> [ 20.624331] [<c01773cc>] __inc_zone_page_state+0x1d/0x1f
>> [ 20.624334] [<c018168f>] page_add_new_anon_rmap+0x44/0x6a
>> [ 20.624338] [<c017b2a5>] handle_mm_fault+0x1fe/0x606
>> [ 20.624343] [<c02155a8>] ? selinux_socket_unix_stream_connect+0xa4/0xac
>> [ 20.624346] [<c03e3ee3>] ? do_page_fault+0x270/0x6f9
>> [ 20.624349] [<c03e3fed>] do_page_fault+0x37a/0x6f9
>> [ 20.624352] [<c03e20e4>] ? _read_unlock+0xd/0xf
>> [ 20.624357] [<c03454d3>] ? sock_def_readable+0x60/0x65
>> [ 20.624362] [<c03acb34>] ? unix_stream_connect+0x338/0x398
>> [ 20.624365] [<c0343d18>] ? sys_connect+0x65/0x82
>> [ 20.624368] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
>> [ 20.624371] [<c03e210f>] ? _spin_unlock_irq+0x12/0x1e
>> [ 20.624374] [<c03e210f>] ? _spin_unlock_irq+0x12/0x1e
>> [ 20.624379] [<c01326c9>] ? do_sigaction+0x13d/0x14e
>> [ 20.624382] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
>> [ 20.624385] [<c0240330>] ? trace_hardirqs_off_thunk+0xc/0x10
>> [ 20.624388] [<c03e2423>] ? error_code+0x73/0x7c
>> [ 20.624391] [<c03e3c73>] ? do_page_fault+0x0/0x6f9
>> [ 20.624394] [<c03e3c73>] ? do_page_fault+0x0/0x6f9
>> [ 20.624397] [<c03e2427>] error_code+0x77/0x7c
>> [ 20.624400] ---[ end trace a1303c5fb15c2014 ]---
>> [ 20.625285] ------------[ cut here ]------------
>> [ 20.625288] WARNING: at drivers/ata/libata-sff.c:1017
>> ata_sff_hsm_move+0x49c/0x6d0()
>> [ 20.625290] Hardware name: MacBookPro2,2
>> [ 20.625292] Modules linked in: fan battery container ipt_LOG xt_limit
>> xt_tcpudp xt_state ipt_addrtype nf_nat_irc nf_conntrack_irc nf_nat_ftp nf_nat
>> nf_conntrack_ftp ipmi_watchdog ipmi_msghandler isight_firmware uinput
>> arpt_mangle arptable_filter arp_tables nf_conntrack_ipv4 nf_conntrack
>> nf_defrag_ipv4 iptable_mangle iptable_filter ip_tables x_tables coretemp
>> eeprom acpi_cpufreq cpufreq_powersave cpufreq_performance cpufreq_ondemand
>> cpufreq_conservative firewire_sbp2 firewire_core raw1394 appletouch
>> snd_hda_codec_idt uvcvideo ohci1394 thermal joydev snd_hda_intel snd_hda_codec
>> ath9k ieee1394 video ac button processor applesmc uhci_hcd ehci_hcd snd_hwdep
>> snd_pcm snd_page_alloc pata_acpi evdev
>> [ 20.625344] Pid: 2466, comm: hald Tainted: G W
>> 2.6.28-07812-g5fbbf5f #9
>> [ 20.625346] Call Trace:
>> [ 20.625349] [<c01292ca>] warn_slowpath+0x76/0xad
>> [ 20.625353] [<c0213328>] ? selinux_socket_recvmsg+0x1a/0x1c
>> [ 20.625357] [<c0342ccb>] ? sock_aio_read+0x109/0x117
>> [ 20.625361] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
>> [ 20.625364] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
>> [ 20.625367] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
>> [ 20.625371] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
>> [ 20.625374] [<c015a307>] handle_IRQ_event+0x34/0x69
>> [ 20.625377] [<c015b47e>] handle_edge_irq+0xc8/0x109
>> [ 20.625381] [<c0104bc9>] do_IRQ+0x92/0xad
>> [ 20.625384] [<c010396c>] common_interrupt+0x2c/0x34
>> [ 20.625386] ---[ end trace a1303c5fb15c2015 ]---
>> [ 20.660553] ------------[ cut here ]------------
>> [ 20.660556] WARNING: at drivers/ata/libata-sff.c:1017
>> ata_sff_hsm_move+0x49c/0x6d0()
>> [ 20.660558] Hardware name: MacBookPro2,2
>> [ 20.660560] Modules linked in: fan battery container ipt_LOG xt_limit
>> xt_tcpudp xt_state ipt_addrtype nf_nat_irc nf_conntrack_irc nf_nat_ftp nf_nat
>> nf_conntrack_ftp ipmi_watchdog ipmi_msghandler isight_firmware uinput
>> arpt_mangle arptable_filter arp_tables nf_conntrack_ipv4 nf_conntrack
>> nf_defrag_ipv4 iptable_mangle iptable_filter ip_tables x_tables coretemp
>> eeprom acpi_cpufreq cpufreq_powersave cpufreq_performance cpufreq_ondemand
>> cpufreq_conservative firewire_sbp2 firewire_core raw1394 appletouch
>> snd_hda_codec_idt uvcvideo ohci1394 thermal joydev snd_hda_intel snd_hda_codec
>> ath9k ieee1394 video ac button processor applesmc uhci_hcd ehci_hcd snd_hwdep
>> snd_pcm snd_page_alloc pata_acpi evdev
>> [ 20.660619] Pid: 2519, comm: hald-addon-macb Tainted: G W
>> 2.6.28-07812-g5fbbf5f #9
>> [ 20.660621] Call Trace:
>> [ 20.660626] [<c01292ca>] warn_slowpath+0x76/0xad
>> [ 20.660631] [<c013cca6>] ? hrtimer_cancel+0x12/0x1d
>> [ 20.660635] [<c03e1285>] ? schedule_hrtimeout_range+0x10b/0x12a
>> [ 20.660639] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
>> [ 20.660642] [<c03e2148>] ? _spin_unlock_irqrestore+0x2d/0x3c
>> [ 20.660647] [<c013a41e>] ? remove_wait_queue+0x35/0x39
>> [ 20.660651] [<c019a87b>] ? poll_freewait+0x34/0x7d
>> [ 20.660654] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
>> [ 20.660658] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
>> [ 20.660661] [<c011b332>] ? kunmap_atomic+0x72/0x92
>> [ 20.660665] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
>> [ 20.660668] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
>> [ 20.660672] [<c015a307>] handle_IRQ_event+0x34/0x69
>> [ 20.660676] [<c015b47e>] handle_edge_irq+0xc8/0x109
>> [ 20.660679] [<c0104bc9>] do_IRQ+0x92/0xad
>> [ 20.660682] [<c010396c>] common_interrupt+0x2c/0x34
>> [ 20.660687] [<c016e758>] ? get_page_from_freelist+0x32f/0x3ed
>> [ 20.660691] [<c016ea87>] __alloc_pages_internal+0x9b/0x36a
>> [ 20.660694] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
>> [ 20.660697] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
>> [ 20.660700] [<c016ed6f>] get_zeroed_page+0x19/0x2b
>> [ 20.660704] [<c01c82f5>] sysfs_follow_link+0x22/0x13d
>> [ 20.660708] [<c01971a5>] __link_path_walk+0x459/0xc5a
>> [ 20.660712] [<c0215291>] ? selinux_file_alloc_security+0x2d/0x46
>> [ 20.660715] [<c0197b43>] path_walk+0x55/0xaa
>> [ 20.660718] [<c0197d66>] do_path_lookup+0x145/0x18d
>> [ 20.660721] [<c0197e50>] path_lookup_open+0x4b/0x7c
>> [ 20.660724] [<c01988d6>] do_filp_open+0xa8/0x6e8
>> [ 20.660728] [<c018bb89>] ? __slab_alloc+0x409/0x4a8
>> [ 20.660731] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
>> [ 20.660734] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
>> [ 20.660737] [<c0196cb5>] ? getname+0x25/0xbc
>> [ 20.660739] [<c024382c>] ? _raw_spin_unlock+0x74/0x78
>> [ 20.660743] [<c018d779>] do_sys_open+0x47/0xbc
>> [ 20.660746] [<c018d83a>] sys_open+0x23/0x2b
>> [ 20.660749] [<c010329f>] sysenter_do_call+0x12/0x34
>> [ 20.660751] ---[ end trace a1303c5fb15c2016 ]---
>> [ 20.662220] ------------[ cut here ]------------
>> [ 20.662223] WARNING: at drivers/ata/libata-sff.c:1017
>> ata_sff_hsm_move+0x49c/0x6d0()
>> [ 20.662225] Hardware name: MacBookPro2,2
>> [ 20.662226] Modules linked in: fan battery container ipt_LOG xt_limit
>> xt_tcpudp xt_state ipt_addrtype nf_nat_irc nf_conntrack_irc nf_nat_ftp nf_nat
>> nf_conntrack_ftp ipmi_watchdog ipmi_msghandler isight_firmware uinput
>> arpt_mangle arptable_filter arp_tables nf_conntrack_ipv4 nf_conntrack
>> nf_defrag_ipv4 iptable_mangle iptable_filter ip_tables x_tables coretemp
>> eeprom acpi_cpufreq cpufreq_powersave cpufreq_performance cpufreq_ondemand
>> cpufreq_conservative firewire_sbp2 firewire_core raw1394 appletouch
>> snd_hda_codec_idt uvcvideo ohci1394 thermal joydev snd_hda_intel snd_hda_codec
>> ath9k ieee1394 video ac button processor applesmc uhci_hcd ehci_hcd snd_hwdep
>> snd_pcm snd_page_alloc pata_acpi evdev
>> [ 20.662280] Pid: 2423, comm: klogd Tainted: G W
>> 2.6.28-07812-g5fbbf5f #9
>> [ 20.662282] Call Trace:
>> [ 20.662286] [<c01292ca>] warn_slowpath+0x76/0xad
>> [ 20.662290] [<c03e0b94>] ? __mutex_lock_slowpath+0x25b/0x263
>> [ 20.662293] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
>> [ 20.662296] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
>> [ 20.662298] [<c024382c>] ? _raw_spin_unlock+0x74/0x78
>> [ 20.662302] [<c03e2164>] ? _spin_unlock+0xd/0xf
>> [ 20.662306] [<c01a1823>] ? mnt_drop_write+0x68/0xcc
>> [ 20.662309] [<c019e22a>] ? touch_atime+0xa5/0xbf
>> [ 20.662313] [<c019541e>] ? pipe_read+0x2f7/0x305
>> [ 20.662316] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
>> [ 20.662320] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
>> [ 20.662323] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
>> [ 20.662327] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
>> [ 20.662330] [<c015a307>] handle_IRQ_event+0x34/0x69
>> [ 20.662334] [<c015b47e>] handle_edge_irq+0xc8/0x109
>> [ 20.662337] [<c0104bc9>] do_IRQ+0x92/0xad
>> [ 20.662340] [<c010396c>] common_interrupt+0x2c/0x34
>> [ 20.662342] ---[ end trace a1303c5fb15c2017 ]---
>> [ 20.663258] ------------[ cut here ]------------
>> [ 20.663260] WARNING: at drivers/ata/libata-sff.c:1017
>> ata_sff_hsm_move+0x49c/0x6d0()
>> [ 20.663262] Hardware name: MacBookPro2,2
>> [ 20.663264] Modules linked in: fan battery container ipt_LOG xt_limit
>> xt_tcpudp xt_state ipt_addrtype nf_nat_irc nf_conntrack_irc nf_nat_ftp nf_nat
>> nf_conntrack_ftp ipmi_watchdog ipmi_msghandler isight_firmware uinput
>> arpt_mangle arptable_filter arp_tables nf_conntrack_ipv4 nf_conntrack
>> nf_defrag_ipv4 iptable_mangle iptable_filter ip_tables x_tables coretemp
>> eeprom acpi_cpufreq cpufreq_powersave cpufreq_performance cpufreq_ondemand
>> cpufreq_conservative firewire_sbp2 firewire_core raw1394 appletouch
>> snd_hda_codec_idt uvcvideo ohci1394 thermal joydev snd_hda_intel snd_hda_codec
>> ath9k ieee1394 video ac button processor applesmc uhci_hcd ehci_hcd snd_hwdep
>> snd_pcm snd_page_alloc pata_acpi evdev
>> [ 20.663318] Pid: 2420, comm: dd Tainted: G W 2.6.28-07812-g5fbbf5f
>> #9
>> [ 20.663320] Call Trace:
>> [ 20.663323] [<c01292ca>] warn_slowpath+0x76/0xad
>> [ 20.663327] [<c03e2141>] ? _spin_unlock_irqrestore+0x26/0x3c
>> [ 20.663331] [<c01238ef>] ? try_to_wake_up+0x245/0x250
>> [ 20.663334] [<c011bbac>] ? update_curr+0xae/0x189
>> [ 20.663337] [<c01206a1>] ? enqueue_entity+0x26c/0x274
>> [ 20.663341] [<c011b7ad>] ? resched_task+0x25/0x69
>> [ 20.663344] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
>> [ 20.663347] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
>> [ 20.663351] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
>> [ 20.663354] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
>> [ 20.663358] [<c015a307>] handle_IRQ_event+0x34/0x69
>> [ 20.663361] [<c015b47e>] handle_edge_irq+0xc8/0x109
>> [ 20.663364] [<c0104bc9>] do_IRQ+0x92/0xad
>> [ 20.663368] [<c010396c>] common_interrupt+0x2c/0x34
>> [ 20.663371] [<c03e007b>] ? schedule+0x695/0x8f1
>> [ 20.663374] [<c03e2111>] ? _spin_unlock_irq+0x14/0x1e
>> [ 20.663378] [<c0125c92>] finish_task_switch+0x37/0x8a
>> [ 20.663381] [<c03e026d>] schedule+0x887/0x8f1
>> [ 20.663385] [<c0240330>] ? trace_hardirqs_off_thunk+0xc/0x10
>> [ 20.663388] [<c0103210>] ? resume_userspace+0x14/0x28
>> [ 20.663391] [<c010344e>] work_resched+0x5/0x2d
>> [ 20.663393] ---[ end trace a1303c5fb15c2018 ]---
>>
>> this was just after compiling. rebooted to this.
>> seems harmless,(just warnings);
>>
>>
>> regards;
>>
>> Justin P. Mattock
>>
>>
>>
>>
>>
>>
>>
>
>
Probably not a good idea to leave the kernel
this way.("what do you expect from a pre-release
kernel for crying out loud") :^)

i.g. after 9+ hours of running, this showed up:

[23841.807404] ------------[ cut here ]------------
[23841.807411] WARNING: at drivers/ata/libata-sff.c:1017
ata_sff_hsm_move+0x49c/0x6d0()
[23841.807416] Hardware name: MacBookPro2,2
[23841.807420] Modules linked in: hidp radeon drm agpgart btusb bnep sco
rfcomm l2cap bluetooth fan battery container ipt_LOG xt_limit xt_tcpudp
xt_state ipt_addrtype nf_nat_irc nf_conntrack_irc nf_nat_ftp nf_nat
nf_conntrack_ftp ipmi_watchdog ipmi_msghandler uvcvideo isight_firmware
uinput arpt_mangle arptable_filter arp_tables nf_conntrack_ipv4
nf_conntrack nf_defrag_ipv4 iptable_mangle iptable_filter ip_tables
x_tables coretemp eeprom acpi_cpufreq cpufreq_powersave
cpufreq_performance cpufreq_ondemand cpufreq_conservative firewire_sbp2
firewire_core raw1394 appletouch snd_hda_codec_idt ohci1394 thermal
ehci_hcd snd_hda_intel snd_hda_codec joydev ath9k ieee1394 uhci_hcd
pata_acpi processor video evdev snd_hwdep snd_pcm snd_page_alloc ac
button applesmc
[23841.807561] Pid: 0, comm: swapper Tainted: G W
2.6.28-07812-g5fbbf5f #9
[23841.807566] Call Trace:
[23841.807576] [<c01292ca>] warn_slowpath+0x76/0xad
[23841.807586] [<c03e2141>] ? _spin_unlock_irqrestore+0x26/0x3c
[23841.807593] [<c01238ef>] ? try_to_wake_up+0x245/0x250
[23841.807601] [<c03e2141>] ? _spin_unlock_irqrestore+0x26/0x3c
[23841.807609] [<c02ce674>] ? scsi_eh_scmd_add+0x83/0x8c
[23841.807616] [<c03e2141>] ? _spin_unlock_irqrestore+0x26/0x3c
[23841.807623] [<c02ce674>] ? scsi_eh_scmd_add+0x83/0x8c
[23841.807630] [<c02ce6cf>] ? scsi_times_out+0x52/0x6c
[23841.807637] [<c0235c66>] ? blk_rq_timed_out+0x11/0x4b
[23841.807643] [<c0235ce3>] ? blk_abort_request+0x43/0x46
[23841.807651] [<c02ebb5c>] ? ata_qc_schedule_eh+0x49/0x50
[23841.807657] [<c02e1d9f>] ? ata_qc_complete+0x75/0x1a9
[23841.807665] [<c02ee5f9>] ? ata_sff_data_xfer32+0x5d/0xa7
[23841.807672] [<c02edf9d>] ata_sff_hsm_move+0x49c/0x6d0
[23841.807680] [<c02ee2fa>] ? ata_sff_interrupt+0x18/0x1f7
[23841.807687] [<c02ee43d>] ata_sff_interrupt+0x15b/0x1f7
[23841.807695] [<c015a307>] handle_IRQ_event+0x34/0x69
[23841.807703] [<c015b47e>] handle_edge_irq+0xc8/0x109
[23841.807710] [<c0104bc9>] do_IRQ+0x92/0xad
[23841.807717] [<c010396c>] common_interrupt+0x2c/0x34
[23841.807741] [<f89d9727>] ? acpi_idle_enter_bm+0x2df/0x36b [processor]
[23841.807749] [<c0144b5a>] ? tick_nohz_restart_sched_tick+0x139/0x14b
[23841.807758] [<c031e695>] cpuidle_idle_call+0x65/0x98
[23841.807764] [<c01023b7>] cpu_idle+0x84/0xa5
[23841.807772] [<c03d388f>] rest_init+0x53/0x55
[23841.807777] ---[ end trace cb4366cfc35cdf22 ]---

still a warning, but probably not
good.

regards;

Justin P. Mattock

2009-01-09 10:11:37

by Tejun Heo

[permalink] [raw]
Subject: Re: [fix] Too async libata breakage

Hello,

Justin P. Mattock wrote:
> Linus Torvalds wrote:
>> On Thu, 8 Jan 2009, Justin P. Mattock wrote:
>>
>>> O.K. attached is the results of
>>> dmesg after doing a git-pull
>>> (system didn't freeze, but there's
>>> a slew of warnings); i.g.
>>>
>>
>> That's a different thing now - some very annoying warnings indeed.
>>
>> Tejun, I think it's yours. And I think it should be removed, or at the
>> very least changed into a WARN_ON_ONCE. Because spamming the console
>> with this is not a good idea:

Yeah, that's WARN_ON() on a pretty hot path. I'll submit a patch to
convert it to WARN_ON_ONCE() but that's a condition which shouldn't
happen in the first place. Strange.

Justin, can you please post the output of "lspci -nn" and full kernel
boot log?

Thanks.

--
tejun

2009-01-09 10:19:51

by Tejun Heo

[permalink] [raw]
Subject: [PATCH] libata: use WARN_ON_ONCE on hot paths

Convert WARN_ON() on command issue/completion paths to WARN_ON_ONCE()
so that libata doesn't spam the machine even when one of those
conditions triggers repeatedly.

Signed-off-by: Tejun Heo <[email protected]>
---
drivers/ata/libata-core.c | 16 ++++++++--------
drivers/ata/libata-sff.c | 24 ++++++++++++------------
2 files changed, 20 insertions(+), 20 deletions(-)

diff --git a/drivers/ata/libata-core.c b/drivers/ata/libata-core.c
index 175df54..c507a9a 100644
--- a/drivers/ata/libata-core.c
+++ b/drivers/ata/libata-core.c
@@ -4556,7 +4556,7 @@ void ata_sg_clean(struct ata_queued_cmd *qc)
struct scatterlist *sg = qc->sg;
int dir = qc->dma_dir;

- WARN_ON(sg == NULL);
+ WARN_ON_ONCE(sg == NULL);

VPRINTK("unmapping %u sg elements\n", qc->n_elem);

@@ -4776,7 +4776,7 @@ void ata_qc_free(struct ata_queued_cmd *qc)
struct ata_port *ap = qc->ap;
unsigned int tag;

- WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
+ WARN_ON_ONCE(qc == NULL); /* ata_qc_from_tag _might_ return NULL */

qc->flags = 0;
tag = qc->tag;
@@ -4791,8 +4791,8 @@ void __ata_qc_complete(struct ata_queued_cmd *qc)
struct ata_port *ap = qc->ap;
struct ata_link *link = qc->dev->link;

- WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
- WARN_ON(!(qc->flags & ATA_QCFLAG_ACTIVE));
+ WARN_ON_ONCE(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
+ WARN_ON_ONCE(!(qc->flags & ATA_QCFLAG_ACTIVE));

if (likely(qc->flags & ATA_QCFLAG_DMAMAP))
ata_sg_clean(qc);
@@ -4878,7 +4878,7 @@ void ata_qc_complete(struct ata_queued_cmd *qc)
struct ata_device *dev = qc->dev;
struct ata_eh_info *ehi = &dev->link->eh_info;

- WARN_ON(ap->pflags & ATA_PFLAG_FROZEN);
+ WARN_ON_ONCE(ap->pflags & ATA_PFLAG_FROZEN);

if (unlikely(qc->err_mask))
qc->flags |= ATA_QCFLAG_FAILED;
@@ -5000,16 +5000,16 @@ void ata_qc_issue(struct ata_queued_cmd *qc)
* check is skipped for old EH because it reuses active qc to
* request ATAPI sense.
*/
- WARN_ON(ap->ops->error_handler && ata_tag_valid(link->active_tag));
+ WARN_ON_ONCE(ap->ops->error_handler && ata_tag_valid(link->active_tag));

if (ata_is_ncq(prot)) {
- WARN_ON(link->sactive & (1 << qc->tag));
+ WARN_ON_ONCE(link->sactive & (1 << qc->tag));

if (!link->sactive)
ap->nr_active_links++;
link->sactive |= 1 << qc->tag;
} else {
- WARN_ON(link->sactive);
+ WARN_ON_ONCE(link->sactive);

ap->nr_active_links++;
link->active_tag = qc->tag;
diff --git a/drivers/ata/libata-sff.c b/drivers/ata/libata-sff.c
index c59ad76..0eae9b4 100644
--- a/drivers/ata/libata-sff.c
+++ b/drivers/ata/libata-sff.c
@@ -578,7 +578,7 @@ void ata_sff_tf_load(struct ata_port *ap, const struct ata_taskfile *tf)
}

if (is_addr && (tf->flags & ATA_TFLAG_LBA48)) {
- WARN_ON(!ioaddr->ctl_addr);
+ WARN_ON_ONCE(!ioaddr->ctl_addr);
iowrite8(tf->hob_feature, ioaddr->feature_addr);
iowrite8(tf->hob_nsect, ioaddr->nsect_addr);
iowrite8(tf->hob_lbal, ioaddr->lbal_addr);
@@ -651,7 +651,7 @@ void ata_sff_tf_read(struct ata_port *ap, struct ata_taskfile *tf)
iowrite8(tf->ctl, ioaddr->ctl_addr);
ap->last_ctl = tf->ctl;
} else
- WARN_ON(1);
+ WARN_ON_ONCE(1);
}
}
EXPORT_SYMBOL_GPL(ata_sff_tf_read);
@@ -891,7 +891,7 @@ static void ata_pio_sectors(struct ata_queued_cmd *qc)
/* READ/WRITE MULTIPLE */
unsigned int nsect;

- WARN_ON(qc->dev->multi_count == 0);
+ WARN_ON_ONCE(qc->dev->multi_count == 0);

nsect = min((qc->nbytes - qc->curbytes) / qc->sect_size,
qc->dev->multi_count);
@@ -918,7 +918,7 @@ static void atapi_send_cdb(struct ata_port *ap, struct ata_queued_cmd *qc)
{
/* send SCSI cdb */
DPRINTK("send cdb\n");
- WARN_ON(qc->dev->cdb_len < 12);
+ WARN_ON_ONCE(qc->dev->cdb_len < 12);

ap->ops->sff_data_xfer(qc->dev, qc->cdb, qc->dev->cdb_len, 1);
ata_sff_sync(ap);
@@ -1014,7 +1014,7 @@ next_sg:
}

/* consumed can be larger than count only for the last transfer */
- WARN_ON(qc->cursg && count != consumed);
+ WARN_ON_ONCE(qc->cursg && count != consumed);

if (bytes)
goto next_sg;
@@ -1172,13 +1172,13 @@ int ata_sff_hsm_move(struct ata_port *ap, struct ata_queued_cmd *qc,
unsigned long flags = 0;
int poll_next;

- WARN_ON((qc->flags & ATA_QCFLAG_ACTIVE) == 0);
+ WARN_ON_ONCE((qc->flags & ATA_QCFLAG_ACTIVE) == 0);

/* Make sure ata_sff_qc_issue() does not throw things
* like DMA polling into the workqueue. Notice that
* in_wq is not equivalent to (qc->tf.flags & ATA_TFLAG_POLLING).
*/
- WARN_ON(in_wq != ata_hsm_ok_in_wq(ap, qc));
+ WARN_ON_ONCE(in_wq != ata_hsm_ok_in_wq(ap, qc));

fsm_start:
DPRINTK("ata%u: protocol %d task_state %d (dev_stat 0x%X)\n",
@@ -1387,7 +1387,7 @@ fsm_start:
DPRINTK("ata%u: dev %u command complete, drv_stat 0x%x\n",
ap->print_id, qc->dev->devno, status);

- WARN_ON(qc->err_mask & (AC_ERR_DEV | AC_ERR_HSM));
+ WARN_ON_ONCE(qc->err_mask & (AC_ERR_DEV | AC_ERR_HSM));

ap->hsm_task_state = HSM_ST_IDLE;

@@ -1423,7 +1423,7 @@ void ata_pio_task(struct work_struct *work)
int poll_next;

fsm_start:
- WARN_ON(ap->hsm_task_state == HSM_ST_IDLE);
+ WARN_ON_ONCE(ap->hsm_task_state == HSM_ST_IDLE);

/*
* This is purely heuristic. This is a fast path.
@@ -1512,7 +1512,7 @@ unsigned int ata_sff_qc_issue(struct ata_queued_cmd *qc)
break;

case ATA_PROT_DMA:
- WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING);
+ WARN_ON_ONCE(qc->tf.flags & ATA_TFLAG_POLLING);

ap->ops->sff_tf_load(ap, &qc->tf); /* load tf registers */
ap->ops->bmdma_setup(qc); /* set up bmdma */
@@ -1564,7 +1564,7 @@ unsigned int ata_sff_qc_issue(struct ata_queued_cmd *qc)
break;

case ATAPI_PROT_DMA:
- WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING);
+ WARN_ON_ONCE(qc->tf.flags & ATA_TFLAG_POLLING);

ap->ops->sff_tf_load(ap, &qc->tf); /* load tf registers */
ap->ops->bmdma_setup(qc); /* set up bmdma */
@@ -1576,7 +1576,7 @@ unsigned int ata_sff_qc_issue(struct ata_queued_cmd *qc)
break;

default:
- WARN_ON(1);
+ WARN_ON_ONCE(1);
return AC_ERR_SYSTEM;
}

2009-01-09 11:31:43

by Zdenek Kabelac

[permalink] [raw]
Subject: Re: [PATCH] libata: use WARN_ON_ONCE on hot paths

2009/1/9 Tejun Heo <[email protected]>:
> Convert WARN_ON() on command issue/completion paths to WARN_ON_ONCE()
> so that libata doesn't spam the machine even when one of those
> conditions triggers repeatedly.
>


Hi

I've not yet applied this patch - but now I'm getting these WARNS on my T61:
(commit: 2150edc6c5cf00f7adb54538b9ea2a3e9cedca3f)

Is this patch solving the problem or just hiding warnings ?

--

Driver 'sr' needs updating - please use bus_type methods
------------[ cut here ]------------
WARNING: at drivers/ata/libata-sff.c:1017 ata_sff_hsm_move+0x4c6/0x770()
Hardware name: 6464CTO
Modules linked in: sr_mod(+) cdrom soundcore i2c_core
iTCO_vendor_support usbhid hid lib80211 sdhci_pci sdhci mmc_core
led_class psmouse cfg80211 snd_page_alloc battery ac e1000e serio_raw
intel_agp uhci_hcd ohci_hcd ehci_hcd usbcore [last unloaded:
scsi_wait_scan]
Pid: 1198, comm: udevd Not tainted 2.6.28 #3
Call Trace:
<IRQ> [<ffffffff80244d8f>] warn_slowpath+0xaf/0x110
[<ffffffff8026fd19>] ? __lock_acquire+0x5e9/0x1db0
[<ffffffff8044a2d0>] ? scsi_times_out+0x70/0x90
[<ffffffff804713b6>] ? ata_sff_data_xfer32+0xa6/0xe0
[<ffffffff80470ae6>] ata_sff_hsm_move+0x4c6/0x770
[<ffffffff804710e9>] ata_sff_interrupt+0x1a9/0x2b0
[<ffffffff80294aa5>] handle_IRQ_event+0x35/0x70
[<ffffffff8029631c>] handle_edge_irq+0xbc/0x160
[<ffffffff8020ec55>] do_IRQ+0xb5/0x1b0
[<ffffffff8020cf53>] ret_from_intr+0x0/0xf
<EOI> <4>---[ end trace 6cbd13f9b20a7686 ]---
------------[ cut here ]------------
WARNING: at drivers/ata/libata-sff.c:1017 ata_sff_hsm_move+0x4c6/0x770()
Hardware name: 6464CTO
Modules linked in: sr_mod(+) cdrom soundcore i2c_core
iTCO_vendor_support usbhid hid lib80211 sdhci_pci sdhci mmc_core
led_class psmouse cfg80211 snd_page_alloc battery ac e1000e serio_raw
intel_agp uhci_hcd ohci_hcd ehci_hcd usbcore [last unloaded:
scsi_wait_scan]
Pid: 0, comm: swapper Tainted: G W 2.6.28 #3
Call Trace:
<IRQ> [<ffffffff80244d8f>] warn_slowpath+0xaf/0x110
[<ffffffff8026fd19>] ? __lock_acquire+0x5e9/0x1db0
[<ffffffff8026c31d>] ? trace_hardirqs_off+0xd/0x10
[<ffffffff80227298>] ? flat_send_IPI_mask+0x88/0xa0
[<ffffffff804713b6>] ? ata_sff_data_xfer32+0xa6/0xe0
[<ffffffff80470ae6>] ata_sff_hsm_move+0x4c6/0x770
[<ffffffff804710e9>] ata_sff_interrupt+0x1a9/0x2b0
[<ffffffff80294aa5>] handle_IRQ_event+0x35/0x70
[<ffffffff8029631c>] handle_edge_irq+0xbc/0x160
[<ffffffff8020ec55>] do_IRQ+0xb5/0x1b0
[<ffffffff8020cf53>] ret_from_intr+0x0/0xf
[<ffffffff8024b409>] ? __do_softirq+0x69/0x180
[<ffffffff8024b40c>] ? __do_softirq+0x6c/0x180
[<ffffffff8024b409>] ? __do_softirq+0x69/0x180
[<ffffffff8020d6fc>] ? call_softirq+0x1c/0x50
[<ffffffff8020e9a5>] ? do_softirq+0x75/0xc0
[<ffffffff8024af45>] ? irq_exit+0x85/0xb0
[<ffffffff80221c38>] ? smp_apic_timer_interrupt+0x88/0xc0
[<ffffffff8020d133>] ? apic_timer_interrupt+0x13/0x20
<EOI> <4>---[ end trace 6cbd13f9b20a7687 ]---
------------[ cut here ]------------
WARNING: at drivers/ata/libata-sff.c:1017 ata_sff_hsm_move+0x4c6/0x770()
Hardware name: 6464CTO
Modules linked in: sr_mod(+) cdrom soundcore i2c_core
iTCO_vendor_support usbhid hid lib80211 sdhci_pci sdhci mmc_core
led_class psmouse cfg80211 snd_page_alloc battery ac e1000e serio_raw
intel_agp uhci_hcd ohci_hcd ehci_hcd usbcore [last unloaded:
scsi_wait_scan]
Pid: 0, comm: swapper Tainted: G W 2.6.28 #3
Call Trace:
<IRQ> [<ffffffff80244d8f>] warn_slowpath+0xaf/0x110
[<ffffffff80470af8>] ? ata_sff_hsm_move+0x4d8/0x770
[<ffffffff804713b6>] ? ata_sff_data_xfer32+0xa6/0xe0
[<ffffffff80470ae6>] ata_sff_hsm_move+0x4c6/0x770
[<ffffffff804710e9>] ata_sff_interrupt+0x1a9/0x2b0
[<ffffffff80294aa5>] handle_IRQ_event+0x35/0x70
[<ffffffff8029631c>] handle_edge_irq+0xbc/0x160
[<ffffffff8020ec55>] do_IRQ+0xb5/0x1b0
[<ffffffff8020cf53>] ret_from_intr+0x0/0xf
<EOI> <4>---[ end trace 6cbd13f9b20a7688 ]---
sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
Uniform CD-ROM driver Revision: 3.20
PM: Adding info for No Bus:sr0
PM: Adding info for No Bus:11:0
sr 3:0:0:0: Attached scsi CD-ROM sr0
------------[ cut here ]------------
WARNING: at drivers/ata/libata-sff.c:1017 ata_sff_hsm_move+0x4c6/0x770()
Hardware name: 6464CTO
Modules linked in: sr_mod cdrom soundcore i2c_core iTCO_vendor_support
usbhid hid lib80211 sdhci_pci sdhci mmc_core led_class psmouse
cfg80211 snd_page_alloc battery ac e1000e serio_raw intel_agp uhci_hcd
ohci_hcd ehci_hcd usbcore [last unloaded: scsi_wait_scan]
Pid: 0, comm: swapper Tainted: G W 2.6.28 #3
Call Trace:
<IRQ> [<ffffffff80244d8f>] warn_slowpath+0xaf/0x110
[<ffffffff8026c31d>] ? trace_hardirqs_off+0xd/0x10
[<ffffffff8053e3b7>] ? _spin_unlock_irqrestore+0x57/0x70
[<ffffffff8044a220>] ? scsi_eh_scmd_add+0xa0/0xe0
[<ffffffff8044a2d0>] ? scsi_times_out+0x70/0x90
[<ffffffff80395726>] ? blk_rq_timed_out+0x16/0x70
[<ffffffff803957c7>] ? blk_abort_request+0x47/0x50
[<ffffffff8046dacb>] ? ata_qc_schedule_eh+0x4b/0x70
[<ffffffff80460f99>] ? ata_qc_complete+0x1f9/0x230
[<ffffffff804713b6>] ? ata_sff_data_xfer32+0xa6/0xe0
[<ffffffff80470ae6>] ata_sff_hsm_move+0x4c6/0x770
[<ffffffff804710e9>] ata_sff_interrupt+0x1a9/0x2b0
[<ffffffff80294aa5>] handle_IRQ_event+0x35/0x70
[<ffffffff8029631c>] handle_edge_irq+0xbc/0x160
[<ffffffff8020ec55>] do_IRQ+0xb5/0x1b0
[<ffffffff8020cf53>] ret_from_intr+0x0/0xf
<EOI> <4>---[ end trace 6cbd13f9b20a7689 ]---
------------[ cut here ]------------
WARNING: at drivers/ata/libata-sff.c:1017 ata_sff_hsm_move+0x4c6/0x770()
Hardware name: 6464CTO
Modules linked in: sr_mod cdrom soundcore i2c_core iTCO_vendor_support
usbhid hid lib80211 sdhci_pci sdhci mmc_core led_class psmouse
cfg80211 snd_page_alloc battery ac e1000e serio_raw intel_agp uhci_hcd
ohci_hcd ehci_hcd usbcore [last unloaded: scsi_wait_scan]
Pid: 0, comm: swapper Tainted: G W 2.6.28 #3
Call Trace:
<IRQ> [<ffffffff80244d8f>] warn_slowpath+0xaf/0x110
[<ffffffff8026c31d>] ? trace_hardirqs_off+0xd/0x10
[<ffffffff80236fea>] ? complete+0x4a/0x60
[<ffffffff8045f93d>] ? __ata_qc_complete+0x7d/0xf0
[<ffffffff80460e5d>] ? ata_qc_complete+0xbd/0x230
[<ffffffff804713b6>] ? ata_sff_data_xfer32+0xa6/0xe0
[<ffffffff80470ae6>] ata_sff_hsm_move+0x4c6/0x770
[<ffffffff804710e9>] ata_sff_interrupt+0x1a9/0x2b0
[<ffffffff80294aa5>] handle_IRQ_event+0x35/0x70
[<ffffffff8029631c>] handle_edge_irq+0xbc/0x160
[<ffffffff8020ec55>] do_IRQ+0xb5/0x1b0
[<ffffffff8020cf53>] ret_from_intr+0x0/0xf
<EOI> <4>---[ end trace 6cbd13f9b20a768a ]---
------------[ cut here ]------------
WARNING: at drivers/ata/libata-sff.c:1017 ata_sff_hsm_move+0x4c6/0x770()
Hardware name: 6464CTO
Modules linked in: sr_mod cdrom soundcore i2c_core iTCO_vendor_support
usbhid hid lib80211 sdhci_pci sdhci mmc_core led_class psmouse
cfg80211 snd_page_alloc battery ac e1000e serio_raw intel_agp uhci_hcd
ohci_hcd ehci_hcd usbcore [last unloaded: scsi_wait_scan]
Pid: 0, comm: swapper Tainted: G W 2.6.28 #3
Call Trace:
<IRQ> [<ffffffff80244d8f>] warn_slowpath+0xaf/0x110
[<ffffffff8024075b>] ? scheduler_tick+0x4b/0x230
[<ffffffff802604b2>] ? hrtimer_get_next_event+0x42/0xf0
[<ffffffff804713b6>] ? ata_sff_data_xfer32+0xa6/0xe0
[<ffffffff80470ae6>] ata_sff_hsm_move+0x4c6/0x770
[<ffffffff804710e9>] ata_sff_interrupt+0x1a9/0x2b0
[<ffffffff80294aa5>] handle_IRQ_event+0x35/0x70
[<ffffffff8029631c>] handle_edge_irq+0xbc/0x160
[<ffffffff8020ec55>] do_IRQ+0xb5/0x1b0
[<ffffffff8020cf53>] ret_from_intr+0x0/0xf
<EOI> <4>---[ end trace 6cbd13f9b20a768b ]---
iTCO_wdt: Intel TCO WatchDog Timer Driver v1.04
PM: Adding info for platform:iTCO_wdt
iTCO_wdt: Found a ICH8M-E TCO device (Version=2, TCOBASE=0x1060)
PM: Adding info for No Bus:watchdog
... cut ...
CONFIG_NF_CT_ACCT is deprecated and will be removed soon. Please use
nf_conntrack.acct=1 kernel paramater, acct=1 nf_conntrack module option or
sysctl net.netfilter.nf_conntrack_acct=1 to enable it.
------------[ cut here ]------------
WARNING: at drivers/ata/libata-sff.c:1017 ata_sff_hsm_move+0x4c6/0x770()
Hardware name: 6464CTO
Modules linked in: nf_conntrack_ipv4 nf_defrag_ipv4 xt_state
nf_conntrack ipt_REJECT xt_tcpudp iptable_filter ip_tables x_tables
bridge stp llc bluetooth autofs4 sunrpc ipv6 binfmt_misc dm_snapshot
dm_mirror dm_region_hash dm_log dm_mod rtc_cmos rtc_core rtc_lib
kvm_intel kvm i915 drm i2c_algo_bit uinput arc4 ecb
snd_hda_codec_analog cryptomgr snd_hda_intel aead snd_hda_codec
snd_seq_oss crypto_blkcipher crypto_hash snd_seq_midi_event snd_seq
snd_seq_device snd_pcm_oss snd_mixer_oss snd_pcm crypto_algapi iwl3945
mac80211 snd_timer button thinkpad_acpi rfkill backlight nvram evdev
i2c_i801 snd iTCO_wdt sr_mod cdrom soundcore i2c_core
iTCO_vendor_support usbhid hid lib80211 sdhci_pci sdhci mmc_core
led_class psmouse cfg80211 snd_page_alloc battery ac e1000e serio_raw
intel_agp uhci_hcd ohci_hcd ehci_hcd usbcore [last unloaded:
microcode]
Pid: 2519, comm: hald Tainted: G W 2.6.28 #3
Call Trace:
<IRQ> [<ffffffff80244d8f>] warn_slowpath+0xaf/0x110
[<ffffffff8026c31d>] ? trace_hardirqs_off+0xd/0x10
[<ffffffff8053e3b7>] ? _spin_unlock_irqrestore+0x57/0x70
[<ffffffff8023c5ef>] ? try_to_wake_up+0x13f/0x2f0
[<ffffffff804713b6>] ? ata_sff_data_xfer32+0xa6/0xe0
[<ffffffff80470ae6>] ata_sff_hsm_move+0x4c6/0x770
[<ffffffff804710e9>] ata_sff_interrupt+0x1a9/0x2b0
[<ffffffff80294aa5>] handle_IRQ_event+0x35/0x70
[<ffffffff8029631c>] handle_edge_irq+0xbc/0x160
[<ffffffff8020ec55>] do_IRQ+0xb5/0x1b0
[<ffffffff8020cf53>] ret_from_intr+0x0/0xf
<EOI> <4>---[ end trace 6cbd13f9b20a768c ]---
------------[ cut here ]------------
WARNING: at drivers/ata/libata-sff.c:1017 ata_sff_hsm_move+0x4c6/0x770()
Hardware name: 6464CTO
Modules linked in: nf_conntrack_ipv4 nf_defrag_ipv4 xt_state
nf_conntrack ipt_REJECT xt_tcpudp iptable_filter ip_tables x_tables
bridge stp llc bluetooth autofs4 sunrpc ipv6 binfmt_misc dm_snapshot
dm_mirror dm_region_hash dm_log dm_mod rtc_cmos rtc_core rtc_lib
kvm_intel kvm i915 drm i2c_algo_bit uinput arc4 ecb
snd_hda_codec_analog cryptomgr snd_hda_intel aead snd_hda_codec
snd_seq_oss crypto_blkcipher crypto_hash snd_seq_midi_event snd_seq
snd_seq_device snd_pcm_oss snd_mixer_oss snd_pcm crypto_algapi iwl3945
mac80211 snd_timer button thinkpad_acpi rfkill backlight nvram evdev
i2c_i801 snd iTCO_wdt sr_mod cdrom soundcore i2c_core
iTCO_vendor_support usbhid hid lib80211 sdhci_pci sdhci mmc_core
led_class psmouse cfg80211 snd_page_alloc battery ac e1000e serio_raw
intel_agp uhci_hcd ohci_hcd ehci_hcd usbcore [last unloaded:
microcode]
Pid: 0, comm: swapper Tainted: G W 2.6.28 #3
Call Trace:
<IRQ> [<ffffffff80244d8f>] warn_slowpath+0xaf/0x110
[<ffffffff80390bba>] ? blk_run_queue+0x3a/0x50
[<ffffffff8044a852>] ? scsi_run_queue+0xe2/0x3f0
[<ffffffff80438702>] ? put_device+0x12/0x20
[<ffffffff804450a1>] ? __scsi_put_command+0x61/0xa0
[<ffffffff803a1757>] ? kobject_put+0x27/0x60
[<ffffffff80438702>] ? put_device+0x12/0x20
[<ffffffff8044bb15>] ? scsi_next_command+0x45/0x60
[<ffffffff804713b6>] ? ata_sff_data_xfer32+0xa6/0xe0
[<ffffffff80470ae6>] ata_sff_hsm_move+0x4c6/0x770
[<ffffffff804710e9>] ata_sff_interrupt+0x1a9/0x2b0
[<ffffffff80294aa5>] handle_IRQ_event+0x35/0x70
[<ffffffff8029631c>] handle_edge_irq+0xbc/0x160
[<ffffffff8020ec55>] do_IRQ+0xb5/0x1b0
[<ffffffff8020cf53>] ret_from_intr+0x0/0xf
<EOI> <4>---[ end trace 6cbd13f9b20a768d ]---
------------[ cut here ]------------
WARNING: at drivers/ata/libata-sff.c:1017 ata_sff_hsm_move+0x4c6/0x770()
Hardware name: 6464CTO
Modules linked in: nf_conntrack_ipv4 nf_defrag_ipv4 xt_state
nf_conntrack ipt_REJECT xt_tcpudp iptable_filter ip_tables x_tables
bridge stp llc bluetooth autofs4 sunrpc ipv6 binfmt_misc dm_snapshot
dm_mirror dm_region_hash dm_log dm_mod rtc_cmos rtc_core rtc_lib
kvm_intel kvm i915 drm i2c_algo_bit uinput arc4 ecb
snd_hda_codec_analog cryptomgr snd_hda_intel aead snd_hda_codec
snd_seq_oss crypto_blkcipher crypto_hash snd_seq_midi_event snd_seq
snd_seq_device snd_pcm_oss snd_mixer_oss snd_pcm crypto_algapi iwl3945
mac80211 snd_timer button thinkpad_acpi rfkill backlight nvram evdev
i2c_i801 snd iTCO_wdt sr_mod cdrom soundcore i2c_core
iTCO_vendor_support usbhid hid lib80211 sdhci_pci sdhci mmc_core
led_class psmouse cfg80211 snd_page_alloc battery ac e1000e serio_raw
intel_agp uhci_hcd ohci_hcd ehci_hcd usbcore [last unloaded:
microcode]
Pid: 2729, comm: hal-acl-tool Tainted: G W 2.6.28 #3
Call Trace:
<IRQ> [<ffffffff80244d8f>] warn_slowpath+0xaf/0x110
[<ffffffff8026c31d>] ? trace_hardirqs_off+0xd/0x10
[<ffffffff8053e3b7>] ? _spin_unlock_irqrestore+0x57/0x70
[<ffffffff8044a220>] ? scsi_eh_scmd_add+0xa0/0xe0
[<ffffffff8044a2d0>] ? scsi_times_out+0x70/0x90
[<ffffffff804713b6>] ? ata_sff_data_xfer32+0xa6/0xe0
[<ffffffff80470ae6>] ata_sff_hsm_move+0x4c6/0x770
[<ffffffff804710e9>] ata_sff_interrupt+0x1a9/0x2b0
[<ffffffff80294aa5>] handle_IRQ_event+0x35/0x70
[<ffffffff8029631c>] handle_edge_irq+0xbc/0x160
[<ffffffff8020ec55>] do_IRQ+0xb5/0x1b0
[<ffffffff8020cf53>] ret_from_intr+0x0/0xf
<EOI> <4>---[ end trace 6cbd13f9b20a768e ]---
------------[ cut here ]------------
WARNING: at drivers/ata/libata-sff.c:1017 ata_sff_hsm_move+0x4c6/0x770()
Hardware name: 6464CTO
Modules linked in: nf_conntrack_ipv4 nf_defrag_ipv4 xt_state
nf_conntrack ipt_REJECT xt_tcpudp iptable_filter ip_tables x_tables
bridge stp llc bluetooth autofs4 sunrpc ipv6 binfmt_misc dm_snapshot
dm_mirror dm_region_hash dm_log dm_mod rtc_cmos rtc_core rtc_lib
kvm_intel kvm i915 drm i2c_algo_bit uinput arc4 ecb
snd_hda_codec_analog cryptomgr snd_hda_intel aead snd_hda_codec
snd_seq_oss crypto_blkcipher crypto_hash snd_seq_midi_event snd_seq
snd_seq_device snd_pcm_oss snd_mixer_oss snd_pcm crypto_algapi iwl3945
mac80211 snd_timer button thinkpad_acpi rfkill backlight nvram evdev
i2c_i801 snd iTCO_wdt sr_mod cdrom soundcore i2c_core
iTCO_vendor_support usbhid hid lib80211 sdhci_pci sdhci mmc_core
led_class psmouse cfg80211 snd_page_alloc battery ac e1000e serio_raw
intel_agp uhci_hcd ohci_hcd ehci_hcd usbcore [last unloaded:
microcode]
Pid: 0, comm: swapper Tainted: G W 2.6.28 #3
Call Trace:
<IRQ> [<ffffffff80244d8f>] warn_slowpath+0xaf/0x110
[<ffffffff8024075b>] ? scheduler_tick+0x4b/0x230
[<ffffffff802604b2>] ? hrtimer_get_next_event+0x42/0xf0
[<ffffffff804713b6>] ? ata_sff_data_xfer32+0xa6/0xe0
[<ffffffff80470ae6>] ata_sff_hsm_move+0x4c6/0x770
[<ffffffff804710e9>] ata_sff_interrupt+0x1a9/0x2b0
[<ffffffff80294aa5>] handle_IRQ_event+0x35/0x70
[<ffffffff8029631c>] handle_edge_irq+0xbc/0x160
[<ffffffff8020ec55>] do_IRQ+0xb5/0x1b0
[<ffffffff8020cf53>] ret_from_intr+0x0/0xf
<EOI> <4>---[ end trace 6cbd13f9b20a768f ]---
------------[ cut here ]------------
WARNING: at drivers/ata/libata-sff.c:1017 ata_sff_hsm_move+0x4c6/0x770()
Hardware name: 6464CTO
Modules linked in: nf_conntrack_ipv4 nf_defrag_ipv4 xt_state
nf_conntrack ipt_REJECT xt_tcpudp iptable_filter ip_tables x_tables
bridge stp llc bluetooth autofs4 sunrpc ipv6 binfmt_misc dm_snapshot
dm_mirror dm_region_hash dm_log dm_mod rtc_cmos rtc_core rtc_lib
kvm_intel kvm i915 drm i2c_algo_bit uinput arc4 ecb
snd_hda_codec_analog cryptomgr snd_hda_intel aead snd_hda_codec
snd_seq_oss crypto_blkcipher crypto_hash snd_seq_midi_event snd_seq
snd_seq_device snd_pcm_oss snd_mixer_oss snd_pcm crypto_algapi iwl3945
mac80211 snd_timer button thinkpad_acpi rfkill backlight nvram evdev
i2c_i801 snd iTCO_wdt sr_mod cdrom soundcore i2c_core
iTCO_vendor_support usbhid hid lib80211 sdhci_pci sdhci mmc_core
led_class psmouse cfg80211 snd_page_alloc battery ac e1000e serio_raw
intel_agp uhci_hcd ohci_hcd ehci_hcd usbcore [last unloaded:
microcode]
Pid: 0, comm: swapper Tainted: G W 2.6.28 #3
Call Trace:
<IRQ> [<ffffffff80244d8f>] warn_slowpath+0xaf/0x110
[<ffffffff80390bba>] ? blk_run_queue+0x3a/0x50
[<ffffffff8044a852>] ? scsi_run_queue+0xe2/0x3f0
[<ffffffff80438702>] ? put_device+0x12/0x20
[<ffffffff804450a1>] ? __scsi_put_command+0x61/0xa0
[<ffffffff803a1757>] ? kobject_put+0x27/0x60
[<ffffffff80438702>] ? put_device+0x12/0x20
[<ffffffff8044bb15>] ? scsi_next_command+0x45/0x60
[<ffffffff804713b6>] ? ata_sff_data_xfer32+0xa6/0xe0
[<ffffffff80470ae6>] ata_sff_hsm_move+0x4c6/0x770
[<ffffffff804710e9>] ata_sff_interrupt+0x1a9/0x2b0
[<ffffffff80294aa5>] handle_IRQ_event+0x35/0x70
[<ffffffff8029631c>] handle_edge_irq+0xbc/0x160
[<ffffffff8020ec55>] do_IRQ+0xb5/0x1b0
[<ffffffff8020cf53>] ret_from_intr+0x0/0xf
<EOI> <4>---[ end trace 6cbd13f9b20a7690 ]---
------------[ cut here ]------------
WARNING: at drivers/ata/libata-sff.c:1017 ata_sff_hsm_move+0x4c6/0x770()
Hardware name: 6464CTO
Modules linked in: nf_conntrack_ipv4 nf_defrag_ipv4 xt_state
nf_conntrack ipt_REJECT xt_tcpudp iptable_filter ip_tables x_tables
bridge stp llc bluetooth autofs4 sunrpc ipv6 binfmt_misc dm_snapshot
dm_mirror dm_region_hash dm_log dm_mod rtc_cmos rtc_core rtc_lib
kvm_intel kvm i915 drm i2c_algo_bit uinput arc4 ecb
snd_hda_codec_analog cryptomgr snd_hda_intel aead snd_hda_codec
snd_seq_oss crypto_blkcipher crypto_hash snd_seq_midi_event snd_seq
snd_seq_device snd_pcm_oss snd_mixer_oss snd_pcm crypto_algapi iwl3945
mac80211 snd_timer button thinkpad_acpi rfkill backlight nvram evdev
i2c_i801 snd iTCO_wdt sr_mod cdrom soundcore i2c_core
iTCO_vendor_support usbhid hid lib80211 sdhci_pci sdhci mmc_core
led_class psmouse cfg80211 snd_page_alloc battery ac e1000e serio_raw
intel_agp uhci_hcd ohci_hcd ehci_hcd usbcore [last unloaded:
microcode]
Pid: 0, comm: swapper Tainted: G W 2.6.28 #3
Call Trace:
<IRQ> [<ffffffff80244d8f>] warn_slowpath+0xaf/0x110
[<ffffffff8024075b>] ? scheduler_tick+0x4b/0x230
[<ffffffff802604b2>] ? hrtimer_get_next_event+0x42/0xf0
[<ffffffff804713b6>] ? ata_sff_data_xfer32+0xa6/0xe0
[<ffffffff80470ae6>] ata_sff_hsm_move+0x4c6/0x770
[<ffffffff804710e9>] ata_sff_interrupt+0x1a9/0x2b0
[<ffffffff80294aa5>] handle_IRQ_event+0x35/0x70
[<ffffffff8029631c>] handle_edge_irq+0xbc/0x160
[<ffffffff8020ec55>] do_IRQ+0xb5/0x1b0
[<ffffffff8020cf53>] ret_from_intr+0x0/0xf
<EOI> <4>---[ end trace 6cbd13f9b20a7691 ]---
------------[ cut here ]------------
WARNING: at drivers/ata/libata-sff.c:1017 ata_sff_hsm_move+0x4c6/0x770()
Hardware name: 6464CTO
Modules linked in: nf_conntrack_ipv4 nf_defrag_ipv4 xt_state
nf_conntrack ipt_REJECT xt_tcpudp iptable_filter ip_tables x_tables
bridge stp llc bluetooth autofs4 sunrpc ipv6 binfmt_misc dm_snapshot
dm_mirror dm_region_hash dm_log dm_mod rtc_cmos rtc_core rtc_lib
kvm_intel kvm i915 drm i2c_algo_bit uinput arc4 ecb
snd_hda_codec_analog cryptomgr snd_hda_intel aead snd_hda_codec
snd_seq_oss crypto_blkcipher crypto_hash snd_seq_midi_event snd_seq
snd_seq_device snd_pcm_oss snd_mixer_oss snd_pcm crypto_algapi iwl3945
mac80211 snd_timer button thinkpad_acpi rfkill backlight nvram evdev
i2c_i801 snd iTCO_wdt sr_mod cdrom soundcore i2c_core
iTCO_vendor_support usbhid hid lib80211 sdhci_pci sdhci mmc_core
led_class psmouse cfg80211 snd_page_alloc battery ac e1000e serio_raw
intel_agp uhci_hcd ohci_hcd ehci_hcd usbcore [last unloaded:
microcode]
Pid: 0, comm: swapper Tainted: G W 2.6.28 #3
Call Trace:
<IRQ> [<ffffffff80244d8f>] warn_slowpath+0xaf/0x110
[<ffffffff8024075b>] ? scheduler_tick+0x4b/0x230
[<ffffffff802604b2>] ? hrtimer_get_next_event+0x42/0xf0
[<ffffffff804713b6>] ? ata_sff_data_xfer32+0xa6/0xe0
[<ffffffff80470ae6>] ata_sff_hsm_move+0x4c6/0x770
[<ffffffff804710e9>] ata_sff_interrupt+0x1a9/0x2b0
[<ffffffff80294aa5>] handle_IRQ_event+0x35/0x70
[<ffffffff8029631c>] handle_edge_irq+0xbc/0x160
[<ffffffff8020ec55>] do_IRQ+0xb5/0x1b0
[<ffffffff8020cf53>] ret_from_intr+0x0/0xf
<EOI> <4>---[ end trace 6cbd13f9b20a7692 ]---
------------[ cut here ]------------
WARNING: at drivers/ata/libata-sff.c:1017 ata_sff_hsm_move+0x4c6/0x770()
Hardware name: 6464CTO
Modules linked in: nf_conntrack_ipv4 nf_defrag_ipv4 xt_state
nf_conntrack ipt_REJECT xt_tcpudp iptable_filter ip_tables x_tables
bridge stp llc bluetooth autofs4 sunrpc ipv6 binfmt_misc dm_snapshot
dm_mirror dm_region_hash dm_log dm_mod rtc_cmos rtc_core rtc_lib
kvm_intel kvm i915 drm i2c_algo_bit uinput arc4 ecb
snd_hda_codec_analog cryptomgr snd_hda_intel aead snd_hda_codec
snd_seq_oss crypto_blkcipher crypto_hash snd_seq_midi_event snd_seq
snd_seq_device snd_pcm_oss snd_mixer_oss snd_pcm crypto_algapi iwl3945
mac80211 snd_timer button thinkpad_acpi rfkill backlight nvram evdev
i2c_i801 snd iTCO_wdt sr_mod cdrom soundcore i2c_core
iTCO_vendor_support usbhid hid lib80211 sdhci_pci sdhci mmc_core
led_class psmouse cfg80211 snd_page_alloc battery ac e1000e serio_raw
intel_agp uhci_hcd ohci_hcd ehci_hcd usbcore [last unloaded:
microcode]
Pid: 0, comm: swapper Tainted: G W 2.6.28 #3
Call Trace:
<IRQ> [<ffffffff80244d8f>] warn_slowpath+0xaf/0x110
[<ffffffff80390bba>] ? blk_run_queue+0x3a/0x50
[<ffffffff8044a852>] ? scsi_run_queue+0xe2/0x3f0
[<ffffffff80438702>] ? put_device+0x12/0x20
[<ffffffff804450a1>] ? __scsi_put_command+0x61/0xa0
[<ffffffff803a1757>] ? kobject_put+0x27/0x60
[<ffffffff80438702>] ? put_device+0x12/0x20
[<ffffffff8044bb15>] ? scsi_next_command+0x45/0x60
[<ffffffff804713b6>] ? ata_sff_data_xfer32+0xa6/0xe0
[<ffffffff80470ae6>] ata_sff_hsm_move+0x4c6/0x770
[<ffffffff804710e9>] ata_sff_interrupt+0x1a9/0x2b0
[<ffffffff80294aa5>] handle_IRQ_event+0x35/0x70
[<ffffffff8029631c>] handle_edge_irq+0xbc/0x160
[<ffffffff8020ec55>] do_IRQ+0xb5/0x1b0
[<ffffffff8020cf53>] ret_from_intr+0x0/0xf
<EOI> <4>---[ end trace 6cbd13f9b20a7693 ]---
------------[ cut here ]------------
WARNING: at drivers/ata/libata-sff.c:1017 ata_sff_hsm_move+0x4c6/0x770()
Hardware name: 6464CTO
Modules linked in: nf_conntrack_ipv4 nf_defrag_ipv4 xt_state
nf_conntrack ipt_REJECT xt_tcpudp iptable_filter ip_tables x_tables
bridge stp llc bluetooth autofs4 sunrpc ipv6 binfmt_misc dm_snapshot
dm_mirror dm_region_hash dm_log dm_mod rtc_cmos rtc_core rtc_lib
kvm_intel kvm i915 drm i2c_algo_bit uinput arc4 ecb
snd_hda_codec_analog cryptomgr snd_hda_intel aead snd_hda_codec
snd_seq_oss crypto_blkcipher crypto_hash snd_seq_midi_event snd_seq
snd_seq_device snd_pcm_oss snd_mixer_oss snd_pcm crypto_algapi iwl3945
mac80211 snd_timer button thinkpad_acpi rfkill backlight nvram evdev
i2c_i801 snd iTCO_wdt sr_mod cdrom soundcore i2c_core
iTCO_vendor_support usbhid hid lib80211 sdhci_pci sdhci mmc_core
led_class psmouse cfg80211 snd_page_alloc battery ac e1000e serio_raw
intel_agp uhci_hcd ohci_hcd ehci_hcd usbcore [last unloaded:
microcode]
Pid: 0, comm: swapper Tainted: G W 2.6.28 #3
Call Trace:
<IRQ> [<ffffffff80244d8f>] warn_slowpath+0xaf/0x110
[<ffffffff802604b2>] ? hrtimer_get_next_event+0x42/0xf0
[<ffffffff804713b6>] ? ata_sff_data_xfer32+0xa6/0xe0
[<ffffffff80470ae6>] ata_sff_hsm_move+0x4c6/0x770
[<ffffffff804710e9>] ata_sff_interrupt+0x1a9/0x2b0
[<ffffffff80294aa5>] handle_IRQ_event+0x35/0x70
[<ffffffff8029631c>] handle_edge_irq+0xbc/0x160
[<ffffffff8020ec55>] do_IRQ+0xb5/0x1b0
[<ffffffff8020cf53>] ret_from_intr+0x0/0xf
<EOI> <4>---[ end trace 6cbd13f9b20a7694 ]---


Zdenek

2009-01-09 12:03:42

by Jeff Garzik

[permalink] [raw]
Subject: Re: [PATCH] libata: use WARN_ON_ONCE on hot paths

Zdenek Kabelac wrote:
> 2009/1/9 Tejun Heo <[email protected]>:
>> Convert WARN_ON() on command issue/completion paths to WARN_ON_ONCE()
>> so that libata doesn't spam the machine even when one of those
>> conditions triggers repeatedly.
>>
>
>
> Hi
>
> I've not yet applied this patch - but now I'm getting these WARNS on my T61:
> (commit: 2150edc6c5cf00f7adb54538b9ea2a3e9cedca3f)
>
> Is this patch solving the problem or just hiding warnings ?

Hiding warnings. As Tejun noted in another email, this condition should
not be happening in the first place.

If I had to guess, I would say that Arjan's patches assume it is OK to
treat two ports on a single IDE controller as completely independent,
when that is not really the reality of the hardware.

Jeff



2009-01-09 12:08:27

by Alan

[permalink] [raw]
Subject: Re: [PATCH] libata: use WARN_ON_ONCE on hot paths

> If I had to guess, I would say that Arjan's patches assume it is OK to
> treat two ports on a single IDE controller as completely independent,
> when that is not really the reality of the hardware.

The PCI probe paths and the setup paths of several of the PATA
controller drivers know they are single threaded in a few spots so it
wouldn't suprise me in the slightest. Really this async stuff needs to
spend 2 or 3 months in -next getting the kinks worked out so that driver
assumptions can be pinned down and fixed, and someone can give it an API
with names that anyone but Arjan understands ;)

Alan

2009-01-09 17:10:50

by Justin P. Mattock

[permalink] [raw]
Subject: Re: [PATCH] libata: use WARN_ON_ONCE on hot paths

00:00.0 Host bridge [0600]: Intel Corporation Mobile 945GM/PM/GMS, 943/940GML and 945GT Express Memory Controller Hub [8086:27a0] (rev 03)
00:01.0 PCI bridge [0604]: Intel Corporation Mobile 945GM/PM/GMS, 943/940GML and 945GT Express PCI Express Root Port [8086:27a1] (rev 03)
00:07.0 Performance counters [1101]: Intel Corporation Device [8086:27a3] (rev 03)
00:1b.0 Audio device [0403]: Intel Corporation 82801G (ICH7 Family) High Definition Audio Controller [8086:27d8] (rev 02)
00:1c.0 PCI bridge [0604]: Intel Corporation 82801G (ICH7 Family) PCI Express Port 1 [8086:27d0] (rev 02)
00:1c.1 PCI bridge [0604]: Intel Corporation 82801G (ICH7 Family) PCI Express Port 2 [8086:27d2] (rev 02)
00:1c.2 PCI bridge [0604]: Intel Corporation 82801G (ICH7 Family) PCI Express Port 3 [8086:27d4] (rev 02)
00:1d.0 USB Controller [0c03]: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #1 [8086:27c8] (rev 02)
00:1d.1 USB Controller [0c03]: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #2 [8086:27c9] (rev 02)
00:1d.2 USB Controller [0c03]: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #3 [8086:27ca] (rev 02)
00:1d.3 USB Controller [0c03]: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #4 [8086:27cb] (rev 02)
00:1d.7 USB Controller [0c03]: Intel Corporation 82801G (ICH7 Family) USB2 EHCI Controller [8086:27cc] (rev 02)
00:1e.0 PCI bridge [0604]: Intel Corporation 82801 Mobile PCI Bridge [8086:2448] (rev e2)
00:1f.0 ISA bridge [0601]: Intel Corporation 82801GBM (ICH7-M) LPC Interface Bridge [8086:27b9] (rev 02)
00:1f.1 IDE interface [0101]: Intel Corporation 82801G (ICH7 Family) IDE Controller [8086:27df] (rev 02)
00:1f.2 IDE interface [0101]: Intel Corporation 82801GBM/GHM (ICH7 Family) SATA IDE Controller [8086:27c4] (rev 02)
00:1f.3 SMBus [0c05]: Intel Corporation 82801G (ICH7 Family) SMBus Controller [8086:27da] (rev 02)
01:00.0 VGA compatible controller [0300]: ATI Technologies Inc M56P [Radeon Mobility X1600] [1002:71c5]
02:00.0 Ethernet controller [0200]: Marvell Technology Group Ltd. 88E8053 PCI-E Gigabit Ethernet Controller [11ab:4362] (rev 22)
03:00.0 Network controller [0280]: Atheros Communications Inc. AR5008 Wireless Network Adapter [168c:0024] (rev 01)
0c:03.0 FireWire (IEEE 1394) [0c00]: Texas Instruments TSB82AA2 IEEE-1394b Link Layer Controller [104c:8025] (rev 01)


Attachments:
libatawarning (90.87 kB)
lspci (2.29 kB)
Download all attachments

2009-01-09 18:47:23

by Justin P. Mattock

[permalink] [raw]
Subject: Re: [PATCH] libata: use WARN_ON_ONCE on hot paths

[ 0.000000] Linux version 2.6.28-07814-gdefbbee (root@unix) (gcc version 4.3.3 20081217 (prerelease) (Ubuntu 4.3.2-2ubuntu9) ) #10 SMP Fri Jan 9 10:17:23 PST 2009
[ 0.000000] KERNEL supported cpus:
[ 0.000000] Intel GenuineIntel
[ 0.000000] AMD AuthenticAMD
[ 0.000000] NSC Geode by NSC
[ 0.000000] Cyrix CyrixInstead
[ 0.000000] Centaur CentaurHauls
[ 0.000000] Transmeta GenuineTMx86
[ 0.000000] Transmeta TransmetaCPU
[ 0.000000] UMC UMC UMC UMC
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
[ 0.000000] BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
[ 0.000000] BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
[ 0.000000] BIOS-e820: 0000000000100000 - 000000003f0ea000 (usable)
[ 0.000000] BIOS-e820: 000000003f0ea000 - 000000003f2eb000 (ACPI NVS)
[ 0.000000] BIOS-e820: 000000003f2eb000 - 000000003febe000 (ACPI data)
[ 0.000000] BIOS-e820: 000000003febe000 - 000000003feef000 (ACPI NVS)
[ 0.000000] BIOS-e820: 000000003feef000 - 000000003ff00000 (ACPI data)
[ 0.000000] BIOS-e820: 000000003ff00000 - 0000000040000000 (reserved)
[ 0.000000] BIOS-e820: 00000000f0000000 - 00000000f4000000 (reserved)
[ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
[ 0.000000] BIOS-e820: 00000000fed14000 - 00000000fed1a000 (reserved)
[ 0.000000] BIOS-e820: 00000000fed1c000 - 00000000fed20000 (reserved)
[ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
[ 0.000000] BIOS-e820: 00000000ffe00000 - 0000000100000000 (reserved)
[ 0.000000] DMI 2.4 present.
[ 0.000000] last_pfn = 0x3f0ea max_arch_pfn = 0x100000
[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[ 0.000000] kernel direct mapping tables up to 377fe000 @ 7000-d000
[ 0.000000] init_ohci1394_dma: initializing OHCI-1394 at 0c:03.0
[ 0.000000] init_ohci1394_dma: finished initializing OHCI DMA
[ 0.000000] ACPI: RSDP 000FE020, 0024 (r2 APPLE )
[ 0.000000] ACPI: XSDT 3FEFD1C0, 0074 (r1 APPLE Apple00 A5 1000013)
[ 0.000000] ACPI: FACP 3FEFB000, 00F4 (r3 APPLE Apple00 A5 Loki 5F)
[ 0.000000] ACPI: DSDT 3FEF0000, 48D1 (r1 APPLE MacBookP 20002 INTL 20050309)
[ 0.000000] ACPI: FACS 3FEC0000, 0040
[ 0.000000] ACPI: HPET 3FEFA000, 0038 (r1 APPLE Apple00 1 Loki 5F)
[ 0.000000] ACPI: APIC 3FEF9000, 0068 (r1 APPLE Apple00 1 Loki 5F)
[ 0.000000] ACPI: MCFG 3FEF8000, 003C (r1 APPLE Apple00 1 Loki 5F)
[ 0.000000] ACPI: ASF! 3FEF7000, 00A0 (r32 APPLE Apple00 1 Loki 5F)
[ 0.000000] ACPI: SBST 3FEF6000, 0030 (r1 APPLE Apple00 1 Loki 5F)
[ 0.000000] ACPI: ECDT 3FEF5000, 0053 (r1 APPLE Apple00 1 Loki 5F)
[ 0.000000] ACPI: SSDT 3FEEF000, 04DC (r1 APPLE CpuPm 3000 INTL 20050309)
[ 0.000000] ACPI: SSDT 3FEBD000, 064F (r1 SataRe SataPri 1000 INTL 20050309)
[ 0.000000] ACPI: SSDT 3FEBC000, 069C (r1 SataRe SataSec 1000 INTL 20050309)
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] 120MB HIGHMEM available.
[ 0.000000] 887MB LOWMEM available.
[ 0.000000] mapped low ram: 0 - 377fe000
[ 0.000000] low ram: 00000000 - 377fe000
[ 0.000000] bootmap 00009000 - 0000ff00
[ 0.000000] (8 early reservations) ==> bootmem [0000000000 - 00377fe000]
[ 0.000000] #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000]
[ 0.000000] #1 [0000001000 - 0000002000] EX TRAMPOLINE ==> [0000001000 - 0000002000]
[ 0.000000] #2 [0000006000 - 0000007000] TRAMPOLINE ==> [0000006000 - 0000007000]
[ 0.000000] #3 [0000100000 - 0000669250] TEXT DATA BSS ==> [0000100000 - 0000669250]
[ 0.000000] #4 [000066a000 - 000066d000] INIT_PG_TABLE ==> [000066a000 - 000066d000]
[ 0.000000] #5 [000009fc00 - 0000100000] BIOS reserved ==> [000009fc00 - 0000100000]
[ 0.000000] #6 [0000007000 - 0000009000] PGTABLE ==> [0000007000 - 0000009000]
[ 0.000000] #7 [0000009000 - 0000010000] BOOTMAP ==> [0000009000 - 0000010000]
[ 0.000000] Zone PFN ranges:
[ 0.000000] DMA 0x00000000 -> 0x00001000
[ 0.000000] Normal 0x00001000 -> 0x000377fe
[ 0.000000] HighMem 0x000377fe -> 0x0003f0ea
[ 0.000000] Movable zone start PFN for each node
[ 0.000000] early_node_map[2] active PFN ranges
[ 0.000000] 0: 0x00000000 -> 0x0000009f
[ 0.000000] 0: 0x00000100 -> 0x0003f0ea
[ 0.000000] On node 0 totalpages: 258185
[ 0.000000] free_area_init_node: node 0, pgdat c053bb40, node_mem_map c1000000
[ 0.000000] DMA zone: 32 pages used for memmap
[ 0.000000] DMA zone: 0 pages reserved
[ 0.000000] DMA zone: 3967 pages, LIFO batch:0
[ 0.000000] Normal zone: 1744 pages used for memmap
[ 0.000000] Normal zone: 221486 pages, LIFO batch:31
[ 0.000000] HighMem zone: 242 pages used for memmap
[ 0.000000] HighMem zone: 30714 pages, LIFO batch:7
[ 0.000000] Using APIC driver default
[ 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[0x01] enabled)
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.000000] ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
[ 0.000000] IOAPIC[0]: apic_id 1, 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] Enabling APIC mode: Flat. Using 1 I/O APICs
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[ 0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs
[ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
[ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
[ 0.000000] Allocating PCI resources starting at 50000000 (gap: 40000000:b0000000)
[ 0.000000] NR_CPUS:2 nr_cpumask_bits:2 nr_cpu_ids:2 nr_node_ids:1
[ 0.000000] PERCPU: Allocating 40960 bytes of per cpu data
[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 256167
[ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.28-07814-gdefbbee root=/dev/sda1 vga=790 debug pnpacpi=off pci=routeirq acpi_osi=Darwin audit=1 selinux=1 ohci1394_dma=early enforcing=0
[ 0.000000] ACPI: Added _OSI(Darwin)
[ 0.000000] audit: enabled (after initialization)
[ 0.000000] Enabling fast FPU save and restore... done.
[ 0.000000] Enabling unmasked SIMD FPU exception support... done.
[ 0.000000] Initializing CPU#0
[ 0.000000] PID hash table entries: 4096 (order: 12, 16384 bytes)
[ 0.000000] Extended CMOS year: 2000
[ 0.000000] TSC: Unable to calibrate against PIT
[ 0.000000] TSC: using PMTIMER reference calibration
[ 0.000000] Detected 2161.204 MHz processor.
[ 0.010000] Console: colour dummy device 80x25
[ 0.010000] console [tty0] enabled
[ 0.010000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[ 0.010000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[ 0.010000] Memory: 1017788k/1033128k available (2969k kernel code, 14592k reserved, 1457k data, 404k init, 123824k highmem)
[ 0.010000] virtual kernel memory layout:
[ 0.010000] fixmap : 0xfff9e000 - 0xfffff000 ( 388 kB)
[ 0.010000] pkmap : 0xff800000 - 0xffc00000 (4096 kB)
[ 0.010000] vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB)
[ 0.010000] lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB)
[ 0.010000] .init : 0xc055a000 - 0xc05bf000 ( 404 kB)
[ 0.010000] .data : 0xc03e64be - 0xc05529c4 (1457 kB)
[ 0.010000] .text : 0xc0100000 - 0xc03e64be (2969 kB)
[ 0.010000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[ 0.010000] SLUB: Genslabs=12, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[ 0.010000] hpet clockevent registered
[ 0.010000] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
[ 0.010000] Calibrating delay loop (skipped), value calculated using timer frequency.. 4322.40 BogoMIPS (lpj=21612040)
[ 0.010000] Security Framework initialized
[ 0.010000] SELinux: Initializing.
[ 0.010000] SELinux: Starting in permissive mode
[ 0.010000] Failure registering Root Plug module with the kernel
[ 0.010000] Mount-cache hash table entries: 512
[ 0.010000] CPU: L1 I cache: 32K, L1 D cache: 32K
[ 0.010000] CPU: L2 cache: 4096K
[ 0.010000] [ds] using core 2 configuration
[ 0.010000] CPU: Physical Processor ID: 0
[ 0.010000] CPU: Processor Core ID: 0
[ 0.010000] Intel machine check architecture supported.
[ 0.010000] Intel machine check reporting enabled on CPU#0.
[ 0.010000] using mwait in idle threads.
[ 0.010000] Checking 'hlt' instruction... OK.
[ 0.041364] ACPI: Core revision 20080926
[ 0.061825] ftrace: converting mcount calls to 0f 1f 44 00 00
[ 0.061832] ftrace: allocating 15027 entries in 59 pages
[ 0.067892] alloc irq_2_pin on cpu 0 node 0
[ 0.067901] alloc irq_2_pin on cpu 0 node 0
[ 0.067907] alloc irq_2_pin on cpu 0 node 0
[ 0.067913] alloc irq_2_pin on cpu 0 node 0
[ 0.067919] alloc irq_2_pin on cpu 0 node 0
[ 0.067925] alloc irq_2_pin on cpu 0 node 0
[ 0.067930] alloc irq_2_pin on cpu 0 node 0
[ 0.067936] alloc irq_2_pin on cpu 0 node 0
[ 0.067942] alloc irq_2_pin on cpu 0 node 0
[ 0.067948] alloc irq_2_pin on cpu 0 node 0
[ 0.067954] alloc irq_2_pin on cpu 0 node 0
[ 0.067960] alloc irq_2_pin on cpu 0 node 0
[ 0.067966] alloc irq_2_pin on cpu 0 node 0
[ 0.067972] alloc irq_2_pin on cpu 0 node 0
[ 0.067978] alloc irq_2_pin on cpu 0 node 0
[ 0.068134] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.168154] CPU0: Intel(R) Core(TM)2 CPU T7400 @ 2.16GHz stepping 06
[ 0.170000] Testing tracer nop: PASSED
[ 0.170000] Booting processor 1 APIC 0x1 ip 0x6000
[ 0.010000] Initializing CPU#1
[ 0.010000] Calibrating delay using timer specific routine.. 4322.51 BogoMIPS (lpj=21612583)
[ 0.010000] CPU: L1 I cache: 32K, L1 D cache: 32K
[ 0.010000] CPU: L2 cache: 4096K
[ 0.010000] [ds] using core 2 configuration
[ 0.010000] CPU: Physical Processor ID: 0
[ 0.010000] CPU: Processor Core ID: 1
[ 0.010000] Intel machine check architecture supported.
[ 0.010000] Intel machine check reporting enabled on CPU#1.
[ 0.010000] x86 PAT enabled: cpu 1, old 0x7040600070406, new 0x7010600070106
[ 0.321749] CPU1: Intel(R) Core(TM)2 CPU T7400 @ 2.16GHz stepping 06
[ 0.321785] checking TSC synchronization [CPU#0 -> CPU#1]: passed.
[ 0.330031] Brought up 2 CPUs
[ 0.330036] Total of 2 processors activated (8644.92 BogoMIPS).
[ 0.330103] CPU0 attaching sched-domain:
[ 0.330108] domain 0: span 0-1 level MC
[ 0.330112] groups: 0 1
[ 0.330119] CPU1 attaching sched-domain:
[ 0.330122] domain 0: span 0-1 level MC
[ 0.330126] groups: 1 0
[ 0.330214] net_namespace: 800 bytes
[ 0.330214] Booting paravirtualized kernel on bare hardware
[ 0.330327] NET: Registered protocol family 16
[ 0.330327] EISA bus registered
[ 0.330327] ACPI: bus type pci registered
[ 0.330327] PCI: Using configuration type 1 for base access
[ 0.340112] bio: create slab <bio-0> at 0
[ 0.341250] ACPI: EC: EC description table is found, configuring boot EC
[ 0.341517] ACPI: EC: non-query interrupt received, switching to interrupt mode
[ 0.355071] ACPI: Interpreter enabled
[ 0.355078] ACPI: (supports S0 S3 S4 S5)
[ 0.355153] ACPI: Using IOAPIC for interrupt routing
[ 0.371523] ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
[ 0.371523] ACPI: EC: driver started in interrupt mode
[ 0.371523] ACPI: No dock devices found.
[ 0.371523] ACPI: PCI Root Bridge [PCI0] (0000:00)
[ 0.371523] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[ 0.371523] pci 0000:00:01.0: PME# disabled
[ 0.371523] pci 0000:00:07.0: reg 10 32bit mmio: [0x50404000-0x50404fff]
[ 0.371523] pci 0000:00:1b.0: reg 10 64bit mmio: [0x50400000-0x50403fff]
[ 0.371523] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 0.371523] pci 0000:00:1b.0: PME# disabled
[ 0.371523] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.371523] pci 0000:00:1c.0: PME# disabled
[ 0.371523] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[ 0.371523] pci 0000:00:1c.1: PME# disabled
[ 0.371523] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[ 0.371523] pci 0000:00:1c.2: PME# disabled
[ 0.371523] pci 0000:00:1d.0: reg 20 io port: [0x4080-0x409f]
[ 0.371523] pci 0000:00:1d.1: reg 20 io port: [0x4060-0x407f]
[ 0.371523] pci 0000:00:1d.2: reg 20 io port: [0x4040-0x405f]
[ 0.371523] pci 0000:00:1d.3: reg 20 io port: [0x4020-0x403f]
[ 0.371523] pci 0000:00:1d.7: reg 10 32bit mmio: [0x50405400-0x504057ff]
[ 0.371523] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[ 0.371523] pci 0000:00:1d.7: PME# disabled
[ 0.371523] pci 0000:00:1f.0: quirk: region 0400-047f claimed by ICH6 ACPI/GPIO/TCO
[ 0.371523] pci 0000:00:1f.0: quirk: region 0500-053f claimed by ICH6 GPIO
[ 0.371523] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0680 (mask 000f)
[ 0.371523] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 2 PIO at 1640 (mask 000f)
[ 0.371523] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 4 PIO at 0300 (mask 001f)
[ 0.371523] pci 0000:00:1f.1: reg 10 io port: [0x40d8-0x40df]
[ 0.371523] pci 0000:00:1f.1: reg 14 io port: [0x40ec-0x40ef]
[ 0.371523] pci 0000:00:1f.1: reg 18 io port: [0x40d0-0x40d7]
[ 0.371523] pci 0000:00:1f.1: reg 1c io port: [0x40e8-0x40eb]
[ 0.371523] pci 0000:00:1f.1: reg 20 io port: [0x40b0-0x40bf]
[ 0.371523] pci 0000:00:1f.2: reg 10 io port: [0x40c8-0x40cf]
[ 0.371523] pci 0000:00:1f.2: reg 14 io port: [0x40e4-0x40e7]
[ 0.371523] pci 0000:00:1f.2: reg 18 io port: [0x40c0-0x40c7]
[ 0.371523] pci 0000:00:1f.2: reg 1c io port: [0x40e0-0x40e3]
[ 0.371523] pci 0000:00:1f.2: reg 20 io port: [0x40a0-0x40af]
[ 0.371523] pci 0000:00:1f.2: reg 24 32bit mmio: [0x50405000-0x504053ff]
[ 0.371523] pci 0000:00:1f.2: PME# supported from D3hot
[ 0.371526] pci 0000:00:1f.2: PME# disabled
[ 0.371594] pci 0000:00:1f.3: reg 20 io port: [0xefa0-0xefbf]
[ 0.371673] pci 0000:01:00.0: reg 10 32bit mmio: [0x40000000-0x47ffffff]
[ 0.371683] pci 0000:01:00.0: reg 14 io port: [0x3000-0x30ff]
[ 0.371694] pci 0000:01:00.0: reg 18 32bit mmio: [0x50300000-0x5030ffff]
[ 0.371716] pci 0000:01:00.0: reg 30 32bit mmio: [0xfffe0000-0xffffffff]
[ 0.371748] pci 0000:01:00.0: supports D1 D2
[ 0.371811] pci 0000:00:01.0: bridge io port: [0x3000-0x3fff]
[ 0.371816] pci 0000:00:01.0: bridge 32bit mmio: [0x50300000-0x503fffff]
[ 0.371823] pci 0000:00:01.0: bridge 64bit mmio pref: [0x40000000-0x47ffffff]
[ 0.371906] pci 0000:02:00.0: reg 10 64bit mmio: [0x50200000-0x50203fff]
[ 0.371919] pci 0000:02:00.0: reg 18 io port: [0x2000-0x20ff]
[ 0.371957] pci 0000:02:00.0: reg 30 32bit mmio: [0xfffe0000-0xffffffff]
[ 0.372016] pci 0000:02:00.0: supports D1 D2
[ 0.372020] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.372028] pci 0000:02:00.0: PME# disabled
[ 0.372095] pci 0000:00:1c.0: bridge io port: [0x2000-0x2fff]
[ 0.372102] pci 0000:00:1c.0: bridge 32bit mmio: [0x50200000-0x502fffff]
[ 0.372183] pci 0000:03:00.0: reg 10 64bit mmio: [0x50100000-0x5010ffff]
[ 0.372281] pci 0000:03:00.0: supports D1
[ 0.372284] pci 0000:03:00.0: PME# supported from D0 D1 D3hot
[ 0.372292] pci 0000:03:00.0: PME# disabled
[ 0.372372] pci 0000:00:1c.1: bridge 32bit mmio: [0x50100000-0x501fffff]
[ 0.372442] pci 0000:00:1c.2: bridge io port: [0x1000-0x1fff]
[ 0.372449] pci 0000:00:1c.2: bridge 32bit mmio: [0x4c100000-0x500fffff]
[ 0.372459] pci 0000:00:1c.2: bridge 64bit mmio pref: [0x48000000-0x4bffffff]
[ 0.372519] pci 0000:0c:03.0: reg 10 32bit mmio: [0x4c004000-0x4c0047ff]
[ 0.372531] pci 0000:0c:03.0: reg 14 32bit mmio: [0x4c000000-0x4c003fff]
[ 0.372600] pci 0000:0c:03.0: supports D1 D2
[ 0.372603] pci 0000:0c:03.0: PME# supported from D0 D1 D2 D3hot
[ 0.372611] pci 0000:0c:03.0: PME# disabled
[ 0.372676] pci 0000:00:1e.0: transparent bridge
[ 0.372685] pci 0000:00:1e.0: bridge 32bit mmio: [0x4c000000-0x4c0fffff]
[ 0.372723] pci_bus 0000:00: on NUMA node 0
[ 0.372738] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[ 0.381199] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEGP._PRT]
[ 0.381795] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT]
[ 0.382378] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT]
[ 0.382958] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP03._PRT]
[ 0.383566] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCIB._PRT]
[ 0.401130] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
[ 0.401130] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 *11 12 14 15)
[ 0.401130] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
[ 0.401130] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 *11 12 14 15)
[ 0.401399] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
[ 0.401687] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled.
[ 0.401974] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 *10 12 14 15)
[ 0.402258] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 *11 12 14 15)
[ 0.410348] SCSI subsystem initialized
[ 0.410348] libata version 3.00 loaded.
[ 0.410348] usbcore: registered new interface driver usbfs
[ 0.410348] usbcore: registered new interface driver hub
[ 0.410348] usbcore: registered new device driver usb
[ 0.410348] PCI: Using ACPI for IRQ routing
[ 0.410348] PCI: Routing PCI interrupts for all devices because "pci=routeirq" specified
[ 0.410348] alloc irq_2_pin on cpu 0 node 0
[ 0.410348] pci 0000:00:01.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 0.410348] pci 0000:00:07.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 0.410348] alloc irq_2_pin on cpu 0 node 0
[ 0.410348] pci 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[ 0.410348] alloc irq_2_pin on cpu 0 node 0
[ 0.410348] pci 0000:00:1c.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[ 0.410348] pci 0000:00:1c.1: PCI INT B -> GSI 16 (level, low) -> IRQ 16
[ 0.410348] alloc irq_2_pin on cpu 0 node 0
[ 0.410348] pci 0000:00:1c.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[ 0.410348] alloc irq_2_pin on cpu 0 node 0
[ 0.410348] pci 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[ 0.410348] alloc irq_2_pin on cpu 0 node 0
[ 0.410348] pci 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[ 0.410348] pci 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[ 0.410348] pci 0000:00:1d.3: PCI INT D -> GSI 16 (level, low) -> IRQ 16
[ 0.410348] pci 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[ 0.410348] pci 0000:00:1f.1: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[ 0.410348] pci 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[ 0.410348] pci 0000:00:1f.3: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[ 0.410348] vendor=8086 device=27a1
[ 0.410348] pci 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 0.410348] vendor=8086 device=27d0
[ 0.410348] pci 0000:02:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 0.410348] vendor=8086 device=27d2
[ 0.410348] pci 0000:03:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[ 0.410348] vendor=8086 device=2448
[ 0.410348] pci 0000:0c:03.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
[ 0.440090] cfg80211: Using static regulatory domain info
[ 0.440090] cfg80211: Regulatory domain: US
[ 0.440090] (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[ 0.440090] (2402000 KHz - 2472000 KHz @ 40000 KHz), (600 mBi, 2700 mBm)
[ 0.440090] (5170000 KHz - 5190000 KHz @ 40000 KHz), (600 mBi, 2300 mBm)
[ 0.440090] (5190000 KHz - 5210000 KHz @ 40000 KHz), (600 mBi, 2300 mBm)
[ 0.440090] (5210000 KHz - 5230000 KHz @ 40000 KHz), (600 mBi, 2300 mBm)
[ 0.440090] (5230000 KHz - 5330000 KHz @ 40000 KHz), (600 mBi, 2300 mBm)
[ 0.440090] (5735000 KHz - 5835000 KHz @ 40000 KHz), (600 mBi, 3000 mBm)
[ 0.440094] cfg80211: Calling CRDA for country: US
[ 0.440123] NetLabel: Initializing
[ 0.440123] NetLabel: domain hash size = 128
[ 0.440123] NetLabel: protocols = UNLABELED CIPSOv4
[ 0.440142] NetLabel: unlabeled traffic allowed by default
[ 0.440156] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[ 0.440163] hpet0: 3 comparators, 64-bit 14.318180 MHz counter
[ 0.470029] pnp: PnP ACPI: disabled
[ 0.501823] Switched to high resolution mode on CPU 1
[ 0.505912] pci 0000:00:01.0: PCI bridge, secondary bus 0000:01
[ 0.505919] pci 0000:00:01.0: IO window: 0x3000-0x3fff
[ 0.505926] pci 0000:00:01.0: MEM window: 0x50300000-0x503fffff
[ 0.505931] pci 0000:00:01.0: PREFETCH window: 0x00000040000000-0x00000047ffffff
[ 0.505941] pci 0000:00:1c.0: PCI bridge, secondary bus 0000:02
[ 0.505946] pci 0000:00:1c.0: IO window: 0x2000-0x2fff
[ 0.505954] pci 0000:00:1c.0: MEM window: 0x50200000-0x502fffff
[ 0.505962] pci 0000:00:1c.0: PREFETCH window: 0x00000050500000-0x000000505fffff
[ 0.505973] pci 0000:00:1c.1: PCI bridge, secondary bus 0000:03
[ 0.505976] pci 0000:00:1c.1: IO window: disabled
[ 0.505984] pci 0000:00:1c.1: MEM window: 0x50100000-0x501fffff
[ 0.505991] pci 0000:00:1c.1: PREFETCH window: disabled
[ 0.506001] pci 0000:00:1c.2: PCI bridge, secondary bus 0000:04
[ 0.506006] pci 0000:00:1c.2: IO window: 0x1000-0x1fff
[ 0.506015] pci 0000:00:1c.2: MEM window: 0x4c100000-0x500fffff
[ 0.506022] pci 0000:00:1c.2: PREFETCH window: 0x00000048000000-0x0000004bffffff
[ 0.506033] pci 0000:00:1e.0: PCI bridge, secondary bus 0000:0c
[ 0.506037] pci 0000:00:1e.0: IO window: disabled
[ 0.506045] pci 0000:00:1e.0: MEM window: 0x4c000000-0x4c0fffff
[ 0.506052] pci 0000:00:1e.0: PREFETCH window: disabled
[ 0.506065] pci 0000:00:01.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 0.506071] pci 0000:00:01.0: setting latency timer to 64
[ 0.506078] pci 0000:00:1c.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[ 0.506085] pci 0000:00:1c.0: setting latency timer to 64
[ 0.506093] pci 0000:00:1c.1: PCI INT B -> GSI 16 (level, low) -> IRQ 16
[ 0.506100] pci 0000:00:1c.1: setting latency timer to 64
[ 0.506108] pci 0000:00:1c.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[ 0.506115] pci 0000:00:1c.2: setting latency timer to 64
[ 0.510004] Switched to high resolution mode on CPU 0
[ 0.510546] pci 0000:00:1e.0: power state changed by ACPI to D0
[ 0.510556] pci 0000:00:1e.0: setting latency timer to 64
[ 0.510562] pci_bus 0000:00: resource 0 io: [0x00-0xffff]
[ 0.510566] pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffff]
[ 0.510570] pci_bus 0000:01: resource 0 io: [0x3000-0x3fff]
[ 0.510574] pci_bus 0000:01: resource 1 mem: [0x50300000-0x503fffff]
[ 0.510579] pci_bus 0000:01: resource 2 mem: [0x40000000-0x47ffffff]
[ 0.510583] pci_bus 0000:01: resource 3 mem: [0x0-0x0]
[ 0.510586] pci_bus 0000:02: resource 0 io: [0x2000-0x2fff]
[ 0.510591] pci_bus 0000:02: resource 1 mem: [0x50200000-0x502fffff]
[ 0.510595] pci_bus 0000:02: resource 2 mem: [0x50500000-0x505fffff]
[ 0.510599] pci_bus 0000:02: resource 3 mem: [0x0-0x0]
[ 0.510602] pci_bus 0000:03: resource 0 mem: [0x0-0x0]
[ 0.510606] pci_bus 0000:03: resource 1 mem: [0x50100000-0x501fffff]
[ 0.510610] pci_bus 0000:03: resource 2 mem: [0x0-0x0]
[ 0.510614] pci_bus 0000:03: resource 3 mem: [0x0-0x0]
[ 0.510617] pci_bus 0000:04: resource 0 io: [0x1000-0x1fff]
[ 0.510621] pci_bus 0000:04: resource 1 mem: [0x4c100000-0x500fffff]
[ 0.510626] pci_bus 0000:04: resource 2 mem: [0x48000000-0x4bffffff]
[ 0.510629] pci_bus 0000:04: resource 3 mem: [0x0-0x0]
[ 0.510633] pci_bus 0000:0c: resource 0 mem: [0x0-0x0]
[ 0.510637] pci_bus 0000:0c: resource 1 mem: [0x4c000000-0x4c0fffff]
[ 0.510641] pci_bus 0000:0c: resource 2 mem: [0x0-0x0]
[ 0.510645] pci_bus 0000:0c: resource 3 io: [0x00-0xffff]
[ 0.510649] pci_bus 0000:0c: resource 4 mem: [0x000000-0xffffffff]
[ 0.510682] NET: Registered protocol family 2
[ 0.540086] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
[ 0.540445] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[ 0.540896] TCP bind hash table entries: 65536 (order: 8, 1310720 bytes)
[ 0.541448] TCP: Hash tables configured (established 131072 bind 65536)
[ 0.541453] TCP reno registered
[ 0.550160] NET: Registered protocol family 1
[ 0.551231] platform rtc_cmos: registered platform RTC device (no PNP device found)
[ 0.553514] Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
[ 0.555132] Initializing RT-Tester: OK
[ 0.555262] audit: initializing netlink socket (enabled)
[ 0.555328] type=2000 audit(1231525384.550:1): initialized
[ 0.558404] Testing tracer sched_switch: PASSED
[ 0.660047] Testing tracer function: PASSED
[ 0.790682] Testing dynamic ftrace: PASSED
[ 1.030058] Testing tracer irqsoff: PASSED
[ 1.040356] Testing tracer wakeup: PASSED
[ 1.370269] highmem bounce pool size: 64 pages
[ 1.370277] HugeTLB registered 4 MB page size, pre-allocated 0 pages
[ 1.388618] fuse init (API version 7.11)
[ 1.389288] msgmni has been set to 1746
[ 1.389550] SELinux: Registering netfilter hooks
[ 1.390420] alg: No test for stdrng (krng)
[ 1.390439] io scheduler noop registered
[ 1.390832] io scheduler cfq registered (default)
[ 1.390985] pci 0000:01:00.0: Boot video device
[ 1.391671] vesafb: framebuffer at 0x40000000, mapped to 0xf8100000, using 3072k, total 16384k
[ 1.391678] vesafb: mode is 1024x768x16, linelength=2048, pages=9
[ 1.391682] vesafb: protected mode interface info at c000:ad0c
[ 1.391686] vesafb: pmi: set display start = c00cad94, set palette = c00cae50
[ 1.391690] vesafb: scrolling: redraw
[ 1.391694] vesafb: Truecolor: size=0:5:5:5, shift=0:10:5:0
[ 1.416065] Console: switching to colour frame buffer device 128x48
[ 1.438277] fb0: VESA VGA frame buffer device
[ 1.453688] loop: module loaded
[ 1.453841] Linux video capture interface: v2.00
[ 1.454311] input: Macintosh mouse button emulation as /class/input/input0
[ 1.454947] Driver 'sd' needs updating - please use bus_type methods
[ 1.455342] Driver 'sr' needs updating - please use bus_type methods
[ 1.456001] ata_piix 0000:00:1f.1: version 2.12
[ 1.456332] ata_piix 0000:00:1f.1: power state changed by ACPI to D0
[ 1.456631] ata_piix 0000:00:1f.1: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[ 1.457004] ata_piix 0000:00:1f.1: setting latency timer to 64
[ 1.457366] scsi0 : ata_piix
[ 1.458056] scsi1 : ata_piix
[ 1.460215] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0x40b0 irq 14
[ 1.460536] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x40b8 irq 15
[ 1.460872] ata_piix 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[ 1.461202] ata_piix 0000:00:1f.2: MAP [ P0 P2 -- -- ]
[ 1.620022] ata_piix 0000:00:1f.2: setting latency timer to 64
[ 1.631721] scsi2 : ata_piix
[ 1.639476] scsi3 : ata_piix
[ 1.650596] ata3: SATA max UDMA/133 cmd 0x40c8 ctl 0x40e4 bmdma 0x40a0 irq 19
[ 1.658261] ata4: SATA max UDMA/133 cmd 0x40c0 ctl 0x40e0 bmdma 0x40a8 irq 19
[ 1.666287] ata1.00: ATAPI: MATSHITADVD-R UJ-857D, KCV9, max UDMA/66
[ 1.670319] usbcore: registered new interface driver usblcd
[ 1.670425] usbcore: registered new interface driver usbled
[ 1.670833] PNP: No PS/2 controller found. Probing ports directly.
[ 1.671713] i8042.c: No controller found.
[ 1.710334] mice: PS/2 mouse device common for all mice
[ 1.719243] device-mapper: ioctl: 4.14.0-ioctl (2008-04-23) initialised: [email protected]
[ 1.727335] EDAC MC: Ver: 2.1.0 Jan 8 2009
[ 1.735960] cpuidle: using governor ladder
[ 1.744036] cpuidle: using governor menu
[ 1.752475] ata1.00: configured for UDMA/66
[ 1.754358] usbcore: registered new interface driver hiddev
[ 1.754468] usbcore: registered new interface driver usbhid
[ 1.754472] usbhid: v2.6:USB HID core driver
[ 1.754605] Advanced Linux Sound Architecture Driver Version 1.0.18a.
[ 1.754736] ALSA device list:
[ 1.754737] No soundcards found.
[ 1.754936] oprofile: using NMI interrupt.
[ 1.755209] IPVS: Registered protocols (TCP, AH, ESP)
[ 1.755412] IPVS: Connection hash table configured (size=4096, memory=32Kbytes)
[ 1.755436] IPVS: ipvs loaded.
[ 1.755773] Initializing XFRM netlink socket
[ 1.755787] NET: Registered protocol family 17
[ 1.755794] NET: Registered protocol family 15
[ 1.755818] Using IPI No-Shortcut mode
[ 1.842978] ata3.01: ATA-8: FUJITSU MHW2120BH, 00810013, max UDMA/100
[ 1.842980] ata3.01: 234441648 sectors, multi 16: LBA48 NCQ (depth 0/32)
[ 1.880540] ata3.01: configured for UDMA/100
[ 1.894173] scsi 0:0:0:0: CD-ROM MATSHITA DVD-R UJ-857D KCV9 PQ: 0 ANSI: 5
[ 1.902934] ------------[ cut here ]------------
[ 1.910604] WARNING: at drivers/ata/libata-sff.c:1017 ata_sff_hsm_move+0x4de/0x72f()
[ 1.912902] Hardware name: MacBookPro2,2
[ 1.912902] Modules linked in:
[ 1.912902] Pid: 0, comm: swapper Not tainted 2.6.28-07814-gdefbbee #10
[ 1.912902] Call Trace:
[ 1.912902] [<c01292ca>] warn_slowpath+0x76/0xad
[ 1.912902] [<c018a64d>] ? check_object+0x139/0x190
[ 1.912902] [<c018aed4>] ? __slab_free+0x280/0x2b8
[ 1.912902] [<c0243883>] ? _raw_spin_lock+0x53/0xf8
[ 1.912902] [<c03e22a8>] ? _spin_unlock_irqrestore+0x2d/0x3c
[ 1.912902] [<c02327f0>] ? blk_run_queue+0x2d/0x31
[ 1.912902] [<c02ceca9>] ? scsi_run_queue+0x29d/0x324
[ 1.912902] [<c023ba49>] ? kobject_put+0x37/0x3c
[ 1.912902] [<c02afb67>] ? put_device+0x14/0x16
[ 1.912902] [<c02ee75a>] ? ata_sff_data_xfer32+0x5d/0xa7
[ 1.912902] [<c02ee0ce>] ata_sff_hsm_move+0x4de/0x72f
[ 1.912902] [<c02ee448>] ? ata_sff_interrupt+0x18/0x1f7
[ 1.912902] [<c02ee58b>] ata_sff_interrupt+0x15b/0x1f7
[ 1.912902] [<c015a307>] handle_IRQ_event+0x34/0x69
[ 1.912902] [<c015b47e>] handle_edge_irq+0xc8/0x109
[ 1.912902] [<c0104bc9>] do_IRQ+0x92/0xad
[ 1.912902] [<c010396c>] common_interrupt+0x2c/0x34
[ 1.912902] [<c010835b>] ? mwait_idle+0x55/0x85
[ 1.912902] [<c01023b1>] ? cpu_idle+0x7e/0xa5
[ 1.912902] [<c01023b7>] cpu_idle+0x84/0xa5
[ 1.912902] [<c03d39ef>] rest_init+0x53/0x55
[ 1.912902] [<c055a818>] start_kernel+0x2dc/0x2e1
[ 1.912902] [<c055a085>] __init_begin+0x85/0x8d
[ 1.912902] ---[ end trace c6be6dae142eee34 ]---
[ 2.137001] sr0: scsi3-mmc drive: 24x/24x writer cd/rw xa/form2 cdda tray
[ 2.144310] Uniform CD-ROM driver Revision: 3.20
[ 2.151890] sr 0:0:0:0: Attached scsi CD-ROM sr0
[ 2.159336] sr 0:0:0:0: Attached scsi generic sg0 type 5
[ 2.166507] scsi 2:0:1:0: Direct-Access ATA FUJITSU MHW2120B 0081 PQ: 0 ANSI: 5
[ 2.174297] sd 2:0:1:0: [sda] 234441648 512-byte hardware sectors: (120 GB/111 GiB)
[ 2.181748] sd 2:0:1:0: [sda] Write Protect is off
[ 2.189281] sd 2:0:1:0: [sda] Mode Sense: 00 3a 00 00
[ 2.196840] sd 2:0:1:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 2.196875] sd 2:0:1:0: Attached scsi generic sg1 type 0
[ 2.212210] sd 2:0:1:0: [sda] 234441648 512-byte hardware sectors: (120 GB/111 GiB)
[ 2.219968] sd 2:0:1:0: [sda] Write Protect is off
[ 2.227508] sd 2:0:1:0: [sda] Mode Sense: 00 3a 00 00
[ 2.234964] sd 2:0:1:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 2.242483] sda: sda1 sda2
[ 2.250557] sd 2:0:1:0: [sda] Attached SCSI disk
[ 2.262220] kjournald starting. Commit interval 5 seconds
[ 2.262230] EXT3-fs: mounted filesystem with ordered data mode.
[ 2.262262] VFS: Mounted root (ext3 filesystem) readonly on device 8:1.
[ 2.284801] Freeing unused kernel memory: 404k freed
[ 2.901753] SELinux: 8192 avtab hash slots, 145595 rules.
[ 3.000823] SELinux: 8192 avtab hash slots, 145595 rules.
[ 3.177947] SELinux: 7 users, 9 roles, 2684 types, 95 bools, 1 sens, 256 cats
[ 3.185761] SELinux: 73 classes, 145595 rules
[ 3.200048] SELinux: class kernel_service not defined in policy
[ 3.208046] SELinux: the above unknown classes and permissions will be denied
[ 3.215993] SELinux: Completing initialization.
[ 3.223928] SELinux: Setting up existing superblocks.
[ 3.267051] SELinux: initialized (dev sda1, type ext3), uses xattr
[ 3.422421] SELinux: initialized (dev selinuxfs, type selinuxfs), uses genfs_contexts
[ 3.430663] SELinux: initialized (dev mqueue, type mqueue), uses transition SIDs
[ 3.438901] SELinux: initialized (dev hugetlbfs, type hugetlbfs), uses genfs_contexts
[ 3.447241] SELinux: initialized (dev devpts, type devpts), uses transition SIDs
[ 3.455646] SELinux: initialized (dev inotifyfs, type inotifyfs), uses genfs_contexts
[ 3.464125] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[ 3.472665] SELinux: initialized (dev anon_inodefs, type anon_inodefs), uses genfs_contexts
[ 3.481362] SELinux: initialized (dev pipefs, type pipefs), uses task SIDs
[ 3.490125] SELinux: initialized (dev debugfs, type debugfs), uses genfs_contexts
[ 3.499032] SELinux: initialized (dev sockfs, type sockfs), uses task SIDs
[ 3.508001] SELinux: initialized (dev proc, type proc), uses genfs_contexts
[ 3.517000] SELinux: initialized (dev bdev, type bdev), uses genfs_contexts
[ 3.525941] SELinux: initialized (dev rootfs, type rootfs), uses genfs_contexts
[ 3.534953] SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts
[ 3.586324] type=1403 audit(1231525387.580:2): policy loaded auid=4294967295 ses=4294967295
[ 4.276658] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[ 4.732131] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[ 4.815277] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[ 9.263202] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[ 10.020530] applesmc: Apple MacBook Pro detected:
[ 10.038609] applesmc: - Model with accelerometer
[ 10.047574] applesmc: - Model with light sensors and backlight
[ 10.056523] applesmc: - Model with 12 temperature sensors
[ 10.066189] applesmc: device has already been initialized (0xe0, 0x00).
[ 10.074911] applesmc: device successfully initialized.
[ 10.084261] applesmc: 2 fans found.
[ 10.094500] input: applesmc as /class/input/input1
[ 10.128689] Registered led device: smc::kbd_backlight
[ 10.137775] applesmc: driver successfully loaded.
[ 10.305716] uhci_hcd: USB Universal Host Controller Interface driver
[ 10.314633] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[ 10.323552] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[ 10.332311] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[ 10.341058] SELinux: initialized (dev usbfs, type usbfs), uses genfs_contexts
[ 10.349977] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 1
[ 10.358926] uhci_hcd 0000:00:1d.0: irq 23, io base 0x00004080
[ 10.367912] usb usb1: configuration #1 chosen from 1 choice
[ 10.376759] hub 1-0:1.0: USB hub found
[ 10.385436] hub 1-0:1.0: 2 ports detected
[ 10.394329] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[ 10.403216] uhci_hcd 0000:00:1d.1: setting latency timer to 64
[ 10.411929] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[ 10.420605] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 2
[ 10.429307] uhci_hcd 0000:00:1d.1: irq 19, io base 0x00004060
[ 10.440129] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 10.448985] Warning! ehci_hcd should always be loaded before uhci_hcd and ohci_hcd, not after
[ 10.458686] usb usb2: configuration #1 chosen from 1 choice
[ 10.467649] hub 2-0:1.0: USB hub found
[ 10.476427] hub 2-0:1.0: 2 ports detected
[ 10.485270] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[ 10.494175] ehci_hcd 0000:00:1d.7: setting latency timer to 64
[ 10.503177] ehci_hcd 0000:00:1d.7: EHCI Host Controller
[ 10.512086] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 3
[ 10.525053] ehci_hcd 0000:00:1d.7: debug port 1
[ 10.533770] ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported
[ 10.542553] ehci_hcd 0000:00:1d.7: irq 23, io mem 0x50405400
[ 10.556625] ACPI: SSDT 3FEB8C10, 02AE (r1 APPLE Cpu0Ist 3000 INTL 20050309)
[ 10.566492] ACPI: SSDT 3FEB8910, 02A0 (r1 APPLE Cpu0Cst 3001 INTL 20050309)
[ 10.572510] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[ 10.572699] usb usb3: configuration #1 chosen from 1 choice
[ 10.572781] hub 3-0:1.0: USB hub found
[ 10.572793] hub 3-0:1.0: 8 ports detected
[ 10.573627] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[ 10.573638] uhci_hcd 0000:00:1d.2: setting latency timer to 64
[ 10.573641] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[ 10.573709] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
[ 10.573760] uhci_hcd 0000:00:1d.2: irq 18, io base 0x00004040
[ 10.573974] usb usb4: configuration #1 chosen from 1 choice
[ 10.574043] hub 4-0:1.0: USB hub found
[ 10.574055] hub 4-0:1.0: 2 ports detected
[ 10.622526] uhci_hcd 0000:00:1d.3: PCI INT D -> GSI 16 (level, low) -> IRQ 16
[ 10.622536] uhci_hcd 0000:00:1d.3: setting latency timer to 64
[ 10.622539] uhci_hcd 0000:00:1d.3: UHCI Host Controller
[ 10.622621] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
[ 10.622670] uhci_hcd 0000:00:1d.3: irq 16, io base 0x00004020
[ 10.622856] usb usb5: configuration #1 chosen from 1 choice
[ 10.622932] hub 5-0:1.0: USB hub found
[ 10.622954] hub 5-0:1.0: 2 ports detected
[ 10.740099] Monitor-Mwait will be used to enter C-1 state
[ 10.747973] Monitor-Mwait will be used to enter C-2 state
[ 10.755740] Monitor-Mwait will be used to enter C-3 state
[ 10.763575] ACPI: CPU0 (power states: C1[C1] C2[C2] C3[C3])
[ 10.771376] processor ACPI_CPU:00: registered as cooling_device0
[ 10.779053] ACPI: Processor [CPU0] (supports 8 throttling states)
[ 10.788391] ACPI: SSDT 3FEB8F10, 0087 (r1 APPLE Cpu1Ist 3000 INTL 20050309)
[ 10.797299] ACPI: SSDT 3FEB7F10, 0085 (r1 APPLE Cpu1Cst 3000 INTL 20050309)
[ 10.806325] ACPI: CPU1 (power states: C1[C1] C2[C2] C3[C3])
[ 10.814253] processor ACPI_CPU:01: registered as cooling_device1
[ 10.820000] Marking TSC unstable due to TSC halts in idle
[ 10.829590] ACPI: Processor [CPU1] (supports 8 throttling states)
[ 10.837522] power_supply ADP1: uevent
[ 10.837588] input: Power Button (FF) as /class/input/input2
[ 10.853005] power_supply ADP1: No power supply yet
[ 10.860686] power_supply ADP1: power_supply_changed
[ 10.868324] ACPI: AC Adapter [ADP1] (on-line)
[ 10.876178] power_supply ADP1: power_supply_changed_work
[ 10.883922] power_supply ADP1: power_supply_update_gen_leds 1
[ 10.891648] power_supply ADP1: uevent
[ 10.899232] power_supply ADP1: POWER_SUPPLY_NAME=ADP1
[ 10.906753] power_supply ADP1: Static prop TYPE=Mains
[ 10.914334] power_supply ADP1: 1 dynamic props
[ 10.921734] power_supply ADP1: prop ONLINE=1
[ 10.933588] ACPI: Power Button (FF) [PWRF]
[ 10.941150] input: Lid Switch as /class/input/input3
[ 10.956091] ACPI: Lid Switch [LID0]
[ 10.963482] input: Power Button (CM) as /class/input/input4
[ 10.974860] ACPI: Power Button (CM) [PWRB]
[ 10.982686] input: Sleep Button (CM) as /class/input/input5
[ 10.995085] ACPI: Sleep Button (CM) [SLPB]
[ 11.027771] ath9k: 0.1
[ 11.035208] vendor=8086 device=27d2
[ 11.042476] ath9k 0000:03:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[ 11.050023] ath9k 0000:03:00.0: setting latency timer to 64
[ 11.152543] usb 3-4: new high speed USB device using ehci_hcd and address 3
[ 11.187512] wmaster0 (ath9k): not using net_device_ops yet
[ 11.195676] phy0: Selected rate control algorithm 'ath9k_rate_control'
[ 11.211649] wlan0 (ath9k): not using net_device_ops yet
[ 11.219924] Registered led device: ath9k-phy0:radio
[ 11.227793] Registered led device: ath9k-phy0:assoc
[ 11.235647] Registered led device: ath9k-phy0:tx
[ 11.243307] Registered led device: ath9k-phy0:rx
[ 11.250772] phy0: Atheros AR5418 MAC/BB Rev:2 AR5133 RF Rev:81: mem=0xf80a0000, irq=17
[ 11.313472] usb 3-4: configuration #1 chosen from 1 choice
[ 11.326298] vendor=8086 device=2448
[ 11.334713] ohci1394 0000:0c:03.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
[ 11.411183] ohci1394: fw-host0: OHCI-1394 1.1 (PCI): IRQ=[19] MMIO=[4c004000-4c0047ff] Max Packet=[4096] IR/IT contexts=[4/8]
[ 11.462998] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[ 11.472078] HDA Intel 0000:00:1b.0: setting latency timer to 64
[ 11.539547] uvcvideo: Found UVC 1.00 device Built-in iSight (05ac:8501)
[ 11.550724] uvcvideo: UVC non compliance - GET_DEF(PROBE) not supported. Enabling workaround.
[ 11.560167] usbcore: registered new interface driver uvcvideo
[ 11.569001] USB Video Class driver (v0.1.0)
[ 11.603294] hda_codec: STAC922x, Apple subsys_id=106b1e00
[ 11.671305] input: HDA Intel at 0x50400000 irq 22 Line In at Ext Rear Jack as /class/input/input6
[ 11.681726] input: HDA Intel at 0x50400000 irq 22 HP Out at Ext Rear Jack as /class/input/input7
[ 11.852566] usb 4-2: new full speed USB device using uhci_hcd and address 2
[ 11.871648] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[ 12.030317] ieee1394: raw1394: /dev/raw1394 device initialized
[ 12.051951] usb 4-2: configuration #1 chosen from 1 choice
[ 12.070961] generic-usb 0003:05AC:8240.0001: hiddev0: USB HID v1.11 Device [Apple Computer, Inc. IR Receiver] on usb-0000:00:1d.2-2/input0
[ 12.206503] usbcore: registered new interface driver appletouch
[ 12.370068] usb 5-1: new full speed USB device using uhci_hcd and address 2
[ 12.451588] ip_tables: (C) 2000-2006 Netfilter Core Team
[ 12.582841] nf_conntrack version 0.5.0 (16142 buckets, 64568 max)
[ 12.593959] CONFIG_NF_CT_ACCT is deprecated and will be removed soon. Please use
[ 12.604836] nf_conntrack.acct=1 kernel paramater, acct=1 nf_conntrack module option or
[ 12.605016] usb 5-1: configuration #1 chosen from 1 choice
[ 12.626838] sysctl net.netfilter.nf_conntrack_acct=1 to enable it.
[ 12.644064] input: HID 05ac:1000 as /class/input/input8
[ 12.682860] generic-usb 0003:05AC:1000.0002: input: USB HID v1.11 Keyboard [HID 05ac:1000] on usb-0000:00:1d.3-1/input0
[ 12.694579] arp_tables: (C) 2002 David S. Miller
[ 12.709006] input: HID 05ac:1000 as /class/input/input9
[ 12.750343] generic-usb 0003:05AC:1000.0003: input: USB HID v1.11 Mouse [HID 05ac:1000] on usb-0000:00:1d.3-1/input1
[ 12.866038] usbcore: registered new interface driver isight_firmware
[ 12.924559] ipmi message handler version 39.2
[ 12.950653] IPMI Watchdog: driver initialized
[ 13.040240] usb 1-2: new full speed USB device using uhci_hcd and address 2
[ 13.235085] usb 1-2: configuration #1 chosen from 1 choice
[ 13.244148] input: Apple Computer Apple Internal Keyboard / Trackpad as /class/input/input10
[ 13.244811] Adding 2988360k swap on /dev/sda2. Priority:-1 extents:1 across:2988360k
[ 13.283009] apple 0003:05AC:021A.0004: input: USB HID v1.11 Keyboard [Apple Computer Apple Internal Keyboard / Trackpad] on usb-0000:00:1d.0-2/input0
[ 13.287764] appletouch: Geyser mode initialized.
[ 13.287863] input: appletouch as /class/input/input11
[ 13.327862] input: Apple Computer Apple Internal Keyboard / Trackpad as /class/input/input12
[ 13.352760] ieee1394: Host added: ID:BUS[0-00:1023] GUID[0019e3fffe2ad87e]
[ 13.370479] apple 0003:05AC:021A.0005: input: USB HID v1.11 Device [Apple Computer Apple Internal Keyboard / Trackpad] on usb-0000:00:1d.0-2/input2
[ 13.666766] EXT3 FS on sda1, internal journal
[ 16.916641] applesmc: light sensor data length set to 6
[ 17.873780] usb 5-1: usbfs: USBDEVFS_CONTROL failed cmd hid2hci rqt 64 rq 0 len 0 ret -84
[ 17.892461] Bluetooth: Core ver 2.14
[ 17.892616] NET: Registered protocol family 31
[ 17.892618] Bluetooth: HCI device and connection manager initialized
[ 17.892622] Bluetooth: HCI socket layer initialized
[ 17.926884] Bluetooth: L2CAP ver 2.11
[ 17.926888] Bluetooth: L2CAP socket layer initialized
[ 17.947969] Bluetooth: SCO (Voice Link) ver 0.6
[ 17.947972] Bluetooth: SCO socket layer initialized
[ 17.980913] Bluetooth: RFCOMM socket layer initialized
[ 17.980931] Bluetooth: RFCOMM TTY layer initialized
[ 17.980933] Bluetooth: RFCOMM ver 1.10
[ 18.079004] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 18.079007] Bluetooth: BNEP filters: protocol multicast
[ 18.190178] usb 5-1: USB disconnect, address 2
[ 18.490084] usb 5-1: new full speed USB device using uhci_hcd and address 3
[ 18.701079] usb 5-1: configuration #1 chosen from 1 choice
[ 18.916093] Bluetooth: Generic Bluetooth USB driver ver 0.4
[ 18.916459] usbcore: registered new interface driver btusb
[ 20.000179] Clocksource tsc unstable (delta = -448243008 ns)
[ 22.487811] type=1400 audit(1231525406.482:3): avc: denied { sys_module } for pid=2710 comm="wpa_supplicant" capability=16 scontext=system_u:system_r:system_dbusd_t:s0 tcontext=system_u:system_r:system_dbusd_t:s0 tclass=capability
[ 22.501646] type=1300 audit(1231525406.482:3): arch=40000003 syscall=54 success=no exit=-19 a0=9 a1=8933 a2=bfbbcb1c a3=bfbbcb1c items=0 ppid=1 pid=2710 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="wpa_supplicant" exe="/sbin/wpa_supplicant" subj=system_u:system_r:system_dbusd_t:s0 key=(null)
[ 29.509657] vendor=8086 device=27a1
[ 29.509663] pci 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 29.584845] Linux agpgart interface v0.103
[ 29.721020] [drm] Initialized drm 1.1.0 20060810
[ 29.771041] pci 0000:01:00.0: setting latency timer to 64
[ 29.771318] [drm] Initialized radeon 1.29.0 20080528 on minor 0
[ 30.064590] Xorg:2858 map pfn expected mapping type write-combining for 40000000-48000000, got uncached-minus
[ 30.187933] [drm] Setting GART location based on new memory map
[ 30.189408] [drm] Loading R500 Microcode
[ 30.189466] [drm] Num pipes: 1
[ 30.189481] [drm] writeback test succeeded in 1 usecs
[ 31.967659] wlan0: authenticate with AP 00:1e:2a:00:67:f0
[ 31.969627] wlan0: authenticated
[ 31.969632] wlan0: associate with AP 00:1e:2a:00:67:f0
[ 31.972241] wlan0: RX AssocResp from 00:1e:2a:00:67:f0 (capab=0x431 status=0 aid=2)
[ 31.972247] wlan0: associated
[ 36.486446] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[ 36.487812] input: justinmattock’s mouse #1 as /class/input/input13
[ 36.524143] generic-bluetooth 0005:0000:0000.0006: input: BLUETOOTH HID v0.00 Mouse [justinmattock’s mouse #1] on 00:17:F2:B4:BC:F5
[ 74.337168] type=1400 audit(1231525480.391:4): avc: denied { write } for pid=3024 comm="sudo" name="/" dev=tmpfs ino=1430 scontext=a-12:sysadm_r:sysadm_sudo_t:s0-s0:c0.c255 tcontext=system_u:object_r:var_run_t:s0 tclass=dir
[ 74.337192] type=1400 audit(1231525480.391:4): avc: denied { add_name } for pid=3024 comm="sudo" name="sudo" scontext=a-12:sysadm_r:sysadm_sudo_t:s0-s0:c0.c255 tcontext=system_u:object_r:var_run_t:s0 tclass=dir
[ 74.337271] type=1400 audit(1231525480.391:4): avc: denied { create } for pid=3024 comm="sudo" name="sudo" scontext=a-12:sysadm_r:sysadm_sudo_t:s0-s0:c0.c255 tcontext=a-12:object_r:var_run_t:s0 tclass=dir
[ 74.337361] type=1300 audit(1231525480.391:4): arch=40000003 syscall=39 success=yes exit=0 a0=8069558 a1=1c0 a2=8069558 a3=8070ab8 items=0 ppid=3022 pid=3024 auid=4294967295 uid=0 gid=1000 euid=0 suid=0 fsuid=0 egid=1000 sgid=0 fsgid=1000 tty=pts1 ses=4294967295 comm="sudo" exe="/usr/bin/sudo" subj=a-12:sysadm_r:sysadm_sudo_t:s0-s0:c0.c255 key=(null)
[ 74.337427] type=1400 audit(1231525480.391:5): avc: denied { write } for pid=3024 comm="sudo" name="sudo" dev=tmpfs ino=10506 scontext=a-12:sysadm_r:sysadm_sudo_t:s0-s0:c0.c255 tcontext=a-12:object_r:var_run_t:s0 tclass=dir
[ 74.337449] type=1400 audit(1231525480.391:5): avc: denied { add_name } for pid=3024 comm="sudo" name="a-12" scontext=a-12:sysadm_r:sysadm_sudo_t:s0-s0:c0.c255 tcontext=a-12:object_r:var_run_t:s0 tclass=dir
[ 74.337500] type=1300 audit(1231525480.391:5): arch=40000003 syscall=39 success=yes exit=0 a0=8070aa0 a1=1c0 a2=2 a3=8070ab8 items=0 ppid=3022 pid=3024 auid=4294967295 uid=0 gid=1000 euid=0 suid=0 fsuid=0 egid=1000 sgid=0 fsgid=1000 tty=pts1 ses=4294967295 comm="sudo" exe="/usr/bin/sudo" subj=a-12:sysadm_r:sysadm_sudo_t:s0-s0:c0.c255 key=(null)
[ 74.354264] type=1400 audit(1231525480.411:6): avc: denied { search } for pid=3024 comm="sudo" name="/" dev=tmpfs ino=1725 scontext=a-12:sysadm_r:sysadm_sudo_t:s0-s0:c0.c255 tcontext=system_u:object_r:tmpfs_t:s0 tclass=dir
[ 74.354327] type=1300 audit(1231525480.411:6): arch=40000003 syscall=5 success=yes exit=4 a0=805a4aa a1=102 a2=168 a3=0 items=0 ppid=3022 pid=3024 auid=4294967295 uid=0 gid=1000 euid=0 suid=0 fsuid=0 egid=1000 sgid=0 fsgid=1000 tty=pts1 ses=4294967295 comm="sudo" exe="/usr/bin/sudo" subj=a-12:sysadm_r:sysadm_sudo_t:s0-s0:c0.c255 key=(null)
[ 81.087371] type=1400 audit(1231525487.146:7): avc: denied { create } for pid=3024 comm="sudo" name="1" scontext=a-12:sysadm_r:sysadm_sudo_t:s0-s0:c0.c255 tcontext=a-12:object_r:var_run_t:s0 tclass=file
[ 81.087456] type=1400 audit(1231525487.146:7): avc: denied { write } for pid=3024 comm="sudo" name="1" dev=tmpfs ino=10514 scontext=a-12:sysadm_r:sysadm_sudo_t:s0-s0:c0.c255 tcontext=a-12:object_r:var_run_t:s0 tclass=file
[ 81.087530] type=1300 audit(1231525487.146:7): arch=40000003 syscall=5 success=yes exit=4 a0=8070ab8 a1=241 a2=180 a3=8070aa0 items=0 ppid=3022 pid=3024 auid=4294967295 uid=0 gid=1000 euid=0 suid=0 fsuid=0 egid=1000 sgid=0 fsgid=1000 tty=pts1 ses=4294967295 comm="sudo" exe="/usr/bin/sudo" subj=a-12:sysadm_r:sysadm_sudo_t:s0-s0:c0.c255 key=(null)
[ 81.088308] type=1400 audit(1231525487.146:8): avc: denied { write } for pid=3024 comm="sudo" name="log" dev=tmpfs ino=8466 scontext=a-12:sysadm_r:sysadm_sudo_t:s0-s0:c0.c255 tcontext=system_u:object_r:tmpfs_t:s0 tclass=sock_file
[ 81.088412] type=1300 audit(1231525487.146:8): arch=40000003 syscall=102 success=yes exit=0 a0=3 a1=bfef1270 a2=b7fb3ff4 a3=0 items=0 ppid=3022 pid=3024 auid=4294967295 uid=0 gid=1000 euid=0 suid=0 fsuid=0 egid=1000 sgid=0 fsgid=1000 tty=pts1 ses=4294967295 comm="sudo" exe="/usr/bin/sudo" subj=a-12:sysadm_r:sysadm_sudo_t:s0-s0:c0.c255 key=(null)
[ 81.089319] type=1400 audit(1231525487.146:9): avc: denied { execute } for pid=3024 comm="sudo" name="su" dev=sda1 ino=3489809 scontext=a-12:sysadm_r:sysadm_sudo_t:s0-s0:c0.c255 tcontext=system_u:object_r:su_exec_t:s0 tclass=file
[ 81.089369] type=1400 audit(1231525487.146:9): avc: denied { read } for pid=3024 comm="sudo" name="su" dev=sda1 ino=3489809 scontext=a-12:sysadm_r:sysadm_sudo_t:s0-s0:c0.c255 tcontext=system_u:object_r:su_exec_t:s0 tclass=file
[ 81.089563] type=1400 audit(1231525487.146:9): avc: denied { execute_no_trans } for pid=3024 comm="sudo" path="/bin/su" dev=sda1 ino=3489809 scontext=a-12:sysadm_r:sysadm_sudo_t:s0-s0:c0.c255 tcontext=system_u:object_r:su_exec_t:s0 tclass=file
[ 81.169023] type=1300 audit(1231525487.146:9): arch=40000003 syscall=11 success=yes exit=0 a0=8069ff8 a1=bfef19c8 a2=8070830 a3=1 items=0 ppid=3022 pid=3024 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=pts1 ses=4294967295 comm="su" exe="/bin/su" subj=a-12:sysadm_r:sysadm_sudo_t:s0-s0:c0.c255 key=(null)
[ 81.240379] type=1400 audit(1231525487.301:10): avc: denied { compute_av } for pid=3024 comm="su" scontext=a-12:sysadm_r:sysadm_sudo_t:s0-s0:c0.c255 tcontext=system_u:object_r:security_t:s0 tclass=security


Attachments:
dmesg (51.96 kB)

2009-01-11 19:58:23

by Zdenek Kabelac

[permalink] [raw]
Subject: Re: [PATCH] libata: use WARN_ON_ONCE on hot paths

Hi

I've booted 2.6.29-rc1 (c59765042f53a79a7a65585042ff463b69cb248c)

This time I've got only this warning:


input: ThinkPad Extra Buttons as /devices/virtual/input/input5
Driver 'sr' needs updating - please use bus_type methods
------------[ cut here ]------------
WARNING: at drivers/ata/libata-sff.c:1017 ata_sff_hsm_move+0x6b0/0x7f0()
Hardware name: 6464CTO
Modules linked in: sr_mod(+) cdrom thinkpad_acpi rfkill backlight
nvram button led_class battery intel_agp ac uhci_hcd ohci_hcd ehci_hcd
usbcore [last unloaded: scsi_wait_scan]
Pid: 1150, comm: udevd Not tainted 2.6.29-rc1 #6
Call Trace:
<IRQ> [<ffffffff80244d8f>] warn_slowpath+0xaf/0x110
[<ffffffff8026fdc9>] ? __lock_acquire+0x5e9/0x1db0
[<ffffffff80472316>] ? ata_sff_data_xfer32+0xa6/0xe0
[<ffffffff80471b90>] ata_sff_hsm_move+0x6b0/0x7f0
[<ffffffff80472029>] ata_sff_interrupt+0x1a9/0x2b0
[<ffffffff80294ee5>] handle_IRQ_event+0x35/0x70
[<ffffffff8029675c>] handle_edge_irq+0xbc/0x160
[<ffffffff8020ec55>] do_IRQ+0xb5/0x1b0
[<ffffffff8020cf53>] ret_from_intr+0x0/0xf
<EOI> <4>---[ end trace 701c93e34e726fd9 ]---
sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
Uniform CD-ROM driver Revision: 3.20
PM: Adding info for No Bus:sr0
PM: Adding info for No Bus:11:0
sr 3:0:0:0: Attached scsi CD-ROM sr0


Zdenek