From: Eric Dumazet <eric.dumazet@gmail.com>
To: Ben Hutchings <bhutchings@solarflare.com>
Cc: "Michael S. Tsirkin" <mst@redhat.com>,
David Miller <davem@davemloft.net>,
therbert@google.com, shemminger@vyatta.com,
netdev@vger.kernel.org
Subject: Re: [RFC][PATCH 1/3] IRQ: Add irq_get_numa_node()
Date: Mon, 20 Sep 2010 15:04:39 +0200 [thread overview]
Message-ID: <1284987879.3420.338.camel@edumazet-laptop> (raw)
In-Reply-To: <1284986671.2282.41.camel@achroite.uk.solarflarecom.com>
Le lundi 20 septembre 2010 à 13:44 +0100, Ben Hutchings a écrit :
> This will be used to support NUMA-aware memory allocation of
> structures used in interrupt handlers, starting with network drivers.
> ---
> irq_get_numa_node() probably needs to grab desc->lock. Other than that,
> this should work.
>
> Ben.
>
> include/linux/interrupt.h | 9 +++++++++
> kernel/irq/manage.c | 35 +++++++++++++++++++++++++++++++++++
> 2 files changed, 44 insertions(+), 0 deletions(-)
>
> diff --git a/include/linux/interrupt.h b/include/linux/interrupt.h
> index a0384a4..82e9a08 100644
> --- a/include/linux/interrupt.h
> +++ b/include/linux/interrupt.h
> @@ -260,6 +260,15 @@ static inline int irq_set_affinity_hint(unsigned int irq,
> }
> #endif /* CONFIG_SMP && CONFIG_GENERIC_HARDIRQS */
>
> +#if defined(CONFIG_NUMA) && defined(CONFIG_GENERIC_HARDIRQS)
> +extern int irq_get_numa_node(unsigned int irq);
> +#else
> +static inline int irq_get_numa_node(unsigned int irq)
> +{
> + return -1;
> +}
> +#endif
> +
> #ifdef CONFIG_GENERIC_HARDIRQS
> /*
> * Special lockdep variants of irq disabling/enabling.
> diff --git a/kernel/irq/manage.c b/kernel/irq/manage.c
> index c3003e9..03e683e 100644
> --- a/kernel/irq/manage.c
> +++ b/kernel/irq/manage.c
> @@ -154,6 +154,41 @@ int irq_set_affinity_hint(unsigned int irq, const struct cpumask *m)
> }
> EXPORT_SYMBOL_GPL(irq_set_affinity_hint);
>
> +#ifdef CONFIG_NUMA
> +/**
> + * irq_get_numa_node - get the NUMA node of a given IRQ
> + * @irq: Interrupt to get NUMA node for
> + *
> + * If the current SMP affinity mask of the IRQ corresponds to a
> + * single NUMA node, return the node number. Otherwise return
> + * %NUMA_NO_NODE.
> + */
> +int irq_get_numa_node(unsigned int irq)
> +{
> + struct irq_desc *desc = irq_to_desc(irq);
> + const struct cpumask *mask;
> + int cpu, node = NUMA_NO_NODE;
> +
> + if (!desc)
> + return node;
> +
> + mask = desc->affinity;
> +#ifdef CONFIG_GENERIC_PENDING_IRQ
> + if (desc->status & IRQ_MOVE_PENDING)
> + mask = desc->pending_mask;
> +#endif
> +
> + for_each_cpu(cpu, mask) {
> + if (node < 0)
or : if (node == NUMA_NO_NODE)
> + node = cpu_to_node(cpu);
> + else if (node != cpu_to_node(cpu))
> + return NUMA_NO_NODE;
> + }
> +
> + return node;
> +}
> +#endif
> +
> #ifndef CONFIG_AUTO_IRQ_AFFINITY
> /*
> * Generic version of the affinity autoselector.
> --
> 1.7.2.1
>
>
>
next prev parent reply other threads:[~2010-09-20 13:04 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-08-23 5:39 [PATCH] xps-mq: Transmit Packet Steering for multiqueue Tom Herbert
2010-08-23 17:09 ` Ben Hutchings
[not found] ` <AANLkTinST5zaS0NtBjrzyLbsg=w_EVsHE3DCDcrmQNc6@mail.gmail.com>
2010-08-23 17:50 ` Ben Hutchings
2010-08-23 17:59 ` Stephen Hemminger
2010-09-01 15:41 ` Tom Herbert
2010-09-01 15:54 ` Eric Dumazet
2010-09-01 16:24 ` Tom Herbert
2010-09-02 1:32 ` David Miller
2010-09-02 1:48 ` Stephen Hemminger
2010-09-02 16:00 ` Loke, Chetan
2010-09-02 19:52 ` Tom Herbert
2010-09-02 23:17 ` Loke, Chetan
2010-09-02 1:56 ` Stephen Hemminger
2010-09-02 6:41 ` Greg Lindahl
2010-09-02 16:18 ` Loke, Chetan
2010-09-02 15:55 ` Loke, Chetan
2010-09-16 21:52 ` Ben Hutchings
2010-09-19 17:24 ` Michael S. Tsirkin
2010-09-20 12:44 ` [RFC][PATCH 1/3] IRQ: Add irq_get_numa_node() Ben Hutchings
2010-09-20 13:04 ` Eric Dumazet [this message]
2010-09-20 12:45 ` [RFC][PATCH 2/3] ethtool: NUMA affinity control Ben Hutchings
2010-09-20 12:48 ` [RFC][PATCH 3/3] sfc: Add support for " Ben Hutchings
2011-02-21 18:19 ` [PATCH] xps-mq: Transmit Packet Steering for multiqueue Ben Hutchings
2011-02-21 19:31 ` Jeremy Eder
2011-02-26 7:09 ` David Miller
2010-09-01 16:09 ` David Miller
2010-08-24 4:31 ` Bill Fink
2010-08-24 4:37 ` Tom Herbert
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=1284987879.3420.338.camel@edumazet-laptop \
--to=eric.dumazet@gmail.com \
--cc=bhutchings@solarflare.com \
--cc=davem@davemloft.net \
--cc=mst@redhat.com \
--cc=netdev@vger.kernel.org \
--cc=shemminger@vyatta.com \
--cc=therbert@google.com \
/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