diff options
author | ps <ps@FreeBSD.org> | 2003-09-08 16:45:33 +0000 |
---|---|---|
committer | ps <ps@FreeBSD.org> | 2003-09-08 16:45:33 +0000 |
commit | 34b64980a461e5403f6727317e933b6356799546 (patch) | |
tree | 46e5eb9db9d292fd3bc4ca518f0dcabedf247079 | |
parent | 2e1d99cc8a99496e19013067b66e5e4e0fe8c05f (diff) | |
download | FreeBSD-src-34b64980a461e5403f6727317e933b6356799546.zip FreeBSD-src-34b64980a461e5403f6727317e933b6356799546.tar.gz |
Quiet down boot verbose and allow commands to be submitted to a target
which does not have a volume attached. This will stop cam from retrying
a bunch of time at boot for devices which do not exsist.
-rw-r--r-- | sys/dev/ciss/ciss.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/dev/ciss/ciss.c b/sys/dev/ciss/ciss.c index fe83f29..14224a1 100644 --- a/sys/dev/ciss/ciss.c +++ b/sys/dev/ciss/ciss.c @@ -2312,8 +2312,7 @@ ciss_cam_action_io(struct cam_sim *sim, struct ccb_scsiio *csio) /* check for I/O attempt to nonexistent device */ if ((bus != 0) || - (target >= CISS_MAX_LOGICAL) || - (sc->ciss_logical[target].cl_status == CISS_LD_NONEXISTENT)) { + (target >= CISS_MAX_LOGICAL)) { debug(3, " device does not exist"); csio->ccb_h.status = CAM_REQ_CMP_ERR; } |