svn commit: r310782 - head/sys/cam/ctl

Alexander Motin mav at FreeBSD.org
Thu Dec 29 18:08:05 UTC 2016


Author: mav
Date: Thu Dec 29 18:08:04 2016
New Revision: 310782
URL: https://svnweb.freebsd.org/changeset/base/310782

Log:
  Fix build with enabled debug after r310778.
  
  MFC after:	2 weeks

Modified:
  head/sys/cam/ctl/ctl.c

Modified: head/sys/cam/ctl/ctl.c
==============================================================================
--- head/sys/cam/ctl/ctl.c	Thu Dec 29 17:31:38 2016	(r310781)
+++ head/sys/cam/ctl/ctl.c	Thu Dec 29 18:08:04 2016	(r310782)
@@ -12519,7 +12519,7 @@ ctl_datamove(union ctl_io *io)
 {
 	void (*fe_datamove)(union ctl_io *io);
 
-	mtx_assert(&CTL_SOFTC(io)->ctl_lock, MA_NOTOWNED);
+	mtx_assert(&((struct ctl_softc *)CTL_SOFTC(io))->ctl_lock, MA_NOTOWNED);
 
 	CTL_DEBUG_PRINT(("ctl_datamove\n"));
 
@@ -13012,7 +13012,7 @@ static void
 ctl_datamove_remote(union ctl_io *io)
 {
 
-	mtx_assert(&CTL_SOFTC(io)->ctl_lock, MA_NOTOWNED);
+	mtx_assert(&((struct ctl_softc *)CTL_SOFTC(io))->ctl_lock, MA_NOTOWNED);
 
 	if (io->io_hdr.flags & CTL_FLAG_FAILOVER) {
 		ctl_failover_io(io, /*have_lock*/ 0);


More information about the svn-src-all mailing list