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);
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to