All of lore.kernel.org
 help / color / mirror / Atom feed
* EHCI Kernel panic on current BK 2.5
@ 2002-11-26 18:45 chrisl
  2002-11-26 20:43 ` Zwane Mwaikambo
  0 siblings, 1 reply; 2+ messages in thread
From: chrisl @ 2002-11-26 18:45 UTC (permalink / raw)
  To: USB Devel; +Cc: Linux kernel

I try to setup the usb 2.0 hard disk on my desktop in 2.5.
It works great with uhci driver. (2.4 and 2.5).

When I try modprobe ehci-hcd in 2.5. Kernel panic. It seems
that kernel OOPS inside the panic handle code again.

I can't get the full OOPS from the serial console either.

I am typing it here. I can only see the last screen.
It might have some typo and emotion.

EIP is at scheduler_tick+0x92/0x360
eax: 00000000 ebx: 00000000 ecx: 00000001  edx: 00000003
esi: dd5e3000 edi: 00000001 ebp: dd5b9ed0  esp: dd5b9ec0
ds: 0068   es: 0068  ss:068
Process (pid:26, threadinfo=dd5b8000 task=dd5e3000)
Stack: 0000002 000000 0000001 000000 dd5b9f80
....
Call Trace:
[<c011de1a>] update_process_times+0x2a/0x30
[<c011dffa>] do_timer+0x2a/0xf0
[<c010de22>] timer_interrupt+0x22/0x130
             __call_console_drivers+0x46/0x60
	     handle_IRQ_event+0x2a/0x60
             do_IRQ+0xa0/0x130
             common_interrupt+0x18/0x20
             xfrm4_dst_destory+0x8/0x20
             xfrm4_dst_detrory+0x8/0x20
             die+0x5c/0x80
             do_page_fault+0x14e/0x467

Code: 0f ab 50 08 8d 65 f4 5b 5e 5f 5d c3 89 f6 b8 00 e0 ff ff 21
 <0>Kerenl panic: Aiee, killing interrupt handler!
In interrupt handler - not syncing


Here is another one without the serial console:

Call Trace:
	    update_process_times+0x2a/0x30
	    do_timer+0x2a/0xf0
	    timer_interrupt_0x22/0xff
	    _call_console_drivers+0x46/0x60
	    handle_IRQ_event+0x2a/0x60
	    do_IRQ+0xa0/0x130
	    do_page_fault+0x43/0x467
	    do_page_fault_0x43/0x467
            common_interupt+0x18/0x20
            do_page_fault+0x43/0x467
            do_page_fault+0x43/0x467
            xfrm4_dst_destroy+0x8/0x30
	    xfrm4_dst_destroy+0x8/0x30
            die+0x5c/0x80
	    do_page_fault+0x14e/0x467
	    scrup+0x100/0x110
            vgacon_consor+0x168/0x1f0

Code: <same as above>

PS. I notice that some line are duplicated. That is the way
it is on the screen.




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

* Re: EHCI Kernel panic on current BK 2.5
  2002-11-26 18:45 EHCI Kernel panic on current BK 2.5 chrisl
@ 2002-11-26 20:43 ` Zwane Mwaikambo
  0 siblings, 0 replies; 2+ messages in thread
From: Zwane Mwaikambo @ 2002-11-26 20:43 UTC (permalink / raw)
  To: chrisl; +Cc: USB Devel, Linux kernel

On Tue, 26 Nov 2002 chrisl@vmware.com wrote:

> I try to setup the usb 2.0 hard disk on my desktop in 2.5.
> It works great with uhci driver. (2.4 and 2.5).
>
> When I try modprobe ehci-hcd in 2.5. Kernel panic. It seems
> that kernel OOPS inside the panic handle code again.
>
> I can't get the full OOPS from the serial console either.
>
> I am typing it here. I can only see the last screen.
> It might have some typo and emotion.
>
> EIP is at scheduler_tick+0x92/0x360
> eax: 00000000 ebx: 00000000 ecx: 00000001  edx: 00000003
> esi: dd5e3000 edi: 00000001 ebp: dd5b9ed0  esp: dd5b9ec0
> ds: 0068   es: 0068  ss:068
> Process (pid:26, threadinfo=dd5b8000 task=dd5e3000)
> Stack: 0000002 000000 0000001 000000 dd5b9f80

Possibly it could be this?

/* Task might have expired already, but not scheduled off yet */
if (p->array != rq->active) {
	set_tsk_need_resched(p); <-- [1]
	return;
}

static inline void set_ti_thread_flag(struct thread_info *ti, int flag)
{
	set_bit(flag,&ti->flags); <-- [2]
}

static __inline__ void set_bit(int nr, volatile unsigned long * addr)
{
	__asm__ __volatile__( LOCK_PREFIX
		"btsl %1,%0"
		:"=m" (ADDR)
		:"Ir" (nr));
}

Code;  00000000 Before first symbol
00000000 <_EIP>:
Code;  00000000 Before first symbol
   0:   0f ab 50 08               bts    %edx,0x8(%eax)
Code;  00000004 Before first symbol
   4:   8d 65 f4                  lea    0xfffffff4(%ebp),%esp

So addr was NULL it seems, perhaps we're not supposed to be in here in the
first place ?

-- 
function.linuxpower.ca

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

end of thread, other threads:[~2002-11-26 20:33 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-11-26 18:45 EHCI Kernel panic on current BK 2.5 chrisl
2002-11-26 20:43 ` Zwane Mwaikambo

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.