The branch stable/13 has been updated by mav:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=f9c51d3a1d103dc112dfcc60da018468c7157e54

commit f9c51d3a1d103dc112dfcc60da018468c7157e54
Author:     Warner Losh <[email protected]>
AuthorDate: 2021-11-16 03:31:48 +0000
Commit:     Alexander Motin <[email protected]>
CommitDate: 2022-01-06 19:01:19 +0000

    mps: Fix debugging line
    
    Print cm instead of sc here, as is done in mpr. We can get the sc from
    cm, but not vice versa.
    
    Sponsored by:           Netflix
    
    (cherry picked from commit b086bc0bf1dd78b161e3ba7a5732fc49ea3c1b82)
---
 sys/dev/mps/mps_sas.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/dev/mps/mps_sas.c b/sys/dev/mps/mps_sas.c
index 136e3586ef20..971ad8f4a123 100644
--- a/sys/dev/mps/mps_sas.c
+++ b/sys/dev/mps/mps_sas.c
@@ -1560,7 +1560,7 @@ mpssas_scsiio_timeout(void *data)
        MPS_FUNCTRACE(sc);
        mtx_assert(&sc->mps_mtx, MA_OWNED);
 
-       mps_dprint(sc, MPS_XINFO|MPS_RECOVERY, "Timeout checking cm %p\n", sc);
+       mps_dprint(sc, MPS_XINFO|MPS_RECOVERY, "Timeout checking cm %p\n", cm);
 
        /*
         * Run the interrupt handler to make sure it's not pending.  This

Reply via email to