mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
hw/xen: Rename 'ram_memory' global variable as 'xen_memory'
To avoid a potential global variable shadow in hw/i386/pc_piix.c::pc_init1(), rename Xen's "ram_memory" as "xen_memory". Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: David Woodhouse <dwmw@amazon.co.uk> Message-Id: <20231114143816.71079-11-philmd@linaro.org>
This commit is contained in:
parent
9cd909ac35
commit
b934c3fa21
4 changed files with 12 additions and 12 deletions
|
@ -114,14 +114,14 @@ static void xen_init_ram(MachineState *machine)
|
|||
block_len = GUEST_RAM1_BASE + ram_size[1];
|
||||
}
|
||||
|
||||
memory_region_init_ram(&ram_memory, NULL, "xen.ram", block_len,
|
||||
memory_region_init_ram(&xen_memory, NULL, "xen.ram", block_len,
|
||||
&error_fatal);
|
||||
|
||||
memory_region_init_alias(&ram_lo, NULL, "xen.ram.lo", &ram_memory,
|
||||
memory_region_init_alias(&ram_lo, NULL, "xen.ram.lo", &xen_memory,
|
||||
GUEST_RAM0_BASE, ram_size[0]);
|
||||
memory_region_add_subregion(sysmem, GUEST_RAM0_BASE, &ram_lo);
|
||||
if (ram_size[1] > 0) {
|
||||
memory_region_init_alias(&ram_hi, NULL, "xen.ram.hi", &ram_memory,
|
||||
memory_region_init_alias(&ram_hi, NULL, "xen.ram.hi", &xen_memory,
|
||||
GUEST_RAM1_BASE, ram_size[1]);
|
||||
memory_region_add_subregion(sysmem, GUEST_RAM1_BASE, &ram_hi);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue