public inbox for linux-kernel@vger.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>,
	Huang Shijie <shijie@os.amperecomputing.com>,
	Masahiro Yamada <masahiroy@kernel.org>,
	Masami Hiramatsu <mhiramat@kernel.org>,
	zhaoxiao <zhaoxiao@uniontech.com>
Subject: [for-next][PATCH 00/19] tracing: Updates for 5.15
Date: Tue, 17 Aug 2021 15:42:07 -0400	[thread overview]
Message-ID: <20210817194207.947725935@goodmis.org> (raw)

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

Head SHA1: db396be6ddc4b953db3a725e19945fd4f151cfe9


Huang Shijie (1):
      tracing: Fix a typo in tracepoint.h

Masahiro Yamada (2):
      tracing: Simplify the Kconfig dependency of FTRACE
      tracing: Refactor TRACE_IRQFLAGS_SUPPORT in Kconfig

Masami Hiramatsu (10):
      tracing/boot: Fix a hist trigger dependency for boot time tracing
      tracing/boot: Add per-event histogram action options
      tracing/boot: Support multiple handlers for per-event histogram
      tracing/boot: Support multiple histograms for each event
      tracing/boot: Show correct histogram error command
      Documentation: tracing: Add histogram syntax to boot-time tracing
      tools/bootconfig: Support per-group/all event enabling option
      tools/bootconfig: Add histogram syntax support to bconf2ftrace.sh
      tools/bootconfig: Use per-group/all enable option in ftrace2bconf script
      bootconfig/tracing/ktest: Update ktest example for boot-time tracing

Steven Rostedt (VMware) (5):
      tracing: Add linear buckets to histogram logic
      tracing/histogram: Update the documentation for the buckets modifier
      tracing: Have histogram types be constant when possible
      tracing: Allow execnames to be passed as args for synthetic events
      MAINTAINERS: Add an entry for os noise/latency

zhaoxiao (1):
      tracepoint: Fix kerneldoc comments

----
 Documentation/trace/boottime-trace.rst             |  85 +++++-
 Documentation/trace/histogram.rst                  |  92 ++++++-
 MAINTAINERS                                        |  14 +
 arch/Kconfig                                       |   3 +
 arch/arc/Kconfig                                   |   4 +-
 arch/arm/Kconfig                                   |   5 +-
 arch/arm64/Kconfig                                 |   4 +-
 arch/csky/Kconfig                                  |   4 +-
 arch/hexagon/Kconfig                               |   4 +-
 arch/microblaze/Kconfig                            |   1 +
 arch/microblaze/Kconfig.debug                      |   5 -
 arch/mips/Kconfig                                  |   1 +
 arch/mips/Kconfig.debug                            |   4 -
 arch/nds32/Kconfig                                 |   4 +-
 arch/nios2/Kconfig                                 |   3 -
 arch/openrisc/Kconfig                              |   4 +-
 arch/parisc/Kconfig                                |   1 +
 arch/parisc/Kconfig.debug                          |   3 -
 arch/powerpc/Kconfig                               |   5 +-
 arch/riscv/Kconfig                                 |   4 +-
 arch/s390/Kconfig                                  |   1 +
 arch/s390/Kconfig.debug                            |   3 -
 arch/sh/Kconfig                                    |   1 +
 arch/sh/Kconfig.debug                              |   3 -
 arch/sparc/Kconfig                                 |   1 +
 arch/sparc/Kconfig.debug                           |   4 -
 arch/um/Kconfig                                    |   5 +-
 arch/x86/Kconfig                                   |   1 +
 arch/x86/Kconfig.debug                             |   3 -
 arch/xtensa/Kconfig                                |   4 +-
 include/linux/tracepoint.h                         |   2 +-
 kernel/trace/Kconfig                               |   6 +-
 kernel/trace/trace.c                               |   1 +
 kernel/trace/trace_boot.c                          | 302 ++++++++++++++++++++-
 kernel/trace/trace_events_hist.c                   | 143 ++++++++--
 kernel/tracepoint.c                                |   4 +-
 tools/bootconfig/scripts/bconf2ftrace.sh           | 101 +++++++
 tools/bootconfig/scripts/ftrace2bconf.sh           |  24 +-
 tools/bootconfig/scripts/xbc.sh                    |   4 +-
 .../ktest/examples/bootconfigs/boottrace.bconf     |  20 +-
 .../ktest/examples/bootconfigs/verify-boottrace.sh |   2 +-
 41 files changed, 753 insertions(+), 132 deletions(-)

             reply	other threads:[~2021-08-17 19:43 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-08-17 19:42 Steven Rostedt [this message]
2021-08-17 19:42 ` [for-next][PATCH 01/19] tracing/boot: Fix a hist trigger dependency for boot time tracing Steven Rostedt
2021-08-17 19:42 ` [for-next][PATCH 02/19] tracing: Add linear buckets to histogram logic Steven Rostedt
2021-08-17 19:42 ` [for-next][PATCH 03/19] tracing/histogram: Update the documentation for the buckets modifier Steven Rostedt
2021-08-17 19:42 ` [for-next][PATCH 04/19] tracing: Have histogram types be constant when possible Steven Rostedt
2021-08-17 19:42 ` [for-next][PATCH 05/19] tracing: Allow execnames to be passed as args for synthetic events Steven Rostedt
2021-08-17 19:42 ` [for-next][PATCH 06/19] tracing: Simplify the Kconfig dependency of FTRACE Steven Rostedt
2021-08-17 19:42 ` [for-next][PATCH 08/19] tracing: Fix a typo in tracepoint.h Steven Rostedt
2021-08-17 19:42 ` [for-next][PATCH 09/19] tracing/boot: Add per-event histogram action options Steven Rostedt
2021-08-17 19:42 ` [for-next][PATCH 10/19] tracing/boot: Support multiple handlers for per-event histogram Steven Rostedt
2021-08-17 19:42 ` [for-next][PATCH 11/19] tracing/boot: Support multiple histograms for each event Steven Rostedt
2021-08-17 19:42 ` [for-next][PATCH 12/19] tracing/boot: Show correct histogram error command Steven Rostedt
2021-08-17 19:42 ` [for-next][PATCH 13/19] Documentation: tracing: Add histogram syntax to boot-time tracing Steven Rostedt
2021-08-17 19:42 ` [for-next][PATCH 14/19] tools/bootconfig: Support per-group/all event enabling option Steven Rostedt
2021-08-17 19:42 ` [for-next][PATCH 15/19] tools/bootconfig: Add histogram syntax support to bconf2ftrace.sh Steven Rostedt
2021-08-17 19:42 ` [for-next][PATCH 16/19] tools/bootconfig: Use per-group/all enable option in ftrace2bconf script Steven Rostedt
2021-08-17 19:42 ` [for-next][PATCH 17/19] bootconfig/tracing/ktest: Update ktest example for boot-time tracing Steven Rostedt
2021-08-17 19:42 ` [for-next][PATCH 18/19] tracepoint: Fix kerneldoc comments Steven Rostedt
2021-08-17 19:42 ` [for-next][PATCH 19/19] MAINTAINERS: Add an entry for os noise/latency 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=20210817194207.947725935@goodmis.org \
    --to=rostedt@goodmis.org \
    --cc=akpm@linux-foundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=masahiroy@kernel.org \
    --cc=mhiramat@kernel.org \
    --cc=mingo@kernel.org \
    --cc=shijie@os.amperecomputing.com \
    --cc=zhaoxiao@uniontech.com \
    /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