2018-02-09 13:15:00 +00:00
|
|
|
/*
|
|
|
|
* RDMA device: Debug 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 RDMA_UTILS_H
|
|
|
|
#define RDMA_UTILS_H
|
|
|
|
|
2018-03-21 15:22:07 +00:00
|
|
|
#include "qemu/osdep.h"
|
|
|
|
#include "hw/pci/pci.h"
|
|
|
|
#include "sysemu/dma.h"
|
2018-02-09 13:15:00 +00:00
|
|
|
|
|
|
|
#define pr_info(fmt, ...) \
|
2018-08-05 15:35:08 +00:00
|
|
|
fprintf(stdout, "%s: %-20s (%3d): " fmt, "rdma", __func__, __LINE__,\
|
2018-02-09 13:15:00 +00:00
|
|
|
## __VA_ARGS__)
|
|
|
|
|
|
|
|
#define pr_err(fmt, ...) \
|
2018-08-05 15:35:08 +00:00
|
|
|
fprintf(stderr, "%s: Error at %-20s (%3d): " fmt, "rdma", __func__, \
|
2018-02-09 13:15:00 +00:00
|
|
|
__LINE__, ## __VA_ARGS__)
|
|
|
|
|
|
|
|
#ifdef PVRDMA_DEBUG
|
2018-08-05 15:35:08 +00:00
|
|
|
extern unsigned long pr_dbg_cnt;
|
|
|
|
|
|
|
|
#define init_pr_dbg(void) \
|
|
|
|
{ \
|
|
|
|
pr_dbg_cnt = 0; \
|
|
|
|
}
|
|
|
|
|
2018-02-09 13:15:00 +00:00
|
|
|
#define pr_dbg(fmt, ...) \
|
2018-08-05 15:35:08 +00:00
|
|
|
fprintf(stdout, "%lx %ld: %-20s (%3d): " fmt, pthread_self(), pr_dbg_cnt++, \
|
|
|
|
__func__, __LINE__, ## __VA_ARGS__)
|
2018-02-09 13:15:00 +00:00
|
|
|
#else
|
2018-08-05 15:35:08 +00:00
|
|
|
#define init_pr_dbg(void)
|
2018-02-09 13:15:00 +00:00
|
|
|
#define pr_dbg(fmt, ...)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void *rdma_pci_dma_map(PCIDevice *dev, dma_addr_t addr, dma_addr_t plen);
|
|
|
|
void rdma_pci_dma_unmap(PCIDevice *dev, void *buffer, dma_addr_t len);
|
|
|
|
|
|
|
|
#endif
|