Commit ada770b1 authored by Max Filippov's avatar Max Filippov

xtensa: fix return_address

return_address returns the address that is one level higher in the call
stack than requested in its argument, because level 0 corresponds to its
caller's return address. Use requested level as the number of stack
frames to skip.

This fixes the address reported by might_sleep and friends.

Cc: stable@vger.kernel.org
Signed-off-by: default avatarMax Filippov <jcmvbkbc@gmail.com>
parent 2663147d
...@@ -253,10 +253,14 @@ static int return_address_cb(struct stackframe *frame, void *data) ...@@ -253,10 +253,14 @@ static int return_address_cb(struct stackframe *frame, void *data)
return 1; return 1;
} }
/*
* level == 0 is for the return address from the caller of this function,
* not from this function itself.
*/
unsigned long return_address(unsigned level) unsigned long return_address(unsigned level)
{ {
struct return_addr_data r = { struct return_addr_data r = {
.skip = level + 1, .skip = level,
}; };
walk_stackframe(stack_pointer(NULL), return_address_cb, &r); walk_stackframe(stack_pointer(NULL), return_address_cb, &r);
return r.addr; return r.addr;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment