2 * @file nmi_timer_int.c
4 * @remark Copyright 2003 OProfile authors
5 * @remark Read the file COPYING
7 * @author Zwane Mwaikambo <zwane@linuxpower.ca>
10 #include <linux/init.h>
11 #include <linux/smp.h>
12 #include <linux/errno.h>
13 #include <linux/oprofile.h>
14 #include <linux/rcupdate.h>
19 #include <asm/ptrace.h>
21 static int nmi_timer_callback(struct pt_regs
* regs
, int cpu
)
23 oprofile_add_sample(regs
, 0);
27 static int timer_start(void)
29 disable_timer_nmi_watchdog();
30 set_nmi_callback(nmi_timer_callback
);
35 static void timer_stop(void)
37 enable_timer_nmi_watchdog();
39 synchronize_sched(); /* Allow already-started NMIs to complete. */
43 int __init
op_nmi_timer_init(struct oprofile_operations
* ops
)
45 extern int nmi_active
;
50 ops
->start
= timer_start
;
51 ops
->stop
= timer_stop
;
52 ops
->cpu_type
= "timer";
53 printk(KERN_INFO
"oprofile: using NMI timer interrupt.\n");