mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-31 12:07:31 +00:00 
			
		
		
		
	 96637bcdf9
			
		
	
	
		96637bcdf9
		
	
	
	
	
		
			
			Please, note that some of the code supporting memory statistics is still around (eg. virtio_balloon_receive_stats() and reset_stats()). Also, the qmp_query_balloon() function is synchronous and thus doesn't make any use of the (not fully working) monitor's asynchronous command support (the old non-qapi implementation did). Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
		
			
				
	
	
		
			31 lines
		
	
	
		
			737 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			737 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * Balloon
 | |
|  *
 | |
|  * Copyright IBM, Corp. 2008
 | |
|  *
 | |
|  * Authors:
 | |
|  *  Anthony Liguori   <aliguori@us.ibm.com>
 | |
|  *
 | |
|  * This work is licensed under the terms of the GNU GPL, version 2.  See
 | |
|  * the COPYING file in the top-level directory.
 | |
|  *
 | |
|  */
 | |
| 
 | |
| #ifndef _QEMU_BALLOON_H
 | |
| #define _QEMU_BALLOON_H
 | |
| 
 | |
| #include "monitor.h"
 | |
| #include "qapi-types.h"
 | |
| 
 | |
| typedef void (QEMUBalloonEvent)(void *opaque, ram_addr_t target);
 | |
| typedef void (QEMUBalloonStatus)(void *opaque, BalloonInfo *info);
 | |
| 
 | |
| int qemu_add_balloon_handler(QEMUBalloonEvent *event_func,
 | |
| 			     QEMUBalloonStatus *stat_func, void *opaque);
 | |
| void qemu_remove_balloon_handler(void *opaque);
 | |
| 
 | |
| int do_balloon(Monitor *mon, const QDict *params,
 | |
|                MonitorCompletion cb, void *opaque);
 | |
| 
 | |
| #endif
 |