Lines Matching defs:dmabuf
466 struct lpfc_dmabuf *dmabuf = NULL;
488 dmabuf = kzalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
489 if (!dmabuf) {
493 dmabuf->virt = lpfc_mbuf_alloc(phba, MEM_PRI, &dmabuf->phys);
494 if (!dmabuf->virt) {
498 memcpy(dmabuf->virt, &phba->fc_fabparam,
503 if (dmabuf)
504 lpfc_reg_vfi(mboxq, vport, dmabuf->phys);
510 mboxq->ctx_buf = dmabuf;
521 if (dmabuf) {
522 if (dmabuf->virt)
523 lpfc_mbuf_free(phba, dmabuf->virt, dmabuf->phys);
524 kfree(dmabuf);