From: Mika Westerberg <mika.westerberg@linux.intel.com>
To: Thomas Gleixner <tglx@linutronix.de>
Cc: Jiang Liu <jiang.liu@linux.intel.com>,
jarkko.nikula@linux.intel.com, linux-kernel@vger.kernel.org
Subject: Re: Question related to patch: x86/irq: Remove x86_io_apic_ops.set_affinity and related interfaces
Date: Tue, 8 Sep 2015 17:21:18 +0300 [thread overview]
Message-ID: <20150908142118.GD12118@lahna.fi.intel.com> (raw)
In-Reply-To: <alpine.DEB.2.11.1509081543290.3854@nanos>
On Tue, Sep 08, 2015 at 04:02:29PM +0200, Thomas Gleixner wrote:
> On Tue, 8 Sep 2015, Mika Westerberg wrote:
> > It says that there are no users for x86_io_apic_ops.set_affinity but then
> > it does this:
> >
> > - x86_io_apic_ops.set_affinity(idata, mask, false);
> > + irq_set_affinity(irq, mask);
> >
> > The difference is that x86_io_apic_ops.set_affinity() programs affinity
> > directly to the hardware (if I understand it right) but irq_set_affinity()
> > calls irqd_set_move_pending() which defers programming the hardware later.
> >
> > Now when an interrupt triggers we end up calling irq_move_masked_irq() with
> > unlocked descriptor.
> >
> > Without the above change we never do that and the crash does not happen.
>
> Right. Patch below should fix that issue.
>
> Thanks,
>
> tglx
>
> diff --git a/arch/x86/kernel/apic/io_apic.c b/arch/x86/kernel/apic/io_apic.c
> index 38a76f826530..d2ea50c5e936 100644
> --- a/arch/x86/kernel/apic/io_apic.c
> +++ b/arch/x86/kernel/apic/io_apic.c
> @@ -2522,6 +2522,7 @@ void __init setup_ioapic_dest(void)
> int pin, ioapic, irq, irq_entry;
> const struct cpumask *mask;
> struct irq_data *idata;
> + struct irq_chip *chip;
>
> if (skip_ioapic_setup == 1)
> return;
> @@ -2545,9 +2546,9 @@ void __init setup_ioapic_dest(void)
> else
> mask = apic->target_cpus();
>
> - irq_set_affinity(irq, mask);
> + chip = irq_data_get_chip(idata);
There seems to be no irq_data_get_chip() helper in current mainline. So
I replaced this with:
chip = idata->chip;
> + chip->irq_set_affinity(idata, mask, false);
> }
> -
> }
> #endif
With the above change the patch fixes the problem, thanks!
Tested-by: Mika Westerberg <mika.westerberg@linux.intel.com>
next prev parent reply other threads:[~2015-09-08 14:23 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-09-08 10:40 Question related to patch: x86/irq: Remove x86_io_apic_ops.set_affinity and related interfaces Mika Westerberg
2015-09-08 12:43 ` Jiang Liu
2015-09-08 14:02 ` Thomas Gleixner
2015-09-08 14:21 ` Mika Westerberg [this message]
2015-09-08 14:25 ` Thomas Gleixner
2015-09-08 14:36 ` Mika Westerberg
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=20150908142118.GD12118@lahna.fi.intel.com \
--to=mika.westerberg@linux.intel.com \
--cc=jarkko.nikula@linux.intel.com \
--cc=jiang.liu@linux.intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=tglx@linutronix.de \
/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.