aboutsummaryrefslogtreecommitdiff
path: root/include/exec
diff options
context:
space:
mode:
authorIsaku Yamahata <isaku.yamahata@intel.com>2023-06-20 09:50:47 -0700
committerPhilippe Mathieu-Daudé <philmd@linaro.org>2023-06-28 14:27:59 +0200
commit5369a36c4fe5a70e8831059bcd2a2eef834aae21 (patch)
tree4d91a5f654d0f82dc952ed638e6805f6b3df9d9d /include/exec
parentdb5a06b3a21239ffa9424f89f98ee9afa14e955b (diff)
downloadqemu-5369a36c4fe5a70e8831059bcd2a2eef834aae21.zip
qemu-5369a36c4fe5a70e8831059bcd2a2eef834aae21.tar.gz
qemu-5369a36c4fe5a70e8831059bcd2a2eef834aae21.tar.bz2
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>
Diffstat (limited to 'include/exec')
-rw-r--r--include/exec/memory.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/exec/memory.h b/include/exec/memory.h
index 47c2e02..6d95d59 100644
--- a/include/exec/memory.h
+++ b/include/exec/memory.h
@@ -811,6 +811,8 @@ struct IOMMUMemoryRegion {
#define IOMMU_NOTIFIER_FOREACH(n, mr) \
QLIST_FOREACH((n), &(mr)->iommu_notify, node)
+#define MEMORY_LISTENER_PRIORITY_ACCEL 10
+
/**
* struct MemoryListener: callbacks structure for updates to the physical memory map
*