diff options
author | Isaku Yamahata <isaku.yamahata@intel.com> | 2023-06-20 09:50:49 -0700 |
---|---|---|
committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2023-06-28 14:27:59 +0200 |
commit | 14a868c626e99eea063ecbf6ef86002f6a314f0a (patch) | |
tree | c1b35a357d0621c58cf232ed4f199c11023ecb60 /include | |
parent | 8be0461d37705ae0a0c4e76b3ce5e4b558d51aba (diff) | |
download | qemu-14a868c626e99eea063ecbf6ef86002f6a314f0a.zip qemu-14a868c626e99eea063ecbf6ef86002f6a314f0a.tar.gz qemu-14a868c626e99eea063ecbf6ef86002f6a314f0a.tar.bz2 |
exec/memory: Add symbol for the min value of memory listener priority
Add MEMORY_LISTNER_PRIORITY_MIN for the symbolic value for the min value of
the memory listener instead of the hard-coded magic value 0. Add explicit
initialization.
No functional change intended.
Signed-off-by: Isaku Yamahata <isaku.yamahata@intel.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-Id: <29f88477fe82eb774bcfcae7f65ea21995f865f2.1687279702.git.isaku.yamahata@intel.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/exec/memory.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/exec/memory.h b/include/exec/memory.h index 4d78946..7f5c11a 100644 --- a/include/exec/memory.h +++ b/include/exec/memory.h @@ -811,6 +811,7 @@ struct IOMMUMemoryRegion { #define IOMMU_NOTIFIER_FOREACH(n, mr) \ QLIST_FOREACH((n), &(mr)->iommu_notify, node) +#define MEMORY_LISTENER_PRIORITY_MIN 0 #define MEMORY_LISTENER_PRIORITY_ACCEL 10 #define MEMORY_LISTENER_PRIORITY_DEV_BACKEND 10 |