 794e8f301a
			
		
	
	
		794e8f301a
		
	
	
	
	
		
			
			Anonymous and file-backed RAM allocation are now almost exactly the same. Reduce code duplication by moving RAM mmap code out of oslib-posix.c and exec.c. Reported-by: Marc-André Lureau <mlureau@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com> Reviewed-by: Paolo Bonzini <pbonzini@redhat.com> Acked-by: Paolo Bonzini <pbonzini@redhat.com> Tested-by: Thibaut Collet <thibaut.collet@6wind.com>
		
			
				
	
	
		
			11 lines
		
	
	
		
			199 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			199 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef QEMU_MMAP_ALLOC
 | |
| #define QEMU_MMAP_ALLOC
 | |
| 
 | |
| #include "qemu-common.h"
 | |
| 
 | |
| void *qemu_ram_mmap(int fd, size_t size, size_t align, bool shared);
 | |
| 
 | |
| void qemu_ram_munmap(void *ptr, size_t size);
 | |
| 
 | |
| #endif
 |