]> git.baikalelectronics.ru Git - kernel.git/commit
perf tools mem: Fix -t store option for record command
authorJiri Olsa <jolsa@kernel.org>
Thu, 11 Aug 2016 08:50:57 +0000 (10:50 +0200)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Fri, 12 Aug 2016 17:39:48 +0000 (14:39 -0300)
commitaa9408fb0d00b7b9cbc540e21c5b508c266eab27
treea2a3f4f2b71ce088c298a723fccf4bdca9370bd3
parent63fd1ecbf4c5831e145339c02a9a6c8d3fd153d7
perf tools mem: Fix -t store option for record command

Michael reported 'perf mem -t store record' being broken.  The reason is
latest rework of this area:

  commit 4b869879f482 ("perf tools: Add monitored events array")

We don't mark perf_mem_events store record when -t store option is
specified.

Committer notes:

Before:

  # perf mem -t store record usleep 1
  [ perf record: Woken up 1 times to write data ]
  [ perf record: Captured and wrote 0.020 MB perf.data (7 samples) ]
  # perf evlist
  cycles:ppp
  #

After:

  # perf mem -t store record usleep 1
  [ perf record: Woken up 1 times to write data ]
  [ perf record: Captured and wrote 0.020 MB perf.data (7 samples) ]
  # perf evlist
  cpu/mem-stores/P
  #

Reported-by: Michael Petlan <mpetlan@redhat.com>
Signed-off-by: Jiri Olsa <jolsa@redhat.com>
Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Fixes: 4b869879f482 ("perf tools: Add monitored events array")
Link: http://lkml.kernel.org/r/1470905457-18311-1-git-send-email-jolsa@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/builtin-mem.c