diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2008-11-24 00:31:36 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2008-11-24 00:31:36 +0000 |
commit | fb010ee28f3f39c9cf5fe72822a89213e428d32b (patch) | |
tree | 5946c92ed3266e9a923c2b77ce28a9cedf8375d2 /sys/dev/ic/aic6360.c | |
parent | 9e9d849de5e50495b34e582aaac917bb04616a4d (diff) |
Return NO_CCB instead of TRY_AGAIN_LATER when ccb's run out.
"I'm all for it." marco@ "Yeah" deraadt@
Diffstat (limited to 'sys/dev/ic/aic6360.c')
-rw-r--r-- | sys/dev/ic/aic6360.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/aic6360.c b/sys/dev/ic/aic6360.c index 0b9de6b797b..a7dc296b64c 100644 --- a/sys/dev/ic/aic6360.c +++ b/sys/dev/ic/aic6360.c @@ -1,4 +1,4 @@ -/* $OpenBSD: aic6360.c,v 1.16 2007/11/05 18:16:19 krw Exp $ */ +/* $OpenBSD: aic6360.c,v 1.17 2008/11/24 00:31:35 krw Exp $ */ /* $NetBSD: aic6360.c,v 1.52 1996/12/10 21:27:51 thorpej Exp $ */ #ifdef DDB @@ -518,7 +518,7 @@ aic_scsi_cmd(struct scsi_xfer *xs) flags = xs->flags; if ((acb = aic_get_acb(sc, flags)) == NULL) { - return TRY_AGAIN_LATER; + return (NO_CCB); } /* Initialize acb */ |