All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH/RFC 0/3] ftrace: allow arch specific compile options
@ 2015-01-26 12:54 Heiko Carstens
  2015-01-26 12:54 ` [PATCH/RFC 1/3] ftrace: allow architectures to specify ftrace " Heiko Carstens
                   ` (2 more replies)
  0 siblings, 3 replies; 14+ messages in thread
From: Heiko Carstens @ 2015-01-26 12:54 UTC (permalink / raw)
  To: Steven Rostedt, Masami Hiramatsu
  Cc: Vojtech Pavlik, Jiri Kosina, Jiri Slaby, Andreas Krebbel,
	Dominik Vogt, Martin Schwidefsky, linux-kernel, Heiko Carstens

This patch set enables s390 to use gcc's s390 specific "--mhotpatch" compile
option if the kernel is instrumented for function tracing.

The normal -pg compile option adds 24 bytes to each function prologue.
Performance measurements have shown that, depending on the workload, we have
an impact of up to 2% - 10% additional cpu time spent as compared to a kernel
which is compiled without the -pg option.

In both cases function tracing is disabled. What we see is the overhead
caused by simply adding 24 additional bytes to each function, where the
first instruction is patched to skip the rest of the code block, which
besides other effects causes instruction cache pollution.

These patches change code generation on s390 to only add a single six byte
nop to each function trace enabled function. With this change the overhead
gets reduced close to zero.

I tried to minimize the common code changes, which resulted mainly in a
new CC_FTRACE_FLAGS makefile variable and a new "nohotpatch" define.
The rest is s390 specific. The patches are against linux-next as of today.

The gcc hotpatch feature patch, which changes the existing hotpatch mechanism
to allow to specify the number of halfwords before/after the beginning of a
function is not yet upstream, but should be soon.

Heiko Carstens (3):
  ftrace: allow architectures to specify ftrace compile options
  ftrace: introduce nohotpatch function attribute
  s390/ftrace: hotpatch support for function tracing

 Makefile                       |  6 +++++-
 arch/s390/Kconfig              |  1 -
 arch/s390/Makefile             | 10 ++++++++++
 arch/s390/include/asm/ftrace.h | 15 +++++++++++++++
 arch/s390/kernel/Makefile      |  4 ++--
 arch/s390/kernel/ftrace.c      | 15 ++++++++++++++-
 arch/s390/kernel/kprobes.c     |  3 ++-
 arch/s390/kernel/mcount.S      |  2 ++
 include/linux/compiler.h       |  8 +++++++-
 kernel/Makefile                |  4 ++--
 kernel/events/Makefile         |  2 +-
 kernel/locking/Makefile        |  8 ++++----
 kernel/sched/Makefile          |  2 +-
 kernel/trace/Makefile          |  4 ++--
 lib/Makefile                   |  2 +-
 scripts/Makefile.build         |  5 +++--
 scripts/recordmcount.pl        |  9 +++++++--
 17 files changed, 78 insertions(+), 22 deletions(-)

-- 
2.1.4


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

end of thread, other threads:[~2015-01-29  9:29 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-01-26 12:54 [PATCH/RFC 0/3] ftrace: allow arch specific compile options Heiko Carstens
2015-01-26 12:54 ` [PATCH/RFC 1/3] ftrace: allow architectures to specify ftrace " Heiko Carstens
2015-01-26 12:54 ` [PATCH/RFC 2/3] ftrace: introduce nohotpatch function attribute Heiko Carstens
2015-01-26 14:37   ` Steven Rostedt
2015-01-26 15:03     ` Heiko Carstens
2015-01-26 15:22       ` Steven Rostedt
2015-01-26 15:26         ` Heiko Carstens
2015-01-27  6:19     ` Dominik Vogt
2015-01-27 14:42       ` Steven Rostedt
2015-01-28  5:36         ` Heiko Carstens
2015-01-28 11:57           ` Steven Rostedt
2015-01-28 12:18             ` Heiko Carstens
2015-01-28 12:38               ` Steven Rostedt
2015-01-26 12:54 ` [PATCH/RFC 3/3] s390/ftrace: hotpatch support for function tracing Heiko Carstens

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.