diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2010-05-20 00:55:19 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2010-05-20 00:55:19 +0000 |
commit | c713a7721e58dd0a453fae998afd21f12fd821e8 (patch) | |
tree | 4c794ea604130c88f12d5a7295bcd0cb4624515f /sys/arch/vax | |
parent | 3c3718e53ebd6b33568092f43f11f6f1d0c4130e (diff) |
New scsi code seems to be stable. Pluck previously identified
low-hanging splbio/splx pairs that are no longer needed and see if
this reveals any hidden scsi flaws.
ok dlg@
Diffstat (limited to 'sys/arch/vax')
-rw-r--r-- | sys/arch/vax/dec/sii.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/arch/vax/dec/sii.c b/sys/arch/vax/dec/sii.c index 15b0e8e0886..64d3ac924b5 100644 --- a/sys/arch/vax/dec/sii.c +++ b/sys/arch/vax/dec/sii.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sii.c,v 1.8 2010/03/23 01:57:19 krw Exp $ */ +/* $OpenBSD: sii.c,v 1.9 2010/05/20 00:55:17 krw Exp $ */ /* $NetBSD: sii.c,v 1.42 2000/06/02 20:20:29 mhitch Exp $ */ /* * Copyright (c) 2008 Miodrag Vallat. @@ -269,9 +269,7 @@ sii_scsi_cmd(xs) if ((xs->flags & ITSDONE) != 0) return; xs->error = XS_TIMEOUT; - s = splbio(); scsi_done(xs); - splx(s); return; } |