Re: [PATCH] perf_events: improve x86 event scheduling (v6 incremental)

From: Stephane Eranian
Date: Fri Jan 29 2010 - 18:08:22 EST


I think there is a problem with this following code:

void hw_perf_enable(void)
for (i = 0; i < cpuc->n_events; i++) {

event = cpuc->event_list[i];
hwc = &event->hw;

if (hwc->idx == -1 || hwc->idx == cpuc->assign[i])
continue;

Here you are looking for events which are moving. I think the 2nd
part of the if is not good enough. It is not because hwc->idx is
identical to the assignment, that you can assume the event was
already there. It may have been there in the past, then scheduled
out and replaced at idx by another event. When it comes back,
it gets its spot back, but it needs to be reprogrammed.

That is why in v6 incremental, I have added last_cpu, last_tag
to have a stronger checks and match_prev_assignment().

Somehow it is missing in the series you've committed unless
I am missing something.


On Mon, Jan 25, 2010 at 6:59 PM, Peter Zijlstra <peterz@xxxxxxxxxxxxx> wrote:
> On Mon, 2010-01-25 at 18:48 +0100, stephane eranian wrote:
>
>> >> It seems a solution would be to call x86_pmu_disable() before
>> >> assigning an event to a new counter for all events which are
>> >> moving. This is because we cannot assume all events have been
>> >> previously disabled individually. Something like
>> >>
>> >> if (!match_prev_assignment(hwc, cpuc, i)) {
>> >> Â Âif (hwc->idx != -1)
>> >> Â Â Â x86_pmu.disable(hwc, hwc->idx);
>> >> Â Âx86_assign_hw_event(event, cpuc, cpuc->assign[i]);
>> >> Â Âx86_perf_event_set_period(event, hwc, hwc->idx);
>> >> }
--
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/