Messages in this thread Patch in this message |  | | From | "Skidley" <> | Date | Mon, 19 Aug 2002 09:08:49 -0230 | Subject | Re: 2.4.20-pre3 boot hang |
| |
On Mon, Aug 19, 2002 at 08:13:31AM -0300, Mauricio Pretto wrote: > Same Problem Here, athlon 1.1 , Right after Rt netlink socket it hangs. > My .config goes attach. > > > Klaus Dittrich wrote: > > >SMP, P-III, Intel-BX > > > >booting Linux 2.4.20-pre3 stops after > > > >Linux NET4.0 for Linux 2.4 > >Based upon Swansea University Computer Society NET3.039 > >Initializing RT netlink socket > > > > > > > -- > Mauricio Pretto > Gerente de Produtos > Interage Integradora > http://www.interage.com.br > > T?cnico Certificado Conectiva Linux
This patch was posted to lkml earlier, it fixed the same problem for me:
diff -urN linux-2.4/kernel/sched.c pmac/kernel/sched.c --- linux-2.4/kernel/sched.c Wed Aug 7 18:10:01 2002 +++ pmac/kernel/sched.c Mon Aug 19 10:39:39 2002 @@ -1081,6 +1081,7 @@ { set_current_state(TASK_RUNNING); sys_sched_yield(); + schedule(); } void __cond_resched(void) -- "I mean they are gonna kill ya so like if ya give em a quick, short, sharp, shock they won't do it again. Dig it! I mean he got off lightly cuz I would have given him a thrashing. I only hit him once. It was only a difference of opinion but really... I mean good manners don't cost nothin do they. Eh?" - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |