From: Jeff Dike From: Bodo Stroesser In call to update_process_times() set parameter user correctly. (was from for SKAS). Signed-off-by: Bodo Stroesser Signed-off-by: Jeff Dike Signed-off-by: Andrew Morton --- 25-akpm/arch/um/kernel/time_kern.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN arch/um/kernel/time_kern.c~uml-fix-update_process_times-call arch/um/kernel/time_kern.c --- 25/arch/um/kernel/time_kern.c~uml-fix-update_process_times-call Fri Dec 3 13:50:41 2004 +++ 25-akpm/arch/um/kernel/time_kern.c Fri Dec 3 13:50:41 2004 @@ -170,7 +170,7 @@ void __const_udelay(um_udelay_t usecs) void timer_handler(int sig, union uml_pt_regs *regs) { local_irq_disable(); - update_process_times(user_context(UPT_SP(regs))); + update_process_times(CHOOSE_MODE(user_context(UPT_SP(regs)), (regs)->skas.is_user)); local_irq_enable(); if(current_thread->cpu == 0) timer_irq(regs); _