Lines Matching defs:txbmp
3037 struct lpfc_dmabuf *txbmp;
3150 txbmp = kmalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
3152 if (txbmp) {
3153 txbmp->virt = lpfc_mbuf_alloc(phba, 0, &txbmp->phys);
3154 if (txbmp->virt) {
3155 INIT_LIST_HEAD(&txbmp->list);
3156 txbpl = (struct ulp_bde64 *) txbmp->virt;
3162 if (!cmdiocbq || !txbmp || !txbpl || !txbuffer || !txbmp->virt) {
3213 cmdiocbq->bpl_dmabuf = txbmp;
3216 lpfc_sli_prep_xmit_seq64(phba, cmdiocbq, txbmp, 0, txxri,
3221 lpfc_sli_prep_xmit_seq64(phba, cmdiocbq, txbmp,
3294 if (txbmp != NULL) {
3298 lpfc_mbuf_free(phba, txbmp->virt, txbmp->phys);
3300 kfree(txbmp);