Lines Matching refs:mp_req
577 struct bnx2fc_mp_req *mp_req = &(io_req->mp_req); in bnx2fc_free_mp_resc() local
583 mp_req->tm_flags = 0; in bnx2fc_free_mp_resc()
584 if (mp_req->mp_req_bd) { in bnx2fc_free_mp_resc()
586 mp_req->mp_req_bd, in bnx2fc_free_mp_resc()
587 mp_req->mp_req_bd_dma); in bnx2fc_free_mp_resc()
588 mp_req->mp_req_bd = NULL; in bnx2fc_free_mp_resc()
590 if (mp_req->mp_resp_bd) { in bnx2fc_free_mp_resc()
592 mp_req->mp_resp_bd, in bnx2fc_free_mp_resc()
593 mp_req->mp_resp_bd_dma); in bnx2fc_free_mp_resc()
594 mp_req->mp_resp_bd = NULL; in bnx2fc_free_mp_resc()
596 if (mp_req->req_buf) { in bnx2fc_free_mp_resc()
598 mp_req->req_buf, in bnx2fc_free_mp_resc()
599 mp_req->req_buf_dma); in bnx2fc_free_mp_resc()
600 mp_req->req_buf = NULL; in bnx2fc_free_mp_resc()
602 if (mp_req->resp_buf) { in bnx2fc_free_mp_resc()
604 mp_req->resp_buf, in bnx2fc_free_mp_resc()
605 mp_req->resp_buf_dma); in bnx2fc_free_mp_resc()
606 mp_req->resp_buf = NULL; in bnx2fc_free_mp_resc()
612 struct bnx2fc_mp_req *mp_req; in bnx2fc_init_mp_req() local
620 mp_req = (struct bnx2fc_mp_req *)&(io_req->mp_req); in bnx2fc_init_mp_req()
621 memset(mp_req, 0, sizeof(struct bnx2fc_mp_req)); in bnx2fc_init_mp_req()
623 mp_req->req_len = sizeof(struct fcp_cmnd); in bnx2fc_init_mp_req()
624 io_req->data_xfer_len = mp_req->req_len; in bnx2fc_init_mp_req()
625 mp_req->req_buf = dma_alloc_coherent(&hba->pcidev->dev, PAGE_SIZE, in bnx2fc_init_mp_req()
626 &mp_req->req_buf_dma, in bnx2fc_init_mp_req()
628 if (!mp_req->req_buf) { in bnx2fc_init_mp_req()
634 mp_req->resp_buf = dma_alloc_coherent(&hba->pcidev->dev, PAGE_SIZE, in bnx2fc_init_mp_req()
635 &mp_req->resp_buf_dma, in bnx2fc_init_mp_req()
637 if (!mp_req->resp_buf) { in bnx2fc_init_mp_req()
642 memset(mp_req->req_buf, 0, PAGE_SIZE); in bnx2fc_init_mp_req()
643 memset(mp_req->resp_buf, 0, PAGE_SIZE); in bnx2fc_init_mp_req()
647 mp_req->mp_req_bd = dma_alloc_coherent(&hba->pcidev->dev, sz, in bnx2fc_init_mp_req()
648 &mp_req->mp_req_bd_dma, in bnx2fc_init_mp_req()
650 if (!mp_req->mp_req_bd) { in bnx2fc_init_mp_req()
655 mp_req->mp_resp_bd = dma_alloc_coherent(&hba->pcidev->dev, sz, in bnx2fc_init_mp_req()
656 &mp_req->mp_resp_bd_dma, in bnx2fc_init_mp_req()
658 if (!mp_req->mp_resp_bd) { in bnx2fc_init_mp_req()
664 addr = mp_req->req_buf_dma; in bnx2fc_init_mp_req()
665 mp_req_bd = mp_req->mp_req_bd; in bnx2fc_init_mp_req()
676 mp_resp_bd = mp_req->mp_resp_bd; in bnx2fc_init_mp_req()
677 addr = mp_req->resp_buf_dma; in bnx2fc_init_mp_req()
752 tm_req = (struct bnx2fc_mp_req *)&(io_req->mp_req); in bnx2fc_initiate_tmf()
902 abts_req = (struct bnx2fc_mp_req *)&(abts_io_req->mp_req); in bnx2fc_initiate_abts()
1532 tm_req = &(io_req->mp_req); in bnx2fc_process_tm_compl()
1719 fcp_cmnd->fc_tm_flags = io_req->mp_req.tm_flags; in bnx2fc_build_fcp_cmnd()