linux-trace-devel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "Tzvetomir Stoyanov (VMware)" <tz.stoyanov@gmail.com>
To: rostedt@goodmis.org
Cc: linux-trace-devel@vger.kernel.org
Subject: [PATCH 0/6] libtracecmd man pages.
Date: Wed, 23 Dec 2020 06:34:23 +0200	[thread overview]
Message-ID: <20201223043429.586162-1-tz.stoyanov@gmail.com> (raw)

Initial implementation of libtracecmd man pages.

Tzvetomir Stoyanov (VMware) (6):
  trace-cmd: libtracecmd man pages
  trace-cmd: Update the RESOURCES section of the trace-cmd man pages
  trace-cmd library man pages: Read recorded events from a trace file.
  trace-cmd library man pages: Open and close trace file.
  trace-cmd library man pages: Manage trace session with multiple trace
    peers.
  trace-cmd library man pages: Read tracing instances from a trace file.

 Documentation/Makefile                        |  97 ++---------
 Documentation/libtracecmd/Makefile            |  34 ++++
 .../libtracecmd/libtracecmd-files.3.txt       |  92 +++++++++++
 .../libtracecmd/libtracecmd-instances.3.txt   | 129 +++++++++++++++
 .../libtracecmd/libtracecmd-peer.3.txt        | 149 +++++++++++++++++
 .../libtracecmd/libtracecmd-record.3.txt      | 152 ++++++++++++++++++
 Documentation/libtracecmd/libtracecmd.3.txt   |  83 ++++++++++
 Documentation/trace-cmd/Makefile              |  44 +++++
 .../trace-cmd-check-events.1.txt              |   2 +-
 .../{ => trace-cmd}/trace-cmd-clear.1.txt     |   2 +-
 .../{ => trace-cmd}/trace-cmd-dump.1.txt      |   2 +-
 .../{ => trace-cmd}/trace-cmd-extract.1.txt   |   2 +-
 .../{ => trace-cmd}/trace-cmd-hist.1.txt      |   2 +-
 .../{ => trace-cmd}/trace-cmd-list.1.txt      |   2 +-
 .../{ => trace-cmd}/trace-cmd-listen.1.txt    |   2 +-
 .../{ => trace-cmd}/trace-cmd-mem.1.txt       |   2 +-
 .../{ => trace-cmd}/trace-cmd-options.1.txt   |   2 +-
 .../{ => trace-cmd}/trace-cmd-profile.1.txt   |   2 +-
 .../{ => trace-cmd}/trace-cmd-record.1.txt    |   2 +-
 .../{ => trace-cmd}/trace-cmd-report.1.txt    |   2 +-
 .../{ => trace-cmd}/trace-cmd-reset.1.txt     |   2 +-
 .../{ => trace-cmd}/trace-cmd-restore.1.txt   |   2 +-
 .../{ => trace-cmd}/trace-cmd-set.1.txt       |   2 +-
 .../{ => trace-cmd}/trace-cmd-show.1.txt      |   2 +-
 .../{ => trace-cmd}/trace-cmd-snapshot.1.txt  |   2 +-
 .../{ => trace-cmd}/trace-cmd-split.1.txt     |   2 +-
 .../{ => trace-cmd}/trace-cmd-stack.1.txt     |   2 +-
 .../{ => trace-cmd}/trace-cmd-start.1.txt     |   2 +-
 .../{ => trace-cmd}/trace-cmd-stat.1.txt      |   2 +-
 .../{ => trace-cmd}/trace-cmd-stop.1.txt      |   2 +-
 .../{ => trace-cmd}/trace-cmd-stream.1.txt    |   2 +-
 Documentation/{ => trace-cmd}/trace-cmd.1.txt |   2 +-
 .../{ => trace-cmd}/trace-cmd.dat.5.txt       |   2 +-
 scripts/utils.mk                              |  42 +++++
 34 files changed, 761 insertions(+), 111 deletions(-)
 create mode 100644 Documentation/libtracecmd/Makefile
 create mode 100644 Documentation/libtracecmd/libtracecmd-files.3.txt
 create mode 100644 Documentation/libtracecmd/libtracecmd-instances.3.txt
 create mode 100644 Documentation/libtracecmd/libtracecmd-peer.3.txt
 create mode 100644 Documentation/libtracecmd/libtracecmd-record.3.txt
 create mode 100644 Documentation/libtracecmd/libtracecmd.3.txt
 create mode 100644 Documentation/trace-cmd/Makefile
 rename Documentation/{ => trace-cmd}/trace-cmd-check-events.1.txt (94%)
 rename Documentation/{ => trace-cmd}/trace-cmd-clear.1.txt (95%)
 rename Documentation/{ => trace-cmd}/trace-cmd-dump.1.txt (98%)
 rename Documentation/{ => trace-cmd}/trace-cmd-extract.1.txt (97%)
 rename Documentation/{ => trace-cmd}/trace-cmd-hist.1.txt (95%)
 rename Documentation/{ => trace-cmd}/trace-cmd-list.1.txt (97%)
 rename Documentation/{ => trace-cmd}/trace-cmd-listen.1.txt (95%)
 rename Documentation/{ => trace-cmd}/trace-cmd-mem.1.txt (98%)
 rename Documentation/{ => trace-cmd}/trace-cmd-options.1.txt (91%)
 rename Documentation/{ => trace-cmd}/trace-cmd-profile.1.txt (99%)
 rename Documentation/{ => trace-cmd}/trace-cmd-record.1.txt (99%)
 rename Documentation/{ => trace-cmd}/trace-cmd-report.1.txt (99%)
 rename Documentation/{ => trace-cmd}/trace-cmd-reset.1.txt (98%)
 rename Documentation/{ => trace-cmd}/trace-cmd-restore.1.txt (98%)
 rename Documentation/{ => trace-cmd}/trace-cmd-set.1.txt (99%)
 rename Documentation/{ => trace-cmd}/trace-cmd-show.1.txt (97%)
 rename Documentation/{ => trace-cmd}/trace-cmd-snapshot.1.txt (95%)
 rename Documentation/{ => trace-cmd}/trace-cmd-split.1.txt (97%)
 rename Documentation/{ => trace-cmd}/trace-cmd-stack.1.txt (94%)
 rename Documentation/{ => trace-cmd}/trace-cmd-start.1.txt (95%)
 rename Documentation/{ => trace-cmd}/trace-cmd-stat.1.txt (96%)
 rename Documentation/{ => trace-cmd}/trace-cmd-stop.1.txt (96%)
 rename Documentation/{ => trace-cmd}/trace-cmd-stream.1.txt (95%)
 rename Documentation/{ => trace-cmd}/trace-cmd.1.txt (97%)
 rename Documentation/{ => trace-cmd}/trace-cmd.dat.5.txt (99%)

-- 
2.28.0


             reply	other threads:[~2020-12-23  4:35 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-12-23  4:34 Tzvetomir Stoyanov (VMware) [this message]
2020-12-23  4:34 ` [PATCH 1/6] trace-cmd: libtracecmd man pages Tzvetomir Stoyanov (VMware)
2020-12-23  4:34 ` [PATCH 2/6] trace-cmd: Update the RESOURCES section of the trace-cmd " Tzvetomir Stoyanov (VMware)
2020-12-23  4:34 ` [PATCH 3/6] trace-cmd library man pages: Read recorded events from a trace file Tzvetomir Stoyanov (VMware)
2021-01-13 22:18   ` Steven Rostedt
2020-12-23  4:34 ` [PATCH 4/6] trace-cmd library man pages: Open and close " Tzvetomir Stoyanov (VMware)
2020-12-23  4:34 ` [PATCH 5/6] trace-cmd library man pages: Manage trace session with multiple trace peers Tzvetomir Stoyanov (VMware)
2021-01-13 22:13   ` Steven Rostedt
2021-01-15  5:02     ` Tzvetomir Stoyanov
2020-12-23  4:34 ` [PATCH 6/6] trace-cmd library man pages: Read tracing instances from a trace file Tzvetomir Stoyanov (VMware)

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20201223043429.586162-1-tz.stoyanov@gmail.com \
    --to=tz.stoyanov@gmail.com \
    --cc=linux-trace-devel@vger.kernel.org \
    --cc=rostedt@goodmis.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).