Thanks. Does this look good? Haven't tested it yet but I don't see a reason it shouldn't work for me. Sparse will probably complain about this, should I define them somewhere? --- kernel/power/main.c | 27 +++++++++++++++++++++++++-- 1 file changed, 25 insertions(+), 2 deletions(-) --- wireless-dev.orig/kernel/power/main.c 2007-04-20 21:34:01.531107385 +0200 +++ wireless-dev/kernel/power/main.c 2007-04-20 21:34:02.141107385 +0200 @@ -128,13 +128,35 @@ static int suspend_prepare(suspend_state return error; } +/** + * arch_s2ram_disable_irqs - disable IRQs for suspend + * + * Disables IRQs (in the default case) and allows architectures + * to override it if more needs to be done. + */ +void __attribute__ ((weak)) arch_s2ram_disable_irqs(unsigned long *flags) +{ + local_irq_save(*flags); +} + +/** + * arch_s2ram_enable_irqs - enable IRQs after suspend + * + * Enables IRQs (in the default case) and allows architectures + * to override it if more needs to be done. + */ +void __attribute__ ((weak)) arch_s2ram_enable_irqs(unsigned long *flags) +{ + local_irq_restore(*flags); +} int suspend_enter(suspend_state_t state) { int error = 0; unsigned long flags; - local_irq_save(flags); + arch_s2ram_disable_irqs(&flags); + BUG_ON(!irqs_disabled()); if ((error = device_power_down(PMSG_SUSPEND))) { printk(KERN_ERR "Some devices failed to power down\n"); @@ -143,7 +165,8 @@ int suspend_enter(suspend_state_t state) error = pm_ops->enter(state); device_power_up(); Done: - local_irq_restore(flags); + arch_s2ram_enable_irqs(&flags); + BUG_ON(irqs_disabled()); return error; } _______________________________________________ linux-pm mailing list linux-pm@xxxxxxxxxxxxxxxxxxxxxxxxxx https://lists.linux-foundation.org/mailman/listinfo/linux-pm