summaryrefslogtreecommitdiff
path: root/lib/trace.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2022-12-22 02:08:22 +0300
committerSimon Glass <sjg@chromium.org>2023-01-18 21:49:13 +0300
commitbebc1410ca79f5b8b33ca86b18bd55fd45d13185 (patch)
tree083fa5914a06f10327bcce78d73a3fd5c2ec4289 /lib/trace.c
parent9557592edc82cc690db2e81ef249a772f60078cb (diff)
downloadu-boot-bebc1410ca79f5b8b33ca86b18bd55fd45d13185.tar.xz
trace: Move trace pointer to data section
This can be written before relocation. Move it to the data section, since accessing BSS before relocation is not permitted. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'lib/trace.c')
-rw-r--r--lib/trace.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/trace.c b/lib/trace.c
index 880d90ebd5..b9dc6d2e4b 100644
--- a/lib/trace.c
+++ b/lib/trace.c
@@ -40,7 +40,8 @@ struct trace_hdr {
int max_depth;
};
-static struct trace_hdr *hdr; /* Pointer to start of trace buffer */
+/* Pointer to start of trace buffer */
+static struct trace_hdr *hdr __section(".data");
static inline uintptr_t __attribute__((no_instrument_function))
func_ptr_to_num(void *func_ptr)