Lines Matching defs:txbmp
3111 struct lpfc_dmabuf *txbmp;
3224 txbmp = kmalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
3226 if (txbmp) {
3227 txbmp->virt = lpfc_mbuf_alloc(phba, 0, &txbmp->phys);
3228 if (txbmp->virt) {
3229 INIT_LIST_HEAD(&txbmp->list);
3230 txbpl = (struct ulp_bde64 *) txbmp->virt;
3236 if (!cmdiocbq || !txbmp || !txbpl || !txbuffer || !txbmp->virt) {
3279 cmd->un.xseq64.bdl.addrHigh = putPaddrHigh(txbmp->phys);
3280 cmd->un.xseq64.bdl.addrLow = putPaddrLow(txbmp->phys);
3299 cmdiocbq->context3 = txbmp;
3374 if (txbmp != NULL) {
3378 lpfc_mbuf_free(phba, txbmp->virt, txbmp->phys);
3380 kfree(txbmp);