2 * RDMA device: Debug utilities
4 * Copyright (C) 2018 Oracle
5 * Copyright (C) 2018 Red Hat Inc
12 * This work is licensed under the terms of the GNU GPL, version 2 or later.
13 * See the COPYING file in the top-level directory.
20 #include "qemu/error-report.h"
21 #include "hw/pci/pci.h"
22 #include "sysemu/dma.h"
24 #define rdma_error_report(fmt, ...) \
25 error_report("%s: " fmt, "rdma", ## __VA_ARGS__)
26 #define rdma_warn_report(fmt, ...) \
27 warn_report("%s: " fmt, "rdma", ## __VA_ARGS__)
28 #define rdma_info_report(fmt, ...) \
29 info_report("%s: " fmt, "rdma", ## __VA_ARGS__)
31 typedef struct RdmaProtectedGQueue {
34 } RdmaProtectedGQueue;
36 typedef struct RdmaProtectedGSList {
39 } RdmaProtectedGSList;
41 void *rdma_pci_dma_map(PCIDevice *dev, dma_addr_t addr, dma_addr_t plen);
42 void rdma_pci_dma_unmap(PCIDevice *dev, void *buffer, dma_addr_t len);
43 void rdma_protected_gqueue_init(RdmaProtectedGQueue *list);
44 void rdma_protected_gqueue_destroy(RdmaProtectedGQueue *list);
45 void rdma_protected_gqueue_append_int64(RdmaProtectedGQueue *list,
47 int64_t rdma_protected_gqueue_pop_int64(RdmaProtectedGQueue *list);
48 void rdma_protected_gslist_init(RdmaProtectedGSList *list);
49 void rdma_protected_gslist_destroy(RdmaProtectedGSList *list);
50 void rdma_protected_gslist_append_int32(RdmaProtectedGSList *list,
52 void rdma_protected_gslist_remove_int32(RdmaProtectedGSList *list,
55 static inline void addrconf_addr_eui48(uint8_t *eui, const char *addr)
60 memcpy(eui + 5, addr + 3, 3);