Re: wq bug, forcing oops.

From: Manfred Spraul (manfreds@colorfullife.com)
Date: Sun Feb 20 2000 - 09:08:42 EST


Q wrote:
>
> When I stopped a program, my screen got filled with:
>
> wq bug, forcing oops.
>
> After a few second, it rebooted. I can't find anything in the logs.
>
Does that happen frequently, or only once?
If it happens frequently, then you could try to replace the WQ_BUG with

extern void show_stack(unsigned long *esp);
#define WQ_BUG() do { \
        printk("wq bug!.\n"); \
        show_stack(NULL); \
        __sti(); \
        for(;;); \
        } while(0);

[untested]

It _seems_ that the stack pointer got corrupted, and thus the kernel
couldn't recover from the oops

--
	Manfred

- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.rutgers.edu Please read the FAQ at http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Wed Feb 23 2000 - 21:00:25 EST