svn commit: r251947 - stable/9/sys/dev/sym

Marius Strobl marius at FreeBSD.org
Tue Jun 18 15:14:21 UTC 2013


Author: marius
Date: Tue Jun 18 15:14:20 2013
New Revision: 251947
URL: http://svnweb.freebsd.org/changeset/base/251947

Log:
  MFC: r251403 (partial)
  
  Flag sym(4) as supporting unmapped I/O; all necessary conversion actually
  already has been done as part of r246713 (MFC'ed to stable/9 in r251874).

Modified:
  stable/9/sys/dev/sym/sym_hipd.c
Directory Properties:
  stable/9/sys/   (props changed)
  stable/9/sys/dev/   (props changed)

Modified: stable/9/sys/dev/sym/sym_hipd.c
==============================================================================
--- stable/9/sys/dev/sym/sym_hipd.c	Tue Jun 18 15:06:02 2013	(r251946)
+++ stable/9/sys/dev/sym/sym_hipd.c	Tue Jun 18 15:14:20 2013	(r251947)
@@ -7869,7 +7869,6 @@ sym_setup_data_and_start(hcb_p np, struc
 		xpt_freeze_simq(np->sim, 1);
 		csio->ccb_h.status |= CAM_RELEASE_SIMQ;
 	}
-	return;
 }
 
 /*
@@ -8055,7 +8054,7 @@ static void sym_action2(struct cam_sim *
 		if ((np->features & FE_WIDE) != 0)
 			cpi->hba_inquiry |= PI_WIDE_16;
 		cpi->target_sprt = 0;
-		cpi->hba_misc = 0;
+		cpi->hba_misc = PIM_UNMAPPED;
 		if (np->usrflags & SYM_SCAN_TARGETS_HILO)
 			cpi->hba_misc |= PIM_SCANHILO;
 		if (np->usrflags & SYM_AVOID_BUS_RESET)


More information about the svn-src-stable-9 mailing list