diff options
author | Adrian Hunter <adrian.hunter@intel.com> | 2013-10-18 08:29:03 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2013-10-21 10:19:24 -0400 |
commit | 7db5952846dfa015d74e64b5e8656acac979490b (patch) | |
tree | 771a9464b257320c209e38273505cdb19a3678e4 /tools | |
parent | 8c16b649606ff9f6d742ad6f71c76fc0ee996c8e (diff) |
perf session: Add missing members to perf_event__attr_swap()
The perf_event__attr_swap() method needs to swap all members of struct
perf_event_attr. Add missing ones.
Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
Acked-by: Jiri Olsa <jolsa@redhat.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Namhyung Kim <namhyung@gmail.com>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lkml.kernel.org/r/1382099356-4918-7-git-send-email-adrian.hunter@intel.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/perf/util/session.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/perf/util/session.c b/tools/perf/util/session.c index d51e62db96a7..d4559ca08ca6 100644 --- a/tools/perf/util/session.c +++ b/tools/perf/util/session.c | |||
@@ -453,6 +453,9 @@ void perf_event__attr_swap(struct perf_event_attr *attr) | |||
453 | attr->bp_type = bswap_32(attr->bp_type); | 453 | attr->bp_type = bswap_32(attr->bp_type); |
454 | attr->bp_addr = bswap_64(attr->bp_addr); | 454 | attr->bp_addr = bswap_64(attr->bp_addr); |
455 | attr->bp_len = bswap_64(attr->bp_len); | 455 | attr->bp_len = bswap_64(attr->bp_len); |
456 | attr->branch_sample_type = bswap_64(attr->branch_sample_type); | ||
457 | attr->sample_regs_user = bswap_64(attr->sample_regs_user); | ||
458 | attr->sample_stack_user = bswap_32(attr->sample_stack_user); | ||
456 | 459 | ||
457 | swap_bitfield((u8 *) (&attr->read_format + 1), sizeof(u64)); | 460 | swap_bitfield((u8 *) (&attr->read_format + 1), sizeof(u64)); |
458 | } | 461 | } |