Lines Matching refs:mlist
474 lpfc_free_ct_rsp(struct lpfc_hba *phba, struct lpfc_dmabuf *mlist) in lpfc_free_ct_rsp() argument
478 list_for_each_entry_safe(mlast, next_mlast, &mlist->list, list) { in lpfc_free_ct_rsp()
483 lpfc_mbuf_free(phba, mlist->virt, mlist->phys); in lpfc_free_ct_rsp()
484 kfree(mlist); in lpfc_free_ct_rsp()
492 struct lpfc_dmabuf *mlist = NULL; in lpfc_alloc_ct_rsp() local
503 if (mlist) in lpfc_alloc_ct_rsp()
504 lpfc_free_ct_rsp(phba, mlist); in lpfc_alloc_ct_rsp()
518 if (mlist) in lpfc_alloc_ct_rsp()
519 lpfc_free_ct_rsp(phba, mlist); in lpfc_alloc_ct_rsp()
524 if (!mlist) in lpfc_alloc_ct_rsp()
525 mlist = mp; in lpfc_alloc_ct_rsp()
527 list_add_tail(&mp->list, &mlist->list); in lpfc_alloc_ct_rsp()
542 return mlist; in lpfc_alloc_ct_rsp()