| To: | Ralf Baechle <ralf@linux-mips.org>, rostedt@goodmis.org |
|---|---|
| Subject: | [PATCH v9 03/10] tracing: add an endian argument to scripts/recordmcount.pl |
| From: | Wu Zhangjin <wuzhangjin@gmail.com> |
| Date: | Fri, 20 Nov 2009 20:34:31 +0800 |
| Cc: | Nicholas Mc Guire <der.herr@hofr.at>, zhangfx@lemote.com, Wu Zhangjin <wuzhangjin@gmail.com>, Ingo Molnar <mingo@elte.hu>, Thomas Gleixner <tglx@linutronix.de>, Frederic Weisbecker <fweisbec@gmail.com>, linux-kernel@vger.kernel.org, linux-mips@linux-mips.org, Wu Zhangjin <wuzj@lemote.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=Fjklm2657ZmJtus0APuqoR4minsfCMZ6q1iVn5wSxeE=; b=VIkm5BqZbLzHKyYGQXCH4D3uJ/yH6+YOUQF7SdfNgHNE/H3xg6C3Ou9S+345+9HPmS UiPmLt9jvvoXHgFMc5YT0vkp1SAN7aNyh5+WMgFHkG4IaMXJ99i9p5jLftWO/S+AsJAX TsYjoTNYlE9aV9b8/RPEODPeJB5TQh1Q+ad9Q= |
| 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=K1/SXpLQj6wCgO3468BlmVpXvGt/0l5+OwrqMsvaux5T9hMJoD3n4wjH7i/mgL1x8q 8U//nQ3lfhXz6LC5Injn+nakvj9s7RFR6uGBz/CcBzFqBslP+k6bu3OP61iCiXhgYVua kuXBdKqN+Dp67GKh1wqC33E5TxhbObVPxewwk= |
| In-reply-to: | <51e30436a435480f1f0dec146a82f2b250900690.1258719323.git.wuzhangjin@gmail.com> |
| In-reply-to: | <cover.1258719323.git.wuzhangjin@gmail.com> |
| Original-recipient: | rfc822;linux-mips@linux-mips.org |
| References: | <adf867c5a6864fa196c667d3f09a6a694f3903c5.1258719323.git.wuzhangjin@gmail.com> <51e30436a435480f1f0dec146a82f2b250900690.1258719323.git.wuzhangjin@gmail.com> |
| References: | <cover.1258719323.git.wuzhangjin@gmail.com> |
| Sender: | linux-mips-bounce@linux-mips.org |
From: Wu Zhangjin <wuzhangjin@gmail.com>
MIPS and some other architectures need this argument to handle
big/little endian respectively.
Signed-off-by: Wu Zhangjin <wuzj@lemote.com>
---
scripts/Makefile.build | 1 +
scripts/recordmcount.pl | 6 +++---
2 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/scripts/Makefile.build b/scripts/Makefile.build
index 341b589..0b94d2f 100644
--- a/scripts/Makefile.build
+++ b/scripts/Makefile.build
@@ -207,6 +207,7 @@ endif
ifdef CONFIG_FTRACE_MCOUNT_RECORD
cmd_record_mcount = set -e ; perl $(srctree)/scripts/recordmcount.pl "$(ARCH)"
\
+ "$(if $(CONFIG_CPU_BIG_ENDIAN),big,little)" \
"$(if $(CONFIG_64BIT),64,32)" \
"$(OBJDUMP)" "$(OBJCOPY)" "$(CC)" "$(LD)" "$(NM)" "$(RM)" "$(MV)" \
"$(if $(part-of-module),1,0)" "$(@)";
diff --git a/scripts/recordmcount.pl b/scripts/recordmcount.pl
index f0d1445..24604d4 100755
--- a/scripts/recordmcount.pl
+++ b/scripts/recordmcount.pl
@@ -113,13 +113,13 @@ $P =~ s@.*/@@g;
my $V = '0.1';
-if ($#ARGV != 10) {
- print "usage: $P arch bits objdump objcopy cc ld nm rm mv is_module
inputfile\n";
+if ($#ARGV != 11) {
+ print "usage: $P arch endian bits objdump objcopy cc ld nm rm mv
is_module inputfile\n";
print "version: $V\n";
exit(1);
}
-my ($arch, $bits, $objdump, $objcopy, $cc,
+my ($arch, $endian, $bits, $objdump, $objcopy, $cc,
$ld, $nm, $rm, $mv, $is_module, $inputfile) = @ARGV;
# This file refers to mcount and shouldn't be ftraced, so lets' ignore it
--
1.6.2.1
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | [PATCH v9 02/10] tracing: enable HAVE_FUNCTION_TRACE_MCOUNT_TEST for MIPS, Wu Zhangjin |
|---|---|
| Next by Date: | [PATCH v9 04/10] tracing: add dynamic function tracer support for MIPS, Wu Zhangjin |
| Previous by Thread: | Re: [PATCH v9 02/10] tracing: enable HAVE_FUNCTION_TRACE_MCOUNT_TEST for MIPS, Ralf Baechle |
| Next by Thread: | Re: [PATCH v9 03/10] tracing: add an endian argument to scripts/recordmcount.pl, Ralf Baechle |
| Indexes: | [Date] [Thread] [Top] [All Lists] |