The patch titled Possible bugfix: make dmi_mark_tsc_unstable() call mark_tsc_unstable() has been added to the -mm tree. Its filename is possible-bugfix-make-dmi_mark_tsc_unstable-call-mark_tsc_unstable.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: Possible bugfix: make dmi_mark_tsc_unstable() call mark_tsc_unstable() From: "Guillaume Chazarain" <guichaz@xxxxxxxxx> Let the clocksource know the TSC is disabled. Signed-off-by: Guillaume Chazarain <guichaz@xxxxxxxx> Cc: Thomas Gleixner <tglx@xxxxxxxxxxxxx> Cc: Ingo Molnar <mingo@xxxxxxx> Cc: john stultz <johnstul@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/i386/kernel/tsc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN arch/i386/kernel/tsc.c~possible-bugfix-make-dmi_mark_tsc_unstable-call-mark_tsc_unstable arch/i386/kernel/tsc.c --- a/arch/i386/kernel/tsc.c~possible-bugfix-make-dmi_mark_tsc_unstable-call-mark_tsc_unstable +++ a/arch/i386/kernel/tsc.c @@ -287,7 +287,7 @@ static int __init dmi_mark_tsc_unstable( { printk(KERN_NOTICE "%s detected: marking TSC unstable.\n", d->ident); - tsc_disable = 1; + mark_tsc_unstable(); return 0; } _ Patches currently in -mm which might be from guichaz@xxxxxxxxx are bugfix-dont-use-the-tsc-in-sched_clock-if-unstable.patch cleanup-unify-tsc_unstable-and-tsc_disable.patch possible-bugfix-make-dmi_mark_tsc_unstable-call-mark_tsc_unstable.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