diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-06 01:02:30 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-06 01:02:30 +0000 |
commit | 76cb841cb886eef6b3bee341a2266c76578724ad (patch) | |
tree | f5892e5ba6cc11949952a6ce4ecbe6d516d6ce58 /arch/xtensa/oprofile/backtrace.c | |
parent | Initial commit. (diff) | |
download | linux-76cb841cb886eef6b3bee341a2266c76578724ad.tar.xz linux-76cb841cb886eef6b3bee341a2266c76578724ad.zip |
Adding upstream version 4.19.249.upstream/4.19.249upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'arch/xtensa/oprofile/backtrace.c')
-rw-r--r-- | arch/xtensa/oprofile/backtrace.c | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/arch/xtensa/oprofile/backtrace.c b/arch/xtensa/oprofile/backtrace.c new file mode 100644 index 000000000..8f952034e --- /dev/null +++ b/arch/xtensa/oprofile/backtrace.c @@ -0,0 +1,27 @@ +/** + * @file backtrace.c + * + * @remark Copyright 2008 Tensilica Inc. + * Copyright (C) 2015 Cadence Design Systems Inc. + * @remark Read the file COPYING + * + */ + +#include <linux/oprofile.h> +#include <asm/ptrace.h> +#include <asm/stacktrace.h> + +static int xtensa_backtrace_cb(struct stackframe *frame, void *data) +{ + oprofile_add_trace(frame->pc); + return 0; +} + +void xtensa_backtrace(struct pt_regs * const regs, unsigned int depth) +{ + if (user_mode(regs)) + xtensa_backtrace_user(regs, depth, xtensa_backtrace_cb, NULL); + else + xtensa_backtrace_kernel(regs, depth, xtensa_backtrace_cb, + xtensa_backtrace_cb, NULL); +} |