Re: [RFC PATCH 0/4] perf: Custom contexts

From: Frederic Weisbecker
Date: Fri Mar 25 2011 - 10:47:27 EST


2011/3/16 Peter Zijlstra <a.p.zijlstra@xxxxxxxxx>:
> On Wed, 2011-03-16 at 15:02 +0100, Frederic Weisbecker wrote:
>
>> The possible usecase is so wide that I have a hard time to find a good
>> example. Counting instructions in exceptions on some specific syscalls,
>> counting instructions when some lock is taken on some irq handler, or
>> whatever...
>
> All of which can be done without the recursion, but ok.
>
> But what you're saying is that you want to be able to build a full
> expression tree of events.

Yep.

>
> Now the things I dislike about the whole thing is that its essentially a
> filter, and we already have a filter thing, this adds a second totally
> dis-joint filter capability.
>
> Futhermore, you've split the start/stop things, as if they're somehow
> different, when in fact they're pretty much the same thing, and you can
> even think of more classes like a toggle event or whatever.

Indeed, there are a lot of code duplications I wanted to clean up into
some toggle thing. Just wanted to get an early ping about the design
first. And I was right :)

> You've also split the start/stop events from the regular event lists
> making the whole event management and inheritance stuff even more
> complicated.

Agreed. I wish we can solve that too.

> Furthermore, there is a definite possibility for weird behaviour in
> there, in that if you're trying to measure a similar event to the one
> that is used to enable/disable it, it very much depends on the order of
> the demux lists as to which is processed first.

Do you have an example of that? I have some trouble to figure out the
issue.

>
> The simply scheme I came up with is having these events be part of the
> event_group and add only one field:
>
>  pause_ops : 2
>
> with:
>
> enum perf_event_pause_ops {
>  PERF_PAUSE_OP_NOP = 0,
>  PERF_PAUSE_OP_INC,
>  PERF_PAUSE_OP_DEC,
>  PERF_PAUSE_OP_TOGGLE,
> };
>
> and have INC increment the parent pause field and clip at INT_MAX, DEC
> decrement the pause field and clip at 0, and TOGGLE do ^1.
>
> That however doesn't allow for these full expression trees, so we need
> to come up with something else. It does however do away with the
> ioctl()s, that redundant flag and the weird event separation.

That's a great idea! It indeed utterly simplifies the implementation
and the interface
and reuse what we already habe.
This makes me double reconsider the recursive issue now.

But I'm still worried. I don't know how useful the event tree could be. But
I have the feeling we are losing a nice and very flexible feature if
we get rid of it.
This can be something we solve later if we accept recursive groups may
be, although
things may be even more complicated if we take that path.

Thanks.
--
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/