| To: | David Daney <ddaney@caviumnetworks.com> |
|---|---|
| Subject: | Re: [PATCH v7 04/17] tracing: add static function tracer support for MIPS |
| From: | Wu Zhangjin <wuzhangjin@gmail.com> |
| Date: | Tue, 10 Nov 2009 09:00:17 +0800 |
| Cc: | linux-mips@linux-mips.org, linux-kernel@vger.kernel.org, zhangfx@lemote.com, zhouqg@gmail.com, Ralf Baechle <ralf@linux-mips.org>, rostedt@goodmis.org, Frederic Weisbecker <fweisbec@gmail.com>, Ingo Molnar <mingo@elte.hu>, Nicholas Mc Guire <der.herr@hofr.at>, Richard Sandiford <rdsandiford@googlemail.com>, Patrik Kluba <kpajko79@gmail.com>, Thomas Gleixner <tglx@linutronix.de>, Michal Simek <monstr@monstr.eu> |
| Dkim-signature: | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:subject:from:reply-to:to:cc :in-reply-to:references:content-type:organization:date:message-id :mime-version:x-mailer:content-transfer-encoding; bh=mDwtSTB3qZzfOtn1AbAEVcPDxEji8AeruxNszCyTTBg=; b=mzztZ9JqbcKjWvYOTHaiqVqWpihaNBbqtnF/+TjwNoY/4Xw//UT8qOqDrArGOR1zZx oEKrxAOwxZo7M0Mm+jpBdETKW/u18fv9akYkZq+RQXoV+z+bl+Ad6WiWn6QuQmmCm18h kuoQt5G4GEL1ZkLehj4Rfu3WJK+NGHHUcIsxY= |
| Domainkey-signature: | a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=subject:from:reply-to:to:cc:in-reply-to:references:content-type :organization:date:message-id:mime-version:x-mailer :content-transfer-encoding; b=hxIq2hk3MRo8VA68it9d8yzfLwzn0RLuPfXbeiMbZt51eNqot+XM8sxkTNm2ZchL0b AZQp6qcLX4R8bMaKOZApqILLOjXq1bfuqwcumtr+ac9yrHkM++04UOC50W5xUN7jslD1 JRuoFBE0IiqsefqVaPx2QrqqlwythJUHLn1nA= |
| In-reply-to: | <4AF8B31C.5030802@caviumnetworks.com> |
| Organization: | DSLab, Lanzhou University, China |
| Original-recipient: | rfc822;linux-mips@linux-mips.org |
| References: | <9dc81a7a9e5a292cccdf465c533a2b08d19d6021.1257779502.git.wuzhangjin@gmail.com> <b99c08397d9ff92ac5a72bda9131df41b702fc71.1257779502.git.wuzhangjin@gmail.com> <8f579e2cece16cd22358a4ec143ef6a8c462639b.1257779502.git.wuzhangjin@gmail.com> <cefe074f5eb3cfbc2e0bb41b0c1f61fcd0190d90.1257779502.git.wuzhangjin@gmail.com> <4AF8B31C.5030802@caviumnetworks.com> |
| Reply-to: | wuzhangjin@gmail.com |
| Sender: | linux-mips-bounce@linux-mips.org |
Hi,
On Mon, 2009-11-09 at 16:26 -0800, David Daney wrote:
> Wu Zhangjin wrote:
>
> >
> > +ifndef CONFIG_FUNCTION_TRACER
> > cflags-y := -ffunction-sections
> > +else
> > +cflags-y := -mlong-calls
> > +endif
> > cflags-y += $(call cc-option, -mno-check-zero-division)
> >
>
> That doesn't make sense to me. Modules are already compiled with
> -mlong-calls. The only time you would need the entire kernel compiled
> with -mlong-calls is if the tracer were in a module. The logic here
> doesn't seem to reflect that.
Yes, I knew the module have gotten the -mlong-calls, Here we just want
to use -mlong-calls for the whole kernel, and then we get the same
_mcount stuff in the whole kernel, at last, we can use the same
scripts/recordmcount.pl and ftrace_make_nop & ftrace_make_call for the
dynamic ftracer.
And seems we only need to enable it for the dynamic one. So, I will
split it out into it's own patch later.
Thanks & Regards,
Wu Zhangjin
|
| Previous by Date: | Re: [PATCH v7 04/17] tracing: add static function tracer support for MIPS, David Daney |
|---|---|
| Next by Date: | Re: [PATCH v7 17/17] tracing: make function graph tracer work with -mmcount-ra-address, Wu Zhangjin |
| Previous by Thread: | Re: [PATCH v7 04/17] tracing: add static function tracer support for MIPS, David Daney |
| Next by Thread: | Re: [PATCH v7 04/17] tracing: add static function tracer support for MIPS, David Daney |
| Indexes: | [Date] [Thread] [Top] [All Lists] |