|
|
| Next: [PATCH 2.6.30] RDMA/cxgb3: remove modulo math fro.. |
| Author |
Message |
Peter Zijlstra External

Since: Jun 06, 2007 Posts: 205
|
Posted: Fri Feb 13, 2009 8:10 pm Post subject: Re: [patch] generic-ipi: remove kmalloc, cleanup [Login to view extended thread Info.] Archived from groups: linux>kernel (more info?) |
|
|
On Sat, 2009-02-14 at 07:46 +1030, Rusty Russell wrote:
> On Thursday 12 February 2009 22:39:14 Peter Zijlstra wrote:
> > So it put in unconditionally, how about this?
> >
> >
> > --
> > Subject: generic-smp: remove single ipi fallback for smp_call_function_many()
> >
> > In preparation of removing the kmalloc() calls from the generic-ipi code
> > get rid of the single ipi fallback for smp_call_function_many().
> >
> > Because we cannot get around carrying the cpumask in the data -- imagine
> > 2 such calls with different but overlapping masks -- put in a full mask.
>
> OK, if you really want this, please just change it to:
> unsigned long cpumask_bits[BITS_TO_LONGS(CONFIG_NR_CPUS)];
>
> The 'struct cpumask' will be undefined soon when CONFIG_CPUMASK_OFFSTACK=y,
> which will prevent assignment and declaration on stack.
>
> I'd be fascinated to see perf numbers once you kill the kmalloc. Because
> this patch will add num_possible_cpus * NR_CPUS/8 bytes to the kernel which
> is something we're trying to avoid unless necessary.
You're free to make it a pointer and do node affine allocations from an
init section of choice and add a hotplug handler.
But I'm not quite sure how perf is affected by size overhead on
ridiculous configs.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo DeleteThis @vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/ |
|
| Back to top |
|
 |
Rusty Russell External

Since: May 24, 2006 Posts: 528
|
Posted: Mon Feb 16, 2009 3:10 am Post subject: Re: [patch] generic-ipi: remove kmalloc, cleanup [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
On Saturday 14 February 2009 10:18:05 Peter Zijlstra wrote:
> On Sat, 2009-02-14 at 07:46 +1030, Rusty Russell wrote:
> > I'd be fascinated to see perf numbers once you kill the kmalloc. Because
> > this patch will add num_possible_cpus * NR_CPUS/8 bytes to the kernel which
> > is something we're trying to avoid unless necessary.
>
> You're free to make it a pointer and do node affine allocations from an
> init section of choice and add a hotplug handler.
>
> But I'm not quite sure how perf is affected by size overhead on
> ridiculous configs.
No, I meant "can you actually measure the perf win of this patch?". If you
did so, I missed it?
But if this patch is worthwhile, the right way to do this is make it a
cpumask_var_t, and do the alloc_cpumask_var_node() in that init routine.
Thanks,
Rusty.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo RemoveThis @vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/ |
|
| Back to top |
|
 |
Peter Zijlstra External

Since: Jun 06, 2007 Posts: 205
|
Posted: Mon Feb 16, 2009 6:10 am Post subject: Re: [patch] generic-ipi: remove kmalloc, cleanup [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
On Mon, 2009-02-16 at 17:46 +1030, Rusty Russell wrote:
> On Saturday 14 February 2009 10:18:05 Peter Zijlstra wrote:
> > On Sat, 2009-02-14 at 07:46 +1030, Rusty Russell wrote:
> > > I'd be fascinated to see perf numbers once you kill the kmalloc. Because
> > > this patch will add num_possible_cpus * NR_CPUS/8 bytes to the kernel which
> > > is something we're trying to avoid unless necessary.
> >
> > You're free to make it a pointer and do node affine allocations from an
> > init section of choice and add a hotplug handler.
> >
> > But I'm not quite sure how perf is affected by size overhead on
> > ridiculous configs.
>
> No, I meant "can you actually measure the perf win of this patch?". If you
> did so, I missed it?
Over what, the always single-ipi case, or the kmalloc case?
The thing is, we're removing that kmalloc because its somewhat of a wart
on the whole thing.
> But if this patch is worthwhile, the right way to do this is make it a
> cpumask_var_t, and do the alloc_cpumask_var_node() in that init routine.
Right, and installing a hotplug handler and ... *sigh*
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo.DeleteThis@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/ |
|
| Back to top |
|
 |
Thomas Meyer External

Since: Aug 19, 2006 Posts: 44
|
Posted: Thu Feb 19, 2009 3:10 pm Post subject: Re: [Announce] 2.6.29-rc4-rt2 [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
Am Donnerstag, den 12.02.2009, 23:56 +0100 schrieb Thomas Gleixner:
> We are pleased to announce the first update to our new preempt-rt
> series. It fixes the reported bugs and some more.
>
> Download locations:
>
> http://rt.et.redhat.com/download/
> http://www.kernel.org/pub/linux/kernel/projects/rt/
>
> Information on the RT patch can be found at:
>
> http://rt.wiki.kernel.org/index.php/Main_Page
>
> to build the 2.6.29-rc4-rt2 tree, the following patches should be
> applied:
>
> http://www.kernel.org/pub/linux/kernel/v2.6/testing/linux-2.6.29-rc4.tar.bz2
> http://www.kernel.org/pub/linux/kernel/projects/rt/patch-2.6.29-rc4-rt2.bz2
>
> The broken out patches are also available at the same download
> locations.
>
> Enjoy !
>
> Thomas, Ingo
Hi,
Setting CONFIG_PERF_COUNTERS make my build, hang really early. Likely
before ohci1394_dma=early stuff, because firescope doesn't seem to work.
With attached config the system boots up to the point
after /etc/rc.sysinit (this is a fedora 10 system) activates the swap.
Then all I see from upstart/init is "Message from illegal source". And
the system seems to stop the boot process. Strange, isn't it?
So this is what I could capture with attached config, by inserting
"/bin/bash" into /etc/rc.sysinit after swap activation:
[ 0.000000] Initializing cgroup subsys cpuset
[ 0.000000] Linux version 2.6.29-rc4-rt2-tip (thomas@localhost.localdomain) (gcc version 4.3.2 20081105 (Red Hat 4.3.2-7) (GCC) ) #54 SMP PREEMPT RT Thu Feb 19 16:29:15 CET 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: 00000000000ede00 - 0000000000100000 (reserved)
[ 0.000000] BIOS-e820: 0000000000100000 - 000000007f0c8000 (usable)
[ 0.000000] BIOS-e820: 000000007f0c8000 - 000000007f2c9000 (ACPI NVS)
[ 0.000000] BIOS-e820: 000000007f2c9000 - 000000007feb9000 (ACPI data)
[ 0.000000] BIOS-e820: 000000007feb9000 - 000000007feef000 (ACPI NVS)
[ 0.000000] BIOS-e820: 000000007feef000 - 000000007ff00000 (ACPI data)
[ 0.000000] BIOS-e820: 000000007ff00000 - 0000000080000000 (reserved)
[ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (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 = 0x7f0c8 max_arch_pfn = 0x100000
[ 0.000000] PAT not supported by CPU.
[ 0.000000] kernel direct mapping tables up to 377fe000 @ 7000-c000
[ 0.000000] init_ohci1394_dma: initializing OHCI-1394 at 0c:03.0
[ 0.000000] init_ohci1394_dma: finished initializing OHCI DMA
[ 0.000000] RAMDISK: 7ed76000 - 7f0c775d
[ 0.000000] Allocated new RAMDISK: 00dd0000 - 0112175d
[ 0.000000] Move RAMDISK from 000000007ed76000 - 000000007f0c775c to 00dd0000 - 0112175c
[ 0.000000] ACPI: RSDP 000FE020, 0024 (r2 APPLE )
[ 0.000000] ACPI: XSDT 7FEFD120, 0074 (r1 APPLE Apple00 55 1000013)
[ 0.000000] ACPI: FACP 7FEFB000, 00F4 (r3 APPLE Apple00 55 Loki 5F)
[ 0.000000] FADT: X_PM1a_EVT_BLK.bit_width (16) does not match PM1_EVT_LEN (4)
[ 0.000000] ACPI: DSDT 7FEF0000, 48C0 (r1 APPLE MacBookP 10001 INTL 20050309)
[ 0.000000] ACPI: FACS 7FEBB000, 0040
[ 0.000000] ACPI: HPET 7FEFA000, 0038 (r1 APPLE Apple00 1 Loki 5F)
[ 0.000000] ACPI: APIC 7FEF9000, 0068 (r1 APPLE Apple00 1 Loki 5F)
[ 0.000000] ACPI: MCFG 7FEF8000, 003C (r1 APPLE Apple00 1 Loki 5F)
[ 0.000000] ACPI: ASF! 7FEF7000, 009C (r32 APPLE Apple00 1 Loki 5F)
[ 0.000000] ACPI: SBST 7FEF6000, 0030 (r1 APPLE Apple00 1 Loki 5F)
[ 0.000000] ACPI: ECDT 7FEF5000, 0053 (r1 APPLE Apple00 1 Loki 5F)
[ 0.000000] ACPI: SSDT 7FEB6000, 064F (r1 APPLE SataPri 1000 INTL 20050309)
[ 0.000000] ACPI: SSDT 7FEB5000, 069C (r1 APPLE SataSec 1000 INTL 20050309)
[ 0.000000] ACPI: SSDT 7FEEF000, 04DC (r1 APPLE CpuPm 3000 INTL 20050309)
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] 1144MB HIGHMEM available.
[ 0.000000] 887MB LOWMEM available.
[ 0.000000] mapped low ram: 0 - 377fe000
[ 0.000000] low ram: 00000000 - 377fe000
[ 0.000000] bootmap 00008000 - 0000ef00
[ 0.000000] (9 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 [0000400000 - 0000dca8a0] TEXT DATA BSS ==> [0000400000 - 0000dca8a0]
[ 0.000000] #4 [0000dcb000 - 0000dd0000] INIT_PG_TABLE ==> [0000dcb000 - 0000dd0000]
[ 0.000000] #5 [000009fc00 - 0000100000] BIOS reserved ==> [000009fc00 - 0000100000]
[ 0.000000] #6 [0000007000 - 0000008000] PGTABLE ==> [0000007000 - 0000008000]
[ 0.000000] #7 [0000dd0000 - 000112175d] NEW RAMDISK ==> [0000dd0000 - 000112175d]
[ 0.000000] #8 [0000008000 - 000000f000] BOOTMAP ==> [0000008000 - 000000f000]
[ 0.000000] Zone PFN ranges:
[ 0.000000] DMA 0x00000000 -> 0x00001000
[ 0.000000] Normal 0x00001000 -> 0x000377fe
[ 0.000000] HighMem 0x000377fe -> 0x0007f0c8
[ 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 -> 0x0007f0c8
[ 0.000000] On node 0 totalpages: 520295
[ 0.000000] free_area_init_node: node 0, pgdat c0c8fb40, node_mem_map c1122000
[ 0.000000] DMA zone: 52 pages used for memmap
[ 0.000000] DMA zone: 0 pages reserved
[ 0.000000] DMA zone: 3947 pages, LIFO batch:0
[ 0.000000] Normal zone: 2834 pages used for memmap
[ 0.000000] Normal zone: 220396 pages, LIFO batch:31
[ 0.000000] HighMem zone: 3721 pages used for memmap
[ 0.000000] HighMem zone: 289345 pages, LIFO batch:31
[ 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] nr_irqs_gsi: 24
[ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000ee000
[ 0.000000] PM: Registered nosave memory: 00000000000ee000 - 0000000000100000
[ 0.000000] Allocating PCI resources starting at 88000000 (gap: 80000000:60000000)
[ 0.000000] NR_CPUS:4 nr_cpumask_bits:4 nr_cpu_ids:2 nr_node_ids:1
[ 0.000000] PERCPU: Allocating 32768 bytes of per cpu data
[ 0.000000] Real-Time Preemption Support (C) 2004-2007 Ingo Molnar
[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 513688
[ 0.000000] Kernel command line: ro root=/dev/mapper/luks-sda4 panic=45 nomodeset ohci1394_dma=early vga=0x0f07 initrd=initrd-2.6.29-rc4-rt2-tip.img BOOT_IMAGE=vmlinuz-2.6.29-rc4-rt2-tip
[ 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] Preemptible RCU implementation.
[ 0.000000] NR_IRQS:384
[ 0.000000] CPU 0 irqstacks, hard=c0d2d000 soft=c0d29000
[ 0.000000] PID hash table entries: 4096 (order: 12, 16384 bytes)
[ 0.000000] Extended CMOS year: 2000
[ 0.000000] TSC: PIT calibration matches PMTIMER. 1 loops
[ 0.000000] Detected 1830.867 MHz processor.
[ 0.003333] Console: colour VGA+ 80x60
[ 0.003333] console [tty0] enabled
[ 0.003333] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[ 0.003333] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[ 0.003333] Memory: 2039352k/2081568k available (5824k kernel code, 40984k reserved, 3094k data, 420k init, 1172264k highmem)
[ 0.003333] virtual kernel memory layout:
[ 0.003333] fixmap : 0xfff4d000 - 0xfffff000 ( 712 kB)
[ 0.003333] pkmap : 0xff800000 - 0xffc00000 (4096 kB)
[ 0.003333] vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB)
[ 0.003333] lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB)
[ 0.003333] .init : 0xc0cbd000 - 0xc0d26000 ( 420 kB)
[ 0.003333] .data : 0xc09b03b2 - 0xc0cb5bc4 (3094 kB)
[ 0.003333] .text : 0xc0400000 - 0xc09b03b2 (5824 kB)
[ 0.003333] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[ 0.003333] ------------[ cut here ]------------
[ 0.003333] WARNING: at mm/highmem.c:225 kmap_flush_unused+0x2b/0x4b()
[ 0.003333] Hardware name: MacBookPro1,1
[ 0.003333] Modules linked in:
[ 0.003333] Pid: 0, comm: swapper Not tainted 2.6.29-rc4-rt2-tip #54
[ 0.003333] Call Trace:
[ 0.003333] [<c0451e70>] warn_slowpath+0x8a/0xd3
[ 0.003333] [<c043ee71>] ? kmap+0x6c/0x77
[ 0.003333] [<c04ad7f5>] ? get_page_from_freelist+0x389/0x42b
[ 0.003333] [<c04adb8f>] ? __alloc_pages_internal+0xbf/0x3a6
[ 0.003333] [<c04b9b92>] kmap_flush_unused+0x2b/0x4b
[ 0.003333] [<c043b877>] change_page_attr_set_clr+0xe8/0x2ca
[ 0.003333] [<c09aabd9>] ? rt_spin_lock+0x32/0x79
[ 0.003333] [<c04bbeb3>] ? __pte_alloc_kernel+0x50/0x83
[ 0.003333] [<c043bd16>] _set_memory_uc+0x27/0x3a
[ 0.003333] [<c043ac3d>] ioremap_change_attr+0x24/0x47
[ 0.003333] [<c043ae62>] __ioremap_caller+0x202/0x256
[ 0.003333] [<c0cd0b79>] ? hpet_enable+0x2d/0x26c
[ 0.003333] [<c043afe0>] ioremap_nocache+0x1c/0x2f
[ 0.003333] [<c0cd0b79>] ? hpet_enable+0x2d/0x26c
[ 0.003333] [<c0cd0b79>] hpet_enable+0x2d/0x26c
[ 0.003333] [<c0cc34fb>] hpet_time_init+0x16/0x37
[ 0.003333] [<c0cbd997>] start_kernel+0x289/0x345
[ 0.003333] [<c0cbd093>] __init_begin+0x93/0xac
[ 0.003333] ---[ end trace a7919e7f17c0a725 ]---
[ 0.003333] hpet clockevent registered
[ 0.003333] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
[ 0.003333] Calibrating delay loop (skipped), value calculated using timer frequency.. 3663.30 BogoMIPS (lpj=6102890)
[ 0.003756] Security Framework initialized
[ 0.003926] SELinux: Initializing.
[ 0.004114] SELinux: Starting in permissive mode
[ 0.004144] Mount-cache hash table entries: 512
[ 0.006815] Initializing cgroup subsys ns
[ 0.006985] Initializing cgroup subsys cpuacct
[ 0.007155] Initializing cgroup subsys net_cls
[ 0.007345] CPU: L1 I cache: 32K, L1 D cache: 32K
[ 0.007614] CPU: L2 cache: 2048K
[ 0.007780] CPU: Physical Processor ID: 0
[ 0.007946] CPU: Processor Core ID: 0
[ 0.008112] CPU: CPU feature monitor disabled due to lack of CPUID level 0x5
[ 0.008287] Intel machine check architecture supported.
[ 0.008458] Intel machine check reporting enabled on CPU#0.
[ 0.008638] Checking 'hlt' instruction... OK.
[ 0.023772] ACPI: Core revision 20081204
[ 0.037149] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.072745] CPU0: Genuine Intel(R) CPU T2400 @ 1.83GHz stepping 08
[ 0.073332] CPU 1 irqstacks, hard=c0d2e000 soft=c0d2a000
[ 0.073332] Booting processor 1 APIC 0x1 ip 0x6000
[ 0.073332] Initializing CPU#1
[ 0.073332] Calibrating delay using timer specific routine.. 3663.33 BogoMIPS (lpj=6102937)
[ 0.073332] CPU: L1 I cache: 32K, L1 D cache: 32K
[ 0.073332] CPU: L2 cache: 2048K
[ 0.073332] CPU: Physical Processor ID: 0
[ 0.073332] CPU: Processor Core ID: 1
[ 0.073332] CPU: CPU feature monitor disabled due to lack of CPUID level 0x5
[ 0.073332] Intel machine check architecture supported.
[ 0.073332] Intel machine check reporting enabled on CPU#1.
[ 0.163791] CPU1: Genuine Intel(R) CPU T2400 @ 1.83GHz stepping 08
[ 0.165743] checking TSC synchronization [CPU#0 -> CPU#1]: passed.
[ 0.166729] Brought up 2 CPUs
[ 0.166894] Total of 2 processors activated (7326.64 BogoMIPS).
[ 0.167117] CPU0 attaching sched-domain:
[ 0.167120] domain 0: span 0-1 level MC
[ 0.167123] groups: 0 1
[ 0.167129] CPU1 attaching sched-domain:
[ 0.167131] domain 0: span 0-1 level MC
[ 0.167134] groups: 1 0
[ 0.176788] net_namespace: 1108 bytes
[ 0.177292] NET: Registered protocol family 16
[ 0.177292] ACPI: bus type pci registered
[ 0.177292] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255
[ 0.177292] PCI: MCFG area at e0000000 reserved in E820
[ 0.177292] PCI: Using MMCONFIG for extended config space
[ 0.177292] PCI: Using configuration type 1 for base access
[ 0.190078] bio: create slab <bio-0> at 0
[ 0.190879] ACPI: EC: EC description table is found, configuring boot EC
[ 0.193395] ACPI: EC: non-query interrupt received, switching to interrupt mode
[ 0.196875] ACPI: BIOS _OSI(Linux) query ignored
[ 0.200196] ACPI: Interpreter enabled
[ 0.200366] ACPI: (supports S0 S3 S4 S5)
[ 0.200963] ACPI: Using IOAPIC for interrupt routing
[ 0.220171] ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
[ 0.220333] ACPI: EC: driver started in interrupt mode
[ 0.220531] ACPI: No dock devices found.
[ 0.220625] ACPI: PCI Root Bridge [PCI0] (0000:00)
[ 0.220843] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[ 0.220843] pci 0000:00:01.0: PME# disabled
[ 0.220843] pci 0000:00:07.0: reg 10 32bit mmio: [0x90404000-0x90404fff]
[ 0.220843] pci 0000:00:1b.0: reg 10 64bit mmio: [0x90400000-0x90403fff]
[ 0.220843] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 0.220843] pci 0000:00:1b.0: PME# disabled
[ 0.221091] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.221264] pci 0000:00:1c.0: PME# disabled
[ 0.221519] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[ 0.221694] pci 0000:00:1c.1: PME# disabled
[ 0.221948] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[ 0.222122] pci 0000:00:1c.2: PME# disabled
[ 0.222354] pci 0000:00:1d.0: reg 20 io port: [0x40a0-0x40bf]
[ 0.222420] pci 0000:00:1d.1: reg 20 io port: [0x4080-0x409f]
[ 0.222486] pci 0000:00:1d.2: reg 20 io port: [0x4060-0x407f]
[ 0.222552] pci 0000:00:1d.3: reg 20 io port: [0x4040-0x405f]
[ 0.222621] pci 0000:00:1d.7: reg 10 32bit mmio: [0x90405400-0x904057ff]
[ 0.222688] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[ 0.222863] pci 0000:00:1d.7: PME# disabled
[ 0.223206] pci 0000:00:1f.0: quirk: region 0400-047f claimed by ICH6 ACPI/GPIO/TCO
[ 0.223524] pci 0000:00:1f.0: quirk: region 0500-053f claimed by ICH6 GPIO
[ 0.223700] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0680 (mask 000f)
[ 0.223934] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 2 PIO at 1640 (mask 000f)
[ 0.224167] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 3 PIO at 4700 (mask 0003)
[ 0.224402] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 4 PIO at 0300 (mask 001f)
[ 0.224688] pci 0000:00:1f.1: reg 10 io port: [0x40e8-0x40ef]
[ 0.224697] pci 0000:00:1f.1: reg 14 io port: [0x40fc-0x40ff]
[ 0.224705] pci 0000:00:1f.1: reg 18 io port: [0x40e0-0x40e7]
[ 0.224714] pci 0000:00:1f.1: reg 1c io port: [0x40f8-0x40fb]
[ 0.224723] pci 0000:00:1f.1: reg 20 io port: [0x40c0-0x40cf]
[ 0.224780] pci 0000:00:1f.2: reg 10 io port: [0x40d8-0x40df]
[ 0.224789] pci 0000:00:1f.2: reg 14 io port: [0x40f4-0x40f7]
[ 0.224797] pci 0000:00:1f.2: reg 18 io port: [0x40d0-0x40d7]
[ 0.224806] pci 0000:00:1f.2: reg 1c io port: [0x40f0-0x40f3]
[ 0.224815] pci 0000:00:1f.2: reg 20 io port: [0x4020-0x402f]
[ 0.224823] pci 0000:00:1f.2: reg 24 32bit mmio: [0x90405000-0x904053ff]
[ 0.224855] pci 0000:00:1f.2: PME# supported from D3hot
[ 0.225028] pci 0000:00:1f.2: PME# disabled
[ 0.225256] pci 0000:00:1f.3: reg 20 io port: [0xefa0-0xefbf]
[ 0.225345] pci 0000:01:00.0: reg 10 32bit mmio: [0x80000000-0x87ffffff]
[ 0.225357] pci 0000:01:00.0: reg 14 io port: [0x3000-0x30ff]
[ 0.225368] pci 0000:01:00.0: reg 18 32bit mmio: [0x90300000-0x9030ffff]
[ 0.225399] pci 0000:01:00.0: reg 30 32bit mmio: [0xfffe0000-0xffffffff]
[ 0.225442] pci 0000:01:00.0: supports D1 D2
[ 0.225475] pci 0000:01:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
[ 0.225799] pci 0000:00:01.0: bridge io port: [0x3000-0x3fff]
[ 0.225803] pci 0000:00:01.0: bridge 32bit mmio: [0x90300000-0x903fffff]
[ 0.225809] pci 0000:00:01.0: bridge 64bit mmio pref: [0x80000000-0x87ffffff]
[ 0.225891] pci 0000:02:00.0: reg 10 64bit mmio: [0x90200000-0x90203fff]
[ 0.225903] pci 0000:02:00.0: reg 18 io port: [0x2000-0x20ff]
[ 0.225939] pci 0000:02:00.0: reg 30 32bit mmio: [0xfffe0000-0xffffffff]
[ 0.225996] pci 0000:02:00.0: supports D1 D2
[ 0.225998] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.226094] pci 0000:02:00.0: PME# disabled
[ 0.226213] pci 0000:02:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
[ 0.226464] pci 0000:00:1c.0: bridge io port: [0x2000-0x2fff]
[ 0.226470] pci 0000:00:1c.0: bridge 32bit mmio: [0x90200000-0x902fffff]
[ 0.226557] pci 0000:03:00.0: reg 10 64bit mmio: [0x90100000-0x9010ffff]
[ 0.226753] pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
[ 0.226999] pci 0000:00:1c.1: bridge 32bit mmio: [0x90100000-0x901fffff]
[ 0.227066] pci 0000:00:1c.2: bridge io port: [0x1000-0x1fff]
[ 0.227072] pci 0000:00:1c.2: bridge 32bit mmio: [0x8c100000-0x900fffff]
[ 0.227081] pci 0000:00:1c.2: bridge 64bit mmio pref: [0x88000000-0x8bffffff]
[ 0.227133] pci 0000:0c:03.0: reg 10 32bit mmio: [0x8c000000-0x8c000fff]
[ 0.227197] pci 0000:0c:03.0: supports D1 D2
[ 0.227200] pci 0000:0c:03.0: PME# supported from D0 D1 D2 D3hot
[ 0.227292] pci 0000:0c:03.0: PME# disabled
[ 0.227436] pci 0000:00:1e.0: transparent bridge
[ 0.227529] pci 0000:00:1e.0: bridge 32bit mmio: [0x8c000000-0x8c0fffff]
[ 0.227566] pci_bus 0000:00: on NUMA node 0
[ 0.227575] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[ 0.227879] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEGP._PRT]
[ 0.227996] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT]
[ 0.228111] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT]
[ 0.228223] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP03._PRT]
[ 0.228349] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCIB._PRT]
[ 0.240585] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
[ 0.240870] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 *11 12 14 15)
[ 0.241678] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
[ 0.242559] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 *11 12 14 15)
[ 0.243400] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
[ 0.244331] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled.
[ 0.245260] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
[ 0.246137] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 *11 12 14 15)
[ 0.250158] SCSI subsystem initialized
[ 0.250158] libata version 3.00 loaded.
[ 0.250158] usbcore: registered new interface driver usbfs
[ 0.250158] usbcore: registered new interface driver hub
[ 0.250158] usbcore: registered new device driver usb
[ 0.250158] ACPI: WMI: Mapper loaded
[ 0.250158] PCI: Using ACPI for IRQ routing
[ 0.260027] NET: Registered protocol family 23
[ 0.260149] Bluetooth: Core ver 2.14
[ 0.260252] NET: Registered protocol family 31
[ 0.260252] Bluetooth: HCI device and connection manager initialized
[ 0.260252] Bluetooth: HCI socket layer initialized
[ 0.260272] NetLabel: Initializing
[ 0.260355] NetLabel: domain hash size = 128
[ 0.260440] NetLabel: protocols = UNLABELED CIPSOv4
[ 0.260544] NetLabel: unlabeled traffic allowed by default
[ 0.263356] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[ 0.263629] hpet0: 3 comparators, 64-bit 14.318180 MHz counter
[ 0.282737] pnp: PnP ACPI init
[ 0.282832] ACPI: bus type pnp registered
[ 0.285482] pnp 00:08: io resource (0x1640-0x164f) overlaps 0000:00:1c.2 BAR 7 (0x1000-0x1fff), disabling
[ 0.293917] pnp: PnP ACPI: found 10 devices
[ 0.294004] ACPI: ACPI bus type pnp unregistered
[ 0.294102] system 00:01: iomem range 0xe0000000-0xefffffff has been reserved
[ 0.294195] system 00:01: iomem range 0xfed14000-0xfed17fff has been reserved
[ 0.294289] system 00:01: iomem range 0xfed18000-0xfed18fff has been reserved
[ 0.294382] system 00:01: iomem range 0xfed19000-0xfed19fff has been reserved
[ 0.294476] system 00:01: iomem range 0xfed1c000-0xfed1ffff has been reserved
[ 0.294569] system 00:01: iomem range 0xfed20000-0xfed8ffff has been reserved
[ 0.294669] system 00:06: iomem range 0xfed00000-0xfed003ff has been reserved
[ 0.294767] system 00:08: ioport range 0x680-0x6ef has been reserved
[ 0.294860] system 00:08: ioport range 0x800-0x80f has been reserved
[ 0.294952] system 00:08: ioport range 0x810-0x817 has been reserved
[ 0.295044] system 00:08: ioport range 0x400-0x47f has been reserved
[ 0.295137] system 00:08: ioport range 0x500-0x53f has been reserved
[ 0.330478] pci 0000:00:01.0: PCI bridge, secondary bus 0000:01
[ 0.330569] pci 0000:00:01.0: IO window: 0x3000-0x3fff
[ 0.330659] pci 0000:00:01.0: MEM window: 0x90300000-0x903fffff
[ 0.330751] pci 0000:00:01.0: PREFETCH window: 0x00000080000000-0x00000087ffffff
[ 0.330874] pci 0000:00:1c.0: PCI bridge, secondary bus 0000:02
[ 0.330965] pci 0000:00:1c.0: IO window: 0x2000-0x2fff
[ 0.331057] pci 0000:00:1c.0: MEM window: 0x90200000-0x902fffff
[ 0.331150] pci 0000:00:1c.0: PREFETCH window: 0x00000090500000-0x000000905fffff
[ 0.333170] pci 0000:00:1c.1: PCI bridge, secondary bus 0000:03
[ 0.333259] pci 0000:00:1c.1: IO window: disabled
[ 0.333383] pci 0000:00:1c.1: MEM window: 0x90100000-0x901fffff
[ 0.333477] pci 0000:00:1c.1: PREFETCH window: disabled
[ 0.333570] pci 0000:00:1c.2: PCI bridge, secondary bus 0000:04
[ 0.333662] pci 0000:00:1c.2: IO window: 0x1000-0x1fff
[ 0.333755] pci 0000:00:1c.2: MEM window: 0x8c100000-0x900fffff
[ 0.333848] pci 0000:00:1c.2: PREFETCH window: 0x00000088000000-0x0000008bffffff
[ 0.333975] pci 0000:00:1e.0: PCI bridge, secondary bus 0000:0c
[ 0.334066] pci 0000:00:1e.0: IO window: disabled
[ 0.334158] pci 0000:00:1e.0: MEM window: 0x8c000000-0x8c0fffff
[ 0.334251] pci 0000:00:1e.0: PREFETCH window: disabled
[ 0.334355] pci 0000:00:01.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 0.334449] pci 0000:00:01.0: setting latency timer to 64
[ 0.334460] pci 0000:00:1c.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[ 0.334555] pci 0000:00:1c.0: setting latency timer to 64
[ 0.334565] pci 0000:00:1c.1: PCI INT B -> GSI 16 (level, low) -> IRQ 16
[ 0.334660] pci 0000:00:1c.1: setting latency timer to 64
[ 0.334671] pci 0000:00:1c.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[ 0.334765] pci 0000:00:1c.2: setting latency timer to 64
[ 0.334861] pci 0000:00:1e.0: power state changed by ACPI to D0
[ 0.334955] pci 0000:00:1e.0: setting latency timer to 64
[ 0.334961] pci_bus 0000:00: resource 0 io: [0x00-0xffff]
[ 0.334964] pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffff]
[ 0.334967] pci_bus 0000:01: resource 0 io: [0x3000-0x3fff]
[ 0.334970] pci_bus 0000:01: resource 1 mem: [0x90300000-0x903fffff]
[ 0.334973] pci_bus 0000:01: resource 2 mem: [0x80000000-0x87ffffff]
[ 0.334976] pci_bus 0000:01: resource 3 mem: [0x0-0x0]
[ 0.334979] pci_bus 0000:02: resource 0 io: [0x2000-0x2fff]
[ 0.334982] pci_bus 0000:02: resource 1 mem: [0x90200000-0x902fffff]
[ 0.334985] pci_bus 0000:02: resource 2 mem: [0x90500000-0x905fffff]
[ 0.334988] pci_bus 0000:02: resource 3 mem: [0x0-0x0]
[ 0.334991] pci_bus 0000:03: resource 0 mem: [0x0-0x0]
[ 0.334993] pci_bus 0000:03: resource 1 mem: [0x90100000-0x901fffff]
[ 0.334996] pci_bus 0000:03: resource 2 mem: [0x0-0x0]
[ 0.334999] pci_bus 0000:03: resource 3 mem: [0x0-0x0]
[ 0.335002] pci_bus 0000:04: resource 0 io: [0x1000-0x1fff]
[ 0.335005] pci_bus 0000:04: resource 1 mem: [0x8c100000-0x900fffff]
[ 0.335008] pci_bus 0000:04: resource 2 mem: [0x88000000-0x8bffffff]
[ 0.335011] pci_bus 0000:04: resource 3 mem: [0x0-0x0]
[ 0.335013] pci_bus 0000:0c: resource 0 mem: [0x0-0x0]
[ 0.335016] pci_bus 0000:0c: resource 1 mem: [0x8c000000-0x8c0fffff]
[ 0.335019] pci_bus 0000:0c: resource 2 mem: [0x0-0x0]
[ 0.335022] pci_bus 0000:0c: resource 3 io: [0x00-0xffff]
[ 0.335025] pci_bus 0000:0c: resource 4 mem: [0x000000-0xffffffff]
[ 0.335086] NET: Registered protocol family 2
[ 0.393427] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
[ 0.393929] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[ 0.394739] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes)
[ 0.396029] TCP: Hash tables configured (established 131072 bind 65536)
[ 0.396125] TCP reno registered
[ 0.413478] NET: Registered protocol family 1
[ 0.413752] checking if image is initramfs... it is
[ 0.690538] Freeing initrd memory: 3397k freed
[ 0.692982] Microcode Update Driver: v2.00 <tigran.TakeThisOut@aivazian.fsnet.co.uk>, Peter Oruba
[ 0.693700] audit: initializing netlink socket (disabled)
[ 0.693806] type=2000 audit(1235070753.690:1): initialized
[ 0.698609] highmem bounce pool size: 64 pages
[ 0.698699] HugeTLB registered 4 MB page size, pre-allocated 0 pages
[ 0.703396] VFS: Disk quotas dquot_6.5.2
[ 0.703527] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[ 0.704047] NTFS driver 2.1.29 [Flags: R/O].
[ 0.704175] fuse init (API version 7.11)
[ 0.704404] JFS: nTxBlock = 8192, nTxLock = 65536
[ 0.708367] msgmni has been set to 1701
[ 0.708594] SELinux: Registering netfilter hooks
[ 0.708782] alg: No test for cipher_null (cipher_null-generic)
[ 0.708971] alg: No test for digest_null (digest_null-generic)
[ 0.709103] alg: No test for compress_null (compress_null-generic)
[ 0.710693] alg: No test for fcrypt (fcrypt-generic)
[ 0.713278] alg: No test for stdrng (krng)
[ 0.713528] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[ 0.713650] io scheduler noop registered
[ 0.713735] io scheduler anticipatory registered
[ 0.713821] io scheduler deadline registered
[ 0.713928] io scheduler cfq registered (default)
[ 0.714254] pci 0000:01:00.0: Boot video device
[ 0.714420] pcieport-driver 0000:00:01.0: setting latency timer to 64
[ 0.714479] pcieport-driver 0000:00:01.0: irq 24 for MSI/MSI-X
[ 0.714666] pcieport-driver 0000:00:1c.0: setting latency timer to 64
[ 0.714748] pcieport-driver 0000:00:1c.0: irq 25 for MSI/MSI-X
[ 0.715023] pcieport-driver 0000:00:1c.1: setting latency timer to 64
[ 0.715104] pcieport-driver 0000:00:1c.1: irq 26 for MSI/MSI-X
[ 0.715375] pcieport-driver 0000:00:1c.2: setting latency timer to 64
[ 0.715456] pcieport-driver 0000:00:1c.2: irq 27 for MSI/MSI-X
[ 0.715843] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[ 0.716868] pciehp 0000:00:1c.0:pcie02: HPC vendor_id 8086 device_id 27d0 ss_vid 0 ss_did 0
[ 0.717121] pciehp 0000:00:1c.0:pcie02: service driver pciehp loaded
[ 0.717147] pciehp 0000:00:1c.1:pcie02: HPC vendor_id 8086 device_id 27d2 ss_vid 0 ss_did 0
[ 0.717389] pciehp 0000:00:1c.1:pcie02: service driver pciehp loaded
[ 0.717416] pciehp 0000:00:1c.2:pcie02: HPC vendor_id 8086 device_id 27d4 ss_vid 0 ss_did 0
[ 0.717687] pciehp 0000:00:1c.2:pcie02: service driver pciehp loaded
[ 0.717746] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[ 0.717838] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.725297] decode_hpp: Could not get hotplug parameters. Use defaults
[ 0.725442] acpiphp_glue: Slot 3 already registered by another hotplug driver
[ 0.733389] acpiphp_ibm: ibm_acpiphp_init: acpi_walk_namespace failed
[ 0.733480] fakephp: Fake PCI Hot Plug Controller Driver
[ 0.734135] fakephp: pci_hp_register failed with error -16
[ 0.734227] fakephp: pci_hp_register failed with error -16
[ 0.734764] ACPI: AC Adapter [ADP1] (on-line)
[ 0.930439] ACPI: Battery Slot [BAT0] (battery present)
[ 0.930739] input: Power Button (FF) as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[ 0.930861] ACPI: Power Button (FF) [PWRF]
[ 0.931071] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input1
[ 0.931250] ACPI: Lid Switch [LID0]
[ 0.931453] input: Power Button (CM) as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2
[ 0.931576] ACPI: Power Button (CM) [PWRB]
[ 0.931780] input: Sleep Button (CM) as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input3
[ 0.931903] ACPI: Sleep Button (CM) [SLPB]
[ 0.933001] ACPI: SSDT 7FEB3C90, 022A (r1 APPLE Cpu0Ist 3000 INTL 20050309)
[ 0.933630] ACPI: SSDT 7FEB2C10, 02C3 (r1 APPLE Cpu0Cst 3001 INTL 20050309)
[ 0.934333] Monitor-Mwait will be used to enter C-1 state
[ 0.934349] Monitor-Mwait will be used to enter C-2 state
[ 0.934363] Monitor-Mwait will be used to enter C-3 state
[ 0.934449] ACPI: CPU0 (power states: C1[C1] C2[C2] C3[C3])
[ 0.934819] processor ACPI_CPU:00: registered as cooling_device0
[ 0.934913] ACPI: Processor [CPU0] (supports 8 throttling states)
[ 0.935571] ACPI: SSDT 7FEB3F10, 0087 (r1 APPLE Cpu1Ist 3000 INTL 20050309)
[ 0.936172] ACPI: SSDT 7FEB2F10, 0085 (r1 APPLE Cpu1Cst 3000 INTL 20050309)
[ 0.937013] ACPI: CPU1 (power states: C1[C1] C2[C2] C3[C3])
[ 0.937373] processor ACPI_CPU:01: registered as cooling_device1
[ 0.937466] ACPI: Processor [CPU1] (supports 8 throttling states)
[ 0.994749] Non-volatile memory driver v1.3
[ 0.995018] intel_rng: FWH not detected
[ 0.995140] Linux agpgart interface v0.103
[ 0.995389] ipmi message handler version 39.2
[ 0.995480] ipmi device interface
[ 0.995685] IPMI System Interface driver.
[ 1.114316] ipmi_si: Unable to find any System Interface(s)
[ 1.114408] IPMI Watchdog: driver initialized
[ 1.114493] Copyright (C) 2004 MontaVista Software - IPMI Powerdown via sys_reboot.
[ 1.114625] Hangcheck: starting hangcheck timer 0.9.0 (tick is 180 seconds, margin is 60 seconds).
[ 1.114748] Hangcheck: Using get_cycles().
[ 1.114846] tpm_inf_pnp 00:03: Found TPM with ID IFX0101
[ 1.114984] tpm_inf_pnp 00:03: TPM found: config base 0x4e, data base 0x4700, chip version 0x000b, vendor id 0x15d1 (Infineon), product id 0x000b (SLB 9635 TT 1.2)
[ 1.115397] [drm] Initialized drm 1.1.0 20060810
[ 1.116200] pci 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 1.116294] pci 0000:01:00.0: setting latency timer to 64
[ 1.116452] [drm] Initialized radeon 1.29.0 20080528 on minor 0
[ 1.119306] brd: module loaded
[ 1.120676] loop: module loaded
[ 1.120922] sky2 driver version 1.22
[ 1.121037] sky2 0000:02:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 1.121136] sky2 0000:02:00.0: setting latency timer to 64
[ 1.121162] sky2 0000:02:00.0: Yukon-2 EC chip revision 2
[ 1.153463] sky2 0000:02:00.0: Marvell Yukon 88E8053 Gigabit Ethernet Controller
[ 1.153583] Part Number: Yukon 88E8053
[ 1.153585] Engineering Level: Rev. 2.2
[ 1.153587] Manufacturer: Marvell
[ 1.153661] sky2 0000:02:00.0: irq 28 for MSI/MSI-X
[ 1.154147] sky2 eth0: addr 00:16:cb:8c:b2:65
[ 1.154332] PPP generic driver version 2.4.2
[ 1.154575] PPP Deflate Compression module registered
[ 1.155851] PPP MPPE Compression module registered
[ 1.155940] NET: Registered protocol family 24
[ 1.156037] PPPoL2TP kernel driver, V1.0
[ 1.157239] tun: Universal TUN/TAP device driver, 1.6
[ 1.157327] tun: (C) 1999-2004 Max Krasnyansky <maxk.TakeThisOut@qualcomm.com>
[ 1.157561] usbcore: registered new interface driver cdc_ether
[ 1.157714] usbcore: registered new interface driver rndis_host
[ 1.157872] usbcore: registered new interface driver rndis_wlan
[ 1.157987] console [netcon0] enabled
[ 1.158071] netconsole: network logging started
[ 1.158157] Linux video capture interface: v2.00
[ 1.158403] input: Macintosh mouse button emulation as /devices/virtual/input/input4
[ 1.158825] Driver 'sd' needs updating - please use bus_type methods
[ 1.158973] Driver 'sr' needs updating - please use bus_type methods
[ 1.159175] SCSI Media Changer driver v0.25
[ 1.159317] Driver 'ch' needs updating - please use bus_type methods
[ 1.159564] ata_piix 0000:00:1f.1: version 2.12
[ 1.159651] ata_piix 0000:00:1f.1: power state changed by ACPI to D0
[ 1.159748] ata_piix 0000:00:1f.1: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[ 1.159884] ata_piix 0000:00:1f.1: setting latency timer to 64
[ 1.160061] scsi0 : ata_piix
[ 1.162244] scsi1 : ata_piix
[ 1.163163] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0x40c0 irq 14
[ 1.163257] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x40c8 irq 15
[ 1.323941] ata1.00: ATAPI: MATSHITADVD-R UJ-857, HAEA, max UDMA/66
[ 1.337231] ata1.00: configured for UDMA/66
[ 1.339235] scsi 0:0:0:0: CD-ROM MATSHITA DVD-R UJ-857 HAEA PQ: 0 ANSI: 5
[ 1.341093] sr0: scsi3-mmc drive: 24x/24x writer cd/rw xa/form2 cdda tray
[ 1.341186] Uniform CD-ROM driver Revision: 3.20
[ 1.341532] sr 0:0:0:0: Attached scsi CD-ROM sr0
[ 1.341701] sr 0:0:0:0: Attached scsi generic sg0 type 5
[ 1.504627] ata_piix 0000:00:1f.2: enabling device (0005 -> 0007)
[ 1.504725] ata_piix 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[ 1.504821] ata_piix 0000:00:1f.2: MAP [ P0 P2 -- -- ]
[ 1.656694] ata_piix 0000:00:1f.2: setting latency timer to 64
[ 1.656805] scsi2 : ata_piix
[ 1.657075] scsi3 : ata_piix
[ 1.658636] ata3: SATA max UDMA/133 cmd 0x40d8 ctl 0x40f4 bmdma 0x4020 irq 19
[ 1.658731] ata4: SATA max UDMA/133 cmd 0x40d0 ctl 0x40f0 bmdma 0x4028 irq 19
[ 2.157997] ata3.01: ATA-7: WDC WD1600BEVS-00RST0, 04.01G04, max UDMA/133
[ 2.158091] ata3.01: 312581808 sectors, multi 0: LBA48 NCQ (depth 0/32)
[ 2.210562] ata3.01: configured for UDMA/133
[ 2.223429] scsi 2:0:1:0: Direct-Access ATA WDC WD1600BEVS-0 04.0 PQ: 0 ANSI: 5
[ 2.223834] sd 2:0:1:0: [sda] 312581808 512-byte hardware sectors: (160 GB/149 GiB)
[ 2.223975] sd 2:0:1:0: [sda] Write Protect is off
[ 2.224063] sd 2:0:1:0: [sda] Mode Sense: 00 3a 00 00
[ 2.224102] sd 2:0:1:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 2.224303] sd 2:0:1:0: [sda] 312581808 512-byte hardware sectors: (160 GB/149 GiB)
[ 2.224443] sd 2:0:1:0: [sda] Write Protect is off
[ 2.224531] sd 2:0:1:0: [sda] Mode Sense: 00 3a 00 00
[ 2.224569] sd 2:0:1:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 2.224694] sda: sda1 sda2 sda3 sda4 sda5
[ 2.272393] sd 2:0:1:0: [sda] Attached SCSI disk
[ 2.272641] sd 2:0:1:0: Attached scsi generic sg1 type 0
[ 2.434835] firewire_ohci 0000:0c:03.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
[ 2.500019] firewire_ohci: Added fw-ohci device 0000:0c:03.0, OHCI version 1.0
[ 2.500420] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 2.500533] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[ 2.500637] ehci_hcd 0000:00:1d.7: setting latency timer to 64
[ 2.500642] ehci_hcd 0000:00:1d.7: EHCI Host Controller
[ 2.500923] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1
[ 2.504950] ehci_hcd 0000:00:1d.7: debug port 1
[ 2.505042] ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported
[ 2.505101] ehci_hcd 0000:00:1d.7: irq 23, io mem 0x90405400
[ 2.516683] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[ 2.516805] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[ 2.516898] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.517017] usb usb1: Product: EHCI Host Controller
[ 2.517104] usb usb1: Manufacturer: Linux 2.6.29-rc4-rt2-tip ehci_hcd
[ 2.517195] usb usb1: SerialNumber: 0000:00:1d.7
[ 2.517413] usb usb1: configuration #1 chosen from 1 choice
[ 2.517600] hub 1-0:1.0: USB hub found
[ 2.517693] hub 1-0:1.0: 8 ports detected
[ 2.518169] uhci_hcd: USB Universal Host Controller Interface driver
[ 2.518293] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[ 2.518391] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[ 2.518396] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[ 2.518668] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[ 2.518818] uhci_hcd 0000:00:1d.0: irq 23, io base 0x000040a0
[ 2.518949] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[ 2.519042] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.519161] usb usb2: Product: UHCI Host Controller
[ 2.519249] usb usb2: Manufacturer: Linux 2.6.29-rc4-rt2-tip uhci_hcd
[ 2.519341] usb usb2: SerialNumber: 0000:00:1d.0
[ 2.519550] usb usb2: configuration #1 chosen from 1 choice
[ 2.519743] hub 2-0:1.0: USB hub found
[ 2.519834] hub 2-0:1.0: 2 ports detected
[ 2.520153] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[ 2.520252] uhci_hcd 0000:00:1d.1: setting latency timer to 64
[ 2.520256] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[ 2.520528] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
[ 2.520680] uhci_hcd 0000:00:1d.1: irq 19, io base 0x00004080
[ 2.520816] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[ 2.520909] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.521030] usb usb3: Product: UHCI Host Controller
[ 2.521117] usb usb3: Manufacturer: Linux 2.6.29-rc4-rt2-tip uhci_hcd
[ 2.521208] usb usb3: SerialNumber: 0000:00:1d.1
[ 2.521413] usb usb3: configuration #1 chosen from 1 choice
[ 2.521600] hub 3-0:1.0: USB hub found
[ 2.521694] hub 3-0:1.0: 2 ports detected
[ 2.522005] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[ 2.522104] uhci_hcd 0000:00:1d.2: setting latency timer to 64
[ 2.522108] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[ 2.522384] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
[ 2.522578] uhci_hcd 0000:00:1d.2: irq 18, io base 0x00004060
[ 2.522708] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[ 2.522800] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.522920] usb usb4: Product: UHCI Host Controller
[ 2.523006] usb usb4: Manufacturer: Linux 2.6.29-rc4-rt2-tip uhci_hcd
[ 2.523097] usb usb4: SerialNumber: 0000:00:1d.2
[ 2.523296] usb usb4: configuration #1 chosen from 1 choice
[ 2.523486] hub 4-0:1.0: USB hub found
[ 2.523578] hub 4-0:1.0: 2 ports detected
[ 2.523859] uhci_hcd 0000:00:1d.3: PCI INT D -> GSI 16 (level, low) -> IRQ 16
[ 2.523956] uhci_hcd 0000:00:1d.3: setting latency timer to 64
[ 2.523960] uhci_hcd 0000:00:1d.3: UHCI Host Controller
[ 2.524212] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
[ 2.524406] uhci_hcd 0000:00:1d.3: irq 16, io base 0x00004040
[ 2.524543] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
[ 2.524635] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.524754] usb usb5: Product: UHCI Host Controller
[ 2.524841] usb usb5: Manufacturer: Linux 2.6.29-rc4-rt2-tip uhci_hcd
[ 2.524932] usb usb5: SerialNumber: 0000:00:1d.3
[ 2.525126] usb usb5: configuration #1 chosen from 1 choice
[ 2.525293] hub 5-0:1.0: USB hub found
[ 2.525384] hub 5-0:1.0: 2 ports detected
[ 2.525796] usbcore: registered new interface driver cdc_acm
[ 2.525888] cdc_acm: v0.26:USB Abstract Control Model driver for USB modems and ISDN adapters
[ 2.526075] usbcore: registered new interface driver usblp
[ 2.526165] Initializing USB Mass Storage driver...
[ 2.526344] usbcore: registered new interface driver usb-storage
[ 2.526435] USB Mass Storage support registered.
[ 2.526621] usbcore: registered new interface driver appledisplay
[ 2.526994] PNP: No PS/2 controller found. Probing ports directly.
[ 2.527968] i8042.c: No controller found.
[ 2.540928] mice: PS/2 mouse device common for all mice
[ 2.616918] usbcore: registered new interface driver appletouch
[ 2.617086] usbcore: registered new interface driver bcm5974
[ 2.617294] input: PC Speaker as /devices/platform/pcspkr/input/input5
[ 2.644324] I2O subsystem v1.325
[ 2.644408] i2o: max drivers = 8
[ 2.650182] I2O Configuration OSM v1.323
[ 2.650406] I2O Bus Adapter OSM v1.317
[ 2.650562] I2O Block Device OSM v1.325
[ 2.653445] I2O SCSI Peripheral OSM v1.316
[ 2.653594] I2O ProcFS OSM v1.316
[ 2.653780] rtc_cmos 00:09: RTC can wake from S4
[ 2.653960] rtc_cmos 00:09: rtc core: registered rtc_cmos as rtc0
[ 2.654116] rtc0: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[ 2.654271] i2c /dev entries driver
[ 2.654504] i801_smbus 0000:00:1f.3: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[ 2.654626] ACPI: I/O resource 0000:00:1f.3 [0xefa0-0xefbf] conflicts with ACPI region SMBI [0xefa0-0xefaf]
[ 2.654751] ACPI: Device needs an ACPI driver
[ 2.655221] applesmc: Apple MacBook Pro detected:
[ 2.655308] applesmc: - Model with accelerometer
[ 2.657299] applesmc: - Model with light sensors and backlight
[ 2.657389] applesmc: - Model with 12 temperature sensors
[ 2.658238] applesmc: device has already been initialized (0xe0, 0x00).
[ 2.658241] applesmc: device successfully initialized.
[ 2.659135] applesmc: 2 fans found.
[ 2.660831] input: applesmc as /devices/platform/applesmc.768/input/input6
[ 2.690200] Registered led device: smc::kbd_backlight
[ 2.690363] applesmc: driver successfully loaded.
[ 2.690829] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.04
[ 2.691094] iTCO_wdt: Found a ICH7-M or ICH7-U TCO device (Version=2, TCOBASE=0x0460)
[ 2.691310] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[ 2.691449] device-mapper: uevent: version 1.0.3
[ 2.691657] device-mapper: ioctl: 4.14.0-ioctl (2008-04-23) initialised: dm-devel.TakeThisOut@redhat.com
[ 2.700091] device-mapper: multipath: version 1.0.5 loaded
[ 2.700181] device-mapper: multipath round-robin: version 1.0.0 loaded
[ 2.700346] Bluetooth: Generic Bluetooth USB driver ver 0.4
[ 2.700511] usbcore: registered new interface driver btusb
[ 2.703900] cpuidle: using governor ladder
[ 2.704992] cpuidle: using governor menu
[ 2.705263] Marking TSC unstable due to TSC halts in idle
[ 2.706596] usbcore: registered new interface driver usbhid
[ 2.706710] usbhid: v2.6:USB HID core driver
[ 2.707034] Advanced Linux Sound Architecture Driver Version 1.0.18a.
[ 2.708678] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[ 2.708884] HDA Intel 0000:00:1b.0: setting latency timer to 64
[ 2.738942] hda_codec: STAC922x, Apple subsys_id=106b0200
[ 2.774442] input: HDA Intel at 0x90400000 irq 22 Line In at Ext Rear Jack as /devices/pci0000:00/0000:00:1b.0/input/input7
[ 2.793824] input: HDA Intel at 0x90400000 irq 22 HP Out at Ext Rear Jack as /devices/pci0000:00/0000:00:1b.0/input/input8
[ 2.801749] ALSA device list:
[ 2.801834] #0: Dummy 1
[ 2.801914] #1: Virtual MIDI Card 1
[ 2.801999] #2: HDA Intel at 0x90400000 irq 22
[ 2.802226] oprofile: using NMI interrupt.
[ 2.802350] GACT probability on
[ 2.802434] Mirror/redirect action on
[ 2.802518] Simple TC action Loaded
[ 2.803038] netem: version 1.2
[ 2.803122] u32 classifier
[ 2.803203] Performance counters on
[ 2.803286] input device check on
[ 2.803392] Actions configured
[ 2.804015] IPv4 over IPv4 tunneling driver
[ 2.804578] GRE over IPv4 tunneling driver
[ 2.805188] TCP cubic registered
[ 2.805272] Initializing XFRM netlink socket
[ 2.805428] NET: Registered protocol family 10
[ 2.806279] lo: Disabled Privacy Extensions
[ 2.809108] tunl0: Disabled Privacy Extensions
[ 2.810486] NET: Registered protocol family 17
[ 2.810579] NET: Registered protocol family 15
[ 2.810747] Bridge firewalling registered
[ 2.810863] irlan0 (): not using net_device_ops yet
[ 2.812234] IrCOMM protocol (Dag Brattli)
[ 2.814862] Bluetooth: L2CAP ver 2.11
[ 2.814947] Bluetooth: L2CAP socket layer initialized
[ 2.815036] Bluetooth: SCO (Voice Link) ver 0.6
[ 2.815122] Bluetooth: SCO socket layer initialized
[ 2.815268] Bluetooth: RFCOMM socket layer initialized
[ 2.815362] Bluetooth: RFCOMM TTY layer initialized
[ 2.815450] Bluetooth: RFCOMM ver 1.10
[ 2.815534] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 2.815623] Bluetooth: BNEP filters: protocol multicast
[ 2.815712] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[ 2.815883] 802.1Q VLAN Support v1.8 Ben Greear <greearb.TakeThisOut@candelatech.com>
[ 2.815976] All bugs added by David S. Miller <davem.TakeThisOut@redhat.com>
[ 2.820471] CCID: Activated CCID 2 (TCP-like)
[ 2.820588] CCID: Activated CCID 3 (TCP-Friendly Rate Control)
[ 2.830366] SCTP: Hash tables configured (established 52428 bind 65536)
[ 2.847663] lib80211: common routines for IEEE802.11 drivers
[ 2.847773] lib80211_crypt: registered algorithm 'NULL'
[ 2.847779] TIPC: Activated (version 1.6.4 compiled Feb 19 2009 16:57:0
[ 2.848303] NET: Registered protocol family 30
[ 2.848392] TIPC: Started in single node mode
[ 2.848479] Using IPI No-Shortcut mode
[ 2.852277] registered taskstats version 1
[ 2.852575] rtc_cmos 00:09: setting system clock to 2009-02-19 19:12:36 UTC (1235070756)
[ 2.852698] BIOS EDD facility v0.16 2004-Jun-25, 2 devices found
[ 2.853227] Freeing unused kernel memory: 420k freed
[ 2.853406] Write protecting the kernel text: 5828k
[ 2.853607] Write protecting the kernel read-only data: 2500k
[ 2.930078] usb 1-3: new high speed USB device using ehci_hcd and address 3
[ 3.000385] firewire_core: created device fw0: GUID 0016cbfffe4c8a54, S400
[ 3.056174] usb 1-3: New USB device found, idVendor=090c, idProduct=1000
[ 3.056288] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 3.056402] usb 1-3: Product: Flash Voyager
[ 3.056503] usb 1-3: Manufacturer: Corsair
[ 3.056602] usb 1-3: SerialNumber: A400000000028713
[ 3.056880] usb 1-3: configuration #1 chosen from 1 choice
[ 3.057694] scsi4 : SCSI emulation for USB Mass Storage devices
[ 3.058040] usb-storage: device found at 3
[ 3.058043] usb-storage: waiting for device to settle before scanning
[ 3.163409] usb 1-4: new high speed USB device using ehci_hcd and address 4
[ 3.287174] usb 1-4: New USB device found, idVendor=05ac, idProduct=8300
[ 3.287289] usb 1-4: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 3.287643] usb 1-4: configuration #1 chosen from 1 choice
[ 3.726729] usb 2-2: new full speed USB device using uhci_hcd and address 2
[ 3.905036] usb 2-2: New USB device found, idVendor=05ac, idProduct=0218
[ 3.905180] usb 2-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 3.905293] usb 2-2: Product: Apple Internal Keyboard / Trackpad
[ 3.905410] usb 2-2: Manufacturer: Apple Computer
[ 3.905599] usb 2-2: configuration #1 chosen from 1 choice
[ 3.913573] input: Apple Computer Apple Internal Keyboard / Trackpad as /devices/pci0000:00/0000:00:1d.0/usb2/2-2/2-2:1.0/input/input9
[ 3.934384] apple 0003:05AC:0218.0001: input,hidraw0: USB HID v1.11 Keyboard [Apple Computer Apple Internal Keyboard / Trackpad] on usb-0000:00:1d.0-2/input0
[ 3.939034] appletouch: Geyser mode initialized.
[ 3.939256] input: appletouch as /devices/pci0000:00/0000:00:1d.0/usb2/2-2/2-2:1.1/input/input10
[ 3.970172] input: Apple Computer Apple Internal Keyboard / Trackpad as /devices/pci0000:00/0000:00:1d.0/usb2/2-2/2-2:1.2/input/input11
[ 3.991080] apple 0003:05AC:0218.0002: input,hidraw1: USB HID v1.11 Device [Apple Computer Apple Internal Keyboard / Trackpad] on usb-0000:00:1d.0-2/input2
[ 4.000097] Clocksource tsc unstable (delta = -277709176 ns)
[ 4.216788] usb 4-2: new full speed USB device using uhci_hcd and address 2
[ 4.388806] usb 4-2: New USB device found, idVendor=05ac, idProduct=8240
[ 4.388920] usb 4-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 4.389033] usb 4-2: Product: IR Receiver
[ 4.389132] usb 4-2: Manufacturer: Apple Computer, Inc.
[ 4.389304] usb 4-2: configuration #1 chosen from 1 choice
[ 4.396877] generic-usb 0003:05AC:8240.0003: hidraw2: USB HID v1.11 Device [Apple Computer, Inc. IR Receiver] on usb-0000:00:1d.2-2/input0
[ 4.623456] usb 5-1: new full speed USB device using uhci_hcd and address 2
[ 4.793665] usb 5-1: New USB device found, idVendor=05ac, idProduct=1000
[ 4.793778] usb 5-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 4.793950] usb 5-1: configuration #1 chosen from 1 choice
[ 4.814124] input: HID 05ac:1000 as /devices/pci0000:00/0000:00:1d.3/usb5/5-1/5-1:1.0/input/input12
[ 4.834332] generic-usb 0003:05AC:1000.0004: input,hidraw3: USB HID v1.11 Keyboard [HID 05ac:1000] on usb-0000:00:1d.3-1/input0
[ 4.850127] input: HID 05ac:1000 as /devices/pci0000:00/0000:00:1d.3/usb5/5-1/5-1:1.1/input/input13
[ 4.871070] generic-usb 0003:05AC:1000.0005: input,hidraw4: USB HID v1.11 Mouse [HID 05ac:1000] on usb-0000:00:1d.3-1/input1
[ 8.057172] usb-storage: device scan complete
[ 8.058235] scsi 4:0:0:0: Direct-Access Corsair Flash Voyager 1100 PQ: 0 ANSI: 0 CCS
[ 8.059814] sd 4:0:0:0: [sdb] 7929856 512-byte hardware sectors: (4.06 GB/3.78 GiB)
[ 8.060721] sd 4:0:0:0: [sdb] Write Protect is off
[ 8.060833] sd 4:0:0:0: [sdb] Mode Sense: 43 00 00 00
[ 8.060836] sd 4:0:0:0: [sdb] Assuming drive cache: write through
[ 8.063853] sd 4:0:0:0: [sdb] 7929856 512-byte hardware sectors: (4.06 GB/3.78 GiB)
[ 8.064826] sd 4:0:0:0: [sdb] Write Protect is off
[ 8.064932] sd 4:0:0:0: [sdb] Mode Sense: 43 00 00 00
[ 8.064937] sd 4:0:0:0: [sdb] Assuming drive cache: write through
[ 8.065050] sdb: sdb1
[ 8.066233] sd 4:0:0:0: [sdb] Attached SCSI removable disk
[ 8.066398] sd 4:0:0:0: Attached scsi generic sg2 type 0
[ 13.169831] BUG: sleeping function called from invalid context at arch/x86/mm/highmem_32.c:8
[ 13.169957] in_atomic(): 0, irqs_disabled(): 1, pid: 1030, name: cryptsetup
[ 13.170075] Pid: 1030, comm: cryptsetup Tainted: G W 2.6.29-rc4-rt2-tip #54
[ 13.170196] Call Trace:
[ 13.170284] [<c0444cdd>] __might_sleep+0xda/0xf0
[ 13.170374] [<c043ee55>] kmap+0x50/0x77
[ 13.170460] [<c043db3b>] gup_pte_range+0x4b/0xe9
[ 13.170548] [<c043dcb7>] get_user_pages_fast+0xde/0x17f
[ 13.170639] [<c04f75f1>] dio_get_page+0x59/0x124
[ 13.170729] [<c04f8258>] __blockdev_direct_IO+0x4ad/0xabe
[ 13.170819] [<c04f5cdb>] ? blkdev_get_blocks+0x0/0x11c
[ 13.170837] [<c04f730a>] blkdev_direct_IO+0x3f/0x55
[ 13.170837] [<c04f5cdb>] ? blkdev_get_blocks+0x0/0x11c
[ 13.170837] [<c04a977a>] generic_file_aio_read+0xfd/0x587
[ 13.170837] [<c05ff445>] ? avc_has_perm+0x56/0x71
[ 13.170837] [<c04d0fcf>] do_sync_read+0xc6/0x118
[ 13.170837] [<c0467414>] ? autoremove_wake_function+0x0/0x54
[ 13.170837] [<c06046d6>] ? selinux_file_permission+0x119/0x132
[ 13.170837] [<c05fa4dc>] ? security_file_permission+0x1e/0x31
[ 13.170837] [<c04d0f09>] ? do_sync_read+0x0/0x118
[ 13.170837] [<c04d1b61>] vfs_read+0x99/0x14e
[ 13.170837] [<c04d1cf7>] sys_read+0x50/0x87
[ 13.170837] [<c0420086>] sysenter_do_call+0x12/0x21
[ 14.796047] BUG: sleeping function called from invalid context at arch/x86/mm/highmem_32.c:8
[ 14.796177] in_atomic(): 0, irqs_disabled(): 1, pid: 1045, name: cryptsetup
[ 14.796273] Pid: 1045, comm: cryptsetup Tainted: G W 2.6.29-rc4-rt2-tip #54
[ 14.796394] Call Trace:
[ 14.796485] [<c0444cdd>] __might_sleep+0xda/0xf0
[ 14.796573] [<c043ee55>] kmap+0x50/0x77
[ 14.796660] [<c043db3b>] gup_pte_range+0x4b/0xe9
[ 14.796671] [<c043dcb7>] get_user_pages_fast+0xde/0x17f
[ 14.796671] [<c04f75f1>] dio_get_page+0x59/0x124
[ 14.796671] [<c04f8258>] __blockdev_direct_IO+0x4ad/0xabe
[ 14.796671] [<c04f5cdb>] ? blkdev_get_blocks+0x0/0x11c
[ 14.796671] [<c04f730a>] blkdev_direct_IO+0x3f/0x55
[ 14.796671] [<c04f5cdb>] ? blkdev_get_blocks+0x0/0x11c
[ 14.796671] [<c04a977a>] generic_file_aio_read+0xfd/0x587
[ 14.796671] [<c05ff445>] ? avc_has_perm+0x56/0x71
[ 14.796671] [<c04d0fcf>] do_sync_read+0xc6/0x118
[ 14.796671] [<c0467414>] ? autoremove_wake_function+0x0/0x54
[ 14.796671] [<c06046d6>] ? selinux_file_permission+0x119/0x132
[ 14.796671] [<c05fa4dc>] ? security_file_permission+0x1e/0x31
[ 14.796671] [<c04d0f09>] ? do_sync_read+0x0/0x118
[ 14.796671] [<c04d1b61>] vfs_read+0x99/0x14e
[ 14.796671] [<c04d1cf7>] sys_read+0x50/0x87
[ 14.796671] [<c0420086>] sysenter_do_call+0x12/0x21
[ 17.837434] EXT3-fs: mounted filesystem with ordered data mode.
[ 17.837844] kjournald starting. Commit interval 5 seconds
[ 17.966524] SELinux: Disabled at runtime.
[ 17.966629] SELinux: Unregistering netfilter hooks
[ 18.056792] type=1404 audit(1235070771.704:2): selinux=0 auid=4294967295 ses=4294967295
[ 21.276574] udevd version 127 started
[ 21.795981] BUG: sleeping function called from invalid context at arch/x86/mm/highmem_32.c:8
[ 21.795986] in_atomic(): 0, irqs_disabled(): 1, pid: 1374, name: cdrom_id
[ 21.795990] Pid: 1374, comm: cdrom_id Tainted: G W 2.6.29-rc4-rt2-tip #54
[ 21.795993] Call Trace:
[ 21.796003] [<c0444cdd>] __might_sleep+0xda/0xf0
[ 21.796007] [<c043ee55>] kmap+0x50/0x77
[ 21.796011] [<c043db3b>] gup_pte_range+0x4b/0xe9
[ 21.796015] [<c043dcb7>] get_user_pages_fast+0xde/0x17f
[ 21.796020] [<c04f5505>] bio_map_user_iov+0x120/0x220
[ 21.796024] [<c04f5631>] bio_map_user+0x2c/0x42
[ 21.796029] [<c064fe04>] blk_rq_map_user+0xe2/0x1f2
[ 21.796034] [<c045a6ad>] ? capable+0x2d/0x5a
[ 21.796039] [<c065344a>] sg_io+0x1d5/0x32d
[ 21.796045] [<c04cd348>] ? kfree+0x84/0x9a
[ 21.796049] [<c0653adb>] scsi_cmd_ioctl+0x24f/0x4a4
[ 21.796054] [<c078f6ed>] ? cdrom_open+0x84b/0x8c3
[ 21.796058] [<c04f52a1>] ? bio_add_page+0x38/0x50
[ 21.796062] [<c078e185>] cdrom_ioctl+0x3e/0xd5b
[ 21.796066] [<c0444e4e>] ? update_curr+0x9c/0x1b7
[ 21.796072] [<c09aabd9>] ? rt_spin_lock+0x32/0x79
[ 21.796077] [<c04b94fe>] ? page_address+0x95/0xcb
[ 21.796082] [<c0765f9e>] sr_block_ioctl+0x4f/0x94
[ 21.796086] [<c065107d>] __blkdev_driver_ioctl+0x65/0x88
[ 21.796090] [<c0651b12>] blkdev_ioctl+0xa2b/0xa65
[ 21.796095] [<c065bafc>] ? kobject_get+0x20/0x37
[ 21.796099] [<c0652230>] ? get_disk+0x7e/0xa8
[ 21.796103] [<c09aabd9>] ? rt_spin_lock+0x32/0x79
[ 21.796107] [<c04b94fe>] ? page_address+0x95/0xcb
[ 21.796111] [<c04b9b51>] ? kmap_high+0x3f9/0x40f
[ 21.796115] [<c0478126>] ? rt_up+0x3a/0x61
[ 21.796119] [<c09ab92d>] ? unlock_kernel+0x34/0x47
[ 21.796123] [<c04a7eb7>] ? find_get_page+0x84/0xab
[ 21.796127] [<c044aad5>] ? __wake_up+0x3b/0x56
[ 21.796131] [<c04b95db>] ? kunmap_high+0xa7/0xbb
[ 21.796135] [<c04f6137>] block_ioctl+0x3f/0x58
[ 21.796139] [<c04f60f8>] ? block_ioctl+0x0/0x58
[ 21.796143] [<c04dde0c>] vfs_ioctl+0x2d/0x85
[ 21.796146] [<c04de412>] do_vfs_ioctl+0x4b5/0x501
[ 21.796151] [<c04bc25a>] ? handle_mm_fault+0x2d3/0x699
[ 21.796155] [<c04de4b5>] sys_ioctl+0x57/0x82
[ 21.796159] [<c0420086>] sysenter_do_call+0x12/0x21
[ 23.427669] cfg80211: Calling CRDA to update world regulatory domain
[ 24.409852] cfg80211: World regulatory domain updated:
[ 24.409857] (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[ 24.409861] (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[ 24.741209] ath5k 0000:03:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[ 24.741226] ath5k 0000:03:00.0: setting latency timer to 64
[ 24.741352] ath5k 0000:03:00.0: registered as 'phy0'
[ 24.895180] wmaster0 (ath5k): not using net_device_ops yet
[ 24.896728] phy0: Selected rate control algorithm 'minstrel'
[ 24.896795] wlan0 (ath5k): not using net_device_ops yet
[ 24.898345] ath5k phy0: Atheros AR5414 chip found (MAC: 0xa3, PHY: 0x61)
[ 25.937648] BUG: sleeping function called from invalid context at arch/x86/mm/highmem_32.c:8
[ 25.937657] in_atomic(): 0, irqs_disabled(): 1, pid: 2075, name: lvm
[ 25.937664] Pid: 2075, comm: lvm Tainted: G W 2.6.29-rc4-rt2-tip #54
[ 25.937670] Call Trace:
[ 25.937683] [<c0444cdd>] __might_sleep+0xda/0xf0
[ 25.937691] [<c043ee55>] kmap+0x50/0x77
[ 25.937697] [<c043db3b>] gup_pte_range+0x4b/0xe9
[ 25.937705] [<c043dcb7>] get_user_pages_fast+0xde/0x17f
[ 25.937713] [<c04f75f1>] dio_get_page+0x59/0x124
[ 25.937721] [<c04f8258>] __blockdev_direct_IO+0x4ad/0xabe
[ 25.937728] [<c04f5cdb>] ? blkdev_get_blocks+0x0/0x11c
[ 25.937738] [<c065bafc>] ? kobject_get+0x20/0x37
[ 25.937746] [<c0652230>] ? get_disk+0x7e/0xa8
[ 25.937753] [<c04f730a>] blkdev_direct_IO+0x3f/0x55
[ 25.937760] [<c04f5cdb>] ? blkdev_get_blocks+0x0/0x11c
[ 25.937768] [<c04a977a>] generic_file_aio_read+0xfd/0x587
[ 25.937775] [<c04f712c>] ? blkdev_open+0x71/0xaf
[ 25.937785] [<c04cf51f>] ? __dentry_open+0x193/0x276
[ 25.937792] [<c04d0fcf>] do_sync_read+0xc6/0x118
[ 25.937801] [<c0467414>] ? autoremove_wake_function+0x0/0x54
[ 25.937811] [<c09aa5cb>] ? rt_mutex_lock+0x23/0x5c
[ 25.937819] [<c09aacf2>] ? _mutex_unlock+0x17/0x2a
[ 25.937828] [<c05fa4dc>] ? security_file_permission+0x1e/0x31
[ 25.937835] [<c04d0f09>] ? do_sync_read+0x0/0x118
[ 25.937841] [<c04d1b61>] vfs_read+0x99/0x14e
[ 25.937848] [<c04d1cf7>] sys_read+0x50/0x87
[ 25.937855] [<c0420086>] sysenter_do_call+0x12/0x21
[ 26.904618] EXT3 FS on dm-0, internal journal
[ 27.017853] kjournald starting. Commit interval 5 seconds
[ 27.018257] EXT3 FS on sda3, internal journal
[ 27.018268] EXT3-fs: mounted filesystem with ordered data mode.
[ 46.073402] usb 2-1: new low speed USB device using uhci_hcd and address 3
[ 46.245423] usb 2-1: New USB device found, idVendor=413c, idProduct=2003
[ 46.245431] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 46.245437] usb 2-1: Product: DELL USB Keyboard
[ 46.245441] usb 2-1: Manufacturer: DELL
[ 46.245633] usb 2-1: configuration #1 chosen from 1 choice
[ 46.263774] input: DELL DELL USB Keyboard as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1:1.0/input/input14
[ 46.281111] generic-usb 0003:413C:2003.0006: input,hidraw5: USB HID v1.10 Keyboard [DELL DELL USB Keyboard] on usb-0000:00:1d.0-1/input0
[ 46.309496] input: DELL DELL USB Keyboard as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1:1.1/input/input15
[ 46.331110] generic-usb 0003:413C:2003.0007: input,hidraw6: USB HID v1.10 Device [DELL DELL USB Keyboard] on usb-0000:00:1d.0-1/input1
Belonging config is:
#
# Automatically generated make config: don't edit
# Linux kernel version: 2.6.29-rc4-rt2
# Thu Feb 19 16:26:17 2009
#
# CONFIG_64BIT is not set
CONFIG_X86_32=y
# CONFIG_X86_64 is not set
CONFIG_X86=y
CONFIG_ARCH_DEFCONFIG="arch/x86/configs/i386_defconfig"
CONFIG_GENERIC_TIME=y
CONFIG_GENERIC_CMOS_UPDATE=y
CONFIG_CLOCKSOURCE_WATCHDOG=y
CONFIG_GENERIC_CLOCKEVENTS=y
CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y
CONFIG_LOCKDEP_SUPPORT=y
CONFIG_STACKTRACE_SUPPORT=y
CONFIG_HAVE_LATENCYTOP_SUPPORT=y
CONFIG_FAST_CMPXCHG_LOCAL=y
CONFIG_MMU=y
CONFIG_ZONE_DMA=y
CONFIG_GENERIC_ISA_DMA=y
CONFIG_GENERIC_IOMAP=y
CONFIG_GENERIC_BUG=y
CONFIG_GENERIC_HWEIGHT=y
CONFIG_ARCH_MAY_HAVE_PC_FDC=y
CONFIG_RWSEM_GENERIC_SPINLOCK=y
CONFIG_ASM_SEMAPHORES=y
CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y
CONFIG_GENERIC_CALIBRATE_DELAY=y
# CONFIG_GENERIC_TIME_VSYSCALL is not set
CONFIG_ARCH_HAS_CPU_RELAX=y
CONFIG_ARCH_HAS_DEFAULT_IDLE=y
CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y
CONFIG_HAVE_SETUP_PER_CPU_AREA=y
# CONFIG_HAVE_CPUMASK_OF_CPU_MAP is not set
CONFIG_ARCH_HIBERNATION_POSSIBLE=y
CONFIG_ARCH_SUSPEND_POSSIBLE=y
# CONFIG_ZONE_DMA32 is not set
CONFIG_ARCH_POPULATES_NODE_MAP=y
# CONFIG_AUDIT_ARCH is not set
CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y
CONFIG_GENERIC_HARDIRQS=y
CONFIG_GENERIC_IRQ_PROBE=y
CONFIG_GENERIC_PENDING_IRQ=y
CONFIG_USE_GENERIC_SMP_HELPERS=y
CONFIG_X86_32_SMP=y
CONFIG_X86_HT=y
CONFIG_X86_TRAMPOLINE=y
CONFIG_KTIME_SCALAR=y
CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
#
# General setup
#
CONFIG_EXPERIMENTAL=y
CONFIG_LOCK_KERNEL=y
CONFIG_INIT_ENV_ARG_LIMIT=32
CONFIG_LOCALVERSION=""
# CONFIG_LOCALVERSION_AUTO is not set
CONFIG_SWAP=y
CONFIG_SYSVIPC=y
CONFIG_SYSVIPC_SYSCTL=y
CONFIG_POSIX_MQUEUE=y
CONFIG_BSD_PROCESS_ACCT=y
# CONFIG_BSD_PROCESS_ACCT_V3 is not set
CONFIG_TASKSTATS=y
CONFIG_TASK_DELAY_ACCT=y
CONFIG_TASK_XACCT=y
CONFIG_TASK_I...(message truncated) |
|
| Back to top |
|
 |
Peter Zijlstra External

Since: Jun 06, 2007 Posts: 205
|
Posted: Thu Feb 19, 2009 5:10 pm Post subject: Re: [Announce] 2.6.29-rc4-rt2 [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
On Thu, 2009-02-19 at 19:44 +0100, Thomas Meyer wrote:
> [ 0.003333] ------------[ cut here ]------------
> [ 0.003333] WARNING: at mm/highmem.c:225 kmap_flush_unused+0x2b/0x4b()
> [ 0.003333] Hardware name: MacBookPro1,1
> [ 0.003333] Modules linked in:
> [ 0.003333] Pid: 0, comm: swapper Not tainted 2.6.29-rc4-rt2-tip #54
> [ 0.003333] Call Trace:
> [ 0.003333] [<c0451e70>] warn_slowpath+0x8a/0xd3
> [ 0.003333] [<c043ee71>] ? kmap+0x6c/0x77
> [ 0.003333] [<c04ad7f5>] ? get_page_from_freelist+0x389/0x42b
> [ 0.003333] [<c04adb8f>] ? __alloc_pages_internal+0xbf/0x3a6
> [ 0.003333] [<c04b9b92>] kmap_flush_unused+0x2b/0x4b
> [ 0.003333] [<c043b877>] change_page_attr_set_clr+0xe8/0x2ca
> [ 0.003333] [<c09aabd9>] ? rt_spin_lock+0x32/0x79
> [ 0.003333] [<c04bbeb3>] ? __pte_alloc_kernel+0x50/0x83
> [ 0.003333] [<c043bd16>] _set_memory_uc+0x27/0x3a
> [ 0.003333] [<c043ac3d>] ioremap_change_attr+0x24/0x47
> [ 0.003333] [<c043ae62>] __ioremap_caller+0x202/0x256
> [ 0.003333] [<c0cd0b79>] ? hpet_enable+0x2d/0x26c
> [ 0.003333] [<c043afe0>] ioremap_nocache+0x1c/0x2f
> [ 0.003333] [<c0cd0b79>] ? hpet_enable+0x2d/0x26c
> [ 0.003333] [<c0cd0b79>] hpet_enable+0x2d/0x26c
> [ 0.003333] [<c0cc34fb>] hpet_time_init+0x16/0x37
> [ 0.003333] [<c0cbd997>] start_kernel+0x289/0x345
> [ 0.003333] [<c0cbd093>] __init_begin+0x93/0xac
> [ 0.003333] ---[ end trace a7919e7f17c0a725 ]---
Hmm, this appears unimplemented on -rt, shouldn't hurt much, but could
be fixed.
> [ 13.169831] BUG: sleeping function called from invalid context at arch/x86/mm/highmem_32.c:8
> [ 13.169957] in_atomic(): 0, irqs_disabled(): 1, pid: 1030, name: cryptsetup
> [ 13.170075] Pid: 1030, comm: cryptsetup Tainted: G W 2.6.29-rc4-rt2-tip #54
> [ 13.170196] Call Trace:
> [ 13.170284] [<c0444cdd>] __might_sleep+0xda/0xf0
> [ 13.170374] [<c043ee55>] kmap+0x50/0x77
> [ 13.170460] [<c043db3b>] gup_pte_range+0x4b/0xe9
> [ 13.170548] [<c043dcb7>] get_user_pages_fast+0xde/0x17f
> [ 13.170639] [<c04f75f1>] dio_get_page+0x59/0x124
> [ 13.170729] [<c04f8258>] __blockdev_direct_IO+0x4ad/0xabe
> [ 13.170819] [<c04f5cdb>] ? blkdev_get_blocks+0x0/0x11c
> [ 13.170837] [<c04f730a>] blkdev_direct_IO+0x3f/0x55
> [ 13.170837] [<c04f5cdb>] ? blkdev_get_blocks+0x0/0x11c
> [ 13.170837] [<c04a977a>] generic_file_aio_read+0xfd/0x587
> [ 13.170837] [<c05ff445>] ? avc_has_perm+0x56/0x71
> [ 13.170837] [<c04d0fcf>] do_sync_read+0xc6/0x118
> [ 13.170837] [<c0467414>] ? autoremove_wake_function+0x0/0x54
> [ 13.170837] [<c06046d6>] ? selinux_file_permission+0x119/0x132
> [ 13.170837] [<c05fa4dc>] ? security_file_permission+0x1e/0x31
> [ 13.170837] [<c04d0f09>] ? do_sync_read+0x0/0x118
> [ 13.170837] [<c04d1b61>] vfs_read+0x99/0x14e
> [ 13.170837] [<c04d1cf7>] sys_read+0x50/0x87
> [ 13.170837] [<c0420086>] sysenter_do_call+0x12/0x21
Caused by CONFIG_HIGHPTE=y,
as long as TLB flushes are IPIs we really need to disable IRQs for
gup_fast() and thus will either need non-preemptible kmap or disabled
high-pte or disable the gup_fast() fast-path, which would be a shame.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo.RemoveThis@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/ |
|
| Back to top |
|
 |
Thomas Meyer External

Since: Aug 19, 2006 Posts: 44
|
Posted: Fri Feb 20, 2009 3:10 am Post subject: Re: [Announce] 2.6.29-rc4-rt2 [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
Am Donnerstag, den 12.02.2009, 23:56 +0100 schrieb Thomas Gleixner:
> We are pleased to announce the first update to our new preempt-rt
> series. It fixes the reported bugs and some more.
>
> Download locations:
>
> http://rt.et.redhat.com/download/
> http://www.kernel.org/pub/linux/kernel/projects/rt/
>
> Information on the RT patch can be found at:
>
> http://rt.wiki.kernel.org/index.php/Main_Page
>
> to build the 2.6.29-rc4-rt2 tree, the following patches should be
> applied:
>
> http://www.kernel.org/pub/linux/kernel/v2.6/testing/linux-2.6.29-rc4.tar.bz2
> http://www.kernel.org/pub/linux/kernel/projects/rt/patch-2.6.29-rc4-rt2.bz2
>
> The broken out patches are also available at the same download
> locations.
>
> Enjoy !
>
> Thomas, Ingo
Hi,
Are you interested in these BUG reports?
Without CONFIG_HIGHPTE kernel boots and seems to work correct, but I'm
hitting these two BUGs:
[ 19.840100] BUG: sleeping function called from invalid context at arch/x86/mm/highmem_32.c:8
[ 19.840105] in_atomic(): 0, irqs_disabled(): 1, pid: 718, name: IRQ-14
[ 19.840110] Pid: 718, comm: IRQ-14 Tainted: G W 2.6.29-rc4-rt2-tip #55
[ 19.840113] Call Trace:
[ 19.840123] [<c0444cbd>] __might_sleep+0xda/0xf0
[ 19.840128] [<c043ee31>] kmap+0x50/0x77
[ 19.840133] [<c0663e35>] sg_miter_next+0xc1/0xdf
[ 19.840137] [<c0663ee8>] sg_copy_buffer+0x95/0xc5
[ 19.840141] [<c0663f35>] sg_copy_to_buffer+0x1d/0x33
[ 19.840149] [<c0774ab1>] atapi_qc_complete+0x25a/0x2c5
[ 19.840153] [<c076dece>] __ata_qc_complete+0xb4/0xcd
[ 19.840157] [<c076f844>] ata_qc_complete+0x1be/0x1d7
[ 19.840162] [<c077c812>] ata_hsm_qc_complete+0xa9/0xd3
[ 19.840166] [<c077ceb7>] ata_sff_hsm_move+0x67b/0x6da
[ 19.840171] [<c077d19b>] ata_sff_interrupt+0x15d/0x205
[ 19.840176] [<c049440a>] handle_IRQ_event+0x4b/0xce
[ 19.840180] [<c0494ac7>] do_irqd+0x141/0x271
[ 19.840184] [<c0494986>] ? do_irqd+0x0/0x271
[ 19.840189] [<c0467022>] kthread+0x4a/0x82
[ 19.840192] [<c0466fd8>] ? kthread+0x0/0x82
[ 19.840197] [<c0420b67>] kernel_thread_helper+0x7/0x10
and:
[ 357.286589] BUG: sleeping function called from invalid context at arch/x86/mm/highmem_32.c:8
[ 357.286597] in_atomic(): 0, irqs_disabled(): 1, pid: 718, name: IRQ-14
[ 357.286605] Pid: 718, comm: IRQ-14 Tainted: G W 2.6.29-rc4-rt2-tip #55
[ 357.286611] Call Trace:
[ 357.286624] [<c0444cbd>] __might_sleep+0xda/0xf0
[ 357.286631] [<c043ee31>] kmap+0x50/0x77
[ 357.286640] [<c0663e35>] sg_miter_next+0xc1/0xdf
[ 357.286647] [<c0663ee8>] sg_copy_buffer+0x95/0xc5
[ 357.286654] [<c0663f35>] sg_copy_to_buffer+0x1d/0x33
[ 357.286664] [<c0774ab1>] atapi_qc_complete+0x25a/0x2c5
[ 357.286672] [<c076dece>] __ata_qc_complete+0xb4/0xcd
[ 357.286680] [<c076f844>] ata_qc_complete+0x1be/0x1d7
[ 357.286688] [<c09ab024>] ? __spin_unlock+0x1e/0x43
[ 357.286696] [<c077c812>] ata_hsm_qc_complete+0xa9/0xd3
[ 357.286703] [<c077ceb7>] ata_sff_hsm_move+0x67b/0x6da
[ 357.286711] [<c077d19b>] ata_sff_interrupt+0x15d/0x205
[ 357.286720] [<c049440a>] handle_IRQ_event+0x4b/0xce
[ 357.286727] [<c0494ac7>] do_irqd+0x141/0x271
[ 357.286734] [<c0494986>] ? do_irqd+0x0/0x271
[ 357.286742] [<c0467022>] kthread+0x4a/0x82
[ 357.286757] [<c0466fd8>] ? kthread+0x0/0x82
[ 357.286762] [<c0420b67>] kernel_thread_helper+0x7/0x10
greets
thomas
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo.RemoveThis@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/ |
|
| Back to top |
|
 |
Peter Zijlstra External

Since: Jun 06, 2007 Posts: 205
|
Posted: Fri Feb 20, 2009 4:10 am Post subject: Re: [Announce] 2.6.29-rc4-rt2 [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
On Fri, 2009-02-20 at 07:32 +0100, Thomas Meyer wrote:
> Are you interested in these BUG reports?
Yes we are, thanks!
> Without CONFIG_HIGHPTE kernel boots and seems to work correct, but I'm
> hitting these two BUGs:
They appear to be identical, so I'll consider them two instances of one
bug
> [ 19.840100] BUG: sleeping function called from invalid context at arch/x86/mm/highmem_32.c:8
> [ 19.840105] in_atomic(): 0, irqs_disabled(): 1, pid: 718, name: IRQ-14
> [ 19.840110] Pid: 718, comm: IRQ-14 Tainted: G W 2.6.29-rc4-rt2-tip #55
> [ 19.840113] Call Trace:
> [ 19.840123] [<c0444cbd>] __might_sleep+0xda/0xf0
> [ 19.840128] [<c043ee31>] kmap+0x50/0x77
> [ 19.840133] [<c0663e35>] sg_miter_next+0xc1/0xdf
> [ 19.840137] [<c0663ee8>] sg_copy_buffer+0x95/0xc5
> [ 19.840141] [<c0663f35>] sg_copy_to_buffer+0x1d/0x33
> [ 19.840149] [<c0774ab1>] atapi_qc_complete+0x25a/0x2c5
> [ 19.840153] [<c076dece>] __ata_qc_complete+0xb4/0xcd
> [ 19.840157] [<c076f844>] ata_qc_complete+0x1be/0x1d7
> [ 19.840162] [<c077c812>] ata_hsm_qc_complete+0xa9/0xd3
> [ 19.840166] [<c077ceb7>] ata_sff_hsm_move+0x67b/0x6da
> [ 19.840171] [<c077d19b>] ata_sff_interrupt+0x15d/0x205
> [ 19.840176] [<c049440a>] handle_IRQ_event+0x4b/0xce
> [ 19.840180] [<c0494ac7>] do_irqd+0x141/0x271
> [ 19.840184] [<c0494986>] ? do_irqd+0x0/0x271
> [ 19.840189] [<c0467022>] kthread+0x4a/0x82
> [ 19.840192] [<c0466fd8>] ? kthread+0x0/0x82
> [ 19.840197] [<c0420b67>] kernel_thread_helper+0x7/0x10
sg_copy_buffer() seems to disable IRQs, however since on -rt everything
is a irq-thread and kmap is preemptible, we don't appear to have that
need.
CC'd everybody who ever touched the file.
---
lib/scatterlist.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/scatterlist.c b/lib/scatterlist.c
index b7b449d..4c6510d 100644
--- a/lib/scatterlist.c
+++ b/lib/scatterlist.c
@@ -426,7 +426,7 @@ static size_t sg_copy_buffer(struct scatterlist *sgl, unsigned int nents,
sg_miter_start(&miter, sgl, nents, SG_MITER_ATOMIC);
- local_irq_save(flags);
+ local_irq_save_nort(flags);
while (sg_miter_next(&miter) && offset < buflen) {
unsigned int len;
@@ -445,7 +445,7 @@ static size_t sg_copy_buffer(struct scatterlist *sgl, unsigned int nents,
sg_miter_stop(&miter);
- local_irq_restore(flags);
+ local_irq_restore_nort(flags);
return offset;
}
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo.TakeThisOut@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/ |
|
| Back to top |
|
 |
Thomas Meyer External

Since: Aug 19, 2006 Posts: 44
|
Posted: Fri Feb 20, 2009 12:10 pm Post subject: Re: [Announce] 2.6.29-rc4-rt2 [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
Am Freitag, den 20.02.2009, 08:49 +0100 schrieb Peter Zijlstra:
> On Fri, 2009-02-20 at 07:32 +0100, Thomas Meyer wrote:
> > Are you interested in these BUG reports?
>
> Yes we are, thanks!
>
> > Without CONFIG_HIGHPTE kernel boots and seems to work correct, but I'm
> > hitting these two BUGs:
>
> They appear to be identical, so I'll consider them two instances of one
> bug
>
> > [ 19.840100] BUG: sleeping function called from invalid context at arch/x86/mm/highmem_32.c:8
> > [ 19.840105] in_atomic(): 0, irqs_disabled(): 1, pid: 718, name: IRQ-14
> > [ 19.840110] Pid: 718, comm: IRQ-14 Tainted: G W 2.6.29-rc4-rt2-tip #55
> > [ 19.840113] Call Trace:
> > [ 19.840123] [<c0444cbd>] __might_sleep+0xda/0xf0
> > [ 19.840128] [<c043ee31>] kmap+0x50/0x77
> > [ 19.840133] [<c0663e35>] sg_miter_next+0xc1/0xdf
> > [ 19.840137] [<c0663ee8>] sg_copy_buffer+0x95/0xc5
> > [ 19.840141] [<c0663f35>] sg_copy_to_buffer+0x1d/0x33
> > [ 19.840149] [<c0774ab1>] atapi_qc_complete+0x25a/0x2c5
> > [ 19.840153] [<c076dece>] __ata_qc_complete+0xb4/0xcd
> > [ 19.840157] [<c076f844>] ata_qc_complete+0x1be/0x1d7
> > [ 19.840162] [<c077c812>] ata_hsm_qc_complete+0xa9/0xd3
> > [ 19.840166] [<c077ceb7>] ata_sff_hsm_move+0x67b/0x6da
> > [ 19.840171] [<c077d19b>] ata_sff_interrupt+0x15d/0x205
> > [ 19.840176] [<c049440a>] handle_IRQ_event+0x4b/0xce
> > [ 19.840180] [<c0494ac7>] do_irqd+0x141/0x271
> > [ 19.840184] [<c0494986>] ? do_irqd+0x0/0x271
> > [ 19.840189] [<c0467022>] kthread+0x4a/0x82
> > [ 19.840192] [<c0466fd8>] ? kthread+0x0/0x82
> > [ 19.840197] [<c0420b67>] kernel_thread_helper+0x7/0x10
>
> sg_copy_buffer() seems to disable IRQs, however since on -rt everything
> is a irq-thread and kmap is preemptible, we don't appear to have that
> need.
>
> CC'd everybody who ever touched the file.
>
> ---
> lib/scatterlist.c | 4 ++--
> 1 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/lib/scatterlist.c b/lib/scatterlist.c
> index b7b449d..4c6510d 100644
> --- a/lib/scatterlist.c
> +++ b/lib/scatterlist.c
> @@ -426,7 +426,7 @@ static size_t sg_copy_buffer(struct scatterlist *sgl, unsigned int nents,
>
> sg_miter_start(&miter, sgl, nents, SG_MITER_ATOMIC);
>
> - local_irq_save(flags);
> + local_irq_save_nort(flags);
>
> while (sg_miter_next(&miter) && offset < buflen) {
> unsigned int len;
> @@ -445,7 +445,7 @@ static size_t sg_copy_buffer(struct scatterlist *sgl, unsigned int nents,
>
> sg_miter_stop(&miter);
>
> - local_irq_restore(flags);
> + local_irq_restore_nort(flags);
> return offset;
> }
>
With above patch I get a lot of warnings in
lib/scatterlist.c:395 sg_miter_stop+0x5a/0xa4().
Like:
[ 34.946650] ------------[ cut here ]------------
[ 34.946653] WARNING: at lib/scatterlist.c:395 sg_miter_stop+0x5a/0xa4()
[ 34.946655] Hardware name: MacBookPro1,1
[ 34.946657] Modules linked in: ath5k mac80211 cfg80211 video [last unloaded: scsi_wait_scan]
[ 34.946665] Pid: 8, comm: sirq-block/0 Tainted: G W 2.6.29-rc4-rt2-tip #56
[ 34.946690] Call Trace:
[ 34.946694] [<c0451e50>] warn_slowpath+0x8a/0xd3
[ 34.946698] [<c09ab0e4>] ? __spin_unlock+0x1e/0x43
[ 34.946703] [<c04476d6>] ? enqueue_task_fair+0x2df/0x331
[ 34.946707] [<c0442c7c>] ? enqueue_task+0x70/0x8e
[ 34.946711] [<c044cf91>] ? try_to_wake_up+0x2eb/0x306
[ 34.946715] [<c0663e0a>] sg_miter_stop+0x5a/0xa4
[ 34.946719] [<c0663fd6>] sg_copy_buffer+0xa3/0xbe
[ 34.946723] [<c0664041>] sg_copy_from_buffer+0x1d/0x33
[ 34.946728] [<c0774c3d>] ata_scsi_rbuf_fill+0x59/0x90
[ 34.946731] [<c07760ed>] ? ata_scsiop_inq_80+0x0/0x41
[ 34.946735] [<c0755b3e>] ? scsi_done+0x0/0x2d
[ 34.946739] [<c0755b3e>] ? scsi_done+0x0/0x2d
[ 34.946743] [<c0774e24>] ata_scsi_simulate+0x1b0/0x1f8
[ 34.946747] [<c0755b3e>] ? scsi_done+0x0/0x2d
[ 34.946752] [<c0775178>] ata_scsi_queuecmd+0x16d/0x1bc
[ 34.946756] [<c0755de0>] scsi_dispatch_cmd+0x18a/0x208
[ 34.946760] [<c075b378>] scsi_request_fn+0x349/0x487
[ 34.946764] [<c064bcb6>] blk_invoke_request_fn+0x75/0x146
[ 34.946768] [<c064c671>] __blk_run_queue+0x2d/0x42
[ 34.946772] [<c064c6ac>] blk_run_queue+0x26/0x46
[ 34.946775] [<c075a836>] scsi_run_queue+0x283/0x321
[ 34.946780] [<c075b6c9>] scsi_next_command+0x36/0x54
[ 34.946783] [<c075b8e2>] scsi_end_request+0x84/0xa1
[ 34.946787] [<c075beb9>] scsi_io_completion+0x1a4/0x3a6
[ 34.946792] [<c075c1be>] ? scsi_device_unbusy+0x8c/0xa3
[ 34.946796] [<c0755b25>] scsi_finish_command+0xd3/0xec
[ 34.946800] [<c075c3bc>] scsi_softirq_done+0x104/0x11d
[ 34.946804] [<c06505df>] blk_done_softirq+0x5f/0x7e
[ 34.946808] [<c04575e3>] ksoftirqd+0x12d/0x223
[ 34.946813] [<c04574b6>] ? ksoftirqd+0x0/0x223
[ 34.946816] [<c0467022>] kthread+0x4a/0x82
[ 34.946820] [<c0466fd8>] ? kthread+0x0/0x82
[ 34.946824] [<c0420b67>] kernel_thread_helper+0x7/0x10
[ 34.946827] ---[ end trace a7919e7f17c0a754 ]---
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo.DeleteThis@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/ |
|
| Back to top |
|
 |
Ingo Molnar External

Since: May 15, 2006 Posts: 3111
|
Posted: Fri Feb 20, 2009 12:10 pm Post subject: Re: [Announce] 2.6.29-rc4-rt2 [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
* Thomas Meyer <thomas.TakeThisOut@m3y3r.de> wrote:
> With above patch I get a lot of warnings in
>
> lib/scatterlist.c:395 sg_miter_stop+0x5a/0xa4().
>
> Like:
> [ 34.946650] ------------[ cut here ]------------
> [ 34.946653] WARNING: at lib/scatterlist.c:395 sg_miter_stop+0x5a/0xa4()
could you edit lib/scatterlist.c line 395 and remove this line:
WARN_ON(!irqs_disabled());
?
Ingo
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo.TakeThisOut@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/ |
|
| Back to top |
|
 |
Sven-Thorsten Dietrich External

Since: Apr 12, 2007 Posts: 11
|
Posted: Fri Feb 20, 2009 6:10 pm Post subject: Re: [Announce] 2.6.29-rc4-rt2 [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
On Thu, 2009-02-12 at 23:56 +0100, Thomas Gleixner wrote:
> We are pleased to announce the first update to our new preempt-rt
> series. It fixes the reported bugs and some more.
>
FYI:
These patches in RT2:
rt-fix-ipi-kfree-introduce-ipi_softirq.patch
rt-fix-ipi-kfree-introduce-ipi_softirq-cleanup.patch
Cause a hard-lock when running dhcp on my 8-way AMD box.
Reverting them eliminates the issue.
Sven
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo.TakeThisOut@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/ |
|
| Back to top |
|
 |
Peter Zijlstra External

Since: Jun 06, 2007 Posts: 205
|
Posted: Fri Feb 20, 2009 7:10 pm Post subject: Re: [Announce] 2.6.29-rc4-rt2 [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
On Fri, 2009-02-20 at 14:25 -0800, Sven-Thorsten Dietrich wrote:
> On Thu, 2009-02-12 at 23:56 +0100, Thomas Gleixner wrote:
> > We are pleased to announce the first update to our new preempt-rt
> > series. It fixes the reported bugs and some more.
> >
> FYI:
>
> These patches in RT2:
>
> rt-fix-ipi-kfree-introduce-ipi_softirq.patch
> rt-fix-ipi-kfree-introduce-ipi_softirq-cleanup.patch
>
> Cause a hard-lock when running dhcp on my 8-way AMD box.
>
> Reverting them eliminates the issue.
can you try the patches in:
http://lkml.org/lkml/2009/2/17/385
http://lkml.org/lkml/2009/2/17/384
http://lkml.org/lkml/2009/2/17/387
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo.RemoveThis@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/ |
|
| Back to top |
|
 |
Sven-Thorsten Dietrich External

Since: Apr 12, 2007 Posts: 11
|
Posted: Fri Feb 20, 2009 9:10 pm Post subject: Re: [Announce] 2.6.29-rc4-rt2 [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
On Fri, 2009-02-20 at 23:54 +0100, Peter Zijlstra wrote:
> On Fri, 2009-02-20 at 14:25 -0800, Sven-Thorsten Dietrich wrote:
> > On Thu, 2009-02-12 at 23:56 +0100, Thomas Gleixner wrote:
> > > We are pleased to announce the first update to our new preempt-rt
> > > series. It fixes the reported bugs and some more.
> > >
> > FYI:
> >
> > These patches in RT2:
> >
> > rt-fix-ipi-kfree-introduce-ipi_softirq.patch
> > rt-fix-ipi-kfree-introduce-ipi_softirq-cleanup.patch
> >
> > Cause a hard-lock when running dhcp on my 8-way AMD box.
> >
> > Reverting them eliminates the issue.
>
> can you try the patches in:
>
> http://lkml.org/lkml/2009/2/17/385
> http://lkml.org/lkml/2009/2/17/384
> http://lkml.org/lkml/2009/2/17/387
>
>
>
These work with 2.6.29-rc4-rt2.
Also fixes serial console stall.
I applied them before RT and had to tweak these patches:
preempt-realtime-ipi-call-lock-raw.patch
preempt-realtime-x86_64.patch
Thanks!
Sven
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo.TakeThisOut@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/ |
|
| Back to top |
|
 |
Thomas Meyer External

Since: Aug 19, 2006 Posts: 44
|
Posted: Sat Feb 21, 2009 1:10 pm Post subject: Re: [Announce] 2.6.29-rc4-rt2 [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
Am Donnerstag, den 12.02.2009, 23:56 +0100 schrieb Thomas Gleixner:
> We are pleased to announce the first update to our new preempt-rt
> series. It fixes the reported bugs and some more.
>
> Download locations:
>
> http://rt.et.redhat.com/download/
> http://www.kernel.org/pub/linux/kernel/projects/rt/
>
> Information on the RT patch can be found at:
>
> http://rt.wiki.kernel.org/index.php/Main_Page
>
> to build the 2.6.29-rc4-rt2 tree, the following patches should be
> applied:
>
> http://www.kernel.org/pub/linux/kernel/v2.6/testing/linux-2.6.29-rc4.tar.bz2
> http://www.kernel.org/pub/linux/kernel/projects/rt/patch-2.6.29-rc4-rt2.bz2
>
> The broken out patches are also available at the same download
> locations.
>
> Enjoy !
>
> Thomas, Ingo
> --
Hi,
I got this warning, that i never saw before with a non rt-preempt
kernel. But maybe it's just coincidence...
[22652.437889] ------------[ cut here ]------------
[22652.437898] WARNING: at net/mac80211/rx.c:2234 __ieee80211_rx+0x85/0x53e [mac80211]()
[22652.437904] Hardware name: MacBookPro1,1
[22652.437908] Modules linked in: ipt_REJECT nf_conntrack_ipv4 nf_defrag_ipv4 iptable_filter ip_tables nf_conntrack_ftp ip6t_REJECT xt_tcpudp nf_conntrack_ipv6 xt_state nf_conntrack ip6table_filter ip6_tables x_tables ath5k mac80211 cfg80211 video [last unloaded: scsi_wait_scan]
[22652.437952] Pid: 23, comm: sirq-tasklet/1 Tainted: G W 2.6.29-rc4-rt2-tip #57
[22652.437958] Call Trace:
[22652.437970] [<c0451e50>] warn_slowpath+0x8a/0xd3
[22652.437981] [<c0665165>] ? plist_add+0x73/0x8e
[22652.437990] [<c0447d8e>] ? enqueue_pushable_task+0x62/0x79
[22652.437999] [<c04480f1>] ? enqueue_task_rt+0x203/0x247
[22652.438029] [<f90e78bf>] __ieee80211_rx+0x85/0x53e [mac80211]
[22652.438039] [<c09aafaa>] ? __spin_unlock_irq+0x1e/0x44
[22652.438057] [<f92e14af>] ath5k_tasklet_rx+0x406/0x457 [ath5k]
[22652.438067] [<c045787e>] __tasklet_action+0x8c/0x100
[22652.438075] [<c04579d8>] tasklet_action+0x67/0x7f
[22652.438083] [<c04575e3>] ksoftirqd+0x12d/0x223
[22652.438091] [<c04574b6>] ? ksoftirqd+0x0/0x223
[22652.438099] [<c0467022>] kthread+0x4a/0x82
[22652.438106] [<c0466fd8>] ? kthread+0x0/0x82
[22652.438114] [<c0420b67>] kernel_thread_helper+0x7/0x10
[22652.438120] ---[ end trace a7919e7f17c0a727 ]---
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo.DeleteThis@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/ |
|
| Back to top |
|
 |
Frederic Weisbecker External

Since: Jan 17, 2009 Posts: 267
|
Posted: Sat Feb 21, 2009 1:10 pm Post subject: Re: [Announce] 2.6.29-rc4-rt2 [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
On Sat, Feb 21, 2009 at 06:04:22PM +0100, Thomas Meyer wrote:
> Am Donnerstag, den 12.02.2009, 23:56 +0100 schrieb Thomas Gleixner:
> > We are pleased to announce the first update to our new preempt-rt
> > series. It fixes the reported bugs and some more.
> >
> > Download locations:
> >
> > http://rt.et.redhat.com/download/
> > http://www.kernel.org/pub/linux/kernel/projects/rt/
> >
> > Information on the RT patch can be found at:
> >
> > http://rt.wiki.kernel.org/index.php/Main_Page
> >
> > to build the 2.6.29-rc4-rt2 tree, the following patches should be
> > applied:
> >
> > http://www.kernel.org/pub/linux/kernel/v2.6/testing/linux-2.6.29-rc4.tar.bz2
> > http://www.kernel.org/pub/linux/kernel/projects/rt/patch-2.6.29-rc4-rt2.bz2
> >
> > The broken out patches are also available at the same download
> > locations.
> >
> > Enjoy !
> >
> > Thomas, Ingo
> > --
>
> Hi,
>
> I got this warning, that i never saw before with a non rt-preempt
> kernel. But maybe it's just coincidence...
>
> [22652.437889] ------------[ cut here ]------------
> [22652.437898] WARNING: at net/mac80211/rx.c:2234 __ieee80211_rx+0x85/0x53e [mac80211]()
> [22652.437904] Hardware name: MacBookPro1,1
> [22652.437908] Modules linked in: ipt_REJECT nf_conntrack_ipv4 nf_defrag_ipv4 iptable_filter ip_tables nf_conntrack_ftp ip6t_REJECT xt_tcpudp nf_conntrack_ipv6 xt_state nf_conntrack ip6table_filter ip6_tables x_tables ath5k mac80211 cfg80211 video [last unloaded: scsi_wait_scan]
> [22652.437952] Pid: 23, comm: sirq-tasklet/1 Tainted: G W 2.6.29-rc4-rt2-tip #57
> [22652.437958] Call Trace:
> [22652.437970] [<c0451e50>] warn_slowpath+0x8a/0xd3
> [22652.437981] [<c0665165>] ? plist_add+0x73/0x8e
> [22652.437990] [<c0447d8e>] ? enqueue_pushable_task+0x62/0x79
> [22652.437999] [<c04480f1>] ? enqueue_task_rt+0x203/0x247
> [22652.438029] [<f90e78bf>] __ieee80211_rx+0x85/0x53e [mac80211]
> [22652.438039] [<c09aafaa>] ? __spin_unlock_irq+0x1e/0x44
> [22652.438057] [<f92e14af>] ath5k_tasklet_rx+0x406/0x457 [ath5k]
> [22652.438067] [<c045787e>] __tasklet_action+0x8c/0x100
> [22652.438075] [<c04579d8>] tasklet_action+0x67/0x7f
> [22652.438083] [<c04575e3>] ksoftirqd+0x12d/0x223
> [22652.438091] [<c04574b6>] ? ksoftirqd+0x0/0x223
> [22652.438099] [<c0467022>] kthread+0x4a/0x82
> [22652.438106] [<c0466fd8>] ? kthread+0x0/0x82
> [22652.438114] [<c0420b67>] kernel_thread_helper+0x7/0x10
> [22652.438120] ---[ end trace a7919e7f17c0a727 ]---
>
Hi,
It's an known issue on ath5k (or 80211):
http://patchwork.kernel.org/patch/1169/
So not preempt-rt related. Perhaps it has been fixed in -rc5.
> --
> To unsubscribe from this list: send the line "unsubscribe linux-rt-users" in
> the body of a message to majordomo.RemoveThis@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo.RemoveThis@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/ |
|
| Back to top |
|
 |
Thomas Meyer External

Since: Aug 19, 2006 Posts: 44
|
Posted: Sun Feb 22, 2009 9:10 am Post subject: Re: [Announce] 2.6.29-rc4-rt2 [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
Am Donnerstag, den 12.02.2009, 23:56 +0100 schrieb Thomas Gleixner:
> We are pleased to announce the first update to our new preempt-rt
> series. It fixes the reported bugs and some more.
>
> Download locations:
>
> http://rt.et.redhat.com/download/
> http://www.kernel.org/pub/linux/kernel/projects/rt/
>
> Information on the RT patch can be found at:
>
> http://rt.wiki.kernel.org/index.php/Main_Page
>
> to build the 2.6.29-rc4-rt2 tree, the following patches should be
> applied:
>
> http://www.kernel.org/pub/linux/kernel/v2.6/testing/linux-2.6.29-rc4.tar.bz2
> http://www.kernel.org/pub/linux/kernel/projects/rt/patch-2.6.29-rc4-rt2.bz2
>
> The broken out patches are also available at the same download
> locations.
>
> Enjoy !
>
> Thomas, Ingo
Hi,
Is this one probably rt-preempt related?
BUG: unable to handle kernel paging request at 00100100
IP: [<f8aa431c>] __nf_conntrack_find+0xd6/0x109 [nf_conntrack]
*pde = 34ece067 *pte = 00000000
Oops: 0000 [#1] PREEMPT SMP
last sysfs file: /sys/devices/LNXSYSTM:00/device:00/PNP0C0A:00/power_supply/BAT0/energy_full
Modules linked in: nf_conntrack_ipv4 nf_defrag_ipv4 nf_conntrack_ftp nf_conntrack_ipv6 xt_state nf_conntrack ath5k mac80211 cfg80211 video [last unloaded: scsi_wait_scan]
Pid: 5, comm: sirq-timer/0 Tainted: G W (2.6.29-rc4-rt2-tip #60) MacBookPro1,1
EIP: 0060:[<f8aa431c>] EFLAGS: 00010206 CPU: 0
EIP is at __nf_conntrack_find+0xd6/0x109 [nf_conntrack]
EAX: f4853240 EBX: f7053d38 ECX: 00100100 EDX: f4f5c640
ESI: ea190868 EDI: c0e07ec0 EBP: f7053cc8 ESP: f7053cb8
DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068 preempt:00000001
Process sirq-timer/0 (pid: 5, ti=f7053000 task=f7064dc0 task.ti=f7053000)
Stack:
985792de f7053d38 c0e07ec0 c0e07ec0 f7053ce0 f8aa4731 985792de f7053d38
f8ba3bb8 c0e07ec0 f7053d70 f8aa59c5 f6b81a00 f1ec5ef4 00000003 00000002
f8ab132c 00000014 f7053d94 00000014 f7053d30 06053d4e f5a92000 f67f2980
Call Trace:
[<f8aa4731>] ? nf_conntrack_find_get+0x26/0x75 [nf_conntrack]
[<f8aa59c5>] ? nf_conntrack_in+0x15a/0x45d [nf_conntrack]
[<f8ba2472>] ? ipv4_conntrack_local+0x3d/0x58 [nf_conntrack_ipv4]
[<c089cdaf>] ? nf_iterate+0x4f/0x93
[<c08b3938>] ? dst_output+0x0/0x2b
[<c08b3938>] ? dst_output+0x0/0x2b
[<c089cf84>] ? nf_hook_slow+0x65/0xd3
[<c08b3938>] ? dst_output+0x0/0x2b
[<c08b3938>] ? dst_output+0x0/0x2b
[<c08b5292>] ? __ip_local_out+0x9f/0xba
[<c08b3938>] ? dst_output+0x0/0x2b
[<c08b52c8>] ? ip_local_out+0x1b/0x3d
[<c08b5b31>] ? ip_queue_xmit+0x2cf/0x358
[<c0442c7c>] ? enqueue_task+0x70/0x8e
[<c08ca3de>] ? tcp_v4_send_check+0x85/0xd0
[<c08c680e>] ? tcp_transmit_skb+0x5f9/0x642
[<c08c5d35>] ? tcp_current_mss+0x66/0xeb
[<c08c81b0>] ? tcp_retransmit_skb+0x4f2/0x632
[<c08c99b0>] ? tcp_write_timer+0x3c2/0x592
[<c045c17c>] ? run_timer_softirq+0x201/0x2a3
[<c08c95ee>] ? tcp_write_timer+0x0/0x592
[<c08c95ee>] ? tcp_write_timer+0x0/0x592
[<c04575e3>] ? ksoftirqd+0x12d/0x223
[<c04574b6>] ? ksoftirqd+0x0/0x223
[<c0467022>] ? kthread+0x4a/0x82
[<c0466fd8>] ? kthread+0x0/0x82
[<c0420b67>] ? kernel_thread_helper+0x7/0x10
Code: 8b 97 30 03 00 00 74 10 f7 d2 64 a1 b4 64 d6 c0 8b 04 82 ff 40 04 eb 2d f7 d2 64 a1 b4 64 d6 c0 8b 04 82 ff 00 8b 09 85 c9 74 18 <8b> 01 0f 18 00 90 8b 03 89 ce 3b 41 08 0f 85 78 ff ff ff e9 4d
EIP: [<f8aa431c>] __nf_conntrack_find+0xd6/0x109 [nf_conntrack] SS:ESP 0068:f7053cb8
---[ end trace a7919e7f17c0a727 ]---
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo.TakeThisOut@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/ |
|
| Back to top |
|
 |
Thomas Gleixner External

Since: May 14, 2006 Posts: 943
|
|
| Back to top |
|
 |
Thomas Gleixner External

Since: May 14, 2006 Posts: 943
|
|
| Back to top |
|
 |
Thomas Gleixner External

Since: May 14, 2006 Posts: 943
|
|
| Back to top |
|
 |
Thomas Meyer External

Since: Aug 19, 2006 Posts: 44
|
|
| Back to top |
|
 |
Peter Zijlstra External

Since: Jun 06, 2007 Posts: 205
|
|
| Back to top |
|
 |
|
|
|
You can post new topics in this forum You can reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
| |
|
|