Author: ken
Date: Fri Feb 17 20:15:27 2017
New Revision: 313895
URL: https://svnweb.freebsd.org/changeset/base/313895

Log:
  Make ctl(4) build with CTL_IO_DELAY defined.
  
  sys/cam/ctl/ctl.c:
        In ctl_datamove(), inside CTL_IO_DELAY, add a lun variable and fill
        it in before trying to dereference it.
  
  MFC after:    3 days
  Sponsored by: Spectra Logic

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

Modified: head/sys/cam/ctl/ctl.c
==============================================================================
--- head/sys/cam/ctl/ctl.c      Fri Feb 17 20:07:35 2017        (r313894)
+++ head/sys/cam/ctl/ctl.c      Fri Feb 17 20:15:27 2017        (r313895)
@@ -12405,6 +12405,9 @@ ctl_datamove(union ctl_io *io)
        if (io->io_hdr.flags & CTL_FLAG_DELAY_DONE) {
                io->io_hdr.flags &= ~CTL_FLAG_DELAY_DONE;
        } else {
+               struct ctl_lun *lun;
+
+               lun = CTL_LUN(io);
                if ((lun != NULL)
                 && (lun->delay_info.datamove_delay > 0)) {
 
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to