From: Peter Xu Date: Fri, 7 Apr 2017 10:59:09 +0000 (+0800) Subject: memory: provide iommu_replay_all() X-Git-Tag: v2.10.0-rc0~256^2~12 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=de472e4a92f780d02b894001e004f4b4a350ec38;p=thirdparty%2Fqemu.git memory: provide iommu_replay_all() This is an "global" version of existing memory_region_iommu_replay() - we announce the translations to all the registered notifiers, instead of a specific one. Reviewed-by: David Gibson Reviewed-by: \"Michael S. Tsirkin\" Signed-off-by: Peter Xu Message-Id: <1491562755-23867-4-git-send-email-peterx@redhat.com> Signed-off-by: Eduardo Habkost --- diff --git a/include/exec/memory.h b/include/exec/memory.h index 07e43daf204..fb7dff3405d 100644 --- a/include/exec/memory.h +++ b/include/exec/memory.h @@ -712,6 +712,14 @@ void memory_region_register_iommu_notifier(MemoryRegion *mr, void memory_region_iommu_replay(MemoryRegion *mr, IOMMUNotifier *n, bool is_write); +/** + * memory_region_iommu_replay_all: replay existing IOMMU translations + * to all the notifiers registered. + * + * @mr: the memory region to observe + */ +void memory_region_iommu_replay_all(MemoryRegion *mr); + /** * memory_region_unregister_iommu_notifier: unregister a notifier for * changes to IOMMU translation entries. diff --git a/memory.c b/memory.c index 7496b3d3d5c..b4ed67b27a6 100644 --- a/memory.c +++ b/memory.c @@ -1642,6 +1642,15 @@ void memory_region_iommu_replay(MemoryRegion *mr, IOMMUNotifier *n, } } +void memory_region_iommu_replay_all(MemoryRegion *mr) +{ + IOMMUNotifier *notifier; + + IOMMU_NOTIFIER_FOREACH(notifier, mr) { + memory_region_iommu_replay(mr, notifier, false); + } +} + void memory_region_unregister_iommu_notifier(MemoryRegion *mr, IOMMUNotifier *n) {