From: Jacob Pan <jacob.jun.pan@linux.intel.com>
To: LKML <linux-kernel@vger.kernel.org>,
iommu@lists.linux-foundation.org, Joerg Roedel <joro@8bytes.org>,
David Woodhouse <dwmw2@infradead.org>
Cc: Raj Ashok <ashok.raj@intel.com>
Subject: Re: [PATCH] iommu/vt-d: Fix bind svm with multiple devices
Date: Mon, 20 May 2019 08:33:23 -0700 [thread overview]
Message-ID: <20190520083323.1decb496@jacob-builder> (raw)
In-Reply-To: <1557343366-18686-1-git-send-email-jacob.jun.pan@linux.intel.com>
Hi Joerg & David,
Any feedback on this one? Thanks.
On Wed, 8 May 2019 12:22:46 -0700
Jacob Pan <jacob.jun.pan@linux.intel.com> wrote:
> If multiple devices try to bind to the same mm/PASID, we need to
> set up first level PASID entries for all the devices. The current
> code does not consider this case which results in failed DMA for
> devices after the first bind.
>
> Signed-off-by: Jacob Pan <jacob.jun.pan@linux.intel.com>
> Reported-by: Mike Campin <mike.campin@intel.com>
> ---
> drivers/iommu/intel-svm.c | 15 +++++++++++++++
> 1 file changed, 15 insertions(+)
>
> diff --git a/drivers/iommu/intel-svm.c b/drivers/iommu/intel-svm.c
> index 3a4b09a..f3d59d1 100644
> --- a/drivers/iommu/intel-svm.c
> +++ b/drivers/iommu/intel-svm.c
> @@ -357,6 +357,21 @@ int intel_svm_bind_mm(struct device *dev, int
> *pasid, int flags, struct svm_dev_ }
>
> list_add_tail(&svm->list, &global_svm_list);
> + } else {
> + /*
> + * Binding a new device with existing PASID, need to
> setup
> + * the PASID entry.
> + */
> + spin_lock(&iommu->lock);
> + ret = intel_pasid_setup_first_level(iommu, dev,
> + mm ? mm->pgd :
> init_mm.pgd,
> + svm->pasid,
> FLPT_DEFAULT_DID,
> + mm ? 0 :
> PASID_FLAG_SUPERVISOR_MODE);
> + spin_unlock(&iommu->lock);
> + if (ret) {
> + kfree(sdev);
> + goto out;
> + }
> }
> list_add_rcu(&sdev->list, &svm->devs);
>
[Jacob Pan]
_______________________________________________
iommu mailing list
iommu@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/iommu
WARNING: multiple messages have this Message-ID (diff)
From: Jacob Pan <jacob.jun.pan@linux.intel.com>
To: LKML <linux-kernel@vger.kernel.org>,
iommu@lists.linux-foundation.org, Joerg Roedel <joro@8bytes.org>,
David Woodhouse <dwmw2@infradead.org>
Cc: Raj Ashok <ashok.raj@intel.com>,
"Lu Baolu" <baolu.lu@linux.intel.com>,
jacob.jun.pan@linux.intel.com
Subject: Re: [PATCH] iommu/vt-d: Fix bind svm with multiple devices
Date: Mon, 20 May 2019 08:33:23 -0700 [thread overview]
Message-ID: <20190520083323.1decb496@jacob-builder> (raw)
In-Reply-To: <1557343366-18686-1-git-send-email-jacob.jun.pan@linux.intel.com>
Hi Joerg & David,
Any feedback on this one? Thanks.
On Wed, 8 May 2019 12:22:46 -0700
Jacob Pan <jacob.jun.pan@linux.intel.com> wrote:
> If multiple devices try to bind to the same mm/PASID, we need to
> set up first level PASID entries for all the devices. The current
> code does not consider this case which results in failed DMA for
> devices after the first bind.
>
> Signed-off-by: Jacob Pan <jacob.jun.pan@linux.intel.com>
> Reported-by: Mike Campin <mike.campin@intel.com>
> ---
> drivers/iommu/intel-svm.c | 15 +++++++++++++++
> 1 file changed, 15 insertions(+)
>
> diff --git a/drivers/iommu/intel-svm.c b/drivers/iommu/intel-svm.c
> index 3a4b09a..f3d59d1 100644
> --- a/drivers/iommu/intel-svm.c
> +++ b/drivers/iommu/intel-svm.c
> @@ -357,6 +357,21 @@ int intel_svm_bind_mm(struct device *dev, int
> *pasid, int flags, struct svm_dev_ }
>
> list_add_tail(&svm->list, &global_svm_list);
> + } else {
> + /*
> + * Binding a new device with existing PASID, need to
> setup
> + * the PASID entry.
> + */
> + spin_lock(&iommu->lock);
> + ret = intel_pasid_setup_first_level(iommu, dev,
> + mm ? mm->pgd :
> init_mm.pgd,
> + svm->pasid,
> FLPT_DEFAULT_DID,
> + mm ? 0 :
> PASID_FLAG_SUPERVISOR_MODE);
> + spin_unlock(&iommu->lock);
> + if (ret) {
> + kfree(sdev);
> + goto out;
> + }
> }
> list_add_rcu(&sdev->list, &svm->devs);
>
[Jacob Pan]
next prev parent reply other threads:[~2019-05-20 15:30 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-05-08 19:22 [PATCH] iommu/vt-d: Fix bind svm with multiple devices Jacob Pan
2019-05-08 19:22 ` Jacob Pan
2019-05-20 15:33 ` Jacob Pan [this message]
2019-05-20 15:33 ` Jacob Pan
2019-05-27 9:55 ` Joerg Roedel
2019-05-27 9:55 ` Joerg Roedel
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20190520083323.1decb496@jacob-builder \
--to=jacob.jun.pan@linux.intel.com \
--cc=ashok.raj@intel.com \
--cc=dwmw2@infradead.org \
--cc=iommu@lists.linux-foundation.org \
--cc=joro@8bytes.org \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.