mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 09:13:55 -06:00
exec/memory: Add symbolic value for memory listener priority for accel
Add MEMORY_LISTNER_PRIORITY_ACCEL for the symbolic value for the memory listener to replace the hard-coded value 10 for accel. No functional change intended. Signed-off-by: Isaku Yamahata <isaku.yamahata@intel.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Message-Id: <feebe423becc6e2aa375f59f6abce9a85bc15abb.1687279702.git.isaku.yamahata@intel.com> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
This commit is contained in:
parent
db5a06b3a2
commit
5369a36c4f
10 changed files with 12 additions and 10 deletions
|
@ -291,7 +291,7 @@ static MemoryListener hax_memory_listener = {
|
|||
.region_add = hax_region_add,
|
||||
.region_del = hax_region_del,
|
||||
.log_sync = hax_log_sync,
|
||||
.priority = 10,
|
||||
.priority = MEMORY_LISTENER_PRIORITY_ACCEL,
|
||||
};
|
||||
|
||||
static void hax_ram_block_added(RAMBlockNotifier *n, void *host, size_t size,
|
||||
|
|
|
@ -1128,7 +1128,7 @@ static MemoryListener nvmm_memory_listener = {
|
|||
.region_add = nvmm_region_add,
|
||||
.region_del = nvmm_region_del,
|
||||
.log_sync = nvmm_log_sync,
|
||||
.priority = 10,
|
||||
.priority = MEMORY_LISTENER_PRIORITY_ACCEL,
|
||||
};
|
||||
|
||||
static void
|
||||
|
|
|
@ -2412,7 +2412,7 @@ static MemoryListener whpx_memory_listener = {
|
|||
.region_add = whpx_region_add,
|
||||
.region_del = whpx_region_del,
|
||||
.log_sync = whpx_log_sync,
|
||||
.priority = 10,
|
||||
.priority = MEMORY_LISTENER_PRIORITY_ACCEL,
|
||||
};
|
||||
|
||||
static void whpx_memory_init(void)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue