mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 16:53:55 -06:00
memory: add parameter errp to memory_region_init_ram
Add parameter errp to memory_region_init_ram and update all call sites to pass in &error_abort. Signed-off-by: Hu Tao <hutao@cn.fujitsu.com> Reviewed-by: Peter Crosthwaite <peter.crosthwaite@xilinx.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
ef701d7b6f
commit
49946538d2
75 changed files with 210 additions and 135 deletions
|
@ -204,7 +204,7 @@ void mips_r4k_init(MachineState *machine)
|
|||
((unsigned int)ram_size / (1 << 20)));
|
||||
exit(1);
|
||||
}
|
||||
memory_region_init_ram(ram, NULL, "mips_r4k.ram", ram_size);
|
||||
memory_region_init_ram(ram, NULL, "mips_r4k.ram", ram_size, &error_abort);
|
||||
vmstate_register_ram_global(ram);
|
||||
|
||||
memory_region_add_subregion(address_space_mem, 0, ram);
|
||||
|
@ -231,7 +231,8 @@ void mips_r4k_init(MachineState *machine)
|
|||
#endif
|
||||
if ((bios_size > 0) && (bios_size <= BIOS_SIZE)) {
|
||||
bios = g_new(MemoryRegion, 1);
|
||||
memory_region_init_ram(bios, NULL, "mips_r4k.bios", BIOS_SIZE);
|
||||
memory_region_init_ram(bios, NULL, "mips_r4k.bios", BIOS_SIZE,
|
||||
&error_abort);
|
||||
vmstate_register_ram_global(bios);
|
||||
memory_region_set_readonly(bios, true);
|
||||
memory_region_add_subregion(get_system_memory(), 0x1fc00000, bios);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue