linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] arm: fix returning wrong CALLER_ADDRx
@ 2013-01-03 10:12 kpark3469 at gmail.com
  2013-01-03 10:12 ` [PATCH 2/2] arm: make return_address available for ARM_UNWIND kpark3469 at gmail.com
  0 siblings, 1 reply; 13+ messages in thread
From: kpark3469 at gmail.com @ 2013-01-03 10:12 UTC (permalink / raw)
  To: linux-arm-kernel

From: sahara <keun-o.park@windriver.com>

This makes return_address return correct value for ftrace feature.
unwind_frame does not update frame->lr but frame->pc for backtrace.
And, the initialization for data.addr was missing so that wrong value
returned when unwind_frame failed.

Signed-off-by: sahara <keun-o.park@windriver.com>
---
 arch/arm/kernel/return_address.c |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/arch/arm/kernel/return_address.c b/arch/arm/kernel/return_address.c
index 8085417..fafedd8 100644
--- a/arch/arm/kernel/return_address.c
+++ b/arch/arm/kernel/return_address.c
@@ -26,7 +26,7 @@ static int save_return_addr(struct stackframe *frame, void *d)
 	struct return_address_data *data = d;
 
 	if (!data->level) {
-		data->addr = (void *)frame->lr;
+		data->addr = (void *)frame->pc;
 
 		return 1;
 	} else {
@@ -41,7 +41,8 @@ void *return_address(unsigned int level)
 	struct stackframe frame;
 	register unsigned long current_sp asm ("sp");
 
-	data.level = level + 1;
+	data.level = level + 2;
+	data.addr = NULL;
 
 	frame.fp = (unsigned long)__builtin_frame_address(0);
 	frame.sp = current_sp;
-- 
1.7.1

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

end of thread, other threads:[~2013-01-11 22:04 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-03 10:12 [PATCH 1/2] arm: fix returning wrong CALLER_ADDRx kpark3469 at gmail.com
2013-01-03 10:12 ` [PATCH 2/2] arm: make return_address available for ARM_UNWIND kpark3469 at gmail.com
2013-01-03 10:38   ` Russell King - ARM Linux
2013-01-03 11:36     ` Keun-O Park
2013-01-03 13:36       ` Steven Rostedt
2013-01-03 14:13         ` Russell King - ARM Linux
2013-01-03 16:03           ` Steven Rostedt
2013-01-03 16:23             ` Russell King - ARM Linux
2013-01-03 16:58               ` Steven Rostedt
2013-01-04  8:45                 ` Keun-O Park
2013-01-07 13:41                   ` Steven Rostedt
2013-01-11  8:53                     ` Keun-O Park
2013-01-11 22:04                       ` Steven Rostedt

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).