mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Thomas Gleixner <tglx@linutronix.de>
To: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Cc: linux-kernel@vger.kernel.org, Grant Likely <grant.likely@secretlab.ca>
Subject: Re: [PATCH] irq/irqdomain: change bail out condition for irq_domain_add()
Date: Tue, 20 Sep 2011 23:41:02 +0200 (CEST)	[thread overview]
Message-ID: <alpine.LFD.2.02.1109202340060.2723@ionos> (raw)
In-Reply-To: <1316554589-24393-1-git-send-email-bigeasy@linutronix.de>

On Tue, 20 Sep 2011, Sebastian Andrzej Siewior wrote:

> I tried to convert x86 to this infrastructure and I run into
> |BUG: unable to handle kernel NULL pointer dereference at 00000014
> 
> (d || d->domain) is kinda bogus because if d is NULL it will check for
> d->domain which should fail. It seems that the code needs the irq_data
> to be present and there should be no irq_domain set yet. This patch does
> this.
> 
> My convert to this infrastructure still does not work with this patch
> but I have enough for today.
> 
> Cc: Grant Likely <grant.likely@secretlab.ca>
> Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
> ---
>  kernel/irq/irqdomain.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/kernel/irq/irqdomain.c b/kernel/irq/irqdomain.c
> index d5828da..213089b 100644
> --- a/kernel/irq/irqdomain.c
> +++ b/kernel/irq/irqdomain.c
> @@ -29,7 +29,7 @@ void irq_domain_add(struct irq_domain *domain)
>  	 */
>  	for (hwirq = 0; hwirq < domain->nr_irq; hwirq++) {
>  		d = irq_get_irq_data(irq_domain_to_irq(domain, hwirq));
> -		if (d || d->domain) {
> +		if (!d || d->domain) {
>  			/* things are broken; just report, don't clean up */
>  			WARN(1, "error: irq_desc already assigned to a domain");
>  			return;

I've already queued a similar fix in tip/irq/urgent

Thanks,

	tglx

  reply	other threads:[~2011-09-20 21:41 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-09-20 21:36 Sebastian Andrzej Siewior
2011-09-20 21:41 ` Thomas Gleixner [this message]
2011-09-20 21:43   ` Sebastian Andrzej Siewior

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=alpine.LFD.2.02.1109202340060.2723@ionos \
    --to=tglx@linutronix.de \
    --cc=bigeasy@linutronix.de \
    --cc=grant.likely@secretlab.ca \
    --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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome