diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2010-12-26 22:18:21 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2010-12-26 22:18:21 +0000 |
commit | 9f879832bd1526394a19bd87abe3ae4a52683f1c (patch) | |
tree | 0d1c219f3170bfe6597eff2608b1398d0730431d | |
parent | 9b36a59b7dbaa3805d22a0498eb982f0e6cf4b31 (diff) |
Misplaced splx() in pmap_unsetbit().
-rw-r--r-- | sys/arch/m88k/m88k/pmap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/m88k/m88k/pmap.c b/sys/arch/m88k/m88k/pmap.c index fd6d5a6a769..710f90e75d4 100644 --- a/sys/arch/m88k/m88k/pmap.c +++ b/sys/arch/m88k/m88k/pmap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.c,v 1.54 2010/12/23 19:53:29 miod Exp $ */ +/* $OpenBSD: pmap.c,v 1.55 2010/12/26 22:18:20 miod Exp $ */ /* * Copyright (c) 2001-2004, Miodrag Vallat * Copyright (c) 1998-2001 Steve Murphree, Jr. @@ -2400,9 +2400,9 @@ unsetbit_Retry: next: PMAP_UNLOCK(pmap); } - splx(spl); done: + splx(spl); #ifdef PMAPDEBUG if (pmap_debug & CD_USBIT) printf(rv ? "TRUE\n" : "FALSE\n"); |