Lines Matching refs:mp
63 struct lpfc_dmabuf *mp, uint32_t size) in lpfc_ct_ignore_hbq_buffer() argument
65 if (!mp) { in lpfc_ct_ignore_hbq_buffer()
79 struct lpfc_dmabuf *mp, uint32_t size) in lpfc_ct_unsol_buffer() argument
81 lpfc_ct_ignore_hbq_buffer(phba, piocbq, mp, size); in lpfc_ct_unsol_buffer()
89 struct lpfc_dmabuf *mp = NULL; in lpfc_ct_unsol_event() local
147 mp = lpfc_sli_ringpostbuf_get(phba, pring, in lpfc_ct_unsol_event()
150 lpfc_ct_unsol_buffer(phba, iocbq, mp, size); in lpfc_ct_unsol_event()
151 lpfc_in_buf_free(phba, mp); in lpfc_ct_unsol_event()
179 struct lpfc_dmabuf *mp; in lpfc_alloc_ct_rsp() local
187 mp = kmalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL); in lpfc_alloc_ct_rsp()
188 if (!mp) { in lpfc_alloc_ct_rsp()
194 INIT_LIST_HEAD(&mp->list); in lpfc_alloc_ct_rsp()
198 mp->virt = lpfc_mbuf_alloc(phba, MEM_PRI, &(mp->phys)); in lpfc_alloc_ct_rsp()
200 mp->virt = lpfc_mbuf_alloc(phba, 0, &(mp->phys)); in lpfc_alloc_ct_rsp()
202 if (!mp->virt) { in lpfc_alloc_ct_rsp()
203 kfree(mp); in lpfc_alloc_ct_rsp()
211 mlist = mp; in lpfc_alloc_ct_rsp()
213 list_add_tail(&mp->list, &mlist->list); in lpfc_alloc_ct_rsp()
217 bpl->addrLow = le32_to_cpu(putPaddrLow(mp->phys) ); in lpfc_alloc_ct_rsp()
218 bpl->addrHigh = le32_to_cpu(putPaddrHigh(mp->phys) ); in lpfc_alloc_ct_rsp()
391 lpfc_ns_rsp(struct lpfc_vport *vport, struct lpfc_dmabuf *mp, uint32_t Size) in lpfc_ns_rsp() argument
395 (struct lpfc_sli_ct_request *) mp->virt; in lpfc_ns_rsp()
408 list_add_tail(&head, &mp->list); in lpfc_ns_rsp()
409 list_for_each_entry_safe(mp, next_mp, &head, list) { in lpfc_ns_rsp()
410 mlast = mp; in lpfc_ns_rsp()
1054 struct lpfc_dmabuf *mp, *bmp; in lpfc_ns_cmd() local
1072 mp = kmalloc(sizeof (struct lpfc_dmabuf), GFP_KERNEL); in lpfc_ns_cmd()
1073 if (!mp) { in lpfc_ns_cmd()
1078 INIT_LIST_HEAD(&mp->list); in lpfc_ns_cmd()
1079 mp->virt = lpfc_mbuf_alloc(phba, MEM_PRI, &(mp->phys)); in lpfc_ns_cmd()
1080 if (!mp->virt) { in lpfc_ns_cmd()
1106 bpl->addrHigh = le32_to_cpu(putPaddrHigh(mp->phys) ); in lpfc_ns_cmd()
1107 bpl->addrLow = le32_to_cpu(putPaddrLow(mp->phys) ); in lpfc_ns_cmd()
1129 CtReq = (struct lpfc_sli_ct_request *) mp->virt; in lpfc_ns_cmd()
1217 if (!lpfc_ct_cmd(vport, mp, bmp, ndlp, cmpl, rsp_size, retry)) { in lpfc_ns_cmd()
1235 lpfc_mbuf_free(phba, mp->virt, mp->phys); in lpfc_ns_cmd()
1237 kfree(mp); in lpfc_ns_cmd()
1313 struct lpfc_dmabuf *mp, *bmp; in lpfc_fdmi_cmd() local
1328 mp = kmalloc(sizeof (struct lpfc_dmabuf), GFP_KERNEL); in lpfc_fdmi_cmd()
1329 if (!mp) in lpfc_fdmi_cmd()
1332 mp->virt = lpfc_mbuf_alloc(phba, 0, &(mp->phys)); in lpfc_fdmi_cmd()
1333 if (!mp->virt) in lpfc_fdmi_cmd()
1345 INIT_LIST_HEAD(&mp->list); in lpfc_fdmi_cmd()
1352 CtReq = (struct lpfc_sli_ct_request *) mp->virt; in lpfc_fdmi_cmd()
1654 bpl->addrHigh = le32_to_cpu(putPaddrHigh(mp->phys) ); in lpfc_fdmi_cmd()
1655 bpl->addrLow = le32_to_cpu(putPaddrLow(mp->phys) ); in lpfc_fdmi_cmd()
1665 if (!lpfc_ct_cmd(vport, mp, bmp, ndlp, cmpl, FC_MAX_NS_RSP, 0)) in lpfc_fdmi_cmd()
1677 lpfc_mbuf_free(phba, mp->virt, mp->phys); in lpfc_fdmi_cmd()
1679 kfree(mp); in lpfc_fdmi_cmd()