Author: sbruno
Date: Fri Feb 17 06:47:16 2012
New Revision: 231860
URL: http://svn.freebsd.org/changeset/base/231860

Log:
  During work to port isci(4) to stable/7 I noted that the maxio portion of
  struct ccb_pathinq from sys/cam/cam_ccb.h wasn't added to stable/7 at all
  and didn't appear in stable/8 until svn R195534.  Since __FreeBSD_version
  did not get bumped until svn R195634, assume that maxio is valid at 800102
  or higher.
  
  Obtained from:        Yahoo! Inc.
  MFC after: 0 days

Modified:
  head/sys/dev/isci/isci_controller.c

Modified: head/sys/dev/isci/isci_controller.c
==============================================================================
--- head/sys/dev/isci/isci_controller.c Fri Feb 17 06:26:11 2012        
(r231859)
+++ head/sys/dev/isci/isci_controller.c Fri Feb 17 06:47:16 2012        
(r231860)
@@ -549,7 +549,7 @@ void isci_action(struct cam_sim *sim, un
                        cpi->hba_eng_cnt = 0;
                        cpi->max_target = SCI_MAX_REMOTE_DEVICES - 1;
                        cpi->max_lun = ISCI_MAX_LUN;
-#if __FreeBSD_version >= 704100
+#if __FreeBSD_version >= 800102
                        cpi->maxio = isci_io_request_get_max_io_size();
 #endif
                        cpi->unit_number = cam_sim_unit(sim);
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to