* [patch 01/20] powerpc/media5200: Consolidate chained IRQ handler install/remove
2015-07-13 20:50 [patch 00/20] powerpc: Interrupt cleanups and API change preparation Thomas Gleixner
@ 2015-07-13 20:50 ` Thomas Gleixner
2015-07-13 20:50 ` [patch 02/20] powerpc/52xx: " Thomas Gleixner
` (19 subsequent siblings)
20 siblings, 0 replies; 23+ messages in thread
From: Thomas Gleixner @ 2015-07-13 20:50 UTC (permalink / raw)
To: linuxppc-dev
Cc: Benjamin Herrenschmidt, Michael Ellerman, Russell King,
Julia Lawall
Chained irq handlers usually set up handler data as well. We now have
a function to set both under irq_desc->lock. Replace the two calls
with one.
Search and conversion was done with coccinelle.
Reported-by: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Julia Lawall <Julia.Lawall@lip6.fr>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Michael Ellerman <mpe@ellerman.id.au>
Cc: linuxppc-dev@lists.ozlabs.org
---
arch/powerpc/platforms/52xx/media5200.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
Index: tip/arch/powerpc/platforms/52xx/media5200.c
===================================================================
--- tip.orig/arch/powerpc/platforms/52xx/media5200.c
+++ tip/arch/powerpc/platforms/52xx/media5200.c
@@ -179,8 +179,8 @@ static void __init media5200_init_irq(vo
goto out;
pr_debug("%s: allocated irqhost\n", __func__);
- irq_set_handler_data(cascade_virq, &media5200_irq);
- irq_set_chained_handler(cascade_virq, media5200_irq_cascade);
+ irq_set_chained_handler_and_data(cascade_virq, media5200_irq_cascade,
+ &media5200_irq);
return;
^ permalink raw reply [flat|nested] 23+ messages in thread
* [patch 02/20] powerpc/52xx: Consolidate chained IRQ handler install/remove
2015-07-13 20:50 [patch 00/20] powerpc: Interrupt cleanups and API change preparation Thomas Gleixner
2015-07-13 20:50 ` [patch 01/20] powerpc/media5200: Consolidate chained IRQ handler install/remove Thomas Gleixner
@ 2015-07-13 20:50 ` Thomas Gleixner
2015-07-13 20:50 ` [patch 03/20] powerpc/pq2ads: " Thomas Gleixner
` (18 subsequent siblings)
20 siblings, 0 replies; 23+ messages in thread
From: Thomas Gleixner @ 2015-07-13 20:50 UTC (permalink / raw)
To: linuxppc-dev
Cc: Benjamin Herrenschmidt, Michael Ellerman, Russell King,
Julia Lawall
Chained irq handlers usually set up handler data as well. We now have
a function to set both under irq_desc->lock. Replace the two calls
with one.
Search and conversion was done with coccinelle.
Reported-by: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Julia Lawall <Julia.Lawall@lip6.fr>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Michael Ellerman <mpe@ellerman.id.au>
Cc: linuxppc-dev@lists.ozlabs.org
---
arch/powerpc/platforms/52xx/mpc52xx_gpt.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
Index: tip/arch/powerpc/platforms/52xx/mpc52xx_gpt.c
===================================================================
--- tip.orig/arch/powerpc/platforms/52xx/mpc52xx_gpt.c
+++ tip/arch/powerpc/platforms/52xx/mpc52xx_gpt.c
@@ -258,8 +258,8 @@ mpc52xx_gpt_irq_setup(struct mpc52xx_gpt
return;
}
- irq_set_handler_data(cascade_virq, gpt);
- irq_set_chained_handler(cascade_virq, mpc52xx_gpt_irq_cascade);
+ irq_set_chained_handler_and_data(cascade_virq,
+ mpc52xx_gpt_irq_cascade, gpt);
/* If the GPT is currently disabled, then change it to be in Input
* Capture mode. If the mode is non-zero, then the pin could be
^ permalink raw reply [flat|nested] 23+ messages in thread
* [patch 03/20] powerpc/pq2ads: Consolidate chained IRQ handler install/remove
2015-07-13 20:50 [patch 00/20] powerpc: Interrupt cleanups and API change preparation Thomas Gleixner
2015-07-13 20:50 ` [patch 01/20] powerpc/media5200: Consolidate chained IRQ handler install/remove Thomas Gleixner
2015-07-13 20:50 ` [patch 02/20] powerpc/52xx: " Thomas Gleixner
@ 2015-07-13 20:50 ` Thomas Gleixner
2015-07-13 20:50 ` [patch 04/20] powerpc/axon_msi: " Thomas Gleixner
` (17 subsequent siblings)
20 siblings, 0 replies; 23+ messages in thread
From: Thomas Gleixner @ 2015-07-13 20:50 UTC (permalink / raw)
To: linuxppc-dev
Cc: Benjamin Herrenschmidt, Michael Ellerman, Russell King,
Julia Lawall
Chained irq handlers usually set up handler data as well. We now have
a function to set both under irq_desc->lock. Replace the two calls
with one.
Search and conversion was done with coccinelle.
Reported-by: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Julia Lawall <Julia.Lawall@lip6.fr>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Michael Ellerman <mpe@ellerman.id.au>
Cc: linuxppc-dev@lists.ozlabs.org
---
arch/powerpc/platforms/82xx/pq2ads-pci-pic.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
Index: tip/arch/powerpc/platforms/82xx/pq2ads-pci-pic.c
===================================================================
--- tip.orig/arch/powerpc/platforms/82xx/pq2ads-pci-pic.c
+++ tip/arch/powerpc/platforms/82xx/pq2ads-pci-pic.c
@@ -162,8 +162,7 @@ int __init pq2ads_pci_init_irq(void)
}
priv->host = host;
- irq_set_handler_data(irq, priv);
- irq_set_chained_handler(irq, pq2ads_pci_irq_demux);
+ irq_set_chained_handler_and_data(irq, pq2ads_pci_irq_demux, priv);
of_node_put(np);
return 0;
^ permalink raw reply [flat|nested] 23+ messages in thread
* [patch 04/20] powerpc/axon_msi: Consolidate chained IRQ handler install/remove
2015-07-13 20:50 [patch 00/20] powerpc: Interrupt cleanups and API change preparation Thomas Gleixner
` (2 preceding siblings ...)
2015-07-13 20:50 ` [patch 03/20] powerpc/pq2ads: " Thomas Gleixner
@ 2015-07-13 20:50 ` Thomas Gleixner
2015-07-13 20:50 ` [patch 05/20] powerpc/cell: " Thomas Gleixner
` (16 subsequent siblings)
20 siblings, 0 replies; 23+ messages in thread
From: Thomas Gleixner @ 2015-07-13 20:50 UTC (permalink / raw)
To: linuxppc-dev
Cc: Benjamin Herrenschmidt, Michael Ellerman, Russell King,
Julia Lawall
Chained irq handlers usually set up handler data as well. We now have
a function to set both under irq_desc->lock. Replace the two calls
with one.
Search and conversion was done with coccinelle.
Reported-by: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Julia Lawall <Julia.Lawall@lip6.fr>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Michael Ellerman <mpe@ellerman.id.au>
Cc: linuxppc-dev@lists.ozlabs.org
---
arch/powerpc/platforms/cell/axon_msi.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
Index: tip/arch/powerpc/platforms/cell/axon_msi.c
===================================================================
--- tip.orig/arch/powerpc/platforms/cell/axon_msi.c
+++ tip/arch/powerpc/platforms/cell/axon_msi.c
@@ -390,8 +390,7 @@ static int axon_msi_probe(struct platfor
goto out_free_fifo;
}
- irq_set_handler_data(virq, msic);
- irq_set_chained_handler(virq, axon_msi_cascade);
+ irq_set_chained_handler_and_data(virq, axon_msi_cascade, msic);
pr_devel("axon_msi: irq 0x%x setup for axon_msi\n", virq);
/* Enable the MSIC hardware */
^ permalink raw reply [flat|nested] 23+ messages in thread
* [patch 05/20] powerpc/cell: Consolidate chained IRQ handler install/remove
2015-07-13 20:50 [patch 00/20] powerpc: Interrupt cleanups and API change preparation Thomas Gleixner
` (3 preceding siblings ...)
2015-07-13 20:50 ` [patch 04/20] powerpc/axon_msi: " Thomas Gleixner
@ 2015-07-13 20:50 ` Thomas Gleixner
2015-07-13 20:50 ` [patch 06/20] powerpc/spider-pic: " Thomas Gleixner
` (15 subsequent siblings)
20 siblings, 0 replies; 23+ messages in thread
From: Thomas Gleixner @ 2015-07-13 20:50 UTC (permalink / raw)
To: linuxppc-dev
Cc: Benjamin Herrenschmidt, Michael Ellerman, Russell King,
Julia Lawall
Chained irq handlers usually set up handler data as well. We now have
a function to set both under irq_desc->lock. Replace the two calls
with one.
Search and conversion was done with coccinelle.
Reported-by: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Julia Lawall <Julia.Lawall@lip6.fr>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Michael Ellerman <mpe@ellerman.id.au>
Cc: linuxppc-dev@lists.ozlabs.org
---
arch/powerpc/platforms/cell/interrupt.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
Index: tip/arch/powerpc/platforms/cell/interrupt.c
===================================================================
--- tip.orig/arch/powerpc/platforms/cell/interrupt.c
+++ tip/arch/powerpc/platforms/cell/interrupt.c
@@ -357,8 +357,8 @@ static int __init setup_iic(void)
* irq_data is a generic pointer that gets passed back
* to us later, so the forced cast is fine.
*/
- irq_set_handler_data(cascade, (void __force *)node_iic);
- irq_set_chained_handler(cascade, iic_ioexc_cascade);
+ irq_set_chained_handler_and_data(cascade, iic_ioexc_cascade,
+ (void __force *)node_iic);
out_be64(&node_iic->iic_ir,
(1 << 12) /* priority */ |
(node << 4) /* dest node */ |
^ permalink raw reply [flat|nested] 23+ messages in thread
* [patch 06/20] powerpc/spider-pic: Consolidate chained IRQ handler install/remove
2015-07-13 20:50 [patch 00/20] powerpc: Interrupt cleanups and API change preparation Thomas Gleixner
` (4 preceding siblings ...)
2015-07-13 20:50 ` [patch 05/20] powerpc/cell: " Thomas Gleixner
@ 2015-07-13 20:50 ` Thomas Gleixner
2015-07-13 20:50 ` [patch 07/20] powerpc/hlwd-pic: " Thomas Gleixner
` (14 subsequent siblings)
20 siblings, 0 replies; 23+ messages in thread
From: Thomas Gleixner @ 2015-07-13 20:50 UTC (permalink / raw)
To: linuxppc-dev
Cc: Benjamin Herrenschmidt, Michael Ellerman, Russell King,
Julia Lawall
Chained irq handlers usually set up handler data as well. We now have
a function to set both under irq_desc->lock. Replace the two calls
with one.
Search and conversion was done with coccinelle.
Reported-by: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Julia Lawall <Julia.Lawall@lip6.fr>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Michael Ellerman <mpe@ellerman.id.au>
Cc: linuxppc-dev@lists.ozlabs.org
---
arch/powerpc/platforms/cell/spider-pic.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
Index: tip/arch/powerpc/platforms/cell/spider-pic.c
===================================================================
--- tip.orig/arch/powerpc/platforms/cell/spider-pic.c
+++ tip/arch/powerpc/platforms/cell/spider-pic.c
@@ -317,8 +317,7 @@ static void __init spider_init_one(struc
virq = spider_find_cascade_and_node(pic);
if (virq == NO_IRQ)
return;
- irq_set_handler_data(virq, pic);
- irq_set_chained_handler(virq, spider_irq_cascade);
+ irq_set_chained_handler_and_data(virq, spider_irq_cascade, pic);
printk(KERN_INFO "spider_pic: node %d, addr: 0x%lx %s\n",
pic->node_id, addr, of_node->full_name);
^ permalink raw reply [flat|nested] 23+ messages in thread
* [patch 07/20] powerpc/hlwd-pic: Consolidate chained IRQ handler install/remove
2015-07-13 20:50 [patch 00/20] powerpc: Interrupt cleanups and API change preparation Thomas Gleixner
` (5 preceding siblings ...)
2015-07-13 20:50 ` [patch 06/20] powerpc/spider-pic: " Thomas Gleixner
@ 2015-07-13 20:50 ` Thomas Gleixner
2015-07-13 20:50 ` [patch 08/20] powerpc/holly: " Thomas Gleixner
` (13 subsequent siblings)
20 siblings, 0 replies; 23+ messages in thread
From: Thomas Gleixner @ 2015-07-13 20:50 UTC (permalink / raw)
To: linuxppc-dev
Cc: Benjamin Herrenschmidt, Michael Ellerman, Russell King,
Julia Lawall
Chained irq handlers usually set up handler data as well. We now have
a function to set both under irq_desc->lock. Replace the two calls
with one.
Search and conversion was done with coccinelle.
Reported-by: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Julia Lawall <Julia.Lawall@lip6.fr>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Michael Ellerman <mpe@ellerman.id.au>
Cc: linuxppc-dev@lists.ozlabs.org
---
arch/powerpc/platforms/embedded6xx/hlwd-pic.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
Index: tip/arch/powerpc/platforms/embedded6xx/hlwd-pic.c
===================================================================
--- tip.orig/arch/powerpc/platforms/embedded6xx/hlwd-pic.c
+++ tip/arch/powerpc/platforms/embedded6xx/hlwd-pic.c
@@ -212,9 +212,9 @@ void hlwd_pic_probe(void)
host = hlwd_pic_init(np);
BUG_ON(!host);
cascade_virq = irq_of_parse_and_map(np, 0);
- irq_set_handler_data(cascade_virq, host);
- irq_set_chained_handler(cascade_virq,
- hlwd_pic_irq_cascade);
+ irq_set_chained_handler_and_data(cascade_virq,
+ hlwd_pic_irq_cascade,
+ host);
hlwd_irq_host = host;
break;
}
^ permalink raw reply [flat|nested] 23+ messages in thread
* [patch 08/20] powerpc/holly: Consolidate chained IRQ handler install/remove
2015-07-13 20:50 [patch 00/20] powerpc: Interrupt cleanups and API change preparation Thomas Gleixner
` (6 preceding siblings ...)
2015-07-13 20:50 ` [patch 07/20] powerpc/hlwd-pic: " Thomas Gleixner
@ 2015-07-13 20:50 ` Thomas Gleixner
2015-07-13 20:50 ` [patch 09/20] powerpc/mpc7448: " Thomas Gleixner
` (12 subsequent siblings)
20 siblings, 0 replies; 23+ messages in thread
From: Thomas Gleixner @ 2015-07-13 20:50 UTC (permalink / raw)
To: linuxppc-dev
Cc: Benjamin Herrenschmidt, Michael Ellerman, Russell King,
Julia Lawall
Chained irq handlers usually set up handler data as well. We now have
a function to set both under irq_desc->lock. Replace the two calls
with one.
Search and conversion was done with coccinelle.
Reported-by: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Julia Lawall <Julia.Lawall@lip6.fr>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Michael Ellerman <mpe@ellerman.id.au>
Cc: linuxppc-dev@lists.ozlabs.org
---
arch/powerpc/platforms/embedded6xx/holly.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
Index: tip/arch/powerpc/platforms/embedded6xx/holly.c
===================================================================
--- tip.orig/arch/powerpc/platforms/embedded6xx/holly.c
+++ tip/arch/powerpc/platforms/embedded6xx/holly.c
@@ -180,8 +180,8 @@ static void __init holly_init_IRQ(void)
cascade_pci_irq = irq_of_parse_and_map(tsi_pci, 0);
pr_debug("%s: tsi108 cascade_pci_irq = 0x%x\n", __func__, (u32) cascade_pci_irq);
tsi108_pci_int_init(cascade_node);
- irq_set_handler_data(cascade_pci_irq, mpic);
- irq_set_chained_handler(cascade_pci_irq, tsi108_irq_cascade);
+ irq_set_chained_handler_and_data(cascade_pci_irq, tsi108_irq_cascade,
+ mpic);
#endif
/* Configure MPIC outputs to CPU0 */
tsi108_write_reg(TSI108_MPIC_OFFSET + 0x30c, 0);
^ permalink raw reply [flat|nested] 23+ messages in thread
* [patch 09/20] powerpc/mpc7448: Consolidate chained IRQ handler install/remove
2015-07-13 20:50 [patch 00/20] powerpc: Interrupt cleanups and API change preparation Thomas Gleixner
` (7 preceding siblings ...)
2015-07-13 20:50 ` [patch 08/20] powerpc/holly: " Thomas Gleixner
@ 2015-07-13 20:50 ` Thomas Gleixner
2015-07-13 20:50 ` [patch 10/20] powerpc/mpic: " Thomas Gleixner
` (11 subsequent siblings)
20 siblings, 0 replies; 23+ messages in thread
From: Thomas Gleixner @ 2015-07-13 20:50 UTC (permalink / raw)
To: linuxppc-dev
Cc: Benjamin Herrenschmidt, Michael Ellerman, Russell King,
Julia Lawall
Chained irq handlers usually set up handler data as well. We now have
a function to set both under irq_desc->lock. Replace the two calls
with one.
Search and conversion was done with coccinelle.
Reported-by: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Julia Lawall <Julia.Lawall@lip6.fr>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Michael Ellerman <mpe@ellerman.id.au>
Cc: linuxppc-dev@lists.ozlabs.org
---
arch/powerpc/platforms/embedded6xx/mpc7448_hpc2.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
Index: tip/arch/powerpc/platforms/embedded6xx/mpc7448_hpc2.c
===================================================================
--- tip.orig/arch/powerpc/platforms/embedded6xx/mpc7448_hpc2.c
+++ tip/arch/powerpc/platforms/embedded6xx/mpc7448_hpc2.c
@@ -134,8 +134,8 @@ static void __init mpc7448_hpc2_init_IRQ
DBG("%s: tsi108 cascade_pci_irq = 0x%x\n", __func__,
(u32) cascade_pci_irq);
tsi108_pci_int_init(cascade_node);
- irq_set_handler_data(cascade_pci_irq, mpic);
- irq_set_chained_handler(cascade_pci_irq, tsi108_irq_cascade);
+ irq_set_chained_handler_and_data(cascade_pci_irq, tsi108_irq_cascade,
+ mpic);
#endif
/* Configure MPIC outputs to CPU0 */
tsi108_write_reg(TSI108_MPIC_OFFSET + 0x30c, 0);
^ permalink raw reply [flat|nested] 23+ messages in thread
* [patch 10/20] powerpc/mpic: Consolidate chained IRQ handler install/remove
2015-07-13 20:50 [patch 00/20] powerpc: Interrupt cleanups and API change preparation Thomas Gleixner
` (8 preceding siblings ...)
2015-07-13 20:50 ` [patch 09/20] powerpc/mpc7448: " Thomas Gleixner
@ 2015-07-13 20:50 ` Thomas Gleixner
2015-07-13 20:50 ` [patch 11/20] powerpc/qe_ic: " Thomas Gleixner
` (10 subsequent siblings)
20 siblings, 0 replies; 23+ messages in thread
From: Thomas Gleixner @ 2015-07-13 20:50 UTC (permalink / raw)
To: linuxppc-dev
Cc: Benjamin Herrenschmidt, Michael Ellerman, Russell King,
Julia Lawall
Chained irq handlers usually set up handler data as well. We now have
a function to set both under irq_desc->lock. Replace the two calls
with one.
Search and conversion was done with coccinelle.
Reported-by: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Julia Lawall <Julia.Lawall@lip6.fr>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Michael Ellerman <mpe@ellerman.id.au>
Cc: linuxppc-dev@lists.ozlabs.org
---
arch/powerpc/sysdev/mpic.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
Index: tip/arch/powerpc/sysdev/mpic.c
===================================================================
--- tip.orig/arch/powerpc/sysdev/mpic.c
+++ tip/arch/powerpc/sysdev/mpic.c
@@ -1665,8 +1665,8 @@ void __init mpic_init(struct mpic *mpic)
if (virq != NO_IRQ) {
printk(KERN_INFO "%s: hooking up to IRQ %d\n",
mpic->node->full_name, virq);
- irq_set_handler_data(virq, mpic);
- irq_set_chained_handler(virq, &mpic_cascade);
+ irq_set_chained_handler_and_data(virq, &mpic_cascade,
+ mpic);
}
}
^ permalink raw reply [flat|nested] 23+ messages in thread
* [patch 11/20] powerpc/qe_ic: Consolidate chained IRQ handler install/remove
2015-07-13 20:50 [patch 00/20] powerpc: Interrupt cleanups and API change preparation Thomas Gleixner
` (9 preceding siblings ...)
2015-07-13 20:50 ` [patch 10/20] powerpc/mpic: " Thomas Gleixner
@ 2015-07-13 20:50 ` Thomas Gleixner
2015-07-13 20:50 ` [patch 12/20] powerpc/uic: " Thomas Gleixner
` (9 subsequent siblings)
20 siblings, 0 replies; 23+ messages in thread
From: Thomas Gleixner @ 2015-07-13 20:50 UTC (permalink / raw)
To: linuxppc-dev
Cc: Benjamin Herrenschmidt, Michael Ellerman, Russell King,
Julia Lawall
Chained irq handlers usually set up handler data as well. We now have
a function to set both under irq_desc->lock. Replace the two calls
with one.
Search and conversion was done with coccinelle.
Reported-by: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Julia Lawall <Julia.Lawall@lip6.fr>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Michael Ellerman <mpe@ellerman.id.au>
Cc: linuxppc-dev@lists.ozlabs.org
---
arch/powerpc/sysdev/qe_lib/qe_ic.c | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
Index: tip/arch/powerpc/sysdev/qe_lib/qe_ic.c
===================================================================
--- tip.orig/arch/powerpc/sysdev/qe_lib/qe_ic.c
+++ tip/arch/powerpc/sysdev/qe_lib/qe_ic.c
@@ -368,13 +368,12 @@ void __init qe_ic_init(struct device_nod
qe_ic_write(qe_ic->regs, QEIC_CICR, temp);
- irq_set_handler_data(qe_ic->virq_low, qe_ic);
- irq_set_chained_handler(qe_ic->virq_low, low_handler);
+ irq_set_chained_handler_and_data(qe_ic->virq_low, low_handler, qe_ic);
if (qe_ic->virq_high != NO_IRQ &&
qe_ic->virq_high != qe_ic->virq_low) {
- irq_set_handler_data(qe_ic->virq_high, qe_ic);
- irq_set_chained_handler(qe_ic->virq_high, high_handler);
+ irq_set_chained_handler_and_data(qe_ic->virq_high,
+ high_handler, qe_ic);
}
}
^ permalink raw reply [flat|nested] 23+ messages in thread
* [patch 12/20] powerpc/uic: Consolidate chained IRQ handler install/remove
2015-07-13 20:50 [patch 00/20] powerpc: Interrupt cleanups and API change preparation Thomas Gleixner
` (10 preceding siblings ...)
2015-07-13 20:50 ` [patch 11/20] powerpc/qe_ic: " Thomas Gleixner
@ 2015-07-13 20:50 ` Thomas Gleixner
2015-07-13 20:50 ` [patch 13/20] powerpc/irq: Use access helper irq_data_get_affinity_mask() Thomas Gleixner
` (8 subsequent siblings)
20 siblings, 0 replies; 23+ messages in thread
From: Thomas Gleixner @ 2015-07-13 20:50 UTC (permalink / raw)
To: linuxppc-dev
Cc: Benjamin Herrenschmidt, Michael Ellerman, Russell King,
Julia Lawall
Chained irq handlers usually set up handler data as well. We now have
a function to set both under irq_desc->lock. Replace the two calls
with one.
Search and conversion was done with coccinelle.
Reported-by: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Julia Lawall <Julia.Lawall@lip6.fr>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Michael Ellerman <mpe@ellerman.id.au>
Cc: linuxppc-dev@lists.ozlabs.org
---
arch/powerpc/sysdev/uic.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
Index: tip/arch/powerpc/sysdev/uic.c
===================================================================
--- tip.orig/arch/powerpc/sysdev/uic.c
+++ tip/arch/powerpc/sysdev/uic.c
@@ -311,8 +311,8 @@ void __init uic_init_tree(void)
cascade_virq = irq_of_parse_and_map(np, 0);
- irq_set_handler_data(cascade_virq, uic);
- irq_set_chained_handler(cascade_virq, uic_irq_cascade);
+ irq_set_chained_handler_and_data(cascade_virq,
+ uic_irq_cascade, uic);
/* FIXME: setup critical cascade?? */
}
^ permalink raw reply [flat|nested] 23+ messages in thread
* [patch 13/20] powerpc/irq: Use access helper irq_data_get_affinity_mask()
2015-07-13 20:50 [patch 00/20] powerpc: Interrupt cleanups and API change preparation Thomas Gleixner
` (11 preceding siblings ...)
2015-07-13 20:50 ` [patch 12/20] powerpc/uic: " Thomas Gleixner
@ 2015-07-13 20:50 ` Thomas Gleixner
2015-07-13 20:50 ` [patch 14/20] powerpc/mpc52xx: Use irq_set_handler_locked() Thomas Gleixner
` (7 subsequent siblings)
20 siblings, 0 replies; 23+ messages in thread
From: Thomas Gleixner @ 2015-07-13 20:50 UTC (permalink / raw)
To: linuxppc-dev; +Cc: Benjamin Herrenschmidt, Michael Ellerman, Jiang Liu
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: linuxppc-dev@lists.ozlabs.org
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Michael Ellerman <mpe@ellerman.id.au>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
---
arch/powerpc/kernel/irq.c | 2 +-
arch/powerpc/sysdev/xics/ics-opal.c | 2 +-
arch/powerpc/sysdev/xics/ics-rtas.c | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
Index: tip/arch/powerpc/kernel/irq.c
===================================================================
--- tip.orig/arch/powerpc/kernel/irq.c
+++ tip/arch/powerpc/kernel/irq.c
@@ -441,7 +441,7 @@ void migrate_irqs(void)
chip = irq_data_get_irq_chip(data);
- cpumask_and(mask, data->affinity, map);
+ cpumask_and(mask, irq_data_get_affinity_mask(data), map);
if (cpumask_any(mask) >= nr_cpu_ids) {
pr_warn("Breaking affinity for irq %i\n", irq);
cpumask_copy(mask, map);
Index: tip/arch/powerpc/sysdev/xics/ics-opal.c
===================================================================
--- tip.orig/arch/powerpc/sysdev/xics/ics-opal.c
+++ tip/arch/powerpc/sysdev/xics/ics-opal.c
@@ -54,7 +54,7 @@ static void ics_opal_unmask_irq(struct i
if (hw_irq == XICS_IPI || hw_irq == XICS_IRQ_SPURIOUS)
return;
- server = xics_get_irq_server(d->irq, d->affinity, 0);
+ server = xics_get_irq_server(d->irq, irq_data_get_affinity_mask(d), 0);
server = ics_opal_mangle_server(server);
rc = opal_set_xive(hw_irq, server, DEFAULT_PRIORITY);
Index: tip/arch/powerpc/sysdev/xics/ics-rtas.c
===================================================================
--- tip.orig/arch/powerpc/sysdev/xics/ics-rtas.c
+++ tip/arch/powerpc/sysdev/xics/ics-rtas.c
@@ -47,7 +47,7 @@ static void ics_rtas_unmask_irq(struct i
if (hw_irq == XICS_IPI || hw_irq == XICS_IRQ_SPURIOUS)
return;
- server = xics_get_irq_server(d->irq, d->affinity, 0);
+ server = xics_get_irq_server(d->irq, irq_data_get_affinity_mask(d), 0);
call_status = rtas_call(ibm_set_xive, 3, 1, NULL, hw_irq, server,
DEFAULT_PRIORITY);
^ permalink raw reply [flat|nested] 23+ messages in thread
* [patch 14/20] powerpc/mpc52xx: Use irq_set_handler_locked()
2015-07-13 20:50 [patch 00/20] powerpc: Interrupt cleanups and API change preparation Thomas Gleixner
` (12 preceding siblings ...)
2015-07-13 20:50 ` [patch 13/20] powerpc/irq: Use access helper irq_data_get_affinity_mask() Thomas Gleixner
@ 2015-07-13 20:50 ` Thomas Gleixner
2015-07-13 20:50 ` [patch 15/20] powerpc/cpm2: " Thomas Gleixner
` (6 subsequent siblings)
20 siblings, 0 replies; 23+ messages in thread
From: Thomas Gleixner @ 2015-07-13 20:50 UTC (permalink / raw)
To: linuxppc-dev
Cc: Benjamin Herrenschmidt, Michael Ellerman, Jiang Liu, Julia Lawall
Use irq_set_handler_locked() as it avoids a redundant lookup of the
irq descriptor.
Search and replacement was done with coccinelle.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Jiang Liu <jiang.liu@linux.intel.com>
Cc: Julia Lawall <julia.lawall@lip6.fr>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Michael Ellerman <mpe@ellerman.id.au>
Cc: linuxppc-dev@lists.ozlabs.org
---
arch/powerpc/platforms/52xx/mpc52xx_pic.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Index: tip/arch/powerpc/platforms/52xx/mpc52xx_pic.c
===================================================================
--- tip.orig/arch/powerpc/platforms/52xx/mpc52xx_pic.c
+++ tip/arch/powerpc/platforms/52xx/mpc52xx_pic.c
@@ -196,7 +196,7 @@ static int mpc52xx_extirq_set_type(struc
ctrl_reg |= (type << (22 - (l2irq * 2)));
out_be32(&intr->ctrl, ctrl_reg);
- __irq_set_handler_locked(d->irq, handler);
+ irq_set_handler_locked(d, handler);
return 0;
}
^ permalink raw reply [flat|nested] 23+ messages in thread
* [patch 15/20] powerpc/cpm2: Use irq_set_handler_locked()
2015-07-13 20:50 [patch 00/20] powerpc: Interrupt cleanups and API change preparation Thomas Gleixner
` (13 preceding siblings ...)
2015-07-13 20:50 ` [patch 14/20] powerpc/mpc52xx: Use irq_set_handler_locked() Thomas Gleixner
@ 2015-07-13 20:50 ` Thomas Gleixner
2015-07-13 20:50 ` [patch 16/20] powerpc/ipic: " Thomas Gleixner
` (5 subsequent siblings)
20 siblings, 0 replies; 23+ messages in thread
From: Thomas Gleixner @ 2015-07-13 20:50 UTC (permalink / raw)
To: linuxppc-dev
Cc: Benjamin Herrenschmidt, Michael Ellerman, Jiang Liu, Julia Lawall
Use irq_set_handler_locked() as it avoids a redundant lookup of the
irq descriptor.
Search and replacement was done with coccinelle.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Jiang Liu <jiang.liu@linux.intel.com>
Cc: Julia Lawall <julia.lawall@lip6.fr>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Michael Ellerman <mpe@ellerman.id.au>
Cc: linuxppc-dev@lists.ozlabs.org
---
arch/powerpc/sysdev/cpm2_pic.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
Index: tip/arch/powerpc/sysdev/cpm2_pic.c
===================================================================
--- tip.orig/arch/powerpc/sysdev/cpm2_pic.c
+++ tip/arch/powerpc/sysdev/cpm2_pic.c
@@ -155,9 +155,9 @@ static int cpm2_set_irq_type(struct irq_
irqd_set_trigger_type(d, flow_type);
if (flow_type & IRQ_TYPE_LEVEL_LOW)
- __irq_set_handler_locked(d->irq, handle_level_irq);
+ irq_set_handler_locked(d, handle_level_irq);
else
- __irq_set_handler_locked(d->irq, handle_edge_irq);
+ irq_set_handler_locked(d, handle_edge_irq);
/* internal IRQ senses are LEVEL_LOW
* EXT IRQ and Port C IRQ senses are programmable
^ permalink raw reply [flat|nested] 23+ messages in thread
* [patch 16/20] powerpc/ipic: Use irq_set_handler_locked()
2015-07-13 20:50 [patch 00/20] powerpc: Interrupt cleanups and API change preparation Thomas Gleixner
` (14 preceding siblings ...)
2015-07-13 20:50 ` [patch 15/20] powerpc/cpm2: " Thomas Gleixner
@ 2015-07-13 20:50 ` Thomas Gleixner
2015-07-13 20:50 ` [patch 17/20] powerpc/mpc8xx: " Thomas Gleixner
` (4 subsequent siblings)
20 siblings, 0 replies; 23+ messages in thread
From: Thomas Gleixner @ 2015-07-13 20:50 UTC (permalink / raw)
To: linuxppc-dev
Cc: Benjamin Herrenschmidt, Michael Ellerman, Jiang Liu, Julia Lawall
Use irq_set_handler_locked() as it avoids a redundant lookup of the
irq descriptor.
Search and replacement was done with coccinelle.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Jiang Liu <jiang.liu@linux.intel.com>
Cc: Julia Lawall <julia.lawall@lip6.fr>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Michael Ellerman <mpe@ellerman.id.au>
Cc: linuxppc-dev@lists.ozlabs.org
---
arch/powerpc/sysdev/ipic.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
Index: tip/arch/powerpc/sysdev/ipic.c
===================================================================
--- tip.orig/arch/powerpc/sysdev/ipic.c
+++ tip/arch/powerpc/sysdev/ipic.c
@@ -624,10 +624,10 @@ static int ipic_set_irq_type(struct irq_
irqd_set_trigger_type(d, flow_type);
if (flow_type & IRQ_TYPE_LEVEL_LOW) {
- __irq_set_handler_locked(d->irq, handle_level_irq);
+ irq_set_handler_locked(d, handle_level_irq);
d->chip = &ipic_level_irq_chip;
} else {
- __irq_set_handler_locked(d->irq, handle_edge_irq);
+ irq_set_handler_locked(d, handle_edge_irq);
d->chip = &ipic_edge_irq_chip;
}
^ permalink raw reply [flat|nested] 23+ messages in thread
* [patch 17/20] powerpc/mpc8xx: Use irq_set_handler_locked()
2015-07-13 20:50 [patch 00/20] powerpc: Interrupt cleanups and API change preparation Thomas Gleixner
` (15 preceding siblings ...)
2015-07-13 20:50 ` [patch 16/20] powerpc/ipic: " Thomas Gleixner
@ 2015-07-13 20:50 ` Thomas Gleixner
2015-07-13 20:50 ` [patch 18/20] powerpc/mpc5121: Prepare cpld_pic_cascade for irq argument removal Thomas Gleixner
` (3 subsequent siblings)
20 siblings, 0 replies; 23+ messages in thread
From: Thomas Gleixner @ 2015-07-13 20:50 UTC (permalink / raw)
To: linuxppc-dev
Cc: Benjamin Herrenschmidt, Michael Ellerman, Jiang Liu, Julia Lawall
Use irq_set_handler_locked() as it avoids a redundant lookup of the
irq descriptor.
Search and replacement was done with coccinelle.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Jiang Liu <jiang.liu@linux.intel.com>
Cc: Julia Lawall <julia.lawall@lip6.fr>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Michael Ellerman <mpe@ellerman.id.au>
Cc: linuxppc-dev@lists.ozlabs.org
---
arch/powerpc/sysdev/mpc8xx_pic.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Index: tip/arch/powerpc/sysdev/mpc8xx_pic.c
===================================================================
--- tip.orig/arch/powerpc/sysdev/mpc8xx_pic.c
+++ tip/arch/powerpc/sysdev/mpc8xx_pic.c
@@ -55,7 +55,7 @@ static int mpc8xx_set_irq_type(struct ir
unsigned int siel = in_be32(&siu_reg->sc_siel);
siel |= mpc8xx_irqd_to_bit(d);
out_be32(&siu_reg->sc_siel, siel);
- __irq_set_handler_locked(d->irq, handle_edge_irq);
+ irq_set_handler_locked(d, handle_edge_irq);
}
return 0;
}
^ permalink raw reply [flat|nested] 23+ messages in thread
* [patch 18/20] powerpc/mpc5121: Prepare cpld_pic_cascade for irq argument removal
2015-07-13 20:50 [patch 00/20] powerpc: Interrupt cleanups and API change preparation Thomas Gleixner
` (16 preceding siblings ...)
2015-07-13 20:50 ` [patch 17/20] powerpc/mpc8xx: " Thomas Gleixner
@ 2015-07-13 20:50 ` Thomas Gleixner
2015-07-13 20:50 ` [patch 19/20] powerpc/85xx: Prepare cascade handlers " Thomas Gleixner
` (2 subsequent siblings)
20 siblings, 0 replies; 23+ messages in thread
From: Thomas Gleixner @ 2015-07-13 20:50 UTC (permalink / raw)
To: linuxppc-dev
Cc: Benjamin Herrenschmidt, Michael Ellerman, Julia Lawall, Jiang Liu
The irq argument of most interrupt flow handlers is unused or merily
used instead of a local variable. The handlers which need the irq
argument can retrieve the irq number from the irq descriptor.
Search and update was done with coccinelle and the invaluable help of
Julia Lawall.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Julia Lawall <Julia.Lawall@lip6.fr>
Cc: Jiang Liu <jiang.liu@linux.intel.com>
---
arch/powerpc/platforms/512x/mpc5121_ads_cpld.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
Index: tip/arch/powerpc/platforms/512x/mpc5121_ads_cpld.c
===================================================================
--- tip.orig/arch/powerpc/platforms/512x/mpc5121_ads_cpld.c
+++ tip/arch/powerpc/platforms/512x/mpc5121_ads_cpld.c
@@ -105,8 +105,10 @@ cpld_pic_get_irq(int offset, u8 ignore,
}
static void
-cpld_pic_cascade(unsigned int irq, struct irq_desc *desc)
+cpld_pic_cascade(unsigned int __irq, struct irq_desc *desc)
{
+ unsigned int irq;
+
irq = cpld_pic_get_irq(0, PCI_IGNORE, &cpld_regs->pci_status,
&cpld_regs->pci_mask);
if (irq != NO_IRQ) {
^ permalink raw reply [flat|nested] 23+ messages in thread
* [patch 19/20] powerpc/85xx: Prepare cascade handlers for irq argument removal
2015-07-13 20:50 [patch 00/20] powerpc: Interrupt cleanups and API change preparation Thomas Gleixner
` (17 preceding siblings ...)
2015-07-13 20:50 ` [patch 18/20] powerpc/mpc5121: Prepare cpld_pic_cascade for irq argument removal Thomas Gleixner
@ 2015-07-13 20:50 ` Thomas Gleixner
2015-07-13 20:50 ` [patch 20/20] powerpc/cell: Prepare iic_ioexc_cascade " Thomas Gleixner
2015-07-16 4:37 ` [patch 00/20] powerpc: Interrupt cleanups and API change preparation Michael Ellerman
20 siblings, 0 replies; 23+ messages in thread
From: Thomas Gleixner @ 2015-07-13 20:50 UTC (permalink / raw)
To: linuxppc-dev
Cc: Benjamin Herrenschmidt, Michael Ellerman, Julia Lawall, Jiang Liu
The irq argument of most interrupt flow handlers is unused or merily
used instead of a local variable. The handlers which need the irq
argument can retrieve the irq number from the irq descriptor.
Search and update was done with coccinelle and the invaluable help of
Julia Lawall.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Julia Lawall <Julia.Lawall@lip6.fr>
Cc: Jiang Liu <jiang.liu@linux.intel.com>
---
arch/powerpc/platforms/85xx/mpc85xx_cds.c | 3 ++-
arch/powerpc/platforms/85xx/socrates_fpga_pic.c | 3 ++-
2 files changed, 4 insertions(+), 2 deletions(-)
Index: tip/arch/powerpc/platforms/85xx/mpc85xx_cds.c
===================================================================
--- tip.orig/arch/powerpc/platforms/85xx/mpc85xx_cds.c
+++ tip/arch/powerpc/platforms/85xx/mpc85xx_cds.c
@@ -192,9 +192,10 @@ void mpc85xx_cds_fixup_bus(struct pci_bu
}
#ifdef CONFIG_PPC_I8259
-static void mpc85xx_8259_cascade_handler(unsigned int irq,
+static void mpc85xx_8259_cascade_handler(unsigned int __irq,
struct irq_desc *desc)
{
+ unsigned int irq = irq_desc_get_irq(desc);
unsigned int cascade_irq = i8259_irq();
if (cascade_irq != NO_IRQ)
Index: tip/arch/powerpc/platforms/85xx/socrates_fpga_pic.c
===================================================================
--- tip.orig/arch/powerpc/platforms/85xx/socrates_fpga_pic.c
+++ tip/arch/powerpc/platforms/85xx/socrates_fpga_pic.c
@@ -91,8 +91,9 @@ static inline unsigned int socrates_fpga
(irq_hw_number_t)i);
}
-void socrates_fpga_pic_cascade(unsigned int irq, struct irq_desc *desc)
+void socrates_fpga_pic_cascade(unsigned int __irq, struct irq_desc *desc)
{
+ unsigned int irq = irq_desc_get_irq(desc);
struct irq_chip *chip = irq_desc_get_chip(desc);
unsigned int cascade_irq;
^ permalink raw reply [flat|nested] 23+ messages in thread
* [patch 20/20] powerpc/cell: Prepare iic_ioexc_cascade for irq argument removal
2015-07-13 20:50 [patch 00/20] powerpc: Interrupt cleanups and API change preparation Thomas Gleixner
` (18 preceding siblings ...)
2015-07-13 20:50 ` [patch 19/20] powerpc/85xx: Prepare cascade handlers " Thomas Gleixner
@ 2015-07-13 20:50 ` Thomas Gleixner
2015-07-16 4:37 ` [patch 00/20] powerpc: Interrupt cleanups and API change preparation Michael Ellerman
20 siblings, 0 replies; 23+ messages in thread
From: Thomas Gleixner @ 2015-07-13 20:50 UTC (permalink / raw)
To: linuxppc-dev
Cc: Benjamin Herrenschmidt, Michael Ellerman, Julia Lawall, Jiang Liu
The irq argument of most interrupt flow handlers is unused or merily
used instead of a local variable. The handlers which need the irq
argument can retrieve the irq number from the irq descriptor.
Search and update was done with coccinelle and the invaluable help of
Julia Lawall.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Julia Lawall <Julia.Lawall@lip6.fr>
Cc: Jiang Liu <jiang.liu@linux.intel.com>
---
arch/powerpc/platforms/cell/interrupt.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
Index: tip/arch/powerpc/platforms/cell/interrupt.c
===================================================================
--- tip.orig/arch/powerpc/platforms/cell/interrupt.c
+++ tip/arch/powerpc/platforms/cell/interrupt.c
@@ -99,8 +99,9 @@ static void iic_ioexc_eoi(struct irq_dat
{
}
-static void iic_ioexc_cascade(unsigned int irq, struct irq_desc *desc)
+static void iic_ioexc_cascade(unsigned int __irq, struct irq_desc *desc)
{
+ unsigned int irq = irq_desc_get_irq(desc);
struct irq_chip *chip = irq_desc_get_chip(desc);
struct cbe_iic_regs __iomem *node_iic =
(void __iomem *)irq_desc_get_handler_data(desc);
^ permalink raw reply [flat|nested] 23+ messages in thread
* Re: [patch 00/20] powerpc: Interrupt cleanups and API change preparation
2015-07-13 20:50 [patch 00/20] powerpc: Interrupt cleanups and API change preparation Thomas Gleixner
` (19 preceding siblings ...)
2015-07-13 20:50 ` [patch 20/20] powerpc/cell: Prepare iic_ioexc_cascade " Thomas Gleixner
@ 2015-07-16 4:37 ` Michael Ellerman
2015-07-31 21:47 ` Thomas Gleixner
20 siblings, 1 reply; 23+ messages in thread
From: Michael Ellerman @ 2015-07-16 4:37 UTC (permalink / raw)
To: Thomas Gleixner; +Cc: linuxppc-dev, Benjamin Herrenschmidt
On Mon, 2015-07-13 at 20:50 +0000, Thomas Gleixner wrote:
> The following patch series contains the following changes:
>
> - Consolidation of chained interrupt handler setup/removal
>
> - Switch to functions which avoid a redundant interrupt
> descriptor lookup
>
> - Preparation of interrupt flow handlers for the 'irq' argument
> removal
>
> The series has no dependencies ...
But I assume you have work that will depend on it? So you're going to merge it
via your tree at least I assume?
> ... and is also available as a git branch for your convenience:
>
> git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/arm
I can't find this.
Did you mean irq/ppc or irq/powerpc maybe? I can't find those either.
> If you want me to carry the patches in the irq/core branch of tip,
> please let me know.
cheers
^ permalink raw reply [flat|nested] 23+ messages in thread
* Re: [patch 00/20] powerpc: Interrupt cleanups and API change preparation
2015-07-16 4:37 ` [patch 00/20] powerpc: Interrupt cleanups and API change preparation Michael Ellerman
@ 2015-07-31 21:47 ` Thomas Gleixner
0 siblings, 0 replies; 23+ messages in thread
From: Thomas Gleixner @ 2015-07-31 21:47 UTC (permalink / raw)
To: Michael Ellerman; +Cc: linuxppc-dev, Benjamin Herrenschmidt
On Thu, 16 Jul 2015, Michael Ellerman wrote:
Sorry I missed your reply ...
> On Mon, 2015-07-13 at 20:50 +0000, Thomas Gleixner wrote:
> > The following patch series contains the following changes:
> >
> > - Consolidation of chained interrupt handler setup/removal
> >
> > - Switch to functions which avoid a redundant interrupt
> > descriptor lookup
> >
> > - Preparation of interrupt flow handlers for the 'irq' argument
> > removal
> >
> > The series has no dependencies ...
>
> But I assume you have work that will depend on it? So you're going to merge it
> via your tree at least I assume?
Can be done either way. The last step will happen when the merge
window closes. So all I care it that it lands in 4.3
> > ... and is also available as a git branch for your convenience:
> >
> > git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/arm
>
> I can't find this.
>
> Did you mean irq/ppc or irq/powerpc maybe? I can't find those either.
Gah.
git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git queue/irq/powerpc
Sorry for the confusion.
Thanks,
tglx
^ permalink raw reply [flat|nested] 23+ messages in thread