mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-31 04:06:46 +00:00 
			
		
		
		
	 8110fa1d94
			
		
	
	
		8110fa1d94
		
	
	
	
	
		
			
			Generated using: $ ./scripts/codeconverter/converter.py -i \ --pattern=TypeCheckMacro $(git grep -l '' -- '*.[ch]') Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Reviewed-by: Juan Quintela <quintela@redhat.com> Message-Id: <20200831210740.126168-12-ehabkost@redhat.com> Reviewed-by: Juan Quintela <quintela@redhat.com> Message-Id: <20200831210740.126168-13-ehabkost@redhat.com> Message-Id: <20200831210740.126168-14-ehabkost@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
		
			
				
	
	
		
			38 lines
		
	
	
		
			836 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			836 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * RDMA device interface
 | |
|  *
 | |
|  * Copyright (C) 2019 Oracle
 | |
|  * Copyright (C) 2019 Red Hat Inc
 | |
|  *
 | |
|  * Authors:
 | |
|  *     Yuval Shaia <yuval.shaia@oracle.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_H
 | |
| #define RDMA_H
 | |
| 
 | |
| #include "qom/object.h"
 | |
| 
 | |
| #define INTERFACE_RDMA_PROVIDER "rdma"
 | |
| 
 | |
| typedef struct RdmaProviderClass RdmaProviderClass;
 | |
| DECLARE_CLASS_CHECKERS(RdmaProviderClass, RDMA_PROVIDER,
 | |
|                        INTERFACE_RDMA_PROVIDER)
 | |
| #define RDMA_PROVIDER(obj) \
 | |
|     INTERFACE_CHECK(RdmaProvider, (obj), \
 | |
|                     INTERFACE_RDMA_PROVIDER)
 | |
| 
 | |
| typedef struct RdmaProvider RdmaProvider;
 | |
| 
 | |
| struct RdmaProviderClass {
 | |
|     InterfaceClass parent;
 | |
| 
 | |
|     void (*print_statistics)(Monitor *mon, RdmaProvider *obj);
 | |
| };
 | |
| 
 | |
| #endif
 |