The patch titled UML: fix wall_to_monotonic initialization has been added to the -mm tree. Its filename is uml-fix-wall_to_monotonic-initialization.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: UML: fix wall_to_monotonic initialization From: Jeff Dike <jdike@xxxxxxxxxxx> Change a variable from unsigned to signed in order to get sign-extension when the thing is negated. Without this, uptime is horribly confused. Signed-off-by: Jeff Dike <jdike@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/um/kernel/time_kern.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN arch/um/kernel/time_kern.c~uml-fix-wall_to_monotonic-initialization arch/um/kernel/time_kern.c --- devel/arch/um/kernel/time_kern.c~uml-fix-wall_to_monotonic-initialization 2006-06-13 04:39:15.000000000 -0700 +++ devel-akpm/arch/um/kernel/time_kern.c 2006-06-13 04:39:15.000000000 -0700 @@ -87,7 +87,7 @@ void timer_irq(union uml_pt_regs *regs) void time_init_kern(void) { - unsigned long long nsecs; + long long nsecs; nsecs = os_nsecs(); set_normalized_timespec(&wall_to_monotonic, -nsecs / BILLION, _ Patches currently in -mm which might be from jdike@xxxxxxxxxxx are uml-fix-wall_to_monotonic-initialization.patch uml-make-copy__user-atomic.patch uml-fix-not_dead_yet-when-directory-is-in-bad-state.patch uml-rename-and-improve-actually_do_remove.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