Re: [PATCH 2/7] perf trace: Correctly handle arrays

From: Frederic Weisbecker
Date: Fri May 14 2010 - 23:20:46 EST


On Thu, May 13, 2010 at 12:29:05PM -0400, Steven Rostedt wrote:
> On Thu, 2010-05-13 at 16:03 +1000, Ian Munsie wrote:
> > From: Ian Munsie <imunsie@xxxxxxxxxxx>
> >
> > Previously, perf was assuming that an array from an ftrace event was an
> > array of longs, which will not always be the case. Additionally,
> > long_size is not even being initialised, so it would fail to read the
> > data and would erroneously report that the array was filled with zeroes.
> >
> > This patch adds two extra entries into the field structure - arraylen
> > and elementsize, so that the code can easily look them up instead of
> > assuming that the elements are long_size. The element size is currently
> > derived by the size of the entire array and the number of elements
> > within the array.
> >
> > This problem can be demonstrated with:
> > perf record -e raw_syscalls:sys_enter -a sleep 0.1
> > perf trace
> >
>
> I'm added this to trace-cmd too.
>
> > Without this patch, output similar to the following is produced:
> > perf-4355 [004] 1871.504685: sys_enter: NR 319 (0, 0, 0, 0, 0, 0)
> > perf-4355 [004] 1871.504723: sys_enter: NR 3 (0, 0, 0, 0, 0, 0)
> > perf-4355 [004] 1871.504733: sys_enter: NR 204 (0, 0, 0, 0, 0, 0)
> >
> > After applying this patch, the output looks like:
> > perf-4355 [004] 1871.504685: sys_enter: NR 319 (10247ac0, ffffffff, 5, ffffffff, 0, 107a80d8)
> > perf-4355 [004] 1871.504723: sys_enter: NR 3 (a, ffb6fcf0, 20, ffffffff, 0, 10112c20)
> > perf-4355 [004] 1871.504733: sys_enter: NR 204 (a, 4, 800, 6, 0, 10112c20)
> >
> > Signed-off-by: Ian Munsie <imunsie@xxxxxxxxxxx>
> > ---
> > tools/perf/util/trace-event-parse.c | 11 ++++++++++-
> > tools/perf/util/trace-event.h | 2 ++
> > 2 files changed, 12 insertions(+), 1 deletions(-)
> >
> > diff --git a/tools/perf/util/trace-event-parse.c b/tools/perf/util/trace-event-parse.c
> > index 8f470f6..f360f75 100644
> > --- a/tools/perf/util/trace-event-parse.c
> > +++ b/tools/perf/util/trace-event-parse.c
> > @@ -852,6 +852,9 @@ static int event_read_fields(struct event *event, struct format_field **fields)
> > field->flags |= FIELD_IS_ARRAY;
> >
> > type = read_token(&token);
> > + if (test_type(type, EVENT_ITEM))
> > + goto fail;
>
> Note this will incorrectly fail on:
>
> field:__data_loc char[] name;
>
> -- Steve



Nice patch, but indeed this part needs to be fixed.

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/