When we rescan, just scan from logical unit 0. In other words, don't

specify a wildcard lun here.

This unbreaks disk re-arrival.

MFC after:	2 days
This commit is contained in:
mjacob 2010-02-23 00:34:20 +00:00
parent 79836e2e58
commit 7881322c02

View File

@ -3892,7 +3892,7 @@ isp_make_here(ispsoftc_t *isp, int chan, int tgt)
isp_prt(isp, ISP_LOGWARN, "Chan %d unable to alloc CCB for rescan", chan);
return;
}
if (xpt_create_path(&ccb->ccb_h.path, xpt_periph, cam_sim_path(fc->sim), tgt, CAM_LUN_WILDCARD) != CAM_REQ_CMP) {
if (xpt_create_path(&ccb->ccb_h.path, xpt_periph, cam_sim_path(fc->sim), tgt, 0) != CAM_REQ_CMP) {
isp_prt(isp, ISP_LOGWARN, "unable to create path for rescan");
xpt_free_ccb(ccb);
return;