linux-parisc.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 14/57] parisc: irq: remove IRQF_DISABLED
       [not found] <1316597339-29861-1-git-send-email-yong.zhang0@gmail.com>
@ 2011-09-21  9:28 ` Yong Zhang
  2011-09-21  9:28 ` [PATCH 40/57] dirvers/parisc: irq: Remove IRQF_DISABLED Yong Zhang
  1 sibling, 0 replies; 4+ messages in thread
From: Yong Zhang @ 2011-09-21  9:28 UTC (permalink / raw)
  To: linux-arch, linux-kernel
  Cc: tglx, yong.zhang0, Kyle McMartin, Helge Deller,
	James E.J. Bottomley, James Bottomley, linux-parisc

Since commit [c58543c8: genirq: Run irq handlers with interrupts disabled],
We run all interrupt handlers with interrupts disabled
and we even check and yell when an interrupt handler
returns with interrupts enabled (see commit [b738a50a:
genirq: Warn when handler enables interrupts]).

So now this flag is a NOOP and can be removed.

Signed-off-by: Yong Zhang <yong.zhang0@gmail.com>
---
 arch/parisc/include/asm/floppy.h |    4 ++--
 arch/parisc/kernel/irq.c         |    4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/arch/parisc/include/asm/floppy.h b/arch/parisc/include/asm/floppy.h
index 4ca69f5..f84ff12 100644
--- a/arch/parisc/include/asm/floppy.h
+++ b/arch/parisc/include/asm/floppy.h
@@ -157,10 +157,10 @@ static int fd_request_irq(void)
 {
 	if(can_use_virtual_dma)
 		return request_irq(FLOPPY_IRQ, floppy_hardint,
-				   IRQF_DISABLED, "floppy", NULL);
+				   0, "floppy", NULL);
 	else
 		return request_irq(FLOPPY_IRQ, floppy_interrupt,
-				   IRQF_DISABLED, "floppy", NULL);
+				   0, "floppy", NULL);
 }
 
 static unsigned long dma_mem_alloc(unsigned long size)
diff --git a/arch/parisc/kernel/irq.c b/arch/parisc/kernel/irq.c
index c0b1aff..420676b 100644
--- a/arch/parisc/kernel/irq.c
+++ b/arch/parisc/kernel/irq.c
@@ -379,14 +379,14 @@ void do_cpu_irq_mask(struct pt_regs *regs)
 static struct irqaction timer_action = {
 	.handler = timer_interrupt,
 	.name = "timer",
-	.flags = IRQF_DISABLED | IRQF_TIMER | IRQF_PERCPU | IRQF_IRQPOLL,
+	.flags = IRQF_TIMER | IRQF_PERCPU | IRQF_IRQPOLL,
 };
 
 #ifdef CONFIG_SMP
 static struct irqaction ipi_action = {
 	.handler = ipi_interrupt,
 	.name = "IPI",
-	.flags = IRQF_DISABLED | IRQF_PERCPU,
+	.flags = IRQF_PERCPU,
 };
 #endif
 
-- 
1.7.4.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 40/57] dirvers/parisc: irq: Remove IRQF_DISABLED
       [not found] <1316597339-29861-1-git-send-email-yong.zhang0@gmail.com>
  2011-09-21  9:28 ` [PATCH 14/57] parisc: irq: remove IRQF_DISABLED Yong Zhang
@ 2011-09-21  9:28 ` Yong Zhang
  2011-09-21 10:07   ` James Bottomley
  1 sibling, 1 reply; 4+ messages in thread
From: Yong Zhang @ 2011-09-21  9:28 UTC (permalink / raw)
  To: linux-arch, linux-kernel
  Cc: tglx, yong.zhang0, Kyle McMartin, Helge Deller,
	James E.J. Bottomley, linux-parisc

Since commit [c58543c8: genirq: Run irq handlers with interrupts disabled],
We run all interrupt handlers with interrupts disabled
and we even check and yell when an interrupt handler
returns with interrupts enabled (see commit [b738a50a:
genirq: Warn when handler enables interrupts]).

So now this flag is a NOOP and can be removed.

Signed-off-by: Yong Zhang <yong.zhang0@gmail.com>
---
 drivers/parisc/superio.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/parisc/superio.c b/drivers/parisc/superio.c
index e3b76d4..5e6fd94e 100644
--- a/drivers/parisc/superio.c
+++ b/drivers/parisc/superio.c
@@ -274,7 +274,7 @@ superio_init(struct pci_dev *pcidev)
 	else
 		printk(KERN_ERR PFX "USB regulator not initialized!\n");
 
-	if (request_irq(pdev->irq, superio_interrupt, IRQF_DISABLED,
+	if (request_irq(pdev->irq, superio_interrupt, 0,
 			SUPERIO, (void *)sio)) {
 
 		printk(KERN_ERR PFX "could not get irq\n");
-- 
1.7.4.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH 40/57] dirvers/parisc: irq: Remove IRQF_DISABLED
  2011-09-21  9:28 ` [PATCH 40/57] dirvers/parisc: irq: Remove IRQF_DISABLED Yong Zhang
@ 2011-09-21 10:07   ` James Bottomley
  2011-09-21 12:07     ` Yong Zhang
  0 siblings, 1 reply; 4+ messages in thread
From: James Bottomley @ 2011-09-21 10:07 UTC (permalink / raw)
  To: Yong Zhang
  Cc: linux-arch, linux-kernel, tglx, Kyle McMartin, Helge Deller,
	James E.J. Bottomley, linux-parisc

Firstly, we don't need 57 patches doing this ... a single one through
the trivial tree should be sufficient (and it can nuke the flag at the
same time).

On Wed, 2011-09-21 at 17:28 +0800, Yong Zhang wrote:
> Since commit [c58543c8: genirq: Run irq handlers with interrupts disabled],

um, that's commit e58aa3d2d0cc01ad8d6f7f640a0670433f794922

James

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 40/57] dirvers/parisc: irq: Remove IRQF_DISABLED
  2011-09-21 10:07   ` James Bottomley
@ 2011-09-21 12:07     ` Yong Zhang
  0 siblings, 0 replies; 4+ messages in thread
From: Yong Zhang @ 2011-09-21 12:07 UTC (permalink / raw)
  To: James Bottomley
  Cc: linux-arch, linux-kernel, tglx, Kyle McMartin, Helge Deller,
	James E.J. Bottomley, linux-parisc

On Wed, Sep 21, 2011 at 02:07:04PM +0400, James Bottomley wrote:
> Firstly, we don't need 57 patches doing this ... a single one through
> the trivial tree should be sufficient (and it can nuke the flag at the
> same time).
> 
> On Wed, 2011-09-21 at 17:28 +0800, Yong Zhang wrote:
> > Since commit [c58543c8: genirq: Run irq handlers with interrupts disabled],
> 
> um, that's commit e58aa3d2d0cc01ad8d6f7f640a0670433f794922

Ah, yes, not sure how I make it wrong.

Thanks,
Yong

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2011-09-21 12:07 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <1316597339-29861-1-git-send-email-yong.zhang0@gmail.com>
2011-09-21  9:28 ` [PATCH 14/57] parisc: irq: remove IRQF_DISABLED Yong Zhang
2011-09-21  9:28 ` [PATCH 40/57] dirvers/parisc: irq: Remove IRQF_DISABLED Yong Zhang
2011-09-21 10:07   ` James Bottomley
2011-09-21 12:07     ` Yong Zhang

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).