Lines Matching refs:create_req

577 	Mpi3CreateReplyQueueRequest_t create_req;  in mpi3mr_create_op_reply_queue()  local
640 memset(&create_req, 0, sizeof(create_req)); in mpi3mr_create_op_reply_queue()
654 create_req.HostTag = MPI3MR_HOSTTAG_INITCMDS; in mpi3mr_create_op_reply_queue()
655 create_req.Function = MPI3_FUNCTION_CREATE_REPLY_QUEUE; in mpi3mr_create_op_reply_queue()
656 create_req.QueueID = qid; in mpi3mr_create_op_reply_queue()
657 create_req.Flags = MPI3_CREATE_REPLY_QUEUE_FLAGS_INT_ENABLE_ENABLE; in mpi3mr_create_op_reply_queue()
658 create_req.MSIxIndex = sc->irq_ctx[qid - 1].msix_index; in mpi3mr_create_op_reply_queue()
659 create_req.BaseAddress = (U64)op_reply_q->q_base_phys; in mpi3mr_create_op_reply_queue()
660 create_req.Size = op_reply_q->num_replies; in mpi3mr_create_op_reply_queue()
663 retval = mpi3mr_submit_admin_cmd(sc, &create_req, in mpi3mr_create_op_reply_queue()
664 sizeof(create_req)); in mpi3mr_create_op_reply_queue()
726 Mpi3CreateRequestQueueRequest_t create_req; in mpi3mr_create_op_req_queue() local
788 memset(&create_req, 0, sizeof(create_req)); in mpi3mr_create_op_req_queue()
802 create_req.HostTag = MPI3MR_HOSTTAG_INITCMDS; in mpi3mr_create_op_req_queue()
803 create_req.Function = MPI3_FUNCTION_CREATE_REQUEST_QUEUE; in mpi3mr_create_op_req_queue()
804 create_req.QueueID = req_qid; in mpi3mr_create_op_req_queue()
805 create_req.Flags = 0; in mpi3mr_create_op_req_queue()
806 create_req.ReplyQueueID = reply_qid; in mpi3mr_create_op_req_queue()
807 create_req.BaseAddress = (U64)op_req_q->q_base_phys; in mpi3mr_create_op_req_queue()
808 create_req.Size = op_req_q->num_reqs; in mpi3mr_create_op_req_queue()
811 retval = mpi3mr_submit_admin_cmd(sc, &create_req, in mpi3mr_create_op_req_queue()
812 sizeof(create_req)); in mpi3mr_create_op_req_queue()