The patch titled CRISv10: fix timer interrupt parameters has been added to the -mm tree. Its filename is crisv10-fix-timer-interrupt-parameters.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: CRISv10: fix timer interrupt parameters From: Jesper Nilsson <jesper.nilsson@xxxxxxxx> Fix timer interrupt parameters for CRIS v10. - irq_handler_t only takes two arguments, use get_irq_regs to get regs for profiling. - Call update_process_times. - Remove CVS tag. Signed-off-by: Jesper Nilsson <jesper.nilsson@xxxxxxxx> Cc: Mikael Starvik <mikael.starvik@xxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/cris/arch-v10/kernel/time.c | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff -puN arch/cris/arch-v10/kernel/time.c~crisv10-fix-timer-interrupt-parameters arch/cris/arch-v10/kernel/time.c --- a/arch/cris/arch-v10/kernel/time.c~crisv10-fix-timer-interrupt-parameters +++ a/arch/cris/arch-v10/kernel/time.c @@ -1,5 +1,4 @@ -/* $Id: time.c,v 1.5 2004/09/29 06:12:46 starvik Exp $ - * +/* * linux/arch/cris/arch-v10/kernel/time.c * * Copyright (C) 1991, 1992, 1995 Linus Torvalds @@ -20,6 +19,7 @@ #include <asm/io.h> #include <asm/delay.h> #include <asm/rtc.h> +#include <asm/irq_regs.h> /* define this if you need to use print_timestamp */ /* it will make jiffies at 96 hz instead of 100 hz though */ @@ -201,8 +201,9 @@ static long last_rtc_update = 0; extern void cris_do_profile(struct pt_regs *regs); static inline irqreturn_t -timer_interrupt(int irq, void *dev_id, struct pt_regs *regs) +timer_interrupt(int irq, void *dev_id) { + struct pt_regs *regs = get_irq_regs(); /* acknowledge the timer irq */ #ifdef USE_CASCADE_TIMERS @@ -221,9 +222,11 @@ timer_interrupt(int irq, void *dev_id, s #endif /* reset watchdog otherwise it resets us! */ - reset_watchdog(); + /* Update statistics. */ + update_process_times(user_mode(regs)); + /* call the real timer interrupt handler */ do_timer(1); _ Patches currently in -mm which might be from jesper.nilsson@xxxxxxxx are git-mtd.patch cris-build-fixes-fix-csum_tcpudp_magic-declaration.patch cris-build-fixes-add-missing-syscalls.patch cris-build-fixes-hardirqh-include-asm-irqh.patch cris-build-fixes-atomich-needs-compilerh.patch cris-build-fixes-atomich-needs-compilerh-fix.patch cris-build-fixes-irq-fixes.patch cris-build-fixes-sys_crisc-needs-fsh.patch cris-build-fixes-add-baud-rate-defines.patch cris-build-fixes-update-eth_v10c-ethernet-driver.patch cris-build-fixes-update-eth_v10c-ethernet-driver-fix.patch cris-build-fixes-corrected-and-improved-nmi-and-irq-handling.patch cris-build-fixes-fixes-in-arch-cris-kernel-timec-checkpatch-fixes.patch cris-build-fixes-fixes-in-arch-cris-kernel-timec.patch cris-build-fixes-setupc-needs-paramh.patch cris-build-fixes-fix-crisksymsc.patch cris-build-fixes-defconfig-updates.patch cris-dont-include-bitopsh-in-posix_typesh.patch crisv10-serial-driver-rewrite-take-three.patch cris-remove-mtd_amstd-and-mtd_obsolete_chips-take-two.patch cris-remove-mtd_amstd-and-mtd_obsolete_chips-take-two-checkpatch-fixes.patch crisv10-fix-timer-interrupt-parameters.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