Skip to content

Commit

Permalink
perf, x86: Clean up reserve_ds_buffers() signature
Browse files Browse the repository at this point in the history
Now that reserve_ds_buffers() never fails, change it to return
void and remove all code dealing with the error return.

Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Acked-by: Stephane Eranian <eranian@google.com>
LKML-Reference: <20101019134808.462621937@chello.nl>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
  • Loading branch information
Peter Zijlstra authored and Ingo Molnar committed Oct 22, 2010
1 parent 6809b6e commit f80c9e3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 12 deletions.
9 changes: 3 additions & 6 deletions arch/x86/kernel/cpu/perf_event.c
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ static void release_pmc_hardware(void) {}

#endif

static int reserve_ds_buffers(void);
static void reserve_ds_buffers(void);
static void release_ds_buffers(void);

static void hw_perf_event_destroy(struct perf_event *event)
Expand Down Expand Up @@ -546,11 +546,8 @@ static int __x86_pmu_event_init(struct perf_event *event)
if (atomic_read(&active_events) == 0) {
if (!reserve_pmc_hardware())
err = -EBUSY;
else {
err = reserve_ds_buffers();
if (err)
release_pmc_hardware();
}
else
reserve_ds_buffers();
}
if (!err)
atomic_inc(&active_events);
Expand Down
9 changes: 3 additions & 6 deletions arch/x86/kernel/cpu/perf_event_intel_ds.c
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ static void release_ds_buffers(void)
put_online_cpus();
}

static int reserve_ds_buffers(void)
static void reserve_ds_buffers(void)
{
int bts_err = 0, pebs_err = 0;
int cpu;
Expand All @@ -200,7 +200,7 @@ static int reserve_ds_buffers(void)
x86_pmu.pebs_active = 0;

if (!x86_pmu.bts && !x86_pmu.pebs)
return 0;
return;

if (!x86_pmu.bts)
bts_err = 1;
Expand Down Expand Up @@ -251,8 +251,6 @@ static int reserve_ds_buffers(void)
}

put_online_cpus();

return 0;
}

/*
Expand Down Expand Up @@ -714,9 +712,8 @@ static void intel_ds_init(void)

#else /* CONFIG_CPU_SUP_INTEL */

static int reserve_ds_buffers(void)
static void reserve_ds_buffers(void)
{
return 0;
}

static void release_ds_buffers(void)
Expand Down

0 comments on commit f80c9e3

Please sign in to comment.