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 <[EMAIL PROTECTED]>
Seems to me that this timer will only get started on platforms that say
they don't want it?
Signed-off-by: Tony Breeds <[EMAIL PROTECTED]>
Cc: Paul Mackerras <[EMAIL PROTECTED]>
Cc: Gabriel Paubert <[EMAIL PROTECTED]>
Cc: Zachary Amsden <[EMAIL PROTECTED]>
Acked-by: Thomas Gleixner <[EMAIL PROTECTED]>
Cc: John Stultz <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
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 [EMAIL PROTECTED] 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 [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html