mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-31 20:44:16 +00:00 
			
		
		
		
	 5bb8b73987
			
		
	
	
		5bb8b73987
		
	
	
	
	
		
			
			The functions handles errors internaly, callers have nothing to do with the return value. Signed-off-by: Yuval Shaia <yuval.shaia@oracle.com> Message-Id: <20190109202140.4051-1-yuval.shaia@oracle.com> Reviewed-by: Marcel Apfelbaum<marcel.apfelbaum@gmail.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Signed-off-by: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
		
			
				
	
	
		
			28 lines
		
	
	
		
			674 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			674 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_H
 | |
| #define PVRDMA_QP_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_cq_poll(RdmaDeviceResources *dev_res, uint32_t cq_handle);
 | |
| 
 | |
| #endif
 |