The patch titled Fix "no_sync_cmos_clock" logic inversion in kernel/time/ntp.c has been removed from the -mm tree. Its filename was fix-no_sync_cmos_clock-logic-inversion-in-kernel-time-ntpc.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: Fix "no_sync_cmos_clock" logic inversion in kernel/time/ntp.c From: Tony Breeds <tony@xxxxxxxxxxxxxxxxxx> Seems to me that this timer will only get started on platforms that say they don't want it? Signed-off-by: Tony Breeds <tony@xxxxxxxxxxxxxxxxxx> Cc: Paul Mackerras <paulus@xxxxxxxxx> Cc: Gabriel Paubert <paubert@xxxxxxx> Cc: Zachary Amsden <zach@xxxxxxxxxx> Acked-by: Thomas Gleixner <tglx@xxxxxxxxxxxxx> Cc: John Stultz <johnstul@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/time/ntp.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN kernel/time/ntp.c~fix-no_sync_cmos_clock-logic-inversion-in-kernel-time-ntpc kernel/time/ntp.c --- a/kernel/time/ntp.c~fix-no_sync_cmos_clock-logic-inversion-in-kernel-time-ntpc +++ a/kernel/time/ntp.c @@ -226,7 +226,7 @@ static void sync_cmos_clock(unsigned lon static void notify_cmos_timer(void) { - if (no_sync_cmos_clock) + if (!no_sync_cmos_clock) mod_timer(&sync_cmos_timer, jiffies + 1); } _ Patches currently in -mm which might be from tony@xxxxxxxxxxxxxxxxxx are origin.patch mkmakefile-include-arch-on-o=-builds.patch fix-discrepancy-between-vdso-based-gettimeofday-and-sys_gettimeofday.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