From 9a84611b06e2499ae60dfc226cdbe824c6f809c2 Mon Sep 17 00:00:00 2001 From: mycroft Date: Sun, 6 Nov 1994 20:21:29 +0000 Subject: [PATCH] Move the spl0() from the idle loop to the top of cpu_switch(). (This also avoids needing to call spllower() below.) Set curproc immediately after removing the new process for the run queue, before allowing interrupts again, for the benefit of schedcpu(). --- sys/arch/i386/i386/locore.s | 35 +++++++++++++++++++++-------------- 1 file changed, 21 insertions(+), 14 deletions(-) diff --git a/sys/arch/i386/i386/locore.s b/sys/arch/i386/i386/locore.s index 939dc1b4c676..bbec1559aa2e 100644 --- a/sys/arch/i386/i386/locore.s +++ b/sys/arch/i386/i386/locore.s @@ -1,4 +1,4 @@ -/* $NetBSD: locore.s,v 1.91 1994/11/05 02:47:02 mycroft Exp $ */ +/* $NetBSD: locore.s,v 1.92 1994/11/06 20:21:29 mycroft Exp $ */ #undef DIAGNOSTIC #define DIAGNOSTIC @@ -1522,17 +1522,12 @@ ENTRY(remrq) * something to come ready. */ ENTRY(idle) - sti - movl $0,_cpl - call _spllower # process pending interrupts - - ALIGN_TEXT -1: cli + cli movl _whichqs,%ecx testl %ecx,%ecx jnz sw1 sti - jmp 1b + jmp _idle #ifdef DIAGNOSTIC ENTRY(switch_error) @@ -1554,10 +1549,20 @@ ENTRY(cpu_switch) pushl %edi pushl _cpl - /* Don't accumulate system time while idle. */ movl _curproc,%esi + + /* + * Clear curproc so that we don't accumulate system time while idle. + * This also insures that schedcpu() will move the old process to + * the correct queue if it happens to get called from the spllower() + * below and changes the priority. (See corresponding comment in + * userret()). + */ movl $0,_curproc + movl $0,_cpl # spl0() + call _spllower # process pending interrupts + switch_search: /* * First phase: find new process. @@ -1609,6 +1614,9 @@ sw1: bsfl %ecx,%ebx # find a full q /* Isolate process. XXX Is this necessary? */ movl %eax,P_BACK(%edi) + /* Record new process. */ + movl %edi,_curproc + /* It's okay to take interrupts here. */ sti @@ -1703,12 +1711,11 @@ switch_exited: sti switch_return: - /* Record new process. */ - movl %edi,_curproc - - /* Old _cpl is already on the stack. */ + /* + * Restore old cpl from stack. Note that this is always an increase, + * due to the spl0() on entry. + */ popl _cpl - call _spllower # restore the process's ipl movl %edi,%eax # return (p); popl %edi