diff options
| author | Andrew Donnellan <andrew.donnellan@au1.ibm.com> | 2019-03-18 15:28:58 +1100 |
|---|---|---|
| committer | Stewart Smith <stewart@linux.ibm.com> | 2019-03-28 15:24:13 +1100 |
| commit | e5a7411cd74ea60892ea3bd6479e4c6d0e253eff (patch) | |
| tree | 076d20d54afbe2372a9eebac5ae5b6f5ceec6233 /include | |
| parent | 8dddd751ef43a915dcd1856722139d041ff2db38 (diff) | |
| download | blackbird-skiboot-e5a7411cd74ea60892ea3bd6479e4c6d0e253eff.tar.gz blackbird-skiboot-e5a7411cd74ea60892ea3bd6479e4c6d0e253eff.zip | |
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.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/cpu.h b/include/cpu.h index 06d5c0d1..39071a19 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; |

