hw/elf_ops: Fix a typo
[qemu/ar7.git] / hw / rdma / vmw / pvrdma_qp_ops.h
blobbf2b15c5ce93dcd35038e2ca52d155348c951473
1 /*
2 * QEMU VMWARE paravirtual RDMA QP Operations
4 * Copyright (C) 2018 Oracle
5 * Copyright (C) 2018 Red Hat Inc
7 * Authors:
8 * Yuval Shaia <yuval.shaia@oracle.com>
9 * Marcel Apfelbaum <marcel@redhat.com>
11 * This work is licensed under the terms of the GNU GPL, version 2 or later.
12 * See the COPYING file in the top-level directory.
16 #ifndef PVRDMA_QP_OPS_H
17 #define PVRDMA_QP_OPS_H
19 #include "pvrdma.h"
21 int pvrdma_qp_ops_init(void);
22 void pvrdma_qp_ops_fini(void);
23 void pvrdma_qp_send(PVRDMADev *dev, uint32_t qp_handle);
24 void pvrdma_qp_recv(PVRDMADev *dev, uint32_t qp_handle);
25 void pvrdma_srq_recv(PVRDMADev *dev, uint32_t srq_handle);
26 void pvrdma_cq_poll(RdmaDeviceResources *dev_res, uint32_t cq_handle);
28 #endif