From: Michael Ellerman <michael@ellerman.id.au>
To: Steven Rostedt <rostedt@goodmis.org>
Cc: proski@gnu.org, a.p.zijlstra@chello.nl, sandmann@redhat.com,
pq@iki.fi, linux-kernel@vger.kernel.org, linuxppc-dev@ozlabs.org,
Steven Rostedt <srostedt@redhat.com>,
paulus@samba.org, Ingo Molnar <mingo@elte.hu>
Subject: Re: [PATCH 2/2] ftrace: support for PowerPC
Date: Wed, 21 May 2008 00:04:37 +1000 [thread overview]
Message-ID: <1211292277.7960.8.camel@localhost> (raw)
In-Reply-To: <20080515035918.896765954@goodmis.org>
[-- Attachment #1: Type: text/plain, Size: 6768 bytes --]
On Wed, 2008-05-14 at 23:49 -0400, Steven Rostedt wrote:
> plain text document attachment (ftrace-powerpc-port.patch)
> This patch adds full support for ftrace for PowerPC (both 64 and 32 bit).
> This includes dynamic tracing and function filtering.
Hi Steven,
Just a few comments inline ..
> Index: linux-sched-devel.git/arch/powerpc/kernel/Makefile
> ===================================================================
> --- linux-sched-devel.git.orig/arch/powerpc/kernel/Makefile 2008-05-14 19:30:53.000000000 -0700
> +++ linux-sched-devel.git/arch/powerpc/kernel/Makefile 2008-05-14 19:31:56.000000000 -0700
> @@ -12,6 +12,18 @@ CFLAGS_prom_init.o += -fPIC
> CFLAGS_btext.o += -fPIC
> endif
>
> +ifdef CONFIG_FTRACE
> +# Do not trace early boot code
> +CFLAGS_REMOVE_cputable.o = -pg
> +CFLAGS_REMOVE_prom_init.o = -pg
Why do we not want to trace early boot? Just because it's not useful?
> Index: linux-sched-devel.git/arch/powerpc/kernel/entry_32.S
> ===================================================================
> --- linux-sched-devel.git.orig/arch/powerpc/kernel/entry_32.S 2008-05-14 19:30:50.000000000 -0700
> +++ linux-sched-devel.git/arch/powerpc/kernel/entry_32.S 2008-05-14 19:31:56.000000000 -0700
> @@ -1035,3 +1035,133 @@ machine_check_in_rtas:
> /* XXX load up BATs and panic */
>
.. snip
> +_GLOBAL(mcount)
> +_GLOBAL(_mcount)
> + stwu r1,-48(r1)
> + stw r3, 12(r1)
> + stw r4, 16(r1)
> + stw r5, 20(r1)
> + stw r6, 24(r1)
> + mflr r3
> + lwz r4, 52(r1)
> + mfcr r5
> + stw r7, 28(r1)
> + stw r8, 32(r1)
> + stw r9, 36(r1)
> + stw r10,40(r1)
> + stw r3, 44(r1)
> + stw r5, 8(r1)
> +
> + LOAD_REG_ADDR(r5, ftrace_trace_function)
> +#if 0
> + mtctr r3
> + mr r1, r5
> + bctrl
> +#endif
> + lwz r5,0(r5)
> +#if 1
> + mtctr r5
> + bctrl
> +#else
> + bl ftrace_stub
> +#endif
#if 0, #if 1 ?
> Index: linux-sched-devel.git/arch/powerpc/kernel/ftrace.c
> ===================================================================
> --- /dev/null 1970-01-01 00:00:00.000000000 +0000
> +++ linux-sched-devel.git/arch/powerpc/kernel/ftrace.c 2008-05-14 19:31:56.000000000 -0700
> @@ -0,0 +1,165 @@
> +/*
> + * Code for replacing ftrace calls with jumps.
> + *
> + * Copyright (C) 2007-2008 Steven Rostedt <srostedt@redhat.com>
> + *
> + * Thanks goes out to P.A. Semi, Inc for supplying me with a PPC64 box.
> + *
> + */
> +
> +#include <linux/spinlock.h>
> +#include <linux/hardirq.h>
> +#include <linux/ftrace.h>
> +#include <linux/percpu.h>
> +#include <linux/init.h>
> +#include <linux/list.h>
> +
> +#include <asm/cacheflush.h>
> +
> +#define CALL_BACK 4
I don't grok what you're doing with CALL_BACK, you add it in places and
subtract in others - and it looks like you could do neither, but I haven't
gone over it in detail.
> +static unsigned int ftrace_nop = 0x60000000;
I should really add a #define for that.
> +#ifdef CONFIG_PPC32
> +# define GET_ADDR(addr) addr
> +#else
> +/* PowerPC64's functions are data that points to the functions */
> +# define GET_ADDR(addr) *(unsigned long *)addr
> +#endif
And that.
.. snip
> +notrace unsigned char *ftrace_call_replace(unsigned long ip, unsigned long addr)
> +{
> + static unsigned int op;
> +
> + addr = GET_ADDR(addr);
> +
> + /* Set to "bl addr" */
> + op = 0x48000001 | (ftrace_calc_offset(ip, addr) & 0x03fffffe);
0x03fffffe should be 0x03fffffc, if you set bit 1 you'll end with a "bla" instruction,
ie. branch absolute and link. That shouldn't happen as long as ip and addr are
properly aligned, but still.
In fact I think you should just use create_function_call() or create_branch() from
include/asm-powerpc/system.h
> +#ifdef CONFIG_PPC64
> +# define _ASM_ALIGN " .align 3 "
> +# define _ASM_PTR " .llong "
> +#else
> +# define _ASM_ALIGN " .align 2 "
> +# define _ASM_PTR " .long "
> +#endif
We already have a #define for .long, it's called PPC_LONG (asm/asm-compat.h)
Perhaps we should add one for .align, PPC_LONG_ALIGN or something?
> +notrace int
> +ftrace_modify_code(unsigned long ip, unsigned char *old_code,
> + unsigned char *new_code)
> +{
> + unsigned replaced;
> + unsigned old = *(unsigned *)old_code;
> + unsigned new = *(unsigned *)new_code;
> + int faulted = 0;
> +
> + /* move the IP back to the start of the call */
> + ip -= CALL_BACK;
> +
> + /*
> + * Note: Due to modules and __init, code can
> + * disappear and change, we need to protect against faulting
> + * as well as code changing.
> + *
> + * No real locking needed, this code is run through
> + * kstop_machine.
> + */
> + asm volatile (
> + "1: lwz %1, 0(%2)\n"
> + " cmpw %1, %5\n"
> + " bne 2f\n"
> + " stwu %3, 0(%2)\n"
> + "2:\n"
> + ".section .fixup, \"ax\"\n"
> + "3: li %0, 1\n"
> + " b 2b\n"
> + ".previous\n"
> + ".section __ex_table,\"a\"\n"
> + _ASM_ALIGN "\n"
> + _ASM_PTR "1b, 3b\n"
> + ".previous"
Or perhaps we just need a macro for adding exception table entries.
> + : "=r"(faulted), "=r"(replaced)
> + : "r"(ip), "r"(new),
> + "0"(faulted), "r"(old)
> + : "memory");
> +
> + if (replaced != old && replaced != new)
> + faulted = 2;
> +
> + if (!faulted)
> + flush_icache_range(ip, ip + 8);
> +
> + return faulted;
> +}
> Index: linux-sched-devel.git/arch/powerpc/kernel/setup_32.c
> ===================================================================
> --- linux-sched-devel.git.orig/arch/powerpc/kernel/setup_32.c 2008-05-14 19:30:50.000000000 -0700
> +++ linux-sched-devel.git/arch/powerpc/kernel/setup_32.c 2008-05-14 19:31:56.000000000 -0700
> @@ -47,6 +47,11 @@
> #include <asm/kgdb.h>
> #endif
>
> +#ifdef CONFIG_FTRACE
> +extern void _mcount(void);
> +EXPORT_SYMBOL(_mcount);
> +#endif
Can you please put the extern in a header, and the EXPORT_SYMBOL in arch/powerpc/kernel/ftrace.c?
> Index: linux-sched-devel.git/arch/powerpc/kernel/setup_64.c
> ===================================================================
> --- linux-sched-devel.git.orig/arch/powerpc/kernel/setup_64.c 2008-05-14 19:30:50.000000000 -0700
> +++ linux-sched-devel.git/arch/powerpc/kernel/setup_64.c 2008-05-14 19:31:56.000000000 -0700
> @@ -85,6 +85,11 @@ struct ppc64_caches ppc64_caches = {
> };
> EXPORT_SYMBOL_GPL(ppc64_caches);
>
> +#ifdef CONFIG_FTRACE
> +extern void _mcount(void);
> +EXPORT_SYMBOL(_mcount);
> +#endif
Ditto.
cheers
--
Michael Ellerman
OzLabs, IBM Australia Development Lab
wwweb: http://michael.ellerman.id.au
phone: +61 2 6212 1183 (tie line 70 21183)
We do not inherit the earth from our ancestors,
we borrow it from our children. - S.M.A.R.T Person
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 189 bytes --]
WARNING: multiple messages have this Message-ID (diff)
From: Michael Ellerman <michael@ellerman.id.au>
To: Steven Rostedt <rostedt@goodmis.org>
Cc: Ingo Molnar <mingo@elte.hu>,
proski@gnu.org, a.p.zijlstra@chello.nl, pq@iki.fi,
linux-kernel@vger.kernel.org,
Steven Rostedt <srostedt@redhat.com>,
linuxppc-dev@ozlabs.org, sandmann@redhat.com, paulus@samba.org
Subject: Re: [PATCH 2/2] ftrace: support for PowerPC
Date: Wed, 21 May 2008 00:04:37 +1000 [thread overview]
Message-ID: <1211292277.7960.8.camel@localhost> (raw)
In-Reply-To: <20080515035918.896765954@goodmis.org>
[-- Attachment #1: Type: text/plain, Size: 6768 bytes --]
On Wed, 2008-05-14 at 23:49 -0400, Steven Rostedt wrote:
> plain text document attachment (ftrace-powerpc-port.patch)
> This patch adds full support for ftrace for PowerPC (both 64 and 32 bit).
> This includes dynamic tracing and function filtering.
Hi Steven,
Just a few comments inline ..
> Index: linux-sched-devel.git/arch/powerpc/kernel/Makefile
> ===================================================================
> --- linux-sched-devel.git.orig/arch/powerpc/kernel/Makefile 2008-05-14 19:30:53.000000000 -0700
> +++ linux-sched-devel.git/arch/powerpc/kernel/Makefile 2008-05-14 19:31:56.000000000 -0700
> @@ -12,6 +12,18 @@ CFLAGS_prom_init.o += -fPIC
> CFLAGS_btext.o += -fPIC
> endif
>
> +ifdef CONFIG_FTRACE
> +# Do not trace early boot code
> +CFLAGS_REMOVE_cputable.o = -pg
> +CFLAGS_REMOVE_prom_init.o = -pg
Why do we not want to trace early boot? Just because it's not useful?
> Index: linux-sched-devel.git/arch/powerpc/kernel/entry_32.S
> ===================================================================
> --- linux-sched-devel.git.orig/arch/powerpc/kernel/entry_32.S 2008-05-14 19:30:50.000000000 -0700
> +++ linux-sched-devel.git/arch/powerpc/kernel/entry_32.S 2008-05-14 19:31:56.000000000 -0700
> @@ -1035,3 +1035,133 @@ machine_check_in_rtas:
> /* XXX load up BATs and panic */
>
.. snip
> +_GLOBAL(mcount)
> +_GLOBAL(_mcount)
> + stwu r1,-48(r1)
> + stw r3, 12(r1)
> + stw r4, 16(r1)
> + stw r5, 20(r1)
> + stw r6, 24(r1)
> + mflr r3
> + lwz r4, 52(r1)
> + mfcr r5
> + stw r7, 28(r1)
> + stw r8, 32(r1)
> + stw r9, 36(r1)
> + stw r10,40(r1)
> + stw r3, 44(r1)
> + stw r5, 8(r1)
> +
> + LOAD_REG_ADDR(r5, ftrace_trace_function)
> +#if 0
> + mtctr r3
> + mr r1, r5
> + bctrl
> +#endif
> + lwz r5,0(r5)
> +#if 1
> + mtctr r5
> + bctrl
> +#else
> + bl ftrace_stub
> +#endif
#if 0, #if 1 ?
> Index: linux-sched-devel.git/arch/powerpc/kernel/ftrace.c
> ===================================================================
> --- /dev/null 1970-01-01 00:00:00.000000000 +0000
> +++ linux-sched-devel.git/arch/powerpc/kernel/ftrace.c 2008-05-14 19:31:56.000000000 -0700
> @@ -0,0 +1,165 @@
> +/*
> + * Code for replacing ftrace calls with jumps.
> + *
> + * Copyright (C) 2007-2008 Steven Rostedt <srostedt@redhat.com>
> + *
> + * Thanks goes out to P.A. Semi, Inc for supplying me with a PPC64 box.
> + *
> + */
> +
> +#include <linux/spinlock.h>
> +#include <linux/hardirq.h>
> +#include <linux/ftrace.h>
> +#include <linux/percpu.h>
> +#include <linux/init.h>
> +#include <linux/list.h>
> +
> +#include <asm/cacheflush.h>
> +
> +#define CALL_BACK 4
I don't grok what you're doing with CALL_BACK, you add it in places and
subtract in others - and it looks like you could do neither, but I haven't
gone over it in detail.
> +static unsigned int ftrace_nop = 0x60000000;
I should really add a #define for that.
> +#ifdef CONFIG_PPC32
> +# define GET_ADDR(addr) addr
> +#else
> +/* PowerPC64's functions are data that points to the functions */
> +# define GET_ADDR(addr) *(unsigned long *)addr
> +#endif
And that.
.. snip
> +notrace unsigned char *ftrace_call_replace(unsigned long ip, unsigned long addr)
> +{
> + static unsigned int op;
> +
> + addr = GET_ADDR(addr);
> +
> + /* Set to "bl addr" */
> + op = 0x48000001 | (ftrace_calc_offset(ip, addr) & 0x03fffffe);
0x03fffffe should be 0x03fffffc, if you set bit 1 you'll end with a "bla" instruction,
ie. branch absolute and link. That shouldn't happen as long as ip and addr are
properly aligned, but still.
In fact I think you should just use create_function_call() or create_branch() from
include/asm-powerpc/system.h
> +#ifdef CONFIG_PPC64
> +# define _ASM_ALIGN " .align 3 "
> +# define _ASM_PTR " .llong "
> +#else
> +# define _ASM_ALIGN " .align 2 "
> +# define _ASM_PTR " .long "
> +#endif
We already have a #define for .long, it's called PPC_LONG (asm/asm-compat.h)
Perhaps we should add one for .align, PPC_LONG_ALIGN or something?
> +notrace int
> +ftrace_modify_code(unsigned long ip, unsigned char *old_code,
> + unsigned char *new_code)
> +{
> + unsigned replaced;
> + unsigned old = *(unsigned *)old_code;
> + unsigned new = *(unsigned *)new_code;
> + int faulted = 0;
> +
> + /* move the IP back to the start of the call */
> + ip -= CALL_BACK;
> +
> + /*
> + * Note: Due to modules and __init, code can
> + * disappear and change, we need to protect against faulting
> + * as well as code changing.
> + *
> + * No real locking needed, this code is run through
> + * kstop_machine.
> + */
> + asm volatile (
> + "1: lwz %1, 0(%2)\n"
> + " cmpw %1, %5\n"
> + " bne 2f\n"
> + " stwu %3, 0(%2)\n"
> + "2:\n"
> + ".section .fixup, \"ax\"\n"
> + "3: li %0, 1\n"
> + " b 2b\n"
> + ".previous\n"
> + ".section __ex_table,\"a\"\n"
> + _ASM_ALIGN "\n"
> + _ASM_PTR "1b, 3b\n"
> + ".previous"
Or perhaps we just need a macro for adding exception table entries.
> + : "=r"(faulted), "=r"(replaced)
> + : "r"(ip), "r"(new),
> + "0"(faulted), "r"(old)
> + : "memory");
> +
> + if (replaced != old && replaced != new)
> + faulted = 2;
> +
> + if (!faulted)
> + flush_icache_range(ip, ip + 8);
> +
> + return faulted;
> +}
> Index: linux-sched-devel.git/arch/powerpc/kernel/setup_32.c
> ===================================================================
> --- linux-sched-devel.git.orig/arch/powerpc/kernel/setup_32.c 2008-05-14 19:30:50.000000000 -0700
> +++ linux-sched-devel.git/arch/powerpc/kernel/setup_32.c 2008-05-14 19:31:56.000000000 -0700
> @@ -47,6 +47,11 @@
> #include <asm/kgdb.h>
> #endif
>
> +#ifdef CONFIG_FTRACE
> +extern void _mcount(void);
> +EXPORT_SYMBOL(_mcount);
> +#endif
Can you please put the extern in a header, and the EXPORT_SYMBOL in arch/powerpc/kernel/ftrace.c?
> Index: linux-sched-devel.git/arch/powerpc/kernel/setup_64.c
> ===================================================================
> --- linux-sched-devel.git.orig/arch/powerpc/kernel/setup_64.c 2008-05-14 19:30:50.000000000 -0700
> +++ linux-sched-devel.git/arch/powerpc/kernel/setup_64.c 2008-05-14 19:31:56.000000000 -0700
> @@ -85,6 +85,11 @@ struct ppc64_caches ppc64_caches = {
> };
> EXPORT_SYMBOL_GPL(ppc64_caches);
>
> +#ifdef CONFIG_FTRACE
> +extern void _mcount(void);
> +EXPORT_SYMBOL(_mcount);
> +#endif
Ditto.
cheers
--
Michael Ellerman
OzLabs, IBM Australia Development Lab
wwweb: http://michael.ellerman.id.au
phone: +61 2 6212 1183 (tie line 70 21183)
We do not inherit the earth from our ancestors,
we borrow it from our children. - S.M.A.R.T Person
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 189 bytes --]
next prev parent reply other threads:[~2008-05-20 14:04 UTC|newest]
Thread overview: 34+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-05-15 3:49 [PATCH 0/2] ftrace ported to PPC Steven Rostedt
2008-05-15 3:49 ` Steven Rostedt
2008-05-15 3:49 ` [PATCH 1/2] ftrace ppc: add irqs_disabled_flags to ppc Steven Rostedt
2008-05-15 3:49 ` Steven Rostedt
2008-05-16 12:05 ` Ingo Molnar
2008-05-16 12:05 ` Ingo Molnar
2008-05-15 3:49 ` [PATCH 2/2] ftrace: support for PowerPC Steven Rostedt
2008-05-15 3:49 ` Steven Rostedt
2008-05-15 5:28 ` David Miller
2008-05-15 5:28 ` David Miller
2008-05-15 13:38 ` Steven Rostedt
2008-05-15 13:38 ` Steven Rostedt
2008-05-15 16:48 ` Scott Wood
2008-05-15 16:48 ` Scott Wood
2008-05-16 12:06 ` Ingo Molnar
2008-05-16 12:06 ` Ingo Molnar
2008-05-20 14:04 ` Michael Ellerman [this message]
2008-05-20 14:04 ` Michael Ellerman
2008-05-20 14:17 ` Benjamin Herrenschmidt
2008-05-20 14:17 ` Benjamin Herrenschmidt
2008-05-20 14:51 ` Steven Rostedt
2008-05-20 14:51 ` Steven Rostedt
2008-05-20 14:32 ` Steven Rostedt
2008-05-20 14:32 ` Steven Rostedt
2008-05-22 18:31 ` [PATCH] ftrace: powerpc clean ups Steven Rostedt
2008-05-22 18:31 ` Steven Rostedt
2008-05-27 15:36 ` Thomas Gleixner
2008-05-27 15:36 ` Thomas Gleixner
2008-06-02 2:15 ` Michael Ellerman
2008-06-02 2:15 ` Michael Ellerman
2008-05-15 4:40 ` [PATCH 0/2] ftrace ported to PPC Paul Mackerras
2008-05-15 4:40 ` Paul Mackerras
2008-05-16 12:05 ` Ingo Molnar
2008-05-16 12:05 ` Ingo Molnar
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=1211292277.7960.8.camel@localhost \
--to=michael@ellerman.id.au \
--cc=a.p.zijlstra@chello.nl \
--cc=linux-kernel@vger.kernel.org \
--cc=linuxppc-dev@ozlabs.org \
--cc=mingo@elte.hu \
--cc=paulus@samba.org \
--cc=pq@iki.fi \
--cc=proski@gnu.org \
--cc=rostedt@goodmis.org \
--cc=sandmann@redhat.com \
--cc=srostedt@redhat.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 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.