From: mark.rutland@arm.com (Mark Rutland)
To: linux-arm-kernel@lists.infradead.org
Subject: [RESEND PATCH 1/2] irqdesc: Add function to identify percpu_devid irqs
Date: Fri, 13 Oct 2017 18:44:23 +0100 [thread overview]
Message-ID: <20171013174422.GA6050@leverpostej> (raw)
In-Reply-To: <1507894005-53778-2-git-send-email-julien.thierry@arm.com>
Hi Thomas,
Would you be happy for this patch to be taken via the arm64 tree?
The next patch [1] makes use of this in the arm_pmu driver, and we're
likely to have some other changes there shortly.
Thanks,
Mark
[1] http://lists.infradead.org/pipermail/linux-arm-kernel/2017-October/536532.html
On Fri, Oct 13, 2017 at 12:26:44PM +0100, Julien Thierry wrote:
> irq_is_percpu indicates whether an irq should only target a single cpu.
> PERCPU_DEVID flag indicates that an irq can be configured differently on
> each cpu it can target.
>
> Provide a function to check whether an irq is PERCPU_DEVID.
>
> Signed-off-by: Julien Thierry <julien.thierry@arm.com>
> Cc: Thomas Gleixner <tglx@linutronix.de>
> Cc: Marc Zyngier <marc.zyngier@arm.com>
> ---
> include/linux/irqdesc.h | 8 ++++++++
> 1 file changed, 8 insertions(+)
>
> diff --git a/include/linux/irqdesc.h b/include/linux/irqdesc.h
> index 3e90a09..93960cf 100644
> --- a/include/linux/irqdesc.h
> +++ b/include/linux/irqdesc.h
> @@ -244,6 +244,14 @@ static inline int irq_is_percpu(unsigned int irq)
> return desc->status_use_accessors & IRQ_PER_CPU;
> }
>
> +static inline int irq_is_percpu_devid(unsigned int irq)
> +{
> + struct irq_desc *desc;
> +
> + desc = irq_to_desc(irq);
> + return desc->status_use_accessors & IRQ_PER_CPU_DEVID;
> +}
> +
> static inline void
> irq_set_lockdep_class(unsigned int irq, struct lock_class_key *class)
> {
> --
> 1.9.1
next prev parent reply other threads:[~2017-10-13 17:44 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-10-13 11:26 [RESEND PATCH 0/2] Distinguish percpu irq and percpu_devid irq Julien Thierry
2017-10-13 11:26 ` [RESEND PATCH 1/2] irqdesc: Add function to identify percpu_devid irqs Julien Thierry
2017-10-13 16:53 ` Marc Zyngier
2017-10-13 17:44 ` Mark Rutland [this message]
2017-10-24 14:46 ` Will Deacon
2017-10-24 14:50 ` Thomas Gleixner
2017-10-24 14:52 ` Will Deacon
2017-10-13 11:26 ` [RESEND PATCH 2/2] arm/arm64: pmu: Distinguish percpu irq and percpu_devid irq Julien Thierry
2017-10-13 16:47 ` Mark Rutland
2017-10-16 8:19 ` Julien Thierry
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=20171013174422.GA6050@leverpostej \
--to=mark.rutland@arm.com \
--cc=linux-arm-kernel@lists.infradead.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;
as well as URLs for NNTP newsgroup(s).