[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v9 2/9] memory: provide IOMMU_NOTIFIER_FOREACH macro
From: |
Peter Xu |
Subject: |
[Qemu-devel] [PATCH v9 2/9] memory: provide IOMMU_NOTIFIER_FOREACH macro |
Date: |
Fri, 7 Apr 2017 18:59:08 +0800 |
A new macro is provided to iterate all the IOMMU notifiers hooked
under specific IOMMU memory region.
Reviewed-by: David Gibson <address@hidden>
Reviewed-by: Eric Auger <address@hidden>
Reviewed-by: \"Michael S. Tsirkin\" <address@hidden>
Signed-off-by: Peter Xu <address@hidden>
---
include/exec/memory.h | 3 +++
memory.c | 4 ++--
2 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/include/exec/memory.h b/include/exec/memory.h
index 0840c89..07e43da 100644
--- a/include/exec/memory.h
+++ b/include/exec/memory.h
@@ -239,6 +239,9 @@ struct MemoryRegion {
IOMMUNotifierFlag iommu_notify_flags;
};
+#define IOMMU_NOTIFIER_FOREACH(n, mr) \
+ QLIST_FOREACH((n), &(mr)->iommu_notify, node)
+
/**
* MemoryListener: callbacks structure for updates to the physical memory map
*
diff --git a/memory.c b/memory.c
index 75ac595..7496b3d 100644
--- a/memory.c
+++ b/memory.c
@@ -1583,7 +1583,7 @@ static void
memory_region_update_iommu_notify_flags(MemoryRegion *mr)
IOMMUNotifierFlag flags = IOMMU_NOTIFIER_NONE;
IOMMUNotifier *iommu_notifier;
- QLIST_FOREACH(iommu_notifier, &mr->iommu_notify, node) {
+ IOMMU_NOTIFIER_FOREACH(iommu_notifier, mr) {
flags |= iommu_notifier->notifier_flags;
}
@@ -1667,7 +1667,7 @@ void memory_region_notify_iommu(MemoryRegion *mr,
request_flags = IOMMU_NOTIFIER_UNMAP;
}
- QLIST_FOREACH(iommu_notifier, &mr->iommu_notify, node) {
+ IOMMU_NOTIFIER_FOREACH(iommu_notifier, mr) {
/*
* Skip the notification if the notification does not overlap
* with registered range.
--
2.7.4
- [Qemu-devel] [PATCH v9 1/9] memory: add section range info for IOMMU notifier, (continued)
- [Qemu-devel] [PATCH v9 1/9] memory: add section range info for IOMMU notifier, Peter Xu, 2017/04/07
- Re: [Qemu-devel] [PATCH v9 1/9] memory: add section range info for IOMMU notifier, David Gibson, 2017/04/10
- Re: [Qemu-devel] [PATCH v9 1/9] memory: add section range info for IOMMU notifier, Peter Xu, 2017/04/10
- Re: [Qemu-devel] [PATCH v9 1/9] memory: add section range info for IOMMU notifier, David Gibson, 2017/04/10
- Re: [Qemu-devel] [PATCH v9 1/9] memory: add section range info for IOMMU notifier, Peter Xu, 2017/04/18
- Re: [Qemu-devel] [PATCH v9 1/9] memory: add section range info for IOMMU notifier, David Gibson, 2017/04/18
- Re: [Qemu-devel] [PATCH v9 1/9] memory: add section range info for IOMMU notifier, Peter Xu, 2017/04/18
- Re: [Qemu-devel] [PATCH v9 1/9] memory: add section range info for IOMMU notifier, Marcel Apfelbaum, 2017/04/18
- Re: [Qemu-devel] [PATCH v9 1/9] memory: add section range info for IOMMU notifier, Eduardo Habkost, 2017/04/18
- Re: [Qemu-devel] [PATCH v9 1/9] memory: add section range info for IOMMU notifier, Peter Xu, 2017/04/18
[Qemu-devel] [PATCH v9 2/9] memory: provide IOMMU_NOTIFIER_FOREACH macro,
Peter Xu <=
[Qemu-devel] [PATCH v9 3/9] memory: provide iommu_replay_all(), Peter Xu, 2017/04/07
[Qemu-devel] [PATCH v9 4/9] memory: introduce memory_region_notify_one(), Peter Xu, 2017/04/07
[Qemu-devel] [PATCH v9 5/9] memory: add MemoryRegionIOMMUOps.replay() callback, Peter Xu, 2017/04/07
[Qemu-devel] [PATCH v9 6/9] intel_iommu: use the correct memory region for device IOTLB notification, Peter Xu, 2017/04/07
[Qemu-devel] [PATCH v9 7/9] intel_iommu: provide its own replay() callback, Peter Xu, 2017/04/07
[Qemu-devel] [PATCH v9 8/9] intel_iommu: allow dynamic switch of IOMMU region, Peter Xu, 2017/04/07
[Qemu-devel] [PATCH v9 9/9] intel_iommu: enable remote IOTLB, Peter Xu, 2017/04/07