diff options
author | Ard Biesheuvel <ard.biesheuvel@linaro.org> | 2017-07-23 11:05:38 +0300 |
---|---|---|
committer | Mark Rutland <mark.rutland@arm.com> | 2017-08-09 16:10:29 +0300 |
commit | 31e43ad3b74a5d7b282023b72f25fc677c14c727 (patch) | |
tree | 8329fe0b3d9d9f51f9bcc6390f9526e70b922aaf /arch/arm64/include/asm/stacktrace.h | |
parent | 7326749801396105aef0ed9229df746ac9e24300 (diff) | |
download | linux-31e43ad3b74a5d7b282023b72f25fc677c14c727.tar.xz |
arm64: unwind: remove sp from struct stackframe
The unwind code sets the sp member of struct stackframe to
'frame pointer + 0x10' unconditionally, without regard for whether
doing so produces a legal value. So let's simply remove it now that
we have stopped using it anyway.
Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Signed-off-by: Mark Rutland <mark.rutland@arm.com>
Cc: Catalin Marinas <catalin.marinas@arm.com>
Cc: James Morse <james.morse@arm.com>
Cc: Will Deacon <will.deacon@arm.com>
Diffstat (limited to 'arch/arm64/include/asm/stacktrace.h')
-rw-r--r-- | arch/arm64/include/asm/stacktrace.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/arm64/include/asm/stacktrace.h b/arch/arm64/include/asm/stacktrace.h index 5b6eafccc5d8..3bebab378c72 100644 --- a/arch/arm64/include/asm/stacktrace.h +++ b/arch/arm64/include/asm/stacktrace.h @@ -20,7 +20,6 @@ struct task_struct; struct stackframe { unsigned long fp; - unsigned long sp; unsigned long pc; #ifdef CONFIG_FUNCTION_GRAPH_TRACER unsigned int graph; |