Module Name: src
Committed By: matt
Date: Fri Jun 17 23:14:41 UTC 2011
Modified Files:
src/sys/arch/powerpc/powerpc: locore_subr.S
Log Message:
Call splraise(IPL_HIGH) instead splhigh. Easier to a nasty problem.
To generate a diff of this commit:
cvs rdiff -u -r1.43 -r1.44 src/sys/arch/powerpc/powerpc/locore_subr.S
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/powerpc/powerpc/locore_subr.S
diff -u src/sys/arch/powerpc/powerpc/locore_subr.S:1.43 src/sys/arch/powerpc/powerpc/locore_subr.S:1.44
--- src/sys/arch/powerpc/powerpc/locore_subr.S:1.43 Fri Jun 17 05:11:48 2011
+++ src/sys/arch/powerpc/powerpc/locore_subr.S Fri Jun 17 23:14:40 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: locore_subr.S,v 1.43 2011/06/17 05:11:48 matt Exp $ */
+/* $NetBSD: locore_subr.S,v 1.44 2011/06/17 23:14:40 matt Exp $ */
/*
* Copyright (c) 2001 Wasabi Systems, Inc.
@@ -314,7 +314,8 @@
ldreg %r0, CFRAME_LR(%r1)
mtlr %r0
#if IPL_SCHED != IPL_HIGH
- b _C_LABEL(splhigh)
+ li %r3, IPL_HIGH
+ b _C_LABEL(splraise)
#else
blr
#endif /* IPL SCHED != IPL_HIGH */