[PATCH 15/24] OProfile: on_each_cpu(): kill unused retry parameter

From: Robert Richter
Date: Tue Jul 22 2008 - 15:26:45 EST


Signed-off-by: Robert Richter <robert.richter@xxxxxxx>
---
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 284c456..ce73236 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)
u32 value = 0;

/* per CPU setup */
- on_each_cpu(apic_init_ibs_nmi_per_cpu, NULL, 0, 1);
+ on_each_cpu(apic_init_ibs_nmi_per_cpu, NULL, 1);

nodes = 0;
cpu_cfg = NULL;
@@ -443,7 +443,7 @@ static void setup_ibs(void)
static void clear_ibs_nmi(void)
{
if (ibs_allowed)
- on_each_cpu(apic_clear_ibs_nmi_per_cpu, NULL, 1, 1);
+ on_each_cpu(apic_clear_ibs_nmi_per_cpu, NULL, 1);
}

static void setup_ibs_files(struct super_block *sb, struct dentry *root)
--
1.5.5.4


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/