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

perf tools: Do not show trace command if it's not compiled in

The trace command still appears in help message when you run simple
'perf' command.

It's because the generate-cmdlist.sh does not care about the
HAVE_LIBAUDIT_SUPPORT dependency of trace command and puts it into
generated common_cmds array.

Wrapping trace command under HAVE_LIBAUDIT_SUPPORT dependency, which
will exclude it from common_cmds array if HAVE_LIBAUDIT_SUPPORT is not
set.

Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Noel Grandin <noelgrandin@gmail.com>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/1452158050-28061-8-git-send-email-jolsa@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>

authored by

Jiri Olsa and committed by
Arnaldo Carvalho de Melo
cbd08b73 1e9abf8b

+16 -1
+1 -1
tools/perf/command-list.txt
··· 26 26 perf-test mainporcelain common 27 27 perf-timechart mainporcelain common 28 28 perf-top mainporcelain common 29 - perf-trace mainporcelain common 29 + perf-trace mainporcelain audit
+15
tools/perf/util/generate-cmdlist.sh
··· 36 36 }' "Documentation/perf-$cmd.txt" 37 37 done 38 38 echo "#endif /* HAVE_LIBELF_SUPPORT */" 39 + 40 + echo "#ifdef HAVE_LIBAUDIT_SUPPORT" 41 + sed -n -e 's/^perf-\([^ ]*\)[ ].* audit*/\1/p' command-list.txt | 42 + sort | 43 + while read cmd 44 + do 45 + sed -n ' 46 + /^NAME/,/perf-'"$cmd"'/H 47 + ${ 48 + x 49 + s/.*perf-'"$cmd"' - \(.*\)/ {"'"$cmd"'", "\1"},/ 50 + p 51 + }' "Documentation/perf-$cmd.txt" 52 + done 53 + echo "#endif /* HAVE_LIBELF_SUPPORT */" 39 54 echo "};"