From 88ff7f004e6f5436c297b918255b9d7bbfb22ecf Mon Sep 17 00:00:00 2001 From: Paul Saab Date: Mon, 8 Sep 2003 16:45:33 +0000 Subject: [PATCH] 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. --- sys/dev/ciss/ciss.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sys/dev/ciss/ciss.c b/sys/dev/ciss/ciss.c index fe83f2935fc5..14224a1d7f0e 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; }