All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/3] add flag IRQF_NO_SUSPEND in 'struct irqaction'
@ 2009-07-13  4:07 Guanqun Lu
  2009-07-13  4:07 ` [PATCH 2/3] add IRQF_NO_SUSPEND for 'bind_ipi_to_irqhandler' Guanqun Lu
  2009-07-13  8:46 ` [PATCH 1/3] add flag IRQF_NO_SUSPEND in 'struct irqaction' Yu, Ke
  0 siblings, 2 replies; 11+ messages in thread
From: Guanqun Lu @ 2009-07-13  4:07 UTC (permalink / raw)
  To: xen-devel; +Cc: Guanqun Lu

We currently only bypass IRQF_TIMER in '__disable_irq',
but Xen specific IRQs should not be disabled either.
This commit adds a new flag to accompolish this goal
without being mixed up with IRQF_TIMER flag.

Signed-off-by: Guanqun Lu <guanqun.lu@intel.com>
---
 include/linux/interrupt.h |    1 +
 kernel/irq/manage.c       |    3 ++-
 2 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/include/linux/interrupt.h b/include/linux/interrupt.h
index 8a9613d..8ad2b6f 100644
--- a/include/linux/interrupt.h
+++ b/include/linux/interrupt.h
@@ -58,6 +58,7 @@
 #define IRQF_PERCPU		0x00000400
 #define IRQF_NOBALANCING	0x00000800
 #define IRQF_IRQPOLL		0x00001000
+#define IRQF_NO_SUSPEND		0x00002000
 
 typedef irqreturn_t (*irq_handler_t)(int, void *);
 
diff --git a/kernel/irq/manage.c b/kernel/irq/manage.c
index 1516ab7..f814678 100644
--- a/kernel/irq/manage.c
+++ b/kernel/irq/manage.c
@@ -165,7 +165,8 @@ static inline int setup_affinity(unsigned int irq, struct irq_desc *desc)
 void __disable_irq(struct irq_desc *desc, unsigned int irq, bool suspend)
 {
 	if (suspend) {
-		if (!desc->action || (desc->action->flags & IRQF_TIMER))
+		if (!desc->action ||
+		    (desc->action->flags & (IRQF_TIMER | IRQF_NO_SUSPEND)))
 			return;
 		desc->status |= IRQ_SUSPENDED;
 	}
-- 
1.6.1.rc3

^ permalink raw reply related	[flat|nested] 11+ messages in thread
[parent not found: <1247834204-3084-1-git-send-email-guanqun.lu@intel.com>]

end of thread, other threads:[~2009-07-20  2:56 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-07-13  4:07 [PATCH 1/3] add flag IRQF_NO_SUSPEND in 'struct irqaction' Guanqun Lu
2009-07-13  4:07 ` [PATCH 2/3] add IRQF_NO_SUSPEND for 'bind_ipi_to_irqhandler' Guanqun Lu
2009-07-13  4:08   ` [PATCH 3/3] add IRQF_TIMER to Xen timer Guanqun Lu
2009-07-13  8:46 ` [PATCH 1/3] add flag IRQF_NO_SUSPEND in 'struct irqaction' Yu, Ke
2009-07-14 20:01   ` Jeremy Fitzhardinge
2009-07-15  2:10     ` Yu, Ke
     [not found] <1247834204-3084-1-git-send-email-guanqun.lu@intel.com>
2009-07-17  1:52 ` Rafael J. Wysocki
2009-07-17  2:16   ` Lu, Guanqun
2009-07-17  2:41     ` Rafael J. Wysocki
2009-07-17 14:17   ` Thomas Gleixner
2009-07-20  2:55     ` Lu, Guanqun

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.