Fix a couple of splhigh()s that should be splbio().
This commit is contained in:
parent
e4bbd86a82
commit
e481e52aa9
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: ncr5380sbc.c,v 1.17 1997/02/26 22:23:48 gwr Exp $ */
|
/* $NetBSD: ncr5380sbc.c,v 1.18 1997/03/04 21:42:32 mycroft Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1995 David Jones, Gordon W. Ross
|
* Copyright (c) 1995 David Jones, Gordon W. Ross
|
||||||
|
@ -2479,7 +2479,7 @@ ncr5380_trace(msg, val)
|
||||||
register struct trace_ent *tr;
|
register struct trace_ent *tr;
|
||||||
register int s;
|
register int s;
|
||||||
|
|
||||||
s = splhigh();
|
s = splbio();
|
||||||
|
|
||||||
tr = &ncr5380_tracebuf[ncr5380_traceidx];
|
tr = &ncr5380_tracebuf[ncr5380_traceidx];
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: ncr.c,v 1.55 1997/01/10 05:57:10 perry Exp $ */
|
/* $NetBSD: ncr.c,v 1.56 1997/03/04 21:42:34 mycroft Exp $ */
|
||||||
|
|
||||||
/**************************************************************************
|
/**************************************************************************
|
||||||
**
|
**
|
||||||
|
@ -1351,7 +1351,7 @@ static void ncr_attach (pcici_t tag, int unit);
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
static char ident[] =
|
static char ident[] =
|
||||||
"\n$NetBSD: ncr.c,v 1.55 1997/01/10 05:57:10 perry Exp $\n";
|
"\n$NetBSD: ncr.c,v 1.56 1997/03/04 21:42:34 mycroft Exp $\n";
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static const u_long ncr_version = NCR_VERSION * 11
|
static const u_long ncr_version = NCR_VERSION * 11
|
||||||
|
@ -6363,7 +6363,7 @@ static ccb_p ncr_get_ccb
|
||||||
ccb_p cp = (ccb_p) 0;
|
ccb_p cp = (ccb_p) 0;
|
||||||
int oldspl;
|
int oldspl;
|
||||||
|
|
||||||
oldspl = splhigh();
|
oldspl = splbio();
|
||||||
/*
|
/*
|
||||||
** Lun structure available ?
|
** Lun structure available ?
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue