aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/builtin-record.c
diff options
context:
space:
mode:
authorNamhyung Kim <namhyung.kim@lge.com>2012-04-26 14:15:19 +0900
committerArnaldo Carvalho de Melo <acme@redhat.com>2012-05-02 15:23:11 -0300
commitb809ac100e2f12ebf1b58ff522dba15651a77d27 (patch)
treeb5e4b894ed8cd8d0e1eb3e6252f2204f5bfae764 /tools/perf/builtin-record.c
parentperf tools: Introduce perf_target__validate() helper (diff)
downloadlinux-dev-b809ac100e2f12ebf1b58ff522dba15651a77d27.tar.xz
linux-dev-b809ac100e2f12ebf1b58ff522dba15651a77d27.zip
perf evlist: Make create_maps() take struct perf_target
Now we have all information that needed to create cpu/thread maps in struct perf_target, it'd be better using it as an argument. Signed-off-by: Namhyung Kim <namhyung.kim@lge.com> Reviewed-by: David Ahern <dsahern@gmail.com> Cc: David Ahern <dsahern@gmail.com> Cc: Ingo Molnar <mingo@redhat.com> Cc: Namhyung Kim <namhyung@gmail.com> Cc: Paul Mackerras <paulus@samba.org> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Link: http://lkml.kernel.org/r/1335417327-11796-6-git-send-email-namhyung.kim@lge.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/builtin-record.c')
-rw-r--r--tools/perf/builtin-record.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/tools/perf/builtin-record.c b/tools/perf/builtin-record.c
index 3596ccab6d3b..d16590942cec 100644
--- a/tools/perf/builtin-record.c
+++ b/tools/perf/builtin-record.c
@@ -891,9 +891,7 @@ int cmd_record(int argc, const char **argv, const char *prefix __used)
rec->opts.target.uid == UINT_MAX - 1)
goto out_free_fd;
- if (perf_evlist__create_maps(evsel_list, rec->opts.target.pid,
- rec->opts.target.tid, rec->opts.target.uid,
- rec->opts.target.cpu_list) < 0)
+ if (perf_evlist__create_maps(evsel_list, &rec->opts.target) < 0)
usage_with_options(record_usage, record_options);
list_for_each_entry(pos, &evsel_list->entries, node) {