Headers in include/sysemu/ are not only related to system *emulation*, they are also used by virtualization. Rename as system/ which is clearer. Files renamed manually then mechanical change using sed tool. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Tested-by: Lei Yang <leiyang@redhat.com> Message-Id: <20241203172445.28576-1-philmd@linaro.org>
		
			
				
	
	
		
			59 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			1.5 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 "system/hostmem.h"
 | 
						|
#include "qapi/error.h"
 | 
						|
#include "qemu/module.h"
 | 
						|
#include "qom/object_interfaces.h"
 | 
						|
 | 
						|
static bool
 | 
						|
ram_backend_memory_alloc(HostMemoryBackend *backend, Error **errp)
 | 
						|
{
 | 
						|
    g_autofree char *name = NULL;
 | 
						|
    uint32_t ram_flags;
 | 
						|
 | 
						|
    if (!backend->size) {
 | 
						|
        error_setg(errp, "can't create backend with size 0");
 | 
						|
        return false;
 | 
						|
    }
 | 
						|
 | 
						|
    name = host_memory_backend_get_name(backend);
 | 
						|
    ram_flags = backend->share ? RAM_SHARED : 0;
 | 
						|
    ram_flags |= backend->reserve ? 0 : RAM_NORESERVE;
 | 
						|
    ram_flags |= backend->guest_memfd ? RAM_GUEST_MEMFD : 0;
 | 
						|
    return memory_region_init_ram_flags_nomigrate(&backend->mr, OBJECT(backend),
 | 
						|
                                                  name, backend->size,
 | 
						|
                                                  ram_flags, errp);
 | 
						|
}
 | 
						|
 | 
						|
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);
 |