diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2008-11-25 17:52:03 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2008-11-25 17:52:03 +0000 |
commit | 964f11c55ef25ce29098cb30b19cb9ceae4789df (patch) | |
tree | c0d53a0a81f68002afaa36acf4090916a7d9ea17 /sys/dev/i2o | |
parent | 5e6e3b874e0aa94592dfaa1ab0d2f4211616a6a5 (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/dev/i2o')
-rw-r--r-- | sys/dev/i2o/ioprbs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/i2o/ioprbs.c b/sys/dev/i2o/ioprbs.c index e7bcb228509..071f8d6a46d 100644 --- a/sys/dev/i2o/ioprbs.c +++ b/sys/dev/i2o/ioprbs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ioprbs.c,v 1.13 2008/06/26 05:42:15 ray Exp $ */ +/* $OpenBSD: ioprbs.c,v 1.14 2008/11/25 17:52:02 krw Exp $ */ /* * Copyright (c) 2001 Niklas Hallqvist @@ -505,7 +505,7 @@ ioprbs_scsi_cmd(xs) */ if (ccb == NULL) { splx(s); - return (TRY_AGAIN_LATER); + return (NO_CCB); } ccb->ic_blockno = blockno; |