diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2009-12-06 17:24:29 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2009-12-06 17:24:29 +0000 |
commit | 7fb64f8c55eb07b0bee7925ab053db98f596eabd (patch) | |
tree | 16dd60b85d61efb49c51f1957acf03efc6ff2fd2 /sys/dev/ic | |
parent | 557cd33b24444ce3ede41fb6a0eec98f64295ebd (diff) |
Nuke SCSI_URGENT after removing its only use, in ncr53c9x.c. That use
was to try to play dangerous games with tagged queuing.
ok marco@
Diffstat (limited to 'sys/dev/ic')
-rw-r--r-- | sys/dev/ic/ncr53c9x.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/dev/ic/ncr53c9x.c b/sys/dev/ic/ncr53c9x.c index b6f9b4cdeb5..65ee11bc53f 100644 --- a/sys/dev/ic/ncr53c9x.c +++ b/sys/dev/ic/ncr53c9x.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ncr53c9x.c,v 1.42 2009/11/22 14:14:10 krw Exp $ */ +/* $OpenBSD: ncr53c9x.c,v 1.43 2009/12/06 17:24:28 krw Exp $ */ /* $NetBSD: ncr53c9x.c,v 1.56 2000/11/30 14:41:46 thorpej Exp $ */ /* @@ -942,8 +942,6 @@ ncr53c9x_sched(sc) tag = 0; else if ((ecb->flags & ECB_SENSE) != 0) tag = 0; - else if (ecb->xs->flags & SCSI_URGENT) - tag = MSG_HEAD_OF_Q_TAG; else tag = MSG_SIMPLE_Q_TAG; #if 0 |