All of lore.kernel.org
 help / color / mirror / Atom feed
From: tglx@linutronix.de (Thomas Gleixner)
To: linux-arm-kernel@lists.infradead.org
Subject: [patch 03/11] ARM/irq: Use access helper irq_data_get_affinity_mask()
Date: Mon, 13 Jul 2015 20:29:03 -0000	[thread overview]
Message-ID: <20150713090936.176152466@linutronix.de> (raw)
In-Reply-To: 20150713090726.316699641@linutronix.de

From: Jiang Liu <jiang.liu@linux.intel.com>

This is a preparatory patch for moving irq_data struct members.

Signed-off-by: Jiang Liu <jiang.liu@linux.intel.com>
Cc: Russell King <rmk+kernel@arm.linux.org.uk>
Cc: linux-arm-kernel at lists.infradead.org
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
---
 arch/arm/kernel/irq.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Index: tip/arch/arm/kernel/irq.c
===================================================================
--- tip.orig/arch/arm/kernel/irq.c
+++ tip/arch/arm/kernel/irq.c
@@ -140,7 +140,7 @@ int __init arch_probe_nr_irqs(void)
 static bool migrate_one_irq(struct irq_desc *desc)
 {
 	struct irq_data *d = irq_desc_get_irq_data(desc);
-	const struct cpumask *affinity = d->affinity;
+	const struct cpumask *affinity = irq_data_get_affinity_mask(d);
 	struct irq_chip *c;
 	bool ret = false;
 
@@ -160,7 +160,7 @@ static bool migrate_one_irq(struct irq_d
 	if (!c->irq_set_affinity)
 		pr_debug("IRQ%u: unable to set affinity\n", d->irq);
 	else if (c->irq_set_affinity(d, affinity, false) == IRQ_SET_MASK_OK && ret)
-		cpumask_copy(d->affinity, affinity);
+		cpumask_copy(irq_data_get_affinity_mask(d), affinity);
 
 	return ret;
 }

  parent reply	other threads:[~2015-07-13 20:29 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-07-13 20:28 [patch 00/11] ARM: Interrupt cleanups and API change preparation Thomas Gleixner
2015-07-13 20:29 ` [patch 01/11] ARM/orion: Consolidate chained IRQ handler install/remove Thomas Gleixner
2015-07-13 20:29 ` [patch 02/11] ARM/locomo: " Thomas Gleixner
2015-07-13 20:29 ` Thomas Gleixner [this message]
2015-07-13 20:29 ` [patch 04/11] ARM/LPC32xx: Use irq_set_handler_locked() Thomas Gleixner
2015-07-13 20:29 ` [patch 05/11] ARM, irq: Use irq_desc_get_xxx() to avoid redundant lookup of irq_desc Thomas Gleixner
2015-07-13 20:29 ` [patch 06/11] ARM/locomo: Prepare locomo_handler for irq argument removal Thomas Gleixner
2015-07-13 20:29 ` [patch 07/11] ARM/sa1111: Prepare sa1111_irq_handler " Thomas Gleixner
2015-07-13 20:29 ` [patch 08/11] ARM/dove: Prepare pmu_irq_handler " Thomas Gleixner
2015-07-13 20:29 ` [patch 09/11] ARM/pxa: Prepare *_irq_handler " Thomas Gleixner
2015-07-13 20:29 ` [patch 10/11] ARM/pxa: Prepare balloon3_irq_handler " Thomas Gleixner
2015-07-13 20:29 ` [patch 11/11] ARM/orion/gpio: Prepare gpio_irq_handler " Thomas Gleixner
2015-08-05 15:26 ` [patch 00/11] ARM: Interrupt cleanups and API change preparation Olof Johansson

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=20150713090936.176152466@linutronix.de \
    --to=tglx@linutronix.de \
    --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 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.