diff options
author | Robert Richter <robert.richter@amd.com> | 2008-07-22 15:08:59 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-07-26 05:48:08 -0400 |
commit | ebb535de267386f659e0348185b1e361dbba3b59 (patch) | |
tree | 701b01f8161d9efd3915cda1648d36f5c131881e /arch/x86/oprofile | |
parent | 90645700ef8393cd9cdc02d83da36726fc88f49e (diff) |
OProfile: on_each_cpu(): kill unused retry parameter
Signed-off-by: Robert Richter <robert.richter@amd.com>
Cc: oprofile-list <oprofile-list@lists.sourceforge.net>
Cc: Barry Kasindorf <barry.kasindorf@amd.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/oprofile')
-rw-r--r-- | arch/x86/oprofile/op_model_athlon.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/oprofile/op_model_athlon.c b/arch/x86/oprofile/op_model_athlon.c index 284c45661ed7..ce732362dbb0 100644 --- a/arch/x86/oprofile/op_model_athlon.c +++ b/arch/x86/oprofile/op_model_athlon.c | |||
@@ -382,7 +382,7 @@ static int pfm_amd64_setup_eilvt(void) | |||
382 | u32 value = 0; | 382 | u32 value = 0; |
383 | 383 | ||
384 | /* per CPU setup */ | 384 | /* per CPU setup */ |
385 | on_each_cpu(apic_init_ibs_nmi_per_cpu, NULL, 0, 1); | 385 | on_each_cpu(apic_init_ibs_nmi_per_cpu, NULL, 1); |
386 | 386 | ||
387 | nodes = 0; | 387 | nodes = 0; |
388 | cpu_cfg = NULL; | 388 | cpu_cfg = NULL; |
@@ -443,7 +443,7 @@ static void setup_ibs(void) | |||
443 | static void clear_ibs_nmi(void) | 443 | static void clear_ibs_nmi(void) |
444 | { | 444 | { |
445 | if (ibs_allowed) | 445 | if (ibs_allowed) |
446 | on_each_cpu(apic_clear_ibs_nmi_per_cpu, NULL, 1, 1); | 446 | on_each_cpu(apic_clear_ibs_nmi_per_cpu, NULL, 1); |
447 | } | 447 | } |
448 | 448 | ||
449 | static void setup_ibs_files(struct super_block *sb, struct dentry *root) | 449 | static void setup_ibs_files(struct super_block *sb, struct dentry *root) |