summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorBrad Smith <brad@cvs.openbsd.org>2005-11-24 04:54:00 +0000
committerBrad Smith <brad@cvs.openbsd.org>2005-11-24 04:54:00 +0000
commit21a4d6cfe955614a0628c03ada85f127c1c47ca2 (patch)
tree4a5461f2256add9839f0d6bb81e154577b416aaa /sys/arch
parent8299929082286fef62323c4cedd8d0f514d52d57 (diff)
splimp -> splbio
ok martin@
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/vax/mscp/mscp.c4
-rw-r--r--sys/arch/vax/vax/ctu.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/vax/mscp/mscp.c b/sys/arch/vax/mscp/mscp.c
index 801b401c16d..0a62fcded95 100644
--- a/sys/arch/vax/mscp/mscp.c
+++ b/sys/arch/vax/mscp/mscp.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: mscp.c,v 1.8 2003/06/02 23:27:57 millert Exp $ */
+/* $OpenBSD: mscp.c,v 1.9 2005/11/24 04:53:56 brad Exp $ */
/* $NetBSD: mscp.c,v 1.16 2001/11/13 07:38:28 lukem Exp $ */
/*
@@ -70,7 +70,7 @@ mscp_getcp(mi, canwait)
#define mri (&mi->mi_cmd)
struct mscp *mp;
int i;
- int s = splimp();
+ int s = splbio();
again:
/*
diff --git a/sys/arch/vax/vax/ctu.c b/sys/arch/vax/vax/ctu.c
index f0d22f06a88..f6c5868402a 100644
--- a/sys/arch/vax/vax/ctu.c
+++ b/sys/arch/vax/vax/ctu.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ctu.c,v 1.7 2005/05/23 23:26:55 tedu Exp $ */
+/* $OpenBSD: ctu.c,v 1.8 2005/11/24 04:53:59 brad Exp $ */
/* $NetBSD: ctu.c,v 1.10 2000/03/23 06:46:44 thorpej Exp $ */
/*
* Copyright (c) 1996 Ludd, University of Lule}, Sweden.
@@ -187,7 +187,7 @@ ctustrategy(bp)
return;
}
bp->b_rawblkno = bp->b_blkno;
- s = splimp();
+ s = splbio();
disksort_blkno(&tu_sc.sc_q, bp); /* Why not use disksort? */
if (tu_sc.sc_state == SC_READY)
ctustart(bp);