Lines Matching refs:abt
3108 struct abort_entry_24xx *abt; in qla24xx_abort_command() local
3139 abt = dma_pool_zalloc(ha->s_dma_pool, GFP_KERNEL, &abt_dma); in qla24xx_abort_command()
3140 if (abt == NULL) { in qla24xx_abort_command()
3146 abt->entry_type = ABORT_IOCB_TYPE; in qla24xx_abort_command()
3147 abt->entry_count = 1; in qla24xx_abort_command()
3148 abt->handle = MAKE_HANDLE(req->id, abt->handle); in qla24xx_abort_command()
3149 abt->nport_handle = cpu_to_le16(fcport->loop_id); in qla24xx_abort_command()
3150 abt->handle_to_abort = MAKE_HANDLE(req->id, handle); in qla24xx_abort_command()
3151 abt->port_id[0] = fcport->d_id.b.al_pa; in qla24xx_abort_command()
3152 abt->port_id[1] = fcport->d_id.b.area; in qla24xx_abort_command()
3153 abt->port_id[2] = fcport->d_id.b.domain; in qla24xx_abort_command()
3154 abt->vp_index = fcport->vha->vp_idx; in qla24xx_abort_command()
3156 abt->req_que_no = cpu_to_le16(req->id); in qla24xx_abort_command()
3158 rval = qla2x00_issue_iocb(vha, abt, abt_dma, 0); in qla24xx_abort_command()
3162 } else if (abt->entry_status != 0) { in qla24xx_abort_command()
3165 abt->entry_status); in qla24xx_abort_command()
3167 } else if (abt->nport_handle != cpu_to_le16(0)) { in qla24xx_abort_command()
3170 le16_to_cpu(abt->nport_handle)); in qla24xx_abort_command()
3171 if (abt->nport_handle == CS_IOCB_ERROR) in qla24xx_abort_command()
3180 dma_pool_free(ha->s_dma_pool, abt, abt_dma); in qla24xx_abort_command()