mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-31 12:07:31 +00:00 
			
		
		
		
	 8dbbca5c05
			
		
	
	
		8dbbca5c05
		
	
	
	
	
		
			
			This is a counterpart to the HMP "info rdma" command. It is being added with an "x-" prefix because this QMP command is intended as an adhoc debugging tool and will thus not be modelled in QAPI as fully structured data, nor will it have long term guaranteed stability. The existing HMP command is rewritten to call the QMP command. Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
		
			
				
	
	
		
			38 lines
		
	
	
		
			837 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			837 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 (*format_statistics)(RdmaProvider *obj, GString *buf);
 | |
| };
 | |
| 
 | |
| #endif
 |