• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/scsi/lpfc/

Lines Matching defs:bmp

219 lpfc_gen_req(struct lpfc_hba *phba, struct lpfc_dmabuf *bmp,
242 icmd->un.genreq64.bdl.addrHigh = putPaddrHigh(bmp->phys);
243 icmd->un.genreq64.bdl.addrLow = putPaddrLow(bmp->phys);
250 geniocb->context3 = (uint8_t *) bmp;
295 struct lpfc_dmabuf *bmp, struct lpfc_nodelist *ndlp,
300 struct ulp_bde64 *bpl = (struct ulp_bde64 *) bmp->virt;
313 status = lpfc_gen_req(phba, bmp, inmp, outmp, cmpl, ndlp, 0,
420 struct lpfc_dmabuf *bmp;
432 bmp = (struct lpfc_dmabuf *) cmdiocb->context3;
496 lpfc_mbuf_free(phba, bmp->virt, bmp->phys);
498 kfree(bmp);
510 struct lpfc_dmabuf *bmp;
522 bmp = (struct lpfc_dmabuf *) cmdiocb->context3;
535 lpfc_mbuf_free(phba, bmp->virt, bmp->phys);
537 kfree(bmp);
590 struct lpfc_dmabuf *mp, *bmp;
609 bmp = kmalloc(sizeof (struct lpfc_dmabuf), GFP_KERNEL);
610 if (!bmp)
613 INIT_LIST_HEAD(&bmp->list);
614 bmp->virt = lpfc_mbuf_alloc(phba, MEM_PRI, &(bmp->phys));
615 if (!bmp->virt)
626 bpl = (struct ulp_bde64 *) bmp->virt;
703 if (!lpfc_ct_cmd(phba, mp, bmp, ndlp, cmpl, rsp_size))
707 lpfc_mbuf_free(phba, bmp->virt, bmp->phys);
709 kfree(bmp);
722 struct lpfc_dmabuf *bmp = cmdiocb->context3;
761 lpfc_mbuf_free(phba, bmp->virt, bmp->phys);
763 kfree(bmp);
772 struct lpfc_dmabuf *mp, *bmp;
796 bmp = kmalloc(sizeof (struct lpfc_dmabuf), GFP_KERNEL);
797 if (!bmp)
800 bmp->virt = lpfc_mbuf_alloc(phba, 0, &(bmp->phys));
801 if (!bmp->virt)
805 INIT_LIST_HEAD(&bmp->list);
1116 bpl = (struct ulp_bde64 *) bmp->virt;
1125 if (!lpfc_ct_cmd(phba, mp, bmp, ndlp, cmpl, FC_MAX_NS_RSP))
1128 lpfc_mbuf_free(phba, bmp->virt, bmp->phys);
1130 kfree(bmp);