Loading exec-obsolete.h +1 −1 Original line number Diff line number Diff line Loading @@ -37,7 +37,7 @@ void cpu_unregister_io_memory(int table_address); struct MemoryRegionSection; void cpu_register_physical_memory_log(struct MemoryRegionSection *section, bool readable, bool readonly); bool readonly); void qemu_register_coalesced_mmio(target_phys_addr_t addr, ram_addr_t size); void qemu_unregister_coalesced_mmio(target_phys_addr_t addr, ram_addr_t size); Loading exec.c +1 −1 Original line number Diff line number Diff line Loading @@ -2529,7 +2529,7 @@ static subpage_t *subpage_init (target_phys_addr_t base, ram_addr_t *phys, before calculating this offset. This should not be a problem unless the low bits of start_addr and region_offset differ. */ void cpu_register_physical_memory_log(MemoryRegionSection *section, bool readable, bool readonly) bool readonly) { target_phys_addr_t start_addr = section->offset_within_address_space; ram_addr_t size = section->size; Loading memory.c +2 −2 Original line number Diff line number Diff line Loading @@ -346,7 +346,7 @@ static void as_memory_range_add(AddressSpace *as, FlatRange *fr) .readonly = fr->readonly, }; cpu_register_physical_memory_log(§ion, fr->readable, fr->readonly); cpu_register_physical_memory_log(§ion, fr->readonly); } static void as_memory_range_del(AddressSpace *as, FlatRange *fr) Loading @@ -359,7 +359,7 @@ static void as_memory_range_del(AddressSpace *as, FlatRange *fr) .readonly = fr->readonly, }; cpu_register_physical_memory_log(§ion, true, false); cpu_register_physical_memory_log(§ion, false); } static void as_memory_log_start(AddressSpace *as, FlatRange *fr) Loading Loading
exec-obsolete.h +1 −1 Original line number Diff line number Diff line Loading @@ -37,7 +37,7 @@ void cpu_unregister_io_memory(int table_address); struct MemoryRegionSection; void cpu_register_physical_memory_log(struct MemoryRegionSection *section, bool readable, bool readonly); bool readonly); void qemu_register_coalesced_mmio(target_phys_addr_t addr, ram_addr_t size); void qemu_unregister_coalesced_mmio(target_phys_addr_t addr, ram_addr_t size); Loading
exec.c +1 −1 Original line number Diff line number Diff line Loading @@ -2529,7 +2529,7 @@ static subpage_t *subpage_init (target_phys_addr_t base, ram_addr_t *phys, before calculating this offset. This should not be a problem unless the low bits of start_addr and region_offset differ. */ void cpu_register_physical_memory_log(MemoryRegionSection *section, bool readable, bool readonly) bool readonly) { target_phys_addr_t start_addr = section->offset_within_address_space; ram_addr_t size = section->size; Loading
memory.c +2 −2 Original line number Diff line number Diff line Loading @@ -346,7 +346,7 @@ static void as_memory_range_add(AddressSpace *as, FlatRange *fr) .readonly = fr->readonly, }; cpu_register_physical_memory_log(§ion, fr->readable, fr->readonly); cpu_register_physical_memory_log(§ion, fr->readonly); } static void as_memory_range_del(AddressSpace *as, FlatRange *fr) Loading @@ -359,7 +359,7 @@ static void as_memory_range_del(AddressSpace *as, FlatRange *fr) .readonly = fr->readonly, }; cpu_register_physical_memory_log(§ion, true, false); cpu_register_physical_memory_log(§ion, false); } static void as_memory_log_start(AddressSpace *as, FlatRange *fr) Loading