aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAndrew Donnellan <andrew.donnellan@au1.ibm.com>2019-03-18 15:28:58 +1100
committerStewart Smith <stewart@linux.ibm.com>2019-03-28 15:24:13 +1100
commite5a7411cd74ea60892ea3bd6479e4c6d0e253eff (patch)
tree076d20d54afbe2372a9eebac5ae5b6f5ceec6233 /include
parent8dddd751ef43a915dcd1856722139d041ff2db38 (diff)
downloadskiboot-e5a7411cd74ea60892ea3bd6479e4c6d0e253eff.zip
skiboot-e5a7411cd74ea60892ea3bd6479e4c6d0e253eff.tar.gz
skiboot-e5a7411cd74ea60892ea3bd6479e4c6d0e253eff.tar.bz2
core/stack: Convert stack check code to not use backtrace wrapper
We're about to get rid of __backtrace() and __print_backtrace(), convert the stack check code to not use them. Signed-off-by: Andrew Donnellan <andrew.donnellan@au1.ibm.com> Signed-off-by: Stewart Smith <stewart@linux.ibm.com>
Diffstat (limited to 'include')
-rw-r--r--include/cpu.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/cpu.h b/include/cpu.h
index 06d5c0d..39071a1 100644
--- a/include/cpu.h
+++ b/include/cpu.h
@@ -81,7 +81,7 @@ struct cpu_thread {
uint64_t stack_bot_tok;
#define CPU_BACKTRACE_SIZE 60
struct bt_entry stack_bot_bt[CPU_BACKTRACE_SIZE];
- unsigned int stack_bot_bt_count;
+ struct bt_metadata stack_bot_bt_metadata;
#endif
struct lock job_lock;
struct list_head job_queue;