Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 26 Jan 2018 18:42:28 +0000 (UTC)
From:      Scott Long <scottl@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r328445 - head/sys/cam/scsi
Message-ID:  <201801261842.w0QIgSJn031564@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201801261842.w0QIgSJn031564>