Re: [RFC][PATCH] perf: Rewrite core context handling

From: Peter Zijlstra
Date: Thu Oct 11 2018 - 05:29:26 EST


On Thu, Oct 11, 2018 at 07:50:23AM +0000, Song Liu wrote:
> Hi Peter,
>
> I am trying to understand this. Pardon me if any question is silly.
>
> I am not sure I fully understand the motivation here. I guess we
> see problem when there are two (or more) independent hardware PMUs
> per cpu? Then on a given cpu, there are two (or more)
> perf_cpu_context, but only one task context?

Right.

> If this is correct (I really doubt...), I guess perf_rotate_context()
> is the problem?

No, everything comes apart. Where would you put the events of the second
PMU?

The thing most often proposed it pretending the second PMU is a
'software' PMU and sticking the events on the software PMU context.

But because software PMUs must never fail to schedule an event, that
results in some quite horrible things -- including that we cannot RR the
events.

Similarly the big.little guys have the problem that the PMUs are not the
same between big and little cores, and they fudge something horrible. By
having clear ordering on PMU, that can be cleaned up too.

> And if this is still correct, this patch may not help,
> as we are doing rotation for each perf_cpu_pmu_context? (or rotation
> per perf_event_context is the next step?).

We do indeed to rotation per perf_cpu_pmu_context, however:

- perf_cpu_pmu_context embeds a cpu scope perf_event_pmu_context,
- perf_cpu_pmu_context tracks the currently associated task scope
perf_event_pmu_context.

So it can rotate all current events for a particular PMU.

> Or step back a little... I see two big changes:
>
> 1. struct perf_ctx_context is now per cpu (instead of per pmu per cpu);
> 2. one perf_event_ctxp per task_struct (instead of 2).

Correct, we reduce to 1 cpu context and 1 task context at all times.
This in fact simplifies quite a bit of things.

> I think #1 is a bigger change than #2. Is this correct?

They're the 'same' change. But yes the primary purpose was 2, but having
only a single cpu context is a direct consequence.

> Could you please help me understand it better?

I hope this helps to understand, please feel free to ask more.