svn commit: r364865 - stable/12/sys/cam/scsi
Andriy Gapon
avg at FreeBSD.org
Thu Aug 27 13:38:21 UTC 2020
Author: avg
Date: Thu Aug 27 13:38:20 2020
New Revision: 364865
URL: https://svnweb.freebsd.org/changeset/base/364865
Log:
MFC r354621-r354623 by imp: scsi_da state machine improvements
r354621
Require and enforce that dareprobe() has to be called with the periph lock held.
r354622
Update the softc state of the da driver before releasing the CCB.
r354623
Add asserts for some state transitions
Modified:
stable/12/sys/cam/scsi/scsi_da.c
Directory Properties:
stable/12/ (props changed)
Modified: stable/12/sys/cam/scsi/scsi_da.c
==============================================================================
--- stable/12/sys/cam/scsi/scsi_da.c Thu Aug 27 13:33:21 2020 (r364864)
+++ stable/12/sys/cam/scsi/scsi_da.c Thu Aug 27 13:38:20 2020 (r364865)
@@ -2130,8 +2130,8 @@ daasync(void *callback_arg, u_int32_t code,
"Capacity data has changed\n");
cam_periph_lock(periph);
softc->flags &= ~DA_FLAG_PROBED;
- cam_periph_unlock(periph);
dareprobe(periph);
+ cam_periph_unlock(periph);
} else if (asc == 0x28 && ascq == 0x00) {
cam_periph_lock(periph);
softc->flags &= ~DA_FLAG_PROBED;
@@ -2142,8 +2142,8 @@ daasync(void *callback_arg, u_int32_t code,
"INQUIRY data has changed\n");
cam_periph_lock(periph);
softc->flags &= ~DA_FLAG_PROBED;
- cam_periph_unlock(periph);
dareprobe(periph);
+ cam_periph_unlock(periph);
}
}
break;
@@ -4593,6 +4593,14 @@ dadone_probewp(struct cam_periph *periph, union ccb *d
cam_periph_assert(periph, MA_OWNED);
+ KASSERT(softc->state == DA_STATE_PROBE_WP,
+ ("State (%d) not PROBE_WP in dadone_probewp, periph %p ccb %p",
+ softc->state, periph, done_ccb));
+ KASSERT((csio->ccb_h.ccb_state & DA_CCB_TYPE_MASK) == DA_CCB_PROBE_WP,
+ ("CCB State (%lu) not PROBE_WP in dadone_probewp, periph %p ccb %p",
+ (unsigned long)csio->ccb_h.ccb_state & DA_CCB_TYPE_MASK, periph,
+ done_ccb));
+
if (softc->minimum_cmd_size > 6) {
mode_hdr10 = (struct scsi_mode_header_10 *)csio->data_ptr;
dev_spec = mode_hdr10->dev_spec;
@@ -4625,11 +4633,11 @@ dadone_probewp(struct cam_periph *periph, union ccb *d
}
free(csio->data_ptr, M_SCSIDA);
- xpt_release_ccb(done_ccb);
if ((softc->flags & DA_FLAG_CAN_RC16) != 0)
softc->state = DA_STATE_PROBE_RC16;
else
softc->state = DA_STATE_PROBE_RC;
+ xpt_release_ccb(done_ccb);
xpt_schedule(periph, priority);
return;
}
@@ -4653,6 +4661,13 @@ dadone_proberc(struct cam_periph *periph, union ccb *d
csio = &done_ccb->csio;
state = csio->ccb_h.ccb_state & DA_CCB_TYPE_MASK;
+ KASSERT(softc->state == DA_STATE_PROBE_RC || softc->state == DA_STATE_PROBE_RC16,
+ ("State (%d) not PROBE_RC* in dadone_proberc, periph %p ccb %p",
+ softc->state, periph, done_ccb));
+ KASSERT(state == DA_CCB_PROBE_RC || state == DA_CCB_PROBE_RC16,
+ ("CCB State (%lu) not PROBE_RC* in dadone_probewp, periph %p ccb %p",
+ (unsigned long)state, periph, done_ccb));
+
lbp = 0;
rdcap = NULL;
rcaplong = NULL;
@@ -4689,8 +4704,8 @@ dadone_proberc(struct cam_periph *periph, union ccb *d
*/
if (maxsector == 0xffffffff) {
free(rdcap, M_SCSIDA);
- xpt_release_ccb(done_ccb);
softc->state = DA_STATE_PROBE_RC16;
+ xpt_release_ccb(done_ccb);
xpt_schedule(periph, priority);
return;
}
@@ -4796,8 +4811,8 @@ dadone_proberc(struct cam_periph *periph, union ccb *d
cam_periph_assert(periph, MA_OWNED);
softc->flags &= ~DA_FLAG_CAN_RC16;
free(rdcap, M_SCSIDA);
- xpt_release_ccb(done_ccb);
softc->state = DA_STATE_PROBE_RC;
+ xpt_release_ccb(done_ccb);
xpt_schedule(periph, priority);
return;
}
@@ -4904,14 +4919,14 @@ dadone_proberc(struct cam_periph *periph, union ccb *d
dadeleteflag(softc, DA_DELETE_WS10, 1);
dadeleteflag(softc, DA_DELETE_UNMAP, 1);
- xpt_release_ccb(done_ccb);
softc->state = DA_STATE_PROBE_LBP;
+ xpt_release_ccb(done_ccb);
xpt_schedule(periph, priority);
return;
}
- xpt_release_ccb(done_ccb);
softc->state = DA_STATE_PROBE_BDC;
+ xpt_release_ccb(done_ccb);
xpt_schedule(periph, priority);
return;
}
@@ -4968,8 +4983,8 @@ dadone_probelbp(struct cam_periph *periph, union ccb *
}
free(lbp, M_SCSIDA);
- xpt_release_ccb(done_ccb);
softc->state = DA_STATE_PROBE_BLK_LIMITS;
+ xpt_release_ccb(done_ccb);
xpt_schedule(periph, priority);
return;
}
@@ -5062,8 +5077,8 @@ dadone_probeblklimits(struct cam_periph *periph, union
}
free(block_limits, M_SCSIDA);
- xpt_release_ccb(done_ccb);
softc->state = DA_STATE_PROBE_BDC;
+ xpt_release_ccb(done_ccb);
xpt_schedule(periph, priority);
return;
}
@@ -5163,8 +5178,8 @@ dadone_probebdc(struct cam_periph *periph, union ccb *
}
free(bdc, M_SCSIDA);
- xpt_release_ccb(done_ccb);
softc->state = DA_STATE_PROBE_ATA;
+ xpt_release_ccb(done_ccb);
xpt_schedule(periph, priority);
return;
}
@@ -5303,8 +5318,8 @@ dadone_probeata(struct cam_periph *periph, union ccb *
continue_probe = 1;
}
if (continue_probe != 0) {
- xpt_release_ccb(done_ccb);
xpt_schedule(periph, priority);
+ xpt_release_ccb(done_ccb);
return;
} else
daprobedone(periph, done_ccb);
@@ -5793,8 +5808,8 @@ dadone_tur(struct cam_periph *periph, union ccb *done_
/*timeout*/0,
/*getcount_only*/0);
}
- xpt_release_ccb(done_ccb);
softc->flags &= ~DA_FLAG_TUR_PENDING;
+ xpt_release_ccb(done_ccb);
da_periph_release_locked(periph, DA_REF_TUR);
return;
}
@@ -5806,6 +5821,8 @@ dareprobe(struct cam_periph *periph)
int status;
softc = (struct da_softc *)periph->softc;
+
+ cam_periph_assert(periph, MA_OWNED);
/* Probe in progress; don't interfere. */
if (softc->state != DA_STATE_NORMAL)
More information about the svn-src-all
mailing list