Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 4 Jun 2013 11:05:58 +0000 (UTC)
From:      Marius Strobl <marius@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r251373 - head/sys/dev/isp
Message-ID:  <201306041105.r54B5wUG057162@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: marius
Date: Tue Jun  4 11:05:57 2013
New Revision: 251373
URL: http://svnweb.freebsd.org/changeset/base/251373

Log:
  Flag isp(4) as supporting unmapped I/O; all necessary conversion actually
  already has been done as part of r246713.
  
  Reviewed by:	mjacob

Modified:
  head/sys/dev/isp/isp_freebsd.c

Modified: head/sys/dev/isp/isp_freebsd.c
==============================================================================
--- head/sys/dev/isp/isp_freebsd.c	Tue Jun  4 10:47:44 2013	(r251372)
+++ head/sys/dev/isp/isp_freebsd.c	Tue Jun  4 11:05:57 2013	(r251373)
@@ -5449,7 +5449,7 @@ isp_action(struct cam_sim *sim, union cc
 		if (IS_FC(isp)) {
 			fcparam *fcp = FCPARAM(isp, bus);
 
-			cpi->hba_misc = PIM_NOBUSRESET;
+			cpi->hba_misc = PIM_NOBUSRESET | PIM_UNMAPPED;
 
 			/*
 			 * Because our loop ID can shift from time to time,
@@ -5479,7 +5479,7 @@ isp_action(struct cam_sim *sim, union cc
 		} else {
 			sdparam *sdp = SDPARAM(isp, bus);
 			cpi->hba_inquiry = PI_SDTR_ABLE|PI_TAG_ABLE|PI_WIDE_16;
-			cpi->hba_misc = 0;
+			cpi->hba_misc = PIM_UNMAPPED;
 			cpi->initiator_id = sdp->isp_initiator_id;
 			cpi->base_transfer_speed = 3300;
 			cpi->transport = XPORT_SPI;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201306041105.r54B5wUG057162>