All of lore.kernel.org
 help / color / mirror / Atom feed
* [for-next][PATCH 00/19] tracing: Updates for 5.15
@ 2021-08-17 19:42 Steven Rostedt
  2021-08-17 19:42 ` [for-next][PATCH 01/19] tracing/boot: Fix a hist trigger dependency for boot time tracing Steven Rostedt
                   ` (17 more replies)
  0 siblings, 18 replies; 19+ messages in thread
From: Steven Rostedt @ 2021-08-17 19:42 UTC (permalink / raw)
  To: linux-kernel
  Cc: Ingo Molnar, Andrew Morton, Huang Shijie, Masahiro Yamada,
	Masami Hiramatsu, zhaoxiao

  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(-)

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

end of thread, other threads:[~2021-08-17 19:45 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-17 19:42 [for-next][PATCH 00/19] tracing: Updates for 5.15 Steven Rostedt
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

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.