Displaying 2 results from an estimated 2 matches for "resume_device_irqs".
2009 Dec 16
7
rebased openSUSE dom0 xen patches for 2.6.31
Hi,
I have uploaded a new set of rebased openSUSE dom0 xen patches and
Gentoo ebuild for 2.6.31 to
http://code.google.com/p/gentoo-xen-kernel/downloads/list, Jan Beulich
recently identified the cause of the null pointer crash and other
stability problems that affected previous versions and with the
necessary fixes applied the kernel has run for 2+ days with no issues
at all, I think you will find
2011 Nov 01
0
Patch "genirq: Add IRQF_RESUME_EARLY and resume such IRQs earlier" has been added to the 3.1-stable tree
....c
@@ -9,6 +9,7 @@
#include <linux/irq.h>
#include <linux/module.h>
#include <linux/interrupt.h>
+#include <linux/syscore_ops.h>
#include "internals.h"
@@ -39,25 +40,58 @@ void suspend_device_irqs(void)
}
EXPORT_SYMBOL_GPL(suspend_device_irqs);
-/**
- * resume_device_irqs - enable interrupt lines disabled by suspend_device_irqs()
- *
- * Enable all interrupt lines previously disabled by suspend_device_irqs() that
- * have the IRQS_SUSPENDED flag set.
- */
-void resume_device_irqs(void)
+static void resume_irqs(bool want_early)
{
struct irq_desc *desc;
int irq;...