- Add line counter to ease navigation in log - Print rdma instead of pvrdma Signed-off-by: Yuval Shaia <yuval.shaia@oracle.com> Reviewed-by: Marcel Apfelbaum <marcel.apfelbaum@gmail.com> Message-Id: <20180805153518.2983-4-yuval.shaia@oracle.com> Signed-off-by: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
		
			
				
	
	
		
			52 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * 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
 | 
						|
 | 
						|
#include "qemu/osdep.h"
 | 
						|
#include "hw/pci/pci.h"
 | 
						|
#include "sysemu/dma.h"
 | 
						|
 | 
						|
#define pr_info(fmt, ...) \
 | 
						|
    fprintf(stdout, "%s: %-20s (%3d): " fmt, "rdma",  __func__, __LINE__,\
 | 
						|
           ## __VA_ARGS__)
 | 
						|
 | 
						|
#define pr_err(fmt, ...) \
 | 
						|
    fprintf(stderr, "%s: Error at %-20s (%3d): " fmt, "rdma", __func__, \
 | 
						|
        __LINE__, ## __VA_ARGS__)
 | 
						|
 | 
						|
#ifdef PVRDMA_DEBUG
 | 
						|
extern unsigned long pr_dbg_cnt;
 | 
						|
 | 
						|
#define init_pr_dbg(void) \
 | 
						|
{ \
 | 
						|
    pr_dbg_cnt = 0; \
 | 
						|
}
 | 
						|
 | 
						|
#define pr_dbg(fmt, ...) \
 | 
						|
    fprintf(stdout, "%lx %ld: %-20s (%3d): " fmt, pthread_self(), pr_dbg_cnt++, \
 | 
						|
            __func__, __LINE__, ## __VA_ARGS__)
 | 
						|
#else
 | 
						|
#define init_pr_dbg(void)
 | 
						|
#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
 |