The patch titled Avoid printing pointless tsc skew msgs has been removed from the -mm tree. Its filename is avoid-printing-pointless-tsc-skew-msgs.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: Dave Jones <davej@xxxxxxxxxx> These messages are kinda silly.. CPU#0 had 0 usecs TSC skew, fixed it up. CPU#1 had 0 usecs TSC skew, fixed it up. inspired from: http://bugzilla.kernel.org/attachment.cgi?id=7713&action=view Signed-off-by: Dave Jones <davej@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/i386/kernel/smpboot.c | 4 +++- 1 files changed, 3 insertions(+), 1 deletion(-) diff -puN arch/i386/kernel/smpboot.c~avoid-printing-pointless-tsc-skew-msgs arch/i386/kernel/smpboot.c --- devel/arch/i386/kernel/smpboot.c~avoid-printing-pointless-tsc-skew-msgs 2006-04-27 18:39:04.000000000 -0700 +++ devel-akpm/arch/i386/kernel/smpboot.c 2006-04-27 18:39:04.000000000 -0700 @@ -313,7 +313,9 @@ static void __init synchronize_tsc_bp (v if (tsc_values[i] < avg) realdelta = -realdelta; - printk(KERN_INFO "CPU#%d had %ld usecs TSC skew, fixed it up.\n", i, realdelta); + if (realdelta > 0) + printk(KERN_INFO "CPU#%d had %ld usecs TSC " + "skew, fixed it up.\n", i, realdelta); } sum += delta; _ Patches currently in -mm which might be from davej@xxxxxxxxxx are origin.patch git-acpi.patch git-agpgart.patch improve-pci-config-space-writeback.patch git-watchdog.patch fix-ide-locking-error.patch post-halloween-doc.patch debug-warn-if-we-sleep-in-an-irq-for-a-long-time.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