All of lore.kernel.org
 help / color / mirror / Atom feed
From: Steven Rostedt <rostedt@goodmis.org>
To: linux-kernel@vger.kernel.org
Cc: Ingo Molnar <mingo@kernel.org>,
	Andrew Morton <akpm@linux-foundation.org>,
	Daniel Bristot de Oliveira <bristot@kernel.org>
Subject: [for-next][PATCH 00/14] tracing: Rebase for update of v9 of RTLA tool
Date: Wed, 12 Jan 2022 14:58:43 -0500	[thread overview]
Message-ID: <20220112195843.098894945@goodmis.org> (raw)

Since I pulled in version 8 of the rtla tool instead of the most recent
v9 (which was the one I last reviewed, but somehow pulled in the older
version), I'm rebasing to v9. This is not an issue as none of the
patches actually touch kernel code. Only tools and Documentation.

  git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
for-next

Head SHA1: fa7e5a516e8ca0740ad1563b33d24b430dc31f77


Daniel Bristot de Oliveira (14):
      rtla: Real-Time Linux Analysis tool
      rtla: Helper functions for rtla
      rtla: Add osnoise tool
      rtla/osnoise: Add osnoise top mode
      rtla/osnoise: Add the hist mode
      rtla: Add timerlat tool and timelart top mode
      rtla/timerlat: Add timerlat hist mode
      rtla: Add Documentation
      rtla: Add rtla osnoise man page
      rtla: Add rtla osnoise top documentation
      rtla: Add rtla osnoise hist documentation
      rtla: Add rtla timerlat documentation
      rtla: Add rtla timerlat top documentation
      rtla: Add rtla timerlat hist documentation

----
 Documentation/tools/rtla/Makefile                  |  41 +
 Documentation/tools/rtla/common_appendix.rst       |  12 +
 Documentation/tools/rtla/common_hist_options.rst   |  23 +
 Documentation/tools/rtla/common_options.rst        |  28 +
 .../tools/rtla/common_osnoise_description.rst      |   8 +
 .../tools/rtla/common_osnoise_options.rst          |  17 +
 .../tools/rtla/common_timerlat_description.rst     |  10 +
 .../tools/rtla/common_timerlat_options.rst         |  16 +
 Documentation/tools/rtla/common_top_options.rst    |   3 +
 Documentation/tools/rtla/rtla-osnoise-hist.rst     |  66 ++
 Documentation/tools/rtla/rtla-osnoise-top.rst      |  61 ++
 Documentation/tools/rtla/rtla-osnoise.rst          |  59 ++
 Documentation/tools/rtla/rtla-timerlat-hist.rst    | 106 +++
 Documentation/tools/rtla/rtla-timerlat-top.rst     | 145 ++++
 Documentation/tools/rtla/rtla-timerlat.rst         |  57 ++
 Documentation/tools/rtla/rtla.rst                  |  48 ++
 tools/tracing/rtla/Makefile                        | 102 +++
 tools/tracing/rtla/README.txt                      |  36 +
 tools/tracing/rtla/src/osnoise.c                   | 875 +++++++++++++++++++++
 tools/tracing/rtla/src/osnoise.h                   |  91 +++
 tools/tracing/rtla/src/osnoise_hist.c              | 801 +++++++++++++++++++
 tools/tracing/rtla/src/osnoise_top.c               | 579 ++++++++++++++
 tools/tracing/rtla/src/rtla.c                      |  87 ++
 tools/tracing/rtla/src/timerlat.c                  |  72 ++
 tools/tracing/rtla/src/timerlat.h                  |   4 +
 tools/tracing/rtla/src/timerlat_hist.c             | 822 +++++++++++++++++++
 tools/tracing/rtla/src/timerlat_top.c              | 618 +++++++++++++++
 tools/tracing/rtla/src/trace.c                     | 192 +++++
 tools/tracing/rtla/src/trace.h                     |  27 +
 tools/tracing/rtla/src/utils.c                     | 433 ++++++++++
 tools/tracing/rtla/src/utils.h                     |  56 ++
 31 files changed, 5495 insertions(+)
 create mode 100644 Documentation/tools/rtla/Makefile
 create mode 100644 Documentation/tools/rtla/common_appendix.rst
 create mode 100644 Documentation/tools/rtla/common_hist_options.rst
 create mode 100644 Documentation/tools/rtla/common_options.rst
 create mode 100644 Documentation/tools/rtla/common_osnoise_description.rst
 create mode 100644 Documentation/tools/rtla/common_osnoise_options.rst
 create mode 100644 Documentation/tools/rtla/common_timerlat_description.rst
 create mode 100644 Documentation/tools/rtla/common_timerlat_options.rst
 create mode 100644 Documentation/tools/rtla/common_top_options.rst
 create mode 100644 Documentation/tools/rtla/rtla-osnoise-hist.rst
 create mode 100644 Documentation/tools/rtla/rtla-osnoise-top.rst
 create mode 100644 Documentation/tools/rtla/rtla-osnoise.rst
 create mode 100644 Documentation/tools/rtla/rtla-timerlat-hist.rst
 create mode 100644 Documentation/tools/rtla/rtla-timerlat-top.rst
 create mode 100644 Documentation/tools/rtla/rtla-timerlat.rst
 create mode 100644 Documentation/tools/rtla/rtla.rst
 create mode 100644 tools/tracing/rtla/Makefile
 create mode 100644 tools/tracing/rtla/README.txt
 create mode 100644 tools/tracing/rtla/src/osnoise.c
 create mode 100644 tools/tracing/rtla/src/osnoise.h
 create mode 100644 tools/tracing/rtla/src/osnoise_hist.c
 create mode 100644 tools/tracing/rtla/src/osnoise_top.c
 create mode 100644 tools/tracing/rtla/src/rtla.c
 create mode 100644 tools/tracing/rtla/src/timerlat.c
 create mode 100644 tools/tracing/rtla/src/timerlat.h
 create mode 100644 tools/tracing/rtla/src/timerlat_hist.c
 create mode 100644 tools/tracing/rtla/src/timerlat_top.c
 create mode 100644 tools/tracing/rtla/src/trace.c
 create mode 100644 tools/tracing/rtla/src/trace.h
 create mode 100644 tools/tracing/rtla/src/utils.c
 create mode 100644 tools/tracing/rtla/src/utils.h

             reply	other threads:[~2022-01-12 20:01 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-01-12 19:58 Steven Rostedt [this message]
2022-01-12 19:58 ` [for-next][PATCH 01/14] rtla: Real-Time Linux Analysis tool Steven Rostedt
2022-01-12 19:58 ` [for-next][PATCH 02/14] rtla: Helper functions for rtla Steven Rostedt
2022-01-12 19:58 ` [for-next][PATCH 03/14] rtla: Add osnoise tool Steven Rostedt
2022-01-12 19:58 ` [for-next][PATCH 04/14] rtla/osnoise: Add osnoise top mode Steven Rostedt
2022-01-12 19:58 ` [for-next][PATCH 05/14] rtla/osnoise: Add the hist mode Steven Rostedt
2022-01-12 19:58 ` [for-next][PATCH 06/14] rtla: Add timerlat tool and timelart top mode Steven Rostedt
2022-01-12 19:58 ` [for-next][PATCH 07/14] rtla/timerlat: Add timerlat hist mode Steven Rostedt
2022-01-12 19:58 ` [for-next][PATCH 08/14] rtla: Add Documentation Steven Rostedt
2022-01-12 19:58 ` [for-next][PATCH 09/14] rtla: Add rtla osnoise man page Steven Rostedt
2022-01-12 19:58 ` [for-next][PATCH 10/14] rtla: Add rtla osnoise top documentation Steven Rostedt
2022-01-12 19:58 ` [for-next][PATCH 11/14] rtla: Add rtla osnoise hist documentation Steven Rostedt
2022-01-12 19:58 ` [for-next][PATCH 12/14] rtla: Add rtla timerlat documentation Steven Rostedt
2022-01-12 19:58 ` [for-next][PATCH 13/14] rtla: Add rtla timerlat top documentation Steven Rostedt
2022-01-12 19:58 ` [for-next][PATCH 14/14] rtla: Add rtla timerlat hist documentation Steven Rostedt

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=20220112195843.098894945@goodmis.org \
    --to=rostedt@goodmis.org \
    --cc=akpm@linux-foundation.org \
    --cc=bristot@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@kernel.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.