From: Kenn H. <ke...@us...> - 2005-03-25 01:14:48
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8006/arch/vax/kernel Modified Files: time.c Log Message: 2.6.10 requires that we call update_process_times() in our timer interrupt Index: time.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel/time.c,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- time.c 4 Oct 2004 06:50:31 -0000 1.18 +++ time.c 25 Mar 2005 01:14:37 -0000 1.19 @@ -174,6 +174,10 @@ do_timer(regs); +#ifndef CONFIG_SMP + update_process_times(user_mode(regs)); +#endif + /* * If we have an externally synchronized Linux clock, then update * CMOS clock accordingly every ~11 minutes. Set_rtc_mmss() has to be |