Lines Matching refs:abt
3199 struct abort_entry_24xx *abt; in qla24xx_abort_command() local
3230 abt = dma_pool_zalloc(ha->s_dma_pool, GFP_KERNEL, &abt_dma); in qla24xx_abort_command()
3231 if (abt == NULL) { in qla24xx_abort_command()
3237 abt->entry_type = ABORT_IOCB_TYPE; in qla24xx_abort_command()
3238 abt->entry_count = 1; in qla24xx_abort_command()
3239 abt->handle = make_handle(req->id, abt->handle); in qla24xx_abort_command()
3240 abt->nport_handle = cpu_to_le16(fcport->loop_id); in qla24xx_abort_command()
3241 abt->handle_to_abort = make_handle(req->id, handle); in qla24xx_abort_command()
3242 abt->port_id[0] = fcport->d_id.b.al_pa; in qla24xx_abort_command()
3243 abt->port_id[1] = fcport->d_id.b.area; in qla24xx_abort_command()
3244 abt->port_id[2] = fcport->d_id.b.domain; in qla24xx_abort_command()
3245 abt->vp_index = fcport->vha->vp_idx; in qla24xx_abort_command()
3247 abt->req_que_no = cpu_to_le16(req->id); in qla24xx_abort_command()
3249 rval = qla2x00_issue_iocb(vha, abt, abt_dma, 0); in qla24xx_abort_command()
3253 } else if (abt->entry_status != 0) { in qla24xx_abort_command()
3256 abt->entry_status); in qla24xx_abort_command()
3258 } else if (abt->nport_handle != cpu_to_le16(0)) { in qla24xx_abort_command()
3261 le16_to_cpu(abt->nport_handle)); in qla24xx_abort_command()
3262 if (abt->nport_handle == cpu_to_le16(CS_IOCB_ERROR)) in qla24xx_abort_command()
3271 dma_pool_free(ha->s_dma_pool, abt, abt_dma); in qla24xx_abort_command()