From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35466) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cw4vf-0002uw-QJ for qemu-devel@nongnu.org; Thu, 06 Apr 2017 06:46:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cw4vc-0004SK-Lp for qemu-devel@nongnu.org; Thu, 06 Apr 2017 06:46:15 -0400 Received: from mx1.redhat.com ([209.132.183.28]:59136) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cw4vc-0004S8-FL for qemu-devel@nongnu.org; Thu, 06 Apr 2017 06:46:12 -0400 References: <1491462524-1617-1-git-send-email-peterx@redhat.com> <1491462524-1617-3-git-send-email-peterx@redhat.com> From: Auger Eric Message-ID: <7e00fb5f-fe48-1e8f-3441-eacacf67e931@redhat.com> Date: Thu, 6 Apr 2017 12:45:59 +0200 MIME-Version: 1.0 In-Reply-To: <1491462524-1617-3-git-send-email-peterx@redhat.com> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v8 2/9] memory: provide IOMMU_NOTIFIER_FOREACH macro List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Peter Xu , qemu-devel@nongnu.org Cc: tianyu.lan@intel.com, kevin.tian@intel.com, mst@redhat.com, jan.kiszka@siemens.com, jasowang@redhat.com, alex.williamson@redhat.com, Marcel Apfelbaum , bd.aviv@gmail.com, David Gibson Hi Peter, On 06/04/2017 09:08, Peter Xu wrote: > Reviewed-by: David Gibson > Signed-off-by: Peter Xu Even if the commit message is obvious it may be requested? Reviewed-by: Eric Auger > --- > 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. >