58ea30f514
Header guard symbols should match their file name to make guard collisions less likely. Cleaned up with scripts/clean-header-guards.pl, followed by some renaming of new guard symbols picked by the script to better ones. Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <20190315145123.28030-6-armbru@redhat.com> [Rebase to master: update include/hw/net/ne2000-isa.h]
29 lines
741 B
C
29 lines
741 B
C
/*
|
|
* QEMU VMWARE paravirtual RDMA QP Operations
|
|
*
|
|
* Copyright (C) 2018 Oracle
|
|
* Copyright (C) 2018 Red Hat Inc
|
|
*
|
|
* Authors:
|
|
* Yuval Shaia <yuval.shaia@oracle.com>
|
|
* Marcel Apfelbaum <marcel@redhat.com>
|
|
*
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
* See the COPYING file in the top-level directory.
|
|
*
|
|
*/
|
|
|
|
#ifndef PVRDMA_QP_OPS_H
|
|
#define PVRDMA_QP_OPS_H
|
|
|
|
#include "pvrdma.h"
|
|
|
|
int pvrdma_qp_ops_init(void);
|
|
void pvrdma_qp_ops_fini(void);
|
|
void pvrdma_qp_send(PVRDMADev *dev, uint32_t qp_handle);
|
|
void pvrdma_qp_recv(PVRDMADev *dev, uint32_t qp_handle);
|
|
void pvrdma_srq_recv(PVRDMADev *dev, uint32_t srq_handle);
|
|
void pvrdma_cq_poll(RdmaDeviceResources *dev_res, uint32_t cq_handle);
|
|
|
|
#endif
|