diff --git a/sys/mips/mips/trap.c b/sys/mips/mips/trap.c index 8c32b593c915..6d047ccdda22 100644 --- a/sys/mips/mips/trap.c +++ b/sys/mips/mips/trap.c @@ -336,10 +336,9 @@ trap(trapframe) /* * Enable hardware interrupts if they were on before the trap. If it - * was off disable all (splhigh) so we don't accidently enable it - * when doing a spllower(). + * was off disable all so we don't accidently enable it when doing a + * return to userland. */ -/*XXX do in locore? */ if (trapframe->sr & SR_INT_ENAB) { set_intr_mask(~(trapframe->sr & ALL_INT_MASK)); enableintr();