svn commit: r251373 - head/sys/dev/isp
Marius Strobl
marius at FreeBSD.org
Tue Jun 4 11:05:58 UTC 2013
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;
More information about the svn-src-all
mailing list