Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit dcddba96 authored by Heiko Carstens's avatar Heiko Carstens Committed by Martin Schwidefsky
Browse files

s390/dumpstack: get rid of return_address again



With commit ef6000b4 ("Disable the __builtin_return_address()
warning globally after all)" the kernel does not warn at all again if
__builtin_return_address(n) is called with n > 0.

Besides the fact that this was a false warning on s390 anyway, due to
the always present backchain, we can now revert commit 56063306
("s390/dumpstack: implement and use return_address()") again, to
simplify the code again.

After all I shouldn't have had return_address() implememted at all to
workaround this issue. So get rid of this again.

Signed-off-by: default avatarHeiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: default avatarMartin Schwidefsky <schwidefsky@de.ibm.com>
parent 4d062487
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -12,9 +12,7 @@

#ifndef __ASSEMBLY__

unsigned long return_address(int depth);

#define ftrace_return_address(n) return_address(n)
#define ftrace_return_address(n) __builtin_return_address(n)

void _mcount(void);
void ftrace_caller(void);
+0 −24
Original line number Diff line number Diff line
@@ -87,30 +87,6 @@ void dump_trace(dump_trace_func_t func, void *data, struct task_struct *task,
}
EXPORT_SYMBOL_GPL(dump_trace);

struct return_address_data {
	unsigned long address;
	int depth;
};

static int __return_address(void *data, unsigned long address, int reliable)
{
	struct return_address_data *rd = data;

	if (rd->depth--)
		return 0;
	rd->address = address;
	return 1;
}

unsigned long return_address(int depth)
{
	struct return_address_data rd = { .depth = depth + 2 };

	dump_trace(__return_address, &rd, NULL, current_stack_pointer());
	return rd.address;
}
EXPORT_SYMBOL_GPL(return_address);

static int show_address(void *data, unsigned long address, int reliable)
{
	if (reliable)