summaryrefslogtreecommitdiff
path: root/sys/arch/macppc/dev
diff options
context:
space:
mode:
authorKenneth R Westerback <krw@cvs.openbsd.org>2008-11-25 17:52:03 +0000
committerKenneth R Westerback <krw@cvs.openbsd.org>2008-11-25 17:52:03 +0000
commit964f11c55ef25ce29098cb30b19cb9ceae4789df (patch)
treec0d53a0a81f68002afaa36acf4090916a7d9ea17 /sys/arch/macppc/dev
parent5e6e3b874e0aa94592dfaa1ab0d2f4211616a6a5 (diff)
Another bunch of TRY_AGAIN_LATER -> NO_CCB when no I/O could be started.
"looks sane to me" marco@
Diffstat (limited to 'sys/arch/macppc/dev')
-rw-r--r--sys/arch/macppc/dev/mesh.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/macppc/dev/mesh.c b/sys/arch/macppc/dev/mesh.c
index 3c01138c614..02b8a649909 100644
--- a/sys/arch/macppc/dev/mesh.c
+++ b/sys/arch/macppc/dev/mesh.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: mesh.c,v 1.20 2008/10/15 19:12:19 blambert Exp $ */
+/* $OpenBSD: mesh.c,v 1.21 2008/11/25 17:52:02 krw Exp $ */
/* $NetBSD: mesh.c,v 1.1 1999/02/19 13:06:03 tsubai Exp $ */
/*-
@@ -1048,7 +1048,7 @@ mesh_scsi_cmd(struct scsi_xfer *xs)
scb = mesh_get_scb(sc);
splx(s);
if (scb == NULL)
- return (TRY_AGAIN_LATER);
+ return (NO_CCB);
DPRINTF("cmdlen: %d\n", xs->cmdlen);
scb->xs = xs;
scb->flags = 0;