The patch titled time_adjust cleared before use has been removed from the -mm tree. Its filename was time_adjust-cleared-before-use.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: time_adjust cleared before use From: Jim Houston <jim.houston@xxxxxxxxxxx> I notice that the code which implements adjtime clears the time_adjust value before using it. The attached patch makes the obvious fix. Acked-by: Roman Zippel <zippel@xxxxxxxxxxxxxx> Signed-off-by: Jim Houston <jim.houston@xxxxxxxx> Cc: John Stultz <johnstul@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- kernel/time/ntp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN kernel/time/ntp.c~time_adjust-cleared-before-use kernel/time/ntp.c --- a/kernel/time/ntp.c~time_adjust-cleared-before-use +++ a/kernel/time/ntp.c @@ -161,9 +161,9 @@ void second_overflow(void) time_adjust += MAX_TICKADJ; tick_length -= MAX_TICKADJ_SCALED; } else { - time_adjust = 0; tick_length += (s64)(time_adjust * NSEC_PER_USEC / HZ) << TICK_LENGTH_SHIFT; + time_adjust = 0; } } } _ Patches currently in -mm which might be from jim.houston@xxxxxxxxxxx are origin.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