diff options
| author | Warner Losh <imp@FreeBSD.org> | 2026-01-06 05:13:38 +0000 |
|---|---|---|
| committer | Warner Losh <imp@FreeBSD.org> | 2026-01-09 05:55:32 +0000 |
| commit | 6f8e117e5d78709ff70c19e5286949b35099fa9a (patch) | |
| tree | d18a3bd2f5ba751d441c6ce2f5f93d5ac28cd0e0 | |
| parent | d650b2ceda4641475e90ba1f6d349eac98aaa963 (diff) | |
| -rw-r--r-- | sys/dev/mps/mps_sas.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sys/dev/mps/mps_sas.c b/sys/dev/mps/mps_sas.c index 8631cc6cf9f3..fb591391f6a5 100644 --- a/sys/dev/mps/mps_sas.c +++ b/sys/dev/mps/mps_sas.c @@ -80,6 +80,12 @@ #include <dev/mps/mps_table.h> #include <dev/mps/mps_sas.h> +#include <sys/sdt.h> + +/* SDT Probes */ +SDT_PROBE_DEFINE4(cam, , mps, complete, "union ccb *", + "struct mps_command *", "u_int", "u32"); + /* * static array to check SCSI OpCode for EEDP protection bits */ @@ -2076,6 +2082,9 @@ mpssas_scsiio_complete(struct mps_softc *sc, struct mps_command *cm) sc->SSU_refcount--; } + SDT_PROBE4(cam, , mps, complete, ccb, cm, sassc->flags, + sc->mapping_table[target_id].device_info); + /* Take the fast path to completion */ if (cm->cm_reply == NULL) { if (mpssas_get_ccbstatus(ccb) == CAM_REQ_INPROG) { |
