git: 1987ff8abca2 - stable/12 - cam: don't lock while handling an AC_UNIT_ATTENTION
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 08 Mar 2022 07:12:29 UTC
The branch stable/12 has been updated by rew:
URL: https://cgit.FreeBSD.org/src/commit/?id=1987ff8abca2c9bdff7f385ea2fd1c60cf5b3aeb
commit 1987ff8abca2c9bdff7f385ea2fd1c60cf5b3aeb
Author: Robert Wing <rew@FreeBSD.org>
AuthorDate: 2022-01-04 01:21:58 +0000
Commit: Robert Wing <rew@FreeBSD.org>
CommitDate: 2022-03-08 07:07:46 +0000
cam: don't lock while handling an AC_UNIT_ATTENTION
Don't take the device_mtx lock in daasync() when handling an
AC_UNIT_ATTENTION. Instead, assert the lock is held before modifying the
periph's softc flags.
The device_mtx lock is taken in xptdevicetraverse() before daasync()
is eventually called in xpt_async_bcast().
PR: 240917, 226510, 226578
Reviewed by: imp
Differential Revision: https://reviews.freebsd.org/D27735
(cherry picked from commit bb8441184bab60cd8a07c2b94bd6c4ae8b56ec25)
---
sys/cam/scsi/scsi_da.c | 15 +++++----------
1 file changed, 5 insertions(+), 10 deletions(-)
diff --git a/sys/cam/scsi/scsi_da.c b/sys/cam/scsi/scsi_da.c
index 4f773b75498b..3177be9515cb 100644
--- a/sys/cam/scsi/scsi_da.c
+++ b/sys/cam/scsi/scsi_da.c
@@ -2108,7 +2108,7 @@ daasync(void *callback_arg, u_int32_t code,
}
break;
}
- case AC_UNIT_ATTENTION:
+ case AC_UNIT_ATTENTION: /* Called for this path: periph locked */
{
union ccb *ccb;
int error_code, sense_key, asc, ascq;
@@ -2118,9 +2118,7 @@ daasync(void *callback_arg, u_int32_t code,
/*
* Handle all UNIT ATTENTIONs except our own, as they will be
- * handled by daerror(). Since this comes from a different periph,
- * that periph's lock is held, not ours, so we have to take it ours
- * out to touch softc flags.
+ * handled by daerror().
*/
if (xpt_path_periph(ccb->ccb_h.path) != periph &&
scsi_extract_sense_ccb(ccb,
@@ -2128,22 +2126,19 @@ daasync(void *callback_arg, u_int32_t code,
if (asc == 0x2A && ascq == 0x09) {
xpt_print(ccb->ccb_h.path,
"Capacity data has changed\n");
- cam_periph_lock(periph);
+ cam_periph_assert(periph, MA_OWNED);
softc->flags &= ~DA_FLAG_PROBED;
dareprobe(periph);
- cam_periph_unlock(periph);
} else if (asc == 0x28 && ascq == 0x00) {
- cam_periph_lock(periph);
+ cam_periph_assert(periph, MA_OWNED);
softc->flags &= ~DA_FLAG_PROBED;
- cam_periph_unlock(periph);
disk_media_changed(softc->disk, M_NOWAIT);
} else if (asc == 0x3F && ascq == 0x03) {
xpt_print(ccb->ccb_h.path,
"INQUIRY data has changed\n");
- cam_periph_lock(periph);
+ cam_periph_assert(periph, MA_OWNED);
softc->flags &= ~DA_FLAG_PROBED;
dareprobe(periph);
- cam_periph_unlock(periph);
}
}
break;