/* * Copyright (c) 2015-2016 QLogic Corporation * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and /or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef __QELR_VERBS_H__ #define __QELR_VERBS_H__ #include #include #include #include #include int qelr_query_device(struct ibv_context *context, const struct ibv_query_device_ex_input *input, struct ibv_device_attr_ex *attr, size_t attr_size); int qelr_query_port(struct ibv_context *context, uint8_t port, struct ibv_port_attr *attr); struct ibv_pd *qelr_alloc_pd(struct ibv_context *context); int qelr_dealloc_pd(struct ibv_pd *ibpd); struct ibv_mr *qelr_reg_mr(struct ibv_pd *ibpd, void *addr, size_t len, uint64_t hca_va, int access); int qelr_dereg_mr(struct verbs_mr *mr); struct ibv_cq *qelr_create_cq(struct ibv_context *context, int cqe, struct ibv_comp_channel *channel, int comp_vector); int qelr_arm_cq(struct ibv_cq *ibcq, int solicited); int qelr_poll_cq(struct ibv_cq *ibcq, int num_entries, struct ibv_wc *wc); void qelr_cq_event(struct ibv_cq *ibcq); int qelr_destroy_cq(struct ibv_cq *); struct ibv_qp *qelr_create_qp(struct ibv_pd *pd, struct ibv_qp_init_attr *attrs); int qelr_modify_qp(struct ibv_qp *ibqp, struct ibv_qp_attr *attr, int attr_mask); int qelr_query_qp(struct ibv_qp *qp, struct ibv_qp_attr *attr, int attr_mask, struct ibv_qp_init_attr *init_attr); int qelr_destroy_qp(struct ibv_qp *ibqp); int qelr_post_send(struct ibv_qp *ib_qp, struct ibv_send_wr *wr, struct ibv_send_wr **bad_wr); int qelr_post_recv(struct ibv_qp *ibqp, struct ibv_recv_wr *wr, struct ibv_recv_wr **bad_wr); int qelr_query_srq(struct ibv_srq *ibv_srq, struct ibv_srq_attr *attr); int qelr_modify_srq(struct ibv_srq *ibv_srq, struct ibv_srq_attr *attr, int attr_mask); struct ibv_srq *qelr_create_srq(struct ibv_pd *pd, struct ibv_srq_init_attr *init_attr); int qelr_destroy_srq(struct ibv_srq *ibv_srq); int qelr_post_srq_recv(struct ibv_srq *ibsrq, struct ibv_recv_wr *wr, struct ibv_recv_wr **bad_wr); void qelr_async_event(struct ibv_context *context, struct ibv_async_event *event); struct ibv_xrcd *qelr_open_xrcd(struct ibv_context *context, struct ibv_xrcd_init_attr *init_attr); int qelr_close_xrcd(struct ibv_xrcd *ibxrcd); struct ibv_srq *qelr_create_srq_ex(struct ibv_context *context, struct ibv_srq_init_attr_ex *init_attr); struct ibv_qp *qelr_create_qp_ex(struct ibv_context *context, struct ibv_qp_init_attr_ex *attrx); int qelr_get_srq_num(struct ibv_srq *srq, uint32_t *srq_num); #endif /* __QELR_VERBS_H__ */