b7d89466dd
Clean up includes so that osdep.h is included first and headers which it implies are not included manually. This commit was created with scripts/clean-includes, with the changes to the following files manually reverted: contrib/libvhost-user/libvhost-user-glib.h contrib/libvhost-user/libvhost-user.c contrib/libvhost-user/libvhost-user.h linux-user/mips64/cpu_loop.c linux-user/mips64/signal.c linux-user/sparc64/cpu_loop.c linux-user/sparc64/signal.c linux-user/x86_64/cpu_loop.c linux-user/x86_64/signal.c target/s390x/gen-features.c tests/migration/s390x/a-b-bios.c tests/test-rcu-simpleq.c tests/test-rcu-tailq.c Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <20181204172535.2799-1-armbru@redhat.com> Acked-by: Eduardo Habkost <ehabkost@redhat.com> Acked-by: Halil Pasic <pasic@linux.ibm.com> Acked-by: Yuval Shaia <yuval.shaia@oracle.com> Acked-by: Viktor Prutyanov <viktor.prutyanov@phystech.edu>
42 lines
1.1 KiB
C
42 lines
1.1 KiB
C
/*
|
|
* QEMU VMWARE paravirtual RDMA ring utilities
|
|
*
|
|
* 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_DEV_RING_H
|
|
#define PVRDMA_DEV_RING_H
|
|
|
|
|
|
#define MAX_RING_NAME_SZ 32
|
|
|
|
typedef struct PvrdmaRing {
|
|
char name[MAX_RING_NAME_SZ];
|
|
PCIDevice *dev;
|
|
uint32_t max_elems;
|
|
size_t elem_sz;
|
|
struct pvrdma_ring *ring_state; /* used only for unmap */
|
|
int npages;
|
|
void **pages;
|
|
} PvrdmaRing;
|
|
|
|
int pvrdma_ring_init(PvrdmaRing *ring, const char *name, PCIDevice *dev,
|
|
struct pvrdma_ring *ring_state, uint32_t max_elems,
|
|
size_t elem_sz, dma_addr_t *tbl, uint32_t npages);
|
|
void *pvrdma_ring_next_elem_read(PvrdmaRing *ring);
|
|
void pvrdma_ring_read_inc(PvrdmaRing *ring);
|
|
void *pvrdma_ring_next_elem_write(PvrdmaRing *ring);
|
|
void pvrdma_ring_write_inc(PvrdmaRing *ring);
|
|
void pvrdma_ring_free(PvrdmaRing *ring);
|
|
|
|
#endif
|