Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1332424
| From | Arnaldo Carvalho de Melo <acme@kernel.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH] perf python scripting: Append examples to err msg about audit-libs-python |
| Date | 2016-02-12 00:00 +0100 |
| Message-ID | <r18np-6Ne-21@gated-at.bofh.it> (permalink) |
| References | <r0f7z-3uX-1@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Em Tue, Feb 09, 2016 at 08:53:10PM +0900, Taeung Song escreveu: > To print the syscall name, the audit-libs-python package > should be required. If not installed, print > the erron string e.g. After fixing spelling mistakes, applied, thanks, - Arnaldo > > # perf script syscall-counts > Install the audit-libs-python package to get syscall names. > > But the package name is different in Ubuntu > so append examples the erron string like below. > (similar to a error message of util/trace-event-scripting.c) > > # perf script syscall-counts > Install the audit-libs-python package to get syscall names. > For example: > # apt-get install python-audit (Ubuntu) > # yum install audit-libs-python (Fedora) > etc. > > Signed-off-by: Taeung Song <treeze.taeung@gmail.com> > --- > tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/Util.py | 5 ++++- > 1 file changed, 4 insertions(+), 1 deletion(-) > > diff --git a/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/Util.py b/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/Util.py > index 15c8400..1d95009 100644 > --- a/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/Util.py > +++ b/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/Util.py > @@ -71,7 +71,10 @@ try: > except: > if not audit_package_warned: > audit_package_warned = True > - print "Install the audit-libs-python package to get syscall names" > + print "Install the audit-libs-python package to get syscall names.\n" \ > + "For example:\n # apt-get install python-audit (Ubuntu)" \ > + "\n # yum install audit-libs-python (Fedora)" \ > + "\n etc.\n" > > def syscall_name(id): > try: > -- > 2.5.0
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH] perf python scripting: Append examples to err msg about audit-libs-python Taeung Song <treeze.taeung@gmail.com> - 2016-02-09 13:00 +0100
Re: [PATCH] perf python scripting: Append examples to err msg about audit-libs-python Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-02-12 00:00 +0100
Re: [PATCH] perf python scripting: Append examples to err msg about audit-libs-python Taeung Song <treeze.taeung@gmail.com> - 2016-02-12 01:10 +0100
[tip:perf/core] perf python scripting: Append examples to err msg about audit-libs-python tip-bot for Taeung Song <tipbot@zytor.com> - 2016-02-16 09:00 +0100
csiph-web