Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/powerpc/powerpc Call splraise(IPL_HIGH) instead spl...



details:   https://anonhg.NetBSD.org/src/rev/19b1908d32ab
branches:  trunk
changeset: 766177:19b1908d32ab
user:      matt <matt%NetBSD.org@localhost>
date:      Fri Jun 17 23:14:40 2011 +0000

description:
Call splraise(IPL_HIGH) instead splhigh.  Easier to a nasty problem.

diffstat:

 sys/arch/powerpc/powerpc/locore_subr.S |  5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diffs (19 lines):

diff -r da0d43285982 -r 19b1908d32ab sys/arch/powerpc/powerpc/locore_subr.S
--- a/sys/arch/powerpc/powerpc/locore_subr.S    Fri Jun 17 23:12:40 2011 +0000
+++ b/sys/arch/powerpc/powerpc/locore_subr.S    Fri Jun 17 23:14:40 2011 +0000
@@ -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 */



Home | Main Index | Thread Index | Old Index