The patch titled timer TSC check suspend notifier change has been removed from the -mm tree. Its filename is timer-tsc-check-suspend-notifier-change.patch This patch was probably dropped from -mm because it has now been merged into a subsystem tree or into Linus's tree, or because it was folded into its parent patch in the -mm tree. From: Shaohua Li <shaohua.li@xxxxxxxxx> At suspend time, the TSC CPUFREQ_SUSPENDCHANGE notifier change might wrongly enable interrupt. cpufreq driver suspend/resume is in interrupt disabled environment. Signed-off-by: Shaohua Li <shaohua.li@xxxxxxxxx> Cc: Pavel Machek <pavel@xxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/i386/kernel/timers/timer_tsc.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff -puN arch/i386/kernel/timers/timer_tsc.c~timer-tsc-check-suspend-notifier-change arch/i386/kernel/timers/timer_tsc.c --- devel/arch/i386/kernel/timers/timer_tsc.c~timer-tsc-check-suspend-notifier-change 2006-05-01 12:15:35.000000000 -0700 +++ devel-akpm/arch/i386/kernel/timers/timer_tsc.c 2006-05-01 12:15:35.000000000 -0700 @@ -279,7 +279,7 @@ time_cpufreq_notifier(struct notifier_bl { struct cpufreq_freqs *freq = data; - if (val != CPUFREQ_RESUMECHANGE) + if (val != CPUFREQ_RESUMECHANGE && val != CPUFREQ_SUSPENDCHANGE) write_seqlock_irq(&xtime_lock); if (!ref_freq) { if (!freq->old){ @@ -312,7 +312,7 @@ time_cpufreq_notifier(struct notifier_bl } end: - if (val != CPUFREQ_RESUMECHANGE) + if (val != CPUFREQ_RESUMECHANGE && val != CPUFREQ_SUSPENDCHANGE) write_sequnlock_irq(&xtime_lock); return 0; _ Patches currently in -mm which might be from shaohua.li@xxxxxxxxx are origin.patch git-acpi.patch x86-cpu_init-avoid-gfp_kernel-allocation-while-atomic.patch swsusp-add-architecture-special-saveable-pages-support.patch swsusp-add-architecture-special-saveable-pages-fix.patch swsusp-i386-mark-special-saveable-unsaveable-pages.patch swsusp-i386-mark-special-saveable-unsaveable-pages-fix.patch swsusp-x86_64-mark-special-saveable-unsaveable-pages.patch swsusp-x86_64-mark-special-saveable-unsaveable-pages-fix.patch dont-use-flush_tlb_all-in-suspend-time.patch dont-use-flush_tlb_all-in-suspend-time-tidy.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html