perf/x86-ibs: Rename some variables

Simple patch that just renames some variables for better
understanding.

Signed-off-by: Robert Richter <robert.richter@amd.com>
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/1333390758-10893-8-git-send-email-robert.richter@amd.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
This commit is contained in:
Robert Richter 2012-04-02 20:19:13 +02:00 коммит произвёл Ingo Molnar
Родитель 450bbd493d
Коммит 98112d2e95
1 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

@ -62,7 +62,7 @@ struct perf_ibs_data {
};
static int
perf_event_set_period(struct hw_perf_event *hwc, u64 min, u64 max, u64 *count)
perf_event_set_period(struct hw_perf_event *hwc, u64 min, u64 max, u64 *hw_period)
{
s64 left = local64_read(&hwc->period_left);
s64 period = hwc->sample_period;
@ -91,7 +91,7 @@ perf_event_set_period(struct hw_perf_event *hwc, u64 min, u64 max, u64 *count)
if (left > max)
left = max;
*count = (u64)left;
*hw_period = (u64)left;
return overflow;
}
@ -262,13 +262,13 @@ static int perf_ibs_init(struct perf_event *event)
static int perf_ibs_set_period(struct perf_ibs *perf_ibs,
struct hw_perf_event *hwc, u64 *period)
{
int ret;
int overflow;
/* ignore lower 4 bits in min count: */
ret = perf_event_set_period(hwc, 1<<4, perf_ibs->max_period, period);
overflow = perf_event_set_period(hwc, 1<<4, perf_ibs->max_period, period);
local64_set(&hwc->prev_count, 0);
return ret;
return overflow;
}
static u64 get_ibs_fetch_count(u64 config)