blk: rq_data_dir() should not return a boolean
[cris-mirror.git] / arch / arm64 / kernel / return_address.c
blob6c4fd2810ecb35b3e648db18923d21f19a50f422
1 /*
2 * arch/arm64/kernel/return_address.c
4 * Copyright (C) 2013 Linaro Limited
5 * Author: AKASHI Takahiro <takahiro.akashi@linaro.org>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
12 #include <linux/export.h>
13 #include <linux/ftrace.h>
15 #include <asm/stacktrace.h>
17 struct return_address_data {
18 unsigned int level;
19 void *addr;
22 static int save_return_addr(struct stackframe *frame, void *d)
24 struct return_address_data *data = d;
26 if (!data->level) {
27 data->addr = (void *)frame->pc;
28 return 1;
29 } else {
30 --data->level;
31 return 0;
35 void *return_address(unsigned int level)
37 struct return_address_data data;
38 struct stackframe frame;
40 data.level = level + 2;
41 data.addr = NULL;
43 frame.fp = (unsigned long)__builtin_frame_address(0);
44 frame.sp = current_stack_pointer;
45 frame.pc = (unsigned long)return_address; /* dummy */
47 walk_stackframe(&frame, save_return_addr, &data);
49 if (!data.level)
50 return data.addr;
51 else
52 return NULL;
54 EXPORT_SYMBOL_GPL(return_address);