diff options
author | Catalin Marinas <catalin.marinas@arm.com> | 2016-07-21 13:20:41 -0400 |
---|---|---|
committer | Catalin Marinas <catalin.marinas@arm.com> | 2016-07-21 13:20:41 -0400 |
commit | a95b0644b38c16c40b753224671b919b9af0b73c (patch) | |
tree | 62f4b54f35dd3a99d6a3c2337bddcf1c72c32c8c /arch/arm64/kernel/entry.S | |
parent | e75118a7b581b19b08282c7819c1ec6f68b91b79 (diff) | |
parent | f7e35c5ba4322838ce84b23a2f1a6d6b7f0b57ec (diff) |
Merge branch 'for-next/kprobes' into for-next/core
* kprobes:
arm64: kprobes: Add KASAN instrumentation around stack accesses
arm64: kprobes: Cleanup jprobe_return
arm64: kprobes: Fix overflow when saving stack
arm64: kprobes: WARN if attempting to step with PSTATE.D=1
kprobes: Add arm64 case in kprobe example module
arm64: Add kernel return probes support (kretprobes)
arm64: Add trampoline code for kretprobes
arm64: kprobes instruction simulation support
arm64: Treat all entry code as non-kprobe-able
arm64: Blacklist non-kprobe-able symbol
arm64: Kprobes with single stepping support
arm64: add conditional instruction simulation support
arm64: Add more test functions to insn.c
arm64: Add HAVE_REGS_AND_STACK_ACCESS_API feature
Diffstat (limited to 'arch/arm64/kernel/entry.S')
-rw-r--r-- | arch/arm64/kernel/entry.S | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm64/kernel/entry.S b/arch/arm64/kernel/entry.S index 3eca5d34f7a6..a03eb49cfeeb 100644 --- a/arch/arm64/kernel/entry.S +++ b/arch/arm64/kernel/entry.S | |||
@@ -242,6 +242,7 @@ tsk .req x28 // current thread_info | |||
242 | /* | 242 | /* |
243 | * Exception vectors. | 243 | * Exception vectors. |
244 | */ | 244 | */ |
245 | .pushsection ".entry.text", "ax" | ||
245 | 246 | ||
246 | .align 11 | 247 | .align 11 |
247 | ENTRY(vectors) | 248 | ENTRY(vectors) |
@@ -784,6 +785,8 @@ __ni_sys_trace: | |||
784 | bl do_ni_syscall | 785 | bl do_ni_syscall |
785 | b __sys_trace_return | 786 | b __sys_trace_return |
786 | 787 | ||
788 | .popsection // .entry.text | ||
789 | |||
787 | /* | 790 | /* |
788 | * Special system call wrappers. | 791 | * Special system call wrappers. |
789 | */ | 792 | */ |