linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH RFC] perf kvm stat record: print kvm specific --help output
@ 2014-10-06 16:13 Alexander Yarygin
  2014-10-06 16:13 ` [PATCH] " Alexander Yarygin
  0 siblings, 1 reply; 4+ messages in thread
From: Alexander Yarygin @ 2014-10-06 16:13 UTC (permalink / raw)
  To: linux-kernel
  Cc: Alexander Yarygin, Arnaldo Carvalho de Melo,
	Christian Borntraeger, David Ahern, Ingo Molnar, Jiri Olsa,
	Paul Mackerras, Peter Zijlstra

Hello,

The 'perf kvm stat record' tool is an alias for 'perf record' tool.
When 'perf kvm stat record' is running with '--help' option, it prints
help output for 'perf record':


$ sudo perf kvm stat record --help
 usage: perf record [<options>] [<command>]
    or: perf record [<options>] -- <command> [<options>]

    -e, --event <event>   event selector. use 'perf list' to list available events
        --filter <filter>
                          event filter
    -p, --pid <pid>       record events on existing process id
    -t, --tid <tid>       record events on existing thread id
    -r, --realtime <n>    collect data with this RT SCHED_FIFO priority
    -D, --no-delay        collect data without buffering
    -R, --raw-samples     collect raw sample records from all opened counters
    -a, --all-cpus        system-wide collection from all CPUs
    -C, --cpu <cpu>       list of cpus to monitor
    -c, --count <n>       event period to sample
    -o, --output <file>   output file name
    .. snip ..


Some of these options can be used with 'kvm stat record', however others
can break recording (i.e. --no-samples), or don't change anything kvm related
(but they can add more details to the output file that are ignored by
'kvm stat report' and visible with 'perf report')

Plus the other 'perf kvm stat' tools have their own --help.

The patch is an proof-of-concept attempt to fix that inconsistency
by printing useful for 'perf kvm stat record' options in addition
to generic help. Like as follows:


$ sudo perf kvm stat record --help

 usage: perf kvm stat record [<options>]

    -p, --pid <pid>      record events on existing process id
    -t, --tid <tid>      record events on existing thread id
    -r, --realtime <n>   collect data with this RT SCHED_FIFO priority
        --no-buffering   collect data without buffering
    -a, --all-cpus       system-wide collection from all CPUs
    -C, --cpu <cpu>      list of cpus to monitor
    -c, --count <n>      event period to sample
    -o, --output <file>  output file name
    -i, --no-inherit     child tasks do not inherit counters
    -m, --mmap-pages <pages>
                         number of mmap data pages
    -v, --verbose        be more verbose (show counter open errors, etc)
    -q, --quiet          don't print any message
    -D, --delay <n>      ms to wait before starting measurement after program start
    -u, --uid <user>     user to profile
        --per-thread     use per-thread mmaps

Otherwise, it is the alias of 'perf record:'

 usage: perf record [<options>] [<command>]
    or: perf record [<options>] -- <command> [<options>]

    -e, --event <event>   event selector. use 'perf list' to list available events
        --filter <filter>
                          event filter
    -p, --pid <pid>       record events on existing process id
     .. here is the rest of the 'perf record' options ..


Problems:
1) I could drop some useful options.
2) Running 'perf kvm stat record' with invalid command leads to help message
  from 'perf record':


perf kvm stat record --i-want-help-from-record
  Error: unknown option `i-want-help-from-record'

 usage: perf record [<options>] [<command>]
    or: perf record [<options>] -- <command> [<options>]
    .. snip ..


Any ideas?

Thanks.


Alexander Yarygin (1):
  perf kvm stat record: print kvm specific --help output

 tools/perf/builtin-kvm.c | 38 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 38 insertions(+)

-- 
1.9.1


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-10-07 15:14 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-06 16:13 [PATCH RFC] perf kvm stat record: print kvm specific --help output Alexander Yarygin
2014-10-06 16:13 ` [PATCH] " Alexander Yarygin
2014-10-07 15:10   ` David Ahern
2014-10-07 15:14     ` Arnaldo Carvalho de Melo

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).