Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1519804
| From | Charles Keepax <ckeepax@opensource.wolfsonmicro.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH 2/2] mfd: arizona: Correctly clean up after IRQs |
| Date | 2016-11-11 15:00 +0100 |
| Message-ID | <sCkx3-4ZD-1@gated-at.bofh.it> (permalink) |
| References | <sxcJP-77Y-9@gated-at.bofh.it> <sxcJP-77Y-7@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On Fri, Oct 28, 2016 at 11:32:54AM +0100, Charles Keepax wrote:
> Currently we leak a lot of things when tearing down the IRQs this patch
> fixes this cleaning up both the IRQ mappings and the IRQ domain itself.
>
> Signed-off-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
> ---
> drivers/mfd/arizona-irq.c | 54 +++++++++++++++++++++++++++++++++++------------
> 1 file changed, 40 insertions(+), 14 deletions(-)
>
> diff --git a/drivers/mfd/arizona-irq.c b/drivers/mfd/arizona-irq.c
> index 2e01975..fecf367 100644
> --- a/drivers/mfd/arizona-irq.c
> +++ b/drivers/mfd/arizona-irq.c
> @@ -207,6 +207,7 @@ int arizona_irq_init(struct arizona *arizona)
> int ret, i;
> const struct regmap_irq_chip *aod, *irq;
> struct irq_data *irq_data;
> + unsigned int virq;
>
> arizona->ctrlif_error = true;
>
> @@ -318,24 +319,34 @@ int arizona_irq_init(struct arizona *arizona)
> }
>
> if (aod) {
> - ret = regmap_add_irq_chip(arizona->regmap,
> - irq_create_mapping(arizona->virq, 0),
> - IRQF_ONESHOT, 0, aod,
> - &arizona->aod_irq_chip);
> + virq = irq_create_mapping(arizona->virq, 0);
> + if (!virq) {
> + dev_err(arizona->dev,
> + "Failed to map AOD IRQs: %d\n", ret);
> + goto err_domain;
One minor issue here we should be setting ret, as this one hasn't
been applied yet I will send a new spin shortly.
> + }
> +
> + ret = regmap_add_irq_chip(arizona->regmap, virq, IRQF_ONESHOT,
> + 0, aod, &arizona->aod_irq_chip);
> if (ret != 0) {
> dev_err(arizona->dev,
> "Failed to add AOD IRQs: %d\n", ret);
> - goto err;
> + goto err_map_aod;
> }
> }
>
> - ret = regmap_add_irq_chip(arizona->regmap,
> - irq_create_mapping(arizona->virq, 1),
> - IRQF_ONESHOT, 0, irq,
> - &arizona->irq_chip);
> + virq = irq_create_mapping(arizona->virq, 1);
> + if (!virq) {
> + dev_err(arizona->dev,
> + "Failed to map main IRQs: %d\n", ret);
> + goto err_aod;
ditto.
Thanks,
Charles
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH 1/2] mfd: arizona: Use irq_find_mapping when appropriate Charles Keepax <ckeepax@opensource.wolfsonmicro.com> - 2016-10-28 12:40 +0200
[PATCH 2/2] mfd: arizona: Correctly clean up after IRQs Charles Keepax <ckeepax@opensource.wolfsonmicro.com> - 2016-10-28 12:40 +0200
Re: [PATCH 2/2] mfd: arizona: Correctly clean up after IRQs Charles Keepax <ckeepax@opensource.wolfsonmicro.com> - 2016-11-11 15:00 +0100
Re: [PATCH 1/2] mfd: arizona: Use irq_find_mapping when appropriate Lee Jones <lee.jones@linaro.org> - 2016-11-10 14:30 +0100
csiph-web