| To: | linux-mips@linux-mips.org, linux-kernel@vger.kernel.org |
|---|---|
| Subject: | [PATCH -v6 05/13] tracing: enable HAVE_FUNCTION_TRACE_MCOUNT_TEST for MIPS |
| From: | Wu Zhangjin <wuzhangjin@gmail.com> |
| Date: | Mon, 26 Oct 2009 23:13:22 +0800 |
| Cc: | Wu Zhangjin <wuzhangjin@gmail.com>, Frederic Weisbecker <fweisbec@gmail.com>, rostedt@goodmis.org, Thomas Gleixner <tglx@linutronix.de>, Ralf Baechle <ralf@linux-mips.org>, Richard Sandiford <rdsandiford@googlemail.com>, Nicholas Mc Guire <der.herr@hofr.at>, David Daney <ddaney@caviumnetworks.com>, Adam Nemet <anemet@caviumnetworks.com>, Patrik Kluba <kpajko79@gmail.com> |
| Dkim-signature: | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:subject:date :message-id:x-mailer:in-reply-to:references:in-reply-to:references; bh=g75Vs6VuJB5BwEhkOzuJDt6x75f6Yx0PQvPS5s+oUiQ=; b=mDc3oD+q0SjRbtuDOXmxkL/1HYh56yxgPDW2F/s/CRCoW8rrmP7UKMu/qLRtqel7wU w2ATlsJGbJvsHV2lxvV+i6+SvCvt9ZV0YfrEn/x3HU0ISCLcLS+49CLmWLI4uwLhX5Ck AOhJ9WGxPmabwMtyTzyrUa3cm8vcZW7ild50Y= |
| Domainkey-signature: | a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; b=aEDpHrnzSfwDMwJ7zoACaJLYUNnEkbk10TQRVb0kcAFrPHMXlgriJJBIpz6uFKs+Gz Tc/ckdMaIMrrbNkMiZZP9JKVr4KxiBVMC4dkjYD6c+aD8UcFSmfmBs70j6y8jSk1ujyj JV8oGBiZJmBruOCxYUkA0Cz+9UpjjtKL/bgT4= |
| In-reply-to: | <07dc907ec62353b1aca99b2850d3b2e4b734189a.1256569489.git.wuzhangjin@gmail.com> |
| In-reply-to: | <cover.1256569489.git.wuzhangjin@gmail.com> |
| Original-recipient: | rfc822;linux-mips@linux-mips.org |
| References: | <cover.1256569489.git.wuzhangjin@gmail.com> <747deea2f18d5ccffe842df95a9dd1c86251a958.1256569489.git.wuzhangjin@gmail.com> <3f47087b70a965fd679b17a59521671296457df1.1256569489.git.wuzhangjin@gmail.com> <f290e125634d164ec65b09b24b269815f78455ab.1256569489.git.wuzhangjin@gmail.com> <07dc907ec62353b1aca99b2850d3b2e4b734189a.1256569489.git.wuzhangjin@gmail.com> |
| References: | <cover.1256569489.git.wuzhangjin@gmail.com> |
| Sender: | linux-mips-bounce@linux-mips.org |
There is an exisiting common ftrace_test_stop_func() in
kernel/trace/ftrace.c, which is used to check the global variable
ftrace_trace_stop to determine whether stop the function tracing.
This patch implepment the MIPS specific one to speedup the procedure.
Thanks goes to Zhang Le for Cleaning it up.
Signed-off-by: Wu Zhangjin <wuzhangjin@gmail.com>
---
arch/mips/Kconfig | 1 +
arch/mips/kernel/mcount.S | 4 ++++
2 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig
index 6b33e88..a9bd992 100644
--- a/arch/mips/Kconfig
+++ b/arch/mips/Kconfig
@@ -5,6 +5,7 @@ config MIPS
select HAVE_OPROFILE
select HAVE_ARCH_KGDB
select HAVE_FUNCTION_TRACER
+ select HAVE_FUNCTION_TRACE_MCOUNT_TEST
# Horrible source of confusion. Die, die, die ...
select EMBEDDED
select RTC_LIB if !LEMOTE_FULOONG2E
diff --git a/arch/mips/kernel/mcount.S b/arch/mips/kernel/mcount.S
index 0c39bc8..5dfaca8 100644
--- a/arch/mips/kernel/mcount.S
+++ b/arch/mips/kernel/mcount.S
@@ -64,6 +64,10 @@
.endm
NESTED(_mcount, PT_SIZE, ra)
+ lw t0, function_trace_stop
+ bnez t0, ftrace_stub
+ nop
+
PTR_LA t0, ftrace_stub
PTR_L t1, ftrace_trace_function /* Prepare t1 for (1) */
bne t0, t1, static_trace
--
1.6.2.1
|
| Previous by Date: | [PATCH -v6 04/13] tracing: add static function tracer support for MIPS, Wu Zhangjin |
|---|---|
| Next by Date: | [PATCH -v6 06/13] tracing: add an endian argument to scripts/recordmcount.pl, Wu Zhangjin |
| Previous by Thread: | [PATCH -v6 04/13] tracing: add static function tracer support for MIPS, Wu Zhangjin |
| Next by Thread: | [PATCH -v6 06/13] tracing: add an endian argument to scripts/recordmcount.pl, Wu Zhangjin |
| Indexes: | [Date] [Thread] [Top] [All Lists] |