diff options
author | Robert Richter <robert.richter@amd.com> | 2008-07-24 16:00:16 +0200 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-07-26 11:48:17 +0200 |
commit | 7e7b43892b87b6be259479ef4de14029dcb4012f (patch) | |
tree | 8e50a45487bfe09506a286c1997c3b64968e391d /arch/x86 | |
parent | 1a960b402a51d80abf54e3f8e4972374ffe5f22d (diff) | |
download | kernel-crypto-7e7b43892b87b6be259479ef4de14029dcb4012f.tar.gz kernel-crypto-7e7b43892b87b6be259479ef4de14029dcb4012f.tar.xz kernel-crypto-7e7b43892b87b6be259479ef4de14029dcb4012f.zip |
x86/oprofile: fix on_each_cpu build error
Signed-off-by: Robert Richter <robert.richter@amd.com>
Cc: oprofile-list <oprofile-list@lists.sourceforge.net>
Cc: Jason Yeh <jason.yeh@amd.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/oprofile/nmi_int.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/oprofile/nmi_int.c b/arch/x86/oprofile/nmi_int.c index 2a65fe7680a..fb4902bc6f1 100644 --- a/arch/x86/oprofile/nmi_int.c +++ b/arch/x86/oprofile/nmi_int.c @@ -123,7 +123,7 @@ static int nmi_switch_event(void) if (nmi_multiplex_on() < 0) return -EINVAL; - on_each_cpu(nmi_cpu_switch, NULL, 0, 1); + on_each_cpu(nmi_cpu_switch, NULL, 1); return 0; } |