Lines Matching refs:create_req
1549 struct mpi3_create_reply_queue_request create_req; in mpi3mr_create_op_reply_q() local
1584 memset(&create_req, 0, sizeof(create_req)); in mpi3mr_create_op_reply_q()
1594 create_req.host_tag = cpu_to_le16(MPI3MR_HOSTTAG_INITCMDS); in mpi3mr_create_op_reply_q()
1595 create_req.function = MPI3_FUNCTION_CREATE_REPLY_QUEUE; in mpi3mr_create_op_reply_q()
1596 create_req.queue_id = cpu_to_le16(reply_qid); in mpi3mr_create_op_reply_q()
1597 create_req.flags = MPI3_CREATE_REPLY_QUEUE_FLAGS_INT_ENABLE_ENABLE; in mpi3mr_create_op_reply_q()
1598 create_req.msix_index = cpu_to_le16(mrioc->intr_info[midx].msix_index); in mpi3mr_create_op_reply_q()
1600 create_req.flags |= in mpi3mr_create_op_reply_q()
1602 create_req.base_address = cpu_to_le64( in mpi3mr_create_op_reply_q()
1605 create_req.base_address = cpu_to_le64( in mpi3mr_create_op_reply_q()
1608 create_req.size = cpu_to_le16(op_reply_q->num_replies); in mpi3mr_create_op_reply_q()
1611 retval = mpi3mr_admin_request_post(mrioc, &create_req, in mpi3mr_create_op_reply_q()
1612 sizeof(create_req), 1); in mpi3mr_create_op_reply_q()
1663 struct mpi3_create_request_queue_request create_req; in mpi3mr_create_op_req_q() local
1693 memset(&create_req, 0, sizeof(create_req)); in mpi3mr_create_op_req_q()
1703 create_req.host_tag = cpu_to_le16(MPI3MR_HOSTTAG_INITCMDS); in mpi3mr_create_op_req_q()
1704 create_req.function = MPI3_FUNCTION_CREATE_REQUEST_QUEUE; in mpi3mr_create_op_req_q()
1705 create_req.queue_id = cpu_to_le16(req_qid); in mpi3mr_create_op_req_q()
1707 create_req.flags = in mpi3mr_create_op_req_q()
1709 create_req.base_address = cpu_to_le64( in mpi3mr_create_op_req_q()
1712 create_req.base_address = cpu_to_le64( in mpi3mr_create_op_req_q()
1714 create_req.reply_queue_id = cpu_to_le16(reply_qid); in mpi3mr_create_op_req_q()
1715 create_req.size = cpu_to_le16(op_req_q->num_requests); in mpi3mr_create_op_req_q()
1718 retval = mpi3mr_admin_request_post(mrioc, &create_req, in mpi3mr_create_op_req_q()
1719 sizeof(create_req), 1); in mpi3mr_create_op_req_q()