Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

perf tools: Add __data_loc support

This patch is required to test the next patch for perf lock.

At 064739bc4b3d7f424b2f25547e6611bcf0132415 ,
support for the modifier "__data_loc" of format is added.

But, when I wanted to parse format of lock_acquired (or some
event else), raw_field_ptr() did not returned correct pointer.

So I modified raw_field_ptr() like this patch. Then
raw_field_ptr() works well.

Signed-off-by: Hitoshi Mitake <mitake@dcl.info.waseda.ac.jp>
Acked-by: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Tom Zanussi <tzanussi@gmail.com>
Cc: Steven Rostedt <srostedt@redhat.com>
LKML-Reference: <1264851813-8413-2-git-send-email-mitake@dcl.info.waseda.ac.jp>
[ v3: fixed minor stylistic detail ]
Signed-off-by: Ingo Molnar <mingo@elte.hu>

authored by

Hitoshi Mitake and committed by
Ingo Molnar
86d8d296 a8e6f734

+9
+9
tools/perf/util/trace-event-parse.c
··· 1925 1925 if (!field) 1926 1926 return NULL; 1927 1927 1928 + if (field->flags & FIELD_IS_STRING) { 1929 + int offset; 1930 + 1931 + offset = *(int *)(data + field->offset); 1932 + offset &= 0xffff; 1933 + 1934 + return data + offset; 1935 + } 1936 + 1928 1937 return data + field->offset; 1929 1938 } 1930 1939