The Linux Kernel Mailing List
 help / color / mirror / Atom feed
From: Benjamin Herrenschmidt <benh@kernel.crashing.org>
To: Grant Likely <grant.likely@secretlab.ca>
Cc: linux-kernel@vger.kernel.org,
	Thomas Gleixner <tglx@linutronix.de>,
	Milton Miller <miltonm@bga.com>, Olof Johansson <olof@lixom.net>
Subject: Re: [PATCH 1/3] irq_domain: remove "hint" when allocating irq numbers
Date: Thu, 12 Apr 2012 09:44:48 +1000	[thread overview]
Message-ID: <1334187888.2984.50.camel@pasglop> (raw)
In-Reply-To: <1334186326-22649-2-git-send-email-grant.likely@secretlab.ca>

On Wed, 2012-04-11 at 17:18 -0600, Grant Likely wrote:
> The 'hint' used to try and line up irq numbers with hw irq numbers is
> rather a hack and not very useful.  It also had some value when irq
> reverse mapping was lazy, and not done right at map time.  However, the
> lazy mapping is to be removed, so keeping around 'hint' isn't helpful
> anymore.  This patch removes it.

Please document that this also removes the support for irq_virq_count,
which breaks PS3, to be "fixed" by your patch 3/3 (you may want to
re-order the patches here) and that fixes an actual bug with mapping of
interrupts above NR_IRQS

Cheers,
Ben.

> v2: Rebase onto v3.4-rc2
> 
> Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
> Cc: Thomas Gleixner <tglx@linutronix.de>
> Cc: Milton Miller <miltonm@bga.com>
> Cc: Olof Johansson <olof@lixom.net>
> ---
>  kernel/irq/irqdomain.c |   23 ++++++-----------------
>  1 files changed, 6 insertions(+), 17 deletions(-)
> 
> diff --git a/kernel/irq/irqdomain.c b/kernel/irq/irqdomain.c
> index eb05e40..041710d 100644
> --- a/kernel/irq/irqdomain.c
> +++ b/kernel/irq/irqdomain.c
> @@ -4,6 +4,7 @@
>  #include <linux/irq.h>
>  #include <linux/irqdesc.h>
>  #include <linux/irqdomain.h>
> +#include <linux/irqnr.h>
>  #include <linux/module.h>
>  #include <linux/mutex.h>
>  #include <linux/of.h>
> @@ -350,7 +351,6 @@ unsigned int irq_create_direct_mapping(struct irq_domain *domain)
>  unsigned int irq_create_mapping(struct irq_domain *domain,
>  				irq_hw_number_t hwirq)
>  {
> -	unsigned int hint;
>  	int virq;
>  
>  	pr_debug("irq: irq_create_mapping(0x%p, 0x%lx)\n", domain, hwirq);
> @@ -378,14 +378,9 @@ unsigned int irq_create_mapping(struct irq_domain *domain,
>  		return irq_domain_legacy_revmap(domain, hwirq);
>  
>  	/* Allocate a virtual interrupt number */
> -	hint = hwirq % irq_virq_count;
> -	if (hint == 0)
> -		hint++;
> -	virq = irq_alloc_desc_from(hint, 0);
> -	if (virq <= 0)
> -		virq = irq_alloc_desc_from(1, 0);
> +	virq = irq_alloc_desc_from(1, 0);
>  	if (virq <= 0) {
> -		pr_debug("irq: -> virq allocation failed\n");
> +		pr_debug("irq: irq_desc allocation failed\n");
>  		return 0;
>  	}
>  
> @@ -516,7 +511,7 @@ unsigned int irq_find_mapping(struct irq_domain *domain,
>  			      irq_hw_number_t hwirq)
>  {
>  	unsigned int i;
> -	unsigned int hint = hwirq % irq_virq_count;
> +	struct irq_desc *desc;
>  
>  	/* Look for default domain if nececssary */
>  	if (domain == NULL)
> @@ -529,17 +524,11 @@ unsigned int irq_find_mapping(struct irq_domain *domain,
>  		return irq_domain_legacy_revmap(domain, hwirq);
>  
>  	/* Slow path does a linear search of the map */
> -	if (hint == 0)
> -		hint = 1;
> -	i = hint;
> -	do {
> +	for_each_irq_desc(i, desc)  {
>  		struct irq_data *data = irq_get_irq_data(i);
>  		if (data && (data->domain == domain) && (data->hwirq == hwirq))
>  			return i;
> -		i++;
> -		if (i >= irq_virq_count)
> -			i = 1;
> -	} while(i != hint);
> +	}
>  	return 0;
>  }
>  EXPORT_SYMBOL_GPL(irq_find_mapping);



  reply	other threads:[~2012-04-11 23:45 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-04-11 23:18 irq_domain fixes for v3.4-rc2 Grant Likely
2012-04-11 23:18 ` [PATCH 1/3] irq_domain: remove "hint" when allocating irq numbers Grant Likely
2012-04-11 23:44   ` Benjamin Herrenschmidt [this message]
2012-04-12  0:11     ` Grant Likely
2012-04-11 23:18 ` [PATCH 2/3] irq_domain: eliminate slow-path revmap lookups Grant Likely
2012-04-11 23:18 ` [PATCH 3/3] irq_domain: Move irq_virq_count into NOMAP revmap Grant Likely
2012-04-11 23:20 ` irq_domain fixes for v3.4-rc2 Grant Likely
2012-04-13 11:16 ` Andreas Schwab
2012-04-19 18:31   ` Grant Likely

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=1334187888.2984.50.camel@pasglop \
    --to=benh@kernel.crashing.org \
    --cc=grant.likely@secretlab.ca \
    --cc=linux-kernel@vger.kernel.org \
    --cc=miltonm@bga.com \
    --cc=olof@lixom.net \
    --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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox