Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-2-0]: src/sys/arch/powerpc/powerpc Pull up revision 1.106 (reques...
details: https://anonhg.NetBSD.org/src/rev/9ec27c0c1d2b
branches: netbsd-2-0
changeset: 564763:9ec27c0c1d2b
user: tron <tron%NetBSD.org@localhost>
date: Wed Apr 13 21:46:47 2005 +0000
description:
Pull up revision 1.106 (requested by chs in ticket #1066):
drop the big lock in upcallret() like all the other platforms do.
diffstat:
sys/arch/powerpc/powerpc/trap.c | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diffs (25 lines):
diff -r ec1caf0eace2 -r 9ec27c0c1d2b sys/arch/powerpc/powerpc/trap.c
--- a/sys/arch/powerpc/powerpc/trap.c Fri Apr 08 10:45:10 2005 +0000
+++ b/sys/arch/powerpc/powerpc/trap.c Wed Apr 13 21:46:47 2005 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: trap.c,v 1.99.2.1 2005/01/07 12:33:34 jdc Exp $ */
+/* $NetBSD: trap.c,v 1.99.2.2 2005/04/13 21:46:47 tron Exp $ */
/*
* Copyright (C) 1995, 1996 Wolfgang Solfrank.
@@ -32,7 +32,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.99.2.1 2005/01/07 12:33:34 jdc Exp $");
+__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.99.2.2 2005/04/13 21:46:47 tron Exp $");
#include "opt_altivec.h"
#include "opt_ddb.h"
@@ -851,5 +851,6 @@
{
struct trapframe *frame = trapframe(l);
+ KERNEL_PROC_UNLOCK(l);
userret(l, frame);
}
Home |
Main Index |
Thread Index |
Old Index