The patch titled swsusp: fix typo in cr0 handling has been removed from the -mm tree. Its filename is swsusp-fix-typo-in-cr0-handling.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. ------------------------------------------------------ Subject: swsusp: fix typo in cr0 handling From: Pavel Machek <pavel@xxxxxx> Writing cr0 to cr2 register can't be right. This fixes the typo. I wonder how it could survive so long. Signed-off-by: Pavel Machek <pavel@xxxxxxx> Cc: Zachary Amsden <zach@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/i386/power/cpu.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN arch/i386/power/cpu.c~swsusp-fix-typo-in-cr0-handling arch/i386/power/cpu.c --- devel/arch/i386/power/cpu.c~swsusp-fix-typo-in-cr0-handling 2006-05-22 22:34:59.000000000 -0700 +++ devel-akpm/arch/i386/power/cpu.c 2006-05-22 22:34:59.000000000 -0700 @@ -92,7 +92,7 @@ void __restore_processor_state(struct sa write_cr4(ctxt->cr4); write_cr3(ctxt->cr3); write_cr2(ctxt->cr2); - write_cr2(ctxt->cr0); + write_cr0(ctxt->cr0); /* * now restore the descriptor tables to their proper values _ Patches currently in -mm which might be from pavel@xxxxxx are origin.patch git-acpi.patch fix-sco-on-some-bluetooth-adapters-2.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 swsusp-take-lowmem-reserves-into-account.patch kernel-power-snapshotc-cleanups.patch dont-use-flush_tlb_all-in-suspend-time.patch dont-use-flush_tlb_all-in-suspend-time-tidy.patch swsusp-documentation-updates.patch nbd-kill-obsolete-changelog-add-gpl.patch backlight-locomo-backlight-driver-updates.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