linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] arm64: Change 'Call trace' to 'Call Trace' for tool scanners
@ 2015-02-05 17:30 Donald Dutile
  2015-02-05 17:37 ` Russell King - ARM Linux
  2015-02-06 15:34 ` Catalin Marinas
  0 siblings, 2 replies; 7+ messages in thread
From: Donald Dutile @ 2015-02-05 17:30 UTC (permalink / raw)
  To: linux-arm-kernel

Receiving reports from service folks that arm64 uses
'Call trace' when dumping stack, instead of the more familiar
'Call Trace'; the former is not being seen by tools that
scan for the latter text.  Checking various arches,
it appears the mainstream server arches (ia64, mips, ppc,
s390, sparc, x86) use 'Call Trace'.
This kernel tools script scans for the latter text string as well
  tools/testing/selftests/rcutorture/bin/parse-console.sh
so it doesn't appear to be arch or vendor specific.

Expecting there aren't a significant number of arm64 dump
scanners matching on 'Call trace' so recommend making this change
now to minimize changes to dump scanning tools for arm64 servers.

Signed-off-by: Donald Dutile <ddutile@redhat.com>
---
 arch/arm64/kernel/traps.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm64/kernel/traps.c b/arch/arm64/kernel/traps.c
index 0a801e3..832e721 100644
--- a/arch/arm64/kernel/traps.c
+++ b/arch/arm64/kernel/traps.c
@@ -155,7 +155,7 @@ static void dump_backtrace(struct pt_regs *regs, struct task_struct *tsk)
 		frame.pc = thread_saved_pc(tsk);
 	}
 
-	pr_emerg("Call trace:\n");
+	pr_emerg("Call Trace:\n");
 	while (1) {
 		unsigned long where = frame.pc;
 		int ret;
-- 
1.7.10.2.552.gaa3bb87

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

end of thread, other threads:[~2015-02-06 18:43 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-05 17:30 [PATCH] arm64: Change 'Call trace' to 'Call Trace' for tool scanners Donald Dutile
2015-02-05 17:37 ` Russell King - ARM Linux
2015-02-05 18:18   ` Don Dutile
2015-02-05 18:30     ` Russell King - ARM Linux
2015-02-05 18:46       ` Don Dutile
2015-02-06 15:34 ` Catalin Marinas
2015-02-06 18:43   ` Don Dutile

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).