Received: by 2002:a25:d7c1:0:0:0:0:0 with SMTP id o184csp4010374ybg; Fri, 25 Oct 2019 12:03:35 -0700 (PDT) X-Google-Smtp-Source: APXvYqxf1+HGhEmJ5hoO418Ke1Wnu07SJHABN/Ou7btjSLXH8MvHw1AllEE9w6DTanK2DP6LH2Nr X-Received: by 2002:a05:6402:21c2:: with SMTP id bi2mr5718668edb.8.1572030215239; Fri, 25 Oct 2019 12:03:35 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1572030215; cv=none; d=google.com; s=arc-20160816; b=dYa1f8pd4JHgRS+n05GkmC32Us0Eq1p6KlGcUj148hm9NtWk7B21nbn9AIJzdGZu7v 2fkt0pqwclj82MJPhwhpnKaCImDQthk+qMCDQSsZUPxTG7aI60GtbZ1LuJsZfEPfC5Wp e9x+DMjdPxsNQXo9g/Svz7/vy5qtf4cRgaXniwmXuZk3xC60pxO/hF5gMant3MSKlVDj C+xVtQ9jHXTPp5s6Ftg7xMabM9bNUYWf+mIyv3Uns/jgeeh3KCcLSFKgA6vAXigac+eS twdnkKef/AgRFKrsI1a/7jQJtHu2kwR+9tKXKlze2rhGVKfcX17lVXK2/oW8cPHOSvWf GpnA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:references:in-reply-to:message-id:date :subject:cc:to:from; bh=TXfW3FoGd1f8QwKge1OVYLzefu07RHrkByvjYaa25ec=; b=j6o38cp6bYfwbPc2in1+6gH8tZlN56CjanUd2LvbQwcBu6SbH0HZOyzsdwAifzwYQt N496KhdrVdT2A3isEKsQmEtYUN487zf1VGA6mDbp0utsdVgD8Fh1n5VNyujymj7b6Qt2 74flxz6lZs6HQRaoUudQc5i76tt2d8EETfnk58aiOfGIcOe/WofHsXZ292ZBpwJY1d1B StWtq5yP68a7EWucgoV6Pg/xgGRq75gsULc9qS6zR62s98eaUg0XNuclqU4OszZ7msbi JeEmMOivhGsa8rt2uID1S7Kf9Ftl3/tY5h0J+h/yvR/rgIiSBM3wdJJb3+zIZQF5tfDq TDYQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=intel.com Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id k16si1734120ejc.134.2019.10.25.12.03.10; Fri, 25 Oct 2019 12:03:35 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=intel.com Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2438505AbfJXTu7 (ORCPT + 99 others); Thu, 24 Oct 2019 15:50:59 -0400 Received: from mga07.intel.com ([134.134.136.100]:62203 "EHLO mga07.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2438196AbfJXTut (ORCPT ); Thu, 24 Oct 2019 15:50:49 -0400 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga105.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 24 Oct 2019 12:50:43 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.68,225,1569308400"; d="scan'208";a="282043158" Received: from jacob-builder.jf.intel.com ([10.7.199.155]) by orsmga001.jf.intel.com with ESMTP; 24 Oct 2019 12:50:43 -0700 From: Jacob Pan To: iommu@lists.linux-foundation.org, LKML , Joerg Roedel , David Woodhouse , Alex Williamson , Jean-Philippe Brucker Cc: "Yi Liu" , "Tian, Kevin" , Raj Ashok , "Christoph Hellwig" , "Lu Baolu" , Jonathan Cameron , Eric Auger , Jacob Pan Subject: [PATCH v7 08/11] iommu/vt-d: Misc macro clean up for SVM Date: Thu, 24 Oct 2019 12:55:01 -0700 Message-Id: <1571946904-86776-9-git-send-email-jacob.jun.pan@linux.intel.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1571946904-86776-1-git-send-email-jacob.jun.pan@linux.intel.com> References: <1571946904-86776-1-git-send-email-jacob.jun.pan@linux.intel.com> Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Use combined macros for_each_svm_dev() to simplify SVM device iteration and error checking. Suggested-by: Andy Shevchenko Signed-off-by: Jacob Pan Reviewed-by: Eric Auger --- drivers/iommu/intel-svm.c | 89 ++++++++++++++++++++++------------------------- 1 file changed, 42 insertions(+), 47 deletions(-) diff --git a/drivers/iommu/intel-svm.c b/drivers/iommu/intel-svm.c index a9a7f85a09bc..a18b02a9709d 100644 --- a/drivers/iommu/intel-svm.c +++ b/drivers/iommu/intel-svm.c @@ -212,6 +212,10 @@ static const struct mmu_notifier_ops intel_mmuops = { static DEFINE_MUTEX(pasid_mutex); static LIST_HEAD(global_svm_list); +#define for_each_svm_dev(svm, dev) \ + list_for_each_entry(sdev, &svm->devs, list) \ + if (dev == sdev->dev) \ + int intel_svm_bind_mm(struct device *dev, int *pasid, int flags, struct svm_dev_ops *ops) { struct intel_iommu *iommu = intel_svm_device_to_iommu(dev); @@ -257,15 +261,13 @@ int intel_svm_bind_mm(struct device *dev, int *pasid, int flags, struct svm_dev_ goto out; } - list_for_each_entry(sdev, &svm->devs, list) { - if (dev == sdev->dev) { - if (sdev->ops != ops) { - ret = -EBUSY; - goto out; - } - sdev->users++; - goto success; + for_each_svm_dev(svm, dev) { + if (sdev->ops != ops) { + ret = -EBUSY; + goto out; } + sdev->users++; + goto success; } break; @@ -402,50 +404,43 @@ int intel_svm_unbind_mm(struct device *dev, int pasid) goto out; svm = ioasid_find(NULL, pasid, NULL); - if (IS_ERR(svm)) { + if (IS_ERR_OR_NULL(svm)) { ret = PTR_ERR(svm); goto out; } - if (!svm) - goto out; - - list_for_each_entry(sdev, &svm->devs, list) { - if (dev == sdev->dev) { - ret = 0; - sdev->users--; - if (!sdev->users) { - list_del_rcu(&sdev->list); - /* Flush the PASID cache and IOTLB for this device. - * Note that we do depend on the hardware *not* using - * the PASID any more. Just as we depend on other - * devices never using PASIDs that they have no right - * to use. We have a *shared* PASID table, because it's - * large and has to be physically contiguous. So it's - * hard to be as defensive as we might like. */ - intel_pasid_tear_down_entry(iommu, dev, svm->pasid); - intel_flush_svm_range_dev(svm, sdev, 0, -1, 0); - kfree_rcu(sdev, rcu); - - if (list_empty(&svm->devs)) { - /* Clear private data so that free pass check */ - ioasid_set_data(svm->pasid, NULL); - ioasid_free(svm->pasid); - if (svm->mm) - mmu_notifier_unregister(&svm->notifier, svm->mm); - - list_del(&svm->list); - - /* We mandate that no page faults may be outstanding - * for the PASID when intel_svm_unbind_mm() is called. - * If that is not obeyed, subtle errors will happen. - * Let's make them less subtle... */ - memset(svm, 0x6b, sizeof(*svm)); - kfree(svm); - } + for_each_svm_dev(svm, dev) { + ret = 0; + sdev->users--; + if (!sdev->users) { + list_del_rcu(&sdev->list); + /* Flush the PASID cache and IOTLB for this device. + * Note that we do depend on the hardware *not* using + * the PASID any more. Just as we depend on other + * devices never using PASIDs that they have no right + * to use. We have a *shared* PASID table, because it's + * large and has to be physically contiguous. So it's + * hard to be as defensive as we might like. */ + intel_pasid_tear_down_entry(iommu, dev, svm->pasid); + intel_flush_svm_range_dev(svm, sdev, 0, -1, 0); + kfree_rcu(sdev, rcu); + + if (list_empty(&svm->devs)) { + /* Clear private data so that free pass check */ + ioasid_set_data(svm->pasid, NULL); + ioasid_free(svm->pasid); + if (svm->mm) + mmu_notifier_unregister(&svm->notifier, svm->mm); + list_del(&svm->list); + /* We mandate that no page faults may be outstanding + * for the PASID when intel_svm_unbind_mm() is called. + * If that is not obeyed, subtle errors will happen. + * Let's make them less subtle... */ + memset(svm, 0x6b, sizeof(*svm)); + kfree(svm); } - break; } + break; } out: mutex_unlock(&pasid_mutex); @@ -581,7 +576,7 @@ static irqreturn_t prq_event_thread(int irq, void *d) * to unbind the mm while any page faults are outstanding. * So we only need RCU to protect the internal idr code. */ rcu_read_unlock(); - if (IS_ERR(svm) || !svm) { + if (IS_ERR_OR_NULL(svm)) { pr_err("%s: Page request for invalid PASID %d: %08llx %08llx\n", iommu->name, req->pasid, ((unsigned long long *)req)[0], ((unsigned long long *)req)[1]); -- 2.7.4