[EMAIL PROTECTED] said:
> actually - 2.4.26-3um looks like this already. 

Yeah, if I had spent a bit more time looking at the stack, I would have noticed
that the symptom was wrong for that patch.  What's happening is that you are
taking a timer interrupt while on the initial process stack, which can't be
allowed because interrupts should only happen on a kernel stack.

Make sure your initial_thread_cb_skas (in arch/um/kernel/skas/process.c)
blocks signals like so:

        block_signals();
        if(sigsetjmp(here, 1) == 0)
                siglongjmp(initial_jmpbuf, 2);
        unblock_signals();

                                Jeff



-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
_______________________________________________
User-mode-linux-devel mailing list
User-mode-linux-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel

Reply via email to