 0b8fa32f55
			
		
	
	
		0b8fa32f55
		
	
	
	
	
		
			
			Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <20190523143508.25387-4-armbru@redhat.com> [Rebased with conflicts resolved automatically, except for hw/usb/dev-hub.c hw/misc/exynos4210_rng.c hw/misc/bcm2835_rng.c hw/misc/aspeed_scu.c hw/display/virtio-vga.c hw/arm/stm32f205_soc.c; ui/cocoa.m fixed up]
		
			
				
	
	
		
			57 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			57 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * QEMU Host Memory Backend
 | |
|  *
 | |
|  * Copyright (C) 2013-2014 Red Hat Inc
 | |
|  *
 | |
|  * Authors:
 | |
|  *   Igor Mammedov <imammedo@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.
 | |
|  */
 | |
| 
 | |
| #include "qemu/osdep.h"
 | |
| #include "sysemu/hostmem.h"
 | |
| #include "qapi/error.h"
 | |
| #include "qemu/module.h"
 | |
| #include "qom/object_interfaces.h"
 | |
| 
 | |
| #define TYPE_MEMORY_BACKEND_RAM "memory-backend-ram"
 | |
| 
 | |
| static void
 | |
| ram_backend_memory_alloc(HostMemoryBackend *backend, Error **errp)
 | |
| {
 | |
|     char *name;
 | |
| 
 | |
|     if (!backend->size) {
 | |
|         error_setg(errp, "can't create backend with size 0");
 | |
|         return;
 | |
|     }
 | |
| 
 | |
|     name = host_memory_backend_get_name(backend);
 | |
|     memory_region_init_ram_shared_nomigrate(&backend->mr, OBJECT(backend), name,
 | |
|                            backend->size, backend->share, errp);
 | |
|     g_free(name);
 | |
| }
 | |
| 
 | |
| static void
 | |
| ram_backend_class_init(ObjectClass *oc, void *data)
 | |
| {
 | |
|     HostMemoryBackendClass *bc = MEMORY_BACKEND_CLASS(oc);
 | |
| 
 | |
|     bc->alloc = ram_backend_memory_alloc;
 | |
| }
 | |
| 
 | |
| static const TypeInfo ram_backend_info = {
 | |
|     .name = TYPE_MEMORY_BACKEND_RAM,
 | |
|     .parent = TYPE_MEMORY_BACKEND,
 | |
|     .class_init = ram_backend_class_init,
 | |
| };
 | |
| 
 | |
| static void register_types(void)
 | |
| {
 | |
|     type_register_static(&ram_backend_info);
 | |
| }
 | |
| 
 | |
| type_init(register_types);
 |