mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
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.
This commit is contained in:
parent
ffe40c80ea
commit
88ff7f004e
1 changed files with 1 additions and 2 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue