[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <c0e33d09-8d0e-80b5-1b95-4af82004d9dd@huawei.com>
Date: Thu, 19 Dec 2019 09:51:15 +0000
From: John Garry <john.garry@...wei.com>
To: Cong Wang <xiyou.wangcong@...il.com>,
<iommu@...ts.linux-foundation.org>
CC: <robin.murphy@....com>, <linux-kernel@...r.kernel.org>,
<joro@...tes.org>
Subject: Re: [Patch v3 3/3] iommu: avoid taking iova_rbtree_lock twice
On 18/12/2019 04:39, Cong Wang wrote:
> Both find_iova() and __free_iova() take iova_rbtree_lock,
> there is no reason to take and release it twice inside
> free_iova().
>
> Fold them into one critical section by calling the unlock
> versions instead.
>
> Cc: Joerg Roedel <joro@...tes.org>
> Cc: John Garry <john.garry@...wei.com>
> Signed-off-by: Cong Wang <xiyou.wangcong@...il.com>
FWIW:
Reviewed-by: John Garry <john.garry@...wei.com>
> ---
> drivers/iommu/iova.c | 8 ++++++--
> 1 file changed, 6 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/iommu/iova.c b/drivers/iommu/iova.c
> index 184d4c0e20b5..f46f8f794678 100644
> --- a/drivers/iommu/iova.c
> +++ b/drivers/iommu/iova.c
> @@ -390,10 +390,14 @@ EXPORT_SYMBOL_GPL(__free_iova);
> void
> free_iova(struct iova_domain *iovad, unsigned long pfn)
> {
> - struct iova *iova = find_iova(iovad, pfn);
> + unsigned long flags;
> + struct iova *iova;
>
> + spin_lock_irqsave(&iovad->iova_rbtree_lock, flags);
> + iova = private_find_iova(iovad, pfn);
> if (iova)
> - __free_iova(iovad, iova);
> + private_free_iova(iovad, iova);
> + spin_unlock_irqrestore(&iovad->iova_rbtree_lock, flags);
>
> }
> EXPORT_SYMBOL_GPL(free_iova);
>
Powered by blists - more mailing lists