Lines Matching defs:rxbmp
2958 struct lpfc_dmabuf *rxbmp;
2971 rxbmp = kmalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
2972 if (rxbmp != NULL) {
2973 rxbmp->virt = lpfc_mbuf_alloc(phba, 0, &rxbmp->phys);
2974 if (rxbmp->virt) {
2975 INIT_LIST_HEAD(&rxbmp->list);
2976 rxbpl = (struct ulp_bde64 *) rxbmp->virt;
2981 if (!cmdiocbq || !rxbmp || !rxbpl || !rxbuffer || !pring) {
3065 if (rxbmp) {
3066 if (rxbmp->virt)
3067 lpfc_mbuf_free(phba, rxbmp->virt, rxbmp->phys);
3068 kfree(rxbmp);