Skip to content

Commit

Permalink
OProfile: on_each_cpu(): kill unused retry parameter
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Robert Richter authored and Ingo Molnar committed Jul 26, 2008
1 parent 9064570 commit ebb535d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/x86/oprofile/op_model_athlon.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit ebb535d

Please sign in to comment.