From f228730cd01207092a30e3c540b85818990759fa Mon Sep 17 00:00:00 2001 From: marius Date: Wed, 5 Jun 2013 01:22:59 +0000 Subject: - Flag sym(4) as supporting unmapped I/O; all necessary conversion actually already has been done as part of r246713. - Revert a part of r251402 in order to appease clang. --- sys/dev/sym/sym_hipd.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'sys/dev/sym') diff --git a/sys/dev/sym/sym_hipd.c b/sys/dev/sym/sym_hipd.c index b438800..8dc7361 100644 --- a/sys/dev/sym/sym_hipd.c +++ b/sys/dev/sym/sym_hipd.c @@ -613,7 +613,7 @@ static m_addr_t ___dma_getp(m_pool_s *mp) { m_vtob_s *vbp; void *vaddr = NULL; - bus_addr_t baddr; + bus_addr_t baddr = 0; vbp = __sym_calloc(&mp0, sizeof(*vbp), "VTOB"); if (!vbp) @@ -7871,7 +7871,6 @@ sym_setup_data_and_start(hcb_p np, struct ccb_scsiio *csio, ccb_p cp) xpt_freeze_simq(np->sim, 1); csio->ccb_h.status |= CAM_RELEASE_SIMQ; } - return; } /* @@ -8057,7 +8056,7 @@ static void sym_action2(struct cam_sim *sim, union ccb *ccb) 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) -- cgit v1.1