Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1375587 > unrolled thread
| Started by | Lee Jones <lee.jones@linaro.org> |
|---|---|
| First post | 2016-04-11 10:20 +0200 |
| Last post | 2016-04-11 10:20 +0200 |
| Articles | 1 — 1 participant |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: [PATCH v2] mfd: arizona: Fix lockdep recursion warning on set_irq_wake Lee Jones <lee.jones@linaro.org> - 2016-04-11 10:20 +0200
| From | Lee Jones <lee.jones@linaro.org> |
|---|---|
| Date | 2016-04-11 10:20 +0200 |
| Subject | Re: [PATCH v2] mfd: arizona: Fix lockdep recursion warning on set_irq_wake |
| Message-ID | <rmFeH-2HC-49@gated-at.bofh.it> |
On Fri, 25 Mar 2016, Charles Keepax wrote:
> Avoid a false recursive locking warning from lockdep by adding a lock
> class for the arizona IRQ chip.
>
> Signed-off-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
> ---
> drivers/mfd/arizona-irq.c | 3 +++
> 1 file changed, 3 insertions(+)
Applied, thanks.
> Thanks for the pointers guys and sorry again for missing this the
> first time around.
>
> Changes since v1:
> - Ditch the bus_lock stuff and use irq_set_lockdep_class
>
> Thanks,
> Charles
>
> diff --git a/drivers/mfd/arizona-irq.c b/drivers/mfd/arizona-irq.c
> index 5fef014..edeb495 100644
> --- a/drivers/mfd/arizona-irq.c
> +++ b/drivers/mfd/arizona-irq.c
> @@ -168,12 +168,15 @@ static struct irq_chip arizona_irq_chip = {
> .irq_set_wake = arizona_irq_set_wake,
> };
>
> +static struct lock_class_key arizona_irq_lock_class;
> +
> static int arizona_irq_map(struct irq_domain *h, unsigned int virq,
> irq_hw_number_t hw)
> {
> struct arizona *data = h->host_data;
>
> irq_set_chip_data(virq, data);
> + irq_set_lockdep_class(virq, &arizona_irq_lock_class);
> irq_set_chip_and_handler(virq, &arizona_irq_chip, handle_simple_irq);
> irq_set_nested_thread(virq, 1);
> irq_set_noprobe(virq);
--
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog
Back to top | Article view | linux.kernel
csiph-web