From: Will Deacon <will.deacon-5wv7dgnIgG8@public.gmane.org>
To: Mitchel Humpherys <mitchelh-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
Cc: "iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org"
<iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>,
Russell King - ARM Linux
<linux-lFZ/pmaqli7XmaaqVzeoHQ@public.gmane.org>,
"linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org"
<linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org>
Subject: Re: [PATCH v2] iommu/arm-smmu: avoid calling request_irq in atomic context
Date: Mon, 28 Jul 2014 20:03:27 +0100 [thread overview]
Message-ID: <20140728190327.GU15536@arm.com> (raw)
In-Reply-To: <1406572692-27460-1-git-send-email-mitchelh-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
Hi Mitchel,
Thanks for the quick v2, but now I spotted a problem :)
On Mon, Jul 28, 2014 at 07:38:12PM +0100, Mitchel Humpherys wrote:
> static void arm_smmu_destroy_domain_context(struct iommu_domain *domain)
> @@ -1172,10 +1158,11 @@ static void arm_smmu_domain_remove_master(struct arm_smmu_domain *smmu_domain,
>
> static int arm_smmu_attach_dev(struct iommu_domain *domain, struct device *dev)
> {
> - int ret = -EINVAL;
> + int irq, ret = -EINVAL;
> struct arm_smmu_domain *smmu_domain = domain->priv;
> struct arm_smmu_device *smmu;
> - struct arm_smmu_master_cfg *cfg;
> + struct arm_smmu_master_cfg *master_cfg;
> + struct arm_smmu_cfg *cfg = &smmu_domain->cfg;
> unsigned long flags;
>
> smmu = dev_get_master_dev(dev)->archdata.iommu;
> @@ -1203,12 +1190,22 @@ static int arm_smmu_attach_dev(struct iommu_domain *domain, struct device *dev)
> }
> spin_unlock_irqrestore(&smmu_domain->lock, flags);
>
> + irq = smmu->irqs[smmu->num_global_irqs + cfg->irptndx];
> + ret = request_irq(irq, arm_smmu_context_fault, IRQF_SHARED,
> + "arm-smmu-context-fault", domain);
> + if (IS_ERR_VALUE(ret)) {
> + dev_err(smmu->dev, "failed to request context IRQ %d (%u)\n",
> + cfg->irptndx, irq);
> + cfg->irptndx = INVALID_IRPTNDX;
> + return ret;
> + }
This changes the driver behaviour, so we'll request an IRQ for the domain
*every* time a master is successfuly added to the domain, as opposed to
the first time a master is added (when we can do the lazy init).
Maybe we could rework the code so that it looks like:
dom_smmu = ACCESS_ONCE(&smmu_domain->smmu);
if (!dom_smmu) {
/* Take spinlock and re-check the smmu */
/* Initialise domain */
/* Drop lock */
/* Request IRQ */
}
if (dom_smmu != smmu) {
/* Fail attach */
}
/* Add master to domain */
Do you think that would work?
Will
WARNING: multiple messages have this Message-ID (diff)
From: will.deacon@arm.com (Will Deacon)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2] iommu/arm-smmu: avoid calling request_irq in atomic context
Date: Mon, 28 Jul 2014 20:03:27 +0100 [thread overview]
Message-ID: <20140728190327.GU15536@arm.com> (raw)
In-Reply-To: <1406572692-27460-1-git-send-email-mitchelh@codeaurora.org>
Hi Mitchel,
Thanks for the quick v2, but now I spotted a problem :)
On Mon, Jul 28, 2014 at 07:38:12PM +0100, Mitchel Humpherys wrote:
> static void arm_smmu_destroy_domain_context(struct iommu_domain *domain)
> @@ -1172,10 +1158,11 @@ static void arm_smmu_domain_remove_master(struct arm_smmu_domain *smmu_domain,
>
> static int arm_smmu_attach_dev(struct iommu_domain *domain, struct device *dev)
> {
> - int ret = -EINVAL;
> + int irq, ret = -EINVAL;
> struct arm_smmu_domain *smmu_domain = domain->priv;
> struct arm_smmu_device *smmu;
> - struct arm_smmu_master_cfg *cfg;
> + struct arm_smmu_master_cfg *master_cfg;
> + struct arm_smmu_cfg *cfg = &smmu_domain->cfg;
> unsigned long flags;
>
> smmu = dev_get_master_dev(dev)->archdata.iommu;
> @@ -1203,12 +1190,22 @@ static int arm_smmu_attach_dev(struct iommu_domain *domain, struct device *dev)
> }
> spin_unlock_irqrestore(&smmu_domain->lock, flags);
>
> + irq = smmu->irqs[smmu->num_global_irqs + cfg->irptndx];
> + ret = request_irq(irq, arm_smmu_context_fault, IRQF_SHARED,
> + "arm-smmu-context-fault", domain);
> + if (IS_ERR_VALUE(ret)) {
> + dev_err(smmu->dev, "failed to request context IRQ %d (%u)\n",
> + cfg->irptndx, irq);
> + cfg->irptndx = INVALID_IRPTNDX;
> + return ret;
> + }
This changes the driver behaviour, so we'll request an IRQ for the domain
*every* time a master is successfuly added to the domain, as opposed to
the first time a master is added (when we can do the lazy init).
Maybe we could rework the code so that it looks like:
dom_smmu = ACCESS_ONCE(&smmu_domain->smmu);
if (!dom_smmu) {
/* Take spinlock and re-check the smmu */
/* Initialise domain */
/* Drop lock */
/* Request IRQ */
}
if (dom_smmu != smmu) {
/* Fail attach */
}
/* Add master to domain */
Do you think that would work?
Will
next prev parent reply other threads:[~2014-07-28 19:03 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-07-28 18:38 [PATCH v2] iommu/arm-smmu: avoid calling request_irq in atomic context Mitchel Humpherys
2014-07-28 18:38 ` Mitchel Humpherys
[not found] ` <1406572692-27460-1-git-send-email-mitchelh-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2014-07-28 19:03 ` Will Deacon [this message]
2014-07-28 19:03 ` Will Deacon
[not found] ` <20140728190327.GU15536-5wv7dgnIgG8@public.gmane.org>
2014-07-28 23:48 ` Mitchel Humpherys
2014-07-28 23:48 ` Mitchel Humpherys
[not found] ` <vnkwoaw9oxje.fsf-Yf+dfxj6toJBVvN7MMdr1KRtKmQZhJ7pQQ4Iyu8u01E@public.gmane.org>
2014-07-29 10:31 ` Will Deacon
2014-07-29 10:31 ` Will Deacon
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=20140728190327.GU15536@arm.com \
--to=will.deacon-5wv7dgnigg8@public.gmane.org \
--cc=iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org \
--cc=linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org \
--cc=linux-lFZ/pmaqli7XmaaqVzeoHQ@public.gmane.org \
--cc=mitchelh-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.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.