svn commit: r328445 - head/sys/cam/scsi

Scott Long scottl at FreeBSD.org
Fri Jan 26 18:42:29 UTC 2018


Author: scottl
Date: Fri Jan 26 18:42:28 2018
New Revision: 328445
URL: https://svnweb.freebsd.org/changeset/base/328445

Log:
  Fix a cut-and-paste error in a panic message

Modified:
  head/sys/cam/scsi/scsi_da.c

Modified: head/sys/cam/scsi/scsi_da.c
==============================================================================
--- head/sys/cam/scsi/scsi_da.c	Fri Jan 26 18:17:11 2018	(r328444)
+++ head/sys/cam/scsi/scsi_da.c	Fri Jan 26 18:42:28 2018	(r328445)
@@ -1589,7 +1589,7 @@ da_periph_release(struct cam_periph *periph, da_ref_to
 	    da_ref_text[token], token);
 	cnt = atomic_fetchadd_int(&softc->ref_flags[token], -1);
 	if (cnt != 1)
-		panic("Unholding %d with cnt = %d", token, cnt);
+		panic("Releasing %d with cnt = %d", token, cnt);
 }
 
 static inline void


More information about the svn-src-head mailing list