scripts/cocci: Patch to remove unnecessary memory_region_set_readonly()
Add a semantic patch to remove memory_region_set_readonly() calls on ROM memory regions. Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
This commit is contained in:
parent
cf949cbb70
commit
bb2f4e8d77
@ -48,6 +48,21 @@ p << possible_memory_region_init_rom.p;
|
||||
cocci.print_main("potential use of memory_region_init_rom*() in ", p)
|
||||
|
||||
|
||||
// Do not call memory_region_set_readonly() on ROM alias
|
||||
@@
|
||||
expression ROM, E1, E2, E3, E4;
|
||||
expression ALIAS, E5, E6, E7, E8;
|
||||
@@
|
||||
(
|
||||
memory_region_init_rom(ROM, E1, E2, E3, E4);
|
||||
|
|
||||
memory_region_init_rom_nomigrate(ROM, E1, E2, E3, E4);
|
||||
)
|
||||
...
|
||||
memory_region_init_alias(ALIAS, E5, E6, ROM, E7, E8);
|
||||
- memory_region_set_readonly(ALIAS, true);
|
||||
|
||||
|
||||
// Replace by-hand memory_region_init_ram_nomigrate/vmstate_register_ram
|
||||
// code sequences with use of the new memory_region_init_ram function.
|
||||
// Similarly for the _rom and _rom_device functions.
|
||||
|
Loading…
Reference in New Issue
Block a user