Lines Matching refs:abt
3196 struct abort_entry_24xx *abt;
3227 abt = dma_pool_zalloc(ha->s_dma_pool, GFP_KERNEL, &abt_dma);
3228 if (abt == NULL) {
3234 abt->entry_type = ABORT_IOCB_TYPE;
3235 abt->entry_count = 1;
3236 abt->handle = make_handle(req->id, abt->handle);
3237 abt->nport_handle = cpu_to_le16(fcport->loop_id);
3238 abt->handle_to_abort = make_handle(req->id, handle);
3239 abt->port_id[0] = fcport->d_id.b.al_pa;
3240 abt->port_id[1] = fcport->d_id.b.area;
3241 abt->port_id[2] = fcport->d_id.b.domain;
3242 abt->vp_index = fcport->vha->vp_idx;
3244 abt->req_que_no = cpu_to_le16(req->id);
3246 rval = qla2x00_issue_iocb(vha, abt, abt_dma, 0);
3250 } else if (abt->entry_status != 0) {
3253 abt->entry_status);
3255 } else if (abt->nport_handle != cpu_to_le16(0)) {
3258 le16_to_cpu(abt->nport_handle));
3259 if (abt->nport_handle == cpu_to_le16(CS_IOCB_ERROR))
3268 dma_pool_free(ha->s_dma_pool, abt, abt_dma);